]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/SecPeiDxeTimerLibCpu/SecPeiDxeTimerLibCpu.inf
Import some Pei and Dxe related instances for MdePkg.
[mirror_edk2.git] / MdePkg / Library / SecPeiDxeTimerLibCpu / SecPeiDxeTimerLibCpu.inf
CommitLineData
e386b444 1#/** @file\r
2# Timer Library implementation for Boot Timer moudles that require timer services.\r
3#\r
4# Timer Library that uses CPU resources to provide calibrated\r
5# delays on IA-32 and x64, and uses ITC on IPF. Note: Because CpuLocalApci\r
6# and ITC could be programmed by OS, it cannot be used by SMM drivers\r
7# and runtime drivers, ACPI timer is recommended for SMM drivers and RUNTIME\r
8# drivers.\r
9# Copyright (c) 2007 - 2007, Intel Corporation.\r
10#\r
11# All rights reserved. This program and the accompanying materials\r
12# are licensed and made available under the terms and conditions of the BSD License\r
13# which accompanies this distribution. The full text of the license may be found at\r
14# http://opensource.org/licenses/bsd-license.php\r
15# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
16# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
17#\r
18#\r
19#**/\r
20\r
21################################################################################\r
22#\r
23# Defines Section - statements that will be processed to create a Makefile.\r
24#\r
25################################################################################\r
26[Defines]\r
27 INF_VERSION = 0x00010005\r
28 BASE_NAME = SecPeiDxeTimerLibCpu\r
29 FILE_GUID = b5a05743-9b71-489b-a0ed-a0eb3950d23b\r
30 MODULE_TYPE = BASE\r
31 VERSION_STRING = 1.0\r
32 LIBRARY_CLASS = TimerLib|BASE DXE_CORE DXE_DRIVER DXE_SAL_DRIVER PEIM PEI_CORE SEC UEFI_APPLICATION UEFI_DRIVER \r
33 EDK_RELEASE_VERSION = 0x00020000\r
34 EFI_SPECIFICATION_VERSION = 0x00020000\r
35\r
36\r
37#\r
38# The following information is for reference only and not required by the build tools.\r
39#\r
40# VALID_ARCHITECTURES = IA32 X64 IPF\r
41#\r
42\r
43################################################################################\r
44#\r
45# Sources Section - list of files that are required for the build to succeed.\r
46#\r
47################################################################################\r
48\r
49[Sources.common]\r
50 CommonHeader.h\r
51\r
52[Sources.Ia32]\r
53 x86TimerLib.c\r
54\r
55[Sources.X64]\r
56 x86TimerLib.c\r
57\r
58[Sources.IPF]\r
59 IpfTimerLib.c\r
60\r
61\r
62################################################################################\r
63#\r
64# Includes Section - list of Include locations that are required for\r
65# this module.\r
66#\r
67################################################################################\r
68\r
69[Includes]\r
70 $(WORKSPACE)/MdePkg\Include/Library\r
71\r
72################################################################################\r
73#\r
74# Package Dependency Section - list of Package files that are required for\r
75# this module.\r
76#\r
77################################################################################\r
78\r
79[Packages]\r
80 MdePkg/MdePkg.dec\r
81\r
82\r
83################################################################################\r
84#\r
85# Library Class Section - list of Library Classes that are required for\r
86# this module.\r
87#\r
88################################################################################\r
89\r
90[LibraryClasses]\r
91 BaseLib\r
92\r
93[LibraryClasses.IA32]\r
94 PcdLib\r
95 IoLib\r
96\r
97[LibraryClasses.X64]\r
98 PcdLib\r
99 IoLib\r
100\r
101[LibraryClasses.IPF]\r
102 DebugLib\r
103\r
104\r
105################################################################################\r
106#\r
107# Pcd DYNAMIC - list of PCDs that this module is coded for.\r
108#\r
109################################################################################\r
110\r
111[PcdsDynamic.IA32]\r
112 PcdFSBClock|gEfiMdePkgTokenSpaceGuid\r
113\r
114[PcdsDynamic.X64]\r
115 PcdFSBClock|gEfiMdePkgTokenSpaceGuid\r
116\r