]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf
22df764e0a28b2cb0a209a0738ab97342446caca
[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 - 2007, 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 ################################################################################
20 #
21 # Defines Section - statements that will be processed to create a Makefile.
22 #
23 ################################################################################
24 [Defines]
25 INF_VERSION = 0x00010005
26 BASE_NAME = PciBusDxe
27 FILE_GUID = 93B80004-9FB3-11d4-9A3A-0090273FC14D
28 MODULE_TYPE = DXE_DRIVER
29 VERSION_STRING = 1.0
30 EDK_RELEASE_VERSION = 0x00020000
31 EFI_SPECIFICATION_VERSION = 0x00020000
32
33 ENTRY_POINT = PciBusEntryPoint
34
35 #
36 # The following information is for reference only and not required by the build tools.
37 #
38 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
39 #
40 # DRIVER_BINDING = gPciBusDriverBinding
41 # COMPONENT_NAME = gPciBusComponentName
42 #
43
44 ################################################################################
45 #
46 # Sources Section - list of files that are required for the build to succeed.
47 #
48 ################################################################################
49
50 [Sources.common]
51 PciLib.c
52 PciIo.c
53 pcibus.c
54 PciDeviceSupport.c
55 ComponentName.c
56 ComponentName.h
57 PciCommand.c
58 PciResourceSupport.c
59 PciEnumeratorSupport.c
60 PciEnumerator.c
61 PciOptionRomSupport.c
62 PciDriverOverride.c
63 PciPowerManagement.c
64 PciPowerManagement.h
65 PciDriverOverride.h
66 PciRomTable.c
67 PciHotPlugSupport.c
68 PciLib.h
69 PciHotPlugSupport.h
70 PciRomTable.h
71 PciOptionRomSupport.h
72 PciEnumeratorSupport.h
73 PciEnumerator.h
74 PciResourceSupport.h
75 PciDeviceSupport.h
76 PciCommand.h
77 PciIo.h
78 pcibus.h
79
80 ################################################################################
81 #
82 # Package Dependency Section - list of Package files that are required for
83 # this module.
84 #
85 ################################################################################
86
87 [Packages]
88 MdePkg/MdePkg.dec
89 MdeModulePkg/MdeModulePkg.dec
90 IntelFrameworkPkg/IntelFrameworkPkg.dec
91 IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
92
93
94
95 ################################################################################
96 #
97 # Library Class Section - list of Library Classes that are required for
98 # this module.
99 #
100 ################################################################################
101
102 [LibraryClasses]
103 PciIncompatibleDeviceSupportLib
104 PcdLib
105 DevicePathLib
106 UefiBootServicesTableLib
107 MemoryAllocationLib
108 ReportStatusCodeLib
109 BaseMemoryLib
110 UefiLib
111 BaseLib
112 UefiDriverEntryPoint
113 DebugLib
114
115
116 ################################################################################
117 #
118 # Guid C Name Section - list of Guids that this module uses or produces.
119 #
120 ################################################################################
121
122 [Guids]
123 gEfiPciOptionRomTableGuid # SOMETIMES_CONSUMED System Table
124 gEfiUgaIoProtocolGuid # ALWAYS_CONSUMED System Table
125 gEfiPciHotplugDeviceGuid # PRIVATE
126 gEfiPciOptionRomTableGuid # SOMETIMES_CONSUMED
127
128
129 ################################################################################
130 #
131 # Protocol C Name Section - list of Protocol and Protocol Notify C Names
132 # that this module uses or produces.
133 #
134 ################################################################################
135
136 [Protocols]
137 gEfiPciHotPlugRequestProtocolGuid # PROTOCOL ALWAYS_PRODUCED
138 gEfiBusSpecificDriverOverrideProtocolGuid # PROTOCOL BY_START
139 gEfiPciIoProtocolGuid # PROTOCOL BY_START
140 gEfiLoadedImageProtocolGuid # PROTOCOL TO_START
141 gEfiDecompressProtocolGuid # PROTOCOL TO_START
142 gEfiPciHotPlugInitProtocolGuid # PROTOCOL TO_START
143 gEfiPciHostBridgeResourceAllocationProtocolGuid # PROTOCOL TO_START
144 gEfiPciPlatformProtocolGuid # PROTOCOL TO_START
145 gEfiPciRootBridgeIoProtocolGuid # PROTOCOL TO_START
146 gEfiDevicePathProtocolGuid # PROTOCOL TO_START
147
148
149 ################################################################################
150 #
151 # Pcd FEATURE_FLAG - list of PCDs that this module is coded for.
152 #
153 ################################################################################
154
155 [PcdsFeatureFlag.common]
156 PcdPciVgaEnable|gEfiIntelFrameworkModulePkgTokenSpaceGuid
157 PcdPciBusHotplugDeviceSupport|gEfiIntelFrameworkModulePkgTokenSpaceGuid
158 PcdPciIsaEnable|gEfiIntelFrameworkModulePkgTokenSpaceGuid
159
160
161 ################################################################################
162 #
163 # Pcd FIXED_AT_BUILD - list of PCDs that this module is coded for.
164 #
165 ################################################################################
166
167 [PcdsFixedAtBuild.common]
168 PcdPciIncompatibleDeviceSupportMask|gEfiIntelFrameworkModulePkgTokenSpaceGuid
169