]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf
Move gEfiPciOptionRomTableGuid from IntelFrameworkModulePkg to the DuetPkg
[mirror_edk2.git] / IntelFrameworkModulePkg / Bus / Pci / PciBusDxe / PciBusDxe.inf
1 #/** @file
2 # Component description file for PciBus module.
3 #
4 # PCI bus driver. This module will probe all PCI devices and allocate MMIO and IO
5 # space for these devices. Please use PCD feature flag PcdPciBusHotplugDeviceSupport to enable
6 # support hot plug.
7 # Copyright (c) 2006 - 2009, Intel Corporation
8 #
9 # All rights reserved. This program and the accompanying materials
10 # are licensed and made available under the terms and conditions of the BSD License
11 # which accompanies this distribution. The full text of the license may be found at
12 # http://opensource.org/licenses/bsd-license.php
13 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15 #
16 #
17 #**/
18
19 [Defines]
20 INF_VERSION = 0x00010005
21 BASE_NAME = PciBusDxe
22 FILE_GUID = 93B80004-9FB3-11d4-9A3A-0090273FC14D
23 MODULE_TYPE = UEFI_DRIVER
24 VERSION_STRING = 1.0
25 EFI_SPECIFICATION_VERSION = 0x00020000
26 ENTRY_POINT = PciBusEntryPoint
27
28 #
29 # The following information is for reference only and not required by the build tools.
30 #
31 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
32 #
33 # DRIVER_BINDING = gPciBusDriverBinding
34 # COMPONENT_NAME = gPciBusComponentName
35 # COMPONENT_NAME2 = gPciBusComponentName2
36 #
37
38 [Sources.common]
39 PciLib.c
40 PciIo.c
41 PciBus.c
42 PciDeviceSupport.c
43 ComponentName.c
44 ComponentName.h
45 PciCommand.c
46 PciResourceSupport.c
47 PciEnumeratorSupport.c
48 PciEnumerator.c
49 PciOptionRomSupport.c
50 PciDriverOverride.c
51 PciPowerManagement.c
52 PciPowerManagement.h
53 PciDriverOverride.h
54 PciRomTable.c
55 PciHotPlugSupport.c
56 PciLib.h
57 PciHotPlugSupport.h
58 PciRomTable.h
59 PciOptionRomSupport.h
60 PciEnumeratorSupport.h
61 PciEnumerator.h
62 PciResourceSupport.h
63 PciDeviceSupport.h
64 PciCommand.h
65 PciIo.h
66 PciBus.h
67
68 [Packages]
69 MdePkg/MdePkg.dec
70 MdeModulePkg/MdeModulePkg.dec
71 IntelFrameworkPkg/IntelFrameworkPkg.dec
72 IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
73
74 [LibraryClasses]
75 PciIncompatibleDeviceSupportLib
76 PcdLib
77 DevicePathLib
78 UefiBootServicesTableLib
79 MemoryAllocationLib
80 ReportStatusCodeLib
81 BaseMemoryLib
82 UefiLib
83 BaseLib
84 UefiDriverEntryPoint
85 DebugLib
86 PeCoffLib
87
88 [Protocols]
89 gEfiPciHotPlugRequestProtocolGuid # PROTOCOL ALWAYS_PRODUCED
90 gEfiBusSpecificDriverOverrideProtocolGuid # PROTOCOL BY_START
91 gEfiPciIoProtocolGuid # PROTOCOL BY_START
92 gEfiLoadedImageProtocolGuid # PROTOCOL TO_START
93 gEfiDecompressProtocolGuid # PROTOCOL TO_START
94 gEfiPciHotPlugInitProtocolGuid # PROTOCOL TO_START
95 gEfiPciHostBridgeResourceAllocationProtocolGuid # PROTOCOL TO_START
96 gEfiPciPlatformProtocolGuid # PROTOCOL TO_START
97 gEfiPciRootBridgeIoProtocolGuid # PROTOCOL TO_START
98 gEfiDevicePathProtocolGuid # PROTOCOL TO_START
99 gEfiIncompatiblePciDeviceSupportProtocolGuid # PROTOCOL TO_START
100 gEfiUgaIoProtocolGuid # ALWAYS_CONSUMED System Table
101 gEfiLoadFile2ProtocolGuid # SOMETIMES_CONSUMED
102
103 [FeaturePcd.common]
104 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPciVgaEnable
105 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPciBusHotplugDeviceSupport
106 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPciIsaEnable
107
108 [FixedPcd.common]
109 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPciIncompatibleDeviceSupportMask
110
111