2007-07-11 10:47:37 +02:00
|
|
|
/** @file
|
2009-01-12 04:11:00 +01:00
|
|
|
USB Mass Storage Driver that manages USB Mass Storage Device and produces Block I/O Protocol.
|
2008-07-23 10:30:25 +02:00
|
|
|
|
2008-06-27 10:09:00 +02:00
|
|
|
Copyright (c) 2007 - 2008, Intel Corporation
|
2007-07-11 10:47:37 +02:00
|
|
|
All rights reserved. This program and the accompanying materials
|
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#include "UsbMassImpl.h"
|
|
|
|
|
2009-02-13 04:36:02 +01:00
|
|
|
#define USB_MASS_TRANSPORT_COUNT 3
|
2009-01-12 04:11:00 +01:00
|
|
|
//
|
|
|
|
// Array of USB transport interfaces.
|
|
|
|
//
|
2009-02-13 04:36:02 +01:00
|
|
|
USB_MASS_TRANSPORT *mUsbMassTransport[USB_MASS_TRANSPORT_COUNT] = {
|
2007-07-11 10:47:37 +02:00
|
|
|
&mUsbCbi0Transport,
|
|
|
|
&mUsbCbi1Transport,
|
|
|
|
&mUsbBotTransport,
|
|
|
|
};
|
|
|
|
|
2009-01-12 04:11:00 +01:00
|
|
|
EFI_DRIVER_BINDING_PROTOCOL gUSBMassDriverBinding = {
|
|
|
|
USBMassDriverBindingSupported,
|
|
|
|
USBMassDriverBindingStart,
|
|
|
|
USBMassDriverBindingStop,
|
|
|
|
0x11,
|
|
|
|
NULL,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2007-07-11 10:47:37 +02:00
|
|
|
/**
|
2009-01-12 04:11:00 +01:00
|
|
|
Reset the block device.
|
|
|
|
|
|
|
|
This function implements EFI_BLOCK_IO_PROTOCOL.Reset().
|
|
|
|
It resets the block device hardware.
|
|
|
|
ExtendedVerification is ignored in this implementation.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2009-01-12 04:11:00 +01:00
|
|
|
@param This Indicates a pointer to the calling context.
|
|
|
|
@param ExtendedVerification Indicates that the driver may perform a more exhaustive
|
|
|
|
verification operation of the device during reset.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2009-01-12 04:11:00 +01:00
|
|
|
@retval EFI_SUCCESS The block device was reset.
|
|
|
|
@retval EFI_DEVICE_ERROR The block device is not functioning correctly and could not be reset.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
2008-02-13 10:08:24 +01:00
|
|
|
EFIAPI
|
2007-07-11 10:47:37 +02:00
|
|
|
UsbMassReset (
|
|
|
|
IN EFI_BLOCK_IO_PROTOCOL *This,
|
|
|
|
IN BOOLEAN ExtendedVerification
|
|
|
|
)
|
|
|
|
{
|
|
|
|
USB_MASS_DEVICE *UsbMass;
|
2007-10-08 08:14:13 +02:00
|
|
|
EFI_TPL OldTpl;
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
2009-01-12 04:11:00 +01:00
|
|
|
//
|
|
|
|
// Raise TPL to TPL_NOTIFY to serialize all its operations
|
|
|
|
// to protect shared data structures.
|
|
|
|
//
|
|
|
|
OldTpl = gBS->RaiseTPL (TPL_NOTIFY);
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2009-01-12 04:11:00 +01:00
|
|
|
UsbMass = USB_MASS_DEVICE_FROM_BLOCK_IO (This);
|
2007-10-08 08:14:13 +02:00
|
|
|
Status = UsbMass->Transport->Reset (UsbMass->Context, ExtendedVerification);
|
|
|
|
|
|
|
|
gBS->RestoreTPL (OldTpl);
|
|
|
|
|
|
|
|
return Status;
|
2007-07-11 10:47:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-01-12 04:11:00 +01:00
|
|
|
Reads the requested number of blocks from the device.
|
|
|
|
|
|
|
|
This function implements EFI_BLOCK_IO_PROTOCOL.ReadBlocks().
|
|
|
|
It reads the requested number of blocks from the device.
|
|
|
|
All the blocks are read, or an error is returned.
|
|
|
|
|
|
|
|
@param This Indicates a pointer to the calling context.
|
|
|
|
@param MediaId The media ID that the read request is for.
|
|
|
|
@param Lba The starting logical block address to read from on the device.
|
|
|
|
@param BufferSize The size of the Buffer in bytes.
|
|
|
|
This must be a multiple of the intrinsic block size of the device.
|
|
|
|
@param Buffer A pointer to the destination buffer for the data. The caller is
|
|
|
|
responsible for either having implicit or explicit ownership of the buffer.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The data was read correctly from the device.
|
|
|
|
@retval EFI_DEVICE_ERROR The device reported an error while attempting to perform the read operation.
|
|
|
|
@retval EFI_NO_MEDIA There is no media in the device.
|
|
|
|
@retval EFI_MEDIA_CHANGED The MediaId is not for the current media.
|
|
|
|
@retval EFI_BAD_BUFFER_SIZE The BufferSize parameter is not a multiple of the intrinsic block size of the device.
|
|
|
|
@retval EFI_INVALID_PARAMETER The read request contains LBAs that are not valid,
|
|
|
|
or the buffer is not on proper alignment.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
2008-02-13 10:08:24 +01:00
|
|
|
EFIAPI
|
2007-07-11 10:47:37 +02:00
|
|
|
UsbMassReadBlocks (
|
|
|
|
IN EFI_BLOCK_IO_PROTOCOL *This,
|
|
|
|
IN UINT32 MediaId,
|
|
|
|
IN EFI_LBA Lba,
|
|
|
|
IN UINTN BufferSize,
|
|
|
|
OUT VOID *Buffer
|
|
|
|
)
|
|
|
|
{
|
|
|
|
USB_MASS_DEVICE *UsbMass;
|
|
|
|
EFI_BLOCK_IO_MEDIA *Media;
|
|
|
|
EFI_STATUS Status;
|
2007-10-08 08:14:13 +02:00
|
|
|
EFI_TPL OldTpl;
|
2007-07-11 10:47:37 +02:00
|
|
|
UINTN TotalBlock;
|
2008-02-13 10:08:24 +01:00
|
|
|
|
2007-07-11 10:47:37 +02:00
|
|
|
//
|
|
|
|
// First, validate the parameters
|
|
|
|
//
|
|
|
|
if ((Buffer == NULL) || (BufferSize == 0)) {
|
2009-01-12 04:11:00 +01:00
|
|
|
return EFI_INVALID_PARAMETER;
|
2007-07-11 10:47:37 +02:00
|
|
|
}
|
2008-02-13 10:08:24 +01:00
|
|
|
|
2009-01-12 04:11:00 +01:00
|
|
|
//
|
|
|
|
// Raise TPL to TPL_NOTIFY to serialize all its operations
|
|
|
|
// to protect shared data structures.
|
|
|
|
//
|
|
|
|
OldTpl = gBS->RaiseTPL (TPL_NOTIFY);
|
|
|
|
UsbMass = USB_MASS_DEVICE_FROM_BLOCK_IO (This);
|
|
|
|
Media = &UsbMass->BlockIoMedia;
|
|
|
|
|
2007-07-11 10:47:37 +02:00
|
|
|
//
|
2007-10-08 08:14:13 +02:00
|
|
|
// If it is a removable media, such as CD-Rom or Usb-Floppy,
|
2009-01-12 04:11:00 +01:00
|
|
|
// need to detect the media before each read/write. While some of
|
2007-10-08 08:14:13 +02:00
|
|
|
// Usb-Flash is marked as removable media.
|
2008-02-13 10:08:24 +01:00
|
|
|
//
|
2009-01-12 04:11:00 +01:00
|
|
|
if (Media->RemovableMedia) {
|
2007-10-08 08:14:13 +02:00
|
|
|
Status = UsbBootDetectMedia (UsbMass);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
goto ON_EXIT;
|
2008-02-13 10:08:24 +01:00
|
|
|
}
|
2007-07-11 10:47:37 +02:00
|
|
|
}
|
2008-02-13 10:08:24 +01:00
|
|
|
|
2007-07-11 10:47:37 +02:00
|
|
|
//
|
2009-01-12 04:11:00 +01:00
|
|
|
// BufferSize must be a multiple of the intrinsic block size of the device.
|
2007-07-11 10:47:37 +02:00
|
|
|
//
|
|
|
|
if ((BufferSize % Media->BlockSize) != 0) {
|
2007-10-08 08:14:13 +02:00
|
|
|
Status = EFI_BAD_BUFFER_SIZE;
|
|
|
|
goto ON_EXIT;
|
2007-07-11 10:47:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TotalBlock = BufferSize / Media->BlockSize;
|
|
|
|
|
2009-01-12 04:11:00 +01:00
|
|
|
//
|
|
|
|
// Make sure the range to read is valid.
|
|
|
|
//
|
2007-07-11 10:47:37 +02:00
|
|
|
if (Lba + TotalBlock - 1 > Media->LastBlock) {
|
2008-02-13 10:08:24 +01:00
|
|
|
Status = EFI_INVALID_PARAMETER;
|
|
|
|
goto ON_EXIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(Media->MediaPresent)) {
|
|
|
|
Status = EFI_NO_MEDIA;
|
|
|
|
goto ON_EXIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (MediaId != Media->MediaId) {
|
|
|
|
Status = EFI_MEDIA_CHANGED;
|
2007-10-08 08:14:13 +02:00
|
|
|
goto ON_EXIT;
|
2007-07-11 10:47:37 +02:00
|
|
|
}
|
2008-02-13 10:08:24 +01:00
|
|
|
|
2007-07-11 10:47:37 +02:00
|
|
|
Status = UsbBootReadBlocks (UsbMass, (UINT32) Lba, TotalBlock, Buffer);
|
|
|
|
if (EFI_ERROR (Status)) {
|
2008-02-13 10:08:24 +01:00
|
|
|
DEBUG ((EFI_D_ERROR, "UsbMassReadBlocks: UsbBootReadBlocks (%r) -> Reset\n", Status));
|
2007-07-11 10:47:37 +02:00
|
|
|
UsbMassReset (This, TRUE);
|
|
|
|
}
|
|
|
|
|
2007-10-08 08:14:13 +02:00
|
|
|
ON_EXIT:
|
|
|
|
gBS->RestoreTPL (OldTpl);
|
2007-07-11 10:47:37 +02:00
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2009-01-12 04:11:00 +01:00
|
|
|
Writes a specified number of blocks to the device.
|
|
|
|
|
|
|
|
This function implements EFI_BLOCK_IO_PROTOCOL.WriteBlocks().
|
|
|
|
It writes a specified number of blocks to the device.
|
|
|
|
All blocks are written, or an error is returned.
|
|
|
|
|
|
|
|
@param This Indicates a pointer to the calling context.
|
|
|
|
@param MediaId The media ID that the write request is for.
|
|
|
|
@param Lba The starting logical block address to be written.
|
|
|
|
@param BufferSize The size of the Buffer in bytes.
|
|
|
|
This must be a multiple of the intrinsic block size of the device.
|
|
|
|
@param Buffer Pointer to the source buffer for the data.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The data were written correctly to the device.
|
|
|
|
@retval EFI_WRITE_PROTECTED The device cannot be written to.
|
|
|
|
@retval EFI_NO_MEDIA There is no media in the device.
|
|
|
|
@retval EFI_MEDIA_CHANGED The MediaId is not for the current media.
|
|
|
|
@retval EFI_DEVICE_ERROR The device reported an error while attempting to perform the write operation.
|
|
|
|
@retval EFI_BAD_BUFFER_SIZE The BufferSize parameter is not a multiple of the intrinsic
|
|
|
|
block size of the device.
|
|
|
|
@retval EFI_INVALID_PARAMETER The write request contains LBAs that are not valid,
|
|
|
|
or the buffer is not on proper alignment.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
2008-02-13 10:08:24 +01:00
|
|
|
EFIAPI
|
2007-07-11 10:47:37 +02:00
|
|
|
UsbMassWriteBlocks (
|
|
|
|
IN EFI_BLOCK_IO_PROTOCOL *This,
|
|
|
|
IN UINT32 MediaId,
|
|
|
|
IN EFI_LBA Lba,
|
|
|
|
IN UINTN BufferSize,
|
|
|
|
IN VOID *Buffer
|
|
|
|
)
|
|
|
|
{
|
|
|
|
USB_MASS_DEVICE *UsbMass;
|
|
|
|
EFI_BLOCK_IO_MEDIA *Media;
|
|
|
|
EFI_STATUS Status;
|
2007-10-08 08:14:13 +02:00
|
|
|
EFI_TPL OldTpl;
|
2007-07-11 10:47:37 +02:00
|
|
|
UINTN TotalBlock;
|
|
|
|
|
|
|
|
//
|
|
|
|
// First, validate the parameters
|
|
|
|
//
|
|
|
|
if ((Buffer == NULL) || (BufferSize == 0)) {
|
2009-01-12 04:11:00 +01:00
|
|
|
return EFI_INVALID_PARAMETER;
|
2007-07-11 10:47:37 +02:00
|
|
|
}
|
2008-02-13 10:08:24 +01:00
|
|
|
|
2007-07-11 10:47:37 +02:00
|
|
|
//
|
2009-01-12 04:11:00 +01:00
|
|
|
// Raise TPL to TPL_NOTIFY to serialize all its operations
|
|
|
|
// to protect shared data structures.
|
2008-02-13 10:08:24 +01:00
|
|
|
//
|
2009-01-12 04:11:00 +01:00
|
|
|
OldTpl = gBS->RaiseTPL (TPL_NOTIFY);
|
|
|
|
UsbMass = USB_MASS_DEVICE_FROM_BLOCK_IO (This);
|
|
|
|
Media = &UsbMass->BlockIoMedia;
|
|
|
|
|
|
|
|
//
|
|
|
|
// If it is a removable media, such as CD-Rom or Usb-Floppy,
|
|
|
|
// need to detect the media before each read/write. Some of
|
|
|
|
// USB Flash is marked as removable media.
|
2008-02-13 10:08:24 +01:00
|
|
|
//
|
2009-01-12 04:11:00 +01:00
|
|
|
if (Media->RemovableMedia) {
|
2007-10-08 08:14:13 +02:00
|
|
|
Status = UsbBootDetectMedia (UsbMass);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
goto ON_EXIT;
|
2008-02-13 10:08:24 +01:00
|
|
|
}
|
2007-07-11 10:47:37 +02:00
|
|
|
}
|
2008-02-13 10:08:24 +01:00
|
|
|
|
2007-07-11 10:47:37 +02:00
|
|
|
//
|
2009-01-12 04:11:00 +01:00
|
|
|
// BufferSize must be a multiple of the intrinsic block size of the device.
|
2007-07-11 10:47:37 +02:00
|
|
|
//
|
|
|
|
if ((BufferSize % Media->BlockSize) != 0) {
|
2007-10-08 08:14:13 +02:00
|
|
|
Status = EFI_BAD_BUFFER_SIZE;
|
|
|
|
goto ON_EXIT;
|
2007-07-11 10:47:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TotalBlock = BufferSize / Media->BlockSize;
|
|
|
|
|
2009-01-12 04:11:00 +01:00
|
|
|
//
|
|
|
|
// Make sure the range to write is valid.
|
|
|
|
//
|
2007-07-11 10:47:37 +02:00
|
|
|
if (Lba + TotalBlock - 1 > Media->LastBlock) {
|
2008-02-13 10:08:24 +01:00
|
|
|
Status = EFI_INVALID_PARAMETER;
|
2007-10-08 08:14:13 +02:00
|
|
|
goto ON_EXIT;
|
2007-07-11 10:47:37 +02:00
|
|
|
}
|
2008-02-13 10:08:24 +01:00
|
|
|
|
|
|
|
if (!(Media->MediaPresent)) {
|
|
|
|
Status = EFI_NO_MEDIA;
|
|
|
|
goto ON_EXIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (MediaId != Media->MediaId) {
|
|
|
|
Status = EFI_MEDIA_CHANGED;
|
|
|
|
goto ON_EXIT;
|
|
|
|
}
|
|
|
|
|
2007-07-11 10:47:37 +02:00
|
|
|
//
|
|
|
|
// Try to write the data even the device is marked as ReadOnly,
|
|
|
|
// and clear the status should the write succeed.
|
|
|
|
//
|
|
|
|
Status = UsbBootWriteBlocks (UsbMass, (UINT32) Lba, TotalBlock, Buffer);
|
|
|
|
if (EFI_ERROR (Status)) {
|
2008-02-13 10:08:24 +01:00
|
|
|
DEBUG ((EFI_D_ERROR, "UsbMassWriteBlocks: UsbBootWriteBlocks (%r) -> Reset\n", Status));
|
2007-07-11 10:47:37 +02:00
|
|
|
UsbMassReset (This, TRUE);
|
|
|
|
}
|
2008-02-13 10:08:24 +01:00
|
|
|
|
2007-10-08 08:14:13 +02:00
|
|
|
ON_EXIT:
|
|
|
|
gBS->RestoreTPL (OldTpl);
|
2007-07-11 10:47:37 +02:00
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-01-12 04:11:00 +01:00
|
|
|
Flushes all modified data to a physical block device.
|
|
|
|
|
|
|
|
This function implements EFI_BLOCK_IO_PROTOCOL.FlushBlocks().
|
|
|
|
USB mass storage device doesn't support write cache,
|
|
|
|
so return EFI_SUCCESS directly.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2009-01-12 04:11:00 +01:00
|
|
|
@param This Indicates a pointer to the calling context.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2009-01-12 04:11:00 +01:00
|
|
|
@retval EFI_SUCCESS All outstanding data were written correctly to the device.
|
|
|
|
@retval EFI_DEVICE_ERROR The device reported an error while attempting to write data.
|
|
|
|
@retval EFI_NO_MEDIA There is no media in the device.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
2008-02-13 10:08:24 +01:00
|
|
|
EFIAPI
|
2007-07-11 10:47:37 +02:00
|
|
|
UsbMassFlushBlocks (
|
|
|
|
IN EFI_BLOCK_IO_PROTOCOL *This
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2008-06-27 10:09:00 +02:00
|
|
|
/**
|
2009-01-12 04:11:00 +01:00
|
|
|
Initialize the media parameter data for EFI_BLOCK_IO_MEDIA of Block I/O Protocol.
|
2008-06-27 10:09:00 +02:00
|
|
|
|
|
|
|
@param UsbMass The USB mass storage device
|
|
|
|
|
2009-01-12 04:11:00 +01:00
|
|
|
@retval EFI_SUCCESS The media parameters are updated successfully.
|
2008-06-27 10:09:00 +02:00
|
|
|
@retval Others Failed to get the media parameters.
|
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
UsbMassInitMedia (
|
|
|
|
IN USB_MASS_DEVICE *UsbMass
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_BLOCK_IO_MEDIA *Media;
|
|
|
|
EFI_STATUS Status;
|
|
|
|
UINTN Index;
|
|
|
|
|
|
|
|
Media = &UsbMass->BlockIoMedia;
|
|
|
|
|
|
|
|
//
|
2009-01-12 04:11:00 +01:00
|
|
|
// Fields of EFI_BLOCK_IO_MEDIA are defined in UEFI 2.0 spec,
|
|
|
|
// section for Block I/O Protocol.
|
2008-06-27 10:09:00 +02:00
|
|
|
//
|
|
|
|
Media->MediaPresent = FALSE;
|
|
|
|
Media->LogicalPartition = FALSE;
|
|
|
|
Media->ReadOnly = FALSE;
|
|
|
|
Media->WriteCaching = FALSE;
|
|
|
|
Media->IoAlign = 0;
|
|
|
|
Media->MediaId = 1;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Some device may spend several seconds before it is ready.
|
|
|
|
// Try several times before giving up. Wait 5s at most.
|
|
|
|
//
|
|
|
|
Status = EFI_SUCCESS;
|
|
|
|
|
|
|
|
for (Index = 0; Index < USB_BOOT_INIT_MEDIA_RETRY; Index++) {
|
|
|
|
|
|
|
|
Status = UsbBootGetParams (UsbMass);
|
2009-01-12 04:11:00 +01:00
|
|
|
if ((Status != EFI_MEDIA_CHANGED) && (Status != EFI_NOT_READY) && (Status != EFI_TIMEOUT)) {
|
2008-06-27 10:09:00 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
Status = UsbBootIsUnitReady (UsbMass);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
gBS->Stall (USB_BOOT_RETRY_UNIT_READY_STALL * (Index + 1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
2008-07-23 10:30:25 +02:00
|
|
|
/**
|
2009-01-12 04:11:00 +01:00
|
|
|
Initilize the USB Mass Storage transport.
|
|
|
|
|
|
|
|
This function tries to find the matching USB Mass Storage transport
|
|
|
|
protocol for USB device. If found, initializes the matching transport.
|
2008-07-23 10:30:25 +02:00
|
|
|
|
|
|
|
@param This The USB mass driver's driver binding.
|
|
|
|
@param Controller The device to test.
|
|
|
|
@param Transport The pointer to pointer to USB_MASS_TRANSPORT.
|
2009-01-12 08:30:42 +01:00
|
|
|
@param Context The parameter for USB_MASS_DEVICE.Context.
|
2008-07-23 10:30:25 +02:00
|
|
|
@param MaxLun Get the MaxLun if is BOT dev.
|
|
|
|
|
2008-12-12 07:04:02 +01:00
|
|
|
@retval EFI_SUCCESS The initialization is successful.
|
2009-01-12 04:11:00 +01:00
|
|
|
@retval EFI_UNSUPPORTED No matching transport protocol is found.
|
2008-12-12 07:04:02 +01:00
|
|
|
@retval Others Failed to initialize dev.
|
2008-07-23 10:30:25 +02:00
|
|
|
|
|
|
|
**/
|
2008-06-27 10:09:00 +02:00
|
|
|
EFI_STATUS
|
|
|
|
UsbMassInitTransport (
|
|
|
|
IN EFI_DRIVER_BINDING_PROTOCOL *This,
|
|
|
|
IN EFI_HANDLE Controller,
|
|
|
|
OUT USB_MASS_TRANSPORT **Transport,
|
|
|
|
OUT VOID **Context,
|
|
|
|
OUT UINT8 *MaxLun
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_USB_IO_PROTOCOL *UsbIo;
|
|
|
|
EFI_USB_INTERFACE_DESCRIPTOR Interface;
|
|
|
|
UINT8 Index;
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
Status = gBS->OpenProtocol (
|
|
|
|
Controller,
|
|
|
|
&gEfiUsbIoProtocolGuid,
|
2008-06-27 10:17:11 +02:00
|
|
|
(VOID **) &UsbIo,
|
2008-06-27 10:09:00 +02:00
|
|
|
This->DriverBindingHandle,
|
|
|
|
Controller,
|
|
|
|
EFI_OPEN_PROTOCOL_BY_DRIVER
|
|
|
|
);
|
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
Status = UsbIo->UsbGetInterfaceDescriptor (UsbIo, &Interface);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
goto ON_EXIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
Status = EFI_UNSUPPORTED;
|
|
|
|
|
2009-01-12 04:11:00 +01:00
|
|
|
//
|
|
|
|
// Traverse the USB_MASS_TRANSPORT arrary and try to find the
|
|
|
|
// matching transport protocol.
|
|
|
|
// If not found, return EFI_UNSUPPORTED.
|
|
|
|
// If found, execute USB_MASS_TRANSPORT.Init() to initialize the transport context.
|
|
|
|
//
|
2009-02-13 04:36:02 +01:00
|
|
|
for (Index = 0; Index < USB_MASS_TRANSPORT_COUNT; Index++) {
|
2008-06-27 10:09:00 +02:00
|
|
|
*Transport = mUsbMassTransport[Index];
|
|
|
|
|
|
|
|
if (Interface.InterfaceProtocol == (*Transport)->Protocol) {
|
|
|
|
Status = (*Transport)->Init (UsbIo, Context);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
goto ON_EXIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2009-01-12 04:11:00 +01:00
|
|
|
// For BOT device, try to get its max LUN.
|
|
|
|
// If max LUN is 0, then it is a non-lun device.
|
|
|
|
// Otherwise, it is a multi-lun device.
|
2008-06-27 10:09:00 +02:00
|
|
|
//
|
|
|
|
if ((*Transport)->Protocol == USB_MASS_STORE_BOT) {
|
|
|
|
(*Transport)->GetMaxLun (*Context, MaxLun);
|
|
|
|
}
|
|
|
|
|
|
|
|
ON_EXIT:
|
|
|
|
gBS->CloseProtocol (
|
|
|
|
Controller,
|
|
|
|
&gEfiUsbIoProtocolGuid,
|
|
|
|
This->DriverBindingHandle,
|
|
|
|
Controller
|
|
|
|
);
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
2008-07-23 10:30:25 +02:00
|
|
|
/**
|
2009-01-12 08:30:42 +01:00
|
|
|
Initialize data for device that supports multiple LUNSs.
|
2008-07-23 10:30:25 +02:00
|
|
|
|
2009-01-12 08:30:42 +01:00
|
|
|
@param This The Driver Binding Protocol instance.
|
|
|
|
@param Controller The device to initialize.
|
|
|
|
@param Transport Pointer to USB_MASS_TRANSPORT.
|
|
|
|
@param Context Parameter for USB_MASS_DEVICE.Context.
|
|
|
|
@param DevicePath The remaining device path.
|
|
|
|
@param MaxLun The max LUN number.
|
2008-07-23 10:30:25 +02:00
|
|
|
|
2009-01-12 08:30:42 +01:00
|
|
|
@retval EFI_SUCCESS At least one LUN is initialized successfully.
|
|
|
|
@retval EFI_OUT_OF_RESOURCES Out of resource while creating device path node.
|
|
|
|
@retval Other Initialization fails.
|
2008-07-23 10:30:25 +02:00
|
|
|
|
|
|
|
**/
|
2008-06-27 10:09:00 +02:00
|
|
|
EFI_STATUS
|
|
|
|
UsbMassInitMultiLun (
|
2009-01-12 08:30:42 +01:00
|
|
|
IN EFI_DRIVER_BINDING_PROTOCOL *This,
|
2008-06-27 10:09:00 +02:00
|
|
|
IN EFI_HANDLE Controller,
|
|
|
|
IN USB_MASS_TRANSPORT *Transport,
|
|
|
|
IN VOID *Context,
|
|
|
|
IN EFI_DEVICE_PATH_PROTOCOL *DevicePath,
|
|
|
|
IN UINT8 MaxLun
|
|
|
|
)
|
|
|
|
{
|
|
|
|
USB_MASS_DEVICE *UsbMass;
|
|
|
|
EFI_USB_IO_PROTOCOL *UsbIo;
|
|
|
|
DEVICE_LOGICAL_UNIT_DEVICE_PATH LunNode;
|
|
|
|
UINT8 Index;
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
ASSERT (MaxLun > 0);
|
|
|
|
|
|
|
|
for (Index = 0; Index <= MaxLun; Index++) {
|
|
|
|
|
|
|
|
DEBUG ((EFI_D_INFO, "UsbMassInitMultiLun: Start to initialize No.%d logic unit\n", Index));
|
|
|
|
|
|
|
|
UsbIo = NULL;
|
|
|
|
UsbMass = AllocateZeroPool (sizeof (USB_MASS_DEVICE));
|
2009-01-12 08:30:42 +01:00
|
|
|
ASSERT (UsbMass != NULL);
|
2008-06-27 10:09:00 +02:00
|
|
|
|
|
|
|
UsbMass->Signature = USB_MASS_SIGNATURE;
|
|
|
|
UsbMass->UsbIo = UsbIo;
|
|
|
|
UsbMass->BlockIo.Media = &UsbMass->BlockIoMedia;
|
|
|
|
UsbMass->BlockIo.Reset = UsbMassReset;
|
|
|
|
UsbMass->BlockIo.ReadBlocks = UsbMassReadBlocks;
|
|
|
|
UsbMass->BlockIo.WriteBlocks = UsbMassWriteBlocks;
|
|
|
|
UsbMass->BlockIo.FlushBlocks = UsbMassFlushBlocks;
|
|
|
|
UsbMass->OpticalStorage = FALSE;
|
|
|
|
UsbMass->Transport = Transport;
|
|
|
|
UsbMass->Context = Context;
|
|
|
|
UsbMass->Lun = Index;
|
|
|
|
|
|
|
|
//
|
2009-01-12 08:30:42 +01:00
|
|
|
// Initialize the media parameter data for EFI_BLOCK_IO_MEDIA of Block I/O Protocol.
|
2008-06-27 10:09:00 +02:00
|
|
|
//
|
|
|
|
Status = UsbMassInitMedia (UsbMass);
|
|
|
|
if (!EFI_ERROR (Status)) {
|
2009-01-12 08:30:42 +01:00
|
|
|
//
|
|
|
|
// According to USB Mass Storage Specification for Bootability, only following
|
|
|
|
// 4 Peripheral Device Types are in spec.
|
|
|
|
//
|
2008-06-27 10:09:00 +02:00
|
|
|
if ((UsbMass->Pdt != USB_PDT_DIRECT_ACCESS) &&
|
|
|
|
(UsbMass->Pdt != USB_PDT_CDROM) &&
|
|
|
|
(UsbMass->Pdt != USB_PDT_OPTICAL) &&
|
|
|
|
(UsbMass->Pdt != USB_PDT_SIMPLE_DIRECT)) {
|
|
|
|
DEBUG ((EFI_D_ERROR, "UsbMassInitMultiLun: Found an unsupported peripheral type[%d]\n", UsbMass->Pdt));
|
|
|
|
goto ON_ERROR;
|
|
|
|
}
|
|
|
|
} else if (Status != EFI_NO_MEDIA){
|
|
|
|
DEBUG ((EFI_D_ERROR, "UsbMassInitMultiLun: UsbMassInitMedia (%r)\n", Status));
|
|
|
|
goto ON_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2009-01-12 08:30:42 +01:00
|
|
|
// Create a device path node for device logic unit, and append it.
|
2008-06-27 10:09:00 +02:00
|
|
|
//
|
|
|
|
LunNode.Header.Type = MESSAGING_DEVICE_PATH;
|
|
|
|
LunNode.Header.SubType = MSG_DEVICE_LOGICAL_UNIT_DP;
|
|
|
|
LunNode.Lun = UsbMass->Lun;
|
|
|
|
|
|
|
|
SetDevicePathNodeLength (&LunNode.Header, sizeof (LunNode));
|
|
|
|
|
|
|
|
UsbMass->DevicePath = AppendDevicePathNode (DevicePath, &LunNode.Header);
|
|
|
|
|
|
|
|
if (UsbMass->DevicePath == NULL) {
|
|
|
|
DEBUG ((EFI_D_ERROR, "UsbMassInitMultiLun: failed to create device logic unit device path\n"));
|
|
|
|
|
|
|
|
Status = EFI_OUT_OF_RESOURCES;
|
|
|
|
goto ON_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2009-01-12 08:30:42 +01:00
|
|
|
// Create a new handle for each LUN, and install Block I/O Protocol and Device Path Protocol.
|
2008-06-27 10:09:00 +02:00
|
|
|
//
|
|
|
|
Status = gBS->InstallMultipleProtocolInterfaces (
|
|
|
|
&UsbMass->Controller,
|
|
|
|
&gEfiDevicePathProtocolGuid,
|
|
|
|
UsbMass->DevicePath,
|
|
|
|
&gEfiBlockIoProtocolGuid,
|
|
|
|
&UsbMass->BlockIo,
|
|
|
|
NULL
|
|
|
|
);
|
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
DEBUG ((EFI_D_ERROR, "UsbMassInitMultiLun: InstallMultipleProtocolInterfaces (%r)\n", Status));
|
|
|
|
goto ON_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2009-01-12 08:30:42 +01:00
|
|
|
// Open USB I/O Protocol by child to setup a parent-child relationship.
|
2008-06-27 10:09:00 +02:00
|
|
|
//
|
|
|
|
Status = gBS->OpenProtocol (
|
|
|
|
Controller,
|
|
|
|
&gEfiUsbIoProtocolGuid,
|
2008-06-27 10:17:11 +02:00
|
|
|
(VOID **) &UsbIo,
|
2008-06-27 10:09:00 +02:00
|
|
|
This->DriverBindingHandle,
|
|
|
|
UsbMass->Controller,
|
|
|
|
EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER
|
|
|
|
);
|
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
DEBUG ((EFI_D_ERROR, "UsbMassInitMultiLun: OpenUsbIoProtocol By Child (%r)\n", Status));
|
|
|
|
gBS->UninstallMultipleProtocolInterfaces (
|
|
|
|
&UsbMass->Controller,
|
|
|
|
&gEfiDevicePathProtocolGuid,
|
|
|
|
UsbMass->DevicePath,
|
|
|
|
&gEfiBlockIoProtocolGuid,
|
|
|
|
&UsbMass->BlockIo,
|
|
|
|
NULL
|
|
|
|
);
|
|
|
|
goto ON_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
DEBUG ((EFI_D_INFO, "UsbMassInitMultiLun: Success to initialize No.%d logic unit\n", Index));
|
|
|
|
}
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
|
|
|
|
ON_ERROR:
|
|
|
|
if (UsbMass != NULL) {
|
2009-01-13 09:29:55 +01:00
|
|
|
if (UsbMass->DevicePath != NULL) {
|
|
|
|
FreePool (UsbMass->DevicePath);
|
|
|
|
}
|
2009-01-12 08:30:42 +01:00
|
|
|
FreePool (UsbMass);
|
2008-06-27 10:09:00 +02:00
|
|
|
}
|
|
|
|
if (UsbIo != NULL) {
|
|
|
|
gBS->CloseProtocol (
|
|
|
|
Controller,
|
|
|
|
&gEfiUsbIoProtocolGuid,
|
|
|
|
This->DriverBindingHandle,
|
|
|
|
UsbMass->Controller
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2009-01-12 08:30:42 +01:00
|
|
|
// Return EFI_SUCCESS if at least one LUN is initialized successfully.
|
2008-06-27 10:09:00 +02:00
|
|
|
//
|
|
|
|
if (Index > 0) {
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
} else {
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-23 10:30:25 +02:00
|
|
|
/**
|
2009-01-12 08:30:42 +01:00
|
|
|
Initialize data for device that does not support multiple LUNSs.
|
2008-07-23 10:30:25 +02:00
|
|
|
|
2009-01-12 08:30:42 +01:00
|
|
|
@param This The Driver Binding Protocol instance.
|
|
|
|
@param Controller The device to initialize.
|
|
|
|
@param Transport Pointer to USB_MASS_TRANSPORT.
|
|
|
|
@param Context Parameter for USB_MASS_DEVICE.Context.
|
2008-07-23 10:30:25 +02:00
|
|
|
|
2009-01-12 08:30:42 +01:00
|
|
|
@retval EFI_SUCCESS Initialization succeeds.
|
2008-07-23 10:30:25 +02:00
|
|
|
@retval Other Initialization fails.
|
|
|
|
|
|
|
|
**/
|
2008-06-27 10:09:00 +02:00
|
|
|
EFI_STATUS
|
|
|
|
UsbMassInitNonLun (
|
|
|
|
IN EFI_DRIVER_BINDING_PROTOCOL *This,
|
|
|
|
IN EFI_HANDLE Controller,
|
|
|
|
IN USB_MASS_TRANSPORT *Transport,
|
|
|
|
IN VOID *Context
|
|
|
|
)
|
|
|
|
{
|
|
|
|
USB_MASS_DEVICE *UsbMass;
|
|
|
|
EFI_USB_IO_PROTOCOL *UsbIo;
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
UsbIo = NULL;
|
|
|
|
UsbMass = AllocateZeroPool (sizeof (USB_MASS_DEVICE));
|
2009-01-12 08:30:42 +01:00
|
|
|
ASSERT (UsbMass != NULL);
|
|
|
|
|
2008-06-27 10:09:00 +02:00
|
|
|
Status = gBS->OpenProtocol (
|
|
|
|
Controller,
|
|
|
|
&gEfiUsbIoProtocolGuid,
|
2008-06-27 10:17:11 +02:00
|
|
|
(VOID **) &UsbIo,
|
2008-06-27 10:09:00 +02:00
|
|
|
This->DriverBindingHandle,
|
|
|
|
Controller,
|
|
|
|
EFI_OPEN_PROTOCOL_BY_DRIVER
|
|
|
|
);
|
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
DEBUG ((EFI_D_ERROR, "UsbMassInitNonLun: OpenUsbIoProtocol By Driver (%r)\n", Status));
|
|
|
|
goto ON_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
UsbMass->Signature = USB_MASS_SIGNATURE;
|
|
|
|
UsbMass->Controller = Controller;
|
|
|
|
UsbMass->UsbIo = UsbIo;
|
|
|
|
UsbMass->BlockIo.Media = &UsbMass->BlockIoMedia;
|
|
|
|
UsbMass->BlockIo.Reset = UsbMassReset;
|
|
|
|
UsbMass->BlockIo.ReadBlocks = UsbMassReadBlocks;
|
|
|
|
UsbMass->BlockIo.WriteBlocks = UsbMassWriteBlocks;
|
|
|
|
UsbMass->BlockIo.FlushBlocks = UsbMassFlushBlocks;
|
|
|
|
UsbMass->OpticalStorage = FALSE;
|
|
|
|
UsbMass->Transport = Transport;
|
|
|
|
UsbMass->Context = Context;
|
|
|
|
|
|
|
|
//
|
2009-01-12 08:30:42 +01:00
|
|
|
// Initialize the media parameter data for EFI_BLOCK_IO_MEDIA of Block I/O Protocol.
|
2008-06-27 10:09:00 +02:00
|
|
|
//
|
|
|
|
Status = UsbMassInitMedia (UsbMass);
|
|
|
|
if (!EFI_ERROR (Status)) {
|
2009-01-12 08:30:42 +01:00
|
|
|
//
|
|
|
|
// According to USB Mass Storage Specification for Bootability, only following
|
|
|
|
// 4 Peripheral Device Types are in spec.
|
|
|
|
//
|
2008-06-27 10:09:00 +02:00
|
|
|
if ((UsbMass->Pdt != USB_PDT_DIRECT_ACCESS) &&
|
|
|
|
(UsbMass->Pdt != USB_PDT_CDROM) &&
|
|
|
|
(UsbMass->Pdt != USB_PDT_OPTICAL) &&
|
|
|
|
(UsbMass->Pdt != USB_PDT_SIMPLE_DIRECT)) {
|
|
|
|
DEBUG ((EFI_D_ERROR, "UsbMassInitNonLun: Found an unsupported peripheral type[%d]\n", UsbMass->Pdt));
|
|
|
|
goto ON_ERROR;
|
|
|
|
}
|
|
|
|
} else if (Status != EFI_NO_MEDIA){
|
|
|
|
DEBUG ((EFI_D_ERROR, "UsbMassInitNonLun: UsbMassInitMedia (%r)\n", Status));
|
|
|
|
goto ON_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
Status = gBS->InstallProtocolInterface (
|
|
|
|
&Controller,
|
|
|
|
&gEfiBlockIoProtocolGuid,
|
|
|
|
EFI_NATIVE_INTERFACE,
|
|
|
|
&UsbMass->BlockIo
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
goto ON_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
|
|
|
|
ON_ERROR:
|
|
|
|
if (UsbMass != NULL) {
|
2009-01-12 08:30:42 +01:00
|
|
|
FreePool (UsbMass);
|
2008-06-27 10:09:00 +02:00
|
|
|
}
|
|
|
|
gBS->CloseProtocol (
|
|
|
|
Controller,
|
|
|
|
&gEfiUsbIoProtocolGuid,
|
|
|
|
This->DriverBindingHandle,
|
|
|
|
Controller
|
|
|
|
);
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
2007-07-11 10:47:37 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
Check whether the controller is a supported USB mass storage.
|
|
|
|
|
2009-01-12 04:11:00 +01:00
|
|
|
@param This The USB mass storage driver binding protocol.
|
|
|
|
@param Controller The controller handle to check.
|
|
|
|
@param RemainingDevicePath The remaining device path.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2009-01-12 04:11:00 +01:00
|
|
|
@retval EFI_SUCCESS The driver supports this controller.
|
|
|
|
@retval other This device isn't supported.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
USBMassDriverBindingSupported (
|
|
|
|
IN EFI_DRIVER_BINDING_PROTOCOL *This,
|
|
|
|
IN EFI_HANDLE Controller,
|
|
|
|
IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_USB_IO_PROTOCOL *UsbIo;
|
|
|
|
EFI_USB_INTERFACE_DESCRIPTOR Interface;
|
|
|
|
USB_MASS_TRANSPORT *Transport;
|
|
|
|
EFI_STATUS Status;
|
2009-01-12 04:11:00 +01:00
|
|
|
UINTN Index;
|
2007-07-11 10:47:37 +02:00
|
|
|
|
|
|
|
Status = gBS->OpenProtocol (
|
|
|
|
Controller,
|
|
|
|
&gEfiUsbIoProtocolGuid,
|
2007-07-17 03:48:09 +02:00
|
|
|
(VOID **) &UsbIo,
|
2007-07-11 10:47:37 +02:00
|
|
|
This->DriverBindingHandle,
|
|
|
|
Controller,
|
|
|
|
EFI_OPEN_PROTOCOL_BY_DRIVER
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2009-01-12 04:11:00 +01:00
|
|
|
// Get the interface descriptor to check the USB class and find a transport
|
2007-07-11 10:47:37 +02:00
|
|
|
// protocol handler.
|
|
|
|
//
|
|
|
|
Status = UsbIo->UsbGetInterfaceDescriptor (UsbIo, &Interface);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
goto ON_EXIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
Status = EFI_UNSUPPORTED;
|
|
|
|
|
|
|
|
if (Interface.InterfaceClass != USB_MASS_STORE_CLASS) {
|
|
|
|
goto ON_EXIT;
|
|
|
|
}
|
|
|
|
|
2009-01-12 04:11:00 +01:00
|
|
|
//
|
|
|
|
// Traverse the USB_MASS_TRANSPORT arrary and try to find the
|
|
|
|
// matching transport method.
|
|
|
|
// If not found, return EFI_UNSUPPORTED.
|
|
|
|
// If found, execute USB_MASS_TRANSPORT.Init() to initialize the transport context.
|
|
|
|
//
|
2009-02-13 04:36:02 +01:00
|
|
|
for (Index = 0; Index < USB_MASS_TRANSPORT_COUNT; Index++) {
|
2007-07-11 10:47:37 +02:00
|
|
|
Transport = mUsbMassTransport[Index];
|
|
|
|
if (Interface.InterfaceProtocol == Transport->Protocol) {
|
2008-06-27 10:09:00 +02:00
|
|
|
Status = Transport->Init (UsbIo, NULL);
|
2007-07-11 10:47:37 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ON_EXIT:
|
|
|
|
gBS->CloseProtocol (
|
2009-01-12 04:11:00 +01:00
|
|
|
Controller,
|
|
|
|
&gEfiUsbIoProtocolGuid,
|
|
|
|
This->DriverBindingHandle,
|
|
|
|
Controller
|
|
|
|
);
|
2007-07-11 10:47:37 +02:00
|
|
|
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-01-12 04:11:00 +01:00
|
|
|
Starts the USB mass storage device with this driver.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2009-01-12 04:11:00 +01:00
|
|
|
This function consumes USB I/O Portocol, intializes USB mass storage device,
|
|
|
|
installs Block I/O Protocol, and submits Asynchronous Interrupt
|
|
|
|
Transfer to manage the USB mass storage device.
|
|
|
|
|
2009-01-12 08:30:42 +01:00
|
|
|
@param This The USB mass storage driver binding protocol.
|
|
|
|
@param Controller The USB mass storage device to start on
|
|
|
|
@param RemainingDevicePath The remaining device path.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2009-01-12 04:11:00 +01:00
|
|
|
@retval EFI_SUCCESS This driver supports this device.
|
|
|
|
@retval EFI_UNSUPPORTED This driver does not support this device.
|
|
|
|
@retval EFI_DEVICE_ERROR This driver cannot be started due to device Error.
|
|
|
|
@retval EFI_OUT_OF_RESOURCES Can't allocate memory resources.
|
|
|
|
@retval EFI_ALREADY_STARTED This driver has been started.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
USBMassDriverBindingStart (
|
|
|
|
IN EFI_DRIVER_BINDING_PROTOCOL *This,
|
|
|
|
IN EFI_HANDLE Controller,
|
|
|
|
IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath
|
|
|
|
)
|
|
|
|
{
|
|
|
|
USB_MASS_TRANSPORT *Transport;
|
2008-06-27 10:09:00 +02:00
|
|
|
EFI_DEVICE_PATH_PROTOCOL *DevicePath;
|
|
|
|
VOID *Context;
|
|
|
|
UINT8 MaxLun;
|
2007-07-11 10:47:37 +02:00
|
|
|
EFI_STATUS Status;
|
2008-06-27 10:09:00 +02:00
|
|
|
|
|
|
|
Transport = NULL;
|
|
|
|
Context = NULL;
|
|
|
|
MaxLun = 0;
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2008-06-27 10:09:00 +02:00
|
|
|
Status = UsbMassInitTransport (This, Controller, &Transport, &Context, &MaxLun);
|
2007-07-11 10:47:37 +02:00
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
2008-06-27 10:09:00 +02:00
|
|
|
DEBUG ((EFI_D_ERROR, "USBMassDriverBindingStart: UsbMassInitTransport (%r)\n", Status));
|
|
|
|
return Status;
|
2007-07-11 10:47:37 +02:00
|
|
|
}
|
2008-06-27 10:09:00 +02:00
|
|
|
if (MaxLun == 0) {
|
|
|
|
//
|
2009-01-12 08:30:42 +01:00
|
|
|
// Initialize data for device that does not support multiple LUNSs.
|
2008-06-27 10:09:00 +02:00
|
|
|
//
|
2009-01-12 08:30:42 +01:00
|
|
|
Status = UsbMassInitNonLun (This, Controller, Transport, Context);
|
2008-06-27 10:09:00 +02:00
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
DEBUG ((EFI_D_ERROR, "USBMassDriverBindingStart: UsbMassInitNonLun (%r)\n", Status));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
//
|
2009-01-12 08:30:42 +01:00
|
|
|
// Open device path to prepare for appending Device Logic Unit node.
|
2008-06-27 10:09:00 +02:00
|
|
|
//
|
|
|
|
Status = gBS->OpenProtocol (
|
|
|
|
Controller,
|
|
|
|
&gEfiDevicePathProtocolGuid,
|
|
|
|
(VOID **) &DevicePath,
|
|
|
|
This->DriverBindingHandle,
|
|
|
|
Controller,
|
|
|
|
EFI_OPEN_PROTOCOL_BY_DRIVER
|
|
|
|
);
|
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
DEBUG ((EFI_D_ERROR, "USBMassDriverBindingStart: OpenDevicePathProtocol By Driver (%r)\n", Status));
|
|
|
|
return Status;
|
2007-07-11 10:47:37 +02:00
|
|
|
}
|
|
|
|
|
2008-06-27 10:09:00 +02:00
|
|
|
//
|
2009-01-12 08:30:42 +01:00
|
|
|
// Initialize data for device that supports multiple LUNSs.
|
|
|
|
// EFI_SUCCESS is returned if at least 1 LUN is initialized successfully.
|
2008-06-27 10:09:00 +02:00
|
|
|
//
|
2009-01-12 04:11:00 +01:00
|
|
|
Status = UsbMassInitMultiLun (This, Controller, Transport, Context, DevicePath, MaxLun);
|
2008-06-27 10:09:00 +02:00
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
gBS->CloseProtocol (
|
|
|
|
Controller,
|
|
|
|
&gEfiDevicePathProtocolGuid,
|
|
|
|
This->DriverBindingHandle,
|
|
|
|
Controller
|
|
|
|
);
|
|
|
|
DEBUG ((EFI_D_ERROR, "USBMassDriverBindingStart: UsbMassInitMultiLun (%r) with Maxlun=%d\n", Status, MaxLun));
|
|
|
|
}
|
2007-07-11 10:47:37 +02:00
|
|
|
}
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Stop controlling the device.
|
|
|
|
|
|
|
|
@param This The USB mass storage driver binding
|
|
|
|
@param Controller The device controller controlled by the driver.
|
|
|
|
@param NumberOfChildren The number of children of this device
|
|
|
|
@param ChildHandleBuffer The buffer of children handle.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The driver stopped from controlling the device.
|
2009-01-12 08:30:42 +01:00
|
|
|
@retval EFI_DEVICE_ERROR The device could not be stopped due to a device error.
|
|
|
|
@retval EFI_UNSUPPORTED Block I/O Protocol is not installed on Controller.
|
2007-07-11 10:47:37 +02:00
|
|
|
@retval Others Failed to stop the driver
|
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
USBMassDriverBindingStop (
|
|
|
|
IN EFI_DRIVER_BINDING_PROTOCOL *This,
|
|
|
|
IN EFI_HANDLE Controller,
|
|
|
|
IN UINTN NumberOfChildren,
|
|
|
|
IN EFI_HANDLE *ChildHandleBuffer
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
USB_MASS_DEVICE *UsbMass;
|
2009-01-12 08:30:42 +01:00
|
|
|
EFI_USB_IO_PROTOCOL *UsbIo;
|
2007-07-11 10:47:37 +02:00
|
|
|
EFI_BLOCK_IO_PROTOCOL *BlockIo;
|
2009-01-12 08:30:42 +01:00
|
|
|
UINTN Index;
|
|
|
|
BOOLEAN AllChildrenStopped;
|
2008-06-27 10:09:00 +02:00
|
|
|
|
|
|
|
//
|
2009-01-12 08:30:42 +01:00
|
|
|
// This is a bus driver stop function since multi-lun is supported.
|
|
|
|
// There are three kinds of device handles that might be passed:
|
|
|
|
// 1st is a handle with Device Path & USB I/O & Block I/O installed (non-multi-lun)
|
|
|
|
// 2nd is a handle with Device Path & USB I/O installed (multi-lun root)
|
|
|
|
// 3rd is a handle with Device Path & Block I/O installed (multi-lun).
|
2008-06-27 10:09:00 +02:00
|
|
|
//
|
|
|
|
if (NumberOfChildren == 0) {
|
|
|
|
//
|
|
|
|
// A handle without any children, might be 1st and 2nd type.
|
|
|
|
//
|
|
|
|
Status = gBS->OpenProtocol (
|
|
|
|
Controller,
|
|
|
|
&gEfiBlockIoProtocolGuid,
|
2008-06-27 10:17:11 +02:00
|
|
|
(VOID **) &BlockIo,
|
2008-06-27 10:09:00 +02:00
|
|
|
This->DriverBindingHandle,
|
|
|
|
Controller,
|
|
|
|
EFI_OPEN_PROTOCOL_GET_PROTOCOL
|
|
|
|
);
|
|
|
|
|
|
|
|
if (EFI_ERROR(Status)) {
|
|
|
|
//
|
2009-01-12 08:30:42 +01:00
|
|
|
// This is a 2nd type handle(multi-lun root), which only needs to close
|
|
|
|
// Device Path Protocol.
|
2008-06-27 10:09:00 +02:00
|
|
|
//
|
|
|
|
gBS->CloseProtocol (
|
|
|
|
Controller,
|
|
|
|
&gEfiDevicePathProtocolGuid,
|
|
|
|
This->DriverBindingHandle,
|
|
|
|
Controller
|
|
|
|
);
|
|
|
|
DEBUG ((EFI_D_INFO, "Success to stop multi-lun root handle\n"));
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2009-01-12 08:30:42 +01:00
|
|
|
// This is a 1st type handle(non-multi-lun), which only needs to uninstall
|
|
|
|
// Block I/O Protocol, close USB I/O Protocol and free mass device.
|
2008-06-27 10:09:00 +02:00
|
|
|
//
|
2009-01-12 04:11:00 +01:00
|
|
|
UsbMass = USB_MASS_DEVICE_FROM_BLOCK_IO (BlockIo);
|
2008-06-27 10:09:00 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Uninstall Block I/O protocol from the device handle,
|
|
|
|
// then call the transport protocol to stop itself.
|
|
|
|
//
|
|
|
|
Status = gBS->UninstallProtocolInterface (
|
|
|
|
Controller,
|
|
|
|
&gEfiBlockIoProtocolGuid,
|
|
|
|
&UsbMass->BlockIo
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
gBS->CloseProtocol (
|
|
|
|
Controller,
|
|
|
|
&gEfiUsbIoProtocolGuid,
|
|
|
|
This->DriverBindingHandle,
|
|
|
|
Controller
|
|
|
|
);
|
|
|
|
|
2009-01-12 04:11:00 +01:00
|
|
|
UsbMass->Transport->CleanUp (UsbMass->Context);
|
2009-01-12 08:30:42 +01:00
|
|
|
FreePool (UsbMass);
|
2008-06-27 10:09:00 +02:00
|
|
|
|
|
|
|
DEBUG ((EFI_D_INFO, "Success to stop non-multi-lun root handle\n"));
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// This is a 3rd type handle(multi-lun), which needs uninstall
|
2009-01-12 08:30:42 +01:00
|
|
|
// Block I/O Protocol and Device Path Protocol, close USB I/O Protocol and
|
|
|
|
// free mass device for all children.
|
2008-06-27 10:09:00 +02:00
|
|
|
//
|
|
|
|
AllChildrenStopped = TRUE;
|
|
|
|
|
|
|
|
for (Index = 0; Index < NumberOfChildren; Index++) {
|
|
|
|
|
|
|
|
Status = gBS->OpenProtocol (
|
|
|
|
ChildHandleBuffer[Index],
|
|
|
|
&gEfiBlockIoProtocolGuid,
|
|
|
|
(VOID **) &BlockIo,
|
|
|
|
This->DriverBindingHandle,
|
|
|
|
Controller,
|
|
|
|
EFI_OPEN_PROTOCOL_GET_PROTOCOL
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
AllChildrenStopped = FALSE;
|
2008-12-18 09:48:36 +01:00
|
|
|
DEBUG ((EFI_D_ERROR, "Fail to stop No.%d multi-lun child handle when opening blockio\n", (UINT32)Index));
|
2008-06-27 10:09:00 +02:00
|
|
|
continue;
|
|
|
|
}
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2009-01-12 04:11:00 +01:00
|
|
|
UsbMass = USB_MASS_DEVICE_FROM_BLOCK_IO (BlockIo);
|
2008-06-27 10:09:00 +02:00
|
|
|
|
|
|
|
gBS->CloseProtocol (
|
2009-01-12 08:30:42 +01:00
|
|
|
Controller,
|
|
|
|
&gEfiUsbIoProtocolGuid,
|
|
|
|
This->DriverBindingHandle,
|
|
|
|
ChildHandleBuffer[Index]
|
|
|
|
);
|
2008-06-27 10:09:00 +02:00
|
|
|
|
|
|
|
Status = gBS->UninstallMultipleProtocolInterfaces (
|
|
|
|
ChildHandleBuffer[Index],
|
|
|
|
&gEfiDevicePathProtocolGuid,
|
|
|
|
UsbMass->DevicePath,
|
|
|
|
&gEfiBlockIoProtocolGuid,
|
|
|
|
&UsbMass->BlockIo,
|
|
|
|
NULL
|
|
|
|
);
|
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
//
|
2009-01-12 08:30:42 +01:00
|
|
|
// Fail to uninstall Block I/O Protocol and Device Path Protocol, so re-open USB I/O Protocol by child.
|
2008-06-27 10:09:00 +02:00
|
|
|
//
|
|
|
|
AllChildrenStopped = FALSE;
|
2008-12-18 09:48:36 +01:00
|
|
|
DEBUG ((EFI_D_ERROR, "Fail to stop No.%d multi-lun child handle when uninstalling blockio and devicepath\n", (UINT32)Index));
|
2008-06-27 10:09:00 +02:00
|
|
|
|
|
|
|
gBS->OpenProtocol (
|
|
|
|
Controller,
|
|
|
|
&gEfiUsbIoProtocolGuid,
|
2008-06-27 10:17:11 +02:00
|
|
|
(VOID **) &UsbIo,
|
2008-06-27 10:09:00 +02:00
|
|
|
This->DriverBindingHandle,
|
|
|
|
ChildHandleBuffer[Index],
|
|
|
|
EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
//
|
2009-01-12 08:30:42 +01:00
|
|
|
// Succeed to stop this multi-lun handle, so go on with next child.
|
2008-06-27 10:09:00 +02:00
|
|
|
//
|
|
|
|
if (((Index + 1) == NumberOfChildren) && AllChildrenStopped) {
|
2009-01-12 04:11:00 +01:00
|
|
|
UsbMass->Transport->CleanUp (UsbMass->Context);
|
2008-06-27 10:09:00 +02:00
|
|
|
}
|
2009-01-12 08:30:42 +01:00
|
|
|
FreePool (UsbMass);
|
2008-06-27 10:09:00 +02:00
|
|
|
}
|
2007-07-11 10:47:37 +02:00
|
|
|
}
|
|
|
|
|
2008-06-27 10:09:00 +02:00
|
|
|
if (!AllChildrenStopped) {
|
|
|
|
return EFI_DEVICE_ERROR;
|
2007-07-11 10:47:37 +02:00
|
|
|
}
|
2008-06-27 10:09:00 +02:00
|
|
|
|
2009-01-12 08:30:42 +01:00
|
|
|
DEBUG ((EFI_D_INFO, "Success to stop all %d multi-lun children handles\n", (UINT32) NumberOfChildren));
|
2007-07-11 10:47:37 +02:00
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2008-07-23 10:30:25 +02:00
|
|
|
/**
|
2009-01-12 08:30:42 +01:00
|
|
|
Entrypoint of USB Mass Storage Driver.
|
|
|
|
|
|
|
|
This function is the entrypoint of USB Mass Storage Driver. It installs Driver Binding
|
|
|
|
Protocol together with Component Name Protocols.
|
2008-07-23 10:30:25 +02:00
|
|
|
|
2009-01-12 08:30:42 +01:00
|
|
|
@param ImageHandle The firmware allocated handle for the EFI image.
|
|
|
|
@param SystemTable A pointer to the EFI System Table.
|
2008-07-23 10:30:25 +02:00
|
|
|
|
2009-01-12 08:30:42 +01:00
|
|
|
@retval EFI_SUCCESS The entry point is executed successfully.
|
2008-07-23 10:30:25 +02:00
|
|
|
|
|
|
|
**/
|
2007-07-11 10:47:37 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
USBMassStorageEntryPoint (
|
|
|
|
IN EFI_HANDLE ImageHandle,
|
|
|
|
IN EFI_SYSTEM_TABLE *SystemTable
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Install driver binding protocol
|
|
|
|
//
|
2007-09-30 04:47:05 +02:00
|
|
|
Status = EfiLibInstallDriverBindingComponentName2 (
|
2007-07-11 10:47:37 +02:00
|
|
|
ImageHandle,
|
|
|
|
SystemTable,
|
|
|
|
&gUSBMassDriverBinding,
|
|
|
|
ImageHandle,
|
|
|
|
&gUsbMassStorageComponentName,
|
2007-09-30 04:47:05 +02:00
|
|
|
&gUsbMassStorageComponentName2
|
2007-07-11 10:47:37 +02:00
|
|
|
);
|
2009-01-12 04:11:00 +01:00
|
|
|
ASSERT_EFI_ERROR (Status);
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2009-01-12 04:11:00 +01:00
|
|
|
return EFI_SUCCESS;
|
2007-07-11 10:47:37 +02:00
|
|
|
}
|