]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf
MdeModulePkg ScsiDiskDxe: Add Erase Block Protocol support for UFS devices
[mirror_edk2.git] / MdeModulePkg / Bus / Scsi / ScsiDiskDxe / ScsiDiskDxe.inf
CommitLineData
6bfbb5f0 1## @file\r
6036e94d 2# The Scsi Disk driver is used to retrieve the media info in the attached SCSI disk.\r
d670bf53
HW
3# It detects the SCSI disk media and installs Block I/O and Block I/O2 Protocol on\r
4# the device handle.\r
3b2dbece 5# \r
b6e5da19 6# Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>\r
cd5ebaa0 7# This program and the accompanying materials\r
6ad55b15 8# are licensed and made available under the terms and conditions of the BSD License\r
3b2dbece 9# which accompanies this distribution. The full text of the license may be found at\r
6ad55b15 10# http://opensource.org/licenses/bsd-license.php\r
3b2dbece 11# \r
6ad55b15 12# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
13# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
3b2dbece 14# \r
6bfbb5f0 15##\r
6ad55b15 16\r
6ad55b15 17[Defines]\r
18 INF_VERSION = 0x00010005\r
19 BASE_NAME = ScsiDisk\r
6036e94d 20 MODULE_UNI_FILE = ScsiDisk.uni\r
6ad55b15 21 FILE_GUID = 0A66E322-3740-4cce-AD62-BD172CECCA35\r
d3f16117 22 MODULE_TYPE = UEFI_DRIVER\r
6ad55b15 23 VERSION_STRING = 1.0\r
6ad55b15 24\r
25 ENTRY_POINT = InitializeScsiDisk\r
26\r
27#\r
28# The following information is for reference only and not required by the build tools.\r
29#\r
30# VALID_ARCHITECTURES = IA32 X64 IPF EBC\r
31#\r
3ed0238a 32# DRIVER_BINDING = gScsiDiskDriverBinding\r
9beb888e 33# COMPONENT_NAME = gScsiDiskComponentName\r
34# COMPONENT_NAME2 = gScsiDiskComponentName2\r
6ad55b15 35#\r
36\r
6bfbb5f0 37[Sources]\r
6ad55b15 38 ComponentName.c\r
39 ScsiDisk.c\r
40 ScsiDisk.h\r
41\r
6ad55b15 42[Packages]\r
43 MdePkg/MdePkg.dec\r
44\r
45\r
6ad55b15 46[LibraryClasses]\r
47 UefiBootServicesTableLib\r
ae50ee26 48 UefiScsiLib\r
6ad55b15 49 BaseMemoryLib\r
94e0fd07 50 MemoryAllocationLib\r
6ad55b15 51 UefiLib\r
52 UefiDriverEntryPoint\r
53 DebugLib\r
d716651f 54 DevicePathLib\r
6ad55b15 55\r
6ad55b15 56[Protocols]\r
d716651f 57 gEfiDiskInfoProtocolGuid ## BY_START\r
3ed0238a 58 gEfiBlockIoProtocolGuid ## BY_START\r
d670bf53 59 gEfiBlockIo2ProtocolGuid ## BY_START\r
b6e5da19 60 gEfiEraseBlockProtocolGuid ## BY_START\r
3ed0238a 61 gEfiScsiIoProtocolGuid ## TO_START\r
d14faa52 62 gEfiScsiPassThruProtocolGuid ## TO_START\r
63 gEfiExtScsiPassThruProtocolGuid ## TO_START\r
d716651f 64\r
65[Guids]\r
6036e94d
SZ
66 gEfiDiskInfoScsiInterfaceGuid ## SOMETIMES_PRODUCES ## UNDEFINED\r
67 gEfiDiskInfoIdeInterfaceGuid ## SOMETIMES_PRODUCES ## UNDEFINED\r
68 gEfiDiskInfoAhciInterfaceGuid ## SOMETIMES_PRODUCES ## UNDEFINED\r
2bf87d82 69 gEfiDiskInfoUfsInterfaceGuid ## SOMETIMES_PRODUCES ## UNDEFINED\r
6036e94d
SZ
70\r
71# [Event]\r
72# EVENT_TYPE_RELATIVE_TIMER ## CONSUMES\r
73#\r
74\r
75[UserExtensions.TianoCore."ExtraFiles"]\r
76 ScsiDiskExtra.uni\r