123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400 |
- /*
- * Copyright (c) 2024, sakumisu
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #include "usbh_core.h"
- #include "usbh_ftdi.h"
- #define DEV_FORMAT "/dev/ttyUSB%d"
- USB_NOCACHE_RAM_SECTION USB_MEM_ALIGNX uint8_t g_ftdi_buf[64];
- #define CONFIG_USBHOST_MAX_FTDI_CLASS 1
- static struct usbh_ftdi g_ftdi_class[CONFIG_USBHOST_MAX_FTDI_CLASS];
- static uint32_t g_devinuse = 0;
- static struct usbh_ftdi *usbh_ftdi_class_alloc(void)
- {
- uint8_t devno;
- for (devno = 0; devno < CONFIG_USBHOST_MAX_FTDI_CLASS; devno++) {
- if ((g_devinuse & (1U << devno)) == 0) {
- g_devinuse |= (1U << devno);
- memset(&g_ftdi_class[devno], 0, sizeof(struct usbh_ftdi));
- g_ftdi_class[devno].minor = devno;
- return &g_ftdi_class[devno];
- }
- }
- return NULL;
- }
- static void usbh_ftdi_class_free(struct usbh_ftdi *ftdi_class)
- {
- uint8_t devno = ftdi_class->minor;
- if (devno < 32) {
- g_devinuse &= ~(1U << devno);
- }
- memset(ftdi_class, 0, sizeof(struct usbh_ftdi));
- }
- static void usbh_ftdi_caculate_baudrate(uint32_t *itdf_divisor, uint32_t actual_baudrate)
- {
- #define FTDI_USB_CLK 48000000
- int baudrate;
- uint8_t frac[] = { 0, 8, 4, 2, 6, 10, 12, 14 };
- if (actual_baudrate == 2000000) {
- *itdf_divisor = 0x01;
- } else if (actual_baudrate == 3000000) {
- *itdf_divisor = 0x00;
- } else {
- baudrate = actual_baudrate;
- if (baudrate > 100000 && baudrate < 12000000) {
- baudrate = (baudrate / 100000) + 100000;
- }
- int divisor = FTDI_USB_CLK / baudrate;
- int frac_bits = 0;
- for (uint8_t i = 0; i < sizeof(frac) / sizeof(frac[0]); i++) {
- if ((divisor & 0xF) == frac[i]) {
- frac_bits = i;
- break;
- }
- }
- divisor >>= 4;
- divisor &= 0x3FFF;
- *itdf_divisor = (divisor << 14) | (frac_bits << 8);
- }
- }
- int usbh_ftdi_reset(struct usbh_ftdi *ftdi_class)
- {
- struct usb_setup_packet *setup;
- if (!ftdi_class || !ftdi_class->hport) {
- return -USB_ERR_INVAL;
- }
- setup = ftdi_class->hport->setup;
- setup->bmRequestType = USB_REQUEST_DIR_OUT | USB_REQUEST_VENDOR | USB_REQUEST_RECIPIENT_DEVICE;
- setup->bRequest = SIO_RESET_REQUEST;
- setup->wValue = 0;
- setup->wIndex = ftdi_class->intf;
- setup->wLength = 0;
- return usbh_control_transfer(ftdi_class->hport, setup, NULL);
- }
- static int usbh_ftdi_set_modem(struct usbh_ftdi *ftdi_class, uint16_t value)
- {
- struct usb_setup_packet *setup;
- if (!ftdi_class || !ftdi_class->hport) {
- return -USB_ERR_INVAL;
- }
- setup = ftdi_class->hport->setup;
- setup->bmRequestType = USB_REQUEST_DIR_OUT | USB_REQUEST_VENDOR | USB_REQUEST_RECIPIENT_DEVICE;
- setup->bRequest = SIO_SET_MODEM_CTRL_REQUEST;
- setup->wValue = value;
- setup->wIndex = ftdi_class->intf;
- setup->wLength = 0;
- return usbh_control_transfer(ftdi_class->hport, setup, NULL);
- }
- static int usbh_ftdi_set_baudrate(struct usbh_ftdi *ftdi_class, uint32_t baudrate)
- {
- struct usb_setup_packet *setup;
- uint32_t itdf_divisor;
- uint16_t value;
- uint8_t baudrate_high;
- if (!ftdi_class || !ftdi_class->hport) {
- return -USB_ERR_INVAL;
- }
- setup = ftdi_class->hport->setup;
- usbh_ftdi_caculate_baudrate(&itdf_divisor, baudrate);
- value = itdf_divisor & 0xFFFF;
- baudrate_high = (itdf_divisor >> 16) & 0xff;
- setup->bmRequestType = USB_REQUEST_DIR_OUT | USB_REQUEST_VENDOR | USB_REQUEST_RECIPIENT_DEVICE;
- setup->bRequest = SIO_SET_BAUDRATE_REQUEST;
- setup->wValue = value;
- setup->wIndex = (baudrate_high << 8) | ftdi_class->intf;
- setup->wLength = 0;
- return usbh_control_transfer(ftdi_class->hport, setup, NULL);
- }
- static int usbh_ftdi_set_data_format(struct usbh_ftdi *ftdi_class, uint8_t databits, uint8_t parity, uint8_t stopbits, uint8_t isbreak)
- {
- /**
- * D0-D7 databits BITS_7=7, BITS_8=8
- * D8-D10 parity NONE=0, ODD=1, EVEN=2, MARK=3, SPACE=4
- * D11-D12 STOP_BIT_1=0, STOP_BIT_15=1, STOP_BIT_2=2
- * D14 BREAK_OFF=0, BREAK_ON=1
- **/
- struct usb_setup_packet *setup;
- uint16_t value;
- if (!ftdi_class || !ftdi_class->hport) {
- return -USB_ERR_INVAL;
- }
- setup = ftdi_class->hport->setup;
- value = ((isbreak & 0x01) << 14) | ((stopbits & 0x03) << 11) | ((parity & 0x0f) << 8) | (databits & 0x0f);
- setup->bmRequestType = USB_REQUEST_DIR_OUT | USB_REQUEST_VENDOR | USB_REQUEST_RECIPIENT_DEVICE;
- setup->bRequest = SIO_SET_DATA_REQUEST;
- setup->wValue = value;
- setup->wIndex = ftdi_class->intf;
- setup->wLength = 0;
- return usbh_control_transfer(ftdi_class->hport, setup, NULL);
- }
- static int usbh_ftdi_set_latency_timer(struct usbh_ftdi *ftdi_class, uint16_t value)
- {
- struct usb_setup_packet *setup;
- if (!ftdi_class || !ftdi_class->hport) {
- return -USB_ERR_INVAL;
- }
- setup = ftdi_class->hport->setup;
- setup->bmRequestType = USB_REQUEST_DIR_OUT | USB_REQUEST_VENDOR | USB_REQUEST_RECIPIENT_DEVICE;
- setup->bRequest = SIO_SET_LATENCY_TIMER_REQUEST;
- setup->wValue = value;
- setup->wIndex = ftdi_class->intf;
- setup->wLength = 0;
- return usbh_control_transfer(ftdi_class->hport, setup, NULL);
- }
- static int usbh_ftdi_set_flow_ctrl(struct usbh_ftdi *ftdi_class, uint16_t value)
- {
- struct usb_setup_packet *setup;
- if (!ftdi_class || !ftdi_class->hport) {
- return -USB_ERR_INVAL;
- }
- setup = ftdi_class->hport->setup;
- setup->bmRequestType = USB_REQUEST_DIR_OUT | USB_REQUEST_VENDOR | USB_REQUEST_RECIPIENT_DEVICE;
- setup->bRequest = SIO_SET_FLOW_CTRL_REQUEST;
- setup->wValue = value;
- setup->wIndex = ftdi_class->intf;
- setup->wLength = 0;
- return usbh_control_transfer(ftdi_class->hport, setup, NULL);
- }
- static int usbh_ftdi_read_modem_status(struct usbh_ftdi *ftdi_class)
- {
- struct usb_setup_packet *setup;
- int ret;
- if (!ftdi_class || !ftdi_class->hport) {
- return -USB_ERR_INVAL;
- }
- setup = ftdi_class->hport->setup;
- setup->bmRequestType = USB_REQUEST_DIR_IN | USB_REQUEST_VENDOR | USB_REQUEST_RECIPIENT_DEVICE;
- setup->bRequest = SIO_POLL_MODEM_STATUS_REQUEST;
- setup->wValue = 0x0000;
- setup->wIndex = ftdi_class->intf;
- setup->wLength = 2;
- ret = usbh_control_transfer(ftdi_class->hport, setup, g_ftdi_buf);
- if (ret < 0) {
- return ret;
- }
- memcpy(ftdi_class->modem_status, g_ftdi_buf, 2);
- return ret;
- }
- int usbh_ftdi_set_line_coding(struct usbh_ftdi *ftdi_class, struct cdc_line_coding *line_coding)
- {
- memcpy((uint8_t *)&ftdi_class->line_coding, line_coding, sizeof(struct cdc_line_coding));
- usbh_ftdi_set_baudrate(ftdi_class, line_coding->dwDTERate);
- return usbh_ftdi_set_data_format(ftdi_class, line_coding->bDataBits, line_coding->bParityType, line_coding->bCharFormat, 0);
- }
- int usbh_ftdi_get_line_coding(struct usbh_ftdi *ftdi_class, struct cdc_line_coding *line_coding)
- {
- memcpy(line_coding, (uint8_t *)&ftdi_class->line_coding, sizeof(struct cdc_line_coding));
- return 0;
- }
- int usbh_ftdi_set_line_state(struct usbh_ftdi *ftdi_class, bool dtr, bool rts)
- {
- int ret;
- if (dtr) {
- usbh_ftdi_set_modem(ftdi_class, SIO_SET_DTR_HIGH);
- } else {
- usbh_ftdi_set_modem(ftdi_class, SIO_SET_DTR_LOW);
- }
- if (rts) {
- ret = usbh_ftdi_set_modem(ftdi_class, SIO_SET_RTS_HIGH);
- } else {
- ret = usbh_ftdi_set_modem(ftdi_class, SIO_SET_RTS_LOW);
- }
- return ret;
- }
- static int usbh_ftdi_connect(struct usbh_hubport *hport, uint8_t intf)
- {
- struct usb_endpoint_descriptor *ep_desc;
- int ret = 0;
- struct usbh_ftdi *ftdi_class = usbh_ftdi_class_alloc();
- if (ftdi_class == NULL) {
- USB_LOG_ERR("Fail to alloc ftdi_class\r\n");
- return -USB_ERR_NOMEM;
- }
- ftdi_class->hport = hport;
- ftdi_class->intf = intf;
- hport->config.intf[intf].priv = ftdi_class;
- usbh_ftdi_reset(ftdi_class);
- usbh_ftdi_set_flow_ctrl(ftdi_class, SIO_DISABLE_FLOW_CTRL);
- usbh_ftdi_set_latency_timer(ftdi_class, 0x10);
- usbh_ftdi_read_modem_status(ftdi_class);
- USB_LOG_INFO("modem status:%02x:%02x\r\n", ftdi_class->modem_status[0], ftdi_class->modem_status[1]);
- for (uint8_t i = 0; i < hport->config.intf[intf].altsetting[0].intf_desc.bNumEndpoints; i++) {
- ep_desc = &hport->config.intf[intf].altsetting[0].ep[i].ep_desc;
- if (ep_desc->bEndpointAddress & 0x80) {
- USBH_EP_INIT(ftdi_class->bulkin, ep_desc);
- } else {
- USBH_EP_INIT(ftdi_class->bulkout, ep_desc);
- }
- }
- snprintf(hport->config.intf[intf].devname, CONFIG_USBHOST_DEV_NAMELEN, DEV_FORMAT, ftdi_class->minor);
- USB_LOG_INFO("Register FTDI Class:%s\r\n", hport->config.intf[intf].devname);
- #if 0
- USB_LOG_INFO("Test ftdi rx and tx and rx for 5 times, baudrate is 115200\r\n");
- struct cdc_line_coding linecoding;
- uint8_t count = 5;
- linecoding.dwDTERate = 115200;
- linecoding.bDataBits = 8;
- linecoding.bParityType = 0;
- linecoding.bCharFormat = 0;
- usbh_ftdi_set_line_coding(ftdi_class, &linecoding);
- usbh_ftdi_set_line_state(ftdi_class, true, false);
- memset(g_ftdi_buf, 'a', sizeof(g_ftdi_buf));
- ret = usbh_ftdi_bulk_out_transfer(ftdi_class, g_ftdi_buf, sizeof(g_ftdi_buf), 0xfffffff);
- USB_LOG_RAW("out ret:%d\r\n", ret);
- while (count--) {
- ret = usbh_ftdi_bulk_in_transfer(ftdi_class, g_ftdi_buf, sizeof(g_ftdi_buf), 0xfffffff);
- USB_LOG_RAW("in ret:%d\r\n", ret);
- if (ret > 0) {
- for (uint32_t i = 0; i < ret; i++) {
- USB_LOG_RAW("%02x ", g_ftdi_buf[i]);
- }
- }
- USB_LOG_RAW("\r\n");
- }
- #endif
- usbh_ftdi_run(ftdi_class);
- return ret;
- }
- static int usbh_ftdi_disconnect(struct usbh_hubport *hport, uint8_t intf)
- {
- int ret = 0;
- struct usbh_ftdi *ftdi_class = (struct usbh_ftdi *)hport->config.intf[intf].priv;
- if (ftdi_class) {
- if (ftdi_class->bulkin) {
- usbh_kill_urb(&ftdi_class->bulkin_urb);
- }
- if (ftdi_class->bulkout) {
- usbh_kill_urb(&ftdi_class->bulkout_urb);
- }
- if (hport->config.intf[intf].devname[0] != '\0') {
- USB_LOG_INFO("Unregister FTDI Class:%s\r\n", hport->config.intf[intf].devname);
- usbh_ftdi_stop(ftdi_class);
- }
- usbh_ftdi_class_free(ftdi_class);
- }
- return ret;
- }
- int usbh_ftdi_bulk_in_transfer(struct usbh_ftdi *ftdi_class, uint8_t *buffer, uint32_t buflen, uint32_t timeout)
- {
- int ret;
- struct usbh_urb *urb = &ftdi_class->bulkin_urb;
- usbh_bulk_urb_fill(urb, ftdi_class->hport, ftdi_class->bulkin, buffer, buflen, timeout, NULL, NULL);
- ret = usbh_submit_urb(urb);
- if (ret == 0) {
- ret = urb->actual_length;
- }
- return ret;
- }
- int usbh_ftdi_bulk_out_transfer(struct usbh_ftdi *ftdi_class, uint8_t *buffer, uint32_t buflen, uint32_t timeout)
- {
- int ret;
- struct usbh_urb *urb = &ftdi_class->bulkout_urb;
- usbh_bulk_urb_fill(urb, ftdi_class->hport, ftdi_class->bulkout, buffer, buflen, timeout, NULL, NULL);
- ret = usbh_submit_urb(urb);
- if (ret == 0) {
- ret = urb->actual_length;
- }
- return ret;
- }
- __WEAK void usbh_ftdi_run(struct usbh_ftdi *ftdi_class)
- {
- (void)ftdi_class;
- }
- __WEAK void usbh_ftdi_stop(struct usbh_ftdi *ftdi_class)
- {
- (void)ftdi_class;
- }
- static const uint16_t ftdi_id_table[][2] = {
- { 0x0403, 0x6001 },
- { 0x0403, 0x6010 },
- { 0, 0 },
- };
- const struct usbh_class_driver ftdi_class_driver = {
- .driver_name = "ftdi",
- .connect = usbh_ftdi_connect,
- .disconnect = usbh_ftdi_disconnect
- };
- CLASS_INFO_DEFINE const struct usbh_class_info ftdi_class_info = {
- .match_flags = USB_CLASS_MATCH_VID_PID | USB_CLASS_MATCH_INTF_CLASS,
- .class = 0xff,
- .subclass = 0x00,
- .protocol = 0x00,
- .id_table = ftdi_id_table,
- .class_driver = &ftdi_class_driver
- };
|