]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/SecPeiDxeTimerLibCpu/SecPeiDxeTimerLibCpu.inf
774a2dd3b11dd65d027d46b6651ce5d816015484
[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 - 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 ################################################################################
22 #
23 # Defines Section - statements that will be processed to create a Makefile.
24 #
25 ################################################################################
26 [Defines]
27 INF_VERSION = 0x00010005
28 BASE_NAME = SecPeiDxeTimerLibCpu
29 FILE_GUID = b5a05743-9b71-489b-a0ed-a0eb3950d23b
30 MODULE_TYPE = BASE
31 VERSION_STRING = 1.0
32 LIBRARY_CLASS = TimerLib|BASE DXE_CORE DXE_DRIVER DXE_SAL_DRIVER PEIM PEI_CORE SEC UEFI_APPLICATION UEFI_DRIVER
33 EDK_RELEASE_VERSION = 0x00020000
34 EFI_SPECIFICATION_VERSION = 0x00020000
35
36
37 #
38 # The following information is for reference only and not required by the build tools.
39 #
40 # VALID_ARCHITECTURES = IA32 X64 IPF
41 #
42
43 ################################################################################
44 #
45 # Sources Section - list of files that are required for the build to succeed.
46 #
47 ################################################################################
48
49
50 [Sources.Ia32]
51 x86TimerLib.c
52
53 [Sources.X64]
54 x86TimerLib.c
55
56 [Sources.IPF]
57 IpfTimerLib.c
58
59
60 ################################################################################
61 #
62 # Package Dependency Section - list of Package files that are required for
63 # this module.
64 #
65 ################################################################################
66
67 [Packages]
68 MdePkg/MdePkg.dec
69
70
71 ################################################################################
72 #
73 # Library Class Section - list of Library Classes that are required for
74 # this module.
75 #
76 ################################################################################
77
78 [LibraryClasses]
79 BaseLib
80
81 [LibraryClasses.IA32]
82 PcdLib
83 IoLib
84
85 [LibraryClasses.X64]
86 PcdLib
87 IoLib
88
89 [LibraryClasses.IPF]
90 DebugLib
91
92
93 ################################################################################
94 #
95 # Pcd DYNAMIC - list of PCDs that this module is coded for.
96 #
97 ################################################################################
98
99 [PcdsDynamic.IA32]
100 PcdFSBClock|gEfiMdePkgTokenSpaceGuid
101
102 [PcdsDynamic.X64]
103 PcdFSBClock|gEfiMdePkgTokenSpaceGuid
104