xref: /linux/drivers/usb/serial/cp210x.c (revision 6f0bcf720ea81e90e6066d14d5506565049a2eb5)
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 *);
344f2ab888SJohan Hovold static void cp210x_get_termios(struct tty_struct *, struct usb_serial_port *);
354cc27bd6SCraig Shelley static void cp210x_get_termios_port(struct usb_serial_port *port,
36009615abSGeert Uytterhoeven 	tcflag_t *cflagp, unsigned int *baudp);
37e5990874SJohan Hovold static void cp210x_change_speed(struct tty_struct *, struct usb_serial_port *,
38e5990874SJohan Hovold 							struct ktermios *);
394cc27bd6SCraig Shelley static void cp210x_set_termios(struct tty_struct *, struct usb_serial_port *,
4003ee2515SGreg Kroah-Hartman 							struct ktermios*);
416f923a01SKonstantin Shkolnyy static bool cp210x_tx_empty(struct usb_serial_port *port);
4260b33c13SAlan Cox static int cp210x_tiocmget(struct tty_struct *);
4320b9d177SAlan Cox static int cp210x_tiocmset(struct tty_struct *, unsigned int, unsigned int);
4420b9d177SAlan Cox static int cp210x_tiocmset_port(struct usb_serial_port *port,
45d2ad67b3SVomLehn 		unsigned int, unsigned int);
464cc27bd6SCraig Shelley static void cp210x_break_ctl(struct tty_struct *, int);
47cf5276ceSMartyn Welch static int cp210x_attach(struct usb_serial *);
48cf5276ceSMartyn Welch static void cp210x_disconnect(struct usb_serial *);
49cf5276ceSMartyn Welch static void cp210x_release(struct usb_serial *);
50e2ae67a3SKonstantin Shkolnyy static int cp210x_port_probe(struct usb_serial_port *);
51e2ae67a3SKonstantin Shkolnyy static int cp210x_port_remove(struct usb_serial_port *);
52d94c7bd4SAlan Cox static void cp210x_dtr_rts(struct usb_serial_port *p, int on);
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 */
64eefd9029SCraig Shelley 	{ USB_DEVICE(0x0BED, 0x1100) }, /* MEI (TM) Cashflow-SC Bill/Voucher Acceptor */
65eefd9029SCraig Shelley 	{ USB_DEVICE(0x0BED, 0x1101) }, /* MEI series 2000 Combo Acceptor */
6603ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x0FCF, 0x1003) }, /* Dynastream ANT development board */
6703ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x0FCF, 0x1004) }, /* Dynastream ANT2USB */
6803ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x0FCF, 0x1006) }, /* Dynastream ANT development board */
698de7f4daSLuis Llorente Campo 	{ USB_DEVICE(0x0FDE, 0xCA05) }, /* OWL Wireless Electricity Monitor CM-160 */
7003ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10A6, 0xAA26) }, /* Knock-off DCU-11 cable */
7103ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10AB, 0x10C5) }, /* Siemens MC60 Cable */
7203ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10B5, 0xAC70) }, /* Nokia CA-42 USB */
73b7c7cbc8SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x0F91) }, /* Vstabi */
740601e116SAmit Kucheria 	{ USB_DEVICE(0x10C4, 0x1101) }, /* Arkham Technology DS101 Bus Monitor */
750601e116SAmit Kucheria 	{ USB_DEVICE(0x10C4, 0x1601) }, /* Arkham Technology DS101 Adapter */
7603ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x800A) }, /* SPORTident BSM7-D-USB main station */
7703ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x803B) }, /* Pololu USB-serial converter */
78eefd9029SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x8044) }, /* Cygnal Debug Adapter */
79eefd9029SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x804E) }, /* Software Bisque Paramount ME build-in converter */
8003ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x8053) }, /* Enfora EDG1228 */
8103ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x8054) }, /* Enfora GSM2228 */
8203ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x8066) }, /* Argussoft In-System Programmer */
83eefd9029SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x806F) }, /* IMS USB to RS422 Converter Cable */
8403ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x807A) }, /* Crumb128 board */
855bbfa6f4SMikko Tuumanen 	{ USB_DEVICE(0x10C4, 0x80C4) }, /* Cygnal Integrated Products, Inc., Optris infrared thermometer */
8603ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x80CA) }, /* Degree Controls Inc */
8703ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x80DD) }, /* Tracient RFID */
8803ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x80F6) }, /* Suunto sports instrument */
8903ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x8115) }, /* Arygon NFC/Mifare Reader */
9003ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x813D) }, /* Burnside Telecom Deskmobile */
918bf16ba7SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x813F) }, /* Tams Master Easy Control */
9203ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x814A) }, /* West Mountain Radio RIGblaster P&P */
9303ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x814B) }, /* West Mountain Radio RIGtalk */
94a57e82a1SSteve Conklin 	{ USB_DEVICE(0x2405, 0x0003) }, /* West Mountain Radio RIGblaster Advantage */
950bf7a81cSJason Detring 	{ USB_DEVICE(0x10C4, 0x8156) }, /* B&G H3000 link cable */
9603ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x815E) }, /* Helicomm IP-Link 1220-DVM */
973fcc8f96SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x815F) }, /* Timewave HamLinkUSB */
98eefd9029SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x818B) }, /* AVIT Research USB to TTL */
9903ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x819F) }, /* MJS USB Toslink Switcher */
10003ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x81A6) }, /* ThinkOptics WavIt */
10108e87d0dSMalte Schröder 	{ USB_DEVICE(0x10C4, 0x81A9) }, /* Multiplex RC Interface */
10203ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x81AC) }, /* MSD Dash Hawk */
103eefd9029SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x81AD) }, /* INSYS USB Modem */
10403ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x81C8) }, /* Lipowsky Industrie Elektronik GmbH, Baby-JTAG */
105f487c54dSPeter Dedecker 	{ USB_DEVICE(0x10C4, 0x81D7) }, /* IAI Corp. RCB-CV-USB USB to RS485 Adaptor */
10603ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x81E2) }, /* Lipowsky Industrie Elektronik GmbH, Baby-LIN */
10703ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x81E7) }, /* Aerocomm Radio */
108bd07c551SAlan Cox 	{ USB_DEVICE(0x10C4, 0x81E8) }, /* Zephyr Bioharness */
109b7c7cbc8SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x81F2) }, /* C1007 HF band RFID controller */
11003ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x8218) }, /* Lipowsky Industrie Elektronik GmbH, HARP-1 */
11103ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x822B) }, /* Modem EDGE(GSM) Comander 2 */
11225985edcSLucas De Marchi 	{ USB_DEVICE(0x10C4, 0x826B) }, /* Cygnal Integrated Products, Inc., Fasttrax GPS demonstration module */
11372b30079STristan Bruns 	{ USB_DEVICE(0x10C4, 0x8281) }, /* Nanotec Plug & Drive */
114c851e83fSFlorian Fainelli 	{ USB_DEVICE(0x10C4, 0x8293) }, /* Telegesis ETRX2USB */
115613ac23aSJasem Mutlaq 	{ USB_DEVICE(0x10C4, 0x82F4) }, /* Starizona MicroTouch */
116b7c7cbc8SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x82F9) }, /* Procyon AVS */
11703ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x8341) }, /* Siemens MC35PU GPRS Modem */
1188bf16ba7SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x8382) }, /* Cygnal Integrated Products, Inc. */
11903ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x83A8) }, /* Amber Wireless AMB2560 */
120faea63f7SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x83D8) }, /* DekTec DTA Plus VHF/UHF Booster/Attenuator */
1218bf16ba7SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x8411) }, /* Kyocera GPS Module */
122faea63f7SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x8418) }, /* IRZ Automation Teleport SG-10 GSM/GPRS Modem */
123d23bac9fSAlex Stephens 	{ USB_DEVICE(0x10C4, 0x846E) }, /* BEI USB Sensor Interface (VCP) */
124decc5360SKyle Jones 	{ USB_DEVICE(0x10C4, 0x8470) }, /* Juniper Networks BX Series System Console */
125541e05ecSCraig Shelley 	{ USB_DEVICE(0x10C4, 0x8477) }, /* Balluff RFID */
126613ac23aSJasem Mutlaq 	{ USB_DEVICE(0x10C4, 0x84B6) }, /* Starizona Hyperion */
12743074132SDiego Elio Pettenò 	{ USB_DEVICE(0x10C4, 0x85A7) }, /* LifeScan OneTouch Verio IQ */
1284eff0b40SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x85EA) }, /* AC-Services IBUS-IF */
1294eff0b40SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x85EB) }, /* AC-Services CIS-IBUS */
130356fe44fSMarkus Becker 	{ USB_DEVICE(0x10C4, 0x85F8) }, /* Virtenio Preon32 */
1314eff0b40SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x8664) }, /* AC-Services CAN-IF */
1324eff0b40SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x8665) }, /* AC-Services OBD-IF */
1331ae78a48SDavid Peterson 	{ USB_DEVICE(0x10C4, 0x8856) },	/* CEL EM357 ZigBee USB Stick - LR */
1341ae78a48SDavid Peterson 	{ USB_DEVICE(0x10C4, 0x8857) },	/* CEL EM357 ZigBee USB Stick */
13576811569SSami Rahman 	{ USB_DEVICE(0x10C4, 0x88A4) }, /* MMB Networks ZigBee USB Device */
13676811569SSami Rahman 	{ USB_DEVICE(0x10C4, 0x88A5) }, /* Planet Innovation Ingeni ZigBee USB Device */
137bfc2d7dfSJoe Savage 	{ USB_DEVICE(0x10C4, 0x8946) }, /* Ketra N1 Wireless Interface */
1382ab13292SPaul Jakma 	{ USB_DEVICE(0x10C4, 0x8962) }, /* Brim Brothers charging dock */
1391ae78a48SDavid Peterson 	{ USB_DEVICE(0x10C4, 0x8977) },	/* CEL MeshWorks DevKit Device */
140c735ed74SMark Edwards 	{ USB_DEVICE(0x10C4, 0x8998) }, /* KCF Technologies PRN */
141df72d588SJohn D. Blair 	{ USB_DEVICE(0x10C4, 0x8A2A) }, /* HubZ dual ZigBee and Z-Wave dongle */
142fd90f73aSJeremie Rapin 	{ USB_DEVICE(0x10C4, 0x8A5E) }, /* CEL EM3588 ZigBee USB Stick Long Range */
1439585e340SStefan Triller 	{ USB_DEVICE(0x10C4, 0x8B34) }, /* Qivicon ZigBee USB Radio Stick */
14403ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0xEA60) }, /* Silicon Labs factory default */
14503ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0xEA61) }, /* Silicon Labs factory default */
146a5360a53SPreston Fick 	{ USB_DEVICE(0x10C4, 0xEA70) }, /* Silicon Labs factory default */
147eefd9029SCraig Shelley 	{ USB_DEVICE(0x10C4, 0xEA71) }, /* Infinity GPS-MIC-1 Radio Monophone */
14803ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0xF001) }, /* Elan Digital Systems USBscope50 */
14903ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0xF002) }, /* Elan Digital Systems USBwave12 */
15003ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0xF003) }, /* Elan Digital Systems USBpulse100 */
15103ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0xF004) }, /* Elan Digital Systems USBcount50 */
15203ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C5, 0xEA61) }, /* Silicon Labs MobiData GPRS USB Modem */
153b7c7cbc8SCraig Shelley 	{ USB_DEVICE(0x10CE, 0xEA6A) }, /* Silicon Labs MobiData GPRS USB Modem 100EU */
1541d377f4dSMike Manning 	{ USB_DEVICE(0x12B8, 0xEC60) }, /* Link G4 ECU */
1551d377f4dSMike Manning 	{ USB_DEVICE(0x12B8, 0xEC62) }, /* Link G4+ ECU */
15603ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x13AD, 0x9999) }, /* Baltech card reader */
157b7c7cbc8SCraig Shelley 	{ USB_DEVICE(0x1555, 0x0004) }, /* Owen AC4 USB-RS485 Converter */
1581f1e82f7SJohan Hovold 	{ USB_DEVICE(0x155A, 0x1006) },	/* ELDAT Easywave RX09 */
1593fcc8f96SCraig Shelley 	{ USB_DEVICE(0x166A, 0x0201) }, /* Clipsal 5500PACA C-Bus Pascal Automation Controller */
1603fcc8f96SCraig Shelley 	{ USB_DEVICE(0x166A, 0x0301) }, /* Clipsal 5800PC C-Bus Wireless PC Interface */
16103ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x166A, 0x0303) }, /* Clipsal 5500PCU C-Bus USB interface */
1623fcc8f96SCraig Shelley 	{ USB_DEVICE(0x166A, 0x0304) }, /* Clipsal 5000CT2 C-Bus Black and White Touchscreen */
1633fcc8f96SCraig Shelley 	{ USB_DEVICE(0x166A, 0x0305) }, /* Clipsal C-5000CT2 C-Bus Spectrum Colour Touchscreen */
1643fcc8f96SCraig Shelley 	{ USB_DEVICE(0x166A, 0x0401) }, /* Clipsal L51xx C-Bus Architectural Dimmer */
1653fcc8f96SCraig Shelley 	{ USB_DEVICE(0x166A, 0x0101) }, /* Clipsal 5560884 C-Bus Multi-room Audio Matrix Switcher */
166675af708SMichiel vd Garde 	{ USB_DEVICE(0x16C0, 0x09B0) }, /* Lunatico Seletek */
167675af708SMichiel vd Garde 	{ USB_DEVICE(0x16C0, 0x09B1) }, /* Lunatico Seletek */
16803ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x16D6, 0x0001) }, /* Jablotron serial interface */
169356c5a48SAlessio Igor Bogani 	{ USB_DEVICE(0x16DC, 0x0010) }, /* W-IE-NE-R Plein & Baus GmbH PL512 Power Supply */
170356c5a48SAlessio Igor Bogani 	{ USB_DEVICE(0x16DC, 0x0011) }, /* W-IE-NE-R Plein & Baus GmbH RCM Remote Control for MARATON Power Supply */
171356c5a48SAlessio Igor Bogani 	{ USB_DEVICE(0x16DC, 0x0012) }, /* W-IE-NE-R Plein & Baus GmbH MPOD Multi Channel Power Supply */
172356c5a48SAlessio Igor Bogani 	{ USB_DEVICE(0x16DC, 0x0015) }, /* W-IE-NE-R Plein & Baus GmbH CML Control, Monitoring and Data Logger */
173c6c1e449SBruno Thomsen 	{ USB_DEVICE(0x17A8, 0x0001) }, /* Kamstrup Optical Eye/3-wire */
174c6c1e449SBruno Thomsen 	{ USB_DEVICE(0x17A8, 0x0005) }, /* Kamstrup M-Bus Master MultiPort 250D */
175541e05ecSCraig Shelley 	{ USB_DEVICE(0x17F4, 0xAAAA) }, /* Wavesense Jazz blood glucose meter */
176541e05ecSCraig Shelley 	{ USB_DEVICE(0x1843, 0x0200) }, /* Vaisala USB Instrument Cable */
177541e05ecSCraig Shelley 	{ USB_DEVICE(0x18EF, 0xE00F) }, /* ELV USB-I2C-Interface */
178f7d7f59aSOliver Freyermuth 	{ USB_DEVICE(0x18EF, 0xE025) }, /* ELV Marble Sound Board 1 */
179d14ac576SChristian Holl 	{ USB_DEVICE(0x18EF, 0xE030) }, /* ELV ALC 8xxx Battery Charger */
180c496ad83SAndreas Engel 	{ USB_DEVICE(0x18EF, 0xE032) }, /* ELV TFD500 Data Logger */
1816627ae19SKen Lin 	{ USB_DEVICE(0x1901, 0x0190) }, /* GE B850 CP2105 Recorder interface */
1826627ae19SKen Lin 	{ USB_DEVICE(0x1901, 0x0193) }, /* GE B650 CP2104 PMC interface */
183cddc9434SMartyn Welch 	{ USB_DEVICE(0x1901, 0x0194) },	/* GE Healthcare Remote Alarm Box */
1849a593656SKen Lin 	{ USB_DEVICE(0x1901, 0x0195) },	/* GE B850/B650/B450 CP2104 DP UART interface */
1859a593656SKen Lin 	{ USB_DEVICE(0x1901, 0x0196) },	/* GE B850 CP2105 DP UART interface */
1863c4c615dSVittorio Alfieri 	{ USB_DEVICE(0x19CF, 0x3000) }, /* Parrot NMEA GPS Flight Recorder */
187b579fa52SBarry Grussling 	{ USB_DEVICE(0x1ADB, 0x0001) }, /* Schweitzer Engineering C662 Cable */
188b9326057SAndras Kovacs 	{ USB_DEVICE(0x1B1C, 0x1C00) }, /* Corsair USB Dongle */
18935cc83eaSNathaniel Ting 	{ USB_DEVICE(0x1BA4, 0x0002) },	/* Silicon Labs 358x factory default */
19093ad03d6SAnders Larsen 	{ USB_DEVICE(0x1BE3, 0x07A6) }, /* WAGO 750-923 USB Service Cable */
191dee80ad1SAndreas Bomholtz 	{ USB_DEVICE(0x1D6F, 0x0010) }, /* Seluxit ApS RF Dongle */
1923fcc8f96SCraig Shelley 	{ USB_DEVICE(0x1E29, 0x0102) }, /* Festo CPX-USB */
1933fcc8f96SCraig Shelley 	{ USB_DEVICE(0x1E29, 0x0501) }, /* Festo CMSP */
194be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0100) }, /* Lake Shore Model 121 Current Source */
195be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0200) }, /* Lake Shore Model 218A Temperature Monitor */
196be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0201) }, /* Lake Shore Model 219 Temperature Monitor */
197be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0202) }, /* Lake Shore Model 233 Temperature Transmitter */
198be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0203) }, /* Lake Shore Model 235 Temperature Transmitter */
199be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0300) }, /* Lake Shore Model 335 Temperature Controller */
200be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0301) }, /* Lake Shore Model 336 Temperature Controller */
201be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0302) }, /* Lake Shore Model 350 Temperature Controller */
202be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0303) }, /* Lake Shore Model 371 AC Bridge */
203be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0400) }, /* Lake Shore Model 411 Handheld Gaussmeter */
204be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0401) }, /* Lake Shore Model 425 Gaussmeter */
205be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0402) }, /* Lake Shore Model 455A Gaussmeter */
206be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0403) }, /* Lake Shore Model 475A Gaussmeter */
207be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0404) }, /* Lake Shore Model 465 Three Axis Gaussmeter */
208be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0600) }, /* Lake Shore Model 625A Superconducting MPS */
209be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0601) }, /* Lake Shore Model 642A Magnet Power Supply */
210be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0602) }, /* Lake Shore Model 648 Magnet Power Supply */
211be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0700) }, /* Lake Shore Model 737 VSM Controller */
212be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0701) }, /* Lake Shore Model 776 Hall Matrix */
213f98a7aa8SPeter Sanford 	{ USB_DEVICE(0x2626, 0xEA60) }, /* Aruba Networks 7xxx USB Serial Console */
214791b7d7cSRenato Caldas 	{ USB_DEVICE(0x3195, 0xF190) }, /* Link Instruments MSO-19 */
2153fcc8f96SCraig Shelley 	{ USB_DEVICE(0x3195, 0xF280) }, /* Link Instruments MSO-28 */
2163fcc8f96SCraig Shelley 	{ USB_DEVICE(0x3195, 0xF281) }, /* Link Instruments MSO-28 */
2171e23aaceSKyle Roeschley 	{ USB_DEVICE(0x3923, 0x7A0B) }, /* National Instruments USB Serial Console */
218541e05ecSCraig Shelley 	{ USB_DEVICE(0x413C, 0x9500) }, /* DW700 GPS USB interface */
21903ee2515SGreg Kroah-Hartman 	{ } /* Terminating Entry */
22003ee2515SGreg Kroah-Hartman };
22103ee2515SGreg Kroah-Hartman 
22203ee2515SGreg Kroah-Hartman MODULE_DEVICE_TABLE(usb, id_table);
22303ee2515SGreg Kroah-Hartman 
224cf5276ceSMartyn Welch struct cp210x_serial_private {
225cf5276ceSMartyn Welch #ifdef CONFIG_GPIOLIB
226cf5276ceSMartyn Welch 	struct gpio_chip	gc;
227cf5276ceSMartyn Welch 	u8			config;
228cf5276ceSMartyn Welch 	u8			gpio_mode;
2296b7271d2SJohan Hovold 	bool			gpio_registered;
230cf5276ceSMartyn Welch #endif
231cf5276ceSMartyn Welch 	u8			partnum;
232d4706c05SJohan Hovold 	speed_t			max_speed;
233cf5276ceSMartyn Welch };
234cf5276ceSMartyn Welch 
235e2ae67a3SKonstantin Shkolnyy struct cp210x_port_private {
236a5360a53SPreston Fick 	__u8			bInterfaceNumber;
237d0bf1ff0SKonstantin Shkolnyy 	bool			has_swapped_line_ctl;
238a5360a53SPreston Fick };
239a5360a53SPreston Fick 
2404cc27bd6SCraig Shelley static struct usb_serial_driver cp210x_device = {
24103ee2515SGreg Kroah-Hartman 	.driver = {
24203ee2515SGreg Kroah-Hartman 		.owner =	THIS_MODULE,
2434cc27bd6SCraig Shelley 		.name =		"cp210x",
24403ee2515SGreg Kroah-Hartman 	},
24503ee2515SGreg Kroah-Hartman 	.id_table		= id_table,
24603ee2515SGreg Kroah-Hartman 	.num_ports		= 1,
247aea006b9SJohan Hovold 	.bulk_in_size		= 256,
248d4e598f6SJohan Hovold 	.bulk_out_size		= 256,
2494cc27bd6SCraig Shelley 	.open			= cp210x_open,
2504cc27bd6SCraig Shelley 	.close			= cp210x_close,
2514cc27bd6SCraig Shelley 	.break_ctl		= cp210x_break_ctl,
2524cc27bd6SCraig Shelley 	.set_termios		= cp210x_set_termios,
2536f923a01SKonstantin Shkolnyy 	.tx_empty		= cp210x_tx_empty,
2544cc27bd6SCraig Shelley 	.tiocmget		= cp210x_tiocmget,
2554cc27bd6SCraig Shelley 	.tiocmset		= cp210x_tiocmset,
256cf5276ceSMartyn Welch 	.attach			= cp210x_attach,
257cf5276ceSMartyn Welch 	.disconnect		= cp210x_disconnect,
258cf5276ceSMartyn Welch 	.release		= cp210x_release,
259e2ae67a3SKonstantin Shkolnyy 	.port_probe		= cp210x_port_probe,
260e2ae67a3SKonstantin Shkolnyy 	.port_remove		= cp210x_port_remove,
261d14fc1a7SLibor Pechacek 	.dtr_rts		= cp210x_dtr_rts
26203ee2515SGreg Kroah-Hartman };
26303ee2515SGreg Kroah-Hartman 
26408a4f6bcSAlan Stern static struct usb_serial_driver * const serial_drivers[] = {
26508a4f6bcSAlan Stern 	&cp210x_device, NULL
26608a4f6bcSAlan Stern };
26708a4f6bcSAlan Stern 
26803ee2515SGreg Kroah-Hartman /* Config request types */
26932445605SPreston Fick #define REQTYPE_HOST_TO_INTERFACE	0x41
27032445605SPreston Fick #define REQTYPE_INTERFACE_TO_HOST	0xc1
27132445605SPreston Fick #define REQTYPE_HOST_TO_DEVICE	0x40
27232445605SPreston Fick #define REQTYPE_DEVICE_TO_HOST	0xc0
27303ee2515SGreg Kroah-Hartman 
27493ef1f1fSCraig Shelley /* Config request codes */
27593ef1f1fSCraig Shelley #define CP210X_IFC_ENABLE	0x00
27693ef1f1fSCraig Shelley #define CP210X_SET_BAUDDIV	0x01
27793ef1f1fSCraig Shelley #define CP210X_GET_BAUDDIV	0x02
27893ef1f1fSCraig Shelley #define CP210X_SET_LINE_CTL	0x03
27993ef1f1fSCraig Shelley #define CP210X_GET_LINE_CTL	0x04
28093ef1f1fSCraig Shelley #define CP210X_SET_BREAK	0x05
28193ef1f1fSCraig Shelley #define CP210X_IMM_CHAR		0x06
28293ef1f1fSCraig Shelley #define CP210X_SET_MHS		0x07
28393ef1f1fSCraig Shelley #define CP210X_GET_MDMSTS	0x08
28493ef1f1fSCraig Shelley #define CP210X_SET_XON		0x09
28593ef1f1fSCraig Shelley #define CP210X_SET_XOFF		0x0A
28693ef1f1fSCraig Shelley #define CP210X_SET_EVENTMASK	0x0B
28793ef1f1fSCraig Shelley #define CP210X_GET_EVENTMASK	0x0C
28893ef1f1fSCraig Shelley #define CP210X_SET_CHAR		0x0D
28993ef1f1fSCraig Shelley #define CP210X_GET_CHARS	0x0E
29093ef1f1fSCraig Shelley #define CP210X_GET_PROPS	0x0F
29193ef1f1fSCraig Shelley #define CP210X_GET_COMM_STATUS	0x10
29293ef1f1fSCraig Shelley #define CP210X_RESET		0x11
29393ef1f1fSCraig Shelley #define CP210X_PURGE		0x12
29493ef1f1fSCraig Shelley #define CP210X_SET_FLOW		0x13
29593ef1f1fSCraig Shelley #define CP210X_GET_FLOW		0x14
29693ef1f1fSCraig Shelley #define CP210X_EMBED_EVENTS	0x15
29793ef1f1fSCraig Shelley #define CP210X_GET_EVENTSTATE	0x16
29893ef1f1fSCraig Shelley #define CP210X_SET_CHARS	0x19
2997f482fc8SPreston Fick #define CP210X_GET_BAUDRATE	0x1D
3007f482fc8SPreston Fick #define CP210X_SET_BAUDRATE	0x1E
301cf5276ceSMartyn Welch #define CP210X_VENDOR_SPECIFIC	0xFF
30203ee2515SGreg Kroah-Hartman 
30393ef1f1fSCraig Shelley /* CP210X_IFC_ENABLE */
30403ee2515SGreg Kroah-Hartman #define UART_ENABLE		0x0001
30503ee2515SGreg Kroah-Hartman #define UART_DISABLE		0x0000
30603ee2515SGreg Kroah-Hartman 
30793ef1f1fSCraig Shelley /* CP210X_(SET|GET)_BAUDDIV */
30803ee2515SGreg Kroah-Hartman #define BAUD_RATE_GEN_FREQ	0x384000
30903ee2515SGreg Kroah-Hartman 
31093ef1f1fSCraig Shelley /* CP210X_(SET|GET)_LINE_CTL */
31103ee2515SGreg Kroah-Hartman #define BITS_DATA_MASK		0X0f00
31203ee2515SGreg Kroah-Hartman #define BITS_DATA_5		0X0500
31303ee2515SGreg Kroah-Hartman #define BITS_DATA_6		0X0600
31403ee2515SGreg Kroah-Hartman #define BITS_DATA_7		0X0700
31503ee2515SGreg Kroah-Hartman #define BITS_DATA_8		0X0800
31603ee2515SGreg Kroah-Hartman #define BITS_DATA_9		0X0900
31703ee2515SGreg Kroah-Hartman 
31803ee2515SGreg Kroah-Hartman #define BITS_PARITY_MASK	0x00f0
31903ee2515SGreg Kroah-Hartman #define BITS_PARITY_NONE	0x0000
32003ee2515SGreg Kroah-Hartman #define BITS_PARITY_ODD		0x0010
32103ee2515SGreg Kroah-Hartman #define BITS_PARITY_EVEN	0x0020
32203ee2515SGreg Kroah-Hartman #define BITS_PARITY_MARK	0x0030
32303ee2515SGreg Kroah-Hartman #define BITS_PARITY_SPACE	0x0040
32403ee2515SGreg Kroah-Hartman 
32503ee2515SGreg Kroah-Hartman #define BITS_STOP_MASK		0x000f
32603ee2515SGreg Kroah-Hartman #define BITS_STOP_1		0x0000
32703ee2515SGreg Kroah-Hartman #define BITS_STOP_1_5		0x0001
32803ee2515SGreg Kroah-Hartman #define BITS_STOP_2		0x0002
32903ee2515SGreg Kroah-Hartman 
33093ef1f1fSCraig Shelley /* CP210X_SET_BREAK */
33172916791SCraig Shelley #define BREAK_ON		0x0001
33272916791SCraig Shelley #define BREAK_OFF		0x0000
33303ee2515SGreg Kroah-Hartman 
33493ef1f1fSCraig Shelley /* CP210X_(SET_MHS|GET_MDMSTS) */
33503ee2515SGreg Kroah-Hartman #define CONTROL_DTR		0x0001
33603ee2515SGreg Kroah-Hartman #define CONTROL_RTS		0x0002
33703ee2515SGreg Kroah-Hartman #define CONTROL_CTS		0x0010
33803ee2515SGreg Kroah-Hartman #define CONTROL_DSR		0x0020
33903ee2515SGreg Kroah-Hartman #define CONTROL_RING		0x0040
34003ee2515SGreg Kroah-Hartman #define CONTROL_DCD		0x0080
34103ee2515SGreg Kroah-Hartman #define CONTROL_WRITE_DTR	0x0100
34203ee2515SGreg Kroah-Hartman #define CONTROL_WRITE_RTS	0x0200
34303ee2515SGreg Kroah-Hartman 
344cf5276ceSMartyn Welch /* CP210X_VENDOR_SPECIFIC values */
345cf5276ceSMartyn Welch #define CP210X_READ_LATCH	0x00C2
346cf5276ceSMartyn Welch #define CP210X_GET_PARTNUM	0x370B
347cf5276ceSMartyn Welch #define CP210X_GET_PORTCONFIG	0x370C
348cf5276ceSMartyn Welch #define CP210X_GET_DEVICEMODE	0x3711
349cf5276ceSMartyn Welch #define CP210X_WRITE_LATCH	0x37E1
350cf5276ceSMartyn Welch 
351cf5276ceSMartyn Welch /* Part number definitions */
352cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2101	0x01
353cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2102	0x02
354cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2103	0x03
355cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2104	0x04
356cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2105	0x05
357cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2108	0x08
358*6f0bcf72SKaroly Pados #define CP210X_PARTNUM_CP2102N_QFN28	0x20
359*6f0bcf72SKaroly Pados #define CP210X_PARTNUM_CP2102N_QFN24	0x21
360*6f0bcf72SKaroly Pados #define CP210X_PARTNUM_CP2102N_QFN20	0x22
3617eac35eaSSebastian Frei #define CP210X_PARTNUM_UNKNOWN	0xFF
362cf5276ceSMartyn Welch 
3636f923a01SKonstantin Shkolnyy /* CP210X_GET_COMM_STATUS returns these 0x13 bytes */
3646f923a01SKonstantin Shkolnyy struct cp210x_comm_status {
3656f923a01SKonstantin Shkolnyy 	__le32   ulErrors;
3666f923a01SKonstantin Shkolnyy 	__le32   ulHoldReasons;
3676f923a01SKonstantin Shkolnyy 	__le32   ulAmountInInQueue;
3686f923a01SKonstantin Shkolnyy 	__le32   ulAmountInOutQueue;
3696f923a01SKonstantin Shkolnyy 	u8       bEofReceived;
3706f923a01SKonstantin Shkolnyy 	u8       bWaitForImmediate;
3716f923a01SKonstantin Shkolnyy 	u8       bReserved;
3726f923a01SKonstantin Shkolnyy } __packed;
3736f923a01SKonstantin Shkolnyy 
37403ee2515SGreg Kroah-Hartman /*
375ebfb319bSKonstantin Shkolnyy  * CP210X_PURGE - 16 bits passed in wValue of USB request.
376ebfb319bSKonstantin Shkolnyy  * SiLabs app note AN571 gives a strange description of the 4 bits:
377ebfb319bSKonstantin Shkolnyy  * bit 0 or bit 2 clears the transmit queue and 1 or 3 receive.
378ebfb319bSKonstantin Shkolnyy  * writing 1 to all, however, purges cp2108 well enough to avoid the hang.
379ebfb319bSKonstantin Shkolnyy  */
380ebfb319bSKonstantin Shkolnyy #define PURGE_ALL		0x000f
381ebfb319bSKonstantin Shkolnyy 
3829034389cSKonstantin Shkolnyy /* CP210X_GET_FLOW/CP210X_SET_FLOW read/write these 0x10 bytes */
3839034389cSKonstantin Shkolnyy struct cp210x_flow_ctl {
3849034389cSKonstantin Shkolnyy 	__le32	ulControlHandshake;
3859034389cSKonstantin Shkolnyy 	__le32	ulFlowReplace;
3869034389cSKonstantin Shkolnyy 	__le32	ulXonLimit;
3879034389cSKonstantin Shkolnyy 	__le32	ulXoffLimit;
3889034389cSKonstantin Shkolnyy } __packed;
3899034389cSKonstantin Shkolnyy 
3909034389cSKonstantin Shkolnyy /* cp210x_flow_ctl::ulControlHandshake */
3919034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DTR_MASK		GENMASK(1, 0)
3929034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DTR_SHIFT(_mode)	(_mode)
3939034389cSKonstantin Shkolnyy #define CP210X_SERIAL_CTS_HANDSHAKE	BIT(3)
3949034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DSR_HANDSHAKE	BIT(4)
3959034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DCD_HANDSHAKE	BIT(5)
3969034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DSR_SENSITIVITY	BIT(6)
3979034389cSKonstantin Shkolnyy 
3989034389cSKonstantin Shkolnyy /* values for cp210x_flow_ctl::ulControlHandshake::CP210X_SERIAL_DTR_MASK */
3999034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DTR_INACTIVE	0
4009034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DTR_ACTIVE	1
4019034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DTR_FLOW_CTL	2
4029034389cSKonstantin Shkolnyy 
4039034389cSKonstantin Shkolnyy /* cp210x_flow_ctl::ulFlowReplace */
4049034389cSKonstantin Shkolnyy #define CP210X_SERIAL_AUTO_TRANSMIT	BIT(0)
4059034389cSKonstantin Shkolnyy #define CP210X_SERIAL_AUTO_RECEIVE	BIT(1)
4069034389cSKonstantin Shkolnyy #define CP210X_SERIAL_ERROR_CHAR	BIT(2)
4079034389cSKonstantin Shkolnyy #define CP210X_SERIAL_NULL_STRIPPING	BIT(3)
4089034389cSKonstantin Shkolnyy #define CP210X_SERIAL_BREAK_CHAR	BIT(4)
4099034389cSKonstantin Shkolnyy #define CP210X_SERIAL_RTS_MASK		GENMASK(7, 6)
4109034389cSKonstantin Shkolnyy #define CP210X_SERIAL_RTS_SHIFT(_mode)	(_mode << 6)
4119034389cSKonstantin Shkolnyy #define CP210X_SERIAL_XOFF_CONTINUE	BIT(31)
4129034389cSKonstantin Shkolnyy 
4139034389cSKonstantin Shkolnyy /* values for cp210x_flow_ctl::ulFlowReplace::CP210X_SERIAL_RTS_MASK */
4149034389cSKonstantin Shkolnyy #define CP210X_SERIAL_RTS_INACTIVE	0
4159034389cSKonstantin Shkolnyy #define CP210X_SERIAL_RTS_ACTIVE	1
4169034389cSKonstantin Shkolnyy #define CP210X_SERIAL_RTS_FLOW_CTL	2
4179034389cSKonstantin Shkolnyy 
418cf5276ceSMartyn Welch /* CP210X_VENDOR_SPECIFIC, CP210X_GET_DEVICEMODE call reads these 0x2 bytes. */
419cf5276ceSMartyn Welch struct cp210x_pin_mode {
420cf5276ceSMartyn Welch 	u8	eci;
421cf5276ceSMartyn Welch 	u8	sci;
422cf5276ceSMartyn Welch } __packed;
423cf5276ceSMartyn Welch 
424cf5276ceSMartyn Welch #define CP210X_PIN_MODE_MODEM		0
425cf5276ceSMartyn Welch #define CP210X_PIN_MODE_GPIO		BIT(0)
426cf5276ceSMartyn Welch 
427cf5276ceSMartyn Welch /*
428cf5276ceSMartyn Welch  * CP210X_VENDOR_SPECIFIC, CP210X_GET_PORTCONFIG call reads these 0xf bytes.
429cf5276ceSMartyn Welch  * Structure needs padding due to unused/unspecified bytes.
430cf5276ceSMartyn Welch  */
431cf5276ceSMartyn Welch struct cp210x_config {
432cf5276ceSMartyn Welch 	__le16	gpio_mode;
433cf5276ceSMartyn Welch 	u8	__pad0[2];
434cf5276ceSMartyn Welch 	__le16	reset_state;
435cf5276ceSMartyn Welch 	u8	__pad1[4];
436cf5276ceSMartyn Welch 	__le16	suspend_state;
437cf5276ceSMartyn Welch 	u8	sci_cfg;
438cf5276ceSMartyn Welch 	u8	eci_cfg;
439cf5276ceSMartyn Welch 	u8	device_cfg;
440cf5276ceSMartyn Welch } __packed;
441cf5276ceSMartyn Welch 
442cf5276ceSMartyn Welch /* GPIO modes */
443cf5276ceSMartyn Welch #define CP210X_SCI_GPIO_MODE_OFFSET	9
444cf5276ceSMartyn Welch #define CP210X_SCI_GPIO_MODE_MASK	GENMASK(11, 9)
445cf5276ceSMartyn Welch 
446cf5276ceSMartyn Welch #define CP210X_ECI_GPIO_MODE_OFFSET	2
447cf5276ceSMartyn Welch #define CP210X_ECI_GPIO_MODE_MASK	GENMASK(3, 2)
448cf5276ceSMartyn Welch 
449cf5276ceSMartyn Welch /* CP2105 port configuration values */
450cf5276ceSMartyn Welch #define CP2105_GPIO0_TXLED_MODE		BIT(0)
451cf5276ceSMartyn Welch #define CP2105_GPIO1_RXLED_MODE		BIT(1)
452cf5276ceSMartyn Welch #define CP2105_GPIO1_RS485_MODE		BIT(2)
453cf5276ceSMartyn Welch 
454cf5276ceSMartyn Welch /* CP210X_VENDOR_SPECIFIC, CP210X_WRITE_LATCH call writes these 0x2 bytes. */
455cf5276ceSMartyn Welch struct cp210x_gpio_write {
456cf5276ceSMartyn Welch 	u8	mask;
457cf5276ceSMartyn Welch 	u8	state;
458cf5276ceSMartyn Welch } __packed;
459cf5276ceSMartyn Welch 
460*6f0bcf72SKaroly Pados static bool cp210x_is_cp2102n(struct usb_serial *serial)
461*6f0bcf72SKaroly Pados {
462*6f0bcf72SKaroly Pados 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
463*6f0bcf72SKaroly Pados 
464*6f0bcf72SKaroly Pados 	return	(priv->partnum == CP210X_PARTNUM_CP2102N_QFN28) ||
465*6f0bcf72SKaroly Pados 		(priv->partnum == CP210X_PARTNUM_CP2102N_QFN24) ||
466*6f0bcf72SKaroly Pados 		(priv->partnum == CP210X_PARTNUM_CP2102N_QFN20);
467*6f0bcf72SKaroly Pados }
468*6f0bcf72SKaroly Pados 
469cf5276ceSMartyn Welch /*
470cf5276ceSMartyn Welch  * Helper to get interface number when we only have struct usb_serial.
471cf5276ceSMartyn Welch  */
472cf5276ceSMartyn Welch static u8 cp210x_interface_num(struct usb_serial *serial)
473cf5276ceSMartyn Welch {
474cf5276ceSMartyn Welch 	struct usb_host_interface *cur_altsetting;
475cf5276ceSMartyn Welch 
476cf5276ceSMartyn Welch 	cur_altsetting = serial->interface->cur_altsetting;
477cf5276ceSMartyn Welch 
478cf5276ceSMartyn Welch 	return cur_altsetting->desc.bInterfaceNumber;
479cf5276ceSMartyn Welch }
480cf5276ceSMartyn Welch 
48103ee2515SGreg Kroah-Hartman /*
48219165b2bSKonstantin Shkolnyy  * Reads a variable-sized block of CP210X_ registers, identified by req.
48319165b2bSKonstantin Shkolnyy  * Returns data into buf in native USB byte order.
48403ee2515SGreg Kroah-Hartman  */
48519165b2bSKonstantin Shkolnyy static int cp210x_read_reg_block(struct usb_serial_port *port, u8 req,
48619165b2bSKonstantin Shkolnyy 		void *buf, int bufsize)
48703ee2515SGreg Kroah-Hartman {
48803ee2515SGreg Kroah-Hartman 	struct usb_serial *serial = port->serial;
489e2ae67a3SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
49019165b2bSKonstantin Shkolnyy 	void *dmabuf;
49119165b2bSKonstantin Shkolnyy 	int result;
49203ee2515SGreg Kroah-Hartman 
49319165b2bSKonstantin Shkolnyy 	dmabuf = kmalloc(bufsize, GFP_KERNEL);
49419165b2bSKonstantin Shkolnyy 	if (!dmabuf) {
49519165b2bSKonstantin Shkolnyy 		/*
49619165b2bSKonstantin Shkolnyy 		 * FIXME Some callers don't bother to check for error,
49719165b2bSKonstantin Shkolnyy 		 * at least give them consistent junk until they are fixed
49819165b2bSKonstantin Shkolnyy 		 */
49919165b2bSKonstantin Shkolnyy 		memset(buf, 0, bufsize);
50003ee2515SGreg Kroah-Hartman 		return -ENOMEM;
50119165b2bSKonstantin Shkolnyy 	}
50203ee2515SGreg Kroah-Hartman 
50303ee2515SGreg Kroah-Hartman 	result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
50419165b2bSKonstantin Shkolnyy 			req, REQTYPE_INTERFACE_TO_HOST, 0,
50519165b2bSKonstantin Shkolnyy 			port_priv->bInterfaceNumber, dmabuf, bufsize,
50619165b2bSKonstantin Shkolnyy 			USB_CTRL_SET_TIMEOUT);
50719165b2bSKonstantin Shkolnyy 	if (result == bufsize) {
50819165b2bSKonstantin Shkolnyy 		memcpy(buf, dmabuf, bufsize);
50919165b2bSKonstantin Shkolnyy 		result = 0;
51019165b2bSKonstantin Shkolnyy 	} else {
51119165b2bSKonstantin Shkolnyy 		dev_err(&port->dev, "failed get req 0x%x size %d status: %d\n",
51219165b2bSKonstantin Shkolnyy 				req, bufsize, result);
51319165b2bSKonstantin Shkolnyy 		if (result >= 0)
5140407f1ceSJohan Hovold 			result = -EIO;
5152479e2a9SJohan Hovold 
51619165b2bSKonstantin Shkolnyy 		/*
51719165b2bSKonstantin Shkolnyy 		 * FIXME Some callers don't bother to check for error,
51819165b2bSKonstantin Shkolnyy 		 * at least give them consistent junk until they are fixed
51919165b2bSKonstantin Shkolnyy 		 */
52019165b2bSKonstantin Shkolnyy 		memset(buf, 0, bufsize);
52119165b2bSKonstantin Shkolnyy 	}
52219165b2bSKonstantin Shkolnyy 
52319165b2bSKonstantin Shkolnyy 	kfree(dmabuf);
52419165b2bSKonstantin Shkolnyy 
5252479e2a9SJohan Hovold 	return result;
52603ee2515SGreg Kroah-Hartman }
52703ee2515SGreg Kroah-Hartman 
52819165b2bSKonstantin Shkolnyy /*
529fe1b07e9SKonstantin Shkolnyy  * Reads any 32-bit CP210X_ register identified by req.
530fe1b07e9SKonstantin Shkolnyy  */
531fe1b07e9SKonstantin Shkolnyy static int cp210x_read_u32_reg(struct usb_serial_port *port, u8 req, u32 *val)
532fe1b07e9SKonstantin Shkolnyy {
533fe1b07e9SKonstantin Shkolnyy 	__le32 le32_val;
534fe1b07e9SKonstantin Shkolnyy 	int err;
535fe1b07e9SKonstantin Shkolnyy 
536fe1b07e9SKonstantin Shkolnyy 	err = cp210x_read_reg_block(port, req, &le32_val, sizeof(le32_val));
537fe1b07e9SKonstantin Shkolnyy 	if (err) {
538fe1b07e9SKonstantin Shkolnyy 		/*
539fe1b07e9SKonstantin Shkolnyy 		 * FIXME Some callers don't bother to check for error,
540fe1b07e9SKonstantin Shkolnyy 		 * at least give them consistent junk until they are fixed
541fe1b07e9SKonstantin Shkolnyy 		 */
542fe1b07e9SKonstantin Shkolnyy 		*val = 0;
543fe1b07e9SKonstantin Shkolnyy 		return err;
544fe1b07e9SKonstantin Shkolnyy 	}
545fe1b07e9SKonstantin Shkolnyy 
546fe1b07e9SKonstantin Shkolnyy 	*val = le32_to_cpu(le32_val);
547fe1b07e9SKonstantin Shkolnyy 
54803ee2515SGreg Kroah-Hartman 	return 0;
54903ee2515SGreg Kroah-Hartman }
55003ee2515SGreg Kroah-Hartman 
55103ee2515SGreg Kroah-Hartman /*
55219165b2bSKonstantin Shkolnyy  * Reads any 16-bit CP210X_ register identified by req.
55303ee2515SGreg Kroah-Hartman  */
55419165b2bSKonstantin Shkolnyy static int cp210x_read_u16_reg(struct usb_serial_port *port, u8 req, u16 *val)
55519165b2bSKonstantin Shkolnyy {
55619165b2bSKonstantin Shkolnyy 	__le16 le16_val;
55719165b2bSKonstantin Shkolnyy 	int err;
55819165b2bSKonstantin Shkolnyy 
55919165b2bSKonstantin Shkolnyy 	err = cp210x_read_reg_block(port, req, &le16_val, sizeof(le16_val));
56019165b2bSKonstantin Shkolnyy 	if (err)
56119165b2bSKonstantin Shkolnyy 		return err;
56219165b2bSKonstantin Shkolnyy 
56319165b2bSKonstantin Shkolnyy 	*val = le16_to_cpu(le16_val);
564fe1b07e9SKonstantin Shkolnyy 
56519165b2bSKonstantin Shkolnyy 	return 0;
56619165b2bSKonstantin Shkolnyy }
56719165b2bSKonstantin Shkolnyy 
56819165b2bSKonstantin Shkolnyy /*
569fe1b07e9SKonstantin Shkolnyy  * Reads any 8-bit CP210X_ register identified by req.
570fe1b07e9SKonstantin Shkolnyy  */
571fe1b07e9SKonstantin Shkolnyy static int cp210x_read_u8_reg(struct usb_serial_port *port, u8 req, u8 *val)
572fe1b07e9SKonstantin Shkolnyy {
573fe1b07e9SKonstantin Shkolnyy 	return cp210x_read_reg_block(port, req, val, sizeof(*val));
574fe1b07e9SKonstantin Shkolnyy }
575fe1b07e9SKonstantin Shkolnyy 
576fe1b07e9SKonstantin Shkolnyy /*
577cf5276ceSMartyn Welch  * Reads a variable-sized vendor block of CP210X_ registers, identified by val.
578cf5276ceSMartyn Welch  * Returns data into buf in native USB byte order.
579cf5276ceSMartyn Welch  */
580cf5276ceSMartyn Welch static int cp210x_read_vendor_block(struct usb_serial *serial, u8 type, u16 val,
581cf5276ceSMartyn Welch 				    void *buf, int bufsize)
582cf5276ceSMartyn Welch {
583cf5276ceSMartyn Welch 	void *dmabuf;
584cf5276ceSMartyn Welch 	int result;
585cf5276ceSMartyn Welch 
586cf5276ceSMartyn Welch 	dmabuf = kmalloc(bufsize, GFP_KERNEL);
587cf5276ceSMartyn Welch 	if (!dmabuf)
588cf5276ceSMartyn Welch 		return -ENOMEM;
589cf5276ceSMartyn Welch 
590cf5276ceSMartyn Welch 	result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
591cf5276ceSMartyn Welch 				 CP210X_VENDOR_SPECIFIC, type, val,
592cf5276ceSMartyn Welch 				 cp210x_interface_num(serial), dmabuf, bufsize,
593cf5276ceSMartyn Welch 				 USB_CTRL_GET_TIMEOUT);
594cf5276ceSMartyn Welch 	if (result == bufsize) {
595cf5276ceSMartyn Welch 		memcpy(buf, dmabuf, bufsize);
596cf5276ceSMartyn Welch 		result = 0;
597cf5276ceSMartyn Welch 	} else {
598cf5276ceSMartyn Welch 		dev_err(&serial->interface->dev,
599cf5276ceSMartyn Welch 			"failed to get vendor val 0x%04x size %d: %d\n", val,
600cf5276ceSMartyn Welch 			bufsize, result);
601cf5276ceSMartyn Welch 		if (result >= 0)
602cf5276ceSMartyn Welch 			result = -EIO;
603cf5276ceSMartyn Welch 	}
604cf5276ceSMartyn Welch 
605cf5276ceSMartyn Welch 	kfree(dmabuf);
606cf5276ceSMartyn Welch 
607cf5276ceSMartyn Welch 	return result;
608cf5276ceSMartyn Welch }
609cf5276ceSMartyn Welch 
610cf5276ceSMartyn Welch /*
61119165b2bSKonstantin Shkolnyy  * Writes any 16-bit CP210X_ register (req) whose value is passed
61219165b2bSKonstantin Shkolnyy  * entirely in the wValue field of the USB request.
61319165b2bSKonstantin Shkolnyy  */
61419165b2bSKonstantin Shkolnyy static int cp210x_write_u16_reg(struct usb_serial_port *port, u8 req, u16 val)
61503ee2515SGreg Kroah-Hartman {
61603ee2515SGreg Kroah-Hartman 	struct usb_serial *serial = port->serial;
617e2ae67a3SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
61819165b2bSKonstantin Shkolnyy 	int result;
61903ee2515SGreg Kroah-Hartman 
62019165b2bSKonstantin Shkolnyy 	result = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
62119165b2bSKonstantin Shkolnyy 			req, REQTYPE_HOST_TO_INTERFACE, val,
622e2ae67a3SKonstantin Shkolnyy 			port_priv->bInterfaceNumber, NULL, 0,
6232d5733fcSYuri Matylitski 			USB_CTRL_SET_TIMEOUT);
62419165b2bSKonstantin Shkolnyy 	if (result < 0) {
62519165b2bSKonstantin Shkolnyy 		dev_err(&port->dev, "failed set request 0x%x status: %d\n",
62619165b2bSKonstantin Shkolnyy 				req, result);
62703ee2515SGreg Kroah-Hartman 	}
62803ee2515SGreg Kroah-Hartman 
6292479e2a9SJohan Hovold 	return result;
63003ee2515SGreg Kroah-Hartman }
63103ee2515SGreg Kroah-Hartman 
63203ee2515SGreg Kroah-Hartman /*
633fe1b07e9SKonstantin Shkolnyy  * Writes a variable-sized block of CP210X_ registers, identified by req.
634fe1b07e9SKonstantin Shkolnyy  * Data in buf must be in native USB byte order.
635fe1b07e9SKonstantin Shkolnyy  */
636fe1b07e9SKonstantin Shkolnyy static int cp210x_write_reg_block(struct usb_serial_port *port, u8 req,
637fe1b07e9SKonstantin Shkolnyy 		void *buf, int bufsize)
638fe1b07e9SKonstantin Shkolnyy {
639fe1b07e9SKonstantin Shkolnyy 	struct usb_serial *serial = port->serial;
640fe1b07e9SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
641fe1b07e9SKonstantin Shkolnyy 	void *dmabuf;
642fe1b07e9SKonstantin Shkolnyy 	int result;
643fe1b07e9SKonstantin Shkolnyy 
644d6c4dc3bSMuhammad Falak R Wani 	dmabuf = kmemdup(buf, bufsize, GFP_KERNEL);
645fe1b07e9SKonstantin Shkolnyy 	if (!dmabuf)
646fe1b07e9SKonstantin Shkolnyy 		return -ENOMEM;
647fe1b07e9SKonstantin Shkolnyy 
648fe1b07e9SKonstantin Shkolnyy 	result = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
649fe1b07e9SKonstantin Shkolnyy 			req, REQTYPE_HOST_TO_INTERFACE, 0,
650fe1b07e9SKonstantin Shkolnyy 			port_priv->bInterfaceNumber, dmabuf, bufsize,
651fe1b07e9SKonstantin Shkolnyy 			USB_CTRL_SET_TIMEOUT);
652fe1b07e9SKonstantin Shkolnyy 
653fe1b07e9SKonstantin Shkolnyy 	kfree(dmabuf);
654fe1b07e9SKonstantin Shkolnyy 
655fe1b07e9SKonstantin Shkolnyy 	if (result == bufsize) {
656fe1b07e9SKonstantin Shkolnyy 		result = 0;
657fe1b07e9SKonstantin Shkolnyy 	} else {
658fe1b07e9SKonstantin Shkolnyy 		dev_err(&port->dev, "failed set req 0x%x size %d status: %d\n",
659fe1b07e9SKonstantin Shkolnyy 				req, bufsize, result);
660fe1b07e9SKonstantin Shkolnyy 		if (result >= 0)
6610407f1ceSJohan Hovold 			result = -EIO;
662fe1b07e9SKonstantin Shkolnyy 	}
663fe1b07e9SKonstantin Shkolnyy 
664fe1b07e9SKonstantin Shkolnyy 	return result;
66503ee2515SGreg Kroah-Hartman }
66603ee2515SGreg Kroah-Hartman 
66703ee2515SGreg Kroah-Hartman /*
668fe1b07e9SKonstantin Shkolnyy  * Writes any 32-bit CP210X_ register identified by req.
66903ee2515SGreg Kroah-Hartman  */
670fe1b07e9SKonstantin Shkolnyy static int cp210x_write_u32_reg(struct usb_serial_port *port, u8 req, u32 val)
67103ee2515SGreg Kroah-Hartman {
672fe1b07e9SKonstantin Shkolnyy 	__le32 le32_val;
673fe1b07e9SKonstantin Shkolnyy 
674fe1b07e9SKonstantin Shkolnyy 	le32_val = cpu_to_le32(val);
675fe1b07e9SKonstantin Shkolnyy 
676fe1b07e9SKonstantin Shkolnyy 	return cp210x_write_reg_block(port, req, &le32_val, sizeof(le32_val));
67703ee2515SGreg Kroah-Hartman }
67803ee2515SGreg Kroah-Hartman 
679cf5276ceSMartyn Welch #ifdef CONFIG_GPIOLIB
680cf5276ceSMartyn Welch /*
681cf5276ceSMartyn Welch  * Writes a variable-sized vendor block of CP210X_ registers, identified by val.
682cf5276ceSMartyn Welch  * Data in buf must be in native USB byte order.
683cf5276ceSMartyn Welch  */
684cf5276ceSMartyn Welch static int cp210x_write_vendor_block(struct usb_serial *serial, u8 type,
685cf5276ceSMartyn Welch 				     u16 val, void *buf, int bufsize)
686cf5276ceSMartyn Welch {
687cf5276ceSMartyn Welch 	void *dmabuf;
688cf5276ceSMartyn Welch 	int result;
689cf5276ceSMartyn Welch 
690cf5276ceSMartyn Welch 	dmabuf = kmemdup(buf, bufsize, GFP_KERNEL);
691cf5276ceSMartyn Welch 	if (!dmabuf)
692cf5276ceSMartyn Welch 		return -ENOMEM;
693cf5276ceSMartyn Welch 
694cf5276ceSMartyn Welch 	result = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
695cf5276ceSMartyn Welch 				 CP210X_VENDOR_SPECIFIC, type, val,
696cf5276ceSMartyn Welch 				 cp210x_interface_num(serial), dmabuf, bufsize,
697cf5276ceSMartyn Welch 				 USB_CTRL_SET_TIMEOUT);
698cf5276ceSMartyn Welch 
699cf5276ceSMartyn Welch 	kfree(dmabuf);
700cf5276ceSMartyn Welch 
701cf5276ceSMartyn Welch 	if (result == bufsize) {
702cf5276ceSMartyn Welch 		result = 0;
703cf5276ceSMartyn Welch 	} else {
704cf5276ceSMartyn Welch 		dev_err(&serial->interface->dev,
705cf5276ceSMartyn Welch 			"failed to set vendor val 0x%04x size %d: %d\n", val,
706cf5276ceSMartyn Welch 			bufsize, result);
707cf5276ceSMartyn Welch 		if (result >= 0)
708cf5276ceSMartyn Welch 			result = -EIO;
709cf5276ceSMartyn Welch 	}
710cf5276ceSMartyn Welch 
711cf5276ceSMartyn Welch 	return result;
712cf5276ceSMartyn Welch }
713cf5276ceSMartyn Welch #endif
714cf5276ceSMartyn Welch 
71503ee2515SGreg Kroah-Hartman /*
716d0bf1ff0SKonstantin Shkolnyy  * Detect CP2108 GET_LINE_CTL bug and activate workaround.
717d0bf1ff0SKonstantin Shkolnyy  * Write a known good value 0x800, read it back.
718d0bf1ff0SKonstantin Shkolnyy  * If it comes back swapped the bug is detected.
719d0bf1ff0SKonstantin Shkolnyy  * Preserve the original register value.
720d0bf1ff0SKonstantin Shkolnyy  */
721d0bf1ff0SKonstantin Shkolnyy static int cp210x_detect_swapped_line_ctl(struct usb_serial_port *port)
722d0bf1ff0SKonstantin Shkolnyy {
723d0bf1ff0SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
72419165b2bSKonstantin Shkolnyy 	u16 line_ctl_save;
72519165b2bSKonstantin Shkolnyy 	u16 line_ctl_test;
726d0bf1ff0SKonstantin Shkolnyy 	int err;
727d0bf1ff0SKonstantin Shkolnyy 
72819165b2bSKonstantin Shkolnyy 	err = cp210x_read_u16_reg(port, CP210X_GET_LINE_CTL, &line_ctl_save);
729d0bf1ff0SKonstantin Shkolnyy 	if (err)
730d0bf1ff0SKonstantin Shkolnyy 		return err;
731d0bf1ff0SKonstantin Shkolnyy 
73219165b2bSKonstantin Shkolnyy 	err = cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, 0x800);
733d0bf1ff0SKonstantin Shkolnyy 	if (err)
734d0bf1ff0SKonstantin Shkolnyy 		return err;
735d0bf1ff0SKonstantin Shkolnyy 
73619165b2bSKonstantin Shkolnyy 	err = cp210x_read_u16_reg(port, CP210X_GET_LINE_CTL, &line_ctl_test);
737d0bf1ff0SKonstantin Shkolnyy 	if (err)
738d0bf1ff0SKonstantin Shkolnyy 		return err;
739d0bf1ff0SKonstantin Shkolnyy 
740d0bf1ff0SKonstantin Shkolnyy 	if (line_ctl_test == 8) {
741d0bf1ff0SKonstantin Shkolnyy 		port_priv->has_swapped_line_ctl = true;
74219165b2bSKonstantin Shkolnyy 		line_ctl_save = swab16(line_ctl_save);
743d0bf1ff0SKonstantin Shkolnyy 	}
744d0bf1ff0SKonstantin Shkolnyy 
74519165b2bSKonstantin Shkolnyy 	return cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, line_ctl_save);
746d0bf1ff0SKonstantin Shkolnyy }
747d0bf1ff0SKonstantin Shkolnyy 
748d0bf1ff0SKonstantin Shkolnyy /*
74919165b2bSKonstantin Shkolnyy  * Must always be called instead of cp210x_read_u16_reg(CP210X_GET_LINE_CTL)
750d0bf1ff0SKonstantin Shkolnyy  * to workaround cp2108 bug and get correct value.
751d0bf1ff0SKonstantin Shkolnyy  */
75219165b2bSKonstantin Shkolnyy static int cp210x_get_line_ctl(struct usb_serial_port *port, u16 *ctl)
753d0bf1ff0SKonstantin Shkolnyy {
754d0bf1ff0SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
755d0bf1ff0SKonstantin Shkolnyy 	int err;
756d0bf1ff0SKonstantin Shkolnyy 
75719165b2bSKonstantin Shkolnyy 	err = cp210x_read_u16_reg(port, CP210X_GET_LINE_CTL, ctl);
758d0bf1ff0SKonstantin Shkolnyy 	if (err)
759d0bf1ff0SKonstantin Shkolnyy 		return err;
760d0bf1ff0SKonstantin Shkolnyy 
761d0bf1ff0SKonstantin Shkolnyy 	/* Workaround swapped bytes in 16-bit value from CP210X_GET_LINE_CTL */
762d0bf1ff0SKonstantin Shkolnyy 	if (port_priv->has_swapped_line_ctl)
76319165b2bSKonstantin Shkolnyy 		*ctl = swab16(*ctl);
764d0bf1ff0SKonstantin Shkolnyy 
765d0bf1ff0SKonstantin Shkolnyy 	return 0;
766d0bf1ff0SKonstantin Shkolnyy }
767d0bf1ff0SKonstantin Shkolnyy 
768a509a7e4SAlan Cox static int cp210x_open(struct tty_struct *tty, struct usb_serial_port *port)
76903ee2515SGreg Kroah-Hartman {
77003ee2515SGreg Kroah-Hartman 	int result;
77103ee2515SGreg Kroah-Hartman 
77219165b2bSKonstantin Shkolnyy 	result = cp210x_write_u16_reg(port, CP210X_IFC_ENABLE, UART_ENABLE);
7732479e2a9SJohan Hovold 	if (result) {
7742479e2a9SJohan Hovold 		dev_err(&port->dev, "%s - Unable to enable UART\n", __func__);
7752479e2a9SJohan Hovold 		return result;
77603ee2515SGreg Kroah-Hartman 	}
77703ee2515SGreg Kroah-Hartman 
77803ee2515SGreg Kroah-Hartman 	/* Configure the termios structure */
7794cc27bd6SCraig Shelley 	cp210x_get_termios(tty, port);
78055b2afbbSJohan Hovold 
781cdc32fd6SJohan Hovold 	/* The baud rate must be initialised on cp2104 */
782cdc32fd6SJohan Hovold 	if (tty)
783cdc32fd6SJohan Hovold 		cp210x_change_speed(tty, port, NULL);
784cdc32fd6SJohan Hovold 
78555b2afbbSJohan Hovold 	return usb_serial_generic_open(tty, port);
78603ee2515SGreg Kroah-Hartman }
78703ee2515SGreg Kroah-Hartman 
7884cc27bd6SCraig Shelley static void cp210x_close(struct usb_serial_port *port)
78903ee2515SGreg Kroah-Hartman {
790f26788daSJohan Hovold 	usb_serial_generic_close(port);
791ebfb319bSKonstantin Shkolnyy 
792ebfb319bSKonstantin Shkolnyy 	/* Clear both queues; cp2108 needs this to avoid an occasional hang */
79319165b2bSKonstantin Shkolnyy 	cp210x_write_u16_reg(port, CP210X_PURGE, PURGE_ALL);
794ebfb319bSKonstantin Shkolnyy 
79519165b2bSKonstantin Shkolnyy 	cp210x_write_u16_reg(port, CP210X_IFC_ENABLE, UART_DISABLE);
79603ee2515SGreg Kroah-Hartman }
79703ee2515SGreg Kroah-Hartman 
79803ee2515SGreg Kroah-Hartman /*
7996f923a01SKonstantin Shkolnyy  * Read how many bytes are waiting in the TX queue.
8006f923a01SKonstantin Shkolnyy  */
8016f923a01SKonstantin Shkolnyy static int cp210x_get_tx_queue_byte_count(struct usb_serial_port *port,
8026f923a01SKonstantin Shkolnyy 		u32 *count)
8036f923a01SKonstantin Shkolnyy {
8046f923a01SKonstantin Shkolnyy 	struct usb_serial *serial = port->serial;
8056f923a01SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
8066f923a01SKonstantin Shkolnyy 	struct cp210x_comm_status *sts;
8076f923a01SKonstantin Shkolnyy 	int result;
8086f923a01SKonstantin Shkolnyy 
8096f923a01SKonstantin Shkolnyy 	sts = kmalloc(sizeof(*sts), GFP_KERNEL);
8106f923a01SKonstantin Shkolnyy 	if (!sts)
8116f923a01SKonstantin Shkolnyy 		return -ENOMEM;
8126f923a01SKonstantin Shkolnyy 
8136f923a01SKonstantin Shkolnyy 	result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
8146f923a01SKonstantin Shkolnyy 			CP210X_GET_COMM_STATUS, REQTYPE_INTERFACE_TO_HOST,
8156f923a01SKonstantin Shkolnyy 			0, port_priv->bInterfaceNumber, sts, sizeof(*sts),
8166f923a01SKonstantin Shkolnyy 			USB_CTRL_GET_TIMEOUT);
8176f923a01SKonstantin Shkolnyy 	if (result == sizeof(*sts)) {
8186f923a01SKonstantin Shkolnyy 		*count = le32_to_cpu(sts->ulAmountInOutQueue);
8196f923a01SKonstantin Shkolnyy 		result = 0;
8206f923a01SKonstantin Shkolnyy 	} else {
8216f923a01SKonstantin Shkolnyy 		dev_err(&port->dev, "failed to get comm status: %d\n", result);
8226f923a01SKonstantin Shkolnyy 		if (result >= 0)
8230407f1ceSJohan Hovold 			result = -EIO;
8246f923a01SKonstantin Shkolnyy 	}
8256f923a01SKonstantin Shkolnyy 
8266f923a01SKonstantin Shkolnyy 	kfree(sts);
8276f923a01SKonstantin Shkolnyy 
8286f923a01SKonstantin Shkolnyy 	return result;
8296f923a01SKonstantin Shkolnyy }
8306f923a01SKonstantin Shkolnyy 
8316f923a01SKonstantin Shkolnyy static bool cp210x_tx_empty(struct usb_serial_port *port)
8326f923a01SKonstantin Shkolnyy {
8336f923a01SKonstantin Shkolnyy 	int err;
8346f923a01SKonstantin Shkolnyy 	u32 count;
8356f923a01SKonstantin Shkolnyy 
8366f923a01SKonstantin Shkolnyy 	err = cp210x_get_tx_queue_byte_count(port, &count);
8376f923a01SKonstantin Shkolnyy 	if (err)
8386f923a01SKonstantin Shkolnyy 		return true;
8396f923a01SKonstantin Shkolnyy 
8406f923a01SKonstantin Shkolnyy 	return !count;
8416f923a01SKonstantin Shkolnyy }
8426f923a01SKonstantin Shkolnyy 
8436f923a01SKonstantin Shkolnyy /*
8444cc27bd6SCraig Shelley  * cp210x_get_termios
84503ee2515SGreg Kroah-Hartman  * Reads the baud rate, data bits, parity, stop bits and flow control mode
84603ee2515SGreg Kroah-Hartman  * from the device, corrects any unsupported values, and configures the
84703ee2515SGreg Kroah-Hartman  * termios structure to reflect the state of the device
84803ee2515SGreg Kroah-Hartman  */
8494cc27bd6SCraig Shelley static void cp210x_get_termios(struct tty_struct *tty,
850d2ad67b3SVomLehn 	struct usb_serial_port *port)
85103ee2515SGreg Kroah-Hartman {
852d2ad67b3SVomLehn 	unsigned int baud;
853d2ad67b3SVomLehn 
854d2ad67b3SVomLehn 	if (tty) {
8554cc27bd6SCraig Shelley 		cp210x_get_termios_port(tty->driver_data,
856adc8d746SAlan Cox 			&tty->termios.c_cflag, &baud);
857d2ad67b3SVomLehn 		tty_encode_baud_rate(tty, baud, baud);
8584f2ab888SJohan Hovold 	} else {
859009615abSGeert Uytterhoeven 		tcflag_t cflag;
860d2ad67b3SVomLehn 		cflag = 0;
8614cc27bd6SCraig Shelley 		cp210x_get_termios_port(port, &cflag, &baud);
862d2ad67b3SVomLehn 	}
863d2ad67b3SVomLehn }
864d2ad67b3SVomLehn 
865d2ad67b3SVomLehn /*
8664cc27bd6SCraig Shelley  * cp210x_get_termios_port
8674cc27bd6SCraig Shelley  * This is the heart of cp210x_get_termios which always uses a &usb_serial_port.
868d2ad67b3SVomLehn  */
8694cc27bd6SCraig Shelley static void cp210x_get_termios_port(struct usb_serial_port *port,
870009615abSGeert Uytterhoeven 	tcflag_t *cflagp, unsigned int *baudp)
871d2ad67b3SVomLehn {
872660f3b14SGreg Kroah-Hartman 	struct device *dev = &port->dev;
873009615abSGeert Uytterhoeven 	tcflag_t cflag;
8749034389cSKonstantin Shkolnyy 	struct cp210x_flow_ctl flow_ctl;
875fe1b07e9SKonstantin Shkolnyy 	u32 baud;
87619165b2bSKonstantin Shkolnyy 	u16 bits;
8779034389cSKonstantin Shkolnyy 	u32 ctl_hs;
87803ee2515SGreg Kroah-Hartman 
879fe1b07e9SKonstantin Shkolnyy 	cp210x_read_u32_reg(port, CP210X_GET_BAUDRATE, &baud);
88003ee2515SGreg Kroah-Hartman 
881660f3b14SGreg Kroah-Hartman 	dev_dbg(dev, "%s - baud rate = %d\n", __func__, baud);
882d2ad67b3SVomLehn 	*baudp = baud;
88303ee2515SGreg Kroah-Hartman 
884d2ad67b3SVomLehn 	cflag = *cflagp;
88503ee2515SGreg Kroah-Hartman 
886d0bf1ff0SKonstantin Shkolnyy 	cp210x_get_line_ctl(port, &bits);
88703ee2515SGreg Kroah-Hartman 	cflag &= ~CSIZE;
88803ee2515SGreg Kroah-Hartman 	switch (bits & BITS_DATA_MASK) {
88903ee2515SGreg Kroah-Hartman 	case BITS_DATA_5:
890660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - data bits = 5\n", __func__);
89103ee2515SGreg Kroah-Hartman 		cflag |= CS5;
89203ee2515SGreg Kroah-Hartman 		break;
89303ee2515SGreg Kroah-Hartman 	case BITS_DATA_6:
894660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - data bits = 6\n", __func__);
89503ee2515SGreg Kroah-Hartman 		cflag |= CS6;
89603ee2515SGreg Kroah-Hartman 		break;
89703ee2515SGreg Kroah-Hartman 	case BITS_DATA_7:
898660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - data bits = 7\n", __func__);
89903ee2515SGreg Kroah-Hartman 		cflag |= CS7;
90003ee2515SGreg Kroah-Hartman 		break;
90103ee2515SGreg Kroah-Hartman 	case BITS_DATA_8:
902660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - data bits = 8\n", __func__);
90303ee2515SGreg Kroah-Hartman 		cflag |= CS8;
90403ee2515SGreg Kroah-Hartman 		break;
90503ee2515SGreg Kroah-Hartman 	case BITS_DATA_9:
906660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - data bits = 9 (not supported, using 8 data bits)\n", __func__);
90703ee2515SGreg Kroah-Hartman 		cflag |= CS8;
90803ee2515SGreg Kroah-Hartman 		bits &= ~BITS_DATA_MASK;
90903ee2515SGreg Kroah-Hartman 		bits |= BITS_DATA_8;
91019165b2bSKonstantin Shkolnyy 		cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits);
91103ee2515SGreg Kroah-Hartman 		break;
91203ee2515SGreg Kroah-Hartman 	default:
913660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - Unknown number of data bits, using 8\n", __func__);
91403ee2515SGreg Kroah-Hartman 		cflag |= CS8;
91503ee2515SGreg Kroah-Hartman 		bits &= ~BITS_DATA_MASK;
91603ee2515SGreg Kroah-Hartman 		bits |= BITS_DATA_8;
91719165b2bSKonstantin Shkolnyy 		cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits);
91803ee2515SGreg Kroah-Hartman 		break;
91903ee2515SGreg Kroah-Hartman 	}
92003ee2515SGreg Kroah-Hartman 
92103ee2515SGreg Kroah-Hartman 	switch (bits & BITS_PARITY_MASK) {
92203ee2515SGreg Kroah-Hartman 	case BITS_PARITY_NONE:
923660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - parity = NONE\n", __func__);
92403ee2515SGreg Kroah-Hartman 		cflag &= ~PARENB;
92503ee2515SGreg Kroah-Hartman 		break;
92603ee2515SGreg Kroah-Hartman 	case BITS_PARITY_ODD:
927660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - parity = ODD\n", __func__);
92803ee2515SGreg Kroah-Hartman 		cflag |= (PARENB|PARODD);
92903ee2515SGreg Kroah-Hartman 		break;
93003ee2515SGreg Kroah-Hartman 	case BITS_PARITY_EVEN:
931660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - parity = EVEN\n", __func__);
93203ee2515SGreg Kroah-Hartman 		cflag &= ~PARODD;
93303ee2515SGreg Kroah-Hartman 		cflag |= PARENB;
93403ee2515SGreg Kroah-Hartman 		break;
93503ee2515SGreg Kroah-Hartman 	case BITS_PARITY_MARK:
936660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - parity = MARK\n", __func__);
9374b6181caSRoland Koebler 		cflag |= (PARENB|PARODD|CMSPAR);
93803ee2515SGreg Kroah-Hartman 		break;
93903ee2515SGreg Kroah-Hartman 	case BITS_PARITY_SPACE:
940660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - parity = SPACE\n", __func__);
9414b6181caSRoland Koebler 		cflag &= ~PARODD;
9424b6181caSRoland Koebler 		cflag |= (PARENB|CMSPAR);
94303ee2515SGreg Kroah-Hartman 		break;
94403ee2515SGreg Kroah-Hartman 	default:
945660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - Unknown parity mode, disabling parity\n", __func__);
94603ee2515SGreg Kroah-Hartman 		cflag &= ~PARENB;
94703ee2515SGreg Kroah-Hartman 		bits &= ~BITS_PARITY_MASK;
94819165b2bSKonstantin Shkolnyy 		cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits);
94903ee2515SGreg Kroah-Hartman 		break;
95003ee2515SGreg Kroah-Hartman 	}
95103ee2515SGreg Kroah-Hartman 
95203ee2515SGreg Kroah-Hartman 	cflag &= ~CSTOPB;
95303ee2515SGreg Kroah-Hartman 	switch (bits & BITS_STOP_MASK) {
95403ee2515SGreg Kroah-Hartman 	case BITS_STOP_1:
955660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - stop bits = 1\n", __func__);
95603ee2515SGreg Kroah-Hartman 		break;
95703ee2515SGreg Kroah-Hartman 	case BITS_STOP_1_5:
958660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - stop bits = 1.5 (not supported, using 1 stop bit)\n", __func__);
95903ee2515SGreg Kroah-Hartman 		bits &= ~BITS_STOP_MASK;
96019165b2bSKonstantin Shkolnyy 		cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits);
96103ee2515SGreg Kroah-Hartman 		break;
96203ee2515SGreg Kroah-Hartman 	case BITS_STOP_2:
963660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - stop bits = 2\n", __func__);
96403ee2515SGreg Kroah-Hartman 		cflag |= CSTOPB;
96503ee2515SGreg Kroah-Hartman 		break;
96603ee2515SGreg Kroah-Hartman 	default:
967660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - Unknown number of stop bits, using 1 stop bit\n", __func__);
96803ee2515SGreg Kroah-Hartman 		bits &= ~BITS_STOP_MASK;
96919165b2bSKonstantin Shkolnyy 		cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits);
97003ee2515SGreg Kroah-Hartman 		break;
97103ee2515SGreg Kroah-Hartman 	}
97203ee2515SGreg Kroah-Hartman 
9739034389cSKonstantin Shkolnyy 	cp210x_read_reg_block(port, CP210X_GET_FLOW, &flow_ctl,
9749034389cSKonstantin Shkolnyy 			sizeof(flow_ctl));
9759034389cSKonstantin Shkolnyy 	ctl_hs = le32_to_cpu(flow_ctl.ulControlHandshake);
9769034389cSKonstantin Shkolnyy 	if (ctl_hs & CP210X_SERIAL_CTS_HANDSHAKE) {
977660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - flow control = CRTSCTS\n", __func__);
97803ee2515SGreg Kroah-Hartman 		cflag |= CRTSCTS;
97903ee2515SGreg Kroah-Hartman 	} else {
980660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - flow control = NONE\n", __func__);
98103ee2515SGreg Kroah-Hartman 		cflag &= ~CRTSCTS;
98203ee2515SGreg Kroah-Hartman 	}
98303ee2515SGreg Kroah-Hartman 
984d2ad67b3SVomLehn 	*cflagp = cflag;
98503ee2515SGreg Kroah-Hartman }
98603ee2515SGreg Kroah-Hartman 
98795fd4f47SJohan Hovold struct cp210x_rate {
98895fd4f47SJohan Hovold 	speed_t rate;
98995fd4f47SJohan Hovold 	speed_t high;
99095fd4f47SJohan Hovold };
99195fd4f47SJohan Hovold 
99295fd4f47SJohan Hovold static const struct cp210x_rate cp210x_an205_table1[] = {
99395fd4f47SJohan Hovold 	{ 300, 300 },
99495fd4f47SJohan Hovold 	{ 600, 600 },
99595fd4f47SJohan Hovold 	{ 1200, 1200 },
99695fd4f47SJohan Hovold 	{ 1800, 1800 },
99795fd4f47SJohan Hovold 	{ 2400, 2400 },
99895fd4f47SJohan Hovold 	{ 4000, 4000 },
99995fd4f47SJohan Hovold 	{ 4800, 4803 },
100095fd4f47SJohan Hovold 	{ 7200, 7207 },
100195fd4f47SJohan Hovold 	{ 9600, 9612 },
100295fd4f47SJohan Hovold 	{ 14400, 14428 },
100395fd4f47SJohan Hovold 	{ 16000, 16062 },
100495fd4f47SJohan Hovold 	{ 19200, 19250 },
100595fd4f47SJohan Hovold 	{ 28800, 28912 },
100695fd4f47SJohan Hovold 	{ 38400, 38601 },
100795fd4f47SJohan Hovold 	{ 51200, 51558 },
100895fd4f47SJohan Hovold 	{ 56000, 56280 },
100995fd4f47SJohan Hovold 	{ 57600, 58053 },
101095fd4f47SJohan Hovold 	{ 64000, 64111 },
101195fd4f47SJohan Hovold 	{ 76800, 77608 },
101295fd4f47SJohan Hovold 	{ 115200, 117028 },
101395fd4f47SJohan Hovold 	{ 128000, 129347 },
101495fd4f47SJohan Hovold 	{ 153600, 156868 },
101595fd4f47SJohan Hovold 	{ 230400, 237832 },
101695fd4f47SJohan Hovold 	{ 250000, 254234 },
101795fd4f47SJohan Hovold 	{ 256000, 273066 },
101895fd4f47SJohan Hovold 	{ 460800, 491520 },
101995fd4f47SJohan Hovold 	{ 500000, 567138 },
102095fd4f47SJohan Hovold 	{ 576000, 670254 },
102195fd4f47SJohan Hovold 	{ 921600, UINT_MAX }
102295fd4f47SJohan Hovold };
102395fd4f47SJohan Hovold 
102495fd4f47SJohan Hovold /*
102595fd4f47SJohan Hovold  * Quantises the baud rate as per AN205 Table 1
102695fd4f47SJohan Hovold  */
102795fd4f47SJohan Hovold static speed_t cp210x_get_an205_rate(speed_t baud)
102895fd4f47SJohan Hovold {
102995fd4f47SJohan Hovold 	int i;
103095fd4f47SJohan Hovold 
103195fd4f47SJohan Hovold 	for (i = 0; i < ARRAY_SIZE(cp210x_an205_table1); ++i) {
103295fd4f47SJohan Hovold 		if (baud <= cp210x_an205_table1[i].high)
103395fd4f47SJohan Hovold 			break;
103495fd4f47SJohan Hovold 	}
103595fd4f47SJohan Hovold 
103695fd4f47SJohan Hovold 	return cp210x_an205_table1[i].rate;
103795fd4f47SJohan Hovold }
103895fd4f47SJohan Hovold 
1039e5990874SJohan Hovold /*
1040e5990874SJohan Hovold  * CP2101 supports the following baud rates:
1041e5990874SJohan Hovold  *
1042e5990874SJohan Hovold  *	300, 600, 1200, 1800, 2400, 4800, 7200, 9600, 14400, 19200, 28800,
1043e5990874SJohan Hovold  *	38400, 56000, 57600, 115200, 128000, 230400, 460800, 921600
1044e5990874SJohan Hovold  *
1045e5990874SJohan Hovold  * CP2102 and CP2103 support the following additional rates:
1046e5990874SJohan Hovold  *
1047e5990874SJohan Hovold  *	4000, 16000, 51200, 64000, 76800, 153600, 250000, 256000, 500000,
1048e5990874SJohan Hovold  *	576000
1049e5990874SJohan Hovold  *
1050e5990874SJohan Hovold  * The device will map a requested rate to a supported one, but the result
1051e5990874SJohan Hovold  * of requests for rates greater than 1053257 is undefined (see AN205).
1052e5990874SJohan Hovold  *
1053e5990874SJohan Hovold  * CP2104, CP2105 and CP2110 support most rates up to 2M, 921k and 1M baud,
1054e5990874SJohan Hovold  * respectively, with an error less than 1%. The actual rates are determined
1055e5990874SJohan Hovold  * by
1056e5990874SJohan Hovold  *
1057e5990874SJohan Hovold  *	div = round(freq / (2 x prescale x request))
1058e5990874SJohan Hovold  *	actual = freq / (2 x prescale x div)
1059e5990874SJohan Hovold  *
1060e5990874SJohan Hovold  * For CP2104 and CP2105 freq is 48Mhz and prescale is 4 for request <= 365bps
1061e5990874SJohan Hovold  * or 1 otherwise.
1062e5990874SJohan Hovold  * For CP2110 freq is 24Mhz and prescale is 4 for request <= 300bps or 1
1063e5990874SJohan Hovold  * otherwise.
1064e5990874SJohan Hovold  */
1065e5990874SJohan Hovold static void cp210x_change_speed(struct tty_struct *tty,
1066e5990874SJohan Hovold 		struct usb_serial_port *port, struct ktermios *old_termios)
1067e5990874SJohan Hovold {
1068*6f0bcf72SKaroly Pados 	struct usb_serial *serial = port->serial;
1069*6f0bcf72SKaroly Pados 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1070e5990874SJohan Hovold 	u32 baud;
1071e5990874SJohan Hovold 
1072adc8d746SAlan Cox 	baud = tty->termios.c_ospeed;
1073e5990874SJohan Hovold 
1074*6f0bcf72SKaroly Pados 	/*
1075*6f0bcf72SKaroly Pados 	 * This maps the requested rate to the actual rate on cp2102n, a valid
1076*6f0bcf72SKaroly Pados 	 * rate on cp2102 or cp2103, or to an arbitrary rate in
1077*6f0bcf72SKaroly Pados 	 * [1M, max_speed].
1078e5990874SJohan Hovold 	 *
1079e5990874SJohan Hovold 	 * NOTE: B0 is not implemented.
1080e5990874SJohan Hovold 	 */
1081*6f0bcf72SKaroly Pados 	if (cp210x_is_cp2102n(serial)) {
1082*6f0bcf72SKaroly Pados 		int clk_div;
1083*6f0bcf72SKaroly Pados 		int prescaler;
1084*6f0bcf72SKaroly Pados 
1085*6f0bcf72SKaroly Pados 		baud = clamp(baud, 300u, priv->max_speed);
1086*6f0bcf72SKaroly Pados 		prescaler = (baud <= 365) ? 4 : 1;
1087*6f0bcf72SKaroly Pados 		clk_div = DIV_ROUND_CLOSEST(48000000, 2 * prescaler * baud);
1088*6f0bcf72SKaroly Pados 		baud = 48000000 / (2 * prescaler * clk_div);
1089*6f0bcf72SKaroly Pados 	} else if (baud < 1000000) {
109095fd4f47SJohan Hovold 		baud = cp210x_get_an205_rate(baud);
1091*6f0bcf72SKaroly Pados 	} else if (baud > priv->max_speed) {
1092d4706c05SJohan Hovold 		baud = priv->max_speed;
1093*6f0bcf72SKaroly Pados 	}
1094e5990874SJohan Hovold 
1095660f3b14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "%s - setting baud rate to %u\n", __func__, baud);
1096fe1b07e9SKonstantin Shkolnyy 	if (cp210x_write_u32_reg(port, CP210X_SET_BAUDRATE, baud)) {
1097e5990874SJohan Hovold 		dev_warn(&port->dev, "failed to set baud rate to %u\n", baud);
1098e5990874SJohan Hovold 		if (old_termios)
1099e5990874SJohan Hovold 			baud = old_termios->c_ospeed;
1100e5990874SJohan Hovold 		else
1101e5990874SJohan Hovold 			baud = 9600;
1102e5990874SJohan Hovold 	}
1103e5990874SJohan Hovold 
1104e5990874SJohan Hovold 	tty_encode_baud_rate(tty, baud, baud);
1105e5990874SJohan Hovold }
1106e5990874SJohan Hovold 
11074cc27bd6SCraig Shelley static void cp210x_set_termios(struct tty_struct *tty,
110803ee2515SGreg Kroah-Hartman 		struct usb_serial_port *port, struct ktermios *old_termios)
110903ee2515SGreg Kroah-Hartman {
1110660f3b14SGreg Kroah-Hartman 	struct device *dev = &port->dev;
111103ee2515SGreg Kroah-Hartman 	unsigned int cflag, old_cflag;
111219165b2bSKonstantin Shkolnyy 	u16 bits;
111303ee2515SGreg Kroah-Hartman 
1114adc8d746SAlan Cox 	cflag = tty->termios.c_cflag;
111503ee2515SGreg Kroah-Hartman 	old_cflag = old_termios->c_cflag;
111603ee2515SGreg Kroah-Hartman 
1117adc8d746SAlan Cox 	if (tty->termios.c_ospeed != old_termios->c_ospeed)
1118e5990874SJohan Hovold 		cp210x_change_speed(tty, port, old_termios);
111903ee2515SGreg Kroah-Hartman 
112003ee2515SGreg Kroah-Hartman 	/* If the number of data bits is to be updated */
112103ee2515SGreg Kroah-Hartman 	if ((cflag & CSIZE) != (old_cflag & CSIZE)) {
1122d0bf1ff0SKonstantin Shkolnyy 		cp210x_get_line_ctl(port, &bits);
112303ee2515SGreg Kroah-Hartman 		bits &= ~BITS_DATA_MASK;
112403ee2515SGreg Kroah-Hartman 		switch (cflag & CSIZE) {
112503ee2515SGreg Kroah-Hartman 		case CS5:
112603ee2515SGreg Kroah-Hartman 			bits |= BITS_DATA_5;
1127660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "%s - data bits = 5\n", __func__);
112803ee2515SGreg Kroah-Hartman 			break;
112903ee2515SGreg Kroah-Hartman 		case CS6:
113003ee2515SGreg Kroah-Hartman 			bits |= BITS_DATA_6;
1131660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "%s - data bits = 6\n", __func__);
113203ee2515SGreg Kroah-Hartman 			break;
113303ee2515SGreg Kroah-Hartman 		case CS7:
113403ee2515SGreg Kroah-Hartman 			bits |= BITS_DATA_7;
1135660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "%s - data bits = 7\n", __func__);
113603ee2515SGreg Kroah-Hartman 			break;
113703ee2515SGreg Kroah-Hartman 		case CS8:
1138c2b33559SJohan Hovold 		default:
113903ee2515SGreg Kroah-Hartman 			bits |= BITS_DATA_8;
1140660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "%s - data bits = 8\n", __func__);
114103ee2515SGreg Kroah-Hartman 			break;
114203ee2515SGreg Kroah-Hartman 		}
114319165b2bSKonstantin Shkolnyy 		if (cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits))
1144660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "Number of data bits requested not supported by device\n");
114503ee2515SGreg Kroah-Hartman 	}
114603ee2515SGreg Kroah-Hartman 
11474b6181caSRoland Koebler 	if ((cflag     & (PARENB|PARODD|CMSPAR)) !=
11484b6181caSRoland Koebler 	    (old_cflag & (PARENB|PARODD|CMSPAR))) {
1149d0bf1ff0SKonstantin Shkolnyy 		cp210x_get_line_ctl(port, &bits);
115003ee2515SGreg Kroah-Hartman 		bits &= ~BITS_PARITY_MASK;
115103ee2515SGreg Kroah-Hartman 		if (cflag & PARENB) {
11524b6181caSRoland Koebler 			if (cflag & CMSPAR) {
11534b6181caSRoland Koebler 				if (cflag & PARODD) {
11544b6181caSRoland Koebler 					bits |= BITS_PARITY_MARK;
1155660f3b14SGreg Kroah-Hartman 					dev_dbg(dev, "%s - parity = MARK\n", __func__);
11564b6181caSRoland Koebler 				} else {
11574b6181caSRoland Koebler 					bits |= BITS_PARITY_SPACE;
1158660f3b14SGreg Kroah-Hartman 					dev_dbg(dev, "%s - parity = SPACE\n", __func__);
11594b6181caSRoland Koebler 				}
11604b6181caSRoland Koebler 			} else {
116103ee2515SGreg Kroah-Hartman 				if (cflag & PARODD) {
116203ee2515SGreg Kroah-Hartman 					bits |= BITS_PARITY_ODD;
1163660f3b14SGreg Kroah-Hartman 					dev_dbg(dev, "%s - parity = ODD\n", __func__);
116403ee2515SGreg Kroah-Hartman 				} else {
116503ee2515SGreg Kroah-Hartman 					bits |= BITS_PARITY_EVEN;
1166660f3b14SGreg Kroah-Hartman 					dev_dbg(dev, "%s - parity = EVEN\n", __func__);
116703ee2515SGreg Kroah-Hartman 				}
116803ee2515SGreg Kroah-Hartman 			}
11694b6181caSRoland Koebler 		}
117019165b2bSKonstantin Shkolnyy 		if (cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits))
1171660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "Parity mode not supported by device\n");
117203ee2515SGreg Kroah-Hartman 	}
117303ee2515SGreg Kroah-Hartman 
117403ee2515SGreg Kroah-Hartman 	if ((cflag & CSTOPB) != (old_cflag & CSTOPB)) {
1175d0bf1ff0SKonstantin Shkolnyy 		cp210x_get_line_ctl(port, &bits);
117603ee2515SGreg Kroah-Hartman 		bits &= ~BITS_STOP_MASK;
117703ee2515SGreg Kroah-Hartman 		if (cflag & CSTOPB) {
117803ee2515SGreg Kroah-Hartman 			bits |= BITS_STOP_2;
1179660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "%s - stop bits = 2\n", __func__);
118003ee2515SGreg Kroah-Hartman 		} else {
118103ee2515SGreg Kroah-Hartman 			bits |= BITS_STOP_1;
1182660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "%s - stop bits = 1\n", __func__);
118303ee2515SGreg Kroah-Hartman 		}
118419165b2bSKonstantin Shkolnyy 		if (cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits))
1185660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "Number of stop bits requested not supported by device\n");
118603ee2515SGreg Kroah-Hartman 	}
118703ee2515SGreg Kroah-Hartman 
118803ee2515SGreg Kroah-Hartman 	if ((cflag & CRTSCTS) != (old_cflag & CRTSCTS)) {
11899034389cSKonstantin Shkolnyy 		struct cp210x_flow_ctl flow_ctl;
11909034389cSKonstantin Shkolnyy 		u32 ctl_hs;
11919034389cSKonstantin Shkolnyy 		u32 flow_repl;
11927084fa86SKonstantin Shkolnyy 
11939034389cSKonstantin Shkolnyy 		cp210x_read_reg_block(port, CP210X_GET_FLOW, &flow_ctl,
11949034389cSKonstantin Shkolnyy 				sizeof(flow_ctl));
11959034389cSKonstantin Shkolnyy 		ctl_hs = le32_to_cpu(flow_ctl.ulControlHandshake);
11969034389cSKonstantin Shkolnyy 		flow_repl = le32_to_cpu(flow_ctl.ulFlowReplace);
11979034389cSKonstantin Shkolnyy 		dev_dbg(dev, "%s - read ulControlHandshake=0x%08x, ulFlowReplace=0x%08x\n",
11989034389cSKonstantin Shkolnyy 				__func__, ctl_hs, flow_repl);
11997084fa86SKonstantin Shkolnyy 
1200ab5701adSKonstantin Shkolnyy 		ctl_hs &= ~CP210X_SERIAL_DSR_HANDSHAKE;
1201ab5701adSKonstantin Shkolnyy 		ctl_hs &= ~CP210X_SERIAL_DCD_HANDSHAKE;
1202ab5701adSKonstantin Shkolnyy 		ctl_hs &= ~CP210X_SERIAL_DSR_SENSITIVITY;
1203ab5701adSKonstantin Shkolnyy 		ctl_hs &= ~CP210X_SERIAL_DTR_MASK;
1204ab5701adSKonstantin Shkolnyy 		ctl_hs |= CP210X_SERIAL_DTR_SHIFT(CP210X_SERIAL_DTR_ACTIVE);
120503ee2515SGreg Kroah-Hartman 		if (cflag & CRTSCTS) {
12069034389cSKonstantin Shkolnyy 			ctl_hs |= CP210X_SERIAL_CTS_HANDSHAKE;
1207ab5701adSKonstantin Shkolnyy 
1208ab5701adSKonstantin Shkolnyy 			flow_repl &= ~CP210X_SERIAL_RTS_MASK;
12099034389cSKonstantin Shkolnyy 			flow_repl |= CP210X_SERIAL_RTS_SHIFT(
12109034389cSKonstantin Shkolnyy 					CP210X_SERIAL_RTS_FLOW_CTL);
1211660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "%s - flow control = CRTSCTS\n", __func__);
121203ee2515SGreg Kroah-Hartman 		} else {
1213ab5701adSKonstantin Shkolnyy 			ctl_hs &= ~CP210X_SERIAL_CTS_HANDSHAKE;
1214ab5701adSKonstantin Shkolnyy 
1215ab5701adSKonstantin Shkolnyy 			flow_repl &= ~CP210X_SERIAL_RTS_MASK;
12169034389cSKonstantin Shkolnyy 			flow_repl |= CP210X_SERIAL_RTS_SHIFT(
12179034389cSKonstantin Shkolnyy 					CP210X_SERIAL_RTS_ACTIVE);
1218660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "%s - flow control = NONE\n", __func__);
121903ee2515SGreg Kroah-Hartman 		}
122003ee2515SGreg Kroah-Hartman 
12219034389cSKonstantin Shkolnyy 		dev_dbg(dev, "%s - write ulControlHandshake=0x%08x, ulFlowReplace=0x%08x\n",
12229034389cSKonstantin Shkolnyy 				__func__, ctl_hs, flow_repl);
12239034389cSKonstantin Shkolnyy 		flow_ctl.ulControlHandshake = cpu_to_le32(ctl_hs);
12249034389cSKonstantin Shkolnyy 		flow_ctl.ulFlowReplace = cpu_to_le32(flow_repl);
12259034389cSKonstantin Shkolnyy 		cp210x_write_reg_block(port, CP210X_SET_FLOW, &flow_ctl,
12269034389cSKonstantin Shkolnyy 				sizeof(flow_ctl));
122703ee2515SGreg Kroah-Hartman 	}
122803ee2515SGreg Kroah-Hartman 
122903ee2515SGreg Kroah-Hartman }
123003ee2515SGreg Kroah-Hartman 
123120b9d177SAlan Cox static int cp210x_tiocmset(struct tty_struct *tty,
123203ee2515SGreg Kroah-Hartman 		unsigned int set, unsigned int clear)
123303ee2515SGreg Kroah-Hartman {
123403ee2515SGreg Kroah-Hartman 	struct usb_serial_port *port = tty->driver_data;
123520b9d177SAlan Cox 	return cp210x_tiocmset_port(port, set, clear);
1236d2ad67b3SVomLehn }
1237d2ad67b3SVomLehn 
123820b9d177SAlan Cox static int cp210x_tiocmset_port(struct usb_serial_port *port,
1239d2ad67b3SVomLehn 		unsigned int set, unsigned int clear)
1240d2ad67b3SVomLehn {
124119165b2bSKonstantin Shkolnyy 	u16 control = 0;
124203ee2515SGreg Kroah-Hartman 
124303ee2515SGreg Kroah-Hartman 	if (set & TIOCM_RTS) {
124403ee2515SGreg Kroah-Hartman 		control |= CONTROL_RTS;
124503ee2515SGreg Kroah-Hartman 		control |= CONTROL_WRITE_RTS;
124603ee2515SGreg Kroah-Hartman 	}
124703ee2515SGreg Kroah-Hartman 	if (set & TIOCM_DTR) {
124803ee2515SGreg Kroah-Hartman 		control |= CONTROL_DTR;
124903ee2515SGreg Kroah-Hartman 		control |= CONTROL_WRITE_DTR;
125003ee2515SGreg Kroah-Hartman 	}
125103ee2515SGreg Kroah-Hartman 	if (clear & TIOCM_RTS) {
125203ee2515SGreg Kroah-Hartman 		control &= ~CONTROL_RTS;
125303ee2515SGreg Kroah-Hartman 		control |= CONTROL_WRITE_RTS;
125403ee2515SGreg Kroah-Hartman 	}
125503ee2515SGreg Kroah-Hartman 	if (clear & TIOCM_DTR) {
125603ee2515SGreg Kroah-Hartman 		control &= ~CONTROL_DTR;
125703ee2515SGreg Kroah-Hartman 		control |= CONTROL_WRITE_DTR;
125803ee2515SGreg Kroah-Hartman 	}
125903ee2515SGreg Kroah-Hartman 
1260660f3b14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "%s - control = 0x%.4x\n", __func__, control);
126103ee2515SGreg Kroah-Hartman 
126219165b2bSKonstantin Shkolnyy 	return cp210x_write_u16_reg(port, CP210X_SET_MHS, control);
126303ee2515SGreg Kroah-Hartman }
126403ee2515SGreg Kroah-Hartman 
1265d94c7bd4SAlan Cox static void cp210x_dtr_rts(struct usb_serial_port *p, int on)
1266d94c7bd4SAlan Cox {
1267d94c7bd4SAlan Cox 	if (on)
126820b9d177SAlan Cox 		cp210x_tiocmset_port(p, TIOCM_DTR|TIOCM_RTS, 0);
1269d94c7bd4SAlan Cox 	else
127020b9d177SAlan Cox 		cp210x_tiocmset_port(p, 0, TIOCM_DTR|TIOCM_RTS);
1271d94c7bd4SAlan Cox }
1272d94c7bd4SAlan Cox 
127360b33c13SAlan Cox static int cp210x_tiocmget(struct tty_struct *tty)
127403ee2515SGreg Kroah-Hartman {
127503ee2515SGreg Kroah-Hartman 	struct usb_serial_port *port = tty->driver_data;
1276fe1b07e9SKonstantin Shkolnyy 	u8 control;
127703ee2515SGreg Kroah-Hartman 	int result;
127803ee2515SGreg Kroah-Hartman 
1279de24e0a1SJohan Hovold 	result = cp210x_read_u8_reg(port, CP210X_GET_MDMSTS, &control);
1280de24e0a1SJohan Hovold 	if (result)
1281de24e0a1SJohan Hovold 		return result;
128203ee2515SGreg Kroah-Hartman 
128303ee2515SGreg Kroah-Hartman 	result = ((control & CONTROL_DTR) ? TIOCM_DTR : 0)
128403ee2515SGreg Kroah-Hartman 		|((control & CONTROL_RTS) ? TIOCM_RTS : 0)
128503ee2515SGreg Kroah-Hartman 		|((control & CONTROL_CTS) ? TIOCM_CTS : 0)
128603ee2515SGreg Kroah-Hartman 		|((control & CONTROL_DSR) ? TIOCM_DSR : 0)
128703ee2515SGreg Kroah-Hartman 		|((control & CONTROL_RING)? TIOCM_RI  : 0)
128803ee2515SGreg Kroah-Hartman 		|((control & CONTROL_DCD) ? TIOCM_CD  : 0);
128903ee2515SGreg Kroah-Hartman 
1290660f3b14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "%s - control = 0x%.2x\n", __func__, control);
129103ee2515SGreg Kroah-Hartman 
129203ee2515SGreg Kroah-Hartman 	return result;
129303ee2515SGreg Kroah-Hartman }
129403ee2515SGreg Kroah-Hartman 
12954cc27bd6SCraig Shelley static void cp210x_break_ctl(struct tty_struct *tty, int break_state)
129603ee2515SGreg Kroah-Hartman {
129703ee2515SGreg Kroah-Hartman 	struct usb_serial_port *port = tty->driver_data;
129819165b2bSKonstantin Shkolnyy 	u16 state;
129903ee2515SGreg Kroah-Hartman 
130003ee2515SGreg Kroah-Hartman 	if (break_state == 0)
130103ee2515SGreg Kroah-Hartman 		state = BREAK_OFF;
130203ee2515SGreg Kroah-Hartman 	else
130303ee2515SGreg Kroah-Hartman 		state = BREAK_ON;
1304660f3b14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "%s - turning break %s\n", __func__,
130503ee2515SGreg Kroah-Hartman 		state == BREAK_OFF ? "off" : "on");
130619165b2bSKonstantin Shkolnyy 	cp210x_write_u16_reg(port, CP210X_SET_BREAK, state);
130703ee2515SGreg Kroah-Hartman }
130803ee2515SGreg Kroah-Hartman 
1309cf5276ceSMartyn Welch #ifdef CONFIG_GPIOLIB
1310cf5276ceSMartyn Welch static int cp210x_gpio_request(struct gpio_chip *gc, unsigned int offset)
1311cf5276ceSMartyn Welch {
1312cf5276ceSMartyn Welch 	struct usb_serial *serial = gpiochip_get_data(gc);
1313cf5276ceSMartyn Welch 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1314cf5276ceSMartyn Welch 
1315cf5276ceSMartyn Welch 	switch (offset) {
1316cf5276ceSMartyn Welch 	case 0:
1317cf5276ceSMartyn Welch 		if (priv->config & CP2105_GPIO0_TXLED_MODE)
1318cf5276ceSMartyn Welch 			return -ENODEV;
1319cf5276ceSMartyn Welch 		break;
1320cf5276ceSMartyn Welch 	case 1:
1321cf5276ceSMartyn Welch 		if (priv->config & (CP2105_GPIO1_RXLED_MODE |
1322cf5276ceSMartyn Welch 				    CP2105_GPIO1_RS485_MODE))
1323cf5276ceSMartyn Welch 			return -ENODEV;
1324cf5276ceSMartyn Welch 		break;
1325cf5276ceSMartyn Welch 	}
1326cf5276ceSMartyn Welch 
1327cf5276ceSMartyn Welch 	return 0;
1328cf5276ceSMartyn Welch }
1329cf5276ceSMartyn Welch 
1330cf5276ceSMartyn Welch static int cp210x_gpio_get(struct gpio_chip *gc, unsigned int gpio)
1331cf5276ceSMartyn Welch {
1332cf5276ceSMartyn Welch 	struct usb_serial *serial = gpiochip_get_data(gc);
1333cf5276ceSMartyn Welch 	int result;
1334cf5276ceSMartyn Welch 	u8 buf;
1335cf5276ceSMartyn Welch 
1336cf5276ceSMartyn Welch 	result = cp210x_read_vendor_block(serial, REQTYPE_INTERFACE_TO_HOST,
1337cf5276ceSMartyn Welch 					  CP210X_READ_LATCH, &buf, sizeof(buf));
1338cf5276ceSMartyn Welch 	if (result < 0)
1339cf5276ceSMartyn Welch 		return result;
1340cf5276ceSMartyn Welch 
1341cf5276ceSMartyn Welch 	return !!(buf & BIT(gpio));
1342cf5276ceSMartyn Welch }
1343cf5276ceSMartyn Welch 
1344cf5276ceSMartyn Welch static void cp210x_gpio_set(struct gpio_chip *gc, unsigned int gpio, int value)
1345cf5276ceSMartyn Welch {
1346cf5276ceSMartyn Welch 	struct usb_serial *serial = gpiochip_get_data(gc);
1347cf5276ceSMartyn Welch 	struct cp210x_gpio_write buf;
1348cf5276ceSMartyn Welch 
1349cf5276ceSMartyn Welch 	if (value == 1)
1350cf5276ceSMartyn Welch 		buf.state = BIT(gpio);
1351cf5276ceSMartyn Welch 	else
1352cf5276ceSMartyn Welch 		buf.state = 0;
1353cf5276ceSMartyn Welch 
1354cf5276ceSMartyn Welch 	buf.mask = BIT(gpio);
1355cf5276ceSMartyn Welch 
1356cf5276ceSMartyn Welch 	cp210x_write_vendor_block(serial, REQTYPE_HOST_TO_INTERFACE,
1357cf5276ceSMartyn Welch 				  CP210X_WRITE_LATCH, &buf, sizeof(buf));
1358cf5276ceSMartyn Welch }
1359cf5276ceSMartyn Welch 
1360cf5276ceSMartyn Welch static int cp210x_gpio_direction_get(struct gpio_chip *gc, unsigned int gpio)
1361cf5276ceSMartyn Welch {
1362cf5276ceSMartyn Welch 	/* Hardware does not support an input mode */
1363cf5276ceSMartyn Welch 	return 0;
1364cf5276ceSMartyn Welch }
1365cf5276ceSMartyn Welch 
1366cf5276ceSMartyn Welch static int cp210x_gpio_direction_input(struct gpio_chip *gc, unsigned int gpio)
1367cf5276ceSMartyn Welch {
1368cf5276ceSMartyn Welch 	/* Hardware does not support an input mode */
1369cf5276ceSMartyn Welch 	return -ENOTSUPP;
1370cf5276ceSMartyn Welch }
1371cf5276ceSMartyn Welch 
1372cf5276ceSMartyn Welch static int cp210x_gpio_direction_output(struct gpio_chip *gc, unsigned int gpio,
1373cf5276ceSMartyn Welch 					int value)
1374cf5276ceSMartyn Welch {
1375cf5276ceSMartyn Welch 	return 0;
1376cf5276ceSMartyn Welch }
1377cf5276ceSMartyn Welch 
13782956b5d9SMika Westerberg static int cp210x_gpio_set_config(struct gpio_chip *gc, unsigned int gpio,
13792956b5d9SMika Westerberg 				  unsigned long config)
1380cf5276ceSMartyn Welch {
1381cf5276ceSMartyn Welch 	struct usb_serial *serial = gpiochip_get_data(gc);
1382cf5276ceSMartyn Welch 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
13832956b5d9SMika Westerberg 	enum pin_config_param param = pinconf_to_config_param(config);
1384cf5276ceSMartyn Welch 
1385cf5276ceSMartyn Welch 	/* Succeed only if in correct mode (this can't be set at runtime) */
13862956b5d9SMika Westerberg 	if ((param == PIN_CONFIG_DRIVE_PUSH_PULL) &&
13872956b5d9SMika Westerberg 	    (priv->gpio_mode & BIT(gpio)))
1388cf5276ceSMartyn Welch 		return 0;
1389cf5276ceSMartyn Welch 
13902956b5d9SMika Westerberg 	if ((param == PIN_CONFIG_DRIVE_OPEN_DRAIN) &&
13912956b5d9SMika Westerberg 	    !(priv->gpio_mode & BIT(gpio)))
1392cf5276ceSMartyn Welch 		return 0;
1393cf5276ceSMartyn Welch 
1394cf5276ceSMartyn Welch 	return -ENOTSUPP;
1395cf5276ceSMartyn Welch }
1396cf5276ceSMartyn Welch 
1397cf5276ceSMartyn Welch /*
1398cf5276ceSMartyn Welch  * This function is for configuring GPIO using shared pins, where other signals
1399cf5276ceSMartyn Welch  * are made unavailable by configuring the use of GPIO. This is believed to be
1400cf5276ceSMartyn Welch  * only applicable to the cp2105 at this point, the other devices supported by
1401cf5276ceSMartyn Welch  * this driver that provide GPIO do so in a way that does not impact other
1402cf5276ceSMartyn Welch  * signals and are thus expected to have very different initialisation.
1403cf5276ceSMartyn Welch  */
1404cf5276ceSMartyn Welch static int cp2105_shared_gpio_init(struct usb_serial *serial)
1405cf5276ceSMartyn Welch {
1406cf5276ceSMartyn Welch 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1407cf5276ceSMartyn Welch 	struct cp210x_pin_mode mode;
1408cf5276ceSMartyn Welch 	struct cp210x_config config;
1409cf5276ceSMartyn Welch 	u8 intf_num = cp210x_interface_num(serial);
1410cf5276ceSMartyn Welch 	int result;
1411cf5276ceSMartyn Welch 
1412cf5276ceSMartyn Welch 	result = cp210x_read_vendor_block(serial, REQTYPE_DEVICE_TO_HOST,
1413cf5276ceSMartyn Welch 					  CP210X_GET_DEVICEMODE, &mode,
1414cf5276ceSMartyn Welch 					  sizeof(mode));
1415cf5276ceSMartyn Welch 	if (result < 0)
1416cf5276ceSMartyn Welch 		return result;
1417cf5276ceSMartyn Welch 
1418cf5276ceSMartyn Welch 	result = cp210x_read_vendor_block(serial, REQTYPE_DEVICE_TO_HOST,
1419cf5276ceSMartyn Welch 					  CP210X_GET_PORTCONFIG, &config,
1420cf5276ceSMartyn Welch 					  sizeof(config));
1421cf5276ceSMartyn Welch 	if (result < 0)
1422cf5276ceSMartyn Welch 		return result;
1423cf5276ceSMartyn Welch 
1424cf5276ceSMartyn Welch 	/*  2 banks of GPIO - One for the pins taken from each serial port */
1425cf5276ceSMartyn Welch 	if (intf_num == 0) {
1426cf5276ceSMartyn Welch 		if (mode.eci == CP210X_PIN_MODE_MODEM)
1427cf5276ceSMartyn Welch 			return 0;
1428cf5276ceSMartyn Welch 
1429cf5276ceSMartyn Welch 		priv->config = config.eci_cfg;
1430cf5276ceSMartyn Welch 		priv->gpio_mode = (u8)((le16_to_cpu(config.gpio_mode) &
1431cf5276ceSMartyn Welch 						CP210X_ECI_GPIO_MODE_MASK) >>
1432cf5276ceSMartyn Welch 						CP210X_ECI_GPIO_MODE_OFFSET);
1433cf5276ceSMartyn Welch 		priv->gc.ngpio = 2;
1434cf5276ceSMartyn Welch 	} else if (intf_num == 1) {
1435cf5276ceSMartyn Welch 		if (mode.sci == CP210X_PIN_MODE_MODEM)
1436cf5276ceSMartyn Welch 			return 0;
1437cf5276ceSMartyn Welch 
1438cf5276ceSMartyn Welch 		priv->config = config.sci_cfg;
1439cf5276ceSMartyn Welch 		priv->gpio_mode = (u8)((le16_to_cpu(config.gpio_mode) &
1440cf5276ceSMartyn Welch 						CP210X_SCI_GPIO_MODE_MASK) >>
1441cf5276ceSMartyn Welch 						CP210X_SCI_GPIO_MODE_OFFSET);
1442cf5276ceSMartyn Welch 		priv->gc.ngpio = 3;
1443cf5276ceSMartyn Welch 	} else {
1444cf5276ceSMartyn Welch 		return -ENODEV;
1445cf5276ceSMartyn Welch 	}
1446cf5276ceSMartyn Welch 
1447cf5276ceSMartyn Welch 	priv->gc.label = "cp210x";
1448cf5276ceSMartyn Welch 	priv->gc.request = cp210x_gpio_request;
1449cf5276ceSMartyn Welch 	priv->gc.get_direction = cp210x_gpio_direction_get;
1450cf5276ceSMartyn Welch 	priv->gc.direction_input = cp210x_gpio_direction_input;
1451cf5276ceSMartyn Welch 	priv->gc.direction_output = cp210x_gpio_direction_output;
1452cf5276ceSMartyn Welch 	priv->gc.get = cp210x_gpio_get;
1453cf5276ceSMartyn Welch 	priv->gc.set = cp210x_gpio_set;
14542956b5d9SMika Westerberg 	priv->gc.set_config = cp210x_gpio_set_config;
1455cf5276ceSMartyn Welch 	priv->gc.owner = THIS_MODULE;
1456cf5276ceSMartyn Welch 	priv->gc.parent = &serial->interface->dev;
1457cf5276ceSMartyn Welch 	priv->gc.base = -1;
1458cf5276ceSMartyn Welch 	priv->gc.can_sleep = true;
1459cf5276ceSMartyn Welch 
1460cf5276ceSMartyn Welch 	result = gpiochip_add_data(&priv->gc, serial);
1461cf5276ceSMartyn Welch 	if (!result)
14626b7271d2SJohan Hovold 		priv->gpio_registered = true;
1463cf5276ceSMartyn Welch 
1464cf5276ceSMartyn Welch 	return result;
1465cf5276ceSMartyn Welch }
1466cf5276ceSMartyn Welch 
1467cf5276ceSMartyn Welch static void cp210x_gpio_remove(struct usb_serial *serial)
1468cf5276ceSMartyn Welch {
1469cf5276ceSMartyn Welch 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1470cf5276ceSMartyn Welch 
1471cf5276ceSMartyn Welch 	if (priv->gpio_registered) {
1472cf5276ceSMartyn Welch 		gpiochip_remove(&priv->gc);
14736b7271d2SJohan Hovold 		priv->gpio_registered = false;
1474cf5276ceSMartyn Welch 	}
1475cf5276ceSMartyn Welch }
1476cf5276ceSMartyn Welch 
1477cf5276ceSMartyn Welch #else
1478cf5276ceSMartyn Welch 
1479cf5276ceSMartyn Welch static int cp2105_shared_gpio_init(struct usb_serial *serial)
1480cf5276ceSMartyn Welch {
1481cf5276ceSMartyn Welch 	return 0;
1482cf5276ceSMartyn Welch }
1483cf5276ceSMartyn Welch 
1484cf5276ceSMartyn Welch static void cp210x_gpio_remove(struct usb_serial *serial)
1485cf5276ceSMartyn Welch {
1486cf5276ceSMartyn Welch 	/* Nothing to do */
1487cf5276ceSMartyn Welch }
1488cf5276ceSMartyn Welch 
1489cf5276ceSMartyn Welch #endif
1490cf5276ceSMartyn Welch 
1491e2ae67a3SKonstantin Shkolnyy static int cp210x_port_probe(struct usb_serial_port *port)
149203ee2515SGreg Kroah-Hartman {
1493e2ae67a3SKonstantin Shkolnyy 	struct usb_serial *serial = port->serial;
1494e2ae67a3SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv;
1495d0bf1ff0SKonstantin Shkolnyy 	int ret;
1496a5360a53SPreston Fick 
1497e2ae67a3SKonstantin Shkolnyy 	port_priv = kzalloc(sizeof(*port_priv), GFP_KERNEL);
1498e2ae67a3SKonstantin Shkolnyy 	if (!port_priv)
1499a5360a53SPreston Fick 		return -ENOMEM;
1500a5360a53SPreston Fick 
1501cf5276ceSMartyn Welch 	port_priv->bInterfaceNumber = cp210x_interface_num(serial);
1502a5360a53SPreston Fick 
1503e2ae67a3SKonstantin Shkolnyy 	usb_set_serial_port_data(port, port_priv);
1504a5360a53SPreston Fick 
1505d0bf1ff0SKonstantin Shkolnyy 	ret = cp210x_detect_swapped_line_ctl(port);
1506d0bf1ff0SKonstantin Shkolnyy 	if (ret) {
1507d0bf1ff0SKonstantin Shkolnyy 		kfree(port_priv);
1508d0bf1ff0SKonstantin Shkolnyy 		return ret;
1509d0bf1ff0SKonstantin Shkolnyy 	}
151003ee2515SGreg Kroah-Hartman 
151103ee2515SGreg Kroah-Hartman 	return 0;
151203ee2515SGreg Kroah-Hartman }
151303ee2515SGreg Kroah-Hartman 
1514e2ae67a3SKonstantin Shkolnyy static int cp210x_port_remove(struct usb_serial_port *port)
1515a5360a53SPreston Fick {
1516e2ae67a3SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv;
1517a5360a53SPreston Fick 
1518e2ae67a3SKonstantin Shkolnyy 	port_priv = usb_get_serial_port_data(port);
1519e2ae67a3SKonstantin Shkolnyy 	kfree(port_priv);
1520e2ae67a3SKonstantin Shkolnyy 
1521e2ae67a3SKonstantin Shkolnyy 	return 0;
1522a5360a53SPreston Fick }
1523a5360a53SPreston Fick 
1524d4706c05SJohan Hovold static void cp210x_init_max_speed(struct usb_serial *serial)
1525d4706c05SJohan Hovold {
1526d4706c05SJohan Hovold 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1527d4706c05SJohan Hovold 	speed_t max;
1528d4706c05SJohan Hovold 
1529d4706c05SJohan Hovold 	switch (priv->partnum) {
1530d4706c05SJohan Hovold 	case CP210X_PARTNUM_CP2101:
1531d4706c05SJohan Hovold 		max = 921600;
1532d4706c05SJohan Hovold 		break;
1533d4706c05SJohan Hovold 	case CP210X_PARTNUM_CP2102:
1534d4706c05SJohan Hovold 	case CP210X_PARTNUM_CP2103:
1535d4706c05SJohan Hovold 		max = 1000000;
1536d4706c05SJohan Hovold 		break;
1537d4706c05SJohan Hovold 	case CP210X_PARTNUM_CP2104:
1538d4706c05SJohan Hovold 	case CP210X_PARTNUM_CP2108:
1539d4706c05SJohan Hovold 		max = 2000000;
1540d4706c05SJohan Hovold 		break;
1541d4706c05SJohan Hovold 	case CP210X_PARTNUM_CP2105:
1542d4706c05SJohan Hovold 		if (cp210x_interface_num(serial) == 0)
1543d4706c05SJohan Hovold 			max = 2000000;	/* ECI */
1544d4706c05SJohan Hovold 		else
1545d4706c05SJohan Hovold 			max = 921600;	/* SCI */
1546d4706c05SJohan Hovold 		break;
1547*6f0bcf72SKaroly Pados 	case CP210X_PARTNUM_CP2102N_QFN28:
1548*6f0bcf72SKaroly Pados 	case CP210X_PARTNUM_CP2102N_QFN24:
1549*6f0bcf72SKaroly Pados 	case CP210X_PARTNUM_CP2102N_QFN20:
1550*6f0bcf72SKaroly Pados 		max = 3000000;
1551*6f0bcf72SKaroly Pados 		break;
1552d4706c05SJohan Hovold 	default:
1553d4706c05SJohan Hovold 		max = 2000000;
1554d4706c05SJohan Hovold 		break;
1555d4706c05SJohan Hovold 	}
1556d4706c05SJohan Hovold 
1557d4706c05SJohan Hovold 	priv->max_speed = max;
1558d4706c05SJohan Hovold }
1559d4706c05SJohan Hovold 
1560cf5276ceSMartyn Welch static int cp210x_attach(struct usb_serial *serial)
1561cf5276ceSMartyn Welch {
1562cf5276ceSMartyn Welch 	int result;
1563cf5276ceSMartyn Welch 	struct cp210x_serial_private *priv;
1564cf5276ceSMartyn Welch 
1565cf5276ceSMartyn Welch 	priv = kzalloc(sizeof(*priv), GFP_KERNEL);
1566cf5276ceSMartyn Welch 	if (!priv)
1567cf5276ceSMartyn Welch 		return -ENOMEM;
1568cf5276ceSMartyn Welch 
1569cf5276ceSMartyn Welch 	result = cp210x_read_vendor_block(serial, REQTYPE_DEVICE_TO_HOST,
1570cf5276ceSMartyn Welch 					  CP210X_GET_PARTNUM, &priv->partnum,
1571cf5276ceSMartyn Welch 					  sizeof(priv->partnum));
15727eac35eaSSebastian Frei 	if (result < 0) {
15737eac35eaSSebastian Frei 		dev_warn(&serial->interface->dev,
15747eac35eaSSebastian Frei 			 "querying part number failed\n");
15757eac35eaSSebastian Frei 		priv->partnum = CP210X_PARTNUM_UNKNOWN;
15767eac35eaSSebastian Frei 	}
1577cf5276ceSMartyn Welch 
1578cf5276ceSMartyn Welch 	usb_set_serial_data(serial, priv);
1579cf5276ceSMartyn Welch 
1580d4706c05SJohan Hovold 	cp210x_init_max_speed(serial);
1581d4706c05SJohan Hovold 
1582cf5276ceSMartyn Welch 	if (priv->partnum == CP210X_PARTNUM_CP2105) {
1583cf5276ceSMartyn Welch 		result = cp2105_shared_gpio_init(serial);
1584cf5276ceSMartyn Welch 		if (result < 0) {
1585cf5276ceSMartyn Welch 			dev_err(&serial->interface->dev,
1586cf5276ceSMartyn Welch 				"GPIO initialisation failed, continuing without GPIO support\n");
1587cf5276ceSMartyn Welch 		}
1588cf5276ceSMartyn Welch 	}
1589cf5276ceSMartyn Welch 
1590cf5276ceSMartyn Welch 	return 0;
1591cf5276ceSMartyn Welch }
1592cf5276ceSMartyn Welch 
1593cf5276ceSMartyn Welch static void cp210x_disconnect(struct usb_serial *serial)
1594cf5276ceSMartyn Welch {
1595cf5276ceSMartyn Welch 	cp210x_gpio_remove(serial);
1596cf5276ceSMartyn Welch }
1597cf5276ceSMartyn Welch 
1598cf5276ceSMartyn Welch static void cp210x_release(struct usb_serial *serial)
1599cf5276ceSMartyn Welch {
1600cf5276ceSMartyn Welch 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1601cf5276ceSMartyn Welch 
1602cf5276ceSMartyn Welch 	cp210x_gpio_remove(serial);
1603cf5276ceSMartyn Welch 
1604cf5276ceSMartyn Welch 	kfree(priv);
1605cf5276ceSMartyn Welch }
1606cf5276ceSMartyn Welch 
160768e24113SGreg Kroah-Hartman module_usb_serial_driver(serial_drivers, id_table);
160803ee2515SGreg Kroah-Hartman 
160903ee2515SGreg Kroah-Hartman MODULE_DESCRIPTION(DRIVER_DESC);
1610627cfa89SJohan Hovold MODULE_LICENSE("GPL v2");
1611