]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassBoot.c
MdeModulePkg/UsbMassStorageDxe: Enhance Request Sense Handling
[mirror_edk2.git] / MdeModulePkg / Bus / Usb / UsbMassStorageDxe / UsbMassBoot.c
... / ...
CommitLineData
1/** @file\r
2 Implementation of the command set of USB Mass Storage Specification\r
3 for Bootability, Revision 1.0.\r
4\r
5Copyright (c) 2007 - 2017, Intel Corporation. All rights reserved.<BR>\r
6This program and the accompanying materials\r
7are licensed and made available under the terms and conditions of the BSD License\r
8which accompanies this distribution. The full text of the license may be found at\r
9http://opensource.org/licenses/bsd-license.php\r
10\r
11THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
14**/\r
15\r
16#include "UsbMass.h"\r
17\r
18/**\r
19 Execute REQUEST SENSE Command to retrieve sense data from device.\r
20\r
21 @param UsbMass The device whose sense data is requested.\r
22\r
23 @retval EFI_SUCCESS The command is executed successfully.\r
24 @retval EFI_DEVICE_ERROR Failed to request sense.\r
25 @retval EFI_NO_RESPONSE The device media doesn't response this request.\r
26 @retval EFI_INVALID_PARAMETER The command has some invalid parameters.\r
27 @retval EFI_WRITE_PROTECTED The device is write protected.\r
28 @retval EFI_MEDIA_CHANGED The device media has been changed.\r
29\r
30**/\r
31EFI_STATUS\r
32UsbBootRequestSense (\r
33 IN USB_MASS_DEVICE *UsbMass\r
34 )\r
35{\r
36 USB_BOOT_REQUEST_SENSE_CMD SenseCmd;\r
37 USB_BOOT_REQUEST_SENSE_DATA SenseData;\r
38 EFI_BLOCK_IO_MEDIA *Media;\r
39 USB_MASS_TRANSPORT *Transport;\r
40 EFI_STATUS Status;\r
41 UINT32 CmdResult;\r
42\r
43 Transport = UsbMass->Transport;\r
44\r
45 //\r
46 // Request the sense data from the device\r
47 //\r
48 ZeroMem (&SenseCmd, sizeof (USB_BOOT_REQUEST_SENSE_CMD));\r
49 ZeroMem (&SenseData, sizeof (USB_BOOT_REQUEST_SENSE_DATA));\r
50\r
51 SenseCmd.OpCode = USB_BOOT_REQUEST_SENSE_OPCODE;\r
52 SenseCmd.Lun = (UINT8) (USB_BOOT_LUN (UsbMass->Lun));\r
53 SenseCmd.AllocLen = (UINT8) sizeof (USB_BOOT_REQUEST_SENSE_DATA);\r
54\r
55 Status = Transport->ExecCommand (\r
56 UsbMass->Context,\r
57 &SenseCmd,\r
58 sizeof (USB_BOOT_REQUEST_SENSE_CMD),\r
59 EfiUsbDataIn,\r
60 &SenseData,\r
61 sizeof (USB_BOOT_REQUEST_SENSE_DATA),\r
62 UsbMass->Lun,\r
63 USB_BOOT_GENERAL_CMD_TIMEOUT,\r
64 &CmdResult\r
65 );\r
66 if (EFI_ERROR (Status) || CmdResult != USB_MASS_CMD_SUCCESS) {\r
67 DEBUG ((EFI_D_ERROR, "UsbBootRequestSense: (%r) CmdResult=0x%x\n", Status, CmdResult));\r
68 if (!EFI_ERROR (Status)) {\r
69 Status = EFI_DEVICE_ERROR;\r
70 }\r
71 return Status;\r
72 }\r
73\r
74 //\r
75 // If sense data is retrieved successfully, interpret the sense data\r
76 // and update the media status if necessary.\r
77 //\r
78 Media = &UsbMass->BlockIoMedia;\r
79\r
80 switch (USB_BOOT_SENSE_KEY (SenseData.SenseKey)) {\r
81\r
82 case USB_BOOT_SENSE_NO_SENSE:\r
83 if (SenseData.Asc == USB_BOOT_ASC_NO_ADDITIONAL_SENSE_INFORMATION) {\r
84 //\r
85 // It is not an error if a device does not have additional sense information\r
86 //\r
87 Status = EFI_SUCCESS;\r
88 } else {\r
89 Status = EFI_NO_RESPONSE;\r
90 }\r
91 break;\r
92\r
93 case USB_BOOT_SENSE_RECOVERED:\r
94 //\r
95 // Suppose hardware can handle this case, and recover later by itself\r
96 //\r
97 Status = EFI_NOT_READY;\r
98 break;\r
99\r
100 case USB_BOOT_SENSE_NOT_READY:\r
101 Status = EFI_DEVICE_ERROR;\r
102 if (SenseData.Asc == USB_BOOT_ASC_NO_MEDIA) {\r
103 Media->MediaPresent = FALSE;\r
104 Status = EFI_NO_MEDIA;\r
105 } else if (SenseData.Asc == USB_BOOT_ASC_NOT_READY) {\r
106 Status = EFI_NOT_READY;\r
107 }\r
108 break;\r
109\r
110 case USB_BOOT_SENSE_ILLEGAL_REQUEST:\r
111 Status = EFI_INVALID_PARAMETER;\r
112 break;\r
113\r
114 case USB_BOOT_SENSE_UNIT_ATTENTION:\r
115 Status = EFI_DEVICE_ERROR;\r
116 if (SenseData.Asc == USB_BOOT_ASC_MEDIA_CHANGE) {\r
117 //\r
118 // If MediaChange, reset ReadOnly and new MediaId\r
119 //\r
120 Status = EFI_MEDIA_CHANGED;\r
121 Media->ReadOnly = FALSE;\r
122 Media->MediaId++;\r
123 } else if (SenseData.Asc == USB_BOOT_ASC_NOT_READY) {\r
124 Status = EFI_NOT_READY;\r
125 } else if (SenseData.Asc == USB_BOOT_ASC_NO_MEDIA) {\r
126 Status = EFI_NOT_READY;\r
127 }\r
128 break;\r
129\r
130 case USB_BOOT_SENSE_DATA_PROTECT:\r
131 Status = EFI_WRITE_PROTECTED;\r
132 Media->ReadOnly = TRUE;\r
133 break;\r
134\r
135 default:\r
136 Status = EFI_DEVICE_ERROR;\r
137 break;\r
138 }\r
139\r
140 DEBUG ((EFI_D_INFO, "UsbBootRequestSense: (%r) with sense key %x/%x/%x\n",\r
141 Status,\r
142 USB_BOOT_SENSE_KEY (SenseData.SenseKey),\r
143 SenseData.Asc,\r
144 SenseData.Ascq\r
145 ));\r
146\r
147 return Status;\r
148}\r
149\r
150\r
151/**\r
152 Execute the USB mass storage bootability commands.\r
153\r
154 This function executes the USB mass storage bootability commands.\r
155 If execution failed, retrieve the error by REQUEST_SENSE, then\r
156 update the device's status, such as ReadyOnly.\r
157\r
158 @param UsbMass The device to issue commands to\r
159 @param Cmd The command to execute\r
160 @param CmdLen The length of the command\r
161 @param DataDir The direction of data transfer\r
162 @param Data The buffer to hold the data\r
163 @param DataLen The length of expected data\r
164 @param Timeout The timeout used to transfer\r
165\r
166 @retval EFI_SUCCESS Command is executed successfully\r
167 @retval Others Command execution failed.\r
168\r
169**/\r
170EFI_STATUS\r
171UsbBootExecCmd (\r
172 IN USB_MASS_DEVICE *UsbMass,\r
173 IN VOID *Cmd,\r
174 IN UINT8 CmdLen,\r
175 IN EFI_USB_DATA_DIRECTION DataDir,\r
176 IN VOID *Data,\r
177 IN UINT32 DataLen,\r
178 IN UINT32 Timeout\r
179 )\r
180{\r
181 USB_MASS_TRANSPORT *Transport;\r
182 EFI_STATUS Status;\r
183 UINT32 CmdResult;\r
184\r
185 Transport = UsbMass->Transport;\r
186 Status = Transport->ExecCommand (\r
187 UsbMass->Context,\r
188 Cmd,\r
189 CmdLen,\r
190 DataDir,\r
191 Data,\r
192 DataLen,\r
193 UsbMass->Lun,\r
194 Timeout,\r
195 &CmdResult\r
196 );\r
197\r
198 if (Status == EFI_TIMEOUT) {\r
199 DEBUG ((EFI_D_ERROR, "UsbBootExecCmd: Timeout to Exec 0x%x Cmd\n", *(UINT8 *)Cmd));\r
200 return EFI_TIMEOUT;\r
201 }\r
202\r
203 //\r
204 // If ExecCommand() returns no error and CmdResult is success,\r
205 // then the commnad transfer is successful.\r
206 //\r
207 if ((CmdResult == USB_MASS_CMD_SUCCESS) && !EFI_ERROR (Status)) {\r
208 return EFI_SUCCESS;\r
209 }\r
210\r
211 //\r
212 // If command execution failed, then retrieve error info via sense request.\r
213 //\r
214 return UsbBootRequestSense (UsbMass);\r
215}\r
216\r
217\r
218/**\r
219 Execute the USB mass storage bootability commands with retrial.\r
220\r
221 This function executes USB mass storage bootability commands.\r
222 If the device isn't ready, wait for it. If the device is ready\r
223 and error occurs, retry the command again until it exceeds the\r
224 limit of retrial times.\r
225 \r
226 @param UsbMass The device to issue commands to\r
227 @param Cmd The command to execute\r
228 @param CmdLen The length of the command\r
229 @param DataDir The direction of data transfer\r
230 @param Data The buffer to hold the data\r
231 @param DataLen The length of expected data\r
232 @param Timeout The timeout used to transfer\r
233\r
234 @retval EFI_SUCCESS The command is executed successfully.\r
235 @retval EFI_MEDIA_CHANGED The device media has been changed.\r
236 @retval Others Command execution failed after retrial.\r
237\r
238**/\r
239EFI_STATUS\r
240UsbBootExecCmdWithRetry (\r
241 IN USB_MASS_DEVICE *UsbMass,\r
242 IN VOID *Cmd,\r
243 IN UINT8 CmdLen,\r
244 IN EFI_USB_DATA_DIRECTION DataDir,\r
245 IN VOID *Data,\r
246 IN UINT32 DataLen,\r
247 IN UINT32 Timeout\r
248 )\r
249{\r
250 EFI_STATUS Status;\r
251 UINTN Retry;\r
252 EFI_EVENT TimeoutEvt;\r
253\r
254 Retry = 0;\r
255 Status = EFI_SUCCESS;\r
256 Status = gBS->CreateEvent (\r
257 EVT_TIMER,\r
258 TPL_CALLBACK,\r
259 NULL,\r
260 NULL,\r
261 &TimeoutEvt\r
262 );\r
263 if (EFI_ERROR (Status)) {\r
264 return Status;\r
265 }\r
266\r
267 Status = gBS->SetTimer (TimeoutEvt, TimerRelative, EFI_TIMER_PERIOD_SECONDS(60));\r
268 if (EFI_ERROR (Status)) {\r
269 goto EXIT;\r
270 }\r
271\r
272 //\r
273 // Execute the cmd and retry if it fails.\r
274 //\r
275 while (EFI_ERROR (gBS->CheckEvent (TimeoutEvt))) {\r
276 Status = UsbBootExecCmd (\r
277 UsbMass,\r
278 Cmd,\r
279 CmdLen,\r
280 DataDir,\r
281 Data,\r
282 DataLen,\r
283 Timeout\r
284 );\r
285 if (Status == EFI_SUCCESS || Status == EFI_MEDIA_CHANGED || Status == EFI_NO_MEDIA) {\r
286 break;\r
287 }\r
288 //\r
289 // If the sense data shows the drive is not ready, we need execute the cmd again.\r
290 // We limit the upper boundary to 60 seconds.\r
291 //\r
292 if (Status == EFI_NOT_READY) {\r
293 continue;\r
294 }\r
295 //\r
296 // If the status is other error, then just retry 5 times.\r
297 //\r
298 if (Retry++ >= USB_BOOT_COMMAND_RETRY) {\r
299 break;\r
300 }\r
301 }\r
302\r
303EXIT:\r
304 if (TimeoutEvt != NULL) {\r
305 gBS->CloseEvent (TimeoutEvt);\r
306 }\r
307\r
308 return Status;\r
309}\r
310\r
311\r
312/**\r
313 Execute TEST UNIT READY command to check if the device is ready.\r
314\r
315 @param UsbMass The device to test\r
316\r
317 @retval EFI_SUCCESS The device is ready.\r
318 @retval Others Device not ready.\r
319\r
320**/\r
321EFI_STATUS\r
322UsbBootIsUnitReady (\r
323 IN USB_MASS_DEVICE *UsbMass\r
324 )\r
325{\r
326 USB_BOOT_TEST_UNIT_READY_CMD TestCmd;\r
327\r
328 ZeroMem (&TestCmd, sizeof (USB_BOOT_TEST_UNIT_READY_CMD));\r
329\r
330 TestCmd.OpCode = USB_BOOT_TEST_UNIT_READY_OPCODE;\r
331 TestCmd.Lun = (UINT8) (USB_BOOT_LUN (UsbMass->Lun));\r
332\r
333 return UsbBootExecCmdWithRetry (\r
334 UsbMass,\r
335 &TestCmd,\r
336 (UINT8) sizeof (USB_BOOT_TEST_UNIT_READY_CMD),\r
337 EfiUsbNoData,\r
338 NULL,\r
339 0,\r
340 USB_BOOT_GENERAL_CMD_TIMEOUT\r
341 );\r
342}\r
343\r
344\r
345/**\r
346 Execute INQUIRY Command to request information regarding parameters of\r
347 the device be sent to the host computer.\r
348\r
349 @param UsbMass The device to inquire.\r
350\r
351 @retval EFI_SUCCESS INQUIRY Command is executed successfully.\r
352 @retval Others INQUIRY Command is not executed successfully.\r
353\r
354**/\r
355EFI_STATUS\r
356UsbBootInquiry (\r
357 IN USB_MASS_DEVICE *UsbMass\r
358 )\r
359{\r
360 USB_BOOT_INQUIRY_CMD InquiryCmd;\r
361 EFI_BLOCK_IO_MEDIA *Media;\r
362 EFI_STATUS Status;\r
363\r
364 Media = &(UsbMass->BlockIoMedia);\r
365\r
366 ZeroMem (&InquiryCmd, sizeof (USB_BOOT_INQUIRY_CMD));\r
367 ZeroMem (&UsbMass->InquiryData, sizeof (USB_BOOT_INQUIRY_DATA));\r
368\r
369 InquiryCmd.OpCode = USB_BOOT_INQUIRY_OPCODE;\r
370 InquiryCmd.Lun = (UINT8) (USB_BOOT_LUN (UsbMass->Lun));\r
371 InquiryCmd.AllocLen = (UINT8) sizeof (USB_BOOT_INQUIRY_DATA);\r
372\r
373 Status = UsbBootExecCmdWithRetry (\r
374 UsbMass,\r
375 &InquiryCmd,\r
376 (UINT8) sizeof (USB_BOOT_INQUIRY_CMD),\r
377 EfiUsbDataIn,\r
378 &UsbMass->InquiryData,\r
379 sizeof (USB_BOOT_INQUIRY_DATA),\r
380 USB_BOOT_GENERAL_CMD_TIMEOUT\r
381 );\r
382 if (EFI_ERROR (Status)) {\r
383 return Status;\r
384 }\r
385\r
386 //\r
387 // Get information from PDT (Peripheral Device Type) field and Removable Medium Bit\r
388 // from the inquiry data.\r
389 //\r
390 UsbMass->Pdt = (UINT8) (USB_BOOT_PDT (UsbMass->InquiryData.Pdt));\r
391 Media->RemovableMedia = (BOOLEAN) (USB_BOOT_REMOVABLE (UsbMass->InquiryData.Removable));\r
392 //\r
393 // Set block size to the default value of 512 Bytes, in case no media is present at first time.\r
394 //\r
395 Media->BlockSize = 0x0200;\r
396\r
397 return Status;\r
398}\r
399\r
400/**\r
401 Execute READ CAPACITY 16 bytes command to request information regarding\r
402 the capacity of the installed medium of the device.\r
403\r
404 This function executes READ CAPACITY 16 bytes command to get the capacity\r
405 of the USB mass storage media, including the presence, block size,\r
406 and last block number.\r
407\r
408 @param UsbMass The device to retireve disk gemotric.\r
409\r
410 @retval EFI_SUCCESS The disk geometry is successfully retrieved.\r
411 @retval EFI_NOT_READY The returned block size is zero.\r
412 @retval Other READ CAPACITY 16 bytes command execution failed.\r
413 \r
414**/\r
415EFI_STATUS\r
416UsbBootReadCapacity16 (\r
417 IN USB_MASS_DEVICE *UsbMass\r
418 )\r
419{\r
420 UINT8 CapacityCmd[16];\r
421 EFI_SCSI_DISK_CAPACITY_DATA16 CapacityData;\r
422 EFI_BLOCK_IO_MEDIA *Media;\r
423 EFI_STATUS Status;\r
424 UINT32 BlockSize;\r
425\r
426 Media = &UsbMass->BlockIoMedia;\r
427\r
428 Media->MediaPresent = FALSE;\r
429 Media->LastBlock = 0;\r
430 Media->BlockSize = 0;\r
431\r
432 ZeroMem (CapacityCmd, sizeof (CapacityCmd));\r
433 ZeroMem (&CapacityData, sizeof (CapacityData));\r
434\r
435 CapacityCmd[0] = EFI_SCSI_OP_READ_CAPACITY16;\r
436 CapacityCmd[1] = 0x10;\r
437 //\r
438 // Partial medium indicator, set the bytes 2 ~ 9 of the Cdb as ZERO.\r
439 //\r
440 ZeroMem ((CapacityCmd + 2), 8);\r
441\r
442 CapacityCmd[13] = sizeof (CapacityData);\r
443 \r
444 Status = UsbBootExecCmdWithRetry (\r
445 UsbMass,\r
446 CapacityCmd,\r
447 (UINT8) sizeof (CapacityCmd),\r
448 EfiUsbDataIn,\r
449 &CapacityData,\r
450 sizeof (CapacityData),\r
451 USB_BOOT_GENERAL_CMD_TIMEOUT\r
452 );\r
453 if (EFI_ERROR (Status)) {\r
454 return Status;\r
455 }\r
456\r
457 //\r
458 // Get the information on media presence, block size, and last block number\r
459 // from READ CAPACITY data.\r
460 //\r
461 Media->MediaPresent = TRUE;\r
462 Media->LastBlock = SwapBytes64 (ReadUnaligned64 ((CONST UINT64 *) &(CapacityData.LastLba7)));\r
463\r
464 BlockSize = SwapBytes32 (ReadUnaligned32 ((CONST UINT32 *) &(CapacityData.BlockSize3)));\r
465 \r
466 Media->LowestAlignedLba = (CapacityData.LowestAlignLogic2 << 8) |\r
467 CapacityData.LowestAlignLogic1;\r
468 Media->LogicalBlocksPerPhysicalBlock = (1 << CapacityData.LogicPerPhysical);\r
469 if (BlockSize == 0) {\r
470 //\r
471 // Get sense data \r
472 //\r
473 return UsbBootRequestSense (UsbMass);\r
474 } else {\r
475 Media->BlockSize = BlockSize;\r
476 }\r
477\r
478 return Status;\r
479}\r
480\r
481\r
482/**\r
483 Execute READ CAPACITY command to request information regarding\r
484 the capacity of the installed medium of the device.\r
485\r
486 This function executes READ CAPACITY command to get the capacity\r
487 of the USB mass storage media, including the presence, block size,\r
488 and last block number.\r
489\r
490 @param UsbMass The device to retireve disk gemotric.\r
491\r
492 @retval EFI_SUCCESS The disk geometry is successfully retrieved.\r
493 @retval EFI_NOT_READY The returned block size is zero.\r
494 @retval Other READ CAPACITY command execution failed.\r
495 \r
496**/\r
497EFI_STATUS\r
498UsbBootReadCapacity (\r
499 IN USB_MASS_DEVICE *UsbMass\r
500 )\r
501{\r
502 USB_BOOT_READ_CAPACITY_CMD CapacityCmd;\r
503 USB_BOOT_READ_CAPACITY_DATA CapacityData;\r
504 EFI_BLOCK_IO_MEDIA *Media;\r
505 EFI_STATUS Status;\r
506 UINT32 BlockSize;\r
507\r
508 Media = &UsbMass->BlockIoMedia;\r
509\r
510 ZeroMem (&CapacityCmd, sizeof (USB_BOOT_READ_CAPACITY_CMD));\r
511 ZeroMem (&CapacityData, sizeof (USB_BOOT_READ_CAPACITY_DATA));\r
512\r
513 CapacityCmd.OpCode = USB_BOOT_READ_CAPACITY_OPCODE;\r
514 CapacityCmd.Lun = (UINT8) (USB_BOOT_LUN (UsbMass->Lun));\r
515\r
516 Status = UsbBootExecCmdWithRetry (\r
517 UsbMass,\r
518 &CapacityCmd,\r
519 (UINT8) sizeof (USB_BOOT_READ_CAPACITY_CMD),\r
520 EfiUsbDataIn,\r
521 &CapacityData,\r
522 sizeof (USB_BOOT_READ_CAPACITY_DATA),\r
523 USB_BOOT_GENERAL_CMD_TIMEOUT\r
524 );\r
525 if (EFI_ERROR (Status)) {\r
526 return Status;\r
527 }\r
528\r
529 //\r
530 // Get the information on media presence, block size, and last block number\r
531 // from READ CAPACITY data.\r
532 //\r
533 Media->MediaPresent = TRUE;\r
534 Media->LastBlock = SwapBytes32 (ReadUnaligned32 ((CONST UINT32 *) CapacityData.LastLba));\r
535\r
536 BlockSize = SwapBytes32 (ReadUnaligned32 ((CONST UINT32 *) CapacityData.BlockLen));\r
537 if (BlockSize == 0) {\r
538 //\r
539 // Get sense data \r
540 //\r
541 return UsbBootRequestSense (UsbMass);\r
542 } else {\r
543 Media->BlockSize = BlockSize;\r
544 }\r
545\r
546 if (Media->LastBlock == 0xFFFFFFFF) {\r
547 Status = UsbBootReadCapacity16 (UsbMass);\r
548 if (!EFI_ERROR (Status)) {\r
549 UsbMass->Cdb16Byte = TRUE;\r
550 }\r
551 }\r
552\r
553 return Status;\r
554}\r
555\r
556/**\r
557 Retrieves SCSI mode sense information via MODE SENSE(6) command.\r
558\r
559 @param UsbMass The device whose sense data is requested.\r
560\r
561 @retval EFI_SUCCESS SCSI mode sense information retrieved successfully.\r
562 @retval Other Command execution failed.\r
563\r
564**/\r
565EFI_STATUS\r
566UsbScsiModeSense (\r
567 IN USB_MASS_DEVICE *UsbMass\r
568 )\r
569{\r
570 EFI_STATUS Status;\r
571 USB_SCSI_MODE_SENSE6_CMD ModeSenseCmd;\r
572 USB_SCSI_MODE_SENSE6_PARA_HEADER ModeParaHeader;\r
573 EFI_BLOCK_IO_MEDIA *Media;\r
574\r
575 Media = &UsbMass->BlockIoMedia;\r
576\r
577 ZeroMem (&ModeSenseCmd, sizeof (USB_SCSI_MODE_SENSE6_CMD));\r
578 ZeroMem (&ModeParaHeader, sizeof (USB_SCSI_MODE_SENSE6_PARA_HEADER));\r
579\r
580 //\r
581 // MODE SENSE(6) command is defined in Section 8.2.10 of SCSI-2 Spec\r
582 //\r
583 ModeSenseCmd.OpCode = USB_SCSI_MODE_SENSE6_OPCODE;\r
584 ModeSenseCmd.Lun = (UINT8) USB_BOOT_LUN (UsbMass->Lun);\r
585 ModeSenseCmd.PageCode = 0x3F;\r
586 ModeSenseCmd.AllocateLen = (UINT8) sizeof (USB_SCSI_MODE_SENSE6_PARA_HEADER);\r
587\r
588 Status = UsbBootExecCmdWithRetry (\r
589 UsbMass,\r
590 &ModeSenseCmd,\r
591 (UINT8) sizeof (USB_SCSI_MODE_SENSE6_CMD),\r
592 EfiUsbDataIn,\r
593 &ModeParaHeader,\r
594 sizeof (USB_SCSI_MODE_SENSE6_PARA_HEADER),\r
595 USB_BOOT_GENERAL_CMD_TIMEOUT\r
596 );\r
597\r
598 //\r
599 // Format of device-specific parameter byte of the mode parameter header is defined in\r
600 // Section 8.2.10 of SCSI-2 Spec.\r
601 // BIT7 of this byte is indicates whether the medium is write protected.\r
602 //\r
603 if (!EFI_ERROR (Status)) {\r
604 Media->ReadOnly = (BOOLEAN) ((ModeParaHeader.DevicePara & BIT7) != 0);\r
605 }\r
606\r
607 return Status;\r
608}\r
609\r
610\r
611/**\r
612 Get the parameters for the USB mass storage media.\r
613\r
614 This function get the parameters for the USB mass storage media,\r
615 It is used both to initialize the media during the Start() phase\r
616 of Driver Binding Protocol and to re-initialize it when the media is\r
617 changed. Althought the RemoveableMedia is unlikely to change,\r
618 it is also included here.\r
619\r
620 @param UsbMass The device to retrieve disk gemotric.\r
621\r
622 @retval EFI_SUCCESS The disk gemotric is successfully retrieved.\r
623 @retval Other Failed to get the parameters.\r
624\r
625**/\r
626EFI_STATUS\r
627UsbBootGetParams (\r
628 IN USB_MASS_DEVICE *UsbMass\r
629 )\r
630{\r
631 EFI_BLOCK_IO_MEDIA *Media;\r
632 EFI_STATUS Status;\r
633\r
634 Media = &(UsbMass->BlockIoMedia);\r
635\r
636 Status = UsbBootInquiry (UsbMass);\r
637 if (EFI_ERROR (Status)) {\r
638 DEBUG ((EFI_D_ERROR, "UsbBootGetParams: UsbBootInquiry (%r)\n", Status));\r
639 return Status;\r
640 }\r
641\r
642 //\r
643 // According to USB Mass Storage Specification for Bootability, only following\r
644 // 4 Peripheral Device Types are in spec.\r
645 //\r
646 if ((UsbMass->Pdt != USB_PDT_DIRECT_ACCESS) &&\r
647 (UsbMass->Pdt != USB_PDT_CDROM) &&\r
648 (UsbMass->Pdt != USB_PDT_OPTICAL) &&\r
649 (UsbMass->Pdt != USB_PDT_SIMPLE_DIRECT)) {\r
650 DEBUG ((EFI_D_ERROR, "UsbBootGetParams: Found an unsupported peripheral type[%d]\n", UsbMass->Pdt));\r
651 return EFI_UNSUPPORTED;\r
652 }\r
653\r
654 //\r
655 // Don't use the Removable bit in inquiry data to test whether the media\r
656 // is removable because many flash disks wrongly set this bit.\r
657 //\r
658 if ((UsbMass->Pdt == USB_PDT_CDROM) || (UsbMass->Pdt == USB_PDT_OPTICAL)) {\r
659 //\r
660 // CD-Rom device and Non-CD optical device\r
661 //\r
662 UsbMass->OpticalStorage = TRUE;\r
663 //\r
664 // Default value 2048 Bytes, in case no media present at first time\r
665 //\r
666 Media->BlockSize = 0x0800;\r
667 }\r
668\r
669 Status = UsbBootDetectMedia (UsbMass);\r
670\r
671 return Status;\r
672}\r
673\r
674\r
675/**\r
676 Detect whether the removable media is present and whether it has changed.\r
677\r
678 @param UsbMass The device to check.\r
679\r
680 @retval EFI_SUCCESS The media status is successfully checked.\r
681 @retval Other Failed to detect media.\r
682\r
683**/\r
684EFI_STATUS\r
685UsbBootDetectMedia (\r
686 IN USB_MASS_DEVICE *UsbMass\r
687 )\r
688{\r
689 EFI_BLOCK_IO_MEDIA OldMedia;\r
690 EFI_BLOCK_IO_MEDIA *Media;\r
691 UINT8 CmdSet;\r
692 EFI_TPL OldTpl;\r
693 EFI_STATUS Status;\r
694\r
695 Media = &UsbMass->BlockIoMedia;\r
696\r
697 CopyMem (&OldMedia, &(UsbMass->BlockIoMedia), sizeof (EFI_BLOCK_IO_MEDIA));\r
698\r
699 CmdSet = ((EFI_USB_INTERFACE_DESCRIPTOR *) (UsbMass->Context))->InterfaceSubClass;\r
700\r
701 Status = UsbBootIsUnitReady (UsbMass);\r
702 if (EFI_ERROR (Status) && (Status != EFI_MEDIA_CHANGED)) {\r
703 goto ON_ERROR;\r
704 }\r
705\r
706 if ((UsbMass->Pdt != USB_PDT_CDROM) && (CmdSet == USB_MASS_STORE_SCSI)) {\r
707 //\r
708 // MODE SENSE is required for the device with PDT of 0x00/0x07/0x0E,\r
709 // according to Section 4 of USB Mass Storage Specification for Bootability.\r
710 // MODE SENSE(10) is useless here, while MODE SENSE(6) defined in SCSI\r
711 // could get the information of Write Protected.\r
712 // Since not all device support this command, skip if fail.\r
713 //\r
714 UsbScsiModeSense (UsbMass);\r
715 }\r
716\r
717 Status = UsbBootReadCapacity (UsbMass);\r
718 if (EFI_ERROR (Status)) {\r
719 DEBUG ((EFI_D_ERROR, "UsbBootDetectMedia: UsbBootReadCapacity (%r)\n", Status));\r
720 goto ON_ERROR;\r
721 }\r
722\r
723 return EFI_SUCCESS;\r
724\r
725ON_ERROR:\r
726 //\r
727 // Detect whether it is necessary to reinstall the Block I/O Protocol.\r
728 //\r
729 // MediaId may change in RequestSense for MediaChanged\r
730 // MediaPresent may change in RequestSense for NoMedia\r
731 // MediaReadOnly may change in RequestSense for WriteProtected or MediaChanged\r
732 // MediaPresent/BlockSize/LastBlock may change in ReadCapacity\r
733 //\r
734 if ((Media->MediaId != OldMedia.MediaId) ||\r
735 (Media->MediaPresent != OldMedia.MediaPresent) ||\r
736 (Media->ReadOnly != OldMedia.ReadOnly) ||\r
737 (Media->BlockSize != OldMedia.BlockSize) ||\r
738 (Media->LastBlock != OldMedia.LastBlock)) {\r
739\r
740 //\r
741 // This function is called by Block I/O Protocol APIs, which run at TPL_NOTIFY.\r
742 // Here we temporarily restore TPL to TPL_CALLBACK to invoke ReinstallProtocolInterface().\r
743 //\r
744 OldTpl = EfiGetCurrentTpl ();\r
745 gBS->RestoreTPL (TPL_CALLBACK);\r
746\r
747 gBS->ReinstallProtocolInterface (\r
748 UsbMass->Controller,\r
749 &gEfiBlockIoProtocolGuid,\r
750 &UsbMass->BlockIo,\r
751 &UsbMass->BlockIo\r
752 );\r
753\r
754 ASSERT (EfiGetCurrentTpl () == TPL_CALLBACK);\r
755 gBS->RaiseTPL (OldTpl);\r
756\r
757 //\r
758 // Update MediaId after reinstalling Block I/O Protocol.\r
759 //\r
760 if (Media->MediaPresent != OldMedia.MediaPresent) {\r
761 if (Media->MediaPresent) {\r
762 Media->MediaId = 1;\r
763 } else {\r
764 Media->MediaId = 0;\r
765 }\r
766 }\r
767\r
768 if ((Media->ReadOnly != OldMedia.ReadOnly) ||\r
769 (Media->BlockSize != OldMedia.BlockSize) ||\r
770 (Media->LastBlock != OldMedia.LastBlock)) {\r
771 Media->MediaId++;\r
772 }\r
773 }\r
774\r
775 return Status;\r
776}\r
777\r
778\r
779/**\r
780 Read some blocks from the device.\r
781\r
782 @param UsbMass The USB mass storage device to read from\r
783 @param Lba The start block number\r
784 @param TotalBlock Total block number to read\r
785 @param Buffer The buffer to read to\r
786\r
787 @retval EFI_SUCCESS Data are read into the buffer\r
788 @retval Others Failed to read all the data\r
789\r
790**/\r
791EFI_STATUS\r
792UsbBootReadBlocks (\r
793 IN USB_MASS_DEVICE *UsbMass,\r
794 IN UINT32 Lba,\r
795 IN UINTN TotalBlock,\r
796 OUT UINT8 *Buffer\r
797 )\r
798{\r
799 USB_BOOT_READ10_CMD ReadCmd;\r
800 EFI_STATUS Status;\r
801 UINT16 Count;\r
802 UINT32 BlockSize;\r
803 UINT32 ByteSize;\r
804 UINT32 Timeout;\r
805\r
806 BlockSize = UsbMass->BlockIoMedia.BlockSize;\r
807 Status = EFI_SUCCESS;\r
808\r
809 while (TotalBlock > 0) {\r
810 //\r
811 // Split the total blocks into smaller pieces to ease the pressure\r
812 // on the device. We must split the total block because the READ10\r
813 // command only has 16 bit transfer length (in the unit of block).\r
814 //\r
815 Count = (UINT16)((TotalBlock < USB_BOOT_IO_BLOCKS) ? TotalBlock : USB_BOOT_IO_BLOCKS);\r
816 ByteSize = (UINT32)Count * BlockSize;\r
817\r
818 //\r
819 // USB command's upper limit timeout is 5s. [USB2.0-9.2.6.1]\r
820 //\r
821 Timeout = (UINT32) USB_BOOT_GENERAL_CMD_TIMEOUT;\r
822\r
823 //\r
824 // Fill in the command then execute\r
825 //\r
826 ZeroMem (&ReadCmd, sizeof (USB_BOOT_READ10_CMD));\r
827\r
828 ReadCmd.OpCode = USB_BOOT_READ10_OPCODE;\r
829 ReadCmd.Lun = (UINT8) (USB_BOOT_LUN (UsbMass->Lun));\r
830 WriteUnaligned32 ((UINT32 *) ReadCmd.Lba, SwapBytes32 (Lba));\r
831 WriteUnaligned16 ((UINT16 *) ReadCmd.TransferLen, SwapBytes16 (Count));\r
832\r
833 Status = UsbBootExecCmdWithRetry (\r
834 UsbMass,\r
835 &ReadCmd,\r
836 (UINT8) sizeof (USB_BOOT_READ10_CMD),\r
837 EfiUsbDataIn,\r
838 Buffer,\r
839 ByteSize,\r
840 Timeout\r
841 );\r
842 if (EFI_ERROR (Status)) {\r
843 return Status;\r
844 }\r
845 DEBUG ((EFI_D_BLKIO, "UsbBootReadBlocks: LBA (0x%x), Blk (0x%x)\n", Lba, Count));\r
846 Lba += Count;\r
847 Buffer += Count * BlockSize;\r
848 TotalBlock -= Count;\r
849 }\r
850\r
851 return Status;\r
852}\r
853\r
854\r
855/**\r
856 Write some blocks to the device.\r
857\r
858 @param UsbMass The USB mass storage device to write to\r
859 @param Lba The start block number\r
860 @param TotalBlock Total block number to write\r
861 @param Buffer Pointer to the source buffer for the data.\r
862\r
863 @retval EFI_SUCCESS Data are written into the buffer\r
864 @retval Others Failed to write all the data\r
865\r
866**/\r
867EFI_STATUS\r
868UsbBootWriteBlocks (\r
869 IN USB_MASS_DEVICE *UsbMass,\r
870 IN UINT32 Lba,\r
871 IN UINTN TotalBlock,\r
872 IN UINT8 *Buffer\r
873 )\r
874{\r
875 USB_BOOT_WRITE10_CMD WriteCmd;\r
876 EFI_STATUS Status;\r
877 UINT16 Count;\r
878 UINT32 BlockSize;\r
879 UINT32 ByteSize;\r
880 UINT32 Timeout;\r
881\r
882 BlockSize = UsbMass->BlockIoMedia.BlockSize;\r
883 Status = EFI_SUCCESS;\r
884\r
885 while (TotalBlock > 0) {\r
886 //\r
887 // Split the total blocks into smaller pieces to ease the pressure\r
888 // on the device. We must split the total block because the WRITE10\r
889 // command only has 16 bit transfer length (in the unit of block).\r
890 //\r
891 Count = (UINT16)((TotalBlock < USB_BOOT_IO_BLOCKS) ? TotalBlock : USB_BOOT_IO_BLOCKS);\r
892 ByteSize = (UINT32)Count * BlockSize;\r
893\r
894 //\r
895 // USB command's upper limit timeout is 5s. [USB2.0-9.2.6.1]\r
896 //\r
897 Timeout = (UINT32) USB_BOOT_GENERAL_CMD_TIMEOUT;\r
898\r
899 //\r
900 // Fill in the write10 command block\r
901 //\r
902 ZeroMem (&WriteCmd, sizeof (USB_BOOT_WRITE10_CMD));\r
903\r
904 WriteCmd.OpCode = USB_BOOT_WRITE10_OPCODE;\r
905 WriteCmd.Lun = (UINT8) (USB_BOOT_LUN (UsbMass->Lun));\r
906 WriteUnaligned32 ((UINT32 *) WriteCmd.Lba, SwapBytes32 (Lba));\r
907 WriteUnaligned16 ((UINT16 *) WriteCmd.TransferLen, SwapBytes16 (Count));\r
908\r
909 Status = UsbBootExecCmdWithRetry (\r
910 UsbMass,\r
911 &WriteCmd,\r
912 (UINT8) sizeof (USB_BOOT_WRITE10_CMD),\r
913 EfiUsbDataOut,\r
914 Buffer,\r
915 ByteSize,\r
916 Timeout\r
917 );\r
918 if (EFI_ERROR (Status)) {\r
919 return Status;\r
920 }\r
921 DEBUG ((EFI_D_BLKIO, "UsbBootWriteBlocks: LBA (0x%x), Blk (0x%x)\n", Lba, Count));\r
922\r
923 Lba += Count;\r
924 Buffer += Count * BlockSize;\r
925 TotalBlock -= Count;\r
926 }\r
927\r
928 return Status;\r
929}\r
930\r
931/**\r
932 Read some blocks from the device by SCSI 16 byte cmd.\r
933\r
934 @param UsbMass The USB mass storage device to read from\r
935 @param Lba The start block number\r
936 @param TotalBlock Total block number to read\r
937 @param Buffer The buffer to read to\r
938\r
939 @retval EFI_SUCCESS Data are read into the buffer\r
940 @retval Others Failed to read all the data\r
941\r
942**/\r
943EFI_STATUS\r
944UsbBootReadBlocks16 (\r
945 IN USB_MASS_DEVICE *UsbMass,\r
946 IN UINT64 Lba,\r
947 IN UINTN TotalBlock,\r
948 OUT UINT8 *Buffer\r
949 )\r
950{\r
951 UINT8 ReadCmd[16];\r
952 EFI_STATUS Status;\r
953 UINT16 Count;\r
954 UINT32 BlockSize;\r
955 UINT32 ByteSize;\r
956 UINT32 Timeout;\r
957\r
958 BlockSize = UsbMass->BlockIoMedia.BlockSize;\r
959 Status = EFI_SUCCESS;\r
960\r
961 while (TotalBlock > 0) {\r
962 //\r
963 // Split the total blocks into smaller pieces.\r
964 //\r
965 Count = (UINT16)((TotalBlock < USB_BOOT_IO_BLOCKS) ? TotalBlock : USB_BOOT_IO_BLOCKS);\r
966 ByteSize = (UINT32)Count * BlockSize;\r
967\r
968 //\r
969 // USB command's upper limit timeout is 5s. [USB2.0-9.2.6.1]\r
970 //\r
971 Timeout = (UINT32) USB_BOOT_GENERAL_CMD_TIMEOUT;\r
972\r
973 //\r
974 // Fill in the command then execute\r
975 //\r
976 ZeroMem (ReadCmd, sizeof (ReadCmd));\r
977\r
978 ReadCmd[0] = EFI_SCSI_OP_READ16;\r
979 ReadCmd[1] = (UINT8) ((USB_BOOT_LUN (UsbMass->Lun) & 0xE0));\r
980 WriteUnaligned64 ((UINT64 *) &ReadCmd[2], SwapBytes64 (Lba));\r
981 WriteUnaligned32 ((UINT32 *) &ReadCmd[10], SwapBytes32 (Count));\r
982\r
983 Status = UsbBootExecCmdWithRetry (\r
984 UsbMass,\r
985 ReadCmd,\r
986 (UINT8) sizeof (ReadCmd),\r
987 EfiUsbDataIn,\r
988 Buffer,\r
989 ByteSize,\r
990 Timeout\r
991 );\r
992 if (EFI_ERROR (Status)) {\r
993 return Status;\r
994 }\r
995 DEBUG ((EFI_D_BLKIO, "UsbBootReadBlocks16: LBA (0x%lx), Blk (0x%x)\n", Lba, Count));\r
996 Lba += Count;\r
997 Buffer += Count * BlockSize;\r
998 TotalBlock -= Count;\r
999 }\r
1000\r
1001 return Status;\r
1002}\r
1003\r
1004\r
1005/**\r
1006 Write some blocks to the device by SCSI 16 byte cmd.\r
1007\r
1008 @param UsbMass The USB mass storage device to write to\r
1009 @param Lba The start block number\r
1010 @param TotalBlock Total block number to write\r
1011 @param Buffer Pointer to the source buffer for the data.\r
1012\r
1013 @retval EFI_SUCCESS Data are written into the buffer\r
1014 @retval Others Failed to write all the data\r
1015\r
1016**/\r
1017EFI_STATUS\r
1018UsbBootWriteBlocks16 (\r
1019 IN USB_MASS_DEVICE *UsbMass,\r
1020 IN UINT64 Lba,\r
1021 IN UINTN TotalBlock,\r
1022 IN UINT8 *Buffer\r
1023 )\r
1024{\r
1025 UINT8 WriteCmd[16];\r
1026 EFI_STATUS Status;\r
1027 UINT16 Count;\r
1028 UINT32 BlockSize;\r
1029 UINT32 ByteSize;\r
1030 UINT32 Timeout;\r
1031\r
1032 BlockSize = UsbMass->BlockIoMedia.BlockSize;\r
1033 Status = EFI_SUCCESS;\r
1034\r
1035 while (TotalBlock > 0) {\r
1036 //\r
1037 // Split the total blocks into smaller pieces.\r
1038 //\r
1039 Count = (UINT16)((TotalBlock < USB_BOOT_IO_BLOCKS) ? TotalBlock : USB_BOOT_IO_BLOCKS);\r
1040 ByteSize = (UINT32)Count * BlockSize;\r
1041\r
1042 //\r
1043 // USB command's upper limit timeout is 5s. [USB2.0-9.2.6.1]\r
1044 //\r
1045 Timeout = (UINT32) USB_BOOT_GENERAL_CMD_TIMEOUT;\r
1046\r
1047 //\r
1048 // Fill in the write16 command block\r
1049 //\r
1050 ZeroMem (WriteCmd, sizeof (WriteCmd));\r
1051\r
1052 WriteCmd[0] = EFI_SCSI_OP_WRITE16;\r
1053 WriteCmd[1] = (UINT8) ((USB_BOOT_LUN (UsbMass->Lun) & 0xE0));\r
1054 WriteUnaligned64 ((UINT64 *) &WriteCmd[2], SwapBytes64 (Lba));\r
1055 WriteUnaligned32 ((UINT32 *) &WriteCmd[10], SwapBytes32 (Count));\r
1056\r
1057 Status = UsbBootExecCmdWithRetry (\r
1058 UsbMass,\r
1059 WriteCmd,\r
1060 (UINT8) sizeof (WriteCmd),\r
1061 EfiUsbDataOut,\r
1062 Buffer,\r
1063 ByteSize,\r
1064 Timeout\r
1065 );\r
1066 if (EFI_ERROR (Status)) {\r
1067 return Status;\r
1068 }\r
1069 DEBUG ((EFI_D_BLKIO, "UsbBootWriteBlocks: LBA (0x%lx), Blk (0x%x)\n", Lba, Count));\r
1070 Lba += Count;\r
1071 Buffer += Count * BlockSize;\r
1072 TotalBlock -= Count;\r
1073 }\r
1074\r
1075 return Status;\r
1076}\r
1077\r
1078/**\r
1079 Use the USB clear feature control transfer to clear the endpoint stall condition.\r
1080\r
1081 @param UsbIo The USB I/O Protocol instance\r
1082 @param EndpointAddr The endpoint to clear stall for\r
1083\r
1084 @retval EFI_SUCCESS The endpoint stall condition is cleared.\r
1085 @retval Others Failed to clear the endpoint stall condition.\r
1086\r
1087**/\r
1088EFI_STATUS\r
1089UsbClearEndpointStall (\r
1090 IN EFI_USB_IO_PROTOCOL *UsbIo,\r
1091 IN UINT8 EndpointAddr\r
1092 )\r
1093{\r
1094 EFI_USB_DEVICE_REQUEST Request;\r
1095 EFI_STATUS Status;\r
1096 UINT32 CmdResult;\r
1097 UINT32 Timeout;\r
1098\r
1099 Request.RequestType = 0x02;\r
1100 Request.Request = USB_REQ_CLEAR_FEATURE;\r
1101 Request.Value = USB_FEATURE_ENDPOINT_HALT;\r
1102 Request.Index = EndpointAddr;\r
1103 Request.Length = 0;\r
1104 Timeout = USB_BOOT_GENERAL_CMD_TIMEOUT / USB_MASS_1_MILLISECOND;\r
1105\r
1106 Status = UsbIo->UsbControlTransfer (\r
1107 UsbIo,\r
1108 &Request,\r
1109 EfiUsbNoData,\r
1110 Timeout,\r
1111 NULL,\r
1112 0,\r
1113 &CmdResult\r
1114 );\r
1115\r
1116 return Status;\r
1117}\r