]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AtaAtapiPassThru.c
Add missing braces around initializer.
[mirror_edk2.git] / MdeModulePkg / Bus / Ata / AtaAtapiPassThru / AtaAtapiPassThru.c
1 /** @file
2 This file implements ATA_PASSTHRU_PROCTOCOL and EXT_SCSI_PASSTHRU_PROTOCOL interfaces
3 for managed ATA controllers.
4
5 Copyright (c) 2010 - 2012, Intel Corporation. All rights reserved.<BR>
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
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13
14 **/
15
16 #include "AtaAtapiPassThru.h"
17
18 //
19 // EFI_DRIVER_BINDING_PROTOCOL instance
20 //
21 EFI_DRIVER_BINDING_PROTOCOL gAtaAtapiPassThruDriverBinding = {
22 AtaAtapiPassThruSupported,
23 AtaAtapiPassThruStart,
24 AtaAtapiPassThruStop,
25 0x10,
26 NULL,
27 NULL
28 };
29
30 ATA_ATAPI_PASS_THRU_INSTANCE gAtaAtapiPassThruInstanceTemplate = {
31 ATA_ATAPI_PASS_THRU_SIGNATURE,
32 0, // Controller Handle
33 NULL, // PciIo Protocol
34 NULL, // IdeControllerInit Protocol
35 { // AtaPassThruMode
36 //
37 // According to UEFI2.3 spec Section 12.10, Drivers for non-RAID ATA controllers should set
38 // both EFI_ATA_PASS_THRU_ATTRIBUTES_PHYSICAL and EFI_ATA_PASS_THRU_ATTRIBUTES_LOGICAL
39 // bits.
40 // Note that the driver doesn't support AtaPassThru non blocking I/O.
41 //
42 EFI_ATA_PASS_THRU_ATTRIBUTES_PHYSICAL | EFI_ATA_PASS_THRU_ATTRIBUTES_LOGICAL | EFI_ATA_PASS_THRU_ATTRIBUTES_NONBLOCKIO,
43 //
44 // IoAlign
45 //
46 sizeof (UINTN)
47 },
48 { // AtaPassThru
49 NULL,
50 AtaPassThruPassThru,
51 AtaPassThruGetNextPort,
52 AtaPassThruGetNextDevice,
53 AtaPassThruBuildDevicePath,
54 AtaPassThruGetDevice,
55 AtaPassThruResetPort,
56 AtaPassThruResetDevice
57 },
58 { // ExtScsiPassThruMode
59 //
60 // AdapterId
61 //
62 0,
63 //
64 // According to UEFI2.3 spec Section 14.7, Drivers for non-RAID SCSI controllers should set
65 // both EFI_EXT_SCSI_PASS_THRU_ATTRIBUTES_PHYSICAL and EFI_EXT_SCSI_PASS_THRU_ATTRIBUTES_LOGICAL
66 // bits.
67 // Note that the driver doesn't support ExtScsiPassThru non blocking I/O.
68 //
69 EFI_EXT_SCSI_PASS_THRU_ATTRIBUTES_PHYSICAL | EFI_EXT_SCSI_PASS_THRU_ATTRIBUTES_LOGICAL,
70 //
71 // IoAlign
72 //
73 sizeof (UINTN)
74 },
75 { // ExtScsiPassThru
76 NULL,
77 ExtScsiPassThruPassThru,
78 ExtScsiPassThruGetNextTargetLun,
79 ExtScsiPassThruBuildDevicePath,
80 ExtScsiPassThruGetTargetLun,
81 ExtScsiPassThruResetChannel,
82 ExtScsiPassThruResetTargetLun,
83 ExtScsiPassThruGetNextTarget
84 },
85 EfiAtaUnknownMode, // Work Mode
86 { // IdeRegisters
87 {0},
88 {0}
89 },
90 { // AhciRegisters
91 0
92 },
93 { // DeviceList
94 NULL,
95 NULL
96 },
97 0, // OriginalAttributes
98 0, // PreviousPort
99 0, // PreviousPortMultiplier
100 0, // PreviousTargetId
101 0, // PreviousLun
102 NULL, // Timer event
103 { // NonBlocking TaskList
104 NULL,
105 NULL
106 }
107 };
108
109 ATAPI_DEVICE_PATH mAtapiDevicePathTemplate = {
110 {
111 MESSAGING_DEVICE_PATH,
112 MSG_ATAPI_DP,
113 {
114 (UINT8) (sizeof (ATAPI_DEVICE_PATH)),
115 (UINT8) ((sizeof (ATAPI_DEVICE_PATH)) >> 8)
116 }
117 },
118 0,
119 0,
120 0
121 };
122
123 SATA_DEVICE_PATH mSataDevicePathTemplate = {
124 {
125 MESSAGING_DEVICE_PATH,
126 MSG_SATA_DP,
127 {
128 (UINT8) (sizeof (SATA_DEVICE_PATH)),
129 (UINT8) ((sizeof (SATA_DEVICE_PATH)) >> 8)
130 }
131 },
132 0,
133 0,
134 0
135 };
136
137 UINT8 mScsiId[TARGET_MAX_BYTES] = {
138 0xFF, 0xFF, 0xFF, 0xFF,
139 0xFF, 0xFF, 0xFF, 0xFF,
140 0xFF, 0xFF, 0xFF, 0xFF,
141 0xFF, 0xFF, 0xFF, 0xFF
142 };
143
144 /**
145 Sends an ATA command to an ATA device that is attached to the ATA controller. This function
146 supports both blocking I/O and non-blocking I/O. The blocking I/O functionality is required,
147 and the non-blocking I/O functionality is optional.
148
149 @param[in] Port The port number of the ATA device to send the command.
150 @param[in] PortMultiplierPort The port multiplier port number of the ATA device to send the command.
151 If there is no port multiplier, then specify 0.
152 @param[in, out] Packet A pointer to the ATA command to send to the ATA device specified by Port
153 and PortMultiplierPort.
154 @param[in] Instance Pointer to the ATA_ATAPI_PASS_THRU_INSTANCE.
155 @param[in] Task Optional. Pointer to the ATA_NONBLOCK_TASK
156 used by non-blocking mode.
157
158 @retval EFI_SUCCESS The ATA command was sent by the host. For
159 bi-directional commands, InTransferLength bytes
160 were transferred from InDataBuffer. For
161 write and bi-directional commands, OutTransferLength
162 bytes were transferred by OutDataBuffer.
163 @retval EFI_BAD_BUFFER_SIZE The ATA command was not executed. The number
164 of bytes that could be transferred is returned
165 in InTransferLength. For write and bi-directional
166 commands, OutTransferLength bytes were transferred
167 by OutDataBuffer.
168 @retval EFI_NOT_READY The ATA command could not be sent because
169 there are too many ATA commands already
170 queued. The caller may retry again later.
171 @retval EFI_DEVICE_ERROR A device error occurred while attempting
172 to send the ATA command.
173 @retval EFI_INVALID_PARAMETER Port, PortMultiplierPort, or the contents
174 of Acb are invalid. The ATA command was
175 not sent, so no additional status information
176 is available.
177
178 **/
179 EFI_STATUS
180 EFIAPI
181 AtaPassThruPassThruExecute (
182 IN UINT16 Port,
183 IN UINT16 PortMultiplierPort,
184 IN OUT EFI_ATA_PASS_THRU_COMMAND_PACKET *Packet,
185 IN ATA_ATAPI_PASS_THRU_INSTANCE *Instance,
186 IN ATA_NONBLOCK_TASK *Task OPTIONAL
187 )
188 {
189 EFI_ATA_PASS_THRU_CMD_PROTOCOL Protocol;
190 EFI_ATA_HC_WORK_MODE Mode;
191 EFI_STATUS Status;
192
193 Protocol = Packet->Protocol;
194
195 Mode = Instance->Mode;
196 switch (Mode) {
197 case EfiAtaIdeMode:
198 //
199 // Reassign IDE mode io port registers' base addresses
200 //
201 Status = GetIdeRegisterIoAddr (Instance->PciIo, Instance->IdeRegisters);
202
203 if (EFI_ERROR (Status)) {
204 return Status;
205 }
206
207 switch (Protocol) {
208 case EFI_ATA_PASS_THRU_PROTOCOL_ATA_NON_DATA:
209 Status = AtaNonDataCommandIn (
210 Instance->PciIo,
211 &Instance->IdeRegisters[Port],
212 Packet->Acb,
213 Packet->Asb,
214 Packet->Timeout,
215 Task
216 );
217 break;
218 case EFI_ATA_PASS_THRU_PROTOCOL_PIO_DATA_IN:
219 Status = AtaPioDataInOut (
220 Instance->PciIo,
221 &Instance->IdeRegisters[Port],
222 Packet->InDataBuffer,
223 Packet->InTransferLength,
224 TRUE,
225 Packet->Acb,
226 Packet->Asb,
227 Packet->Timeout,
228 Task
229 );
230 break;
231 case EFI_ATA_PASS_THRU_PROTOCOL_PIO_DATA_OUT:
232 Status = AtaPioDataInOut (
233 Instance->PciIo,
234 &Instance->IdeRegisters[Port],
235 Packet->OutDataBuffer,
236 Packet->OutTransferLength,
237 FALSE,
238 Packet->Acb,
239 Packet->Asb,
240 Packet->Timeout,
241 Task
242 );
243 break;
244 case EFI_ATA_PASS_THRU_PROTOCOL_UDMA_DATA_IN:
245 Status = AtaUdmaInOut (
246 Instance,
247 &Instance->IdeRegisters[Port],
248 TRUE,
249 Packet->InDataBuffer,
250 Packet->InTransferLength,
251 Packet->Acb,
252 Packet->Asb,
253 Packet->Timeout,
254 Task
255 );
256 break;
257 case EFI_ATA_PASS_THRU_PROTOCOL_UDMA_DATA_OUT:
258 Status = AtaUdmaInOut (
259 Instance,
260 &Instance->IdeRegisters[Port],
261 FALSE,
262 Packet->OutDataBuffer,
263 Packet->OutTransferLength,
264 Packet->Acb,
265 Packet->Asb,
266 Packet->Timeout,
267 Task
268 );
269 break;
270 default :
271 return EFI_UNSUPPORTED;
272 }
273 break;
274 case EfiAtaAhciMode :
275 switch (Protocol) {
276 case EFI_ATA_PASS_THRU_PROTOCOL_ATA_NON_DATA:
277 Status = AhciNonDataTransfer (
278 Instance->PciIo,
279 &Instance->AhciRegisters,
280 (UINT8)Port,
281 (UINT8)PortMultiplierPort,
282 NULL,
283 0,
284 Packet->Acb,
285 Packet->Asb,
286 Packet->Timeout,
287 Task
288 );
289 break;
290 case EFI_ATA_PASS_THRU_PROTOCOL_PIO_DATA_IN:
291 Status = AhciPioTransfer (
292 Instance->PciIo,
293 &Instance->AhciRegisters,
294 (UINT8)Port,
295 (UINT8)PortMultiplierPort,
296 NULL,
297 0,
298 TRUE,
299 Packet->Acb,
300 Packet->Asb,
301 Packet->InDataBuffer,
302 Packet->InTransferLength,
303 Packet->Timeout,
304 Task
305 );
306 break;
307 case EFI_ATA_PASS_THRU_PROTOCOL_PIO_DATA_OUT:
308 Status = AhciPioTransfer (
309 Instance->PciIo,
310 &Instance->AhciRegisters,
311 (UINT8)Port,
312 (UINT8)PortMultiplierPort,
313 NULL,
314 0,
315 FALSE,
316 Packet->Acb,
317 Packet->Asb,
318 Packet->OutDataBuffer,
319 Packet->OutTransferLength,
320 Packet->Timeout,
321 Task
322 );
323 break;
324 case EFI_ATA_PASS_THRU_PROTOCOL_UDMA_DATA_IN:
325 Status = AhciDmaTransfer (
326 Instance,
327 &Instance->AhciRegisters,
328 (UINT8)Port,
329 (UINT8)PortMultiplierPort,
330 NULL,
331 0,
332 TRUE,
333 Packet->Acb,
334 Packet->Asb,
335 Packet->InDataBuffer,
336 Packet->InTransferLength,
337 Packet->Timeout,
338 Task
339 );
340 break;
341 case EFI_ATA_PASS_THRU_PROTOCOL_UDMA_DATA_OUT:
342 Status = AhciDmaTransfer (
343 Instance,
344 &Instance->AhciRegisters,
345 (UINT8)Port,
346 (UINT8)PortMultiplierPort,
347 NULL,
348 0,
349 FALSE,
350 Packet->Acb,
351 Packet->Asb,
352 Packet->OutDataBuffer,
353 Packet->OutTransferLength,
354 Packet->Timeout,
355 Task
356 );
357 break;
358 default :
359 return EFI_UNSUPPORTED;
360 }
361 break;
362
363 default:
364 Status = EFI_DEVICE_ERROR;
365 break;
366 }
367
368 return Status;
369 }
370
371 /**
372 Call back function when the timer event is signaled.
373
374 @param[in] Event The Event this notify function registered to.
375 @param[in] Context Pointer to the context data registered to the
376 Event.
377
378 **/
379 VOID
380 EFIAPI
381 AsyncNonBlockingTransferRoutine (
382 EFI_EVENT Event,
383 VOID* Context
384 )
385 {
386 LIST_ENTRY *Entry;
387 LIST_ENTRY *EntryHeader;
388 ATA_NONBLOCK_TASK *Task;
389 EFI_STATUS Status;
390 ATA_ATAPI_PASS_THRU_INSTANCE *Instance;
391
392 Instance = (ATA_ATAPI_PASS_THRU_INSTANCE *) Context;
393 EntryHeader = &Instance->NonBlockingTaskList;
394 //
395 // Get the Taks from the Taks List and execute it, until there is
396 // no task in the list or the device is busy with task (EFI_NOT_READY).
397 //
398 while (TRUE) {
399 if (!IsListEmpty (EntryHeader)) {
400 Entry = GetFirstNode (EntryHeader);
401 Task = ATA_NON_BLOCK_TASK_FROM_ENTRY (Entry);
402 } else {
403 return;
404 }
405
406 Status = AtaPassThruPassThruExecute (
407 Task->Port,
408 Task->PortMultiplier,
409 Task->Packet,
410 Instance,
411 Task
412 );
413
414 //
415 // If the data transfer meet a error, remove all tasks in the list since these tasks are
416 // associated with one task from Ata Bus and signal the event with error status.
417 //
418 if ((Status != EFI_NOT_READY) && (Status != EFI_SUCCESS)) {
419 DestroyAsynTaskList (Instance, TRUE);
420 break;
421 }
422
423 //
424 // For Non blocking mode, the Status of EFI_NOT_READY means the operation
425 // is not finished yet. Otherwise the operation is successful.
426 //
427 if (Status == EFI_NOT_READY) {
428 break;
429 } else {
430 RemoveEntryList (&Task->Link);
431 gBS->SignalEvent (Task->Event);
432 FreePool (Task);
433 }
434 }
435 }
436
437 /**
438 The Entry Point of module.
439
440 @param[in] ImageHandle The firmware allocated handle for the EFI image.
441 @param[in] SystemTable A pointer to the EFI System Table.
442
443 @retval EFI_SUCCESS The entry point is executed successfully.
444 @retval other Some error occurs when executing this entry point.
445
446 **/
447 EFI_STATUS
448 EFIAPI
449 InitializeAtaAtapiPassThru (
450 IN EFI_HANDLE ImageHandle,
451 IN EFI_SYSTEM_TABLE *SystemTable
452 )
453 {
454 EFI_STATUS Status;
455
456 //
457 // Install driver model protocol(s).
458 //
459 Status = EfiLibInstallDriverBindingComponentName2 (
460 ImageHandle,
461 SystemTable,
462 &gAtaAtapiPassThruDriverBinding,
463 ImageHandle,
464 &gAtaAtapiPassThruComponentName,
465 &gAtaAtapiPassThruComponentName2
466 );
467 ASSERT_EFI_ERROR (Status);
468
469 return Status;
470 }
471
472 /**
473 Tests to see if this driver supports a given controller. If a child device is provided,
474 it further tests to see if this driver supports creating a handle for the specified child device.
475
476 This function checks to see if the driver specified by This supports the device specified by
477 ControllerHandle. Drivers will typically use the device path attached to
478 ControllerHandle and/or the services from the bus I/O abstraction attached to
479 ControllerHandle to determine if the driver supports ControllerHandle. This function
480 may be called many times during platform initialization. In order to reduce boot times, the tests
481 performed by this function must be very small, and take as little time as possible to execute. This
482 function must not change the state of any hardware devices, and this function must be aware that the
483 device specified by ControllerHandle may already be managed by the same driver or a
484 different driver. This function must match its calls to AllocatePages() with FreePages(),
485 AllocatePool() with FreePool(), and OpenProtocol() with CloseProtocol().
486 Because ControllerHandle may have been previously started by the same driver, if a protocol is
487 already in the opened state, then it must not be closed with CloseProtocol(). This is required
488 to guarantee the state of ControllerHandle is not modified by this function.
489
490 @param[in] This A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.
491 @param[in] ControllerHandle The handle of the controller to test. This handle
492 must support a protocol interface that supplies
493 an I/O abstraction to the driver.
494 @param[in] RemainingDevicePath A pointer to the remaining portion of a device path. This
495 parameter is ignored by device drivers, and is optional for bus
496 drivers. For bus drivers, if this parameter is not NULL, then
497 the bus driver must determine if the bus controller specified
498 by ControllerHandle and the child controller specified
499 by RemainingDevicePath are both supported by this
500 bus driver.
501
502 @retval EFI_SUCCESS The device specified by ControllerHandle and
503 RemainingDevicePath is supported by the driver specified by This.
504 @retval EFI_ALREADY_STARTED The device specified by ControllerHandle and
505 RemainingDevicePath is already being managed by the driver
506 specified by This.
507 @retval EFI_ACCESS_DENIED The device specified by ControllerHandle and
508 RemainingDevicePath is already being managed by a different
509 driver or an application that requires exclusive access.
510 Currently not implemented.
511 @retval EFI_UNSUPPORTED The device specified by ControllerHandle and
512 RemainingDevicePath is not supported by the driver specified by This.
513 **/
514 EFI_STATUS
515 EFIAPI
516 AtaAtapiPassThruSupported (
517 IN EFI_DRIVER_BINDING_PROTOCOL *This,
518 IN EFI_HANDLE Controller,
519 IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath
520 )
521 {
522 EFI_STATUS Status;
523 EFI_DEVICE_PATH_PROTOCOL *ParentDevicePath;
524 EFI_PCI_IO_PROTOCOL *PciIo;
525 PCI_TYPE00 PciData;
526 EFI_IDE_CONTROLLER_INIT_PROTOCOL *IdeControllerInit;
527
528 //
529 // SATA Controller is a device driver, and should ingore the
530 // "RemainingDevicePath" according to UEFI spec
531 //
532 Status = gBS->OpenProtocol (
533 Controller,
534 &gEfiDevicePathProtocolGuid,
535 (VOID *) &ParentDevicePath,
536 This->DriverBindingHandle,
537 Controller,
538 EFI_OPEN_PROTOCOL_BY_DRIVER
539 );
540 if (EFI_ERROR (Status)) {
541 //
542 // EFI_ALREADY_STARTED is also an error
543 //
544 return Status;
545 }
546 //
547 // Close the protocol because we don't use it here
548 //
549 gBS->CloseProtocol (
550 Controller,
551 &gEfiDevicePathProtocolGuid,
552 This->DriverBindingHandle,
553 Controller
554 );
555
556 Status = gBS->OpenProtocol (
557 Controller,
558 &gEfiIdeControllerInitProtocolGuid,
559 (VOID **) &IdeControllerInit,
560 This->DriverBindingHandle,
561 Controller,
562 EFI_OPEN_PROTOCOL_BY_DRIVER
563 );
564
565 if (EFI_ERROR (Status)) {
566 //
567 // EFI_ALREADY_STARTED is also an error
568 //
569 return Status;
570 }
571
572 //
573 // Close the I/O Abstraction(s) used to perform the supported test
574 //
575 gBS->CloseProtocol (
576 Controller,
577 &gEfiIdeControllerInitProtocolGuid,
578 This->DriverBindingHandle,
579 Controller
580 );
581
582 //
583 // Now test the EfiPciIoProtocol
584 //
585 Status = gBS->OpenProtocol (
586 Controller,
587 &gEfiPciIoProtocolGuid,
588 (VOID **) &PciIo,
589 This->DriverBindingHandle,
590 Controller,
591 EFI_OPEN_PROTOCOL_GET_PROTOCOL
592 );
593 if (EFI_ERROR (Status)) {
594 return Status;
595 }
596 //
597 // Now further check the PCI header: Base class (offset 0x0B) and
598 // Sub Class (offset 0x0A). This controller should be an ATA controller
599 //
600 Status = PciIo->Pci.Read (
601 PciIo,
602 EfiPciIoWidthUint8,
603 PCI_CLASSCODE_OFFSET,
604 sizeof (PciData.Hdr.ClassCode),
605 PciData.Hdr.ClassCode
606 );
607 if (EFI_ERROR (Status)) {
608 return EFI_UNSUPPORTED;
609 }
610
611 if (IS_PCI_IDE (&PciData) || IS_PCI_SATADPA (&PciData)) {
612 return EFI_SUCCESS;
613 }
614
615 return EFI_UNSUPPORTED;
616 }
617
618 /**
619 Starts a device controller or a bus controller.
620
621 The Start() function is designed to be invoked from the EFI boot service ConnectController().
622 As a result, much of the error checking on the parameters to Start() has been moved into this
623 common boot service. It is legal to call Start() from other locations,
624 but the following calling restrictions must be followed, or the system behavior will not be deterministic.
625 1. ControllerHandle must be a valid EFI_HANDLE.
626 2. If RemainingDevicePath is not NULL, then it must be a pointer to a naturally aligned
627 EFI_DEVICE_PATH_PROTOCOL.
628 3. Prior to calling Start(), the Supported() function for the driver specified by This must
629 have been called with the same calling parameters, and Supported() must have returned EFI_SUCCESS.
630
631 @param[in] This A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.
632 @param[in] ControllerHandle The handle of the controller to start. This handle
633 must support a protocol interface that supplies
634 an I/O abstraction to the driver.
635 @param[in] RemainingDevicePath A pointer to the remaining portion of a device path. This
636 parameter is ignored by device drivers, and is optional for bus
637 drivers. For a bus driver, if this parameter is NULL, then handles
638 for all the children of Controller are created by this driver.
639 If this parameter is not NULL and the first Device Path Node is
640 not the End of Device Path Node, then only the handle for the
641 child device specified by the first Device Path Node of
642 RemainingDevicePath is created by this driver.
643 If the first Device Path Node of RemainingDevicePath is
644 the End of Device Path Node, no child handle is created by this
645 driver.
646
647 @retval EFI_SUCCESS The device was started.
648 @retval EFI_DEVICE_ERROR The device could not be started due to a device error.Currently not implemented.
649 @retval EFI_OUT_OF_RESOURCES The request could not be completed due to a lack of resources.
650 @retval Others The driver failded to start the device.
651
652 **/
653 EFI_STATUS
654 EFIAPI
655 AtaAtapiPassThruStart (
656 IN EFI_DRIVER_BINDING_PROTOCOL *This,
657 IN EFI_HANDLE Controller,
658 IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath
659 )
660 {
661 EFI_STATUS Status;
662 EFI_IDE_CONTROLLER_INIT_PROTOCOL *IdeControllerInit;
663 ATA_ATAPI_PASS_THRU_INSTANCE *Instance;
664 EFI_PCI_IO_PROTOCOL *PciIo;
665 UINT64 Supports;
666 UINT64 OriginalPciAttributes;
667
668 Status = EFI_SUCCESS;
669 IdeControllerInit = NULL;
670 Instance = NULL;
671 OriginalPciAttributes = 0;
672
673 DEBUG ((EFI_D_INFO, "==AtaAtapiPassThru Start== Controller = %x\n", Controller));
674
675 Status = gBS->OpenProtocol (
676 Controller,
677 &gEfiIdeControllerInitProtocolGuid,
678 (VOID **) &IdeControllerInit,
679 This->DriverBindingHandle,
680 Controller,
681 EFI_OPEN_PROTOCOL_BY_DRIVER
682 );
683
684 if (EFI_ERROR (Status)) {
685 DEBUG ((EFI_D_ERROR, "Open Ide_Controller_Init Error, Status=%r", Status));
686 goto ErrorExit;
687 }
688
689 Status = gBS->OpenProtocol (
690 Controller,
691 &gEfiPciIoProtocolGuid,
692 (VOID **) &PciIo,
693 This->DriverBindingHandle,
694 Controller,
695 EFI_OPEN_PROTOCOL_GET_PROTOCOL
696 );
697 if (EFI_ERROR (Status)) {
698 DEBUG ((EFI_D_ERROR, "Get Pci_Io Protocol Error, Status=%r", Status));
699 goto ErrorExit;
700 }
701
702 Status = PciIo->Attributes (
703 PciIo,
704 EfiPciIoAttributeOperationGet,
705 0,
706 &OriginalPciAttributes
707 );
708
709 if (EFI_ERROR (Status)) {
710 goto ErrorExit;
711 }
712
713 Status = PciIo->Attributes (
714 PciIo,
715 EfiPciIoAttributeOperationSupported,
716 0,
717 &Supports
718 );
719 if (!EFI_ERROR (Status)) {
720 Supports &= EFI_PCI_DEVICE_ENABLE;
721 Status = PciIo->Attributes (
722 PciIo,
723 EfiPciIoAttributeOperationEnable,
724 Supports,
725 NULL
726 );
727 }
728
729 if (EFI_ERROR (Status)) {
730 goto ErrorExit;
731 }
732
733 //
734 // Allocate a buffer to store the ATA_ATAPI_PASS_THRU_INSTANCE data structure
735 //
736 Instance = AllocateCopyPool (sizeof (ATA_ATAPI_PASS_THRU_INSTANCE), &gAtaAtapiPassThruInstanceTemplate);
737 if (Instance == NULL) {
738 goto ErrorExit;
739 }
740
741 Instance->ControllerHandle = Controller;
742 Instance->IdeControllerInit = IdeControllerInit;
743 Instance->PciIo = PciIo;
744 Instance->OriginalPciAttributes = OriginalPciAttributes;
745 Instance->AtaPassThru.Mode = &Instance->AtaPassThruMode;
746 Instance->ExtScsiPassThru.Mode = &Instance->ExtScsiPassThruMode;
747 InitializeListHead(&Instance->DeviceList);
748 InitializeListHead(&Instance->NonBlockingTaskList);
749
750 Instance->TimerEvent = NULL;
751
752 Status = gBS->CreateEvent (
753 EVT_TIMER | EVT_NOTIFY_SIGNAL,
754 TPL_NOTIFY,
755 AsyncNonBlockingTransferRoutine,
756 Instance,
757 &Instance->TimerEvent
758 );
759 if (EFI_ERROR (Status)) {
760 goto ErrorExit;
761 }
762
763 //
764 // Set 1ms timer.
765 //
766 Status = gBS->SetTimer (Instance->TimerEvent, TimerPeriodic, 10000);
767 if (EFI_ERROR (Status)) {
768 goto ErrorExit;
769 }
770
771 //
772 // Enumerate all inserted ATA devices.
773 //
774 Status = EnumerateAttachedDevice (Instance);
775 if (EFI_ERROR (Status)) {
776 goto ErrorExit;
777 }
778
779 Status = gBS->InstallMultipleProtocolInterfaces (
780 &Controller,
781 &gEfiAtaPassThruProtocolGuid, &(Instance->AtaPassThru),
782 &gEfiExtScsiPassThruProtocolGuid, &(Instance->ExtScsiPassThru),
783 NULL
784 );
785 ASSERT_EFI_ERROR (Status);
786
787 return Status;
788
789 ErrorExit:
790 if (IdeControllerInit != NULL) {
791 gBS->CloseProtocol (
792 Controller,
793 &gEfiIdeControllerInitProtocolGuid,
794 This->DriverBindingHandle,
795 Controller
796 );
797 }
798
799 if ((Instance != NULL) && (Instance->TimerEvent != NULL)) {
800 gBS->CloseEvent (Instance->TimerEvent);
801 }
802
803 //
804 // Remove all inserted ATA devices.
805 //
806 DestroyDeviceInfoList(Instance);
807
808 if (Instance != NULL) {
809 FreePool (Instance);
810 }
811 return EFI_UNSUPPORTED;
812 }
813
814 /**
815 Stops a device controller or a bus controller.
816
817 The Stop() function is designed to be invoked from the EFI boot service DisconnectController().
818 As a result, much of the error checking on the parameters to Stop() has been moved
819 into this common boot service. It is legal to call Stop() from other locations,
820 but the following calling restrictions must be followed, or the system behavior will not be deterministic.
821 1. ControllerHandle must be a valid EFI_HANDLE that was used on a previous call to this
822 same driver's Start() function.
823 2. The first NumberOfChildren handles of ChildHandleBuffer must all be a valid
824 EFI_HANDLE. In addition, all of these handles must have been created in this driver's
825 Start() function, and the Start() function must have called OpenProtocol() on
826 ControllerHandle with an Attribute of EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER.
827
828 @param[in] This A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.
829 @param[in] ControllerHandle A handle to the device being stopped. The handle must
830 support a bus specific I/O protocol for the driver
831 to use to stop the device.
832 @param[in] NumberOfChildren The number of child device handles in ChildHandleBuffer.
833 @param[in] ChildHandleBuffer An array of child handles to be freed. May be NULL
834 if NumberOfChildren is 0.
835
836 @retval EFI_SUCCESS The device was stopped.
837 @retval EFI_DEVICE_ERROR The device could not be stopped due to a device error.
838
839 **/
840 EFI_STATUS
841 EFIAPI
842 AtaAtapiPassThruStop (
843 IN EFI_DRIVER_BINDING_PROTOCOL *This,
844 IN EFI_HANDLE Controller,
845 IN UINTN NumberOfChildren,
846 IN EFI_HANDLE *ChildHandleBuffer
847 )
848 {
849 EFI_STATUS Status;
850 ATA_ATAPI_PASS_THRU_INSTANCE *Instance;
851 EFI_ATA_PASS_THRU_PROTOCOL *AtaPassThru;
852 EFI_PCI_IO_PROTOCOL *PciIo;
853 EFI_AHCI_REGISTERS *AhciRegisters;
854 UINT64 Supports;
855
856 DEBUG ((EFI_D_INFO, "==AtaAtapiPassThru Stop== Controller = %x\n", Controller));
857
858 Status = gBS->OpenProtocol (
859 Controller,
860 &gEfiAtaPassThruProtocolGuid,
861 (VOID **) &AtaPassThru,
862 This->DriverBindingHandle,
863 Controller,
864 EFI_OPEN_PROTOCOL_GET_PROTOCOL
865 );
866
867 if (EFI_ERROR (Status)) {
868 return EFI_DEVICE_ERROR;
869 }
870
871 Instance = ATA_PASS_THRU_PRIVATE_DATA_FROM_THIS (AtaPassThru);
872
873 //
874 // Close Non-Blocking timer and free Task list.
875 //
876 if (Instance->TimerEvent != NULL) {
877 gBS->CloseEvent (Instance->TimerEvent);
878 Instance->TimerEvent = NULL;
879 }
880 DestroyAsynTaskList (Instance, FALSE);
881
882 //
883 // Disable this ATA host controller.
884 //
885 PciIo = Instance->PciIo;
886 Status = PciIo->Attributes (
887 PciIo,
888 EfiPciIoAttributeOperationSupported,
889 0,
890 &Supports
891 );
892 if (!EFI_ERROR (Status)) {
893 Supports &= EFI_PCI_DEVICE_ENABLE;
894 PciIo->Attributes (
895 PciIo,
896 EfiPciIoAttributeOperationDisable,
897 Supports,
898 NULL
899 );
900 }
901
902 //
903 // Restore original PCI attributes
904 //
905 Status = PciIo->Attributes (
906 PciIo,
907 EfiPciIoAttributeOperationSet,
908 Instance->OriginalPciAttributes,
909 NULL
910 );
911 ASSERT_EFI_ERROR (Status);
912
913 gBS->UninstallMultipleProtocolInterfaces (
914 Controller,
915 &gEfiAtaPassThruProtocolGuid, &(Instance->AtaPassThru),
916 &gEfiExtScsiPassThruProtocolGuid, &(Instance->ExtScsiPassThru),
917 NULL
918 );
919
920 //
921 // Close protocols opened by AtaAtapiPassThru controller driver
922 //
923 gBS->CloseProtocol (
924 Controller,
925 &gEfiIdeControllerInitProtocolGuid,
926 This->DriverBindingHandle,
927 Controller
928 );
929
930 //
931 // Free allocated resource
932 //
933 DestroyDeviceInfoList(Instance);
934
935 //
936 // If the current working mode is AHCI mode, then pre-allocated resource
937 // for AHCI initialization should be released.
938 //
939 if (Instance->Mode == EfiAtaAhciMode) {
940 AhciRegisters = &Instance->AhciRegisters;
941 PciIo->Unmap (
942 PciIo,
943 AhciRegisters->MapCommandTable
944 );
945 PciIo->FreeBuffer (
946 PciIo,
947 EFI_SIZE_TO_PAGES ((UINTN) AhciRegisters->MaxCommandTableSize),
948 AhciRegisters->AhciCommandTable
949 );
950 PciIo->Unmap (
951 PciIo,
952 AhciRegisters->MapCmdList
953 );
954 PciIo->FreeBuffer (
955 PciIo,
956 EFI_SIZE_TO_PAGES ((UINTN) AhciRegisters->MaxCommandListSize),
957 AhciRegisters->AhciCmdList
958 );
959 PciIo->Unmap (
960 PciIo,
961 AhciRegisters->MapRFis
962 );
963 PciIo->FreeBuffer (
964 PciIo,
965 EFI_SIZE_TO_PAGES ((UINTN) AhciRegisters->MaxReceiveFisSize),
966 AhciRegisters->AhciRFis
967 );
968 }
969 FreePool (Instance);
970
971 return Status;
972 }
973
974 /**
975 Traverse the attached ATA devices list to find out the device to access.
976
977 @param[in] Instance A pointer to the ATA_ATAPI_PASS_THRU_INSTANCE instance.
978 @param[in] Port The port number of the ATA device to send the command.
979 @param[in] PortMultiplierPort The port multiplier port number of the ATA device to send the command.
980 If there is no port multiplier, then specify 0.
981 @param[in] DeviceType The device type of the ATA device.
982
983 @retval The pointer to the data structure of the device info to access.
984
985 **/
986 LIST_ENTRY *
987 EFIAPI
988 SearchDeviceInfoList (
989 IN ATA_ATAPI_PASS_THRU_INSTANCE *Instance,
990 IN UINT16 Port,
991 IN UINT16 PortMultiplier,
992 IN EFI_ATA_DEVICE_TYPE DeviceType
993 )
994 {
995 EFI_ATA_DEVICE_INFO *DeviceInfo;
996 LIST_ENTRY *Node;
997
998 Node = GetFirstNode (&Instance->DeviceList);
999 while (!IsNull (&Instance->DeviceList, Node)) {
1000 DeviceInfo = ATA_ATAPI_DEVICE_INFO_FROM_THIS (Node);
1001
1002 if ((DeviceInfo->Type == DeviceType) &&
1003 (Port == DeviceInfo->Port) &&
1004 (PortMultiplier == DeviceInfo->PortMultiplier)) {
1005 return Node;
1006 }
1007
1008 Node = GetNextNode (&Instance->DeviceList, Node);
1009 }
1010
1011 return NULL;
1012 }
1013
1014 /**
1015 Allocate device info data structure to contain device info.
1016 And insert the data structure to the tail of device list for tracing.
1017
1018 @param[in] Instance A pointer to the ATA_ATAPI_PASS_THRU_INSTANCE instance.
1019 @param[in] Port The port number of the ATA device to send the command.
1020 @param[in] PortMultiplierPort The port multiplier port number of the ATA device to send the command.
1021 If there is no port multiplier, then specify 0.
1022 @param[in] DeviceType The device type of the ATA device.
1023 @param[in] IdentifyData The data buffer to store the output of the IDENTIFY cmd.
1024
1025 @retval EFI_SUCCESS Successfully insert the ata device to the tail of device list.
1026 @retval EFI_OUT_OF_RESOURCES Can not allocate enough resource for use.
1027
1028 **/
1029 EFI_STATUS
1030 EFIAPI
1031 CreateNewDeviceInfo (
1032 IN ATA_ATAPI_PASS_THRU_INSTANCE *Instance,
1033 IN UINT16 Port,
1034 IN UINT16 PortMultiplier,
1035 IN EFI_ATA_DEVICE_TYPE DeviceType,
1036 IN EFI_IDENTIFY_DATA *IdentifyData
1037 )
1038 {
1039 EFI_ATA_DEVICE_INFO *DeviceInfo;
1040
1041 DeviceInfo = AllocateZeroPool (sizeof (EFI_ATA_DEVICE_INFO));
1042
1043 if (DeviceInfo == NULL) {
1044 return EFI_OUT_OF_RESOURCES;
1045 }
1046
1047 DeviceInfo->Signature = ATA_ATAPI_DEVICE_SIGNATURE;
1048 DeviceInfo->Port = Port;
1049 DeviceInfo->PortMultiplier = PortMultiplier;
1050 DeviceInfo->Type = DeviceType;
1051
1052 if (IdentifyData != NULL) {
1053 DeviceInfo->IdentifyData = AllocateCopyPool (sizeof (EFI_IDENTIFY_DATA), IdentifyData);
1054 if (DeviceInfo->IdentifyData == NULL) {
1055 FreePool (DeviceInfo);
1056 return EFI_OUT_OF_RESOURCES;
1057 }
1058 }
1059
1060 InsertTailList (&Instance->DeviceList, &DeviceInfo->Link);
1061
1062 return EFI_SUCCESS;
1063 }
1064
1065 /**
1066 Destroy all attached ATA devices info.
1067
1068 @param[in] Instance A pointer to the ATA_ATAPI_PASS_THRU_INSTANCE instance.
1069
1070 **/
1071 VOID
1072 EFIAPI
1073 DestroyDeviceInfoList (
1074 IN ATA_ATAPI_PASS_THRU_INSTANCE *Instance
1075 )
1076 {
1077 EFI_ATA_DEVICE_INFO *DeviceInfo;
1078 LIST_ENTRY *Node;
1079
1080 Node = GetFirstNode (&Instance->DeviceList);
1081 while (!IsNull (&Instance->DeviceList, Node)) {
1082 DeviceInfo = ATA_ATAPI_DEVICE_INFO_FROM_THIS (Node);
1083
1084 Node = GetNextNode (&Instance->DeviceList, Node);
1085
1086 RemoveEntryList (&DeviceInfo->Link);
1087 if (DeviceInfo->IdentifyData != NULL) {
1088 FreePool (DeviceInfo->IdentifyData);
1089 }
1090 FreePool (DeviceInfo);
1091 }
1092 }
1093
1094 /**
1095 Destroy all pending non blocking tasks.
1096
1097 @param[in] Instance A pointer to the ATA_ATAPI_PASS_THRU_INSTANCE instance.
1098 @param[in] IsSigEvent Indicate whether signal the task event when remove the
1099 task.
1100
1101 **/
1102 VOID
1103 EFIAPI
1104 DestroyAsynTaskList (
1105 IN ATA_ATAPI_PASS_THRU_INSTANCE *Instance,
1106 IN BOOLEAN IsSigEvent
1107 )
1108 {
1109 LIST_ENTRY *Entry;
1110 LIST_ENTRY *DelEntry;
1111 ATA_NONBLOCK_TASK *Task;
1112 EFI_TPL OldTpl;
1113
1114 OldTpl = gBS->RaiseTPL (TPL_NOTIFY);
1115 if (!IsListEmpty (&Instance->NonBlockingTaskList)) {
1116 //
1117 // Free the Subtask list.
1118 //
1119 for (Entry = (&Instance->NonBlockingTaskList)->ForwardLink;
1120 Entry != (&Instance->NonBlockingTaskList);
1121 ) {
1122 DelEntry = Entry;
1123 Entry = Entry->ForwardLink;
1124 Task = ATA_NON_BLOCK_TASK_FROM_ENTRY (DelEntry);
1125
1126 RemoveEntryList (DelEntry);
1127 if (IsSigEvent) {
1128 Task->Packet->Asb->AtaStatus = 0x01;
1129 gBS->SignalEvent (Task->Event);
1130 }
1131 FreePool (Task);
1132 }
1133 }
1134 gBS->RestoreTPL (OldTpl);
1135 }
1136
1137 /**
1138 Enumerate all attached ATA devices at IDE mode or AHCI mode separately.
1139
1140 The function is designed to enumerate all attached ATA devices.
1141
1142 @param[in] Instance A pointer to the ATA_ATAPI_PASS_THRU_INSTANCE instance.
1143
1144 @retval EFI_SUCCESS Successfully enumerate attached ATA devices.
1145 @retval EFI_DEVICE_ERROR The device could not be stopped due to a device error.
1146
1147 **/
1148 EFI_STATUS
1149 EFIAPI
1150 EnumerateAttachedDevice (
1151 IN ATA_ATAPI_PASS_THRU_INSTANCE *Instance
1152 )
1153 {
1154 EFI_STATUS Status;
1155 PCI_TYPE00 PciData;
1156 UINT8 ClassCode;
1157
1158 Status = EFI_SUCCESS;
1159
1160 Status = Instance->PciIo->Pci.Read (
1161 Instance->PciIo,
1162 EfiPciIoWidthUint8,
1163 PCI_CLASSCODE_OFFSET,
1164 sizeof (PciData.Hdr.ClassCode),
1165 PciData.Hdr.ClassCode
1166 );
1167 ASSERT_EFI_ERROR (Status);
1168
1169 ClassCode = PciData.Hdr.ClassCode[1];
1170
1171 switch (ClassCode) {
1172 case PCI_CLASS_MASS_STORAGE_IDE :
1173 //
1174 // The ATA controller is working at IDE mode
1175 //
1176 Instance->Mode = EfiAtaIdeMode;
1177
1178 Status = IdeModeInitialization (Instance);
1179 if (EFI_ERROR (Status)) {
1180 Status = EFI_DEVICE_ERROR;
1181 goto Done;
1182 }
1183 break;
1184 case PCI_CLASS_MASS_STORAGE_SATADPA :
1185 //
1186 // The ATA controller is working at AHCI mode
1187 //
1188 Instance->Mode = EfiAtaAhciMode;
1189
1190 Status = AhciModeInitialization (Instance);
1191
1192 if (EFI_ERROR (Status)) {
1193 Status = EFI_DEVICE_ERROR;
1194 goto Done;
1195 }
1196
1197 break;
1198 default :
1199 Status = EFI_UNSUPPORTED;
1200 }
1201
1202 Done:
1203 return Status;
1204 }
1205
1206 /**
1207 Sends an ATA command to an ATA device that is attached to the ATA controller. This function
1208 supports both blocking I/O and non-blocking I/O. The blocking I/O functionality is required,
1209 and the non-blocking I/O functionality is optional.
1210
1211 @param[in] This A pointer to the EFI_ATA_PASS_THRU_PROTOCOL instance.
1212 @param[in] Port The port number of the ATA device to send the command.
1213 @param[in] PortMultiplierPort The port multiplier port number of the ATA device to send the command.
1214 If there is no port multiplier, then specify 0.
1215 @param[in, out] Packet A pointer to the ATA command to send to the ATA device specified by Port
1216 and PortMultiplierPort.
1217 @param[in] Event If non-blocking I/O is not supported then Event is ignored, and blocking
1218 I/O is performed. If Event is NULL, then blocking I/O is performed. If
1219 Event is not NULL and non blocking I/O is supported, then non-blocking
1220 I/O is performed, and Event will be signaled when the ATA command completes.
1221
1222 @retval EFI_SUCCESS The ATA command was sent by the host. For bi-directional commands,
1223 InTransferLength bytes were transferred from InDataBuffer. For write and
1224 bi-directional commands, OutTransferLength bytes were transferred by OutDataBuffer.
1225 @retval EFI_BAD_BUFFER_SIZE The ATA command was not executed. The number of bytes that could be transferred
1226 is returned in InTransferLength. For write and bi-directional commands,
1227 OutTransferLength bytes were transferred by OutDataBuffer.
1228 @retval EFI_NOT_READY The ATA command could not be sent because there are too many ATA commands
1229 already queued. The caller may retry again later.
1230 @retval EFI_DEVICE_ERROR A device error occurred while attempting to send the ATA command.
1231 @retval EFI_INVALID_PARAMETER Port, PortMultiplierPort, or the contents of Acb are invalid. The ATA
1232 command was not sent, so no additional status information is available.
1233
1234 **/
1235 EFI_STATUS
1236 EFIAPI
1237 AtaPassThruPassThru (
1238 IN EFI_ATA_PASS_THRU_PROTOCOL *This,
1239 IN UINT16 Port,
1240 IN UINT16 PortMultiplierPort,
1241 IN OUT EFI_ATA_PASS_THRU_COMMAND_PACKET *Packet,
1242 IN EFI_EVENT Event OPTIONAL
1243 )
1244 {
1245 ATA_ATAPI_PASS_THRU_INSTANCE *Instance;
1246 LIST_ENTRY *Node;
1247 EFI_ATA_DEVICE_INFO *DeviceInfo;
1248 EFI_IDENTIFY_DATA *IdentifyData;
1249 UINT64 Capacity;
1250 UINT32 MaxSectorCount;
1251 ATA_NONBLOCK_TASK *Task;
1252 EFI_TPL OldTpl;
1253
1254 Instance = ATA_PASS_THRU_PRIVATE_DATA_FROM_THIS (This);
1255
1256 if ((This->Mode->IoAlign > 1) && !IS_ALIGNED(Packet->InDataBuffer, This->Mode->IoAlign)) {
1257 return EFI_INVALID_PARAMETER;
1258 }
1259
1260 if ((This->Mode->IoAlign > 1) && !IS_ALIGNED(Packet->OutDataBuffer, This->Mode->IoAlign)) {
1261 return EFI_INVALID_PARAMETER;
1262 }
1263
1264 if ((This->Mode->IoAlign > 1) && !IS_ALIGNED(Packet->Asb, This->Mode->IoAlign)) {
1265 return EFI_INVALID_PARAMETER;
1266 }
1267
1268 //
1269 // convert the transfer length from sector count to byte.
1270 //
1271 if (((Packet->Length & EFI_ATA_PASS_THRU_LENGTH_BYTES) == 0) &&
1272 (Packet->InTransferLength != 0)) {
1273 Packet->InTransferLength = Packet->InTransferLength * 0x200;
1274 }
1275
1276 //
1277 // convert the transfer length from sector count to byte.
1278 //
1279 if (((Packet->Length & EFI_ATA_PASS_THRU_LENGTH_BYTES) == 0) &&
1280 (Packet->OutTransferLength != 0)) {
1281 Packet->OutTransferLength = Packet->OutTransferLength * 0x200;
1282 }
1283
1284 Node = SearchDeviceInfoList (Instance, Port, PortMultiplierPort, EfiIdeHarddisk);
1285
1286 if (Node == NULL) {
1287 return EFI_INVALID_PARAMETER;
1288 }
1289
1290 //
1291 // Check whether this device needs 48-bit addressing (ATAPI-6 ata device).
1292 // Per ATA-6 spec, word83: bit15 is zero and bit14 is one.
1293 // If bit10 is one, it means the ata device support 48-bit addressing.
1294 //
1295 DeviceInfo = ATA_ATAPI_DEVICE_INFO_FROM_THIS (Node);
1296 IdentifyData = DeviceInfo->IdentifyData;
1297 MaxSectorCount = 0x100;
1298 if ((IdentifyData->AtaData.command_set_supported_83 & (BIT10 | BIT15 | BIT14)) == 0x4400) {
1299 Capacity = *((UINT64 *)IdentifyData->AtaData.maximum_lba_for_48bit_addressing);
1300 if (Capacity > 0xFFFFFFF) {
1301 //
1302 // Capacity exceeds 120GB. 48-bit addressing is really needed
1303 // In this case, the max sector count is 0x10000
1304 //
1305 MaxSectorCount = 0x10000;
1306 }
1307 }
1308
1309 //
1310 // If the data buffer described by InDataBuffer/OutDataBuffer and InTransferLength/OutTransferLength
1311 // is too big to be transferred in a single command, then no data is transferred and EFI_BAD_BUFFER_SIZE
1312 // is returned.
1313 //
1314 if (((Packet->InTransferLength != 0) && (Packet->InTransferLength > MaxSectorCount * 0x200)) ||
1315 ((Packet->OutTransferLength != 0) && (Packet->OutTransferLength > MaxSectorCount * 0x200))) {
1316 return EFI_BAD_BUFFER_SIZE;
1317 }
1318
1319 //
1320 // For non-blocking mode, queue the Task into the list.
1321 //
1322 if (Event != NULL) {
1323 Task = AllocateZeroPool (sizeof (ATA_NONBLOCK_TASK));
1324 if (Task == NULL) {
1325 return EFI_OUT_OF_RESOURCES;
1326 }
1327
1328 Task->Signature = ATA_NONBLOCKING_TASK_SIGNATURE;
1329 Task->Port = Port;
1330 Task->PortMultiplier = PortMultiplierPort;
1331 Task->Packet = Packet;
1332 Task->Event = Event;
1333 Task->IsStart = FALSE;
1334 Task->RetryTimes = 0;
1335
1336 OldTpl = gBS->RaiseTPL (TPL_NOTIFY);
1337 InsertTailList (&Instance->NonBlockingTaskList, &Task->Link);
1338 gBS->RestoreTPL (OldTpl);
1339
1340 return EFI_SUCCESS;
1341 } else {
1342 return AtaPassThruPassThruExecute (
1343 Port,
1344 PortMultiplierPort,
1345 Packet,
1346 Instance,
1347 NULL
1348 );
1349 }
1350 }
1351
1352 /**
1353 Used to retrieve the list of legal port numbers for ATA devices on an ATA controller.
1354 These can either be the list of ports where ATA devices are actually present or the
1355 list of legal port numbers for the ATA controller. Regardless, the caller of this
1356 function must probe the port number returned to see if an ATA device is actually
1357 present at that location on the ATA controller.
1358
1359 The GetNextPort() function retrieves the port number on an ATA controller. If on input
1360 Port is 0xFFFF, then the port number of the first port on the ATA controller is returned
1361 in Port and EFI_SUCCESS is returned.
1362
1363 If Port is a port number that was returned on a previous call to GetNextPort(), then the
1364 port number of the next port on the ATA controller is returned in Port, and EFI_SUCCESS
1365 is returned. If Port is not 0xFFFF and Port was not returned on a previous call to
1366 GetNextPort(), then EFI_INVALID_PARAMETER is returned.
1367
1368 If Port is the port number of the last port on the ATA controller, then EFI_NOT_FOUND is
1369 returned.
1370
1371 @param[in] This A pointer to the EFI_ATA_PASS_THRU_PROTOCOL instance.
1372 @param[in, out] Port On input, a pointer to the port number on the ATA controller.
1373 On output, a pointer to the next port number on the ATA
1374 controller. An input value of 0xFFFF retrieves the first port
1375 number on the ATA controller.
1376
1377 @retval EFI_SUCCESS The next port number on the ATA controller was returned in Port.
1378 @retval EFI_NOT_FOUND There are no more ports on this ATA controller.
1379 @retval EFI_INVALID_PARAMETER Port is not 0xFFFF and Port was not returned on a previous call
1380 to GetNextPort().
1381
1382 **/
1383 EFI_STATUS
1384 EFIAPI
1385 AtaPassThruGetNextPort (
1386 IN EFI_ATA_PASS_THRU_PROTOCOL *This,
1387 IN OUT UINT16 *Port
1388 )
1389 {
1390 ATA_ATAPI_PASS_THRU_INSTANCE *Instance;
1391 LIST_ENTRY *Node;
1392 EFI_ATA_DEVICE_INFO *DeviceInfo;
1393
1394 Instance = ATA_PASS_THRU_PRIVATE_DATA_FROM_THIS (This);
1395
1396 if (Port == NULL) {
1397 return EFI_INVALID_PARAMETER;
1398 }
1399
1400 if (*Port == 0xFFFF) {
1401 //
1402 // If the Port is all 0xFF's, start to traverse the device list from the beginning
1403 //
1404 Node = GetFirstNode (&Instance->DeviceList);
1405
1406 while (!IsNull (&Instance->DeviceList, Node)) {
1407 DeviceInfo = ATA_ATAPI_DEVICE_INFO_FROM_THIS (Node);
1408
1409 if (DeviceInfo->Type == EfiIdeHarddisk) {
1410 *Port = DeviceInfo->Port;
1411 goto Exit;
1412 }
1413
1414 Node = GetNextNode (&Instance->DeviceList, Node);
1415 }
1416
1417 return EFI_NOT_FOUND;
1418 } else if (*Port == Instance->PreviousPort) {
1419 Node = GetFirstNode (&Instance->DeviceList);
1420
1421 while (!IsNull (&Instance->DeviceList, Node)) {
1422 DeviceInfo = ATA_ATAPI_DEVICE_INFO_FROM_THIS (Node);
1423
1424 if ((DeviceInfo->Type == EfiIdeHarddisk) &&
1425 (DeviceInfo->Port > *Port)){
1426 *Port = DeviceInfo->Port;
1427 goto Exit;
1428 }
1429
1430 Node = GetNextNode (&Instance->DeviceList, Node);
1431 }
1432
1433 return EFI_NOT_FOUND;
1434 } else {
1435 //
1436 // Port is not equal to 0xFFFF and also not equal to previous return value
1437 //
1438 return EFI_INVALID_PARAMETER;
1439 }
1440
1441 Exit:
1442 //
1443 // Update the PreviousPort and PreviousPortMultiplier.
1444 //
1445 Instance->PreviousPort = *Port;
1446
1447 return EFI_SUCCESS;
1448 }
1449
1450 /**
1451 Used to retrieve the list of legal port multiplier port numbers for ATA devices on a port of an ATA
1452 controller. These can either be the list of port multiplier ports where ATA devices are actually
1453 present on port or the list of legal port multiplier ports on that port. Regardless, the caller of this
1454 function must probe the port number and port multiplier port number returned to see if an ATA
1455 device is actually present.
1456
1457 The GetNextDevice() function retrieves the port multiplier port number of an ATA device
1458 present on a port of an ATA controller.
1459
1460 If PortMultiplierPort points to a port multiplier port number value that was returned on a
1461 previous call to GetNextDevice(), then the port multiplier port number of the next ATA device
1462 on the port of the ATA controller is returned in PortMultiplierPort, and EFI_SUCCESS is
1463 returned.
1464
1465 If PortMultiplierPort points to 0xFFFF, then the port multiplier port number of the first
1466 ATA device on port of the ATA controller is returned in PortMultiplierPort and
1467 EFI_SUCCESS is returned.
1468
1469 If PortMultiplierPort is not 0xFFFF and the value pointed to by PortMultiplierPort
1470 was not returned on a previous call to GetNextDevice(), then EFI_INVALID_PARAMETER
1471 is returned.
1472
1473 If PortMultiplierPort is the port multiplier port number of the last ATA device on the port of
1474 the ATA controller, then EFI_NOT_FOUND is returned.
1475
1476 @param[in] This A pointer to the EFI_ATA_PASS_THRU_PROTOCOL instance.
1477 @param[in] Port The port number present on the ATA controller.
1478 @param[in, out] PortMultiplierPort On input, a pointer to the port multiplier port number of an
1479 ATA device present on the ATA controller.
1480 If on input a PortMultiplierPort of 0xFFFF is specified,
1481 then the port multiplier port number of the first ATA device
1482 is returned. On output, a pointer to the port multiplier port
1483 number of the next ATA device present on an ATA controller.
1484
1485 @retval EFI_SUCCESS The port multiplier port number of the next ATA device on the port
1486 of the ATA controller was returned in PortMultiplierPort.
1487 @retval EFI_NOT_FOUND There are no more ATA devices on this port of the ATA controller.
1488 @retval EFI_INVALID_PARAMETER PortMultiplierPort is not 0xFFFF, and PortMultiplierPort was not
1489 returned on a previous call to GetNextDevice().
1490
1491 **/
1492 EFI_STATUS
1493 EFIAPI
1494 AtaPassThruGetNextDevice (
1495 IN EFI_ATA_PASS_THRU_PROTOCOL *This,
1496 IN UINT16 Port,
1497 IN OUT UINT16 *PortMultiplierPort
1498 )
1499 {
1500 ATA_ATAPI_PASS_THRU_INSTANCE *Instance;
1501 LIST_ENTRY *Node;
1502 EFI_ATA_DEVICE_INFO *DeviceInfo;
1503
1504 Instance = ATA_PASS_THRU_PRIVATE_DATA_FROM_THIS (This);
1505
1506 if (PortMultiplierPort == NULL) {
1507 return EFI_INVALID_PARAMETER;
1508 }
1509
1510 if (*PortMultiplierPort == 0xFFFF) {
1511 //
1512 // If the PortMultiplierPort is all 0xFF's, start to traverse the device list from the beginning
1513 //
1514 Node = GetFirstNode (&Instance->DeviceList);
1515
1516 while (!IsNull (&Instance->DeviceList, Node)) {
1517 DeviceInfo = ATA_ATAPI_DEVICE_INFO_FROM_THIS (Node);
1518
1519 if ((DeviceInfo->Type == EfiIdeHarddisk) &&
1520 (DeviceInfo->Port == Port)){
1521 *PortMultiplierPort = DeviceInfo->PortMultiplier;
1522 goto Exit;
1523 }
1524
1525 Node = GetNextNode (&Instance->DeviceList, Node);
1526 }
1527
1528 return EFI_NOT_FOUND;
1529 } else if (*PortMultiplierPort == Instance->PreviousPortMultiplier) {
1530 Node = GetFirstNode (&Instance->DeviceList);
1531
1532 while (!IsNull (&Instance->DeviceList, Node)) {
1533 DeviceInfo = ATA_ATAPI_DEVICE_INFO_FROM_THIS (Node);
1534
1535 if ((DeviceInfo->Type == EfiIdeHarddisk) &&
1536 (DeviceInfo->Port == Port) &&
1537 (DeviceInfo->PortMultiplier > *PortMultiplierPort)){
1538 *PortMultiplierPort = DeviceInfo->PortMultiplier;
1539 goto Exit;
1540 }
1541
1542 Node = GetNextNode (&Instance->DeviceList, Node);
1543 }
1544
1545 return EFI_NOT_FOUND;
1546 } else {
1547 //
1548 // PortMultiplierPort is not equal to 0xFFFF and also not equal to previous return value
1549 //
1550 return EFI_INVALID_PARAMETER;
1551 }
1552
1553 Exit:
1554 //
1555 // Update the PreviousPort and PreviousPortMultiplier.
1556 //
1557 Instance->PreviousPortMultiplier = *PortMultiplierPort;
1558
1559 return EFI_SUCCESS;
1560 }
1561
1562 /**
1563 Used to allocate and build a device path node for an ATA device on an ATA controller.
1564
1565 The BuildDevicePath() function allocates and builds a single device node for the ATA
1566 device specified by Port and PortMultiplierPort. If the ATA device specified by Port and
1567 PortMultiplierPort is not present on the ATA controller, then EFI_NOT_FOUND is returned.
1568 If DevicePath is NULL, then EFI_INVALID_PARAMETER is returned. If there are not enough
1569 resources to allocate the device path node, then EFI_OUT_OF_RESOURCES is returned.
1570
1571 Otherwise, DevicePath is allocated with the boot service AllocatePool(), the contents of
1572 DevicePath are initialized to describe the ATA device specified by Port and PortMultiplierPort,
1573 and EFI_SUCCESS is returned.
1574
1575 @param[in] This A pointer to the EFI_ATA_PASS_THRU_PROTOCOL instance.
1576 @param[in] Port Port specifies the port number of the ATA device for which a
1577 device path node is to be allocated and built.
1578 @param[in] PortMultiplierPort The port multiplier port number of the ATA device for which a
1579 device path node is to be allocated and built. If there is no
1580 port multiplier, then specify 0.
1581 @param[in, out] DevicePath A pointer to a single device path node that describes the ATA
1582 device specified by Port and PortMultiplierPort. This function
1583 is responsible for allocating the buffer DevicePath with the
1584 boot service AllocatePool(). It is the caller's responsibility
1585 to free DevicePath when the caller is finished with DevicePath.
1586 @retval EFI_SUCCESS The device path node that describes the ATA device specified by
1587 Port and PortMultiplierPort was allocated and returned in DevicePath.
1588 @retval EFI_NOT_FOUND The ATA device specified by Port and PortMultiplierPort does not
1589 exist on the ATA controller.
1590 @retval EFI_INVALID_PARAMETER DevicePath is NULL.
1591 @retval EFI_OUT_OF_RESOURCES There are not enough resources to allocate DevicePath.
1592
1593 **/
1594 EFI_STATUS
1595 EFIAPI
1596 AtaPassThruBuildDevicePath (
1597 IN EFI_ATA_PASS_THRU_PROTOCOL *This,
1598 IN UINT16 Port,
1599 IN UINT16 PortMultiplierPort,
1600 IN OUT EFI_DEVICE_PATH_PROTOCOL **DevicePath
1601 )
1602 {
1603 EFI_DEV_PATH *DevicePathNode;
1604 ATA_ATAPI_PASS_THRU_INSTANCE *Instance;
1605 LIST_ENTRY *Node;
1606
1607 Instance = ATA_PASS_THRU_PRIVATE_DATA_FROM_THIS (This);
1608
1609 //
1610 // Validate parameters passed in.
1611 //
1612 if (DevicePath == NULL) {
1613 return EFI_INVALID_PARAMETER;
1614 }
1615
1616 Node = SearchDeviceInfoList(Instance, Port, PortMultiplierPort, EfiIdeHarddisk);
1617 if (Node == NULL) {
1618 return EFI_NOT_FOUND;
1619 }
1620
1621 if (Instance->Mode == EfiAtaIdeMode) {
1622 DevicePathNode = AllocateCopyPool (sizeof (ATAPI_DEVICE_PATH), &mAtapiDevicePathTemplate);
1623 if (DevicePathNode == NULL) {
1624 return EFI_OUT_OF_RESOURCES;
1625 }
1626 DevicePathNode->Atapi.PrimarySecondary = (UINT8) Port;
1627 DevicePathNode->Atapi.SlaveMaster = (UINT8) PortMultiplierPort;
1628 DevicePathNode->Atapi.Lun = 0;
1629 } else {
1630 DevicePathNode = AllocateCopyPool (sizeof (SATA_DEVICE_PATH), &mSataDevicePathTemplate);
1631 if (DevicePathNode == NULL) {
1632 return EFI_OUT_OF_RESOURCES;
1633 }
1634
1635 DevicePathNode->Sata.HBAPortNumber = Port;
1636 DevicePathNode->Sata.PortMultiplierPortNumber = PortMultiplierPort;
1637 DevicePathNode->Sata.Lun = 0;
1638 }
1639
1640 *DevicePath = (EFI_DEVICE_PATH_PROTOCOL *) DevicePathNode;
1641
1642 return EFI_SUCCESS;
1643 }
1644
1645 /**
1646 Used to translate a device path node to a port number and port multiplier port number.
1647
1648 The GetDevice() function determines the port and port multiplier port number associated with
1649 the ATA device described by DevicePath. If DevicePath is a device path node type that the
1650 ATA Pass Thru driver supports, then the ATA Pass Thru driver will attempt to translate the contents
1651 DevicePath into a port number and port multiplier port number.
1652
1653 If this translation is successful, then that port number and port multiplier port number are returned
1654 in Port and PortMultiplierPort, and EFI_SUCCESS is returned.
1655
1656 If DevicePath, Port, or PortMultiplierPort are NULL, then EFI_INVALID_PARAMETER is returned.
1657
1658 If DevicePath is not a device path node type that the ATA Pass Thru driver supports, then
1659 EFI_UNSUPPORTED is returned.
1660
1661 If DevicePath is a device path node type that the ATA Pass Thru driver supports, but there is not
1662 a valid translation from DevicePath to a port number and port multiplier port number, then
1663 EFI_NOT_FOUND is returned.
1664
1665 @param[in] This A pointer to the EFI_ATA_PASS_THRU_PROTOCOL instance.
1666 @param[in] DevicePath A pointer to the device path node that describes an ATA device on the
1667 ATA controller.
1668 @param[out] Port On return, points to the port number of an ATA device on the ATA controller.
1669 @param[out] PortMultiplierPort On return, points to the port multiplier port number of an ATA device
1670 on the ATA controller.
1671
1672 @retval EFI_SUCCESS DevicePath was successfully translated to a port number and port multiplier
1673 port number, and they were returned in Port and PortMultiplierPort.
1674 @retval EFI_INVALID_PARAMETER DevicePath is NULL.
1675 @retval EFI_INVALID_PARAMETER Port is NULL.
1676 @retval EFI_INVALID_PARAMETER PortMultiplierPort is NULL.
1677 @retval EFI_UNSUPPORTED This driver does not support the device path node type in DevicePath.
1678 @retval EFI_NOT_FOUND A valid translation from DevicePath to a port number and port multiplier
1679 port number does not exist.
1680 **/
1681 EFI_STATUS
1682 EFIAPI
1683 AtaPassThruGetDevice (
1684 IN EFI_ATA_PASS_THRU_PROTOCOL *This,
1685 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath,
1686 OUT UINT16 *Port,
1687 OUT UINT16 *PortMultiplierPort
1688 )
1689 {
1690 EFI_DEV_PATH *DevicePathNode;
1691 ATA_ATAPI_PASS_THRU_INSTANCE *Instance;
1692 LIST_ENTRY *Node;
1693
1694 Instance = ATA_PASS_THRU_PRIVATE_DATA_FROM_THIS (This);
1695
1696 //
1697 // Validate parameters passed in.
1698 //
1699 if (DevicePath == NULL || Port == NULL || PortMultiplierPort == NULL) {
1700 return EFI_INVALID_PARAMETER;
1701 }
1702
1703 //
1704 // Check whether the DevicePath belongs to SCSI_DEVICE_PATH or ATAPI_DEVICE_PATH
1705 //
1706 if ((DevicePath->Type != MESSAGING_DEVICE_PATH) ||
1707 ((DevicePath->SubType != MSG_SATA_DP) &&
1708 (DevicePath->SubType != MSG_ATAPI_DP)) ||
1709 ((DevicePathNodeLength(DevicePath) != sizeof(ATAPI_DEVICE_PATH)) &&
1710 (DevicePathNodeLength(DevicePath) != sizeof(SATA_DEVICE_PATH)))) {
1711 return EFI_UNSUPPORTED;
1712 }
1713
1714 DevicePathNode = (EFI_DEV_PATH *) DevicePath;
1715
1716 if (Instance->Mode == EfiAtaIdeMode) {
1717 *Port = DevicePathNode->Atapi.PrimarySecondary;
1718 *PortMultiplierPort = DevicePathNode->Atapi.SlaveMaster;
1719 } else {
1720 *Port = DevicePathNode->Sata.HBAPortNumber;
1721 *PortMultiplierPort = DevicePathNode->Sata.PortMultiplierPortNumber;
1722 }
1723
1724 Node = SearchDeviceInfoList(Instance, *Port, *PortMultiplierPort, EfiIdeHarddisk);
1725
1726 if (Node == NULL) {
1727 return EFI_NOT_FOUND;
1728 }
1729
1730 return EFI_SUCCESS;
1731 }
1732
1733 /**
1734 Resets a specific port on the ATA controller. This operation also resets all the ATA devices
1735 connected to the port.
1736
1737 The ResetChannel() function resets an a specific port on an ATA controller. This operation
1738 resets all the ATA devices connected to that port. If this ATA controller does not support
1739 a reset port operation, then EFI_UNSUPPORTED is returned.
1740
1741 If a device error occurs while executing that port reset operation, then EFI_DEVICE_ERROR is
1742 returned.
1743
1744 If a timeout occurs during the execution of the port reset operation, then EFI_TIMEOUT is returned.
1745
1746 If the port reset operation is completed, then EFI_SUCCESS is returned.
1747
1748 @param[in] This A pointer to the EFI_ATA_PASS_THRU_PROTOCOL instance.
1749 @param[in] Port The port number on the ATA controller.
1750
1751 @retval EFI_SUCCESS The ATA controller port was reset.
1752 @retval EFI_UNSUPPORTED The ATA controller does not support a port reset operation.
1753 @retval EFI_DEVICE_ERROR A device error occurred while attempting to reset the ATA port.
1754 @retval EFI_TIMEOUT A timeout occurred while attempting to reset the ATA port.
1755
1756 **/
1757 EFI_STATUS
1758 EFIAPI
1759 AtaPassThruResetPort (
1760 IN EFI_ATA_PASS_THRU_PROTOCOL *This,
1761 IN UINT16 Port
1762 )
1763 {
1764 return EFI_UNSUPPORTED;
1765 }
1766
1767 /**
1768 Resets an ATA device that is connected to an ATA controller.
1769
1770 The ResetDevice() function resets the ATA device specified by Port and PortMultiplierPort.
1771 If this ATA controller does not support a device reset operation, then EFI_UNSUPPORTED is
1772 returned.
1773
1774 If Port or PortMultiplierPort are not in a valid range for this ATA controller, then
1775 EFI_INVALID_PARAMETER is returned.
1776
1777 If a device error occurs while executing that device reset operation, then EFI_DEVICE_ERROR
1778 is returned.
1779
1780 If a timeout occurs during the execution of the device reset operation, then EFI_TIMEOUT is
1781 returned.
1782
1783 If the device reset operation is completed, then EFI_SUCCESS is returned.
1784
1785 @param[in] This A pointer to the EFI_ATA_PASS_THRU_PROTOCOL instance.
1786 @param[in] Port Port represents the port number of the ATA device to be reset.
1787 @param[in] PortMultiplierPort The port multiplier port number of the ATA device to reset.
1788 If there is no port multiplier, then specify 0.
1789 @retval EFI_SUCCESS The ATA device specified by Port and PortMultiplierPort was reset.
1790 @retval EFI_UNSUPPORTED The ATA controller does not support a device reset operation.
1791 @retval EFI_INVALID_PARAMETER Port or PortMultiplierPort are invalid.
1792 @retval EFI_DEVICE_ERROR A device error occurred while attempting to reset the ATA device
1793 specified by Port and PortMultiplierPort.
1794 @retval EFI_TIMEOUT A timeout occurred while attempting to reset the ATA device
1795 specified by Port and PortMultiplierPort.
1796
1797 **/
1798 EFI_STATUS
1799 EFIAPI
1800 AtaPassThruResetDevice (
1801 IN EFI_ATA_PASS_THRU_PROTOCOL *This,
1802 IN UINT16 Port,
1803 IN UINT16 PortMultiplierPort
1804 )
1805 {
1806 return EFI_UNSUPPORTED;
1807 }
1808
1809 /**
1810 Sends a SCSI Request Packet to a SCSI device that is attached to the SCSI channel. This function
1811 supports both blocking I/O and nonblocking I/O. The blocking I/O functionality is required, and the
1812 nonblocking I/O functionality is optional.
1813
1814 @param This A pointer to the EFI_EXT_SCSI_PASS_THRU_PROTOCOL instance.
1815 @param Target The Target is an array of size TARGET_MAX_BYTES and it represents
1816 the id of the SCSI device to send the SCSI Request Packet. Each
1817 transport driver may choose to utilize a subset of this size to suit the needs
1818 of transport target representation. For example, a Fibre Channel driver
1819 may use only 8 bytes (WWN) to represent an FC target.
1820 @param Lun The LUN of the SCSI device to send the SCSI Request Packet.
1821 @param Packet A pointer to the SCSI Request Packet to send to the SCSI device
1822 specified by Target and Lun.
1823 @param Event If nonblocking I/O is not supported then Event is ignored, and blocking
1824 I/O is performed. If Event is NULL, then blocking I/O is performed. If
1825 Event is not NULL and non blocking I/O is supported, then
1826 nonblocking I/O is performed, and Event will be signaled when the
1827 SCSI Request Packet completes.
1828
1829 @retval EFI_SUCCESS The SCSI Request Packet was sent by the host. For bi-directional
1830 commands, InTransferLength bytes were transferred from
1831 InDataBuffer. For write and bi-directional commands,
1832 OutTransferLength bytes were transferred by
1833 OutDataBuffer.
1834 @retval EFI_BAD_BUFFER_SIZE The SCSI Request Packet was not executed. The number of bytes that
1835 could be transferred is returned in InTransferLength. For write
1836 and bi-directional commands, OutTransferLength bytes were
1837 transferred by OutDataBuffer.
1838 @retval EFI_NOT_READY The SCSI Request Packet could not be sent because there are too many
1839 SCSI Request Packets already queued. The caller may retry again later.
1840 @retval EFI_DEVICE_ERROR A device error occurred while attempting to send the SCSI Request
1841 Packet.
1842 @retval EFI_INVALID_PARAMETER Target, Lun, or the contents of ScsiRequestPacket are invalid.
1843 @retval EFI_UNSUPPORTED The command described by the SCSI Request Packet is not supported
1844 by the host adapter. This includes the case of Bi-directional SCSI
1845 commands not supported by the implementation. The SCSI Request
1846 Packet was not sent, so no additional status information is available.
1847 @retval EFI_TIMEOUT A timeout occurred while waiting for the SCSI Request Packet to execute.
1848
1849 **/
1850 EFI_STATUS
1851 EFIAPI
1852 ExtScsiPassThruPassThru (
1853 IN EFI_EXT_SCSI_PASS_THRU_PROTOCOL *This,
1854 IN UINT8 *Target,
1855 IN UINT64 Lun,
1856 IN OUT EFI_EXT_SCSI_PASS_THRU_SCSI_REQUEST_PACKET *Packet,
1857 IN EFI_EVENT Event OPTIONAL
1858 )
1859 {
1860 EFI_STATUS Status;
1861 ATA_ATAPI_PASS_THRU_INSTANCE *Instance;
1862 UINT8 Port;
1863 UINT8 PortMultiplier;
1864 EFI_ATA_HC_WORK_MODE Mode;
1865 LIST_ENTRY *Node;
1866 EFI_ATA_DEVICE_INFO *DeviceInfo;
1867
1868 Instance = EXT_SCSI_PASS_THRU_PRIVATE_DATA_FROM_THIS (This);
1869
1870 if ((Packet == NULL) || (Packet->Cdb == NULL)) {
1871 return EFI_INVALID_PARAMETER;
1872 }
1873
1874 //
1875 // Don't support variable length CDB
1876 //
1877 if ((Packet->CdbLength != 6) && (Packet->CdbLength != 10) &&
1878 (Packet->CdbLength != 12) && (Packet->CdbLength != 16)) {
1879 return EFI_INVALID_PARAMETER;
1880 }
1881
1882 if ((This->Mode->IoAlign > 1) && !IS_ALIGNED(Packet->InDataBuffer, This->Mode->IoAlign)) {
1883 return EFI_INVALID_PARAMETER;
1884 }
1885
1886 if ((This->Mode->IoAlign > 1) && !IS_ALIGNED(Packet->OutDataBuffer, This->Mode->IoAlign)) {
1887 return EFI_INVALID_PARAMETER;
1888 }
1889
1890 if ((This->Mode->IoAlign > 1) && !IS_ALIGNED(Packet->SenseData, This->Mode->IoAlign)) {
1891 return EFI_INVALID_PARAMETER;
1892 }
1893
1894 //
1895 // For ATAPI device, doesn't support multiple LUN device.
1896 //
1897 if (Lun != 0) {
1898 return EFI_INVALID_PARAMETER;
1899 }
1900
1901 //
1902 // The layout of Target array:
1903 // ________________________________________________________________________
1904 // | Byte 0 | Byte 1 | ... | TARGET_MAX_BYTES - 1 |
1905 // |_____________________|_____________________|_____|______________________|
1906 // | | The port multiplier | | |
1907 // | The port number | port number | N/A | N/A |
1908 // |_____________________|_____________________|_____|______________________|
1909 //
1910 // For ATAPI device, 2 bytes is enough to represent the location of SCSI device.
1911 //
1912 Port = Target[0];
1913 PortMultiplier = Target[1];
1914
1915 Node = SearchDeviceInfoList(Instance, Port, PortMultiplier, EfiIdeCdrom);
1916 if (Node == NULL) {
1917 return EFI_INVALID_PARAMETER;
1918 }
1919
1920 DeviceInfo = ATA_ATAPI_DEVICE_INFO_FROM_THIS (Node);
1921
1922 //
1923 // ATA_CMD_IDENTIFY_DEVICE cmd is a ATA cmd but not a SCSI cmd.
1924 // Normally it should NOT be passed down through ExtScsiPassThru protocol interface.
1925 // But to response EFI_DISK_INFO.Identify() request from ScsiDisk, we should handle this command.
1926 //
1927 if (*((UINT8*)Packet->Cdb) == ATA_CMD_IDENTIFY_DEVICE) {
1928 CopyMem (Packet->InDataBuffer, DeviceInfo->IdentifyData, sizeof (EFI_IDENTIFY_DATA));
1929 return EFI_SUCCESS;
1930 }
1931
1932 Mode = Instance->Mode;
1933 switch (Mode) {
1934 case EfiAtaIdeMode:
1935 //
1936 // Reassign IDE mode io port registers' base addresses
1937 //
1938 Status = GetIdeRegisterIoAddr (Instance->PciIo, Instance->IdeRegisters);
1939
1940 if (EFI_ERROR (Status)) {
1941 return Status;
1942 }
1943
1944 Status = AtaPacketCommandExecute (Instance->PciIo, &Instance->IdeRegisters[Port], Port, PortMultiplier, Packet);
1945 break;
1946 case EfiAtaAhciMode:
1947 Status = AhciPacketCommandExecute (Instance->PciIo, &Instance->AhciRegisters, Port, PortMultiplier, Packet);
1948 break;
1949 default :
1950 Status = EFI_DEVICE_ERROR;
1951 break;
1952 }
1953
1954 return Status;
1955 }
1956
1957 /**
1958 Used to retrieve the list of legal Target IDs and LUNs for SCSI devices on a SCSI channel. These
1959 can either be the list SCSI devices that are actually present on the SCSI channel, or the list of legal
1960 Target Ids and LUNs for the SCSI channel. Regardless, the caller of this function must probe the
1961 Target ID and LUN returned to see if a SCSI device is actually present at that location on the SCSI
1962 channel.
1963
1964 @param This A pointer to the EFI_EXT_SCSI_PASS_THRU_PROTOCOL instance.
1965 @param Target On input, a pointer to the Target ID (an array of size
1966 TARGET_MAX_BYTES) of a SCSI device present on the SCSI channel.
1967 On output, a pointer to the Target ID (an array of
1968 TARGET_MAX_BYTES) of the next SCSI device present on a SCSI
1969 channel. An input value of 0xF(all bytes in the array are 0xF) in the
1970 Target array retrieves the Target ID of the first SCSI device present on a
1971 SCSI channel.
1972 @param Lun On input, a pointer to the LUN of a SCSI device present on the SCSI
1973 channel. On output, a pointer to the LUN of the next SCSI device present
1974 on a SCSI channel.
1975
1976 @retval EFI_SUCCESS The Target ID and LUN of the next SCSI device on the SCSI
1977 channel was returned in Target and Lun.
1978 @retval EFI_INVALID_PARAMETER Target array is not all 0xF, and Target and Lun were
1979 not returned on a previous call to GetNextTargetLun().
1980 @retval EFI_NOT_FOUND There are no more SCSI devices on this SCSI channel.
1981
1982 **/
1983 EFI_STATUS
1984 EFIAPI
1985 ExtScsiPassThruGetNextTargetLun (
1986 IN EFI_EXT_SCSI_PASS_THRU_PROTOCOL *This,
1987 IN OUT UINT8 **Target,
1988 IN OUT UINT64 *Lun
1989 )
1990 {
1991 ATA_ATAPI_PASS_THRU_INSTANCE *Instance;
1992 LIST_ENTRY *Node;
1993 EFI_ATA_DEVICE_INFO *DeviceInfo;
1994 UINT8 *Target8;
1995 UINT16 *Target16;
1996
1997 Instance = EXT_SCSI_PASS_THRU_PRIVATE_DATA_FROM_THIS (This);
1998
1999 if (Target == NULL || Lun == NULL) {
2000 return EFI_INVALID_PARAMETER;
2001 }
2002
2003 if (*Target == NULL) {
2004 return EFI_INVALID_PARAMETER;
2005 }
2006
2007 Target8 = *Target;
2008 Target16 = (UINT16 *)*Target;
2009
2010 if (CompareMem(Target8, mScsiId, TARGET_MAX_BYTES) != 0) {
2011 //
2012 // For ATAPI device, we use 2 least significant bytes to represent the location of SCSI device.
2013 // So the higher bytes in Target array should be 0xFF.
2014 //
2015 if (CompareMem (&Target8[2], &mScsiId[2], TARGET_MAX_BYTES - 2) != 0) {
2016 return EFI_INVALID_PARAMETER;
2017 }
2018
2019 //
2020 // When Target is not all 0xFF's, compare 2 least significant bytes with
2021 // previous target id to see if it is returned by previous call.
2022 //
2023 if ((*Target16 != Instance->PreviousTargetId) ||
2024 (*Lun != Instance->PreviousLun)) {
2025 return EFI_INVALID_PARAMETER;
2026 }
2027
2028 //
2029 // Traverse the whole device list to find the next cdrom closed to
2030 // the device signified by Target[0] and Target[1].
2031 //
2032 // Note that we here use a tricky way to find the next cdrom :
2033 // All ata devices are detected and inserted into the device list
2034 // sequentially.
2035 //
2036 Node = GetFirstNode (&Instance->DeviceList);
2037
2038 while (!IsNull (&Instance->DeviceList, Node)) {
2039 DeviceInfo = ATA_ATAPI_DEVICE_INFO_FROM_THIS (Node);
2040
2041 if ((DeviceInfo->Type == EfiIdeCdrom) &&
2042 ((Target8[0] < DeviceInfo->Port) ||
2043 ((Target8[0] == DeviceInfo->Port) &&
2044 (Target8[1] < DeviceInfo->PortMultiplier)))) {
2045 Target8[0] = (UINT8)DeviceInfo->Port;
2046 Target8[1] = (UINT8)DeviceInfo->PortMultiplier;
2047 goto Exit;
2048 }
2049
2050 Node = GetNextNode (&Instance->DeviceList, Node);
2051 }
2052
2053 return EFI_NOT_FOUND;
2054 } else {
2055 //
2056 // If the array is all 0xFF's, start to traverse the device list from the beginning
2057 //
2058 Node = GetFirstNode (&Instance->DeviceList);
2059 while (!IsNull (&Instance->DeviceList, Node)) {
2060 DeviceInfo = ATA_ATAPI_DEVICE_INFO_FROM_THIS (Node);
2061
2062 if (DeviceInfo->Type == EfiIdeCdrom) {
2063 Target8[0] = (UINT8)DeviceInfo->Port;
2064 Target8[1] = (UINT8)DeviceInfo->PortMultiplier;
2065 goto Exit;
2066 }
2067
2068 Node = GetNextNode (&Instance->DeviceList, Node);
2069 }
2070
2071 return EFI_NOT_FOUND;
2072 }
2073
2074 Exit:
2075 *Lun = 0;
2076
2077 //
2078 // Update the PreviousTargetId.
2079 //
2080 Instance->PreviousTargetId = *Target16;
2081 Instance->PreviousLun = *Lun;
2082
2083 return EFI_SUCCESS;
2084 }
2085
2086 /**
2087 Used to allocate and build a device path node for a SCSI device on a SCSI channel.
2088
2089 @param This A pointer to the EFI_EXT_SCSI_PASS_THRU_PROTOCOL instance.
2090 @param Target The Target is an array of size TARGET_MAX_BYTES and it specifies the
2091 Target ID of the SCSI device for which a device path node is to be
2092 allocated and built. Transport drivers may chose to utilize a subset of
2093 this size to suit the representation of targets. For example, a Fibre
2094 Channel driver may use only 8 bytes (WWN) in the array to represent a
2095 FC target.
2096 @param Lun The LUN of the SCSI device for which a device path node is to be
2097 allocated and built.
2098 @param DevicePath A pointer to a single device path node that describes the SCSI device
2099 specified by Target and Lun. This function is responsible for
2100 allocating the buffer DevicePath with the boot service
2101 AllocatePool(). It is the caller's responsibility to free
2102 DevicePath when the caller is finished with DevicePath.
2103
2104 @retval EFI_SUCCESS The device path node that describes the SCSI device specified by
2105 Target and Lun was allocated and returned in
2106 DevicePath.
2107 @retval EFI_INVALID_PARAMETER DevicePath is NULL.
2108 @retval EFI_NOT_FOUND The SCSI devices specified by Target and Lun does not exist
2109 on the SCSI channel.
2110 @retval EFI_OUT_OF_RESOURCES There are not enough resources to allocate DevicePath.
2111
2112 **/
2113 EFI_STATUS
2114 EFIAPI
2115 ExtScsiPassThruBuildDevicePath (
2116 IN EFI_EXT_SCSI_PASS_THRU_PROTOCOL *This,
2117 IN UINT8 *Target,
2118 IN UINT64 Lun,
2119 IN OUT EFI_DEVICE_PATH_PROTOCOL **DevicePath
2120 )
2121 {
2122 EFI_DEV_PATH *DevicePathNode;
2123 ATA_ATAPI_PASS_THRU_INSTANCE *Instance;
2124 UINT8 Port;
2125 UINT8 PortMultiplier;
2126
2127 Instance = EXT_SCSI_PASS_THRU_PRIVATE_DATA_FROM_THIS (This);
2128
2129 Port = Target[0];
2130 PortMultiplier = Target[1];
2131
2132 //
2133 // Validate parameters passed in.
2134 //
2135 if (DevicePath == NULL) {
2136 return EFI_INVALID_PARAMETER;
2137 }
2138
2139 //
2140 // can not build device path for the SCSI Host Controller.
2141 //
2142 if (Lun != 0) {
2143 return EFI_NOT_FOUND;
2144 }
2145
2146 if (SearchDeviceInfoList(Instance, Port, PortMultiplier, EfiIdeCdrom) == NULL) {
2147 return EFI_NOT_FOUND;
2148 }
2149
2150 if (Instance->Mode == EfiAtaIdeMode) {
2151 DevicePathNode = AllocateCopyPool (sizeof (ATAPI_DEVICE_PATH), &mAtapiDevicePathTemplate);
2152 if (DevicePathNode == NULL) {
2153 return EFI_OUT_OF_RESOURCES;
2154 }
2155
2156 DevicePathNode->Atapi.PrimarySecondary = Port;
2157 DevicePathNode->Atapi.SlaveMaster = PortMultiplier;
2158 DevicePathNode->Atapi.Lun = (UINT16) Lun;
2159 } else {
2160 DevicePathNode = AllocateCopyPool (sizeof (SATA_DEVICE_PATH), &mSataDevicePathTemplate);
2161 if (DevicePathNode == NULL) {
2162 return EFI_OUT_OF_RESOURCES;
2163 }
2164
2165 DevicePathNode->Sata.HBAPortNumber = Port;
2166 DevicePathNode->Sata.PortMultiplierPortNumber = PortMultiplier;
2167 DevicePathNode->Sata.Lun = (UINT16) Lun;
2168 }
2169
2170 *DevicePath = (EFI_DEVICE_PATH_PROTOCOL *) DevicePathNode;
2171
2172 return EFI_SUCCESS;
2173 }
2174
2175 /**
2176 Used to translate a device path node to a Target ID and LUN.
2177
2178 @param This A pointer to the EFI_EXT_SCSI_PASS_THRU_PROTOCOL instance.
2179 @param DevicePath A pointer to a single device path node that describes the SCSI device
2180 on the SCSI channel.
2181 @param Target A pointer to the Target Array which represents the ID of a SCSI device
2182 on the SCSI channel.
2183 @param Lun A pointer to the LUN of a SCSI device on the SCSI channel.
2184
2185 @retval EFI_SUCCESS DevicePath was successfully translated to a Target ID and
2186 LUN, and they were returned in Target and Lun.
2187 @retval EFI_INVALID_PARAMETER DevicePath or Target or Lun is NULL.
2188 @retval EFI_NOT_FOUND A valid translation from DevicePath to a Target ID and LUN
2189 does not exist.
2190 @retval EFI_UNSUPPORTED This driver does not support the device path node type in
2191 DevicePath.
2192
2193 **/
2194 EFI_STATUS
2195 EFIAPI
2196 ExtScsiPassThruGetTargetLun (
2197 IN EFI_EXT_SCSI_PASS_THRU_PROTOCOL *This,
2198 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath,
2199 OUT UINT8 **Target,
2200 OUT UINT64 *Lun
2201 )
2202 {
2203 EFI_DEV_PATH *DevicePathNode;
2204 ATA_ATAPI_PASS_THRU_INSTANCE *Instance;
2205 LIST_ENTRY *Node;
2206
2207 Instance = EXT_SCSI_PASS_THRU_PRIVATE_DATA_FROM_THIS (This);
2208
2209 //
2210 // Validate parameters passed in.
2211 //
2212 if (DevicePath == NULL || Target == NULL || Lun == NULL) {
2213 return EFI_INVALID_PARAMETER;
2214 }
2215
2216 if (*Target == NULL) {
2217 return EFI_INVALID_PARAMETER;
2218 }
2219 //
2220 // Check whether the DevicePath belongs to SCSI_DEVICE_PATH
2221 //
2222 if ((DevicePath->Type != MESSAGING_DEVICE_PATH) ||
2223 ((DevicePath->SubType != MSG_ATAPI_DP) &&
2224 (DevicePath->SubType != MSG_SATA_DP)) ||
2225 ((DevicePathNodeLength(DevicePath) != sizeof(ATAPI_DEVICE_PATH)) &&
2226 (DevicePathNodeLength(DevicePath) != sizeof(SATA_DEVICE_PATH)))) {
2227 return EFI_UNSUPPORTED;
2228 }
2229
2230 SetMem (*Target, TARGET_MAX_BYTES, 0xFF);
2231
2232 DevicePathNode = (EFI_DEV_PATH *) DevicePath;
2233
2234 if (Instance->Mode == EfiAtaIdeMode) {
2235 (*Target)[0] = (UINT8) DevicePathNode->Atapi.PrimarySecondary;
2236 (*Target)[1] = (UINT8) DevicePathNode->Atapi.SlaveMaster;
2237 *Lun = (UINT8) DevicePathNode->Atapi.Lun;
2238 } else {
2239 (*Target)[0] = (UINT8) DevicePathNode->Sata.HBAPortNumber;
2240 (*Target)[1] = (UINT8) DevicePathNode->Sata.PortMultiplierPortNumber;
2241 *Lun = (UINT8) DevicePathNode->Sata.Lun;
2242 }
2243
2244 Node = SearchDeviceInfoList(Instance, (*Target)[0], (*Target)[1], EfiIdeCdrom);
2245
2246 if (Node == NULL) {
2247 return EFI_NOT_FOUND;
2248 }
2249
2250 if (*Lun != 0) {
2251 return EFI_NOT_FOUND;
2252 }
2253
2254 return EFI_SUCCESS;
2255 }
2256
2257 /**
2258 Resets a SCSI channel. This operation resets all the SCSI devices connected to the SCSI channel.
2259
2260 @param This A pointer to the EFI_EXT_SCSI_PASS_THRU_PROTOCOL instance.
2261
2262 @retval EFI_SUCCESS The SCSI channel was reset.
2263 @retval EFI_DEVICE_ERROR A device error occurred while attempting to reset the SCSI channel.
2264 @retval EFI_TIMEOUT A timeout occurred while attempting to reset the SCSI channel.
2265 @retval EFI_UNSUPPORTED The SCSI channel does not support a channel reset operation.
2266
2267 **/
2268 EFI_STATUS
2269 EFIAPI
2270 ExtScsiPassThruResetChannel (
2271 IN EFI_EXT_SCSI_PASS_THRU_PROTOCOL *This
2272 )
2273 {
2274 return EFI_UNSUPPORTED;
2275 }
2276
2277 /**
2278 Resets a SCSI logical unit that is connected to a SCSI channel.
2279
2280 @param This A pointer to the EFI_EXT_SCSI_PASS_THRU_PROTOCOL instance.
2281 @param Target The Target is an array of size TARGET_MAX_BYTE and it represents the
2282 target port ID of the SCSI device containing the SCSI logical unit to
2283 reset. Transport drivers may chose to utilize a subset of this array to suit
2284 the representation of their targets.
2285 @param Lun The LUN of the SCSI device to reset.
2286
2287 @retval EFI_SUCCESS The SCSI device specified by Target and Lun was reset.
2288 @retval EFI_INVALID_PARAMETER Target or Lun is NULL.
2289 @retval EFI_TIMEOUT A timeout occurred while attempting to reset the SCSI device
2290 specified by Target and Lun.
2291 @retval EFI_UNSUPPORTED The SCSI channel does not support a target reset operation.
2292 @retval EFI_DEVICE_ERROR A device error occurred while attempting to reset the SCSI device
2293 specified by Target and Lun.
2294
2295 **/
2296 EFI_STATUS
2297 EFIAPI
2298 ExtScsiPassThruResetTargetLun (
2299 IN EFI_EXT_SCSI_PASS_THRU_PROTOCOL *This,
2300 IN UINT8 *Target,
2301 IN UINT64 Lun
2302 )
2303 {
2304 return EFI_UNSUPPORTED;
2305 }
2306
2307 /**
2308 Used to retrieve the list of legal Target IDs for SCSI devices on a SCSI channel. These can either
2309 be the list SCSI devices that are actually present on the SCSI channel, or the list of legal Target IDs
2310 for the SCSI channel. Regardless, the caller of this function must probe the Target ID returned to
2311 see if a SCSI device is actually present at that location on the SCSI channel.
2312
2313 @param This A pointer to the EFI_EXT_SCSI_PASS_THRU_PROTOCOL instance.
2314 @param Target (TARGET_MAX_BYTES) of a SCSI device present on the SCSI channel.
2315 On output, a pointer to the Target ID (an array of
2316 TARGET_MAX_BYTES) of the next SCSI device present on a SCSI
2317 channel. An input value of 0xF(all bytes in the array are 0xF) in the
2318 Target array retrieves the Target ID of the first SCSI device present on a
2319 SCSI channel.
2320
2321 @retval EFI_SUCCESS The Target ID of the next SCSI device on the SCSI
2322 channel was returned in Target.
2323 @retval EFI_INVALID_PARAMETER Target or Lun is NULL.
2324 @retval EFI_TIMEOUT Target array is not all 0xF, and Target was not
2325 returned on a previous call to GetNextTarget().
2326 @retval EFI_NOT_FOUND There are no more SCSI devices on this SCSI channel.
2327
2328 **/
2329 EFI_STATUS
2330 EFIAPI
2331 ExtScsiPassThruGetNextTarget (
2332 IN EFI_EXT_SCSI_PASS_THRU_PROTOCOL *This,
2333 IN OUT UINT8 **Target
2334 )
2335 {
2336 ATA_ATAPI_PASS_THRU_INSTANCE *Instance;
2337 LIST_ENTRY *Node;
2338 EFI_ATA_DEVICE_INFO *DeviceInfo;
2339 UINT8 *Target8;
2340 UINT16 *Target16;
2341
2342 Instance = EXT_SCSI_PASS_THRU_PRIVATE_DATA_FROM_THIS (This);
2343
2344 if (Target == NULL || *Target == NULL) {
2345 return EFI_INVALID_PARAMETER;
2346 }
2347
2348 Target8 = *Target;
2349 Target16 = (UINT16 *)*Target;
2350
2351 if (CompareMem(Target8, mScsiId, TARGET_MAX_BYTES) != 0) {
2352 //
2353 // For ATAPI device, we use 2 least significant bytes to represent the location of SCSI device.
2354 // So the higher bytes in Target array should be 0xFF.
2355 //
2356 if (CompareMem (&Target8[2], &mScsiId[2], TARGET_MAX_BYTES - 2) != 0) {
2357 return EFI_INVALID_PARAMETER;
2358 }
2359
2360 //
2361 // When Target is not all 0xFF's, compare 2 least significant bytes with
2362 // previous target id to see if it is returned by previous call.
2363 //
2364 if (*Target16 != Instance->PreviousTargetId) {
2365 return EFI_INVALID_PARAMETER;
2366 }
2367
2368 //
2369 // Traverse the whole device list to find the next cdrom closed to
2370 // the device signified by Target[0] and Target[1].
2371 //
2372 // Note that we here use a tricky way to find the next cdrom :
2373 // All ata devices are detected and inserted into the device list
2374 // sequentially.
2375 //
2376 Node = GetFirstNode (&Instance->DeviceList);
2377 while (!IsNull (&Instance->DeviceList, Node)) {
2378 DeviceInfo = ATA_ATAPI_DEVICE_INFO_FROM_THIS (Node);
2379
2380 if ((DeviceInfo->Type == EfiIdeCdrom) &&
2381 ((Target8[0] < DeviceInfo->Port) ||
2382 ((Target8[0] == DeviceInfo->Port) &&
2383 (Target8[1] < DeviceInfo->PortMultiplier)))) {
2384 Target8[0] = (UINT8)DeviceInfo->Port;
2385 Target8[1] = (UINT8)DeviceInfo->PortMultiplier;
2386 goto Exit;
2387 }
2388
2389 Node = GetNextNode (&Instance->DeviceList, Node);
2390 }
2391
2392 return EFI_NOT_FOUND;
2393 } else {
2394 //
2395 // If the array is all 0xFF's, start to traverse the device list from the beginning
2396 //
2397 Node = GetFirstNode (&Instance->DeviceList);
2398
2399 while (!IsNull (&Instance->DeviceList, Node)) {
2400 DeviceInfo = ATA_ATAPI_DEVICE_INFO_FROM_THIS (Node);
2401
2402 if (DeviceInfo->Type == EfiIdeCdrom) {
2403 Target8[0] = (UINT8)DeviceInfo->Port;
2404 Target8[1] = (UINT8)DeviceInfo->PortMultiplier;
2405 goto Exit;
2406 }
2407
2408 Node = GetNextNode (&Instance->DeviceList, Node);
2409 }
2410
2411 return EFI_NOT_FOUND;
2412 }
2413
2414 Exit:
2415 //
2416 // Update the PreviousTargetId.
2417 //
2418 Instance->PreviousTargetId = *Target16;
2419
2420 return EFI_SUCCESS;
2421 }
2422