]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/SecPeiDxeTimerLibCpu/SecPeiDxeTimerLibCpu.inf
Import some Pei and Dxe related instances for MdePkg.
[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 # Includes Section - list of Include locations that are required for
65 # this module.
66 #
67 ################################################################################
68
69 [Includes]
70 $(WORKSPACE)/MdePkg\Include/Library
71
72 ################################################################################
73 #
74 # Package Dependency Section - list of Package files that are required for
75 # this module.
76 #
77 ################################################################################
78
79 [Packages]
80 MdePkg/MdePkg.dec
81
82
83 ################################################################################
84 #
85 # Library Class Section - list of Library Classes that are required for
86 # this module.
87 #
88 ################################################################################
89
90 [LibraryClasses]
91 BaseLib
92
93 [LibraryClasses.IA32]
94 PcdLib
95 IoLib
96
97 [LibraryClasses.X64]
98 PcdLib
99 IoLib
100
101 [LibraryClasses.IPF]
102 DebugLib
103
104
105 ################################################################################
106 #
107 # Pcd DYNAMIC - list of PCDs that this module is coded for.
108 #
109 ################################################################################
110
111 [PcdsDynamic.IA32]
112 PcdFSBClock|gEfiMdePkgTokenSpaceGuid
113
114 [PcdsDynamic.X64]
115 PcdFSBClock|gEfiMdePkgTokenSpaceGuid
116