xref: /openbmc/linux/drivers/usb/serial/cp210x.c (revision 8051334e)
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)
690fa41eeSJohan Hovold  * Copyright (C) 2010-2021 Johan Hovold (johan@kernel.org)
703ee2515SGreg Kroah-Hartman  *
803ee2515SGreg Kroah-Hartman  * Support to set flow control line levels using TIOCMGET and TIOCMSET
903ee2515SGreg Kroah-Hartman  * thanks to Karl Hiramoto karl@hiramoto.org. RTSCTS hardware flow
1003ee2515SGreg Kroah-Hartman  * control thanks to Munir Nassar nassarmu@real-time.com
1103ee2515SGreg Kroah-Hartman  *
1203ee2515SGreg Kroah-Hartman  */
1303ee2515SGreg Kroah-Hartman 
1403ee2515SGreg Kroah-Hartman #include <linux/kernel.h>
1503ee2515SGreg Kroah-Hartman #include <linux/errno.h>
1603ee2515SGreg Kroah-Hartman #include <linux/slab.h>
1703ee2515SGreg Kroah-Hartman #include <linux/tty.h>
1803ee2515SGreg Kroah-Hartman #include <linux/tty_flip.h>
1903ee2515SGreg Kroah-Hartman #include <linux/module.h>
2003ee2515SGreg Kroah-Hartman #include <linux/usb.h>
2103ee2515SGreg Kroah-Hartman #include <linux/usb/serial.h>
22cf5276ceSMartyn Welch #include <linux/gpio/driver.h>
23cf5276ceSMartyn Welch #include <linux/bitops.h>
24cf5276ceSMartyn Welch #include <linux/mutex.h>
2503ee2515SGreg Kroah-Hartman 
264cc27bd6SCraig Shelley #define DRIVER_DESC "Silicon Labs CP210x RS232 serial adaptor driver"
2703ee2515SGreg Kroah-Hartman 
2803ee2515SGreg Kroah-Hartman /*
2903ee2515SGreg Kroah-Hartman  * Function Prototypes
3003ee2515SGreg Kroah-Hartman  */
31a509a7e4SAlan Cox static int cp210x_open(struct tty_struct *tty, struct usb_serial_port *);
324cc27bd6SCraig Shelley static void cp210x_close(struct usb_serial_port *);
33e5990874SJohan Hovold static void cp210x_change_speed(struct tty_struct *, struct usb_serial_port *,
34e5990874SJohan Hovold 							struct ktermios *);
354cc27bd6SCraig Shelley static void cp210x_set_termios(struct tty_struct *, struct usb_serial_port *,
3603ee2515SGreg Kroah-Hartman 							struct ktermios*);
376f923a01SKonstantin Shkolnyy static bool cp210x_tx_empty(struct usb_serial_port *port);
3860b33c13SAlan Cox static int cp210x_tiocmget(struct tty_struct *);
3920b9d177SAlan Cox static int cp210x_tiocmset(struct tty_struct *, unsigned int, unsigned int);
4020b9d177SAlan Cox static int cp210x_tiocmset_port(struct usb_serial_port *port,
41d2ad67b3SVomLehn 		unsigned int, unsigned int);
424cc27bd6SCraig Shelley static void cp210x_break_ctl(struct tty_struct *, int);
43cf5276ceSMartyn Welch static int cp210x_attach(struct usb_serial *);
44cf5276ceSMartyn Welch static void cp210x_disconnect(struct usb_serial *);
45cf5276ceSMartyn Welch static void cp210x_release(struct usb_serial *);
46e2ae67a3SKonstantin Shkolnyy static int cp210x_port_probe(struct usb_serial_port *);
47c5d1448fSUwe Kleine-König static void cp210x_port_remove(struct usb_serial_port *);
48daa91919SJohan Hovold static void cp210x_dtr_rts(struct usb_serial_port *port, int on);
49a7207e98SJohan Hovold static void cp210x_process_read_urb(struct urb *urb);
50a7207e98SJohan Hovold static void cp210x_enable_event_mode(struct usb_serial_port *port);
51a7207e98SJohan Hovold static void cp210x_disable_event_mode(struct usb_serial_port *port);
5203ee2515SGreg Kroah-Hartman 
537d40d7e8SNémeth Márton static const struct usb_device_id id_table[] = {
542f1136d1SDJ Delorie 	{ USB_DEVICE(0x045B, 0x0053) }, /* Renesas RX610 RX-Stick */
5503ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x0471, 0x066A) }, /* AKTAKOM ACE-1001 cable */
5603ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x0489, 0xE000) }, /* Pirelli Broadband S.p.A, DP-L10 SIP/GSM Mobile */
575b22a32eSA E Lawrence 	{ USB_DEVICE(0x0489, 0xE003) }, /* Pirelli Broadband S.p.A, DP-L10 SIP/GSM Mobile */
58b7c7cbc8SCraig Shelley 	{ USB_DEVICE(0x0745, 0x1000) }, /* CipherLab USB CCD Barcode Scanner 1000 */
5990625070SLuiz Angelo Daros de Luca 	{ USB_DEVICE(0x0846, 0x1100) }, /* NetGear Managed Switch M4100 series, M5300 series, M7100 series */
6003ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x08e6, 0x5501) }, /* Gemalto Prox-PU/CU contactless smartcard reader */
61b7c7cbc8SCraig Shelley 	{ USB_DEVICE(0x08FD, 0x000A) }, /* Digianswer A/S , ZigBee/802.15.4 MAC Device */
62a6f03312SLennart Sorensen 	{ USB_DEVICE(0x0908, 0x01FF) }, /* Siemens RUGGEDCOM USB Serial Console */
6343377df7SChenxin Jin 	{ USB_DEVICE(0x0988, 0x0578) }, /* Teraoka AD2000 */
64dd9d3d86SIvan Mironov 	{ USB_DEVICE(0x0B00, 0x3070) }, /* Ingenico 3070 */
65eefd9029SCraig Shelley 	{ USB_DEVICE(0x0BED, 0x1100) }, /* MEI (TM) Cashflow-SC Bill/Voucher Acceptor */
66eefd9029SCraig Shelley 	{ USB_DEVICE(0x0BED, 0x1101) }, /* MEI series 2000 Combo Acceptor */
6703ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x0FCF, 0x1003) }, /* Dynastream ANT development board */
6803ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x0FCF, 0x1004) }, /* Dynastream ANT2USB */
6903ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x0FCF, 0x1006) }, /* Dynastream ANT development board */
708de7f4daSLuis Llorente Campo 	{ USB_DEVICE(0x0FDE, 0xCA05) }, /* OWL Wireless Electricity Monitor CM-160 */
7103ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10A6, 0xAA26) }, /* Knock-off DCU-11 cable */
7203ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10AB, 0x10C5) }, /* Siemens MC60 Cable */
7303ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10B5, 0xAC70) }, /* Nokia CA-42 USB */
74b7c7cbc8SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x0F91) }, /* Vstabi */
750601e116SAmit Kucheria 	{ USB_DEVICE(0x10C4, 0x1101) }, /* Arkham Technology DS101 Bus Monitor */
760601e116SAmit Kucheria 	{ USB_DEVICE(0x10C4, 0x1601) }, /* Arkham Technology DS101 Adapter */
7703ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x800A) }, /* SPORTident BSM7-D-USB main station */
7803ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x803B) }, /* Pololu USB-serial converter */
79eefd9029SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x8044) }, /* Cygnal Debug Adapter */
80eefd9029SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x804E) }, /* Software Bisque Paramount ME build-in converter */
8103ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x8053) }, /* Enfora EDG1228 */
8203ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x8054) }, /* Enfora GSM2228 */
83a595ecddSGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x8056) }, /* Lorenz Messtechnik devices */
8403ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x8066) }, /* Argussoft In-System Programmer */
85eefd9029SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x806F) }, /* IMS USB to RS422 Converter Cable */
8603ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x807A) }, /* Crumb128 board */
875bbfa6f4SMikko Tuumanen 	{ USB_DEVICE(0x10C4, 0x80C4) }, /* Cygnal Integrated Products, Inc., Optris infrared thermometer */
8803ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x80CA) }, /* Degree Controls Inc */
8903ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x80DD) }, /* Tracient RFID */
9003ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x80F6) }, /* Suunto sports instrument */
9103ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x8115) }, /* Arygon NFC/Mifare Reader */
9203ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x813D) }, /* Burnside Telecom Deskmobile */
938bf16ba7SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x813F) }, /* Tams Master Easy Control */
9403ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x814A) }, /* West Mountain Radio RIGblaster P&P */
9503ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x814B) }, /* West Mountain Radio RIGtalk */
96a57e82a1SSteve Conklin 	{ USB_DEVICE(0x2405, 0x0003) }, /* West Mountain Radio RIGblaster Advantage */
970bf7a81cSJason Detring 	{ USB_DEVICE(0x10C4, 0x8156) }, /* B&G H3000 link cable */
9803ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x815E) }, /* Helicomm IP-Link 1220-DVM */
993fcc8f96SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x815F) }, /* Timewave HamLinkUSB */
10024160628SJohan Hovold 	{ USB_DEVICE(0x10C4, 0x817C) }, /* CESINEL MEDCAL N Power Quality Monitor */
10124160628SJohan Hovold 	{ USB_DEVICE(0x10C4, 0x817D) }, /* CESINEL MEDCAL NT Power Quality Monitor */
10224160628SJohan Hovold 	{ USB_DEVICE(0x10C4, 0x817E) }, /* CESINEL MEDCAL S Power Quality Monitor */
103eefd9029SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x818B) }, /* AVIT Research USB to TTL */
10403ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x819F) }, /* MJS USB Toslink Switcher */
10503ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x81A6) }, /* ThinkOptics WavIt */
10608e87d0dSMalte Schröder 	{ USB_DEVICE(0x10C4, 0x81A9) }, /* Multiplex RC Interface */
10703ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x81AC) }, /* MSD Dash Hawk */
108eefd9029SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x81AD) }, /* INSYS USB Modem */
10903ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x81C8) }, /* Lipowsky Industrie Elektronik GmbH, Baby-JTAG */
110f487c54dSPeter Dedecker 	{ USB_DEVICE(0x10C4, 0x81D7) }, /* IAI Corp. RCB-CV-USB USB to RS485 Adaptor */
11103ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x81E2) }, /* Lipowsky Industrie Elektronik GmbH, Baby-LIN */
11203ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x81E7) }, /* Aerocomm Radio */
113bd07c551SAlan Cox 	{ USB_DEVICE(0x10C4, 0x81E8) }, /* Zephyr Bioharness */
114b7c7cbc8SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x81F2) }, /* C1007 HF band RFID controller */
11503ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x8218) }, /* Lipowsky Industrie Elektronik GmbH, HARP-1 */
11603ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x822B) }, /* Modem EDGE(GSM) Comander 2 */
11725985edcSLucas De Marchi 	{ USB_DEVICE(0x10C4, 0x826B) }, /* Cygnal Integrated Products, Inc., Fasttrax GPS demonstration module */
11872b30079STristan Bruns 	{ USB_DEVICE(0x10C4, 0x8281) }, /* Nanotec Plug & Drive */
119c851e83fSFlorian Fainelli 	{ USB_DEVICE(0x10C4, 0x8293) }, /* Telegesis ETRX2USB */
12024160628SJohan Hovold 	{ USB_DEVICE(0x10C4, 0x82EF) }, /* CESINEL FALCO 6105 AC Power Supply */
12124160628SJohan Hovold 	{ USB_DEVICE(0x10C4, 0x82F1) }, /* CESINEL MEDCAL EFD Earth Fault Detector */
12224160628SJohan Hovold 	{ USB_DEVICE(0x10C4, 0x82F2) }, /* CESINEL MEDCAL ST Network Analyzer */
123613ac23aSJasem Mutlaq 	{ USB_DEVICE(0x10C4, 0x82F4) }, /* Starizona MicroTouch */
124b7c7cbc8SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x82F9) }, /* Procyon AVS */
12503ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x8341) }, /* Siemens MC35PU GPRS Modem */
1268bf16ba7SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x8382) }, /* Cygnal Integrated Products, Inc. */
12703ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x83A8) }, /* Amber Wireless AMB2560 */
128347bc8cbSGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x83AA) }, /* Mark-10 Digital Force Gauge */
129faea63f7SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x83D8) }, /* DekTec DTA Plus VHF/UHF Booster/Attenuator */
1308bf16ba7SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x8411) }, /* Kyocera GPS Module */
131faea63f7SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x8418) }, /* IRZ Automation Teleport SG-10 GSM/GPRS Modem */
132d23bac9fSAlex Stephens 	{ USB_DEVICE(0x10C4, 0x846E) }, /* BEI USB Sensor Interface (VCP) */
133decc5360SKyle Jones 	{ USB_DEVICE(0x10C4, 0x8470) }, /* Juniper Networks BX Series System Console */
134541e05ecSCraig Shelley 	{ USB_DEVICE(0x10C4, 0x8477) }, /* Balluff RFID */
135613ac23aSJasem Mutlaq 	{ USB_DEVICE(0x10C4, 0x84B6) }, /* Starizona Hyperion */
13624160628SJohan Hovold 	{ USB_DEVICE(0x10C4, 0x851E) }, /* CESINEL MEDCAL PT Network Analyzer */
13743074132SDiego Elio Pettenò 	{ USB_DEVICE(0x10C4, 0x85A7) }, /* LifeScan OneTouch Verio IQ */
13824160628SJohan Hovold 	{ USB_DEVICE(0x10C4, 0x85B8) }, /* CESINEL ReCon T Energy Logger */
1394eff0b40SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x85EA) }, /* AC-Services IBUS-IF */
1404eff0b40SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x85EB) }, /* AC-Services CIS-IBUS */
141356fe44fSMarkus Becker 	{ USB_DEVICE(0x10C4, 0x85F8) }, /* Virtenio Preon32 */
1424eff0b40SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x8664) }, /* AC-Services CAN-IF */
1434eff0b40SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x8665) }, /* AC-Services OBD-IF */
1441ae78a48SDavid Peterson 	{ USB_DEVICE(0x10C4, 0x8856) },	/* CEL EM357 ZigBee USB Stick - LR */
1451ae78a48SDavid Peterson 	{ USB_DEVICE(0x10C4, 0x8857) },	/* CEL EM357 ZigBee USB Stick */
14676811569SSami Rahman 	{ USB_DEVICE(0x10C4, 0x88A4) }, /* MMB Networks ZigBee USB Device */
14776811569SSami Rahman 	{ USB_DEVICE(0x10C4, 0x88A5) }, /* Planet Innovation Ingeni ZigBee USB Device */
148ca667a33SKaran Singhal 	{ USB_DEVICE(0x10C4, 0x88D8) }, /* Acuity Brands nLight Air Adapter */
14924160628SJohan Hovold 	{ USB_DEVICE(0x10C4, 0x88FB) }, /* CESINEL MEDCAL STII Network Analyzer */
15024160628SJohan Hovold 	{ USB_DEVICE(0x10C4, 0x8938) }, /* CESINEL MEDCAL S II Network Analyzer */
151bfc2d7dfSJoe Savage 	{ USB_DEVICE(0x10C4, 0x8946) }, /* Ketra N1 Wireless Interface */
1522ab13292SPaul Jakma 	{ USB_DEVICE(0x10C4, 0x8962) }, /* Brim Brothers charging dock */
1531ae78a48SDavid Peterson 	{ USB_DEVICE(0x10C4, 0x8977) },	/* CEL MeshWorks DevKit Device */
154c735ed74SMark Edwards 	{ USB_DEVICE(0x10C4, 0x8998) }, /* KCF Technologies PRN */
15524160628SJohan Hovold 	{ USB_DEVICE(0x10C4, 0x89A4) }, /* CESINEL FTBC Flexible Thyristor Bridge Controller */
156367b160fSOlli Salonen 	{ USB_DEVICE(0x10C4, 0x89FB) }, /* Qivicon ZigBee USB Radio Stick */
157df72d588SJohn D. Blair 	{ USB_DEVICE(0x10C4, 0x8A2A) }, /* HubZ dual ZigBee and Z-Wave dongle */
158fd90f73aSJeremie Rapin 	{ USB_DEVICE(0x10C4, 0x8A5E) }, /* CEL EM3588 ZigBee USB Stick Long Range */
1599585e340SStefan Triller 	{ USB_DEVICE(0x10C4, 0x8B34) }, /* Qivicon ZigBee USB Radio Stick */
16003ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0xEA60) }, /* Silicon Labs factory default */
16103ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0xEA61) }, /* Silicon Labs factory default */
1622f839823SKaroly Pados 	{ USB_DEVICE(0x10C4, 0xEA63) }, /* Silicon Labs Windows Update (CP2101-4/CP2102N) */
163a5360a53SPreston Fick 	{ USB_DEVICE(0x10C4, 0xEA70) }, /* Silicon Labs factory default */
164eefd9029SCraig Shelley 	{ USB_DEVICE(0x10C4, 0xEA71) }, /* Infinity GPS-MIC-1 Radio Monophone */
1652f839823SKaroly Pados 	{ USB_DEVICE(0x10C4, 0xEA7A) }, /* Silicon Labs Windows Update (CP2105) */
1662f839823SKaroly Pados 	{ USB_DEVICE(0x10C4, 0xEA7B) }, /* Silicon Labs Windows Update (CP2108) */
16703ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0xF001) }, /* Elan Digital Systems USBscope50 */
16803ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0xF002) }, /* Elan Digital Systems USBwave12 */
16903ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0xF003) }, /* Elan Digital Systems USBpulse100 */
17003ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0xF004) }, /* Elan Digital Systems USBcount50 */
17103ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C5, 0xEA61) }, /* Silicon Labs MobiData GPRS USB Modem */
172b7c7cbc8SCraig Shelley 	{ USB_DEVICE(0x10CE, 0xEA6A) }, /* Silicon Labs MobiData GPRS USB Modem 100EU */
1731d377f4dSMike Manning 	{ USB_DEVICE(0x12B8, 0xEC60) }, /* Link G4 ECU */
1741d377f4dSMike Manning 	{ USB_DEVICE(0x12B8, 0xEC62) }, /* Link G4+ ECU */
17503ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x13AD, 0x9999) }, /* Baltech card reader */
176b7c7cbc8SCraig Shelley 	{ USB_DEVICE(0x1555, 0x0004) }, /* Owen AC4 USB-RS485 Converter */
1771f1e82f7SJohan Hovold 	{ USB_DEVICE(0x155A, 0x1006) },	/* ELDAT Easywave RX09 */
1783fcc8f96SCraig Shelley 	{ USB_DEVICE(0x166A, 0x0201) }, /* Clipsal 5500PACA C-Bus Pascal Automation Controller */
1793fcc8f96SCraig Shelley 	{ USB_DEVICE(0x166A, 0x0301) }, /* Clipsal 5800PC C-Bus Wireless PC Interface */
18003ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x166A, 0x0303) }, /* Clipsal 5500PCU C-Bus USB interface */
1813fcc8f96SCraig Shelley 	{ USB_DEVICE(0x166A, 0x0304) }, /* Clipsal 5000CT2 C-Bus Black and White Touchscreen */
1823fcc8f96SCraig Shelley 	{ USB_DEVICE(0x166A, 0x0305) }, /* Clipsal C-5000CT2 C-Bus Spectrum Colour Touchscreen */
1833fcc8f96SCraig Shelley 	{ USB_DEVICE(0x166A, 0x0401) }, /* Clipsal L51xx C-Bus Architectural Dimmer */
1843fcc8f96SCraig Shelley 	{ USB_DEVICE(0x166A, 0x0101) }, /* Clipsal 5560884 C-Bus Multi-room Audio Matrix Switcher */
185675af708SMichiel vd Garde 	{ USB_DEVICE(0x16C0, 0x09B0) }, /* Lunatico Seletek */
186675af708SMichiel vd Garde 	{ USB_DEVICE(0x16C0, 0x09B1) }, /* Lunatico Seletek */
18703ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x16D6, 0x0001) }, /* Jablotron serial interface */
188356c5a48SAlessio Igor Bogani 	{ USB_DEVICE(0x16DC, 0x0010) }, /* W-IE-NE-R Plein & Baus GmbH PL512 Power Supply */
189356c5a48SAlessio Igor Bogani 	{ USB_DEVICE(0x16DC, 0x0011) }, /* W-IE-NE-R Plein & Baus GmbH RCM Remote Control for MARATON Power Supply */
190356c5a48SAlessio Igor Bogani 	{ USB_DEVICE(0x16DC, 0x0012) }, /* W-IE-NE-R Plein & Baus GmbH MPOD Multi Channel Power Supply */
191356c5a48SAlessio Igor Bogani 	{ USB_DEVICE(0x16DC, 0x0015) }, /* W-IE-NE-R Plein & Baus GmbH CML Control, Monitoring and Data Logger */
192c6c1e449SBruno Thomsen 	{ USB_DEVICE(0x17A8, 0x0001) }, /* Kamstrup Optical Eye/3-wire */
193c6c1e449SBruno Thomsen 	{ USB_DEVICE(0x17A8, 0x0005) }, /* Kamstrup M-Bus Master MultiPort 250D */
194541e05ecSCraig Shelley 	{ USB_DEVICE(0x17F4, 0xAAAA) }, /* Wavesense Jazz blood glucose meter */
195541e05ecSCraig Shelley 	{ USB_DEVICE(0x1843, 0x0200) }, /* Vaisala USB Instrument Cable */
196541e05ecSCraig Shelley 	{ USB_DEVICE(0x18EF, 0xE00F) }, /* ELV USB-I2C-Interface */
197f7d7f59aSOliver Freyermuth 	{ USB_DEVICE(0x18EF, 0xE025) }, /* ELV Marble Sound Board 1 */
198d14ac576SChristian Holl 	{ USB_DEVICE(0x18EF, 0xE030) }, /* ELV ALC 8xxx Battery Charger */
199c496ad83SAndreas Engel 	{ USB_DEVICE(0x18EF, 0xE032) }, /* ELV TFD500 Data Logger */
2006627ae19SKen Lin 	{ USB_DEVICE(0x1901, 0x0190) }, /* GE B850 CP2105 Recorder interface */
2016627ae19SKen Lin 	{ USB_DEVICE(0x1901, 0x0193) }, /* GE B650 CP2104 PMC interface */
202cddc9434SMartyn Welch 	{ USB_DEVICE(0x1901, 0x0194) },	/* GE Healthcare Remote Alarm Box */
2039a593656SKen Lin 	{ USB_DEVICE(0x1901, 0x0195) },	/* GE B850/B650/B450 CP2104 DP UART interface */
2049a593656SKen Lin 	{ USB_DEVICE(0x1901, 0x0196) },	/* GE B850 CP2105 DP UART interface */
20542213a01SSebastian Reichel 	{ USB_DEVICE(0x1901, 0x0197) }, /* GE CS1000 Display serial interface */
20642213a01SSebastian Reichel 	{ USB_DEVICE(0x1901, 0x0198) }, /* GE CS1000 M.2 Key E serial interface */
2073c4f6ecdSPho Tran 	{ USB_DEVICE(0x199B, 0xBA30) }, /* LORD WSDA-200-USB */
2083c4c615dSVittorio Alfieri 	{ USB_DEVICE(0x19CF, 0x3000) }, /* Parrot NMEA GPS Flight Recorder */
209b579fa52SBarry Grussling 	{ USB_DEVICE(0x1ADB, 0x0001) }, /* Schweitzer Engineering C662 Cable */
210b9326057SAndras Kovacs 	{ USB_DEVICE(0x1B1C, 0x1C00) }, /* Corsair USB Dongle */
21135cc83eaSNathaniel Ting 	{ USB_DEVICE(0x1BA4, 0x0002) },	/* Silicon Labs 358x factory default */
21293ad03d6SAnders Larsen 	{ USB_DEVICE(0x1BE3, 0x07A6) }, /* WAGO 750-923 USB Service Cable */
213dee80ad1SAndreas Bomholtz 	{ USB_DEVICE(0x1D6F, 0x0010) }, /* Seluxit ApS RF Dongle */
2143fcc8f96SCraig Shelley 	{ USB_DEVICE(0x1E29, 0x0102) }, /* Festo CPX-USB */
2153fcc8f96SCraig Shelley 	{ USB_DEVICE(0x1E29, 0x0501) }, /* Festo CMSP */
216be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0100) }, /* Lake Shore Model 121 Current Source */
217be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0200) }, /* Lake Shore Model 218A Temperature Monitor */
218be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0201) }, /* Lake Shore Model 219 Temperature Monitor */
219be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0202) }, /* Lake Shore Model 233 Temperature Transmitter */
220be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0203) }, /* Lake Shore Model 235 Temperature Transmitter */
221be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0300) }, /* Lake Shore Model 335 Temperature Controller */
222be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0301) }, /* Lake Shore Model 336 Temperature Controller */
223be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0302) }, /* Lake Shore Model 350 Temperature Controller */
224be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0303) }, /* Lake Shore Model 371 AC Bridge */
225be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0400) }, /* Lake Shore Model 411 Handheld Gaussmeter */
226be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0401) }, /* Lake Shore Model 425 Gaussmeter */
227be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0402) }, /* Lake Shore Model 455A Gaussmeter */
228be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0403) }, /* Lake Shore Model 475A Gaussmeter */
229be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0404) }, /* Lake Shore Model 465 Three Axis Gaussmeter */
230be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0600) }, /* Lake Shore Model 625A Superconducting MPS */
231be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0601) }, /* Lake Shore Model 642A Magnet Power Supply */
232be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0602) }, /* Lake Shore Model 648 Magnet Power Supply */
233be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0700) }, /* Lake Shore Model 737 VSM Controller */
234be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0701) }, /* Lake Shore Model 776 Hall Matrix */
235f98a7aa8SPeter Sanford 	{ USB_DEVICE(0x2626, 0xEA60) }, /* Aruba Networks 7xxx USB Serial Console */
236791b7d7cSRenato Caldas 	{ USB_DEVICE(0x3195, 0xF190) }, /* Link Instruments MSO-19 */
2373fcc8f96SCraig Shelley 	{ USB_DEVICE(0x3195, 0xF280) }, /* Link Instruments MSO-28 */
2383fcc8f96SCraig Shelley 	{ USB_DEVICE(0x3195, 0xF281) }, /* Link Instruments MSO-28 */
2391e23aaceSKyle Roeschley 	{ USB_DEVICE(0x3923, 0x7A0B) }, /* National Instruments USB Serial Console */
240541e05ecSCraig Shelley 	{ USB_DEVICE(0x413C, 0x9500) }, /* DW700 GPS USB interface */
24103ee2515SGreg Kroah-Hartman 	{ } /* Terminating Entry */
24203ee2515SGreg Kroah-Hartman };
24303ee2515SGreg Kroah-Hartman 
24403ee2515SGreg Kroah-Hartman MODULE_DEVICE_TABLE(usb, id_table);
24503ee2515SGreg Kroah-Hartman 
246cf5276ceSMartyn Welch struct cp210x_serial_private {
247cf5276ceSMartyn Welch #ifdef CONFIG_GPIOLIB
248cf5276ceSMartyn Welch 	struct gpio_chip	gc;
2496b7271d2SJohan Hovold 	bool			gpio_registered;
250*8051334eSPho Tran 	u16			gpio_pushpull;
251*8051334eSPho Tran 	u16			gpio_altfunc;
252*8051334eSPho Tran 	u16			gpio_input;
253cf5276ceSMartyn Welch #endif
254cf5276ceSMartyn Welch 	u8			partnum;
25585bc2d91SJohanna Abrahamsson 	speed_t			min_speed;
256d4706c05SJohan Hovold 	speed_t			max_speed;
2577aecd7fcSJohan Hovold 	bool			use_actual_rate;
258cf5276ceSMartyn Welch };
259cf5276ceSMartyn Welch 
260a7207e98SJohan Hovold enum cp210x_event_state {
261a7207e98SJohan Hovold 	ES_DATA,
262a7207e98SJohan Hovold 	ES_ESCAPE,
263a7207e98SJohan Hovold 	ES_LSR,
264a7207e98SJohan Hovold 	ES_LSR_DATA_0,
265a7207e98SJohan Hovold 	ES_LSR_DATA_1,
266a7207e98SJohan Hovold 	ES_MSR
267a7207e98SJohan Hovold };
268a7207e98SJohan Hovold 
269e2ae67a3SKonstantin Shkolnyy struct cp210x_port_private {
27016045babSJohan Hovold 	u8			bInterfaceNumber;
271a7207e98SJohan Hovold 	bool			event_mode;
272a7207e98SJohan Hovold 	enum cp210x_event_state event_state;
273a7207e98SJohan Hovold 	u8			lsr;
2745951b850SJohan Hovold 
2755951b850SJohan Hovold 	struct mutex		mutex;
2765951b850SJohan Hovold 	bool			crtscts;
2778cce3bbfSJohan Hovold 	bool			dtr;
2788cce3bbfSJohan Hovold 	bool			rts;
279a5360a53SPreston Fick };
280a5360a53SPreston Fick 
2814cc27bd6SCraig Shelley static struct usb_serial_driver cp210x_device = {
28203ee2515SGreg Kroah-Hartman 	.driver = {
28303ee2515SGreg Kroah-Hartman 		.owner =	THIS_MODULE,
2844cc27bd6SCraig Shelley 		.name =		"cp210x",
28503ee2515SGreg Kroah-Hartman 	},
28603ee2515SGreg Kroah-Hartman 	.id_table		= id_table,
28703ee2515SGreg Kroah-Hartman 	.num_ports		= 1,
288aea006b9SJohan Hovold 	.bulk_in_size		= 256,
289d4e598f6SJohan Hovold 	.bulk_out_size		= 256,
2904cc27bd6SCraig Shelley 	.open			= cp210x_open,
2914cc27bd6SCraig Shelley 	.close			= cp210x_close,
2924cc27bd6SCraig Shelley 	.break_ctl		= cp210x_break_ctl,
2934cc27bd6SCraig Shelley 	.set_termios		= cp210x_set_termios,
2946f923a01SKonstantin Shkolnyy 	.tx_empty		= cp210x_tx_empty,
2954387b3dbSBrant Merryman 	.throttle		= usb_serial_generic_throttle,
2964387b3dbSBrant Merryman 	.unthrottle		= usb_serial_generic_unthrottle,
2974cc27bd6SCraig Shelley 	.tiocmget		= cp210x_tiocmget,
2984cc27bd6SCraig Shelley 	.tiocmset		= cp210x_tiocmset,
299de9c7e9fSJohan Hovold 	.get_icount		= usb_serial_generic_get_icount,
300cf5276ceSMartyn Welch 	.attach			= cp210x_attach,
301cf5276ceSMartyn Welch 	.disconnect		= cp210x_disconnect,
302cf5276ceSMartyn Welch 	.release		= cp210x_release,
303e2ae67a3SKonstantin Shkolnyy 	.port_probe		= cp210x_port_probe,
304e2ae67a3SKonstantin Shkolnyy 	.port_remove		= cp210x_port_remove,
305a7207e98SJohan Hovold 	.dtr_rts		= cp210x_dtr_rts,
306a7207e98SJohan Hovold 	.process_read_urb	= cp210x_process_read_urb,
30703ee2515SGreg Kroah-Hartman };
30803ee2515SGreg Kroah-Hartman 
30908a4f6bcSAlan Stern static struct usb_serial_driver * const serial_drivers[] = {
31008a4f6bcSAlan Stern 	&cp210x_device, NULL
31108a4f6bcSAlan Stern };
31208a4f6bcSAlan Stern 
31303ee2515SGreg Kroah-Hartman /* Config request types */
31432445605SPreston Fick #define REQTYPE_HOST_TO_INTERFACE	0x41
31532445605SPreston Fick #define REQTYPE_INTERFACE_TO_HOST	0xc1
31632445605SPreston Fick #define REQTYPE_HOST_TO_DEVICE	0x40
31732445605SPreston Fick #define REQTYPE_DEVICE_TO_HOST	0xc0
31803ee2515SGreg Kroah-Hartman 
31993ef1f1fSCraig Shelley /* Config request codes */
32093ef1f1fSCraig Shelley #define CP210X_IFC_ENABLE	0x00
32193ef1f1fSCraig Shelley #define CP210X_SET_BAUDDIV	0x01
32293ef1f1fSCraig Shelley #define CP210X_GET_BAUDDIV	0x02
32393ef1f1fSCraig Shelley #define CP210X_SET_LINE_CTL	0x03
32493ef1f1fSCraig Shelley #define CP210X_GET_LINE_CTL	0x04
32593ef1f1fSCraig Shelley #define CP210X_SET_BREAK	0x05
32693ef1f1fSCraig Shelley #define CP210X_IMM_CHAR		0x06
32793ef1f1fSCraig Shelley #define CP210X_SET_MHS		0x07
32893ef1f1fSCraig Shelley #define CP210X_GET_MDMSTS	0x08
32993ef1f1fSCraig Shelley #define CP210X_SET_XON		0x09
33093ef1f1fSCraig Shelley #define CP210X_SET_XOFF		0x0A
33193ef1f1fSCraig Shelley #define CP210X_SET_EVENTMASK	0x0B
33293ef1f1fSCraig Shelley #define CP210X_GET_EVENTMASK	0x0C
33393ef1f1fSCraig Shelley #define CP210X_SET_CHAR		0x0D
33493ef1f1fSCraig Shelley #define CP210X_GET_CHARS	0x0E
33593ef1f1fSCraig Shelley #define CP210X_GET_PROPS	0x0F
33693ef1f1fSCraig Shelley #define CP210X_GET_COMM_STATUS	0x10
33793ef1f1fSCraig Shelley #define CP210X_RESET		0x11
33893ef1f1fSCraig Shelley #define CP210X_PURGE		0x12
33993ef1f1fSCraig Shelley #define CP210X_SET_FLOW		0x13
34093ef1f1fSCraig Shelley #define CP210X_GET_FLOW		0x14
34193ef1f1fSCraig Shelley #define CP210X_EMBED_EVENTS	0x15
34293ef1f1fSCraig Shelley #define CP210X_GET_EVENTSTATE	0x16
34393ef1f1fSCraig Shelley #define CP210X_SET_CHARS	0x19
3447f482fc8SPreston Fick #define CP210X_GET_BAUDRATE	0x1D
3457f482fc8SPreston Fick #define CP210X_SET_BAUDRATE	0x1E
346cf5276ceSMartyn Welch #define CP210X_VENDOR_SPECIFIC	0xFF
34703ee2515SGreg Kroah-Hartman 
34893ef1f1fSCraig Shelley /* CP210X_IFC_ENABLE */
34903ee2515SGreg Kroah-Hartman #define UART_ENABLE		0x0001
35003ee2515SGreg Kroah-Hartman #define UART_DISABLE		0x0000
35103ee2515SGreg Kroah-Hartman 
35293ef1f1fSCraig Shelley /* CP210X_(SET|GET)_BAUDDIV */
35303ee2515SGreg Kroah-Hartman #define BAUD_RATE_GEN_FREQ	0x384000
35403ee2515SGreg Kroah-Hartman 
35593ef1f1fSCraig Shelley /* CP210X_(SET|GET)_LINE_CTL */
35603ee2515SGreg Kroah-Hartman #define BITS_DATA_MASK		0X0f00
35703ee2515SGreg Kroah-Hartman #define BITS_DATA_5		0X0500
35803ee2515SGreg Kroah-Hartman #define BITS_DATA_6		0X0600
35903ee2515SGreg Kroah-Hartman #define BITS_DATA_7		0X0700
36003ee2515SGreg Kroah-Hartman #define BITS_DATA_8		0X0800
36103ee2515SGreg Kroah-Hartman #define BITS_DATA_9		0X0900
36203ee2515SGreg Kroah-Hartman 
36303ee2515SGreg Kroah-Hartman #define BITS_PARITY_MASK	0x00f0
36403ee2515SGreg Kroah-Hartman #define BITS_PARITY_NONE	0x0000
36503ee2515SGreg Kroah-Hartman #define BITS_PARITY_ODD		0x0010
36603ee2515SGreg Kroah-Hartman #define BITS_PARITY_EVEN	0x0020
36703ee2515SGreg Kroah-Hartman #define BITS_PARITY_MARK	0x0030
36803ee2515SGreg Kroah-Hartman #define BITS_PARITY_SPACE	0x0040
36903ee2515SGreg Kroah-Hartman 
37003ee2515SGreg Kroah-Hartman #define BITS_STOP_MASK		0x000f
37103ee2515SGreg Kroah-Hartman #define BITS_STOP_1		0x0000
37203ee2515SGreg Kroah-Hartman #define BITS_STOP_1_5		0x0001
37303ee2515SGreg Kroah-Hartman #define BITS_STOP_2		0x0002
37403ee2515SGreg Kroah-Hartman 
37593ef1f1fSCraig Shelley /* CP210X_SET_BREAK */
37672916791SCraig Shelley #define BREAK_ON		0x0001
37772916791SCraig Shelley #define BREAK_OFF		0x0000
37803ee2515SGreg Kroah-Hartman 
37993ef1f1fSCraig Shelley /* CP210X_(SET_MHS|GET_MDMSTS) */
38003ee2515SGreg Kroah-Hartman #define CONTROL_DTR		0x0001
38103ee2515SGreg Kroah-Hartman #define CONTROL_RTS		0x0002
38203ee2515SGreg Kroah-Hartman #define CONTROL_CTS		0x0010
38303ee2515SGreg Kroah-Hartman #define CONTROL_DSR		0x0020
38403ee2515SGreg Kroah-Hartman #define CONTROL_RING		0x0040
38503ee2515SGreg Kroah-Hartman #define CONTROL_DCD		0x0080
38603ee2515SGreg Kroah-Hartman #define CONTROL_WRITE_DTR	0x0100
38703ee2515SGreg Kroah-Hartman #define CONTROL_WRITE_RTS	0x0200
38803ee2515SGreg Kroah-Hartman 
3897748feffSWang Sheng Long /* CP210X_(GET|SET)_CHARS */
3907748feffSWang Sheng Long struct cp210x_special_chars {
3917748feffSWang Sheng Long 	u8	bEofChar;
3927748feffSWang Sheng Long 	u8	bErrorChar;
3937748feffSWang Sheng Long 	u8	bBreakChar;
3947748feffSWang Sheng Long 	u8	bEventChar;
3957748feffSWang Sheng Long 	u8	bXonChar;
3967748feffSWang Sheng Long 	u8	bXoffChar;
3977748feffSWang Sheng Long };
3987748feffSWang Sheng Long 
399cf5276ceSMartyn Welch /* CP210X_VENDOR_SPECIFIC values */
400c8acfe0aSKaroly Pados #define CP210X_READ_2NCONFIG	0x000E
401cf5276ceSMartyn Welch #define CP210X_READ_LATCH	0x00C2
402cf5276ceSMartyn Welch #define CP210X_GET_PARTNUM	0x370B
403cf5276ceSMartyn Welch #define CP210X_GET_PORTCONFIG	0x370C
404cf5276ceSMartyn Welch #define CP210X_GET_DEVICEMODE	0x3711
405cf5276ceSMartyn Welch #define CP210X_WRITE_LATCH	0x37E1
406cf5276ceSMartyn Welch 
407cf5276ceSMartyn Welch /* Part number definitions */
408cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2101	0x01
409cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2102	0x02
410cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2103	0x03
411cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2104	0x04
412cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2105	0x05
413cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2108	0x08
4146f0bcf72SKaroly Pados #define CP210X_PARTNUM_CP2102N_QFN28	0x20
4156f0bcf72SKaroly Pados #define CP210X_PARTNUM_CP2102N_QFN24	0x21
4166f0bcf72SKaroly Pados #define CP210X_PARTNUM_CP2102N_QFN20	0x22
4177eac35eaSSebastian Frei #define CP210X_PARTNUM_UNKNOWN	0xFF
418cf5276ceSMartyn Welch 
4196f923a01SKonstantin Shkolnyy /* CP210X_GET_COMM_STATUS returns these 0x13 bytes */
4206f923a01SKonstantin Shkolnyy struct cp210x_comm_status {
4216f923a01SKonstantin Shkolnyy 	__le32   ulErrors;
4226f923a01SKonstantin Shkolnyy 	__le32   ulHoldReasons;
4236f923a01SKonstantin Shkolnyy 	__le32   ulAmountInInQueue;
4246f923a01SKonstantin Shkolnyy 	__le32   ulAmountInOutQueue;
4256f923a01SKonstantin Shkolnyy 	u8       bEofReceived;
4266f923a01SKonstantin Shkolnyy 	u8       bWaitForImmediate;
4276f923a01SKonstantin Shkolnyy 	u8       bReserved;
4286f923a01SKonstantin Shkolnyy } __packed;
4296f923a01SKonstantin Shkolnyy 
43003ee2515SGreg Kroah-Hartman /*
431ebfb319bSKonstantin Shkolnyy  * CP210X_PURGE - 16 bits passed in wValue of USB request.
432ebfb319bSKonstantin Shkolnyy  * SiLabs app note AN571 gives a strange description of the 4 bits:
433ebfb319bSKonstantin Shkolnyy  * bit 0 or bit 2 clears the transmit queue and 1 or 3 receive.
434ebfb319bSKonstantin Shkolnyy  * writing 1 to all, however, purges cp2108 well enough to avoid the hang.
435ebfb319bSKonstantin Shkolnyy  */
436ebfb319bSKonstantin Shkolnyy #define PURGE_ALL		0x000f
437ebfb319bSKonstantin Shkolnyy 
438a7207e98SJohan Hovold /* CP210X_EMBED_EVENTS */
439a7207e98SJohan Hovold #define CP210X_ESCCHAR		0xec
440a7207e98SJohan Hovold 
441a7207e98SJohan Hovold #define CP210X_LSR_OVERRUN	BIT(1)
442a7207e98SJohan Hovold #define CP210X_LSR_PARITY	BIT(2)
443a7207e98SJohan Hovold #define CP210X_LSR_FRAME	BIT(3)
444a7207e98SJohan Hovold #define CP210X_LSR_BREAK	BIT(4)
445a7207e98SJohan Hovold 
446a7207e98SJohan Hovold 
4479034389cSKonstantin Shkolnyy /* CP210X_GET_FLOW/CP210X_SET_FLOW read/write these 0x10 bytes */
4489034389cSKonstantin Shkolnyy struct cp210x_flow_ctl {
4499034389cSKonstantin Shkolnyy 	__le32	ulControlHandshake;
4509034389cSKonstantin Shkolnyy 	__le32	ulFlowReplace;
4519034389cSKonstantin Shkolnyy 	__le32	ulXonLimit;
4529034389cSKonstantin Shkolnyy 	__le32	ulXoffLimit;
453ba84190eSJohan Hovold };
4549034389cSKonstantin Shkolnyy 
4559034389cSKonstantin Shkolnyy /* cp210x_flow_ctl::ulControlHandshake */
4569034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DTR_MASK		GENMASK(1, 0)
457568400b1SJohan Hovold #define CP210X_SERIAL_DTR_INACTIVE	(0 << 0)
458568400b1SJohan Hovold #define CP210X_SERIAL_DTR_ACTIVE	(1 << 0)
459568400b1SJohan Hovold #define CP210X_SERIAL_DTR_FLOW_CTL	(2 << 0)
4609034389cSKonstantin Shkolnyy #define CP210X_SERIAL_CTS_HANDSHAKE	BIT(3)
4619034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DSR_HANDSHAKE	BIT(4)
4629034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DCD_HANDSHAKE	BIT(5)
4639034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DSR_SENSITIVITY	BIT(6)
4649034389cSKonstantin Shkolnyy 
4659034389cSKonstantin Shkolnyy /* cp210x_flow_ctl::ulFlowReplace */
4669034389cSKonstantin Shkolnyy #define CP210X_SERIAL_AUTO_TRANSMIT	BIT(0)
4679034389cSKonstantin Shkolnyy #define CP210X_SERIAL_AUTO_RECEIVE	BIT(1)
4689034389cSKonstantin Shkolnyy #define CP210X_SERIAL_ERROR_CHAR	BIT(2)
4699034389cSKonstantin Shkolnyy #define CP210X_SERIAL_NULL_STRIPPING	BIT(3)
4709034389cSKonstantin Shkolnyy #define CP210X_SERIAL_BREAK_CHAR	BIT(4)
4719034389cSKonstantin Shkolnyy #define CP210X_SERIAL_RTS_MASK		GENMASK(7, 6)
472568400b1SJohan Hovold #define CP210X_SERIAL_RTS_INACTIVE	(0 << 6)
473568400b1SJohan Hovold #define CP210X_SERIAL_RTS_ACTIVE	(1 << 6)
474568400b1SJohan Hovold #define CP210X_SERIAL_RTS_FLOW_CTL	(2 << 6)
4759034389cSKonstantin Shkolnyy #define CP210X_SERIAL_XOFF_CONTINUE	BIT(31)
4769034389cSKonstantin Shkolnyy 
477cf5276ceSMartyn Welch /* CP210X_VENDOR_SPECIFIC, CP210X_GET_DEVICEMODE call reads these 0x2 bytes. */
478cf5276ceSMartyn Welch struct cp210x_pin_mode {
479cf5276ceSMartyn Welch 	u8	eci;
480cf5276ceSMartyn Welch 	u8	sci;
481ba84190eSJohan Hovold };
482cf5276ceSMartyn Welch 
483cf5276ceSMartyn Welch #define CP210X_PIN_MODE_MODEM		0
484cf5276ceSMartyn Welch #define CP210X_PIN_MODE_GPIO		BIT(0)
485cf5276ceSMartyn Welch 
486cf5276ceSMartyn Welch /*
48715fb84b7SIcenowy Zheng  * CP210X_VENDOR_SPECIFIC, CP210X_GET_PORTCONFIG call reads these 0xf bytes
48815fb84b7SIcenowy Zheng  * on a CP2105 chip. Structure needs padding due to unused/unspecified bytes.
489cf5276ceSMartyn Welch  */
49015fb84b7SIcenowy Zheng struct cp210x_dual_port_config {
491cf5276ceSMartyn Welch 	__le16	gpio_mode;
492cf5276ceSMartyn Welch 	u8	__pad0[2];
493cf5276ceSMartyn Welch 	__le16	reset_state;
494cf5276ceSMartyn Welch 	u8	__pad1[4];
495cf5276ceSMartyn Welch 	__le16	suspend_state;
496cf5276ceSMartyn Welch 	u8	sci_cfg;
497cf5276ceSMartyn Welch 	u8	eci_cfg;
498cf5276ceSMartyn Welch 	u8	device_cfg;
499cf5276ceSMartyn Welch } __packed;
500cf5276ceSMartyn Welch 
50115fb84b7SIcenowy Zheng /*
50215fb84b7SIcenowy Zheng  * CP210X_VENDOR_SPECIFIC, CP210X_GET_PORTCONFIG call reads these 0xd bytes
50315fb84b7SIcenowy Zheng  * on a CP2104 chip. Structure needs padding due to unused/unspecified bytes.
50415fb84b7SIcenowy Zheng  */
50515fb84b7SIcenowy Zheng struct cp210x_single_port_config {
50615fb84b7SIcenowy Zheng 	__le16	gpio_mode;
50715fb84b7SIcenowy Zheng 	u8	__pad0[2];
50815fb84b7SIcenowy Zheng 	__le16	reset_state;
50915fb84b7SIcenowy Zheng 	u8	__pad1[4];
51015fb84b7SIcenowy Zheng 	__le16	suspend_state;
51115fb84b7SIcenowy Zheng 	u8	device_cfg;
51215fb84b7SIcenowy Zheng } __packed;
51315fb84b7SIcenowy Zheng 
514cf5276ceSMartyn Welch /* GPIO modes */
515cf5276ceSMartyn Welch #define CP210X_SCI_GPIO_MODE_OFFSET	9
516cf5276ceSMartyn Welch #define CP210X_SCI_GPIO_MODE_MASK	GENMASK(11, 9)
517cf5276ceSMartyn Welch 
518cf5276ceSMartyn Welch #define CP210X_ECI_GPIO_MODE_OFFSET	2
519cf5276ceSMartyn Welch #define CP210X_ECI_GPIO_MODE_MASK	GENMASK(3, 2)
520cf5276ceSMartyn Welch 
52115fb84b7SIcenowy Zheng #define CP210X_GPIO_MODE_OFFSET		8
52215fb84b7SIcenowy Zheng #define CP210X_GPIO_MODE_MASK		GENMASK(11, 8)
52315fb84b7SIcenowy Zheng 
524cf5276ceSMartyn Welch /* CP2105 port configuration values */
525cf5276ceSMartyn Welch #define CP2105_GPIO0_TXLED_MODE		BIT(0)
526cf5276ceSMartyn Welch #define CP2105_GPIO1_RXLED_MODE		BIT(1)
527cf5276ceSMartyn Welch #define CP2105_GPIO1_RS485_MODE		BIT(2)
528cf5276ceSMartyn Welch 
52915fb84b7SIcenowy Zheng /* CP2104 port configuration values */
53015fb84b7SIcenowy Zheng #define CP2104_GPIO0_TXLED_MODE		BIT(0)
53115fb84b7SIcenowy Zheng #define CP2104_GPIO1_RXLED_MODE		BIT(1)
53215fb84b7SIcenowy Zheng #define CP2104_GPIO2_RS485_MODE		BIT(2)
53315fb84b7SIcenowy Zheng 
534*8051334eSPho Tran struct cp210x_quad_port_state {
535*8051334eSPho Tran 	__le16 gpio_mode_pb0;
536*8051334eSPho Tran 	__le16 gpio_mode_pb1;
537*8051334eSPho Tran 	__le16 gpio_mode_pb2;
538*8051334eSPho Tran 	__le16 gpio_mode_pb3;
539*8051334eSPho Tran 	__le16 gpio_mode_pb4;
540*8051334eSPho Tran 
541*8051334eSPho Tran 	__le16 gpio_lowpower_pb0;
542*8051334eSPho Tran 	__le16 gpio_lowpower_pb1;
543*8051334eSPho Tran 	__le16 gpio_lowpower_pb2;
544*8051334eSPho Tran 	__le16 gpio_lowpower_pb3;
545*8051334eSPho Tran 	__le16 gpio_lowpower_pb4;
546*8051334eSPho Tran 
547*8051334eSPho Tran 	__le16 gpio_latch_pb0;
548*8051334eSPho Tran 	__le16 gpio_latch_pb1;
549*8051334eSPho Tran 	__le16 gpio_latch_pb2;
550*8051334eSPho Tran 	__le16 gpio_latch_pb3;
551*8051334eSPho Tran 	__le16 gpio_latch_pb4;
552*8051334eSPho Tran };
553*8051334eSPho Tran 
554*8051334eSPho Tran /*
555*8051334eSPho Tran  * CP210X_VENDOR_SPECIFIC, CP210X_GET_PORTCONFIG call reads these 0x49 bytes
556*8051334eSPho Tran  * on a CP2108 chip.
557*8051334eSPho Tran  *
558*8051334eSPho Tran  * See https://www.silabs.com/documents/public/application-notes/an978-cp210x-usb-to-uart-api-specification.pdf
559*8051334eSPho Tran  */
560*8051334eSPho Tran struct cp210x_quad_port_config {
561*8051334eSPho Tran 	struct cp210x_quad_port_state reset_state;
562*8051334eSPho Tran 	struct cp210x_quad_port_state suspend_state;
563*8051334eSPho Tran 	u8 ipdelay_ifc[4];
564*8051334eSPho Tran 	u8 enhancedfxn_ifc[4];
565*8051334eSPho Tran 	u8 enhancedfxn_device;
566*8051334eSPho Tran 	u8 extclkfreq[4];
567*8051334eSPho Tran } __packed;
568*8051334eSPho Tran 
569*8051334eSPho Tran #define CP2108_EF_IFC_GPIO_TXLED		0x01
570*8051334eSPho Tran #define CP2108_EF_IFC_GPIO_RXLED		0x02
571*8051334eSPho Tran #define CP2108_EF_IFC_GPIO_RS485		0x04
572*8051334eSPho Tran #define CP2108_EF_IFC_GPIO_RS485_LOGIC		0x08
573*8051334eSPho Tran #define CP2108_EF_IFC_GPIO_CLOCK		0x10
574*8051334eSPho Tran #define CP2108_EF_IFC_DYNAMIC_SUSPEND		0x40
575*8051334eSPho Tran 
576c8acfe0aSKaroly Pados /* CP2102N configuration array indices */
577c8acfe0aSKaroly Pados #define CP210X_2NCONFIG_CONFIG_VERSION_IDX	2
578c8acfe0aSKaroly Pados #define CP210X_2NCONFIG_GPIO_MODE_IDX		581
579c8acfe0aSKaroly Pados #define CP210X_2NCONFIG_GPIO_RSTLATCH_IDX	587
580c8acfe0aSKaroly Pados #define CP210X_2NCONFIG_GPIO_CONTROL_IDX	600
581c8acfe0aSKaroly Pados 
582*8051334eSPho Tran /*
583*8051334eSPho Tran  * CP210X_VENDOR_SPECIFIC, CP210X_WRITE_LATCH call writes these 0x02 bytes
584*8051334eSPho Tran  * for CP2102N, CP2103, CP2104 and CP2105.
585*8051334eSPho Tran  */
586cf5276ceSMartyn Welch struct cp210x_gpio_write {
587cf5276ceSMartyn Welch 	u8	mask;
588cf5276ceSMartyn Welch 	u8	state;
589ba84190eSJohan Hovold };
590cf5276ceSMartyn Welch 
591cf5276ceSMartyn Welch /*
592*8051334eSPho Tran  * CP210X_VENDOR_SPECIFIC, CP210X_WRITE_LATCH call writes these 0x04 bytes
593*8051334eSPho Tran  * for CP2108.
594*8051334eSPho Tran  */
595*8051334eSPho Tran struct cp210x_gpio_write16 {
596*8051334eSPho Tran 	__le16	mask;
597*8051334eSPho Tran 	__le16	state;
598*8051334eSPho Tran };
599*8051334eSPho Tran 
600*8051334eSPho Tran /*
601cf5276ceSMartyn Welch  * Helper to get interface number when we only have struct usb_serial.
602cf5276ceSMartyn Welch  */
603cf5276ceSMartyn Welch static u8 cp210x_interface_num(struct usb_serial *serial)
604cf5276ceSMartyn Welch {
605cf5276ceSMartyn Welch 	struct usb_host_interface *cur_altsetting;
606cf5276ceSMartyn Welch 
607cf5276ceSMartyn Welch 	cur_altsetting = serial->interface->cur_altsetting;
608cf5276ceSMartyn Welch 
609cf5276ceSMartyn Welch 	return cur_altsetting->desc.bInterfaceNumber;
610cf5276ceSMartyn Welch }
611cf5276ceSMartyn Welch 
61203ee2515SGreg Kroah-Hartman /*
61319165b2bSKonstantin Shkolnyy  * Reads a variable-sized block of CP210X_ registers, identified by req.
61419165b2bSKonstantin Shkolnyy  * Returns data into buf in native USB byte order.
61503ee2515SGreg Kroah-Hartman  */
61619165b2bSKonstantin Shkolnyy static int cp210x_read_reg_block(struct usb_serial_port *port, u8 req,
61719165b2bSKonstantin Shkolnyy 		void *buf, int bufsize)
61803ee2515SGreg Kroah-Hartman {
61903ee2515SGreg Kroah-Hartman 	struct usb_serial *serial = port->serial;
620e2ae67a3SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
62119165b2bSKonstantin Shkolnyy 	void *dmabuf;
62219165b2bSKonstantin Shkolnyy 	int result;
62303ee2515SGreg Kroah-Hartman 
62419165b2bSKonstantin Shkolnyy 	dmabuf = kmalloc(bufsize, GFP_KERNEL);
625ed921771SJohan Hovold 	if (!dmabuf)
62603ee2515SGreg Kroah-Hartman 		return -ENOMEM;
62703ee2515SGreg Kroah-Hartman 
62803ee2515SGreg Kroah-Hartman 	result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
62919165b2bSKonstantin Shkolnyy 			req, REQTYPE_INTERFACE_TO_HOST, 0,
63019165b2bSKonstantin Shkolnyy 			port_priv->bInterfaceNumber, dmabuf, bufsize,
63119165b2bSKonstantin Shkolnyy 			USB_CTRL_SET_TIMEOUT);
63219165b2bSKonstantin Shkolnyy 	if (result == bufsize) {
63319165b2bSKonstantin Shkolnyy 		memcpy(buf, dmabuf, bufsize);
63419165b2bSKonstantin Shkolnyy 		result = 0;
63519165b2bSKonstantin Shkolnyy 	} else {
63619165b2bSKonstantin Shkolnyy 		dev_err(&port->dev, "failed get req 0x%x size %d status: %d\n",
63719165b2bSKonstantin Shkolnyy 				req, bufsize, result);
63819165b2bSKonstantin Shkolnyy 		if (result >= 0)
6390407f1ceSJohan Hovold 			result = -EIO;
64019165b2bSKonstantin Shkolnyy 	}
64119165b2bSKonstantin Shkolnyy 
64219165b2bSKonstantin Shkolnyy 	kfree(dmabuf);
64319165b2bSKonstantin Shkolnyy 
6442479e2a9SJohan Hovold 	return result;
64503ee2515SGreg Kroah-Hartman }
64603ee2515SGreg Kroah-Hartman 
64719165b2bSKonstantin Shkolnyy /*
648fe1b07e9SKonstantin Shkolnyy  * Reads any 8-bit CP210X_ register identified by req.
649fe1b07e9SKonstantin Shkolnyy  */
650fe1b07e9SKonstantin Shkolnyy static int cp210x_read_u8_reg(struct usb_serial_port *port, u8 req, u8 *val)
651fe1b07e9SKonstantin Shkolnyy {
652fe1b07e9SKonstantin Shkolnyy 	return cp210x_read_reg_block(port, req, val, sizeof(*val));
653fe1b07e9SKonstantin Shkolnyy }
654fe1b07e9SKonstantin Shkolnyy 
655fe1b07e9SKonstantin Shkolnyy /*
656cf5276ceSMartyn Welch  * Reads a variable-sized vendor block of CP210X_ registers, identified by val.
657cf5276ceSMartyn Welch  * Returns data into buf in native USB byte order.
658cf5276ceSMartyn Welch  */
659cf5276ceSMartyn Welch static int cp210x_read_vendor_block(struct usb_serial *serial, u8 type, u16 val,
660cf5276ceSMartyn Welch 				    void *buf, int bufsize)
661cf5276ceSMartyn Welch {
662cf5276ceSMartyn Welch 	void *dmabuf;
663cf5276ceSMartyn Welch 	int result;
664cf5276ceSMartyn Welch 
665cf5276ceSMartyn Welch 	dmabuf = kmalloc(bufsize, GFP_KERNEL);
666cf5276ceSMartyn Welch 	if (!dmabuf)
667cf5276ceSMartyn Welch 		return -ENOMEM;
668cf5276ceSMartyn Welch 
669cf5276ceSMartyn Welch 	result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
670cf5276ceSMartyn Welch 				 CP210X_VENDOR_SPECIFIC, type, val,
671cf5276ceSMartyn Welch 				 cp210x_interface_num(serial), dmabuf, bufsize,
672cf5276ceSMartyn Welch 				 USB_CTRL_GET_TIMEOUT);
673cf5276ceSMartyn Welch 	if (result == bufsize) {
674cf5276ceSMartyn Welch 		memcpy(buf, dmabuf, bufsize);
675cf5276ceSMartyn Welch 		result = 0;
676cf5276ceSMartyn Welch 	} else {
677cf5276ceSMartyn Welch 		dev_err(&serial->interface->dev,
678cf5276ceSMartyn Welch 			"failed to get vendor val 0x%04x size %d: %d\n", val,
679cf5276ceSMartyn Welch 			bufsize, result);
680cf5276ceSMartyn Welch 		if (result >= 0)
681cf5276ceSMartyn Welch 			result = -EIO;
682cf5276ceSMartyn Welch 	}
683cf5276ceSMartyn Welch 
684cf5276ceSMartyn Welch 	kfree(dmabuf);
685cf5276ceSMartyn Welch 
686cf5276ceSMartyn Welch 	return result;
687cf5276ceSMartyn Welch }
688cf5276ceSMartyn Welch 
689cf5276ceSMartyn Welch /*
69019165b2bSKonstantin Shkolnyy  * Writes any 16-bit CP210X_ register (req) whose value is passed
69119165b2bSKonstantin Shkolnyy  * entirely in the wValue field of the USB request.
69219165b2bSKonstantin Shkolnyy  */
69319165b2bSKonstantin Shkolnyy static int cp210x_write_u16_reg(struct usb_serial_port *port, u8 req, u16 val)
69403ee2515SGreg Kroah-Hartman {
69503ee2515SGreg Kroah-Hartman 	struct usb_serial *serial = port->serial;
696e2ae67a3SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
69719165b2bSKonstantin Shkolnyy 	int result;
69803ee2515SGreg Kroah-Hartman 
69919165b2bSKonstantin Shkolnyy 	result = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
70019165b2bSKonstantin Shkolnyy 			req, REQTYPE_HOST_TO_INTERFACE, val,
701e2ae67a3SKonstantin Shkolnyy 			port_priv->bInterfaceNumber, NULL, 0,
7022d5733fcSYuri Matylitski 			USB_CTRL_SET_TIMEOUT);
70319165b2bSKonstantin Shkolnyy 	if (result < 0) {
70419165b2bSKonstantin Shkolnyy 		dev_err(&port->dev, "failed set request 0x%x status: %d\n",
70519165b2bSKonstantin Shkolnyy 				req, result);
70603ee2515SGreg Kroah-Hartman 	}
70703ee2515SGreg Kroah-Hartman 
7082479e2a9SJohan Hovold 	return result;
70903ee2515SGreg Kroah-Hartman }
71003ee2515SGreg Kroah-Hartman 
71103ee2515SGreg Kroah-Hartman /*
712fe1b07e9SKonstantin Shkolnyy  * Writes a variable-sized block of CP210X_ registers, identified by req.
713fe1b07e9SKonstantin Shkolnyy  * Data in buf must be in native USB byte order.
714fe1b07e9SKonstantin Shkolnyy  */
715fe1b07e9SKonstantin Shkolnyy static int cp210x_write_reg_block(struct usb_serial_port *port, u8 req,
716fe1b07e9SKonstantin Shkolnyy 		void *buf, int bufsize)
717fe1b07e9SKonstantin Shkolnyy {
718fe1b07e9SKonstantin Shkolnyy 	struct usb_serial *serial = port->serial;
719fe1b07e9SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
720fe1b07e9SKonstantin Shkolnyy 	void *dmabuf;
721fe1b07e9SKonstantin Shkolnyy 	int result;
722fe1b07e9SKonstantin Shkolnyy 
723d6c4dc3bSMuhammad Falak R Wani 	dmabuf = kmemdup(buf, bufsize, GFP_KERNEL);
724fe1b07e9SKonstantin Shkolnyy 	if (!dmabuf)
725fe1b07e9SKonstantin Shkolnyy 		return -ENOMEM;
726fe1b07e9SKonstantin Shkolnyy 
727fe1b07e9SKonstantin Shkolnyy 	result = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
728fe1b07e9SKonstantin Shkolnyy 			req, REQTYPE_HOST_TO_INTERFACE, 0,
729fe1b07e9SKonstantin Shkolnyy 			port_priv->bInterfaceNumber, dmabuf, bufsize,
730fe1b07e9SKonstantin Shkolnyy 			USB_CTRL_SET_TIMEOUT);
731fe1b07e9SKonstantin Shkolnyy 
732fe1b07e9SKonstantin Shkolnyy 	kfree(dmabuf);
733fe1b07e9SKonstantin Shkolnyy 
734dc5338fcSJohan Hovold 	if (result < 0) {
735fe1b07e9SKonstantin Shkolnyy 		dev_err(&port->dev, "failed set req 0x%x size %d status: %d\n",
736fe1b07e9SKonstantin Shkolnyy 				req, bufsize, result);
737dc5338fcSJohan Hovold 		return result;
738fe1b07e9SKonstantin Shkolnyy 	}
739fe1b07e9SKonstantin Shkolnyy 
740dc5338fcSJohan Hovold 	return 0;
74103ee2515SGreg Kroah-Hartman }
74203ee2515SGreg Kroah-Hartman 
74303ee2515SGreg Kroah-Hartman /*
744fe1b07e9SKonstantin Shkolnyy  * Writes any 32-bit CP210X_ register identified by req.
74503ee2515SGreg Kroah-Hartman  */
746fe1b07e9SKonstantin Shkolnyy static int cp210x_write_u32_reg(struct usb_serial_port *port, u8 req, u32 val)
74703ee2515SGreg Kroah-Hartman {
748fe1b07e9SKonstantin Shkolnyy 	__le32 le32_val;
749fe1b07e9SKonstantin Shkolnyy 
750fe1b07e9SKonstantin Shkolnyy 	le32_val = cpu_to_le32(val);
751fe1b07e9SKonstantin Shkolnyy 
752fe1b07e9SKonstantin Shkolnyy 	return cp210x_write_reg_block(port, req, &le32_val, sizeof(le32_val));
75303ee2515SGreg Kroah-Hartman }
75403ee2515SGreg Kroah-Hartman 
755cf5276ceSMartyn Welch #ifdef CONFIG_GPIOLIB
756cf5276ceSMartyn Welch /*
757cf5276ceSMartyn Welch  * Writes a variable-sized vendor block of CP210X_ registers, identified by val.
758cf5276ceSMartyn Welch  * Data in buf must be in native USB byte order.
759cf5276ceSMartyn Welch  */
760cf5276ceSMartyn Welch static int cp210x_write_vendor_block(struct usb_serial *serial, u8 type,
761cf5276ceSMartyn Welch 				     u16 val, void *buf, int bufsize)
762cf5276ceSMartyn Welch {
763cf5276ceSMartyn Welch 	void *dmabuf;
764cf5276ceSMartyn Welch 	int result;
765cf5276ceSMartyn Welch 
766cf5276ceSMartyn Welch 	dmabuf = kmemdup(buf, bufsize, GFP_KERNEL);
767cf5276ceSMartyn Welch 	if (!dmabuf)
768cf5276ceSMartyn Welch 		return -ENOMEM;
769cf5276ceSMartyn Welch 
770cf5276ceSMartyn Welch 	result = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
771cf5276ceSMartyn Welch 				 CP210X_VENDOR_SPECIFIC, type, val,
772cf5276ceSMartyn Welch 				 cp210x_interface_num(serial), dmabuf, bufsize,
773cf5276ceSMartyn Welch 				 USB_CTRL_SET_TIMEOUT);
774cf5276ceSMartyn Welch 
775cf5276ceSMartyn Welch 	kfree(dmabuf);
776cf5276ceSMartyn Welch 
777dc5338fcSJohan Hovold 	if (result < 0) {
778cf5276ceSMartyn Welch 		dev_err(&serial->interface->dev,
779cf5276ceSMartyn Welch 			"failed to set vendor val 0x%04x size %d: %d\n", val,
780cf5276ceSMartyn Welch 			bufsize, result);
781dc5338fcSJohan Hovold 		return result;
782cf5276ceSMartyn Welch 	}
783cf5276ceSMartyn Welch 
784dc5338fcSJohan Hovold 	return 0;
785cf5276ceSMartyn Welch }
786cf5276ceSMartyn Welch #endif
787cf5276ceSMartyn Welch 
788a509a7e4SAlan Cox static int cp210x_open(struct tty_struct *tty, struct usb_serial_port *port)
78903ee2515SGreg Kroah-Hartman {
790a7207e98SJohan Hovold 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
79103ee2515SGreg Kroah-Hartman 	int result;
79203ee2515SGreg Kroah-Hartman 
79319165b2bSKonstantin Shkolnyy 	result = cp210x_write_u16_reg(port, CP210X_IFC_ENABLE, UART_ENABLE);
7942479e2a9SJohan Hovold 	if (result) {
7952479e2a9SJohan Hovold 		dev_err(&port->dev, "%s - Unable to enable UART\n", __func__);
7962479e2a9SJohan Hovold 		return result;
79703ee2515SGreg Kroah-Hartman 	}
79803ee2515SGreg Kroah-Hartman 
79946827bdaSJohan Hovold 	if (tty)
80046827bdaSJohan Hovold 		cp210x_set_termios(tty, port, NULL);
801a7207e98SJohan Hovold 
802bcbb9d81SJohan Hovold 	result = usb_serial_generic_open(tty, port);
803bcbb9d81SJohan Hovold 	if (result)
804bcbb9d81SJohan Hovold 		goto err_disable;
805bcbb9d81SJohan Hovold 
806bcbb9d81SJohan Hovold 	return 0;
807bcbb9d81SJohan Hovold 
808bcbb9d81SJohan Hovold err_disable:
809bcbb9d81SJohan Hovold 	cp210x_write_u16_reg(port, CP210X_IFC_ENABLE, UART_DISABLE);
810a7207e98SJohan Hovold 	port_priv->event_mode = false;
811bcbb9d81SJohan Hovold 
812bcbb9d81SJohan Hovold 	return result;
81303ee2515SGreg Kroah-Hartman }
81403ee2515SGreg Kroah-Hartman 
8154cc27bd6SCraig Shelley static void cp210x_close(struct usb_serial_port *port)
81603ee2515SGreg Kroah-Hartman {
817a7207e98SJohan Hovold 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
818a7207e98SJohan Hovold 
819f26788daSJohan Hovold 	usb_serial_generic_close(port);
820ebfb319bSKonstantin Shkolnyy 
821ebfb319bSKonstantin Shkolnyy 	/* Clear both queues; cp2108 needs this to avoid an occasional hang */
82219165b2bSKonstantin Shkolnyy 	cp210x_write_u16_reg(port, CP210X_PURGE, PURGE_ALL);
823ebfb319bSKonstantin Shkolnyy 
82419165b2bSKonstantin Shkolnyy 	cp210x_write_u16_reg(port, CP210X_IFC_ENABLE, UART_DISABLE);
825a7207e98SJohan Hovold 
826a7207e98SJohan Hovold 	/* Disabling the interface disables event-insertion mode. */
827a7207e98SJohan Hovold 	port_priv->event_mode = false;
828a7207e98SJohan Hovold }
829a7207e98SJohan Hovold 
830a7207e98SJohan Hovold static void cp210x_process_lsr(struct usb_serial_port *port, unsigned char lsr, char *flag)
831a7207e98SJohan Hovold {
832a7207e98SJohan Hovold 	if (lsr & CP210X_LSR_BREAK) {
833a7207e98SJohan Hovold 		port->icount.brk++;
834a7207e98SJohan Hovold 		*flag = TTY_BREAK;
835a7207e98SJohan Hovold 	} else if (lsr & CP210X_LSR_PARITY) {
836a7207e98SJohan Hovold 		port->icount.parity++;
837a7207e98SJohan Hovold 		*flag = TTY_PARITY;
838a7207e98SJohan Hovold 	} else if (lsr & CP210X_LSR_FRAME) {
839a7207e98SJohan Hovold 		port->icount.frame++;
840a7207e98SJohan Hovold 		*flag = TTY_FRAME;
841a7207e98SJohan Hovold 	}
842a7207e98SJohan Hovold 
843a7207e98SJohan Hovold 	if (lsr & CP210X_LSR_OVERRUN) {
844a7207e98SJohan Hovold 		port->icount.overrun++;
845a7207e98SJohan Hovold 		tty_insert_flip_char(&port->port, 0, TTY_OVERRUN);
846a7207e98SJohan Hovold 	}
847a7207e98SJohan Hovold }
848a7207e98SJohan Hovold 
849a7207e98SJohan Hovold static bool cp210x_process_char(struct usb_serial_port *port, unsigned char *ch, char *flag)
850a7207e98SJohan Hovold {
851a7207e98SJohan Hovold 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
852a7207e98SJohan Hovold 
853a7207e98SJohan Hovold 	switch (port_priv->event_state) {
854a7207e98SJohan Hovold 	case ES_DATA:
855a7207e98SJohan Hovold 		if (*ch == CP210X_ESCCHAR) {
856a7207e98SJohan Hovold 			port_priv->event_state = ES_ESCAPE;
857a7207e98SJohan Hovold 			break;
858a7207e98SJohan Hovold 		}
859a7207e98SJohan Hovold 		return false;
860a7207e98SJohan Hovold 	case ES_ESCAPE:
861a7207e98SJohan Hovold 		switch (*ch) {
862a7207e98SJohan Hovold 		case 0:
863a7207e98SJohan Hovold 			dev_dbg(&port->dev, "%s - escape char\n", __func__);
864a7207e98SJohan Hovold 			*ch = CP210X_ESCCHAR;
865a7207e98SJohan Hovold 			port_priv->event_state = ES_DATA;
866a7207e98SJohan Hovold 			return false;
867a7207e98SJohan Hovold 		case 1:
868a7207e98SJohan Hovold 			port_priv->event_state = ES_LSR_DATA_0;
869a7207e98SJohan Hovold 			break;
870a7207e98SJohan Hovold 		case 2:
871a7207e98SJohan Hovold 			port_priv->event_state = ES_LSR;
872a7207e98SJohan Hovold 			break;
873a7207e98SJohan Hovold 		case 3:
874a7207e98SJohan Hovold 			port_priv->event_state = ES_MSR;
875a7207e98SJohan Hovold 			break;
876a7207e98SJohan Hovold 		default:
877a7207e98SJohan Hovold 			dev_err(&port->dev, "malformed event 0x%02x\n", *ch);
878a7207e98SJohan Hovold 			port_priv->event_state = ES_DATA;
879a7207e98SJohan Hovold 			break;
880a7207e98SJohan Hovold 		}
881a7207e98SJohan Hovold 		break;
882a7207e98SJohan Hovold 	case ES_LSR_DATA_0:
883a7207e98SJohan Hovold 		port_priv->lsr = *ch;
884a7207e98SJohan Hovold 		port_priv->event_state = ES_LSR_DATA_1;
885a7207e98SJohan Hovold 		break;
886a7207e98SJohan Hovold 	case ES_LSR_DATA_1:
887a7207e98SJohan Hovold 		dev_dbg(&port->dev, "%s - lsr = 0x%02x, data = 0x%02x\n",
888a7207e98SJohan Hovold 				__func__, port_priv->lsr, *ch);
889a7207e98SJohan Hovold 		cp210x_process_lsr(port, port_priv->lsr, flag);
890a7207e98SJohan Hovold 		port_priv->event_state = ES_DATA;
891a7207e98SJohan Hovold 		return false;
892a7207e98SJohan Hovold 	case ES_LSR:
893a7207e98SJohan Hovold 		dev_dbg(&port->dev, "%s - lsr = 0x%02x\n", __func__, *ch);
894a7207e98SJohan Hovold 		port_priv->lsr = *ch;
895a7207e98SJohan Hovold 		cp210x_process_lsr(port, port_priv->lsr, flag);
896a7207e98SJohan Hovold 		port_priv->event_state = ES_DATA;
897a7207e98SJohan Hovold 		break;
898a7207e98SJohan Hovold 	case ES_MSR:
899a7207e98SJohan Hovold 		dev_dbg(&port->dev, "%s - msr = 0x%02x\n", __func__, *ch);
900a7207e98SJohan Hovold 		/* unimplemented */
901a7207e98SJohan Hovold 		port_priv->event_state = ES_DATA;
902a7207e98SJohan Hovold 		break;
903a7207e98SJohan Hovold 	}
904a7207e98SJohan Hovold 
905a7207e98SJohan Hovold 	return true;
906a7207e98SJohan Hovold }
907a7207e98SJohan Hovold 
908a7207e98SJohan Hovold static void cp210x_process_read_urb(struct urb *urb)
909a7207e98SJohan Hovold {
910a7207e98SJohan Hovold 	struct usb_serial_port *port = urb->context;
911a7207e98SJohan Hovold 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
912a7207e98SJohan Hovold 	unsigned char *ch = urb->transfer_buffer;
913a7207e98SJohan Hovold 	char flag;
914a7207e98SJohan Hovold 	int i;
915a7207e98SJohan Hovold 
916a7207e98SJohan Hovold 	if (!urb->actual_length)
917a7207e98SJohan Hovold 		return;
918a7207e98SJohan Hovold 
919a7207e98SJohan Hovold 	if (port_priv->event_mode) {
920a7207e98SJohan Hovold 		for (i = 0; i < urb->actual_length; i++, ch++) {
921a7207e98SJohan Hovold 			flag = TTY_NORMAL;
922a7207e98SJohan Hovold 
923a7207e98SJohan Hovold 			if (cp210x_process_char(port, ch, &flag))
924a7207e98SJohan Hovold 				continue;
925a7207e98SJohan Hovold 
926a7207e98SJohan Hovold 			tty_insert_flip_char(&port->port, *ch, flag);
927a7207e98SJohan Hovold 		}
928a7207e98SJohan Hovold 	} else {
929a7207e98SJohan Hovold 		tty_insert_flip_string(&port->port, ch, urb->actual_length);
930a7207e98SJohan Hovold 	}
931a7207e98SJohan Hovold 	tty_flip_buffer_push(&port->port);
93203ee2515SGreg Kroah-Hartman }
93303ee2515SGreg Kroah-Hartman 
93403ee2515SGreg Kroah-Hartman /*
9356f923a01SKonstantin Shkolnyy  * Read how many bytes are waiting in the TX queue.
9366f923a01SKonstantin Shkolnyy  */
9376f923a01SKonstantin Shkolnyy static int cp210x_get_tx_queue_byte_count(struct usb_serial_port *port,
9386f923a01SKonstantin Shkolnyy 		u32 *count)
9396f923a01SKonstantin Shkolnyy {
9406f923a01SKonstantin Shkolnyy 	struct usb_serial *serial = port->serial;
9416f923a01SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
9426f923a01SKonstantin Shkolnyy 	struct cp210x_comm_status *sts;
9436f923a01SKonstantin Shkolnyy 	int result;
9446f923a01SKonstantin Shkolnyy 
9456f923a01SKonstantin Shkolnyy 	sts = kmalloc(sizeof(*sts), GFP_KERNEL);
9466f923a01SKonstantin Shkolnyy 	if (!sts)
9476f923a01SKonstantin Shkolnyy 		return -ENOMEM;
9486f923a01SKonstantin Shkolnyy 
9496f923a01SKonstantin Shkolnyy 	result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
9506f923a01SKonstantin Shkolnyy 			CP210X_GET_COMM_STATUS, REQTYPE_INTERFACE_TO_HOST,
9516f923a01SKonstantin Shkolnyy 			0, port_priv->bInterfaceNumber, sts, sizeof(*sts),
9526f923a01SKonstantin Shkolnyy 			USB_CTRL_GET_TIMEOUT);
9536f923a01SKonstantin Shkolnyy 	if (result == sizeof(*sts)) {
9546f923a01SKonstantin Shkolnyy 		*count = le32_to_cpu(sts->ulAmountInOutQueue);
9556f923a01SKonstantin Shkolnyy 		result = 0;
9566f923a01SKonstantin Shkolnyy 	} else {
9576f923a01SKonstantin Shkolnyy 		dev_err(&port->dev, "failed to get comm status: %d\n", result);
9586f923a01SKonstantin Shkolnyy 		if (result >= 0)
9590407f1ceSJohan Hovold 			result = -EIO;
9606f923a01SKonstantin Shkolnyy 	}
9616f923a01SKonstantin Shkolnyy 
9626f923a01SKonstantin Shkolnyy 	kfree(sts);
9636f923a01SKonstantin Shkolnyy 
9646f923a01SKonstantin Shkolnyy 	return result;
9656f923a01SKonstantin Shkolnyy }
9666f923a01SKonstantin Shkolnyy 
9676f923a01SKonstantin Shkolnyy static bool cp210x_tx_empty(struct usb_serial_port *port)
9686f923a01SKonstantin Shkolnyy {
9696f923a01SKonstantin Shkolnyy 	int err;
9706f923a01SKonstantin Shkolnyy 	u32 count;
9716f923a01SKonstantin Shkolnyy 
9726f923a01SKonstantin Shkolnyy 	err = cp210x_get_tx_queue_byte_count(port, &count);
9736f923a01SKonstantin Shkolnyy 	if (err)
9746f923a01SKonstantin Shkolnyy 		return true;
9756f923a01SKonstantin Shkolnyy 
9766f923a01SKonstantin Shkolnyy 	return !count;
9776f923a01SKonstantin Shkolnyy }
9786f923a01SKonstantin Shkolnyy 
97995fd4f47SJohan Hovold struct cp210x_rate {
98095fd4f47SJohan Hovold 	speed_t rate;
98195fd4f47SJohan Hovold 	speed_t high;
98295fd4f47SJohan Hovold };
98395fd4f47SJohan Hovold 
98495fd4f47SJohan Hovold static const struct cp210x_rate cp210x_an205_table1[] = {
98595fd4f47SJohan Hovold 	{ 300, 300 },
98695fd4f47SJohan Hovold 	{ 600, 600 },
98795fd4f47SJohan Hovold 	{ 1200, 1200 },
98895fd4f47SJohan Hovold 	{ 1800, 1800 },
98995fd4f47SJohan Hovold 	{ 2400, 2400 },
99095fd4f47SJohan Hovold 	{ 4000, 4000 },
99195fd4f47SJohan Hovold 	{ 4800, 4803 },
99295fd4f47SJohan Hovold 	{ 7200, 7207 },
99395fd4f47SJohan Hovold 	{ 9600, 9612 },
99495fd4f47SJohan Hovold 	{ 14400, 14428 },
99595fd4f47SJohan Hovold 	{ 16000, 16062 },
99695fd4f47SJohan Hovold 	{ 19200, 19250 },
99795fd4f47SJohan Hovold 	{ 28800, 28912 },
99895fd4f47SJohan Hovold 	{ 38400, 38601 },
99995fd4f47SJohan Hovold 	{ 51200, 51558 },
100095fd4f47SJohan Hovold 	{ 56000, 56280 },
100195fd4f47SJohan Hovold 	{ 57600, 58053 },
100295fd4f47SJohan Hovold 	{ 64000, 64111 },
100395fd4f47SJohan Hovold 	{ 76800, 77608 },
100495fd4f47SJohan Hovold 	{ 115200, 117028 },
100595fd4f47SJohan Hovold 	{ 128000, 129347 },
100695fd4f47SJohan Hovold 	{ 153600, 156868 },
100795fd4f47SJohan Hovold 	{ 230400, 237832 },
100895fd4f47SJohan Hovold 	{ 250000, 254234 },
100995fd4f47SJohan Hovold 	{ 256000, 273066 },
101095fd4f47SJohan Hovold 	{ 460800, 491520 },
101195fd4f47SJohan Hovold 	{ 500000, 567138 },
101295fd4f47SJohan Hovold 	{ 576000, 670254 },
101395fd4f47SJohan Hovold 	{ 921600, UINT_MAX }
101495fd4f47SJohan Hovold };
101595fd4f47SJohan Hovold 
101695fd4f47SJohan Hovold /*
101795fd4f47SJohan Hovold  * Quantises the baud rate as per AN205 Table 1
101895fd4f47SJohan Hovold  */
101995fd4f47SJohan Hovold static speed_t cp210x_get_an205_rate(speed_t baud)
102095fd4f47SJohan Hovold {
102195fd4f47SJohan Hovold 	int i;
102295fd4f47SJohan Hovold 
102395fd4f47SJohan Hovold 	for (i = 0; i < ARRAY_SIZE(cp210x_an205_table1); ++i) {
102495fd4f47SJohan Hovold 		if (baud <= cp210x_an205_table1[i].high)
102595fd4f47SJohan Hovold 			break;
102695fd4f47SJohan Hovold 	}
102795fd4f47SJohan Hovold 
102895fd4f47SJohan Hovold 	return cp210x_an205_table1[i].rate;
102995fd4f47SJohan Hovold }
103095fd4f47SJohan Hovold 
103185bc2d91SJohanna Abrahamsson static speed_t cp210x_get_actual_rate(speed_t baud)
10327aecd7fcSJohan Hovold {
10337aecd7fcSJohan Hovold 	unsigned int prescale = 1;
10347aecd7fcSJohan Hovold 	unsigned int div;
10357aecd7fcSJohan Hovold 
10367aecd7fcSJohan Hovold 	if (baud <= 365)
10377aecd7fcSJohan Hovold 		prescale = 4;
10387aecd7fcSJohan Hovold 
10397aecd7fcSJohan Hovold 	div = DIV_ROUND_CLOSEST(48000000, 2 * prescale * baud);
10407aecd7fcSJohan Hovold 	baud = 48000000 / (2 * prescale * div);
10417aecd7fcSJohan Hovold 
10427aecd7fcSJohan Hovold 	return baud;
10437aecd7fcSJohan Hovold }
10447aecd7fcSJohan Hovold 
1045e5990874SJohan Hovold /*
1046e5990874SJohan Hovold  * CP2101 supports the following baud rates:
1047e5990874SJohan Hovold  *
1048e5990874SJohan Hovold  *	300, 600, 1200, 1800, 2400, 4800, 7200, 9600, 14400, 19200, 28800,
1049e5990874SJohan Hovold  *	38400, 56000, 57600, 115200, 128000, 230400, 460800, 921600
1050e5990874SJohan Hovold  *
1051e5990874SJohan Hovold  * CP2102 and CP2103 support the following additional rates:
1052e5990874SJohan Hovold  *
1053e5990874SJohan Hovold  *	4000, 16000, 51200, 64000, 76800, 153600, 250000, 256000, 500000,
1054e5990874SJohan Hovold  *	576000
1055e5990874SJohan Hovold  *
1056e5990874SJohan Hovold  * The device will map a requested rate to a supported one, but the result
1057e5990874SJohan Hovold  * of requests for rates greater than 1053257 is undefined (see AN205).
1058e5990874SJohan Hovold  *
1059e5990874SJohan Hovold  * CP2104, CP2105 and CP2110 support most rates up to 2M, 921k and 1M baud,
1060e5990874SJohan Hovold  * respectively, with an error less than 1%. The actual rates are determined
1061e5990874SJohan Hovold  * by
1062e5990874SJohan Hovold  *
1063e5990874SJohan Hovold  *	div = round(freq / (2 x prescale x request))
1064e5990874SJohan Hovold  *	actual = freq / (2 x prescale x div)
1065e5990874SJohan Hovold  *
1066e5990874SJohan Hovold  * For CP2104 and CP2105 freq is 48Mhz and prescale is 4 for request <= 365bps
1067e5990874SJohan Hovold  * or 1 otherwise.
1068e5990874SJohan Hovold  * For CP2110 freq is 24Mhz and prescale is 4 for request <= 300bps or 1
1069e5990874SJohan Hovold  * otherwise.
1070e5990874SJohan Hovold  */
1071e5990874SJohan Hovold static void cp210x_change_speed(struct tty_struct *tty,
1072e5990874SJohan Hovold 		struct usb_serial_port *port, struct ktermios *old_termios)
1073e5990874SJohan Hovold {
10746f0bcf72SKaroly Pados 	struct usb_serial *serial = port->serial;
10756f0bcf72SKaroly Pados 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1076e5990874SJohan Hovold 	u32 baud;
1077e5990874SJohan Hovold 
10786f0bcf72SKaroly Pados 	/*
10797aecd7fcSJohan Hovold 	 * This maps the requested rate to the actual rate, a valid rate on
10807aecd7fcSJohan Hovold 	 * cp2102 or cp2103, or to an arbitrary rate in [1M, max_speed].
1081e5990874SJohan Hovold 	 *
1082e5990874SJohan Hovold 	 * NOTE: B0 is not implemented.
1083e5990874SJohan Hovold 	 */
108485bc2d91SJohanna Abrahamsson 	baud = clamp(tty->termios.c_ospeed, priv->min_speed, priv->max_speed);
108585bc2d91SJohanna Abrahamsson 
10867aecd7fcSJohan Hovold 	if (priv->use_actual_rate)
108785bc2d91SJohanna Abrahamsson 		baud = cp210x_get_actual_rate(baud);
10887aecd7fcSJohan Hovold 	else if (baud < 1000000)
108995fd4f47SJohan Hovold 		baud = cp210x_get_an205_rate(baud);
1090e5990874SJohan Hovold 
1091660f3b14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "%s - setting baud rate to %u\n", __func__, baud);
1092fe1b07e9SKonstantin Shkolnyy 	if (cp210x_write_u32_reg(port, CP210X_SET_BAUDRATE, baud)) {
1093e5990874SJohan Hovold 		dev_warn(&port->dev, "failed to set baud rate to %u\n", baud);
1094e5990874SJohan Hovold 		if (old_termios)
1095e5990874SJohan Hovold 			baud = old_termios->c_ospeed;
1096e5990874SJohan Hovold 		else
1097e5990874SJohan Hovold 			baud = 9600;
1098e5990874SJohan Hovold 	}
1099e5990874SJohan Hovold 
1100e5990874SJohan Hovold 	tty_encode_baud_rate(tty, baud, baud);
1101e5990874SJohan Hovold }
1102e5990874SJohan Hovold 
1103a7207e98SJohan Hovold static void cp210x_enable_event_mode(struct usb_serial_port *port)
1104a7207e98SJohan Hovold {
1105a7207e98SJohan Hovold 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
1106a7207e98SJohan Hovold 	int ret;
1107a7207e98SJohan Hovold 
1108a7207e98SJohan Hovold 	if (port_priv->event_mode)
1109a7207e98SJohan Hovold 		return;
1110a7207e98SJohan Hovold 
1111a7207e98SJohan Hovold 	port_priv->event_state = ES_DATA;
1112a7207e98SJohan Hovold 	port_priv->event_mode = true;
1113a7207e98SJohan Hovold 
1114a7207e98SJohan Hovold 	ret = cp210x_write_u16_reg(port, CP210X_EMBED_EVENTS, CP210X_ESCCHAR);
1115a7207e98SJohan Hovold 	if (ret) {
1116a7207e98SJohan Hovold 		dev_err(&port->dev, "failed to enable events: %d\n", ret);
1117a7207e98SJohan Hovold 		port_priv->event_mode = false;
1118a7207e98SJohan Hovold 	}
1119a7207e98SJohan Hovold }
1120a7207e98SJohan Hovold 
1121a7207e98SJohan Hovold static void cp210x_disable_event_mode(struct usb_serial_port *port)
1122a7207e98SJohan Hovold {
1123a7207e98SJohan Hovold 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
1124a7207e98SJohan Hovold 	int ret;
1125a7207e98SJohan Hovold 
1126a7207e98SJohan Hovold 	if (!port_priv->event_mode)
1127a7207e98SJohan Hovold 		return;
1128a7207e98SJohan Hovold 
1129a7207e98SJohan Hovold 	ret = cp210x_write_u16_reg(port, CP210X_EMBED_EVENTS, 0);
1130a7207e98SJohan Hovold 	if (ret) {
1131a7207e98SJohan Hovold 		dev_err(&port->dev, "failed to disable events: %d\n", ret);
1132a7207e98SJohan Hovold 		return;
1133a7207e98SJohan Hovold 	}
1134a7207e98SJohan Hovold 
1135a7207e98SJohan Hovold 	port_priv->event_mode = false;
1136a7207e98SJohan Hovold }
1137a7207e98SJohan Hovold 
11387748feffSWang Sheng Long static int cp210x_set_chars(struct usb_serial_port *port,
11397748feffSWang Sheng Long 		struct cp210x_special_chars *chars)
11407748feffSWang Sheng Long {
11417748feffSWang Sheng Long 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
11427748feffSWang Sheng Long 	struct usb_serial *serial = port->serial;
11437748feffSWang Sheng Long 	void *dmabuf;
11447748feffSWang Sheng Long 	int result;
11457748feffSWang Sheng Long 
11467748feffSWang Sheng Long 	dmabuf = kmemdup(chars, sizeof(*chars), GFP_KERNEL);
11477748feffSWang Sheng Long 	if (!dmabuf)
11487748feffSWang Sheng Long 		return -ENOMEM;
11497748feffSWang Sheng Long 
11507748feffSWang Sheng Long 	result = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
11517748feffSWang Sheng Long 				CP210X_SET_CHARS, REQTYPE_HOST_TO_INTERFACE, 0,
11527748feffSWang Sheng Long 				port_priv->bInterfaceNumber,
11537748feffSWang Sheng Long 				dmabuf, sizeof(*chars), USB_CTRL_SET_TIMEOUT);
11547748feffSWang Sheng Long 
11557748feffSWang Sheng Long 	kfree(dmabuf);
11567748feffSWang Sheng Long 
11577748feffSWang Sheng Long 	if (result < 0) {
11587748feffSWang Sheng Long 		dev_err(&port->dev, "failed to set special chars: %d\n", result);
11597748feffSWang Sheng Long 		return result;
11607748feffSWang Sheng Long 	}
11617748feffSWang Sheng Long 
11627748feffSWang Sheng Long 	return 0;
11637748feffSWang Sheng Long }
11647748feffSWang Sheng Long 
116595168d62SJohan Hovold static bool cp210x_termios_change(const struct ktermios *a, const struct ktermios *b)
116695168d62SJohan Hovold {
116703f32d7cSJohan Hovold 	bool iflag_change, cc_change;
116895168d62SJohan Hovold 
11697748feffSWang Sheng Long 	iflag_change = ((a->c_iflag ^ b->c_iflag) & (INPCK | IXON | IXOFF));
117003f32d7cSJohan Hovold 	cc_change = a->c_cc[VSTART] != b->c_cc[VSTART] ||
117103f32d7cSJohan Hovold 			a->c_cc[VSTOP] != b->c_cc[VSTOP];
117295168d62SJohan Hovold 
117303f32d7cSJohan Hovold 	return tty_termios_hw_change(a, b) || iflag_change || cc_change;
117495168d62SJohan Hovold }
117595168d62SJohan Hovold 
1176ed921771SJohan Hovold static void cp210x_set_flow_control(struct tty_struct *tty,
1177ed921771SJohan Hovold 		struct usb_serial_port *port, struct ktermios *old_termios)
1178ed921771SJohan Hovold {
11795951b850SJohan Hovold 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
11807748feffSWang Sheng Long 	struct cp210x_special_chars chars;
1181ed921771SJohan Hovold 	struct cp210x_flow_ctl flow_ctl;
1182ed921771SJohan Hovold 	u32 flow_repl;
1183ed921771SJohan Hovold 	u32 ctl_hs;
1184ed921771SJohan Hovold 	int ret;
1185ed921771SJohan Hovold 
11867748feffSWang Sheng Long 	if (old_termios &&
11877748feffSWang Sheng Long 			C_CRTSCTS(tty) == (old_termios->c_cflag & CRTSCTS) &&
11887748feffSWang Sheng Long 			I_IXON(tty) == (old_termios->c_iflag & IXON) &&
118903f32d7cSJohan Hovold 			I_IXOFF(tty) == (old_termios->c_iflag & IXOFF) &&
119003f32d7cSJohan Hovold 			START_CHAR(tty) == old_termios->c_cc[VSTART] &&
119103f32d7cSJohan Hovold 			STOP_CHAR(tty) == old_termios->c_cc[VSTOP]) {
1192ed921771SJohan Hovold 		return;
11937748feffSWang Sheng Long 	}
11947748feffSWang Sheng Long 
11957748feffSWang Sheng Long 	if (I_IXON(tty) || I_IXOFF(tty)) {
11967748feffSWang Sheng Long 		memset(&chars, 0, sizeof(chars));
11977748feffSWang Sheng Long 
11987748feffSWang Sheng Long 		chars.bXonChar = START_CHAR(tty);
11997748feffSWang Sheng Long 		chars.bXoffChar = STOP_CHAR(tty);
12007748feffSWang Sheng Long 
12017748feffSWang Sheng Long 		ret = cp210x_set_chars(port, &chars);
12027748feffSWang Sheng Long 		if (ret)
12037748feffSWang Sheng Long 			return;
12047748feffSWang Sheng Long 	}
1205ed921771SJohan Hovold 
12065951b850SJohan Hovold 	mutex_lock(&port_priv->mutex);
1207ed921771SJohan Hovold 
1208ed921771SJohan Hovold 	ret = cp210x_read_reg_block(port, CP210X_GET_FLOW, &flow_ctl,
1209ed921771SJohan Hovold 			sizeof(flow_ctl));
1210ed921771SJohan Hovold 	if (ret)
12115951b850SJohan Hovold 		goto out_unlock;
1212ed921771SJohan Hovold 
1213ed921771SJohan Hovold 	ctl_hs = le32_to_cpu(flow_ctl.ulControlHandshake);
1214ed921771SJohan Hovold 	flow_repl = le32_to_cpu(flow_ctl.ulFlowReplace);
1215ed921771SJohan Hovold 
1216ed921771SJohan Hovold 	ctl_hs &= ~CP210X_SERIAL_DSR_HANDSHAKE;
1217ed921771SJohan Hovold 	ctl_hs &= ~CP210X_SERIAL_DCD_HANDSHAKE;
1218ed921771SJohan Hovold 	ctl_hs &= ~CP210X_SERIAL_DSR_SENSITIVITY;
1219ed921771SJohan Hovold 	ctl_hs &= ~CP210X_SERIAL_DTR_MASK;
12208cce3bbfSJohan Hovold 	if (port_priv->dtr)
1221568400b1SJohan Hovold 		ctl_hs |= CP210X_SERIAL_DTR_ACTIVE;
12228cce3bbfSJohan Hovold 	else
1223568400b1SJohan Hovold 		ctl_hs |= CP210X_SERIAL_DTR_INACTIVE;
1224ed921771SJohan Hovold 
1225e2f2dea3SJohan Hovold 	flow_repl &= ~CP210X_SERIAL_RTS_MASK;
1226ed921771SJohan Hovold 	if (C_CRTSCTS(tty)) {
1227ed921771SJohan Hovold 		ctl_hs |= CP210X_SERIAL_CTS_HANDSHAKE;
1228cf00ead0SJohan Hovold 		if (port_priv->rts)
1229568400b1SJohan Hovold 			flow_repl |= CP210X_SERIAL_RTS_FLOW_CTL;
1230cf00ead0SJohan Hovold 		else
1231cf00ead0SJohan Hovold 			flow_repl |= CP210X_SERIAL_RTS_INACTIVE;
12325951b850SJohan Hovold 		port_priv->crtscts = true;
1233ed921771SJohan Hovold 	} else {
1234ed921771SJohan Hovold 		ctl_hs &= ~CP210X_SERIAL_CTS_HANDSHAKE;
12358cce3bbfSJohan Hovold 		if (port_priv->rts)
1236568400b1SJohan Hovold 			flow_repl |= CP210X_SERIAL_RTS_ACTIVE;
12378cce3bbfSJohan Hovold 		else
1238568400b1SJohan Hovold 			flow_repl |= CP210X_SERIAL_RTS_INACTIVE;
12395951b850SJohan Hovold 		port_priv->crtscts = false;
1240ed921771SJohan Hovold 	}
1241ed921771SJohan Hovold 
12427748feffSWang Sheng Long 	if (I_IXOFF(tty))
12437748feffSWang Sheng Long 		flow_repl |= CP210X_SERIAL_AUTO_RECEIVE;
12447748feffSWang Sheng Long 	else
12457748feffSWang Sheng Long 		flow_repl &= ~CP210X_SERIAL_AUTO_RECEIVE;
12467748feffSWang Sheng Long 
12477748feffSWang Sheng Long 	if (I_IXON(tty))
12487748feffSWang Sheng Long 		flow_repl |= CP210X_SERIAL_AUTO_TRANSMIT;
12497748feffSWang Sheng Long 	else
12507748feffSWang Sheng Long 		flow_repl &= ~CP210X_SERIAL_AUTO_TRANSMIT;
12517748feffSWang Sheng Long 
1252f61309d9SJohan Hovold 	flow_ctl.ulXonLimit = cpu_to_le32(128);
1253f61309d9SJohan Hovold 	flow_ctl.ulXoffLimit = cpu_to_le32(128);
1254f61309d9SJohan Hovold 
1255f191c637SJohan Hovold 	dev_dbg(&port->dev, "%s - ctrl = 0x%02x, flow = 0x%02x\n", __func__,
1256f191c637SJohan Hovold 			ctl_hs, flow_repl);
1257ed921771SJohan Hovold 
1258ed921771SJohan Hovold 	flow_ctl.ulControlHandshake = cpu_to_le32(ctl_hs);
1259ed921771SJohan Hovold 	flow_ctl.ulFlowReplace = cpu_to_le32(flow_repl);
1260ed921771SJohan Hovold 
1261ed921771SJohan Hovold 	cp210x_write_reg_block(port, CP210X_SET_FLOW, &flow_ctl,
1262ed921771SJohan Hovold 			sizeof(flow_ctl));
12635951b850SJohan Hovold out_unlock:
12645951b850SJohan Hovold 	mutex_unlock(&port_priv->mutex);
1265ed921771SJohan Hovold }
1266ed921771SJohan Hovold 
12674cc27bd6SCraig Shelley static void cp210x_set_termios(struct tty_struct *tty,
126803ee2515SGreg Kroah-Hartman 		struct usb_serial_port *port, struct ktermios *old_termios)
126903ee2515SGreg Kroah-Hartman {
1270d4297629SJohan Hovold 	struct cp210x_serial_private *priv = usb_get_serial_data(port->serial);
127119165b2bSKonstantin Shkolnyy 	u16 bits;
1272d4297629SJohan Hovold 	int ret;
127303ee2515SGreg Kroah-Hartman 
127446827bdaSJohan Hovold 	if (old_termios && !cp210x_termios_change(&tty->termios, old_termios))
127595168d62SJohan Hovold 		return;
127695168d62SJohan Hovold 
127746827bdaSJohan Hovold 	if (!old_termios || tty->termios.c_ospeed != old_termios->c_ospeed)
1278e5990874SJohan Hovold 		cp210x_change_speed(tty, port, old_termios);
127903ee2515SGreg Kroah-Hartman 
1280d4297629SJohan Hovold 	/* CP2101 only supports CS8, 1 stop bit and non-stick parity. */
1281d4297629SJohan Hovold 	if (priv->partnum == CP210X_PARTNUM_CP2101) {
1282d4297629SJohan Hovold 		tty->termios.c_cflag &= ~(CSIZE | CSTOPB | CMSPAR);
1283d4297629SJohan Hovold 		tty->termios.c_cflag |= CS8;
1284d4297629SJohan Hovold 	}
1285d4297629SJohan Hovold 
1286d4297629SJohan Hovold 	bits = 0;
1287d4297629SJohan Hovold 
1288d4297629SJohan Hovold 	switch (C_CSIZE(tty)) {
128903ee2515SGreg Kroah-Hartman 	case CS5:
129003ee2515SGreg Kroah-Hartman 		bits |= BITS_DATA_5;
129103ee2515SGreg Kroah-Hartman 		break;
129203ee2515SGreg Kroah-Hartman 	case CS6:
129303ee2515SGreg Kroah-Hartman 		bits |= BITS_DATA_6;
129403ee2515SGreg Kroah-Hartman 		break;
129503ee2515SGreg Kroah-Hartman 	case CS7:
129603ee2515SGreg Kroah-Hartman 		bits |= BITS_DATA_7;
129703ee2515SGreg Kroah-Hartman 		break;
129803ee2515SGreg Kroah-Hartman 	case CS8:
1299c2b33559SJohan Hovold 	default:
130003ee2515SGreg Kroah-Hartman 		bits |= BITS_DATA_8;
130103ee2515SGreg Kroah-Hartman 		break;
130203ee2515SGreg Kroah-Hartman 	}
130303ee2515SGreg Kroah-Hartman 
1304d4297629SJohan Hovold 	if (C_PARENB(tty)) {
1305d4297629SJohan Hovold 		if (C_CMSPAR(tty)) {
1306d4297629SJohan Hovold 			if (C_PARODD(tty))
13074b6181caSRoland Koebler 				bits |= BITS_PARITY_MARK;
1308d4297629SJohan Hovold 			else
13094b6181caSRoland Koebler 				bits |= BITS_PARITY_SPACE;
13104b6181caSRoland Koebler 		} else {
1311d4297629SJohan Hovold 			if (C_PARODD(tty))
131203ee2515SGreg Kroah-Hartman 				bits |= BITS_PARITY_ODD;
1313d4297629SJohan Hovold 			else
131403ee2515SGreg Kroah-Hartman 				bits |= BITS_PARITY_EVEN;
131503ee2515SGreg Kroah-Hartman 		}
131603ee2515SGreg Kroah-Hartman 	}
131703ee2515SGreg Kroah-Hartman 
1318d4297629SJohan Hovold 	if (C_CSTOPB(tty))
131903ee2515SGreg Kroah-Hartman 		bits |= BITS_STOP_2;
1320d4297629SJohan Hovold 	else
132103ee2515SGreg Kroah-Hartman 		bits |= BITS_STOP_1;
1322d4297629SJohan Hovold 
1323d4297629SJohan Hovold 	ret = cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits);
1324d4297629SJohan Hovold 	if (ret)
1325d4297629SJohan Hovold 		dev_err(&port->dev, "failed to set line control: %d\n", ret);
132603ee2515SGreg Kroah-Hartman 
1327ed921771SJohan Hovold 	cp210x_set_flow_control(tty, port, old_termios);
132803ee2515SGreg Kroah-Hartman 
1329a7207e98SJohan Hovold 	/*
1330a7207e98SJohan Hovold 	 * Enable event-insertion mode only if input parity checking is
1331a7207e98SJohan Hovold 	 * enabled for now.
1332a7207e98SJohan Hovold 	 */
1333a7207e98SJohan Hovold 	if (I_INPCK(tty))
1334a7207e98SJohan Hovold 		cp210x_enable_event_mode(port);
1335a7207e98SJohan Hovold 	else
1336a7207e98SJohan Hovold 		cp210x_disable_event_mode(port);
133703ee2515SGreg Kroah-Hartman }
133803ee2515SGreg Kroah-Hartman 
133920b9d177SAlan Cox static int cp210x_tiocmset(struct tty_struct *tty,
134003ee2515SGreg Kroah-Hartman 		unsigned int set, unsigned int clear)
134103ee2515SGreg Kroah-Hartman {
134203ee2515SGreg Kroah-Hartman 	struct usb_serial_port *port = tty->driver_data;
134320b9d177SAlan Cox 	return cp210x_tiocmset_port(port, set, clear);
1344d2ad67b3SVomLehn }
1345d2ad67b3SVomLehn 
134620b9d177SAlan Cox static int cp210x_tiocmset_port(struct usb_serial_port *port,
1347d2ad67b3SVomLehn 		unsigned int set, unsigned int clear)
1348d2ad67b3SVomLehn {
13495951b850SJohan Hovold 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
1350cf00ead0SJohan Hovold 	struct cp210x_flow_ctl flow_ctl;
1351cf00ead0SJohan Hovold 	u32 ctl_hs, flow_repl;
135219165b2bSKonstantin Shkolnyy 	u16 control = 0;
13535951b850SJohan Hovold 	int ret;
135403ee2515SGreg Kroah-Hartman 
13558cce3bbfSJohan Hovold 	mutex_lock(&port_priv->mutex);
135603ee2515SGreg Kroah-Hartman 
135703ee2515SGreg Kroah-Hartman 	if (set & TIOCM_RTS) {
13588cce3bbfSJohan Hovold 		port_priv->rts = true;
135903ee2515SGreg Kroah-Hartman 		control |= CONTROL_RTS;
136003ee2515SGreg Kroah-Hartman 		control |= CONTROL_WRITE_RTS;
136103ee2515SGreg Kroah-Hartman 	}
136203ee2515SGreg Kroah-Hartman 	if (set & TIOCM_DTR) {
13638cce3bbfSJohan Hovold 		port_priv->dtr = true;
136403ee2515SGreg Kroah-Hartman 		control |= CONTROL_DTR;
136503ee2515SGreg Kroah-Hartman 		control |= CONTROL_WRITE_DTR;
136603ee2515SGreg Kroah-Hartman 	}
136703ee2515SGreg Kroah-Hartman 	if (clear & TIOCM_RTS) {
13688cce3bbfSJohan Hovold 		port_priv->rts = false;
136903ee2515SGreg Kroah-Hartman 		control &= ~CONTROL_RTS;
137003ee2515SGreg Kroah-Hartman 		control |= CONTROL_WRITE_RTS;
137103ee2515SGreg Kroah-Hartman 	}
137203ee2515SGreg Kroah-Hartman 	if (clear & TIOCM_DTR) {
13738cce3bbfSJohan Hovold 		port_priv->dtr = false;
137403ee2515SGreg Kroah-Hartman 		control &= ~CONTROL_DTR;
137503ee2515SGreg Kroah-Hartman 		control |= CONTROL_WRITE_DTR;
137603ee2515SGreg Kroah-Hartman 	}
137703ee2515SGreg Kroah-Hartman 
13785951b850SJohan Hovold 	/*
1379cf00ead0SJohan Hovold 	 * Use SET_FLOW to set DTR and enable/disable auto-RTS when hardware
1380cf00ead0SJohan Hovold 	 * flow control is enabled.
13815951b850SJohan Hovold 	 */
1382cf00ead0SJohan Hovold 	if (port_priv->crtscts && control & CONTROL_WRITE_RTS) {
1383cf00ead0SJohan Hovold 		ret = cp210x_read_reg_block(port, CP210X_GET_FLOW, &flow_ctl,
1384cf00ead0SJohan Hovold 				sizeof(flow_ctl));
1385cf00ead0SJohan Hovold 		if (ret)
1386cf00ead0SJohan Hovold 			goto out_unlock;
138703ee2515SGreg Kroah-Hartman 
1388cf00ead0SJohan Hovold 		ctl_hs = le32_to_cpu(flow_ctl.ulControlHandshake);
1389cf00ead0SJohan Hovold 		flow_repl = le32_to_cpu(flow_ctl.ulFlowReplace);
1390cf00ead0SJohan Hovold 
1391cf00ead0SJohan Hovold 		ctl_hs &= ~CP210X_SERIAL_DTR_MASK;
1392cf00ead0SJohan Hovold 		if (port_priv->dtr)
1393cf00ead0SJohan Hovold 			ctl_hs |= CP210X_SERIAL_DTR_ACTIVE;
1394cf00ead0SJohan Hovold 		else
1395cf00ead0SJohan Hovold 			ctl_hs |= CP210X_SERIAL_DTR_INACTIVE;
1396cf00ead0SJohan Hovold 
1397cf00ead0SJohan Hovold 		flow_repl &= ~CP210X_SERIAL_RTS_MASK;
1398cf00ead0SJohan Hovold 		if (port_priv->rts)
1399cf00ead0SJohan Hovold 			flow_repl |= CP210X_SERIAL_RTS_FLOW_CTL;
1400cf00ead0SJohan Hovold 		else
1401cf00ead0SJohan Hovold 			flow_repl |= CP210X_SERIAL_RTS_INACTIVE;
1402cf00ead0SJohan Hovold 
1403cf00ead0SJohan Hovold 		flow_ctl.ulControlHandshake = cpu_to_le32(ctl_hs);
1404cf00ead0SJohan Hovold 		flow_ctl.ulFlowReplace = cpu_to_le32(flow_repl);
1405cf00ead0SJohan Hovold 
1406cf00ead0SJohan Hovold 		dev_dbg(&port->dev, "%s - ctrl = 0x%02x, flow = 0x%02x\n",
1407cf00ead0SJohan Hovold 				__func__, ctl_hs, flow_repl);
1408cf00ead0SJohan Hovold 
1409cf00ead0SJohan Hovold 		ret = cp210x_write_reg_block(port, CP210X_SET_FLOW, &flow_ctl,
1410cf00ead0SJohan Hovold 				sizeof(flow_ctl));
1411cf00ead0SJohan Hovold 	} else {
14126b667274SJohan Hovold 		dev_dbg(&port->dev, "%s - control = 0x%04x\n", __func__, control);
141303ee2515SGreg Kroah-Hartman 
14145951b850SJohan Hovold 		ret = cp210x_write_u16_reg(port, CP210X_SET_MHS, control);
1415cf00ead0SJohan Hovold 	}
1416cf00ead0SJohan Hovold out_unlock:
14175951b850SJohan Hovold 	mutex_unlock(&port_priv->mutex);
14185951b850SJohan Hovold 
14195951b850SJohan Hovold 	return ret;
142003ee2515SGreg Kroah-Hartman }
142103ee2515SGreg Kroah-Hartman 
1422daa91919SJohan Hovold static void cp210x_dtr_rts(struct usb_serial_port *port, int on)
1423d94c7bd4SAlan Cox {
1424d94c7bd4SAlan Cox 	if (on)
1425daa91919SJohan Hovold 		cp210x_tiocmset_port(port, TIOCM_DTR | TIOCM_RTS, 0);
1426d94c7bd4SAlan Cox 	else
1427daa91919SJohan Hovold 		cp210x_tiocmset_port(port, 0, TIOCM_DTR | TIOCM_RTS);
1428d94c7bd4SAlan Cox }
1429d94c7bd4SAlan Cox 
143060b33c13SAlan Cox static int cp210x_tiocmget(struct tty_struct *tty)
143103ee2515SGreg Kroah-Hartman {
143203ee2515SGreg Kroah-Hartman 	struct usb_serial_port *port = tty->driver_data;
1433fe1b07e9SKonstantin Shkolnyy 	u8 control;
143403ee2515SGreg Kroah-Hartman 	int result;
143503ee2515SGreg Kroah-Hartman 
1436de24e0a1SJohan Hovold 	result = cp210x_read_u8_reg(port, CP210X_GET_MDMSTS, &control);
1437de24e0a1SJohan Hovold 	if (result)
1438de24e0a1SJohan Hovold 		return result;
143903ee2515SGreg Kroah-Hartman 
144003ee2515SGreg Kroah-Hartman 	result = ((control & CONTROL_DTR) ? TIOCM_DTR : 0)
144103ee2515SGreg Kroah-Hartman 		|((control & CONTROL_RTS) ? TIOCM_RTS : 0)
144203ee2515SGreg Kroah-Hartman 		|((control & CONTROL_CTS) ? TIOCM_CTS : 0)
144303ee2515SGreg Kroah-Hartman 		|((control & CONTROL_DSR) ? TIOCM_DSR : 0)
144403ee2515SGreg Kroah-Hartman 		|((control & CONTROL_RING)? TIOCM_RI  : 0)
144503ee2515SGreg Kroah-Hartman 		|((control & CONTROL_DCD) ? TIOCM_CD  : 0);
144603ee2515SGreg Kroah-Hartman 
14476b667274SJohan Hovold 	dev_dbg(&port->dev, "%s - control = 0x%02x\n", __func__, control);
144803ee2515SGreg Kroah-Hartman 
144903ee2515SGreg Kroah-Hartman 	return result;
145003ee2515SGreg Kroah-Hartman }
145103ee2515SGreg Kroah-Hartman 
14524cc27bd6SCraig Shelley static void cp210x_break_ctl(struct tty_struct *tty, int break_state)
145303ee2515SGreg Kroah-Hartman {
145403ee2515SGreg Kroah-Hartman 	struct usb_serial_port *port = tty->driver_data;
145519165b2bSKonstantin Shkolnyy 	u16 state;
145603ee2515SGreg Kroah-Hartman 
145703ee2515SGreg Kroah-Hartman 	if (break_state == 0)
145803ee2515SGreg Kroah-Hartman 		state = BREAK_OFF;
145903ee2515SGreg Kroah-Hartman 	else
146003ee2515SGreg Kroah-Hartman 		state = BREAK_ON;
1461660f3b14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "%s - turning break %s\n", __func__,
146203ee2515SGreg Kroah-Hartman 		state == BREAK_OFF ? "off" : "on");
146319165b2bSKonstantin Shkolnyy 	cp210x_write_u16_reg(port, CP210X_SET_BREAK, state);
146403ee2515SGreg Kroah-Hartman }
146503ee2515SGreg Kroah-Hartman 
1466cf5276ceSMartyn Welch #ifdef CONFIG_GPIOLIB
1467cf5276ceSMartyn Welch static int cp210x_gpio_get(struct gpio_chip *gc, unsigned int gpio)
1468cf5276ceSMartyn Welch {
1469cf5276ceSMartyn Welch 	struct usb_serial *serial = gpiochip_get_data(gc);
1470c8acfe0aSKaroly Pados 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1471*8051334eSPho Tran 	u8 req_type;
1472*8051334eSPho Tran 	u16 mask;
1473cf5276ceSMartyn Welch 	int result;
1474*8051334eSPho Tran 	int len;
1475c8acfe0aSKaroly Pados 
14767b0b644bSKaroly Pados 	result = usb_autopm_get_interface(serial->interface);
14777b0b644bSKaroly Pados 	if (result)
14787b0b644bSKaroly Pados 		return result;
14797b0b644bSKaroly Pados 
1480*8051334eSPho Tran 	switch (priv->partnum) {
1481*8051334eSPho Tran 	case CP210X_PARTNUM_CP2105:
1482*8051334eSPho Tran 		req_type = REQTYPE_INTERFACE_TO_HOST;
1483*8051334eSPho Tran 		len = 1;
1484*8051334eSPho Tran 		break;
1485*8051334eSPho Tran 	case CP210X_PARTNUM_CP2108:
1486*8051334eSPho Tran 		req_type = REQTYPE_INTERFACE_TO_HOST;
1487*8051334eSPho Tran 		len = 2;
1488*8051334eSPho Tran 		break;
1489*8051334eSPho Tran 	default:
1490*8051334eSPho Tran 		req_type = REQTYPE_DEVICE_TO_HOST;
1491*8051334eSPho Tran 		len = 1;
1492*8051334eSPho Tran 		break;
1493*8051334eSPho Tran 	}
1494*8051334eSPho Tran 
1495*8051334eSPho Tran 	mask = 0;
1496*8051334eSPho Tran 	result = cp210x_read_vendor_block(serial, req_type, CP210X_READ_LATCH,
1497*8051334eSPho Tran 					  &mask, len);
1498*8051334eSPho Tran 
14997b0b644bSKaroly Pados 	usb_autopm_put_interface(serial->interface);
1500*8051334eSPho Tran 
1501cf5276ceSMartyn Welch 	if (result < 0)
1502cf5276ceSMartyn Welch 		return result;
1503cf5276ceSMartyn Welch 
1504*8051334eSPho Tran 	le16_to_cpus(&mask);
1505*8051334eSPho Tran 
1506*8051334eSPho Tran 	return !!(mask & BIT(gpio));
1507cf5276ceSMartyn Welch }
1508cf5276ceSMartyn Welch 
1509cf5276ceSMartyn Welch static void cp210x_gpio_set(struct gpio_chip *gc, unsigned int gpio, int value)
1510cf5276ceSMartyn Welch {
1511cf5276ceSMartyn Welch 	struct usb_serial *serial = gpiochip_get_data(gc);
1512c8acfe0aSKaroly Pados 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1513*8051334eSPho Tran 	struct cp210x_gpio_write16 buf16;
1514cf5276ceSMartyn Welch 	struct cp210x_gpio_write buf;
1515*8051334eSPho Tran 	u16 mask, state;
1516*8051334eSPho Tran 	u16 wIndex;
1517c8acfe0aSKaroly Pados 	int result;
1518cf5276ceSMartyn Welch 
1519cf5276ceSMartyn Welch 	if (value == 1)
1520*8051334eSPho Tran 		state = BIT(gpio);
1521cf5276ceSMartyn Welch 	else
1522*8051334eSPho Tran 		state = 0;
1523cf5276ceSMartyn Welch 
1524*8051334eSPho Tran 	mask = BIT(gpio);
1525cf5276ceSMartyn Welch 
15267b0b644bSKaroly Pados 	result = usb_autopm_get_interface(serial->interface);
15277b0b644bSKaroly Pados 	if (result)
15287b0b644bSKaroly Pados 		goto out;
15297b0b644bSKaroly Pados 
1530*8051334eSPho Tran 	switch (priv->partnum) {
1531*8051334eSPho Tran 	case CP210X_PARTNUM_CP2105:
1532*8051334eSPho Tran 		buf.mask = (u8)mask;
1533*8051334eSPho Tran 		buf.state = (u8)state;
1534c8acfe0aSKaroly Pados 		result = cp210x_write_vendor_block(serial,
1535c8acfe0aSKaroly Pados 						   REQTYPE_HOST_TO_INTERFACE,
1536c8acfe0aSKaroly Pados 						   CP210X_WRITE_LATCH, &buf,
1537c8acfe0aSKaroly Pados 						   sizeof(buf));
1538*8051334eSPho Tran 		break;
1539*8051334eSPho Tran 	case CP210X_PARTNUM_CP2108:
1540*8051334eSPho Tran 		buf16.mask = cpu_to_le16(mask);
1541*8051334eSPho Tran 		buf16.state = cpu_to_le16(state);
1542*8051334eSPho Tran 		result = cp210x_write_vendor_block(serial,
1543*8051334eSPho Tran 						   REQTYPE_HOST_TO_INTERFACE,
1544*8051334eSPho Tran 						   CP210X_WRITE_LATCH, &buf16,
1545*8051334eSPho Tran 						   sizeof(buf16));
1546*8051334eSPho Tran 		break;
1547*8051334eSPho Tran 	default:
1548*8051334eSPho Tran 		wIndex = state << 8 | mask;
1549c8acfe0aSKaroly Pados 		result = usb_control_msg(serial->dev,
1550c8acfe0aSKaroly Pados 					 usb_sndctrlpipe(serial->dev, 0),
1551c8acfe0aSKaroly Pados 					 CP210X_VENDOR_SPECIFIC,
1552c8acfe0aSKaroly Pados 					 REQTYPE_HOST_TO_DEVICE,
1553c8acfe0aSKaroly Pados 					 CP210X_WRITE_LATCH,
1554c8acfe0aSKaroly Pados 					 wIndex,
1555c8acfe0aSKaroly Pados 					 NULL, 0, USB_CTRL_SET_TIMEOUT);
1556*8051334eSPho Tran 		break;
1557c8acfe0aSKaroly Pados 	}
1558c8acfe0aSKaroly Pados 
15597b0b644bSKaroly Pados 	usb_autopm_put_interface(serial->interface);
15607b0b644bSKaroly Pados out:
1561c8acfe0aSKaroly Pados 	if (result < 0) {
1562c8acfe0aSKaroly Pados 		dev_err(&serial->interface->dev, "failed to set GPIO value: %d\n",
1563c8acfe0aSKaroly Pados 				result);
1564c8acfe0aSKaroly Pados 	}
1565cf5276ceSMartyn Welch }
1566cf5276ceSMartyn Welch 
1567cf5276ceSMartyn Welch static int cp210x_gpio_direction_get(struct gpio_chip *gc, unsigned int gpio)
1568cf5276ceSMartyn Welch {
1569c8acfe0aSKaroly Pados 	struct usb_serial *serial = gpiochip_get_data(gc);
1570c8acfe0aSKaroly Pados 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1571c8acfe0aSKaroly Pados 
1572c8acfe0aSKaroly Pados 	return priv->gpio_input & BIT(gpio);
1573cf5276ceSMartyn Welch }
1574cf5276ceSMartyn Welch 
1575cf5276ceSMartyn Welch static int cp210x_gpio_direction_input(struct gpio_chip *gc, unsigned int gpio)
1576cf5276ceSMartyn Welch {
1577c8acfe0aSKaroly Pados 	struct usb_serial *serial = gpiochip_get_data(gc);
1578c8acfe0aSKaroly Pados 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1579c8acfe0aSKaroly Pados 
1580c8acfe0aSKaroly Pados 	if (priv->partnum == CP210X_PARTNUM_CP2105) {
1581c8acfe0aSKaroly Pados 		/* hardware does not support an input mode */
1582cf5276ceSMartyn Welch 		return -ENOTSUPP;
1583cf5276ceSMartyn Welch 	}
1584cf5276ceSMartyn Welch 
1585c8acfe0aSKaroly Pados 	/* push-pull pins cannot be changed to be inputs */
1586c8acfe0aSKaroly Pados 	if (priv->gpio_pushpull & BIT(gpio))
1587c8acfe0aSKaroly Pados 		return -EINVAL;
1588c8acfe0aSKaroly Pados 
1589c8acfe0aSKaroly Pados 	/* make sure to release pin if it is being driven low */
1590c8acfe0aSKaroly Pados 	cp210x_gpio_set(gc, gpio, 1);
1591c8acfe0aSKaroly Pados 
1592c8acfe0aSKaroly Pados 	priv->gpio_input |= BIT(gpio);
1593c8acfe0aSKaroly Pados 
1594c8acfe0aSKaroly Pados 	return 0;
1595c8acfe0aSKaroly Pados }
1596c8acfe0aSKaroly Pados 
1597cf5276ceSMartyn Welch static int cp210x_gpio_direction_output(struct gpio_chip *gc, unsigned int gpio,
1598cf5276ceSMartyn Welch 					int value)
1599cf5276ceSMartyn Welch {
1600c8acfe0aSKaroly Pados 	struct usb_serial *serial = gpiochip_get_data(gc);
1601c8acfe0aSKaroly Pados 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1602c8acfe0aSKaroly Pados 
1603c8acfe0aSKaroly Pados 	priv->gpio_input &= ~BIT(gpio);
1604c8acfe0aSKaroly Pados 	cp210x_gpio_set(gc, gpio, value);
1605c8acfe0aSKaroly Pados 
1606cf5276ceSMartyn Welch 	return 0;
1607cf5276ceSMartyn Welch }
1608cf5276ceSMartyn Welch 
16092956b5d9SMika Westerberg static int cp210x_gpio_set_config(struct gpio_chip *gc, unsigned int gpio,
16102956b5d9SMika Westerberg 				  unsigned long config)
1611cf5276ceSMartyn Welch {
1612cf5276ceSMartyn Welch 	struct usb_serial *serial = gpiochip_get_data(gc);
1613cf5276ceSMartyn Welch 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
16142956b5d9SMika Westerberg 	enum pin_config_param param = pinconf_to_config_param(config);
1615cf5276ceSMartyn Welch 
1616cf5276ceSMartyn Welch 	/* Succeed only if in correct mode (this can't be set at runtime) */
16172956b5d9SMika Westerberg 	if ((param == PIN_CONFIG_DRIVE_PUSH_PULL) &&
1618c8acfe0aSKaroly Pados 	    (priv->gpio_pushpull & BIT(gpio)))
1619cf5276ceSMartyn Welch 		return 0;
1620cf5276ceSMartyn Welch 
16212956b5d9SMika Westerberg 	if ((param == PIN_CONFIG_DRIVE_OPEN_DRAIN) &&
1622c8acfe0aSKaroly Pados 	    !(priv->gpio_pushpull & BIT(gpio)))
1623cf5276ceSMartyn Welch 		return 0;
1624cf5276ceSMartyn Welch 
1625cf5276ceSMartyn Welch 	return -ENOTSUPP;
1626cf5276ceSMartyn Welch }
1627cf5276ceSMartyn Welch 
1628b979248dSJohan Hovold static int cp210x_gpio_init_valid_mask(struct gpio_chip *gc,
1629b979248dSJohan Hovold 		unsigned long *valid_mask, unsigned int ngpios)
1630b979248dSJohan Hovold {
1631b979248dSJohan Hovold 	struct usb_serial *serial = gpiochip_get_data(gc);
1632b979248dSJohan Hovold 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1633d0708227SJohan Hovold 	struct device *dev = &serial->interface->dev;
1634b979248dSJohan Hovold 	unsigned long altfunc_mask = priv->gpio_altfunc;
1635b979248dSJohan Hovold 
1636b979248dSJohan Hovold 	bitmap_complement(valid_mask, &altfunc_mask, ngpios);
1637b979248dSJohan Hovold 
1638d0708227SJohan Hovold 	if (bitmap_empty(valid_mask, ngpios))
1639d0708227SJohan Hovold 		dev_dbg(dev, "no pin configured for GPIO\n");
1640d0708227SJohan Hovold 	else
1641d0708227SJohan Hovold 		dev_dbg(dev, "GPIO.%*pbl configured for GPIO\n", ngpios,
1642d0708227SJohan Hovold 				valid_mask);
1643b979248dSJohan Hovold 	return 0;
1644b979248dSJohan Hovold }
1645b979248dSJohan Hovold 
1646cf5276ceSMartyn Welch /*
1647cf5276ceSMartyn Welch  * This function is for configuring GPIO using shared pins, where other signals
1648cf5276ceSMartyn Welch  * are made unavailable by configuring the use of GPIO. This is believed to be
1649cf5276ceSMartyn Welch  * only applicable to the cp2105 at this point, the other devices supported by
1650cf5276ceSMartyn Welch  * this driver that provide GPIO do so in a way that does not impact other
1651cf5276ceSMartyn Welch  * signals and are thus expected to have very different initialisation.
1652cf5276ceSMartyn Welch  */
1653c8acfe0aSKaroly Pados static int cp2105_gpioconf_init(struct usb_serial *serial)
1654cf5276ceSMartyn Welch {
1655cf5276ceSMartyn Welch 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1656cf5276ceSMartyn Welch 	struct cp210x_pin_mode mode;
165715fb84b7SIcenowy Zheng 	struct cp210x_dual_port_config config;
1658cf5276ceSMartyn Welch 	u8 intf_num = cp210x_interface_num(serial);
1659c8acfe0aSKaroly Pados 	u8 iface_config;
1660cf5276ceSMartyn Welch 	int result;
1661cf5276ceSMartyn Welch 
1662cf5276ceSMartyn Welch 	result = cp210x_read_vendor_block(serial, REQTYPE_DEVICE_TO_HOST,
1663cf5276ceSMartyn Welch 					  CP210X_GET_DEVICEMODE, &mode,
1664cf5276ceSMartyn Welch 					  sizeof(mode));
1665cf5276ceSMartyn Welch 	if (result < 0)
1666cf5276ceSMartyn Welch 		return result;
1667cf5276ceSMartyn Welch 
1668cf5276ceSMartyn Welch 	result = cp210x_read_vendor_block(serial, REQTYPE_DEVICE_TO_HOST,
1669cf5276ceSMartyn Welch 					  CP210X_GET_PORTCONFIG, &config,
1670cf5276ceSMartyn Welch 					  sizeof(config));
1671cf5276ceSMartyn Welch 	if (result < 0)
1672cf5276ceSMartyn Welch 		return result;
1673cf5276ceSMartyn Welch 
1674cf5276ceSMartyn Welch 	/*  2 banks of GPIO - One for the pins taken from each serial port */
1675cf5276ceSMartyn Welch 	if (intf_num == 0) {
1676c8acfe0aSKaroly Pados 		if (mode.eci == CP210X_PIN_MODE_MODEM) {
1677c8acfe0aSKaroly Pados 			/* mark all GPIOs of this interface as reserved */
1678c8acfe0aSKaroly Pados 			priv->gpio_altfunc = 0xff;
1679cf5276ceSMartyn Welch 			return 0;
1680c8acfe0aSKaroly Pados 		}
1681cf5276ceSMartyn Welch 
1682c8acfe0aSKaroly Pados 		iface_config = config.eci_cfg;
1683c8acfe0aSKaroly Pados 		priv->gpio_pushpull = (u8)((le16_to_cpu(config.gpio_mode) &
1684cf5276ceSMartyn Welch 						CP210X_ECI_GPIO_MODE_MASK) >>
1685cf5276ceSMartyn Welch 						CP210X_ECI_GPIO_MODE_OFFSET);
1686cf5276ceSMartyn Welch 		priv->gc.ngpio = 2;
1687cf5276ceSMartyn Welch 	} else if (intf_num == 1) {
1688c8acfe0aSKaroly Pados 		if (mode.sci == CP210X_PIN_MODE_MODEM) {
1689c8acfe0aSKaroly Pados 			/* mark all GPIOs of this interface as reserved */
1690c8acfe0aSKaroly Pados 			priv->gpio_altfunc = 0xff;
1691cf5276ceSMartyn Welch 			return 0;
1692c8acfe0aSKaroly Pados 		}
1693cf5276ceSMartyn Welch 
1694c8acfe0aSKaroly Pados 		iface_config = config.sci_cfg;
1695c8acfe0aSKaroly Pados 		priv->gpio_pushpull = (u8)((le16_to_cpu(config.gpio_mode) &
1696cf5276ceSMartyn Welch 						CP210X_SCI_GPIO_MODE_MASK) >>
1697cf5276ceSMartyn Welch 						CP210X_SCI_GPIO_MODE_OFFSET);
1698cf5276ceSMartyn Welch 		priv->gc.ngpio = 3;
1699cf5276ceSMartyn Welch 	} else {
1700cf5276ceSMartyn Welch 		return -ENODEV;
1701cf5276ceSMartyn Welch 	}
1702cf5276ceSMartyn Welch 
1703c8acfe0aSKaroly Pados 	/* mark all pins which are not in GPIO mode */
1704c8acfe0aSKaroly Pados 	if (iface_config & CP2105_GPIO0_TXLED_MODE)	/* GPIO 0 */
1705c8acfe0aSKaroly Pados 		priv->gpio_altfunc |= BIT(0);
1706c8acfe0aSKaroly Pados 	if (iface_config & (CP2105_GPIO1_RXLED_MODE |	/* GPIO 1 */
1707c8acfe0aSKaroly Pados 			CP2105_GPIO1_RS485_MODE))
1708c8acfe0aSKaroly Pados 		priv->gpio_altfunc |= BIT(1);
1709c8acfe0aSKaroly Pados 
1710c8acfe0aSKaroly Pados 	/* driver implementation for CP2105 only supports outputs */
1711c8acfe0aSKaroly Pados 	priv->gpio_input = 0;
1712c8acfe0aSKaroly Pados 
1713c8acfe0aSKaroly Pados 	return 0;
1714c8acfe0aSKaroly Pados }
1715c8acfe0aSKaroly Pados 
171615fb84b7SIcenowy Zheng static int cp2104_gpioconf_init(struct usb_serial *serial)
171715fb84b7SIcenowy Zheng {
171815fb84b7SIcenowy Zheng 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
171915fb84b7SIcenowy Zheng 	struct cp210x_single_port_config config;
172015fb84b7SIcenowy Zheng 	u8 iface_config;
172115fb84b7SIcenowy Zheng 	u8 gpio_latch;
172215fb84b7SIcenowy Zheng 	int result;
172315fb84b7SIcenowy Zheng 	u8 i;
172415fb84b7SIcenowy Zheng 
172515fb84b7SIcenowy Zheng 	result = cp210x_read_vendor_block(serial, REQTYPE_DEVICE_TO_HOST,
172615fb84b7SIcenowy Zheng 					  CP210X_GET_PORTCONFIG, &config,
172715fb84b7SIcenowy Zheng 					  sizeof(config));
172815fb84b7SIcenowy Zheng 	if (result < 0)
172915fb84b7SIcenowy Zheng 		return result;
173015fb84b7SIcenowy Zheng 
173115fb84b7SIcenowy Zheng 	priv->gc.ngpio = 4;
173215fb84b7SIcenowy Zheng 
173315fb84b7SIcenowy Zheng 	iface_config = config.device_cfg;
173415fb84b7SIcenowy Zheng 	priv->gpio_pushpull = (u8)((le16_to_cpu(config.gpio_mode) &
173515fb84b7SIcenowy Zheng 					CP210X_GPIO_MODE_MASK) >>
173615fb84b7SIcenowy Zheng 					CP210X_GPIO_MODE_OFFSET);
173715fb84b7SIcenowy Zheng 	gpio_latch = (u8)((le16_to_cpu(config.reset_state) &
173815fb84b7SIcenowy Zheng 					CP210X_GPIO_MODE_MASK) >>
173915fb84b7SIcenowy Zheng 					CP210X_GPIO_MODE_OFFSET);
174015fb84b7SIcenowy Zheng 
174115fb84b7SIcenowy Zheng 	/* mark all pins which are not in GPIO mode */
174215fb84b7SIcenowy Zheng 	if (iface_config & CP2104_GPIO0_TXLED_MODE)	/* GPIO 0 */
174315fb84b7SIcenowy Zheng 		priv->gpio_altfunc |= BIT(0);
174415fb84b7SIcenowy Zheng 	if (iface_config & CP2104_GPIO1_RXLED_MODE)	/* GPIO 1 */
174515fb84b7SIcenowy Zheng 		priv->gpio_altfunc |= BIT(1);
174615fb84b7SIcenowy Zheng 	if (iface_config & CP2104_GPIO2_RS485_MODE)	/* GPIO 2 */
174715fb84b7SIcenowy Zheng 		priv->gpio_altfunc |= BIT(2);
174815fb84b7SIcenowy Zheng 
174915fb84b7SIcenowy Zheng 	/*
175015fb84b7SIcenowy Zheng 	 * Like CP2102N, CP2104 has also no strict input and output pin
175115fb84b7SIcenowy Zheng 	 * modes.
175215fb84b7SIcenowy Zheng 	 * Do the same input mode emulation as CP2102N.
175315fb84b7SIcenowy Zheng 	 */
175415fb84b7SIcenowy Zheng 	for (i = 0; i < priv->gc.ngpio; ++i) {
175515fb84b7SIcenowy Zheng 		/*
175615fb84b7SIcenowy Zheng 		 * Set direction to "input" iff pin is open-drain and reset
175715fb84b7SIcenowy Zheng 		 * value is 1.
175815fb84b7SIcenowy Zheng 		 */
175915fb84b7SIcenowy Zheng 		if (!(priv->gpio_pushpull & BIT(i)) && (gpio_latch & BIT(i)))
176015fb84b7SIcenowy Zheng 			priv->gpio_input |= BIT(i);
176115fb84b7SIcenowy Zheng 	}
176215fb84b7SIcenowy Zheng 
176315fb84b7SIcenowy Zheng 	return 0;
176415fb84b7SIcenowy Zheng }
176515fb84b7SIcenowy Zheng 
1766*8051334eSPho Tran static int cp2108_gpio_init(struct usb_serial *serial)
1767*8051334eSPho Tran {
1768*8051334eSPho Tran 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1769*8051334eSPho Tran 	struct cp210x_quad_port_config config;
1770*8051334eSPho Tran 	u16 gpio_latch;
1771*8051334eSPho Tran 	int result;
1772*8051334eSPho Tran 	u8 i;
1773*8051334eSPho Tran 
1774*8051334eSPho Tran 	result = cp210x_read_vendor_block(serial, REQTYPE_DEVICE_TO_HOST,
1775*8051334eSPho Tran 					  CP210X_GET_PORTCONFIG, &config,
1776*8051334eSPho Tran 					  sizeof(config));
1777*8051334eSPho Tran 	if (result < 0)
1778*8051334eSPho Tran 		return result;
1779*8051334eSPho Tran 
1780*8051334eSPho Tran 	priv->gc.ngpio = 16;
1781*8051334eSPho Tran 	priv->gpio_pushpull = le16_to_cpu(config.reset_state.gpio_mode_pb1);
1782*8051334eSPho Tran 	gpio_latch = le16_to_cpu(config.reset_state.gpio_latch_pb1);
1783*8051334eSPho Tran 
1784*8051334eSPho Tran 	/*
1785*8051334eSPho Tran 	 * Mark all pins which are not in GPIO mode.
1786*8051334eSPho Tran 	 *
1787*8051334eSPho Tran 	 * Refer to table 9.1 "GPIO Mode alternate Functions" in the datasheet:
1788*8051334eSPho Tran 	 * https://www.silabs.com/documents/public/data-sheets/cp2108-datasheet.pdf
1789*8051334eSPho Tran 	 *
1790*8051334eSPho Tran 	 * Alternate functions of GPIO0 to GPIO3 are determine by enhancedfxn_ifc[0]
1791*8051334eSPho Tran 	 * and the similarly for the other pins; enhancedfxn_ifc[1]: GPIO4 to GPIO7,
1792*8051334eSPho Tran 	 * enhancedfxn_ifc[2]: GPIO8 to GPIO11, enhancedfxn_ifc[3]: GPIO12 to GPIO15.
1793*8051334eSPho Tran 	 */
1794*8051334eSPho Tran 	for (i = 0; i < 4; i++) {
1795*8051334eSPho Tran 		if (config.enhancedfxn_ifc[i] & CP2108_EF_IFC_GPIO_TXLED)
1796*8051334eSPho Tran 			priv->gpio_altfunc |= BIT(i * 4);
1797*8051334eSPho Tran 		if (config.enhancedfxn_ifc[i] & CP2108_EF_IFC_GPIO_RXLED)
1798*8051334eSPho Tran 			priv->gpio_altfunc |= BIT((i * 4) + 1);
1799*8051334eSPho Tran 		if (config.enhancedfxn_ifc[i] & CP2108_EF_IFC_GPIO_RS485)
1800*8051334eSPho Tran 			priv->gpio_altfunc |= BIT((i * 4) + 2);
1801*8051334eSPho Tran 		if (config.enhancedfxn_ifc[i] & CP2108_EF_IFC_GPIO_CLOCK)
1802*8051334eSPho Tran 			priv->gpio_altfunc |= BIT((i * 4) + 3);
1803*8051334eSPho Tran 	}
1804*8051334eSPho Tran 
1805*8051334eSPho Tran 	/*
1806*8051334eSPho Tran 	 * Like CP2102N, CP2108 has also no strict input and output pin
1807*8051334eSPho Tran 	 * modes. Do the same input mode emulation as CP2102N.
1808*8051334eSPho Tran 	 */
1809*8051334eSPho Tran 	for (i = 0; i < priv->gc.ngpio; ++i) {
1810*8051334eSPho Tran 		/*
1811*8051334eSPho Tran 		 * Set direction to "input" iff pin is open-drain and reset
1812*8051334eSPho Tran 		 * value is 1.
1813*8051334eSPho Tran 		 */
1814*8051334eSPho Tran 		if (!(priv->gpio_pushpull & BIT(i)) && (gpio_latch & BIT(i)))
1815*8051334eSPho Tran 			priv->gpio_input |= BIT(i);
1816*8051334eSPho Tran 	}
1817*8051334eSPho Tran 
1818*8051334eSPho Tran 	return 0;
1819*8051334eSPho Tran }
1820*8051334eSPho Tran 
1821c8acfe0aSKaroly Pados static int cp2102n_gpioconf_init(struct usb_serial *serial)
1822c8acfe0aSKaroly Pados {
1823c8acfe0aSKaroly Pados 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1824c8acfe0aSKaroly Pados 	const u16 config_size = 0x02a6;
1825c8acfe0aSKaroly Pados 	u8 gpio_rst_latch;
1826c8acfe0aSKaroly Pados 	u8 config_version;
1827c8acfe0aSKaroly Pados 	u8 gpio_pushpull;
1828c8acfe0aSKaroly Pados 	u8 *config_buf;
1829c8acfe0aSKaroly Pados 	u8 gpio_latch;
1830c8acfe0aSKaroly Pados 	u8 gpio_ctrl;
1831c8acfe0aSKaroly Pados 	int result;
1832c8acfe0aSKaroly Pados 	u8 i;
1833c8acfe0aSKaroly Pados 
1834c8acfe0aSKaroly Pados 	/*
1835c8acfe0aSKaroly Pados 	 * Retrieve device configuration from the device.
1836c8acfe0aSKaroly Pados 	 * The array received contains all customization settings done at the
1837c8acfe0aSKaroly Pados 	 * factory/manufacturer. Format of the array is documented at the
1838c8acfe0aSKaroly Pados 	 * time of writing at:
1839c8acfe0aSKaroly Pados 	 * https://www.silabs.com/community/interface/knowledge-base.entry.html/2017/03/31/cp2102n_setconfig-xsfa
1840c8acfe0aSKaroly Pados 	 */
1841c8acfe0aSKaroly Pados 	config_buf = kmalloc(config_size, GFP_KERNEL);
1842c8acfe0aSKaroly Pados 	if (!config_buf)
1843c8acfe0aSKaroly Pados 		return -ENOMEM;
1844c8acfe0aSKaroly Pados 
1845c8acfe0aSKaroly Pados 	result = cp210x_read_vendor_block(serial,
1846c8acfe0aSKaroly Pados 					  REQTYPE_DEVICE_TO_HOST,
1847c8acfe0aSKaroly Pados 					  CP210X_READ_2NCONFIG,
1848c8acfe0aSKaroly Pados 					  config_buf,
1849c8acfe0aSKaroly Pados 					  config_size);
1850c8acfe0aSKaroly Pados 	if (result < 0) {
1851c8acfe0aSKaroly Pados 		kfree(config_buf);
1852c8acfe0aSKaroly Pados 		return result;
1853c8acfe0aSKaroly Pados 	}
1854c8acfe0aSKaroly Pados 
1855c8acfe0aSKaroly Pados 	config_version = config_buf[CP210X_2NCONFIG_CONFIG_VERSION_IDX];
1856c8acfe0aSKaroly Pados 	gpio_pushpull = config_buf[CP210X_2NCONFIG_GPIO_MODE_IDX];
1857c8acfe0aSKaroly Pados 	gpio_ctrl = config_buf[CP210X_2NCONFIG_GPIO_CONTROL_IDX];
1858c8acfe0aSKaroly Pados 	gpio_rst_latch = config_buf[CP210X_2NCONFIG_GPIO_RSTLATCH_IDX];
1859c8acfe0aSKaroly Pados 
1860c8acfe0aSKaroly Pados 	kfree(config_buf);
1861c8acfe0aSKaroly Pados 
1862c8acfe0aSKaroly Pados 	/* Make sure this is a config format we understand. */
1863c8acfe0aSKaroly Pados 	if (config_version != 0x01)
1864c8acfe0aSKaroly Pados 		return -ENOTSUPP;
1865c8acfe0aSKaroly Pados 
1866c8acfe0aSKaroly Pados 	priv->gc.ngpio = 4;
1867c8acfe0aSKaroly Pados 
1868c8acfe0aSKaroly Pados 	/*
1869c8acfe0aSKaroly Pados 	 * Get default pin states after reset. Needed so we can determine
1870c8acfe0aSKaroly Pados 	 * the direction of an open-drain pin.
1871c8acfe0aSKaroly Pados 	 */
1872c8acfe0aSKaroly Pados 	gpio_latch = (gpio_rst_latch >> 3) & 0x0f;
1873c8acfe0aSKaroly Pados 
1874c8acfe0aSKaroly Pados 	/* 0 indicates open-drain mode, 1 is push-pull */
1875c8acfe0aSKaroly Pados 	priv->gpio_pushpull = (gpio_pushpull >> 3) & 0x0f;
1876c8acfe0aSKaroly Pados 
1877c8acfe0aSKaroly Pados 	/* 0 indicates GPIO mode, 1 is alternate function */
1878c8acfe0aSKaroly Pados 	priv->gpio_altfunc = (gpio_ctrl >> 2) & 0x0f;
1879c8acfe0aSKaroly Pados 
1880a49e1abfSMans Rullgard 	if (priv->partnum == CP210X_PARTNUM_CP2102N_QFN28) {
1881a49e1abfSMans Rullgard 		/*
1882a49e1abfSMans Rullgard 		 * For the QFN28 package, GPIO4-6 are controlled by
1883a49e1abfSMans Rullgard 		 * the low three bits of the mode/latch fields.
1884a49e1abfSMans Rullgard 		 * Contrary to the document linked above, the bits for
1885a49e1abfSMans Rullgard 		 * the SUSPEND pins are elsewhere.  No alternate
1886a49e1abfSMans Rullgard 		 * function is available for these pins.
1887a49e1abfSMans Rullgard 		 */
1888a49e1abfSMans Rullgard 		priv->gc.ngpio = 7;
1889a49e1abfSMans Rullgard 		gpio_latch |= (gpio_rst_latch & 7) << 4;
1890a49e1abfSMans Rullgard 		priv->gpio_pushpull |= (gpio_pushpull & 7) << 4;
1891a49e1abfSMans Rullgard 	}
1892a49e1abfSMans Rullgard 
1893c8acfe0aSKaroly Pados 	/*
1894c8acfe0aSKaroly Pados 	 * The CP2102N does not strictly has input and output pin modes,
1895c8acfe0aSKaroly Pados 	 * it only knows open-drain and push-pull modes which is set at
1896c8acfe0aSKaroly Pados 	 * factory. An open-drain pin can function both as an
1897c8acfe0aSKaroly Pados 	 * input or an output. We emulate input mode for open-drain pins
1898c8acfe0aSKaroly Pados 	 * by making sure they are not driven low, and we do not allow
1899c8acfe0aSKaroly Pados 	 * push-pull pins to be set as an input.
1900c8acfe0aSKaroly Pados 	 */
1901c8acfe0aSKaroly Pados 	for (i = 0; i < priv->gc.ngpio; ++i) {
1902c8acfe0aSKaroly Pados 		/*
1903c8acfe0aSKaroly Pados 		 * Set direction to "input" iff pin is open-drain and reset
1904c8acfe0aSKaroly Pados 		 * value is 1.
1905c8acfe0aSKaroly Pados 		 */
1906c8acfe0aSKaroly Pados 		if (!(priv->gpio_pushpull & BIT(i)) && (gpio_latch & BIT(i)))
1907c8acfe0aSKaroly Pados 			priv->gpio_input |= BIT(i);
1908c8acfe0aSKaroly Pados 	}
1909c8acfe0aSKaroly Pados 
1910c8acfe0aSKaroly Pados 	return 0;
1911c8acfe0aSKaroly Pados }
1912c8acfe0aSKaroly Pados 
1913c8acfe0aSKaroly Pados static int cp210x_gpio_init(struct usb_serial *serial)
1914c8acfe0aSKaroly Pados {
1915c8acfe0aSKaroly Pados 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1916c8acfe0aSKaroly Pados 	int result;
1917c8acfe0aSKaroly Pados 
1918c8acfe0aSKaroly Pados 	switch (priv->partnum) {
191915fb84b7SIcenowy Zheng 	case CP210X_PARTNUM_CP2104:
192015fb84b7SIcenowy Zheng 		result = cp2104_gpioconf_init(serial);
192115fb84b7SIcenowy Zheng 		break;
1922c8acfe0aSKaroly Pados 	case CP210X_PARTNUM_CP2105:
1923c8acfe0aSKaroly Pados 		result = cp2105_gpioconf_init(serial);
1924c8acfe0aSKaroly Pados 		break;
1925*8051334eSPho Tran 	case CP210X_PARTNUM_CP2108:
1926*8051334eSPho Tran 		/*
1927*8051334eSPho Tran 		 * The GPIOs are not tied to any specific port so only register
1928*8051334eSPho Tran 		 * once for interface 0.
1929*8051334eSPho Tran 		 */
1930*8051334eSPho Tran 		if (cp210x_interface_num(serial) != 0)
1931*8051334eSPho Tran 			return 0;
1932*8051334eSPho Tran 		result = cp2108_gpio_init(serial);
1933*8051334eSPho Tran 		break;
1934c8acfe0aSKaroly Pados 	case CP210X_PARTNUM_CP2102N_QFN28:
1935c8acfe0aSKaroly Pados 	case CP210X_PARTNUM_CP2102N_QFN24:
1936c8acfe0aSKaroly Pados 	case CP210X_PARTNUM_CP2102N_QFN20:
1937c8acfe0aSKaroly Pados 		result = cp2102n_gpioconf_init(serial);
1938c8acfe0aSKaroly Pados 		break;
1939c8acfe0aSKaroly Pados 	default:
1940c8acfe0aSKaroly Pados 		return 0;
1941c8acfe0aSKaroly Pados 	}
1942c8acfe0aSKaroly Pados 
1943c8acfe0aSKaroly Pados 	if (result < 0)
1944c8acfe0aSKaroly Pados 		return result;
1945c8acfe0aSKaroly Pados 
1946cf5276ceSMartyn Welch 	priv->gc.label = "cp210x";
1947cf5276ceSMartyn Welch 	priv->gc.get_direction = cp210x_gpio_direction_get;
1948cf5276ceSMartyn Welch 	priv->gc.direction_input = cp210x_gpio_direction_input;
1949cf5276ceSMartyn Welch 	priv->gc.direction_output = cp210x_gpio_direction_output;
1950cf5276ceSMartyn Welch 	priv->gc.get = cp210x_gpio_get;
1951cf5276ceSMartyn Welch 	priv->gc.set = cp210x_gpio_set;
19522956b5d9SMika Westerberg 	priv->gc.set_config = cp210x_gpio_set_config;
1953b979248dSJohan Hovold 	priv->gc.init_valid_mask = cp210x_gpio_init_valid_mask;
1954cf5276ceSMartyn Welch 	priv->gc.owner = THIS_MODULE;
1955cf5276ceSMartyn Welch 	priv->gc.parent = &serial->interface->dev;
1956cf5276ceSMartyn Welch 	priv->gc.base = -1;
1957cf5276ceSMartyn Welch 	priv->gc.can_sleep = true;
1958cf5276ceSMartyn Welch 
1959cf5276ceSMartyn Welch 	result = gpiochip_add_data(&priv->gc, serial);
1960cf5276ceSMartyn Welch 	if (!result)
19616b7271d2SJohan Hovold 		priv->gpio_registered = true;
1962cf5276ceSMartyn Welch 
1963cf5276ceSMartyn Welch 	return result;
1964cf5276ceSMartyn Welch }
1965cf5276ceSMartyn Welch 
1966cf5276ceSMartyn Welch static void cp210x_gpio_remove(struct usb_serial *serial)
1967cf5276ceSMartyn Welch {
1968cf5276ceSMartyn Welch 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
1969cf5276ceSMartyn Welch 
1970cf5276ceSMartyn Welch 	if (priv->gpio_registered) {
1971cf5276ceSMartyn Welch 		gpiochip_remove(&priv->gc);
19726b7271d2SJohan Hovold 		priv->gpio_registered = false;
1973cf5276ceSMartyn Welch 	}
1974cf5276ceSMartyn Welch }
1975cf5276ceSMartyn Welch 
1976cf5276ceSMartyn Welch #else
1977cf5276ceSMartyn Welch 
1978c8acfe0aSKaroly Pados static int cp210x_gpio_init(struct usb_serial *serial)
1979cf5276ceSMartyn Welch {
1980cf5276ceSMartyn Welch 	return 0;
1981cf5276ceSMartyn Welch }
1982cf5276ceSMartyn Welch 
1983cf5276ceSMartyn Welch static void cp210x_gpio_remove(struct usb_serial *serial)
1984cf5276ceSMartyn Welch {
1985cf5276ceSMartyn Welch 	/* Nothing to do */
1986cf5276ceSMartyn Welch }
1987cf5276ceSMartyn Welch 
1988cf5276ceSMartyn Welch #endif
1989cf5276ceSMartyn Welch 
1990e2ae67a3SKonstantin Shkolnyy static int cp210x_port_probe(struct usb_serial_port *port)
199103ee2515SGreg Kroah-Hartman {
1992e2ae67a3SKonstantin Shkolnyy 	struct usb_serial *serial = port->serial;
1993e2ae67a3SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv;
1994a5360a53SPreston Fick 
1995e2ae67a3SKonstantin Shkolnyy 	port_priv = kzalloc(sizeof(*port_priv), GFP_KERNEL);
1996e2ae67a3SKonstantin Shkolnyy 	if (!port_priv)
1997a5360a53SPreston Fick 		return -ENOMEM;
1998a5360a53SPreston Fick 
1999cf5276ceSMartyn Welch 	port_priv->bInterfaceNumber = cp210x_interface_num(serial);
20005951b850SJohan Hovold 	mutex_init(&port_priv->mutex);
2001a5360a53SPreston Fick 
2002e2ae67a3SKonstantin Shkolnyy 	usb_set_serial_port_data(port, port_priv);
2003a5360a53SPreston Fick 
200403ee2515SGreg Kroah-Hartman 	return 0;
200503ee2515SGreg Kroah-Hartman }
200603ee2515SGreg Kroah-Hartman 
2007c5d1448fSUwe Kleine-König static void cp210x_port_remove(struct usb_serial_port *port)
2008a5360a53SPreston Fick {
2009e2ae67a3SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv;
2010a5360a53SPreston Fick 
2011e2ae67a3SKonstantin Shkolnyy 	port_priv = usb_get_serial_port_data(port);
2012e2ae67a3SKonstantin Shkolnyy 	kfree(port_priv);
2013a5360a53SPreston Fick }
2014a5360a53SPreston Fick 
2015d4706c05SJohan Hovold static void cp210x_init_max_speed(struct usb_serial *serial)
2016d4706c05SJohan Hovold {
2017d4706c05SJohan Hovold 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
20187aecd7fcSJohan Hovold 	bool use_actual_rate = false;
201985bc2d91SJohanna Abrahamsson 	speed_t min = 300;
2020d4706c05SJohan Hovold 	speed_t max;
2021d4706c05SJohan Hovold 
2022d4706c05SJohan Hovold 	switch (priv->partnum) {
2023d4706c05SJohan Hovold 	case CP210X_PARTNUM_CP2101:
2024d4706c05SJohan Hovold 		max = 921600;
2025d4706c05SJohan Hovold 		break;
2026d4706c05SJohan Hovold 	case CP210X_PARTNUM_CP2102:
2027d4706c05SJohan Hovold 	case CP210X_PARTNUM_CP2103:
2028d4706c05SJohan Hovold 		max = 1000000;
2029d4706c05SJohan Hovold 		break;
2030d4706c05SJohan Hovold 	case CP210X_PARTNUM_CP2104:
20315edb65a3SJohan Hovold 		use_actual_rate = true;
20325edb65a3SJohan Hovold 		max = 2000000;
20335edb65a3SJohan Hovold 		break;
2034d4706c05SJohan Hovold 	case CP210X_PARTNUM_CP2108:
2035d4706c05SJohan Hovold 		max = 2000000;
2036d4706c05SJohan Hovold 		break;
2037d4706c05SJohan Hovold 	case CP210X_PARTNUM_CP2105:
20385edb65a3SJohan Hovold 		if (cp210x_interface_num(serial) == 0) {
20395edb65a3SJohan Hovold 			use_actual_rate = true;
2040d4706c05SJohan Hovold 			max = 2000000;	/* ECI */
20415edb65a3SJohan Hovold 		} else {
204285bc2d91SJohanna Abrahamsson 			min = 2400;
2043d4706c05SJohan Hovold 			max = 921600;	/* SCI */
20445edb65a3SJohan Hovold 		}
2045d4706c05SJohan Hovold 		break;
20466f0bcf72SKaroly Pados 	case CP210X_PARTNUM_CP2102N_QFN28:
20476f0bcf72SKaroly Pados 	case CP210X_PARTNUM_CP2102N_QFN24:
20486f0bcf72SKaroly Pados 	case CP210X_PARTNUM_CP2102N_QFN20:
20497aecd7fcSJohan Hovold 		use_actual_rate = true;
20506f0bcf72SKaroly Pados 		max = 3000000;
20516f0bcf72SKaroly Pados 		break;
2052d4706c05SJohan Hovold 	default:
2053d4706c05SJohan Hovold 		max = 2000000;
2054d4706c05SJohan Hovold 		break;
2055d4706c05SJohan Hovold 	}
2056d4706c05SJohan Hovold 
205785bc2d91SJohanna Abrahamsson 	priv->min_speed = min;
2058d4706c05SJohan Hovold 	priv->max_speed = max;
20597aecd7fcSJohan Hovold 	priv->use_actual_rate = use_actual_rate;
2060d4706c05SJohan Hovold }
2061d4706c05SJohan Hovold 
2062cf5276ceSMartyn Welch static int cp210x_attach(struct usb_serial *serial)
2063cf5276ceSMartyn Welch {
2064cf5276ceSMartyn Welch 	int result;
2065cf5276ceSMartyn Welch 	struct cp210x_serial_private *priv;
2066cf5276ceSMartyn Welch 
2067cf5276ceSMartyn Welch 	priv = kzalloc(sizeof(*priv), GFP_KERNEL);
2068cf5276ceSMartyn Welch 	if (!priv)
2069cf5276ceSMartyn Welch 		return -ENOMEM;
2070cf5276ceSMartyn Welch 
2071cf5276ceSMartyn Welch 	result = cp210x_read_vendor_block(serial, REQTYPE_DEVICE_TO_HOST,
2072cf5276ceSMartyn Welch 					  CP210X_GET_PARTNUM, &priv->partnum,
2073cf5276ceSMartyn Welch 					  sizeof(priv->partnum));
20747eac35eaSSebastian Frei 	if (result < 0) {
20757eac35eaSSebastian Frei 		dev_warn(&serial->interface->dev,
20767eac35eaSSebastian Frei 			 "querying part number failed\n");
20777eac35eaSSebastian Frei 		priv->partnum = CP210X_PARTNUM_UNKNOWN;
20787eac35eaSSebastian Frei 	}
2079cf5276ceSMartyn Welch 
2080cf5276ceSMartyn Welch 	usb_set_serial_data(serial, priv);
2081cf5276ceSMartyn Welch 
2082d4706c05SJohan Hovold 	cp210x_init_max_speed(serial);
2083d4706c05SJohan Hovold 
2084c8acfe0aSKaroly Pados 	result = cp210x_gpio_init(serial);
2085cf5276ceSMartyn Welch 	if (result < 0) {
2086c8acfe0aSKaroly Pados 		dev_err(&serial->interface->dev, "GPIO initialisation failed: %d\n",
2087c8acfe0aSKaroly Pados 				result);
2088cf5276ceSMartyn Welch 	}
2089cf5276ceSMartyn Welch 
2090cf5276ceSMartyn Welch 	return 0;
2091cf5276ceSMartyn Welch }
2092cf5276ceSMartyn Welch 
2093cf5276ceSMartyn Welch static void cp210x_disconnect(struct usb_serial *serial)
2094cf5276ceSMartyn Welch {
2095cf5276ceSMartyn Welch 	cp210x_gpio_remove(serial);
2096cf5276ceSMartyn Welch }
2097cf5276ceSMartyn Welch 
2098cf5276ceSMartyn Welch static void cp210x_release(struct usb_serial *serial)
2099cf5276ceSMartyn Welch {
2100cf5276ceSMartyn Welch 	struct cp210x_serial_private *priv = usb_get_serial_data(serial);
2101cf5276ceSMartyn Welch 
2102cf5276ceSMartyn Welch 	cp210x_gpio_remove(serial);
2103cf5276ceSMartyn Welch 
2104cf5276ceSMartyn Welch 	kfree(priv);
2105cf5276ceSMartyn Welch }
2106cf5276ceSMartyn Welch 
210768e24113SGreg Kroah-Hartman module_usb_serial_driver(serial_drivers, id_table);
210803ee2515SGreg Kroah-Hartman 
210903ee2515SGreg Kroah-Hartman MODULE_DESCRIPTION(DRIVER_DESC);
2110627cfa89SJohan Hovold MODULE_LICENSE("GPL v2");
2111