• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/** @file
2
3  Copyright (c) 2009, Apple Inc. All rights reserved.<BR>
4
5  This program and the accompanying materials
6  are licensed and made available under the terms and conditions of the BSD License
7  which accompanies this distribution.  The full text of the license may be found at
8  http://opensource.org/licenses/bsd-license.php
9
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[Defines]
16  INF_VERSION                     = 0x00010005
17  BASE_NAME                       = BeagleBoardPciEmulation
18  FILE_GUID                       = feaa2e2b-53ac-4d5e-ae10-1efd5da4a2ba
19  MODULE_TYPE                     = DXE_DRIVER
20  VERSION_STRING                  = 1.0
21
22  ENTRY_POINT                     = PciEmulationEntryPoint
23
24[Sources.common]
25  PciRootBridgeIo.c
26  PciEmulation.c
27
28[Packages]
29  MdePkg/MdePkg.dec
30  MdeModulePkg/MdeModulePkg.dec
31  IntelFrameworkPkg/IntelFrameworkPkg.dec
32  ArmPkg/ArmPkg.dec
33  EmbeddedPkg/EmbeddedPkg.dec
34  Omap35xxPkg/Omap35xxPkg.dec
35
36[LibraryClasses]
37  BaseLib
38  DxeServicesTableLib
39  UefiLib
40  UefiBootServicesTableLib
41  UefiDriverEntryPoint
42  UefiRuntimeServicesTableLib
43  IoLib
44  OmapDmaLib
45  DmaLib
46
47[Protocols]
48  gEfiPciRootBridgeIoProtocolGuid
49  gEfiDevicePathProtocolGuid
50  gEfiPciHostBridgeResourceAllocationProtocolGuid
51  gEfiPciIoProtocolGuid
52  gEmbeddedExternalDeviceProtocolGuid
53
54[Depex]
55  gEfiMetronomeArchProtocolGuid AND
56  gEmbeddedExternalDeviceProtocolGuid
57