1 ## @file 2 # OHCI USB Host Controller PEIM 3 # 4 # Copyright (c) 2013-2015 Intel Corporation. 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 # 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 IMPLIED. 13 # 14 ## 15 16 17 [Defines] 18 INF_VERSION = 0x00010005 19 BASE_NAME = OhciPei 20 FILE_GUID = 332A0926-429B-4624-9211-A36B23DF0389 21 MODULE_TYPE = PEIM 22 VERSION_STRING = 1.0 23 24 ENTRY_POINT = OhcPeimEntry 25 26 # 27 # The following information is for reference only and not required by the build tools. 28 # 29 # VALID_ARCHITECTURES = IA32 X64 IPF EBC 30 # 31 32 [Sources] 33 Descriptor.h 34 OhcPeim.c 35 OhcPeim.h 36 OhciSched.c 37 OhciSched.h 38 OhciReg.c 39 OhciReg.h 40 OhciUrb.c 41 OhciUrb.h 42 UsbHcMem.c 43 UsbHcMem.h 44 45 [Packages] 46 MdePkg/MdePkg.dec 47 MdeModulePkg/MdeModulePkg.dec 48 QuarkSocPkg/QuarkSocPkg.dec 49 50 [LibraryClasses] 51 IoLib 52 TimerLib 53 BaseMemoryLib 54 PeimEntryPoint 55 PeiServicesLib 56 57 [Ppis] 58 gPeiUsbHostControllerPpiGuid # PPI ALWAYS_PRODUCED 59 gPeiUsbControllerPpiGuid # PPI ALWAYS_CONSUMED 60 61 [Depex] 62 gEfiPeiMemoryDiscoveredPpiGuid AND gPeiUsbControllerPpiGuid AND gEfiPeiBootInRecoveryModePpiGuid 63