]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassBoot.c
MdeModulePkg: Apply uncrustify changes
[mirror_edk2.git] / MdeModulePkg / Bus / Usb / UsbMassStorageDxe / UsbMassBoot.c
index 9f996507034f91cfd4486ea0b82034d650fe39d2..f648187a011cad094169bb5a7f943ac801a389ad 100644 (file)
@@ -2,14 +2,8 @@
   Implementation of the command set of USB Mass Storage Specification\r
   for Bootability, Revision 1.0.\r
 \r
-Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.<BR>\r
-This program and the accompanying materials\r
-are licensed and made available under the terms and conditions of the BSD License\r
-which accompanies this distribution.  The full text of the license may be found at\r
-http://opensource.org/licenses/bsd-license.php\r
-\r
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>\r
+SPDX-License-Identifier: BSD-2-Clause-Patent\r
 \r
 **/\r
 \r
@@ -20,7 +14,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 \r
   @param  UsbMass                The device whose sense data is requested.\r
 \r
-  @retval EFI_SUCCESS            The command is excuted successfully.\r
+  @retval EFI_SUCCESS            The command is executed successfully.\r
   @retval EFI_DEVICE_ERROR       Failed to request sense.\r
   @retval EFI_NO_RESPONSE        The device media doesn't response this request.\r
   @retval EFI_INVALID_PARAMETER  The command has some invalid parameters.\r
