1 | ## @file
|
---|
2 | # PCI Segment Library that layers on top of the PCI CFG2 PPI.
|
---|
3 | #
|
---|
4 | # This library produces the APIs from the PCI Segment Library and
|
---|
5 | # implements these APIs by calling into the EFI_PEI_PCI CFG2 PPI. One or more
|
---|
6 | # EFI_PEI_PCI CFG2 PPIs are typically produced by a chipset specific PEIM.
|
---|
7 | # This library instance should only be used platforms with multiple PCI segments.
|
---|
8 | #
|
---|
9 | # Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
10 | #
|
---|
11 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
12 | #
|
---|
13 | #
|
---|
14 | ##
|
---|
15 |
|
---|
16 | [Defines]
|
---|
17 | INF_VERSION = 0x00010005
|
---|
18 | BASE_NAME = PeiPciSegmentLibPciCfg2
|
---|
19 | MODULE_UNI_FILE = PeiPciSegmentLibPciCfg2.uni
|
---|
20 | FILE_GUID = 254901AD-7DB7-45f8-93C8-93D579398D9F
|
---|
21 | MODULE_TYPE = PEIM
|
---|
22 | VERSION_STRING = 1.0
|
---|
23 | LIBRARY_CLASS = PciSegmentLib|PEIM SEC PEI_CORE
|
---|
24 |
|
---|
25 | #
|
---|
26 | # The following information is for reference only and not required by the build tools.
|
---|
27 | #
|
---|
28 | # VALID_ARCHITECTURES = IA32 X64 EBC (EBC is for build only)
|
---|
29 | #
|
---|
30 |
|
---|
31 | [Sources]
|
---|
32 | PciSegmentLib.c
|
---|
33 |
|
---|
34 | [Packages]
|
---|
35 | MdePkg/MdePkg.dec
|
---|
36 |
|
---|
37 | [LibraryClasses]
|
---|
38 | PeiServicesTablePointerLib
|
---|
39 | BaseLib
|
---|
40 | DebugLib
|
---|
41 | PeiServicesLib
|
---|
42 |
|
---|
43 | [Ppis]
|
---|
44 | gEfiPciCfg2PpiGuid ## CONSUMES
|
---|
45 |
|
---|
46 | [Depex.common.PEIM]
|
---|
47 | gEfiPciCfg2PpiGuid
|
---|
48 |
|
---|