1 | ## @file
|
---|
2 | # PCI Segment Library that layers on top of the PCI Root Bridge I/O Protocol.
|
---|
3 | #
|
---|
4 | # This library produces the APIs from the PCI Library and implements these APIs
|
---|
5 | # by calling into the PCI Root Bridge I/O Protocols that are present in the platform.
|
---|
6 | # The PCI Root Bridge I/O Protocols are typically produced by a chipset specific DXE driver.
|
---|
7 | # This library binds to all of the PCI Root Bridge I/O Protocols in the platform and handles
|
---|
8 | # the translation from a PCI segment number into a specific PCI Root Bridge I/O Protocol.
|
---|
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 = UefiPciSegmentLibPciRootBridgeIo
|
---|
20 | MODULE_UNI_FILE = UefiPciSegmentLibPciRootBridgeIo.uni
|
---|
21 | FILE_GUID = C6068612-B6E0-48a3-BB92-60E4A4F89EDF
|
---|
22 | MODULE_TYPE = UEFI_DRIVER
|
---|
23 | VERSION_STRING = 1.0
|
---|
24 | LIBRARY_CLASS = PciSegmentLib|DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SMM_DRIVER UEFI_DRIVER UEFI_APPLICATION
|
---|
25 |
|
---|
26 | CONSTRUCTOR = PciSegmentLibConstructor
|
---|
27 | DESTRUCTOR = PciSegmentLibDestructor
|
---|
28 |
|
---|
29 | #
|
---|
30 | # The following information is for reference only and not required by the build tools.
|
---|
31 | #
|
---|
32 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
33 | #
|
---|
34 |
|
---|
35 | [Sources]
|
---|
36 | PciSegmentLib.h
|
---|
37 | PciSegmentLib.c
|
---|
38 |
|
---|
39 |
|
---|
40 | [Packages]
|
---|
41 | MdePkg/MdePkg.dec
|
---|
42 |
|
---|
43 |
|
---|
44 | [LibraryClasses]
|
---|
45 | MemoryAllocationLib
|
---|
46 | BaseLib
|
---|
47 | UefiBootServicesTableLib
|
---|
48 | DebugLib
|
---|
49 |
|
---|
50 | [Protocols]
|
---|
51 | gEfiPciRootBridgeIoProtocolGuid ## CONSUMES
|
---|
52 |
|
---|
53 | [Depex.common.DXE_DRIVER, Depex.common.DXE_RUNTIME_DRIVER, Depex.common.DXE_SAL_DRIVER, Depex.common.DXE_SMM_DRIVER]
|
---|
54 | gEfiPciRootBridgeIoProtocolGuid
|
---|
55 |
|
---|