1## @file
2# The Usb Bus Peim driver is used to support recovery from usb device.
3#
4# Copyright (c) 2006 - 2014, 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
8# of the BSD License which accompanies this distribution.  The
9# full text of the license may be found at
10# http://opensource.org/licenses/bsd-license.php
11#
12# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14#
15##
16
17[Defines]
18  INF_VERSION                    = 0x00010005
19  BASE_NAME                      = UsbBusPei
20  MODULE_UNI_FILE                = UsbBusPei.uni
21  FILE_GUID                      = 8401A045-6F70-4505-8471-7015B40355E3
22  MODULE_TYPE                    = PEIM
23  VERSION_STRING                 = 1.0
24
25  ENTRY_POINT                    = PeimInitializeUsb
26
27#
28# The following information is for reference only and not required by the build tools.
29#
30#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
31#
32
33[Sources]
34  PeiUsbLib.c
35  HubPeim.c
36  UsbIoPeim.c
37  UsbPeim.c
38  UsbPeim.h
39  PeiUsbLib.h
40  HubPeim.h
41
42
43[Packages]
44  MdePkg/MdePkg.dec
45  MdeModulePkg/MdeModulePkg.dec
46
47[LibraryClasses]
48  TimerLib
49  BaseMemoryLib
50  PeiServicesLib
51  PeimEntryPoint
52  DebugLib
53  PcdLib
54
55[Pcd]
56  gEfiMdePkgTokenSpaceGuid.PcdUsbTransferTimeoutValue  ## CONSUMES
57
58[Ppis]
59  gPeiUsbIoPpiGuid                              ## PRODUCES
60  gPeiUsbHostControllerPpiGuid                  ## SOMETIMES_CONSUMES
61  gPeiUsb2HostControllerPpiGuid                 ## SOMETIMES_CONSUMES
62
63[Depex]
64  gEfiPeiMemoryDiscoveredPpiGuid AND gEfiPeiBootInRecoveryModePpiGuid AND gPeiUsb2HostControllerPpiGuid OR gPeiUsbHostControllerPpiGuid
65
66[UserExtensions.TianoCore."ExtraFiles"]
67  UsbBusPeiExtra.uni
68