1 | ## @file
|
---|
2 | # Instance of PCI Express Library using the 256 MB PCI Express MMIO window that
|
---|
3 | # is safe for runtime use.
|
---|
4 | #
|
---|
5 | # PCI Express Library that uses the 256 MB PCI Express MMIO window to perform
|
---|
6 | # PCI Configuration cycles. Layers on top of an I/O Library instance. A table of
|
---|
7 | # PCI devices that are registered for for runtime access is maintained so the
|
---|
8 | # proper virtual address is used to perform the PCI Express Configuration cycle.
|
---|
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 = DxeRuntimePciExpressLib
|
---|
20 | MODULE_UNI_FILE = DxeRuntimePciExpressLib.uni
|
---|
21 | FILE_GUID = 54DCBCE5-92AD-41f5-AAAF-1170F16DA6A8
|
---|
22 | MODULE_TYPE = DXE_RUNTIME_DRIVER
|
---|
23 | VERSION_STRING = 1.0
|
---|
24 | LIBRARY_CLASS = PciExpressLib|DXE_RUNTIME_DRIVER
|
---|
25 | CONSTRUCTOR = DxeRuntimePciExpressLibConstructor
|
---|
26 | DESTRUCTOR = DxeRuntimePciExpressLibDestructor
|
---|
27 |
|
---|
28 | #
|
---|
29 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
30 | #
|
---|
31 |
|
---|
32 | [Sources]
|
---|
33 | PciExpressLib.c
|
---|
34 |
|
---|
35 | [Packages]
|
---|
36 | MdePkg/MdePkg.dec
|
---|
37 |
|
---|
38 | [LibraryClasses]
|
---|
39 | BaseLib
|
---|
40 | IoLib
|
---|
41 | DebugLib
|
---|
42 | PcdLib
|
---|
43 | MemoryAllocationLib
|
---|
44 | UefiBootServicesTableLib
|
---|
45 | DxeServicesTableLib
|
---|
46 | UefiRuntimeLib
|
---|
47 |
|
---|
48 | [Pcd]
|
---|
49 | gEfiMdePkgTokenSpaceGuid.PcdPciExpressBaseAddress ## CONSUMES
|
---|
50 | gEfiMdePkgTokenSpaceGuid.PcdPciExpressBaseSize ## CONSUMES
|
---|