123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- /* -----------------------------------------------------------------------------
- * Copyright (c) 2013-2014 ARM Ltd.
- *
- * This software is provided 'as-is', without any express or implied warranty.
- * In no event will the authors be held liable for any damages arising from
- * the use of this software. Permission is granted to anyone to use this
- * software for any purpose, including commercial applications, and to alter
- * it and redistribute it freely, subject to the following restrictions:
- *
- * 1. The origin of this software must not be misrepresented; you must not
- * claim that you wrote the original software. If you use this software in
- * a product, an acknowledgment in the product documentation would be
- * appreciated but is not required.
- *
- * 2. Altered source versions must be plainly marked as such, and must not be
- * misrepresented as being the original software.
- *
- * 3. This notice may not be removed or altered from any source distribution.
- *
- *
- * $Date: 3. Jun 2014
- * $Revision: V2.01
- *
- * Project: USB Device Driver definitions
- * -------------------------------------------------------------------------- */
- /* History:
- * Version 2.01
- * Added ARM_USBD_ReadSetupPacket function
- * Version 2.00
- * Removed ARM_USBD_DeviceConfigure function
- * Removed ARM_USBD_SET_ADDRESS_STAGE parameter from ARM_USBD_DeviceSetAddress function
- * Removed ARM_USBD_EndpointReadStart function
- * Replaced ARM_USBD_EndpointRead and ARM_USBD_EndpointWrite functions with ARM_USBD_EndpointTransfer
- * Added ARM_USBD_EndpointTransferGetResult function
- * Renamed ARM_USBD_EndpointAbort function to ARM_USBD_EndpointTransferAbort
- * Changed prefix ARM_DRV -> ARM_DRIVER
- * Changed return values of some functions to int32_t
- * Version 1.10
- * Namespace prefix ARM_ added
- * Version 1.00
- * Initial release
- */
- #ifndef __DRIVER_USBD_H
- #define __DRIVER_USBD_H
- #include "Driver_USB.h"
- #define ARM_USBD_API_VERSION ARM_DRIVER_VERSION_MAJOR_MINOR(2,01) /* API version */
- /**
- \brief USB Device State
- */
- typedef struct _ARM_USBD_STATE {
- uint32_t vbus : 1; ///< USB Device VBUS flag
- uint32_t speed : 2; ///< USB Device speed setting (ARM_USB_SPEED_xxx)
- uint32_t active : 1; ///< USB Device active flag
- } ARM_USBD_STATE;
- /****** USB Device Event *****/
- #define ARM_USBD_EVENT_VBUS_ON (1UL << 0) ///< USB Device VBUS On
- #define ARM_USBD_EVENT_VBUS_OFF (1UL << 1) ///< USB Device VBUS Off
- #define ARM_USBD_EVENT_RESET (1UL << 2) ///< USB Reset occurred
- #define ARM_USBD_EVENT_HIGH_SPEED (1UL << 3) ///< USB switch to High Speed occurred
- #define ARM_USBD_EVENT_SUSPEND (1UL << 4) ///< USB Suspend occurred
- #define ARM_USBD_EVENT_RESUME (1UL << 5) ///< USB Resume occurred
- /****** USB Endpoint Event *****/
- #define ARM_USBD_EVENT_SETUP (1UL << 0) ///< SETUP Packet
- #define ARM_USBD_EVENT_OUT (1UL << 1) ///< OUT Packet(s)
- #define ARM_USBD_EVENT_IN (1UL << 2) ///< IN Packet(s)
- #ifndef __DOXYGEN_MW__ // exclude from middleware documentation
- // Function documentation
- /**
- \fn ARM_DRIVER_VERSION ARM_USBD_GetVersion (void)
- \brief Get driver version.
- \return \ref ARM_DRIVER_VERSION
- */
- /**
- \fn ARM_USBD_CAPABILITIES ARM_USBD_GetCapabilities (void)
- \brief Get driver capabilities.
- \return \ref ARM_USBD_CAPABILITIES
- */
- /**
- \fn int32_t ARM_USBD_Initialize (ARM_USBD_SignalDeviceEvent_t cb_device_event,
- ARM_USBD_SignalEndpointEvent_t cb_endpoint_event)
- \brief Initialize USB Device Interface.
- \param[in] cb_device_event Pointer to \ref ARM_USBD_SignalDeviceEvent
- \param[in] cb_endpoint_event Pointer to \ref ARM_USBD_SignalEndpointEvent
- \return \ref execution_status
- */
- /**
- \fn int32_t ARM_USBD_Uninitialize (void)
- \brief De-initialize USB Device Interface.
- \return \ref execution_status
- */
- /**
- \fn int32_t ARM_USBD_PowerControl (ARM_POWER_STATE state)
- \brief Control USB Device Interface Power.
- \param[in] state Power state
- \return \ref execution_status
- */
- /**
- \fn int32_t ARM_USBD_DeviceConnect (void)
- \brief Connect USB Device.
- \return \ref execution_status
- */
- /**
- \fn int32_t ARM_USBD_DeviceDisconnect (void)
- \brief Disconnect USB Device.
- \return \ref execution_status
- */
- /**
- \fn ARM_USBD_STATE ARM_USBD_DeviceGetState (void)
- \brief Get current USB Device State.
- \return Device State \ref ARM_USBD_STATE
- */
- /**
- \fn int32_t ARM_USBD_DeviceRemoteWakeup (void)
- \brief Trigger USB Remote Wakeup.
- \return \ref execution_status
- */
- /**
- \fn int32_t ARM_USBD_DeviceSetAddress (uint8_t dev_addr)
- \brief Set USB Device Address.
- \param[in] dev_addr Device Address
- \return \ref execution_status
- */
- /**
- \fn int32_t ARM_USBD_ReadSetupPacket (uint8_t *setup)
- \brief Read setup packet received over Control Endpoint.
- \param[out] setup Pointer to buffer for setup packet
- \return \ref execution_status
- */
- /**
- \fn int32_t ARM_USBD_EndpointConfigure (uint8_t ep_addr,
- uint8_t ep_type,
- uint16_t ep_max_packet_size)
- \brief Configure USB Endpoint.
- \param[in] ep_addr Endpoint Address
- - ep_addr.0..3: Address
- - ep_addr.7: Direction
- \param[in] ep_type Endpoint Type (ARM_USB_ENDPOINT_xxx)
- \param[in] ep_max_packet_size Endpoint Maximum Packet Size
- \return \ref execution_status
- */
- /**
- \fn int32_t ARM_USBD_EndpointUnconfigure (uint8_t ep_addr)
- \brief Unconfigure USB Endpoint.
- \param[in] ep_addr Endpoint Address
- - ep_addr.0..3: Address
- - ep_addr.7: Direction
- \return \ref execution_status
- */
- /**
- \fn int32_t ARM_USBD_EndpointStall (uint8_t ep_addr, bool stall)
- \brief Set/Clear Stall for USB Endpoint.
- \param[in] ep_addr Endpoint Address
- - ep_addr.0..3: Address
- - ep_addr.7: Direction
- \param[in] stall Operation
- - \b false Clear
- - \b true Set
- \return \ref execution_status
- */
- /**
- \fn int32_t ARM_USBD_EndpointTransfer (uint8_t ep_addr, uint8_t *data, uint32_t num)
- \brief Read data from or Write data to USB Endpoint.
- \param[in] ep_addr Endpoint Address
- - ep_addr.0..3: Address
- - ep_addr.7: Direction
- \param[out] data Pointer to buffer for data to read or with data to write
- \param[in] num Number of data bytes to transfer
- \return \ref execution_status
- */
- /**
- \fn uint32_t ARM_USBD_EndpointTransferGetResult (uint8_t ep_addr)
- \brief Get result of USB Endpoint transfer.
- \param[in] ep_addr Endpoint Address
- - ep_addr.0..3: Address
- - ep_addr.7: Direction
- \return number of successfully transferred data bytes
- */
- /**
- \fn int32_t ARM_USBD_EndpointTransferAbort (uint8_t ep_addr)
- \brief Abort current USB Endpoint transfer.
- \param[in] ep_addr Endpoint Address
- - ep_addr.0..3: Address
- - ep_addr.7: Direction
- \return \ref execution_status
- */
- /**
- \fn uint16_t ARM_USBD_GetFrameNumber (void)
- \brief Get current USB Frame Number.
- \return Frame Number
- */
- /**
- \fn void ARM_USBD_SignalDeviceEvent (uint32_t event)
- \brief Signal USB Device Event.
- \param[in] event \ref USBD_dev_events
- \return none
- */
- /**
- \fn void ARM_USBD_SignalEndpointEvent (uint8_t ep_addr, uint32_t event)
- \brief Signal USB Endpoint Event.
- \param[in] ep_addr Endpoint Address
- - ep_addr.0..3: Address
- - ep_addr.7: Direction
- \param[in] event \ref USBD_ep_events
- \return none
- */
- typedef void (*ARM_USBD_SignalDeviceEvent_t) (uint32_t event); ///< Pointer to \ref ARM_USBD_SignalDeviceEvent : Signal USB Device Event.
- typedef void (*ARM_USBD_SignalEndpointEvent_t) (uint8_t ep_addr, uint32_t event); ///< Pointer to \ref ARM_USBD_SignalEndpointEvent : Signal USB Endpoint Event.
- /**
- \brief USB Device Driver Capabilities.
- */
- typedef struct _ARM_USBD_CAPABILITIES {
- uint32_t vbus_detection : 1; ///< VBUS detection
- uint32_t event_vbus_on : 1; ///< Signal VBUS On event
- uint32_t event_vbus_off : 1; ///< Signal VBUS Off event
- } ARM_USBD_CAPABILITIES;
- /**
- \brief Access structure of the USB Device Driver.
- */
- typedef struct _ARM_DRIVER_USBD {
- ARM_DRIVER_VERSION (*GetVersion) (void); ///< Pointer to \ref ARM_USBD_GetVersion : Get driver version.
- ARM_USBD_CAPABILITIES (*GetCapabilities) (void); ///< Pointer to \ref ARM_USBD_GetCapabilities : Get driver capabilities.
- int32_t (*Initialize) (ARM_USBD_SignalDeviceEvent_t cb_device_event,
- ARM_USBD_SignalEndpointEvent_t cb_endpoint_event); ///< Pointer to \ref ARM_USBD_Initialize : Initialize USB Device Interface.
- int32_t (*Uninitialize) (void); ///< Pointer to \ref ARM_USBD_Uninitialize : De-initialize USB Device Interface.
- int32_t (*PowerControl) (ARM_POWER_STATE state); ///< Pointer to \ref ARM_USBD_PowerControl : Control USB Device Interface Power.
- int32_t (*DeviceConnect) (void); ///< Pointer to \ref ARM_USBD_DeviceConnect : Connect USB Device.
- int32_t (*DeviceDisconnect) (void); ///< Pointer to \ref ARM_USBD_DeviceDisconnect : Disconnect USB Device.
- ARM_USBD_STATE (*DeviceGetState) (void); ///< Pointer to \ref ARM_USBD_DeviceGetState : Get current USB Device State.
- int32_t (*DeviceRemoteWakeup) (void); ///< Pointer to \ref ARM_USBD_DeviceRemoteWakeup : Trigger USB Remote Wakeup.
- int32_t (*DeviceSetAddress) (uint8_t dev_addr); ///< Pointer to \ref ARM_USBD_DeviceSetAddress : Set USB Device Address.
- int32_t (*ReadSetupPacket) (uint8_t *setup); ///< Pointer to \ref ARM_USBD_ReadSetupPacket : Read setup packet received over Control Endpoint.
- int32_t (*EndpointConfigure) (uint8_t ep_addr,
- uint8_t ep_type,
- uint16_t ep_max_packet_size); ///< Pointer to \ref ARM_USBD_EndpointConfigure : Configure USB Endpoint.
- int32_t (*EndpointUnconfigure) (uint8_t ep_addr); ///< Pointer to \ref ARM_USBD_EndpointUnconfigure : Unconfigure USB Endpoint.
- int32_t (*EndpointStall) (uint8_t ep_addr, bool stall); ///< Pointer to \ref ARM_USBD_EndpointStall : Set/Clear Stall for USB Endpoint.
- int32_t (*EndpointTransfer) (uint8_t ep_addr, uint8_t *data, uint32_t num); ///< Pointer to \ref ARM_USBD_EndpointTransfer : Read data from or Write data to USB Endpoint.
- uint32_t (*EndpointTransferGetResult) (uint8_t ep_addr); ///< Pointer to \ref ARM_USBD_EndpointTransferGetResult : Get result of USB Endpoint transfer.
- int32_t (*EndpointTransferAbort) (uint8_t ep_addr); ///< Pointer to \ref ARM_USBD_EndpointTransferAbort : Abort current USB Endpoint transfer.
- uint16_t (*GetFrameNumber) (void); ///< Pointer to \ref ARM_USBD_GetFrameNumber : Get current USB Frame Number.
- } const ARM_DRIVER_USBD;
- #endif /* __DOXYGEN_MW__ */
- #endif /* __DRIVER_USBD_H */
|