1## @file 2# OVMF's instance of the PCI Host Bridge Library. 3# 4# Copyright (C) 2016, Red Hat, Inc. 5# Copyright (c) 2016, Intel Corporation. All rights reserved.<BR> 6# 7# This program and the accompanying materials are licensed and made available 8# under the terms and conditions of the BSD License which accompanies this 9# distribution. The full text of the license may be found at 10# http://opensource.org/licenses/bsd-license.php 11# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 12# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR 13# IMPLIED. 14# 15# 16## 17 18[Defines] 19 INF_VERSION = 0x00010005 20 BASE_NAME = PciHostBridgeLib 21 FILE_GUID = 9F2BC05E-51EA-4AED-9A3E-7699641734E8 22 MODULE_TYPE = DXE_DRIVER 23 VERSION_STRING = 1.0 24 LIBRARY_CLASS = PciHostBridgeLib 25 26# 27# The following information is for reference only and not required by the build 28# tools. 29# 30# VALID_ARCHITECTURES = IA32 X64 IPF EBC 31# 32 33[Sources] 34 PciHostBridgeLib.c 35 XenSupport.c 36 PciHostBridge.h 37 38[Packages] 39 MdeModulePkg/MdeModulePkg.dec 40 MdePkg/MdePkg.dec 41 OvmfPkg/OvmfPkg.dec 42 43[LibraryClasses] 44 BaseMemoryLib 45 DebugLib 46 DevicePathLib 47 MemoryAllocationLib 48 PciLib 49 QemuFwCfgLib 50 51[Pcd] 52 gUefiOvmfPkgTokenSpaceGuid.PcdPciIoBase 53 gUefiOvmfPkgTokenSpaceGuid.PcdPciIoSize 54 gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio32Base 55 gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio32Size 56 gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio64Base 57 gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio64Size 58 gUefiOvmfPkgTokenSpaceGuid.PcdOvmfHostBridgePciDevId 59 gEfiMdeModulePkgTokenSpaceGuid.PcdPciDisableBusEnumeration 60