]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AtaAtapiPassThru.h
Fix some build issues (ARM toolchain).
[mirror_edk2.git] / MdeModulePkg / Bus / Ata / AtaAtapiPassThru / AtaAtapiPassThru.h
CommitLineData
4b738c76
HT
1/** @file\r
2 Header file for ATA/ATAPI PASS THRU driver.\r
3\r
4 Copyright (c) 2010 - 2012, Intel Corporation. All rights reserved.<BR>\r
5 This program and the accompanying materials\r
6 are licensed and made available under the terms and conditions of the BSD License\r
7 which accompanies this distribution. The full text of the license may be found at\r
8 http://opensource.org/licenses/bsd-license.php\r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14#ifndef __ATA_ATAPI_PASS_THRU_H__\r
15#define __ATA_ATAPI_PASS_THRU_H__\r
16\r
17#include <Uefi.h>\r
18\r
19#include <IndustryStandard/Pci.h>\r
20#include <IndustryStandard/Atapi.h>\r
21#include <IndustryStandard/Scsi.h>\r
22\r
23#include <Protocol/PciIo.h>\r
24#include <Protocol/IdeControllerInit.h>\r
25#include <Protocol/AtaPassThru.h>\r
26#include <Protocol/ScsiPassThruExt.h>\r
27\r
28#include <Library/DebugLib.h>\r
29#include <Library/BaseLib.h>\r
30#include <Library/BaseMemoryLib.h>\r
31#include <Library/UefiDriverEntryPoint.h>\r
32#include <Library/UefiBootServicesTableLib.h>\r
33#include <Library/UefiLib.h>\r
34#include <Library/PciLib.h>\r
35#include <Library/PcdLib.h>\r
36#include <Library/TimerLib.h>\r
37#include <Library/MemoryAllocationLib.h>\r
38#include <Library/ReportStatusCodeLib.h>\r
39#include <Library/DevicePathLib.h>\r
40\r
41#include "IdeMode.h"\r
42#include "AhciMode.h"\r
43\r
44extern EFI_DRIVER_BINDING_PROTOCOL gAtaAtapiPassThruDriverBinding;\r
45extern EFI_COMPONENT_NAME_PROTOCOL gAtaAtapiPassThruComponentName;\r
46extern EFI_COMPONENT_NAME2_PROTOCOL gAtaAtapiPassThruComponentName2;\r
47\r
48#define ATA_ATAPI_PASS_THRU_SIGNATURE SIGNATURE_32 ('a', 'a', 'p', 't')\r
49#define ATA_ATAPI_DEVICE_SIGNATURE SIGNATURE_32 ('a', 'd', 'e', 'v')\r
50#define ATA_NONBLOCKING_TASK_SIGNATURE SIGNATURE_32 ('a', 't', 's', 'k')\r
51\r
52typedef struct _ATA_NONBLOCK_TASK ATA_NONBLOCK_TASK;\r
53\r
54typedef enum {\r
55 EfiAtaIdeMode,\r
56 EfiAtaAhciMode,\r
57 EfiAtaRaidMode,\r
58 EfiAtaUnknownMode\r
59} EFI_ATA_HC_WORK_MODE;\r
60\r
61typedef enum {\r
62 EfiIdeCdrom, /* ATAPI CDROM */\r
63 EfiIdeHarddisk, /* Hard Disk */\r
64 EfiPortMultiplier, /* Port Multiplier */\r
65 EfiIdeUnknown\r
66} EFI_ATA_DEVICE_TYPE;\r
67\r
68//\r
69// Ahci mode device info\r
70//\r
71typedef struct {\r
72 UINT32 Signature;\r
73 LIST_ENTRY Link;\r
74\r
75 UINT16 Port;\r
76 UINT16 PortMultiplier;\r
77 EFI_ATA_DEVICE_TYPE Type;\r
78\r
79 EFI_IDENTIFY_DATA *IdentifyData;\r
80} EFI_ATA_DEVICE_INFO;\r
81\r
82typedef struct {\r
83 UINT32 Signature;\r
84\r
85 EFI_HANDLE ControllerHandle;\r
86 EFI_PCI_IO_PROTOCOL *PciIo;\r
87 EFI_IDE_CONTROLLER_INIT_PROTOCOL *IdeControllerInit;\r
88\r
89 EFI_ATA_PASS_THRU_MODE AtaPassThruMode;\r
90 EFI_ATA_PASS_THRU_PROTOCOL AtaPassThru;\r
91 EFI_EXT_SCSI_PASS_THRU_MODE ExtScsiPassThruMode;\r
92 EFI_EXT_SCSI_PASS_THRU_PROTOCOL ExtScsiPassThru;\r
93\r
94 EFI_ATA_HC_WORK_MODE Mode;\r
95\r
96 EFI_IDE_REGISTERS IdeRegisters[EfiIdeMaxChannel];\r
97 EFI_AHCI_REGISTERS AhciRegisters;\r
98\r
99 //\r
100 // The attached device list\r
101 //\r
102 LIST_ENTRY DeviceList;\r
103 UINT64 OriginalPciAttributes;\r
104\r
105 //\r
106 // For AtaPassThru protocol, using the following bytes to record the previous call in\r
107 // GetNextPort()/GetNextDevice().\r
108 //\r
109 UINT16 PreviousPort;\r
110 UINT16 PreviousPortMultiplier;\r
111 //\r
112 // For ExtScsiPassThru protocol, using the following bytes to record the previous call in\r
113 // GetNextTarget()/GetNextTargetLun().\r
114 //\r
115 UINT16 PreviousTargetId;\r
116 UINT64 PreviousLun;\r
117\r
118 //\r
119 // For Non-blocking.\r
120 //\r
121 EFI_EVENT TimerEvent;\r
122 LIST_ENTRY NonBlockingTaskList;\r
123} ATA_ATAPI_PASS_THRU_INSTANCE;\r
124\r
125//\r
126// Task for Non-blocking mode.\r
127//\r
128struct _ATA_NONBLOCK_TASK {\r
129 UINT32 Signature;\r
130 LIST_ENTRY Link;\r
131\r
132 UINT16 Port;\r
133 UINT16 PortMultiplier;\r
134 EFI_ATA_PASS_THRU_COMMAND_PACKET *Packet;\r
135 BOOLEAN IsStart;\r
136 EFI_EVENT Event;\r
137 UINT64 RetryTimes;\r
138 VOID *Map; // Pointer to map.\r
139 VOID *TableMap;// Pointer to PRD table map.\r
140 EFI_ATA_DMA_PRD *MapBaseAddress; // Pointer to range Base address for Map.\r
141 UINTN PageCount; // The page numbers used by PCIO freebuffer.\r
142};\r
143\r
144//\r
145// Timeout value which uses 100ns as a unit.\r
146// It means 3 second span.\r
147//\r
148#define ATA_ATAPI_TIMEOUT EFI_TIMER_PERIOD_SECONDS(3)\r
149\r
150#define IS_ALIGNED(addr, size) (((UINTN) (addr) & (size - 1)) == 0)\r
151\r
152#define ATA_PASS_THRU_PRIVATE_DATA_FROM_THIS(a) \\r
153 CR (a, \\r
154 ATA_ATAPI_PASS_THRU_INSTANCE, \\r
155 AtaPassThru, \\r
156 ATA_ATAPI_PASS_THRU_SIGNATURE \\r
157 )\r
158\r
159#define EXT_SCSI_PASS_THRU_PRIVATE_DATA_FROM_THIS(a) \\r
160 CR (a, \\r
161 ATA_ATAPI_PASS_THRU_INSTANCE, \\r
162 ExtScsiPassThru, \\r
163 ATA_ATAPI_PASS_THRU_SIGNATURE \\r
164 )\r
165\r
166#define ATA_ATAPI_DEVICE_INFO_FROM_THIS(a) \\r
167 CR (a, \\r
168 EFI_ATA_DEVICE_INFO, \\r
169 Link, \\r
170 ATA_ATAPI_DEVICE_SIGNATURE \\r
171 );\r
172\r
173#define ATA_NON_BLOCK_TASK_FROM_ENTRY(a) \\r
174 CR (a, \\r
175 ATA_NONBLOCK_TASK, \\r
176 Link, \\r
177 ATA_NONBLOCKING_TASK_SIGNATURE \\r
178 );\r
179\r
180/**\r
181 Retrieves a Unicode string that is the user readable name of the driver.\r
182\r
183 This function retrieves the user readable name of a driver in the form of a\r
184 Unicode string. If the driver specified by This has a user readable name in\r
185 the language specified by Language, then a pointer to the driver name is\r
186 returned in DriverName, and EFI_SUCCESS is returned. If the driver specified\r
187 by This does not support the language specified by Language,\r
188 then EFI_UNSUPPORTED is returned.\r
189\r
190 @param This[in] A pointer to the EFI_COMPONENT_NAME2_PROTOCOL or\r
191 EFI_COMPONENT_NAME_PROTOCOL instance.\r
192\r
193 @param Language[in] A pointer to a Null-terminated ASCII string\r
194 array indicating the language. This is the\r
195 language of the driver name that the caller is\r
196 requesting, and it must match one of the\r
197 languages specified in SupportedLanguages. The\r
198 number of languages supported by a driver is up\r
199 to the driver writer. Language is specified\r
200 in RFC 4646 or ISO 639-2 language code format.\r
201\r
202 @param DriverName[out] A pointer to the Unicode string to return.\r
203 This Unicode string is the name of the\r
204 driver specified by This in the language\r
205 specified by Language.\r
206\r
207 @retval EFI_SUCCESS The Unicode string for the Driver specified by\r
208 This and the language specified by Language was\r
209 returned in DriverName.\r
210\r
211 @retval EFI_INVALID_PARAMETER Language is NULL.\r
212\r
213 @retval EFI_INVALID_PARAMETER DriverName is NULL.\r
214\r
215 @retval EFI_UNSUPPORTED The driver specified by This does not support\r
216 the language specified by Language.\r
217\r
218**/\r
219EFI_STATUS\r
220EFIAPI\r
221AtaAtapiPassThruComponentNameGetDriverName (\r
222 IN EFI_COMPONENT_NAME_PROTOCOL *This,\r
223 IN CHAR8 *Language,\r
224 OUT CHAR16 **DriverName\r
225 );\r
226\r
227/**\r
228 Retrieves a Unicode string that is the user readable name of the controller\r
229 that is being managed by a driver.\r
230\r
231 This function retrieves the user readable name of the controller specified by\r
232 ControllerHandle and ChildHandle in the form of a Unicode string. If the\r
233 driver specified by This has a user readable name in the language specified by\r
234 Language, then a pointer to the controller name is returned in ControllerName,\r
235 and EFI_SUCCESS is returned. If the driver specified by This is not currently\r
236 managing the controller specified by ControllerHandle and ChildHandle,\r
237 then EFI_UNSUPPORTED is returned. If the driver specified by This does not\r
238 support the language specified by Language, then EFI_UNSUPPORTED is returned.\r
239\r
240 @param This[in] A pointer to the EFI_COMPONENT_NAME2_PROTOCOL or\r
241 EFI_COMPONENT_NAME_PROTOCOL instance.\r
242\r
243 @param ControllerHandle[in] The handle of a controller that the driver\r
244 specified by This is managing. This handle\r
245 specifies the controller whose name is to be\r
246 returned.\r
247\r
248 @param ChildHandle[in] The handle of the child controller to retrieve\r
249 the name of. This is an optional parameter that\r
250 may be NULL. It will be NULL for device\r
251 drivers. It will also be NULL for a bus drivers\r
252 that wish to retrieve the name of the bus\r
253 controller. It will not be NULL for a bus\r
254 driver that wishes to retrieve the name of a\r
255 child controller.\r
256\r
257 @param Language[in] A pointer to a Null-terminated ASCII string\r
258 array indicating the language. This is the\r
259 language of the driver name that the caller is\r
260 requesting, and it must match one of the\r
261 languages specified in SupportedLanguages. The\r
262 number of languages supported by a driver is up\r
263 to the driver writer. Language is specified in\r
264 RFC 4646 or ISO 639-2 language code format.\r
265\r
266 @param ControllerName[out] A pointer to the Unicode string to return.\r
267 This Unicode string is the name of the\r
268 controller specified by ControllerHandle and\r
269 ChildHandle in the language specified by\r
270 Language from the point of view of the driver\r
271 specified by This.\r
272\r
273 @retval EFI_SUCCESS The Unicode string for the user readable name in\r
274 the language specified by Language for the\r
275 driver specified by This was returned in\r
276 DriverName.\r
277\r
278 @retval EFI_INVALID_PARAMETER ControllerHandle is NULL.\r
279\r
280 @retval EFI_INVALID_PARAMETER ChildHandle is not NULL and it is not a valid\r
281 EFI_HANDLE.\r
282\r
283 @retval EFI_INVALID_PARAMETER Language is NULL.\r
284\r
285 @retval EFI_INVALID_PARAMETER ControllerName is NULL.\r
286\r
287 @retval EFI_UNSUPPORTED The driver specified by This is not currently\r
288 managing the controller specified by\r
289 ControllerHandle and ChildHandle.\r
290\r
291 @retval EFI_UNSUPPORTED The driver specified by This does not support\r
292 the language specified by Language.\r
293\r
294**/\r
295EFI_STATUS\r
296EFIAPI\r
297AtaAtapiPassThruComponentNameGetControllerName (\r
298 IN EFI_COMPONENT_NAME_PROTOCOL *This,\r
299 IN EFI_HANDLE ControllerHandle,\r
300 IN EFI_HANDLE ChildHandle OPTIONAL,\r
301 IN CHAR8 *Language,\r
302 OUT CHAR16 **ControllerName\r
303 );\r
304\r
305/**\r
306 Tests to see if this driver supports a given controller. If a child device is provided,\r
307 it further tests to see if this driver supports creating a handle for the specified child device.\r
308\r
309 This function checks to see if the driver specified by This supports the device specified by\r
310 ControllerHandle. Drivers will typically use the device path attached to\r
311 ControllerHandle and/or the services from the bus I/O abstraction attached to\r
312 ControllerHandle to determine if the driver supports ControllerHandle. This function\r
313 may be called many times during platform initialization. In order to reduce boot times, the tests\r
314 performed by this function must be very small, and take as little time as possible to execute. This\r
315 function must not change the state of any hardware devices, and this function must be aware that the\r
316 device specified by ControllerHandle may already be managed by the same driver or a\r
317 different driver. This function must match its calls to AllocatePages() with FreePages(),\r
318 AllocatePool() with FreePool(), and OpenProtocol() with CloseProtocol().\r
319 Because ControllerHandle may have been previously started by the same driver, if a protocol is\r
320 already in the opened state, then it must not be closed with CloseProtocol(). This is required\r
321 to guarantee the state of ControllerHandle is not modified by this function.\r
322\r
323 @param[in] This A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.\r
324 @param[in] ControllerHandle The handle of the controller to test. This handle\r
325 must support a protocol interface that supplies\r
326 an I/O abstraction to the driver.\r
327 @param[in] RemainingDevicePath A pointer to the remaining portion of a device path. This\r
328 parameter is ignored by device drivers, and is optional for bus\r
329 drivers. For bus drivers, if this parameter is not NULL, then\r
330 the bus driver must determine if the bus controller specified\r
331 by ControllerHandle and the child controller specified\r
332 by RemainingDevicePath are both supported by this\r
333 bus driver.\r
334\r
335 @retval EFI_SUCCESS The device specified by ControllerHandle and\r
336 RemainingDevicePath is supported by the driver specified by This.\r
337 @retval EFI_ALREADY_STARTED The device specified by ControllerHandle and\r
338 RemainingDevicePath is already being managed by the driver\r
339 specified by This.\r
340 @retval EFI_ACCESS_DENIED The device specified by ControllerHandle and\r
341 RemainingDevicePath is already being managed by a different\r
342 driver or an application that requires exclusive access.\r
343 Currently not implemented.\r
344 @retval EFI_UNSUPPORTED The device specified by ControllerHandle and\r
345 RemainingDevicePath is not supported by the driver specified by This.\r
346**/\r
347EFI_STATUS\r
348EFIAPI\r
349AtaAtapiPassThruSupported (\r
350 IN EFI_DRIVER_BINDING_PROTOCOL *This,\r
351 IN EFI_HANDLE Controller,\r
352 IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath\r
353 );\r
354\r
355/**\r
356 Starts a device controller or a bus controller.\r
357\r
358 The Start() function is designed to be invoked from the EFI boot service ConnectController().\r
359 As a result, much of the error checking on the parameters to Start() has been moved into this\r
360 common boot service. It is legal to call Start() from other locations,\r
361 but the following calling restrictions must be followed, or the system behavior will not be deterministic.\r
362 1. ControllerHandle must be a valid EFI_HANDLE.\r
363 2. If RemainingDevicePath is not NULL, then it must be a pointer to a naturally aligned\r
364 EFI_DEVICE_PATH_PROTOCOL.\r
365 3. Prior to calling Start(), the Supported() function for the driver specified by This must\r
366 have been called with the same calling parameters, and Supported() must have returned EFI_SUCCESS.\r
367\r
368 @param[in] This A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.\r
369 @param[in] ControllerHandle The handle of the controller to start. This handle\r
370 must support a protocol interface that supplies\r
371 an I/O abstraction to the driver.\r
372 @param[in] RemainingDevicePath A pointer to the remaining portion of a device path. This\r
373 parameter is ignored by device drivers, and is optional for bus\r
374 drivers. For a bus driver, if this parameter is NULL, then handles\r
375 for all the children of Controller are created by this driver.\r
376 If this parameter is not NULL and the first Device Path Node is\r
377 not the End of Device Path Node, then only the handle for the\r
378 child device specified by the first Device Path Node of\r
379 RemainingDevicePath is created by this driver.\r
380 If the first Device Path Node of RemainingDevicePath is\r
381 the End of Device Path Node, no child handle is created by this\r
382 driver.\r
383\r
384 @retval EFI_SUCCESS The device was started.\r
385 @retval EFI_DEVICE_ERROR The device could not be started due to a device error.Currently not implemented.\r
386 @retval EFI_OUT_OF_RESOURCES The request could not be completed due to a lack of resources.\r
387 @retval Others The driver failded to start the device.\r
388\r
389**/\r
390EFI_STATUS\r
391EFIAPI\r
392AtaAtapiPassThruStart (\r
393 IN EFI_DRIVER_BINDING_PROTOCOL *This,\r
394 IN EFI_HANDLE Controller,\r
395 IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath\r
396 );\r
397\r
398/**\r
399 Stops a device controller or a bus controller.\r
400\r
401 The Stop() function is designed to be invoked from the EFI boot service DisconnectController().\r
402 As a result, much of the error checking on the parameters to Stop() has been moved\r
403 into this common boot service. It is legal to call Stop() from other locations,\r
404 but the following calling restrictions must be followed, or the system behavior will not be deterministic.\r
405 1. ControllerHandle must be a valid EFI_HANDLE that was used on a previous call to this\r
406 same driver's Start() function.\r
407 2. The first NumberOfChildren handles of ChildHandleBuffer must all be a valid\r
408 EFI_HANDLE. In addition, all of these handles must have been created in this driver's\r
409 Start() function, and the Start() function must have called OpenProtocol() on\r
410 ControllerHandle with an Attribute of EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER.\r
411\r
412 @param[in] This A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.\r
413 @param[in] ControllerHandle A handle to the device being stopped. The handle must\r
414 support a bus specific I/O protocol for the driver\r
415 to use to stop the device.\r
416 @param[in] NumberOfChildren The number of child device handles in ChildHandleBuffer.\r
417 @param[in] ChildHandleBuffer An array of child handles to be freed. May be NULL\r
418 if NumberOfChildren is 0.\r
419\r
420 @retval EFI_SUCCESS The device was stopped.\r
421 @retval EFI_DEVICE_ERROR The device could not be stopped due to a device error.\r
422\r
423**/\r
424EFI_STATUS\r
425EFIAPI\r
426AtaAtapiPassThruStop (\r
427 IN EFI_DRIVER_BINDING_PROTOCOL *This,\r
428 IN EFI_HANDLE Controller,\r
429 IN UINTN NumberOfChildren,\r
430 IN EFI_HANDLE *ChildHandleBuffer\r
431 );\r
432\r
433/**\r
434 Traverse the attached ATA devices list to find out the device to access.\r
435\r
436 @param[in] Instance A pointer to the ATA_ATAPI_PASS_THRU_INSTANCE instance.\r
437 @param[in] Port The port number of the ATA device to send the command.\r
438 @param[in] PortMultiplierPort The port multiplier port number of the ATA device to send the command.\r
439 If there is no port multiplier, then specify 0.\r
440 @param[in] DeviceType The device type of the ATA device.\r
441\r
442 @retval The pointer to the data structure of the device info to access.\r
443\r
444**/\r
445LIST_ENTRY *\r
446EFIAPI\r
447SearchDeviceInfoList (\r
448 IN ATA_ATAPI_PASS_THRU_INSTANCE *Instance,\r
449 IN UINT16 Port,\r
450 IN UINT16 PortMultiplier,\r
451 IN EFI_ATA_DEVICE_TYPE DeviceType\r
452 );\r
453\r
454/**\r
455 Allocate device info data structure to contain device info.\r
456 And insert the data structure to the tail of device list for tracing.\r
457\r
458 @param[in] Instance A pointer to the ATA_ATAPI_PASS_THRU_INSTANCE instance.\r
459 @param[in] Port The port number of the ATA device to send the command.\r
460 @param[in] PortMultiplierPort The port multiplier port number of the ATA device to send the command.\r
461 If there is no port multiplier, then specify 0.\r
462 @param[in] DeviceType The device type of the ATA device.\r
463 @param[in] IdentifyData The data buffer to store the output of the IDENTIFY cmd.\r
464\r
465 @retval EFI_SUCCESS Successfully insert the ata device to the tail of device list.\r
466 @retval EFI_OUT_OF_RESOURCES Can not allocate enough resource for use.\r
467\r
468**/\r
469EFI_STATUS\r
470EFIAPI\r
471CreateNewDeviceInfo (\r
472 IN ATA_ATAPI_PASS_THRU_INSTANCE *Instance,\r
473 IN UINT16 Port,\r
474 IN UINT16 PortMultiplier,\r
475 IN EFI_ATA_DEVICE_TYPE DeviceType,\r
476 IN EFI_IDENTIFY_DATA *IdentifyData\r
477 );\r
478\r
479/**\r
480 Destroy all attached ATA devices info.\r
481\r
482 @param[in] Instance A pointer to the ATA_ATAPI_PASS_THRU_INSTANCE instance.\r
483\r
484**/\r
485VOID\r
486EFIAPI\r
487DestroyDeviceInfoList (\r
488 IN ATA_ATAPI_PASS_THRU_INSTANCE *Instance\r
489 );\r
490\r
491/**\r
492 Destroy all pending non blocking tasks.\r
493\r
494 @param[in] Instance A pointer to the ATA_ATAPI_PASS_THRU_INSTANCE instance.\r
495 @param[in] IsSigEvent Indicate whether signal the task event when remove the\r
496 task.\r
497\r
498**/\r
499VOID\r
500EFIAPI\r
501DestroyAsynTaskList (\r
502 IN ATA_ATAPI_PASS_THRU_INSTANCE *Instance,\r
503 IN BOOLEAN IsSigEvent\r
504 );\r
505\r
506/**\r
507 Enumerate all attached ATA devices at IDE mode or AHCI mode separately.\r
508\r
509 The function is designed to enumerate all attached ATA devices.\r
510\r
511 @param[in] Instance A pointer to the ATA_ATAPI_PASS_THRU_INSTANCE instance.\r
512\r
513 @retval EFI_SUCCESS Successfully enumerate attached ATA devices.\r
514 @retval EFI_DEVICE_ERROR The device could not be stopped due to a device error.\r
515\r
516**/\r
517EFI_STATUS\r
518EFIAPI\r
519EnumerateAttachedDevice (\r
520 IN ATA_ATAPI_PASS_THRU_INSTANCE *Instance\r
521 );\r
522\r
523/**\r
524 Call back funtion when the timer event is signaled.\r
525\r
526 @param[in] Event The Event this notify function registered to.\r
527 @param[in] Context Pointer to the context data registered to the\r
528 Event.\r
529\r
530**/\r
531VOID\r
532EFIAPI\r
533AsyncNonBlockingTransferRoutine (\r
534 EFI_EVENT Event,\r
535 VOID* Context\r
536 );\r
537\r
538/**\r
539 Sends an ATA command to an ATA device that is attached to the ATA controller. This function\r
540 supports both blocking I/O and non-blocking I/O. The blocking I/O functionality is required,\r
541 and the non-blocking I/O functionality is optional.\r
542\r
543 @param[in] This A pointer to the EFI_ATA_PASS_THRU_PROTOCOL instance.\r
544 @param[in] Port The port number of the ATA device to send the command.\r
545 @param[in] PortMultiplierPort The port multiplier port number of the ATA device to send the command.\r
546 If there is no port multiplier, then specify 0.\r
547 @param[in, out] Packet A pointer to the ATA command to send to the ATA device specified by Port\r
548 and PortMultiplierPort.\r
549 @param[in] Event If non-blocking I/O is not supported then Event is ignored, and blocking\r
550 I/O is performed. If Event is NULL, then blocking I/O is performed. If\r
551 Event is not NULL and non blocking I/O is supported, then non-blocking\r
552 I/O is performed, and Event will be signaled when the ATA command completes.\r
553\r
554 @retval EFI_SUCCESS The ATA command was sent by the host. For bi-directional commands,\r
555 InTransferLength bytes were transferred from InDataBuffer. For write and\r
556 bi-directional commands, OutTransferLength bytes were transferred by OutDataBuffer.\r
557 @retval EFI_BAD_BUFFER_SIZE The ATA command was not executed. The number of bytes that could be transferred\r
558 is returned in InTransferLength. For write and bi-directional commands,\r
559 OutTransferLength bytes were transferred by OutDataBuffer.\r
560 @retval EFI_NOT_READY The ATA command could not be sent because there are too many ATA commands\r
561 already queued. The caller may retry again later.\r
562 @retval EFI_DEVICE_ERROR A device error occurred while attempting to send the ATA command.\r
563 @retval EFI_INVALID_PARAMETER Port, PortMultiplierPort, or the contents of Acb are invalid. The ATA\r
564 command was not sent, so no additional status information is available.\r
565\r
566**/\r
567EFI_STATUS\r
568EFIAPI\r
569AtaPassThruPassThru (\r
570 IN EFI_ATA_PASS_THRU_PROTOCOL *This,\r
571 IN UINT16 Port,\r
572 IN UINT16 PortMultiplierPort,\r
573 IN OUT EFI_ATA_PASS_THRU_COMMAND_PACKET *Packet,\r
574 IN EFI_EVENT Event OPTIONAL\r
575 );\r
576\r
577/**\r
578 Used to retrieve the list of legal port numbers for ATA devices on an ATA controller.\r
579 These can either be the list of ports where ATA devices are actually present or the\r
580 list of legal port numbers for the ATA controller. Regardless, the caller of this\r
581 function must probe the port number returned to see if an ATA device is actually\r
582 present at that location on the ATA controller.\r
583\r
584 The GetNextPort() function retrieves the port number on an ATA controller. If on input\r
585 Port is 0xFFFF, then the port number of the first port on the ATA controller is returned\r
586 in Port and EFI_SUCCESS is returned.\r
587\r
588 If Port is a port number that was returned on a previous call to GetNextPort(), then the\r
589 port number of the next port on the ATA controller is returned in Port, and EFI_SUCCESS\r
590 is returned. If Port is not 0xFFFF and Port was not returned on a previous call to\r
591 GetNextPort(), then EFI_INVALID_PARAMETER is returned.\r
592\r
593 If Port is the port number of the last port on the ATA controller, then EFI_NOT_FOUND is\r
594 returned.\r
595\r
596 @param[in] This A pointer to the EFI_ATA_PASS_THRU_PROTOCOL instance.\r
597 @param[in, out] Port On input, a pointer to the port number on the ATA controller.\r
598 On output, a pointer to the next port number on the ATA\r
599 controller. An input value of 0xFFFF retrieves the first port\r
600 number on the ATA controller.\r
601\r
602 @retval EFI_SUCCESS The next port number on the ATA controller was returned in Port.\r
603 @retval EFI_NOT_FOUND There are no more ports on this ATA controller.\r
604 @retval EFI_INVALID_PARAMETER Port is not 0xFFFF and Port was not returned on a previous call\r
605 to GetNextPort().\r
606\r
607**/\r
608EFI_STATUS\r
609EFIAPI\r
610AtaPassThruGetNextPort (\r
611 IN EFI_ATA_PASS_THRU_PROTOCOL *This,\r
612 IN OUT UINT16 *Port\r
613 );\r
614\r
615/**\r
616 Used to retrieve the list of legal port multiplier port numbers for ATA devices on a port of an ATA\r
617 controller. These can either be the list of port multiplier ports where ATA devices are actually\r
618 present on port or the list of legal port multiplier ports on that port. Regardless, the caller of this\r
619 function must probe the port number and port multiplier port number returned to see if an ATA\r
620 device is actually present.\r
621\r
622 The GetNextDevice() function retrieves the port multiplier port number of an ATA device\r
623 present on a port of an ATA controller.\r
624\r
625 If PortMultiplierPort points to a port multiplier port number value that was returned on a\r
626 previous call to GetNextDevice(), then the port multiplier port number of the next ATA device\r
627 on the port of the ATA controller is returned in PortMultiplierPort, and EFI_SUCCESS is\r
628 returned.\r
629\r
630 If PortMultiplierPort points to 0xFFFF, then the port multiplier port number of the first\r
631 ATA device on port of the ATA controller is returned in PortMultiplierPort and\r
632 EFI_SUCCESS is returned.\r
633\r
634 If PortMultiplierPort is not 0xFFFF and the value pointed to by PortMultiplierPort\r
635 was not returned on a previous call to GetNextDevice(), then EFI_INVALID_PARAMETER\r
636 is returned.\r
637\r
638 If PortMultiplierPort is the port multiplier port number of the last ATA device on the port of\r
639 the ATA controller, then EFI_NOT_FOUND is returned.\r
640\r
641 @param[in] This A pointer to the EFI_ATA_PASS_THRU_PROTOCOL instance.\r
642 @param[in] Port The port number present on the ATA controller.\r
643 @param[in, out] PortMultiplierPort On input, a pointer to the port multiplier port number of an\r
644 ATA device present on the ATA controller.\r
645 If on input a PortMultiplierPort of 0xFFFF is specified,\r
646 then the port multiplier port number of the first ATA device\r
647 is returned. On output, a pointer to the port multiplier port\r
648 number of the next ATA device present on an ATA controller.\r
649\r
650 @retval EFI_SUCCESS The port multiplier port number of the next ATA device on the port\r
651 of the ATA controller was returned in PortMultiplierPort.\r
652 @retval EFI_NOT_FOUND There are no more ATA devices on this port of the ATA controller.\r
653 @retval EFI_INVALID_PARAMETER PortMultiplierPort is not 0xFFFF, and PortMultiplierPort was not\r
654 returned on a previous call to GetNextDevice().\r
655\r
656**/\r
657EFI_STATUS\r
658EFIAPI\r
659AtaPassThruGetNextDevice (\r
660 IN EFI_ATA_PASS_THRU_PROTOCOL *This,\r
661 IN UINT16 Port,\r
662 IN OUT UINT16 *PortMultiplierPort\r
663 );\r
664\r
665/**\r
666 Used to allocate and build a device path node for an ATA device on an ATA controller.\r
667\r
668 The BuildDevicePath() function allocates and builds a single device node for the ATA\r
669 device specified by Port and PortMultiplierPort. If the ATA device specified by Port and\r
670 PortMultiplierPort is not present on the ATA controller, then EFI_NOT_FOUND is returned.\r
671 If DevicePath is NULL, then EFI_INVALID_PARAMETER is returned. If there are not enough\r
672 resources to allocate the device path node, then EFI_OUT_OF_RESOURCES is returned.\r
673\r
674 Otherwise, DevicePath is allocated with the boot service AllocatePool(), the contents of\r
675 DevicePath are initialized to describe the ATA device specified by Port and PortMultiplierPort,\r
676 and EFI_SUCCESS is returned.\r
677\r
678 @param[in] This A pointer to the EFI_ATA_PASS_THRU_PROTOCOL instance.\r
679 @param[in] Port Port specifies the port number of the ATA device for which a\r
680 device path node is to be allocated and built.\r
681 @param[in] PortMultiplierPort The port multiplier port number of the ATA device for which a\r
682 device path node is to be allocated and built. If there is no\r
683 port multiplier, then specify 0.\r
684 @param[in, out] DevicePath A pointer to a single device path node that describes the ATA\r
685 device specified by Port and PortMultiplierPort. This function\r
686 is responsible for allocating the buffer DevicePath with the\r
687 boot service AllocatePool(). It is the caller's responsibility\r
688 to free DevicePath when the caller is finished with DevicePath.\r
689 @retval EFI_SUCCESS The device path node that describes the ATA device specified by\r
690 Port and PortMultiplierPort was allocated and returned in DevicePath.\r
691 @retval EFI_NOT_FOUND The ATA device specified by Port and PortMultiplierPort does not\r
692 exist on the ATA controller.\r
693 @retval EFI_INVALID_PARAMETER DevicePath is NULL.\r
694 @retval EFI_OUT_OF_RESOURCES There are not enough resources to allocate DevicePath.\r
695\r
696**/\r
697EFI_STATUS\r
698EFIAPI\r
699AtaPassThruBuildDevicePath (\r
700 IN EFI_ATA_PASS_THRU_PROTOCOL *This,\r
701 IN UINT16 Port,\r
702 IN UINT16 PortMultiplierPort,\r
703 IN OUT EFI_DEVICE_PATH_PROTOCOL **DevicePath\r
704 );\r
705\r
706/**\r
707 Used to translate a device path node to a port number and port multiplier port number.\r
708\r
709 The GetDevice() function determines the port and port multiplier port number associated with\r
710 the ATA device described by DevicePath. If DevicePath is a device path node type that the\r
711 ATA Pass Thru driver supports, then the ATA Pass Thru driver will attempt to translate the contents\r
712 DevicePath into a port number and port multiplier port number.\r
713\r
714 If this translation is successful, then that port number and port multiplier port number are returned\r
715 in Port and PortMultiplierPort, and EFI_SUCCESS is returned.\r
716\r
717 If DevicePath, Port, or PortMultiplierPort are NULL, then EFI_INVALID_PARAMETER is returned.\r
718\r
719 If DevicePath is not a device path node type that the ATA Pass Thru driver supports, then\r
720 EFI_UNSUPPORTED is returned.\r
721\r
722 If DevicePath is a device path node type that the ATA Pass Thru driver supports, but there is not\r
723 a valid translation from DevicePath to a port number and port multiplier port number, then\r
724 EFI_NOT_FOUND is returned.\r
725\r
726 @param[in] This A pointer to the EFI_ATA_PASS_THRU_PROTOCOL instance.\r
727 @param[in] DevicePath A pointer to the device path node that describes an ATA device on the\r
728 ATA controller.\r
729 @param[out] Port On return, points to the port number of an ATA device on the ATA controller.\r
730 @param[out] PortMultiplierPort On return, points to the port multiplier port number of an ATA device\r
731 on the ATA controller.\r
732\r
733 @retval EFI_SUCCESS DevicePath was successfully translated to a port number and port multiplier\r
734 port number, and they were returned in Port and PortMultiplierPort.\r
735 @retval EFI_INVALID_PARAMETER DevicePath is NULL.\r
736 @retval EFI_INVALID_PARAMETER Port is NULL.\r
737 @retval EFI_INVALID_PARAMETER PortMultiplierPort is NULL.\r
738 @retval EFI_UNSUPPORTED This driver does not support the device path node type in DevicePath.\r
739 @retval EFI_NOT_FOUND A valid translation from DevicePath to a port number and port multiplier\r
740 port number does not exist.\r
741\r
742**/\r
743EFI_STATUS\r
744EFIAPI\r
745AtaPassThruGetDevice (\r
746 IN EFI_ATA_PASS_THRU_PROTOCOL *This,\r
747 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath,\r
748 OUT UINT16 *Port,\r
749 OUT UINT16 *PortMultiplierPort\r
750 );\r
751\r
752/**\r
753 Resets a specific port on the ATA controller. This operation also resets all the ATA devices\r
754 connected to the port.\r
755\r
756 The ResetChannel() function resets an a specific port on an ATA controller. This operation\r
757 resets all the ATA devices connected to that port. If this ATA controller does not support\r
758 a reset port operation, then EFI_UNSUPPORTED is returned.\r
759\r
760 If a device error occurs while executing that port reset operation, then EFI_DEVICE_ERROR is\r
761 returned.\r
762\r
763 If a timeout occurs during the execution of the port reset operation, then EFI_TIMEOUT is returned.\r
764\r
765 If the port reset operation is completed, then EFI_SUCCESS is returned.\r
766\r
767 @param[in] This A pointer to the EFI_ATA_PASS_THRU_PROTOCOL instance.\r
768 @param[in] Port The port number on the ATA controller.\r
769\r
770 @retval EFI_SUCCESS The ATA controller port was reset.\r
771 @retval EFI_UNSUPPORTED The ATA controller does not support a port reset operation.\r
772 @retval EFI_DEVICE_ERROR A device error occurred while attempting to reset the ATA port.\r
773 @retval EFI_TIMEOUT A timeout occurred while attempting to reset the ATA port.\r
774\r
775**/\r
776EFI_STATUS\r
777EFIAPI\r
778AtaPassThruResetPort (\r
779 IN EFI_ATA_PASS_THRU_PROTOCOL *This,\r
780 IN UINT16 Port\r
781 );\r
782\r
783/**\r
784 Resets an ATA device that is connected to an ATA controller.\r
785\r
786 The ResetDevice() function resets the ATA device specified by Port and PortMultiplierPort.\r
787 If this ATA controller does not support a device reset operation, then EFI_UNSUPPORTED is\r
788 returned.\r
789\r
790 If Port or PortMultiplierPort are not in a valid range for this ATA controller, then\r
791 EFI_INVALID_PARAMETER is returned.\r
792\r
793 If a device error occurs while executing that device reset operation, then EFI_DEVICE_ERROR\r
794 is returned.\r
795\r
796 If a timeout occurs during the execution of the device reset operation, then EFI_TIMEOUT is\r
797 returned.\r
798\r
799 If the device reset operation is completed, then EFI_SUCCESS is returned.\r
800\r
801 @param[in] This A pointer to the EFI_ATA_PASS_THRU_PROTOCOL instance.\r
802 @param[in] Port Port represents the port number of the ATA device to be reset.\r
803 @param[in] PortMultiplierPort The port multiplier port number of the ATA device to reset.\r
804 If there is no port multiplier, then specify 0.\r
805 @retval EFI_SUCCESS The ATA device specified by Port and PortMultiplierPort was reset.\r
806 @retval EFI_UNSUPPORTED The ATA controller does not support a device reset operation.\r
807 @retval EFI_INVALID_PARAMETER Port or PortMultiplierPort are invalid.\r
808 @retval EFI_DEVICE_ERROR A device error occurred while attempting to reset the ATA device\r
809 specified by Port and PortMultiplierPort.\r
810 @retval EFI_TIMEOUT A timeout occurred while attempting to reset the ATA device\r
811 specified by Port and PortMultiplierPort.\r
812\r
813**/\r
814EFI_STATUS\r
815EFIAPI\r
816AtaPassThruResetDevice (\r
817 IN EFI_ATA_PASS_THRU_PROTOCOL *This,\r
818 IN UINT16 Port,\r
819 IN UINT16 PortMultiplierPort\r
820 );\r
821\r
822/**\r
823 Sends a SCSI Request Packet to a SCSI device that is attached to the SCSI channel. This function\r
824 supports both blocking I/O and nonblocking I/O. The blocking I/O functionality is required, and the\r
825 nonblocking I/O functionality is optional.\r
826\r
827 @param This A pointer to the EFI_EXT_SCSI_PASS_THRU_PROTOCOL instance.\r
828 @param Target The Target is an array of size TARGET_MAX_BYTES and it represents\r
829 the id of the SCSI device to send the SCSI Request Packet. Each\r
830 transport driver may choose to utilize a subset of this size to suit the needs\r
831 of transport target representation. For example, a Fibre Channel driver\r
832 may use only 8 bytes (WWN) to represent an FC target.\r
833 @param Lun The LUN of the SCSI device to send the SCSI Request Packet.\r
834 @param Packet A pointer to the SCSI Request Packet to send to the SCSI device\r
835 specified by Target and Lun.\r
836 @param Event If nonblocking I/O is not supported then Event is ignored, and blocking\r
837 I/O is performed. If Event is NULL, then blocking I/O is performed. If\r
838 Event is not NULL and non blocking I/O is supported, then\r
839 nonblocking I/O is performed, and Event will be signaled when the\r
840 SCSI Request Packet completes.\r
841\r
842 @retval EFI_SUCCESS The SCSI Request Packet was sent by the host. For bi-directional\r
843 commands, InTransferLength bytes were transferred from\r
844 InDataBuffer. For write and bi-directional commands,\r
845 OutTransferLength bytes were transferred by\r
846 OutDataBuffer.\r
847 @retval EFI_BAD_BUFFER_SIZE The SCSI Request Packet was not executed. The number of bytes that\r
848 could be transferred is returned in InTransferLength. For write\r
849 and bi-directional commands, OutTransferLength bytes were\r
850 transferred by OutDataBuffer.\r
851 @retval EFI_NOT_READY The SCSI Request Packet could not be sent because there are too many\r
852 SCSI Request Packets already queued. The caller may retry again later.\r
853 @retval EFI_DEVICE_ERROR A device error occurred while attempting to send the SCSI Request\r
854 Packet.\r
855 @retval EFI_INVALID_PARAMETER Target, Lun, or the contents of ScsiRequestPacket are invalid.\r
856 @retval EFI_UNSUPPORTED The command described by the SCSI Request Packet is not supported\r
857 by the host adapter. This includes the case of Bi-directional SCSI\r
858 commands not supported by the implementation. The SCSI Request\r
859 Packet was not sent, so no additional status information is available.\r
860 @retval EFI_TIMEOUT A timeout occurred while waiting for the SCSI Request Packet to execute.\r
861\r
862**/\r
863EFI_STATUS\r
864EFIAPI\r
865ExtScsiPassThruPassThru (\r
866 IN EFI_EXT_SCSI_PASS_THRU_PROTOCOL *This,\r
867 IN UINT8 *Target,\r
868 IN UINT64 Lun,\r
869 IN OUT EFI_EXT_SCSI_PASS_THRU_SCSI_REQUEST_PACKET *Packet,\r
870 IN EFI_EVENT Event OPTIONAL\r
871 );\r
872\r
873/**\r
874 Used to retrieve the list of legal Target IDs and LUNs for SCSI devices on a SCSI channel. These\r
875 can either be the list SCSI devices that are actually present on the SCSI channel, or the list of legal\r
876 Target Ids and LUNs for the SCSI channel. Regardless, the caller of this function must probe the\r
877 Target ID and LUN returned to see if a SCSI device is actually present at that location on the SCSI\r
878 channel.\r
879\r
880 @param This A pointer to the EFI_EXT_SCSI_PASS_THRU_PROTOCOL instance.\r
881 @param Target On input, a pointer to the Target ID (an array of size\r
882 TARGET_MAX_BYTES) of a SCSI device present on the SCSI channel.\r
883 On output, a pointer to the Target ID (an array of\r
884 TARGET_MAX_BYTES) of the next SCSI device present on a SCSI\r
885 channel. An input value of 0xF(all bytes in the array are 0xF) in the\r
886 Target array retrieves the Target ID of the first SCSI device present on a\r
887 SCSI channel.\r
888 @param Lun On input, a pointer to the LUN of a SCSI device present on the SCSI\r
889 channel. On output, a pointer to the LUN of the next SCSI device present\r
890 on a SCSI channel.\r
891\r
892 @retval EFI_SUCCESS The Target ID and LUN of the next SCSI device on the SCSI\r
893 channel was returned in Target and Lun.\r
894 @retval EFI_INVALID_PARAMETER Target array is not all 0xF, and Target and Lun were\r
895 not returned on a previous call to GetNextTargetLun().\r
896 @retval EFI_NOT_FOUND There are no more SCSI devices on this SCSI channel.\r
897\r
898**/\r
899EFI_STATUS\r
900EFIAPI\r
901ExtScsiPassThruGetNextTargetLun (\r
902 IN EFI_EXT_SCSI_PASS_THRU_PROTOCOL *This,\r
903 IN OUT UINT8 **Target,\r
904 IN OUT UINT64 *Lun\r
905 );\r
906\r
907/**\r
908 Used to allocate and build a device path node for a SCSI device on a SCSI channel.\r
909\r
910 @param This A pointer to the EFI_EXT_SCSI_PASS_THRU_PROTOCOL instance.\r
911 @param Target The Target is an array of size TARGET_MAX_BYTES and it specifies the\r
912 Target ID of the SCSI device for which a device path node is to be\r
913 allocated and built. Transport drivers may chose to utilize a subset of\r
914 this size to suit the representation of targets. For example, a Fibre\r
915 Channel driver may use only 8 bytes (WWN) in the array to represent a\r
916 FC target.\r
917 @param Lun The LUN of the SCSI device for which a device path node is to be\r
918 allocated and built.\r
919 @param DevicePath A pointer to a single device path node that describes the SCSI device\r
920 specified by Target and Lun. This function is responsible for\r
921 allocating the buffer DevicePath with the boot service\r
922 AllocatePool(). It is the caller's responsibility to free\r
923 DevicePath when the caller is finished with DevicePath.\r
924\r
925 @retval EFI_SUCCESS The device path node that describes the SCSI device specified by\r
926 Target and Lun was allocated and returned in\r
927 DevicePath.\r
928 @retval EFI_INVALID_PARAMETER DevicePath is NULL.\r
929 @retval EFI_NOT_FOUND The SCSI devices specified by Target and Lun does not exist\r
930 on the SCSI channel.\r
931 @retval EFI_OUT_OF_RESOURCES There are not enough resources to allocate DevicePath.\r
932\r
933**/\r
934EFI_STATUS\r
935EFIAPI\r
936ExtScsiPassThruBuildDevicePath (\r
937 IN EFI_EXT_SCSI_PASS_THRU_PROTOCOL *This,\r
938 IN UINT8 *Target,\r
939 IN UINT64 Lun,\r
940 IN OUT EFI_DEVICE_PATH_PROTOCOL **DevicePath\r
941 );\r
942\r
943/**\r
944 Used to translate a device path node to a Target ID and LUN.\r
945\r
946 @param This A pointer to the EFI_EXT_SCSI_PASS_THRU_PROTOCOL instance.\r
947 @param DevicePath A pointer to a single device path node that describes the SCSI device\r
948 on the SCSI channel.\r
949 @param Target A pointer to the Target Array which represents the ID of a SCSI device\r
950 on the SCSI channel.\r
951 @param Lun A pointer to the LUN of a SCSI device on the SCSI channel.\r
952\r
953 @retval EFI_SUCCESS DevicePath was successfully translated to a Target ID and\r
954 LUN, and they were returned in Target and Lun.\r
955 @retval EFI_INVALID_PARAMETER DevicePath or Target or Lun is NULL.\r
956 @retval EFI_NOT_FOUND A valid translation from DevicePath to a Target ID and LUN\r
957 does not exist.\r
958 @retval EFI_UNSUPPORTED This driver does not support the device path node type in\r
959 DevicePath.\r
960\r
961**/\r
962EFI_STATUS\r
963EFIAPI\r
964ExtScsiPassThruGetTargetLun (\r
965 IN EFI_EXT_SCSI_PASS_THRU_PROTOCOL *This,\r
966 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath,\r
967 OUT UINT8 **Target,\r
968 OUT UINT64 *Lun\r
969 );\r
970\r
971/**\r
972 Resets a SCSI channel. This operation resets all the SCSI devices connected to the SCSI channel.\r
973\r
974 @param This A pointer to the EFI_EXT_SCSI_PASS_THRU_PROTOCOL instance.\r
975\r
976 @retval EFI_SUCCESS The SCSI channel was reset.\r
977 @retval EFI_DEVICE_ERROR A device error occurred while attempting to reset the SCSI channel.\r
978 @retval EFI_TIMEOUT A timeout occurred while attempting to reset the SCSI channel.\r
979 @retval EFI_UNSUPPORTED The SCSI channel does not support a channel reset operation.\r
980\r
981**/\r
982EFI_STATUS\r
983EFIAPI\r
984ExtScsiPassThruResetChannel (\r
985 IN EFI_EXT_SCSI_PASS_THRU_PROTOCOL *This\r
986 );\r
987\r
988/**\r
989 Resets a SCSI logical unit that is connected to a SCSI channel.\r
990\r
991 @param This A pointer to the EFI_EXT_SCSI_PASS_THRU_PROTOCOL instance.\r
992 @param Target The Target is an array of size TARGET_MAX_BYTE and it represents the\r
993 target port ID of the SCSI device containing the SCSI logical unit to\r
994 reset. Transport drivers may chose to utilize a subset of this array to suit\r
995 the representation of their targets.\r
996 @param Lun The LUN of the SCSI device to reset.\r
997\r
998 @retval EFI_SUCCESS The SCSI device specified by Target and Lun was reset.\r
999 @retval EFI_INVALID_PARAMETER Target or Lun is NULL.\r
1000 @retval EFI_TIMEOUT A timeout occurred while attempting to reset the SCSI device\r
1001 specified by Target and Lun.\r
1002 @retval EFI_UNSUPPORTED The SCSI channel does not support a target reset operation.\r
1003 @retval EFI_DEVICE_ERROR A device error occurred while attempting to reset the SCSI device\r
1004 specified by Target and Lun.\r
1005\r
1006**/\r
1007EFI_STATUS\r
1008EFIAPI\r
1009ExtScsiPassThruResetTargetLun (\r
1010 IN EFI_EXT_SCSI_PASS_THRU_PROTOCOL *This,\r
1011 IN UINT8 *Target,\r
1012 IN UINT64 Lun\r
1013 );\r
1014\r
1015/**\r
1016 Used to retrieve the list of legal Target IDs for SCSI devices on a SCSI channel. These can either\r
1017 be the list SCSI devices that are actually present on the SCSI channel, or the list of legal Target IDs\r
1018 for the SCSI channel. Regardless, the caller of this function must probe the Target ID returned to\r
1019 see if a SCSI device is actually present at that location on the SCSI channel.\r
1020\r
1021 @param This A pointer to the EFI_EXT_SCSI_PASS_THRU_PROTOCOL instance.\r
1022 @param Target (TARGET_MAX_BYTES) of a SCSI device present on the SCSI channel.\r
1023 On output, a pointer to the Target ID (an array of\r
1024 TARGET_MAX_BYTES) of the next SCSI device present on a SCSI\r
1025 channel. An input value of 0xF(all bytes in the array are 0xF) in the\r
1026 Target array retrieves the Target ID of the first SCSI device present on a\r
1027 SCSI channel.\r
1028\r
1029 @retval EFI_SUCCESS The Target ID of the next SCSI device on the SCSI\r
1030 channel was returned in Target.\r
1031 @retval EFI_INVALID_PARAMETER Target or Lun is NULL.\r
1032 @retval EFI_TIMEOUT Target array is not all 0xF, and Target was not\r
1033 returned on a previous call to GetNextTarget().\r
1034 @retval EFI_NOT_FOUND There are no more SCSI devices on this SCSI channel.\r
1035\r
1036**/\r
1037EFI_STATUS\r
1038EFIAPI\r
1039ExtScsiPassThruGetNextTarget (\r
1040 IN EFI_EXT_SCSI_PASS_THRU_PROTOCOL *This,\r
1041 IN OUT UINT8 **Target\r
1042 );\r
1043\r
1044/**\r
1045 Initialize ATA host controller at IDE mode.\r
1046\r
1047 The function is designed to initialize ATA host controller.\r
1048\r
1049 @param[in] Instance A pointer to the ATA_ATAPI_PASS_THRU_INSTANCE instance.\r
1050\r
1051**/\r
1052EFI_STATUS\r
1053EFIAPI\r
1054IdeModeInitialization (\r
1055 IN ATA_ATAPI_PASS_THRU_INSTANCE *Instance\r
1056 );\r
1057\r
1058/**\r
1059 Initialize ATA host controller at AHCI mode.\r
1060\r
1061 The function is designed to initialize ATA host controller.\r
1062\r
1063 @param[in] Instance A pointer to the ATA_ATAPI_PASS_THRU_INSTANCE instance.\r
1064\r
1065**/\r
1066EFI_STATUS\r
1067EFIAPI\r
1068AhciModeInitialization (\r
1069 IN ATA_ATAPI_PASS_THRU_INSTANCE *Instance\r
1070 );\r
1071\r
1072/**\r
1073 Start a non data transfer on specific port.\r
1074\r
1075 @param[in] PciIo The PCI IO protocol instance.\r
1076 @param[in] AhciRegisters The pointer to the EFI_AHCI_REGISTERS.\r
1077 @param[in] Port The number of port.\r
1078 @param[in] PortMultiplier The timeout value of stop.\r
1079 @param[in] AtapiCommand The atapi command will be used for the\r
1080 transfer.\r
1081 @param[in] AtapiCommandLength The length of the atapi command.\r
1082 @param[in] AtaCommandBlock The EFI_ATA_COMMAND_BLOCK data.\r
1083 @param[in, out] AtaStatusBlock The EFI_ATA_STATUS_BLOCK data.\r
1084 @param[in] Timeout The timeout value of non data transfer, uses 100ns as a unit.\r
1085 @param[in] Task Optional. Pointer to the ATA_NONBLOCK_TASK\r
1086 used by non-blocking mode.\r
1087\r
1088 @retval EFI_DEVICE_ERROR The non data transfer abort with error occurs.\r
1089 @retval EFI_TIMEOUT The operation is time out.\r
1090 @retval EFI_UNSUPPORTED The device is not ready for transfer.\r
1091 @retval EFI_SUCCESS The non data transfer executes successfully.\r
1092\r
1093**/\r
1094EFI_STATUS\r
1095EFIAPI\r
1096AhciNonDataTransfer (\r
1097 IN EFI_PCI_IO_PROTOCOL *PciIo,\r
1098 IN EFI_AHCI_REGISTERS *AhciRegisters,\r
1099 IN UINT8 Port,\r
1100 IN UINT8 PortMultiplier,\r
1101 IN EFI_AHCI_ATAPI_COMMAND *AtapiCommand OPTIONAL,\r
1102 IN UINT8 AtapiCommandLength,\r
1103 IN EFI_ATA_COMMAND_BLOCK *AtaCommandBlock,\r
1104 IN OUT EFI_ATA_STATUS_BLOCK *AtaStatusBlock,\r
1105 IN UINT64 Timeout,\r
1106 IN ATA_NONBLOCK_TASK *Task\r
1107 );\r
1108\r
1109/**\r
1110 Start a DMA data transfer on specific port\r
1111\r
1112 @param[in] Instance The ATA_ATAPI_PASS_THRU_INSTANCE protocol instance.\r
1113 @param[in] AhciRegisters The pointer to the EFI_AHCI_REGISTERS.\r
1114 @param[in] Port The number of port.\r
1115 @param[in] PortMultiplier The timeout value of stop.\r
1116 @param[in] AtapiCommand The atapi command will be used for the\r
1117 transfer.\r
1118 @param[in] AtapiCommandLength The length of the atapi command.\r
1119 @param[in] Read The transfer direction.\r
1120 @param[in] AtaCommandBlock The EFI_ATA_COMMAND_BLOCK data.\r
1121 @param[in, out] AtaStatusBlock The EFI_ATA_STATUS_BLOCK data.\r
1122 @param[in, out] MemoryAddr The pointer to the data buffer.\r
1123 @param[in] DataCount The data count to be transferred.\r
1124 @param[in] Timeout The timeout value of non data transfer, uses 100ns as a unit.\r
1125 @param[in] Task Optional. Pointer to the ATA_NONBLOCK_TASK\r
1126 used by non-blocking mode.\r
1127\r
1128 @retval EFI_DEVICE_ERROR The DMA data transfer abort with error occurs.\r
1129 @retval EFI_TIMEOUT The operation is time out.\r
1130 @retval EFI_UNSUPPORTED The device is not ready for transfer.\r
1131 @retval EFI_SUCCESS The DMA data transfer executes successfully.\r
1132\r
1133**/\r
1134EFI_STATUS\r
1135EFIAPI\r
1136AhciDmaTransfer (\r
1137 IN ATA_ATAPI_PASS_THRU_INSTANCE *Instance,\r
1138 IN EFI_AHCI_REGISTERS *AhciRegisters,\r
1139 IN UINT8 Port,\r
1140 IN UINT8 PortMultiplier,\r
1141 IN EFI_AHCI_ATAPI_COMMAND *AtapiCommand OPTIONAL,\r
1142 IN UINT8 AtapiCommandLength,\r
1143 IN BOOLEAN Read,\r
1144 IN EFI_ATA_COMMAND_BLOCK *AtaCommandBlock,\r
1145 IN OUT EFI_ATA_STATUS_BLOCK *AtaStatusBlock,\r
1146 IN OUT VOID *MemoryAddr,\r
1147 IN UINT32 DataCount,\r
1148 IN UINT64 Timeout,\r
1149 IN ATA_NONBLOCK_TASK *Task\r
1150 );\r
1151\r
1152/**\r
1153 Start a PIO data transfer on specific port.\r
1154\r
1155 @param[in] PciIo The PCI IO protocol instance.\r
1156 @param[in] AhciRegisters The pointer to the EFI_AHCI_REGISTERS.\r
1157 @param[in] Port The number of port.\r
1158 @param[in] PortMultiplier The timeout value of stop.\r
1159 @param[in] AtapiCommand The atapi command will be used for the\r
1160 transfer.\r
1161 @param[in] AtapiCommandLength The length of the atapi command.\r
1162 @param[in] Read The transfer direction.\r
1163 @param[in] AtaCommandBlock The EFI_ATA_COMMAND_BLOCK data.\r
1164 @param[in, out] AtaStatusBlock The EFI_ATA_STATUS_BLOCK data.\r
1165 @param[in, out] MemoryAddr The pointer to the data buffer.\r
1166 @param[in] DataCount The data count to be transferred.\r
1167 @param[in] Timeout The timeout value of non data transfer, uses 100ns as a unit.\r
1168 @param[in] Task Optional. Pointer to the ATA_NONBLOCK_TASK\r
1169 used by non-blocking mode.\r
1170\r
1171 @retval EFI_DEVICE_ERROR The PIO data transfer abort with error occurs.\r
1172 @retval EFI_TIMEOUT The operation is time out.\r
1173 @retval EFI_UNSUPPORTED The device is not ready for transfer.\r
1174 @retval EFI_SUCCESS The PIO data transfer executes successfully.\r
1175\r
1176**/\r
1177EFI_STATUS\r
1178EFIAPI\r
1179AhciPioTransfer (\r
1180 IN EFI_PCI_IO_PROTOCOL *PciIo,\r
1181 IN EFI_AHCI_REGISTERS *AhciRegisters,\r
1182 IN UINT8 Port,\r
1183 IN UINT8 PortMultiplier,\r
1184 IN EFI_AHCI_ATAPI_COMMAND *AtapiCommand OPTIONAL,\r
1185 IN UINT8 AtapiCommandLength,\r
1186 IN BOOLEAN Read,\r
1187 IN EFI_ATA_COMMAND_BLOCK *AtaCommandBlock,\r
1188 IN OUT EFI_ATA_STATUS_BLOCK *AtaStatusBlock,\r
1189 IN OUT VOID *MemoryAddr,\r
1190 IN UINT32 DataCount,\r
1191 IN UINT64 Timeout,\r
1192 IN ATA_NONBLOCK_TASK *Task\r
1193 );\r
1194\r
1195/**\r
1196 Send ATA command into device with NON_DATA protocol\r
1197\r
1198 @param[in] PciIo A pointer to ATA_ATAPI_PASS_THRU_INSTANCE\r
1199 data structure.\r
1200 @param[in] IdeRegisters A pointer to EFI_IDE_REGISTERS data structure.\r
1201 @param[in] AtaCommandBlock A pointer to EFI_ATA_COMMAND_BLOCK data\r
1202 structure.\r
1203 @param[in, out] AtaStatusBlock A pointer to EFI_ATA_STATUS_BLOCK data structure.\r
1204 @param[in] Timeout The time to complete the command, uses 100ns as a unit.\r
1205 @param[in] Task Optional. Pointer to the ATA_NONBLOCK_TASK\r
1206 used by non-blocking mode.\r
1207\r
1208 @retval EFI_SUCCESS Reading succeed\r
1209 @retval EFI_ABORTED Command failed\r
1210 @retval EFI_DEVICE_ERROR Device status error.\r
1211\r
1212**/\r
1213EFI_STATUS\r
1214EFIAPI\r
1215AtaNonDataCommandIn (\r
1216 IN EFI_PCI_IO_PROTOCOL *PciIo,\r
1217 IN EFI_IDE_REGISTERS *IdeRegisters,\r
1218 IN EFI_ATA_COMMAND_BLOCK *AtaCommandBlock,\r
1219 IN OUT EFI_ATA_STATUS_BLOCK *AtaStatusBlock,\r
1220 IN UINT64 Timeout,\r
1221 IN ATA_NONBLOCK_TASK *Task\r
1222 );\r
1223\r
1224/**\r
1225 Perform an ATA Udma operation (Read, ReadExt, Write, WriteExt).\r
1226\r
1227 @param[in] Instance A pointer to ATA_ATAPI_PASS_THRU_INSTANCE data\r
1228 structure.\r
1229 @param[in] IdeRegisters A pointer to EFI_IDE_REGISTERS data structure.\r
1230 @param[in] Read Flag used to determine the data transfer\r
1231 direction. Read equals 1, means data transferred\r
1232 from device to host;Read equals 0, means data\r
1233 transferred from host to device.\r
1234 @param[in] DataBuffer A pointer to the source buffer for the data.\r
1235 @param[in] DataLength The length of the data.\r
1236 @param[in] AtaCommandBlock A pointer to EFI_ATA_COMMAND_BLOCK data structure.\r
1237 @param[in, out] AtaStatusBlock A pointer to EFI_ATA_STATUS_BLOCK data structure.\r
1238 @param[in] Timeout The time to complete the command, uses 100ns as a unit.\r
1239 @param[in] Task Optional. Pointer to the ATA_NONBLOCK_TASK\r
1240 used by non-blocking mode.\r
1241\r
1242 @retval EFI_SUCCESS the operation is successful.\r
1243 @retval EFI_OUT_OF_RESOURCES Build PRD table failed\r
1244 @retval EFI_UNSUPPORTED Unknown channel or operations command\r
1245 @retval EFI_DEVICE_ERROR Ata command execute failed\r
1246\r
1247**/\r
1248EFI_STATUS\r
1249EFIAPI\r
1250AtaUdmaInOut (\r
1251 IN ATA_ATAPI_PASS_THRU_INSTANCE *Instance,\r
1252 IN EFI_IDE_REGISTERS *IdeRegisters,\r
1253 IN BOOLEAN Read,\r
1254 IN VOID *DataBuffer,\r
1255 IN UINT64 DataLength,\r
1256 IN EFI_ATA_COMMAND_BLOCK *AtaCommandBlock,\r
1257 IN OUT EFI_ATA_STATUS_BLOCK *AtaStatusBlock,\r
1258 IN UINT64 Timeout,\r
1259 IN ATA_NONBLOCK_TASK *Task\r
1260 );\r
1261\r
1262/**\r
1263 This function is used to send out ATA commands conforms to the PIO Data In Protocol.\r
1264\r
1265 @param[in] PciIo A pointer to ATA_ATAPI_PASS_THRU_INSTANCE data\r
1266 structure.\r
1267 @param[in] IdeRegisters A pointer to EFI_IDE_REGISTERS data structure.\r
1268 @param[in, out] Buffer A pointer to the source buffer for the data.\r
1269 @param[in] ByteCount The length of the data.\r
1270 @param[in] Read Flag used to determine the data transfer direction.\r
1271 Read equals 1, means data transferred from device\r
1272 to host;Read equals 0, means data transferred\r
1273 from host to device.\r
1274 @param[in] AtaCommandBlock A pointer to EFI_ATA_COMMAND_BLOCK data structure.\r
1275 @param[in, out] AtaStatusBlock A pointer to EFI_ATA_STATUS_BLOCK data structure.\r
1276 @param[in] Timeout The time to complete the command, uses 100ns as a unit.\r
1277 @param[in] Task Optional. Pointer to the ATA_NONBLOCK_TASK\r
1278 used by non-blocking mode.\r
1279\r
1280 @retval EFI_SUCCESS send out the ATA command and device send required data successfully.\r
1281 @retval EFI_DEVICE_ERROR command sent failed.\r
1282\r
1283**/\r
1284EFI_STATUS\r
1285EFIAPI\r
1286AtaPioDataInOut (\r
1287 IN EFI_PCI_IO_PROTOCOL *PciIo,\r
1288 IN EFI_IDE_REGISTERS *IdeRegisters,\r
1289 IN OUT VOID *Buffer,\r
1290 IN UINT64 ByteCount,\r
1291 IN BOOLEAN Read,\r
1292 IN EFI_ATA_COMMAND_BLOCK *AtaCommandBlock,\r
1293 IN OUT EFI_ATA_STATUS_BLOCK *AtaStatusBlock,\r
1294 IN UINT64 Timeout,\r
1295 IN ATA_NONBLOCK_TASK *Task\r
1296 );\r
1297\r
1298#endif\r
1299\r