]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf
1. EDK_RELEASE_VERSION removed;
[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 #
36
37 [Sources.common]
38 PciLib.c
39 PciIo.c
40 PciBus.c
41 PciDeviceSupport.c
42 ComponentName.c
43 ComponentName.h
44 PciCommand.c
45 PciResourceSupport.c
46 PciEnumeratorSupport.c
47 PciEnumerator.c
48 PciOptionRomSupport.c
49 PciDriverOverride.c
50 PciPowerManagement.c
51 PciPowerManagement.h
52 PciDriverOverride.h
53 PciRomTable.c
54 PciHotPlugSupport.c
55 PciLib.h
56 PciHotPlugSupport.h
57 PciRomTable.h
58 PciOptionRomSupport.h
59 PciEnumeratorSupport.h
60 PciEnumerator.h
61 PciResourceSupport.h
62 PciDeviceSupport.h
63 PciCommand.h
64 PciIo.h
65 PciBus.h
66
67 [Packages]
68 MdePkg/MdePkg.dec
69 MdeModulePkg/MdeModulePkg.dec
70 IntelFrameworkPkg/IntelFrameworkPkg.dec
71 IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
72
73
74
75 [LibraryClasses]
76 PciIncompatibleDeviceSupportLib
77 PcdLib
78 DevicePathLib
79 UefiBootServicesTableLib
80 MemoryAllocationLib
81 ReportStatusCodeLib
82 BaseMemoryLib
83 UefiLib
84 BaseLib
85 UefiDriverEntryPoint
86 DebugLib
87 PeCoffLib
88
89 [Guids]
90 gEfiPciOptionRomTableGuid # SOMETIMES_CONSUMED System Table
91 gEfiPciHotplugDeviceGuid # PRIVATE
92 gEfiPciOptionRomTableGuid # SOMETIMES_CONSUMED
93
94 [Protocols]
95 gEfiPciHotPlugRequestProtocolGuid # PROTOCOL ALWAYS_PRODUCED
96 gEfiBusSpecificDriverOverrideProtocolGuid # PROTOCOL BY_START
97 gEfiPciIoProtocolGuid # PROTOCOL BY_START
98 gEfiLoadedImageProtocolGuid # PROTOCOL TO_START
99 gEfiDecompressProtocolGuid # PROTOCOL TO_START
100 gEfiPciHotPlugInitProtocolGuid # PROTOCOL TO_START
101 gEfiPciHostBridgeResourceAllocationProtocolGuid # PROTOCOL TO_START
102 gEfiPciPlatformProtocolGuid # PROTOCOL TO_START
103 gEfiPciRootBridgeIoProtocolGuid # PROTOCOL TO_START
104 gEfiDevicePathProtocolGuid # PROTOCOL TO_START
105 gEfiIncompatiblePciDeviceSupportProtocolGuid # PROTOCOL TO_START
106 gEfiUgaIoProtocolGuid # ALWAYS_CONSUMED System Table
107 gEfiLoadFile2ProtocolGuid # SOMETIMES_CONSUMED
108
109 [FeaturePcd.common]
110 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPciVgaEnable
111 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPciBusHotplugDeviceSupport
112 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPciIsaEnable
113
114
115 [FixedPcd.common]
116 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPciIncompatibleDeviceSupportMask
117
118