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