1## @file 2# The UhcPeim driver is responsible for managing the behavior of UHCI controller at PEI phase. 3# 4# It produces gPeiUsbHostControllerPpiGuid based on gPeiUsbControllerPpiGuid which is used 5# to enable recovery function from USB Drivers. 6# 7# Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR> 8# 9# This program and the accompanying materials 10# are licensed and made available under the terms and conditions 11# of the BSD License which accompanies this distribution. The 12# full text of the license may be found at 13# http://opensource.org/licenses/bsd-license.php 14# 15# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 16# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 17# 18## 19 20[Defines] 21 INF_VERSION = 0x00010005 22 BASE_NAME = UhciPei 23 MODULE_UNI_FILE = UhciPei.uni 24 FILE_GUID = C463CEAC-FC57-4f36-88B7-356C750C3BCA 25 MODULE_TYPE = PEIM 26 VERSION_STRING = 1.0 27 28 ENTRY_POINT = UhcPeimEntry 29 30# 31# The following information is for reference only and not required by the build tools. 32# 33# VALID_ARCHITECTURES = IA32 X64 IPF EBC 34# 35 36[Sources] 37 UhcPeim.c 38 UhcPeim.h 39 40 41[Packages] 42 MdePkg/MdePkg.dec 43 MdeModulePkg/MdeModulePkg.dec 44 45 46[LibraryClasses] 47 IoLib 48 TimerLib 49 BaseMemoryLib 50 PeiServicesLib 51 PeimEntryPoint 52 DebugLib 53 54 55[Ppis] 56 gPeiUsbHostControllerPpiGuid ## PRODUCES 57 gPeiUsbControllerPpiGuid ## CONSUMES 58 59 60[Depex] 61 gEfiPeiMemoryDiscoveredPpiGuid AND gPeiUsbControllerPpiGuid AND gEfiPeiBootInRecoveryModePpiGuid 62 63[UserExtensions.TianoCore."ExtraFiles"] 64 UhciPeiExtra.uni 65