Last change
on this file since 107064 was 80721, checked in by vboxsync, 5 years ago |
Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.7 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # PEI ACPI Timer Library
|
---|
3 | #
|
---|
4 | # Provides basic timer support using the ACPI timer hardware. The performance
|
---|
5 | # counter features are provided by the processors time stamp counter.
|
---|
6 | #
|
---|
7 | # Note: The implementation uses the lower 24-bits of the ACPI timer and
|
---|
8 | # is compatible with both 24-bit and 32-bit ACPI timers.
|
---|
9 | #
|
---|
10 | # Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
11 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
12 | #
|
---|
13 | ##
|
---|
14 |
|
---|
15 | [Defines]
|
---|
16 | INF_VERSION = 0x00010005
|
---|
17 | BASE_NAME = PeiAcpiTimerLib
|
---|
18 | FILE_GUID = 3FCA54F6-E1A2-4B20-BE76-926B4B48BFAA
|
---|
19 | MODULE_TYPE = BASE
|
---|
20 | VERSION_STRING = 1.0
|
---|
21 | LIBRARY_CLASS = TimerLib|PEI_CORE PEIM
|
---|
22 | CONSTRUCTOR = AcpiTimerLibConstructor
|
---|
23 | MODULE_UNI_FILE = PeiAcpiTimerLib.uni
|
---|
24 |
|
---|
25 | [Sources]
|
---|
26 | AcpiTimerLib.c
|
---|
27 | PeiAcpiTimerLib.c
|
---|
28 |
|
---|
29 | [Packages]
|
---|
30 | MdePkg/MdePkg.dec
|
---|
31 | PcAtChipsetPkg/PcAtChipsetPkg.dec
|
---|
32 |
|
---|
33 | [LibraryClasses]
|
---|
34 | BaseLib
|
---|
35 | PcdLib
|
---|
36 | PciLib
|
---|
37 | IoLib
|
---|
38 | DebugLib
|
---|
39 | HobLib
|
---|
40 |
|
---|
41 | [Pcd]
|
---|
42 | gPcAtChipsetPkgTokenSpaceGuid.PcdAcpiIoPciBusNumber ## CONSUMES
|
---|
43 | gPcAtChipsetPkgTokenSpaceGuid.PcdAcpiIoPciDeviceNumber ## CONSUMES
|
---|
44 | gPcAtChipsetPkgTokenSpaceGuid.PcdAcpiIoPciFunctionNumber ## CONSUMES
|
---|
45 | gPcAtChipsetPkgTokenSpaceGuid.PcdAcpiIoPciEnableRegisterOffset ## CONSUMES
|
---|
46 | gPcAtChipsetPkgTokenSpaceGuid.PcdAcpiIoBarEnableMask ## CONSUMES
|
---|
47 | gPcAtChipsetPkgTokenSpaceGuid.PcdAcpiIoPciBarRegisterOffset ## CONSUMES
|
---|
48 | gPcAtChipsetPkgTokenSpaceGuid.PcdAcpiIoPortBaseAddress ## CONSUMES
|
---|
49 | gPcAtChipsetPkgTokenSpaceGuid.PcdAcpiPm1TmrOffset ## CONSUMES
|
---|
50 | gPcAtChipsetPkgTokenSpaceGuid.PcdAcpiIoPortBaseAddressMask ## CONSUMES
|
---|
Note:
See
TracBrowser
for help on using the repository browser.