2007-06-28 16:02:17 +02:00
|
|
|
#/** @file
|
|
|
|
# Component description file for PciBus module.
|
|
|
|
#
|
|
|
|
# PCI bus driver. This module will probe all PCI devices and allocate MMIO and IO
|
|
|
|
# space for these devices. Please use PCD feature flag PcdPciBusHotplugDeviceSupport to enable
|
|
|
|
# support hot plug.
|
2008-07-02 05:15:27 +02:00
|
|
|
# Copyright (c) 2006 - 2008, Intel Corporation
|
2007-06-28 16:02:17 +02:00
|
|
|
#
|
|
|
|
# All rights reserved. This program and the accompanying materials
|
|
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
|
|
|
# http://opensource.org/licenses/bsd-license.php
|
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#**/
|
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
2007-07-18 16:24:10 +02:00
|
|
|
BASE_NAME = PciBusDxe
|
2007-06-28 16:02:17 +02:00
|
|
|
FILE_GUID = 93B80004-9FB3-11d4-9A3A-0090273FC14D
|
2008-08-20 12:00:50 +02:00
|
|
|
MODULE_TYPE = UEFI_DRIVER
|
2007-06-28 16:02:17 +02:00
|
|
|
VERSION_STRING = 1.0
|
|
|
|
EDK_RELEASE_VERSION = 0x00020000
|
|
|
|
EFI_SPECIFICATION_VERSION = 0x00020000
|
|
|
|
|
|
|
|
ENTRY_POINT = PciBusEntryPoint
|
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
|
|
|
# VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
|
|
|
#
|
2008-01-23 10:41:04 +01:00
|
|
|
# DRIVER_BINDING = gPciBusDriverBinding
|
|
|
|
# COMPONENT_NAME = gPciBusComponentName
|
2007-06-28 16:02:17 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
[Sources.common]
|
|
|
|
PciLib.c
|
|
|
|
PciIo.c
|
2008-07-16 04:54:54 +02:00
|
|
|
PciBus.c
|
2007-06-28 16:02:17 +02:00
|
|
|
PciDeviceSupport.c
|
|
|
|
ComponentName.c
|
|
|
|
ComponentName.h
|
|
|
|
PciCommand.c
|
|
|
|
PciResourceSupport.c
|
|
|
|
PciEnumeratorSupport.c
|
|
|
|
PciEnumerator.c
|
|
|
|
PciOptionRomSupport.c
|
|
|
|
PciDriverOverride.c
|
|
|
|
PciPowerManagement.c
|
|
|
|
PciPowerManagement.h
|
|
|
|
PciDriverOverride.h
|
|
|
|
PciRomTable.c
|
|
|
|
PciHotPlugSupport.c
|
|
|
|
PciLib.h
|
|
|
|
PciHotPlugSupport.h
|
|
|
|
PciRomTable.h
|
|
|
|
PciOptionRomSupport.h
|
|
|
|
PciEnumeratorSupport.h
|
|
|
|
PciEnumerator.h
|
|
|
|
PciResourceSupport.h
|
|
|
|
PciDeviceSupport.h
|
|
|
|
PciCommand.h
|
|
|
|
PciIo.h
|
2008-07-16 04:54:54 +02:00
|
|
|
PciBus.h
|
2007-06-28 16:02:17 +02:00
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
|
|
IntelFrameworkPkg/IntelFrameworkPkg.dec
|
|
|
|
IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
PciIncompatibleDeviceSupportLib
|
|
|
|
PcdLib
|
|
|
|
DevicePathLib
|
|
|
|
UefiBootServicesTableLib
|
|
|
|
MemoryAllocationLib
|
|
|
|
ReportStatusCodeLib
|
|
|
|
BaseMemoryLib
|
|
|
|
UefiLib
|
|
|
|
BaseLib
|
|
|
|
UefiDriverEntryPoint
|
|
|
|
DebugLib
|
2009-02-05 20:32:40 +01:00
|
|
|
PeCoffLib
|
2007-06-28 16:02:17 +02:00
|
|
|
|
|
|
|
[Guids]
|
|
|
|
gEfiPciOptionRomTableGuid # SOMETIMES_CONSUMED System Table
|
|
|
|
gEfiPciHotplugDeviceGuid # PRIVATE
|
|
|
|
gEfiPciOptionRomTableGuid # SOMETIMES_CONSUMED
|
|
|
|
|
|
|
|
[Protocols]
|
|
|
|
gEfiPciHotPlugRequestProtocolGuid # PROTOCOL ALWAYS_PRODUCED
|
|
|
|
gEfiBusSpecificDriverOverrideProtocolGuid # PROTOCOL BY_START
|
|
|
|
gEfiPciIoProtocolGuid # PROTOCOL BY_START
|
|
|
|
gEfiLoadedImageProtocolGuid # PROTOCOL TO_START
|
|
|
|
gEfiDecompressProtocolGuid # PROTOCOL TO_START
|
|
|
|
gEfiPciHotPlugInitProtocolGuid # PROTOCOL TO_START
|
|
|
|
gEfiPciHostBridgeResourceAllocationProtocolGuid # PROTOCOL TO_START
|
|
|
|
gEfiPciPlatformProtocolGuid # PROTOCOL TO_START
|
|
|
|
gEfiPciRootBridgeIoProtocolGuid # PROTOCOL TO_START
|
|
|
|
gEfiDevicePathProtocolGuid # PROTOCOL TO_START
|
2008-01-23 10:41:04 +01:00
|
|
|
gEfiIncompatiblePciDeviceSupportProtocolGuid # PROTOCOL TO_START
|
2008-08-20 06:18:32 +02:00
|
|
|
gEfiUgaIoProtocolGuid # ALWAYS_CONSUMED System Table
|
2007-06-28 16:02:17 +02:00
|
|
|
|
2007-08-30 11:11:54 +02:00
|
|
|
[FeaturePcd.common]
|
|
|
|
gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPciVgaEnable
|
|
|
|
gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPciBusHotplugDeviceSupport
|
|
|
|
gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPciIsaEnable
|
2007-06-28 16:02:17 +02:00
|
|
|
|
|
|
|
|
2007-08-30 11:11:54 +02:00
|
|
|
[FixedPcd.common]
|
|
|
|
gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPciIncompatibleDeviceSupportMask
|
2007-06-28 16:02:17 +02:00
|
|
|
|
2008-08-20 12:00:50 +02:00
|
|
|
|