esp32-s2_dfu/src/device/usbd.c

705 lines
22 KiB
C
Raw Normal View History

2014-03-12 08:01:38 +01:00
/**************************************************************************/
/*!
@file usbd.c
@author hathach (tinyusb.org)
@section LICENSE
Software License Agreement (BSD License)
Copyright (c) 2013, hathach (tinyusb.org)
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holders nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
This file is part of the tinyusb stack.
*/
/**************************************************************************/
#include "tusb_option.h"
2018-07-23 10:25:45 +02:00
#if TUSB_OPT_DEVICE_ENABLED
2014-03-12 08:01:38 +01:00
#define _TINY_USB_SOURCE_FILE_
#include "tusb.h"
2018-03-11 06:31:24 +01:00
#include "usbd.h"
2018-03-22 08:15:16 +01:00
#include "device/usbd_pvt.h"
2014-03-12 08:01:38 +01:00
#ifndef CFG_TUD_TASK_QUEUE_SZ
#define CFG_TUD_TASK_QUEUE_SZ 16
#endif
#ifndef CFG_TUD_TASK_STACK_SZ
#define CFG_TUD_TASK_STACK_SZ 150
#endif
#ifndef CFG_TUD_TASK_PRIO
#define CFG_TUD_TASK_PRIO 0
#endif
2018-07-13 10:08:38 +02:00
2018-04-16 08:46:28 +02:00
//--------------------------------------------------------------------+
2018-07-13 10:08:38 +02:00
// Device Data
//--------------------------------------------------------------------+
typedef struct {
uint8_t config_num;
// map interface number to driver (0xff is invalid)
2018-07-13 12:48:26 +02:00
uint8_t itf2drv[16];
// map endpoint to driver ( 0xff is invalid )
uint8_t ep2drv[2][8];
2018-07-13 10:08:38 +02:00
}usbd_device_t;
CFG_TUSB_ATTR_USBRAM CFG_TUSB_MEM_ALIGN uint8_t _usbd_ctrl_buf[CFG_TUD_CTRL_BUFSIZE];
static usbd_device_t _usbd_dev;
//--------------------------------------------------------------------+
// Class Driver
2018-04-16 08:46:28 +02:00
//--------------------------------------------------------------------+
typedef struct {
uint8_t class_code;
void (* init ) (void);
tusb_error_t (* open ) (uint8_t rhport, tusb_desc_interface_t const * desc_intf, uint16_t* p_length);
tusb_error_t (* control_req_st ) (uint8_t rhport, tusb_control_request_t const *);
tusb_error_t (* xfer_cb ) (uint8_t rhport, uint8_t ep_addr, tusb_event_t, uint32_t);
void (* sof ) (uint8_t rhport);
2018-07-13 11:09:26 +02:00
void (* reset ) (uint8_t);
} usbd_class_driver_t;
2014-03-14 11:18:05 +01:00
static usbd_class_driver_t const usbd_class_drivers[] =
2014-03-12 08:01:38 +01:00
{
#if CFG_TUD_CDC
2014-03-12 08:01:38 +01:00
{
.class_code = TUSB_CLASS_CDC,
.init = cdcd_init,
.open = cdcd_open,
.control_req_st = cdcd_control_request_st,
.xfer_cb = cdcd_xfer_cb,
.sof = cdcd_sof,
2018-07-13 11:09:26 +02:00
.reset = cdcd_reset
2014-03-12 08:01:38 +01:00
},
2014-03-14 11:18:05 +01:00
#endif
2014-03-12 08:01:38 +01:00
#if CFG_TUD_MSC
2014-03-12 08:01:38 +01:00
{
.class_code = TUSB_CLASS_MSC,
.init = mscd_init,
.open = mscd_open,
.control_req_st = mscd_control_request_st,
.xfer_cb = mscd_xfer_cb,
.sof = NULL,
2018-07-13 11:09:26 +02:00
.reset = mscd_reset
},
#endif
2018-07-13 12:48:26 +02:00
2018-07-23 10:25:45 +02:00
#if TUD_OPT_HID_ENABLED
2018-07-13 12:48:26 +02:00
{
.class_code = TUSB_CLASS_HID,
.init = hidd_init,
.open = hidd_open,
.control_req_st = hidd_control_request_st,
.xfer_cb = hidd_xfer_cb,
.sof = NULL,
.reset = hidd_reset
},
#endif
#if CFG_TUD_CUSTOM_CLASS
{
.class_code = TUSB_CLASS_VENDOR_SPECIFIC,
.init = cusd_init,
.open = cusd_open,
.control_req_st = cusd_control_request_st,
.xfer_cb = cusd_xfer_cb,
.sof = NULL,
2018-07-13 11:09:26 +02:00
.reset = cusd_reset
2014-03-12 08:01:38 +01:00
},
2014-03-14 11:18:05 +01:00
#endif
2014-03-12 08:01:38 +01:00
};
2014-03-18 10:58:24 +01:00
enum { USBD_CLASS_DRIVER_COUNT = sizeof(usbd_class_drivers) / sizeof(usbd_class_driver_t) };
2014-03-14 11:18:05 +01:00
2018-04-16 08:46:28 +02:00
2014-03-12 08:01:38 +01:00
//--------------------------------------------------------------------+
// DCD Event
2014-03-12 08:01:38 +01:00
//--------------------------------------------------------------------+
2015-05-01 13:45:22 +02:00
typedef enum
{
2018-06-21 19:40:16 +02:00
USBD_EVT_SETUP_RECEIVED = 1,
USBD_EVT_XFER_DONE,
USBD_EVT_SOF,
2018-06-22 07:53:13 +02:00
USBD_EVT_FUNC_CALL
2014-03-12 08:01:38 +01:00
}usbd_eventid_t;
typedef struct ATTR_ALIGNED(4)
{
uint8_t rhport;
2014-03-12 08:01:38 +01:00
uint8_t event_id;
union {
2018-06-22 07:53:13 +02:00
// USBD_EVT_SETUP_RECEIVED
2018-03-08 08:38:06 +01:00
tusb_control_request_t setup_received;
2014-03-12 08:01:38 +01:00
2018-06-22 07:53:13 +02:00
// USBD_EVT_XFER_DONE
struct {
uint8_t ep_addr;
2018-06-22 07:53:13 +02:00
uint8_t result;
2014-03-12 08:01:38 +01:00
uint32_t xferred_byte;
}xfer_done;
2018-06-22 07:53:13 +02:00
// USBD_EVT_FUNC_CALL
struct {
2018-06-22 11:01:55 +02:00
osal_task_func_t func;
2018-06-22 07:53:13 +02:00
void* param;
}func_call;
2014-03-12 08:01:38 +01:00
};
2014-03-14 11:18:05 +01:00
} usbd_task_event_t;
2014-03-12 08:01:38 +01:00
VERIFY_STATIC(sizeof(usbd_task_event_t) <= 12, "size is not correct");
2014-03-12 08:01:38 +01:00
OSAL_TASK_DEF(_usbd_task_def, "usbd", usbd_task, CFG_TUD_TASK_PRIO, CFG_TUD_TASK_STACK_SZ);
/*------------- event queue -------------*/
OSAL_QUEUE_DEF(_usbd_qdef, CFG_TUD_TASK_QUEUE_SZ, usbd_task_event_t);
static osal_queue_t _usbd_q;
/*------------- control transfer semaphore -------------*/
static osal_semaphore_def_t _usbd_sem_def;
/*static*/ osal_semaphore_t _usbd_ctrl_sem;
//--------------------------------------------------------------------+
// INTERNAL FUNCTION
//--------------------------------------------------------------------+
2018-07-13 12:48:26 +02:00
static void mark_interface_endpoint(uint8_t const* p_desc, uint16_t desc_len, uint8_t driver_id);
static tusb_error_t proc_set_config_req(uint8_t rhport, uint8_t config_number);
static uint16_t get_descriptor(uint8_t rhport, tusb_control_request_t const * const p_request, uint8_t const ** pp_buffer);
2014-03-12 08:01:38 +01:00
//--------------------------------------------------------------------+
// APPLICATION API
//--------------------------------------------------------------------+
2018-07-12 17:25:06 +02:00
bool tud_mounted(void)
{
2018-07-13 10:08:38 +02:00
return _usbd_dev.config_num > 0;
}
//--------------------------------------------------------------------+
// IMPLEMENTATION
//--------------------------------------------------------------------+
static tusb_error_t proc_control_request_st(uint8_t rhport, tusb_control_request_t const * const p_request);
2018-03-30 11:24:55 +02:00
static tusb_error_t usbd_main_st(void);
tusb_error_t usbd_init (void)
{
#if (CFG_TUSB_RHPORT0_MODE & OPT_MODE_DEVICE)
2018-03-28 08:47:58 +02:00
dcd_init(0);
2018-03-02 16:46:36 +01:00
#endif
#if (CFG_TUSB_RHPORT1_MODE & OPT_MODE_DEVICE)
2018-03-28 08:47:58 +02:00
dcd_init(1);
2018-03-02 16:46:36 +01:00
#endif
//------------- Task init -------------//
_usbd_q = osal_queue_create(&_usbd_qdef);
2018-03-30 11:57:18 +02:00
VERIFY(_usbd_q, TUSB_ERROR_OSAL_QUEUE_FAILED);
_usbd_ctrl_sem = osal_semaphore_create(&_usbd_sem_def);
2018-03-30 11:57:18 +02:00
VERIFY(_usbd_q, TUSB_ERROR_OSAL_SEMAPHORE_FAILED);
osal_task_create(&_usbd_task_def);
//------------- class init -------------//
for (uint8_t i = 0; i < USBD_CLASS_DRIVER_COUNT; i++) usbd_class_drivers[i].init();
return TUSB_ERROR_NONE;
}
// To enable the TASK_ASSERT style (quick return on false condition) in a real RTOS, a task must act as a wrapper
// and is used mainly to call subtasks. Within a subtask return statement can be called freely, the task with
// forever loop cannot have any return at all.
void usbd_task( void* param)
{
(void) param;
2018-03-01 06:14:44 +01:00
OSAL_TASK_BEGIN
2018-03-30 11:24:55 +02:00
usbd_main_st();
2018-03-01 06:14:44 +01:00
OSAL_TASK_END
}
2018-03-30 11:24:55 +02:00
static tusb_error_t usbd_main_st(void)
{
static usbd_task_event_t event;
OSAL_SUBTASK_BEGIN
tusb_error_t err;
err = TUSB_ERROR_NONE;
memclr_(&event, sizeof(usbd_task_event_t));
2018-03-08 08:38:06 +01:00
osal_queue_receive(_usbd_q, &event, OSAL_TIMEOUT_WAIT_FOREVER, &err);
2018-06-21 19:40:16 +02:00
if ( USBD_EVT_SETUP_RECEIVED == event.event_id )
{
STASK_INVOKE( proc_control_request_st(event.rhport, &event.setup_received), err );
}
2018-06-21 19:40:16 +02:00
else if (USBD_EVT_XFER_DONE == event.event_id)
{
// Invoke the class callback associated with the endpoint address
uint8_t const ep_addr = event.xfer_done.ep_addr;
uint8_t const drv_id = _usbd_dev.ep2drv[ edpt_dir(ep_addr) ][ edpt_number(ep_addr) ];
if (drv_id < USBD_CLASS_DRIVER_COUNT)
2018-03-06 10:50:50 +01:00
{
usbd_class_drivers[drv_id].xfer_cb( event.rhport, ep_addr, (tusb_event_t) event.xfer_done.result, event.xfer_done.xferred_byte);
2018-03-06 10:50:50 +01:00
}
}
2018-06-21 19:40:16 +02:00
else if (USBD_EVT_SOF == event.event_id)
2018-03-08 08:38:06 +01:00
{
for (uint8_t i = 0; i < USBD_CLASS_DRIVER_COUNT; i++)
2018-03-08 08:38:06 +01:00
{
if ( usbd_class_drivers[i].sof )
2018-03-08 08:38:06 +01:00
{
usbd_class_drivers[i].sof( event.rhport );
2018-03-08 08:38:06 +01:00
}
}
}
2018-06-22 11:01:55 +02:00
else if ( USBD_EVT_FUNC_CALL == event.event_id )
{
if ( event.func_call.func ) event.func_call.func(event.func_call.param);
}
2018-03-08 08:38:06 +01:00
else
{
2018-03-22 10:25:24 +01:00
STASK_ASSERT(false);
}
OSAL_SUBTASK_END
}
static void usbd_reset(uint8_t rhport)
{
varclr_(&_usbd_dev);
memset(_usbd_dev.itf2drv, 0xff, sizeof(_usbd_dev.itf2drv)); // invalid mapping
2018-07-13 12:48:26 +02:00
memset(_usbd_dev.ep2drv , 0xff, sizeof(_usbd_dev.ep2drv )); // invalid mapping
for (uint8_t i = 0; i < USBD_CLASS_DRIVER_COUNT; i++)
{
if ( usbd_class_drivers[i].reset ) usbd_class_drivers[i].reset( rhport );
}
2018-07-23 11:00:07 +02:00
#if CFG_TUD_DESC_AUTO
extern tusb_desc_device_t const _desc_auto_device;
extern uint8_t const * const _desc_auto_config;
tud_desc_set.device = (uint8_t const*) &_desc_auto_device;
2018-07-23 11:00:07 +02:00
tud_desc_set.config = _desc_auto_config;
#if CFG_TUD_HID_KEYBOARD && CFG_TUD_HID_KEYBOARD_BOOT
2018-07-23 11:00:07 +02:00
extern uint8_t const _desc_auto_hid_kbd_report[];
tud_desc_set.hid_report.boot_keyboard = _desc_auto_hid_kbd_report;
#endif
#if CFG_TUD_HID_MOUSE && CFG_TUD_HID_MOUSE_BOOT
2018-07-23 11:00:07 +02:00
extern uint8_t const _desc_auto_hid_mse_report[];
2018-07-24 17:37:44 +02:00
tud_desc_set.hid_report.boot_mouse = _desc_auto_hid_mse_report;
2018-07-23 11:00:07 +02:00
#endif
#if 0 // CFG_TUD_HID_BOOT_PROTOCOL
2018-07-23 11:00:07 +02:00
#if CFG_TUD_HID_KEYBOARD + CFG_TUD_HID_MOUSE
tud_desc_set.hid_report.composite = ;
#endif
#endif
#endif // CFG_TUD_DESC_AUTO
}
//--------------------------------------------------------------------+
// CONTROL REQUEST
//--------------------------------------------------------------------+
static tusb_error_t proc_control_request_st(uint8_t rhport, tusb_control_request_t const * const p_request)
2014-03-12 08:01:38 +01:00
{
OSAL_SUBTASK_BEGIN
2014-03-14 11:18:05 +01:00
tusb_error_t error;
error = TUSB_ERROR_NONE;
2014-03-12 08:01:38 +01:00
2018-03-22 08:15:16 +01:00
//------------- Standard Request e.g in enumeration -------------//
if( TUSB_REQ_RCPT_DEVICE == p_request->bmRequestType_bit.recipient &&
TUSB_REQ_TYPE_STANDARD == p_request->bmRequestType_bit.type )
2014-03-12 08:01:38 +01:00
{
if ( TUSB_REQ_GET_DESCRIPTOR == p_request->bRequest )
2014-03-12 08:01:38 +01:00
{
2018-03-22 08:15:16 +01:00
uint8_t const * buffer = NULL;
uint16_t const len = get_descriptor(rhport, p_request, &buffer);
2014-03-12 08:01:38 +01:00
2018-03-22 08:15:16 +01:00
if ( len )
2014-03-12 08:01:38 +01:00
{
STASK_ASSERT( len <= CFG_TUD_CTRL_BUFSIZE );
memcpy(_usbd_ctrl_buf, buffer, len);
usbd_control_xfer_st(rhport, p_request->bmRequestType_bit.direction, _usbd_ctrl_buf, len);
2018-03-22 08:15:16 +01:00
}else
{
2018-03-28 08:54:28 +02:00
dcd_control_stall(rhport); // stall unsupported descriptor
2014-03-12 08:01:38 +01:00
}
}
else if (TUSB_REQ_GET_CONFIGURATION == p_request->bRequest )
{
memcpy(_usbd_ctrl_buf, &_usbd_dev.config_num, 1);
usbd_control_xfer_st(rhport, p_request->bmRequestType_bit.direction, _usbd_ctrl_buf, 1);
}
else if ( TUSB_REQ_SET_ADDRESS == p_request->bRequest )
2014-03-12 08:01:38 +01:00
{
2018-03-28 08:47:58 +02:00
dcd_set_address(rhport, (uint8_t) p_request->wValue);
2018-04-12 08:14:59 +02:00
#if CFG_TUSB_MCU != OPT_MCU_NRF5X // nrf5x auto handle set address, we must not return status
2018-03-28 08:54:28 +02:00
dcd_control_status(rhport, p_request->bmRequestType_bit.direction);
#endif
2014-03-12 08:01:38 +01:00
}
else if ( TUSB_REQ_SET_CONFIGURATION == p_request->bRequest )
2014-03-12 08:01:38 +01:00
{
proc_set_config_req(rhport, (uint8_t) p_request->wValue);
2018-03-28 08:54:28 +02:00
dcd_control_status(rhport, p_request->bmRequestType_bit.direction);
2018-03-22 08:15:16 +01:00
}
else
2014-03-12 08:01:38 +01:00
{
2018-03-28 08:54:28 +02:00
dcd_control_stall(rhport); // Stall unsupported request
2014-03-12 08:01:38 +01:00
}
}
2018-03-22 08:15:16 +01:00
2014-03-12 08:01:38 +01:00
//------------- Class/Interface Specific Request -------------//
2018-07-24 19:16:09 +02:00
else if ( TUSB_REQ_RCPT_INTERFACE == p_request->bmRequestType_bit.recipient )
2014-03-12 08:01:38 +01:00
{
if (_usbd_dev.itf2drv[ u16_low_u8(p_request->wIndex) ] < USBD_CLASS_DRIVER_COUNT)
2014-03-12 08:01:38 +01:00
{
STASK_INVOKE( usbd_class_drivers[ _usbd_dev.itf2drv[ u16_low_u8(p_request->wIndex) ] ].control_req_st(rhport, p_request), error );
2014-03-12 08:01:38 +01:00
}else
{
2018-03-28 08:54:28 +02:00
dcd_control_stall(rhport); // Stall unsupported request
2014-03-12 08:01:38 +01:00
}
}
//------------- Endpoint Request -------------//
2018-03-11 15:05:27 +01:00
else if ( TUSB_REQ_RCPT_ENDPOINT == p_request->bmRequestType_bit.recipient &&
2018-03-22 08:15:16 +01:00
TUSB_REQ_TYPE_STANDARD == p_request->bmRequestType_bit.type)
2014-03-12 08:01:38 +01:00
{
if (TUSB_REQ_GET_STATUS == p_request->bRequest )
2018-03-22 08:15:16 +01:00
{
uint16_t status = dcd_edpt_stalled(rhport, u16_low_u8(p_request->wIndex)) ? 0x0001 : 0x0000;
memcpy(_usbd_ctrl_buf, &status, 2);
usbd_control_xfer_st(rhport, p_request->bmRequestType_bit.direction, _usbd_ctrl_buf, 2);
}
else if (TUSB_REQ_CLEAR_FEATURE == p_request->bRequest )
{
// only endpoint feature is halted/stalled
dcd_edpt_clear_stall(rhport, u16_low_u8(p_request->wIndex));
dcd_control_status(rhport, p_request->bmRequestType_bit.direction);
}
else if (TUSB_REQ_SET_FEATURE == p_request->bRequest )
{
// only endpoint feature is halted/stalled
dcd_edpt_stall(rhport, u16_low_u8(p_request->wIndex));
2018-03-28 08:54:28 +02:00
dcd_control_status(rhport, p_request->bmRequestType_bit.direction);
}
else
2018-03-22 08:15:16 +01:00
{
2018-03-28 08:54:28 +02:00
dcd_control_stall(rhport); // Stall unsupported request
2018-03-22 08:15:16 +01:00
}
2014-03-12 08:01:38 +01:00
}
2018-03-22 08:15:16 +01:00
//------------- Unsupported Request -------------//
else
2014-03-12 08:01:38 +01:00
{
2018-03-28 08:54:28 +02:00
dcd_control_stall(rhport); // Stall unsupported request
2014-03-12 08:01:38 +01:00
}
OSAL_SUBTASK_END
}
2018-07-13 12:48:26 +02:00
// Process Set Configure Request
2014-03-12 08:01:38 +01:00
// TODO Host (windows) can get HID report descriptor before set configured
// may need to open interface before set configured
static tusb_error_t proc_set_config_req(uint8_t rhport, uint8_t config_number)
2014-03-12 08:01:38 +01:00
{
2018-03-28 08:47:58 +02:00
dcd_set_config(rhport, config_number);
2018-07-12 17:25:06 +02:00
_usbd_dev.config_num = config_number;
2014-03-12 08:01:38 +01:00
//------------- parse configuration & open drivers -------------//
uint8_t const * desc_cfg = tud_desc_set.config;
TU_ASSERT(desc_cfg != NULL, TUSB_ERROR_DESCRIPTOR_CORRUPTED);
uint8_t const * p_desc = desc_cfg + sizeof(tusb_desc_configuration_t);
uint16_t const cfg_len = ((tusb_desc_configuration_t*)desc_cfg)->wTotalLength;
while( p_desc < desc_cfg + cfg_len )
2014-03-12 08:01:38 +01:00
{
2018-07-13 12:48:26 +02:00
if ( TUSB_DESC_INTERFACE_ASSOCIATION == descriptor_type(p_desc) )
2014-03-12 08:01:38 +01:00
{
2018-07-13 12:48:26 +02:00
p_desc = descriptor_next(p_desc); // ignore Interface Association
2014-03-12 08:01:38 +01:00
}else
{
2018-07-13 12:48:26 +02:00
TU_ASSERT( TUSB_DESC_INTERFACE == descriptor_type(p_desc), TUSB_ERROR_NOT_SUPPORTED_YET );
2014-03-12 08:01:38 +01:00
tusb_desc_interface_t* p_desc_itf = (tusb_desc_interface_t*) p_desc;
uint8_t const class_code = p_desc_itf->bInterfaceClass;
2014-03-12 08:01:38 +01:00
// Check if class is supported
2018-07-13 12:48:26 +02:00
uint8_t drv_id;
for (drv_id = 0; drv_id < USBD_CLASS_DRIVER_COUNT; drv_id++)
{
2018-07-13 12:48:26 +02:00
if ( usbd_class_drivers[drv_id].class_code == class_code ) break;
}
2018-07-13 12:48:26 +02:00
TU_ASSERT( drv_id < USBD_CLASS_DRIVER_COUNT, TUSB_ERROR_NOT_SUPPORTED_YET );
2014-03-12 08:01:38 +01:00
// Interface number must not be used
TU_ASSERT( 0xff == _usbd_dev.itf2drv[p_desc_itf->bInterfaceNumber], TUSB_ERROR_FAILED);
2018-07-13 12:48:26 +02:00
_usbd_dev.itf2drv[p_desc_itf->bInterfaceNumber] = drv_id;
uint16_t len=0;
TU_ASSERT_ERR( usbd_class_drivers[drv_id].open( rhport, p_desc_itf, &len ) );
TU_ASSERT( len >= sizeof(tusb_desc_interface_t), TUSB_ERROR_FAILED );
2014-03-12 08:01:38 +01:00
2018-07-13 12:48:26 +02:00
mark_interface_endpoint(p_desc, len, drv_id);
2014-03-12 08:01:38 +01:00
2018-07-13 12:48:26 +02:00
p_desc += len; // next interface
2014-03-12 08:01:38 +01:00
}
}
// invoke callback
2018-07-13 09:26:40 +02:00
tud_mount_cb();
2014-03-12 08:01:38 +01:00
return TUSB_ERROR_NONE;
}
2018-07-13 12:48:26 +02:00
// return len of descriptor and change pointer to descriptor's buffer
static uint16_t get_descriptor(uint8_t rhport, tusb_control_request_t const * const p_request, uint8_t const ** pp_buffer)
2014-03-12 08:01:38 +01:00
{
2018-07-12 17:42:03 +02:00
(void) rhport;
2018-03-12 16:37:12 +01:00
tusb_desc_type_t const desc_type = (tusb_desc_type_t) u16_high_u8(p_request->wValue);
2014-03-12 08:01:38 +01:00
uint8_t const desc_index = u16_low_u8( p_request->wValue );
2018-03-22 08:15:16 +01:00
uint8_t const * desc_data = NULL ;
uint16_t len = 0;
2014-03-12 08:01:38 +01:00
switch(desc_type)
2014-03-12 08:01:38 +01:00
{
2018-03-11 15:16:51 +01:00
case TUSB_DESC_DEVICE:
2018-07-23 11:00:07 +02:00
desc_data = tud_desc_set.device;
2018-03-23 06:32:40 +01:00
len = sizeof(tusb_desc_device_t);
break;
2018-03-11 15:16:51 +01:00
case TUSB_DESC_CONFIGURATION:
2018-07-23 11:00:07 +02:00
desc_data = tud_desc_set.config;
len = ((tusb_desc_configuration_t const*) desc_data)->wTotalLength;
break;
2018-03-11 15:16:51 +01:00
case TUSB_DESC_STRING:
if ( desc_index < tud_desc_set.string_count )
{
desc_data = tud_desc_set.string_arr[desc_index];
VERIFY( desc_data != NULL, 0 );
len = desc_data[0]; // first byte of descriptor is its size
}else
{
// out of range
2018-07-24 17:37:44 +02:00
/* The 0xee string is indeed a Microsoft USB extension.
* It can be used to tell Windows what driver it should use for the device !!!
*/
return 0;
}
break;
case TUSB_DESC_DEVICE_QUALIFIER:
// TODO If not highspeed capable stall this request otherwise
// return the descriptor that could work in highspeed
2018-03-22 08:15:16 +01:00
return 0;
break;
2018-03-22 08:15:16 +01:00
default: return 0;
2014-03-12 08:01:38 +01:00
}
2018-04-16 08:46:28 +02:00
TU_ASSERT( desc_data != NULL, 0);
2018-03-22 08:15:16 +01:00
// up to Host's length
len = min16_of(p_request->wLength, len );
(*pp_buffer) = desc_data;
2014-03-12 08:01:38 +01:00
2018-03-22 08:15:16 +01:00
return len;
2014-03-12 08:01:38 +01:00
}
2018-07-13 12:48:26 +02:00
// Helper marking endpoint of interface belongs to class driver
static void mark_interface_endpoint(uint8_t const* p_desc, uint16_t desc_len, uint8_t driver_id)
{
uint16_t len = 0;
while( len < desc_len )
{
if ( TUSB_DESC_ENDPOINT == descriptor_type(p_desc) )
{
uint8_t const ep_addr = ((tusb_desc_endpoint_t const*) p_desc)->bEndpointAddress;
_usbd_dev.ep2drv[ edpt_dir(ep_addr) ][ edpt_number(ep_addr) ] = driver_id;
}
len += descriptor_len(p_desc);
p_desc = descriptor_next(p_desc);
}
}
2014-03-12 08:01:38 +01:00
//--------------------------------------------------------------------+
// USBD-DCD Callback API
//--------------------------------------------------------------------+
2018-03-28 08:47:58 +02:00
void dcd_bus_event(uint8_t rhport, usbd_bus_event_type_t bus_event)
2014-03-12 08:01:38 +01:00
{
switch(bus_event)
{
2018-07-13 10:08:38 +02:00
case USBD_BUS_EVENT_RESET:
usbd_reset(rhport);
2018-07-13 11:09:26 +02:00
2018-03-30 11:57:18 +02:00
osal_queue_flush(_usbd_q);
osal_semaphore_reset_isr(_usbd_ctrl_sem);
2014-03-12 08:01:38 +01:00
break;
2018-03-08 08:38:06 +01:00
case USBD_BUS_EVENT_SOF:
{
#if CFG_TUD_CDC_FLUSH_ON_SOF
2018-03-08 08:38:06 +01:00
usbd_task_event_t task_event =
{
.rhport = rhport,
2018-06-21 19:40:16 +02:00
.event_id = USBD_EVT_SOF,
2018-03-08 08:38:06 +01:00
};
osal_queue_send_isr(_usbd_q, &task_event);
#endif
2018-03-08 08:38:06 +01:00
}
break;
case USBD_BUS_EVENT_UNPLUGGED:
usbd_reset(rhport);
2018-07-13 09:26:40 +02:00
tud_umount_cb(); // invoke callback
break;
2014-03-12 08:01:38 +01:00
case USBD_BUS_EVENT_SUSPENDED:
2018-07-13 10:08:38 +02:00
// TODO support suspended
2014-03-12 08:01:38 +01:00
break;
default: break;
}
}
2018-03-28 08:47:58 +02:00
void dcd_setup_received(uint8_t rhport, uint8_t const* p_request)
2014-03-12 08:01:38 +01:00
{
usbd_task_event_t task_event =
{
.rhport = rhport,
2018-06-21 19:40:16 +02:00
.event_id = USBD_EVT_SETUP_RECEIVED,
2014-03-12 08:01:38 +01:00
};
memcpy(&task_event.setup_received, p_request, sizeof(tusb_control_request_t));
osal_queue_send_isr(_usbd_q, &task_event);
2014-03-12 08:01:38 +01:00
}
2018-03-28 08:47:58 +02:00
void dcd_xfer_complete(uint8_t rhport, uint8_t ep_addr, uint32_t xferred_bytes, bool succeeded)
2014-03-12 08:01:38 +01:00
{
if (ep_addr == 0 )
2014-03-12 08:01:38 +01:00
{
2018-05-15 17:06:49 +02:00
// Control Transfer
(void) rhport;
(void) succeeded;
2018-05-15 17:06:49 +02:00
// only signal data stage, skip status (zero byte)
if (xferred_bytes) osal_semaphore_post_isr( _usbd_ctrl_sem );
2014-03-12 08:01:38 +01:00
}else
{
2018-06-22 07:53:13 +02:00
usbd_task_event_t event =
2014-03-12 08:01:38 +01:00
{
.rhport = rhport,
2018-06-21 19:40:16 +02:00
.event_id = USBD_EVT_XFER_DONE,
2014-03-12 08:01:38 +01:00
};
2018-06-22 07:53:13 +02:00
event.xfer_done.ep_addr = ep_addr;
event.xfer_done.xferred_byte = xferred_bytes;
event.xfer_done.result = succeeded ? TUSB_EVENT_XFER_COMPLETE : TUSB_EVENT_XFER_ERROR;
2014-03-12 08:01:38 +01:00
2018-06-22 07:53:13 +02:00
osal_queue_send_isr(_usbd_q, &event);
2014-03-12 08:01:38 +01:00
}
2018-03-31 08:23:23 +02:00
TU_ASSERT(succeeded, );
2014-03-12 08:01:38 +01:00
}
//--------------------------------------------------------------------+
2018-06-22 07:53:13 +02:00
// Helper
2014-03-12 08:01:38 +01:00
//--------------------------------------------------------------------+
tusb_error_t usbd_open_edpt_pair(uint8_t rhport, tusb_desc_endpoint_t const* p_desc_ep, uint8_t xfer_type, uint8_t* ep_out, uint8_t* ep_in)
{
for(int i=0; i<2; i++)
{
TU_ASSERT(TUSB_DESC_ENDPOINT == p_desc_ep->bDescriptorType &&
xfer_type == p_desc_ep->bmAttributes.xfer, TUSB_ERROR_DESCRIPTOR_CORRUPTED);
TU_ASSERT( dcd_edpt_open(rhport, p_desc_ep), TUSB_ERROR_DCD_OPEN_PIPE_FAILED );
2018-06-18 09:31:15 +02:00
if ( edpt_dir(p_desc_ep->bEndpointAddress) == TUSB_DIR_IN )
{
(*ep_in) = p_desc_ep->bEndpointAddress;
}else
{
(*ep_out) = p_desc_ep->bEndpointAddress;
}
2014-03-12 08:01:38 +01:00
p_desc_ep = (tusb_desc_endpoint_t const *) descriptor_next( (uint8_t const*) p_desc_ep );
}
return TUSB_ERROR_NONE;
}
2018-06-22 07:53:13 +02:00
2018-06-22 11:01:55 +02:00
void usbd_defer_func(osal_task_func_t func, void* param, bool isr )
2018-06-22 07:53:13 +02:00
{
usbd_task_event_t event =
{
2018-07-13 09:26:40 +02:00
.rhport = 0,
.event_id = USBD_EVT_FUNC_CALL,
2018-06-22 07:53:13 +02:00
};
event.func_call.func = func;
event.func_call.param = param;
if ( isr )
{
osal_queue_send_isr(_usbd_q, &event);
}else
{
osal_queue_send(_usbd_q, &event);
}
}
2014-03-12 08:01:38 +01:00
#endif