]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/SecPeiDxeTimerLibCpu/SecPeiDxeTimerLibCpu.inf
remove some comments introduced by tools.
[mirror_edk2.git] / MdePkg / Library / SecPeiDxeTimerLibCpu / SecPeiDxeTimerLibCpu.inf
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, Intel Corporation.
10 #
11 # All rights reserved. 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 = SecPeiDxeTimerLibCpu
24 FILE_GUID = b5a05743-9b71-489b-a0ed-a0eb3950d23b
25 MODULE_TYPE = BASE
26 VERSION_STRING = 1.0
27 LIBRARY_CLASS = TimerLib|BASE DXE_CORE DXE_DRIVER DXE_SAL_DRIVER PEIM PEI_CORE SEC UEFI_APPLICATION UEFI_DRIVER
28 EDK_RELEASE_VERSION = 0x00020000
29 EFI_SPECIFICATION_VERSION = 0x00020000
30
31
32 #
33 # VALID_ARCHITECTURES = IA32 X64 IPF
34 #
35
36 [Sources.Ia32]
37 x86TimerLib.c
38
39 [Sources.X64]
40 x86TimerLib.c
41
42 [Sources.IPF]
43 IpfTimerLib.c
44
45
46 [Packages]
47 MdePkg/MdePkg.dec
48
49
50 [LibraryClasses]
51 BaseLib
52
53 [LibraryClasses.IA32]
54 PcdLib
55 IoLib
56
57 [LibraryClasses.X64]
58 PcdLib
59 IoLib
60
61 [LibraryClasses.IPF]
62 DebugLib
63
64
65 [PcdsDynamic.IA32]
66 PcdFSBClock|gEfiMdePkgTokenSpaceGuid
67
68 [PcdsDynamic.X64]
69 PcdFSBClock|gEfiMdePkgTokenSpaceGuid
70