]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/SecPeiDxeTimerLibCpu/SecPeiDxeTimerLibCpu.inf
removed [includes] section from MdePkg and MdeModulePkg .inf files. The includes...
[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
e386b444 62################################################################################\r
63#\r
64# Package Dependency Section - list of Package files that are required for\r
65# this module.\r
66#\r
67################################################################################\r
68\r
69[Packages]\r
70 MdePkg/MdePkg.dec\r
71\r
72\r
73################################################################################\r
74#\r
75# Library Class Section - list of Library Classes that are required for\r
76# this module.\r
77#\r
78################################################################################\r
79\r
80[LibraryClasses]\r
81 BaseLib\r
82\r
83[LibraryClasses.IA32]\r
84 PcdLib\r
85 IoLib\r
86\r
87[LibraryClasses.X64]\r
88 PcdLib\r
89 IoLib\r
90\r
91[LibraryClasses.IPF]\r
92 DebugLib\r
93\r
94\r
95################################################################################\r
96#\r
97# Pcd DYNAMIC - list of PCDs that this module is coded for.\r
98#\r
99################################################################################\r
100\r
101[PcdsDynamic.IA32]\r
102 PcdFSBClock|gEfiMdePkgTokenSpaceGuid\r
103\r
104[PcdsDynamic.X64]\r
105 PcdFSBClock|gEfiMdePkgTokenSpaceGuid\r
106\r