|
| typedef struct _EFI_USB2_HC_PROTOCOL | EFI_USB2_HC_PROTOCOL |
| |
| typedef EFI_STATUS(EFIAPI * | EFI_USB2_HC_PROTOCOL_GET_CAPABILITY) (IN EFI_USB2_HC_PROTOCOL *This, OUT UINT8 *MaxSpeed, OUT UINT8 *PortNumber, OUT UINT8 *Is64BitCapable) |
| |
| typedef EFI_STATUS(EFIAPI * | EFI_USB2_HC_PROTOCOL_RESET) (IN EFI_USB2_HC_PROTOCOL *This, IN UINT16 Attributes) |
| |
| typedef EFI_STATUS(EFIAPI * | EFI_USB2_HC_PROTOCOL_GET_STATE) (IN EFI_USB2_HC_PROTOCOL *This, OUT EFI_USB_HC_STATE *State) |
| |
| typedef EFI_STATUS(EFIAPI * | EFI_USB2_HC_PROTOCOL_SET_STATE) (IN EFI_USB2_HC_PROTOCOL *This, IN EFI_USB_HC_STATE State) |
| |
| typedef EFI_STATUS(EFIAPI * | EFI_USB2_HC_PROTOCOL_CONTROL_TRANSFER) (IN EFI_USB2_HC_PROTOCOL *This, IN UINT8 DeviceAddress, IN UINT8 DeviceSpeed, IN UINTN MaximumPacketLength, IN EFI_USB_DEVICE_REQUEST *Request, IN EFI_USB_DATA_DIRECTION TransferDirection, IN OUT VOID *Data OPTIONAL, IN OUT UINTN *DataLength OPTIONAL, IN UINTN TimeOut, IN EFI_USB2_HC_TRANSACTION_TRANSLATOR *Translator, OUT UINT32 *TransferResult) |
| |
| typedef EFI_STATUS(EFIAPI * | EFI_USB2_HC_PROTOCOL_BULK_TRANSFER) (IN EFI_USB2_HC_PROTOCOL *This, IN UINT8 DeviceAddress, IN UINT8 EndPointAddress, IN UINT8 DeviceSpeed, IN UINTN MaximumPacketLength, IN UINT8 DataBuffersNumber, 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 *TransferResult) |
| |
| typedef EFI_STATUS(EFIAPI * | EFI_USB2_HC_PROTOCOL_ASYNC_INTERRUPT_TRANSFER) (IN EFI_USB2_HC_PROTOCOL *This, IN UINT8 DeviceAddress, IN UINT8 EndPointAddress, IN UINT8 DeviceSpeed, IN UINTN MaxiumPacketLength, IN BOOLEAN IsNewTransfer, IN OUT UINT8 *DataToggle, IN UINTN PollingInterval OPTIONAL, IN UINTN DataLength OPTIONAL, IN EFI_USB2_HC_TRANSACTION_TRANSLATOR *Translator OPTIONAL, IN EFI_ASYNC_USB_TRANSFER_CALLBACK CallBackFunction OPTIONAL, IN VOID *Context OPTIONAL) |
| |
| typedef EFI_STATUS(EFIAPI * | EFI_USB2_HC_PROTOCOL_SYNC_INTERRUPT_TRANSFER) (IN EFI_USB2_HC_PROTOCOL *This, IN UINT8 DeviceAddress, IN UINT8 EndPointAddress, IN UINT8 DeviceSpeed, IN UINTN MaximumPacketLength, IN OUT VOID *Data, IN OUT UINTN *DataLength, IN OUT UINT8 *DataToggle, IN UINTN TimeOut, IN EFI_USB2_HC_TRANSACTION_TRANSLATOR *Translator, OUT UINT32 *TransferResult) |
| |
| typedef EFI_STATUS(EFIAPI * | EFI_USB2_HC_PROTOCOL_ISOCHRONOUS_TRANSFER) (IN EFI_USB2_HC_PROTOCOL *This, IN UINT8 DeviceAddress, IN UINT8 EndPointAddress, IN UINT8 DeviceSpeed, IN UINTN MaximumPacketLength, IN UINT8 DataBuffersNumber, IN OUT VOID *Data[EFI_USB_MAX_ISO_BUFFER_NUM], IN UINTN DataLength, IN EFI_USB2_HC_TRANSACTION_TRANSLATOR *Translator, OUT UINT32 *TransferResult) |
| |
| typedef EFI_STATUS(EFIAPI * | EFI_USB2_HC_PROTOCOL_ASYNC_ISOCHRONOUS_TRANSFER) (IN EFI_USB2_HC_PROTOCOL *This, IN UINT8 DeviceAddress, IN UINT8 EndPointAddress, IN UINT8 DeviceSpeed, IN UINTN MaximumPacketLength, IN UINT8 DataBuffersNumber, 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 IsochronousCallBack, IN VOID *Context OPTIONAL) |
| |
| typedef EFI_STATUS(EFIAPI * | EFI_USB2_HC_PROTOCOL_GET_ROOTHUB_PORT_STATUS) (IN EFI_USB2_HC_PROTOCOL *This, IN UINT8 PortNumber, OUT EFI_USB_PORT_STATUS *PortStatus) |
| |
| typedef EFI_STATUS(EFIAPI * | EFI_USB2_HC_PROTOCOL_SET_ROOTHUB_PORT_FEATURE) (IN EFI_USB2_HC_PROTOCOL *This, IN UINT8 PortNumber, IN EFI_USB_PORT_FEATURE PortFeature) |
| |
| typedef EFI_STATUS(EFIAPI * | EFI_USB2_HC_PROTOCOL_CLEAR_ROOTHUB_PORT_FEATURE) (IN EFI_USB2_HC_PROTOCOL *This, IN UINT8 PortNumber, IN EFI_USB_PORT_FEATURE PortFeature) |
| |
EFI_USB2_HC_PROTOCOL as defined in UEFI 2.0. The USB Host Controller Protocol is used by code, typically USB bus drivers, running in the EFI boot services environment, to perform data transactions over a USB bus. In addition, it provides an abstraction for the root hub of the USB bus.
Copyright (c) 2006 - 2018, Intel Corporation. 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.
| typedef EFI_STATUS(EFIAPI * EFI_USB2_HC_PROTOCOL_ASYNC_ISOCHRONOUS_TRANSFER) (IN EFI_USB2_HC_PROTOCOL *This, IN UINT8 DeviceAddress, IN UINT8 EndPointAddress, IN UINT8 DeviceSpeed, IN UINTN MaximumPacketLength, IN UINT8 DataBuffersNumber, 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 IsochronousCallBack, IN VOID *Context OPTIONAL) |
Submits nonblocking isochronous transfer to an isochronous endpoint of a USB device.
This is an asynchronous type of USB isochronous transfer. If the caller submits a USB isochronous transfer request through this function, this function will return immediately.
When the isochronous transfer completes, the IsochronousCallbackfunction will be triggered, the caller can know the transfer results. If the transfer is successful, the caller can get the data received or sent in this callback function.
The target endpoint is specified by DeviceAddressand EndpointAddress. Isochronous transfers are used when working with isochronous date. It provides periodic, continuous communication between the host and a device. Isochronous transfers can be used only by full-speed, high-speed, and super-speed devices.
High-speed isochronous transfers can be performed using multiple data buffers. The number of buffers that are actually prepared for the transfer is specified by DataBuffersNumber. For full-speed isochronous transfers this value is ignored.
Data represents a list of pointers to the data buffers. For full-speed isochronous transfers only the data pointed by Data[0] shall be used. For high-speed isochronous transfers and for the split transactions depending on DataLength there several data buffers can be used. For the high-speed isochronous transfers the total number of buffers must not exceed EFI_USB_MAX_ISO_BUFFER_NUM.
For split transactions performed on full-speed device by high-speed host controller the total number of buffers is limited to EFI_USB_MAX_ISO_BUFFER_NUM1.
EFI_INVALID_PARAMETER is returned if one of the following conditionsis satisfied:
- Data is NULL.
- DataLength is 0.
- DeviceSpeed is not one of the supported values listed above.
- MaximumPacketLength is invalid. MaximumPacketLength must be 1023 or less for full-speed devices and 1024 or less for high-speed and super-speed devices.
- Parameters
-
| This | A pointer to the EFI_USB2_HC_PROTOCOL instance. |
| DeviceAddress | Represents the address of the target device on the USB. |
| EndPointAddress | The combination of an endpoint number and an endpoint direction of the target USB device. |
| DeviceSpeed | Indicates device speed. The supported values are EFI_USB_SPEED_FULL, EFI_USB_SPEED_HIGH, or EFI_USB_SPEED_SUPER. |
| MaximumPacketLength | Indicates the maximum packet size the target endpoint is capable of sending or receiving. |
| DataBuffersNumber | Number of data buffers prepared for the transfer. |
| Data | Array of pointers to the buffers of data that will be transmitted to USB device or received from USB device. |
| DataLength | Specifies the length, in bytes, of the data to be sent to or received from the USB device. |
| Translator | A pointer to the transaction translator data. |
| IsochronousCallback | The Callback function. This function is called if the requested isochronous transfer is completed. |
| Context | Data passed to the IsochronousCallback function. This is an optional parameter and may be NULL. |
- Return values
-
| EFI_SUCCESS | The asynchronous isochronous transfer request has been successfully submitted or canceled. |
| EFI_INVALID_PARAMETER | Some parameters are invalid. |
| EFI_OUT_OF_RESOURCES | The asynchronous isochronous transfer could not be submitted due to a lack of resources. |
Submits isochronous transfer to an isochronous endpoint of a USB device.
This function is used to submit isochronous transfer to a target endpoint of a USB device. The target endpoint is specified by DeviceAddressand EndpointAddress. Isochronous transfers are used when working with isochronous date. It provides periodic, continuous communication between the host and a device. Isochronous transfers can beused only by full-speed, high-speed, and super-speed devices.
High-speed isochronous transfers can be performed using multiple data buffers. The number of buffers that are actually prepared for the transfer is specified by DataBuffersNumber. For full-speed isochronous transfers this value is ignored.
Data represents a list of pointers to the data buffers. For full-speed isochronous transfers only the data pointed by Data[0]shall be used. For high-speed isochronous transfers and for the split transactions depending on DataLengththere several data buffers canbe used. For the high-speed isochronous transfers the total number of buffers must not exceed EFI_USB_MAX_ISO_BUFFER_NUM.
For split transactions performed on full-speed device by high-speed host controller the total number of buffers is limited to EFI_USB_MAX_ISO_BUFFER_NUM1. If the isochronous transfer is successful, then EFI_SUCCESSis returned. The isochronous transfer is designed to be completed within one USB frame time, if it cannot be completed, EFI_TIMEOUT is returned. If an error other than timeout occurs during the USB transfer, then EFI_DEVICE_ERROR is returned and the detailed status code will be returned in TransferResult.
EFI_INVALID_PARAMETERis returned if one of the following conditionsis satisfied:
- Data is NULL.
- DataLength is 0.
- DeviceSpeed is not one of the supported values listed above.
- MaximumPacketLength is invalid. MaximumPacketLength must be 1023 or less for full-speed devices, and 1024 or less for high-speed and super-speed devices.
- TransferResult is NULL.
- Parameters
-
| This | A pointer to the EFI_USB2_HC_PROTOCOL instance. |
| DeviceAddress | Represents the address of the target device on the USB. |
| EndPointAddress | The combination of an endpoint number and an endpoint direction of the target USB device. |
| DeviceSpeed | Indicates device speed. The supported values are EFI_USB_SPEED_FULL, EFI_USB_SPEED_HIGH, or EFI_USB_SPEED_SUPER. |
| MaximumPacketLength | Indicates the maximum packet size the target endpoint is capable of sending or receiving. |
| DataBuffersNumber | Number of data buffers prepared for the transfer. |
| Data | Array of pointers to the buffers of data that will be transmitted to USB device or received from USB device. |
| DataLength | Specifies the length, in bytes, of the data to be sent to or received from the USB device. |
| Translator | A pointer to the transaction translator data. |
| TransferResult | A pointer to the detailed result information of the isochronous transfer. |
- Return values
-
| EFI_SUCCESS | The isochronous transfer was completed successfully. |
| EFI_INVALID_PARAMETER | Some parameters are invalid. |
| EFI_OUT_OF_RESOURCES | The isochronous transfer could not be submitted due to a lack of resources. |
| EFI_TIMEOUT | The isochronous transfer cannot be completed within the one USB frame time. |
| EFI_DEVICE_ERROR | The isochronous transfer failed due to host controller or device error. Caller should check TransferResult for detailed error information. |