]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Pci/PciBus/Dxe/PciBus.inf
Remove all blanks lines to avoid build errors.
[mirror_edk2.git] / IntelFrameworkModulePkg / Bus / Pci / PciBus / Dxe / PciBus.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 = PciBus
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 [Includes]
81 IntelFrameworkModulePkg/Include
82
83 ################################################################################
84 #
85 # Package Dependency Section - list of Package files that are required for
86 # this module.
87 #
88 ################################################################################
89
90 [Packages]
91 MdePkg/MdePkg.dec
92 MdeModulePkg/MdeModulePkg.dec
93 IntelFrameworkPkg/IntelFrameworkPkg.dec
94 IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
95
96
97
98 ################################################################################
99 #
100 # Library Class Section - list of Library Classes that are required for
101 # this module.
102 #
103 ################################################################################
104
105 [LibraryClasses]
106 PciIncompatibleDeviceSupportLib
107 PcdLib
108 DevicePathLib
109 UefiBootServicesTableLib
110 MemoryAllocationLib
111 ReportStatusCodeLib
112 BaseMemoryLib
113 UefiLib
114 BaseLib
115 UefiDriverEntryPoint
116 DebugLib
117
118
119 ################################################################################
120 #
121 # Guid C Name Section - list of Guids that this module uses or produces.
122 #
123 ################################################################################
124
125 [Guids]
126 gEfiPciOptionRomTableGuid # SOMETIMES_CONSUMED System Table
127 gEfiUgaIoProtocolGuid # ALWAYS_CONSUMED System Table
128 gEfiPciHotplugDeviceGuid # PRIVATE
129 gEfiPciOptionRomTableGuid # SOMETIMES_CONSUMED
130
131
132 ################################################################################
133 #
134 # Protocol C Name Section - list of Protocol and Protocol Notify C Names
135 # that this module uses or produces.
136 #
137 ################################################################################
138
139 [Protocols]
140 gEfiPciHotPlugRequestProtocolGuid # PROTOCOL ALWAYS_PRODUCED
141 gEfiBusSpecificDriverOverrideProtocolGuid # PROTOCOL BY_START
142 gEfiPciIoProtocolGuid # PROTOCOL BY_START
143 gEfiLoadedImageProtocolGuid # PROTOCOL TO_START
144 gEfiDecompressProtocolGuid # PROTOCOL TO_START
145 gEfiPciHotPlugInitProtocolGuid # PROTOCOL TO_START
146 gEfiPciHostBridgeResourceAllocationProtocolGuid # PROTOCOL TO_START
147 gEfiPciPlatformProtocolGuid # PROTOCOL TO_START
148 gEfiPciRootBridgeIoProtocolGuid # PROTOCOL TO_START
149 gEfiDevicePathProtocolGuid # PROTOCOL TO_START
150
151
152 ################################################################################
153 #
154 # Pcd FEATURE_FLAG - list of PCDs that this module is coded for.
155 #
156 ################################################################################
157
158 [PcdsFeatureFlag.common]
159 PcdPciVgaEnable|gEfiIntelFrameworkModulePkgTokenSpaceGuid
160 PcdPciBusHotplugDeviceSupport|gEfiIntelFrameworkModulePkgTokenSpaceGuid
161 PcdPciIsaEnable|gEfiIntelFrameworkModulePkgTokenSpaceGuid
162
163
164 ################################################################################
165 #
166 # Pcd FIXED_AT_BUILD - list of PCDs that this module is coded for.
167 #
168 ################################################################################
169
170 [PcdsFixedAtBuild.common]
171 PcdPciIncompatibleDeviceSupportMask|gEfiIntelFrameworkModulePkgTokenSpaceGuid
172