CMSIS-Driver
Version 2.8.0
Peripheral Interface for Middleware and Application Code
|
Driver API for USB Host. More...
Content | |
USBH Port Events | |
The USB Host driver generates Port call back events that are notified via the function ARM_USBH_SignalPortEvent. | |
USBH Pipe Events | |
The USB Host driver generates Pipe call back events that are notified via the function ARM_USBH_SignalPipeEvent. | |
USBH Packet Information | |
Specify USB packet information used by the function ARM_USBH_PipeTransfer. | |
Data Structures | |
struct | ARM_DRIVER_USBH |
Access structure of USB Host Driver. More... | |
struct | ARM_USBH_CAPABILITIES |
USB Host Driver Capabilities. More... | |
struct | ARM_USBH_PORT_STATE |
USB Host Port State. More... | |
Typedefs | |
typedef uint32_t | ARM_USBH_PIPE_HANDLE |
USB Host Pipe Handle. More... | |
typedef void(* | ARM_USBH_SignalPortEvent_t )(uint8_t port, uint32_t event) |
Pointer to ARM_USBH_SignalPortEvent : Signal Root HUB Port Event. More... | |
typedef void(* | ARM_USBH_SignalPipeEvent_t )(ARM_USBH_PIPE_HANDLE pipe_hndl, uint32_t event) |
Pointer to ARM_USBH_SignalPipeEvent : Signal Pipe Event. More... | |
Functions | |
ARM_DRIVER_VERSION | ARM_USBH_GetVersion (void) |
Get driver version. More... | |
ARM_USBH_CAPABILITIES | ARM_USBH_GetCapabilities (void) |
Get driver capabilities. More... | |
int32_t | ARM_USBH_Initialize (ARM_USBH_SignalPortEvent_t cb_port_event, ARM_USBH_SignalPipeEvent_t cb_pipe_event) |
Initialize USB Host Interface. More... | |
int32_t | ARM_USBH_Uninitialize (void) |
De-initialize USB Host Interface. More... | |
int32_t | ARM_USBH_PowerControl (ARM_POWER_STATE state) |
Control USB Host Interface Power. More... | |
int32_t | ARM_USBH_PortVbusOnOff (uint8_t port, bool vbus) |
Root HUB Port VBUS on/off. More... | |
int32_t | ARM_USBH_PortReset (uint8_t port) |
Do Root HUB Port Reset. More... | |
int32_t | ARM_USBH_PortSuspend (uint8_t port) |
Suspend Root HUB Port (stop generating SOFs). More... | |
int32_t | ARM_USBH_PortResume (uint8_t port) |
Resume Root HUB Port (start generating SOFs). More... | |
ARM_USBH_PORT_STATE | ARM_USBH_PortGetState (uint8_t port) |
Get current Root HUB Port State. More... | |
ARM_USBH_PIPE_HANDLE | ARM_USBH_PipeCreate (uint8_t dev_addr, uint8_t dev_speed, uint8_t hub_addr, uint8_t hub_port, uint8_t ep_addr, uint8_t ep_type, uint16_t ep_max_packet_size, uint8_t ep_interval) |
Create Pipe in System. More... | |
int32_t | ARM_USBH_PipeModify (ARM_USBH_PIPE_HANDLE pipe_hndl, uint8_t dev_addr, uint8_t dev_speed, uint8_t hub_addr, uint8_t hub_port, uint16_t ep_max_packet_size) |
Modify Pipe in System. More... | |
int32_t | ARM_USBH_PipeDelete (ARM_USBH_PIPE_HANDLE pipe_hndl) |
Delete Pipe from System. More... | |
int32_t | ARM_USBH_PipeReset (ARM_USBH_PIPE_HANDLE pipe_hndl) |
Reset Pipe. More... | |
int32_t | ARM_USBH_PipeTransfer (ARM_USBH_PIPE_HANDLE pipe_hndl, uint32_t packet, uint8_t *data, uint32_t num) |
Transfer packets through USB Pipe. More... | |
uint32_t | ARM_USBH_PipeTransferGetResult (ARM_USBH_PIPE_HANDLE pipe_hndl) |
Get result of USB Pipe transfer. More... | |
int32_t | ARM_USBH_PipeTransferAbort (ARM_USBH_PIPE_HANDLE pipe_hndl) |
Abort current USB Pipe transfer. More... | |
uint16_t | ARM_USBH_GetFrameNumber (void) |
Get current USB Frame Number. More... | |
void | ARM_USBH_SignalPortEvent (uint8_t port, uint32_t event) |
Signal Root HUB Port Event. More... | |
void | ARM_USBH_SignalPipeEvent (ARM_USBH_PIPE_HANDLE pipe_hndl, uint32_t event) |
Signal Pipe Event. More... | |
Driver API for USB Host.
struct ARM_DRIVER_USBH |
Access structure of USB Host Driver.
The functions of the USB Host driver are accessed by function pointers. Refer to Common Driver Functions for overview information.
Each instance of an USBH provides such an access struct. The instance is indicated by a postfix in the symbol name of the access struct, for example:
A configuration setting in the middleware allows connecting the middleware to a specific driver instance Driver_USBHn. The default is 0, which connects a middleware to the first instance of a driver.
Data Fields | |
ARM_DRIVER_VERSION(* | GetVersion )(void) |
Pointer to ARM_USBH_GetVersion : Get driver version. More... | |
ARM_USBH_CAPABILITIES(* | GetCapabilities )(void) |
Pointer to ARM_USBH_GetCapabilities : Get driver capabilities. More... | |
int32_t(* | Initialize )(ARM_USBH_SignalPortEvent_t cb_port_event, ARM_USBH_SignalPipeEvent_t cb_pipe_event) |
Pointer to ARM_USBH_Initialize : Initialize USB Host Interface. More... | |
int32_t(* | Uninitialize )(void) |
Pointer to ARM_USBH_Uninitialize : De-initialize USB Host Interface. More... | |
int32_t(* | PowerControl )(ARM_POWER_STATE state) |
Pointer to ARM_USBH_PowerControl : Control USB Host Interface Power. More... | |
int32_t(* | PortVbusOnOff )(uint8_t port, bool vbus) |
Pointer to ARM_USBH_PortVbusOnOff : Root HUB Port VBUS on/off. More... | |
int32_t(* | PortReset )(uint8_t port) |
Pointer to ARM_USBH_PortReset : Do Root HUB Port Reset. More... | |
int32_t(* | PortSuspend )(uint8_t port) |
Pointer to ARM_USBH_PortSuspend : Suspend Root HUB Port (stop generating SOFs). More... | |
int32_t(* | PortResume )(uint8_t port) |
Pointer to ARM_USBH_PortResume : Resume Root HUB Port (start generating SOFs). More... | |
ARM_USBH_PORT_STATE(* | PortGetState )(uint8_t port) |
Pointer to ARM_USBH_PortGetState : Get current Root HUB Port State. More... | |
ARM_USBH_PIPE_HANDLE(* | PipeCreate )(uint8_t dev_addr, uint8_t dev_speed, uint8_t hub_addr, uint8_t hub_port, uint8_t ep_addr, uint8_t ep_type, uint16_t ep_max_packet_size, uint8_t ep_interval) |
Pointer to ARM_USBH_PipeCreate : Create Pipe in System. More... | |
int32_t(* | PipeModify )(ARM_USBH_PIPE_HANDLE pipe_hndl, uint8_t dev_addr, uint8_t dev_speed, uint8_t hub_addr, uint8_t hub_port, uint16_t ep_max_packet_size) |
Pointer to ARM_USBH_PipeModify : Modify Pipe in System. More... | |
int32_t(* | PipeDelete )(ARM_USBH_PIPE_HANDLE pipe_hndl) |
Pointer to ARM_USBH_PipeDelete : Delete Pipe from System. More... | |
int32_t(* | PipeReset )(ARM_USBH_PIPE_HANDLE pipe_hndl) |
Pointer to ARM_USBH_PipeReset : Reset Pipe. More... | |
int32_t(* | PipeTransfer )(ARM_USBH_PIPE_HANDLE pipe_hndl, uint32_t packet, uint8_t *data, uint32_t num) |
Pointer to ARM_USBH_PipeTransfer : Transfer packets through USB Pipe. More... | |
uint32_t(* | PipeTransferGetResult )(ARM_USBH_PIPE_HANDLE pipe_hndl) |
Pointer to ARM_USBH_PipeTransferGetResult : Get result of USB Pipe transfer. More... | |
int32_t(* | PipeTransferAbort )(ARM_USBH_PIPE_HANDLE pipe_hndl) |
Pointer to ARM_USBH_PipeTransferAbort : Abort current USB Pipe transfer. More... | |
uint16_t(* | GetFrameNumber )(void) |
Pointer to ARM_USBH_GetFrameNumber : Get current USB Frame Number. More... | |
ARM_DRIVER_VERSION(* GetVersion)(void) |
Pointer to ARM_USBH_GetVersion : Get driver version.
ARM_USBH_CAPABILITIES(* GetCapabilities)(void) |
Pointer to ARM_USBH_GetCapabilities : Get driver capabilities.
int32_t(* Initialize)(ARM_USBH_SignalPortEvent_t cb_port_event, ARM_USBH_SignalPipeEvent_t cb_pipe_event) |
Pointer to ARM_USBH_Initialize : Initialize USB Host Interface.
int32_t(* Uninitialize)(void) |
Pointer to ARM_USBH_Uninitialize : De-initialize USB Host Interface.
int32_t(* PowerControl)(ARM_POWER_STATE state) |
Pointer to ARM_USBH_PowerControl : Control USB Host Interface Power.
int32_t(* PortVbusOnOff)(uint8_t port, bool vbus) |
Pointer to ARM_USBH_PortVbusOnOff : Root HUB Port VBUS on/off.
int32_t(* PortReset)(uint8_t port) |
Pointer to ARM_USBH_PortReset : Do Root HUB Port Reset.
int32_t(* PortSuspend)(uint8_t port) |
Pointer to ARM_USBH_PortSuspend : Suspend Root HUB Port (stop generating SOFs).
int32_t(* PortResume)(uint8_t port) |
Pointer to ARM_USBH_PortResume : Resume Root HUB Port (start generating SOFs).
ARM_USBH_PORT_STATE(* PortGetState)(uint8_t port) |
Pointer to ARM_USBH_PortGetState : Get current Root HUB Port State.
ARM_USBH_PIPE_HANDLE(* PipeCreate)(uint8_t dev_addr, uint8_t dev_speed, uint8_t hub_addr, uint8_t hub_port, uint8_t ep_addr, uint8_t ep_type, uint16_t ep_max_packet_size, uint8_t ep_interval) |
Pointer to ARM_USBH_PipeCreate : Create Pipe in System.
int32_t(* PipeModify)(ARM_USBH_PIPE_HANDLE pipe_hndl, uint8_t dev_addr, uint8_t dev_speed, uint8_t hub_addr, uint8_t hub_port, uint16_t ep_max_packet_size) |
Pointer to ARM_USBH_PipeModify : Modify Pipe in System.
int32_t(* PipeDelete)(ARM_USBH_PIPE_HANDLE pipe_hndl) |
Pointer to ARM_USBH_PipeDelete : Delete Pipe from System.
int32_t(* PipeReset)(ARM_USBH_PIPE_HANDLE pipe_hndl) |
Pointer to ARM_USBH_PipeReset : Reset Pipe.
int32_t(* PipeTransfer)(ARM_USBH_PIPE_HANDLE pipe_hndl, uint32_t packet, uint8_t *data, uint32_t num) |
Pointer to ARM_USBH_PipeTransfer : Transfer packets through USB Pipe.
uint32_t(* PipeTransferGetResult)(ARM_USBH_PIPE_HANDLE pipe_hndl) |
Pointer to ARM_USBH_PipeTransferGetResult : Get result of USB Pipe transfer.
int32_t(* PipeTransferAbort)(ARM_USBH_PIPE_HANDLE pipe_hndl) |
Pointer to ARM_USBH_PipeTransferAbort : Abort current USB Pipe transfer.
uint16_t(* GetFrameNumber)(void) |
Pointer to ARM_USBH_GetFrameNumber : Get current USB Frame Number.
struct ARM_USBH_CAPABILITIES |
USB Host Driver Capabilities.
A USB Host driver can be implemented with different capabilities. The data fields of this structure encode the capabilities implemented by this driver.
Returned by:
struct ARM_USBH_PORT_STATE |
USB Host Port State.
This structure stores information about the state of the USB Host Port. The data fields encode whether a device is connected to the port, if port overcurrent is detected, and the port speed.
Returned by:
uint32_t ARM_USBH_PIPE_HANDLE |
USB Host Pipe Handle.
Each pipe is identified through a unique number, which is created by the function ARM_USBH_PipeCreate.
Parameter for:
Retruned by:
ARM_USBH_SignalPortEvent_t |
Pointer to ARM_USBH_SignalPortEvent : Signal Root HUB Port Event.
Provides the typedef for the callback function ARM_USBH_SignalPortEvent.
Parameter for:
ARM_USBH_SignalPipeEvent_t |
Pointer to ARM_USBH_SignalPipeEvent : Signal Pipe Event.
Provides the typedef for the callback function ARM_USBH_SignalPipeEvent.
Parameter for:
ARM_DRIVER_VERSION ARM_USBH_GetVersion | ( | void | ) |
Get driver version.
The function ARM_USBH_GetVersion returns version information of the driver implementation in ARM_DRIVER_VERSION
Example:
ARM_USBH_CAPABILITIES ARM_USBH_GetCapabilities | ( | void | ) |
Get driver capabilities.
The function ARM_USBH_GetCapabilities returns information about capabilities in this driver implementation. The data fields of the structure ARM_USBH_CAPABILITIES encode various capabilities, for example available HUB ports or if the hardware can generate signal events using the ARM_USBH_SignalPortEvent callback function.
Example:
int32_t ARM_USBH_Initialize | ( | ARM_USBH_SignalPortEvent_t | cb_port_event, |
ARM_USBH_SignalPipeEvent_t | cb_pipe_event | ||
) |
Initialize USB Host Interface.
[in] | cb_port_event | Pointer to ARM_USBH_SignalPortEvent |
[in] | cb_pipe_event | Pointer to ARM_USBH_SignalPipeEvent |
The function ARM_USBH_Initialize initializes the USB Host interface. It is called when the middleware component starts operation.
The function performs the following operations:
The parameter cb_port_event is a pointer to the ARM_USBH_SignalPortEvent callback function; use a NULL pointer when no port callback signals are required.
The parameter cb_pipe_event is a pointer to the ARM_USBH_SignalPipeEvent callback function.
Example:
int32_t ARM_USBH_Uninitialize | ( | void | ) |
De-initialize USB Host Interface.
The function ARM_USBH_Uninitialize de-initializes the resources of USB Host interface.
It is called when the middleware component stops operation and releases the software resources used by the interface.
int32_t ARM_USBH_PowerControl | ( | ARM_POWER_STATE | state | ) |
Control USB Host Interface Power.
[in] | state | Power state |
The function ARM_USBH_PowerControl operates the power modes of the USB Host interface.
The parameter state sets the operation and can have the following values:
Refer to Function Call Sequence for more information.
int32_t ARM_USBH_PortVbusOnOff | ( | uint8_t | port, |
bool | vbus | ||
) |
Root HUB Port VBUS on/off.
[in] | port | Root HUB Port Number |
[in] | vbus |
|
The function ARM_USBH_PortVbusOnOff controls the VBUS signal of the specified port.
int32_t ARM_USBH_PortReset | ( | uint8_t | port | ) |
Do Root HUB Port Reset.
[in] | port | Root HUB Port Number |
Executes reset signalling on the specified port.
int32_t ARM_USBH_PortSuspend | ( | uint8_t | port | ) |
Suspend Root HUB Port (stop generating SOFs).
[in] | port | Root HUB Port Number |
The function ARM_USBH_PortSuspend auspends USB signaling on the specified port.
int32_t ARM_USBH_PortResume | ( | uint8_t | port | ) |
Resume Root HUB Port (start generating SOFs).
[in] | port | Root HUB Port Number |
The function ARM_USBH_PortResume resumes USB signaling on the specified port.
ARM_USBH_PORT_STATE ARM_USBH_PortGetState | ( | uint8_t | port | ) |
Get current Root HUB Port State.
[in] | port | Root HUB Port Number |
The function ARM_USBH_PortGetState returns the current state of the specified port.
ARM_USBH_PIPE_HANDLE ARM_USBH_PipeCreate | ( | uint8_t | dev_addr, |
uint8_t | dev_speed, | ||
uint8_t | hub_addr, | ||
uint8_t | hub_port, | ||
uint8_t | ep_addr, | ||
uint8_t | ep_type, | ||
uint16_t | ep_max_packet_size, | ||
uint8_t | ep_interval | ||
) |
Create Pipe in System.
[in] | dev_addr | Device Address |
[in] | dev_speed | Device Speed |
[in] | hub_addr | Hub Address |
[in] | hub_port | Hub Port |
[in] | ep_addr | Endpoint Address
|
[in] | ep_type | Endpoint Type (ARM_USB_ENDPOINT_xxx) |
[in] | ep_max_packet_size | Endpoint Maximum Packet Size |
[in] | ep_interval | Endpoint Polling Interval |
The function ARM_USBH_PipeCreate creates a pipe for transfers (allocates required resources and configures the pipe).
The parameters specify pipe information (connection between host and device endpoint):
The function returns an pipe handle that is used for all subsequent operations on that pipe. In case of errors an invalid handle (NULL) is returned.
int32_t ARM_USBH_PipeModify | ( | ARM_USBH_PIPE_HANDLE | pipe_hndl, |
uint8_t | dev_addr, | ||
uint8_t | dev_speed, | ||
uint8_t | hub_addr, | ||
uint8_t | hub_port, | ||
uint16_t | ep_max_packet_size | ||
) |
Modify Pipe in System.
[in] | pipe_hndl | Pipe Handle |
[in] | dev_addr | Device Address |
[in] | dev_speed | Device Speed |
[in] | hub_addr | Hub Address |
[in] | hub_port | Hub Port |
[in] | ep_max_packet_size | Endpoint Maximum Packet Size |
The function ARM_USBH_PipeModify modifies a pipe configuration that was created with ARM_USBH_PipeCreate.
int32_t ARM_USBH_PipeDelete | ( | ARM_USBH_PIPE_HANDLE | pipe_hndl | ) |
Delete Pipe from System.
[in] | pipe_hndl | Pipe Handle |
The function ARM_USBH_PipeDelete deletes a pipe that was created with ARM_USBH_PipeCreate (deactivates the pipe and releases used resources).
int32_t ARM_USBH_PipeReset | ( | ARM_USBH_PIPE_HANDLE | pipe_hndl | ) |
Reset Pipe.
[in] | pipe_hndl | Pipe Handle |
The function ARM_USBH_PipeReset clears Halt condition and resets data toggle on the specified pipe.
int32_t ARM_USBH_PipeTransfer | ( | ARM_USBH_PIPE_HANDLE | pipe_hndl, |
uint32_t | packet, | ||
uint8_t * | data, | ||
uint32_t | num | ||
) |
Transfer packets through USB Pipe.
[in] | pipe_hndl | Pipe Handle |
[in] | packet | Packet information |
[in] | data | Pointer to buffer with data to send or for data to receive |
[in] | num | Number of data bytes to transfer |
The function ARM_USBH_PipeTransfer generates packets for sending or receiving data from an USB Endpoint.
The function specifies the buffer with data to send or for data to receive and the number of bytes to transfer (must be multiple of device endpoint maximum packet size for receive). It also specifies USBH Packet Information with parameter packet.
The function is non-blocking and returns as soon as the driver starts the operation on the specified pipe. During the operation it is not allowed to call this function again on the same pipe. Also the data buffer must stay allocated and the contents of data must not be modified.
Operation is completed when the the requested number of data bytes have been transferred and is indicated with ARM_USBH_EVENT_TRANSFER_COMPLETE event. It can also finish earlier on reception of different handshake tokens which are also indicated through USBH Pipe Events.
Transfer operation can be aborted by calling ARM_USBH_PipeTransferAbort.
uint32_t ARM_USBH_PipeTransferGetResult | ( | ARM_USBH_PIPE_HANDLE | pipe_hndl | ) |
Get result of USB Pipe transfer.
[in] | pipe_hndl | Pipe Handle |
The function ARM_USBH_PipeTransferGetResult returns the number of successfully transferred data bytes started by ARM_USBH_PipeTransfer operation.
int32_t ARM_USBH_PipeTransferAbort | ( | ARM_USBH_PIPE_HANDLE | pipe_hndl | ) |
Abort current USB Pipe transfer.
[in] | pipe_hndl | Pipe Handle |
The function ARM_USBH_PipeTransferAbort aborts an active pipe transfer started by ARM_USBH_PipeTransfer.
uint16_t ARM_USBH_GetFrameNumber | ( | void | ) |
Get current USB Frame Number.
The function ARM_USBH_GetFrameNumber returns the sequential 11-bit frame number of the last Start of Frame (SOF) packet.
void ARM_USBH_SignalPortEvent | ( | uint8_t | port, |
uint32_t | event | ||
) |
Signal Root HUB Port Event.
[in] | port | Root HUB Port Number |
[in] | event | USBH Port Events |
The function ARM_USBH_SignalPortEvent is a callback function registered by the function ARM_USBH_Initialize.
The parameter port specifies the root hub port number.
The parameter event indicates one or more events that occurred during driver operation. Each event is encoded in a separate bit and therefore it is possible to signal multiple events within the same call.
Not every event is necessarily generated by the driver. This depends on the implemented capabilities stored in the data fields of the structure ARM_USBH_CAPABILITIES, which can be retrieved with the function ARM_USBH_GetCapabilities.
The following events can be generated:
Parameter event | Bit | Description | supported when ARM_USBH_CAPABILITIES |
---|---|---|---|
ARM_USBH_EVENT_CONNECT | 0 | Occurs when USB Device connects to the Host. | data field event_connect= 1 |
ARM_USBH_EVENT_DISCONNECT | 1 | Occurs when USB Device disconnects from the Host. | data field event_disconnect= 1 |
ARM_USBH_EVENT_OVERCURRENT | 2 | Occurs when USB Overcurrent it detected. | data field event_overcurrent= 1 |
ARM_USBH_EVENT_RESET | 3 | Occurs when USB Reset is completed after calling ARM_USBH_PortReset. | always supported |
ARM_USBH_EVENT_SUSPEND | 4 | Occurs when USB Suspend is detected. | always supported |
ARM_USBH_EVENT_RESUME | 5 | Occurs when USB Resume is detected. | always supported |
ARM_USBH_EVENT_REMOTE_WAKEUP | 6 | Occurs when USB Remote wakeup is detected. | always supported |
void ARM_USBH_SignalPipeEvent | ( | ARM_USBH_PIPE_HANDLE | pipe_hndl, |
uint32_t | event | ||
) |
Signal Pipe Event.
[in] | pipe_hndl | Pipe Handle |
[in] | event | USBH Pipe Events |
The function ARM_USBH_SignalPipeEvent is a callback function registered by the function ARM_USBH_Initialize.
The parameter pipe_hndl specifies the pipe handle.
The parameter event indicates one or more events that occurred during driver operation. Each event is encoded in a separate bit and therefore it is possible to signal multiple events within the same call.
The following events can be generated:
Parameter event | Bit | Description |
---|---|---|
ARM_USBH_EVENT_TRANSFER_COMPLETE | 0 | Occurs after all the data has been transferred without errors. |
ARM_USBH_EVENT_HANDSHAKE_NAK | 1 | Occurs when NAK Handshake is received before all the data is transferred. |
ARM_USBH_EVENT_HANDSHAKE_NYET | 2 | Occurs when NYET Handshake is received before all the data is transferred. |
ARM_USBH_EVENT_HANDSHAKE_MDATA | 3 | Occurs when MDATA Handshake is received before all the data is transferred. |
ARM_USBH_EVENT_HANDSHAKE_STALL | 4 | Occurs when STALL Handshake is received before all the data is transferred. |
ARM_USBH_EVENT_HANDSHAKE_ERR | 5 | Occurs when ERR Handshake is received before all the data is transferred. |
ARM_USBH_EVENT_BUS_ERROR | 6 | Occurs when bus error is detected before all the data is transferred. |
See also: