1## @file 2# Description file for the Universal Flash Storage (UFS) Pass Thru driver. 3# 4# Copyright (c) 2014 - 2015, 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 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 = 0x00010005 18 BASE_NAME = UfsPassThruDxe 19 MODULE_UNI_FILE = UfsPassThru.uni 20 FILE_GUID = E7F1DFF9-DAB6-498A-9ADF-57F344EDDF57 21 MODULE_TYPE = UEFI_DRIVER 22 VERSION_STRING = 1.0 23 24 ENTRY_POINT = InitializeUfsPassThru 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# DRIVER_BINDING = gUfsPassThruDriverBinding 32# COMPONENT_NAME = gUfsPassThruComponentName 33# 34 35[Sources] 36 ComponentName.c 37 UfsPassThru.c 38 UfsPassThru.h 39 UfsPassThruHci.c 40 UfsPassThruHci.h 41 42[Packages] 43 MdePkg/MdePkg.dec 44 MdeModulePkg/MdeModulePkg.dec 45 46[LibraryClasses] 47 UefiBootServicesTableLib 48 MemoryAllocationLib 49 BaseMemoryLib 50 UefiLib 51 BaseLib 52 CacheMaintenanceLib 53 UefiDriverEntryPoint 54 DebugLib 55 DevicePathLib 56 TimerLib 57 58[Protocols] 59 gEfiExtScsiPassThruProtocolGuid ## BY_START 60 gEdkiiUfsHostControllerProtocolGuid ## TO_START 61 62[UserExtensions.TianoCore."ExtraFiles"] 63 UfsPassThruExtra.uni 64