2007-07-11 10:47:37 +02:00
|
|
|
/** @file
|
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
Wrapper function for usb host controller interface.
|
|
|
|
|
2010-12-24 06:32:34 +01:00
|
|
|
Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>
|
2010-04-24 11:49:11 +02:00
|
|
|
This program and the accompanying materials
|
2007-07-11 10:47:37 +02:00
|
|
|
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 "UsbBus.h"
|
|
|
|
|
2007-12-26 07:38:15 +01:00
|
|
|
//
|
|
|
|
// if RemainingDevicePath== NULL, then all Usb child devices in this bus are wanted.
|
|
|
|
// Use a shor form Usb class Device Path, which could match any usb device, in WantedUsbIoDPList to indicate all Usb devices
|
|
|
|
// are wanted Usb devices
|
|
|
|
//
|
2008-10-30 07:05:06 +01:00
|
|
|
USB_CLASS_FORMAT_DEVICE_PATH mAllUsbClassDevicePath = {
|
2007-12-26 07:38:15 +01:00
|
|
|
{
|
|
|
|
{
|
|
|
|
MESSAGING_DEVICE_PATH,
|
|
|
|
MSG_USB_CLASS_DP,
|
2008-06-26 05:38:11 +02:00
|
|
|
{
|
|
|
|
(UINT8) (sizeof (USB_CLASS_DEVICE_PATH)),
|
|
|
|
(UINT8) ((sizeof (USB_CLASS_DEVICE_PATH)) >> 8)
|
|
|
|
}
|
2007-12-26 07:38:15 +01:00
|
|
|
},
|
|
|
|
0xffff, // VendorId
|
|
|
|
0xffff, // ProductId
|
|
|
|
0xff, // DeviceClass
|
|
|
|
0xff, // DeviceSubClass
|
|
|
|
0xff // DeviceProtocol
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
END_DEVICE_PATH_TYPE,
|
|
|
|
END_ENTIRE_DEVICE_PATH_SUBTYPE,
|
2008-06-26 05:38:11 +02:00
|
|
|
{
|
|
|
|
END_DEVICE_PATH_LENGTH,
|
|
|
|
0
|
|
|
|
}
|
2007-12-26 07:38:15 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2007-07-11 10:47:37 +02:00
|
|
|
|
|
|
|
/**
|
2008-07-09 12:02:26 +02:00
|
|
|
Get the capability of the host controller.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@param UsbBus The usb driver.
|
|
|
|
@param MaxSpeed The maximum speed this host controller supports.
|
|
|
|
@param NumOfPort The number of the root hub port.
|
|
|
|
@param Is64BitCapable Whether this controller support 64 bit addressing.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@retval EFI_SUCCESS The host controller capability is returned.
|
2007-07-11 10:47:37 +02:00
|
|
|
@retval Others Failed to retrieve the host controller capability.
|
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
UsbHcGetCapability (
|
|
|
|
IN USB_BUS *UsbBus,
|
|
|
|
OUT UINT8 *MaxSpeed,
|
|
|
|
OUT UINT8 *NumOfPort,
|
|
|
|
OUT UINT8 *Is64BitCapable
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
if (UsbBus->Usb2Hc != NULL) {
|
|
|
|
Status = UsbBus->Usb2Hc->GetCapability (
|
|
|
|
UsbBus->Usb2Hc,
|
|
|
|
MaxSpeed,
|
|
|
|
NumOfPort,
|
|
|
|
Is64BitCapable
|
|
|
|
);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
Status = UsbBus->UsbHc->GetRootHubPortNumber (UsbBus->UsbHc, NumOfPort);
|
|
|
|
|
|
|
|
*MaxSpeed = EFI_USB_SPEED_FULL;
|
|
|
|
*Is64BitCapable = (UINT8) FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-09 12:02:26 +02:00
|
|
|
Reset the host controller.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@param UsbBus The usb bus driver.
|
|
|
|
@param Attributes The reset type, only global reset is used by this driver.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@retval EFI_SUCCESS The reset operation succeeded.
|
|
|
|
@retval EFI_INVALID_PARAMETER Attributes is not valid.
|
|
|
|
@retval EFI_UNSUPPOURTED The type of reset specified by Attributes is
|
|
|
|
not currently supported by the host controller.
|
|
|
|
@retval EFI_DEVICE_ERROR Host controller isn't halted to reset.
|
2007-07-11 10:47:37 +02:00
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
UsbHcReset (
|
|
|
|
IN USB_BUS *UsbBus,
|
|
|
|
IN UINT16 Attributes
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
if (UsbBus->Usb2Hc != NULL) {
|
|
|
|
Status = UsbBus->Usb2Hc->Reset (UsbBus->Usb2Hc, Attributes);
|
|
|
|
} else {
|
|
|
|
Status = UsbBus->UsbHc->Reset (UsbBus->UsbHc, Attributes);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-09 12:02:26 +02:00
|
|
|
Get the current operation state of the host controller.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@param UsbBus The USB bus driver.
|
|
|
|
@param State The host controller operation state.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@retval EFI_SUCCESS The operation state is returned in State.
|
|
|
|
@retval Others Failed to get the host controller state.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
UsbHcGetState (
|
|
|
|
IN USB_BUS *UsbBus,
|
|
|
|
OUT EFI_USB_HC_STATE *State
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
if (UsbBus->Usb2Hc != NULL) {
|
|
|
|
Status = UsbBus->Usb2Hc->GetState (UsbBus->Usb2Hc, State);
|
|
|
|
} else {
|
|
|
|
Status = UsbBus->UsbHc->GetState (UsbBus->UsbHc, State);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-09 12:02:26 +02:00
|
|
|
Set the host controller operation state.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@param UsbBus The USB bus driver.
|
|
|
|
@param State The state to set.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@retval EFI_SUCCESS The host controller is now working at State.
|
|
|
|
@retval Others Failed to set operation state.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
UsbHcSetState (
|
|
|
|
IN USB_BUS *UsbBus,
|
|
|
|
IN EFI_USB_HC_STATE State
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
if (UsbBus->Usb2Hc != NULL) {
|
|
|
|
Status = UsbBus->Usb2Hc->SetState (UsbBus->Usb2Hc, State);
|
|
|
|
} else {
|
|
|
|
Status = UsbBus->UsbHc->SetState (UsbBus->UsbHc, State);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-09 12:02:26 +02:00
|
|
|
Get the root hub port state.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@param UsbBus The USB bus driver.
|
|
|
|
@param PortIndex The index of port.
|
|
|
|
@param PortStatus The variable to save port state.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@retval EFI_SUCCESS The root port state is returned in.
|
|
|
|
@retval Others Failed to get the root hub port state.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
UsbHcGetRootHubPortStatus (
|
|
|
|
IN USB_BUS *UsbBus,
|
|
|
|
IN UINT8 PortIndex,
|
|
|
|
OUT EFI_USB_PORT_STATUS *PortStatus
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
if (UsbBus->Usb2Hc != NULL) {
|
|
|
|
Status = UsbBus->Usb2Hc->GetRootHubPortStatus (UsbBus->Usb2Hc, PortIndex, PortStatus);
|
|
|
|
} else {
|
|
|
|
Status = UsbBus->UsbHc->GetRootHubPortStatus (UsbBus->UsbHc, PortIndex, PortStatus);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-09 12:02:26 +02:00
|
|
|
Set the root hub port feature.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@param UsbBus The USB bus driver.
|
|
|
|
@param PortIndex The port index.
|
|
|
|
@param Feature The port feature to set.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@retval EFI_SUCCESS The port feature is set.
|
|
|
|
@retval Others Failed to set port feature.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
UsbHcSetRootHubPortFeature (
|
|
|
|
IN USB_BUS *UsbBus,
|
|
|
|
IN UINT8 PortIndex,
|
|
|
|
IN EFI_USB_PORT_FEATURE Feature
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
|
|
|
|
if (UsbBus->Usb2Hc != NULL) {
|
|
|
|
Status = UsbBus->Usb2Hc->SetRootHubPortFeature (UsbBus->Usb2Hc, PortIndex, Feature);
|
|
|
|
} else {
|
|
|
|
Status = UsbBus->UsbHc->SetRootHubPortFeature (UsbBus->UsbHc, PortIndex, Feature);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-09 12:02:26 +02:00
|
|
|
Clear the root hub port feature.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@param UsbBus The USB bus driver.
|
|
|
|
@param PortIndex The port index.
|
|
|
|
@param Feature The port feature to clear.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@retval EFI_SUCCESS The port feature is clear.
|
|
|
|
@retval Others Failed to clear port feature.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
UsbHcClearRootHubPortFeature (
|
|
|
|
IN USB_BUS *UsbBus,
|
|
|
|
IN UINT8 PortIndex,
|
|
|
|
IN EFI_USB_PORT_FEATURE Feature
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
if (UsbBus->Usb2Hc != NULL) {
|
|
|
|
Status = UsbBus->Usb2Hc->ClearRootHubPortFeature (UsbBus->Usb2Hc, PortIndex, Feature);
|
|
|
|
} else {
|
|
|
|
Status = UsbBus->UsbHc->ClearRootHubPortFeature (UsbBus->UsbHc, PortIndex, Feature);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-09 12:02:26 +02:00
|
|
|
Execute a control transfer to the device.
|
|
|
|
|
|
|
|
@param UsbBus The USB bus driver.
|
|
|
|
@param DevAddr The device address.
|
|
|
|
@param DevSpeed The device speed.
|
|
|
|
@param MaxPacket Maximum packet size of endpoint 0.
|
|
|
|
@param Request The control transfer request.
|
|
|
|
@param Direction The direction of data stage.
|
|
|
|
@param Data The buffer holding data.
|
|
|
|
@param DataLength The length of the data.
|
|
|
|
@param TimeOut Timeout (in ms) to wait until timeout.
|
|
|
|
@param Translator The transaction translator for low/full speed device.
|
|
|
|
@param UsbResult The result of transfer.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The control transfer finished without error.
|
|
|
|
@retval Others The control transfer failed, reason returned in UsbReslt.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
UsbHcControlTransfer (
|
|
|
|
IN USB_BUS *UsbBus,
|
|
|
|
IN UINT8 DevAddr,
|
|
|
|
IN UINT8 DevSpeed,
|
|
|
|
IN UINTN MaxPacket,
|
|
|
|
IN EFI_USB_DEVICE_REQUEST *Request,
|
|
|
|
IN EFI_USB_DATA_DIRECTION Direction,
|
|
|
|
IN OUT VOID *Data,
|
|
|
|
IN OUT UINTN *DataLength,
|
|
|
|
IN UINTN TimeOut,
|
|
|
|
IN EFI_USB2_HC_TRANSACTION_TRANSLATOR *Translator,
|
|
|
|
OUT UINT32 *UsbResult
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
BOOLEAN IsSlowDevice;
|
|
|
|
|
|
|
|
if (UsbBus->Usb2Hc != NULL) {
|
|
|
|
Status = UsbBus->Usb2Hc->ControlTransfer (
|
|
|
|
UsbBus->Usb2Hc,
|
|
|
|
DevAddr,
|
|
|
|
DevSpeed,
|
|
|
|
MaxPacket,
|
|
|
|
Request,
|
|
|
|
Direction,
|
|
|
|
Data,
|
|
|
|
DataLength,
|
|
|
|
TimeOut,
|
|
|
|
Translator,
|
|
|
|
UsbResult
|
|
|
|
);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
IsSlowDevice = (BOOLEAN)(EFI_USB_SPEED_LOW == DevSpeed);
|
|
|
|
Status = UsbBus->UsbHc->ControlTransfer (
|
|
|
|
UsbBus->UsbHc,
|
|
|
|
DevAddr,
|
|
|
|
IsSlowDevice,
|
|
|
|
(UINT8) MaxPacket,
|
|
|
|
Request,
|
|
|
|
Direction,
|
|
|
|
Data,
|
|
|
|
DataLength,
|
|
|
|
TimeOut,
|
|
|
|
UsbResult
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-09 12:02:26 +02:00
|
|
|
Execute a bulk transfer to the device's endpoint.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@param UsbBus The USB bus driver.
|
|
|
|
@param DevAddr The target device address.
|
2007-07-11 10:47:37 +02:00
|
|
|
@param EpAddr The target endpoint address, with direction encoded in
|
2008-07-09 12:02:26 +02:00
|
|
|
bit 7.
|
|
|
|
@param DevSpeed The device's speed.
|
|
|
|
@param MaxPacket The endpoint's max packet size.
|
|
|
|
@param BufferNum The number of data buffer.
|
|
|
|
@param Data Array of pointers to data buffer.
|
|
|
|
@param DataLength The length of data buffer.
|
2007-07-11 10:47:37 +02:00
|
|
|
@param DataToggle On input, the initial data toggle to use, also return
|
|
|
|
the next toggle on output.
|
2008-07-09 12:02:26 +02:00
|
|
|
@param TimeOut The time to wait until timeout.
|
|
|
|
@param Translator The transaction translator for low/full speed device.
|
|
|
|
@param UsbResult The result of USB execution.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@retval EFI_SUCCESS The bulk transfer is finished without error.
|
|
|
|
@retval Others Failed to execute bulk transfer, result in UsbResult.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
UsbHcBulkTransfer (
|
|
|
|
IN USB_BUS *UsbBus,
|
|
|
|
IN UINT8 DevAddr,
|
|
|
|
IN UINT8 EpAddr,
|
|
|
|
IN UINT8 DevSpeed,
|
|
|
|
IN UINTN MaxPacket,
|
|
|
|
IN UINT8 BufferNum,
|
|
|
|
IN OUT VOID *Data[EFI_USB_MAX_BULK_BUFFER_NUM],
|
|
|
|
IN OUT UINTN *DataLength,
|
|
|
|
IN OUT UINT8 *DataToggle,
|
|
|
|
IN UINTN TimeOut,
|
|
|
|
IN EFI_USB2_HC_TRANSACTION_TRANSLATOR *Translator,
|
|
|
|
OUT UINT32 *UsbResult
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
if (UsbBus->Usb2Hc != NULL) {
|
|
|
|
Status = UsbBus->Usb2Hc->BulkTransfer (
|
|
|
|
UsbBus->Usb2Hc,
|
|
|
|
DevAddr,
|
|
|
|
EpAddr,
|
|
|
|
DevSpeed,
|
|
|
|
MaxPacket,
|
|
|
|
BufferNum,
|
|
|
|
Data,
|
|
|
|
DataLength,
|
|
|
|
DataToggle,
|
|
|
|
TimeOut,
|
|
|
|
Translator,
|
|
|
|
UsbResult
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
Status = UsbBus->UsbHc->BulkTransfer (
|
|
|
|
UsbBus->UsbHc,
|
|
|
|
DevAddr,
|
|
|
|
EpAddr,
|
|
|
|
(UINT8) MaxPacket,
|
|
|
|
*Data,
|
|
|
|
DataLength,
|
|
|
|
DataToggle,
|
|
|
|
TimeOut,
|
|
|
|
UsbResult
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-09 12:02:26 +02:00
|
|
|
Queue or cancel an asynchronous interrupt transfer.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@param UsbBus The USB bus driver.
|
|
|
|
@param DevAddr The target device address.
|
2007-07-11 10:47:37 +02:00
|
|
|
@param EpAddr The target endpoint address, with direction encoded in
|
2008-07-09 12:02:26 +02:00
|
|
|
bit 7.
|
|
|
|
@param DevSpeed The device's speed.
|
|
|
|
@param MaxPacket The endpoint's max packet size.
|
2007-07-11 10:47:37 +02:00
|
|
|
@param IsNewTransfer Whether this is a new request. If not, cancel the old
|
2008-07-09 12:02:26 +02:00
|
|
|
request.
|
|
|
|
@param DataToggle Data toggle to use on input, next toggle on output.
|
|
|
|
@param PollingInterval The interval to poll the interrupt transfer (in ms).
|
|
|
|
@param DataLength The length of periodical data receive.
|
|
|
|
@param Translator The transaction translator for low/full speed device.
|
|
|
|
@param Callback Function to call when data is received.
|
|
|
|
@param Context The context to the callback.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@retval EFI_SUCCESS The asynchronous transfer is queued.
|
|
|
|
@retval Others Failed to queue the transfer.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
UsbHcAsyncInterruptTransfer (
|
|
|
|
IN USB_BUS *UsbBus,
|
|
|
|
IN UINT8 DevAddr,
|
|
|
|
IN UINT8 EpAddr,
|
|
|
|
IN UINT8 DevSpeed,
|
|
|
|
IN UINTN MaxPacket,
|
|
|
|
IN BOOLEAN IsNewTransfer,
|
|
|
|
IN OUT UINT8 *DataToggle,
|
|
|
|
IN UINTN PollingInterval,
|
|
|
|
IN UINTN DataLength,
|
|
|
|
IN EFI_USB2_HC_TRANSACTION_TRANSLATOR *Translator,
|
|
|
|
IN EFI_ASYNC_USB_TRANSFER_CALLBACK Callback,
|
|
|
|
IN VOID *Context OPTIONAL
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
BOOLEAN IsSlowDevice;
|
|
|
|
|
|
|
|
if (UsbBus->Usb2Hc != NULL) {
|
|
|
|
Status = UsbBus->Usb2Hc->AsyncInterruptTransfer (
|
|
|
|
UsbBus->Usb2Hc,
|
|
|
|
DevAddr,
|
|
|
|
EpAddr,
|
|
|
|
DevSpeed,
|
|
|
|
MaxPacket,
|
|
|
|
IsNewTransfer,
|
|
|
|
DataToggle,
|
|
|
|
PollingInterval,
|
|
|
|
DataLength,
|
|
|
|
Translator,
|
|
|
|
Callback,
|
|
|
|
Context
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
IsSlowDevice = (BOOLEAN)(EFI_USB_SPEED_LOW == DevSpeed);
|
|
|
|
|
|
|
|
Status = UsbBus->UsbHc->AsyncInterruptTransfer (
|
|
|
|
UsbBus->UsbHc,
|
|
|
|
DevAddr,
|
|
|
|
EpAddr,
|
|
|
|
IsSlowDevice,
|
|
|
|
(UINT8) MaxPacket,
|
|
|
|
IsNewTransfer,
|
|
|
|
DataToggle,
|
|
|
|
PollingInterval,
|
|
|
|
DataLength,
|
|
|
|
Callback,
|
|
|
|
Context
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-09 12:02:26 +02:00
|
|
|
Execute a synchronous interrupt transfer to the target endpoint.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@param UsbBus The USB bus driver.
|
|
|
|
@param DevAddr The target device address.
|
2007-07-11 10:47:37 +02:00
|
|
|
@param EpAddr The target endpoint address, with direction encoded in
|
2008-07-09 12:02:26 +02:00
|
|
|
bit 7.
|
|
|
|
@param DevSpeed The device's speed.
|
|
|
|
@param MaxPacket The endpoint's max packet size.
|
|
|
|
@param Data Pointer to data buffer.
|
|
|
|
@param DataLength The length of data buffer.
|
2007-07-11 10:47:37 +02:00
|
|
|
@param DataToggle On input, the initial data toggle to use, also return
|
|
|
|
the next toggle on output.
|
2008-07-09 12:02:26 +02:00
|
|
|
@param TimeOut The time to wait until timeout.
|
|
|
|
@param Translator The transaction translator for low/full speed device.
|
|
|
|
@param UsbResult The result of USB execution.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@retval EFI_SUCCESS The synchronous interrupt transfer is OK.
|
|
|
|
@retval Others Failed to execute the synchronous interrupt transfer.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
UsbHcSyncInterruptTransfer (
|
|
|
|
IN USB_BUS *UsbBus,
|
|
|
|
IN UINT8 DevAddr,
|
|
|
|
IN UINT8 EpAddr,
|
|
|
|
IN UINT8 DevSpeed,
|
|
|
|
IN UINTN MaxPacket,
|
|
|
|
IN OUT VOID *Data,
|
|
|
|
IN OUT UINTN *DataLength,
|
|
|
|
IN OUT UINT8 *DataToggle,
|
|
|
|
IN UINTN TimeOut,
|
|
|
|
IN EFI_USB2_HC_TRANSACTION_TRANSLATOR *Translator,
|
|
|
|
OUT UINT32 *UsbResult
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
BOOLEAN IsSlowDevice;
|
|
|
|
|
|
|
|
if (UsbBus->Usb2Hc != NULL) {
|
|
|
|
Status = UsbBus->Usb2Hc->SyncInterruptTransfer (
|
|
|
|
UsbBus->Usb2Hc,
|
|
|
|
DevAddr,
|
|
|
|
EpAddr,
|
|
|
|
DevSpeed,
|
|
|
|
MaxPacket,
|
|
|
|
Data,
|
|
|
|
DataLength,
|
|
|
|
DataToggle,
|
|
|
|
TimeOut,
|
|
|
|
Translator,
|
|
|
|
UsbResult
|
|
|
|
);
|
|
|
|
} else {
|
2007-07-17 03:48:09 +02:00
|
|
|
IsSlowDevice = (BOOLEAN) ((EFI_USB_SPEED_LOW == DevSpeed) ? TRUE : FALSE);
|
2007-07-11 10:47:37 +02:00
|
|
|
Status = UsbBus->UsbHc->SyncInterruptTransfer (
|
|
|
|
UsbBus->UsbHc,
|
|
|
|
DevAddr,
|
|
|
|
EpAddr,
|
|
|
|
IsSlowDevice,
|
|
|
|
(UINT8) MaxPacket,
|
|
|
|
Data,
|
|
|
|
DataLength,
|
|
|
|
DataToggle,
|
|
|
|
TimeOut,
|
|
|
|
UsbResult
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-09 12:02:26 +02:00
|
|
|
Execute a synchronous Isochronous USB transfer.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@param UsbBus The USB bus driver.
|
|
|
|
@param DevAddr The target device address.
|
2007-07-11 10:47:37 +02:00
|
|
|
@param EpAddr The target endpoint address, with direction encoded in
|
2008-07-09 12:02:26 +02:00
|
|
|
bit 7.
|
|
|
|
@param DevSpeed The device's speed.
|
|
|
|
@param MaxPacket The endpoint's max packet size.
|
|
|
|
@param BufferNum The number of data buffer.
|
|
|
|
@param Data Array of pointers to data buffer.
|
|
|
|
@param DataLength The length of data buffer.
|
|
|
|
@param Translator The transaction translator for low/full speed device.
|
|
|
|
@param UsbResult The result of USB execution.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@retval EFI_UNSUPPORTED The isochronous transfer isn't supported now.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
UsbHcIsochronousTransfer (
|
|
|
|
IN USB_BUS *UsbBus,
|
|
|
|
IN UINT8 DevAddr,
|
|
|
|
IN UINT8 EpAddr,
|
|
|
|
IN UINT8 DevSpeed,
|
|
|
|
IN UINTN MaxPacket,
|
|
|
|
IN UINT8 BufferNum,
|
|
|
|
IN OUT VOID *Data[EFI_USB_MAX_ISO_BUFFER_NUM],
|
|
|
|
IN UINTN DataLength,
|
|
|
|
IN EFI_USB2_HC_TRANSACTION_TRANSLATOR *Translator,
|
|
|
|
OUT UINT32 *UsbResult
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-09 12:02:26 +02:00
|
|
|
Queue an asynchronous isochronous transfer.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@param UsbBus The USB bus driver.
|
|
|
|
@param DevAddr The target device address.
|
2007-07-11 10:47:37 +02:00
|
|
|
@param EpAddr The target endpoint address, with direction encoded in
|
2008-07-09 12:02:26 +02:00
|
|
|
bit 7.
|
|
|
|
@param DevSpeed The device's speed.
|
|
|
|
@param MaxPacket The endpoint's max packet size.
|
|
|
|
@param BufferNum The number of data buffer.
|
|
|
|
@param Data Array of pointers to data buffer.
|
|
|
|
@param DataLength The length of data buffer.
|
|
|
|
@param Translator The transaction translator for low/full speed device.
|
|
|
|
@param Callback The function to call when data is transferred.
|
|
|
|
@param Context The context to the callback function.
|
|
|
|
|
|
|
|
@retval EFI_UNSUPPORTED The asynchronous isochronous transfer isn't supported.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
UsbHcAsyncIsochronousTransfer (
|
|
|
|
IN USB_BUS *UsbBus,
|
|
|
|
IN UINT8 DevAddr,
|
|
|
|
IN UINT8 EpAddr,
|
|
|
|
IN UINT8 DevSpeed,
|
|
|
|
IN UINTN MaxPacket,
|
|
|
|
IN UINT8 BufferNum,
|
|
|
|
IN OUT VOID *Data[EFI_USB_MAX_ISO_BUFFER_NUM],
|
|
|
|
IN UINTN DataLength,
|
|
|
|
IN EFI_USB2_HC_TRANSACTION_TRANSLATOR *Translator,
|
|
|
|
IN EFI_ASYNC_USB_TRANSFER_CALLBACK Callback,
|
|
|
|
IN VOID *Context
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-09 12:02:26 +02:00
|
|
|
Open the USB host controller protocol BY_CHILD.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@param Bus The USB bus driver.
|
|
|
|
@param Child The child handle.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@return The open protocol return.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
UsbOpenHostProtoByChild (
|
|
|
|
IN USB_BUS *Bus,
|
|
|
|
IN EFI_HANDLE Child
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_USB_HC_PROTOCOL *UsbHc;
|
|
|
|
EFI_USB2_HC_PROTOCOL *Usb2Hc;
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
if (Bus->Usb2Hc != NULL) {
|
|
|
|
Status = gBS->OpenProtocol (
|
|
|
|
Bus->HostHandle,
|
|
|
|
&gEfiUsb2HcProtocolGuid,
|
2007-07-17 03:48:09 +02:00
|
|
|
(VOID **) &Usb2Hc,
|
2007-07-11 10:47:37 +02:00
|
|
|
mUsbBusDriverBinding.DriverBindingHandle,
|
|
|
|
Child,
|
|
|
|
EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER
|
|
|
|
);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
Status = gBS->OpenProtocol (
|
|
|
|
Bus->HostHandle,
|
|
|
|
&gEfiUsbHcProtocolGuid,
|
2007-07-17 03:48:09 +02:00
|
|
|
(VOID **) &UsbHc,
|
2007-07-11 10:47:37 +02:00
|
|
|
mUsbBusDriverBinding.DriverBindingHandle,
|
|
|
|
Child,
|
|
|
|
EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-09 12:02:26 +02:00
|
|
|
Close the USB host controller protocol BY_CHILD.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@param Bus The USB bus driver.
|
|
|
|
@param Child The child handle.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
UsbCloseHostProtoByChild (
|
|
|
|
IN USB_BUS *Bus,
|
|
|
|
IN EFI_HANDLE Child
|
|
|
|
)
|
|
|
|
{
|
|
|
|
if (Bus->Usb2Hc != NULL) {
|
|
|
|
gBS->CloseProtocol (
|
|
|
|
Bus->HostHandle,
|
|
|
|
&gEfiUsb2HcProtocolGuid,
|
|
|
|
mUsbBusDriverBinding.DriverBindingHandle,
|
|
|
|
Child
|
|
|
|
);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
gBS->CloseProtocol (
|
|
|
|
Bus->HostHandle,
|
|
|
|
&gEfiUsbHcProtocolGuid,
|
|
|
|
mUsbBusDriverBinding.DriverBindingHandle,
|
|
|
|
Child
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
return the current TPL, copied from the EDKII glue lib.
|
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@param VOID.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@return Current TPL.
|
2007-07-11 10:47:37 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_TPL
|
|
|
|
UsbGetCurrentTpl (
|
|
|
|
VOID
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_TPL Tpl;
|
|
|
|
|
|
|
|
Tpl = gBS->RaiseTPL (TPL_HIGH_LEVEL);
|
|
|
|
gBS->RestoreTPL (Tpl);
|
|
|
|
|
|
|
|
return Tpl;
|
|
|
|
}
|
|
|
|
|
2007-12-26 07:38:15 +01:00
|
|
|
/**
|
2008-07-09 12:02:26 +02:00
|
|
|
Create a new device path which only contain the first Usb part of the DevicePath.
|
2007-12-26 07:38:15 +01:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@param DevicePath A full device path which contain the usb nodes.
|
2007-12-26 07:38:15 +01:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@return A new device path which only contain the Usb part of the DevicePath.
|
2007-12-26 07:38:15 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_DEVICE_PATH_PROTOCOL *
|
|
|
|
EFIAPI
|
|
|
|
GetUsbDPFromFullDP (
|
|
|
|
IN EFI_DEVICE_PATH_PROTOCOL *DevicePath
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_DEVICE_PATH_PROTOCOL *UsbDevicePathPtr;
|
|
|
|
EFI_DEVICE_PATH_PROTOCOL *UsbDevicePathBeginPtr;
|
|
|
|
EFI_DEVICE_PATH_PROTOCOL *UsbDevicePathEndPtr;
|
|
|
|
UINTN Size;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Get the Usb part first Begin node in full device path
|
|
|
|
//
|
|
|
|
UsbDevicePathBeginPtr = DevicePath;
|
2008-11-11 16:42:40 +01:00
|
|
|
while ( (!IsDevicePathEnd (UsbDevicePathBeginPtr))&&
|
2007-12-26 07:38:15 +01:00
|
|
|
((UsbDevicePathBeginPtr->Type != MESSAGING_DEVICE_PATH) ||
|
|
|
|
(UsbDevicePathBeginPtr->SubType != MSG_USB_DP &&
|
|
|
|
UsbDevicePathBeginPtr->SubType != MSG_USB_CLASS_DP
|
|
|
|
&& UsbDevicePathBeginPtr->SubType != MSG_USB_WWID_DP
|
|
|
|
))) {
|
|
|
|
|
|
|
|
UsbDevicePathBeginPtr = NextDevicePathNode(UsbDevicePathBeginPtr);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Get the Usb part first End node in full device path
|
|
|
|
//
|
|
|
|
UsbDevicePathEndPtr = UsbDevicePathBeginPtr;
|
2008-11-11 16:42:40 +01:00
|
|
|
while ((!IsDevicePathEnd (UsbDevicePathEndPtr))&&
|
2007-12-26 07:38:15 +01:00
|
|
|
(UsbDevicePathEndPtr->Type == MESSAGING_DEVICE_PATH) &&
|
|
|
|
(UsbDevicePathEndPtr->SubType == MSG_USB_DP ||
|
|
|
|
UsbDevicePathEndPtr->SubType == MSG_USB_CLASS_DP
|
|
|
|
|| UsbDevicePathEndPtr->SubType == MSG_USB_WWID_DP
|
|
|
|
)) {
|
|
|
|
|
|
|
|
UsbDevicePathEndPtr = NextDevicePathNode(UsbDevicePathEndPtr);
|
|
|
|
}
|
|
|
|
|
|
|
|
Size = GetDevicePathSize (UsbDevicePathBeginPtr);
|
|
|
|
Size -= GetDevicePathSize (UsbDevicePathEndPtr);
|
|
|
|
if (Size ==0){
|
|
|
|
//
|
|
|
|
// The passed in DevicePath does not contain the usb nodes
|
|
|
|
//
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Create a new device path which only contain the above Usb part
|
|
|
|
//
|
|
|
|
UsbDevicePathPtr = AllocateZeroPool (Size + sizeof (EFI_DEVICE_PATH_PROTOCOL));
|
|
|
|
ASSERT (UsbDevicePathPtr != NULL);
|
|
|
|
CopyMem (UsbDevicePathPtr, UsbDevicePathBeginPtr, Size);
|
|
|
|
//
|
|
|
|
// Append end device path node
|
|
|
|
//
|
|
|
|
UsbDevicePathEndPtr = (EFI_DEVICE_PATH_PROTOCOL *) ((UINTN) UsbDevicePathPtr + Size);
|
|
|
|
SetDevicePathEndNode (UsbDevicePathEndPtr);
|
|
|
|
return UsbDevicePathPtr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Check whether a usb device path is in a DEVICE_PATH_LIST_ITEM list.
|
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@param UsbDP a usb device path of DEVICE_PATH_LIST_ITEM.
|
|
|
|
@param UsbIoDPList a DEVICE_PATH_LIST_ITEM list.
|
2007-12-26 07:38:15 +01:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@retval TRUE there is a DEVICE_PATH_LIST_ITEM in UsbIoDPList which contains the passed in UsbDP.
|
|
|
|
@retval FALSE there is no DEVICE_PATH_LIST_ITEM in UsbIoDPList which contains the passed in UsbDP.
|
2007-12-26 07:38:15 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
BOOLEAN
|
|
|
|
EFIAPI
|
|
|
|
SearchUsbDPInList (
|
|
|
|
IN EFI_DEVICE_PATH_PROTOCOL *UsbDP,
|
|
|
|
IN LIST_ENTRY *UsbIoDPList
|
|
|
|
)
|
|
|
|
{
|
|
|
|
LIST_ENTRY *ListIndex;
|
|
|
|
DEVICE_PATH_LIST_ITEM *ListItem;
|
|
|
|
BOOLEAN Found;
|
|
|
|
UINTN UsbDpDevicePathSize;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Check that UsbDP and UsbIoDPList are valid
|
|
|
|
//
|
|
|
|
if ((UsbIoDPList == NULL) || (UsbDP == NULL)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
Found = FALSE;
|
|
|
|
ListIndex = UsbIoDPList->ForwardLink;
|
|
|
|
while (ListIndex != UsbIoDPList){
|
|
|
|
ListItem = CR(ListIndex, DEVICE_PATH_LIST_ITEM, Link, DEVICE_PATH_LIST_ITEM_SIGNATURE);
|
|
|
|
//
|
|
|
|
// Compare DEVICE_PATH_LIST_ITEM.DevicePath[]
|
|
|
|
//
|
|
|
|
ASSERT (ListItem->DevicePath != NULL);
|
|
|
|
|
|
|
|
UsbDpDevicePathSize = GetDevicePathSize (UsbDP);
|
|
|
|
if (UsbDpDevicePathSize == GetDevicePathSize (ListItem->DevicePath)) {
|
|
|
|
if ((CompareMem (UsbDP, ListItem->DevicePath, UsbDpDevicePathSize)) == 0) {
|
|
|
|
Found = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ListIndex = ListIndex->ForwardLink;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Found;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Add a usb device path into the DEVICE_PATH_LIST_ITEM list.
|
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@param UsbDP a usb device path of DEVICE_PATH_LIST_ITEM.
|
|
|
|
@param UsbIoDPList a DEVICE_PATH_LIST_ITEM list.
|
2007-12-26 07:38:15 +01:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@retval EFI_INVALID_PARAMETER If parameters are invalid, return this value.
|
|
|
|
@retval EFI_SUCCESS If Add operation is successful, return this value.
|
2007-12-26 07:38:15 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
AddUsbDPToList (
|
|
|
|
IN EFI_DEVICE_PATH_PROTOCOL *UsbDP,
|
|
|
|
IN LIST_ENTRY *UsbIoDPList
|
|
|
|
)
|
|
|
|
{
|
|
|
|
DEVICE_PATH_LIST_ITEM *ListItem;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Check that UsbDP and UsbIoDPList are valid
|
|
|
|
//
|
|
|
|
if ((UsbIoDPList == NULL) || (UsbDP == NULL)) {
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SearchUsbDPInList (UsbDP, UsbIoDPList)){
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Prepare the usbio device path DEVICE_PATH_LIST_ITEM structure.
|
|
|
|
//
|
|
|
|
ListItem = AllocateZeroPool (sizeof (DEVICE_PATH_LIST_ITEM));
|
|
|
|
ASSERT (ListItem != NULL);
|
|
|
|
ListItem->Signature = DEVICE_PATH_LIST_ITEM_SIGNATURE;
|
|
|
|
ListItem->DevicePath = DuplicateDevicePath (UsbDP);
|
|
|
|
|
|
|
|
InsertTailList (UsbIoDPList, &ListItem->Link);
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Check whether usb device, whose interface is UsbIf, matches the usb class which indicated by
|
2008-07-09 12:02:26 +02:00
|
|
|
UsbClassDevicePathPtr whose is a short form usb class device path.
|
2007-12-26 07:38:15 +01:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@param UsbClassDevicePathPtr a short form usb class device path.
|
|
|
|
@param UsbIf a usb device interface.
|
2007-12-26 07:38:15 +01:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@retval TRUE the usb device match the usb class.
|
|
|
|
@retval FALSE the usb device does not match the usb class.
|
2007-12-26 07:38:15 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
BOOLEAN
|
|
|
|
EFIAPI
|
|
|
|
MatchUsbClass (
|
|
|
|
IN USB_CLASS_DEVICE_PATH *UsbClassDevicePathPtr,
|
|
|
|
IN USB_INTERFACE *UsbIf
|
|
|
|
)
|
|
|
|
{
|
|
|
|
USB_INTERFACE_DESC *IfDesc;
|
|
|
|
EFI_USB_INTERFACE_DESCRIPTOR *ActIfDesc;
|
|
|
|
EFI_USB_DEVICE_DESCRIPTOR *DevDesc;
|
|
|
|
|
|
|
|
|
|
|
|
if ((UsbClassDevicePathPtr->Header.Type != MESSAGING_DEVICE_PATH) ||
|
|
|
|
(UsbClassDevicePathPtr->Header.SubType != MSG_USB_CLASS_DP)){
|
|
|
|
ASSERT (0);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
IfDesc = UsbIf->IfDesc;
|
2009-02-12 07:23:15 +01:00
|
|
|
ASSERT (IfDesc->ActiveIndex < USB_MAX_INTERFACE_SETTING);
|
2007-12-26 07:38:15 +01:00
|
|
|
ActIfDesc = &(IfDesc->Settings[IfDesc->ActiveIndex]->Desc);
|
|
|
|
DevDesc = &(UsbIf->Device->DevDesc->Desc);
|
|
|
|
|
|
|
|
//
|
|
|
|
// If connect class policy, determine whether to create device handle by the five fields
|
|
|
|
// in class device path node.
|
|
|
|
//
|
|
|
|
// In addtion, hub interface is always matched for this policy.
|
|
|
|
//
|
|
|
|
if ((ActIfDesc->InterfaceClass == USB_HUB_CLASS_CODE) &&
|
|
|
|
(ActIfDesc->InterfaceSubClass == USB_HUB_SUBCLASS_CODE)) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// If vendor id or product id is 0xffff, they will be ignored.
|
|
|
|
//
|
|
|
|
if ((UsbClassDevicePathPtr->VendorId == 0xffff || UsbClassDevicePathPtr->VendorId == DevDesc->IdVendor) &&
|
|
|
|
(UsbClassDevicePathPtr->ProductId == 0xffff || UsbClassDevicePathPtr->ProductId == DevDesc->IdProduct)) {
|
|
|
|
|
|
|
|
//
|
2010-12-24 06:32:34 +01:00
|
|
|
// If Class in Device Descriptor is set to 0, the counterparts in interface should be checked.
|
2007-12-26 07:38:15 +01:00
|
|
|
//
|
2010-12-24 06:32:34 +01:00
|
|
|
if (DevDesc->DeviceClass == 0) {
|
2007-12-26 07:38:15 +01:00
|
|
|
if ((UsbClassDevicePathPtr->DeviceClass == ActIfDesc->InterfaceClass ||
|
|
|
|
UsbClassDevicePathPtr->DeviceClass == 0xff) &&
|
|
|
|
(UsbClassDevicePathPtr->DeviceSubClass == ActIfDesc->InterfaceSubClass ||
|
|
|
|
UsbClassDevicePathPtr->DeviceSubClass == 0xff) &&
|
2008-02-26 02:30:14 +01:00
|
|
|
(UsbClassDevicePathPtr->DeviceProtocol == ActIfDesc->InterfaceProtocol ||
|
|
|
|
UsbClassDevicePathPtr->DeviceProtocol == 0xff)) {
|
2007-12-26 07:38:15 +01:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2008-03-07 06:51:04 +01:00
|
|
|
} else if ((UsbClassDevicePathPtr->DeviceClass == DevDesc->DeviceClass ||
|
2007-12-26 07:38:15 +01:00
|
|
|
UsbClassDevicePathPtr->DeviceClass == 0xff) &&
|
|
|
|
(UsbClassDevicePathPtr->DeviceSubClass == DevDesc->DeviceSubClass ||
|
|
|
|
UsbClassDevicePathPtr->DeviceSubClass == 0xff) &&
|
2008-02-26 02:30:14 +01:00
|
|
|
(UsbClassDevicePathPtr->DeviceProtocol == DevDesc->DeviceProtocol ||
|
|
|
|
UsbClassDevicePathPtr->DeviceProtocol == 0xff)) {
|
2007-12-26 07:38:15 +01:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Check whether usb device, whose interface is UsbIf, matches the usb WWID requirement which indicated by
|
2008-07-09 12:02:26 +02:00
|
|
|
UsbWWIDDevicePathPtr whose is a short form usb WWID device path.
|
2007-12-26 07:38:15 +01:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@param UsbWWIDDevicePathPtr a short form usb WWID device path.
|
|
|
|
@param UsbIf a usb device interface.
|
2007-12-26 07:38:15 +01:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@retval TRUE the usb device match the usb WWID requirement.
|
|
|
|
@retval FALSE the usb device does not match the usb WWID requirement.
|
2007-12-26 07:38:15 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
BOOLEAN
|
|
|
|
MatchUsbWwid (
|
|
|
|
IN USB_WWID_DEVICE_PATH *UsbWWIDDevicePathPtr,
|
|
|
|
IN USB_INTERFACE *UsbIf
|
|
|
|
)
|
|
|
|
{
|
|
|
|
USB_INTERFACE_DESC *IfDesc;
|
|
|
|
EFI_USB_INTERFACE_DESCRIPTOR *ActIfDesc;
|
|
|
|
EFI_USB_DEVICE_DESCRIPTOR *DevDesc;
|
|
|
|
EFI_USB_STRING_DESCRIPTOR *StrDesc;
|
2010-12-24 06:32:34 +01:00
|
|
|
UINT16 Index;
|
|
|
|
CHAR16 *CompareStr;
|
|
|
|
UINTN CompareLen;
|
|
|
|
UINTN Length;
|
2007-12-26 07:38:15 +01:00
|
|
|
|
|
|
|
if ((UsbWWIDDevicePathPtr->Header.Type != MESSAGING_DEVICE_PATH) ||
|
|
|
|
(UsbWWIDDevicePathPtr->Header.SubType != MSG_USB_WWID_DP )){
|
|
|
|
ASSERT (0);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
IfDesc = UsbIf->IfDesc;
|
2009-02-12 07:23:15 +01:00
|
|
|
ASSERT (IfDesc->ActiveIndex < USB_MAX_INTERFACE_SETTING);
|
2007-12-26 07:38:15 +01:00
|
|
|
ActIfDesc = &(IfDesc->Settings[IfDesc->ActiveIndex]->Desc);
|
|
|
|
DevDesc = &(UsbIf->Device->DevDesc->Desc);
|
|
|
|
|
|
|
|
//
|
2010-12-24 06:32:34 +01:00
|
|
|
// In addition, Hub interface is always matched for this policy.
|
2007-12-26 07:38:15 +01:00
|
|
|
//
|
|
|
|
if ((ActIfDesc->InterfaceClass == USB_HUB_CLASS_CODE) &&
|
|
|
|
(ActIfDesc->InterfaceSubClass == USB_HUB_SUBCLASS_CODE)) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
2010-12-24 06:32:34 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// Check Vendor Id, Product Id and Interface Number.
|
2007-12-26 07:38:15 +01:00
|
|
|
//
|
2010-12-24 06:32:34 +01:00
|
|
|
if ((DevDesc->IdVendor != UsbWWIDDevicePathPtr->VendorId) ||
|
|
|
|
(DevDesc->IdProduct != UsbWWIDDevicePathPtr->ProductId) ||
|
|
|
|
(ActIfDesc->InterfaceNumber != UsbWWIDDevicePathPtr->InterfaceNumber)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2007-12-26 07:38:15 +01:00
|
|
|
//
|
2010-12-24 06:32:34 +01:00
|
|
|
// Check SerialNumber.
|
2007-12-26 07:38:15 +01:00
|
|
|
//
|
2010-12-24 06:32:34 +01:00
|
|
|
if (DevDesc->StrSerialNumber == 0) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
2007-12-26 07:38:15 +01:00
|
|
|
|
2010-12-24 06:32:34 +01:00
|
|
|
//
|
|
|
|
// Serial number in USB WWID device path is the last 64-or-less UTF-16 characters.
|
|
|
|
//
|
|
|
|
CompareStr = (CHAR16 *) (UINTN) (UsbWWIDDevicePathPtr + 1);
|
|
|
|
CompareLen = (DevicePathNodeLength (UsbWWIDDevicePathPtr) - sizeof (USB_WWID_DEVICE_PATH)) / sizeof (CHAR16);
|
|
|
|
if (CompareStr[CompareLen - 1] == L'\0') {
|
|
|
|
CompareLen--;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Compare serial number in each supported language.
|
|
|
|
//
|
|
|
|
for (Index = 0; Index < UsbIf->Device->TotalLangId; Index++) {
|
|
|
|
StrDesc = UsbGetOneString (UsbIf->Device, DevDesc->StrSerialNumber, UsbIf->Device->LangId[Index]);
|
|
|
|
if (StrDesc == NULL) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
Length = (StrDesc->Length - 2) / sizeof (CHAR16);
|
|
|
|
if ((Length >= CompareLen) &&
|
|
|
|
(CompareMem (StrDesc->String + Length - CompareLen, CompareStr, CompareLen * sizeof (CHAR16)) == 0)) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
2007-12-26 07:38:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-07-09 12:02:26 +02:00
|
|
|
Free a DEVICE_PATH_LIST_ITEM list.
|
2007-12-26 07:38:15 +01:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@param UsbIoDPList a DEVICE_PATH_LIST_ITEM list pointer.
|
2007-12-26 07:38:15 +01:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@retval EFI_INVALID_PARAMETER If parameters are invalid, return this value.
|
|
|
|
@retval EFI_SUCCESS If free operation is successful, return this value.
|
2007-12-26 07:38:15 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
UsbBusFreeUsbDPList (
|
|
|
|
IN LIST_ENTRY *UsbIoDPList
|
|
|
|
)
|
|
|
|
{
|
|
|
|
LIST_ENTRY *ListIndex;
|
|
|
|
DEVICE_PATH_LIST_ITEM *ListItem;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Check that ControllerHandle is a valid handle
|
|
|
|
//
|
|
|
|
if (UsbIoDPList == NULL) {
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
|
|
|
ListIndex = UsbIoDPList->ForwardLink;
|
|
|
|
while (ListIndex != UsbIoDPList){
|
|
|
|
ListItem = CR(ListIndex, DEVICE_PATH_LIST_ITEM, Link, DEVICE_PATH_LIST_ITEM_SIGNATURE);
|
|
|
|
//
|
|
|
|
// Free DEVICE_PATH_LIST_ITEM.DevicePath[]
|
|
|
|
//
|
|
|
|
if (ListItem->DevicePath != NULL){
|
|
|
|
FreePool(ListItem->DevicePath);
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// Free DEVICE_PATH_LIST_ITEM itself
|
|
|
|
//
|
|
|
|
ListIndex = ListIndex->ForwardLink;
|
|
|
|
RemoveEntryList (&ListItem->Link);
|
|
|
|
FreePool (ListItem);
|
|
|
|
}
|
|
|
|
|
|
|
|
InitializeListHead (UsbIoDPList);
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Store a wanted usb child device info (its Usb part of device path) which is indicated by
|
2008-07-09 12:02:26 +02:00
|
|
|
RemainingDevicePath in a Usb bus which is indicated by UsbBusId.
|
2007-12-26 07:38:15 +01:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@param UsbBusId Point to EFI_USB_BUS_PROTOCOL interface.
|
|
|
|
@param RemainingDevicePath The remaining device patch.
|
2007-12-26 07:38:15 +01:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@retval EFI_SUCCESS Add operation is successful.
|
|
|
|
@retval EFI_INVALID_PARAMETER The parameters are invalid.
|
2007-12-26 07:38:15 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
UsbBusAddWantedUsbIoDP (
|
|
|
|
IN EFI_USB_BUS_PROTOCOL *UsbBusId,
|
|
|
|
IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath
|
|
|
|
)
|
|
|
|
{
|
|
|
|
USB_BUS *Bus;
|
|
|
|
EFI_STATUS Status;
|
|
|
|
EFI_DEVICE_PATH_PROTOCOL *DevicePathPtr;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Check whether remaining device path is valid
|
|
|
|
//
|
2009-09-14 10:55:03 +02:00
|
|
|
if (RemainingDevicePath != NULL && !IsDevicePathEnd (RemainingDevicePath)) {
|
2007-12-26 07:38:15 +01:00
|
|
|
if ((RemainingDevicePath->Type != MESSAGING_DEVICE_PATH) ||
|
|
|
|
(RemainingDevicePath->SubType != MSG_USB_DP &&
|
|
|
|
RemainingDevicePath->SubType != MSG_USB_CLASS_DP
|
|
|
|
&& RemainingDevicePath->SubType != MSG_USB_WWID_DP
|
|
|
|
)) {
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (UsbBusId == NULL){
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
|
|
|
Bus = USB_BUS_FROM_THIS (UsbBusId);
|
|
|
|
|
|
|
|
if (RemainingDevicePath == NULL) {
|
|
|
|
//
|
2009-09-14 10:55:03 +02:00
|
|
|
// RemainingDevicePath == NULL means all Usb devices in this bus are wanted.
|
2007-12-26 07:38:15 +01:00
|
|
|
// Here use a Usb class Device Path in WantedUsbIoDPList to indicate all Usb devices
|
|
|
|
// are wanted Usb devices
|
|
|
|
//
|
|
|
|
Status = UsbBusFreeUsbDPList (&Bus->WantedUsbIoDPList);
|
|
|
|
ASSERT (!EFI_ERROR (Status));
|
|
|
|
DevicePathPtr = DuplicateDevicePath ((EFI_DEVICE_PATH_PROTOCOL *) &mAllUsbClassDevicePath);
|
2009-09-14 10:55:03 +02:00
|
|
|
} else if (!IsDevicePathEnd (RemainingDevicePath)) {
|
2007-12-26 07:38:15 +01:00
|
|
|
//
|
2009-09-14 10:55:03 +02:00
|
|
|
// If RemainingDevicePath isn't the End of Device Path Node,
|
2007-12-26 07:38:15 +01:00
|
|
|
// Create new Usb device path according to the usb part in remaining device path
|
|
|
|
//
|
|
|
|
DevicePathPtr = GetUsbDPFromFullDP (RemainingDevicePath);
|
2009-09-14 10:55:03 +02:00
|
|
|
} else {
|
|
|
|
//
|
|
|
|
// If RemainingDevicePath is the End of Device Path Node,
|
|
|
|
// skip enumerate any device and return EFI_SUCESSS
|
|
|
|
//
|
|
|
|
return EFI_SUCCESS;
|
2007-12-26 07:38:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ASSERT (DevicePathPtr != NULL);
|
|
|
|
Status = AddUsbDPToList (DevicePathPtr, &Bus->WantedUsbIoDPList);
|
|
|
|
ASSERT (!EFI_ERROR (Status));
|
2009-09-14 10:55:03 +02:00
|
|
|
FreePool (DevicePathPtr);
|
2007-12-26 07:38:15 +01:00
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-07-09 12:02:26 +02:00
|
|
|
Check whether a usb child device is the wanted device in a bus.
|
2007-12-26 07:38:15 +01:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@param Bus The Usb bus's private data pointer.
|
|
|
|
@param UsbIf The usb child device inferface.
|
2007-12-26 07:38:15 +01:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@retval True If a usb child device is the wanted device in a bus.
|
|
|
|
@retval False If a usb child device is *NOT* the wanted device in a bus.
|
2007-12-26 07:38:15 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
BOOLEAN
|
|
|
|
EFIAPI
|
|
|
|
UsbBusIsWantedUsbIO (
|
|
|
|
IN USB_BUS *Bus,
|
|
|
|
IN USB_INTERFACE *UsbIf
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_DEVICE_PATH_PROTOCOL *DevicePathPtr;
|
|
|
|
LIST_ENTRY *WantedUsbIoDPListPtr;
|
|
|
|
LIST_ENTRY *WantedListIndex;
|
|
|
|
DEVICE_PATH_LIST_ITEM *WantedListItem;
|
|
|
|
BOOLEAN DoConvert;
|
|
|
|
UINTN FirstDevicePathSize;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Check whether passed in parameters are valid
|
|
|
|
//
|
|
|
|
if ((UsbIf == NULL) || (Bus == NULL)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// Check whether UsbIf is Hub
|
|
|
|
//
|
|
|
|
if (UsbIf->IsHub) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Check whether all Usb devices in this bus are wanted
|
|
|
|
//
|
|
|
|
if (SearchUsbDPInList ((EFI_DEVICE_PATH_PROTOCOL *)&mAllUsbClassDevicePath, &Bus->WantedUsbIoDPList)){
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Check whether the Usb device match any item in WantedUsbIoDPList
|
|
|
|
//
|
|
|
|
WantedUsbIoDPListPtr = &Bus->WantedUsbIoDPList;
|
|
|
|
//
|
|
|
|
// Create new Usb device path according to the usb part in UsbIo full device path
|
|
|
|
//
|
|
|
|
DevicePathPtr = GetUsbDPFromFullDP (UsbIf->DevicePath);
|
|
|
|
ASSERT (DevicePathPtr != NULL);
|
|
|
|
|
|
|
|
DoConvert = FALSE;
|
|
|
|
WantedListIndex = WantedUsbIoDPListPtr->ForwardLink;
|
|
|
|
while (WantedListIndex != WantedUsbIoDPListPtr){
|
|
|
|
WantedListItem = CR(WantedListIndex, DEVICE_PATH_LIST_ITEM, Link, DEVICE_PATH_LIST_ITEM_SIGNATURE);
|
|
|
|
ASSERT (WantedListItem->DevicePath->Type == MESSAGING_DEVICE_PATH);
|
|
|
|
switch (WantedListItem->DevicePath->SubType) {
|
|
|
|
case MSG_USB_DP:
|
|
|
|
FirstDevicePathSize = GetDevicePathSize (WantedListItem->DevicePath);
|
|
|
|
if (FirstDevicePathSize == GetDevicePathSize (DevicePathPtr)) {
|
|
|
|
if (CompareMem (
|
|
|
|
WantedListItem->DevicePath,
|
|
|
|
DevicePathPtr,
|
|
|
|
GetDevicePathSize (DevicePathPtr)) == 0
|
|
|
|
) {
|
|
|
|
DoConvert = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case MSG_USB_CLASS_DP:
|
|
|
|
if (MatchUsbClass((USB_CLASS_DEVICE_PATH *)WantedListItem->DevicePath, UsbIf)) {
|
|
|
|
DoConvert = TRUE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case MSG_USB_WWID_DP:
|
|
|
|
if (MatchUsbWwid((USB_WWID_DEVICE_PATH *)WantedListItem->DevicePath, UsbIf)) {
|
|
|
|
DoConvert = TRUE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ASSERT (0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (DoConvert) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
WantedListIndex = WantedListIndex->ForwardLink;
|
|
|
|
}
|
|
|
|
gBS->FreePool (DevicePathPtr);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Check whether the new Usb device path is wanted
|
|
|
|
//
|
|
|
|
if (DoConvert){
|
|
|
|
return TRUE;
|
|
|
|
} else {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Recursively connnect every wanted usb child device to ensure they all fully connected.
|
2008-07-09 12:02:26 +02:00
|
|
|
Check all the child Usb IO handles in this bus, recursively connecte if it is wanted usb child device.
|
2007-12-26 07:38:15 +01:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@param UsbBusId Point to EFI_USB_BUS_PROTOCOL interface.
|
2007-12-26 07:38:15 +01:00
|
|
|
|
2008-07-09 12:02:26 +02:00
|
|
|
@retval EFI_SUCCESS Connect is done successfully.
|
|
|
|
@retval EFI_INVALID_PARAMETER The parameter is invalid.
|
2007-12-26 07:38:15 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
UsbBusRecursivelyConnectWantedUsbIo (
|
|
|
|
IN EFI_USB_BUS_PROTOCOL *UsbBusId
|
|
|
|
)
|
|
|
|
{
|
|
|
|
USB_BUS *Bus;
|
|
|
|
EFI_STATUS Status;
|
|
|
|
UINTN Index;
|
|
|
|
EFI_USB_IO_PROTOCOL *UsbIo;
|
|
|
|
USB_INTERFACE *UsbIf;
|
|
|
|
UINTN UsbIoHandleCount;
|
|
|
|
EFI_HANDLE *UsbIoBuffer;
|
|
|
|
EFI_DEVICE_PATH_PROTOCOL *UsbIoDevicePath;
|
|
|
|
|
|
|
|
if (UsbBusId == NULL){
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
|
|
|
Bus = USB_BUS_FROM_THIS (UsbBusId);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Get all Usb IO handles in system
|
|
|
|
//
|
|
|
|
UsbIoHandleCount = 0;
|
|
|
|
Status = gBS->LocateHandleBuffer (ByProtocol, &gEfiUsbIoProtocolGuid, NULL, &UsbIoHandleCount, &UsbIoBuffer);
|
|
|
|
if (Status == EFI_NOT_FOUND || UsbIoHandleCount == 0) {
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
ASSERT (!EFI_ERROR (Status));
|
|
|
|
|
|
|
|
for (Index = 0; Index < UsbIoHandleCount; Index++) {
|
|
|
|
//
|
|
|
|
// Check whether the USB IO handle is a child of this bus
|
|
|
|
// Note: The usb child handle maybe invalid because of hot plugged out during the loop
|
|
|
|
//
|
|
|
|
UsbIoDevicePath = NULL;
|
|
|
|
Status = gBS->HandleProtocol (UsbIoBuffer[Index], &gEfiDevicePathProtocolGuid, (VOID *) &UsbIoDevicePath);
|
|
|
|
if (EFI_ERROR (Status) || UsbIoDevicePath == NULL) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (CompareMem (
|
|
|
|
UsbIoDevicePath,
|
|
|
|
Bus->DevicePath,
|
|
|
|
(GetDevicePathSize (Bus->DevicePath) - sizeof (EFI_DEVICE_PATH_PROTOCOL))
|
|
|
|
) != 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Get the child Usb IO interface
|
|
|
|
//
|
|
|
|
Status = gBS->HandleProtocol(
|
|
|
|
UsbIoBuffer[Index],
|
|
|
|
&gEfiUsbIoProtocolGuid,
|
|
|
|
(VOID **) &UsbIo
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
UsbIf = USB_INTERFACE_FROM_USBIO (UsbIo);
|
|
|
|
|
|
|
|
if (UsbBusIsWantedUsbIO (Bus, UsbIf)) {
|
|
|
|
if (!UsbIf->IsManaged) {
|
|
|
|
//
|
|
|
|
// Recursively connect the wanted Usb Io handle
|
|
|
|
//
|
2008-12-18 09:48:36 +01:00
|
|
|
DEBUG ((EFI_D_INFO, "UsbConnectDriver: TPL before connect is %d\n", (UINT32)UsbGetCurrentTpl ()));
|
2007-12-26 07:38:15 +01:00
|
|
|
Status = gBS->ConnectController (UsbIf->Handle, NULL, NULL, TRUE);
|
|
|
|
UsbIf->IsManaged = (BOOLEAN)!EFI_ERROR (Status);
|
2008-12-18 09:48:36 +01:00
|
|
|
DEBUG ((EFI_D_INFO, "UsbConnectDriver: TPL after connect is %d\n", (UINT32)UsbGetCurrentTpl()));
|
2007-12-26 07:38:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|