1 ## @file 2 # Timer Library implementation for Boot Timer moudles that require timer services. 3 # 4 # Timer Library that uses CPU resources to provide calibrated 5 # delays on IA-32 and x64, and uses ITC on IPF. Note: Because CpuLocalApci 6 # and ITC could be programmed by OS, it cannot be used by SMM drivers 7 # and runtime drivers, ACPI timer is recommended for SMM drivers and RUNTIME 8 # drivers. 9 # Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR> 10 # 11 # This program and the accompanying materials 12 # are licensed and made available under the terms and conditions of the BSD License 13 # which accompanies this distribution. The full text of the license may be found at 14 # http://opensource.org/licenses/bsd-license.php 15 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 16 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 17 # 18 # 19 ## 20 21 [Defines] 22 INF_VERSION = 0x00010005 23 BASE_NAME = DuetTimerLib 24 FILE_GUID = 5F9A01F5-726E-4f59-809D-887F4766734E 25 MODULE_TYPE = DXE_DRIVER 26 VERSION_STRING = 1.0 27 LIBRARY_CLASS = TimerLib 28 29 30 # 31 # VALID_ARCHITECTURES = IA32 X64 32 # 33 34 [Sources.Ia32] 35 X86TimerLib.c 36 37 [Sources.X64] 38 X86TimerLib.c 39 40 41 [Packages] 42 MdePkg/MdePkg.dec 43 DuetPkg/DuetPkg.dec 44 45 [LibraryClasses] 46 BaseLib 47 DebugLib 48 HobLib 49 IoLib 50 51 [Guids] 52 gEfiAcpiDescriptionGuid 53 54 55