2024-04-16 22:11:30 +08:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2024, sakumisu
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
2022-05-06 17:07:51 +08:00
|
|
|
#include "usbd_core.h"
|
2024-08-16 14:08:29 +08:00
|
|
|
#include "usbd_cdc_acm.h"
|
2022-05-06 17:07:51 +08:00
|
|
|
|
|
|
|
|
/*!< endpoint address */
|
|
|
|
|
#define CDC_IN_EP 0x81
|
|
|
|
|
#define CDC_OUT_EP 0x01
|
|
|
|
|
#define CDC_INT_EP 0x85
|
|
|
|
|
|
|
|
|
|
#define CDC_IN_EP2 0x82
|
|
|
|
|
#define CDC_OUT_EP2 0x02
|
|
|
|
|
#define CDC_INT_EP2 0x86
|
|
|
|
|
|
|
|
|
|
#define CDC_IN_EP3 0x83
|
|
|
|
|
#define CDC_OUT_EP3 0x03
|
|
|
|
|
#define CDC_INT_EP3 0x87
|
|
|
|
|
|
|
|
|
|
#define CDC_IN_EP4 0x84
|
|
|
|
|
#define CDC_OUT_EP4 0x04
|
|
|
|
|
#define CDC_INT_EP4 0x88
|
|
|
|
|
|
|
|
|
|
#define USBD_VID 0xFFFF
|
|
|
|
|
#define USBD_PID 0xFFFF
|
|
|
|
|
#define USBD_MAX_POWER 100
|
|
|
|
|
#define USBD_LANGID_STRING 1033
|
|
|
|
|
|
|
|
|
|
/*!< config descriptor size */
|
|
|
|
|
#define USB_CONFIG_SIZE (9 + CDC_ACM_DESCRIPTOR_LEN * 4)
|
|
|
|
|
|
2023-06-21 19:39:22 +08:00
|
|
|
#ifdef CONFIG_USB_HS
|
|
|
|
|
#define CDC_MAX_MPS 512
|
|
|
|
|
#else
|
|
|
|
|
#define CDC_MAX_MPS 64
|
|
|
|
|
#endif
|
|
|
|
|
|
2025-02-01 19:13:44 +08:00
|
|
|
static const uint8_t device_descriptor[] = {
|
|
|
|
|
USB_DEVICE_DESCRIPTOR_INIT(USB_2_0, 0xEF, 0x02, 0x01, USBD_VID, USBD_PID, 0x0100, 0x01)
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const uint8_t config_descriptor[] = {
|
|
|
|
|
USB_CONFIG_DESCRIPTOR_INIT(USB_CONFIG_SIZE, 0x08, 0x01, USB_CONFIG_BUS_POWERED, USBD_MAX_POWER),
|
|
|
|
|
CDC_ACM_DESCRIPTOR_INIT(0x00, CDC_INT_EP, CDC_OUT_EP, CDC_IN_EP, CDC_MAX_MPS, 0x02),
|
|
|
|
|
CDC_ACM_DESCRIPTOR_INIT(0x02, CDC_INT_EP2, CDC_OUT_EP2, CDC_IN_EP2, CDC_MAX_MPS, 0x02),
|
|
|
|
|
CDC_ACM_DESCRIPTOR_INIT(0x04, CDC_INT_EP3, CDC_OUT_EP3, CDC_IN_EP3, CDC_MAX_MPS, 0x02),
|
|
|
|
|
CDC_ACM_DESCRIPTOR_INIT(0x06, CDC_INT_EP4, CDC_OUT_EP4, CDC_IN_EP4, CDC_MAX_MPS, 0x02)
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const uint8_t device_quality_descriptor[] = {
|
|
|
|
|
///////////////////////////////////////
|
|
|
|
|
/// device qualifier descriptor
|
|
|
|
|
///////////////////////////////////////
|
|
|
|
|
0x0a,
|
|
|
|
|
USB_DESCRIPTOR_TYPE_DEVICE_QUALIFIER,
|
|
|
|
|
0x00,
|
|
|
|
|
0x02,
|
|
|
|
|
0x00,
|
|
|
|
|
0x00,
|
|
|
|
|
0x00,
|
|
|
|
|
0x40,
|
|
|
|
|
0x00,
|
|
|
|
|
0x00,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const char *string_descriptors[] = {
|
|
|
|
|
(const char[]){ 0x09, 0x04 }, /* Langid */
|
|
|
|
|
"CherryUSB", /* Manufacturer */
|
|
|
|
|
"CherryUSB CDC MULTI DEMO", /* Product */
|
|
|
|
|
"2022123456", /* Serial Number */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const uint8_t *device_descriptor_callback(uint8_t speed)
|
|
|
|
|
{
|
|
|
|
|
return device_descriptor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const uint8_t *config_descriptor_callback(uint8_t speed)
|
|
|
|
|
{
|
|
|
|
|
return config_descriptor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const uint8_t *device_quality_descriptor_callback(uint8_t speed)
|
|
|
|
|
{
|
|
|
|
|
return device_quality_descriptor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char *string_descriptor_callback(uint8_t speed, uint8_t index)
|
|
|
|
|
{
|
|
|
|
|
if (index > 3) {
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
return string_descriptors[index];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const struct usb_descriptor cdc_multi_descriptor = {
|
|
|
|
|
.device_descriptor_callback = device_descriptor_callback,
|
|
|
|
|
.config_descriptor_callback = config_descriptor_callback,
|
|
|
|
|
.device_quality_descriptor_callback = device_quality_descriptor_callback,
|
|
|
|
|
.string_descriptor_callback = string_descriptor_callback
|
|
|
|
|
};
|
2022-05-06 17:07:51 +08:00
|
|
|
|
2022-07-31 15:57:59 +08:00
|
|
|
USB_NOCACHE_RAM_SECTION USB_MEM_ALIGNX uint8_t read_buffer[4][2048];
|
2024-03-23 18:09:08 +08:00
|
|
|
USB_NOCACHE_RAM_SECTION USB_MEM_ALIGNX uint8_t write_buffer[4][2048];
|
2022-07-28 21:25:29 +08:00
|
|
|
|
|
|
|
|
volatile bool ep_tx_busy_flag = false;
|
|
|
|
|
|
2024-02-18 19:36:20 +08:00
|
|
|
static void usbd_event_handler(uint8_t busid, uint8_t event)
|
2022-05-06 17:07:51 +08:00
|
|
|
{
|
2023-06-21 21:26:25 +08:00
|
|
|
switch (event) {
|
|
|
|
|
case USBD_EVENT_RESET:
|
|
|
|
|
break;
|
|
|
|
|
case USBD_EVENT_CONNECTED:
|
|
|
|
|
break;
|
|
|
|
|
case USBD_EVENT_DISCONNECTED:
|
|
|
|
|
break;
|
|
|
|
|
case USBD_EVENT_RESUME:
|
|
|
|
|
break;
|
|
|
|
|
case USBD_EVENT_SUSPEND:
|
|
|
|
|
break;
|
|
|
|
|
case USBD_EVENT_CONFIGURED:
|
2024-03-23 17:50:49 +08:00
|
|
|
ep_tx_busy_flag = false;
|
2023-06-21 21:26:25 +08:00
|
|
|
/* setup first out ep read transfer */
|
2024-02-18 19:36:20 +08:00
|
|
|
usbd_ep_start_read(busid, CDC_OUT_EP, read_buffer, 2048);
|
|
|
|
|
usbd_ep_start_read(busid, CDC_OUT_EP2, read_buffer, 2048);
|
|
|
|
|
usbd_ep_start_read(busid, CDC_OUT_EP3, read_buffer, 2048);
|
|
|
|
|
usbd_ep_start_read(busid, CDC_OUT_EP4, read_buffer, 2048);
|
2023-06-21 21:26:25 +08:00
|
|
|
break;
|
|
|
|
|
case USBD_EVENT_SET_REMOTE_WAKEUP:
|
|
|
|
|
break;
|
|
|
|
|
case USBD_EVENT_CLR_REMOTE_WAKEUP:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
2022-07-28 21:25:29 +08:00
|
|
|
}
|
2022-05-06 17:07:51 +08:00
|
|
|
|
2024-02-06 19:51:50 +08:00
|
|
|
void usbd_cdc_acm_bulk_out(uint8_t busid, uint8_t ep, uint32_t nbytes)
|
2022-07-28 21:25:29 +08:00
|
|
|
{
|
2025-03-28 22:39:30 +08:00
|
|
|
USB_LOG_RAW("actual out len:%d\r\n", (unsigned int)nbytes);
|
2022-07-28 21:25:29 +08:00
|
|
|
/* setup next out ep read transfer */
|
2024-02-18 19:36:20 +08:00
|
|
|
usbd_ep_start_read(busid, CDC_OUT_EP, read_buffer, 2048);
|
2022-05-06 17:07:51 +08:00
|
|
|
}
|
|
|
|
|
|
2024-02-06 19:51:50 +08:00
|
|
|
void usbd_cdc_acm_bulk_in(uint8_t busid, uint8_t ep, uint32_t nbytes)
|
2022-05-06 17:07:51 +08:00
|
|
|
{
|
2025-03-28 22:39:30 +08:00
|
|
|
USB_LOG_RAW("actual in len:%d\r\n", (unsigned int)nbytes);
|
2022-07-28 21:25:29 +08:00
|
|
|
|
|
|
|
|
if ((nbytes % CDC_MAX_MPS) == 0 && nbytes) {
|
|
|
|
|
/* send zlp */
|
|
|
|
|
usbd_ep_start_write(CDC_IN_EP, NULL, 0);
|
|
|
|
|
} else {
|
|
|
|
|
ep_tx_busy_flag = false;
|
|
|
|
|
}
|
2022-05-06 17:07:51 +08:00
|
|
|
}
|
|
|
|
|
|
2022-08-20 16:20:23 +08:00
|
|
|
struct usbd_endpoint cdc_out_ep1 = {
|
2022-05-06 17:07:51 +08:00
|
|
|
.ep_addr = CDC_OUT_EP,
|
|
|
|
|
.ep_cb = usbd_cdc_acm_bulk_out
|
|
|
|
|
};
|
|
|
|
|
|
2022-08-20 16:20:23 +08:00
|
|
|
struct usbd_endpoint cdc_in_ep1 = {
|
2022-05-06 17:07:51 +08:00
|
|
|
.ep_addr = CDC_IN_EP,
|
|
|
|
|
.ep_cb = usbd_cdc_acm_bulk_in
|
|
|
|
|
};
|
|
|
|
|
|
2022-08-20 16:20:23 +08:00
|
|
|
struct usbd_endpoint cdc_out_ep2 = {
|
2022-05-06 17:07:51 +08:00
|
|
|
.ep_addr = CDC_OUT_EP2,
|
|
|
|
|
.ep_cb = usbd_cdc_acm_bulk_out
|
|
|
|
|
};
|
|
|
|
|
|
2022-08-20 16:20:23 +08:00
|
|
|
struct usbd_endpoint cdc_in_ep2 = {
|
2022-05-06 17:07:51 +08:00
|
|
|
.ep_addr = CDC_IN_EP2,
|
|
|
|
|
.ep_cb = usbd_cdc_acm_bulk_in
|
|
|
|
|
};
|
|
|
|
|
|
2022-08-20 16:20:23 +08:00
|
|
|
struct usbd_endpoint cdc_out_ep3 = {
|
2022-05-06 17:07:51 +08:00
|
|
|
.ep_addr = CDC_OUT_EP3,
|
|
|
|
|
.ep_cb = usbd_cdc_acm_bulk_out
|
|
|
|
|
};
|
|
|
|
|
|
2022-08-20 16:20:23 +08:00
|
|
|
struct usbd_endpoint cdc_in_ep3 = {
|
2022-05-06 17:07:51 +08:00
|
|
|
.ep_addr = CDC_IN_EP3,
|
|
|
|
|
.ep_cb = usbd_cdc_acm_bulk_in
|
|
|
|
|
};
|
|
|
|
|
|
2022-08-20 16:20:23 +08:00
|
|
|
struct usbd_endpoint cdc_out_ep4 = {
|
2022-05-06 17:07:51 +08:00
|
|
|
.ep_addr = CDC_OUT_EP4,
|
|
|
|
|
.ep_cb = usbd_cdc_acm_bulk_out
|
|
|
|
|
};
|
|
|
|
|
|
2022-08-20 16:20:23 +08:00
|
|
|
struct usbd_endpoint cdc_in_ep4 = {
|
2022-05-06 17:07:51 +08:00
|
|
|
.ep_addr = CDC_IN_EP4,
|
|
|
|
|
.ep_cb = usbd_cdc_acm_bulk_in
|
|
|
|
|
};
|
|
|
|
|
|
2022-10-20 21:22:08 +08:00
|
|
|
struct usbd_interface intf0;
|
|
|
|
|
struct usbd_interface intf1;
|
|
|
|
|
struct usbd_interface intf2;
|
|
|
|
|
struct usbd_interface intf3;
|
|
|
|
|
struct usbd_interface intf4;
|
|
|
|
|
struct usbd_interface intf5;
|
|
|
|
|
struct usbd_interface intf6;
|
|
|
|
|
struct usbd_interface intf7;
|
|
|
|
|
|
2024-08-09 22:49:46 +08:00
|
|
|
void cdc_acm_multi_init(uint8_t busid, uintptr_t reg_base)
|
2022-05-06 17:07:51 +08:00
|
|
|
{
|
2025-02-01 19:13:44 +08:00
|
|
|
usbd_desc_register(busid, &cdc_multi_descriptor);
|
2026-01-24 17:39:42 +08:00
|
|
|
|
2024-02-18 19:36:20 +08:00
|
|
|
usbd_add_interface(busid, usbd_cdc_acm_init_intf(busid, &intf0));
|
|
|
|
|
usbd_add_interface(busid, usbd_cdc_acm_init_intf(busid, &intf1));
|
|
|
|
|
usbd_add_endpoint(busid, &cdc_out_ep1);
|
|
|
|
|
usbd_add_endpoint(busid, &cdc_in_ep1);
|
2022-08-20 16:20:23 +08:00
|
|
|
|
2024-02-18 19:36:20 +08:00
|
|
|
usbd_add_interface(busid, usbd_cdc_acm_init_intf(busid, &intf2));
|
|
|
|
|
usbd_add_interface(busid, usbd_cdc_acm_init_intf(busid, &intf3));
|
|
|
|
|
usbd_add_endpoint(busid, &cdc_out_ep2);
|
|
|
|
|
usbd_add_endpoint(busid, &cdc_in_ep2);
|
2022-08-20 16:20:23 +08:00
|
|
|
|
2024-02-18 19:36:20 +08:00
|
|
|
usbd_add_interface(busid, usbd_cdc_acm_init_intf(busid, &intf4));
|
|
|
|
|
usbd_add_interface(busid, usbd_cdc_acm_init_intf(busid, &intf5));
|
|
|
|
|
usbd_add_endpoint(busid, &cdc_out_ep3);
|
|
|
|
|
usbd_add_endpoint(busid, &cdc_in_ep3);
|
2022-08-20 16:20:23 +08:00
|
|
|
|
2024-02-18 19:36:20 +08:00
|
|
|
usbd_add_interface(busid, usbd_cdc_acm_init_intf(busid, &intf6));
|
|
|
|
|
usbd_add_interface(busid, usbd_cdc_acm_init_intf(busid, &intf7));
|
|
|
|
|
usbd_add_endpoint(busid, &cdc_out_ep4);
|
|
|
|
|
usbd_add_endpoint(busid, &cdc_in_ep4);
|
2022-05-06 17:07:51 +08:00
|
|
|
|
2024-02-18 19:36:20 +08:00
|
|
|
usbd_initialize(busid, reg_base, usbd_event_handler);
|
2022-05-06 17:07:51 +08:00
|
|
|
}
|