/* * The MIT License (MIT) * * Copyright (c) 2024 Heiko Kuester * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. * * This file is part of the TinyUSB stack. */ #ifndef _PL2303_H_ #define _PL2303_H_ #include #include // There is no official documentation for the PL2303 chips. // Reference can be found // - https://github.com/torvalds/linux/blob/master/drivers/usb/serial/pl2303.h and // https://github.com/torvalds/linux/blob/master/drivers/usb/serial/pl2303.c // - https://github.com/freebsd/freebsd-src/blob/main/sys/dev/usb/serial/uplcom.c /* quirks */ #define PL2303_QUIRK_UART_STATE_IDX0 1 #define PL2303_QUIRK_LEGACY 2 #define PL2303_QUIRK_ENDPOINT_HACK 4 /* requests and bits */ #define PL2303_SET_LINE_REQUEST_TYPE 0x21 // class request host to device interface #define PL2303_SET_LINE_REQUEST 0x20 // dec 32 #define PL2303_SET_CONTROL_REQUEST_TYPE 0x21 // class request host to device interface #define PL2303_SET_CONTROL_REQUEST 0x22 // dec 34 #define PL2303_CONTROL_DTR 0x01 // dec 1 #define PL2303_CONTROL_RTS 0x02 // dec 2 #define PL2303_BREAK_REQUEST_TYPE 0x21 // class request host to device interface #define PL2303_BREAK_REQUEST 0x23 // dec 35 #define PL2303_BREAK_ON 0xffff #define PL2303_BREAK_OFF 0x0000 #define PL2303_GET_LINE_REQUEST_TYPE 0xa1 // class request device to host interface #define PL2303_GET_LINE_REQUEST 0x21 // dec 33 #define PL2303_VENDOR_WRITE_REQUEST_TYPE 0x40 // vendor request host to device interface #define PL2303_VENDOR_WRITE_REQUEST 0x01 // dec 1 #define PL2303_VENDOR_WRITE_NREQUEST 0x80 // dec 128 #define PL2303_VENDOR_READ_REQUEST_TYPE 0xc0 // vendor request device to host interface #define PL2303_VENDOR_READ_REQUEST 0x01 // dec 1 #define PL2303_VENDOR_READ_NREQUEST 0x81 // dec 129 #define PL2303_UART_STATE_INDEX 8 #define PL2303_UART_STATE_MSR_MASK 0x8b #define PL2303_UART_STATE_TRANSIENT_MASK 0x74 #define PL2303_UART_DCD 0x01 #define PL2303_UART_DSR 0x02 #define PL2303_UART_BREAK_ERROR 0x04 #define PL2303_UART_RING 0x08 #define PL2303_UART_FRAME_ERROR 0x10 #define PL2303_UART_PARITY_ERROR 0x20 #define PL2303_UART_OVERRUN_ERROR 0x40 #define PL2303_UART_CTS 0x80 #define PL2303_FLOWCTRL_MASK 0xf0 #define PL2303_CLEAR_HALT_REQUEST_TYPE 0x02 // standard request host to device endpoint /* registers via vendor read/write requests */ #define PL2303_READ_TYPE_HX_STATUS 0x8080 #define PL2303_HXN_RESET_REG 0x07 #define PL2303_HXN_RESET_UPSTREAM_PIPE 0x02 #define PL2303_HXN_RESET_DOWNSTREAM_PIPE 0x01 #define PL2303_HXN_FLOWCTRL_REG 0x0a #define PL2303_HXN_FLOWCTRL_MASK 0x1c #define PL2303_HXN_FLOWCTRL_NONE 0x1c #define PL2303_HXN_FLOWCTRL_RTS_CTS 0x18 #define PL2303_HXN_FLOWCTRL_XON_XOFF 0x0c /* type data */ enum pl2303_type { TYPE_H, TYPE_HX, TYPE_TA, TYPE_TB, TYPE_HXD, TYPE_HXN, TYPE_COUNT }; struct pl2303_type_data { uint8_t const *name; uint32_t const max_baud_rate; uint8_t const quirks; uint16_t const no_autoxonxoff:1; uint16_t const no_divisors:1; uint16_t const alt_divisors:1; }; #define PL2303_TYPE_DATA \ [TYPE_H] = { \ .name = (uint8_t const*)"H", \ .max_baud_rate = 1228800, \ .quirks = PL2303_QUIRK_LEGACY, \ .no_autoxonxoff = true, \ }, \ [TYPE_HX] = { \ .name = (uint8_t const*)"HX", \ .max_baud_rate = 6000000, \ }, \ [TYPE_TA] = { \ .name = (uint8_t const*)"TA", \ .max_baud_rate = 6000000, \ .alt_divisors = true, \ }, \ [TYPE_TB] = { \ .name = (uint8_t const*)"TB", \ .max_baud_rate = 12000000, \ .alt_divisors = true, \ }, \ [TYPE_HXD] = { \ .name = (uint8_t const*)"HXD", \ .max_baud_rate = 12000000, \ }, \ [TYPE_HXN] = { \ .name = (uint8_t const*)"G (HXN)", \ .max_baud_rate = 12000000, \ .no_divisors = true, \ } /* private data types */ struct pl2303_serial_private { const struct pl2303_type_data* type; uint8_t quirks; }; typedef struct TU_ATTR_PACKED { struct pl2303_serial_private serial_private; bool supports_hx_status; } pl2303_private_t; /* buffer sizes for line coding data */ #define PL2303_LINE_CODING_BUFSIZE 7 #define PL2303_LINE_CODING_BAUDRATE_BUFSIZE 4 /* bulk endpoints */ #define PL2303_OUT_EP 0x02 #define PL2303_IN_EP 0x83 /* return values of pl2303_detect_type() */ #define PL2303_SUPPORTS_HX_STATUS_TRIGGERED -1 #define PL2303_DETECT_TYPE_FAILED -2 #endif /* _PL2303_H_ */