15fd54aceSGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0 203ee2515SGreg Kroah-Hartman /* 34cc27bd6SCraig Shelley * Silicon Laboratories CP210x USB to RS232 serial adaptor driver 403ee2515SGreg Kroah-Hartman * 503ee2515SGreg Kroah-Hartman * Copyright (C) 2005 Craig Shelley (craig@microtron.org.uk) 603ee2515SGreg Kroah-Hartman * 703ee2515SGreg Kroah-Hartman * Support to set flow control line levels using TIOCMGET and TIOCMSET 803ee2515SGreg Kroah-Hartman * thanks to Karl Hiramoto karl@hiramoto.org. RTSCTS hardware flow 903ee2515SGreg Kroah-Hartman * control thanks to Munir Nassar nassarmu@real-time.com 1003ee2515SGreg Kroah-Hartman * 1103ee2515SGreg Kroah-Hartman */ 1203ee2515SGreg Kroah-Hartman 1303ee2515SGreg Kroah-Hartman #include <linux/kernel.h> 1403ee2515SGreg Kroah-Hartman #include <linux/errno.h> 1503ee2515SGreg Kroah-Hartman #include <linux/slab.h> 1603ee2515SGreg Kroah-Hartman #include <linux/tty.h> 1703ee2515SGreg Kroah-Hartman #include <linux/tty_flip.h> 1803ee2515SGreg Kroah-Hartman #include <linux/module.h> 1903ee2515SGreg Kroah-Hartman #include <linux/moduleparam.h> 2003ee2515SGreg Kroah-Hartman #include <linux/usb.h> 2103ee2515SGreg Kroah-Hartman #include <linux/uaccess.h> 2203ee2515SGreg Kroah-Hartman #include <linux/usb/serial.h> 23cf5276ceSMartyn Welch #include <linux/gpio/driver.h> 24cf5276ceSMartyn Welch #include <linux/bitops.h> 25cf5276ceSMartyn Welch #include <linux/mutex.h> 2603ee2515SGreg Kroah-Hartman 274cc27bd6SCraig Shelley #define DRIVER_DESC "Silicon Labs CP210x RS232 serial adaptor driver" 2803ee2515SGreg Kroah-Hartman 2903ee2515SGreg Kroah-Hartman /* 3003ee2515SGreg Kroah-Hartman * Function Prototypes 3103ee2515SGreg Kroah-Hartman */ 32a509a7e4SAlan Cox static int cp210x_open(struct tty_struct *tty, struct usb_serial_port *); 334cc27bd6SCraig Shelley static void cp210x_close(struct usb_serial_port *); 34e5990874SJohan Hovold static void cp210x_change_speed(struct tty_struct *, struct usb_serial_port *, 35e5990874SJohan Hovold struct ktermios *); 364cc27bd6SCraig Shelley static void cp210x_set_termios(struct tty_struct *, struct usb_serial_port *, 3703ee2515SGreg Kroah-Hartman struct ktermios*); 386f923a01SKonstantin Shkolnyy static bool cp210x_tx_empty(struct usb_serial_port *port); 3960b33c13SAlan Cox static int cp210x_tiocmget(struct tty_struct *); 4020b9d177SAlan Cox static int cp210x_tiocmset(struct tty_struct *, unsigned int, unsigned int); 4120b9d177SAlan Cox static int cp210x_tiocmset_port(struct usb_serial_port *port, 42d2ad67b3SVomLehn unsigned int, unsigned int); 434cc27bd6SCraig Shelley static void cp210x_break_ctl(struct tty_struct *, int); 44cf5276ceSMartyn Welch static int cp210x_attach(struct usb_serial *); 45cf5276ceSMartyn Welch static void cp210x_disconnect(struct usb_serial *); 46cf5276ceSMartyn Welch static void cp210x_release(struct usb_serial *); 47e2ae67a3SKonstantin Shkolnyy static int cp210x_port_probe(struct usb_serial_port *); 48e2ae67a3SKonstantin Shkolnyy static int cp210x_port_remove(struct usb_serial_port *); 49d94c7bd4SAlan Cox static void cp210x_dtr_rts(struct usb_serial_port *p, int on); 50a7207e98SJohan Hovold static void cp210x_process_read_urb(struct urb *urb); 51a7207e98SJohan Hovold static void cp210x_enable_event_mode(struct usb_serial_port *port); 52a7207e98SJohan Hovold static void cp210x_disable_event_mode(struct usb_serial_port *port); 5303ee2515SGreg Kroah-Hartman 547d40d7e8SNémeth Márton static const struct usb_device_id id_table[] = { 552f1136d1SDJ Delorie { USB_DEVICE(0x045B, 0x0053) }, /* Renesas RX610 RX-Stick */ 5603ee2515SGreg Kroah-Hartman { USB_DEVICE(0x0471, 0x066A) }, /* AKTAKOM ACE-1001 cable */ 5703ee2515SGreg Kroah-Hartman { USB_DEVICE(0x0489, 0xE000) }, /* Pirelli Broadband S.p.A, DP-L10 SIP/GSM Mobile */ 585b22a32eSA E Lawrence { USB_DEVICE(0x0489, 0xE003) }, /* Pirelli Broadband S.p.A, DP-L10 SIP/GSM Mobile */ 59b7c7cbc8SCraig Shelley { USB_DEVICE(0x0745, 0x1000) }, /* CipherLab USB CCD Barcode Scanner 1000 */ 6090625070SLuiz Angelo Daros de Luca { USB_DEVICE(0x0846, 0x1100) }, /* NetGear Managed Switch M4100 series, M5300 series, M7100 series */ 6103ee2515SGreg Kroah-Hartman { USB_DEVICE(0x08e6, 0x5501) }, /* Gemalto Prox-PU/CU contactless smartcard reader */ 62b7c7cbc8SCraig Shelley { USB_DEVICE(0x08FD, 0x000A) }, /* Digianswer A/S , ZigBee/802.15.4 MAC Device */ 63a6f03312SLennart Sorensen { USB_DEVICE(0x0908, 0x01FF) }, /* Siemens RUGGEDCOM USB Serial Console */ 64dd9d3d86SIvan Mironov { USB_DEVICE(0x0B00, 0x3070) }, /* Ingenico 3070 */ 65eefd9029SCraig Shelley { USB_DEVICE(0x0BED, 0x1100) }, /* MEI (TM) Cashflow-SC Bill/Voucher Acceptor */ 66eefd9029SCraig Shelley { USB_DEVICE(0x0BED, 0x1101) }, /* MEI series 2000 Combo Acceptor */ 6703ee2515SGreg Kroah-Hartman { USB_DEVICE(0x0FCF, 0x1003) }, /* Dynastream ANT development board */ 6803ee2515SGreg Kroah-Hartman { USB_DEVICE(0x0FCF, 0x1004) }, /* Dynastream ANT2USB */ 6903ee2515SGreg Kroah-Hartman { USB_DEVICE(0x0FCF, 0x1006) }, /* Dynastream ANT development board */ 708de7f4daSLuis Llorente Campo { USB_DEVICE(0x0FDE, 0xCA05) }, /* OWL Wireless Electricity Monitor CM-160 */ 7103ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10A6, 0xAA26) }, /* Knock-off DCU-11 cable */ 7203ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10AB, 0x10C5) }, /* Siemens MC60 Cable */ 7303ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10B5, 0xAC70) }, /* Nokia CA-42 USB */ 74b7c7cbc8SCraig Shelley { USB_DEVICE(0x10C4, 0x0F91) }, /* Vstabi */ 750601e116SAmit Kucheria { USB_DEVICE(0x10C4, 0x1101) }, /* Arkham Technology DS101 Bus Monitor */ 760601e116SAmit Kucheria { USB_DEVICE(0x10C4, 0x1601) }, /* Arkham Technology DS101 Adapter */ 7703ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x800A) }, /* SPORTident BSM7-D-USB main station */ 7803ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x803B) }, /* Pololu USB-serial converter */ 79eefd9029SCraig Shelley { USB_DEVICE(0x10C4, 0x8044) }, /* Cygnal Debug Adapter */ 80eefd9029SCraig Shelley { USB_DEVICE(0x10C4, 0x804E) }, /* Software Bisque Paramount ME build-in converter */ 8103ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8053) }, /* Enfora EDG1228 */ 8203ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8054) }, /* Enfora GSM2228 */ 83a595ecddSGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8056) }, /* Lorenz Messtechnik devices */ 8403ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8066) }, /* Argussoft In-System Programmer */ 85eefd9029SCraig Shelley { USB_DEVICE(0x10C4, 0x806F) }, /* IMS USB to RS422 Converter Cable */ 8603ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x807A) }, /* Crumb128 board */ 875bbfa6f4SMikko Tuumanen { USB_DEVICE(0x10C4, 0x80C4) }, /* Cygnal Integrated Products, Inc., Optris infrared thermometer */ 8803ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x80CA) }, /* Degree Controls Inc */ 8903ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x80DD) }, /* Tracient RFID */ 9003ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x80F6) }, /* Suunto sports instrument */ 9103ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8115) }, /* Arygon NFC/Mifare Reader */ 9203ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x813D) }, /* Burnside Telecom Deskmobile */ 938bf16ba7SCraig Shelley { USB_DEVICE(0x10C4, 0x813F) }, /* Tams Master Easy Control */ 9403ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x814A) }, /* West Mountain Radio RIGblaster P&P */ 9503ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x814B) }, /* West Mountain Radio RIGtalk */ 96a57e82a1SSteve Conklin { USB_DEVICE(0x2405, 0x0003) }, /* West Mountain Radio RIGblaster Advantage */ 970bf7a81cSJason Detring { USB_DEVICE(0x10C4, 0x8156) }, /* B&G H3000 link cable */ 9803ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x815E) }, /* Helicomm IP-Link 1220-DVM */ 993fcc8f96SCraig Shelley { USB_DEVICE(0x10C4, 0x815F) }, /* Timewave HamLinkUSB */ 10024160628SJohan Hovold { USB_DEVICE(0x10C4, 0x817C) }, /* CESINEL MEDCAL N Power Quality Monitor */ 10124160628SJohan Hovold { USB_DEVICE(0x10C4, 0x817D) }, /* CESINEL MEDCAL NT Power Quality Monitor */ 10224160628SJohan Hovold { USB_DEVICE(0x10C4, 0x817E) }, /* CESINEL MEDCAL S Power Quality Monitor */ 103eefd9029SCraig Shelley { USB_DEVICE(0x10C4, 0x818B) }, /* AVIT Research USB to TTL */ 10403ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x819F) }, /* MJS USB Toslink Switcher */ 10503ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x81A6) }, /* ThinkOptics WavIt */ 10608e87d0dSMalte Schröder { USB_DEVICE(0x10C4, 0x81A9) }, /* Multiplex RC Interface */ 10703ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x81AC) }, /* MSD Dash Hawk */ 108eefd9029SCraig Shelley { USB_DEVICE(0x10C4, 0x81AD) }, /* INSYS USB Modem */ 10903ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x81C8) }, /* Lipowsky Industrie Elektronik GmbH, Baby-JTAG */ 110f487c54dSPeter Dedecker { USB_DEVICE(0x10C4, 0x81D7) }, /* IAI Corp. RCB-CV-USB USB to RS485 Adaptor */ 11103ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x81E2) }, /* Lipowsky Industrie Elektronik GmbH, Baby-LIN */ 11203ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x81E7) }, /* Aerocomm Radio */ 113bd07c551SAlan Cox { USB_DEVICE(0x10C4, 0x81E8) }, /* Zephyr Bioharness */ 114b7c7cbc8SCraig Shelley { USB_DEVICE(0x10C4, 0x81F2) }, /* C1007 HF band RFID controller */ 11503ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8218) }, /* Lipowsky Industrie Elektronik GmbH, HARP-1 */ 11603ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x822B) }, /* Modem EDGE(GSM) Comander 2 */ 11725985edcSLucas De Marchi { USB_DEVICE(0x10C4, 0x826B) }, /* Cygnal Integrated Products, Inc., Fasttrax GPS demonstration module */ 11872b30079STristan Bruns { USB_DEVICE(0x10C4, 0x8281) }, /* Nanotec Plug & Drive */ 119c851e83fSFlorian Fainelli { USB_DEVICE(0x10C4, 0x8293) }, /* Telegesis ETRX2USB */ 12024160628SJohan Hovold { USB_DEVICE(0x10C4, 0x82EF) }, /* CESINEL FALCO 6105 AC Power Supply */ 12124160628SJohan Hovold { USB_DEVICE(0x10C4, 0x82F1) }, /* CESINEL MEDCAL EFD Earth Fault Detector */ 12224160628SJohan Hovold { USB_DEVICE(0x10C4, 0x82F2) }, /* CESINEL MEDCAL ST Network Analyzer */ 123613ac23aSJasem Mutlaq { USB_DEVICE(0x10C4, 0x82F4) }, /* Starizona MicroTouch */ 124b7c7cbc8SCraig Shelley { USB_DEVICE(0x10C4, 0x82F9) }, /* Procyon AVS */ 12503ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8341) }, /* Siemens MC35PU GPRS Modem */ 1268bf16ba7SCraig Shelley { USB_DEVICE(0x10C4, 0x8382) }, /* Cygnal Integrated Products, Inc. */ 12703ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x83A8) }, /* Amber Wireless AMB2560 */ 128347bc8cbSGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x83AA) }, /* Mark-10 Digital Force Gauge */ 129faea63f7SCraig Shelley { USB_DEVICE(0x10C4, 0x83D8) }, /* DekTec DTA Plus VHF/UHF Booster/Attenuator */ 1308bf16ba7SCraig Shelley { USB_DEVICE(0x10C4, 0x8411) }, /* Kyocera GPS Module */ 131faea63f7SCraig Shelley { USB_DEVICE(0x10C4, 0x8418) }, /* IRZ Automation Teleport SG-10 GSM/GPRS Modem */ 132d23bac9fSAlex Stephens { USB_DEVICE(0x10C4, 0x846E) }, /* BEI USB Sensor Interface (VCP) */ 133decc5360SKyle Jones { USB_DEVICE(0x10C4, 0x8470) }, /* Juniper Networks BX Series System Console */ 134541e05ecSCraig Shelley { USB_DEVICE(0x10C4, 0x8477) }, /* Balluff RFID */ 135613ac23aSJasem Mutlaq { USB_DEVICE(0x10C4, 0x84B6) }, /* Starizona Hyperion */ 13624160628SJohan Hovold { USB_DEVICE(0x10C4, 0x851E) }, /* CESINEL MEDCAL PT Network Analyzer */ 13743074132SDiego Elio Pettenò { USB_DEVICE(0x10C4, 0x85A7) }, /* LifeScan OneTouch Verio IQ */ 13824160628SJohan Hovold { USB_DEVICE(0x10C4, 0x85B8) }, /* CESINEL ReCon T Energy Logger */ 1394eff0b40SCraig Shelley { USB_DEVICE(0x10C4, 0x85EA) }, /* AC-Services IBUS-IF */ 1404eff0b40SCraig Shelley { USB_DEVICE(0x10C4, 0x85EB) }, /* AC-Services CIS-IBUS */ 141356fe44fSMarkus Becker { USB_DEVICE(0x10C4, 0x85F8) }, /* Virtenio Preon32 */ 1424eff0b40SCraig Shelley { USB_DEVICE(0x10C4, 0x8664) }, /* AC-Services CAN-IF */ 1434eff0b40SCraig Shelley { USB_DEVICE(0x10C4, 0x8665) }, /* AC-Services OBD-IF */ 1441ae78a48SDavid Peterson { USB_DEVICE(0x10C4, 0x8856) }, /* CEL EM357 ZigBee USB Stick - LR */ 1451ae78a48SDavid Peterson { USB_DEVICE(0x10C4, 0x8857) }, /* CEL EM357 ZigBee USB Stick */ 14676811569SSami Rahman { USB_DEVICE(0x10C4, 0x88A4) }, /* MMB Networks ZigBee USB Device */ 14776811569SSami Rahman { USB_DEVICE(0x10C4, 0x88A5) }, /* Planet Innovation Ingeni ZigBee USB Device */ 14824160628SJohan Hovold { USB_DEVICE(0x10C4, 0x88FB) }, /* CESINEL MEDCAL STII Network Analyzer */ 14924160628SJohan Hovold { USB_DEVICE(0x10C4, 0x8938) }, /* CESINEL MEDCAL S II Network Analyzer */ 150bfc2d7dfSJoe Savage { USB_DEVICE(0x10C4, 0x8946) }, /* Ketra N1 Wireless Interface */ 1512ab13292SPaul Jakma { USB_DEVICE(0x10C4, 0x8962) }, /* Brim Brothers charging dock */ 1521ae78a48SDavid Peterson { USB_DEVICE(0x10C4, 0x8977) }, /* CEL MeshWorks DevKit Device */ 153c735ed74SMark Edwards { USB_DEVICE(0x10C4, 0x8998) }, /* KCF Technologies PRN */ 15424160628SJohan Hovold { USB_DEVICE(0x10C4, 0x89A4) }, /* CESINEL FTBC Flexible Thyristor Bridge Controller */ 155367b160fSOlli Salonen { USB_DEVICE(0x10C4, 0x89FB) }, /* Qivicon ZigBee USB Radio Stick */ 156df72d588SJohn D. Blair { USB_DEVICE(0x10C4, 0x8A2A) }, /* HubZ dual ZigBee and Z-Wave dongle */ 157fd90f73aSJeremie Rapin { USB_DEVICE(0x10C4, 0x8A5E) }, /* CEL EM3588 ZigBee USB Stick Long Range */ 1589585e340SStefan Triller { USB_DEVICE(0x10C4, 0x8B34) }, /* Qivicon ZigBee USB Radio Stick */ 15903ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xEA60) }, /* Silicon Labs factory default */ 16003ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xEA61) }, /* Silicon Labs factory default */ 1612f839823SKaroly Pados { USB_DEVICE(0x10C4, 0xEA63) }, /* Silicon Labs Windows Update (CP2101-4/CP2102N) */ 162a5360a53SPreston Fick { USB_DEVICE(0x10C4, 0xEA70) }, /* Silicon Labs factory default */ 163eefd9029SCraig Shelley { USB_DEVICE(0x10C4, 0xEA71) }, /* Infinity GPS-MIC-1 Radio Monophone */ 1642f839823SKaroly Pados { USB_DEVICE(0x10C4, 0xEA7A) }, /* Silicon Labs Windows Update (CP2105) */ 1652f839823SKaroly Pados { USB_DEVICE(0x10C4, 0xEA7B) }, /* Silicon Labs Windows Update (CP2108) */ 16603ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xF001) }, /* Elan Digital Systems USBscope50 */ 16703ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xF002) }, /* Elan Digital Systems USBwave12 */ 16803ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xF003) }, /* Elan Digital Systems USBpulse100 */ 16903ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xF004) }, /* Elan Digital Systems USBcount50 */ 17003ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C5, 0xEA61) }, /* Silicon Labs MobiData GPRS USB Modem */ 171b7c7cbc8SCraig Shelley { USB_DEVICE(0x10CE, 0xEA6A) }, /* Silicon Labs MobiData GPRS USB Modem 100EU */ 1721d377f4dSMike Manning { USB_DEVICE(0x12B8, 0xEC60) }, /* Link G4 ECU */ 1731d377f4dSMike Manning { USB_DEVICE(0x12B8, 0xEC62) }, /* Link G4+ ECU */ 17403ee2515SGreg Kroah-Hartman { USB_DEVICE(0x13AD, 0x9999) }, /* Baltech card reader */ 175b7c7cbc8SCraig Shelley { USB_DEVICE(0x1555, 0x0004) }, /* Owen AC4 USB-RS485 Converter */ 1761f1e82f7SJohan Hovold { USB_DEVICE(0x155A, 0x1006) }, /* ELDAT Easywave RX09 */ 1773fcc8f96SCraig Shelley { USB_DEVICE(0x166A, 0x0201) }, /* Clipsal 5500PACA C-Bus Pascal Automation Controller */ 1783fcc8f96SCraig Shelley { USB_DEVICE(0x166A, 0x0301) }, /* Clipsal 5800PC C-Bus Wireless PC Interface */ 17903ee2515SGreg Kroah-Hartman { USB_DEVICE(0x166A, 0x0303) }, /* Clipsal 5500PCU C-Bus USB interface */ 1803fcc8f96SCraig Shelley { USB_DEVICE(0x166A, 0x0304) }, /* Clipsal 5000CT2 C-Bus Black and White Touchscreen */ 1813fcc8f96SCraig Shelley { USB_DEVICE(0x166A, 0x0305) }, /* Clipsal C-5000CT2 C-Bus Spectrum Colour Touchscreen */ 1823fcc8f96SCraig Shelley { USB_DEVICE(0x166A, 0x0401) }, /* Clipsal L51xx C-Bus Architectural Dimmer */ 1833fcc8f96SCraig Shelley { USB_DEVICE(0x166A, 0x0101) }, /* Clipsal 5560884 C-Bus Multi-room Audio Matrix Switcher */ 184675af708SMichiel vd Garde { USB_DEVICE(0x16C0, 0x09B0) }, /* Lunatico Seletek */ 185675af708SMichiel vd Garde { USB_DEVICE(0x16C0, 0x09B1) }, /* Lunatico Seletek */ 18603ee2515SGreg Kroah-Hartman { USB_DEVICE(0x16D6, 0x0001) }, /* Jablotron serial interface */ 187356c5a48SAlessio Igor Bogani { USB_DEVICE(0x16DC, 0x0010) }, /* W-IE-NE-R Plein & Baus GmbH PL512 Power Supply */ 188356c5a48SAlessio Igor Bogani { USB_DEVICE(0x16DC, 0x0011) }, /* W-IE-NE-R Plein & Baus GmbH RCM Remote Control for MARATON Power Supply */ 189356c5a48SAlessio Igor Bogani { USB_DEVICE(0x16DC, 0x0012) }, /* W-IE-NE-R Plein & Baus GmbH MPOD Multi Channel Power Supply */ 190356c5a48SAlessio Igor Bogani { USB_DEVICE(0x16DC, 0x0015) }, /* W-IE-NE-R Plein & Baus GmbH CML Control, Monitoring and Data Logger */ 191c6c1e449SBruno Thomsen { USB_DEVICE(0x17A8, 0x0001) }, /* Kamstrup Optical Eye/3-wire */ 192c6c1e449SBruno Thomsen { USB_DEVICE(0x17A8, 0x0005) }, /* Kamstrup M-Bus Master MultiPort 250D */ 193541e05ecSCraig Shelley { USB_DEVICE(0x17F4, 0xAAAA) }, /* Wavesense Jazz blood glucose meter */ 194541e05ecSCraig Shelley { USB_DEVICE(0x1843, 0x0200) }, /* Vaisala USB Instrument Cable */ 195541e05ecSCraig Shelley { USB_DEVICE(0x18EF, 0xE00F) }, /* ELV USB-I2C-Interface */ 196f7d7f59aSOliver Freyermuth { USB_DEVICE(0x18EF, 0xE025) }, /* ELV Marble Sound Board 1 */ 197d14ac576SChristian Holl { USB_DEVICE(0x18EF, 0xE030) }, /* ELV ALC 8xxx Battery Charger */ 198c496ad83SAndreas Engel { USB_DEVICE(0x18EF, 0xE032) }, /* ELV TFD500 Data Logger */ 1996627ae19SKen Lin { USB_DEVICE(0x1901, 0x0190) }, /* GE B850 CP2105 Recorder interface */ 2006627ae19SKen Lin { USB_DEVICE(0x1901, 0x0193) }, /* GE B650 CP2104 PMC interface */ 201cddc9434SMartyn Welch { USB_DEVICE(0x1901, 0x0194) }, /* GE Healthcare Remote Alarm Box */ 2029a593656SKen Lin { USB_DEVICE(0x1901, 0x0195) }, /* GE B850/B650/B450 CP2104 DP UART interface */ 2039a593656SKen Lin { USB_DEVICE(0x1901, 0x0196) }, /* GE B850 CP2105 DP UART interface */ 2043c4c615dSVittorio Alfieri { USB_DEVICE(0x19CF, 0x3000) }, /* Parrot NMEA GPS Flight Recorder */ 205b579fa52SBarry Grussling { USB_DEVICE(0x1ADB, 0x0001) }, /* Schweitzer Engineering C662 Cable */ 206b9326057SAndras Kovacs { USB_DEVICE(0x1B1C, 0x1C00) }, /* Corsair USB Dongle */ 20735cc83eaSNathaniel Ting { USB_DEVICE(0x1BA4, 0x0002) }, /* Silicon Labs 358x factory default */ 20893ad03d6SAnders Larsen { USB_DEVICE(0x1BE3, 0x07A6) }, /* WAGO 750-923 USB Service Cable */ 209dee80ad1SAndreas Bomholtz { USB_DEVICE(0x1D6F, 0x0010) }, /* Seluxit ApS RF Dongle */ 2103fcc8f96SCraig Shelley { USB_DEVICE(0x1E29, 0x0102) }, /* Festo CPX-USB */ 2113fcc8f96SCraig Shelley { USB_DEVICE(0x1E29, 0x0501) }, /* Festo CMSP */ 212be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0100) }, /* Lake Shore Model 121 Current Source */ 213be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0200) }, /* Lake Shore Model 218A Temperature Monitor */ 214be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0201) }, /* Lake Shore Model 219 Temperature Monitor */ 215be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0202) }, /* Lake Shore Model 233 Temperature Transmitter */ 216be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0203) }, /* Lake Shore Model 235 Temperature Transmitter */ 217be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0300) }, /* Lake Shore Model 335 Temperature Controller */ 218be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0301) }, /* Lake Shore Model 336 Temperature Controller */ 219be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0302) }, /* Lake Shore Model 350 Temperature Controller */ 220be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0303) }, /* Lake Shore Model 371 AC Bridge */ 221be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0400) }, /* Lake Shore Model 411 Handheld Gaussmeter */ 222be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0401) }, /* Lake Shore Model 425 Gaussmeter */ 223be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0402) }, /* Lake Shore Model 455A Gaussmeter */ 224be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0403) }, /* Lake Shore Model 475A Gaussmeter */ 225be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0404) }, /* Lake Shore Model 465 Three Axis Gaussmeter */ 226be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0600) }, /* Lake Shore Model 625A Superconducting MPS */ 227be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0601) }, /* Lake Shore Model 642A Magnet Power Supply */ 228be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0602) }, /* Lake Shore Model 648 Magnet Power Supply */ 229be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0700) }, /* Lake Shore Model 737 VSM Controller */ 230be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0701) }, /* Lake Shore Model 776 Hall Matrix */ 231f98a7aa8SPeter Sanford { USB_DEVICE(0x2626, 0xEA60) }, /* Aruba Networks 7xxx USB Serial Console */ 232791b7d7cSRenato Caldas { USB_DEVICE(0x3195, 0xF190) }, /* Link Instruments MSO-19 */ 2333fcc8f96SCraig Shelley { USB_DEVICE(0x3195, 0xF280) }, /* Link Instruments MSO-28 */ 2343fcc8f96SCraig Shelley { USB_DEVICE(0x3195, 0xF281) }, /* Link Instruments MSO-28 */ 2351e23aaceSKyle Roeschley { USB_DEVICE(0x3923, 0x7A0B) }, /* National Instruments USB Serial Console */ 236541e05ecSCraig Shelley { USB_DEVICE(0x413C, 0x9500) }, /* DW700 GPS USB interface */ 23703ee2515SGreg Kroah-Hartman { } /* Terminating Entry */ 23803ee2515SGreg Kroah-Hartman }; 23903ee2515SGreg Kroah-Hartman 24003ee2515SGreg Kroah-Hartman MODULE_DEVICE_TABLE(usb, id_table); 24103ee2515SGreg Kroah-Hartman 242cf5276ceSMartyn Welch struct cp210x_serial_private { 243cf5276ceSMartyn Welch #ifdef CONFIG_GPIOLIB 244cf5276ceSMartyn Welch struct gpio_chip gc; 2456b7271d2SJohan Hovold bool gpio_registered; 246c8acfe0aSKaroly Pados u8 gpio_pushpull; 247c8acfe0aSKaroly Pados u8 gpio_altfunc; 248c8acfe0aSKaroly Pados u8 gpio_input; 249cf5276ceSMartyn Welch #endif 250cf5276ceSMartyn Welch u8 partnum; 25185bc2d91SJohanna Abrahamsson speed_t min_speed; 252d4706c05SJohan Hovold speed_t max_speed; 2537aecd7fcSJohan Hovold bool use_actual_rate; 254cf5276ceSMartyn Welch }; 255cf5276ceSMartyn Welch 256a7207e98SJohan Hovold enum cp210x_event_state { 257a7207e98SJohan Hovold ES_DATA, 258a7207e98SJohan Hovold ES_ESCAPE, 259a7207e98SJohan Hovold ES_LSR, 260a7207e98SJohan Hovold ES_LSR_DATA_0, 261a7207e98SJohan Hovold ES_LSR_DATA_1, 262a7207e98SJohan Hovold ES_MSR 263a7207e98SJohan Hovold }; 264a7207e98SJohan Hovold 265e2ae67a3SKonstantin Shkolnyy struct cp210x_port_private { 26616045babSJohan Hovold u8 bInterfaceNumber; 267a7207e98SJohan Hovold bool event_mode; 268a7207e98SJohan Hovold enum cp210x_event_state event_state; 269a7207e98SJohan Hovold u8 lsr; 270a5360a53SPreston Fick }; 271a5360a53SPreston Fick 2724cc27bd6SCraig Shelley static struct usb_serial_driver cp210x_device = { 27303ee2515SGreg Kroah-Hartman .driver = { 27403ee2515SGreg Kroah-Hartman .owner = THIS_MODULE, 2754cc27bd6SCraig Shelley .name = "cp210x", 27603ee2515SGreg Kroah-Hartman }, 27703ee2515SGreg Kroah-Hartman .id_table = id_table, 27803ee2515SGreg Kroah-Hartman .num_ports = 1, 279aea006b9SJohan Hovold .bulk_in_size = 256, 280d4e598f6SJohan Hovold .bulk_out_size = 256, 2814cc27bd6SCraig Shelley .open = cp210x_open, 2824cc27bd6SCraig Shelley .close = cp210x_close, 2834cc27bd6SCraig Shelley .break_ctl = cp210x_break_ctl, 2844cc27bd6SCraig Shelley .set_termios = cp210x_set_termios, 2856f923a01SKonstantin Shkolnyy .tx_empty = cp210x_tx_empty, 2864387b3dbSBrant Merryman .throttle = usb_serial_generic_throttle, 2874387b3dbSBrant Merryman .unthrottle = usb_serial_generic_unthrottle, 2884cc27bd6SCraig Shelley .tiocmget = cp210x_tiocmget, 2894cc27bd6SCraig Shelley .tiocmset = cp210x_tiocmset, 290de9c7e9fSJohan Hovold .get_icount = usb_serial_generic_get_icount, 291cf5276ceSMartyn Welch .attach = cp210x_attach, 292cf5276ceSMartyn Welch .disconnect = cp210x_disconnect, 293cf5276ceSMartyn Welch .release = cp210x_release, 294e2ae67a3SKonstantin Shkolnyy .port_probe = cp210x_port_probe, 295e2ae67a3SKonstantin Shkolnyy .port_remove = cp210x_port_remove, 296a7207e98SJohan Hovold .dtr_rts = cp210x_dtr_rts, 297a7207e98SJohan Hovold .process_read_urb = cp210x_process_read_urb, 29803ee2515SGreg Kroah-Hartman }; 29903ee2515SGreg Kroah-Hartman 30008a4f6bcSAlan Stern static struct usb_serial_driver * const serial_drivers[] = { 30108a4f6bcSAlan Stern &cp210x_device, NULL 30208a4f6bcSAlan Stern }; 30308a4f6bcSAlan Stern 30403ee2515SGreg Kroah-Hartman /* Config request types */ 30532445605SPreston Fick #define REQTYPE_HOST_TO_INTERFACE 0x41 30632445605SPreston Fick #define REQTYPE_INTERFACE_TO_HOST 0xc1 30732445605SPreston Fick #define REQTYPE_HOST_TO_DEVICE 0x40 30832445605SPreston Fick #define REQTYPE_DEVICE_TO_HOST 0xc0 30903ee2515SGreg Kroah-Hartman 31093ef1f1fSCraig Shelley /* Config request codes */ 31193ef1f1fSCraig Shelley #define CP210X_IFC_ENABLE 0x00 31293ef1f1fSCraig Shelley #define CP210X_SET_BAUDDIV 0x01 31393ef1f1fSCraig Shelley #define CP210X_GET_BAUDDIV 0x02 31493ef1f1fSCraig Shelley #define CP210X_SET_LINE_CTL 0x03 31593ef1f1fSCraig Shelley #define CP210X_GET_LINE_CTL 0x04 31693ef1f1fSCraig Shelley #define CP210X_SET_BREAK 0x05 31793ef1f1fSCraig Shelley #define CP210X_IMM_CHAR 0x06 31893ef1f1fSCraig Shelley #define CP210X_SET_MHS 0x07 31993ef1f1fSCraig Shelley #define CP210X_GET_MDMSTS 0x08 32093ef1f1fSCraig Shelley #define CP210X_SET_XON 0x09 32193ef1f1fSCraig Shelley #define CP210X_SET_XOFF 0x0A 32293ef1f1fSCraig Shelley #define CP210X_SET_EVENTMASK 0x0B 32393ef1f1fSCraig Shelley #define CP210X_GET_EVENTMASK 0x0C 32493ef1f1fSCraig Shelley #define CP210X_SET_CHAR 0x0D 32593ef1f1fSCraig Shelley #define CP210X_GET_CHARS 0x0E 32693ef1f1fSCraig Shelley #define CP210X_GET_PROPS 0x0F 32793ef1f1fSCraig Shelley #define CP210X_GET_COMM_STATUS 0x10 32893ef1f1fSCraig Shelley #define CP210X_RESET 0x11 32993ef1f1fSCraig Shelley #define CP210X_PURGE 0x12 33093ef1f1fSCraig Shelley #define CP210X_SET_FLOW 0x13 33193ef1f1fSCraig Shelley #define CP210X_GET_FLOW 0x14 33293ef1f1fSCraig Shelley #define CP210X_EMBED_EVENTS 0x15 33393ef1f1fSCraig Shelley #define CP210X_GET_EVENTSTATE 0x16 33493ef1f1fSCraig Shelley #define CP210X_SET_CHARS 0x19 3357f482fc8SPreston Fick #define CP210X_GET_BAUDRATE 0x1D 3367f482fc8SPreston Fick #define CP210X_SET_BAUDRATE 0x1E 337cf5276ceSMartyn Welch #define CP210X_VENDOR_SPECIFIC 0xFF 33803ee2515SGreg Kroah-Hartman 33993ef1f1fSCraig Shelley /* CP210X_IFC_ENABLE */ 34003ee2515SGreg Kroah-Hartman #define UART_ENABLE 0x0001 34103ee2515SGreg Kroah-Hartman #define UART_DISABLE 0x0000 34203ee2515SGreg Kroah-Hartman 34393ef1f1fSCraig Shelley /* CP210X_(SET|GET)_BAUDDIV */ 34403ee2515SGreg Kroah-Hartman #define BAUD_RATE_GEN_FREQ 0x384000 34503ee2515SGreg Kroah-Hartman 34693ef1f1fSCraig Shelley /* CP210X_(SET|GET)_LINE_CTL */ 34703ee2515SGreg Kroah-Hartman #define BITS_DATA_MASK 0X0f00 34803ee2515SGreg Kroah-Hartman #define BITS_DATA_5 0X0500 34903ee2515SGreg Kroah-Hartman #define BITS_DATA_6 0X0600 35003ee2515SGreg Kroah-Hartman #define BITS_DATA_7 0X0700 35103ee2515SGreg Kroah-Hartman #define BITS_DATA_8 0X0800 35203ee2515SGreg Kroah-Hartman #define BITS_DATA_9 0X0900 35303ee2515SGreg Kroah-Hartman 35403ee2515SGreg Kroah-Hartman #define BITS_PARITY_MASK 0x00f0 35503ee2515SGreg Kroah-Hartman #define BITS_PARITY_NONE 0x0000 35603ee2515SGreg Kroah-Hartman #define BITS_PARITY_ODD 0x0010 35703ee2515SGreg Kroah-Hartman #define BITS_PARITY_EVEN 0x0020 35803ee2515SGreg Kroah-Hartman #define BITS_PARITY_MARK 0x0030 35903ee2515SGreg Kroah-Hartman #define BITS_PARITY_SPACE 0x0040 36003ee2515SGreg Kroah-Hartman 36103ee2515SGreg Kroah-Hartman #define BITS_STOP_MASK 0x000f 36203ee2515SGreg Kroah-Hartman #define BITS_STOP_1 0x0000 36303ee2515SGreg Kroah-Hartman #define BITS_STOP_1_5 0x0001 36403ee2515SGreg Kroah-Hartman #define BITS_STOP_2 0x0002 36503ee2515SGreg Kroah-Hartman 36693ef1f1fSCraig Shelley /* CP210X_SET_BREAK */ 36772916791SCraig Shelley #define BREAK_ON 0x0001 36872916791SCraig Shelley #define BREAK_OFF 0x0000 36903ee2515SGreg Kroah-Hartman 37093ef1f1fSCraig Shelley /* CP210X_(SET_MHS|GET_MDMSTS) */ 37103ee2515SGreg Kroah-Hartman #define CONTROL_DTR 0x0001 37203ee2515SGreg Kroah-Hartman #define CONTROL_RTS 0x0002 37303ee2515SGreg Kroah-Hartman #define CONTROL_CTS 0x0010 37403ee2515SGreg Kroah-Hartman #define CONTROL_DSR 0x0020 37503ee2515SGreg Kroah-Hartman #define CONTROL_RING 0x0040 37603ee2515SGreg Kroah-Hartman #define CONTROL_DCD 0x0080 37703ee2515SGreg Kroah-Hartman #define CONTROL_WRITE_DTR 0x0100 37803ee2515SGreg Kroah-Hartman #define CONTROL_WRITE_RTS 0x0200 37903ee2515SGreg Kroah-Hartman 380cf5276ceSMartyn Welch /* CP210X_VENDOR_SPECIFIC values */ 381c8acfe0aSKaroly Pados #define CP210X_READ_2NCONFIG 0x000E 382cf5276ceSMartyn Welch #define CP210X_READ_LATCH 0x00C2 383cf5276ceSMartyn Welch #define CP210X_GET_PARTNUM 0x370B 384cf5276ceSMartyn Welch #define CP210X_GET_PORTCONFIG 0x370C 385cf5276ceSMartyn Welch #define CP210X_GET_DEVICEMODE 0x3711 386cf5276ceSMartyn Welch #define CP210X_WRITE_LATCH 0x37E1 387cf5276ceSMartyn Welch 388cf5276ceSMartyn Welch /* Part number definitions */ 389cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2101 0x01 390cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2102 0x02 391cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2103 0x03 392cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2104 0x04 393cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2105 0x05 394cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2108 0x08 3956f0bcf72SKaroly Pados #define CP210X_PARTNUM_CP2102N_QFN28 0x20 3966f0bcf72SKaroly Pados #define CP210X_PARTNUM_CP2102N_QFN24 0x21 3976f0bcf72SKaroly Pados #define CP210X_PARTNUM_CP2102N_QFN20 0x22 3987eac35eaSSebastian Frei #define CP210X_PARTNUM_UNKNOWN 0xFF 399cf5276ceSMartyn Welch 4006f923a01SKonstantin Shkolnyy /* CP210X_GET_COMM_STATUS returns these 0x13 bytes */ 4016f923a01SKonstantin Shkolnyy struct cp210x_comm_status { 4026f923a01SKonstantin Shkolnyy __le32 ulErrors; 4036f923a01SKonstantin Shkolnyy __le32 ulHoldReasons; 4046f923a01SKonstantin Shkolnyy __le32 ulAmountInInQueue; 4056f923a01SKonstantin Shkolnyy __le32 ulAmountInOutQueue; 4066f923a01SKonstantin Shkolnyy u8 bEofReceived; 4076f923a01SKonstantin Shkolnyy u8 bWaitForImmediate; 4086f923a01SKonstantin Shkolnyy u8 bReserved; 4096f923a01SKonstantin Shkolnyy } __packed; 4106f923a01SKonstantin Shkolnyy 41103ee2515SGreg Kroah-Hartman /* 412ebfb319bSKonstantin Shkolnyy * CP210X_PURGE - 16 bits passed in wValue of USB request. 413ebfb319bSKonstantin Shkolnyy * SiLabs app note AN571 gives a strange description of the 4 bits: 414ebfb319bSKonstantin Shkolnyy * bit 0 or bit 2 clears the transmit queue and 1 or 3 receive. 415ebfb319bSKonstantin Shkolnyy * writing 1 to all, however, purges cp2108 well enough to avoid the hang. 416ebfb319bSKonstantin Shkolnyy */ 417ebfb319bSKonstantin Shkolnyy #define PURGE_ALL 0x000f 418ebfb319bSKonstantin Shkolnyy 419a7207e98SJohan Hovold /* CP210X_EMBED_EVENTS */ 420a7207e98SJohan Hovold #define CP210X_ESCCHAR 0xec 421a7207e98SJohan Hovold 422a7207e98SJohan Hovold #define CP210X_LSR_OVERRUN BIT(1) 423a7207e98SJohan Hovold #define CP210X_LSR_PARITY BIT(2) 424a7207e98SJohan Hovold #define CP210X_LSR_FRAME BIT(3) 425a7207e98SJohan Hovold #define CP210X_LSR_BREAK BIT(4) 426a7207e98SJohan Hovold 427a7207e98SJohan Hovold 4289034389cSKonstantin Shkolnyy /* CP210X_GET_FLOW/CP210X_SET_FLOW read/write these 0x10 bytes */ 4299034389cSKonstantin Shkolnyy struct cp210x_flow_ctl { 4309034389cSKonstantin Shkolnyy __le32 ulControlHandshake; 4319034389cSKonstantin Shkolnyy __le32 ulFlowReplace; 4329034389cSKonstantin Shkolnyy __le32 ulXonLimit; 4339034389cSKonstantin Shkolnyy __le32 ulXoffLimit; 434ba84190eSJohan Hovold }; 4359034389cSKonstantin Shkolnyy 4369034389cSKonstantin Shkolnyy /* cp210x_flow_ctl::ulControlHandshake */ 4379034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DTR_MASK GENMASK(1, 0) 4389034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DTR_SHIFT(_mode) (_mode) 4399034389cSKonstantin Shkolnyy #define CP210X_SERIAL_CTS_HANDSHAKE BIT(3) 4409034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DSR_HANDSHAKE BIT(4) 4419034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DCD_HANDSHAKE BIT(5) 4429034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DSR_SENSITIVITY BIT(6) 4439034389cSKonstantin Shkolnyy 4449034389cSKonstantin Shkolnyy /* values for cp210x_flow_ctl::ulControlHandshake::CP210X_SERIAL_DTR_MASK */ 4459034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DTR_INACTIVE 0 4469034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DTR_ACTIVE 1 4479034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DTR_FLOW_CTL 2 4489034389cSKonstantin Shkolnyy 4499034389cSKonstantin Shkolnyy /* cp210x_flow_ctl::ulFlowReplace */ 4509034389cSKonstantin Shkolnyy #define CP210X_SERIAL_AUTO_TRANSMIT BIT(0) 4519034389cSKonstantin Shkolnyy #define CP210X_SERIAL_AUTO_RECEIVE BIT(1) 4529034389cSKonstantin Shkolnyy #define CP210X_SERIAL_ERROR_CHAR BIT(2) 4539034389cSKonstantin Shkolnyy #define CP210X_SERIAL_NULL_STRIPPING BIT(3) 4549034389cSKonstantin Shkolnyy #define CP210X_SERIAL_BREAK_CHAR BIT(4) 4559034389cSKonstantin Shkolnyy #define CP210X_SERIAL_RTS_MASK GENMASK(7, 6) 4569034389cSKonstantin Shkolnyy #define CP210X_SERIAL_RTS_SHIFT(_mode) (_mode << 6) 4579034389cSKonstantin Shkolnyy #define CP210X_SERIAL_XOFF_CONTINUE BIT(31) 4589034389cSKonstantin Shkolnyy 4599034389cSKonstantin Shkolnyy /* values for cp210x_flow_ctl::ulFlowReplace::CP210X_SERIAL_RTS_MASK */ 4609034389cSKonstantin Shkolnyy #define CP210X_SERIAL_RTS_INACTIVE 0 4619034389cSKonstantin Shkolnyy #define CP210X_SERIAL_RTS_ACTIVE 1 4629034389cSKonstantin Shkolnyy #define CP210X_SERIAL_RTS_FLOW_CTL 2 4639034389cSKonstantin Shkolnyy 464cf5276ceSMartyn Welch /* CP210X_VENDOR_SPECIFIC, CP210X_GET_DEVICEMODE call reads these 0x2 bytes. */ 465cf5276ceSMartyn Welch struct cp210x_pin_mode { 466cf5276ceSMartyn Welch u8 eci; 467cf5276ceSMartyn Welch u8 sci; 468ba84190eSJohan Hovold }; 469cf5276ceSMartyn Welch 470cf5276ceSMartyn Welch #define CP210X_PIN_MODE_MODEM 0 471cf5276ceSMartyn Welch #define CP210X_PIN_MODE_GPIO BIT(0) 472cf5276ceSMartyn Welch 473cf5276ceSMartyn Welch /* 47415fb84b7SIcenowy Zheng * CP210X_VENDOR_SPECIFIC, CP210X_GET_PORTCONFIG call reads these 0xf bytes 47515fb84b7SIcenowy Zheng * on a CP2105 chip. Structure needs padding due to unused/unspecified bytes. 476cf5276ceSMartyn Welch */ 47715fb84b7SIcenowy Zheng struct cp210x_dual_port_config { 478cf5276ceSMartyn Welch __le16 gpio_mode; 479cf5276ceSMartyn Welch u8 __pad0[2]; 480cf5276ceSMartyn Welch __le16 reset_state; 481cf5276ceSMartyn Welch u8 __pad1[4]; 482cf5276ceSMartyn Welch __le16 suspend_state; 483cf5276ceSMartyn Welch u8 sci_cfg; 484cf5276ceSMartyn Welch u8 eci_cfg; 485cf5276ceSMartyn Welch u8 device_cfg; 486cf5276ceSMartyn Welch } __packed; 487cf5276ceSMartyn Welch 48815fb84b7SIcenowy Zheng /* 48915fb84b7SIcenowy Zheng * CP210X_VENDOR_SPECIFIC, CP210X_GET_PORTCONFIG call reads these 0xd bytes 49015fb84b7SIcenowy Zheng * on a CP2104 chip. Structure needs padding due to unused/unspecified bytes. 49115fb84b7SIcenowy Zheng */ 49215fb84b7SIcenowy Zheng struct cp210x_single_port_config { 49315fb84b7SIcenowy Zheng __le16 gpio_mode; 49415fb84b7SIcenowy Zheng u8 __pad0[2]; 49515fb84b7SIcenowy Zheng __le16 reset_state; 49615fb84b7SIcenowy Zheng u8 __pad1[4]; 49715fb84b7SIcenowy Zheng __le16 suspend_state; 49815fb84b7SIcenowy Zheng u8 device_cfg; 49915fb84b7SIcenowy Zheng } __packed; 50015fb84b7SIcenowy Zheng 501cf5276ceSMartyn Welch /* GPIO modes */ 502cf5276ceSMartyn Welch #define CP210X_SCI_GPIO_MODE_OFFSET 9 503cf5276ceSMartyn Welch #define CP210X_SCI_GPIO_MODE_MASK GENMASK(11, 9) 504cf5276ceSMartyn Welch 505cf5276ceSMartyn Welch #define CP210X_ECI_GPIO_MODE_OFFSET 2 506cf5276ceSMartyn Welch #define CP210X_ECI_GPIO_MODE_MASK GENMASK(3, 2) 507cf5276ceSMartyn Welch 50815fb84b7SIcenowy Zheng #define CP210X_GPIO_MODE_OFFSET 8 50915fb84b7SIcenowy Zheng #define CP210X_GPIO_MODE_MASK GENMASK(11, 8) 51015fb84b7SIcenowy Zheng 511cf5276ceSMartyn Welch /* CP2105 port configuration values */ 512cf5276ceSMartyn Welch #define CP2105_GPIO0_TXLED_MODE BIT(0) 513cf5276ceSMartyn Welch #define CP2105_GPIO1_RXLED_MODE BIT(1) 514cf5276ceSMartyn Welch #define CP2105_GPIO1_RS485_MODE BIT(2) 515cf5276ceSMartyn Welch 51615fb84b7SIcenowy Zheng /* CP2104 port configuration values */ 51715fb84b7SIcenowy Zheng #define CP2104_GPIO0_TXLED_MODE BIT(0) 51815fb84b7SIcenowy Zheng #define CP2104_GPIO1_RXLED_MODE BIT(1) 51915fb84b7SIcenowy Zheng #define CP2104_GPIO2_RS485_MODE BIT(2) 52015fb84b7SIcenowy Zheng 521c8acfe0aSKaroly Pados /* CP2102N configuration array indices */ 522c8acfe0aSKaroly Pados #define CP210X_2NCONFIG_CONFIG_VERSION_IDX 2 523c8acfe0aSKaroly Pados #define CP210X_2NCONFIG_GPIO_MODE_IDX 581 524c8acfe0aSKaroly Pados #define CP210X_2NCONFIG_GPIO_RSTLATCH_IDX 587 525c8acfe0aSKaroly Pados #define CP210X_2NCONFIG_GPIO_CONTROL_IDX 600 526c8acfe0aSKaroly Pados 527cf5276ceSMartyn Welch /* CP210X_VENDOR_SPECIFIC, CP210X_WRITE_LATCH call writes these 0x2 bytes. */ 528cf5276ceSMartyn Welch struct cp210x_gpio_write { 529cf5276ceSMartyn Welch u8 mask; 530cf5276ceSMartyn Welch u8 state; 531ba84190eSJohan Hovold }; 532cf5276ceSMartyn Welch 533cf5276ceSMartyn Welch /* 534cf5276ceSMartyn Welch * Helper to get interface number when we only have struct usb_serial. 535cf5276ceSMartyn Welch */ 536cf5276ceSMartyn Welch static u8 cp210x_interface_num(struct usb_serial *serial) 537cf5276ceSMartyn Welch { 538cf5276ceSMartyn Welch struct usb_host_interface *cur_altsetting; 539cf5276ceSMartyn Welch 540cf5276ceSMartyn Welch cur_altsetting = serial->interface->cur_altsetting; 541cf5276ceSMartyn Welch 542cf5276ceSMartyn Welch return cur_altsetting->desc.bInterfaceNumber; 543cf5276ceSMartyn Welch } 544cf5276ceSMartyn Welch 54503ee2515SGreg Kroah-Hartman /* 54619165b2bSKonstantin Shkolnyy * Reads a variable-sized block of CP210X_ registers, identified by req. 54719165b2bSKonstantin Shkolnyy * Returns data into buf in native USB byte order. 54803ee2515SGreg Kroah-Hartman */ 54919165b2bSKonstantin Shkolnyy static int cp210x_read_reg_block(struct usb_serial_port *port, u8 req, 55019165b2bSKonstantin Shkolnyy void *buf, int bufsize) 55103ee2515SGreg Kroah-Hartman { 55203ee2515SGreg Kroah-Hartman struct usb_serial *serial = port->serial; 553e2ae67a3SKonstantin Shkolnyy struct cp210x_port_private *port_priv = usb_get_serial_port_data(port); 55419165b2bSKonstantin Shkolnyy void *dmabuf; 55519165b2bSKonstantin Shkolnyy int result; 55603ee2515SGreg Kroah-Hartman 55719165b2bSKonstantin Shkolnyy dmabuf = kmalloc(bufsize, GFP_KERNEL); 558*ed921771SJohan Hovold if (!dmabuf) 55903ee2515SGreg Kroah-Hartman return -ENOMEM; 56003ee2515SGreg Kroah-Hartman 56103ee2515SGreg Kroah-Hartman result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0), 56219165b2bSKonstantin Shkolnyy req, REQTYPE_INTERFACE_TO_HOST, 0, 56319165b2bSKonstantin Shkolnyy port_priv->bInterfaceNumber, dmabuf, bufsize, 56419165b2bSKonstantin Shkolnyy USB_CTRL_SET_TIMEOUT); 56519165b2bSKonstantin Shkolnyy if (result == bufsize) { 56619165b2bSKonstantin Shkolnyy memcpy(buf, dmabuf, bufsize); 56719165b2bSKonstantin Shkolnyy result = 0; 56819165b2bSKonstantin Shkolnyy } else { 56919165b2bSKonstantin Shkolnyy dev_err(&port->dev, "failed get req 0x%x size %d status: %d\n", 57019165b2bSKonstantin Shkolnyy req, bufsize, result); 57119165b2bSKonstantin Shkolnyy if (result >= 0) 5720407f1ceSJohan Hovold result = -EIO; 57319165b2bSKonstantin Shkolnyy } 57419165b2bSKonstantin Shkolnyy 57519165b2bSKonstantin Shkolnyy kfree(dmabuf); 57619165b2bSKonstantin Shkolnyy 5772479e2a9SJohan Hovold return result; 57803ee2515SGreg Kroah-Hartman } 57903ee2515SGreg Kroah-Hartman 58019165b2bSKonstantin Shkolnyy /* 581fe1b07e9SKonstantin Shkolnyy * Reads any 8-bit CP210X_ register identified by req. 582fe1b07e9SKonstantin Shkolnyy */ 583fe1b07e9SKonstantin Shkolnyy static int cp210x_read_u8_reg(struct usb_serial_port *port, u8 req, u8 *val) 584fe1b07e9SKonstantin Shkolnyy { 585fe1b07e9SKonstantin Shkolnyy return cp210x_read_reg_block(port, req, val, sizeof(*val)); 586fe1b07e9SKonstantin Shkolnyy } 587fe1b07e9SKonstantin Shkolnyy 588fe1b07e9SKonstantin Shkolnyy /* 589cf5276ceSMartyn Welch * Reads a variable-sized vendor block of CP210X_ registers, identified by val. 590cf5276ceSMartyn Welch * Returns data into buf in native USB byte order. 591cf5276ceSMartyn Welch */ 592cf5276ceSMartyn Welch static int cp210x_read_vendor_block(struct usb_serial *serial, u8 type, u16 val, 593cf5276ceSMartyn Welch void *buf, int bufsize) 594cf5276ceSMartyn Welch { 595cf5276ceSMartyn Welch void *dmabuf; 596cf5276ceSMartyn Welch int result; 597cf5276ceSMartyn Welch 598cf5276ceSMartyn Welch dmabuf = kmalloc(bufsize, GFP_KERNEL); 599cf5276ceSMartyn Welch if (!dmabuf) 600cf5276ceSMartyn Welch return -ENOMEM; 601cf5276ceSMartyn Welch 602cf5276ceSMartyn Welch result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0), 603cf5276ceSMartyn Welch CP210X_VENDOR_SPECIFIC, type, val, 604cf5276ceSMartyn Welch cp210x_interface_num(serial), dmabuf, bufsize, 605cf5276ceSMartyn Welch USB_CTRL_GET_TIMEOUT); 606cf5276ceSMartyn Welch if (result == bufsize) { 607cf5276ceSMartyn Welch memcpy(buf, dmabuf, bufsize); 608cf5276ceSMartyn Welch result = 0; 609cf5276ceSMartyn Welch } else { 610cf5276ceSMartyn Welch dev_err(&serial->interface->dev, 611cf5276ceSMartyn Welch "failed to get vendor val 0x%04x size %d: %d\n", val, 612cf5276ceSMartyn Welch bufsize, result); 613cf5276ceSMartyn Welch if (result >= 0) 614cf5276ceSMartyn Welch result = -EIO; 615cf5276ceSMartyn Welch } 616cf5276ceSMartyn Welch 617cf5276ceSMartyn Welch kfree(dmabuf); 618cf5276ceSMartyn Welch 619cf5276ceSMartyn Welch return result; 620cf5276ceSMartyn Welch } 621cf5276ceSMartyn Welch 622cf5276ceSMartyn Welch /* 62319165b2bSKonstantin Shkolnyy * Writes any 16-bit CP210X_ register (req) whose value is passed 62419165b2bSKonstantin Shkolnyy * entirely in the wValue field of the USB request. 62519165b2bSKonstantin Shkolnyy */ 62619165b2bSKonstantin Shkolnyy static int cp210x_write_u16_reg(struct usb_serial_port *port, u8 req, u16 val) 62703ee2515SGreg Kroah-Hartman { 62803ee2515SGreg Kroah-Hartman struct usb_serial *serial = port->serial; 629e2ae67a3SKonstantin Shkolnyy struct cp210x_port_private *port_priv = usb_get_serial_port_data(port); 63019165b2bSKonstantin Shkolnyy int result; 63103ee2515SGreg Kroah-Hartman 63219165b2bSKonstantin Shkolnyy result = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), 63319165b2bSKonstantin Shkolnyy req, REQTYPE_HOST_TO_INTERFACE, val, 634e2ae67a3SKonstantin Shkolnyy port_priv->bInterfaceNumber, NULL, 0, 6352d5733fcSYuri Matylitski USB_CTRL_SET_TIMEOUT); 63619165b2bSKonstantin Shkolnyy if (result < 0) { 63719165b2bSKonstantin Shkolnyy dev_err(&port->dev, "failed set request 0x%x status: %d\n", 63819165b2bSKonstantin Shkolnyy req, result); 63903ee2515SGreg Kroah-Hartman } 64003ee2515SGreg Kroah-Hartman 6412479e2a9SJohan Hovold return result; 64203ee2515SGreg Kroah-Hartman } 64303ee2515SGreg Kroah-Hartman 64403ee2515SGreg Kroah-Hartman /* 645fe1b07e9SKonstantin Shkolnyy * Writes a variable-sized block of CP210X_ registers, identified by req. 646fe1b07e9SKonstantin Shkolnyy * Data in buf must be in native USB byte order. 647fe1b07e9SKonstantin Shkolnyy */ 648fe1b07e9SKonstantin Shkolnyy static int cp210x_write_reg_block(struct usb_serial_port *port, u8 req, 649fe1b07e9SKonstantin Shkolnyy void *buf, int bufsize) 650fe1b07e9SKonstantin Shkolnyy { 651fe1b07e9SKonstantin Shkolnyy struct usb_serial *serial = port->serial; 652fe1b07e9SKonstantin Shkolnyy struct cp210x_port_private *port_priv = usb_get_serial_port_data(port); 653fe1b07e9SKonstantin Shkolnyy void *dmabuf; 654fe1b07e9SKonstantin Shkolnyy int result; 655fe1b07e9SKonstantin Shkolnyy 656d6c4dc3bSMuhammad Falak R Wani dmabuf = kmemdup(buf, bufsize, GFP_KERNEL); 657fe1b07e9SKonstantin Shkolnyy if (!dmabuf) 658fe1b07e9SKonstantin Shkolnyy return -ENOMEM; 659fe1b07e9SKonstantin Shkolnyy 660fe1b07e9SKonstantin Shkolnyy result = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), 661fe1b07e9SKonstantin Shkolnyy req, REQTYPE_HOST_TO_INTERFACE, 0, 662fe1b07e9SKonstantin Shkolnyy port_priv->bInterfaceNumber, dmabuf, bufsize, 663fe1b07e9SKonstantin Shkolnyy USB_CTRL_SET_TIMEOUT); 664fe1b07e9SKonstantin Shkolnyy 665fe1b07e9SKonstantin Shkolnyy kfree(dmabuf); 666fe1b07e9SKonstantin Shkolnyy 667fe1b07e9SKonstantin Shkolnyy if (result == bufsize) { 668fe1b07e9SKonstantin Shkolnyy result = 0; 669fe1b07e9SKonstantin Shkolnyy } else { 670fe1b07e9SKonstantin Shkolnyy dev_err(&port->dev, "failed set req 0x%x size %d status: %d\n", 671fe1b07e9SKonstantin Shkolnyy req, bufsize, result); 672fe1b07e9SKonstantin Shkolnyy if (result >= 0) 6730407f1ceSJohan Hovold result = -EIO; 674fe1b07e9SKonstantin Shkolnyy } 675fe1b07e9SKonstantin Shkolnyy 676fe1b07e9SKonstantin Shkolnyy return result; 67703ee2515SGreg Kroah-Hartman } 67803ee2515SGreg Kroah-Hartman 67903ee2515SGreg Kroah-Hartman /* 680fe1b07e9SKonstantin Shkolnyy * Writes any 32-bit CP210X_ register identified by req. 68103ee2515SGreg Kroah-Hartman */ 682fe1b07e9SKonstantin Shkolnyy static int cp210x_write_u32_reg(struct usb_serial_port *port, u8 req, u32 val) 68303ee2515SGreg Kroah-Hartman { 684fe1b07e9SKonstantin Shkolnyy __le32 le32_val; 685fe1b07e9SKonstantin Shkolnyy 686fe1b07e9SKonstantin Shkolnyy le32_val = cpu_to_le32(val); 687fe1b07e9SKonstantin Shkolnyy 688fe1b07e9SKonstantin Shkolnyy return cp210x_write_reg_block(port, req, &le32_val, sizeof(le32_val)); 68903ee2515SGreg Kroah-Hartman } 69003ee2515SGreg Kroah-Hartman 691cf5276ceSMartyn Welch #ifdef CONFIG_GPIOLIB 692cf5276ceSMartyn Welch /* 693cf5276ceSMartyn Welch * Writes a variable-sized vendor block of CP210X_ registers, identified by val. 694cf5276ceSMartyn Welch * Data in buf must be in native USB byte order. 695cf5276ceSMartyn Welch */ 696cf5276ceSMartyn Welch static int cp210x_write_vendor_block(struct usb_serial *serial, u8 type, 697cf5276ceSMartyn Welch u16 val, void *buf, int bufsize) 698cf5276ceSMartyn Welch { 699cf5276ceSMartyn Welch void *dmabuf; 700cf5276ceSMartyn Welch int result; 701cf5276ceSMartyn Welch 702cf5276ceSMartyn Welch dmabuf = kmemdup(buf, bufsize, GFP_KERNEL); 703cf5276ceSMartyn Welch if (!dmabuf) 704cf5276ceSMartyn Welch return -ENOMEM; 705cf5276ceSMartyn Welch 706cf5276ceSMartyn Welch result = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), 707cf5276ceSMartyn Welch CP210X_VENDOR_SPECIFIC, type, val, 708cf5276ceSMartyn Welch cp210x_interface_num(serial), dmabuf, bufsize, 709cf5276ceSMartyn Welch USB_CTRL_SET_TIMEOUT); 710cf5276ceSMartyn Welch 711cf5276ceSMartyn Welch kfree(dmabuf); 712cf5276ceSMartyn Welch 713cf5276ceSMartyn Welch if (result == bufsize) { 714cf5276ceSMartyn Welch result = 0; 715cf5276ceSMartyn Welch } else { 716cf5276ceSMartyn Welch dev_err(&serial->interface->dev, 717cf5276ceSMartyn Welch "failed to set vendor val 0x%04x size %d: %d\n", val, 718cf5276ceSMartyn Welch bufsize, result); 719cf5276ceSMartyn Welch if (result >= 0) 720cf5276ceSMartyn Welch result = -EIO; 721cf5276ceSMartyn Welch } 722cf5276ceSMartyn Welch 723cf5276ceSMartyn Welch return result; 724cf5276ceSMartyn Welch } 725cf5276ceSMartyn Welch #endif 726cf5276ceSMartyn Welch 727a509a7e4SAlan Cox static int cp210x_open(struct tty_struct *tty, struct usb_serial_port *port) 72803ee2515SGreg Kroah-Hartman { 729a7207e98SJohan Hovold struct cp210x_port_private *port_priv = usb_get_serial_port_data(port); 73003ee2515SGreg Kroah-Hartman int result; 73103ee2515SGreg Kroah-Hartman 73219165b2bSKonstantin Shkolnyy result = cp210x_write_u16_reg(port, CP210X_IFC_ENABLE, UART_ENABLE); 7332479e2a9SJohan Hovold if (result) { 7342479e2a9SJohan Hovold dev_err(&port->dev, "%s - Unable to enable UART\n", __func__); 7352479e2a9SJohan Hovold return result; 73603ee2515SGreg Kroah-Hartman } 73703ee2515SGreg Kroah-Hartman 73846827bdaSJohan Hovold if (tty) 73946827bdaSJohan Hovold cp210x_set_termios(tty, port, NULL); 740a7207e98SJohan Hovold 741bcbb9d81SJohan Hovold result = usb_serial_generic_open(tty, port); 742bcbb9d81SJohan Hovold if (result) 743bcbb9d81SJohan Hovold goto err_disable; 744bcbb9d81SJohan Hovold 745bcbb9d81SJohan Hovold return 0; 746bcbb9d81SJohan Hovold 747bcbb9d81SJohan Hovold err_disable: 748bcbb9d81SJohan Hovold cp210x_write_u16_reg(port, CP210X_IFC_ENABLE, UART_DISABLE); 749a7207e98SJohan Hovold port_priv->event_mode = false; 750bcbb9d81SJohan Hovold 751bcbb9d81SJohan Hovold return result; 75203ee2515SGreg Kroah-Hartman } 75303ee2515SGreg Kroah-Hartman 7544cc27bd6SCraig Shelley static void cp210x_close(struct usb_serial_port *port) 75503ee2515SGreg Kroah-Hartman { 756a7207e98SJohan Hovold struct cp210x_port_private *port_priv = usb_get_serial_port_data(port); 757a7207e98SJohan Hovold 758f26788daSJohan Hovold usb_serial_generic_close(port); 759ebfb319bSKonstantin Shkolnyy 760ebfb319bSKonstantin Shkolnyy /* Clear both queues; cp2108 needs this to avoid an occasional hang */ 76119165b2bSKonstantin Shkolnyy cp210x_write_u16_reg(port, CP210X_PURGE, PURGE_ALL); 762ebfb319bSKonstantin Shkolnyy 76319165b2bSKonstantin Shkolnyy cp210x_write_u16_reg(port, CP210X_IFC_ENABLE, UART_DISABLE); 764a7207e98SJohan Hovold 765a7207e98SJohan Hovold /* Disabling the interface disables event-insertion mode. */ 766a7207e98SJohan Hovold port_priv->event_mode = false; 767a7207e98SJohan Hovold } 768a7207e98SJohan Hovold 769a7207e98SJohan Hovold static void cp210x_process_lsr(struct usb_serial_port *port, unsigned char lsr, char *flag) 770a7207e98SJohan Hovold { 771a7207e98SJohan Hovold if (lsr & CP210X_LSR_BREAK) { 772a7207e98SJohan Hovold port->icount.brk++; 773a7207e98SJohan Hovold *flag = TTY_BREAK; 774a7207e98SJohan Hovold } else if (lsr & CP210X_LSR_PARITY) { 775a7207e98SJohan Hovold port->icount.parity++; 776a7207e98SJohan Hovold *flag = TTY_PARITY; 777a7207e98SJohan Hovold } else if (lsr & CP210X_LSR_FRAME) { 778a7207e98SJohan Hovold port->icount.frame++; 779a7207e98SJohan Hovold *flag = TTY_FRAME; 780a7207e98SJohan Hovold } 781a7207e98SJohan Hovold 782a7207e98SJohan Hovold if (lsr & CP210X_LSR_OVERRUN) { 783a7207e98SJohan Hovold port->icount.overrun++; 784a7207e98SJohan Hovold tty_insert_flip_char(&port->port, 0, TTY_OVERRUN); 785a7207e98SJohan Hovold } 786a7207e98SJohan Hovold } 787a7207e98SJohan Hovold 788a7207e98SJohan Hovold static bool cp210x_process_char(struct usb_serial_port *port, unsigned char *ch, char *flag) 789a7207e98SJohan Hovold { 790a7207e98SJohan Hovold struct cp210x_port_private *port_priv = usb_get_serial_port_data(port); 791a7207e98SJohan Hovold 792a7207e98SJohan Hovold switch (port_priv->event_state) { 793a7207e98SJohan Hovold case ES_DATA: 794a7207e98SJohan Hovold if (*ch == CP210X_ESCCHAR) { 795a7207e98SJohan Hovold port_priv->event_state = ES_ESCAPE; 796a7207e98SJohan Hovold break; 797a7207e98SJohan Hovold } 798a7207e98SJohan Hovold return false; 799a7207e98SJohan Hovold case ES_ESCAPE: 800a7207e98SJohan Hovold switch (*ch) { 801a7207e98SJohan Hovold case 0: 802a7207e98SJohan Hovold dev_dbg(&port->dev, "%s - escape char\n", __func__); 803a7207e98SJohan Hovold *ch = CP210X_ESCCHAR; 804a7207e98SJohan Hovold port_priv->event_state = ES_DATA; 805a7207e98SJohan Hovold return false; 806a7207e98SJohan Hovold case 1: 807a7207e98SJohan Hovold port_priv->event_state = ES_LSR_DATA_0; 808a7207e98SJohan Hovold break; 809a7207e98SJohan Hovold case 2: 810a7207e98SJohan Hovold port_priv->event_state = ES_LSR; 811a7207e98SJohan Hovold break; 812a7207e98SJohan Hovold case 3: 813a7207e98SJohan Hovold port_priv->event_state = ES_MSR; 814a7207e98SJohan Hovold break; 815a7207e98SJohan Hovold default: 816a7207e98SJohan Hovold dev_err(&port->dev, "malformed event 0x%02x\n", *ch); 817a7207e98SJohan Hovold port_priv->event_state = ES_DATA; 818a7207e98SJohan Hovold break; 819a7207e98SJohan Hovold } 820a7207e98SJohan Hovold break; 821a7207e98SJohan Hovold case ES_LSR_DATA_0: 822a7207e98SJohan Hovold port_priv->lsr = *ch; 823a7207e98SJohan Hovold port_priv->event_state = ES_LSR_DATA_1; 824a7207e98SJohan Hovold break; 825a7207e98SJohan Hovold case ES_LSR_DATA_1: 826a7207e98SJohan Hovold dev_dbg(&port->dev, "%s - lsr = 0x%02x, data = 0x%02x\n", 827a7207e98SJohan Hovold __func__, port_priv->lsr, *ch); 828a7207e98SJohan Hovold cp210x_process_lsr(port, port_priv->lsr, flag); 829a7207e98SJohan Hovold port_priv->event_state = ES_DATA; 830a7207e98SJohan Hovold return false; 831a7207e98SJohan Hovold case ES_LSR: 832a7207e98SJohan Hovold dev_dbg(&port->dev, "%s - lsr = 0x%02x\n", __func__, *ch); 833a7207e98SJohan Hovold port_priv->lsr = *ch; 834a7207e98SJohan Hovold cp210x_process_lsr(port, port_priv->lsr, flag); 835a7207e98SJohan Hovold port_priv->event_state = ES_DATA; 836a7207e98SJohan Hovold break; 837a7207e98SJohan Hovold case ES_MSR: 838a7207e98SJohan Hovold dev_dbg(&port->dev, "%s - msr = 0x%02x\n", __func__, *ch); 839a7207e98SJohan Hovold /* unimplemented */ 840a7207e98SJohan Hovold port_priv->event_state = ES_DATA; 841a7207e98SJohan Hovold break; 842a7207e98SJohan Hovold } 843a7207e98SJohan Hovold 844a7207e98SJohan Hovold return true; 845a7207e98SJohan Hovold } 846a7207e98SJohan Hovold 847a7207e98SJohan Hovold static void cp210x_process_read_urb(struct urb *urb) 848a7207e98SJohan Hovold { 849a7207e98SJohan Hovold struct usb_serial_port *port = urb->context; 850a7207e98SJohan Hovold struct cp210x_port_private *port_priv = usb_get_serial_port_data(port); 851a7207e98SJohan Hovold unsigned char *ch = urb->transfer_buffer; 852a7207e98SJohan Hovold char flag; 853a7207e98SJohan Hovold int i; 854a7207e98SJohan Hovold 855a7207e98SJohan Hovold if (!urb->actual_length) 856a7207e98SJohan Hovold return; 857a7207e98SJohan Hovold 858a7207e98SJohan Hovold if (port_priv->event_mode) { 859a7207e98SJohan Hovold for (i = 0; i < urb->actual_length; i++, ch++) { 860a7207e98SJohan Hovold flag = TTY_NORMAL; 861a7207e98SJohan Hovold 862a7207e98SJohan Hovold if (cp210x_process_char(port, ch, &flag)) 863a7207e98SJohan Hovold continue; 864a7207e98SJohan Hovold 865a7207e98SJohan Hovold tty_insert_flip_char(&port->port, *ch, flag); 866a7207e98SJohan Hovold } 867a7207e98SJohan Hovold } else { 868a7207e98SJohan Hovold tty_insert_flip_string(&port->port, ch, urb->actual_length); 869a7207e98SJohan Hovold } 870a7207e98SJohan Hovold tty_flip_buffer_push(&port->port); 87103ee2515SGreg Kroah-Hartman } 87203ee2515SGreg Kroah-Hartman 87303ee2515SGreg Kroah-Hartman /* 8746f923a01SKonstantin Shkolnyy * Read how many bytes are waiting in the TX queue. 8756f923a01SKonstantin Shkolnyy */ 8766f923a01SKonstantin Shkolnyy static int cp210x_get_tx_queue_byte_count(struct usb_serial_port *port, 8776f923a01SKonstantin Shkolnyy u32 *count) 8786f923a01SKonstantin Shkolnyy { 8796f923a01SKonstantin Shkolnyy struct usb_serial *serial = port->serial; 8806f923a01SKonstantin Shkolnyy struct cp210x_port_private *port_priv = usb_get_serial_port_data(port); 8816f923a01SKonstantin Shkolnyy struct cp210x_comm_status *sts; 8826f923a01SKonstantin Shkolnyy int result; 8836f923a01SKonstantin Shkolnyy 8846f923a01SKonstantin Shkolnyy sts = kmalloc(sizeof(*sts), GFP_KERNEL); 8856f923a01SKonstantin Shkolnyy if (!sts) 8866f923a01SKonstantin Shkolnyy return -ENOMEM; 8876f923a01SKonstantin Shkolnyy 8886f923a01SKonstantin Shkolnyy result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0), 8896f923a01SKonstantin Shkolnyy CP210X_GET_COMM_STATUS, REQTYPE_INTERFACE_TO_HOST, 8906f923a01SKonstantin Shkolnyy 0, port_priv->bInterfaceNumber, sts, sizeof(*sts), 8916f923a01SKonstantin Shkolnyy USB_CTRL_GET_TIMEOUT); 8926f923a01SKonstantin Shkolnyy if (result == sizeof(*sts)) { 8936f923a01SKonstantin Shkolnyy *count = le32_to_cpu(sts->ulAmountInOutQueue); 8946f923a01SKonstantin Shkolnyy result = 0; 8956f923a01SKonstantin Shkolnyy } else { 8966f923a01SKonstantin Shkolnyy dev_err(&port->dev, "failed to get comm status: %d\n", result); 8976f923a01SKonstantin Shkolnyy if (result >= 0) 8980407f1ceSJohan Hovold result = -EIO; 8996f923a01SKonstantin Shkolnyy } 9006f923a01SKonstantin Shkolnyy 9016f923a01SKonstantin Shkolnyy kfree(sts); 9026f923a01SKonstantin Shkolnyy 9036f923a01SKonstantin Shkolnyy return result; 9046f923a01SKonstantin Shkolnyy } 9056f923a01SKonstantin Shkolnyy 9066f923a01SKonstantin Shkolnyy static bool cp210x_tx_empty(struct usb_serial_port *port) 9076f923a01SKonstantin Shkolnyy { 9086f923a01SKonstantin Shkolnyy int err; 9096f923a01SKonstantin Shkolnyy u32 count; 9106f923a01SKonstantin Shkolnyy 9116f923a01SKonstantin Shkolnyy err = cp210x_get_tx_queue_byte_count(port, &count); 9126f923a01SKonstantin Shkolnyy if (err) 9136f923a01SKonstantin Shkolnyy return true; 9146f923a01SKonstantin Shkolnyy 9156f923a01SKonstantin Shkolnyy return !count; 9166f923a01SKonstantin Shkolnyy } 9176f923a01SKonstantin Shkolnyy 91895fd4f47SJohan Hovold struct cp210x_rate { 91995fd4f47SJohan Hovold speed_t rate; 92095fd4f47SJohan Hovold speed_t high; 92195fd4f47SJohan Hovold }; 92295fd4f47SJohan Hovold 92395fd4f47SJohan Hovold static const struct cp210x_rate cp210x_an205_table1[] = { 92495fd4f47SJohan Hovold { 300, 300 }, 92595fd4f47SJohan Hovold { 600, 600 }, 92695fd4f47SJohan Hovold { 1200, 1200 }, 92795fd4f47SJohan Hovold { 1800, 1800 }, 92895fd4f47SJohan Hovold { 2400, 2400 }, 92995fd4f47SJohan Hovold { 4000, 4000 }, 93095fd4f47SJohan Hovold { 4800, 4803 }, 93195fd4f47SJohan Hovold { 7200, 7207 }, 93295fd4f47SJohan Hovold { 9600, 9612 }, 93395fd4f47SJohan Hovold { 14400, 14428 }, 93495fd4f47SJohan Hovold { 16000, 16062 }, 93595fd4f47SJohan Hovold { 19200, 19250 }, 93695fd4f47SJohan Hovold { 28800, 28912 }, 93795fd4f47SJohan Hovold { 38400, 38601 }, 93895fd4f47SJohan Hovold { 51200, 51558 }, 93995fd4f47SJohan Hovold { 56000, 56280 }, 94095fd4f47SJohan Hovold { 57600, 58053 }, 94195fd4f47SJohan Hovold { 64000, 64111 }, 94295fd4f47SJohan Hovold { 76800, 77608 }, 94395fd4f47SJohan Hovold { 115200, 117028 }, 94495fd4f47SJohan Hovold { 128000, 129347 }, 94595fd4f47SJohan Hovold { 153600, 156868 }, 94695fd4f47SJohan Hovold { 230400, 237832 }, 94795fd4f47SJohan Hovold { 250000, 254234 }, 94895fd4f47SJohan Hovold { 256000, 273066 }, 94995fd4f47SJohan Hovold { 460800, 491520 }, 95095fd4f47SJohan Hovold { 500000, 567138 }, 95195fd4f47SJohan Hovold { 576000, 670254 }, 95295fd4f47SJohan Hovold { 921600, UINT_MAX } 95395fd4f47SJohan Hovold }; 95495fd4f47SJohan Hovold 95595fd4f47SJohan Hovold /* 95695fd4f47SJohan Hovold * Quantises the baud rate as per AN205 Table 1 95795fd4f47SJohan Hovold */ 95895fd4f47SJohan Hovold static speed_t cp210x_get_an205_rate(speed_t baud) 95995fd4f47SJohan Hovold { 96095fd4f47SJohan Hovold int i; 96195fd4f47SJohan Hovold 96295fd4f47SJohan Hovold for (i = 0; i < ARRAY_SIZE(cp210x_an205_table1); ++i) { 96395fd4f47SJohan Hovold if (baud <= cp210x_an205_table1[i].high) 96495fd4f47SJohan Hovold break; 96595fd4f47SJohan Hovold } 96695fd4f47SJohan Hovold 96795fd4f47SJohan Hovold return cp210x_an205_table1[i].rate; 96895fd4f47SJohan Hovold } 96995fd4f47SJohan Hovold 97085bc2d91SJohanna Abrahamsson static speed_t cp210x_get_actual_rate(speed_t baud) 9717aecd7fcSJohan Hovold { 9727aecd7fcSJohan Hovold unsigned int prescale = 1; 9737aecd7fcSJohan Hovold unsigned int div; 9747aecd7fcSJohan Hovold 9757aecd7fcSJohan Hovold if (baud <= 365) 9767aecd7fcSJohan Hovold prescale = 4; 9777aecd7fcSJohan Hovold 9787aecd7fcSJohan Hovold div = DIV_ROUND_CLOSEST(48000000, 2 * prescale * baud); 9797aecd7fcSJohan Hovold baud = 48000000 / (2 * prescale * div); 9807aecd7fcSJohan Hovold 9817aecd7fcSJohan Hovold return baud; 9827aecd7fcSJohan Hovold } 9837aecd7fcSJohan Hovold 984e5990874SJohan Hovold /* 985e5990874SJohan Hovold * CP2101 supports the following baud rates: 986e5990874SJohan Hovold * 987e5990874SJohan Hovold * 300, 600, 1200, 1800, 2400, 4800, 7200, 9600, 14400, 19200, 28800, 988e5990874SJohan Hovold * 38400, 56000, 57600, 115200, 128000, 230400, 460800, 921600 989e5990874SJohan Hovold * 990e5990874SJohan Hovold * CP2102 and CP2103 support the following additional rates: 991e5990874SJohan Hovold * 992e5990874SJohan Hovold * 4000, 16000, 51200, 64000, 76800, 153600, 250000, 256000, 500000, 993e5990874SJohan Hovold * 576000 994e5990874SJohan Hovold * 995e5990874SJohan Hovold * The device will map a requested rate to a supported one, but the result 996e5990874SJohan Hovold * of requests for rates greater than 1053257 is undefined (see AN205). 997e5990874SJohan Hovold * 998e5990874SJohan Hovold * CP2104, CP2105 and CP2110 support most rates up to 2M, 921k and 1M baud, 999e5990874SJohan Hovold * respectively, with an error less than 1%. The actual rates are determined 1000e5990874SJohan Hovold * by 1001e5990874SJohan Hovold * 1002e5990874SJohan Hovold * div = round(freq / (2 x prescale x request)) 1003e5990874SJohan Hovold * actual = freq / (2 x prescale x div) 1004e5990874SJohan Hovold * 1005e5990874SJohan Hovold * For CP2104 and CP2105 freq is 48Mhz and prescale is 4 for request <= 365bps 1006e5990874SJohan Hovold * or 1 otherwise. 1007e5990874SJohan Hovold * For CP2110 freq is 24Mhz and prescale is 4 for request <= 300bps or 1 1008e5990874SJohan Hovold * otherwise. 1009e5990874SJohan Hovold */ 1010e5990874SJohan Hovold static void cp210x_change_speed(struct tty_struct *tty, 1011e5990874SJohan Hovold struct usb_serial_port *port, struct ktermios *old_termios) 1012e5990874SJohan Hovold { 10136f0bcf72SKaroly Pados struct usb_serial *serial = port->serial; 10146f0bcf72SKaroly Pados struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1015e5990874SJohan Hovold u32 baud; 1016e5990874SJohan Hovold 10176f0bcf72SKaroly Pados /* 10187aecd7fcSJohan Hovold * This maps the requested rate to the actual rate, a valid rate on 10197aecd7fcSJohan Hovold * cp2102 or cp2103, or to an arbitrary rate in [1M, max_speed]. 1020e5990874SJohan Hovold * 1021e5990874SJohan Hovold * NOTE: B0 is not implemented. 1022e5990874SJohan Hovold */ 102385bc2d91SJohanna Abrahamsson baud = clamp(tty->termios.c_ospeed, priv->min_speed, priv->max_speed); 102485bc2d91SJohanna Abrahamsson 10257aecd7fcSJohan Hovold if (priv->use_actual_rate) 102685bc2d91SJohanna Abrahamsson baud = cp210x_get_actual_rate(baud); 10277aecd7fcSJohan Hovold else if (baud < 1000000) 102895fd4f47SJohan Hovold baud = cp210x_get_an205_rate(baud); 1029e5990874SJohan Hovold 1030660f3b14SGreg Kroah-Hartman dev_dbg(&port->dev, "%s - setting baud rate to %u\n", __func__, baud); 1031fe1b07e9SKonstantin Shkolnyy if (cp210x_write_u32_reg(port, CP210X_SET_BAUDRATE, baud)) { 1032e5990874SJohan Hovold dev_warn(&port->dev, "failed to set baud rate to %u\n", baud); 1033e5990874SJohan Hovold if (old_termios) 1034e5990874SJohan Hovold baud = old_termios->c_ospeed; 1035e5990874SJohan Hovold else 1036e5990874SJohan Hovold baud = 9600; 1037e5990874SJohan Hovold } 1038e5990874SJohan Hovold 1039e5990874SJohan Hovold tty_encode_baud_rate(tty, baud, baud); 1040e5990874SJohan Hovold } 1041e5990874SJohan Hovold 1042a7207e98SJohan Hovold static void cp210x_enable_event_mode(struct usb_serial_port *port) 1043a7207e98SJohan Hovold { 1044a7207e98SJohan Hovold struct cp210x_port_private *port_priv = usb_get_serial_port_data(port); 1045a7207e98SJohan Hovold int ret; 1046a7207e98SJohan Hovold 1047a7207e98SJohan Hovold if (port_priv->event_mode) 1048a7207e98SJohan Hovold return; 1049a7207e98SJohan Hovold 1050a7207e98SJohan Hovold port_priv->event_state = ES_DATA; 1051a7207e98SJohan Hovold port_priv->event_mode = true; 1052a7207e98SJohan Hovold 1053a7207e98SJohan Hovold ret = cp210x_write_u16_reg(port, CP210X_EMBED_EVENTS, CP210X_ESCCHAR); 1054a7207e98SJohan Hovold if (ret) { 1055a7207e98SJohan Hovold dev_err(&port->dev, "failed to enable events: %d\n", ret); 1056a7207e98SJohan Hovold port_priv->event_mode = false; 1057a7207e98SJohan Hovold } 1058a7207e98SJohan Hovold } 1059a7207e98SJohan Hovold 1060a7207e98SJohan Hovold static void cp210x_disable_event_mode(struct usb_serial_port *port) 1061a7207e98SJohan Hovold { 1062a7207e98SJohan Hovold struct cp210x_port_private *port_priv = usb_get_serial_port_data(port); 1063a7207e98SJohan Hovold int ret; 1064a7207e98SJohan Hovold 1065a7207e98SJohan Hovold if (!port_priv->event_mode) 1066a7207e98SJohan Hovold return; 1067a7207e98SJohan Hovold 1068a7207e98SJohan Hovold ret = cp210x_write_u16_reg(port, CP210X_EMBED_EVENTS, 0); 1069a7207e98SJohan Hovold if (ret) { 1070a7207e98SJohan Hovold dev_err(&port->dev, "failed to disable events: %d\n", ret); 1071a7207e98SJohan Hovold return; 1072a7207e98SJohan Hovold } 1073a7207e98SJohan Hovold 1074a7207e98SJohan Hovold port_priv->event_mode = false; 1075a7207e98SJohan Hovold } 1076a7207e98SJohan Hovold 107795168d62SJohan Hovold static bool cp210x_termios_change(const struct ktermios *a, const struct ktermios *b) 107895168d62SJohan Hovold { 107995168d62SJohan Hovold bool iflag_change; 108095168d62SJohan Hovold 108195168d62SJohan Hovold iflag_change = ((a->c_iflag ^ b->c_iflag) & INPCK); 108295168d62SJohan Hovold 108395168d62SJohan Hovold return tty_termios_hw_change(a, b) || iflag_change; 108495168d62SJohan Hovold } 108595168d62SJohan Hovold 1086*ed921771SJohan Hovold static void cp210x_set_flow_control(struct tty_struct *tty, 1087*ed921771SJohan Hovold struct usb_serial_port *port, struct ktermios *old_termios) 1088*ed921771SJohan Hovold { 1089*ed921771SJohan Hovold struct cp210x_flow_ctl flow_ctl; 1090*ed921771SJohan Hovold u32 flow_repl; 1091*ed921771SJohan Hovold u32 ctl_hs; 1092*ed921771SJohan Hovold int ret; 1093*ed921771SJohan Hovold 1094*ed921771SJohan Hovold if (old_termios && C_CRTSCTS(tty) == (old_termios->c_cflag & CRTSCTS)) 1095*ed921771SJohan Hovold return; 1096*ed921771SJohan Hovold 1097*ed921771SJohan Hovold ret = cp210x_read_reg_block(port, CP210X_GET_FLOW, &flow_ctl, 1098*ed921771SJohan Hovold sizeof(flow_ctl)); 1099*ed921771SJohan Hovold if (ret) 1100*ed921771SJohan Hovold return; 1101*ed921771SJohan Hovold 1102*ed921771SJohan Hovold ctl_hs = le32_to_cpu(flow_ctl.ulControlHandshake); 1103*ed921771SJohan Hovold flow_repl = le32_to_cpu(flow_ctl.ulFlowReplace); 1104*ed921771SJohan Hovold 1105*ed921771SJohan Hovold ctl_hs &= ~CP210X_SERIAL_DSR_HANDSHAKE; 1106*ed921771SJohan Hovold ctl_hs &= ~CP210X_SERIAL_DCD_HANDSHAKE; 1107*ed921771SJohan Hovold ctl_hs &= ~CP210X_SERIAL_DSR_SENSITIVITY; 1108*ed921771SJohan Hovold ctl_hs &= ~CP210X_SERIAL_DTR_MASK; 1109*ed921771SJohan Hovold ctl_hs |= CP210X_SERIAL_DTR_SHIFT(CP210X_SERIAL_DTR_ACTIVE); 1110*ed921771SJohan Hovold 1111*ed921771SJohan Hovold if (C_CRTSCTS(tty)) { 1112*ed921771SJohan Hovold ctl_hs |= CP210X_SERIAL_CTS_HANDSHAKE; 1113*ed921771SJohan Hovold flow_repl &= ~CP210X_SERIAL_RTS_MASK; 1114*ed921771SJohan Hovold flow_repl |= CP210X_SERIAL_RTS_SHIFT(CP210X_SERIAL_RTS_FLOW_CTL); 1115*ed921771SJohan Hovold } else { 1116*ed921771SJohan Hovold ctl_hs &= ~CP210X_SERIAL_CTS_HANDSHAKE; 1117*ed921771SJohan Hovold flow_repl &= ~CP210X_SERIAL_RTS_MASK; 1118*ed921771SJohan Hovold flow_repl |= CP210X_SERIAL_RTS_SHIFT(CP210X_SERIAL_RTS_ACTIVE); 1119*ed921771SJohan Hovold } 1120*ed921771SJohan Hovold 1121*ed921771SJohan Hovold dev_dbg(&port->dev, "%s - ulControlHandshake=0x%08x, ulFlowReplace=0x%08x\n", 1122*ed921771SJohan Hovold __func__, ctl_hs, flow_repl); 1123*ed921771SJohan Hovold 1124*ed921771SJohan Hovold flow_ctl.ulControlHandshake = cpu_to_le32(ctl_hs); 1125*ed921771SJohan Hovold flow_ctl.ulFlowReplace = cpu_to_le32(flow_repl); 1126*ed921771SJohan Hovold 1127*ed921771SJohan Hovold cp210x_write_reg_block(port, CP210X_SET_FLOW, &flow_ctl, 1128*ed921771SJohan Hovold sizeof(flow_ctl)); 1129*ed921771SJohan Hovold } 1130*ed921771SJohan Hovold 11314cc27bd6SCraig Shelley static void cp210x_set_termios(struct tty_struct *tty, 113203ee2515SGreg Kroah-Hartman struct usb_serial_port *port, struct ktermios *old_termios) 113303ee2515SGreg Kroah-Hartman { 1134d4297629SJohan Hovold struct cp210x_serial_private *priv = usb_get_serial_data(port->serial); 113519165b2bSKonstantin Shkolnyy u16 bits; 1136d4297629SJohan Hovold int ret; 113703ee2515SGreg Kroah-Hartman 113846827bdaSJohan Hovold if (old_termios && !cp210x_termios_change(&tty->termios, old_termios)) 113995168d62SJohan Hovold return; 114095168d62SJohan Hovold 114146827bdaSJohan Hovold if (!old_termios || tty->termios.c_ospeed != old_termios->c_ospeed) 1142e5990874SJohan Hovold cp210x_change_speed(tty, port, old_termios); 114303ee2515SGreg Kroah-Hartman 1144d4297629SJohan Hovold /* CP2101 only supports CS8, 1 stop bit and non-stick parity. */ 1145d4297629SJohan Hovold if (priv->partnum == CP210X_PARTNUM_CP2101) { 1146d4297629SJohan Hovold tty->termios.c_cflag &= ~(CSIZE | CSTOPB | CMSPAR); 1147d4297629SJohan Hovold tty->termios.c_cflag |= CS8; 1148d4297629SJohan Hovold } 1149d4297629SJohan Hovold 1150d4297629SJohan Hovold bits = 0; 1151d4297629SJohan Hovold 1152d4297629SJohan Hovold switch (C_CSIZE(tty)) { 115303ee2515SGreg Kroah-Hartman case CS5: 115403ee2515SGreg Kroah-Hartman bits |= BITS_DATA_5; 115503ee2515SGreg Kroah-Hartman break; 115603ee2515SGreg Kroah-Hartman case CS6: 115703ee2515SGreg Kroah-Hartman bits |= BITS_DATA_6; 115803ee2515SGreg Kroah-Hartman break; 115903ee2515SGreg Kroah-Hartman case CS7: 116003ee2515SGreg Kroah-Hartman bits |= BITS_DATA_7; 116103ee2515SGreg Kroah-Hartman break; 116203ee2515SGreg Kroah-Hartman case CS8: 1163c2b33559SJohan Hovold default: 116403ee2515SGreg Kroah-Hartman bits |= BITS_DATA_8; 116503ee2515SGreg Kroah-Hartman break; 116603ee2515SGreg Kroah-Hartman } 116703ee2515SGreg Kroah-Hartman 1168d4297629SJohan Hovold if (C_PARENB(tty)) { 1169d4297629SJohan Hovold if (C_CMSPAR(tty)) { 1170d4297629SJohan Hovold if (C_PARODD(tty)) 11714b6181caSRoland Koebler bits |= BITS_PARITY_MARK; 1172d4297629SJohan Hovold else 11734b6181caSRoland Koebler bits |= BITS_PARITY_SPACE; 11744b6181caSRoland Koebler } else { 1175d4297629SJohan Hovold if (C_PARODD(tty)) 117603ee2515SGreg Kroah-Hartman bits |= BITS_PARITY_ODD; 1177d4297629SJohan Hovold else 117803ee2515SGreg Kroah-Hartman bits |= BITS_PARITY_EVEN; 117903ee2515SGreg Kroah-Hartman } 118003ee2515SGreg Kroah-Hartman } 118103ee2515SGreg Kroah-Hartman 1182d4297629SJohan Hovold if (C_CSTOPB(tty)) 118303ee2515SGreg Kroah-Hartman bits |= BITS_STOP_2; 1184d4297629SJohan Hovold else 118503ee2515SGreg Kroah-Hartman bits |= BITS_STOP_1; 1186d4297629SJohan Hovold 1187d4297629SJohan Hovold ret = cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits); 1188d4297629SJohan Hovold if (ret) 1189d4297629SJohan Hovold dev_err(&port->dev, "failed to set line control: %d\n", ret); 119003ee2515SGreg Kroah-Hartman 1191*ed921771SJohan Hovold cp210x_set_flow_control(tty, port, old_termios); 119203ee2515SGreg Kroah-Hartman 1193a7207e98SJohan Hovold /* 1194a7207e98SJohan Hovold * Enable event-insertion mode only if input parity checking is 1195a7207e98SJohan Hovold * enabled for now. 1196a7207e98SJohan Hovold */ 1197a7207e98SJohan Hovold if (I_INPCK(tty)) 1198a7207e98SJohan Hovold cp210x_enable_event_mode(port); 1199a7207e98SJohan Hovold else 1200a7207e98SJohan Hovold cp210x_disable_event_mode(port); 120103ee2515SGreg Kroah-Hartman } 120203ee2515SGreg Kroah-Hartman 120320b9d177SAlan Cox static int cp210x_tiocmset(struct tty_struct *tty, 120403ee2515SGreg Kroah-Hartman unsigned int set, unsigned int clear) 120503ee2515SGreg Kroah-Hartman { 120603ee2515SGreg Kroah-Hartman struct usb_serial_port *port = tty->driver_data; 120720b9d177SAlan Cox return cp210x_tiocmset_port(port, set, clear); 1208d2ad67b3SVomLehn } 1209d2ad67b3SVomLehn 121020b9d177SAlan Cox static int cp210x_tiocmset_port(struct usb_serial_port *port, 1211d2ad67b3SVomLehn unsigned int set, unsigned int clear) 1212d2ad67b3SVomLehn { 121319165b2bSKonstantin Shkolnyy u16 control = 0; 121403ee2515SGreg Kroah-Hartman 121503ee2515SGreg Kroah-Hartman if (set & TIOCM_RTS) { 121603ee2515SGreg Kroah-Hartman control |= CONTROL_RTS; 121703ee2515SGreg Kroah-Hartman control |= CONTROL_WRITE_RTS; 121803ee2515SGreg Kroah-Hartman } 121903ee2515SGreg Kroah-Hartman if (set & TIOCM_DTR) { 122003ee2515SGreg Kroah-Hartman control |= CONTROL_DTR; 122103ee2515SGreg Kroah-Hartman control |= CONTROL_WRITE_DTR; 122203ee2515SGreg Kroah-Hartman } 122303ee2515SGreg Kroah-Hartman if (clear & TIOCM_RTS) { 122403ee2515SGreg Kroah-Hartman control &= ~CONTROL_RTS; 122503ee2515SGreg Kroah-Hartman control |= CONTROL_WRITE_RTS; 122603ee2515SGreg Kroah-Hartman } 122703ee2515SGreg Kroah-Hartman if (clear & TIOCM_DTR) { 122803ee2515SGreg Kroah-Hartman control &= ~CONTROL_DTR; 122903ee2515SGreg Kroah-Hartman control |= CONTROL_WRITE_DTR; 123003ee2515SGreg Kroah-Hartman } 123103ee2515SGreg Kroah-Hartman 1232660f3b14SGreg Kroah-Hartman dev_dbg(&port->dev, "%s - control = 0x%.4x\n", __func__, control); 123303ee2515SGreg Kroah-Hartman 123419165b2bSKonstantin Shkolnyy return cp210x_write_u16_reg(port, CP210X_SET_MHS, control); 123503ee2515SGreg Kroah-Hartman } 123603ee2515SGreg Kroah-Hartman 1237d94c7bd4SAlan Cox static void cp210x_dtr_rts(struct usb_serial_port *p, int on) 1238d94c7bd4SAlan Cox { 1239d94c7bd4SAlan Cox if (on) 124020b9d177SAlan Cox cp210x_tiocmset_port(p, TIOCM_DTR|TIOCM_RTS, 0); 1241d94c7bd4SAlan Cox else 124220b9d177SAlan Cox cp210x_tiocmset_port(p, 0, TIOCM_DTR|TIOCM_RTS); 1243d94c7bd4SAlan Cox } 1244d94c7bd4SAlan Cox 124560b33c13SAlan Cox static int cp210x_tiocmget(struct tty_struct *tty) 124603ee2515SGreg Kroah-Hartman { 124703ee2515SGreg Kroah-Hartman struct usb_serial_port *port = tty->driver_data; 1248fe1b07e9SKonstantin Shkolnyy u8 control; 124903ee2515SGreg Kroah-Hartman int result; 125003ee2515SGreg Kroah-Hartman 1251de24e0a1SJohan Hovold result = cp210x_read_u8_reg(port, CP210X_GET_MDMSTS, &control); 1252de24e0a1SJohan Hovold if (result) 1253de24e0a1SJohan Hovold return result; 125403ee2515SGreg Kroah-Hartman 125503ee2515SGreg Kroah-Hartman result = ((control & CONTROL_DTR) ? TIOCM_DTR : 0) 125603ee2515SGreg Kroah-Hartman |((control & CONTROL_RTS) ? TIOCM_RTS : 0) 125703ee2515SGreg Kroah-Hartman |((control & CONTROL_CTS) ? TIOCM_CTS : 0) 125803ee2515SGreg Kroah-Hartman |((control & CONTROL_DSR) ? TIOCM_DSR : 0) 125903ee2515SGreg Kroah-Hartman |((control & CONTROL_RING)? TIOCM_RI : 0) 126003ee2515SGreg Kroah-Hartman |((control & CONTROL_DCD) ? TIOCM_CD : 0); 126103ee2515SGreg Kroah-Hartman 1262660f3b14SGreg Kroah-Hartman dev_dbg(&port->dev, "%s - control = 0x%.2x\n", __func__, control); 126303ee2515SGreg Kroah-Hartman 126403ee2515SGreg Kroah-Hartman return result; 126503ee2515SGreg Kroah-Hartman } 126603ee2515SGreg Kroah-Hartman 12674cc27bd6SCraig Shelley static void cp210x_break_ctl(struct tty_struct *tty, int break_state) 126803ee2515SGreg Kroah-Hartman { 126903ee2515SGreg Kroah-Hartman struct usb_serial_port *port = tty->driver_data; 127019165b2bSKonstantin Shkolnyy u16 state; 127103ee2515SGreg Kroah-Hartman 127203ee2515SGreg Kroah-Hartman if (break_state == 0) 127303ee2515SGreg Kroah-Hartman state = BREAK_OFF; 127403ee2515SGreg Kroah-Hartman else 127503ee2515SGreg Kroah-Hartman state = BREAK_ON; 1276660f3b14SGreg Kroah-Hartman dev_dbg(&port->dev, "%s - turning break %s\n", __func__, 127703ee2515SGreg Kroah-Hartman state == BREAK_OFF ? "off" : "on"); 127819165b2bSKonstantin Shkolnyy cp210x_write_u16_reg(port, CP210X_SET_BREAK, state); 127903ee2515SGreg Kroah-Hartman } 128003ee2515SGreg Kroah-Hartman 1281cf5276ceSMartyn Welch #ifdef CONFIG_GPIOLIB 1282cf5276ceSMartyn Welch static int cp210x_gpio_request(struct gpio_chip *gc, unsigned int offset) 1283cf5276ceSMartyn Welch { 1284cf5276ceSMartyn Welch struct usb_serial *serial = gpiochip_get_data(gc); 1285cf5276ceSMartyn Welch struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1286cf5276ceSMartyn Welch 1287c8acfe0aSKaroly Pados if (priv->gpio_altfunc & BIT(offset)) 1288cf5276ceSMartyn Welch return -ENODEV; 1289cf5276ceSMartyn Welch 1290cf5276ceSMartyn Welch return 0; 1291cf5276ceSMartyn Welch } 1292cf5276ceSMartyn Welch 1293cf5276ceSMartyn Welch static int cp210x_gpio_get(struct gpio_chip *gc, unsigned int gpio) 1294cf5276ceSMartyn Welch { 1295cf5276ceSMartyn Welch struct usb_serial *serial = gpiochip_get_data(gc); 1296c8acfe0aSKaroly Pados struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1297c8acfe0aSKaroly Pados u8 req_type = REQTYPE_DEVICE_TO_HOST; 1298cf5276ceSMartyn Welch int result; 1299cf5276ceSMartyn Welch u8 buf; 1300cf5276ceSMartyn Welch 1301c8acfe0aSKaroly Pados if (priv->partnum == CP210X_PARTNUM_CP2105) 1302c8acfe0aSKaroly Pados req_type = REQTYPE_INTERFACE_TO_HOST; 1303c8acfe0aSKaroly Pados 13047b0b644bSKaroly Pados result = usb_autopm_get_interface(serial->interface); 13057b0b644bSKaroly Pados if (result) 13067b0b644bSKaroly Pados return result; 13077b0b644bSKaroly Pados 1308c8acfe0aSKaroly Pados result = cp210x_read_vendor_block(serial, req_type, 1309cf5276ceSMartyn Welch CP210X_READ_LATCH, &buf, sizeof(buf)); 13107b0b644bSKaroly Pados usb_autopm_put_interface(serial->interface); 1311cf5276ceSMartyn Welch if (result < 0) 1312cf5276ceSMartyn Welch return result; 1313cf5276ceSMartyn Welch 1314cf5276ceSMartyn Welch return !!(buf & BIT(gpio)); 1315cf5276ceSMartyn Welch } 1316cf5276ceSMartyn Welch 1317cf5276ceSMartyn Welch static void cp210x_gpio_set(struct gpio_chip *gc, unsigned int gpio, int value) 1318cf5276ceSMartyn Welch { 1319cf5276ceSMartyn Welch struct usb_serial *serial = gpiochip_get_data(gc); 1320c8acfe0aSKaroly Pados struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1321cf5276ceSMartyn Welch struct cp210x_gpio_write buf; 1322c8acfe0aSKaroly Pados int result; 1323cf5276ceSMartyn Welch 1324cf5276ceSMartyn Welch if (value == 1) 1325cf5276ceSMartyn Welch buf.state = BIT(gpio); 1326cf5276ceSMartyn Welch else 1327cf5276ceSMartyn Welch buf.state = 0; 1328cf5276ceSMartyn Welch 1329cf5276ceSMartyn Welch buf.mask = BIT(gpio); 1330cf5276ceSMartyn Welch 13317b0b644bSKaroly Pados result = usb_autopm_get_interface(serial->interface); 13327b0b644bSKaroly Pados if (result) 13337b0b644bSKaroly Pados goto out; 13347b0b644bSKaroly Pados 1335c8acfe0aSKaroly Pados if (priv->partnum == CP210X_PARTNUM_CP2105) { 1336c8acfe0aSKaroly Pados result = cp210x_write_vendor_block(serial, 1337c8acfe0aSKaroly Pados REQTYPE_HOST_TO_INTERFACE, 1338c8acfe0aSKaroly Pados CP210X_WRITE_LATCH, &buf, 1339c8acfe0aSKaroly Pados sizeof(buf)); 1340c8acfe0aSKaroly Pados } else { 1341c8acfe0aSKaroly Pados u16 wIndex = buf.state << 8 | buf.mask; 1342c8acfe0aSKaroly Pados 1343c8acfe0aSKaroly Pados result = usb_control_msg(serial->dev, 1344c8acfe0aSKaroly Pados usb_sndctrlpipe(serial->dev, 0), 1345c8acfe0aSKaroly Pados CP210X_VENDOR_SPECIFIC, 1346c8acfe0aSKaroly Pados REQTYPE_HOST_TO_DEVICE, 1347c8acfe0aSKaroly Pados CP210X_WRITE_LATCH, 1348c8acfe0aSKaroly Pados wIndex, 1349c8acfe0aSKaroly Pados NULL, 0, USB_CTRL_SET_TIMEOUT); 1350c8acfe0aSKaroly Pados } 1351c8acfe0aSKaroly Pados 13527b0b644bSKaroly Pados usb_autopm_put_interface(serial->interface); 13537b0b644bSKaroly Pados out: 1354c8acfe0aSKaroly Pados if (result < 0) { 1355c8acfe0aSKaroly Pados dev_err(&serial->interface->dev, "failed to set GPIO value: %d\n", 1356c8acfe0aSKaroly Pados result); 1357c8acfe0aSKaroly Pados } 1358cf5276ceSMartyn Welch } 1359cf5276ceSMartyn Welch 1360cf5276ceSMartyn Welch static int cp210x_gpio_direction_get(struct gpio_chip *gc, unsigned int gpio) 1361cf5276ceSMartyn Welch { 1362c8acfe0aSKaroly Pados struct usb_serial *serial = gpiochip_get_data(gc); 1363c8acfe0aSKaroly Pados struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1364c8acfe0aSKaroly Pados 1365c8acfe0aSKaroly Pados return priv->gpio_input & BIT(gpio); 1366cf5276ceSMartyn Welch } 1367cf5276ceSMartyn Welch 1368cf5276ceSMartyn Welch static int cp210x_gpio_direction_input(struct gpio_chip *gc, unsigned int gpio) 1369cf5276ceSMartyn Welch { 1370c8acfe0aSKaroly Pados struct usb_serial *serial = gpiochip_get_data(gc); 1371c8acfe0aSKaroly Pados struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1372c8acfe0aSKaroly Pados 1373c8acfe0aSKaroly Pados if (priv->partnum == CP210X_PARTNUM_CP2105) { 1374c8acfe0aSKaroly Pados /* hardware does not support an input mode */ 1375cf5276ceSMartyn Welch return -ENOTSUPP; 1376cf5276ceSMartyn Welch } 1377cf5276ceSMartyn Welch 1378c8acfe0aSKaroly Pados /* push-pull pins cannot be changed to be inputs */ 1379c8acfe0aSKaroly Pados if (priv->gpio_pushpull & BIT(gpio)) 1380c8acfe0aSKaroly Pados return -EINVAL; 1381c8acfe0aSKaroly Pados 1382c8acfe0aSKaroly Pados /* make sure to release pin if it is being driven low */ 1383c8acfe0aSKaroly Pados cp210x_gpio_set(gc, gpio, 1); 1384c8acfe0aSKaroly Pados 1385c8acfe0aSKaroly Pados priv->gpio_input |= BIT(gpio); 1386c8acfe0aSKaroly Pados 1387c8acfe0aSKaroly Pados return 0; 1388c8acfe0aSKaroly Pados } 1389c8acfe0aSKaroly Pados 1390cf5276ceSMartyn Welch static int cp210x_gpio_direction_output(struct gpio_chip *gc, unsigned int gpio, 1391cf5276ceSMartyn Welch int value) 1392cf5276ceSMartyn Welch { 1393c8acfe0aSKaroly Pados struct usb_serial *serial = gpiochip_get_data(gc); 1394c8acfe0aSKaroly Pados struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1395c8acfe0aSKaroly Pados 1396c8acfe0aSKaroly Pados priv->gpio_input &= ~BIT(gpio); 1397c8acfe0aSKaroly Pados cp210x_gpio_set(gc, gpio, value); 1398c8acfe0aSKaroly Pados 1399cf5276ceSMartyn Welch return 0; 1400cf5276ceSMartyn Welch } 1401cf5276ceSMartyn Welch 14022956b5d9SMika Westerberg static int cp210x_gpio_set_config(struct gpio_chip *gc, unsigned int gpio, 14032956b5d9SMika Westerberg unsigned long config) 1404cf5276ceSMartyn Welch { 1405cf5276ceSMartyn Welch struct usb_serial *serial = gpiochip_get_data(gc); 1406cf5276ceSMartyn Welch struct cp210x_serial_private *priv = usb_get_serial_data(serial); 14072956b5d9SMika Westerberg enum pin_config_param param = pinconf_to_config_param(config); 1408cf5276ceSMartyn Welch 1409cf5276ceSMartyn Welch /* Succeed only if in correct mode (this can't be set at runtime) */ 14102956b5d9SMika Westerberg if ((param == PIN_CONFIG_DRIVE_PUSH_PULL) && 1411c8acfe0aSKaroly Pados (priv->gpio_pushpull & BIT(gpio))) 1412cf5276ceSMartyn Welch return 0; 1413cf5276ceSMartyn Welch 14142956b5d9SMika Westerberg if ((param == PIN_CONFIG_DRIVE_OPEN_DRAIN) && 1415c8acfe0aSKaroly Pados !(priv->gpio_pushpull & BIT(gpio))) 1416cf5276ceSMartyn Welch return 0; 1417cf5276ceSMartyn Welch 1418cf5276ceSMartyn Welch return -ENOTSUPP; 1419cf5276ceSMartyn Welch } 1420cf5276ceSMartyn Welch 1421cf5276ceSMartyn Welch /* 1422cf5276ceSMartyn Welch * This function is for configuring GPIO using shared pins, where other signals 1423cf5276ceSMartyn Welch * are made unavailable by configuring the use of GPIO. This is believed to be 1424cf5276ceSMartyn Welch * only applicable to the cp2105 at this point, the other devices supported by 1425cf5276ceSMartyn Welch * this driver that provide GPIO do so in a way that does not impact other 1426cf5276ceSMartyn Welch * signals and are thus expected to have very different initialisation. 1427cf5276ceSMartyn Welch */ 1428c8acfe0aSKaroly Pados static int cp2105_gpioconf_init(struct usb_serial *serial) 1429cf5276ceSMartyn Welch { 1430cf5276ceSMartyn Welch struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1431cf5276ceSMartyn Welch struct cp210x_pin_mode mode; 143215fb84b7SIcenowy Zheng struct cp210x_dual_port_config config; 1433cf5276ceSMartyn Welch u8 intf_num = cp210x_interface_num(serial); 1434c8acfe0aSKaroly Pados u8 iface_config; 1435cf5276ceSMartyn Welch int result; 1436cf5276ceSMartyn Welch 1437cf5276ceSMartyn Welch result = cp210x_read_vendor_block(serial, REQTYPE_DEVICE_TO_HOST, 1438cf5276ceSMartyn Welch CP210X_GET_DEVICEMODE, &mode, 1439cf5276ceSMartyn Welch sizeof(mode)); 1440cf5276ceSMartyn Welch if (result < 0) 1441cf5276ceSMartyn Welch return result; 1442cf5276ceSMartyn Welch 1443cf5276ceSMartyn Welch result = cp210x_read_vendor_block(serial, REQTYPE_DEVICE_TO_HOST, 1444cf5276ceSMartyn Welch CP210X_GET_PORTCONFIG, &config, 1445cf5276ceSMartyn Welch sizeof(config)); 1446cf5276ceSMartyn Welch if (result < 0) 1447cf5276ceSMartyn Welch return result; 1448cf5276ceSMartyn Welch 1449cf5276ceSMartyn Welch /* 2 banks of GPIO - One for the pins taken from each serial port */ 1450cf5276ceSMartyn Welch if (intf_num == 0) { 1451c8acfe0aSKaroly Pados if (mode.eci == CP210X_PIN_MODE_MODEM) { 1452c8acfe0aSKaroly Pados /* mark all GPIOs of this interface as reserved */ 1453c8acfe0aSKaroly Pados priv->gpio_altfunc = 0xff; 1454cf5276ceSMartyn Welch return 0; 1455c8acfe0aSKaroly Pados } 1456cf5276ceSMartyn Welch 1457c8acfe0aSKaroly Pados iface_config = config.eci_cfg; 1458c8acfe0aSKaroly Pados priv->gpio_pushpull = (u8)((le16_to_cpu(config.gpio_mode) & 1459cf5276ceSMartyn Welch CP210X_ECI_GPIO_MODE_MASK) >> 1460cf5276ceSMartyn Welch CP210X_ECI_GPIO_MODE_OFFSET); 1461cf5276ceSMartyn Welch priv->gc.ngpio = 2; 1462cf5276ceSMartyn Welch } else if (intf_num == 1) { 1463c8acfe0aSKaroly Pados if (mode.sci == CP210X_PIN_MODE_MODEM) { 1464c8acfe0aSKaroly Pados /* mark all GPIOs of this interface as reserved */ 1465c8acfe0aSKaroly Pados priv->gpio_altfunc = 0xff; 1466cf5276ceSMartyn Welch return 0; 1467c8acfe0aSKaroly Pados } 1468cf5276ceSMartyn Welch 1469c8acfe0aSKaroly Pados iface_config = config.sci_cfg; 1470c8acfe0aSKaroly Pados priv->gpio_pushpull = (u8)((le16_to_cpu(config.gpio_mode) & 1471cf5276ceSMartyn Welch CP210X_SCI_GPIO_MODE_MASK) >> 1472cf5276ceSMartyn Welch CP210X_SCI_GPIO_MODE_OFFSET); 1473cf5276ceSMartyn Welch priv->gc.ngpio = 3; 1474cf5276ceSMartyn Welch } else { 1475cf5276ceSMartyn Welch return -ENODEV; 1476cf5276ceSMartyn Welch } 1477cf5276ceSMartyn Welch 1478c8acfe0aSKaroly Pados /* mark all pins which are not in GPIO mode */ 1479c8acfe0aSKaroly Pados if (iface_config & CP2105_GPIO0_TXLED_MODE) /* GPIO 0 */ 1480c8acfe0aSKaroly Pados priv->gpio_altfunc |= BIT(0); 1481c8acfe0aSKaroly Pados if (iface_config & (CP2105_GPIO1_RXLED_MODE | /* GPIO 1 */ 1482c8acfe0aSKaroly Pados CP2105_GPIO1_RS485_MODE)) 1483c8acfe0aSKaroly Pados priv->gpio_altfunc |= BIT(1); 1484c8acfe0aSKaroly Pados 1485c8acfe0aSKaroly Pados /* driver implementation for CP2105 only supports outputs */ 1486c8acfe0aSKaroly Pados priv->gpio_input = 0; 1487c8acfe0aSKaroly Pados 1488c8acfe0aSKaroly Pados return 0; 1489c8acfe0aSKaroly Pados } 1490c8acfe0aSKaroly Pados 149115fb84b7SIcenowy Zheng static int cp2104_gpioconf_init(struct usb_serial *serial) 149215fb84b7SIcenowy Zheng { 149315fb84b7SIcenowy Zheng struct cp210x_serial_private *priv = usb_get_serial_data(serial); 149415fb84b7SIcenowy Zheng struct cp210x_single_port_config config; 149515fb84b7SIcenowy Zheng u8 iface_config; 149615fb84b7SIcenowy Zheng u8 gpio_latch; 149715fb84b7SIcenowy Zheng int result; 149815fb84b7SIcenowy Zheng u8 i; 149915fb84b7SIcenowy Zheng 150015fb84b7SIcenowy Zheng result = cp210x_read_vendor_block(serial, REQTYPE_DEVICE_TO_HOST, 150115fb84b7SIcenowy Zheng CP210X_GET_PORTCONFIG, &config, 150215fb84b7SIcenowy Zheng sizeof(config)); 150315fb84b7SIcenowy Zheng if (result < 0) 150415fb84b7SIcenowy Zheng return result; 150515fb84b7SIcenowy Zheng 150615fb84b7SIcenowy Zheng priv->gc.ngpio = 4; 150715fb84b7SIcenowy Zheng 150815fb84b7SIcenowy Zheng iface_config = config.device_cfg; 150915fb84b7SIcenowy Zheng priv->gpio_pushpull = (u8)((le16_to_cpu(config.gpio_mode) & 151015fb84b7SIcenowy Zheng CP210X_GPIO_MODE_MASK) >> 151115fb84b7SIcenowy Zheng CP210X_GPIO_MODE_OFFSET); 151215fb84b7SIcenowy Zheng gpio_latch = (u8)((le16_to_cpu(config.reset_state) & 151315fb84b7SIcenowy Zheng CP210X_GPIO_MODE_MASK) >> 151415fb84b7SIcenowy Zheng CP210X_GPIO_MODE_OFFSET); 151515fb84b7SIcenowy Zheng 151615fb84b7SIcenowy Zheng /* mark all pins which are not in GPIO mode */ 151715fb84b7SIcenowy Zheng if (iface_config & CP2104_GPIO0_TXLED_MODE) /* GPIO 0 */ 151815fb84b7SIcenowy Zheng priv->gpio_altfunc |= BIT(0); 151915fb84b7SIcenowy Zheng if (iface_config & CP2104_GPIO1_RXLED_MODE) /* GPIO 1 */ 152015fb84b7SIcenowy Zheng priv->gpio_altfunc |= BIT(1); 152115fb84b7SIcenowy Zheng if (iface_config & CP2104_GPIO2_RS485_MODE) /* GPIO 2 */ 152215fb84b7SIcenowy Zheng priv->gpio_altfunc |= BIT(2); 152315fb84b7SIcenowy Zheng 152415fb84b7SIcenowy Zheng /* 152515fb84b7SIcenowy Zheng * Like CP2102N, CP2104 has also no strict input and output pin 152615fb84b7SIcenowy Zheng * modes. 152715fb84b7SIcenowy Zheng * Do the same input mode emulation as CP2102N. 152815fb84b7SIcenowy Zheng */ 152915fb84b7SIcenowy Zheng for (i = 0; i < priv->gc.ngpio; ++i) { 153015fb84b7SIcenowy Zheng /* 153115fb84b7SIcenowy Zheng * Set direction to "input" iff pin is open-drain and reset 153215fb84b7SIcenowy Zheng * value is 1. 153315fb84b7SIcenowy Zheng */ 153415fb84b7SIcenowy Zheng if (!(priv->gpio_pushpull & BIT(i)) && (gpio_latch & BIT(i))) 153515fb84b7SIcenowy Zheng priv->gpio_input |= BIT(i); 153615fb84b7SIcenowy Zheng } 153715fb84b7SIcenowy Zheng 153815fb84b7SIcenowy Zheng return 0; 153915fb84b7SIcenowy Zheng } 154015fb84b7SIcenowy Zheng 1541c8acfe0aSKaroly Pados static int cp2102n_gpioconf_init(struct usb_serial *serial) 1542c8acfe0aSKaroly Pados { 1543c8acfe0aSKaroly Pados struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1544c8acfe0aSKaroly Pados const u16 config_size = 0x02a6; 1545c8acfe0aSKaroly Pados u8 gpio_rst_latch; 1546c8acfe0aSKaroly Pados u8 config_version; 1547c8acfe0aSKaroly Pados u8 gpio_pushpull; 1548c8acfe0aSKaroly Pados u8 *config_buf; 1549c8acfe0aSKaroly Pados u8 gpio_latch; 1550c8acfe0aSKaroly Pados u8 gpio_ctrl; 1551c8acfe0aSKaroly Pados int result; 1552c8acfe0aSKaroly Pados u8 i; 1553c8acfe0aSKaroly Pados 1554c8acfe0aSKaroly Pados /* 1555c8acfe0aSKaroly Pados * Retrieve device configuration from the device. 1556c8acfe0aSKaroly Pados * The array received contains all customization settings done at the 1557c8acfe0aSKaroly Pados * factory/manufacturer. Format of the array is documented at the 1558c8acfe0aSKaroly Pados * time of writing at: 1559c8acfe0aSKaroly Pados * https://www.silabs.com/community/interface/knowledge-base.entry.html/2017/03/31/cp2102n_setconfig-xsfa 1560c8acfe0aSKaroly Pados */ 1561c8acfe0aSKaroly Pados config_buf = kmalloc(config_size, GFP_KERNEL); 1562c8acfe0aSKaroly Pados if (!config_buf) 1563c8acfe0aSKaroly Pados return -ENOMEM; 1564c8acfe0aSKaroly Pados 1565c8acfe0aSKaroly Pados result = cp210x_read_vendor_block(serial, 1566c8acfe0aSKaroly Pados REQTYPE_DEVICE_TO_HOST, 1567c8acfe0aSKaroly Pados CP210X_READ_2NCONFIG, 1568c8acfe0aSKaroly Pados config_buf, 1569c8acfe0aSKaroly Pados config_size); 1570c8acfe0aSKaroly Pados if (result < 0) { 1571c8acfe0aSKaroly Pados kfree(config_buf); 1572c8acfe0aSKaroly Pados return result; 1573c8acfe0aSKaroly Pados } 1574c8acfe0aSKaroly Pados 1575c8acfe0aSKaroly Pados config_version = config_buf[CP210X_2NCONFIG_CONFIG_VERSION_IDX]; 1576c8acfe0aSKaroly Pados gpio_pushpull = config_buf[CP210X_2NCONFIG_GPIO_MODE_IDX]; 1577c8acfe0aSKaroly Pados gpio_ctrl = config_buf[CP210X_2NCONFIG_GPIO_CONTROL_IDX]; 1578c8acfe0aSKaroly Pados gpio_rst_latch = config_buf[CP210X_2NCONFIG_GPIO_RSTLATCH_IDX]; 1579c8acfe0aSKaroly Pados 1580c8acfe0aSKaroly Pados kfree(config_buf); 1581c8acfe0aSKaroly Pados 1582c8acfe0aSKaroly Pados /* Make sure this is a config format we understand. */ 1583c8acfe0aSKaroly Pados if (config_version != 0x01) 1584c8acfe0aSKaroly Pados return -ENOTSUPP; 1585c8acfe0aSKaroly Pados 1586c8acfe0aSKaroly Pados priv->gc.ngpio = 4; 1587c8acfe0aSKaroly Pados 1588c8acfe0aSKaroly Pados /* 1589c8acfe0aSKaroly Pados * Get default pin states after reset. Needed so we can determine 1590c8acfe0aSKaroly Pados * the direction of an open-drain pin. 1591c8acfe0aSKaroly Pados */ 1592c8acfe0aSKaroly Pados gpio_latch = (gpio_rst_latch >> 3) & 0x0f; 1593c8acfe0aSKaroly Pados 1594c8acfe0aSKaroly Pados /* 0 indicates open-drain mode, 1 is push-pull */ 1595c8acfe0aSKaroly Pados priv->gpio_pushpull = (gpio_pushpull >> 3) & 0x0f; 1596c8acfe0aSKaroly Pados 1597c8acfe0aSKaroly Pados /* 0 indicates GPIO mode, 1 is alternate function */ 1598c8acfe0aSKaroly Pados priv->gpio_altfunc = (gpio_ctrl >> 2) & 0x0f; 1599c8acfe0aSKaroly Pados 1600a49e1abfSMans Rullgard if (priv->partnum == CP210X_PARTNUM_CP2102N_QFN28) { 1601a49e1abfSMans Rullgard /* 1602a49e1abfSMans Rullgard * For the QFN28 package, GPIO4-6 are controlled by 1603a49e1abfSMans Rullgard * the low three bits of the mode/latch fields. 1604a49e1abfSMans Rullgard * Contrary to the document linked above, the bits for 1605a49e1abfSMans Rullgard * the SUSPEND pins are elsewhere. No alternate 1606a49e1abfSMans Rullgard * function is available for these pins. 1607a49e1abfSMans Rullgard */ 1608a49e1abfSMans Rullgard priv->gc.ngpio = 7; 1609a49e1abfSMans Rullgard gpio_latch |= (gpio_rst_latch & 7) << 4; 1610a49e1abfSMans Rullgard priv->gpio_pushpull |= (gpio_pushpull & 7) << 4; 1611a49e1abfSMans Rullgard } 1612a49e1abfSMans Rullgard 1613c8acfe0aSKaroly Pados /* 1614c8acfe0aSKaroly Pados * The CP2102N does not strictly has input and output pin modes, 1615c8acfe0aSKaroly Pados * it only knows open-drain and push-pull modes which is set at 1616c8acfe0aSKaroly Pados * factory. An open-drain pin can function both as an 1617c8acfe0aSKaroly Pados * input or an output. We emulate input mode for open-drain pins 1618c8acfe0aSKaroly Pados * by making sure they are not driven low, and we do not allow 1619c8acfe0aSKaroly Pados * push-pull pins to be set as an input. 1620c8acfe0aSKaroly Pados */ 1621c8acfe0aSKaroly Pados for (i = 0; i < priv->gc.ngpio; ++i) { 1622c8acfe0aSKaroly Pados /* 1623c8acfe0aSKaroly Pados * Set direction to "input" iff pin is open-drain and reset 1624c8acfe0aSKaroly Pados * value is 1. 1625c8acfe0aSKaroly Pados */ 1626c8acfe0aSKaroly Pados if (!(priv->gpio_pushpull & BIT(i)) && (gpio_latch & BIT(i))) 1627c8acfe0aSKaroly Pados priv->gpio_input |= BIT(i); 1628c8acfe0aSKaroly Pados } 1629c8acfe0aSKaroly Pados 1630c8acfe0aSKaroly Pados return 0; 1631c8acfe0aSKaroly Pados } 1632c8acfe0aSKaroly Pados 1633c8acfe0aSKaroly Pados static int cp210x_gpio_init(struct usb_serial *serial) 1634c8acfe0aSKaroly Pados { 1635c8acfe0aSKaroly Pados struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1636c8acfe0aSKaroly Pados int result; 1637c8acfe0aSKaroly Pados 1638c8acfe0aSKaroly Pados switch (priv->partnum) { 163915fb84b7SIcenowy Zheng case CP210X_PARTNUM_CP2104: 164015fb84b7SIcenowy Zheng result = cp2104_gpioconf_init(serial); 164115fb84b7SIcenowy Zheng break; 1642c8acfe0aSKaroly Pados case CP210X_PARTNUM_CP2105: 1643c8acfe0aSKaroly Pados result = cp2105_gpioconf_init(serial); 1644c8acfe0aSKaroly Pados break; 1645c8acfe0aSKaroly Pados case CP210X_PARTNUM_CP2102N_QFN28: 1646c8acfe0aSKaroly Pados case CP210X_PARTNUM_CP2102N_QFN24: 1647c8acfe0aSKaroly Pados case CP210X_PARTNUM_CP2102N_QFN20: 1648c8acfe0aSKaroly Pados result = cp2102n_gpioconf_init(serial); 1649c8acfe0aSKaroly Pados break; 1650c8acfe0aSKaroly Pados default: 1651c8acfe0aSKaroly Pados return 0; 1652c8acfe0aSKaroly Pados } 1653c8acfe0aSKaroly Pados 1654c8acfe0aSKaroly Pados if (result < 0) 1655c8acfe0aSKaroly Pados return result; 1656c8acfe0aSKaroly Pados 1657cf5276ceSMartyn Welch priv->gc.label = "cp210x"; 1658cf5276ceSMartyn Welch priv->gc.request = cp210x_gpio_request; 1659cf5276ceSMartyn Welch priv->gc.get_direction = cp210x_gpio_direction_get; 1660cf5276ceSMartyn Welch priv->gc.direction_input = cp210x_gpio_direction_input; 1661cf5276ceSMartyn Welch priv->gc.direction_output = cp210x_gpio_direction_output; 1662cf5276ceSMartyn Welch priv->gc.get = cp210x_gpio_get; 1663cf5276ceSMartyn Welch priv->gc.set = cp210x_gpio_set; 16642956b5d9SMika Westerberg priv->gc.set_config = cp210x_gpio_set_config; 1665cf5276ceSMartyn Welch priv->gc.owner = THIS_MODULE; 1666cf5276ceSMartyn Welch priv->gc.parent = &serial->interface->dev; 1667cf5276ceSMartyn Welch priv->gc.base = -1; 1668cf5276ceSMartyn Welch priv->gc.can_sleep = true; 1669cf5276ceSMartyn Welch 1670cf5276ceSMartyn Welch result = gpiochip_add_data(&priv->gc, serial); 1671cf5276ceSMartyn Welch if (!result) 16726b7271d2SJohan Hovold priv->gpio_registered = true; 1673cf5276ceSMartyn Welch 1674cf5276ceSMartyn Welch return result; 1675cf5276ceSMartyn Welch } 1676cf5276ceSMartyn Welch 1677cf5276ceSMartyn Welch static void cp210x_gpio_remove(struct usb_serial *serial) 1678cf5276ceSMartyn Welch { 1679cf5276ceSMartyn Welch struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1680cf5276ceSMartyn Welch 1681cf5276ceSMartyn Welch if (priv->gpio_registered) { 1682cf5276ceSMartyn Welch gpiochip_remove(&priv->gc); 16836b7271d2SJohan Hovold priv->gpio_registered = false; 1684cf5276ceSMartyn Welch } 1685cf5276ceSMartyn Welch } 1686cf5276ceSMartyn Welch 1687cf5276ceSMartyn Welch #else 1688cf5276ceSMartyn Welch 1689c8acfe0aSKaroly Pados static int cp210x_gpio_init(struct usb_serial *serial) 1690cf5276ceSMartyn Welch { 1691cf5276ceSMartyn Welch return 0; 1692cf5276ceSMartyn Welch } 1693cf5276ceSMartyn Welch 1694cf5276ceSMartyn Welch static void cp210x_gpio_remove(struct usb_serial *serial) 1695cf5276ceSMartyn Welch { 1696cf5276ceSMartyn Welch /* Nothing to do */ 1697cf5276ceSMartyn Welch } 1698cf5276ceSMartyn Welch 1699cf5276ceSMartyn Welch #endif 1700cf5276ceSMartyn Welch 1701e2ae67a3SKonstantin Shkolnyy static int cp210x_port_probe(struct usb_serial_port *port) 170203ee2515SGreg Kroah-Hartman { 1703e2ae67a3SKonstantin Shkolnyy struct usb_serial *serial = port->serial; 1704e2ae67a3SKonstantin Shkolnyy struct cp210x_port_private *port_priv; 1705a5360a53SPreston Fick 1706e2ae67a3SKonstantin Shkolnyy port_priv = kzalloc(sizeof(*port_priv), GFP_KERNEL); 1707e2ae67a3SKonstantin Shkolnyy if (!port_priv) 1708a5360a53SPreston Fick return -ENOMEM; 1709a5360a53SPreston Fick 1710cf5276ceSMartyn Welch port_priv->bInterfaceNumber = cp210x_interface_num(serial); 1711a5360a53SPreston Fick 1712e2ae67a3SKonstantin Shkolnyy usb_set_serial_port_data(port, port_priv); 1713a5360a53SPreston Fick 171403ee2515SGreg Kroah-Hartman return 0; 171503ee2515SGreg Kroah-Hartman } 171603ee2515SGreg Kroah-Hartman 1717e2ae67a3SKonstantin Shkolnyy static int cp210x_port_remove(struct usb_serial_port *port) 1718a5360a53SPreston Fick { 1719e2ae67a3SKonstantin Shkolnyy struct cp210x_port_private *port_priv; 1720a5360a53SPreston Fick 1721e2ae67a3SKonstantin Shkolnyy port_priv = usb_get_serial_port_data(port); 1722e2ae67a3SKonstantin Shkolnyy kfree(port_priv); 1723e2ae67a3SKonstantin Shkolnyy 1724e2ae67a3SKonstantin Shkolnyy return 0; 1725a5360a53SPreston Fick } 1726a5360a53SPreston Fick 1727d4706c05SJohan Hovold static void cp210x_init_max_speed(struct usb_serial *serial) 1728d4706c05SJohan Hovold { 1729d4706c05SJohan Hovold struct cp210x_serial_private *priv = usb_get_serial_data(serial); 17307aecd7fcSJohan Hovold bool use_actual_rate = false; 173185bc2d91SJohanna Abrahamsson speed_t min = 300; 1732d4706c05SJohan Hovold speed_t max; 1733d4706c05SJohan Hovold 1734d4706c05SJohan Hovold switch (priv->partnum) { 1735d4706c05SJohan Hovold case CP210X_PARTNUM_CP2101: 1736d4706c05SJohan Hovold max = 921600; 1737d4706c05SJohan Hovold break; 1738d4706c05SJohan Hovold case CP210X_PARTNUM_CP2102: 1739d4706c05SJohan Hovold case CP210X_PARTNUM_CP2103: 1740d4706c05SJohan Hovold max = 1000000; 1741d4706c05SJohan Hovold break; 1742d4706c05SJohan Hovold case CP210X_PARTNUM_CP2104: 17435edb65a3SJohan Hovold use_actual_rate = true; 17445edb65a3SJohan Hovold max = 2000000; 17455edb65a3SJohan Hovold break; 1746d4706c05SJohan Hovold case CP210X_PARTNUM_CP2108: 1747d4706c05SJohan Hovold max = 2000000; 1748d4706c05SJohan Hovold break; 1749d4706c05SJohan Hovold case CP210X_PARTNUM_CP2105: 17505edb65a3SJohan Hovold if (cp210x_interface_num(serial) == 0) { 17515edb65a3SJohan Hovold use_actual_rate = true; 1752d4706c05SJohan Hovold max = 2000000; /* ECI */ 17535edb65a3SJohan Hovold } else { 175485bc2d91SJohanna Abrahamsson min = 2400; 1755d4706c05SJohan Hovold max = 921600; /* SCI */ 17565edb65a3SJohan Hovold } 1757d4706c05SJohan Hovold break; 17586f0bcf72SKaroly Pados case CP210X_PARTNUM_CP2102N_QFN28: 17596f0bcf72SKaroly Pados case CP210X_PARTNUM_CP2102N_QFN24: 17606f0bcf72SKaroly Pados case CP210X_PARTNUM_CP2102N_QFN20: 17617aecd7fcSJohan Hovold use_actual_rate = true; 17626f0bcf72SKaroly Pados max = 3000000; 17636f0bcf72SKaroly Pados break; 1764d4706c05SJohan Hovold default: 1765d4706c05SJohan Hovold max = 2000000; 1766d4706c05SJohan Hovold break; 1767d4706c05SJohan Hovold } 1768d4706c05SJohan Hovold 176985bc2d91SJohanna Abrahamsson priv->min_speed = min; 1770d4706c05SJohan Hovold priv->max_speed = max; 17717aecd7fcSJohan Hovold priv->use_actual_rate = use_actual_rate; 1772d4706c05SJohan Hovold } 1773d4706c05SJohan Hovold 1774cf5276ceSMartyn Welch static int cp210x_attach(struct usb_serial *serial) 1775cf5276ceSMartyn Welch { 1776cf5276ceSMartyn Welch int result; 1777cf5276ceSMartyn Welch struct cp210x_serial_private *priv; 1778cf5276ceSMartyn Welch 1779cf5276ceSMartyn Welch priv = kzalloc(sizeof(*priv), GFP_KERNEL); 1780cf5276ceSMartyn Welch if (!priv) 1781cf5276ceSMartyn Welch return -ENOMEM; 1782cf5276ceSMartyn Welch 1783cf5276ceSMartyn Welch result = cp210x_read_vendor_block(serial, REQTYPE_DEVICE_TO_HOST, 1784cf5276ceSMartyn Welch CP210X_GET_PARTNUM, &priv->partnum, 1785cf5276ceSMartyn Welch sizeof(priv->partnum)); 17867eac35eaSSebastian Frei if (result < 0) { 17877eac35eaSSebastian Frei dev_warn(&serial->interface->dev, 17887eac35eaSSebastian Frei "querying part number failed\n"); 17897eac35eaSSebastian Frei priv->partnum = CP210X_PARTNUM_UNKNOWN; 17907eac35eaSSebastian Frei } 1791cf5276ceSMartyn Welch 1792cf5276ceSMartyn Welch usb_set_serial_data(serial, priv); 1793cf5276ceSMartyn Welch 1794d4706c05SJohan Hovold cp210x_init_max_speed(serial); 1795d4706c05SJohan Hovold 1796c8acfe0aSKaroly Pados result = cp210x_gpio_init(serial); 1797cf5276ceSMartyn Welch if (result < 0) { 1798c8acfe0aSKaroly Pados dev_err(&serial->interface->dev, "GPIO initialisation failed: %d\n", 1799c8acfe0aSKaroly Pados result); 1800cf5276ceSMartyn Welch } 1801cf5276ceSMartyn Welch 1802cf5276ceSMartyn Welch return 0; 1803cf5276ceSMartyn Welch } 1804cf5276ceSMartyn Welch 1805cf5276ceSMartyn Welch static void cp210x_disconnect(struct usb_serial *serial) 1806cf5276ceSMartyn Welch { 1807cf5276ceSMartyn Welch cp210x_gpio_remove(serial); 1808cf5276ceSMartyn Welch } 1809cf5276ceSMartyn Welch 1810cf5276ceSMartyn Welch static void cp210x_release(struct usb_serial *serial) 1811cf5276ceSMartyn Welch { 1812cf5276ceSMartyn Welch struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1813cf5276ceSMartyn Welch 1814cf5276ceSMartyn Welch cp210x_gpio_remove(serial); 1815cf5276ceSMartyn Welch 1816cf5276ceSMartyn Welch kfree(priv); 1817cf5276ceSMartyn Welch } 1818cf5276ceSMartyn Welch 181968e24113SGreg Kroah-Hartman module_usb_serial_driver(serial_drivers, id_table); 182003ee2515SGreg Kroah-Hartman 182103ee2515SGreg Kroah-Hartman MODULE_DESCRIPTION(DRIVER_DESC); 1822627cfa89SJohan Hovold MODULE_LICENSE("GPL v2"); 1823