]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/SecPeiDxeTimerLibCpu/SecPeiDxeTimerLibCpu.inf
9fbceafebb10703063d0eab34768d19db1af7b08
[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 [Sources.common]
50 CommonHeader.h
51
52 [Sources.Ia32]
53 x86TimerLib.c
54
55 [Sources.X64]
56 x86TimerLib.c
57
58 [Sources.IPF]
59 IpfTimerLib.c
60
61
62 ################################################################################
63 #
64 # Package Dependency Section - list of Package files that are required for
65 # this module.
66 #
67 ################################################################################
68
69 [Packages]
70 MdePkg/MdePkg.dec
71
72
73 ################################################################################
74 #
75 # Library Class Section - list of Library Classes that are required for
76 # this module.
77 #
78 ################################################################################
79
80 [LibraryClasses]
81 BaseLib
82
83 [LibraryClasses.IA32]
84 PcdLib
85 IoLib
86
87 [LibraryClasses.X64]
88 PcdLib
89 IoLib
90
91 [LibraryClasses.IPF]
92 DebugLib
93
94
95 ################################################################################
96 #
97 # Pcd DYNAMIC - list of PCDs that this module is coded for.
98 #
99 ################################################################################
100
101 [PcdsDynamic.IA32]
102 PcdFSBClock|gEfiMdePkgTokenSpaceGuid
103
104 [PcdsDynamic.X64]
105 PcdFSBClock|gEfiMdePkgTokenSpaceGuid
106