1 #/** @file 2 # 3 # Copyright (c) 2014, ARM Ltd. All rights reserved.<BR> 4 # Copyright (c) 2015-2017, Linaro. All rights reserved. 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 = 0x00010019 18 BASE_NAME = HiKeyFastbootDxe 19 FILE_GUID = 8e335c38-c4e1-494e-8011-37a858d9763d 20 MODULE_TYPE = UEFI_DRIVER 21 VERSION_STRING = 1.0 22 ENTRY_POINT = HiKeyFastbootPlatformEntryPoint 23 24 [Sources.common] 25 HiKeyFastbootDxe.c 26 27 [LibraryClasses] 28 BaseLib 29 BaseMemoryLib 30 CacheMaintenanceLib 31 DebugLib 32 DevicePathLib 33 IoLib 34 MemoryAllocationLib 35 PcdLib 36 UefiBootServicesTableLib 37 UefiRuntimeServicesTableLib 38 UefiDriverEntryPoint 39 UsbSerialNumberLib 40 TimerLib 41 42 [Protocols] 43 gAndroidFastbootPlatformProtocolGuid 44 gEfiBlockIoProtocolGuid 45 gEfiDiskIoProtocolGuid 46 gEfiEraseBlockProtocolGuid 47 gEfiSimpleTextOutProtocolGuid 48 49 [Packages] 50 ArmPlatformPkg/ArmPlatformPkg.dec 51 ArmPkg/ArmPkg.dec 52 EmbeddedPkg/EmbeddedPkg.dec 53 MdePkg/MdePkg.dec 54 MdeModulePkg/MdeModulePkg.dec 55 OpenPlatformPkg/Platforms/Hisilicon/HiKey/HiKey.dec 56 57 [Pcd] 58 gArmPlatformTokenSpaceGuid.PcdFirmwareVendor 59 gHiKeyTokenSpaceGuid.PcdAndroidFastbootNvmDevicePath 60 gHiKeyTokenSpaceGuid.PcdArmFastbootFlashLimit 61