You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
408 lines
15 KiB
408 lines
15 KiB
/*
|
|
* Copyright (c) 2024, sakumisu
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#include "usbh_core.h"
|
|
#include "usbh_cdc_ncm.h"
|
|
|
|
#undef USB_DBG_TAG
|
|
#define USB_DBG_TAG "usbh_cdc_ncm"
|
|
#include "usb_log.h"
|
|
|
|
#define DEV_FORMAT "/dev/cdc_ncm"
|
|
|
|
/* general descriptor field offsets */
|
|
#define DESC_bLength 0 /** Length offset */
|
|
#define DESC_bDescriptorType 1 /** Descriptor type offset */
|
|
#define DESC_bDescriptorSubType 2 /** Descriptor subtype offset */
|
|
|
|
/* interface descriptor field offsets */
|
|
#define INTF_DESC_bInterfaceNumber 2 /** Interface number offset */
|
|
#define INTF_DESC_bAlternateSetting 3 /** Alternate setting offset */
|
|
|
|
#define CONFIG_USBHOST_CDC_NCM_ETH_MAX_SEGSZE 1514U
|
|
|
|
static USB_NOCACHE_RAM_SECTION USB_MEM_ALIGNX uint8_t g_cdc_ncm_rx_buffer[CONFIG_USBHOST_CDC_NCM_ETH_MAX_RX_SIZE];
|
|
static USB_NOCACHE_RAM_SECTION USB_MEM_ALIGNX uint8_t g_cdc_ncm_tx_buffer[CONFIG_USBHOST_CDC_NCM_ETH_MAX_TX_SIZE];
|
|
static USB_NOCACHE_RAM_SECTION USB_MEM_ALIGNX uint8_t g_cdc_ncm_inttx_buffer[16];
|
|
|
|
USB_NOCACHE_RAM_SECTION USB_MEM_ALIGNX uint8_t g_cdc_ncm_buf[32];
|
|
|
|
static struct usbh_cdc_ncm g_cdc_ncm_class;
|
|
|
|
static int usbh_cdc_ncm_get_ntb_parameters(struct usbh_cdc_ncm *cdc_ncm_class, struct cdc_ncm_ntb_parameters *param)
|
|
{
|
|
struct usb_setup_packet *setup;
|
|
int ret;
|
|
|
|
if (!cdc_ncm_class || !cdc_ncm_class->hport) {
|
|
return -USB_ERR_INVAL;
|
|
}
|
|
setup = cdc_ncm_class->hport->setup;
|
|
|
|
setup->bmRequestType = USB_REQUEST_DIR_IN | USB_REQUEST_CLASS | USB_REQUEST_RECIPIENT_INTERFACE;
|
|
setup->bRequest = CDC_REQUEST_GET_NTB_PARAMETERS;
|
|
setup->wValue = 0;
|
|
setup->wIndex = cdc_ncm_class->ctrl_intf;
|
|
setup->wLength = 28;
|
|
|
|
ret = usbh_control_transfer(cdc_ncm_class->hport, setup, g_cdc_ncm_buf);
|
|
if (ret < 0) {
|
|
return ret;
|
|
}
|
|
|
|
memcpy((uint8_t *)param, g_cdc_ncm_buf, ret - 8);
|
|
return 0;
|
|
}
|
|
|
|
static void print_ntb_parameters(struct cdc_ncm_ntb_parameters *param)
|
|
{
|
|
USB_LOG_RAW("CDC NCM ntb parameters:\r\n");
|
|
USB_LOG_RAW("wLength: 0x%02x \r\n", param->wLength);
|
|
USB_LOG_RAW("bmNtbFormatsSupported: %s \r\n", param->bmNtbFormatsSupported ? "NTB16" : "NTB32");
|
|
|
|
USB_LOG_RAW("dwNtbInMaxSize: 0x%04x \r\n", param->dwNtbInMaxSize);
|
|
USB_LOG_RAW("wNdbInDivisor: 0x%02x \r\n", param->wNdbInDivisor);
|
|
USB_LOG_RAW("wNdbInPayloadRemainder: 0x%02x \r\n", param->wNdbInPayloadRemainder);
|
|
USB_LOG_RAW("wNdbInAlignment: 0x%02x \r\n", param->wNdbInAlignment);
|
|
|
|
USB_LOG_RAW("dwNtbOutMaxSize: 0x%04x \r\n", param->dwNtbOutMaxSize);
|
|
USB_LOG_RAW("wNdbOutDivisor: 0x%02x \r\n", param->wNdbOutDivisor);
|
|
USB_LOG_RAW("wNdbOutPayloadRemainder: 0x%02x \r\n", param->wNdbOutPayloadRemainder);
|
|
USB_LOG_RAW("wNdbOutAlignment: 0x%02x \r\n", param->wNdbOutAlignment);
|
|
|
|
USB_LOG_RAW("wNtbOutMaxDatagrams: 0x%02x \r\n", param->wNtbOutMaxDatagrams);
|
|
}
|
|
|
|
int usbh_cdc_ncm_get_connect_status(struct usbh_cdc_ncm *cdc_ncm_class)
|
|
{
|
|
int ret;
|
|
|
|
usbh_int_urb_fill(&cdc_ncm_class->intin_urb, cdc_ncm_class->hport, cdc_ncm_class->intin, g_cdc_ncm_inttx_buffer, 16, USB_OSAL_WAITING_FOREVER, NULL, NULL);
|
|
ret = usbh_submit_urb(&cdc_ncm_class->intin_urb);
|
|
if (ret < 0) {
|
|
return ret;
|
|
}
|
|
|
|
if (g_cdc_ncm_inttx_buffer[1] == CDC_ECM_NOTIFY_CODE_NETWORK_CONNECTION) {
|
|
if (g_cdc_ncm_inttx_buffer[2] == CDC_ECM_NET_CONNECTED) {
|
|
cdc_ncm_class->connect_status = true;
|
|
} else {
|
|
cdc_ncm_class->connect_status = false;
|
|
}
|
|
} else if (g_cdc_ncm_inttx_buffer[1] == CDC_ECM_NOTIFY_CODE_CONNECTION_SPEED_CHANGE) {
|
|
memcpy(cdc_ncm_class->speed, &g_cdc_ncm_inttx_buffer[8], 8);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int usbh_cdc_ncm_connect(struct usbh_hubport *hport, uint8_t intf)
|
|
{
|
|
struct usb_endpoint_descriptor *ep_desc;
|
|
int ret;
|
|
uint8_t altsetting = 0;
|
|
char mac_buffer[12];
|
|
uint8_t *p;
|
|
uint8_t cur_iface = 0xff;
|
|
uint8_t mac_str_idx = 0xff;
|
|
|
|
struct usbh_cdc_ncm *cdc_ncm_class = &g_cdc_ncm_class;
|
|
|
|
memset(cdc_ncm_class, 0, sizeof(struct usbh_cdc_ncm));
|
|
|
|
cdc_ncm_class->hport = hport;
|
|
cdc_ncm_class->ctrl_intf = intf;
|
|
cdc_ncm_class->data_intf = intf + 1;
|
|
|
|
hport->config.intf[intf].priv = cdc_ncm_class;
|
|
hport->config.intf[intf + 1].priv = NULL;
|
|
|
|
p = hport->raw_config_desc;
|
|
while (p[DESC_bLength]) {
|
|
switch (p[DESC_bDescriptorType]) {
|
|
case USB_DESCRIPTOR_TYPE_INTERFACE:
|
|
cur_iface = p[INTF_DESC_bInterfaceNumber];
|
|
//cur_alt_setting = p[INTF_DESC_bAlternateSetting];
|
|
break;
|
|
case CDC_CS_INTERFACE:
|
|
if ((cur_iface == cdc_ncm_class->ctrl_intf) && p[DESC_bDescriptorSubType] == CDC_FUNC_DESC_ETHERNET_NETWORKING) {
|
|
struct cdc_eth_descriptor *desc = (struct cdc_eth_descriptor *)p;
|
|
mac_str_idx = desc->iMACAddress;
|
|
cdc_ncm_class->max_segment_size = desc->wMaxSegmentSize;
|
|
goto get_mac;
|
|
}
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
/* skip to next descriptor */
|
|
p += p[DESC_bLength];
|
|
}
|
|
|
|
get_mac:
|
|
if (mac_str_idx == 0xff) {
|
|
USB_LOG_ERR("Do not find cdc ncm mac string\r\n");
|
|
return -1;
|
|
}
|
|
|
|
memset(mac_buffer, 0, 12);
|
|
ret = usbh_get_string_desc(cdc_ncm_class->hport, mac_str_idx, (uint8_t *)mac_buffer);
|
|
if (ret < 0) {
|
|
return ret;
|
|
}
|
|
|
|
for (int i = 0, j = 0; i < 12; i += 2, j++) {
|
|
char byte_str[3];
|
|
byte_str[0] = mac_buffer[i];
|
|
byte_str[1] = mac_buffer[i + 1];
|
|
byte_str[2] = '\0';
|
|
|
|
uint32_t byte = strtoul(byte_str, NULL, 16);
|
|
cdc_ncm_class->mac[j] = (unsigned char)byte;
|
|
}
|
|
|
|
USB_LOG_INFO("CDC NCM MAC address %02x:%02x:%02x:%02x:%02x:%02x\r\n",
|
|
cdc_ncm_class->mac[0],
|
|
cdc_ncm_class->mac[1],
|
|
cdc_ncm_class->mac[2],
|
|
cdc_ncm_class->mac[3],
|
|
cdc_ncm_class->mac[4],
|
|
cdc_ncm_class->mac[5]);
|
|
|
|
if (cdc_ncm_class->max_segment_size > CONFIG_USBHOST_CDC_NCM_ETH_MAX_SEGSZE) {
|
|
USB_LOG_ERR("CDC NCM Max Segment Size is overflow, default is %u, but now %u\r\n", CONFIG_USBHOST_CDC_NCM_ETH_MAX_SEGSZE, cdc_ncm_class->max_segment_size);
|
|
} else {
|
|
USB_LOG_INFO("CDC NCM Max Segment Size:%u\r\n", cdc_ncm_class->max_segment_size);
|
|
}
|
|
|
|
usbh_cdc_ncm_get_ntb_parameters(cdc_ncm_class, &cdc_ncm_class->ntb_param);
|
|
print_ntb_parameters(&cdc_ncm_class->ntb_param);
|
|
|
|
/* enable int ep */
|
|
ep_desc = &hport->config.intf[intf].altsetting[0].ep[0].ep_desc;
|
|
USBH_EP_INIT(cdc_ncm_class->intin, ep_desc);
|
|
|
|
if (hport->config.intf[intf + 1].altsetting_num > 1) {
|
|
altsetting = hport->config.intf[intf + 1].altsetting_num - 1;
|
|
|
|
for (uint8_t i = 0; i < hport->config.intf[intf + 1].altsetting[altsetting].intf_desc.bNumEndpoints; i++) {
|
|
ep_desc = &hport->config.intf[intf + 1].altsetting[altsetting].ep[i].ep_desc;
|
|
|
|
if (ep_desc->bEndpointAddress & 0x80) {
|
|
USBH_EP_INIT(cdc_ncm_class->bulkin, ep_desc);
|
|
} else {
|
|
USBH_EP_INIT(cdc_ncm_class->bulkout, ep_desc);
|
|
}
|
|
}
|
|
|
|
USB_LOG_INFO("Select cdc ncm altsetting: %d\r\n", altsetting);
|
|
usbh_set_interface(cdc_ncm_class->hport, cdc_ncm_class->data_intf, altsetting);
|
|
} else {
|
|
for (uint8_t i = 0; i < hport->config.intf[intf + 1].altsetting[0].intf_desc.bNumEndpoints; i++) {
|
|
ep_desc = &hport->config.intf[intf + 1].altsetting[0].ep[i].ep_desc;
|
|
|
|
if (ep_desc->bEndpointAddress & 0x80) {
|
|
USBH_EP_INIT(cdc_ncm_class->bulkin, ep_desc);
|
|
} else {
|
|
USBH_EP_INIT(cdc_ncm_class->bulkout, ep_desc);
|
|
}
|
|
}
|
|
}
|
|
|
|
strncpy(hport->config.intf[intf].devname, DEV_FORMAT, CONFIG_USBHOST_DEV_NAMELEN);
|
|
|
|
USB_LOG_INFO("Register CDC NCM Class:%s\r\n", hport->config.intf[intf].devname);
|
|
|
|
usbh_cdc_ncm_run(cdc_ncm_class);
|
|
return ret;
|
|
}
|
|
|
|
static int usbh_cdc_ncm_disconnect(struct usbh_hubport *hport, uint8_t intf)
|
|
{
|
|
int ret = 0;
|
|
|
|
struct usbh_cdc_ncm *cdc_ncm_class = (struct usbh_cdc_ncm *)hport->config.intf[intf].priv;
|
|
|
|
if (cdc_ncm_class) {
|
|
if (cdc_ncm_class->bulkin) {
|
|
usbh_kill_urb(&cdc_ncm_class->bulkin_urb);
|
|
}
|
|
|
|
if (cdc_ncm_class->bulkout) {
|
|
usbh_kill_urb(&cdc_ncm_class->bulkout_urb);
|
|
}
|
|
|
|
if (cdc_ncm_class->intin) {
|
|
usbh_kill_urb(&cdc_ncm_class->intin_urb);
|
|
}
|
|
|
|
if (hport->config.intf[intf].devname[0] != '\0') {
|
|
USB_LOG_INFO("Unregister CDC NCM Class:%s\r\n", hport->config.intf[intf].devname);
|
|
usbh_cdc_ncm_stop(cdc_ncm_class);
|
|
}
|
|
|
|
memset(cdc_ncm_class, 0, sizeof(struct usbh_cdc_ncm));
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
void usbh_cdc_ncm_rx_thread(void *argument)
|
|
{
|
|
uint32_t g_cdc_ncm_rx_length;
|
|
int ret;
|
|
#if CONFIG_USBHOST_CDC_NCM_ETH_MAX_RX_SIZE <= (16 * 1024)
|
|
uint32_t transfer_size = CONFIG_USBHOST_CDC_NCM_ETH_MAX_RX_SIZE;
|
|
#else
|
|
uint32_t transfer_size = (16 * 1024);
|
|
#endif
|
|
|
|
USB_LOG_INFO("Create cdc ncm rx thread\r\n");
|
|
// clang-format off
|
|
find_class:
|
|
// clang-format on
|
|
g_cdc_ncm_class.connect_status = false;
|
|
if (usbh_find_class_instance("/dev/cdc_ncm") == NULL) {
|
|
goto delete;
|
|
}
|
|
|
|
while (g_cdc_ncm_class.connect_status == false) {
|
|
ret = usbh_cdc_ncm_get_connect_status(&g_cdc_ncm_class);
|
|
if (ret < 0) {
|
|
usb_osal_msleep(100);
|
|
goto find_class;
|
|
}
|
|
}
|
|
|
|
g_cdc_ncm_rx_length = 0;
|
|
while (1) {
|
|
usbh_bulk_urb_fill(&g_cdc_ncm_class.bulkin_urb, g_cdc_ncm_class.hport, g_cdc_ncm_class.bulkin, &g_cdc_ncm_rx_buffer[g_cdc_ncm_rx_length], transfer_size, USB_OSAL_WAITING_FOREVER, NULL, NULL);
|
|
ret = usbh_submit_urb(&g_cdc_ncm_class.bulkin_urb);
|
|
if (ret < 0) {
|
|
goto find_class;
|
|
}
|
|
|
|
g_cdc_ncm_rx_length += g_cdc_ncm_class.bulkin_urb.actual_length;
|
|
|
|
/* A transfer is complete because last packet is a short packet.
|
|
* Short packet is not zero, match g_cdc_ncm_rx_length % USB_GET_MAXPACKETSIZE(g_cdc_ncm_class.bulkin->wMaxPacketSize).
|
|
* Short packet is zero, check if g_cdc_ncm_class.bulkin_urb.actual_length < transfer_size, for example transfer is complete with size is 1024 < 2048.
|
|
*/
|
|
if ((g_cdc_ncm_rx_length % USB_GET_MAXPACKETSIZE(g_cdc_ncm_class.bulkin->wMaxPacketSize)) ||
|
|
(g_cdc_ncm_class.bulkin_urb.actual_length < transfer_size)) {
|
|
USB_LOG_DBG("rxlen:%d\r\n", g_cdc_ncm_rx_length);
|
|
|
|
struct cdc_ncm_nth16 *nth16 = (struct cdc_ncm_nth16 *)&g_cdc_ncm_rx_buffer[0];
|
|
if ((nth16->dwSignature != CDC_NCM_NTH16_SIGNATURE) ||
|
|
(nth16->wHeaderLength != 12) ||
|
|
(nth16->wBlockLength != g_cdc_ncm_rx_length)) {
|
|
USB_LOG_ERR("invalid rx nth16\r\n");
|
|
g_cdc_ncm_rx_length = 0;
|
|
continue;
|
|
}
|
|
|
|
struct cdc_ncm_ndp16 *ndp16 = (struct cdc_ncm_ndp16 *)&g_cdc_ncm_rx_buffer[nth16->wNdpIndex];
|
|
if ((ndp16->dwSignature != CDC_NCM_NDP16_SIGNATURE_NCM0) && (ndp16->dwSignature != CDC_NCM_NDP16_SIGNATURE_NCM1)) {
|
|
USB_LOG_ERR("invalid rx ndp16\r\n");
|
|
g_cdc_ncm_rx_length = 0;
|
|
continue;
|
|
}
|
|
|
|
uint16_t datagram_num = (ndp16->wLength - 8) / 4;
|
|
|
|
USB_LOG_DBG("datagram num:%02x\r\n", datagram_num);
|
|
for (uint16_t i = 0; i < datagram_num; i++) {
|
|
struct cdc_ncm_ndp16_datagram *ndp16_datagram = (struct cdc_ncm_ndp16_datagram *)&g_cdc_ncm_rx_buffer[nth16->wNdpIndex + 8 + 4 * i];
|
|
if (ndp16_datagram->wDatagramIndex && ndp16_datagram->wDatagramLength) {
|
|
USB_LOG_DBG("ndp16_datagram index:%02x, length:%02x\r\n", ndp16_datagram->wDatagramIndex, ndp16_datagram->wDatagramLength);
|
|
|
|
uint8_t *buf = (uint8_t *)&g_cdc_ncm_rx_buffer[ndp16_datagram->wDatagramIndex];
|
|
usbh_cdc_ncm_eth_input(buf, ndp16_datagram->wDatagramLength);
|
|
}
|
|
}
|
|
|
|
g_cdc_ncm_rx_length = 0;
|
|
} else {
|
|
#if CONFIG_USBHOST_CDC_NCM_ETH_MAX_RX_SIZE <= (16 * 1024)
|
|
if (g_cdc_ncm_rx_length == CONFIG_USBHOST_CDC_NCM_ETH_MAX_RX_SIZE) {
|
|
#else
|
|
if ((g_cdc_ncm_rx_length + (16 * 1024)) > CONFIG_USBHOST_CDC_NCM_ETH_MAX_RX_SIZE) {
|
|
#endif
|
|
USB_LOG_ERR("Rx packet is overflow, please reduce tcp window size or increase CONFIG_USBHOST_CDC_NCM_ETH_MAX_RX_SIZE\r\n");
|
|
while (1) {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// clang-format off
|
|
delete:
|
|
USB_LOG_INFO("Delete cdc ncm rx thread\r\n");
|
|
usb_osal_thread_delete(NULL);
|
|
// clang-format on
|
|
}
|
|
|
|
uint8_t *usbh_cdc_ncm_get_eth_txbuf(void)
|
|
{
|
|
return &g_cdc_ncm_tx_buffer[16];
|
|
}
|
|
|
|
int usbh_cdc_ncm_eth_output(uint32_t buflen)
|
|
{
|
|
struct cdc_ncm_ndp16_datagram *ndp16_datagram;
|
|
|
|
if (g_cdc_ncm_class.connect_status == false) {
|
|
return -USB_ERR_NOTCONN;
|
|
}
|
|
|
|
struct cdc_ncm_nth16 *nth16 = (struct cdc_ncm_nth16 *)&g_cdc_ncm_tx_buffer[0];
|
|
|
|
nth16->dwSignature = CDC_NCM_NTH16_SIGNATURE;
|
|
nth16->wHeaderLength = 12;
|
|
nth16->wSequence = g_cdc_ncm_class.bulkout_sequence++;
|
|
nth16->wBlockLength = 16 + 16 + USB_ALIGN_UP(buflen, 4);
|
|
nth16->wNdpIndex = 16 + USB_ALIGN_UP(buflen, 4);
|
|
|
|
struct cdc_ncm_ndp16 *ndp16 = (struct cdc_ncm_ndp16 *)&g_cdc_ncm_tx_buffer[nth16->wNdpIndex];
|
|
|
|
ndp16->dwSignature = CDC_NCM_NDP16_SIGNATURE_NCM0;
|
|
ndp16->wLength = 16;
|
|
ndp16->wNextNdpIndex = 0;
|
|
|
|
ndp16_datagram = (struct cdc_ncm_ndp16_datagram *)&g_cdc_ncm_tx_buffer[nth16->wNdpIndex + 8 + 4 * 0];
|
|
ndp16_datagram->wDatagramIndex = 16;
|
|
ndp16_datagram->wDatagramLength = buflen;
|
|
|
|
ndp16_datagram = (struct cdc_ncm_ndp16_datagram *)&g_cdc_ncm_tx_buffer[nth16->wNdpIndex + 8 + 4 * 1];
|
|
ndp16_datagram->wDatagramIndex = 0;
|
|
ndp16_datagram->wDatagramLength = 0;
|
|
|
|
USB_LOG_DBG("txlen:%d\r\n", nth16->wBlockLength);
|
|
|
|
usbh_bulk_urb_fill(&g_cdc_ncm_class.bulkout_urb, g_cdc_ncm_class.hport, g_cdc_ncm_class.bulkout, g_cdc_ncm_tx_buffer, nth16->wBlockLength, USB_OSAL_WAITING_FOREVER, NULL, NULL);
|
|
return usbh_submit_urb(&g_cdc_ncm_class.bulkout_urb);
|
|
}
|
|
|
|
__WEAK void usbh_cdc_ncm_run(struct usbh_cdc_ncm *cdc_ncm_class)
|
|
{
|
|
}
|
|
|
|
__WEAK void usbh_cdc_ncm_stop(struct usbh_cdc_ncm *cdc_ncm_class)
|
|
{
|
|
}
|
|
|
|
const struct usbh_class_driver cdc_ncm_class_driver = {
|
|
.driver_name = "cdc_ncm",
|
|
.connect = usbh_cdc_ncm_connect,
|
|
.disconnect = usbh_cdc_ncm_disconnect
|
|
};
|
|
|
|
CLASS_INFO_DEFINE const struct usbh_class_info cdc_ncm_class_info = {
|
|
.match_flags = USB_CLASS_MATCH_INTF_CLASS | USB_CLASS_MATCH_INTF_SUBCLASS | USB_CLASS_MATCH_INTF_PROTOCOL,
|
|
.class = USB_DEVICE_CLASS_CDC,
|
|
.subclass = CDC_NETWORK_CONTROL_MODEL,
|
|
.protocol = CDC_COMMON_PROTOCOL_NONE,
|
|
.id_table = NULL,
|
|
.class_driver = &cdc_ncm_class_driver
|
|
};
|
|
|