xref: /linux/drivers/usb/serial/cp210x.c (revision a49e1abf07701600ad5ef990e56d676cbab91bf5)
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 */
9824160628SJohan Hovold 	{ USB_DEVICE(0x10C4, 0x817C) }, /* CESINEL MEDCAL N Power Quality Monitor */
9924160628SJohan Hovold 	{ USB_DEVICE(0x10C4, 0x817D) }, /* CESINEL MEDCAL NT Power Quality Monitor */
10024160628SJohan Hovold 	{ USB_DEVICE(0x10C4, 0x817E) }, /* CESINEL MEDCAL S Power Quality Monitor */
101eefd9029SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x818B) }, /* AVIT Research USB to TTL */
10203ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x819F) }, /* MJS USB Toslink Switcher */
10303ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x81A6) }, /* ThinkOptics WavIt */
10408e87d0dSMalte Schröder 	{ USB_DEVICE(0x10C4, 0x81A9) }, /* Multiplex RC Interface */
10503ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x81AC) }, /* MSD Dash Hawk */
106eefd9029SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x81AD) }, /* INSYS USB Modem */
10703ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x81C8) }, /* Lipowsky Industrie Elektronik GmbH, Baby-JTAG */
108f487c54dSPeter Dedecker 	{ USB_DEVICE(0x10C4, 0x81D7) }, /* IAI Corp. RCB-CV-USB USB to RS485 Adaptor */
10903ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x81E2) }, /* Lipowsky Industrie Elektronik GmbH, Baby-LIN */
11003ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x81E7) }, /* Aerocomm Radio */
111bd07c551SAlan Cox 	{ USB_DEVICE(0x10C4, 0x81E8) }, /* Zephyr Bioharness */
112b7c7cbc8SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x81F2) }, /* C1007 HF band RFID controller */
11303ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x8218) }, /* Lipowsky Industrie Elektronik GmbH, HARP-1 */
11403ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x822B) }, /* Modem EDGE(GSM) Comander 2 */
11525985edcSLucas De Marchi 	{ USB_DEVICE(0x10C4, 0x826B) }, /* Cygnal Integrated Products, Inc., Fasttrax GPS demonstration module */
11672b30079STristan Bruns 	{ USB_DEVICE(0x10C4, 0x8281) }, /* Nanotec Plug & Drive */
117c851e83fSFlorian Fainelli 	{ USB_DEVICE(0x10C4, 0x8293) }, /* Telegesis ETRX2USB */
11824160628SJohan Hovold 	{ USB_DEVICE(0x10C4, 0x82EF) }, /* CESINEL FALCO 6105 AC Power Supply */
11924160628SJohan Hovold 	{ USB_DEVICE(0x10C4, 0x82F1) }, /* CESINEL MEDCAL EFD Earth Fault Detector */
12024160628SJohan Hovold 	{ USB_DEVICE(0x10C4, 0x82F2) }, /* CESINEL MEDCAL ST Network Analyzer */
121613ac23aSJasem Mutlaq 	{ USB_DEVICE(0x10C4, 0x82F4) }, /* Starizona MicroTouch */
122b7c7cbc8SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x82F9) }, /* Procyon AVS */
12303ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x8341) }, /* Siemens MC35PU GPRS Modem */
1248bf16ba7SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x8382) }, /* Cygnal Integrated Products, Inc. */
12503ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x83A8) }, /* Amber Wireless AMB2560 */
126faea63f7SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x83D8) }, /* DekTec DTA Plus VHF/UHF Booster/Attenuator */
1278bf16ba7SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x8411) }, /* Kyocera GPS Module */
128faea63f7SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x8418) }, /* IRZ Automation Teleport SG-10 GSM/GPRS Modem */
129d23bac9fSAlex Stephens 	{ USB_DEVICE(0x10C4, 0x846E) }, /* BEI USB Sensor Interface (VCP) */
130decc5360SKyle Jones 	{ USB_DEVICE(0x10C4, 0x8470) }, /* Juniper Networks BX Series System Console */
131541e05ecSCraig Shelley 	{ USB_DEVICE(0x10C4, 0x8477) }, /* Balluff RFID */
132613ac23aSJasem Mutlaq 	{ USB_DEVICE(0x10C4, 0x84B6) }, /* Starizona Hyperion */
13324160628SJohan Hovold 	{ USB_DEVICE(0x10C4, 0x851E) }, /* CESINEL MEDCAL PT Network Analyzer */
13443074132SDiego Elio Pettenò 	{ USB_DEVICE(0x10C4, 0x85A7) }, /* LifeScan OneTouch Verio IQ */
13524160628SJohan Hovold 	{ USB_DEVICE(0x10C4, 0x85B8) }, /* CESINEL ReCon T Energy Logger */
1364eff0b40SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x85EA) }, /* AC-Services IBUS-IF */
1374eff0b40SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x85EB) }, /* AC-Services CIS-IBUS */
138356fe44fSMarkus Becker 	{ USB_DEVICE(0x10C4, 0x85F8) }, /* Virtenio Preon32 */
1394eff0b40SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x8664) }, /* AC-Services CAN-IF */
1404eff0b40SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x8665) }, /* AC-Services OBD-IF */
1411ae78a48SDavid Peterson 	{ USB_DEVICE(0x10C4, 0x8856) },	/* CEL EM357 ZigBee USB Stick - LR */
1421ae78a48SDavid Peterson 	{ USB_DEVICE(0x10C4, 0x8857) },	/* CEL EM357 ZigBee USB Stick */
14376811569SSami Rahman 	{ USB_DEVICE(0x10C4, 0x88A4) }, /* MMB Networks ZigBee USB Device */
14476811569SSami Rahman 	{ USB_DEVICE(0x10C4, 0x88A5) }, /* Planet Innovation Ingeni ZigBee USB Device */
14524160628SJohan Hovold 	{ USB_DEVICE(0x10C4, 0x88FB) }, /* CESINEL MEDCAL STII Network Analyzer */
14624160628SJohan Hovold 	{ USB_DEVICE(0x10C4, 0x8938) }, /* CESINEL MEDCAL S II Network Analyzer */
147bfc2d7dfSJoe Savage 	{ USB_DEVICE(0x10C4, 0x8946) }, /* Ketra N1 Wireless Interface */
1482ab13292SPaul Jakma 	{ USB_DEVICE(0x10C4, 0x8962) }, /* Brim Brothers charging dock */
1491ae78a48SDavid Peterson 	{ USB_DEVICE(0x10C4, 0x8977) },	/* CEL MeshWorks DevKit Device */
150c735ed74SMark Edwards 	{ USB_DEVICE(0x10C4, 0x8998) }, /* KCF Technologies PRN */
15124160628SJohan Hovold 	{ USB_DEVICE(0x10C4, 0x89A4) }, /* CESINEL FTBC Flexible Thyristor Bridge Controller */
152367b160fSOlli Salonen 	{ USB_DEVICE(0x10C4, 0x89FB) }, /* Qivicon ZigBee USB Radio Stick */
153df72d588SJohn D. Blair 	{ USB_DEVICE(0x10C4, 0x8A2A) }, /* HubZ dual ZigBee and Z-Wave dongle */
154fd90f73aSJeremie Rapin 	{ USB_DEVICE(0x10C4, 0x8A5E) }, /* CEL EM3588 ZigBee USB Stick Long Range */
1559585e340SStefan Triller 	{ USB_DEVICE(0x10C4, 0x8B34) }, /* Qivicon ZigBee USB Radio Stick */
15603ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0xEA60) }, /* Silicon Labs factory default */
15703ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0xEA61) }, /* Silicon Labs factory default */
1582f839823SKaroly Pados 	{ USB_DEVICE(0x10C4, 0xEA63) }, /* Silicon Labs Windows Update (CP2101-4/CP2102N) */
159a5360a53SPreston Fick 	{ USB_DEVICE(0x10C4, 0xEA70) }, /* Silicon Labs factory default */
160eefd9029SCraig Shelley 	{ USB_DEVICE(0x10C4, 0xEA71) }, /* Infinity GPS-MIC-1 Radio Monophone */
1612f839823SKaroly Pados 	{ USB_DEVICE(0x10C4, 0xEA7A) }, /* Silicon Labs Windows Update (CP2105) */
1622f839823SKaroly Pados 	{ USB_DEVICE(0x10C4, 0xEA7B) }, /* Silicon Labs Windows Update (CP2108) */
16303ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0xF001) }, /* Elan Digital Systems USBscope50 */
16403ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0xF002) }, /* Elan Digital Systems USBwave12 */
16503ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0xF003) }, /* Elan Digital Systems USBpulse100 */
16603ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0xF004) }, /* Elan Digital Systems USBcount50 */
16703ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C5, 0xEA61) }, /* Silicon Labs MobiData GPRS USB Modem */
168b7c7cbc8SCraig Shelley 	{ USB_DEVICE(0x10CE, 0xEA6A) }, /* Silicon Labs MobiData GPRS USB Modem 100EU */
1691d377f4dSMike Manning 	{ USB_DEVICE(0x12B8, 0xEC60) }, /* Link G4 ECU */
1701d377f4dSMike Manning 	{ USB_DEVICE(0x12B8, 0xEC62) }, /* Link G4+ ECU */
17103ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x13AD, 0x9999) }, /* Baltech card reader */
172b7c7cbc8SCraig Shelley 	{ USB_DEVICE(0x1555, 0x0004) }, /* Owen AC4 USB-RS485 Converter */
1731f1e82f7SJohan Hovold 	{ USB_DEVICE(0x155A, 0x1006) },	/* ELDAT Easywave RX09 */
1743fcc8f96SCraig Shelley 	{ USB_DEVICE(0x166A, 0x0201) }, /* Clipsal 5500PACA C-Bus Pascal Automation Controller */
1753fcc8f96SCraig Shelley 	{ USB_DEVICE(0x166A, 0x0301) }, /* Clipsal 5800PC C-Bus Wireless PC Interface */
17603ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x166A, 0x0303) }, /* Clipsal 5500PCU C-Bus USB interface */
1773fcc8f96SCraig Shelley 	{ USB_DEVICE(0x166A, 0x0304) }, /* Clipsal 5000CT2 C-Bus Black and White Touchscreen */
1783fcc8f96SCraig Shelley 	{ USB_DEVICE(0x166A, 0x0305) }, /* Clipsal C-5000CT2 C-Bus Spectrum Colour Touchscreen */
1793fcc8f96SCraig Shelley 	{ USB_DEVICE(0x166A, 0x0401) }, /* Clipsal L51xx C-Bus Architectural Dimmer */
1803fcc8f96SCraig Shelley 	{ USB_DEVICE(0x166A, 0x0101) }, /* Clipsal 5560884 C-Bus Multi-room Audio Matrix Switcher */
181675af708SMichiel vd Garde 	{ USB_DEVICE(0x16C0, 0x09B0) }, /* Lunatico Seletek */
182675af708SMichiel vd Garde 	{ USB_DEVICE(0x16C0, 0x09B1) }, /* Lunatico Seletek */
18303ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x16D6, 0x0001) }, /* Jablotron serial interface */
184356c5a48SAlessio Igor Bogani 	{ USB_DEVICE(0x16DC, 0x0010) }, /* W-IE-NE-R Plein & Baus GmbH PL512 Power Supply */
185356c5a48SAlessio Igor Bogani 	{ USB_DEVICE(0x16DC, 0x0011) }, /* W-IE-NE-R Plein & Baus GmbH RCM Remote Control for MARATON Power Supply */
186356c5a48SAlessio Igor Bogani 	{ USB_DEVICE(0x16DC, 0x0012) }, /* W-IE-NE-R Plein & Baus GmbH MPOD Multi Channel Power Supply */
187356c5a48SAlessio Igor Bogani 	{ USB_DEVICE(0x16DC, 0x0015) }, /* W-IE-NE-R Plein & Baus GmbH CML Control, Monitoring and Data Logger */
188c6c1e449SBruno Thomsen 	{ USB_DEVICE(0x17A8, 0x0001) }, /* Kamstrup Optical Eye/3-wire */
189c6c1e449SBruno Thomsen 	{ USB_DEVICE(0x17A8, 0x0005) }, /* Kamstrup M-Bus Master MultiPort 250D */
190541e05ecSCraig Shelley 	{ USB_DEVICE(0x17F4, 0xAAAA) }, /* Wavesense Jazz blood glucose meter */
191541e05ecSCraig Shelley 	{ USB_DEVICE(0x1843, 0x0200) }, /* Vaisala USB Instrument Cable */
192541e05ecSCraig Shelley 	{ USB_DEVICE(0x18EF, 0xE00F) }, /* ELV USB-I2C-Interface */
193f7d7f59aSOliver Freyermuth 	{ USB_DEVICE(0x18EF, 0xE025) }, /* ELV Marble Sound Board 1 */
194d14ac576SChristian Holl 	{ USB_DEVICE(0x18EF, 0xE030) }, /* ELV ALC 8xxx Battery Charger */
195c496ad83SAndreas Engel 	{ USB_DEVICE(0x18EF, 0xE032) }, /* ELV TFD500 Data Logger */
1966627ae19SKen Lin 	{ USB_DEVICE(0x1901, 0x0190) }, /* GE B850 CP2105 Recorder interface */
1976627ae19SKen Lin 	{ USB_DEVICE(0x1901, 0x0193) }, /* GE B650 CP2104 PMC interface */
198cddc9434SMartyn Welch 	{ USB_DEVICE(0x1901, 0x0194) },	/* GE Healthcare Remote Alarm Box */
1999a593656SKen Lin 	{ USB_DEVICE(0x1901, 0x0195) },	/* GE B850/B650/B450 CP2104 DP UART interface */
2009a593656SKen Lin 	{ USB_DEVICE(0x1901, 0x0196) },	/* GE B850 CP2105 DP UART interface */
2013c4c615dSVittorio Alfieri 	{ USB_DEVICE(0x19CF, 0x3000) }, /* Parrot NMEA GPS Flight Recorder */
202b579fa52SBarry Grussling 	{ USB_DEVICE(0x1ADB, 0x0001) }, /* Schweitzer Engineering C662 Cable */
203b9326057SAndras Kovacs 	{ USB_DEVICE(0x1B1C, 0x1C00) }, /* Corsair USB Dongle */
20435cc83eaSNathaniel Ting 	{ USB_DEVICE(0x1BA4, 0x0002) },	/* Silicon Labs 358x factory default */
20593ad03d6SAnders Larsen 	{ USB_DEVICE(0x1BE3, 0x07A6) }, /* WAGO 750-923 USB Service Cable */
206dee80ad1SAndreas Bomholtz 	{ USB_DEVICE(0x1D6F, 0x0010) }, /* Seluxit ApS RF Dongle */
2073fcc8f96SCraig Shelley 	{ USB_DEVICE(0x1E29, 0x0102) }, /* Festo CPX-USB */
2083fcc8f96SCraig Shelley 	{ USB_DEVICE(0x1E29, 0x0501) }, /* Festo CMSP */
209be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0100) }, /* Lake Shore Model 121 Current Source */
210be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0200) }, /* Lake Shore Model 218A Temperature Monitor */
211be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0201) }, /* Lake Shore Model 219 Temperature Monitor */
212be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0202) }, /* Lake Shore Model 233 Temperature Transmitter */
213be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0203) }, /* Lake Shore Model 235 Temperature Transmitter */
214be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0300) }, /* Lake Shore Model 335 Temperature Controller */
215be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0301) }, /* Lake Shore Model 336 Temperature Controller */
216be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0302) }, /* Lake Shore Model 350 Temperature Controller */
217be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0303) }, /* Lake Shore Model 371 AC Bridge */
218be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0400) }, /* Lake Shore Model 411 Handheld Gaussmeter */
219be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0401) }, /* Lake Shore Model 425 Gaussmeter */
220be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0402) }, /* Lake Shore Model 455A Gaussmeter */
221be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0403) }, /* Lake Shore Model 475A Gaussmeter */
222be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0404) }, /* Lake Shore Model 465 Three Axis Gaussmeter */
223be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0600) }, /* Lake Shore Model 625A Superconducting MPS */
224be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0601) }, /* Lake Shore Model 642A Magnet Power Supply */
225be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0602) }, /* Lake Shore Model 648 Magnet Power Supply */
226be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0700) }, /* Lake Shore Model 737 VSM Controller */
227be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0701) }, /* Lake Shore Model 776 Hall Matrix */
228f98a7aa8SPeter Sanford 	{ USB_DEVICE(0x2626, 0xEA60) }, /* Aruba Networks 7xxx USB Serial Console */
229791b7d7cSRenato Caldas 	{ USB_DEVICE(0x3195, 0xF190) }, /* Link Instruments MSO-19 */
2303fcc8f96SCraig Shelley 	{ USB_DEVICE(0x3195, 0xF280) }, /* Link Instruments MSO-28 */
2313fcc8f96SCraig Shelley 	{ USB_DEVICE(0x3195, 0xF281) }, /* Link Instruments MSO-28 */
2321e23aaceSKyle Roeschley 	{ USB_DEVICE(0x3923, 0x7A0B) }, /* National Instruments USB Serial Console */
233541e05ecSCraig Shelley 	{ USB_DEVICE(0x413C, 0x9500) }, /* DW700 GPS USB interface */
23403ee2515SGreg Kroah-Hartman 	{ } /* Terminating Entry */
23503ee2515SGreg Kroah-Hartman };
23603ee2515SGreg Kroah-Hartman 
23703ee2515SGreg Kroah-Hartman MODULE_DEVICE_TABLE(usb, id_table);
23803ee2515SGreg Kroah-Hartman 
239cf5276ceSMartyn Welch struct cp210x_serial_private {
240cf5276ceSMartyn Welch #ifdef CONFIG_GPIOLIB
241cf5276ceSMartyn Welch 	struct gpio_chip	gc;
2426b7271d2SJohan Hovold 	bool			gpio_registered;
243c8acfe0aSKaroly Pados 	u8			gpio_pushpull;
244c8acfe0aSKaroly Pados 	u8			gpio_altfunc;
245c8acfe0aSKaroly Pados 	u8			gpio_input;
246cf5276ceSMartyn Welch #endif
247cf5276ceSMartyn Welch 	u8			partnum;
248d4706c05SJohan Hovold 	speed_t			max_speed;
2497aecd7fcSJohan Hovold 	bool			use_actual_rate;
250cf5276ceSMartyn Welch };
251cf5276ceSMartyn Welch 
252e2ae67a3SKonstantin Shkolnyy struct cp210x_port_private {
253a5360a53SPreston Fick 	__u8			bInterfaceNumber;
254d0bf1ff0SKonstantin Shkolnyy 	bool			has_swapped_line_ctl;
255a5360a53SPreston Fick };
256a5360a53SPreston Fick 
2574cc27bd6SCraig Shelley static struct usb_serial_driver cp210x_device = {
25803ee2515SGreg Kroah-Hartman 	.driver = {
25903ee2515SGreg Kroah-Hartman 		.owner =	THIS_MODULE,
2604cc27bd6SCraig Shelley 		.name =		"cp210x",
26103ee2515SGreg Kroah-Hartman 	},
26203ee2515SGreg Kroah-Hartman 	.id_table		= id_table,
26303ee2515SGreg Kroah-Hartman 	.num_ports		= 1,
264aea006b9SJohan Hovold 	.bulk_in_size		= 256,
265d4e598f6SJohan Hovold 	.bulk_out_size		= 256,
2664cc27bd6SCraig Shelley 	.open			= cp210x_open,
2674cc27bd6SCraig Shelley 	.close			= cp210x_close,
2684cc27bd6SCraig Shelley 	.break_ctl		= cp210x_break_ctl,
2694cc27bd6SCraig Shelley 	.set_termios		= cp210x_set_termios,
2706f923a01SKonstantin Shkolnyy 	.tx_empty		= cp210x_tx_empty,
2714cc27bd6SCraig Shelley 	.tiocmget		= cp210x_tiocmget,
2724cc27bd6SCraig Shelley 	.tiocmset		= cp210x_tiocmset,
273cf5276ceSMartyn Welch 	.attach			= cp210x_attach,
274cf5276ceSMartyn Welch 	.disconnect		= cp210x_disconnect,
275cf5276ceSMartyn Welch 	.release		= cp210x_release,
276e2ae67a3SKonstantin Shkolnyy 	.port_probe		= cp210x_port_probe,
277e2ae67a3SKonstantin Shkolnyy 	.port_remove		= cp210x_port_remove,
278d14fc1a7SLibor Pechacek 	.dtr_rts		= cp210x_dtr_rts
27903ee2515SGreg Kroah-Hartman };
28003ee2515SGreg Kroah-Hartman 
28108a4f6bcSAlan Stern static struct usb_serial_driver * const serial_drivers[] = {
28208a4f6bcSAlan Stern 	&cp210x_device, NULL
28308a4f6bcSAlan Stern };
28408a4f6bcSAlan Stern 
28503ee2515SGreg Kroah-Hartman /* Config request types */
28632445605SPreston Fick #define REQTYPE_HOST_TO_INTERFACE	0x41
28732445605SPreston Fick #define REQTYPE_INTERFACE_TO_HOST	0xc1
28832445605SPreston Fick #define REQTYPE_HOST_TO_DEVICE	0x40
28932445605SPreston Fick #define REQTYPE_DEVICE_TO_HOST	0xc0
29003ee2515SGreg Kroah-Hartman 
29193ef1f1fSCraig Shelley /* Config request codes */
29293ef1f1fSCraig Shelley #define CP210X_IFC_ENABLE	0x00
29393ef1f1fSCraig Shelley #define CP210X_SET_BAUDDIV	0x01
29493ef1f1fSCraig Shelley #define CP210X_GET_BAUDDIV	0x02
29593ef1f1fSCraig Shelley #define CP210X_SET_LINE_CTL	0x03
29693ef1f1fSCraig Shelley #define CP210X_GET_LINE_CTL	0x04
29793ef1f1fSCraig Shelley #define CP210X_SET_BREAK	0x05
29893ef1f1fSCraig Shelley #define CP210X_IMM_CHAR		0x06
29993ef1f1fSCraig Shelley #define CP210X_SET_MHS		0x07
30093ef1f1fSCraig Shelley #define CP210X_GET_MDMSTS	0x08
30193ef1f1fSCraig Shelley #define CP210X_SET_XON		0x09
30293ef1f1fSCraig Shelley #define CP210X_SET_XOFF		0x0A
30393ef1f1fSCraig Shelley #define CP210X_SET_EVENTMASK	0x0B
30493ef1f1fSCraig Shelley #define CP210X_GET_EVENTMASK	0x0C
30593ef1f1fSCraig Shelley #define CP210X_SET_CHAR		0x0D
30693ef1f1fSCraig Shelley #define CP210X_GET_CHARS	0x0E
30793ef1f1fSCraig Shelley #define CP210X_GET_PROPS	0x0F
30893ef1f1fSCraig Shelley #define CP210X_GET_COMM_STATUS	0x10
30993ef1f1fSCraig Shelley #define CP210X_RESET		0x11
31093ef1f1fSCraig Shelley #define CP210X_PURGE		0x12
31193ef1f1fSCraig Shelley #define CP210X_SET_FLOW		0x13
31293ef1f1fSCraig Shelley #define CP210X_GET_FLOW		0x14
31393ef1f1fSCraig Shelley #define CP210X_EMBED_EVENTS	0x15
31493ef1f1fSCraig Shelley #define CP210X_GET_EVENTSTATE	0x16
31593ef1f1fSCraig Shelley #define CP210X_SET_CHARS	0x19
3167f482fc8SPreston Fick #define CP210X_GET_BAUDRATE	0x1D
3177f482fc8SPreston Fick #define CP210X_SET_BAUDRATE	0x1E
318cf5276ceSMartyn Welch #define CP210X_VENDOR_SPECIFIC	0xFF
31903ee2515SGreg Kroah-Hartman 
32093ef1f1fSCraig Shelley /* CP210X_IFC_ENABLE */
32103ee2515SGreg Kroah-Hartman #define UART_ENABLE		0x0001
32203ee2515SGreg Kroah-Hartman #define UART_DISABLE		0x0000
32303ee2515SGreg Kroah-Hartman 
32493ef1f1fSCraig Shelley /* CP210X_(SET|GET)_BAUDDIV */
32503ee2515SGreg Kroah-Hartman #define BAUD_RATE_GEN_FREQ	0x384000
32603ee2515SGreg Kroah-Hartman 
32793ef1f1fSCraig Shelley /* CP210X_(SET|GET)_LINE_CTL */
32803ee2515SGreg Kroah-Hartman #define BITS_DATA_MASK		0X0f00
32903ee2515SGreg Kroah-Hartman #define BITS_DATA_5		0X0500
33003ee2515SGreg Kroah-Hartman #define BITS_DATA_6		0X0600
33103ee2515SGreg Kroah-Hartman #define BITS_DATA_7		0X0700
33203ee2515SGreg Kroah-Hartman #define BITS_DATA_8		0X0800
33303ee2515SGreg Kroah-Hartman #define BITS_DATA_9		0X0900
33403ee2515SGreg Kroah-Hartman 
33503ee2515SGreg Kroah-Hartman #define BITS_PARITY_MASK	0x00f0
33603ee2515SGreg Kroah-Hartman #define BITS_PARITY_NONE	0x0000
33703ee2515SGreg Kroah-Hartman #define BITS_PARITY_ODD		0x0010
33803ee2515SGreg Kroah-Hartman #define BITS_PARITY_EVEN	0x0020
33903ee2515SGreg Kroah-Hartman #define BITS_PARITY_MARK	0x0030
34003ee2515SGreg Kroah-Hartman #define BITS_PARITY_SPACE	0x0040
34103ee2515SGreg Kroah-Hartman 
34203ee2515SGreg Kroah-Hartman #define BITS_STOP_MASK		0x000f
34303ee2515SGreg Kroah-Hartman #define BITS_STOP_1		0x0000
34403ee2515SGreg Kroah-Hartman #define BITS_STOP_1_5		0x0001
34503ee2515SGreg Kroah-Hartman #define BITS_STOP_2		0x0002
34603ee2515SGreg Kroah-Hartman 
34793ef1f1fSCraig Shelley /* CP210X_SET_BREAK */
34872916791SCraig Shelley #define BREAK_ON		0x0001
34972916791SCraig Shelley #define BREAK_OFF		0x0000
35003ee2515SGreg Kroah-Hartman 
35193ef1f1fSCraig Shelley /* CP210X_(SET_MHS|GET_MDMSTS) */
35203ee2515SGreg Kroah-Hartman #define CONTROL_DTR		0x0001
35303ee2515SGreg Kroah-Hartman #define CONTROL_RTS		0x0002
35403ee2515SGreg Kroah-Hartman #define CONTROL_CTS		0x0010
35503ee2515SGreg Kroah-Hartman #define CONTROL_DSR		0x0020
35603ee2515SGreg Kroah-Hartman #define CONTROL_RING		0x0040
35703ee2515SGreg Kroah-Hartman #define CONTROL_DCD		0x0080
35803ee2515SGreg Kroah-Hartman #define CONTROL_WRITE_DTR	0x0100
35903ee2515SGreg Kroah-Hartman #define CONTROL_WRITE_RTS	0x0200
36003ee2515SGreg Kroah-Hartman 
361cf5276ceSMartyn Welch /* CP210X_VENDOR_SPECIFIC values */
362c8acfe0aSKaroly Pados #define CP210X_READ_2NCONFIG	0x000E
363cf5276ceSMartyn Welch #define CP210X_READ_LATCH	0x00C2
364cf5276ceSMartyn Welch #define CP210X_GET_PARTNUM	0x370B
365cf5276ceSMartyn Welch #define CP210X_GET_PORTCONFIG	0x370C
366cf5276ceSMartyn Welch #define CP210X_GET_DEVICEMODE	0x3711
367cf5276ceSMartyn Welch #define CP210X_WRITE_LATCH	0x37E1
368cf5276ceSMartyn Welch 
369cf5276ceSMartyn Welch /* Part number definitions */
370cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2101	0x01
371cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2102	0x02
372cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2103	0x03
373cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2104	0x04
374cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2105	0x05
375cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2108	0x08
3766f0bcf72SKaroly Pados #define CP210X_PARTNUM_CP2102N_QFN28	0x20
3776f0bcf72SKaroly Pados #define CP210X_PARTNUM_CP2102N_QFN24	0x21
3786f0bcf72SKaroly Pados #define CP210X_PARTNUM_CP2102N_QFN20	0x22
3797eac35eaSSebastian Frei #define CP210X_PARTNUM_UNKNOWN	0xFF
380cf5276ceSMartyn Welch 
3816f923a01SKonstantin Shkolnyy /* CP210X_GET_COMM_STATUS returns these 0x13 bytes */
3826f923a01SKonstantin Shkolnyy struct cp210x_comm_status {
3836f923a01SKonstantin Shkolnyy 	__le32   ulErrors;
3846f923a01SKonstantin Shkolnyy 	__le32   ulHoldReasons;
3856f923a01SKonstantin Shkolnyy 	__le32   ulAmountInInQueue;
3866f923a01SKonstantin Shkolnyy 	__le32   ulAmountInOutQueue;
3876f923a01SKonstantin Shkolnyy 	u8       bEofReceived;
3886f923a01SKonstantin Shkolnyy 	u8       bWaitForImmediate;
3896f923a01SKonstantin Shkolnyy 	u8       bReserved;
3906f923a01SKonstantin Shkolnyy } __packed;
3916f923a01SKonstantin Shkolnyy 
39203ee2515SGreg Kroah-Hartman /*
393ebfb319bSKonstantin Shkolnyy  * CP210X_PURGE - 16 bits passed in wValue of USB request.
394ebfb319bSKonstantin Shkolnyy  * SiLabs app note AN571 gives a strange description of the 4 bits:
395ebfb319bSKonstantin Shkolnyy  * bit 0 or bit 2 clears the transmit queue and 1 or 3 receive.
396ebfb319bSKonstantin Shkolnyy  * writing 1 to all, however, purges cp2108 well enough to avoid the hang.
397ebfb319bSKonstantin Shkolnyy  */
398ebfb319bSKonstantin Shkolnyy #define PURGE_ALL		0x000f
399ebfb319bSKonstantin Shkolnyy 
4009034389cSKonstantin Shkolnyy /* CP210X_GET_FLOW/CP210X_SET_FLOW read/write these 0x10 bytes */
4019034389cSKonstantin Shkolnyy struct cp210x_flow_ctl {
4029034389cSKonstantin Shkolnyy 	__le32	ulControlHandshake;
4039034389cSKonstantin Shkolnyy 	__le32	ulFlowReplace;
4049034389cSKonstantin Shkolnyy 	__le32	ulXonLimit;
4059034389cSKonstantin Shkolnyy 	__le32	ulXoffLimit;
4069034389cSKonstantin Shkolnyy } __packed;
4079034389cSKonstantin Shkolnyy 
4089034389cSKonstantin Shkolnyy /* cp210x_flow_ctl::ulControlHandshake */
4099034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DTR_MASK		GENMASK(1, 0)
4109034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DTR_SHIFT(_mode)	(_mode)
4119034389cSKonstantin Shkolnyy #define CP210X_SERIAL_CTS_HANDSHAKE	BIT(3)
4129034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DSR_HANDSHAKE	BIT(4)
4139034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DCD_HANDSHAKE	BIT(5)
4149034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DSR_SENSITIVITY	BIT(6)
4159034389cSKonstantin Shkolnyy 
4169034389cSKonstantin Shkolnyy /* values for cp210x_flow_ctl::ulControlHandshake::CP210X_SERIAL_DTR_MASK */
4179034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DTR_INACTIVE	0
4189034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DTR_ACTIVE	1
4199034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DTR_FLOW_CTL	2
4209034389cSKonstantin Shkolnyy 
4219034389cSKonstantin Shkolnyy /* cp210x_flow_ctl::ulFlowReplace */
4229034389cSKonstantin Shkolnyy #define CP210X_SERIAL_AUTO_TRANSMIT	BIT(0)
4239034389cSKonstantin Shkolnyy #define CP210X_SERIAL_AUTO_RECEIVE	BIT(1)
4249034389cSKonstantin Shkolnyy #define CP210X_SERIAL_ERROR_CHAR	BIT(2)
4259034389cSKonstantin Shkolnyy #define CP210X_SERIAL_NULL_STRIPPING	BIT(3)
4269034389cSKonstantin Shkolnyy #define CP210X_SERIAL_BREAK_CHAR	BIT(4)
4279034389cSKonstantin Shkolnyy #define CP210X_SERIAL_RTS_MASK		GENMASK(7, 6)
4289034389cSKonstantin Shkolnyy #define CP210X_SERIAL_RTS_SHIFT(_mode)	(_mode << 6)
4299034389cSKonstantin Shkolnyy #define CP210X_SERIAL_XOFF_CONTINUE	BIT(31)
4309034389cSKonstantin Shkolnyy 
4319034389cSKonstantin Shkolnyy /* values for cp210x_flow_ctl::ulFlowReplace::CP210X_SERIAL_RTS_MASK */
4329034389cSKonstantin Shkolnyy #define CP210X_SERIAL_RTS_INACTIVE	0
4339034389cSKonstantin Shkolnyy #define CP210X_SERIAL_RTS_ACTIVE	1
4349034389cSKonstantin Shkolnyy #define CP210X_SERIAL_RTS_FLOW_CTL	2
4359034389cSKonstantin Shkolnyy 
436cf5276ceSMartyn Welch /* CP210X_VENDOR_SPECIFIC, CP210X_GET_DEVICEMODE call reads these 0x2 bytes. */
437cf5276ceSMartyn Welch struct cp210x_pin_mode {
438cf5276ceSMartyn Welch 	u8	eci;
439cf5276ceSMartyn Welch 	u8	sci;
440cf5276ceSMartyn Welch } __packed;
441cf5276ceSMartyn Welch 
442cf5276ceSMartyn Welch #define CP210X_PIN_MODE_MODEM		0
443cf5276ceSMartyn Welch #define CP210X_PIN_MODE_GPIO		BIT(0)
444cf5276ceSMartyn Welch 
445cf5276ceSMartyn Welch /*
446cf5276ceSMartyn Welch  * CP210X_VENDOR_SPECIFIC, CP210X_GET_PORTCONFIG call reads these 0xf bytes.
447cf5276ceSMartyn Welch  * Structure needs padding due to unused/unspecified bytes.
448cf5276ceSMartyn Welch  */
449cf5276ceSMartyn Welch struct cp210x_config {
450cf5276ceSMartyn Welch 	__le16	gpio_mode;
451cf5276ceSMartyn Welch 	u8	__pad0[2];
452cf5276ceSMartyn Welch 	__le16	reset_state;
453cf5276ceSMartyn Welch 	u8	__pad1[4];
454cf5276ceSMartyn Welch 	__le16	suspend_state;
455cf5276ceSMartyn Welch 	u8	sci_cfg;
456cf5276ceSMartyn Welch 	u8	eci_cfg;
457cf5276ceSMartyn Welch 	u8	device_cfg;
458cf5276ceSMartyn Welch } __packed;
459cf5276ceSMartyn Welch 
460cf5276ceSMartyn Welch /* GPIO modes */
461cf5276ceSMartyn Welch #define CP210X_SCI_GPIO_MODE_OFFSET	9
462cf5276ceSMartyn Welch #define CP210X_SCI_GPIO_MODE_MASK	GENMASK(11, 9)
463cf5276ceSMartyn Welch 
464cf5276ceSMartyn Welch #define CP210X_ECI_GPIO_MODE_OFFSET	2
465cf5276ceSMartyn Welch #define CP210X_ECI_GPIO_MODE_MASK	GENMASK(3, 2)
466cf5276ceSMartyn Welch 
467cf5276ceSMartyn Welch /* CP2105 port configuration values */
468cf5276ceSMartyn Welch #define CP2105_GPIO0_TXLED_MODE		BIT(0)
469cf5276ceSMartyn Welch #define CP2105_GPIO1_RXLED_MODE		BIT(1)
470cf5276ceSMartyn Welch #define CP2105_GPIO1_RS485_MODE		BIT(2)
471cf5276ceSMartyn Welch 
472c8acfe0aSKaroly Pados /* CP2102N configuration array indices */
473c8acfe0aSKaroly Pados #define CP210X_2NCONFIG_CONFIG_VERSION_IDX	2
474c8acfe0aSKaroly Pados #define CP210X_2NCONFIG_GPIO_MODE_IDX		581
475c8acfe0aSKaroly Pados #define CP210X_2NCONFIG_GPIO_RSTLATCH_IDX	587
476c8acfe0aSKaroly Pados #define CP210X_2NCONFIG_GPIO_CONTROL_IDX	600
477c8acfe0aSKaroly Pados 
478cf5276ceSMartyn Welch /* CP210X_VENDOR_SPECIFIC, CP210X_WRITE_LATCH call writes these 0x2 bytes. */
479cf5276ceSMartyn Welch struct cp210x_gpio_write {
480cf5276ceSMartyn Welch 	u8	mask;
481cf5276ceSMartyn Welch 	u8	state;
482cf5276ceSMartyn Welch } __packed;
483cf5276ceSMartyn Welch 
484cf5276ceSMartyn Welch /*
485cf5276ceSMartyn Welch  * Helper to get interface number when we only have struct usb_serial.
486cf5276ceSMartyn Welch  */
487cf5276ceSMartyn Welch static u8 cp210x_interface_num(struct usb_serial *serial)
488cf5276ceSMartyn Welch {
489cf5276ceSMartyn Welch 	struct usb_host_interface *cur_altsetting;
490cf5276ceSMartyn Welch 
491cf5276ceSMartyn Welch 	cur_altsetting = serial->interface->cur_altsetting;
492cf5276ceSMartyn Welch 
493cf5276ceSMartyn Welch 	return cur_altsetting->desc.bInterfaceNumber;
494cf5276ceSMartyn Welch }
495cf5276ceSMartyn Welch 
49603ee2515SGreg Kroah-Hartman /*
49719165b2bSKonstantin Shkolnyy  * Reads a variable-sized block of CP210X_ registers, identified by req.
49819165b2bSKonstantin Shkolnyy  * Returns data into buf in native USB byte order.
49903ee2515SGreg Kroah-Hartman  */
50019165b2bSKonstantin Shkolnyy static int cp210x_read_reg_block(struct usb_serial_port *port, u8 req,
50119165b2bSKonstantin Shkolnyy 		void *buf, int bufsize)
50203ee2515SGreg Kroah-Hartman {
50303ee2515SGreg Kroah-Hartman 	struct usb_serial *serial = port->serial;
504e2ae67a3SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
50519165b2bSKonstantin Shkolnyy 	void *dmabuf;
50619165b2bSKonstantin Shkolnyy 	int result;
50703ee2515SGreg Kroah-Hartman 
50819165b2bSKonstantin Shkolnyy 	dmabuf = kmalloc(bufsize, GFP_KERNEL);
50919165b2bSKonstantin Shkolnyy 	if (!dmabuf) {
51019165b2bSKonstantin Shkolnyy 		/*
51119165b2bSKonstantin Shkolnyy 		 * FIXME Some callers don't bother to check for error,
51219165b2bSKonstantin Shkolnyy 		 * at least give them consistent junk until they are fixed
51319165b2bSKonstantin Shkolnyy 		 */
51419165b2bSKonstantin Shkolnyy 		memset(buf, 0, bufsize);
51503ee2515SGreg Kroah-Hartman 		return -ENOMEM;
51619165b2bSKonstantin Shkolnyy 	}
51703ee2515SGreg Kroah-Hartman 
51803ee2515SGreg Kroah-Hartman 	result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
51919165b2bSKonstantin Shkolnyy 			req, REQTYPE_INTERFACE_TO_HOST, 0,
52019165b2bSKonstantin Shkolnyy 			port_priv->bInterfaceNumber, dmabuf, bufsize,
52119165b2bSKonstantin Shkolnyy 			USB_CTRL_SET_TIMEOUT);
52219165b2bSKonstantin Shkolnyy 	if (result == bufsize) {
52319165b2bSKonstantin Shkolnyy 		memcpy(buf, dmabuf, bufsize);
52419165b2bSKonstantin Shkolnyy 		result = 0;
52519165b2bSKonstantin Shkolnyy 	} else {
52619165b2bSKonstantin Shkolnyy 		dev_err(&port->dev, "failed get req 0x%x size %d status: %d\n",
52719165b2bSKonstantin Shkolnyy 				req, bufsize, result);
52819165b2bSKonstantin Shkolnyy 		if (result >= 0)
5290407f1ceSJohan Hovold 			result = -EIO;
5302479e2a9SJohan Hovold 
53119165b2bSKonstantin Shkolnyy 		/*
53219165b2bSKonstantin Shkolnyy 		 * FIXME Some callers don't bother to check for error,
53319165b2bSKonstantin Shkolnyy 		 * at least give them consistent junk until they are fixed
53419165b2bSKonstantin Shkolnyy 		 */
53519165b2bSKonstantin Shkolnyy 		memset(buf, 0, bufsize);
53619165b2bSKonstantin Shkolnyy 	}
53719165b2bSKonstantin Shkolnyy 
53819165b2bSKonstantin Shkolnyy 	kfree(dmabuf);
53919165b2bSKonstantin Shkolnyy 
5402479e2a9SJohan Hovold 	return result;
54103ee2515SGreg Kroah-Hartman }
54203ee2515SGreg Kroah-Hartman 
54319165b2bSKonstantin Shkolnyy /*
544fe1b07e9SKonstantin Shkolnyy  * Reads any 32-bit CP210X_ register identified by req.
545fe1b07e9SKonstantin Shkolnyy  */
546fe1b07e9SKonstantin Shkolnyy static int cp210x_read_u32_reg(struct usb_serial_port *port, u8 req, u32 *val)
547fe1b07e9SKonstantin Shkolnyy {
548fe1b07e9SKonstantin Shkolnyy 	__le32 le32_val;
549fe1b07e9SKonstantin Shkolnyy 	int err;
550fe1b07e9SKonstantin Shkolnyy 
551fe1b07e9SKonstantin Shkolnyy 	err = cp210x_read_reg_block(port, req, &le32_val, sizeof(le32_val));
552fe1b07e9SKonstantin Shkolnyy 	if (err) {
553fe1b07e9SKonstantin Shkolnyy 		/*
554fe1b07e9SKonstantin Shkolnyy 		 * FIXME Some callers don't bother to check for error,
555fe1b07e9SKonstantin Shkolnyy 		 * at least give them consistent junk until they are fixed
556fe1b07e9SKonstantin Shkolnyy 		 */
557fe1b07e9SKonstantin Shkolnyy 		*val = 0;
558fe1b07e9SKonstantin Shkolnyy 		return err;
559fe1b07e9SKonstantin Shkolnyy 	}
560fe1b07e9SKonstantin Shkolnyy 
561fe1b07e9SKonstantin Shkolnyy 	*val = le32_to_cpu(le32_val);
562fe1b07e9SKonstantin Shkolnyy 
56303ee2515SGreg Kroah-Hartman 	return 0;
56403ee2515SGreg Kroah-Hartman }
56503ee2515SGreg Kroah-Hartman 
56603ee2515SGreg Kroah-Hartman /*
56719165b2bSKonstantin Shkolnyy  * Reads any 16-bit CP210X_ register identified by req.
56803ee2515SGreg Kroah-Hartman  */
56919165b2bSKonstantin Shkolnyy static int cp210x_read_u16_reg(struct usb_serial_port *port, u8 req, u16 *val)
57019165b2bSKonstantin Shkolnyy {
57119165b2bSKonstantin Shkolnyy 	__le16 le16_val;
57219165b2bSKonstantin Shkolnyy 	int err;
57319165b2bSKonstantin Shkolnyy 
57419165b2bSKonstantin Shkolnyy 	err = cp210x_read_reg_block(port, req, &le16_val, sizeof(le16_val));
57519165b2bSKonstantin Shkolnyy 	if (err)
57619165b2bSKonstantin Shkolnyy 		return err;
57719165b2bSKonstantin Shkolnyy 
57819165b2bSKonstantin Shkolnyy 	*val = le16_to_cpu(le16_val);
579fe1b07e9SKonstantin Shkolnyy 
58019165b2bSKonstantin Shkolnyy 	return 0;
58119165b2bSKonstantin Shkolnyy }
58219165b2bSKonstantin Shkolnyy 
58319165b2bSKonstantin Shkolnyy /*
584fe1b07e9SKonstantin Shkolnyy  * Reads any 8-bit CP210X_ register identified by req.
585fe1b07e9SKonstantin Shkolnyy  */
586fe1b07e9SKonstantin Shkolnyy static int cp210x_read_u8_reg(struct usb_serial_port *port, u8 req, u8 *val)
587fe1b07e9SKonstantin Shkolnyy {
588fe1b07e9SKonstantin Shkolnyy 	return cp210x_read_reg_block(port, req, val, sizeof(*val));
589fe1b07e9SKonstantin Shkolnyy }
590fe1b07e9SKonstantin Shkolnyy 
591fe1b07e9SKonstantin Shkolnyy /*
592cf5276ceSMartyn Welch  * Reads a variable-sized vendor block of CP210X_ registers, identified by val.
593cf5276ceSMartyn Welch  * Returns data into buf in native USB byte order.
594cf5276ceSMartyn Welch  */
595cf5276ceSMartyn Welch static int cp210x_read_vendor_block(struct usb_serial *serial, u8 type, u16 val,
596cf5276ceSMartyn Welch 				    void *buf, int bufsize)
597cf5276ceSMartyn Welch {
598cf5276ceSMartyn Welch 	void *dmabuf;
599cf5276ceSMartyn Welch 	int result;
600cf5276ceSMartyn Welch 
601cf5276ceSMartyn Welch 	dmabuf = kmalloc(bufsize, GFP_KERNEL);
602cf5276ceSMartyn Welch 	if (!dmabuf)
603cf5276ceSMartyn Welch 		return -ENOMEM;
604cf5276ceSMartyn Welch 
605cf5276ceSMartyn Welch 	result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
606cf5276ceSMartyn Welch 				 CP210X_VENDOR_SPECIFIC, type, val,
607cf5276ceSMartyn Welch 				 cp210x_interface_num(serial), dmabuf, bufsize,
608cf5276ceSMartyn Welch 				 USB_CTRL_GET_TIMEOUT);
609cf5276ceSMartyn Welch 	if (result == bufsize) {
610cf5276ceSMartyn Welch 		memcpy(buf, dmabuf, bufsize);
611cf5276ceSMartyn Welch 		result = 0;
612cf5276ceSMartyn Welch 	} else {
613cf5276ceSMartyn Welch 		dev_err(&serial->interface->dev,
614cf5276ceSMartyn Welch 			"failed to get vendor val 0x%04x size %d: %d\n", val,
615cf5276ceSMartyn Welch 			bufsize, result);
616cf5276ceSMartyn Welch 		if (result >= 0)
617cf5276ceSMartyn Welch 			result = -EIO;
618cf5276ceSMartyn Welch 	}
619cf5276ceSMartyn Welch 
620cf5276ceSMartyn Welch 	kfree(dmabuf);
621cf5276ceSMartyn Welch 
622cf5276ceSMartyn Welch 	return result;
623cf5276ceSMartyn Welch }
624cf5276ceSMartyn Welch 
625cf5276ceSMartyn Welch /*
62619165b2bSKonstantin Shkolnyy  * Writes any 16-bit CP210X_ register (req) whose value is passed
62719165b2bSKonstantin Shkolnyy  * entirely in the wValue field of the USB request.
62819165b2bSKonstantin Shkolnyy  */
62919165b2bSKonstantin Shkolnyy static int cp210x_write_u16_reg(struct usb_serial_port *port, u8 req, u16 val)
63003ee2515SGreg Kroah-Hartman {
63103ee2515SGreg Kroah-Hartman 	struct usb_serial *serial = port->serial;
632e2ae67a3SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
63319165b2bSKonstantin Shkolnyy 	int result;
63403ee2515SGreg Kroah-Hartman 
63519165b2bSKonstantin Shkolnyy 	result = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
63619165b2bSKonstantin Shkolnyy 			req, REQTYPE_HOST_TO_INTERFACE, val,
637e2ae67a3SKonstantin Shkolnyy 			port_priv->bInterfaceNumber, NULL, 0,
6382d5733fcSYuri Matylitski 			USB_CTRL_SET_TIMEOUT);
63919165b2bSKonstantin Shkolnyy 	if (result < 0) {
64019165b2bSKonstantin Shkolnyy 		dev_err(&port->dev, "failed set request 0x%x status: %d\n",
64119165b2bSKonstantin Shkolnyy 				req, result);
64203ee2515SGreg Kroah-Hartman 	}
64303ee2515SGreg Kroah-Hartman 
6442479e2a9SJohan Hovold 	return result;
64503ee2515SGreg Kroah-Hartman }
64603ee2515SGreg Kroah-Hartman 
64703ee2515SGreg Kroah-Hartman /*
648fe1b07e9SKonstantin Shkolnyy  * Writes a variable-sized block of CP210X_ registers, identified by req.
649fe1b07e9SKonstantin Shkolnyy  * Data in buf must be in native USB byte order.
650fe1b07e9SKonstantin Shkolnyy  */
651fe1b07e9SKonstantin Shkolnyy static int cp210x_write_reg_block(struct usb_serial_port *port, u8 req,
652fe1b07e9SKonstantin Shkolnyy 		void *buf, int bufsize)
653fe1b07e9SKonstantin Shkolnyy {
654fe1b07e9SKonstantin Shkolnyy 	struct usb_serial *serial = port->serial;
655fe1b07e9SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
656fe1b07e9SKonstantin Shkolnyy 	void *dmabuf;
657fe1b07e9SKonstantin Shkolnyy 	int result;
658fe1b07e9SKonstantin Shkolnyy 
659d6c4dc3bSMuhammad Falak R Wani 	dmabuf = kmemdup(buf, bufsize, GFP_KERNEL);
660fe1b07e9SKonstantin Shkolnyy 	if (!dmabuf)
661fe1b07e9SKonstantin Shkolnyy 		return -ENOMEM;
662fe1b07e9SKonstantin Shkolnyy 
663fe1b07e9SKonstantin Shkolnyy 	result = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
664fe1b07e9SKonstantin Shkolnyy 			req, REQTYPE_HOST_TO_INTERFACE, 0,
665fe1b07e9SKonstantin Shkolnyy 			port_priv->bInterfaceNumber, dmabuf, bufsize,
666fe1b07e9SKonstantin Shkolnyy 			USB_CTRL_SET_TIMEOUT);
667fe1b07e9SKonstantin Shkolnyy 
668fe1b07e9SKonstantin Shkolnyy 	kfree(dmabuf);
669fe1b07e9SKonstantin Shkolnyy 
670fe1b07e9SKonstantin Shkolnyy 	if (result == bufsize) {
671fe1b07e9SKonstantin Shkolnyy 		result = 0;
672fe1b07e9SKonstantin Shkolnyy 	} else {
673fe1b07e9SKonstantin Shkolnyy 		dev_err(&port->dev, "failed set req 0x%x size %d status: %d\n",
674fe1b07e9SKonstantin Shkolnyy 				req, bufsize, result);
675fe1b07e9SKonstantin Shkolnyy 		if (result >= 0)
6760407f1ceSJohan Hovold 			result = -EIO;
677fe1b07e9SKonstantin Shkolnyy 	}
678fe1b07e9SKonstantin Shkolnyy 
679fe1b07e9SKonstantin Shkolnyy 	return result;
68003ee2515SGreg Kroah-Hartman }
68103ee2515SGreg Kroah-Hartman 
68203ee2515SGreg Kroah-Hartman /*
683fe1b07e9SKonstantin Shkolnyy  * Writes any 32-bit CP210X_ register identified by req.
68403ee2515SGreg Kroah-Hartman  */
685fe1b07e9SKonstantin Shkolnyy static int cp210x_write_u32_reg(struct usb_serial_port *port, u8 req, u32 val)
68603ee2515SGreg Kroah-Hartman {
687fe1b07e9SKonstantin Shkolnyy 	__le32 le32_val;
688fe1b07e9SKonstantin Shkolnyy 
689fe1b07e9SKonstantin Shkolnyy 	le32_val = cpu_to_le32(val);
690fe1b07e9SKonstantin Shkolnyy 
691fe1b07e9SKonstantin Shkolnyy 	return cp210x_write_reg_block(port, req, &le32_val, sizeof(le32_val));
69203ee2515SGreg Kroah-Hartman }
69303ee2515SGreg Kroah-Hartman 
694cf5276ceSMartyn Welch #ifdef CONFIG_GPIOLIB
695cf5276ceSMartyn Welch /*
696cf5276ceSMartyn Welch  * Writes a variable-sized vendor block of CP210X_ registers, identified by val.
697cf5276ceSMartyn Welch  * Data in buf must be in native USB byte order.
698cf5276ceSMartyn Welch  */
699cf5276ceSMartyn Welch static int cp210x_write_vendor_block(struct usb_serial *serial, u8 type,
700cf5276ceSMartyn Welch 				     u16 val, void *buf, int bufsize)
701cf5276ceSMartyn Welch {
702cf5276ceSMartyn Welch 	void *dmabuf;
703cf5276ceSMartyn Welch 	int result;
704cf5276ceSMartyn Welch 
705cf5276ceSMartyn Welch 	dmabuf = kmemdup(buf, bufsize, GFP_KERNEL);
706cf5276ceSMartyn Welch 	if (!dmabuf)
707cf5276ceSMartyn Welch 		return -ENOMEM;
708cf5276ceSMartyn Welch 
709cf5276ceSMartyn Welch 	result = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
710cf5276ceSMartyn Welch 				 CP210X_VENDOR_SPECIFIC, type, val,
711cf5276ceSMartyn Welch 				 cp210x_interface_num(serial), dmabuf, bufsize,
712cf5276ceSMartyn Welch 				 USB_CTRL_SET_TIMEOUT);
713cf5276ceSMartyn Welch 
714cf5276ceSMartyn Welch 	kfree(dmabuf);
715cf5276ceSMartyn Welch 
716cf5276ceSMartyn Welch 	if (result == bufsize) {
717cf5276ceSMartyn Welch 		result = 0;
718cf5276ceSMartyn Welch 	} else {
719cf5276ceSMartyn Welch 		dev_err(&serial->interface->dev,
720cf5276ceSMartyn Welch 			"failed to set vendor val 0x%04x size %d: %d\n", val,
721cf5276ceSMartyn Welch 			bufsize, result);
722cf5276ceSMartyn Welch 		if (result >= 0)
723cf5276ceSMartyn Welch 			result = -EIO;
724cf5276ceSMartyn Welch 	}
725cf5276ceSMartyn Welch 
726cf5276ceSMartyn Welch 	return result;
727cf5276ceSMartyn Welch }
728cf5276ceSMartyn Welch #endif
729cf5276ceSMartyn Welch 
73003ee2515SGreg Kroah-Hartman /*
731d0bf1ff0SKonstantin Shkolnyy  * Detect CP2108 GET_LINE_CTL bug and activate workaround.
732d0bf1ff0SKonstantin Shkolnyy  * Write a known good value 0x800, read it back.
733d0bf1ff0SKonstantin Shkolnyy  * If it comes back swapped the bug is detected.
734d0bf1ff0SKonstantin Shkolnyy  * Preserve the original register value.
735d0bf1ff0SKonstantin Shkolnyy  */
736d0bf1ff0SKonstantin Shkolnyy static int cp210x_detect_swapped_line_ctl(struct usb_serial_port *port)
737d0bf1ff0SKonstantin Shkolnyy {
738d0bf1ff0SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
73919165b2bSKonstantin Shkolnyy 	u16 line_ctl_save;
74019165b2bSKonstantin Shkolnyy 	u16 line_ctl_test;
741d0bf1ff0SKonstantin Shkolnyy 	int err;
742d0bf1ff0SKonstantin Shkolnyy 
74319165b2bSKonstantin Shkolnyy 	err = cp210x_read_u16_reg(port, CP210X_GET_LINE_CTL, &line_ctl_save);
744d0bf1ff0SKonstantin Shkolnyy 	if (err)
745d0bf1ff0SKonstantin Shkolnyy 		return err;
746d0bf1ff0SKonstantin Shkolnyy 
74719165b2bSKonstantin Shkolnyy 	err = cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, 0x800);
748d0bf1ff0SKonstantin Shkolnyy 	if (err)
749d0bf1ff0SKonstantin Shkolnyy 		return err;
750d0bf1ff0SKonstantin Shkolnyy 
75119165b2bSKonstantin Shkolnyy 	err = cp210x_read_u16_reg(port, CP210X_GET_LINE_CTL, &line_ctl_test);
752d0bf1ff0SKonstantin Shkolnyy 	if (err)
753d0bf1ff0SKonstantin Shkolnyy 		return err;
754d0bf1ff0SKonstantin Shkolnyy 
755d0bf1ff0SKonstantin Shkolnyy 	if (line_ctl_test == 8) {
756d0bf1ff0SKonstantin Shkolnyy 		port_priv->has_swapped_line_ctl = true;
75719165b2bSKonstantin Shkolnyy 		line_ctl_save = swab16(line_ctl_save);
758d0bf1ff0SKonstantin Shkolnyy 	}
759d0bf1ff0SKonstantin Shkolnyy 
76019165b2bSKonstantin Shkolnyy 	return cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, line_ctl_save);
761d0bf1ff0SKonstantin Shkolnyy }
762d0bf1ff0SKonstantin Shkolnyy 
763d0bf1ff0SKonstantin Shkolnyy /*
76419165b2bSKonstantin Shkolnyy  * Must always be called instead of cp210x_read_u16_reg(CP210X_GET_LINE_CTL)
765d0bf1ff0SKonstantin Shkolnyy  * to workaround cp2108 bug and get correct value.
766d0bf1ff0SKonstantin Shkolnyy  */
76719165b2bSKonstantin Shkolnyy static int cp210x_get_line_ctl(struct usb_serial_port *port, u16 *ctl)
768d0bf1ff0SKonstantin Shkolnyy {
769d0bf1ff0SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
770d0bf1ff0SKonstantin Shkolnyy 	int err;
771d0bf1ff0SKonstantin Shkolnyy 
77219165b2bSKonstantin Shkolnyy 	err = cp210x_read_u16_reg(port, CP210X_GET_LINE_CTL, ctl);
773d0bf1ff0SKonstantin Shkolnyy 	if (err)
774d0bf1ff0SKonstantin Shkolnyy 		return err;
775d0bf1ff0SKonstantin Shkolnyy 
776d0bf1ff0SKonstantin Shkolnyy 	/* Workaround swapped bytes in 16-bit value from CP210X_GET_LINE_CTL */
777d0bf1ff0SKonstantin Shkolnyy 	if (port_priv->has_swapped_line_ctl)
77819165b2bSKonstantin Shkolnyy 		*ctl = swab16(*ctl);
779d0bf1ff0SKonstantin Shkolnyy 
780d0bf1ff0SKonstantin Shkolnyy 	return 0;
781d0bf1ff0SKonstantin Shkolnyy }
782d0bf1ff0SKonstantin Shkolnyy 
783a509a7e4SAlan Cox static int cp210x_open(struct tty_struct *tty, struct usb_serial_port *port)
78403ee2515SGreg Kroah-Hartman {
78503ee2515SGreg Kroah-Hartman 	int result;
78603ee2515SGreg Kroah-Hartman 
78719165b2bSKonstantin Shkolnyy 	result = cp210x_write_u16_reg(port, CP210X_IFC_ENABLE, UART_ENABLE);
7882479e2a9SJohan Hovold 	if (result) {
7892479e2a9SJohan Hovold 		dev_err(&port->dev, "%s - Unable to enable UART\n", __func__);
7902479e2a9SJohan Hovold 		return result;
79103ee2515SGreg Kroah-Hartman 	}
79203ee2515SGreg Kroah-Hartman 
79303ee2515SGreg Kroah-Hartman 	/* Configure the termios structure */
7944cc27bd6SCraig Shelley 	cp210x_get_termios(tty, port);
79555b2afbbSJohan Hovold 
796cdc32fd6SJohan Hovold 	/* The baud rate must be initialised on cp2104 */
797cdc32fd6SJohan Hovold 	if (tty)
798cdc32fd6SJohan Hovold 		cp210x_change_speed(tty, port, NULL);
799cdc32fd6SJohan Hovold 
80055b2afbbSJohan Hovold 	return usb_serial_generic_open(tty, port);
80103ee2515SGreg Kroah-Hartman }
80203ee2515SGreg Kroah-Hartman 
8034cc27bd6SCraig Shelley static void cp210x_close(struct usb_serial_port *port)
80403ee2515SGreg Kroah-Hartman {
805f26788daSJohan Hovold 	usb_serial_generic_close(port);
806ebfb319bSKonstantin Shkolnyy 
807ebfb319bSKonstantin Shkolnyy 	/* Clear both queues; cp2108 needs this to avoid an occasional hang */
80819165b2bSKonstantin Shkolnyy 	cp210x_write_u16_reg(port, CP210X_PURGE, PURGE_ALL);
809ebfb319bSKonstantin Shkolnyy 
81019165b2bSKonstantin Shkolnyy 	cp210x_write_u16_reg(port, CP210X_IFC_ENABLE, UART_DISABLE);
81103ee2515SGreg Kroah-Hartman }
81203ee2515SGreg Kroah-Hartman 
81303ee2515SGreg Kroah-Hartman /*
8146f923a01SKonstantin Shkolnyy  * Read how many bytes are waiting in the TX queue.
8156f923a01SKonstantin Shkolnyy  */
8166f923a01SKonstantin Shkolnyy static int cp210x_get_tx_queue_byte_count(struct usb_serial_port *port,
8176f923a01SKonstantin Shkolnyy 		u32 *count)
8186f923a01SKonstantin Shkolnyy {
8196f923a01SKonstantin Shkolnyy 	struct usb_serial *serial = port->serial;
8206f923a01SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
8216f923a01SKonstantin Shkolnyy 	struct cp210x_comm_status *sts;
8226f923a01SKonstantin Shkolnyy 	int result;
8236f923a01SKonstantin Shkolnyy 
8246f923a01SKonstantin Shkolnyy 	sts = kmalloc(sizeof(*sts), GFP_KERNEL);
8256f923a01SKonstantin Shkolnyy 	if (!sts)
8266f923a01SKonstantin Shkolnyy 		return -ENOMEM;
8276f923a01SKonstantin Shkolnyy 
8286f923a01SKonstantin Shkolnyy 	result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
8296f923a01SKonstantin Shkolnyy 			CP210X_GET_COMM_STATUS, REQTYPE_INTERFACE_TO_HOST,
8306f923a01SKonstantin Shkolnyy 			0, port_priv->bInterfaceNumber, sts, sizeof(*sts),
8316f923a01SKonstantin Shkolnyy 			USB_CTRL_GET_TIMEOUT);
8326f923a01SKonstantin Shkolnyy 	if (result == sizeof(*sts)) {
8336f923a01SKonstantin Shkolnyy 		*count = le32_to_cpu(sts->ulAmountInOutQueue);
8346f923a01SKonstantin Shkolnyy 		result = 0;
8356f923a01SKonstantin Shkolnyy 	} else {
8366f923a01SKonstantin Shkolnyy 		dev_err(&port->dev, "failed to get comm status: %d\n", result);
8376f923a01SKonstantin Shkolnyy 		if (result >= 0)
8380407f1ceSJohan Hovold 			result = -EIO;
8396f923a01SKonstantin Shkolnyy 	}
8406f923a01SKonstantin Shkolnyy 
8416f923a01SKonstantin Shkolnyy 	kfree(sts);
8426f923a01SKonstantin Shkolnyy 
8436f923a01SKonstantin Shkolnyy 	return result;
8446f923a01SKonstantin Shkolnyy }
8456f923a01SKonstantin Shkolnyy 
8466f923a01SKonstantin Shkolnyy static bool cp210x_tx_empty(struct usb_serial_port *port)
8476f923a01SKonstantin Shkolnyy {
8486f923a01SKonstantin Shkolnyy 	int err;
8496f923a01SKonstantin Shkolnyy 	u32 count;
8506f923a01SKonstantin Shkolnyy 
8516f923a01SKonstantin Shkolnyy 	err = cp210x_get_tx_queue_byte_count(port, &count);
8526f923a01SKonstantin Shkolnyy 	if (err)
8536f923a01SKonstantin Shkolnyy 		return true;
8546f923a01SKonstantin Shkolnyy 
8556f923a01SKonstantin Shkolnyy 	return !count;
8566f923a01SKonstantin Shkolnyy }
8576f923a01SKonstantin Shkolnyy 
8586f923a01SKonstantin Shkolnyy /*
8594cc27bd6SCraig Shelley  * cp210x_get_termios
86003ee2515SGreg Kroah-Hartman  * Reads the baud rate, data bits, parity, stop bits and flow control mode
86103ee2515SGreg Kroah-Hartman  * from the device, corrects any unsupported values, and configures the
86203ee2515SGreg Kroah-Hartman  * termios structure to reflect the state of the device
86303ee2515SGreg Kroah-Hartman  */
8644cc27bd6SCraig Shelley static void cp210x_get_termios(struct tty_struct *tty,
865d2ad67b3SVomLehn 	struct usb_serial_port *port)
86603ee2515SGreg Kroah-Hartman {
867d2ad67b3SVomLehn 	unsigned int baud;
868d2ad67b3SVomLehn 
869d2ad67b3SVomLehn 	if (tty) {
8704cc27bd6SCraig Shelley 		cp210x_get_termios_port(tty->driver_data,
871adc8d746SAlan Cox 			&tty->termios.c_cflag, &baud);
872d2ad67b3SVomLehn 		tty_encode_baud_rate(tty, baud, baud);
8734f2ab888SJohan Hovold 	} else {
874009615abSGeert Uytterhoeven 		tcflag_t cflag;
875d2ad67b3SVomLehn 		cflag = 0;
8764cc27bd6SCraig Shelley 		cp210x_get_termios_port(port, &cflag, &baud);
877d2ad67b3SVomLehn 	}
878d2ad67b3SVomLehn }
879d2ad67b3SVomLehn 
880d2ad67b3SVomLehn /*
8814cc27bd6SCraig Shelley  * cp210x_get_termios_port
8824cc27bd6SCraig Shelley  * This is the heart of cp210x_get_termios which always uses a &usb_serial_port.
883d2ad67b3SVomLehn  */
8844cc27bd6SCraig Shelley static void cp210x_get_termios_port(struct usb_serial_port *port,
885009615abSGeert Uytterhoeven 	tcflag_t *cflagp, unsigned int *baudp)
886d2ad67b3SVomLehn {
887660f3b14SGreg Kroah-Hartman 	struct device *dev = &port->dev;
888009615abSGeert Uytterhoeven 	tcflag_t cflag;
8899034389cSKonstantin Shkolnyy 	struct cp210x_flow_ctl flow_ctl;
890fe1b07e9SKonstantin Shkolnyy 	u32 baud;
89119165b2bSKonstantin Shkolnyy 	u16 bits;
8929034389cSKonstantin Shkolnyy 	u32 ctl_hs;
89303ee2515SGreg Kroah-Hartman 
894fe1b07e9SKonstantin Shkolnyy 	cp210x_read_u32_reg(port, CP210X_GET_BAUDRATE, &baud);
89503ee2515SGreg Kroah-Hartman 
896660f3b14SGreg Kroah-Hartman 	dev_dbg(dev, "%s - baud rate = %d\n", __func__, baud);
897d2ad67b3SVomLehn 	*baudp = baud;
89803ee2515SGreg Kroah-Hartman 
899d2ad67b3SVomLehn 	cflag = *cflagp;
90003ee2515SGreg Kroah-Hartman 
901d0bf1ff0SKonstantin Shkolnyy 	cp210x_get_line_ctl(port, &bits);
90203ee2515SGreg Kroah-Hartman 	cflag &= ~CSIZE;
90303ee2515SGreg Kroah-Hartman 	switch (bits & BITS_DATA_MASK) {
90403ee2515SGreg Kroah-Hartman 	case BITS_DATA_5:
905660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - data bits = 5\n", __func__);
90603ee2515SGreg Kroah-Hartman 		cflag |= CS5;
90703ee2515SGreg Kroah-Hartman 		break;
90803ee2515SGreg Kroah-Hartman 	case BITS_DATA_6:
909660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - data bits = 6\n", __func__);
91003ee2515SGreg Kroah-Hartman 		cflag |= CS6;
91103ee2515SGreg Kroah-Hartman 		break;
91203ee2515SGreg Kroah-Hartman 	case BITS_DATA_7:
913660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - data bits = 7\n", __func__);
91403ee2515SGreg Kroah-Hartman 		cflag |= CS7;
91503ee2515SGreg Kroah-Hartman 		break;
91603ee2515SGreg Kroah-Hartman 	case BITS_DATA_8:
917660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - data bits = 8\n", __func__);
91803ee2515SGreg Kroah-Hartman 		cflag |= CS8;
91903ee2515SGreg Kroah-Hartman 		break;
92003ee2515SGreg Kroah-Hartman 	case BITS_DATA_9:
921660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - data bits = 9 (not supported, using 8 data bits)\n", __func__);
92203ee2515SGreg Kroah-Hartman 		cflag |= CS8;
92303ee2515SGreg Kroah-Hartman 		bits &= ~BITS_DATA_MASK;
92403ee2515SGreg Kroah-Hartman 		bits |= BITS_DATA_8;
92519165b2bSKonstantin Shkolnyy 		cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits);
92603ee2515SGreg Kroah-Hartman 		break;
92703ee2515SGreg Kroah-Hartman 	default:
928660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - Unknown number of data bits, using 8\n", __func__);
92903ee2515SGreg Kroah-Hartman 		cflag |= CS8;
93003ee2515SGreg Kroah-Hartman 		bits &= ~BITS_DATA_MASK;
93103ee2515SGreg Kroah-Hartman 		bits |= BITS_DATA_8;
93219165b2bSKonstantin Shkolnyy 		cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits);
93303ee2515SGreg Kroah-Hartman 		break;
93403ee2515SGreg Kroah-Hartman 	}
93503ee2515SGreg Kroah-Hartman 
93603ee2515SGreg Kroah-Hartman 	switch (bits & BITS_PARITY_MASK) {
93703ee2515SGreg Kroah-Hartman 	case BITS_PARITY_NONE:
938660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - parity = NONE\n", __func__);
93903ee2515SGreg Kroah-Hartman 		cflag &= ~PARENB;
94003ee2515SGreg Kroah-Hartman 		break;
94103ee2515SGreg Kroah-Hartman 	case BITS_PARITY_ODD:
942660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - parity = ODD\n", __func__);
94303ee2515SGreg Kroah-Hartman 		cflag |= (PARENB|PARODD);
94403ee2515SGreg Kroah-Hartman 		break;
94503ee2515SGreg Kroah-Hartman 	case BITS_PARITY_EVEN:
946660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - parity = EVEN\n", __func__);
94703ee2515SGreg Kroah-Hartman 		cflag &= ~PARODD;
94803ee2515SGreg Kroah-Hartman 		cflag |= PARENB;
94903ee2515SGreg Kroah-Hartman 		break;
95003ee2515SGreg Kroah-Hartman 	case BITS_PARITY_MARK:
951660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - parity = MARK\n", __func__);
9524b6181caSRoland Koebler 		cflag |= (PARENB|PARODD|CMSPAR);
95303ee2515SGreg Kroah-Hartman 		break;
95403ee2515SGreg Kroah-Hartman 	case BITS_PARITY_SPACE:
955660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - parity = SPACE\n", __func__);
9564b6181caSRoland Koebler 		cflag &= ~PARODD;
9574b6181caSRoland Koebler 		cflag |= (PARENB|CMSPAR);
95803ee2515SGreg Kroah-Hartman 		break;
95903ee2515SGreg Kroah-Hartman 	default:
960660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - Unknown parity mode, disabling parity\n", __func__);
96103ee2515SGreg Kroah-Hartman 		cflag &= ~PARENB;
96203ee2515SGreg Kroah-Hartman 		bits &= ~BITS_PARITY_MASK;
96319165b2bSKonstantin Shkolnyy 		cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits);
96403ee2515SGreg Kroah-Hartman 		break;
96503ee2515SGreg Kroah-Hartman 	}
96603ee2515SGreg Kroah-Hartman 
96703ee2515SGreg Kroah-Hartman 	cflag &= ~CSTOPB;
96803ee2515SGreg Kroah-Hartman 	switch (bits & BITS_STOP_MASK) {
96903ee2515SGreg Kroah-Hartman 	case BITS_STOP_1:
970660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - stop bits = 1\n", __func__);
97103ee2515SGreg Kroah-Hartman 		break;
97203ee2515SGreg Kroah-Hartman 	case BITS_STOP_1_5:
973660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - stop bits = 1.5 (not supported, using 1 stop bit)\n", __func__);
97403ee2515SGreg Kroah-Hartman 		bits &= ~BITS_STOP_MASK;
97519165b2bSKonstantin Shkolnyy 		cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits);
97603ee2515SGreg Kroah-Hartman 		break;
97703ee2515SGreg Kroah-Hartman 	case BITS_STOP_2:
978660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - stop bits = 2\n", __func__);
97903ee2515SGreg Kroah-Hartman 		cflag |= CSTOPB;
98003ee2515SGreg Kroah-Hartman 		break;
98103ee2515SGreg Kroah-Hartman 	default:
982660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - Unknown number of stop bits, using 1 stop bit\n", __func__);
98303ee2515SGreg Kroah-Hartman 		bits &= ~BITS_STOP_MASK;
98419165b2bSKonstantin Shkolnyy 		cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits);
98503ee2515SGreg Kroah-Hartman 		break;
98603ee2515SGreg Kroah-Hartman 	}
98703ee2515SGreg Kroah-Hartman 
9889034389cSKonstantin Shkolnyy 	cp210x_read_reg_block(port, CP210X_GET_FLOW, &flow_ctl,
9899034389cSKonstantin Shkolnyy 			sizeof(flow_ctl));
9909034389cSKonstantin Shkolnyy 	ctl_hs = le32_to_cpu(flow_ctl.ulControlHandshake);
9919034389cSKonstantin Shkolnyy 	if (ctl_hs & CP210X_SERIAL_CTS_HANDSHAKE) {
992660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - flow control = CRTSCTS\n", __func__);
99303ee2515SGreg Kroah-Hartman 		cflag |= CRTSCTS;
99403ee2515SGreg Kroah-Hartman 	} else {
995660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - flow control = NONE\n", __func__);
99603ee2515SGreg Kroah-Hartman 		cflag &= ~CRTSCTS;
99703ee2515SGreg Kroah-Hartman 	}
99803ee2515SGreg Kroah-Hartman 
999d2ad67b3SVomLehn 	*cflagp = cflag;
100003ee2515SGreg Kroah-Hartman }
100103ee2515SGreg Kroah-Hartman 
100295fd4f47SJohan Hovold struct cp210x_rate {
100395fd4f47SJohan Hovold 	speed_t rate;
100495fd4f47SJohan Hovold 	speed_t high;
100595fd4f47SJohan Hovold };
100695fd4f47SJohan Hovold 
100795fd4f47SJohan Hovold static const struct cp210x_rate cp210x_an205_table1[] = {
100895fd4f47SJohan Hovold 	{ 300, 300 },
100995fd4f47SJohan Hovold 	{ 600, 600 },
101095fd4f47SJohan Hovold 	{ 1200, 1200 },
101195fd4f47SJohan Hovold 	{ 1800, 1800 },
101295fd4f47SJohan Hovold 	{ 2400, 2400 },
101395fd4f47SJohan Hovold 	{ 4000, 4000 },
101495fd4f47SJohan Hovold 	{ 4800, 4803 },
101595fd4f47SJohan Hovold 	{ 7200, 7207 },
101695fd4f47SJohan Hovold 	{ 9600, 9612 },
101795fd4f47SJohan Hovold 	{ 14400, 14428 },
101895fd4f47SJohan Hovold 	{ 16000, 16062 },
101995fd4f47SJohan Hovold 	{ 19200, 19250 },
102095fd4f47SJohan Hovold 	{ 28800, 28912 },
102195fd4f47SJohan Hovold 	{ 38400, 38601 },
102295fd4f47SJohan Hovold 	{ 51200, 51558 },
102395fd4f47SJohan Hovold 	{ 56000, 56280 },
102495fd4f47SJohan Hovold 	{ 57600, 58053 },
102595fd4f47SJohan Hovold 	{ 64000, 64111 },
102695fd4f47SJohan Hovold 	{ 76800, 77608 },
102795fd4f47SJohan Hovold 	{ 115200, 117028 },
102895fd4f47SJohan Hovold 	{ 128000, 129347 },
102995fd4f47SJohan Hovold 	{ 153600, 156868 },
103095fd4f47SJohan Hovold 	{ 230400, 237832 },
103195fd4f47SJohan Hovold 	{ 250000, 254234 },
103295fd4f47SJohan Hovold 	{ 256000, 273066 },
103395fd4f47SJohan Hovold 	{ 460800, 491520 },
103495fd4f47SJohan Hovold 	{ 500000, 567138 },
103595fd4f47SJohan Hovold 	{ 576000, 670254 },
103695fd4f47SJohan Hovold 	{ 921600, UINT_MAX }
103795fd4f47SJohan Hovold };
103895fd4f47SJohan Hovold 
103995fd4f47SJohan Hovold /*
104095fd4f47SJohan Hovold  * Quantises the baud rate as per AN205 Table 1
104195fd4f47SJohan Hovold  */
104295fd4f47SJohan Hovold static speed_t cp210x_get_an205_rate(speed_t baud)
104395fd4f47SJohan Hovold {
104495fd4f47SJohan Hovold 	int i;
104595fd4f47SJohan Hovold 
104695fd4f47SJohan Hovold 	for (i = 0; i < ARRAY_SIZE(cp210x_an205_table1); ++i) {
104795fd4f47SJohan Hovold 		if (baud <= cp210x_an205_table1[i].high)
104895fd4f47SJohan Hovold 			break;
104995fd4f47SJohan Hovold 	}
105095fd4f47SJohan Hovold 
105195fd4f47SJohan Hovold 	return cp210x_an205_table1[i].rate;
105295fd4f47SJohan Hovold }
105395fd4f47SJohan Hovold 
10547aecd7fcSJohan Hovold static speed_t cp210x_get_actual_rate(struct usb_serial *serial, speed_t baud)
10557aecd7fcSJohan Hovold {
10567aecd7fcSJohan Hovold 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
10577aecd7fcSJohan Hovold 	unsigned int prescale = 1;
10587aecd7fcSJohan Hovold 	unsigned int div;
10597aecd7fcSJohan Hovold 
10607aecd7fcSJohan Hovold 	baud = clamp(baud, 300u, priv->max_speed);
10617aecd7fcSJohan Hovold 
10627aecd7fcSJohan Hovold 	if (baud <= 365)
10637aecd7fcSJohan Hovold 		prescale = 4;
10647aecd7fcSJohan Hovold 
10657aecd7fcSJohan Hovold 	div = DIV_ROUND_CLOSEST(48000000, 2 * prescale * baud);
10667aecd7fcSJohan Hovold 	baud = 48000000 / (2 * prescale * div);
10677aecd7fcSJohan Hovold 
10687aecd7fcSJohan Hovold 	return baud;
10697aecd7fcSJohan Hovold }
10707aecd7fcSJohan Hovold 
1071e5990874SJohan Hovold /*
1072e5990874SJohan Hovold  * CP2101 supports the following baud rates:
1073e5990874SJohan Hovold  *
1074e5990874SJohan Hovold  *	300, 600, 1200, 1800, 2400, 4800, 7200, 9600, 14400, 19200, 28800,
1075e5990874SJohan Hovold  *	38400, 56000, 57600, 115200, 128000, 230400, 460800, 921600
1076e5990874SJohan Hovold  *
1077e5990874SJohan Hovold  * CP2102 and CP2103 support the following additional rates:
1078e5990874SJohan Hovold  *
1079e5990874SJohan Hovold  *	4000, 16000, 51200, 64000, 76800, 153600, 250000, 256000, 500000,
1080e5990874SJohan Hovold  *	576000
1081e5990874SJohan Hovold  *
1082e5990874SJohan Hovold  * The device will map a requested rate to a supported one, but the result
1083e5990874SJohan Hovold  * of requests for rates greater than 1053257 is undefined (see AN205).
1084e5990874SJohan Hovold  *
1085e5990874SJohan Hovold  * CP2104, CP2105 and CP2110 support most rates up to 2M, 921k and 1M baud,
1086e5990874SJohan Hovold  * respectively, with an error less than 1%. The actual rates are determined
1087e5990874SJohan Hovold  * by
1088e5990874SJohan Hovold  *
1089e5990874SJohan Hovold  *	div = round(freq / (2 x prescale x request))
1090e5990874SJohan Hovold  *	actual = freq / (2 x prescale x div)
1091e5990874SJohan Hovold  *
1092e5990874SJohan Hovold  * For CP2104 and CP2105 freq is 48Mhz and prescale is 4 for request <= 365bps
1093e5990874SJohan Hovold  * or 1 otherwise.
1094e5990874SJohan Hovold  * For CP2110 freq is 24Mhz and prescale is 4 for request <= 300bps or 1
1095e5990874SJohan Hovold  * otherwise.
1096e5990874SJohan Hovold  */
1097e5990874SJohan Hovold static void cp210x_change_speed(struct tty_struct *tty,
1098e5990874SJohan Hovold 		struct usb_serial_port *port, struct ktermios *old_termios)
1099e5990874SJohan Hovold {
11006f0bcf72SKaroly Pados 	struct usb_serial *serial = port->serial;
11016f0bcf72SKaroly Pados 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1102e5990874SJohan Hovold 	u32 baud;
1103e5990874SJohan Hovold 
1104adc8d746SAlan Cox 	baud = tty->termios.c_ospeed;
1105e5990874SJohan Hovold 
11066f0bcf72SKaroly Pados 	/*
11077aecd7fcSJohan Hovold 	 * This maps the requested rate to the actual rate, a valid rate on
11087aecd7fcSJohan Hovold 	 * cp2102 or cp2103, or to an arbitrary rate in [1M, max_speed].
1109e5990874SJohan Hovold 	 *
1110e5990874SJohan Hovold 	 * NOTE: B0 is not implemented.
1111e5990874SJohan Hovold 	 */
11127aecd7fcSJohan Hovold 	if (priv->use_actual_rate)
11137aecd7fcSJohan Hovold 		baud = cp210x_get_actual_rate(serial, baud);
11147aecd7fcSJohan Hovold 	else if (baud < 1000000)
111595fd4f47SJohan Hovold 		baud = cp210x_get_an205_rate(baud);
11167aecd7fcSJohan Hovold 	else if (baud > priv->max_speed)
1117d4706c05SJohan Hovold 		baud = priv->max_speed;
1118e5990874SJohan Hovold 
1119660f3b14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "%s - setting baud rate to %u\n", __func__, baud);
1120fe1b07e9SKonstantin Shkolnyy 	if (cp210x_write_u32_reg(port, CP210X_SET_BAUDRATE, baud)) {
1121e5990874SJohan Hovold 		dev_warn(&port->dev, "failed to set baud rate to %u\n", baud);
1122e5990874SJohan Hovold 		if (old_termios)
1123e5990874SJohan Hovold 			baud = old_termios->c_ospeed;
1124e5990874SJohan Hovold 		else
1125e5990874SJohan Hovold 			baud = 9600;
1126e5990874SJohan Hovold 	}
1127e5990874SJohan Hovold 
1128e5990874SJohan Hovold 	tty_encode_baud_rate(tty, baud, baud);
1129e5990874SJohan Hovold }
1130e5990874SJohan Hovold 
11314cc27bd6SCraig Shelley static void cp210x_set_termios(struct tty_struct *tty,
113203ee2515SGreg Kroah-Hartman 		struct usb_serial_port *port, struct ktermios *old_termios)
113303ee2515SGreg Kroah-Hartman {
1134660f3b14SGreg Kroah-Hartman 	struct device *dev = &port->dev;
113503ee2515SGreg Kroah-Hartman 	unsigned int cflag, old_cflag;
113619165b2bSKonstantin Shkolnyy 	u16 bits;
113703ee2515SGreg Kroah-Hartman 
1138adc8d746SAlan Cox 	cflag = tty->termios.c_cflag;
113903ee2515SGreg Kroah-Hartman 	old_cflag = old_termios->c_cflag;
114003ee2515SGreg Kroah-Hartman 
1141adc8d746SAlan Cox 	if (tty->termios.c_ospeed != old_termios->c_ospeed)
1142e5990874SJohan Hovold 		cp210x_change_speed(tty, port, old_termios);
114303ee2515SGreg Kroah-Hartman 
114403ee2515SGreg Kroah-Hartman 	/* If the number of data bits is to be updated */
114503ee2515SGreg Kroah-Hartman 	if ((cflag & CSIZE) != (old_cflag & CSIZE)) {
1146d0bf1ff0SKonstantin Shkolnyy 		cp210x_get_line_ctl(port, &bits);
114703ee2515SGreg Kroah-Hartman 		bits &= ~BITS_DATA_MASK;
114803ee2515SGreg Kroah-Hartman 		switch (cflag & CSIZE) {
114903ee2515SGreg Kroah-Hartman 		case CS5:
115003ee2515SGreg Kroah-Hartman 			bits |= BITS_DATA_5;
1151660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "%s - data bits = 5\n", __func__);
115203ee2515SGreg Kroah-Hartman 			break;
115303ee2515SGreg Kroah-Hartman 		case CS6:
115403ee2515SGreg Kroah-Hartman 			bits |= BITS_DATA_6;
1155660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "%s - data bits = 6\n", __func__);
115603ee2515SGreg Kroah-Hartman 			break;
115703ee2515SGreg Kroah-Hartman 		case CS7:
115803ee2515SGreg Kroah-Hartman 			bits |= BITS_DATA_7;
1159660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "%s - data bits = 7\n", __func__);
116003ee2515SGreg Kroah-Hartman 			break;
116103ee2515SGreg Kroah-Hartman 		case CS8:
1162c2b33559SJohan Hovold 		default:
116303ee2515SGreg Kroah-Hartman 			bits |= BITS_DATA_8;
1164660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "%s - data bits = 8\n", __func__);
116503ee2515SGreg Kroah-Hartman 			break;
116603ee2515SGreg Kroah-Hartman 		}
116719165b2bSKonstantin Shkolnyy 		if (cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits))
1168660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "Number of data bits requested not supported by device\n");
116903ee2515SGreg Kroah-Hartman 	}
117003ee2515SGreg Kroah-Hartman 
11714b6181caSRoland Koebler 	if ((cflag     & (PARENB|PARODD|CMSPAR)) !=
11724b6181caSRoland Koebler 	    (old_cflag & (PARENB|PARODD|CMSPAR))) {
1173d0bf1ff0SKonstantin Shkolnyy 		cp210x_get_line_ctl(port, &bits);
117403ee2515SGreg Kroah-Hartman 		bits &= ~BITS_PARITY_MASK;
117503ee2515SGreg Kroah-Hartman 		if (cflag & PARENB) {
11764b6181caSRoland Koebler 			if (cflag & CMSPAR) {
11774b6181caSRoland Koebler 				if (cflag & PARODD) {
11784b6181caSRoland Koebler 					bits |= BITS_PARITY_MARK;
1179660f3b14SGreg Kroah-Hartman 					dev_dbg(dev, "%s - parity = MARK\n", __func__);
11804b6181caSRoland Koebler 				} else {
11814b6181caSRoland Koebler 					bits |= BITS_PARITY_SPACE;
1182660f3b14SGreg Kroah-Hartman 					dev_dbg(dev, "%s - parity = SPACE\n", __func__);
11834b6181caSRoland Koebler 				}
11844b6181caSRoland Koebler 			} else {
118503ee2515SGreg Kroah-Hartman 				if (cflag & PARODD) {
118603ee2515SGreg Kroah-Hartman 					bits |= BITS_PARITY_ODD;
1187660f3b14SGreg Kroah-Hartman 					dev_dbg(dev, "%s - parity = ODD\n", __func__);
118803ee2515SGreg Kroah-Hartman 				} else {
118903ee2515SGreg Kroah-Hartman 					bits |= BITS_PARITY_EVEN;
1190660f3b14SGreg Kroah-Hartman 					dev_dbg(dev, "%s - parity = EVEN\n", __func__);
119103ee2515SGreg Kroah-Hartman 				}
119203ee2515SGreg Kroah-Hartman 			}
11934b6181caSRoland Koebler 		}
119419165b2bSKonstantin Shkolnyy 		if (cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits))
1195660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "Parity mode not supported by device\n");
119603ee2515SGreg Kroah-Hartman 	}
119703ee2515SGreg Kroah-Hartman 
119803ee2515SGreg Kroah-Hartman 	if ((cflag & CSTOPB) != (old_cflag & CSTOPB)) {
1199d0bf1ff0SKonstantin Shkolnyy 		cp210x_get_line_ctl(port, &bits);
120003ee2515SGreg Kroah-Hartman 		bits &= ~BITS_STOP_MASK;
120103ee2515SGreg Kroah-Hartman 		if (cflag & CSTOPB) {
120203ee2515SGreg Kroah-Hartman 			bits |= BITS_STOP_2;
1203660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "%s - stop bits = 2\n", __func__);
120403ee2515SGreg Kroah-Hartman 		} else {
120503ee2515SGreg Kroah-Hartman 			bits |= BITS_STOP_1;
1206660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "%s - stop bits = 1\n", __func__);
120703ee2515SGreg Kroah-Hartman 		}
120819165b2bSKonstantin Shkolnyy 		if (cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits))
1209660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "Number of stop bits requested not supported by device\n");
121003ee2515SGreg Kroah-Hartman 	}
121103ee2515SGreg Kroah-Hartman 
121203ee2515SGreg Kroah-Hartman 	if ((cflag & CRTSCTS) != (old_cflag & CRTSCTS)) {
12139034389cSKonstantin Shkolnyy 		struct cp210x_flow_ctl flow_ctl;
12149034389cSKonstantin Shkolnyy 		u32 ctl_hs;
12159034389cSKonstantin Shkolnyy 		u32 flow_repl;
12167084fa86SKonstantin Shkolnyy 
12179034389cSKonstantin Shkolnyy 		cp210x_read_reg_block(port, CP210X_GET_FLOW, &flow_ctl,
12189034389cSKonstantin Shkolnyy 				sizeof(flow_ctl));
12199034389cSKonstantin Shkolnyy 		ctl_hs = le32_to_cpu(flow_ctl.ulControlHandshake);
12209034389cSKonstantin Shkolnyy 		flow_repl = le32_to_cpu(flow_ctl.ulFlowReplace);
12219034389cSKonstantin Shkolnyy 		dev_dbg(dev, "%s - read ulControlHandshake=0x%08x, ulFlowReplace=0x%08x\n",
12229034389cSKonstantin Shkolnyy 				__func__, ctl_hs, flow_repl);
12237084fa86SKonstantin Shkolnyy 
1224ab5701adSKonstantin Shkolnyy 		ctl_hs &= ~CP210X_SERIAL_DSR_HANDSHAKE;
1225ab5701adSKonstantin Shkolnyy 		ctl_hs &= ~CP210X_SERIAL_DCD_HANDSHAKE;
1226ab5701adSKonstantin Shkolnyy 		ctl_hs &= ~CP210X_SERIAL_DSR_SENSITIVITY;
1227ab5701adSKonstantin Shkolnyy 		ctl_hs &= ~CP210X_SERIAL_DTR_MASK;
1228ab5701adSKonstantin Shkolnyy 		ctl_hs |= CP210X_SERIAL_DTR_SHIFT(CP210X_SERIAL_DTR_ACTIVE);
122903ee2515SGreg Kroah-Hartman 		if (cflag & CRTSCTS) {
12309034389cSKonstantin Shkolnyy 			ctl_hs |= CP210X_SERIAL_CTS_HANDSHAKE;
1231ab5701adSKonstantin Shkolnyy 
1232ab5701adSKonstantin Shkolnyy 			flow_repl &= ~CP210X_SERIAL_RTS_MASK;
12339034389cSKonstantin Shkolnyy 			flow_repl |= CP210X_SERIAL_RTS_SHIFT(
12349034389cSKonstantin Shkolnyy 					CP210X_SERIAL_RTS_FLOW_CTL);
1235660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "%s - flow control = CRTSCTS\n", __func__);
123603ee2515SGreg Kroah-Hartman 		} else {
1237ab5701adSKonstantin Shkolnyy 			ctl_hs &= ~CP210X_SERIAL_CTS_HANDSHAKE;
1238ab5701adSKonstantin Shkolnyy 
1239ab5701adSKonstantin Shkolnyy 			flow_repl &= ~CP210X_SERIAL_RTS_MASK;
12409034389cSKonstantin Shkolnyy 			flow_repl |= CP210X_SERIAL_RTS_SHIFT(
12419034389cSKonstantin Shkolnyy 					CP210X_SERIAL_RTS_ACTIVE);
1242660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "%s - flow control = NONE\n", __func__);
124303ee2515SGreg Kroah-Hartman 		}
124403ee2515SGreg Kroah-Hartman 
12459034389cSKonstantin Shkolnyy 		dev_dbg(dev, "%s - write ulControlHandshake=0x%08x, ulFlowReplace=0x%08x\n",
12469034389cSKonstantin Shkolnyy 				__func__, ctl_hs, flow_repl);
12479034389cSKonstantin Shkolnyy 		flow_ctl.ulControlHandshake = cpu_to_le32(ctl_hs);
12489034389cSKonstantin Shkolnyy 		flow_ctl.ulFlowReplace = cpu_to_le32(flow_repl);
12499034389cSKonstantin Shkolnyy 		cp210x_write_reg_block(port, CP210X_SET_FLOW, &flow_ctl,
12509034389cSKonstantin Shkolnyy 				sizeof(flow_ctl));
125103ee2515SGreg Kroah-Hartman 	}
125203ee2515SGreg Kroah-Hartman 
125303ee2515SGreg Kroah-Hartman }
125403ee2515SGreg Kroah-Hartman 
125520b9d177SAlan Cox static int cp210x_tiocmset(struct tty_struct *tty,
125603ee2515SGreg Kroah-Hartman 		unsigned int set, unsigned int clear)
125703ee2515SGreg Kroah-Hartman {
125803ee2515SGreg Kroah-Hartman 	struct usb_serial_port *port = tty->driver_data;
125920b9d177SAlan Cox 	return cp210x_tiocmset_port(port, set, clear);
1260d2ad67b3SVomLehn }
1261d2ad67b3SVomLehn 
126220b9d177SAlan Cox static int cp210x_tiocmset_port(struct usb_serial_port *port,
1263d2ad67b3SVomLehn 		unsigned int set, unsigned int clear)
1264d2ad67b3SVomLehn {
126519165b2bSKonstantin Shkolnyy 	u16 control = 0;
126603ee2515SGreg Kroah-Hartman 
126703ee2515SGreg Kroah-Hartman 	if (set & TIOCM_RTS) {
126803ee2515SGreg Kroah-Hartman 		control |= CONTROL_RTS;
126903ee2515SGreg Kroah-Hartman 		control |= CONTROL_WRITE_RTS;
127003ee2515SGreg Kroah-Hartman 	}
127103ee2515SGreg Kroah-Hartman 	if (set & TIOCM_DTR) {
127203ee2515SGreg Kroah-Hartman 		control |= CONTROL_DTR;
127303ee2515SGreg Kroah-Hartman 		control |= CONTROL_WRITE_DTR;
127403ee2515SGreg Kroah-Hartman 	}
127503ee2515SGreg Kroah-Hartman 	if (clear & TIOCM_RTS) {
127603ee2515SGreg Kroah-Hartman 		control &= ~CONTROL_RTS;
127703ee2515SGreg Kroah-Hartman 		control |= CONTROL_WRITE_RTS;
127803ee2515SGreg Kroah-Hartman 	}
127903ee2515SGreg Kroah-Hartman 	if (clear & TIOCM_DTR) {
128003ee2515SGreg Kroah-Hartman 		control &= ~CONTROL_DTR;
128103ee2515SGreg Kroah-Hartman 		control |= CONTROL_WRITE_DTR;
128203ee2515SGreg Kroah-Hartman 	}
128303ee2515SGreg Kroah-Hartman 
1284660f3b14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "%s - control = 0x%.4x\n", __func__, control);
128503ee2515SGreg Kroah-Hartman 
128619165b2bSKonstantin Shkolnyy 	return cp210x_write_u16_reg(port, CP210X_SET_MHS, control);
128703ee2515SGreg Kroah-Hartman }
128803ee2515SGreg Kroah-Hartman 
1289d94c7bd4SAlan Cox static void cp210x_dtr_rts(struct usb_serial_port *p, int on)
1290d94c7bd4SAlan Cox {
1291d94c7bd4SAlan Cox 	if (on)
129220b9d177SAlan Cox 		cp210x_tiocmset_port(p, TIOCM_DTR|TIOCM_RTS, 0);
1293d94c7bd4SAlan Cox 	else
129420b9d177SAlan Cox 		cp210x_tiocmset_port(p, 0, TIOCM_DTR|TIOCM_RTS);
1295d94c7bd4SAlan Cox }
1296d94c7bd4SAlan Cox 
129760b33c13SAlan Cox static int cp210x_tiocmget(struct tty_struct *tty)
129803ee2515SGreg Kroah-Hartman {
129903ee2515SGreg Kroah-Hartman 	struct usb_serial_port *port = tty->driver_data;
1300fe1b07e9SKonstantin Shkolnyy 	u8 control;
130103ee2515SGreg Kroah-Hartman 	int result;
130203ee2515SGreg Kroah-Hartman 
1303de24e0a1SJohan Hovold 	result = cp210x_read_u8_reg(port, CP210X_GET_MDMSTS, &control);
1304de24e0a1SJohan Hovold 	if (result)
1305de24e0a1SJohan Hovold 		return result;
130603ee2515SGreg Kroah-Hartman 
130703ee2515SGreg Kroah-Hartman 	result = ((control & CONTROL_DTR) ? TIOCM_DTR : 0)
130803ee2515SGreg Kroah-Hartman 		|((control & CONTROL_RTS) ? TIOCM_RTS : 0)
130903ee2515SGreg Kroah-Hartman 		|((control & CONTROL_CTS) ? TIOCM_CTS : 0)
131003ee2515SGreg Kroah-Hartman 		|((control & CONTROL_DSR) ? TIOCM_DSR : 0)
131103ee2515SGreg Kroah-Hartman 		|((control & CONTROL_RING)? TIOCM_RI  : 0)
131203ee2515SGreg Kroah-Hartman 		|((control & CONTROL_DCD) ? TIOCM_CD  : 0);
131303ee2515SGreg Kroah-Hartman 
1314660f3b14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "%s - control = 0x%.2x\n", __func__, control);
131503ee2515SGreg Kroah-Hartman 
131603ee2515SGreg Kroah-Hartman 	return result;
131703ee2515SGreg Kroah-Hartman }
131803ee2515SGreg Kroah-Hartman 
13194cc27bd6SCraig Shelley static void cp210x_break_ctl(struct tty_struct *tty, int break_state)
132003ee2515SGreg Kroah-Hartman {
132103ee2515SGreg Kroah-Hartman 	struct usb_serial_port *port = tty->driver_data;
132219165b2bSKonstantin Shkolnyy 	u16 state;
132303ee2515SGreg Kroah-Hartman 
132403ee2515SGreg Kroah-Hartman 	if (break_state == 0)
132503ee2515SGreg Kroah-Hartman 		state = BREAK_OFF;
132603ee2515SGreg Kroah-Hartman 	else
132703ee2515SGreg Kroah-Hartman 		state = BREAK_ON;
1328660f3b14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "%s - turning break %s\n", __func__,
132903ee2515SGreg Kroah-Hartman 		state == BREAK_OFF ? "off" : "on");
133019165b2bSKonstantin Shkolnyy 	cp210x_write_u16_reg(port, CP210X_SET_BREAK, state);
133103ee2515SGreg Kroah-Hartman }
133203ee2515SGreg Kroah-Hartman 
1333cf5276ceSMartyn Welch #ifdef CONFIG_GPIOLIB
1334cf5276ceSMartyn Welch static int cp210x_gpio_request(struct gpio_chip *gc, unsigned int offset)
1335cf5276ceSMartyn Welch {
1336cf5276ceSMartyn Welch 	struct usb_serial *serial = gpiochip_get_data(gc);
1337cf5276ceSMartyn Welch 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1338cf5276ceSMartyn Welch 
1339c8acfe0aSKaroly Pados 	if (priv->gpio_altfunc & BIT(offset))
1340cf5276ceSMartyn Welch 		return -ENODEV;
1341cf5276ceSMartyn Welch 
1342cf5276ceSMartyn Welch 	return 0;
1343cf5276ceSMartyn Welch }
1344cf5276ceSMartyn Welch 
1345cf5276ceSMartyn Welch static int cp210x_gpio_get(struct gpio_chip *gc, unsigned int gpio)
1346cf5276ceSMartyn Welch {
1347cf5276ceSMartyn Welch 	struct usb_serial *serial = gpiochip_get_data(gc);
1348c8acfe0aSKaroly Pados 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1349c8acfe0aSKaroly Pados 	u8 req_type = REQTYPE_DEVICE_TO_HOST;
1350cf5276ceSMartyn Welch 	int result;
1351cf5276ceSMartyn Welch 	u8 buf;
1352cf5276ceSMartyn Welch 
1353c8acfe0aSKaroly Pados 	if (priv->partnum == CP210X_PARTNUM_CP2105)
1354c8acfe0aSKaroly Pados 		req_type = REQTYPE_INTERFACE_TO_HOST;
1355c8acfe0aSKaroly Pados 
1356c8acfe0aSKaroly Pados 	result = cp210x_read_vendor_block(serial, req_type,
1357cf5276ceSMartyn Welch 					  CP210X_READ_LATCH, &buf, sizeof(buf));
1358cf5276ceSMartyn Welch 	if (result < 0)
1359cf5276ceSMartyn Welch 		return result;
1360cf5276ceSMartyn Welch 
1361cf5276ceSMartyn Welch 	return !!(buf & BIT(gpio));
1362cf5276ceSMartyn Welch }
1363cf5276ceSMartyn Welch 
1364cf5276ceSMartyn Welch static void cp210x_gpio_set(struct gpio_chip *gc, unsigned int gpio, int value)
1365cf5276ceSMartyn Welch {
1366cf5276ceSMartyn Welch 	struct usb_serial *serial = gpiochip_get_data(gc);
1367c8acfe0aSKaroly Pados 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1368cf5276ceSMartyn Welch 	struct cp210x_gpio_write buf;
1369c8acfe0aSKaroly Pados 	int result;
1370cf5276ceSMartyn Welch 
1371cf5276ceSMartyn Welch 	if (value == 1)
1372cf5276ceSMartyn Welch 		buf.state = BIT(gpio);
1373cf5276ceSMartyn Welch 	else
1374cf5276ceSMartyn Welch 		buf.state = 0;
1375cf5276ceSMartyn Welch 
1376cf5276ceSMartyn Welch 	buf.mask = BIT(gpio);
1377cf5276ceSMartyn Welch 
1378c8acfe0aSKaroly Pados 	if (priv->partnum == CP210X_PARTNUM_CP2105) {
1379c8acfe0aSKaroly Pados 		result = cp210x_write_vendor_block(serial,
1380c8acfe0aSKaroly Pados 						   REQTYPE_HOST_TO_INTERFACE,
1381c8acfe0aSKaroly Pados 						   CP210X_WRITE_LATCH, &buf,
1382c8acfe0aSKaroly Pados 						   sizeof(buf));
1383c8acfe0aSKaroly Pados 	} else {
1384c8acfe0aSKaroly Pados 		u16 wIndex = buf.state << 8 | buf.mask;
1385c8acfe0aSKaroly Pados 
1386c8acfe0aSKaroly Pados 		result = usb_control_msg(serial->dev,
1387c8acfe0aSKaroly Pados 					 usb_sndctrlpipe(serial->dev, 0),
1388c8acfe0aSKaroly Pados 					 CP210X_VENDOR_SPECIFIC,
1389c8acfe0aSKaroly Pados 					 REQTYPE_HOST_TO_DEVICE,
1390c8acfe0aSKaroly Pados 					 CP210X_WRITE_LATCH,
1391c8acfe0aSKaroly Pados 					 wIndex,
1392c8acfe0aSKaroly Pados 					 NULL, 0, USB_CTRL_SET_TIMEOUT);
1393c8acfe0aSKaroly Pados 	}
1394c8acfe0aSKaroly Pados 
1395c8acfe0aSKaroly Pados 	if (result < 0) {
1396c8acfe0aSKaroly Pados 		dev_err(&serial->interface->dev, "failed to set GPIO value: %d\n",
1397c8acfe0aSKaroly Pados 				result);
1398c8acfe0aSKaroly Pados 	}
1399cf5276ceSMartyn Welch }
1400cf5276ceSMartyn Welch 
1401cf5276ceSMartyn Welch static int cp210x_gpio_direction_get(struct gpio_chip *gc, unsigned int gpio)
1402cf5276ceSMartyn Welch {
1403c8acfe0aSKaroly Pados 	struct usb_serial *serial = gpiochip_get_data(gc);
1404c8acfe0aSKaroly Pados 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1405c8acfe0aSKaroly Pados 
1406c8acfe0aSKaroly Pados 	return priv->gpio_input & BIT(gpio);
1407cf5276ceSMartyn Welch }
1408cf5276ceSMartyn Welch 
1409cf5276ceSMartyn Welch static int cp210x_gpio_direction_input(struct gpio_chip *gc, unsigned int gpio)
1410cf5276ceSMartyn Welch {
1411c8acfe0aSKaroly Pados 	struct usb_serial *serial = gpiochip_get_data(gc);
1412c8acfe0aSKaroly Pados 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1413c8acfe0aSKaroly Pados 
1414c8acfe0aSKaroly Pados 	if (priv->partnum == CP210X_PARTNUM_CP2105) {
1415c8acfe0aSKaroly Pados 		/* hardware does not support an input mode */
1416cf5276ceSMartyn Welch 		return -ENOTSUPP;
1417cf5276ceSMartyn Welch 	}
1418cf5276ceSMartyn Welch 
1419c8acfe0aSKaroly Pados 	/* push-pull pins cannot be changed to be inputs */
1420c8acfe0aSKaroly Pados 	if (priv->gpio_pushpull & BIT(gpio))
1421c8acfe0aSKaroly Pados 		return -EINVAL;
1422c8acfe0aSKaroly Pados 
1423c8acfe0aSKaroly Pados 	/* make sure to release pin if it is being driven low */
1424c8acfe0aSKaroly Pados 	cp210x_gpio_set(gc, gpio, 1);
1425c8acfe0aSKaroly Pados 
1426c8acfe0aSKaroly Pados 	priv->gpio_input |= BIT(gpio);
1427c8acfe0aSKaroly Pados 
1428c8acfe0aSKaroly Pados 	return 0;
1429c8acfe0aSKaroly Pados }
1430c8acfe0aSKaroly Pados 
1431cf5276ceSMartyn Welch static int cp210x_gpio_direction_output(struct gpio_chip *gc, unsigned int gpio,
1432cf5276ceSMartyn Welch 					int value)
1433cf5276ceSMartyn Welch {
1434c8acfe0aSKaroly Pados 	struct usb_serial *serial = gpiochip_get_data(gc);
1435c8acfe0aSKaroly Pados 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1436c8acfe0aSKaroly Pados 
1437c8acfe0aSKaroly Pados 	priv->gpio_input &= ~BIT(gpio);
1438c8acfe0aSKaroly Pados 	cp210x_gpio_set(gc, gpio, value);
1439c8acfe0aSKaroly Pados 
1440cf5276ceSMartyn Welch 	return 0;
1441cf5276ceSMartyn Welch }
1442cf5276ceSMartyn Welch 
14432956b5d9SMika Westerberg static int cp210x_gpio_set_config(struct gpio_chip *gc, unsigned int gpio,
14442956b5d9SMika Westerberg 				  unsigned long config)
1445cf5276ceSMartyn Welch {
1446cf5276ceSMartyn Welch 	struct usb_serial *serial = gpiochip_get_data(gc);
1447cf5276ceSMartyn Welch 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
14482956b5d9SMika Westerberg 	enum pin_config_param param = pinconf_to_config_param(config);
1449cf5276ceSMartyn Welch 
1450cf5276ceSMartyn Welch 	/* Succeed only if in correct mode (this can't be set at runtime) */
14512956b5d9SMika Westerberg 	if ((param == PIN_CONFIG_DRIVE_PUSH_PULL) &&
1452c8acfe0aSKaroly Pados 	    (priv->gpio_pushpull & BIT(gpio)))
1453cf5276ceSMartyn Welch 		return 0;
1454cf5276ceSMartyn Welch 
14552956b5d9SMika Westerberg 	if ((param == PIN_CONFIG_DRIVE_OPEN_DRAIN) &&
1456c8acfe0aSKaroly Pados 	    !(priv->gpio_pushpull & BIT(gpio)))
1457cf5276ceSMartyn Welch 		return 0;
1458cf5276ceSMartyn Welch 
1459cf5276ceSMartyn Welch 	return -ENOTSUPP;
1460cf5276ceSMartyn Welch }
1461cf5276ceSMartyn Welch 
1462cf5276ceSMartyn Welch /*
1463cf5276ceSMartyn Welch  * This function is for configuring GPIO using shared pins, where other signals
1464cf5276ceSMartyn Welch  * are made unavailable by configuring the use of GPIO. This is believed to be
1465cf5276ceSMartyn Welch  * only applicable to the cp2105 at this point, the other devices supported by
1466cf5276ceSMartyn Welch  * this driver that provide GPIO do so in a way that does not impact other
1467cf5276ceSMartyn Welch  * signals and are thus expected to have very different initialisation.
1468cf5276ceSMartyn Welch  */
1469c8acfe0aSKaroly Pados static int cp2105_gpioconf_init(struct usb_serial *serial)
1470cf5276ceSMartyn Welch {
1471cf5276ceSMartyn Welch 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1472cf5276ceSMartyn Welch 	struct cp210x_pin_mode mode;
1473cf5276ceSMartyn Welch 	struct cp210x_config config;
1474cf5276ceSMartyn Welch 	u8 intf_num = cp210x_interface_num(serial);
1475c8acfe0aSKaroly Pados 	u8 iface_config;
1476cf5276ceSMartyn Welch 	int result;
1477cf5276ceSMartyn Welch 
1478cf5276ceSMartyn Welch 	result = cp210x_read_vendor_block(serial, REQTYPE_DEVICE_TO_HOST,
1479cf5276ceSMartyn Welch 					  CP210X_GET_DEVICEMODE, &mode,
1480cf5276ceSMartyn Welch 					  sizeof(mode));
1481cf5276ceSMartyn Welch 	if (result < 0)
1482cf5276ceSMartyn Welch 		return result;
1483cf5276ceSMartyn Welch 
1484cf5276ceSMartyn Welch 	result = cp210x_read_vendor_block(serial, REQTYPE_DEVICE_TO_HOST,
1485cf5276ceSMartyn Welch 					  CP210X_GET_PORTCONFIG, &config,
1486cf5276ceSMartyn Welch 					  sizeof(config));
1487cf5276ceSMartyn Welch 	if (result < 0)
1488cf5276ceSMartyn Welch 		return result;
1489cf5276ceSMartyn Welch 
1490cf5276ceSMartyn Welch 	/*  2 banks of GPIO - One for the pins taken from each serial port */
1491cf5276ceSMartyn Welch 	if (intf_num == 0) {
1492c8acfe0aSKaroly Pados 		if (mode.eci == CP210X_PIN_MODE_MODEM) {
1493c8acfe0aSKaroly Pados 			/* mark all GPIOs of this interface as reserved */
1494c8acfe0aSKaroly Pados 			priv->gpio_altfunc = 0xff;
1495cf5276ceSMartyn Welch 			return 0;
1496c8acfe0aSKaroly Pados 		}
1497cf5276ceSMartyn Welch 
1498c8acfe0aSKaroly Pados 		iface_config = config.eci_cfg;
1499c8acfe0aSKaroly Pados 		priv->gpio_pushpull = (u8)((le16_to_cpu(config.gpio_mode) &
1500cf5276ceSMartyn Welch 						CP210X_ECI_GPIO_MODE_MASK) >>
1501cf5276ceSMartyn Welch 						CP210X_ECI_GPIO_MODE_OFFSET);
1502cf5276ceSMartyn Welch 		priv->gc.ngpio = 2;
1503cf5276ceSMartyn Welch 	} else if (intf_num == 1) {
1504c8acfe0aSKaroly Pados 		if (mode.sci == CP210X_PIN_MODE_MODEM) {
1505c8acfe0aSKaroly Pados 			/* mark all GPIOs of this interface as reserved */
1506c8acfe0aSKaroly Pados 			priv->gpio_altfunc = 0xff;
1507cf5276ceSMartyn Welch 			return 0;
1508c8acfe0aSKaroly Pados 		}
1509cf5276ceSMartyn Welch 
1510c8acfe0aSKaroly Pados 		iface_config = config.sci_cfg;
1511c8acfe0aSKaroly Pados 		priv->gpio_pushpull = (u8)((le16_to_cpu(config.gpio_mode) &
1512cf5276ceSMartyn Welch 						CP210X_SCI_GPIO_MODE_MASK) >>
1513cf5276ceSMartyn Welch 						CP210X_SCI_GPIO_MODE_OFFSET);
1514cf5276ceSMartyn Welch 		priv->gc.ngpio = 3;
1515cf5276ceSMartyn Welch 	} else {
1516cf5276ceSMartyn Welch 		return -ENODEV;
1517cf5276ceSMartyn Welch 	}
1518cf5276ceSMartyn Welch 
1519c8acfe0aSKaroly Pados 	/* mark all pins which are not in GPIO mode */
1520c8acfe0aSKaroly Pados 	if (iface_config & CP2105_GPIO0_TXLED_MODE)	/* GPIO 0 */
1521c8acfe0aSKaroly Pados 		priv->gpio_altfunc |= BIT(0);
1522c8acfe0aSKaroly Pados 	if (iface_config & (CP2105_GPIO1_RXLED_MODE |	/* GPIO 1 */
1523c8acfe0aSKaroly Pados 			CP2105_GPIO1_RS485_MODE))
1524c8acfe0aSKaroly Pados 		priv->gpio_altfunc |= BIT(1);
1525c8acfe0aSKaroly Pados 
1526c8acfe0aSKaroly Pados 	/* driver implementation for CP2105 only supports outputs */
1527c8acfe0aSKaroly Pados 	priv->gpio_input = 0;
1528c8acfe0aSKaroly Pados 
1529c8acfe0aSKaroly Pados 	return 0;
1530c8acfe0aSKaroly Pados }
1531c8acfe0aSKaroly Pados 
1532c8acfe0aSKaroly Pados static int cp2102n_gpioconf_init(struct usb_serial *serial)
1533c8acfe0aSKaroly Pados {
1534c8acfe0aSKaroly Pados 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1535c8acfe0aSKaroly Pados 	const u16 config_size = 0x02a6;
1536c8acfe0aSKaroly Pados 	u8 gpio_rst_latch;
1537c8acfe0aSKaroly Pados 	u8 config_version;
1538c8acfe0aSKaroly Pados 	u8 gpio_pushpull;
1539c8acfe0aSKaroly Pados 	u8 *config_buf;
1540c8acfe0aSKaroly Pados 	u8 gpio_latch;
1541c8acfe0aSKaroly Pados 	u8 gpio_ctrl;
1542c8acfe0aSKaroly Pados 	int result;
1543c8acfe0aSKaroly Pados 	u8 i;
1544c8acfe0aSKaroly Pados 
1545c8acfe0aSKaroly Pados 	/*
1546c8acfe0aSKaroly Pados 	 * Retrieve device configuration from the device.
1547c8acfe0aSKaroly Pados 	 * The array received contains all customization settings done at the
1548c8acfe0aSKaroly Pados 	 * factory/manufacturer. Format of the array is documented at the
1549c8acfe0aSKaroly Pados 	 * time of writing at:
1550c8acfe0aSKaroly Pados 	 * https://www.silabs.com/community/interface/knowledge-base.entry.html/2017/03/31/cp2102n_setconfig-xsfa
1551c8acfe0aSKaroly Pados 	 */
1552c8acfe0aSKaroly Pados 	config_buf = kmalloc(config_size, GFP_KERNEL);
1553c8acfe0aSKaroly Pados 	if (!config_buf)
1554c8acfe0aSKaroly Pados 		return -ENOMEM;
1555c8acfe0aSKaroly Pados 
1556c8acfe0aSKaroly Pados 	result = cp210x_read_vendor_block(serial,
1557c8acfe0aSKaroly Pados 					  REQTYPE_DEVICE_TO_HOST,
1558c8acfe0aSKaroly Pados 					  CP210X_READ_2NCONFIG,
1559c8acfe0aSKaroly Pados 					  config_buf,
1560c8acfe0aSKaroly Pados 					  config_size);
1561c8acfe0aSKaroly Pados 	if (result < 0) {
1562c8acfe0aSKaroly Pados 		kfree(config_buf);
1563c8acfe0aSKaroly Pados 		return result;
1564c8acfe0aSKaroly Pados 	}
1565c8acfe0aSKaroly Pados 
1566c8acfe0aSKaroly Pados 	config_version = config_buf[CP210X_2NCONFIG_CONFIG_VERSION_IDX];
1567c8acfe0aSKaroly Pados 	gpio_pushpull = config_buf[CP210X_2NCONFIG_GPIO_MODE_IDX];
1568c8acfe0aSKaroly Pados 	gpio_ctrl = config_buf[CP210X_2NCONFIG_GPIO_CONTROL_IDX];
1569c8acfe0aSKaroly Pados 	gpio_rst_latch = config_buf[CP210X_2NCONFIG_GPIO_RSTLATCH_IDX];
1570c8acfe0aSKaroly Pados 
1571c8acfe0aSKaroly Pados 	kfree(config_buf);
1572c8acfe0aSKaroly Pados 
1573c8acfe0aSKaroly Pados 	/* Make sure this is a config format we understand. */
1574c8acfe0aSKaroly Pados 	if (config_version != 0x01)
1575c8acfe0aSKaroly Pados 		return -ENOTSUPP;
1576c8acfe0aSKaroly Pados 
1577c8acfe0aSKaroly Pados 	priv->gc.ngpio = 4;
1578c8acfe0aSKaroly Pados 
1579c8acfe0aSKaroly Pados 	/*
1580c8acfe0aSKaroly Pados 	 * Get default pin states after reset. Needed so we can determine
1581c8acfe0aSKaroly Pados 	 * the direction of an open-drain pin.
1582c8acfe0aSKaroly Pados 	 */
1583c8acfe0aSKaroly Pados 	gpio_latch = (gpio_rst_latch >> 3) & 0x0f;
1584c8acfe0aSKaroly Pados 
1585c8acfe0aSKaroly Pados 	/* 0 indicates open-drain mode, 1 is push-pull */
1586c8acfe0aSKaroly Pados 	priv->gpio_pushpull = (gpio_pushpull >> 3) & 0x0f;
1587c8acfe0aSKaroly Pados 
1588c8acfe0aSKaroly Pados 	/* 0 indicates GPIO mode, 1 is alternate function */
1589c8acfe0aSKaroly Pados 	priv->gpio_altfunc = (gpio_ctrl >> 2) & 0x0f;
1590c8acfe0aSKaroly Pados 
1591*a49e1abfSMans Rullgard 	if (priv->partnum == CP210X_PARTNUM_CP2102N_QFN28) {
1592*a49e1abfSMans Rullgard 		/*
1593*a49e1abfSMans Rullgard 		 * For the QFN28 package, GPIO4-6 are controlled by
1594*a49e1abfSMans Rullgard 		 * the low three bits of the mode/latch fields.
1595*a49e1abfSMans Rullgard 		 * Contrary to the document linked above, the bits for
1596*a49e1abfSMans Rullgard 		 * the SUSPEND pins are elsewhere.  No alternate
1597*a49e1abfSMans Rullgard 		 * function is available for these pins.
1598*a49e1abfSMans Rullgard 		 */
1599*a49e1abfSMans Rullgard 		priv->gc.ngpio = 7;
1600*a49e1abfSMans Rullgard 		gpio_latch |= (gpio_rst_latch & 7) << 4;
1601*a49e1abfSMans Rullgard 		priv->gpio_pushpull |= (gpio_pushpull & 7) << 4;
1602*a49e1abfSMans Rullgard 	}
1603*a49e1abfSMans Rullgard 
1604c8acfe0aSKaroly Pados 	/*
1605c8acfe0aSKaroly Pados 	 * The CP2102N does not strictly has input and output pin modes,
1606c8acfe0aSKaroly Pados 	 * it only knows open-drain and push-pull modes which is set at
1607c8acfe0aSKaroly Pados 	 * factory. An open-drain pin can function both as an
1608c8acfe0aSKaroly Pados 	 * input or an output. We emulate input mode for open-drain pins
1609c8acfe0aSKaroly Pados 	 * by making sure they are not driven low, and we do not allow
1610c8acfe0aSKaroly Pados 	 * push-pull pins to be set as an input.
1611c8acfe0aSKaroly Pados 	 */
1612c8acfe0aSKaroly Pados 	for (i = 0; i < priv->gc.ngpio; ++i) {
1613c8acfe0aSKaroly Pados 		/*
1614c8acfe0aSKaroly Pados 		 * Set direction to "input" iff pin is open-drain and reset
1615c8acfe0aSKaroly Pados 		 * value is 1.
1616c8acfe0aSKaroly Pados 		 */
1617c8acfe0aSKaroly Pados 		if (!(priv->gpio_pushpull & BIT(i)) && (gpio_latch & BIT(i)))
1618c8acfe0aSKaroly Pados 			priv->gpio_input |= BIT(i);
1619c8acfe0aSKaroly Pados 	}
1620c8acfe0aSKaroly Pados 
1621c8acfe0aSKaroly Pados 	return 0;
1622c8acfe0aSKaroly Pados }
1623c8acfe0aSKaroly Pados 
1624c8acfe0aSKaroly Pados static int cp210x_gpio_init(struct usb_serial *serial)
1625c8acfe0aSKaroly Pados {
1626c8acfe0aSKaroly Pados 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1627c8acfe0aSKaroly Pados 	int result;
1628c8acfe0aSKaroly Pados 
1629c8acfe0aSKaroly Pados 	switch (priv->partnum) {
1630c8acfe0aSKaroly Pados 	case CP210X_PARTNUM_CP2105:
1631c8acfe0aSKaroly Pados 		result = cp2105_gpioconf_init(serial);
1632c8acfe0aSKaroly Pados 		break;
1633c8acfe0aSKaroly Pados 	case CP210X_PARTNUM_CP2102N_QFN28:
1634c8acfe0aSKaroly Pados 	case CP210X_PARTNUM_CP2102N_QFN24:
1635c8acfe0aSKaroly Pados 	case CP210X_PARTNUM_CP2102N_QFN20:
1636c8acfe0aSKaroly Pados 		result = cp2102n_gpioconf_init(serial);
1637c8acfe0aSKaroly Pados 		break;
1638c8acfe0aSKaroly Pados 	default:
1639c8acfe0aSKaroly Pados 		return 0;
1640c8acfe0aSKaroly Pados 	}
1641c8acfe0aSKaroly Pados 
1642c8acfe0aSKaroly Pados 	if (result < 0)
1643c8acfe0aSKaroly Pados 		return result;
1644c8acfe0aSKaroly Pados 
1645cf5276ceSMartyn Welch 	priv->gc.label = "cp210x";
1646cf5276ceSMartyn Welch 	priv->gc.request = cp210x_gpio_request;
1647cf5276ceSMartyn Welch 	priv->gc.get_direction = cp210x_gpio_direction_get;
1648cf5276ceSMartyn Welch 	priv->gc.direction_input = cp210x_gpio_direction_input;
1649cf5276ceSMartyn Welch 	priv->gc.direction_output = cp210x_gpio_direction_output;
1650cf5276ceSMartyn Welch 	priv->gc.get = cp210x_gpio_get;
1651cf5276ceSMartyn Welch 	priv->gc.set = cp210x_gpio_set;
16522956b5d9SMika Westerberg 	priv->gc.set_config = cp210x_gpio_set_config;
1653cf5276ceSMartyn Welch 	priv->gc.owner = THIS_MODULE;
1654cf5276ceSMartyn Welch 	priv->gc.parent = &serial->interface->dev;
1655cf5276ceSMartyn Welch 	priv->gc.base = -1;
1656cf5276ceSMartyn Welch 	priv->gc.can_sleep = true;
1657cf5276ceSMartyn Welch 
1658cf5276ceSMartyn Welch 	result = gpiochip_add_data(&priv->gc, serial);
1659cf5276ceSMartyn Welch 	if (!result)
16606b7271d2SJohan Hovold 		priv->gpio_registered = true;
1661cf5276ceSMartyn Welch 
1662cf5276ceSMartyn Welch 	return result;
1663cf5276ceSMartyn Welch }
1664cf5276ceSMartyn Welch 
1665cf5276ceSMartyn Welch static void cp210x_gpio_remove(struct usb_serial *serial)
1666cf5276ceSMartyn Welch {
1667cf5276ceSMartyn Welch 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1668cf5276ceSMartyn Welch 
1669cf5276ceSMartyn Welch 	if (priv->gpio_registered) {
1670cf5276ceSMartyn Welch 		gpiochip_remove(&priv->gc);
16716b7271d2SJohan Hovold 		priv->gpio_registered = false;
1672cf5276ceSMartyn Welch 	}
1673cf5276ceSMartyn Welch }
1674cf5276ceSMartyn Welch 
1675cf5276ceSMartyn Welch #else
1676cf5276ceSMartyn Welch 
1677c8acfe0aSKaroly Pados static int cp210x_gpio_init(struct usb_serial *serial)
1678cf5276ceSMartyn Welch {
1679cf5276ceSMartyn Welch 	return 0;
1680cf5276ceSMartyn Welch }
1681cf5276ceSMartyn Welch 
1682cf5276ceSMartyn Welch static void cp210x_gpio_remove(struct usb_serial *serial)
1683cf5276ceSMartyn Welch {
1684cf5276ceSMartyn Welch 	/* Nothing to do */
1685cf5276ceSMartyn Welch }
1686cf5276ceSMartyn Welch 
1687cf5276ceSMartyn Welch #endif
1688cf5276ceSMartyn Welch 
1689e2ae67a3SKonstantin Shkolnyy static int cp210x_port_probe(struct usb_serial_port *port)
169003ee2515SGreg Kroah-Hartman {
1691e2ae67a3SKonstantin Shkolnyy 	struct usb_serial *serial = port->serial;
1692e2ae67a3SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv;
1693d0bf1ff0SKonstantin Shkolnyy 	int ret;
1694a5360a53SPreston Fick 
1695e2ae67a3SKonstantin Shkolnyy 	port_priv = kzalloc(sizeof(*port_priv), GFP_KERNEL);
1696e2ae67a3SKonstantin Shkolnyy 	if (!port_priv)
1697a5360a53SPreston Fick 		return -ENOMEM;
1698a5360a53SPreston Fick 
1699cf5276ceSMartyn Welch 	port_priv->bInterfaceNumber = cp210x_interface_num(serial);
1700a5360a53SPreston Fick 
1701e2ae67a3SKonstantin Shkolnyy 	usb_set_serial_port_data(port, port_priv);
1702a5360a53SPreston Fick 
1703d0bf1ff0SKonstantin Shkolnyy 	ret = cp210x_detect_swapped_line_ctl(port);
1704d0bf1ff0SKonstantin Shkolnyy 	if (ret) {
1705d0bf1ff0SKonstantin Shkolnyy 		kfree(port_priv);
1706d0bf1ff0SKonstantin Shkolnyy 		return ret;
1707d0bf1ff0SKonstantin Shkolnyy 	}
170803ee2515SGreg Kroah-Hartman 
170903ee2515SGreg Kroah-Hartman 	return 0;
171003ee2515SGreg Kroah-Hartman }
171103ee2515SGreg Kroah-Hartman 
1712e2ae67a3SKonstantin Shkolnyy static int cp210x_port_remove(struct usb_serial_port *port)
1713a5360a53SPreston Fick {
1714e2ae67a3SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv;
1715a5360a53SPreston Fick 
1716e2ae67a3SKonstantin Shkolnyy 	port_priv = usb_get_serial_port_data(port);
1717e2ae67a3SKonstantin Shkolnyy 	kfree(port_priv);
1718e2ae67a3SKonstantin Shkolnyy 
1719e2ae67a3SKonstantin Shkolnyy 	return 0;
1720a5360a53SPreston Fick }
1721a5360a53SPreston Fick 
1722d4706c05SJohan Hovold static void cp210x_init_max_speed(struct usb_serial *serial)
1723d4706c05SJohan Hovold {
1724d4706c05SJohan Hovold 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
17257aecd7fcSJohan Hovold 	bool use_actual_rate = false;
1726d4706c05SJohan Hovold 	speed_t max;
1727d4706c05SJohan Hovold 
1728d4706c05SJohan Hovold 	switch (priv->partnum) {
1729d4706c05SJohan Hovold 	case CP210X_PARTNUM_CP2101:
1730d4706c05SJohan Hovold 		max = 921600;
1731d4706c05SJohan Hovold 		break;
1732d4706c05SJohan Hovold 	case CP210X_PARTNUM_CP2102:
1733d4706c05SJohan Hovold 	case CP210X_PARTNUM_CP2103:
1734d4706c05SJohan Hovold 		max = 1000000;
1735d4706c05SJohan Hovold 		break;
1736d4706c05SJohan Hovold 	case CP210X_PARTNUM_CP2104:
17375edb65a3SJohan Hovold 		use_actual_rate = true;
17385edb65a3SJohan Hovold 		max = 2000000;
17395edb65a3SJohan Hovold 		break;
1740d4706c05SJohan Hovold 	case CP210X_PARTNUM_CP2108:
1741d4706c05SJohan Hovold 		max = 2000000;
1742d4706c05SJohan Hovold 		break;
1743d4706c05SJohan Hovold 	case CP210X_PARTNUM_CP2105:
17445edb65a3SJohan Hovold 		if (cp210x_interface_num(serial) == 0) {
17455edb65a3SJohan Hovold 			use_actual_rate = true;
1746d4706c05SJohan Hovold 			max = 2000000;	/* ECI */
17475edb65a3SJohan Hovold 		} else {
1748d4706c05SJohan Hovold 			max = 921600;	/* SCI */
17495edb65a3SJohan Hovold 		}
1750d4706c05SJohan Hovold 		break;
17516f0bcf72SKaroly Pados 	case CP210X_PARTNUM_CP2102N_QFN28:
17526f0bcf72SKaroly Pados 	case CP210X_PARTNUM_CP2102N_QFN24:
17536f0bcf72SKaroly Pados 	case CP210X_PARTNUM_CP2102N_QFN20:
17547aecd7fcSJohan Hovold 		use_actual_rate = true;
17556f0bcf72SKaroly Pados 		max = 3000000;
17566f0bcf72SKaroly Pados 		break;
1757d4706c05SJohan Hovold 	default:
1758d4706c05SJohan Hovold 		max = 2000000;
1759d4706c05SJohan Hovold 		break;
1760d4706c05SJohan Hovold 	}
1761d4706c05SJohan Hovold 
1762d4706c05SJohan Hovold 	priv->max_speed = max;
17637aecd7fcSJohan Hovold 	priv->use_actual_rate = use_actual_rate;
1764d4706c05SJohan Hovold }
1765d4706c05SJohan Hovold 
1766cf5276ceSMartyn Welch static int cp210x_attach(struct usb_serial *serial)
1767cf5276ceSMartyn Welch {
1768cf5276ceSMartyn Welch 	int result;
1769cf5276ceSMartyn Welch 	struct cp210x_serial_private *priv;
1770cf5276ceSMartyn Welch 
1771cf5276ceSMartyn Welch 	priv = kzalloc(sizeof(*priv), GFP_KERNEL);
1772cf5276ceSMartyn Welch 	if (!priv)
1773cf5276ceSMartyn Welch 		return -ENOMEM;
1774cf5276ceSMartyn Welch 
1775cf5276ceSMartyn Welch 	result = cp210x_read_vendor_block(serial, REQTYPE_DEVICE_TO_HOST,
1776cf5276ceSMartyn Welch 					  CP210X_GET_PARTNUM, &priv->partnum,
1777cf5276ceSMartyn Welch 					  sizeof(priv->partnum));
17787eac35eaSSebastian Frei 	if (result < 0) {
17797eac35eaSSebastian Frei 		dev_warn(&serial->interface->dev,
17807eac35eaSSebastian Frei 			 "querying part number failed\n");
17817eac35eaSSebastian Frei 		priv->partnum = CP210X_PARTNUM_UNKNOWN;
17827eac35eaSSebastian Frei 	}
1783cf5276ceSMartyn Welch 
1784cf5276ceSMartyn Welch 	usb_set_serial_data(serial, priv);
1785cf5276ceSMartyn Welch 
1786d4706c05SJohan Hovold 	cp210x_init_max_speed(serial);
1787d4706c05SJohan Hovold 
1788c8acfe0aSKaroly Pados 	result = cp210x_gpio_init(serial);
1789cf5276ceSMartyn Welch 	if (result < 0) {
1790c8acfe0aSKaroly Pados 		dev_err(&serial->interface->dev, "GPIO initialisation failed: %d\n",
1791c8acfe0aSKaroly Pados 				result);
1792cf5276ceSMartyn Welch 	}
1793cf5276ceSMartyn Welch 
1794cf5276ceSMartyn Welch 	return 0;
1795cf5276ceSMartyn Welch }
1796cf5276ceSMartyn Welch 
1797cf5276ceSMartyn Welch static void cp210x_disconnect(struct usb_serial *serial)
1798cf5276ceSMartyn Welch {
1799cf5276ceSMartyn Welch 	cp210x_gpio_remove(serial);
1800cf5276ceSMartyn Welch }
1801cf5276ceSMartyn Welch 
1802cf5276ceSMartyn Welch static void cp210x_release(struct usb_serial *serial)
1803cf5276ceSMartyn Welch {
1804cf5276ceSMartyn Welch 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1805cf5276ceSMartyn Welch 
1806cf5276ceSMartyn Welch 	cp210x_gpio_remove(serial);
1807cf5276ceSMartyn Welch 
1808cf5276ceSMartyn Welch 	kfree(priv);
1809cf5276ceSMartyn Welch }
1810cf5276ceSMartyn Welch 
181168e24113SGreg Kroah-Hartman module_usb_serial_driver(serial_drivers, id_table);
181203ee2515SGreg Kroah-Hartman 
181303ee2515SGreg Kroah-Hartman MODULE_DESCRIPTION(DRIVER_DESC);
1814627cfa89SJohan Hovold MODULE_LICENSE("GPL v2");
1815