Last change
on this file since 87965 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.3 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # PCI Library that layers on top of the PCI CFG2 PPI.
|
---|
3 | #
|
---|
4 | # This library produces the APIs from the PCI Library and implements
|
---|
5 | # these APIs by calling into the EFI_PEI_PCI CFG2 PPI. One or more EFI_PEI_PCI CFG2
|
---|
6 | # PPIs are typically produced by a chipset specific PEIM. This library only uses
|
---|
7 | # the first PPI found, so this library instance should only be used platforms
|
---|
8 | # with a single PCI segment.
|
---|
9 | #
|
---|
10 | # Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
11 | #
|
---|
12 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
13 | #
|
---|
14 | #
|
---|
15 | ##
|
---|
16 |
|
---|
17 | [Defines]
|
---|
18 | INF_VERSION = 0x00010005
|
---|
19 | BASE_NAME = PeiPciLibPciCfg2
|
---|
20 | MODULE_UNI_FILE = PeiPciLibPciCfg2.uni
|
---|
21 | FILE_GUID = FA3AD693-D58A-4619-960B-8EE85C914870
|
---|
22 | MODULE_TYPE = PEIM
|
---|
23 | VERSION_STRING = 1.0
|
---|
24 | LIBRARY_CLASS = PciLib|PEIM SEC PEI_CORE
|
---|
25 |
|
---|
26 | #
|
---|
27 | # The following information is for reference only and not required by the build tools.
|
---|
28 | #
|
---|
29 | # VALID_ARCHITECTURES = IA32 X64 EBC (EBC is for build only)
|
---|
30 | #
|
---|
31 |
|
---|
32 | [Sources]
|
---|
33 | PciLib.c
|
---|
34 |
|
---|
35 |
|
---|
36 | [Packages]
|
---|
37 | MdePkg/MdePkg.dec
|
---|
38 |
|
---|
39 |
|
---|
40 | [LibraryClasses]
|
---|
41 | PeiServicesTablePointerLib
|
---|
42 | BaseLib
|
---|
43 | DebugLib
|
---|
44 | PeiServicesLib
|
---|
45 |
|
---|
46 | [Ppis]
|
---|
47 | gEfiPciCfg2PpiGuid ## CONSUMES
|
---|
48 |
|
---|
49 | [Depex.common.PEIM]
|
---|
50 | gEfiPciCfg2PpiGuid
|
---|
51 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.