@@ -30,15 +24,15 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 **/\r
 EFI_STATUS\r
 UsbBootRequestSense (\r
-  IN USB_MASS_DEVICE          *UsbMass\r
+  IN USB_MASS_DEVICE  *UsbMass\r
   )\r
 {\r
-  USB_BOOT_REQUEST_SENSE_CMD  SenseCmd;\r
-  USB_BOOT_REQUEST_SENSE_DATA SenseData;\r
-  EFI_BLOCK_IO_MEDIA          *Media;\r
-  USB_MASS_TRANSPORT          *Transport;\r
-  EFI_STATUS                  Status;\r
-  UINT32                      CmdResult;\r
+  USB_BOOT_REQUEST_SENSE_CMD   SenseCmd;\r
+  USB_BOOT_REQUEST_SENSE_DATA  SenseData;\r
+  EFI_BLOCK_IO_MEDIA           *Media;\r
+  USB_MASS_TRANSPORT           *Transport;\r
+  EFI_STATUS                   Status;\r
+  UINT32                       CmdResult;\r
 \r
   Transport = UsbMass->Transport;\r
 \r
@@ -49,8 +43,8 @@ UsbBootRequestSense (
   ZeroMem (&SenseData, sizeof (USB_BOOT_REQUEST_SENSE_DATA));\r
 \r
   SenseCmd.OpCode   = USB_BOOT_REQUEST_SENSE_OPCODE;\r
-  SenseCmd.Lun      = (UINT8) (USB_BOOT_LUN (UsbMass->Lun));\r
-  SenseCmd.AllocLen = (UINT8) sizeof (USB_BOOT_REQUEST_SENSE_DATA);\r
+  SenseCmd.Lun      = (UINT8)(USB_BOOT_LUN (UsbMass->Lun));\r
+  SenseCmd.AllocLen = (UINT8)sizeof (USB_BOOT_REQUEST_SENSE_DATA);\r
 \r
   Status = Transport->ExecCommand (\r
                         UsbMass->Context,\r
@@ -63,11 +57,12 @@ UsbBootRequestSense (
                         USB_BOOT_GENERAL_CMD_TIMEOUT,\r
                         &CmdResult\r
                         );\r
-  if (EFI_ERROR (Status) || CmdResult != USB_MASS_CMD_SUCCESS) {\r
-    DEBUG ((EFI_D_ERROR, "UsbBootRequestSense: (%r) CmdResult=0x%x\n", Status, CmdResult));\r
+  if (EFI_ERROR (Status) || (CmdResult != USB_MASS_CMD_SUCCESS)) {\r
+    DEBUG ((DEBUG_ERROR, "UsbBootRequestSense: (%r) CmdResult=0x%x\n", Status, CmdResult));\r
     if (!EFI_ERROR (Status)) {\r
       Status = EFI_DEVICE_ERROR;\r
     }\r
+\r
     return Status;\r
   }\r
 \r
@@ -78,65 +73,80 @@ UsbBootRequestSense (
   Media = &UsbMass->BlockIoMedia;\r
 \r
   switch (USB_BOOT_SENSE_KEY (SenseData.SenseKey)) {\r
+    case USB_BOOT_SENSE_NO_SENSE:\r
+      if (SenseData.Asc == USB_BOOT_ASC_NO_ADDITIONAL_SENSE_INFORMATION) {\r
+        //\r
+        // It is not an error if a device does not have additional sense information\r
+        //\r
+        Status = EFI_SUCCESS;\r
+      } else {\r
+        Status = EFI_NO_RESPONSE;\r
+      }\r
 \r
-  case USB_BOOT_SENSE_NO_SENSE:\r
-    Status = EFI_NO_RESPONSE;\r
-    break;\r
+      break;\r
 \r
-  case USB_BOOT_SENSE_RECOVERED:\r
-    //\r
-    // Suppose hardware can handle this case, and recover later by itself\r
-    //\r
-    Status = EFI_NOT_READY;\r
-    break;\r
-\r
-  case USB_BOOT_SENSE_NOT_READY:\r
-    Status = EFI_DEVICE_ERROR;\r
-    if (SenseData.Asc == USB_BOOT_ASC_NO_MEDIA) {\r
-      Media->MediaPresent = FALSE;\r
-      Status = EFI_NO_MEDIA;\r
-    } else if (SenseData.Asc == USB_BOOT_ASC_NOT_READY) {\r
+    case USB_BOOT_SENSE_RECOVERED:\r
+      //\r
+      // Suppose hardware can handle this case, and recover later by itself\r
+      //\r
       Status = EFI_NOT_READY;\r
-    }\r
-    break;\r
+      break;\r
 \r
-  case USB_BOOT_SENSE_ILLEGAL_REQUEST:\r
-    Status = EFI_INVALID_PARAMETER;\r
-    break;\r
+    case USB_BOOT_SENSE_NOT_READY:\r
+      Status = EFI_DEVICE_ERROR;\r
+      if (SenseData.Asc == USB_BOOT_ASC_NO_MEDIA) {\r
+        Media->MediaPresent = FALSE;\r
+        Status              = EFI_NO_MEDIA;\r
+      } else if (SenseData.Asc == USB_BOOT_ASC_NOT_READY) {\r
+        Status = EFI_NOT_READY;\r
+      }\r
 \r
-  case USB_BOOT_SENSE_UNIT_ATTENTION:\r
-    Status = EFI_DEVICE_ERROR;\r
-    if (SenseData.Asc == USB_BOOT_ASC_MEDIA_CHANGE) {\r
-      //\r
-      // If MediaChange, reset ReadOnly and new MediaId\r
-      //\r
-      Status = EFI_MEDIA_CHANGED;\r
-      Media->ReadOnly = FALSE;\r
-      Media->MediaId++;\r
-    }\r
-    break;\r
+      break;\r
+\r
+    case USB_BOOT_SENSE_ILLEGAL_REQUEST:\r
+      Status = EFI_INVALID_PARAMETER;\r
+      break;\r
 \r
-  case USB_BOOT_SENSE_DATA_PROTECT:\r
-    Status = EFI_WRITE_PROTECTED;\r
-    Media->ReadOnly = TRUE;\r
-    break;\r
+    case USB_BOOT_SENSE_UNIT_ATTENTION:\r
+      Status = EFI_DEVICE_ERROR;\r
+      if (SenseData.Asc == USB_BOOT_ASC_MEDIA_CHANGE) {\r
+        //\r
+        // If MediaChange, reset ReadOnly and new MediaId\r
+        //\r
+        Status          = EFI_MEDIA_CHANGED;\r
+        Media->ReadOnly = FALSE;\r
+        Media->MediaId++;\r
+      } else if (SenseData.Asc == USB_BOOT_ASC_NOT_READY) {\r
+        Status = EFI_NOT_READY;\r
+      } else if (SenseData.Asc == USB_BOOT_ASC_NO_MEDIA) {\r
+        Status = EFI_NOT_READY;\r
+      }\r
+\r
+      break;\r
+\r
+    case USB_BOOT_SENSE_DATA_PROTECT:\r
+      Status          = EFI_WRITE_PROTECTED;\r
+      Media->ReadOnly = TRUE;\r
+      break;\r
 \r
-  default:\r
-    Status = EFI_DEVICE_ERROR;\r
-    break;\r
+    default:\r
+      Status = EFI_DEVICE_ERROR;\r
+      break;\r
   }\r
 \r
-  DEBUG ((EFI_D_INFO, "UsbBootRequestSense: (%r) with sense key %x/%x/%x\n",\r
-          Status,\r
-          USB_BOOT_SENSE_KEY (SenseData.SenseKey),\r
-          SenseData.Asc,\r
-          SenseData.Ascq\r
-          ));\r
+  DEBUG ((\r
+    DEBUG_INFO,\r
+    "UsbBootRequestSense: (%r) with error code (%x) sense key %x/%x/%x\n",\r
+    Status,\r
+    SenseData.ErrorCode,\r
+    USB_BOOT_SENSE_KEY (SenseData.SenseKey),\r
+    SenseData.Asc,\r
+    SenseData.Ascq\r
+    ));\r
 \r
   return Status;\r
 }\r
 \r
-\r
 /**\r
   Execute the USB mass storage bootability commands.\r
 \r
@@ -152,24 +162,24 @@ UsbBootRequestSense (
   @param  DataLen                The length of expected data\r
   @param  Timeout                The timeout used to transfer\r
 \r
-  @retval EFI_SUCCESS            Command is excuted successfully\r
+  @retval EFI_SUCCESS            Command is executed successfully\r
   @retval Others                 Command execution failed.\r
 \r
 **/\r
 EFI_STATUS\r
 UsbBootExecCmd (\r
-  IN USB_MASS_DEVICE            *UsbMass,\r
-  IN VOID                       *Cmd,\r
-  IN UINT8                      CmdLen,\r
-  IN EFI_USB_DATA_DIRECTION     DataDir,\r
-  IN VOID                       *Data,\r
-  IN UINT32                     DataLen,\r
-  IN UINT32                     Timeout\r
+  IN USB_MASS_DEVICE         *UsbMass,\r
+  IN VOID                    *Cmd,\r
+  IN UINT8                   CmdLen,\r
+  IN EFI_USB_DATA_DIRECTION  DataDir,\r
+  IN VOID                    *Data,\r
+  IN UINT32                  DataLen,\r
+  IN UINT32                  Timeout\r
   )\r
 {\r
-  USB_MASS_TRANSPORT          *Transport;\r
-  EFI_STATUS                  Status;\r
-  UINT32                      CmdResult;\r
+  USB_MASS_TRANSPORT  *Transport;\r
+  EFI_STATUS          Status;\r
+  UINT32              CmdResult;\r
 \r
   Transport = UsbMass->Transport;\r
   Status    = Transport->ExecCommand (\r
@@ -185,13 +195,13 @@ UsbBootExecCmd (
                            );\r
 \r
   if (Status == EFI_TIMEOUT) {\r
-    DEBUG ((EFI_D_ERROR, "UsbBootExecCmd: Timeout to Exec 0x%x Cmd\n", *(UINT8 *)Cmd));\r
+    DEBUG ((DEBUG_ERROR, "UsbBootExecCmd: %r to Exec 0x%x Cmd\n", Status, *(UINT8 *)Cmd));\r
     return EFI_TIMEOUT;\r
   }\r
 \r
   //\r
   // If ExecCommand() returns no error and CmdResult is success,\r
-  // then the commnad transfer is successful.\r
+  // then the command transfer is successful.\r
   //\r
   if ((CmdResult == USB_MASS_CMD_SUCCESS) && !EFI_ERROR (Status)) {\r
     return EFI_SUCCESS;\r
@@ -200,10 +210,10 @@ UsbBootExecCmd (
   //\r
   // If command execution failed, then retrieve error info via sense request.\r
   //\r
+  DEBUG ((DEBUG_ERROR, "UsbBootExecCmd: %r to Exec 0x%x Cmd (Result = %x)\n", Status, *(UINT8 *)Cmd, CmdResult));\r
   return UsbBootRequestSense (UsbMass);\r
 }\r
 \r
-\r
 /**\r
   Execute the USB mass storage bootability commands with retrial.\r
 \r
@@ -211,7 +221,7 @@ UsbBootExecCmd (
   If the device isn't ready, wait for it. If the device is ready\r
   and error occurs, retry the command again until it exceeds the\r
   limit of retrial times.\r
-  \r
+\r
   @param  UsbMass                The device to issue commands to\r
   @param  Cmd                    The command to execute\r
   @param  CmdLen                 The length of the command\r
@@ -221,24 +231,24 @@ UsbBootExecCmd (
   @param  Timeout                The timeout used to transfer\r
 \r
   @retval EFI_SUCCESS            The command is executed successfully.\r
-  @retval EFI_MEDIA_CHANGED      The device media has been changed.\r
+  @retval EFI_NO_MEDIA           The device media is removed.\r
   @retval Others                 Command execution failed after retrial.\r
 \r
 **/\r
 EFI_STATUS\r
 UsbBootExecCmdWithRetry (\r
-  IN USB_MASS_DEVICE          *UsbMass,\r
-  IN VOID                     *Cmd,\r
-  IN UINT8                    CmdLen,\r
-  IN EFI_USB_DATA_DIRECTION   DataDir,\r
-  IN VOID                     *Data,\r
-  IN UINT32                   DataLen,\r
-  IN UINT32                   Timeout\r
+  IN USB_MASS_DEVICE         *UsbMass,\r
+  IN VOID                    *Cmd,\r
+  IN UINT8                   CmdLen,\r
+  IN EFI_USB_DATA_DIRECTION  DataDir,\r
+  IN VOID                    *Data,\r
+  IN UINT32                  DataLen,\r
+  IN UINT32                  Timeout\r
   )\r
 {\r
-  EFI_STATUS                  Status;\r
-  UINTN                       Retry;\r
-  EFI_EVENT                   TimeoutEvt;\r
+  EFI_STATUS  Status;\r
+  UINTN       Retry;\r
+  EFI_EVENT   TimeoutEvt;\r
 \r
   Retry  = 0;\r
   Status = EFI_SUCCESS;\r
@@ -253,7 +263,7 @@ UsbBootExecCmdWithRetry (
     return Status;\r
   }\r
 \r
-  Status = gBS->SetTimer (TimeoutEvt, TimerRelative, EFI_TIMER_PERIOD_SECONDS(60));\r
+  Status = gBS->SetTimer (TimeoutEvt, TimerRelative, EFI_TIMER_PERIOD_SECONDS (60));\r
   if (EFI_ERROR (Status)) {\r
     goto EXIT;\r
   }\r
@@ -271,9 +281,10 @@ UsbBootExecCmdWithRetry (
                DataLen,\r
                Timeout\r
                );\r
-    if (Status == EFI_SUCCESS || Status == EFI_MEDIA_CHANGED || Status == EFI_NO_MEDIA) {\r
+    if ((Status == EFI_SUCCESS) || (Status == EFI_NO_MEDIA)) {\r
       break;\r
     }\r
+\r
     //\r
     // If the sense data shows the drive is not ready, we need execute the cmd again.\r
     // We limit the upper boundary to 60 seconds.\r
@@ -281,6 +292,7 @@ UsbBootExecCmdWithRetry (
     if (Status == EFI_NOT_READY) {\r
       continue;\r
     }\r
+\r
     //\r
     // If the status is other error, then just retry 5 times.\r
     //\r
@@ -297,7 +309,6 @@ EXIT:
   return Status;\r
 }\r
 \r
-\r
 /**\r
   Execute TEST UNIT READY command to check if the device is ready.\r
 \r
@@ -309,20 +320,20 @@ EXIT:
 **/\r
 EFI_STATUS\r
 UsbBootIsUnitReady (\r
-  IN USB_MASS_DEVICE            *UsbMass\r
+  IN USB_MASS_DEVICE  *UsbMass\r
   )\r
 {\r
   USB_BOOT_TEST_UNIT_READY_CMD  TestCmd;\r
 \r
   ZeroMem (&TestCmd, sizeof (USB_BOOT_TEST_UNIT_READY_CMD));\r
 \r
-  TestCmd.OpCode  = USB_BOOT_TEST_UNIT_READY_OPCODE;\r
-  TestCmd.Lun     = (UINT8) (USB_BOOT_LUN (UsbMass->Lun));\r
+  TestCmd.OpCode = USB_BOOT_TEST_UNIT_READY_OPCODE;\r
+  TestCmd.Lun    = (UINT8)(USB_BOOT_LUN (UsbMass->Lun));\r
 \r
   return UsbBootExecCmdWithRetry (\r
            UsbMass,\r
            &TestCmd,\r
-           (UINT8) sizeof (USB_BOOT_TEST_UNIT_READY_CMD),\r
+           (UINT8)sizeof (USB_BOOT_TEST_UNIT_READY_CMD),\r
            EfiUsbNoData,\r
            NULL,\r
            0,\r
@@ -330,7 +341,6 @@ UsbBootIsUnitReady (
            );\r
 }\r
 \r
-\r
 /**\r
   Execute INQUIRY Command to request information regarding parameters of\r
   the device be sent to the host computer.\r
@@ -343,12 +353,12 @@ UsbBootIsUnitReady (
 **/\r
 EFI_STATUS\r
 UsbBootInquiry (\r
-  IN USB_MASS_DEVICE            *UsbMass\r
+  IN USB_MASS_DEVICE  *UsbMass\r
   )\r
 {\r
-  USB_BOOT_INQUIRY_CMD        InquiryCmd;\r
-  EFI_BLOCK_IO_MEDIA          *Media;\r
-  EFI_STATUS                  Status;\r
+  USB_BOOT_INQUIRY_CMD  InquiryCmd;\r
+  EFI_BLOCK_IO_MEDIA    *Media;\r
+  EFI_STATUS            Status;\r
 \r
   Media = &(UsbMass->BlockIoMedia);\r
 \r
@@ -356,13 +366,13 @@ UsbBootInquiry (
   ZeroMem (&UsbMass->InquiryData, sizeof (USB_BOOT_INQUIRY_DATA));\r
 \r
   InquiryCmd.OpCode   = USB_BOOT_INQUIRY_OPCODE;\r
-  InquiryCmd.Lun      = (UINT8) (USB_BOOT_LUN (UsbMass->Lun));\r
-  InquiryCmd.AllocLen = (UINT8) sizeof (USB_BOOT_INQUIRY_DATA);\r
+  InquiryCmd.Lun      = (UINT8)(USB_BOOT_LUN (UsbMass->Lun));\r
+  InquiryCmd.AllocLen = (UINT8)sizeof (USB_BOOT_INQUIRY_DATA);\r
 \r
   Status = UsbBootExecCmdWithRetry (\r
              UsbMass,\r
              &InquiryCmd,\r
-             (UINT8) sizeof (USB_BOOT_INQUIRY_CMD),\r
+             (UINT8)sizeof (USB_BOOT_INQUIRY_CMD),\r
              EfiUsbDataIn,\r
              &UsbMass->InquiryData,\r
              sizeof (USB_BOOT_INQUIRY_DATA),\r
@@ -376,12 +386,12 @@ UsbBootInquiry (
   // Get information from PDT (Peripheral Device Type) field and Removable Medium Bit\r
   // from the inquiry data.\r
   //\r
-  UsbMass->Pdt          = (UINT8) (USB_BOOT_PDT (UsbMass->InquiryData.Pdt));\r
-  Media->RemovableMedia = (BOOLEAN) (USB_BOOT_REMOVABLE (UsbMass->InquiryData.Removable));\r
+  UsbMass->Pdt          = (UINT8)(USB_BOOT_PDT (UsbMass->InquiryData.Pdt));\r
+  Media->RemovableMedia = (BOOLEAN)(USB_BOOT_REMOVABLE (UsbMass->InquiryData.Removable));\r
   //\r
   // Set block size to the default value of 512 Bytes, in case no media is present at first time.\r
   //\r
-  Media->BlockSize      = 0x0200;\r
+  Media->BlockSize = 0x0200;\r
 \r
   return Status;\r
 }\r
@@ -399,20 +409,20 @@ UsbBootInquiry (
   @retval EFI_SUCCESS            The disk geometry is successfully retrieved.\r
   @retval EFI_NOT_READY          The returned block size is zero.\r
   @retval Other                  READ CAPACITY 16 bytes command execution failed.\r
\r
+\r
 **/\r
 EFI_STATUS\r
 UsbBootReadCapacity16 (\r
-  IN USB_MASS_DEVICE            *UsbMass\r
+  IN USB_MASS_DEVICE  *UsbMass\r
   )\r
 {\r
-  UINT8                         CapacityCmd[16];\r
-  EFI_SCSI_DISK_CAPACITY_DATA16 CapacityData;\r
-  EFI_BLOCK_IO_MEDIA            *Media;\r
-  EFI_STATUS                    Status;\r
-  UINT32                        BlockSize;\r
+  UINT8                          CapacityCmd[16];\r
+  EFI_SCSI_DISK_CAPACITY_DATA16  CapacityData;\r
+  EFI_BLOCK_IO_MEDIA             *Media;\r
+  EFI_STATUS                     Status;\r
+  UINT32                         BlockSize;\r
 \r
-  Media   = &UsbMass->BlockIoMedia;\r
+  Media = &UsbMass->BlockIoMedia;\r
 \r
   Media->MediaPresent = FALSE;\r
   Media->LastBlock    = 0;\r
@@ -421,19 +431,19 @@ UsbBootReadCapacity16 (
   ZeroMem (CapacityCmd, sizeof (CapacityCmd));\r
   ZeroMem (&CapacityData, sizeof (CapacityData));\r
 \r
-  CapacityCmd[0]  = EFI_SCSI_OP_READ_CAPACITY16;\r
-  CapacityCmd[1]  = 0x10;\r
+  CapacityCmd[0] = EFI_SCSI_OP_READ_CAPACITY16;\r
+  CapacityCmd[1] = 0x10;\r
   //\r
   // Partial medium indicator, set the bytes 2 ~ 9 of the Cdb as ZERO.\r
   //\r
   ZeroMem ((CapacityCmd + 2), 8);\r
 \r
   CapacityCmd[13] = sizeof (CapacityData);\r
-  \r
+\r
   Status = UsbBootExecCmdWithRetry (\r
              UsbMass,\r
              CapacityCmd,\r
-             (UINT8) sizeof (CapacityCmd),\r
+             (UINT8)sizeof (CapacityCmd),\r
              EfiUsbDataIn,\r
              &CapacityData,\r
              sizeof (CapacityData),\r
@@ -448,16 +458,16 @@ UsbBootReadCapacity16 (
   // from READ CAPACITY data.\r
   //\r
   Media->MediaPresent = TRUE;\r
-  Media->LastBlock    = SwapBytes64 (ReadUnaligned64 ((CONST UINT64 *) &(CapacityData.LastLba7)));\r
+  Media->LastBlock    = SwapBytes64 (ReadUnaligned64 ((CONST UINT64 *)&(CapacityData.LastLba7)));\r
+\r
+  BlockSize = SwapBytes32 (ReadUnaligned32 ((CONST UINT32 *)&(CapacityData.BlockSize3)));\r
 \r
-  BlockSize           = SwapBytes32 (ReadUnaligned32 ((CONST UINT32 *) &(CapacityData.BlockSize3)));\r
-  \r
   Media->LowestAlignedLba = (CapacityData.LowestAlignLogic2 << 8) |\r
-                             CapacityData.LowestAlignLogic1;\r
-  Media->LogicalBlocksPerPhysicalBlock  = (1 << CapacityData.LogicPerPhysical);\r
+                            CapacityData.LowestAlignLogic1;\r
+  Media->LogicalBlocksPerPhysicalBlock = (1 << CapacityData.LogicPerPhysical);\r
   if (BlockSize == 0) {\r
     //\r
-    //  Get sense data  \r
+    //  Get sense data\r
     //\r
     return UsbBootRequestSense (UsbMass);\r
   } else {\r
@@ -467,7 +477,6 @@ UsbBootReadCapacity16 (
   return Status;\r
 }\r
 \r
-\r
 /**\r
   Execute READ CAPACITY command to request information regarding\r
   the capacity of the installed medium of the device.\r
@@ -481,31 +490,31 @@ UsbBootReadCapacity16 (
   @retval EFI_SUCCESS            The disk geometry is successfully retrieved.\r
   @retval EFI_NOT_READY          The returned block size is zero.\r
   @retval Other                  READ CAPACITY command execution failed.\r
\r
+\r
 **/\r
 EFI_STATUS\r
 UsbBootReadCapacity (\r
-  IN USB_MASS_DEVICE          *UsbMass\r
+  IN USB_MASS_DEVICE  *UsbMass\r
   )\r
 {\r
-  USB_BOOT_READ_CAPACITY_CMD  CapacityCmd;\r
-  USB_BOOT_READ_CAPACITY_DATA CapacityData;\r
-  EFI_BLOCK_IO_MEDIA          *Media;\r
-  EFI_STATUS                  Status;\r
-  UINT32                      BlockSize;\r
+  USB_BOOT_READ_CAPACITY_CMD   CapacityCmd;\r
+  USB_BOOT_READ_CAPACITY_DATA  CapacityData;\r
+  EFI_BLOCK_IO_MEDIA           *Media;\r
+  EFI_STATUS                   Status;\r
+  UINT32                       BlockSize;\r
 \r
-  Media   = &UsbMass->BlockIoMedia;\r
+  Media = &UsbMass->BlockIoMedia;\r
 \r
   ZeroMem (&CapacityCmd, sizeof (USB_BOOT_READ_CAPACITY_CMD));\r
   ZeroMem (&CapacityData, sizeof (USB_BOOT_READ_CAPACITY_DATA));\r
 \r
   CapacityCmd.OpCode = USB_BOOT_READ_CAPACITY_OPCODE;\r
-  CapacityCmd.Lun    = (UINT8) (USB_BOOT_LUN (UsbMass->Lun));\r
+  CapacityCmd.Lun    = (UINT8)(USB_BOOT_LUN (UsbMass->Lun));\r
 \r
   Status = UsbBootExecCmdWithRetry (\r
              UsbMass,\r
              &CapacityCmd,\r
-             (UINT8) sizeof (USB_BOOT_READ_CAPACITY_CMD),\r
+             (UINT8)sizeof (USB_BOOT_READ_CAPACITY_CMD),\r
              EfiUsbDataIn,\r
              &CapacityData,\r
              sizeof (USB_BOOT_READ_CAPACITY_DATA),\r
@@ -520,12 +529,12 @@ UsbBootReadCapacity (
   // from READ CAPACITY data.\r
   //\r
   Media->MediaPresent = TRUE;\r
-  Media->LastBlock    = SwapBytes32 (ReadUnaligned32 ((CONST UINT32 *) CapacityData.LastLba));\r
+  Media->LastBlock    = SwapBytes32 (ReadUnaligned32 ((CONST UINT32 *)CapacityData.LastLba));\r
 \r
-  BlockSize           = SwapBytes32 (ReadUnaligned32 ((CONST UINT32 *) CapacityData.BlockLen));\r
+  BlockSize = SwapBytes32 (ReadUnaligned32 ((CONST UINT32 *)CapacityData.BlockLen));\r
   if (BlockSize == 0) {\r
     //\r
-    //  Get sense data  \r
+    //  Get sense data\r
     //\r
     return UsbBootRequestSense (UsbMass);\r
   } else {\r
@@ -553,15 +562,15 @@ UsbBootReadCapacity (
 **/\r
 EFI_STATUS\r
 UsbScsiModeSense (\r
-  IN USB_MASS_DEVICE          *UsbMass\r
+  IN USB_MASS_DEVICE  *UsbMass\r
   )\r
 {\r
-  EFI_STATUS                       Status;\r
-  USB_SCSI_MODE_SENSE6_CMD         ModeSenseCmd;\r
-  USB_SCSI_MODE_SENSE6_PARA_HEADER ModeParaHeader;\r
-  EFI_BLOCK_IO_MEDIA               *Media;\r
+  EFI_STATUS                        Status;\r
+  USB_SCSI_MODE_SENSE6_CMD          ModeSenseCmd;\r
+  USB_SCSI_MODE_SENSE6_PARA_HEADER  ModeParaHeader;\r
+  EFI_BLOCK_IO_MEDIA                *Media;\r
 \r
-  Media   = &UsbMass->BlockIoMedia;\r
+  Media = &UsbMass->BlockIoMedia;\r
 \r
   ZeroMem (&ModeSenseCmd, sizeof (USB_SCSI_MODE_SENSE6_CMD));\r
   ZeroMem (&ModeParaHeader, sizeof (USB_SCSI_MODE_SENSE6_PARA_HEADER));\r
@@ -569,15 +578,15 @@ UsbScsiModeSense (
   //\r
   // MODE SENSE(6) command is defined in Section 8.2.10 of SCSI-2 Spec\r
   //\r
-  ModeSenseCmd.OpCode         = USB_SCSI_MODE_SENSE6_OPCODE;\r
-  ModeSenseCmd.Lun            = (UINT8) USB_BOOT_LUN (UsbMass->Lun);\r
-  ModeSenseCmd.PageCode       = 0x3F;\r
-  ModeSenseCmd.AllocateLen    = (UINT8) sizeof (USB_SCSI_MODE_SENSE6_PARA_HEADER);\r
+  ModeSenseCmd.OpCode      = USB_SCSI_MODE_SENSE6_OPCODE;\r
+  ModeSenseCmd.Lun         = (UINT8)USB_BOOT_LUN (UsbMass->Lun);\r
+  ModeSenseCmd.PageCode    = 0x3F;\r
+  ModeSenseCmd.AllocateLen = (UINT8)sizeof (USB_SCSI_MODE_SENSE6_PARA_HEADER);\r
 \r
   Status = UsbBootExecCmdWithRetry (\r
              UsbMass,\r
              &ModeSenseCmd,\r
-             (UINT8) sizeof (USB_SCSI_MODE_SENSE6_CMD),\r
+             (UINT8)sizeof (USB_SCSI_MODE_SENSE6_CMD),\r
              EfiUsbDataIn,\r
              &ModeParaHeader,\r
              sizeof (USB_SCSI_MODE_SENSE6_PARA_HEADER),\r
@@ -590,20 +599,19 @@ UsbScsiModeSense (
   // BIT7 of this byte is indicates whether the medium is write protected.\r
   //\r
   if (!EFI_ERROR (Status)) {\r
-    Media->ReadOnly = (BOOLEAN) ((ModeParaHeader.DevicePara & BIT7) != 0);\r
+    Media->ReadOnly = (BOOLEAN)((ModeParaHeader.DevicePara & BIT7) != 0);\r
   }\r
 \r
   return Status;\r
 }\r
 \r
-\r
 /**\r
   Get the parameters for the USB mass storage media.\r
 \r
   This function get the parameters for the USB mass storage media,\r
   It is used both to initialize the media during the Start() phase\r
   of Driver Binding Protocol and to re-initialize it when the media is\r
-  changed. Althought the RemoveableMedia is unlikely to change,\r
+  changed. Although the RemoveableMedia is unlikely to change,\r
   it is also included here.\r
 \r
   @param  UsbMass                The device to retrieve disk gemotric.\r
@@ -614,17 +622,17 @@ UsbScsiModeSense (
 **/\r
 EFI_STATUS\r
 UsbBootGetParams (\r
-  IN USB_MASS_DEVICE          *UsbMass\r
+  IN USB_MASS_DEVICE  *UsbMass\r
   )\r
 {\r
-  EFI_BLOCK_IO_MEDIA          *Media;\r
-  EFI_STATUS                  Status;\r
+  EFI_BLOCK_IO_MEDIA  *Media;\r
+  EFI_STATUS          Status;\r
 \r
-  Media  = &(UsbMass->BlockIoMedia);\r
+  Media = &(UsbMass->BlockIoMedia);\r
 \r
   Status = UsbBootInquiry (UsbMass);\r
   if (EFI_ERROR (Status)) {\r
-    DEBUG ((EFI_D_ERROR, "UsbBootGetParams: UsbBootInquiry (%r)\n", Status));\r
+    DEBUG ((DEBUG_ERROR, "UsbBootGetParams: UsbBootInquiry (%r)\n", Status));\r
     return Status;\r
   }\r
 \r
@@ -633,10 +641,11 @@ UsbBootGetParams (
   // 4 Peripheral Device Types are in spec.\r
   //\r
   if ((UsbMass->Pdt != USB_PDT_DIRECT_ACCESS) &&\r
-       (UsbMass->Pdt != USB_PDT_CDROM) &&\r
-       (UsbMass->Pdt != USB_PDT_OPTICAL) &&\r
-       (UsbMass->Pdt != USB_PDT_SIMPLE_DIRECT)) {\r
-    DEBUG ((EFI_D_ERROR, "UsbBootGetParams: Found an unsupported peripheral type[%d]\n", UsbMass->Pdt));\r
+      (UsbMass->Pdt != USB_PDT_CDROM) &&\r
+      (UsbMass->Pdt != USB_PDT_OPTICAL) &&\r
+      (UsbMass->Pdt != USB_PDT_SIMPLE_DIRECT))\r
+  {\r
+    DEBUG ((DEBUG_ERROR, "UsbBootGetParams: Found an unsupported peripheral type[%d]\n", UsbMass->Pdt));\r
     return EFI_UNSUPPORTED;\r
   }\r
 \r
@@ -652,7 +661,7 @@ UsbBootGetParams (
     //\r
     // Default value 2048 Bytes, in case no media present at first time\r
     //\r
-    Media->BlockSize        = 0x0800;\r
+    Media->BlockSize = 0x0800;\r
   }\r
 \r
   Status = UsbBootDetectMedia (UsbMass);\r
@@ -660,7 +669,6 @@ UsbBootGetParams (
   return Status;\r
 }\r
 \r
-\r
 /**\r
   Detect whether the removable media is present and whether it has changed.\r
 \r
@@ -672,46 +680,64 @@ UsbBootGetParams (
 **/\r
 EFI_STATUS\r
 UsbBootDetectMedia (\r
-  IN  USB_MASS_DEVICE       *UsbMass\r
+  IN  USB_MASS_DEVICE  *UsbMass\r
   )\r
 {\r
-  EFI_BLOCK_IO_MEDIA        OldMedia;\r
-  EFI_BLOCK_IO_MEDIA        *Media;\r
-  UINT8                     CmdSet;\r
-  EFI_TPL                   OldTpl;\r
-  EFI_STATUS                Status;\r
+  EFI_BLOCK_IO_MEDIA  OldMedia;\r
+  EFI_BLOCK_IO_MEDIA  *Media;\r
+  UINT8               CmdSet;\r
+  EFI_STATUS          Status;\r
 \r
-  Media    = &UsbMass->BlockIoMedia;\r
+  Media = &UsbMass->BlockIoMedia;\r
 \r
   CopyMem (&OldMedia, &(UsbMass->BlockIoMedia), sizeof (EFI_BLOCK_IO_MEDIA));\r
 \r
-  CmdSet = ((EFI_USB_INTERFACE_DESCRIPTOR *) (UsbMass->Context))->InterfaceSubClass;\r
+  CmdSet = ((EFI_USB_INTERFACE_DESCRIPTOR *)(UsbMass->Context))->InterfaceSubClass;\r
 \r
   Status = UsbBootIsUnitReady (UsbMass);\r
-  if (EFI_ERROR (Status) && (Status != EFI_MEDIA_CHANGED)) {\r
-    goto ON_ERROR;\r
+  if (EFI_ERROR (Status)) {\r
+    DEBUG ((DEBUG_ERROR, "UsbBootDetectMedia: UsbBootIsUnitReady (%r)\n", Status));\r
   }\r
 \r
-  if ((UsbMass->Pdt != USB_PDT_CDROM) && (CmdSet == USB_MASS_STORE_SCSI)) {\r
+  //\r
+  // Status could be:\r
+  //   EFI_SUCCESS: all good.\r
+  //   EFI_NO_MEDIA: media is not present.\r
+  //   others: HW error.\r
+  // For either EFI_NO_MEDIA, or HW error, skip to get WriteProtected and capacity information.\r
+  //\r
+  if (!EFI_ERROR (Status)) {\r
+    if ((UsbMass->Pdt != USB_PDT_CDROM) && (CmdSet == USB_MASS_STORE_SCSI)) {\r
+      //\r
+      // MODE SENSE is required for the device with PDT of 0x00/0x07/0x0E,\r
+      // according to Section 4 of USB Mass Storage Specification for Bootability.\r
+      // MODE SENSE(10) is useless here, while MODE SENSE(6) defined in SCSI\r
+      // could get the information of Write Protected.\r
+      // Since not all device support this command, skip if fail.\r
+      //\r
+      UsbScsiModeSense (UsbMass);\r
+    }\r
+\r
+    Status = UsbBootReadCapacity (UsbMass);\r
+    if (EFI_ERROR (Status)) {\r
+      DEBUG ((DEBUG_ERROR, "UsbBootDetectMedia: UsbBootReadCapacity (%r)\n", Status));\r
+    }\r
+  }\r
+\r
+  if (EFI_ERROR (Status) && (Status != EFI_NO_MEDIA)) {\r
     //\r
-    // MODE SENSE is required for the device with PDT of 0x00/0x07/0x0E,\r
-    // according to Section 4 of USB Mass Storage Specification for Bootability.\r
-    // MODE SENSE(10) is useless here, while MODE SENSE(6) defined in SCSI\r
-    // could get the information of Write Protected.\r
-    // Since not all device support this command, skip if fail.\r
+    // For NoMedia, BlockIo is still needed.\r
     //\r
-    UsbScsiModeSense (UsbMass);\r
+    return Status;\r
   }\r
 \r
-  Status = UsbBootReadCapacity (UsbMass);\r
-  if (EFI_ERROR (Status)) {\r
-    DEBUG ((EFI_D_ERROR, "UsbBootDetectMedia: UsbBootReadCapacity (%r)\n", Status));\r
-    goto ON_ERROR;\r
+  //\r
+  // Simply reject device whose block size is unacceptable small (==0) or large (>64K).\r
+  //\r
+  if ((Media->BlockSize == 0) || (Media->BlockSize > USB_BOOT_MAX_CARRY_SIZE)) {\r
+    return EFI_DEVICE_ERROR;\r
   }\r
 \r
-  return EFI_SUCCESS;\r
-\r
-ON_ERROR:\r
   //\r
   // Detect whether it is necessary to reinstall the Block I/O Protocol.\r
   //\r
@@ -724,15 +750,18 @@ ON_ERROR:
       (Media->MediaPresent != OldMedia.MediaPresent) ||\r
       (Media->ReadOnly != OldMedia.ReadOnly) ||\r
       (Media->BlockSize != OldMedia.BlockSize) ||\r
-      (Media->LastBlock != OldMedia.LastBlock)) {\r
+      (Media->LastBlock != OldMedia.LastBlock))\r
+  {\r
+    //\r
+    // This function is called from:\r
+    //   Block I/O Protocol APIs, which run at TPL_CALLBACK.\r
+    //   DriverBindingStart(), which raises to TPL_CALLBACK.\r
+    ASSERT (EfiGetCurrentTpl () == TPL_CALLBACK);\r
 \r
     //\r
-    // This function is called by Block I/O Protocol APIs, which run at TPL_NOTIFY.\r
-    // Here we temporarily restore TPL to TPL_CALLBACK to invoke ReinstallProtocolInterface().\r
+    // When it is called from DriverBindingStart(), below reinstall fails.\r
+    // So ignore the return status check.\r
     //\r
-    OldTpl = EfiGetCurrentTpl ();\r
-    gBS->RestoreTPL (TPL_CALLBACK);\r
-\r
     gBS->ReinstallProtocolInterface (\r
            UsbMass->Controller,\r
            &gEfiBlockIoProtocolGuid,\r
@@ -740,11 +769,8 @@ ON_ERROR:
            &UsbMass->BlockIo\r
            );\r
 \r
-    ASSERT (EfiGetCurrentTpl () == TPL_CALLBACK);\r
-    gBS->RaiseTPL (OldTpl);\r
-\r
     //\r
-    // Update MediaId after reinstalling Block I/O Protocol.\r
+    // Reset MediaId after reinstalling Block I/O Protocol.\r
     //\r
     if (Media->MediaPresent != OldMedia.MediaPresent) {\r
       if (Media->MediaPresent) {\r
@@ -756,43 +782,49 @@ ON_ERROR:
 \r
     if ((Media->ReadOnly != OldMedia.ReadOnly) ||\r
         (Media->BlockSize != OldMedia.BlockSize) ||\r
-        (Media->LastBlock != OldMedia.LastBlock)) {\r
+        (Media->LastBlock != OldMedia.LastBlock))\r
+    {\r
       Media->MediaId++;\r
     }\r
+\r
+    Status = Media->MediaPresent ? EFI_MEDIA_CHANGED : EFI_NO_MEDIA;\r
   }\r
 \r
   return Status;\r
 }\r
 \r
-\r
 /**\r
-  Read some blocks from the device.\r
+  Read or write some blocks from the device.\r
 \r
-  @param  UsbMass                The USB mass storage device to read from\r
+  @param  UsbMass                The USB mass storage device to access\r
+  @param  Write                  TRUE for write operation.\r
   @param  Lba                    The start block number\r
-  @param  TotalBlock             Total block number to read\r
-  @param  Buffer                 The buffer to read to\r
+  @param  TotalBlock             Total block number to read or write\r
+  @param  Buffer                 The buffer to read to or write from\r
 \r
-  @retval EFI_SUCCESS            Data are read into the buffer\r
-  @retval Others                 Failed to read all the data\r
+  @retval EFI_SUCCESS            Data are read into the buffer or writen into the device.\r
+  @retval Others                 Failed to read or write all the data\r
 \r
 **/\r
 EFI_STATUS\r
-UsbBootReadBlocks (\r
-  IN  USB_MASS_DEVICE       *UsbMass,\r
-  IN  UINT32                Lba,\r
-  IN  UINTN                 TotalBlock,\r
-  OUT UINT8                 *Buffer\r
+UsbBootReadWriteBlocks (\r
+  IN  USB_MASS_DEVICE  *UsbMass,\r
+  IN  BOOLEAN          Write,\r
+  IN  UINT32           Lba,\r
+  IN  UINTN            TotalBlock,\r
+  IN OUT UINT8         *Buffer\r
   )\r
 {\r
-  USB_BOOT_READ10_CMD       ReadCmd;\r
-  EFI_STATUS                Status;\r
-  UINT16                    Count;\r
-  UINT32                    BlockSize;\r
-  UINT32                    ByteSize;\r
-  UINT32                    Timeout;\r
+  USB_BOOT_READ_WRITE_10_CMD  Cmd;\r
+  EFI_STATUS                  Status;\r
+  UINT32                      Count;\r
+  UINT32                      CountMax;\r
+  UINT32                      BlockSize;\r
+  UINT32                      ByteSize;\r
+  UINT32                      Timeout;\r
 \r
   BlockSize = UsbMass->BlockIoMedia.BlockSize;\r
+  CountMax  = USB_BOOT_MAX_CARRY_SIZE / BlockSize;\r
   Status    = EFI_SUCCESS;\r
 \r
   while (TotalBlock > 0) {\r
@@ -801,29 +833,30 @@ UsbBootReadBlocks (
     // on the device. We must split the total block because the READ10\r
     // command only has 16 bit transfer length (in the unit of block).\r
     //\r
-    Count     = (UINT16)((TotalBlock < USB_BOOT_IO_BLOCKS) ? TotalBlock : USB_BOOT_IO_BLOCKS);\r
-    ByteSize  = (UINT32)Count * BlockSize;\r
+    Count    = (UINT32)MIN (TotalBlock, CountMax);\r
+    Count    = MIN (MAX_UINT16, Count);\r
+    ByteSize = Count * BlockSize;\r
 \r
     //\r
     // USB command's upper limit timeout is 5s. [USB2.0-9.2.6.1]\r
     //\r
-    Timeout = (UINT32) USB_BOOT_GENERAL_CMD_TIMEOUT;\r
+    Timeout = (UINT32)USB_BOOT_GENERAL_CMD_TIMEOUT;\r
 \r
     //\r
     // Fill in the command then execute\r
     //\r
-    ZeroMem (&ReadCmd, sizeof (USB_BOOT_READ10_CMD));\r
+    ZeroMem (&Cmd, sizeof (USB_BOOT_READ_WRITE_10_CMD));\r
 \r
-    ReadCmd.OpCode  = USB_BOOT_READ10_OPCODE;\r
-    ReadCmd.Lun     = (UINT8) (USB_BOOT_LUN (UsbMass->Lun));\r
-    WriteUnaligned32 ((UINT32 *) ReadCmd.Lba, SwapBytes32 (Lba));\r
-    WriteUnaligned16 ((UINT16 *) ReadCmd.TransferLen, SwapBytes16 (Count));\r
+    Cmd.OpCode = Write ? USB_BOOT_WRITE10_OPCODE : USB_BOOT_READ10_OPCODE;\r
+    Cmd.Lun    = (UINT8)(USB_BOOT_LUN (UsbMass->Lun));\r
+    WriteUnaligned32 ((UINT32 *)Cmd.Lba, SwapBytes32 (Lba));\r
+    WriteUnaligned16 ((UINT16 *)Cmd.TransferLen, SwapBytes16 ((UINT16)Count));\r
 \r
     Status = UsbBootExecCmdWithRetry (\r
                UsbMass,\r
-               &ReadCmd,\r
-               (UINT8) sizeof (USB_BOOT_READ10_CMD),\r
-               EfiUsbDataIn,\r
+               &Cmd,\r
+               (UINT8)sizeof (USB_BOOT_READ_WRITE_10_CMD),\r
+               Write ? EfiUsbDataOut : EfiUsbDataIn,\r
                Buffer,\r
                ByteSize,\r
                Timeout\r
@@ -831,86 +864,16 @@ UsbBootReadBlocks (
     if (EFI_ERROR (Status)) {\r
       return Status;\r
     }\r
-    DEBUG ((EFI_D_BLKIO, "UsbBootReadBlocks: LBA (0x%x), Blk (0x%x)\n", Lba, Count));\r
-    Lba        += Count;\r
-    Buffer     += Count * BlockSize;\r
-    TotalBlock -= Count;\r
-  }\r
-\r
-  return Status;\r
-}\r
-\r
-\r
-/**\r
-  Write some blocks to the device.\r
-\r
-  @param  UsbMass                The USB mass storage device to write to\r
-  @param  Lba                    The start block number\r
-  @param  TotalBlock             Total block number to write\r
-  @param  Buffer                 Pointer to the source buffer for the data.\r
-\r
-  @retval EFI_SUCCESS            Data are written into the buffer\r
-  @retval Others                 Failed to write all the data\r
-\r
-**/\r
-EFI_STATUS\r
-UsbBootWriteBlocks (\r
-  IN  USB_MASS_DEVICE         *UsbMass,\r
-  IN  UINT32                  Lba,\r
-  IN  UINTN                   TotalBlock,\r
-  IN  UINT8                   *Buffer\r
-  )\r
-{\r
-  USB_BOOT_WRITE10_CMD  WriteCmd;\r
-  EFI_STATUS            Status;\r
-  UINT16                Count;\r
-  UINT32                BlockSize;\r
-  UINT32                ByteSize;\r
-  UINT32                Timeout;\r
-\r
-  BlockSize = UsbMass->BlockIoMedia.BlockSize;\r
-  Status    = EFI_SUCCESS;\r
-\r
-  while (TotalBlock > 0) {\r
-    //\r
-    // Split the total blocks into smaller pieces to ease the pressure\r
-    // on the device. We must split the total block because the WRITE10\r
-    // command only has 16 bit transfer length (in the unit of block).\r
-    //\r
-    Count     = (UINT16)((TotalBlock < USB_BOOT_IO_BLOCKS) ? TotalBlock : USB_BOOT_IO_BLOCKS);\r
-    ByteSize  = (UINT32)Count * BlockSize;\r
-\r
-    //\r
-    // USB command's upper limit timeout is 5s. [USB2.0-9.2.6.1]\r
-    //\r
-    Timeout = (UINT32) USB_BOOT_GENERAL_CMD_TIMEOUT;\r
-\r
-    //\r
-    // Fill in the write10 command block\r
-    //\r
-    ZeroMem (&WriteCmd, sizeof (USB_BOOT_WRITE10_CMD));\r
-\r
-    WriteCmd.OpCode = USB_BOOT_WRITE10_OPCODE;\r
-    WriteCmd.Lun    = (UINT8) (USB_BOOT_LUN (UsbMass->Lun));\r
-    WriteUnaligned32 ((UINT32 *) WriteCmd.Lba, SwapBytes32 (Lba));\r
-    WriteUnaligned16 ((UINT16 *) WriteCmd.TransferLen, SwapBytes16 (Count));\r
-\r
-    Status = UsbBootExecCmdWithRetry (\r
-               UsbMass,\r
-               &WriteCmd,\r
-               (UINT8) sizeof (USB_BOOT_WRITE10_CMD),\r
-               EfiUsbDataOut,\r
-               Buffer,\r
-               ByteSize,\r
-               Timeout\r
-               );\r
-    if (EFI_ERROR (Status)) {\r
-      return Status;\r
-    }\r
-    DEBUG ((EFI_D_BLKIO, "UsbBootWriteBlocks: LBA (0x%x), Blk (0x%x)\n", Lba, Count));\r
 \r
+    DEBUG ((\r
+      DEBUG_BLKIO,\r
+      "UsbBoot%sBlocks: LBA (0x%lx), Blk (0x%x)\n",\r
+      Write ? L"Write" : L"Read",\r
+      Lba,\r
+      Count\r
+      ));\r
     Lba        += Count;\r
-    Buffer     += Count * BlockSize;\r
+    Buffer     += ByteSize;\r
     TotalBlock -= Count;\r
   }\r
 \r
@@ -918,62 +881,65 @@ UsbBootWriteBlocks (
 }\r
 \r
 /**\r
-  Read some blocks from the device by SCSI 16 byte cmd.\r
+  Read or write some blocks from the device by SCSI 16 byte cmd.\r
 \r
-  @param  UsbMass                The USB mass storage device to read from\r
+  @param  UsbMass                The USB mass storage device to access\r
+  @param  Write                  TRUE for write operation.\r
   @param  Lba                    The start block number\r
-  @param  TotalBlock             Total block number to read\r
-  @param  Buffer                 The buffer to read to\r
-\r
-  @retval EFI_SUCCESS            Data are read into the buffer\r
-  @retval Others                 Failed to read all the data\r
+  @param  TotalBlock             Total block number to read or write\r
+  @param  Buffer                 The buffer to read to or write from\r
 \r
+  @retval EFI_SUCCESS            Data are read into the buffer or writen into the device.\r
+  @retval Others                 Failed to read or write all the data\r
 **/\r
 EFI_STATUS\r
-UsbBootReadBlocks16 (\r
-  IN  USB_MASS_DEVICE       *UsbMass,\r
-  IN  UINT64                Lba,\r
-  IN  UINTN                 TotalBlock,\r
-  OUT UINT8                 *Buffer\r
+UsbBootReadWriteBlocks16 (\r
+  IN  USB_MASS_DEVICE  *UsbMass,\r
+  IN  BOOLEAN          Write,\r
+  IN  UINT64           Lba,\r
+  IN  UINTN            TotalBlock,\r
+  IN OUT UINT8         *Buffer\r
   )\r
 {\r
-  UINT8                     ReadCmd[16];\r
-  EFI_STATUS                Status;\r
-  UINT16                    Count;\r
-  UINT32                    BlockSize;\r
-  UINT32                    ByteSize;\r
-  UINT32                    Timeout;\r
+  UINT8       Cmd[16];\r
+  EFI_STATUS  Status;\r
+  UINT32      Count;\r
+  UINT32      CountMax;\r
+  UINT32      BlockSize;\r
+  UINT32      ByteSize;\r
+  UINT32      Timeout;\r
 \r
   BlockSize = UsbMass->BlockIoMedia.BlockSize;\r
+  CountMax  = USB_BOOT_MAX_CARRY_SIZE / BlockSize;\r
   Status    = EFI_SUCCESS;\r
 \r
   while (TotalBlock > 0) {\r
     //\r
     // Split the total blocks into smaller pieces.\r
     //\r
-    Count     = (UINT16)((TotalBlock < USB_BOOT_IO_BLOCKS) ? TotalBlock : USB_BOOT_IO_BLOCKS);\r
-    ByteSize  = (UINT32)Count * BlockSize;\r
+    Count    = (UINT32)MIN (TotalBlock, CountMax);\r
+    ByteSize Count * BlockSize;\r
 \r
     //\r
     // USB command's upper limit timeout is 5s. [USB2.0-9.2.6.1]\r
     //\r
-    Timeout = (UINT32) USB_BOOT_GENERAL_CMD_TIMEOUT;\r
+    Timeout = (UINT32)USB_BOOT_GENERAL_CMD_TIMEOUT;\r
 \r
     //\r
     // Fill in the command then execute\r
     //\r
-    ZeroMem (ReadCmd, sizeof (ReadCmd));\r
+    ZeroMem (Cmd, sizeof (Cmd));\r
 \r
-    ReadCmd[0]  = EFI_SCSI_OP_READ16;\r
-    ReadCmd[1]  = (UINT8) ((USB_BOOT_LUN (UsbMass->Lun) & 0xE0));\r
-    WriteUnaligned64 ((UINT64 *) &ReadCmd[2], SwapBytes64 (Lba));\r
-    WriteUnaligned32 ((UINT32 *) &ReadCmd[10], SwapBytes32 (Count));\r
+    Cmd[0] = Write ? EFI_SCSI_OP_WRITE16 : EFI_SCSI_OP_READ16;\r
+    Cmd[1] = (UINT8)((USB_BOOT_LUN (UsbMass->Lun) & 0xE0));\r
+    WriteUnaligned64 ((UINT64 *)&Cmd[2], SwapBytes64 (Lba));\r
+    WriteUnaligned32 ((UINT32 *)&Cmd[10], SwapBytes32 (Count));\r
 \r
     Status = UsbBootExecCmdWithRetry (\r
                UsbMass,\r
-               ReadCmd,\r
-               (UINT8) sizeof (ReadCmd),\r
-               EfiUsbDataIn,\r
+               Cmd,\r
+               (UINT8)sizeof (Cmd),\r
+               Write ? EfiUsbDataOut : EfiUsbDataIn,\r
                Buffer,\r
                ByteSize,\r
                Timeout\r
@@ -981,83 +947,16 @@ UsbBootReadBlocks16 (
     if (EFI_ERROR (Status)) {\r
       return Status;\r
     }\r
-    DEBUG ((EFI_D_BLKIO, "UsbBootReadBlocks16: LBA (0x%lx), Blk (0x%x)\n", Lba, Count));\r
-    Lba        += Count;\r
-    Buffer     += Count * BlockSize;\r
-    TotalBlock -= Count;\r
-  }\r
-\r
-  return Status;\r
-}\r
-\r
-\r
-/**\r
-  Write some blocks to the device by SCSI 16 byte cmd.\r
-\r
-  @param  UsbMass                The USB mass storage device to write to\r
-  @param  Lba                    The start block number\r
-  @param  TotalBlock             Total block number to write\r
-  @param  Buffer                 Pointer to the source buffer for the data.\r
 \r
-  @retval EFI_SUCCESS            Data are written into the buffer\r
-  @retval Others                 Failed to write all the data\r
-\r
-**/\r
-EFI_STATUS\r
-UsbBootWriteBlocks16 (\r
-  IN  USB_MASS_DEVICE         *UsbMass,\r
-  IN  UINT64                  Lba,\r
-  IN  UINTN                   TotalBlock,\r
-  IN  UINT8                   *Buffer\r
-  )\r
-{\r
-  UINT8                 WriteCmd[16];\r
-  EFI_STATUS            Status;\r
-  UINT16                Count;\r
-  UINT32                BlockSize;\r
-  UINT32                ByteSize;\r
-  UINT32                Timeout;\r
-\r
-  BlockSize = UsbMass->BlockIoMedia.BlockSize;\r
-  Status    = EFI_SUCCESS;\r
-\r
-  while (TotalBlock > 0) {\r
-    //\r
-    // Split the total blocks into smaller pieces.\r
-    //\r
-    Count     = (UINT16)((TotalBlock < USB_BOOT_IO_BLOCKS) ? TotalBlock : USB_BOOT_IO_BLOCKS);\r
-    ByteSize  = (UINT32)Count * BlockSize;\r
-\r
-    //\r
-    // USB command's upper limit timeout is 5s. [USB2.0-9.2.6.1]\r
-    //\r
-    Timeout = (UINT32) USB_BOOT_GENERAL_CMD_TIMEOUT;\r
-\r
-    //\r
-    // Fill in the write16 command block\r
-    //\r
-    ZeroMem (WriteCmd, sizeof (WriteCmd));\r
-\r
-    WriteCmd[0]  = EFI_SCSI_OP_WRITE16;\r
-    WriteCmd[1]  = (UINT8) ((USB_BOOT_LUN (UsbMass->Lun) & 0xE0));\r
-    WriteUnaligned64 ((UINT64 *) &WriteCmd[2], SwapBytes64 (Lba));\r
-    WriteUnaligned32 ((UINT32 *) &WriteCmd[10], SwapBytes32 (Count));\r
-\r
-    Status = UsbBootExecCmdWithRetry (\r
-               UsbMass,\r
-               WriteCmd,\r
-               (UINT8) sizeof (WriteCmd),\r
-               EfiUsbDataOut,\r
-               Buffer,\r
-               ByteSize,\r
-               Timeout\r
-               );\r
-    if (EFI_ERROR (Status)) {\r
-      return Status;\r
-    }\r
-    DEBUG ((EFI_D_BLKIO, "UsbBootWriteBlocks: LBA (0x%lx), Blk (0x%x)\n", Lba, Count));\r
+    DEBUG ((\r
+      DEBUG_BLKIO,\r
+      "UsbBoot%sBlocks16: LBA (0x%lx), Blk (0x%x)\n",\r
+      Write ? L"Write" : L"Read",\r
+      Lba,\r
+      Count\r
+      ));\r
     Lba        += Count;\r
-    Buffer     += Count * BlockSize;\r
+    Buffer     += ByteSize;\r
     TotalBlock -= Count;\r
   }\r
 \r
@@ -1076,14 +975,14 @@ UsbBootWriteBlocks16 (
 **/\r
 EFI_STATUS\r
 UsbClearEndpointStall (\r
-  IN EFI_USB_IO_PROTOCOL    *UsbIo,\r
-  IN UINT8                  EndpointAddr\r
+  IN EFI_USB_IO_PROTOCOL  *UsbIo,\r
+  IN UINT8                EndpointAddr\r
   )\r
 {\r
-  EFI_USB_DEVICE_REQUEST    Request;\r
-  EFI_STATUS                Status;\r
-  UINT32                    CmdResult;\r
-  UINT32                    Timeout;\r
+  EFI_USB_DEVICE_REQUEST  Request;\r
+  EFI_STATUS              Status;\r
+  UINT32                  CmdResult;\r
+  UINT32                  Timeout;\r
 \r
   Request.RequestType = 0x02;\r
   Request.Request     = USB_REQ_CLEAR_FEATURE;\r