]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Include/Protocol/ScsiIo.h
05e46bda9cba0738d8d0bc9e1a852f3b6f0f7a23
[mirror_edk2.git] / MdePkg / Include / Protocol / ScsiIo.h
1 /** @file
2 EFI_SCSI_IO_PROTOCOL as defined in UEFI 2.0.
3 This protocol is used by code, typically drivers, running in the EFI boot
4 services environment to access SCSI devices. In particular, functions for
5 managing devices on SCSI buses are defined here.
6
7 Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
8 SPDX-License-Identifier: BSD-2-Clause-Patent
9
10 **/
11
12 #ifndef __EFI_SCSI_IO_PROTOCOL_H__
13 #define __EFI_SCSI_IO_PROTOCOL_H__
14
15 #define EFI_SCSI_IO_PROTOCOL_GUID \
16 { \
17 0x932f47e6, 0x2362, 0x4002, {0x80, 0x3e, 0x3c, 0xd5, 0x4b, 0x13, 0x8f, 0x85 } \
18 }
19
20 ///
21 /// Forward reference for pure ANSI compatability
22 ///
23 typedef struct _EFI_SCSI_IO_PROTOCOL EFI_SCSI_IO_PROTOCOL;
24
25 //
26 // SCSI Device type information, defined in the SCSI Primary Commands standard (e.g., SPC-4)
27 //
28 #define EFI_SCSI_IO_TYPE_DISK 0x00 ///< Disk device
29 #define EFI_SCSI_IO_TYPE_TAPE 0x01 ///< Tape device
30 #define EFI_SCSI_IO_TYPE_PRINTER 0x02 ///< Printer
31 #define EFI_SCSI_IO_TYPE_PROCESSOR 0x03 ///< Processor
32 #define EFI_SCSI_IO_TYPE_WORM 0x04 ///< Write-once read-multiple
33 #define EFI_SCSI_IO_TYPE_CDROM 0x05 ///< CD or DVD device
34 #define EFI_SCSI_IO_TYPE_SCANNER 0x06 ///< Scanner device
35 #define EFI_SCSI_IO_TYPE_OPTICAL 0x07 ///< Optical memory device
36 #define EFI_SCSI_IO_TYPE_MEDIUMCHANGER 0x08 ///< Medium Changer device
37 #define EFI_SCSI_IO_TYPE_COMMUNICATION 0x09 ///< Communications device
38 #define MFI_SCSI_IO_TYPE_A 0x0A ///< Obsolete
39 #define MFI_SCSI_IO_TYPE_B 0x0B ///< Obsolete
40 #define MFI_SCSI_IO_TYPE_RAID 0x0C ///< Storage array controller device (e.g., RAID)
41 #define MFI_SCSI_IO_TYPE_SES 0x0D ///< Enclosure services device
42 #define MFI_SCSI_IO_TYPE_RBC 0x0E ///< Simplified direct-access device (e.g., magnetic disk)
43 #define MFI_SCSI_IO_TYPE_OCRW 0x0F ///< Optical card reader/writer device
44 #define MFI_SCSI_IO_TYPE_BRIDGE 0x10 ///< Bridge Controller Commands
45 #define MFI_SCSI_IO_TYPE_OSD 0x11 ///< Object-based Storage Device
46 #define EFI_SCSI_IO_TYPE_RESERVED_LOW 0x12 ///< Reserved (low)
47 #define EFI_SCSI_IO_TYPE_RESERVED_HIGH 0x1E ///< Reserved (high)
48 #define EFI_SCSI_IO_TYPE_UNKNOWN 0x1F ///< Unknown no device type
49
50 //
51 // SCSI Data Direction definition
52 //
53 #define EFI_SCSI_IO_DATA_DIRECTION_READ 0
54 #define EFI_SCSI_IO_DATA_DIRECTION_WRITE 1
55 #define EFI_SCSI_IO_DATA_DIRECTION_BIDIRECTIONAL 2
56
57 //
58 // SCSI Host Adapter Status definition
59 //
60 #define EFI_SCSI_IO_STATUS_HOST_ADAPTER_OK 0x00
61 #define EFI_SCSI_IO_STATUS_HOST_ADAPTER_TIMEOUT_COMMAND 0x09 ///< timeout when processing the command
62 #define EFI_SCSI_IO_STATUS_HOST_ADAPTER_TIMEOUT 0x0b ///< timeout when waiting for the command processing
63 #define EFI_SCSI_IO_STATUS_HOST_ADAPTER_MESSAGE_REJECT 0x0d ///< a message reject was received when processing command
64 #define EFI_SCSI_IO_STATUS_HOST_ADAPTER_BUS_RESET 0x0e ///< a bus reset was detected
65 #define EFI_SCSI_IO_STATUS_HOST_ADAPTER_PARITY_ERROR 0x0f
66 #define EFI_SCSI_IO_STATUS_HOST_ADAPTER_REQUEST_SENSE_FAILED 0x10 ///< the adapter failed in issuing request sense command
67 #define EFI_SCSI_IO_STATUS_HOST_ADAPTER_SELECTION_TIMEOUT 0x11 ///< selection timeout
68 #define EFI_SCSI_IO_STATUS_HOST_ADAPTER_DATA_OVERRUN_UNDERRUN 0x12 ///< data overrun or data underrun
69 #define EFI_SCSI_IO_STATUS_HOST_ADAPTER_BUS_FREE 0x13 ///< Unexepected bus free
70 #define EFI_SCSI_IO_STATUS_HOST_ADAPTER_PHASE_ERROR 0x14 ///< Target bus phase sequence failure
71 #define EFI_SCSI_IO_STATUS_HOST_ADAPTER_OTHER 0x7f
72
73
74 //
75 // SCSI Target Status definition
76 //
77 #define EFI_SCSI_IO_STATUS_TARGET_GOOD 0x00
78 #define EFI_SCSI_IO_STATUS_TARGET_CHECK_CONDITION 0x02 ///< check condition
79 #define EFI_SCSI_IO_STATUS_TARGET_CONDITION_MET 0x04 ///< condition met
80 #define EFI_SCSI_IO_STATUS_TARGET_BUSY 0x08 ///< busy
81 #define EFI_SCSI_IO_STATUS_TARGET_INTERMEDIATE 0x10 ///< intermediate
82 #define EFI_SCSI_IO_STATUS_TARGET_INTERMEDIATE_CONDITION_MET 0x14 ///< intermediate-condition met
83 #define EFI_SCSI_IO_STATUS_TARGET_RESERVATION_CONFLICT 0x18 ///< reservation conflict
84 #define EFI_SCSI_IO_STATUS_TARGET_COMMOND_TERMINATED 0x22 ///< command terminated
85 #define EFI_SCSI_IO_STATUS_TARGET_QUEUE_FULL 0x28 ///< queue full
86
87 typedef struct {
88 ///
89 /// The timeout, in 100 ns units, to use for the execution of this SCSI
90 /// Request Packet. A Timeout value of 0 means that this function
91 /// will wait indefinitely for the SCSI Request Packet to execute. If
92 /// Timeout is greater than zero, then this function will return
93 /// EFI_TIMEOUT if the time required to execute the SCSI Request
94 /// Packet is greater than Timeout.
95 ///
96 UINT64 Timeout;
97 ///
98 /// A pointer to the data buffer to transfer between the SCSI
99 /// controller and the SCSI device for SCSI READ command
100 ///
101 VOID *InDataBuffer;
102 ///
103 /// A pointer to the data buffer to transfer between the SCSI
104 /// controller and the SCSI device for SCSI WRITE command.
105 ///
106 VOID *OutDataBuffer;
107 ///
108 /// A pointer to the sense data that was generated by the execution of
109 /// the SCSI Request Packet.
110 ///
111 VOID *SenseData;
112 ///
113 /// A pointer to buffer that contains the Command Data Block to
114 /// send to the SCSI device.
115 ///
116 VOID *Cdb;
117 ///
118 /// On Input, the size, in bytes, of InDataBuffer. On output, the
119 /// number of bytes transferred between the SCSI controller and the SCSI device.
120 ///
121 UINT32 InTransferLength;
122 ///
123 /// On Input, the size, in bytes of OutDataBuffer. On Output, the
124 /// Number of bytes transferred between SCSI Controller and the SCSI device.
125 ///
126 UINT32 OutTransferLength;
127 ///
128 /// The length, in bytes, of the buffer Cdb. The standard values are
129 /// 6, 10, 12, and 16, but other values are possible if a variable length CDB is used.
130 ///
131 UINT8 CdbLength;
132 ///
133 /// The direction of the data transfer. 0 for reads, 1 for writes. A
134 /// value of 2 is Reserved for Bi-Directional SCSI commands.
135 ///
136 UINT8 DataDirection;
137 ///
138 /// The status of the SCSI Host Controller that produces the SCSI
139 /// bus where the SCSI device attached when the SCSI Request
140 /// Packet was executed on the SCSI Controller.
141 ///
142 UINT8 HostAdapterStatus;
143 ///
144 /// The status returned by the SCSI device when the SCSI Request
145 /// Packet was executed.
146 ///
147 UINT8 TargetStatus;
148 ///
149 /// On input, the length in bytes of the SenseData buffer. On
150 /// output, the number of bytes written to the SenseData buffer.
151 ///
152 UINT8 SenseDataLength;
153 } EFI_SCSI_IO_SCSI_REQUEST_PACKET;
154
155 /**
156 Retrieves the device type information of the SCSI Controller.
157
158 @param This Protocol instance pointer.
159 @param DeviceType A pointer to the device type information
160 retrieved from the SCSI Controller.
161
162 @retval EFI_SUCCESS Retrieved the device type information successfully.
163 @retval EFI_INVALID_PARAMETER The DeviceType is NULL.
164
165 **/
166 typedef
167 EFI_STATUS
168 (EFIAPI *EFI_SCSI_IO_PROTOCOL_GET_DEVICE_TYPE)(
169 IN EFI_SCSI_IO_PROTOCOL *This,
170 OUT UINT8 *DeviceType
171 );
172
173 /**
174 Retrieves the device location in the SCSI channel.
175
176 @param This Protocol instance pointer.
177 @param Target A pointer to the Target ID of a SCSI device
178 on the SCSI channel.
179 @param Lun A pointer to the LUN of the SCSI device on
180 the SCSI channel.
181
182 @retval EFI_SUCCESS Retrieves the device location successfully.
183 @retval EFI_INVALID_PARAMETER The Target or Lun is NULL.
184
185 **/
186 typedef
187 EFI_STATUS
188 (EFIAPI *EFI_SCSI_IO_PROTOCOL_GET_DEVICE_LOCATION)(
189 IN EFI_SCSI_IO_PROTOCOL *This,
190 IN OUT UINT8 **Target,
191 OUT UINT64 *Lun
192 );
193
194 /**
195 Resets the SCSI Bus that the SCSI Controller is attached to.
196
197 @param This Protocol instance pointer.
198
199 @retval EFI_SUCCESS The SCSI bus is reset successfully.
200 @retval EFI_DEVICE_ERROR Errors encountered when resetting the SCSI bus.
201 @retval EFI_UNSUPPORTED The bus reset operation is not supported by the
202 SCSI Host Controller.
203 @retval EFI_TIMEOUT A timeout occurred while attempting to reset
204 the SCSI bus.
205
206 **/
207 typedef
208 EFI_STATUS
209 (EFIAPI *EFI_SCSI_IO_PROTOCOL_RESET_BUS)(
210 IN EFI_SCSI_IO_PROTOCOL *This
211 );
212
213 /**
214 Resets the SCSI Controller that the device handle specifies.
215
216 @param This Protocol instance pointer.
217
218 @retval EFI_SUCCESS Reset the SCSI controller successfully.
219 @retval EFI_DEVICE_ERROR Errors were encountered when resetting the
220 SCSI Controller.
221 @retval EFI_UNSUPPORTED The SCSI bus does not support a device
222 reset operation.
223 @retval EFI_TIMEOUT A timeout occurred while attempting to
224 reset the SCSI Controller.
225
226 **/
227 typedef
228 EFI_STATUS
229 (EFIAPI *EFI_SCSI_IO_PROTOCOL_RESET_DEVICE)(
230 IN EFI_SCSI_IO_PROTOCOL *This
231 );
232
233
234 /**
235 Sends a SCSI Request Packet to the SCSI Controller for execution.
236
237 @param This Protocol instance pointer.
238 @param Packet The SCSI request packet to send to the SCSI
239 Controller specified by the device handle.
240 @param Event If the SCSI bus to which the SCSI device is attached
241 does not support non-blocking I/O, then Event is
242 ignored, and blocking I/O is performed.
243 If Event is NULL, then blocking I/O is performed.
244 If Event is not NULL and non-blocking I/O is
245 supported, then non-blocking I/O is performed,
246 and Event will be signaled when the SCSI Request
247 Packet completes.
248
249 @retval EFI_SUCCESS The SCSI Request Packet was sent by the host
250 successfully, and TransferLength bytes were
251 transferred to/from DataBuffer. See
252 HostAdapterStatus, TargetStatus,
253 SenseDataLength, and SenseData in that order
254 for additional status information.
255 @retval EFI_BAD_BUFFER_SIZE The SCSI Request Packet was executed,
256 but the entire DataBuffer could not be transferred.
257 The actual number of bytes transferred is returned
258 in TransferLength. See HostAdapterStatus,
259 TargetStatus, SenseDataLength, and SenseData in
260 that order for additional status information.
261 @retval EFI_NOT_READY The SCSI Request Packet could not be sent because
262 there are too many SCSI Command Packets already
263 queued.The caller may retry again later.
264 @retval EFI_DEVICE_ERROR A device error occurred while attempting to send
265 the SCSI Request Packet. See HostAdapterStatus,
266 TargetStatus, SenseDataLength, and SenseData in
267 that order for additional status information.
268 @retval EFI_INVALID_PARAMETER The contents of CommandPacket are invalid.
269 The SCSI Request Packet was not sent, so no
270 additional status information is available.
271 @retval EFI_UNSUPPORTED The command described by the SCSI Request Packet
272 is not supported by the SCSI initiator(i.e., SCSI
273 Host Controller). The SCSI Request Packet was not
274 sent, so no additional status information is
275 available.
276 @retval EFI_TIMEOUT A timeout occurred while waiting for the SCSI
277 Request Packet to execute. See HostAdapterStatus,
278 TargetStatus, SenseDataLength, and SenseData in
279 that order for additional status information.
280
281 **/
282 typedef
283 EFI_STATUS
284 (EFIAPI *EFI_SCSI_IO_PROTOCOL_EXEC_SCSI_COMMAND)(
285 IN EFI_SCSI_IO_PROTOCOL *This,
286 IN OUT EFI_SCSI_IO_SCSI_REQUEST_PACKET *Packet,
287 IN EFI_EVENT Event OPTIONAL
288 );
289
290 ///
291 /// Provides services to manage and communicate with SCSI devices.
292 ///
293 struct _EFI_SCSI_IO_PROTOCOL {
294 EFI_SCSI_IO_PROTOCOL_GET_DEVICE_TYPE GetDeviceType;
295 EFI_SCSI_IO_PROTOCOL_GET_DEVICE_LOCATION GetDeviceLocation;
296 EFI_SCSI_IO_PROTOCOL_RESET_BUS ResetBus;
297 EFI_SCSI_IO_PROTOCOL_RESET_DEVICE ResetDevice;
298 EFI_SCSI_IO_PROTOCOL_EXEC_SCSI_COMMAND ExecuteScsiCommand;
299
300 ///
301 /// Supplies the alignment requirement for any buffer used in a data transfer.
302 /// IoAlign values of 0 and 1 mean that the buffer can be placed anywhere in memory.
303 /// Otherwise, IoAlign must be a power of 2, and the requirement is that the
304 /// start address of a buffer must be evenly divisible by IoAlign with no remainder.
305 ///
306 UINT32 IoAlign;
307 };
308
309 extern EFI_GUID gEfiScsiIoProtocolGuid;
310
311 #endif