]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Bus/Ata/AtaBusDxe/AtaPassThruExecute.c
d44359cfcf99d1a7cdd15bd58f9fd5c4d2141bb2
[mirror_edk2.git] / MdeModulePkg / Bus / Ata / AtaBusDxe / AtaPassThruExecute.c
1 /** @file
2 This file implements ATA pass through transaction for ATA bus driver.
3
4 This file implements the low level execution of ATA pass through transaction.
5 It transforms the high level identity, read/write, reset command to ATA pass
6 through command and protocol.
7
8 NOTE: This file also implements the StorageSecurityCommandProtocol(SSP). For input
9 parameter SecurityProtocolSpecificData, ATA spec has no explicitly definition
10 for Security Protocol Specific layout. This implementation uses big endian for
11 Cylinder register.
12
13 Copyright (c) 2009 - 2012, Intel Corporation. All rights reserved.<BR>
14 This program and the accompanying materials
15 are licensed and made available under the terms and conditions of the BSD License
16 which accompanies this distribution. The full text of the license may be found at
17 http://opensource.org/licenses/bsd-license.php
18
19 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
20 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
21
22
23 **/
24
25 #include "AtaBus.h"
26
27 #define ATA_CMD_TRUST_NON_DATA 0x5B
28 #define ATA_CMD_TRUST_RECEIVE 0x5C
29 #define ATA_CMD_TRUST_RECEIVE_DMA 0x5D
30 #define ATA_CMD_TRUST_SEND 0x5E
31 #define ATA_CMD_TRUST_SEND_DMA 0x5F
32
33 //
34 // Look up table (UdmaValid, IsWrite) for EFI_ATA_PASS_THRU_CMD_PROTOCOL
35 //
36 EFI_ATA_PASS_THRU_CMD_PROTOCOL mAtaPassThruCmdProtocols[][2] = {
37 {
38 EFI_ATA_PASS_THRU_PROTOCOL_PIO_DATA_IN,
39 EFI_ATA_PASS_THRU_PROTOCOL_PIO_DATA_OUT
40 },
41 {
42 EFI_ATA_PASS_THRU_PROTOCOL_UDMA_DATA_IN,
43 EFI_ATA_PASS_THRU_PROTOCOL_UDMA_DATA_OUT,
44 }
45 };
46
47 //
48 // Look up table (UdmaValid, Lba48Bit, IsIsWrite) for ATA_CMD
49 //
50 UINT8 mAtaCommands[][2][2] = {
51 {
52 {
53 ATA_CMD_READ_SECTORS, // 28-bit LBA; PIO read
54 ATA_CMD_WRITE_SECTORS // 28-bit LBA; PIO write
55 },
56 {
57 ATA_CMD_READ_SECTORS_EXT, // 48-bit LBA; PIO read
58 ATA_CMD_WRITE_SECTORS_EXT // 48-bit LBA; PIO write
59 }
60 },
61 {
62 {
63 ATA_CMD_READ_DMA, // 28-bit LBA; DMA read
64 ATA_CMD_WRITE_DMA // 28-bit LBA; DMA write
65 },
66 {
67 ATA_CMD_READ_DMA_EXT, // 48-bit LBA; DMA read
68 ATA_CMD_WRITE_DMA_EXT // 48-bit LBA; DMA write
69 }
70 }
71 };
72
73 //
74 // Look up table (UdmaValid, IsTrustSend) for ATA_CMD
75 //
76 UINT8 mAtaTrustCommands[2][2] = {
77 {
78 ATA_CMD_TRUST_RECEIVE, // PIO read
79 ATA_CMD_TRUST_SEND // PIO write
80 },
81 {
82 ATA_CMD_TRUST_RECEIVE_DMA, // DMA read
83 ATA_CMD_TRUST_SEND_DMA // DMA write
84 }
85 };
86
87
88 //
89 // Look up table (Lba48Bit) for maximum transfer block number
90 //
91 UINTN mMaxTransferBlockNumber[] = {
92 MAX_28BIT_TRANSFER_BLOCK_NUM,
93 MAX_48BIT_TRANSFER_BLOCK_NUM
94 };
95
96
97 /**
98 Wrapper for EFI_ATA_PASS_THRU_PROTOCOL.PassThru().
99
100 This function wraps the PassThru() invocation for ATA pass through function
101 for an ATA device. It assembles the ATA pass through command packet for ATA
102 transaction.
103
104 @param[in, out] AtaDevice The ATA child device involved for the operation.
105 @param[in, out] TaskPacket Pointer to a Pass Thru Command Packet. Optional,
106 if it is NULL, blocking mode, and use the packet
107 in AtaDevice. If it is not NULL, non blocking mode,
108 and pass down this Packet.
109 @param[in, out] Event If Event is NULL, then blocking I/O is performed.
110 If Event is not NULL and non-blocking I/O is
111 supported,then non-blocking I/O is performed,
112 and Event will be signaled when the write
113 request is completed.
114
115 @return The return status from EFI_ATA_PASS_THRU_PROTOCOL.PassThru().
116
117 **/
118 EFI_STATUS
119 AtaDevicePassThru (
120 IN OUT ATA_DEVICE *AtaDevice,
121 IN OUT EFI_ATA_PASS_THRU_COMMAND_PACKET *TaskPacket, OPTIONAL
122 IN OUT EFI_EVENT Event OPTIONAL
123 )
124 {
125 EFI_STATUS Status;
126 EFI_ATA_PASS_THRU_PROTOCOL *AtaPassThru;
127 EFI_ATA_PASS_THRU_COMMAND_PACKET *Packet;
128
129 //
130 // Assemble packet. If it is non blocking mode, the Ata driver should keep each
131 // subtask and clean them when the event is signaled.
132 //
133 if (TaskPacket != NULL) {
134 Packet = TaskPacket;
135 Packet->Asb = AllocateAlignedBuffer (AtaDevice, sizeof (EFI_ATA_STATUS_BLOCK));
136 if (Packet->Asb == NULL) {
137 return EFI_OUT_OF_RESOURCES;
138 }
139
140 CopyMem (Packet->Asb, AtaDevice->Asb, sizeof (EFI_ATA_STATUS_BLOCK));
141 Packet->Acb = AllocateCopyPool (sizeof (EFI_ATA_COMMAND_BLOCK), &AtaDevice->Acb);
142 } else {
143 Packet = &AtaDevice->Packet;
144 Packet->Asb = AtaDevice->Asb;
145 Packet->Acb = &AtaDevice->Acb;
146 }
147
148 AtaPassThru = AtaDevice->AtaBusDriverData->AtaPassThru;
149
150 Status = AtaPassThru->PassThru (
151 AtaPassThru,
152 AtaDevice->Port,
153 AtaDevice->PortMultiplierPort,
154 Packet,
155 Event
156 );
157 //
158 // Ensure ATA pass through caller and callee have the same
159 // interpretation of ATA pass through protocol.
160 //
161 ASSERT (Status != EFI_INVALID_PARAMETER);
162 ASSERT (Status != EFI_BAD_BUFFER_SIZE);
163
164 return Status;
165 }
166
167
168 /**
169 Wrapper for EFI_ATA_PASS_THRU_PROTOCOL.ResetDevice().
170
171 This function wraps the ResetDevice() invocation for ATA pass through function
172 for an ATA device.
173
174 @param AtaDevice The ATA child device involved for the operation.
175
176 @return The return status from EFI_ATA_PASS_THRU_PROTOCOL.PassThru().
177
178 **/
179 EFI_STATUS
180 ResetAtaDevice (
181 IN ATA_DEVICE *AtaDevice
182 )
183 {
184 EFI_ATA_PASS_THRU_PROTOCOL *AtaPassThru;
185
186 AtaPassThru = AtaDevice->AtaBusDriverData->AtaPassThru;
187
188 //
189 // Report Status Code to indicate reset happens
190 //
191 REPORT_STATUS_CODE_WITH_DEVICE_PATH (
192 EFI_PROGRESS_CODE,
193 (EFI_IO_BUS_ATA_ATAPI | EFI_IOB_PC_RESET),
194 AtaDevice->AtaBusDriverData->ParentDevicePath
195 );
196
197 return AtaPassThru->ResetDevice (
198 AtaPassThru,
199 AtaDevice->Port,
200 AtaDevice->PortMultiplierPort
201 );
202 }
203
204
205 /**
206 Prints ATA model name to ATA device structure.
207
208 This function converts ATA device model name from ATA identify data
209 to a string in ATA device structure. It needs to change the character
210 order in the original model name string.
211
212 @param AtaDevice The ATA child device involved for the operation.
213
214 **/
215 VOID
216 PrintAtaModelName (
217 IN OUT ATA_DEVICE *AtaDevice
218 )
219 {
220 UINTN Index;
221 CHAR8 *Source;
222 CHAR16 *Destination;
223
224 Source = AtaDevice->IdentifyData->ModelName;
225 Destination = AtaDevice->ModelName;
226
227 //
228 // Swap the byte order in the original module name.
229 //
230 for (Index = 0; Index < MAX_MODEL_NAME_LEN; Index += 2) {
231 Destination[Index] = Source[Index + 1];
232 Destination[Index + 1] = Source[Index];
233 }
234 AtaDevice->ModelName[MAX_MODEL_NAME_LEN] = L'\0';
235 }
236
237
238 /**
239 Gets ATA device Capacity according to ATA 6.
240
241 This function returns the capacity of the ATA device if it follows
242 ATA 6 to support 48 bit addressing.
243
244 @param AtaDevice The ATA child device involved for the operation.
245
246 @return The capacity of the ATA device or 0 if the device does not support
247 48-bit addressing defined in ATA 6.
248
249 **/
250 EFI_LBA
251 GetAtapi6Capacity (
252 IN ATA_DEVICE *AtaDevice
253 )
254 {
255 EFI_LBA Capacity;
256 EFI_LBA TmpLba;
257 UINTN Index;
258 ATA_IDENTIFY_DATA *IdentifyData;
259
260 IdentifyData = AtaDevice->IdentifyData;
261 if ((IdentifyData->command_set_supported_83 & BIT10) == 0) {
262 //
263 // The device doesn't support 48 bit addressing
264 //
265 return 0;
266 }
267
268 //
269 // 48 bit address feature set is supported, get maximum capacity
270 //
271 Capacity = 0;
272 for (Index = 0; Index < 4; Index++) {
273 //
274 // Lower byte goes first: word[100] is the lowest word, word[103] is highest
275 //
276 TmpLba = IdentifyData->maximum_lba_for_48bit_addressing[Index];
277 Capacity |= LShiftU64 (TmpLba, 16 * Index);
278 }
279
280 return Capacity;
281 }
282
283
284 /**
285 Identifies ATA device via the Identify data.
286
287 This function identifies the ATA device and initializes the Media information in
288 Block IO protocol interface.
289
290 @param AtaDevice The ATA child device involved for the operation.
291
292 @retval EFI_UNSUPPORTED The device is not a valid ATA device (hard disk).
293 @retval EFI_SUCCESS The device is successfully identified and Media information
294 is correctly initialized.
295
296 **/
297 EFI_STATUS
298 IdentifyAtaDevice (
299 IN OUT ATA_DEVICE *AtaDevice
300 )
301 {
302 ATA_IDENTIFY_DATA *IdentifyData;
303 EFI_BLOCK_IO_MEDIA *BlockMedia;
304 EFI_LBA Capacity;
305 UINT16 PhyLogicSectorSupport;
306 UINT16 UdmaMode;
307
308 IdentifyData = AtaDevice->IdentifyData;
309
310 if ((IdentifyData->config & BIT15) != 0) {
311 //
312 // This is not an hard disk
313 //
314 return EFI_UNSUPPORTED;
315 }
316
317 DEBUG ((EFI_D_INFO, "AtaBus - Identify Device: Port %x PortMultiplierPort %x\n", AtaDevice->Port, AtaDevice->PortMultiplierPort));
318
319 //
320 // Check whether the WORD 88 (supported UltraDMA by drive) is valid
321 //
322 if ((IdentifyData->field_validity & BIT2) != 0) {
323 UdmaMode = IdentifyData->ultra_dma_mode;
324 if ((UdmaMode & (BIT0 | BIT1 | BIT2 | BIT3 | BIT4 | BIT5 | BIT6)) != 0) {
325 //
326 // If BIT0~BIT6 is selected, then UDMA is supported
327 //
328 AtaDevice->UdmaValid = TRUE;
329 }
330 }
331
332 Capacity = GetAtapi6Capacity (AtaDevice);
333 if (Capacity > MAX_28BIT_ADDRESSING_CAPACITY) {
334 //
335 // Capacity exceeds 120GB. 48-bit addressing is really needed
336 //
337 AtaDevice->Lba48Bit = TRUE;
338 } else {
339 //
340 // This is a hard disk <= 120GB capacity, treat it as normal hard disk
341 //
342 Capacity = ((UINT32)IdentifyData->user_addressable_sectors_hi << 16) | IdentifyData->user_addressable_sectors_lo;
343 AtaDevice->Lba48Bit = FALSE;
344 }
345
346 //
347 // Block Media Information:
348 //
349 BlockMedia = &AtaDevice->BlockMedia;
350 BlockMedia->LastBlock = Capacity - 1;
351 BlockMedia->IoAlign = AtaDevice->AtaBusDriverData->AtaPassThru->Mode->IoAlign;
352 //
353 // Check whether Long Physical Sector Feature is supported
354 //
355 PhyLogicSectorSupport = IdentifyData->phy_logic_sector_support;
356 if ((PhyLogicSectorSupport & (BIT14 | BIT15)) == BIT14) {
357 //
358 // Check whether one physical block contains multiple physical blocks
359 //
360 if ((PhyLogicSectorSupport & BIT13) != 0) {
361 BlockMedia->LogicalBlocksPerPhysicalBlock = (UINT32) (1 << (PhyLogicSectorSupport & 0x000f));
362 //
363 // Check lowest alignment of logical blocks within physical block
364 //
365 if ((IdentifyData->alignment_logic_in_phy_blocks & (BIT14 | BIT15)) == BIT14) {
366 BlockMedia->LowestAlignedLba = (EFI_LBA) ((BlockMedia->LogicalBlocksPerPhysicalBlock - ((UINT32)IdentifyData->alignment_logic_in_phy_blocks & 0x3fff)) %
367 BlockMedia->LogicalBlocksPerPhysicalBlock);
368 }
369 }
370 //
371 // Check logical block size
372 //
373 if ((PhyLogicSectorSupport & BIT12) != 0) {
374 BlockMedia->BlockSize = (UINT32) (((IdentifyData->logic_sector_size_hi << 16) | IdentifyData->logic_sector_size_lo) * sizeof (UINT16));
375 }
376 AtaDevice->BlockIo.Revision = EFI_BLOCK_IO_PROTOCOL_REVISION2;
377 }
378 //
379 // Get ATA model name from identify data structure.
380 //
381 PrintAtaModelName (AtaDevice);
382
383 return EFI_SUCCESS;
384 }
385
386
387 /**
388 Discovers whether it is a valid ATA device.
389
390 This function issues ATA_CMD_IDENTIFY_DRIVE command to the ATA device to identify it.
391 If the command is executed successfully, it then identifies it and initializes
392 the Media information in Block IO protocol interface.
393
394 @param AtaDevice The ATA child device involved for the operation.
395
396 @retval EFI_SUCCESS The device is successfully identified and Media information
397 is correctly initialized.
398 @return others Some error occurs when discovering the ATA device.
399
400 **/
401 EFI_STATUS
402 DiscoverAtaDevice (
403 IN OUT ATA_DEVICE *AtaDevice
404 )
405 {
406 EFI_STATUS Status;
407 EFI_ATA_COMMAND_BLOCK *Acb;
408 EFI_ATA_PASS_THRU_COMMAND_PACKET *Packet;
409 UINTN Retry;
410
411 //
412 // Prepare for ATA command block.
413 //
414 Acb = ZeroMem (&AtaDevice->Acb, sizeof (EFI_ATA_COMMAND_BLOCK));
415 Acb->AtaCommand = ATA_CMD_IDENTIFY_DRIVE;
416 Acb->AtaDeviceHead = (UINT8) (BIT7 | BIT6 | BIT5 | (AtaDevice->PortMultiplierPort << 4));
417
418 //
419 // Prepare for ATA pass through packet.
420 //
421 Packet = ZeroMem (&AtaDevice->Packet, sizeof (EFI_ATA_PASS_THRU_COMMAND_PACKET));
422 Packet->InDataBuffer = AtaDevice->IdentifyData;
423 Packet->InTransferLength = sizeof (ATA_IDENTIFY_DATA);
424 Packet->Protocol = EFI_ATA_PASS_THRU_PROTOCOL_PIO_DATA_IN;
425 Packet->Length = EFI_ATA_PASS_THRU_LENGTH_BYTES | EFI_ATA_PASS_THRU_LENGTH_SECTOR_COUNT;
426 Packet->Timeout = ATA_TIMEOUT;
427
428 Retry = MAX_RETRY_TIMES;
429 do {
430 Status = AtaDevicePassThru (AtaDevice, NULL, NULL);
431 if (!EFI_ERROR (Status)) {
432 //
433 // The command is issued successfully
434 //
435 Status = IdentifyAtaDevice (AtaDevice);
436 return Status;
437 }
438 } while (Retry-- > 0);
439
440 return Status;
441 }
442
443 /**
444 Transfer data from ATA device.
445
446 This function performs one ATA pass through transaction to transfer data from/to
447 ATA device. It chooses the appropriate ATA command and protocol to invoke PassThru
448 interface of ATA pass through.
449
450 @param[in, out] AtaDevice The ATA child device involved for the operation.
451 @param[in, out] TaskPacket Pointer to a Pass Thru Command Packet. Optional,
452 if it is NULL, blocking mode, and use the packet
453 in AtaDevice. If it is not NULL, non blocking mode,
454 and pass down this Packet.
455 @param[in, out] Buffer The pointer to the current transaction buffer.
456 @param[in] StartLba The starting logical block address to be accessed.
457 @param[in] TransferLength The block number or sector count of the transfer.
458 @param[in] IsWrite Indicates whether it is a write operation.
459 @param[in] Event If Event is NULL, then blocking I/O is performed.
460 If Event is not NULL and non-blocking I/O is
461 supported,then non-blocking I/O is performed,
462 and Event will be signaled when the write
463 request is completed.
464
465 @retval EFI_SUCCESS The data transfer is complete successfully.
466 @return others Some error occurs when transferring data.
467
468 **/
469 EFI_STATUS
470 TransferAtaDevice (
471 IN OUT ATA_DEVICE *AtaDevice,
472 IN OUT EFI_ATA_PASS_THRU_COMMAND_PACKET *TaskPacket, OPTIONAL
473 IN OUT VOID *Buffer,
474 IN EFI_LBA StartLba,
475 IN UINT32 TransferLength,
476 IN BOOLEAN IsWrite,
477 IN EFI_EVENT Event OPTIONAL
478 )
479 {
480 EFI_ATA_COMMAND_BLOCK *Acb;
481 EFI_ATA_PASS_THRU_COMMAND_PACKET *Packet;
482
483 //
484 // Ensure AtaDevice->UdmaValid, AtaDevice->Lba48Bit and IsWrite are valid boolean values
485 //
486 ASSERT ((UINTN) AtaDevice->UdmaValid < 2);
487 ASSERT ((UINTN) AtaDevice->Lba48Bit < 2);
488 ASSERT ((UINTN) IsWrite < 2);
489 //
490 // Prepare for ATA command block.
491 //
492 Acb = ZeroMem (&AtaDevice->Acb, sizeof (EFI_ATA_COMMAND_BLOCK));
493 Acb->AtaCommand = mAtaCommands[AtaDevice->UdmaValid][AtaDevice->Lba48Bit][IsWrite];
494 Acb->AtaSectorNumber = (UINT8) StartLba;
495 Acb->AtaCylinderLow = (UINT8) RShiftU64 (StartLba, 8);
496 Acb->AtaCylinderHigh = (UINT8) RShiftU64 (StartLba, 16);
497 Acb->AtaDeviceHead = (UINT8) (BIT7 | BIT6 | BIT5 | (AtaDevice->PortMultiplierPort << 4));
498 Acb->AtaSectorCount = (UINT8) TransferLength;
499 if (AtaDevice->Lba48Bit) {
500 Acb->AtaSectorNumberExp = (UINT8) RShiftU64 (StartLba, 24);
501 Acb->AtaCylinderLowExp = (UINT8) RShiftU64 (StartLba, 32);
502 Acb->AtaCylinderHighExp = (UINT8) RShiftU64 (StartLba, 40);
503 Acb->AtaSectorCountExp = (UINT8) (TransferLength >> 8);
504 } else {
505 Acb->AtaDeviceHead = (UINT8) (Acb->AtaDeviceHead | RShiftU64 (StartLba, 24));
506 }
507
508 //
509 // Prepare for ATA pass through packet.
510 //
511 if (TaskPacket != NULL) {
512 Packet = ZeroMem (TaskPacket, sizeof (EFI_ATA_PASS_THRU_COMMAND_PACKET));
513 } else {
514 Packet = ZeroMem (&AtaDevice->Packet, sizeof (EFI_ATA_PASS_THRU_COMMAND_PACKET));
515 }
516
517 if (IsWrite) {
518 Packet->OutDataBuffer = Buffer;
519 Packet->OutTransferLength = TransferLength;
520 } else {
521 Packet->InDataBuffer = Buffer;
522 Packet->InTransferLength = TransferLength;
523 }
524
525 Packet->Protocol = mAtaPassThruCmdProtocols[AtaDevice->UdmaValid][IsWrite];
526 Packet->Length = EFI_ATA_PASS_THRU_LENGTH_SECTOR_COUNT;
527 Packet->Timeout = ATA_TIMEOUT;
528
529 return AtaDevicePassThru (AtaDevice, TaskPacket, Event);
530 }
531
532 /**
533 Free SubTask.
534
535 @param[in, out] Task Pointer to task to be freed.
536
537 **/
538 VOID
539 EFIAPI
540 FreeAtaSubTask (
541 IN OUT ATA_BUS_ASYN_SUB_TASK *Task
542 )
543 {
544 if (Task->Packet.Asb != NULL) {
545 FreeAlignedBuffer (Task->Packet.Asb, sizeof (EFI_ATA_STATUS_BLOCK));
546 }
547 if (Task->Packet.Acb != NULL) {
548 FreePool (Task->Packet.Acb);
549 }
550
551 FreePool (Task);
552 }
553
554 /**
555 Call back funtion when the event is signaled.
556
557 @param[in] Event The Event this notify function registered to.
558 @param[in] Context Pointer to the context data registered to the
559 Event.
560
561 **/
562 VOID
563 EFIAPI
564 AtaNonBlockingCallBack (
565 IN EFI_EVENT Event,
566 IN VOID *Context
567 )
568 {
569 ATA_BUS_ASYN_SUB_TASK *Task;
570 ATA_BUS_ASYN_TASK *AtaTask;
571 ATA_DEVICE *AtaDevice;
572 LIST_ENTRY *Entry;
573 EFI_STATUS Status;
574
575 Task = (ATA_BUS_ASYN_SUB_TASK *) Context;
576 gBS->CloseEvent (Event);
577
578 AtaDevice = Task->AtaDevice;
579
580 //
581 // Check the command status.
582 // If there is error during the sub task source allocation, the error status
583 // should be returned to the caller directly, so here the Task->Token may already
584 // be deleted by the caller and no need to update the status.
585 //
586 if ((!(*Task->IsError)) && ((Task->Packet.Asb->AtaStatus & 0x01) == 0x01)) {
587 Task->Token->TransactionStatus = EFI_DEVICE_ERROR;
588 }
589 DEBUG ((
590 EFI_D_BLKIO,
591 "NON-BLOCKING EVENT FINISHED!- STATUS = %r\n",
592 Task->Token->TransactionStatus
593 ));
594
595 //
596 // Reduce the SubEventCount, till it comes to zero.
597 //
598 (*Task->UnsignalledEventCount) --;
599 DEBUG ((EFI_D_BLKIO, "UnsignalledEventCount = %d\n", *Task->UnsignalledEventCount));
600
601 //
602 // Remove the SubTask from the Task list.
603 //
604 RemoveEntryList (&Task->TaskEntry);
605 if ((*Task->UnsignalledEventCount) == 0) {
606 //
607 // All Sub tasks are done, then signal the upper layer event.
608 // Except there is error during the sub task source allocation.
609 //
610 if (!(*Task->IsError)) {
611 gBS->SignalEvent (Task->Token->Event);
612 DEBUG ((EFI_D_BLKIO, "Signal the upper layer event!\n"));
613 }
614
615 FreePool (Task->UnsignalledEventCount);
616 FreePool (Task->IsError);
617
618
619 //
620 // Finish all subtasks and move to the next task in AtaTaskList.
621 //
622 if (!IsListEmpty (&AtaDevice->AtaTaskList)) {
623 Entry = GetFirstNode (&AtaDevice->AtaTaskList);
624 AtaTask = ATA_AYNS_TASK_FROM_ENTRY (Entry);
625 DEBUG ((EFI_D_BLKIO, "Start to embark a new Ata Task\n"));
626 DEBUG ((EFI_D_BLKIO, "AtaTask->NumberOfBlocks = %x; AtaTask->Token=%x\n", AtaTask->NumberOfBlocks, AtaTask->Token));
627 Status = AccessAtaDevice (
628 AtaTask->AtaDevice,
629 AtaTask->Buffer,
630 AtaTask->StartLba,
631 AtaTask->NumberOfBlocks,
632 AtaTask->IsWrite,
633 AtaTask->Token
634 );
635 if (EFI_ERROR (Status)) {
636 AtaTask->Token->TransactionStatus = Status;
637 gBS->SignalEvent (AtaTask->Token->Event);
638 }
639 RemoveEntryList (Entry);
640 FreePool (AtaTask);
641 }
642 }
643
644 DEBUG ((
645 EFI_D_BLKIO,
646 "PACKET INFO: Write=%s, Length=%x, LowCylinder=%x, HighCylinder=%x, SectionNumber=%x\n",
647 Task->Packet.OutDataBuffer != NULL ? L"YES" : L"NO",
648 Task->Packet.OutDataBuffer != NULL ? Task->Packet.OutTransferLength : Task->Packet.InTransferLength,
649 Task->Packet.Acb->AtaCylinderLow,
650 Task->Packet.Acb->AtaCylinderHigh,
651 Task->Packet.Acb->AtaSectorCount
652 ));
653
654 //
655 // Free the buffer of SubTask.
656 //
657 FreeAtaSubTask (Task);
658 }
659
660 /**
661 Read or write a number of blocks from ATA device.
662
663 This function performs ATA pass through transactions to read/write data from/to
664 ATA device. It may separate the read/write request into several ATA pass through
665 transactions.
666
667 @param[in, out] AtaDevice The ATA child device involved for the operation.
668 @param[in, out] Buffer The pointer to the current transaction buffer.
669 @param[in] StartLba The starting logical block address to be accessed.
670 @param[in] NumberOfBlocks The block number or sector count of the transfer.
671 @param[in] IsWrite Indicates whether it is a write operation.
672 @param[in, out] Token A pointer to the token associated with the transaction.
673
674 @retval EFI_SUCCESS The data transfer is complete successfully.
675 @return others Some error occurs when transferring data.
676
677 **/
678 EFI_STATUS
679 AccessAtaDevice(
680 IN OUT ATA_DEVICE *AtaDevice,
681 IN OUT UINT8 *Buffer,
682 IN EFI_LBA StartLba,
683 IN UINTN NumberOfBlocks,
684 IN BOOLEAN IsWrite,
685 IN OUT EFI_BLOCK_IO2_TOKEN *Token
686 )
687 {
688 EFI_STATUS Status;
689 UINTN MaxTransferBlockNumber;
690 UINTN TransferBlockNumber;
691 UINTN BlockSize;
692 ATA_BUS_ASYN_SUB_TASK *SubTask;
693 UINTN *EventCount;
694 UINTN TempCount;
695 ATA_BUS_ASYN_TASK *AtaTask;
696 EFI_EVENT SubEvent;
697 UINTN Index;
698 BOOLEAN *IsError;
699 EFI_TPL OldTpl;
700
701 TempCount = 0;
702 Status = EFI_SUCCESS;
703 EventCount = NULL;
704 IsError = NULL;
705 Index = 0;
706 SubTask = NULL;
707 SubEvent = NULL;
708 AtaTask = NULL;
709
710 //
711 // Ensure AtaDevice->Lba48Bit is a valid boolean value
712 //
713 ASSERT ((UINTN) AtaDevice->Lba48Bit < 2);
714 MaxTransferBlockNumber = mMaxTransferBlockNumber[AtaDevice->Lba48Bit];
715 BlockSize = AtaDevice->BlockMedia.BlockSize;
716
717 //
718 // Initial the return status and shared account for Non Blocking.
719 //
720 if ((Token != NULL) && (Token->Event != NULL)) {
721 OldTpl = gBS->RaiseTPL (TPL_NOTIFY);
722 if (!IsListEmpty (&AtaDevice->AtaSubTaskList)) {
723 AtaTask = AllocateZeroPool (sizeof (ATA_BUS_ASYN_TASK));
724 if (AtaTask == NULL) {
725 gBS->RestoreTPL (OldTpl);
726 return EFI_OUT_OF_RESOURCES;
727 }
728 AtaTask->AtaDevice = AtaDevice;
729 AtaTask->Buffer = Buffer;
730 AtaTask->IsWrite = IsWrite;
731 AtaTask->NumberOfBlocks = NumberOfBlocks;
732 AtaTask->Signature = ATA_TASK_SIGNATURE;
733 AtaTask->StartLba = StartLba;
734 AtaTask->Token = Token;
735
736 InsertTailList (&AtaDevice->AtaTaskList, &AtaTask->TaskEntry);
737 gBS->RestoreTPL (OldTpl);
738 return EFI_SUCCESS;
739 }
740 gBS->RestoreTPL (OldTpl);
741
742 Token->TransactionStatus = EFI_SUCCESS;
743 EventCount = AllocateZeroPool (sizeof (UINTN));
744 if (EventCount == NULL) {
745 return EFI_OUT_OF_RESOURCES;
746 }
747
748 IsError = AllocateZeroPool (sizeof (BOOLEAN));
749 if (IsError == NULL) {
750 FreePool (EventCount);
751 return EFI_OUT_OF_RESOURCES;
752 }
753 DEBUG ((EFI_D_BLKIO, "Allocation IsError Addr=%x\n", IsError));
754 *IsError = FALSE;
755 TempCount = (NumberOfBlocks + MaxTransferBlockNumber - 1) / MaxTransferBlockNumber;
756 *EventCount = TempCount;
757 DEBUG ((EFI_D_BLKIO, "AccessAtaDevice, NumberOfBlocks=%x\n", NumberOfBlocks));
758 DEBUG ((EFI_D_BLKIO, "AccessAtaDevice, MaxTransferBlockNumber=%x\n", MaxTransferBlockNumber));
759 DEBUG ((EFI_D_BLKIO, "AccessAtaDevice, EventCount=%x\n", TempCount));
760 }else {
761 while (!IsListEmpty (&AtaDevice->AtaTaskList) || !IsListEmpty (&AtaDevice->AtaSubTaskList)) {
762 //
763 // Stall for 100us.
764 //
765 MicroSecondDelay (100);
766 }
767 }
768
769 do {
770 if (NumberOfBlocks > MaxTransferBlockNumber) {
771 TransferBlockNumber = MaxTransferBlockNumber;
772 NumberOfBlocks -= MaxTransferBlockNumber;
773 } else {
774 TransferBlockNumber = NumberOfBlocks;
775 NumberOfBlocks = 0;
776 }
777
778 //
779 // Create sub event for the sub ata task. Non-blocking mode.
780 //
781 if ((Token != NULL) && (Token->Event != NULL)) {
782 SubTask = NULL;
783 SubEvent = NULL;
784
785 SubTask = AllocateZeroPool (sizeof (ATA_BUS_ASYN_SUB_TASK));
786 if (SubTask == NULL) {
787 Status = EFI_OUT_OF_RESOURCES;
788 goto EXIT;
789 }
790
791 OldTpl = gBS->RaiseTPL (TPL_NOTIFY);
792 SubTask->UnsignalledEventCount = EventCount;
793 SubTask->Signature = ATA_SUB_TASK_SIGNATURE;
794 SubTask->AtaDevice = AtaDevice;
795 SubTask->Token = Token;
796 SubTask->IsError = IsError;
797 InsertTailList (&AtaDevice->AtaSubTaskList, &SubTask->TaskEntry);
798 gBS->RestoreTPL (OldTpl);
799
800 Status = gBS->CreateEvent (
801 EVT_NOTIFY_SIGNAL,
802 TPL_NOTIFY,
803 AtaNonBlockingCallBack,
804 SubTask,
805 &SubEvent
806 );
807 //
808 // If resource allocation fail, the un-signalled event count should equal to
809 // the original one minus the unassigned subtasks number.
810 //
811 if (EFI_ERROR (Status)) {
812 Status = EFI_OUT_OF_RESOURCES;
813 goto EXIT;
814 }
815
816 Status = TransferAtaDevice (AtaDevice, &SubTask->Packet, Buffer, StartLba, (UINT32) TransferBlockNumber, IsWrite, SubEvent);
817 } else {
818 //
819 // Blocking Mode.
820 //
821 DEBUG ((EFI_D_BLKIO, "Blocking AccessAtaDevice, TransferBlockNumber=%x; StartLba = %x\n", TransferBlockNumber, StartLba));
822 Status = TransferAtaDevice (AtaDevice, NULL, Buffer, StartLba, (UINT32) TransferBlockNumber, IsWrite, NULL);
823 }
824
825 if (EFI_ERROR (Status)) {
826 goto EXIT;
827 }
828
829 Index++;
830 StartLba += TransferBlockNumber;
831 Buffer += TransferBlockNumber * BlockSize;
832 } while (NumberOfBlocks > 0);
833
834 EXIT:
835 if ((Token != NULL) && (Token->Event != NULL)) {
836 //
837 // Release resource at non-blocking mode.
838 //
839 if (EFI_ERROR (Status)) {
840 OldTpl = gBS->RaiseTPL (TPL_NOTIFY);
841 Token->TransactionStatus = Status;
842 *EventCount = (*EventCount) - (TempCount - Index);
843 *IsError = TRUE;
844
845 if (*EventCount == 0) {
846 FreePool (EventCount);
847 FreePool (IsError);
848 }
849
850 if (SubTask != NULL) {
851 RemoveEntryList (&SubTask->TaskEntry);
852 FreeAtaSubTask (SubTask);
853 }
854
855 if (SubEvent != NULL) {
856 gBS->CloseEvent (SubEvent);
857 }
858 gBS->RestoreTPL (OldTpl);
859 }
860 }
861
862 return Status;
863 }
864
865 /**
866 Trust transfer data from/to ATA device.
867
868 This function performs one ATA pass through transaction to do a trust transfer from/to
869 ATA device. It chooses the appropriate ATA command and protocol to invoke PassThru
870 interface of ATA pass through.
871
872 @param AtaDevice The ATA child device involved for the operation.
873 @param Buffer The pointer to the current transaction buffer.
874 @param SecurityProtocolId The value of the "Security Protocol" parameter of
875 the security protocol command to be sent.
876 @param SecurityProtocolSpecificData The value of the "Security Protocol Specific" parameter
877 of the security protocol command to be sent.
878 @param TransferLength The block number or sector count of the transfer.
879 @param IsTrustSend Indicates whether it is a trust send operation or not.
880 @param Timeout The timeout, in 100ns units, to use for the execution
881 of the security protocol command. A Timeout value of 0
882 means that this function will wait indefinitely for the
883 security protocol command to execute. If Timeout is greater
884 than zero, then this function will return EFI_TIMEOUT
885 if the time required to execute the receive data command
886 is greater than Timeout.
887 @param TransferLengthOut A pointer to a buffer to store the size in bytes of the data
888 written to the buffer. Ignore it when IsTrustSend is TRUE.
889
890 @retval EFI_SUCCESS The data transfer is complete successfully.
891 @return others Some error occurs when transferring data.
892
893 **/
894 EFI_STATUS
895 EFIAPI
896 TrustTransferAtaDevice (
897 IN OUT ATA_DEVICE *AtaDevice,
898 IN OUT VOID *Buffer,
899 IN UINT8 SecurityProtocolId,
900 IN UINT16 SecurityProtocolSpecificData,
901 IN UINTN TransferLength,
902 IN BOOLEAN IsTrustSend,
903 IN UINT64 Timeout,
904 OUT UINTN *TransferLengthOut
905 )
906 {
907 EFI_ATA_COMMAND_BLOCK *Acb;
908 EFI_ATA_PASS_THRU_COMMAND_PACKET *Packet;
909 EFI_STATUS Status;
910 VOID *NewBuffer;
911 EFI_ATA_PASS_THRU_PROTOCOL *AtaPassThru;
912
913 //
914 // Ensure AtaDevice->UdmaValid and IsTrustSend are valid boolean values
915 //
916 ASSERT ((UINTN) AtaDevice->UdmaValid < 2);
917 ASSERT ((UINTN) IsTrustSend < 2);
918 //
919 // Prepare for ATA command block.
920 //
921 Acb = ZeroMem (&AtaDevice->Acb, sizeof (EFI_ATA_COMMAND_BLOCK));
922 if (TransferLength == 0) {
923 Acb->AtaCommand = ATA_CMD_TRUST_NON_DATA;
924 } else {
925 Acb->AtaCommand = mAtaTrustCommands[AtaDevice->UdmaValid][IsTrustSend];
926 }
927 Acb->AtaFeatures = SecurityProtocolId;
928 Acb->AtaSectorCount = (UINT8) (TransferLength / 512);
929 Acb->AtaSectorNumber = (UINT8) ((TransferLength / 512) >> 8);
930 //
931 // NOTE: ATA Spec has no explicitly definition for Security Protocol Specific layout.
932 // Here use big endian for Cylinder register.
933 //
934 Acb->AtaCylinderHigh = (UINT8) SecurityProtocolSpecificData;
935 Acb->AtaCylinderLow = (UINT8) (SecurityProtocolSpecificData >> 8);
936 Acb->AtaDeviceHead = (UINT8) (BIT7 | BIT6 | BIT5 | (AtaDevice->PortMultiplierPort << 4));
937
938 //
939 // Prepare for ATA pass through packet.
940 //
941 Packet = ZeroMem (&AtaDevice->Packet, sizeof (EFI_ATA_PASS_THRU_COMMAND_PACKET));
942 if (TransferLength == 0) {
943 Packet->InTransferLength = 0;
944 Packet->OutTransferLength = 0;
945 Packet->Protocol = EFI_ATA_PASS_THRU_PROTOCOL_ATA_NON_DATA;
946 } else if (IsTrustSend) {
947 //
948 // Check the alignment of the incoming buffer prior to invoking underlying ATA PassThru
949 //
950 AtaPassThru = AtaDevice->AtaBusDriverData->AtaPassThru;
951 if ((AtaPassThru->Mode->IoAlign > 1) && !IS_ALIGNED (Buffer, AtaPassThru->Mode->IoAlign)) {
952 NewBuffer = AllocateAlignedBuffer (AtaDevice, TransferLength);
953 if (NewBuffer == NULL) {
954 return EFI_OUT_OF_RESOURCES;
955 }
956
957 CopyMem (NewBuffer, Buffer, TransferLength);
958 FreePool (Buffer);
959 Buffer = NewBuffer;
960 }
961 Packet->OutDataBuffer = Buffer;
962 Packet->OutTransferLength = (UINT32) TransferLength;
963 Packet->Protocol = mAtaPassThruCmdProtocols[AtaDevice->UdmaValid][IsTrustSend];
964 } else {
965 Packet->InDataBuffer = Buffer;
966 Packet->InTransferLength = (UINT32) TransferLength;
967 Packet->Protocol = mAtaPassThruCmdProtocols[AtaDevice->UdmaValid][IsTrustSend];
968 }
969 Packet->Length = EFI_ATA_PASS_THRU_LENGTH_BYTES;
970 Packet->Timeout = Timeout;
971
972 Status = AtaDevicePassThru (AtaDevice, NULL, NULL);
973 if (TransferLengthOut != NULL) {
974 if (! IsTrustSend) {
975 *TransferLengthOut = Packet->InTransferLength;
976 }
977 }
978 return Status;
979 }