• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1## @file
2#   Generic PCI Host Bridge driver.
3#
4#  Copyright (c) 2009 - 2016, Intel Corporation. All rights reserved.<BR>
5#
6#  This program and the accompanying materials
7#  are licensed and made available under the terms and conditions of the BSD License
8#  which accompanies this distribution. The full text of the license may be found at
9#  http://opensource.org/licenses/bsd-license.php
10#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12#
13#
14##
15
16[Defines]
17  INF_VERSION                    = 0x00010005
18  BASE_NAME                      = PciHostBridgeDxe
19  FILE_GUID                      = 128FB770-5E79-4176-9E51-9BB268A17DD1
20  MODULE_TYPE                    = DXE_DRIVER
21  VERSION_STRING                 = 1.0
22  ENTRY_POINT                    = InitializePciHostBridge
23
24[Sources]
25  PciHostBridge.h
26  PciRootBridge.h
27  PciHostBridge.c
28  PciRootBridgeIo.c
29  PciHostResource.h
30
31[Packages]
32  MdePkg/MdePkg.dec
33  MdeModulePkg/MdeModulePkg.dec
34
35[LibraryClasses]
36  UefiDriverEntryPoint
37  UefiBootServicesTableLib
38  DebugLib
39  DxeServicesTableLib
40  DevicePathLib
41  BaseMemoryLib
42  BaseLib
43  PciSegmentLib
44  PciHostBridgeLib
45
46[Protocols]
47  gEfiMetronomeArchProtocolGuid                   ## CONSUMES
48  gEfiCpuIo2ProtocolGuid                          ## CONSUMES
49  gEfiDevicePathProtocolGuid                      ## BY_START
50  gEfiPciRootBridgeIoProtocolGuid                 ## BY_START
51  gEfiPciHostBridgeResourceAllocationProtocolGuid ## BY_START
52
53[Depex]
54  gEfiCpuIo2ProtocolGuid AND
55  gEfiMetronomeArchProtocolGuid AND
56  gEfiCpuArchProtocolGuid
57