xref: /linux/drivers/usb/serial/cp210x.c (revision 6f923a0134d9868a71db19cca1fae551a27b46f5)
103ee2515SGreg Kroah-Hartman /*
24cc27bd6SCraig Shelley  * Silicon Laboratories CP210x USB to RS232 serial adaptor driver
303ee2515SGreg Kroah-Hartman  *
403ee2515SGreg Kroah-Hartman  * Copyright (C) 2005 Craig Shelley (craig@microtron.org.uk)
503ee2515SGreg Kroah-Hartman  *
603ee2515SGreg Kroah-Hartman  *	This program is free software; you can redistribute it and/or
703ee2515SGreg Kroah-Hartman  *	modify it under the terms of the GNU General Public License version
803ee2515SGreg Kroah-Hartman  *	2 as published by the Free Software Foundation.
903ee2515SGreg Kroah-Hartman  *
1003ee2515SGreg Kroah-Hartman  * Support to set flow control line levels using TIOCMGET and TIOCMSET
1103ee2515SGreg Kroah-Hartman  * thanks to Karl Hiramoto karl@hiramoto.org. RTSCTS hardware flow
1203ee2515SGreg Kroah-Hartman  * control thanks to Munir Nassar nassarmu@real-time.com
1303ee2515SGreg Kroah-Hartman  *
1403ee2515SGreg Kroah-Hartman  */
1503ee2515SGreg Kroah-Hartman 
1603ee2515SGreg Kroah-Hartman #include <linux/kernel.h>
1703ee2515SGreg Kroah-Hartman #include <linux/errno.h>
1803ee2515SGreg Kroah-Hartman #include <linux/slab.h>
1903ee2515SGreg Kroah-Hartman #include <linux/tty.h>
2003ee2515SGreg Kroah-Hartman #include <linux/tty_flip.h>
2103ee2515SGreg Kroah-Hartman #include <linux/module.h>
2203ee2515SGreg Kroah-Hartman #include <linux/moduleparam.h>
2303ee2515SGreg Kroah-Hartman #include <linux/usb.h>
2403ee2515SGreg Kroah-Hartman #include <linux/uaccess.h>
2503ee2515SGreg Kroah-Hartman #include <linux/usb/serial.h>
2603ee2515SGreg Kroah-Hartman 
274cc27bd6SCraig Shelley #define DRIVER_DESC "Silicon Labs CP210x RS232 serial adaptor driver"
2803ee2515SGreg Kroah-Hartman 
2903ee2515SGreg Kroah-Hartman /*
3003ee2515SGreg Kroah-Hartman  * Function Prototypes
3103ee2515SGreg Kroah-Hartman  */
32a509a7e4SAlan Cox static int cp210x_open(struct tty_struct *tty, struct usb_serial_port *);
334cc27bd6SCraig Shelley static void cp210x_close(struct usb_serial_port *);
344f2ab888SJohan Hovold static void cp210x_get_termios(struct tty_struct *, struct usb_serial_port *);
354cc27bd6SCraig Shelley static void cp210x_get_termios_port(struct usb_serial_port *port,
36d2ad67b3SVomLehn 	unsigned int *cflagp, unsigned int *baudp);
37e5990874SJohan Hovold static void cp210x_change_speed(struct tty_struct *, struct usb_serial_port *,
38e5990874SJohan Hovold 							struct ktermios *);
394cc27bd6SCraig Shelley static void cp210x_set_termios(struct tty_struct *, struct usb_serial_port *,
4003ee2515SGreg Kroah-Hartman 							struct ktermios*);
41*6f923a01SKonstantin Shkolnyy static bool cp210x_tx_empty(struct usb_serial_port *port);
4260b33c13SAlan Cox static int cp210x_tiocmget(struct tty_struct *);
4320b9d177SAlan Cox static int cp210x_tiocmset(struct tty_struct *, unsigned int, unsigned int);
4420b9d177SAlan Cox static int cp210x_tiocmset_port(struct usb_serial_port *port,
45d2ad67b3SVomLehn 		unsigned int, unsigned int);
464cc27bd6SCraig Shelley static void cp210x_break_ctl(struct tty_struct *, int);
47e2ae67a3SKonstantin Shkolnyy static int cp210x_port_probe(struct usb_serial_port *);
48e2ae67a3SKonstantin Shkolnyy static int cp210x_port_remove(struct usb_serial_port *);
49d94c7bd4SAlan Cox static void cp210x_dtr_rts(struct usb_serial_port *p, int on);
5003ee2515SGreg Kroah-Hartman 
517d40d7e8SNémeth Márton static const struct usb_device_id id_table[] = {
522f1136d1SDJ Delorie 	{ USB_DEVICE(0x045B, 0x0053) }, /* Renesas RX610 RX-Stick */
5303ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x0471, 0x066A) }, /* AKTAKOM ACE-1001 cable */
5403ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x0489, 0xE000) }, /* Pirelli Broadband S.p.A, DP-L10 SIP/GSM Mobile */
555b22a32eSA E Lawrence 	{ USB_DEVICE(0x0489, 0xE003) }, /* Pirelli Broadband S.p.A, DP-L10 SIP/GSM Mobile */
56b7c7cbc8SCraig Shelley 	{ USB_DEVICE(0x0745, 0x1000) }, /* CipherLab USB CCD Barcode Scanner 1000 */
5790625070SLuiz Angelo Daros de Luca 	{ USB_DEVICE(0x0846, 0x1100) }, /* NetGear Managed Switch M4100 series, M5300 series, M7100 series */
5803ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x08e6, 0x5501) }, /* Gemalto Prox-PU/CU contactless smartcard reader */
59b7c7cbc8SCraig Shelley 	{ USB_DEVICE(0x08FD, 0x000A) }, /* Digianswer A/S , ZigBee/802.15.4 MAC Device */
60a6f03312SLennart Sorensen 	{ USB_DEVICE(0x0908, 0x01FF) }, /* Siemens RUGGEDCOM USB Serial Console */
61eefd9029SCraig Shelley 	{ USB_DEVICE(0x0BED, 0x1100) }, /* MEI (TM) Cashflow-SC Bill/Voucher Acceptor */
62eefd9029SCraig Shelley 	{ USB_DEVICE(0x0BED, 0x1101) }, /* MEI series 2000 Combo Acceptor */
6303ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x0FCF, 0x1003) }, /* Dynastream ANT development board */
6403ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x0FCF, 0x1004) }, /* Dynastream ANT2USB */
6503ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x0FCF, 0x1006) }, /* Dynastream ANT development board */
668de7f4daSLuis Llorente Campo 	{ USB_DEVICE(0x0FDE, 0xCA05) }, /* OWL Wireless Electricity Monitor CM-160 */
6703ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10A6, 0xAA26) }, /* Knock-off DCU-11 cable */
6803ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10AB, 0x10C5) }, /* Siemens MC60 Cable */
6903ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10B5, 0xAC70) }, /* Nokia CA-42 USB */
70b7c7cbc8SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x0F91) }, /* Vstabi */
710601e116SAmit Kucheria 	{ USB_DEVICE(0x10C4, 0x1101) }, /* Arkham Technology DS101 Bus Monitor */
720601e116SAmit Kucheria 	{ USB_DEVICE(0x10C4, 0x1601) }, /* Arkham Technology DS101 Adapter */
7303ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x800A) }, /* SPORTident BSM7-D-USB main station */
7403ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x803B) }, /* Pololu USB-serial converter */
75eefd9029SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x8044) }, /* Cygnal Debug Adapter */
76eefd9029SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x804E) }, /* Software Bisque Paramount ME build-in converter */
7703ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x8053) }, /* Enfora EDG1228 */
7803ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x8054) }, /* Enfora GSM2228 */
7903ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x8066) }, /* Argussoft In-System Programmer */
80eefd9029SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x806F) }, /* IMS USB to RS422 Converter Cable */
8103ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x807A) }, /* Crumb128 board */
825bbfa6f4SMikko Tuumanen 	{ USB_DEVICE(0x10C4, 0x80C4) }, /* Cygnal Integrated Products, Inc., Optris infrared thermometer */
8303ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x80CA) }, /* Degree Controls Inc */
8403ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x80DD) }, /* Tracient RFID */
8503ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x80F6) }, /* Suunto sports instrument */
8603ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x8115) }, /* Arygon NFC/Mifare Reader */
8703ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x813D) }, /* Burnside Telecom Deskmobile */
888bf16ba7SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x813F) }, /* Tams Master Easy Control */
8903ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x814A) }, /* West Mountain Radio RIGblaster P&P */
9003ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x814B) }, /* West Mountain Radio RIGtalk */
91a57e82a1SSteve Conklin 	{ USB_DEVICE(0x2405, 0x0003) }, /* West Mountain Radio RIGblaster Advantage */
920bf7a81cSJason Detring 	{ USB_DEVICE(0x10C4, 0x8156) }, /* B&G H3000 link cable */
9303ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x815E) }, /* Helicomm IP-Link 1220-DVM */
943fcc8f96SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x815F) }, /* Timewave HamLinkUSB */
95eefd9029SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x818B) }, /* AVIT Research USB to TTL */
9603ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x819F) }, /* MJS USB Toslink Switcher */
9703ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x81A6) }, /* ThinkOptics WavIt */
9808e87d0dSMalte Schröder 	{ USB_DEVICE(0x10C4, 0x81A9) }, /* Multiplex RC Interface */
9903ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x81AC) }, /* MSD Dash Hawk */
100eefd9029SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x81AD) }, /* INSYS USB Modem */
10103ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x81C8) }, /* Lipowsky Industrie Elektronik GmbH, Baby-JTAG */
10203ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x81E2) }, /* Lipowsky Industrie Elektronik GmbH, Baby-LIN */
10303ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x81E7) }, /* Aerocomm Radio */
104bd07c551SAlan Cox 	{ USB_DEVICE(0x10C4, 0x81E8) }, /* Zephyr Bioharness */
105b7c7cbc8SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x81F2) }, /* C1007 HF band RFID controller */
10603ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x8218) }, /* Lipowsky Industrie Elektronik GmbH, HARP-1 */
10703ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x822B) }, /* Modem EDGE(GSM) Comander 2 */
10825985edcSLucas De Marchi 	{ USB_DEVICE(0x10C4, 0x826B) }, /* Cygnal Integrated Products, Inc., Fasttrax GPS demonstration module */
10972b30079STristan Bruns 	{ USB_DEVICE(0x10C4, 0x8281) }, /* Nanotec Plug & Drive */
110c851e83fSFlorian Fainelli 	{ USB_DEVICE(0x10C4, 0x8293) }, /* Telegesis ETRX2USB */
111b7c7cbc8SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x82F9) }, /* Procyon AVS */
11203ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x8341) }, /* Siemens MC35PU GPRS Modem */
1138bf16ba7SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x8382) }, /* Cygnal Integrated Products, Inc. */
11403ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0x83A8) }, /* Amber Wireless AMB2560 */
115faea63f7SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x83D8) }, /* DekTec DTA Plus VHF/UHF Booster/Attenuator */
1168bf16ba7SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x8411) }, /* Kyocera GPS Module */
117faea63f7SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x8418) }, /* IRZ Automation Teleport SG-10 GSM/GPRS Modem */
118d23bac9fSAlex Stephens 	{ USB_DEVICE(0x10C4, 0x846E) }, /* BEI USB Sensor Interface (VCP) */
119541e05ecSCraig Shelley 	{ USB_DEVICE(0x10C4, 0x8477) }, /* Balluff RFID */
1204eff0b40SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x85EA) }, /* AC-Services IBUS-IF */
1214eff0b40SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x85EB) }, /* AC-Services CIS-IBUS */
122356fe44fSMarkus Becker 	{ USB_DEVICE(0x10C4, 0x85F8) }, /* Virtenio Preon32 */
1234eff0b40SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x8664) }, /* AC-Services CAN-IF */
1244eff0b40SCraig Shelley 	{ USB_DEVICE(0x10C4, 0x8665) }, /* AC-Services OBD-IF */
1251ae78a48SDavid Peterson 	{ USB_DEVICE(0x10C4, 0x8856) },	/* CEL EM357 ZigBee USB Stick - LR */
1261ae78a48SDavid Peterson 	{ USB_DEVICE(0x10C4, 0x8857) },	/* CEL EM357 ZigBee USB Stick */
12776811569SSami Rahman 	{ USB_DEVICE(0x10C4, 0x88A4) }, /* MMB Networks ZigBee USB Device */
12876811569SSami Rahman 	{ USB_DEVICE(0x10C4, 0x88A5) }, /* Planet Innovation Ingeni ZigBee USB Device */
129bfc2d7dfSJoe Savage 	{ USB_DEVICE(0x10C4, 0x8946) }, /* Ketra N1 Wireless Interface */
1301ae78a48SDavid Peterson 	{ USB_DEVICE(0x10C4, 0x8977) },	/* CEL MeshWorks DevKit Device */
131c735ed74SMark Edwards 	{ USB_DEVICE(0x10C4, 0x8998) }, /* KCF Technologies PRN */
132df72d588SJohn D. Blair 	{ USB_DEVICE(0x10C4, 0x8A2A) }, /* HubZ dual ZigBee and Z-Wave dongle */
13303ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0xEA60) }, /* Silicon Labs factory default */
13403ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0xEA61) }, /* Silicon Labs factory default */
135a5360a53SPreston Fick 	{ USB_DEVICE(0x10C4, 0xEA70) }, /* Silicon Labs factory default */
136a5360a53SPreston Fick 	{ USB_DEVICE(0x10C4, 0xEA80) }, /* Silicon Labs factory default */
137eefd9029SCraig Shelley 	{ USB_DEVICE(0x10C4, 0xEA71) }, /* Infinity GPS-MIC-1 Radio Monophone */
13803ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0xF001) }, /* Elan Digital Systems USBscope50 */
13903ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0xF002) }, /* Elan Digital Systems USBwave12 */
14003ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0xF003) }, /* Elan Digital Systems USBpulse100 */
14103ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C4, 0xF004) }, /* Elan Digital Systems USBcount50 */
14203ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x10C5, 0xEA61) }, /* Silicon Labs MobiData GPRS USB Modem */
143b7c7cbc8SCraig Shelley 	{ USB_DEVICE(0x10CE, 0xEA6A) }, /* Silicon Labs MobiData GPRS USB Modem 100EU */
14403ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x13AD, 0x9999) }, /* Baltech card reader */
145b7c7cbc8SCraig Shelley 	{ USB_DEVICE(0x1555, 0x0004) }, /* Owen AC4 USB-RS485 Converter */
1463fcc8f96SCraig Shelley 	{ USB_DEVICE(0x166A, 0x0201) }, /* Clipsal 5500PACA C-Bus Pascal Automation Controller */
1473fcc8f96SCraig Shelley 	{ USB_DEVICE(0x166A, 0x0301) }, /* Clipsal 5800PC C-Bus Wireless PC Interface */
14803ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x166A, 0x0303) }, /* Clipsal 5500PCU C-Bus USB interface */
1493fcc8f96SCraig Shelley 	{ USB_DEVICE(0x166A, 0x0304) }, /* Clipsal 5000CT2 C-Bus Black and White Touchscreen */
1503fcc8f96SCraig Shelley 	{ USB_DEVICE(0x166A, 0x0305) }, /* Clipsal C-5000CT2 C-Bus Spectrum Colour Touchscreen */
1513fcc8f96SCraig Shelley 	{ USB_DEVICE(0x166A, 0x0401) }, /* Clipsal L51xx C-Bus Architectural Dimmer */
1523fcc8f96SCraig Shelley 	{ USB_DEVICE(0x166A, 0x0101) }, /* Clipsal 5560884 C-Bus Multi-room Audio Matrix Switcher */
153675af708SMichiel vd Garde 	{ USB_DEVICE(0x16C0, 0x09B0) }, /* Lunatico Seletek */
154675af708SMichiel vd Garde 	{ USB_DEVICE(0x16C0, 0x09B1) }, /* Lunatico Seletek */
15503ee2515SGreg Kroah-Hartman 	{ USB_DEVICE(0x16D6, 0x0001) }, /* Jablotron serial interface */
156356c5a48SAlessio Igor Bogani 	{ USB_DEVICE(0x16DC, 0x0010) }, /* W-IE-NE-R Plein & Baus GmbH PL512 Power Supply */
157356c5a48SAlessio Igor Bogani 	{ USB_DEVICE(0x16DC, 0x0011) }, /* W-IE-NE-R Plein & Baus GmbH RCM Remote Control for MARATON Power Supply */
158356c5a48SAlessio Igor Bogani 	{ USB_DEVICE(0x16DC, 0x0012) }, /* W-IE-NE-R Plein & Baus GmbH MPOD Multi Channel Power Supply */
159356c5a48SAlessio Igor Bogani 	{ USB_DEVICE(0x16DC, 0x0015) }, /* W-IE-NE-R Plein & Baus GmbH CML Control, Monitoring and Data Logger */
160c6c1e449SBruno Thomsen 	{ USB_DEVICE(0x17A8, 0x0001) }, /* Kamstrup Optical Eye/3-wire */
161c6c1e449SBruno Thomsen 	{ USB_DEVICE(0x17A8, 0x0005) }, /* Kamstrup M-Bus Master MultiPort 250D */
162541e05ecSCraig Shelley 	{ USB_DEVICE(0x17F4, 0xAAAA) }, /* Wavesense Jazz blood glucose meter */
163541e05ecSCraig Shelley 	{ USB_DEVICE(0x1843, 0x0200) }, /* Vaisala USB Instrument Cable */
164541e05ecSCraig Shelley 	{ USB_DEVICE(0x18EF, 0xE00F) }, /* ELV USB-I2C-Interface */
165b579fa52SBarry Grussling 	{ USB_DEVICE(0x1ADB, 0x0001) }, /* Schweitzer Engineering C662 Cable */
166b9326057SAndras Kovacs 	{ USB_DEVICE(0x1B1C, 0x1C00) }, /* Corsair USB Dongle */
16735cc83eaSNathaniel Ting 	{ USB_DEVICE(0x1BA4, 0x0002) },	/* Silicon Labs 358x factory default */
16893ad03d6SAnders Larsen 	{ USB_DEVICE(0x1BE3, 0x07A6) }, /* WAGO 750-923 USB Service Cable */
169dee80ad1SAndreas Bomholtz 	{ USB_DEVICE(0x1D6F, 0x0010) }, /* Seluxit ApS RF Dongle */
1703fcc8f96SCraig Shelley 	{ USB_DEVICE(0x1E29, 0x0102) }, /* Festo CPX-USB */
1713fcc8f96SCraig Shelley 	{ USB_DEVICE(0x1E29, 0x0501) }, /* Festo CMSP */
172be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0100) }, /* Lake Shore Model 121 Current Source */
173be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0200) }, /* Lake Shore Model 218A Temperature Monitor */
174be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0201) }, /* Lake Shore Model 219 Temperature Monitor */
175be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0202) }, /* Lake Shore Model 233 Temperature Transmitter */
176be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0203) }, /* Lake Shore Model 235 Temperature Transmitter */
177be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0300) }, /* Lake Shore Model 335 Temperature Controller */
178be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0301) }, /* Lake Shore Model 336 Temperature Controller */
179be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0302) }, /* Lake Shore Model 350 Temperature Controller */
180be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0303) }, /* Lake Shore Model 371 AC Bridge */
181be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0400) }, /* Lake Shore Model 411 Handheld Gaussmeter */
182be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0401) }, /* Lake Shore Model 425 Gaussmeter */
183be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0402) }, /* Lake Shore Model 455A Gaussmeter */
184be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0403) }, /* Lake Shore Model 475A Gaussmeter */
185be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0404) }, /* Lake Shore Model 465 Three Axis Gaussmeter */
186be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0600) }, /* Lake Shore Model 625A Superconducting MPS */
187be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0601) }, /* Lake Shore Model 642A Magnet Power Supply */
188be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0602) }, /* Lake Shore Model 648 Magnet Power Supply */
189be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0700) }, /* Lake Shore Model 737 VSM Controller */
190be3101c2SMatwey V. Kornilov 	{ USB_DEVICE(0x1FB9, 0x0701) }, /* Lake Shore Model 776 Hall Matrix */
191f98a7aa8SPeter Sanford 	{ USB_DEVICE(0x2626, 0xEA60) }, /* Aruba Networks 7xxx USB Serial Console */
192791b7d7cSRenato Caldas 	{ USB_DEVICE(0x3195, 0xF190) }, /* Link Instruments MSO-19 */
1933fcc8f96SCraig Shelley 	{ USB_DEVICE(0x3195, 0xF280) }, /* Link Instruments MSO-28 */
1943fcc8f96SCraig Shelley 	{ USB_DEVICE(0x3195, 0xF281) }, /* Link Instruments MSO-28 */
195541e05ecSCraig Shelley 	{ USB_DEVICE(0x413C, 0x9500) }, /* DW700 GPS USB interface */
19603ee2515SGreg Kroah-Hartman 	{ } /* Terminating Entry */
19703ee2515SGreg Kroah-Hartman };
19803ee2515SGreg Kroah-Hartman 
19903ee2515SGreg Kroah-Hartman MODULE_DEVICE_TABLE(usb, id_table);
20003ee2515SGreg Kroah-Hartman 
201e2ae67a3SKonstantin Shkolnyy struct cp210x_port_private {
202a5360a53SPreston Fick 	__u8			bInterfaceNumber;
203d0bf1ff0SKonstantin Shkolnyy 	bool			has_swapped_line_ctl;
204a5360a53SPreston Fick };
205a5360a53SPreston Fick 
2064cc27bd6SCraig Shelley static struct usb_serial_driver cp210x_device = {
20703ee2515SGreg Kroah-Hartman 	.driver = {
20803ee2515SGreg Kroah-Hartman 		.owner =	THIS_MODULE,
2094cc27bd6SCraig Shelley 		.name =		"cp210x",
21003ee2515SGreg Kroah-Hartman 	},
21103ee2515SGreg Kroah-Hartman 	.id_table		= id_table,
21203ee2515SGreg Kroah-Hartman 	.num_ports		= 1,
213aea006b9SJohan Hovold 	.bulk_in_size		= 256,
214d4e598f6SJohan Hovold 	.bulk_out_size		= 256,
2154cc27bd6SCraig Shelley 	.open			= cp210x_open,
2164cc27bd6SCraig Shelley 	.close			= cp210x_close,
2174cc27bd6SCraig Shelley 	.break_ctl		= cp210x_break_ctl,
2184cc27bd6SCraig Shelley 	.set_termios		= cp210x_set_termios,
219*6f923a01SKonstantin Shkolnyy 	.tx_empty		= cp210x_tx_empty,
2204cc27bd6SCraig Shelley 	.tiocmget		= cp210x_tiocmget,
2214cc27bd6SCraig Shelley 	.tiocmset		= cp210x_tiocmset,
222e2ae67a3SKonstantin Shkolnyy 	.port_probe		= cp210x_port_probe,
223e2ae67a3SKonstantin Shkolnyy 	.port_remove		= cp210x_port_remove,
224d14fc1a7SLibor Pechacek 	.dtr_rts		= cp210x_dtr_rts
22503ee2515SGreg Kroah-Hartman };
22603ee2515SGreg Kroah-Hartman 
22708a4f6bcSAlan Stern static struct usb_serial_driver * const serial_drivers[] = {
22808a4f6bcSAlan Stern 	&cp210x_device, NULL
22908a4f6bcSAlan Stern };
23008a4f6bcSAlan Stern 
23103ee2515SGreg Kroah-Hartman /* Config request types */
23232445605SPreston Fick #define REQTYPE_HOST_TO_INTERFACE	0x41
23332445605SPreston Fick #define REQTYPE_INTERFACE_TO_HOST	0xc1
23432445605SPreston Fick #define REQTYPE_HOST_TO_DEVICE	0x40
23532445605SPreston Fick #define REQTYPE_DEVICE_TO_HOST	0xc0
23603ee2515SGreg Kroah-Hartman 
23793ef1f1fSCraig Shelley /* Config request codes */
23893ef1f1fSCraig Shelley #define CP210X_IFC_ENABLE	0x00
23993ef1f1fSCraig Shelley #define CP210X_SET_BAUDDIV	0x01
24093ef1f1fSCraig Shelley #define CP210X_GET_BAUDDIV	0x02
24193ef1f1fSCraig Shelley #define CP210X_SET_LINE_CTL	0x03
24293ef1f1fSCraig Shelley #define CP210X_GET_LINE_CTL	0x04
24393ef1f1fSCraig Shelley #define CP210X_SET_BREAK	0x05
24493ef1f1fSCraig Shelley #define CP210X_IMM_CHAR		0x06
24593ef1f1fSCraig Shelley #define CP210X_SET_MHS		0x07
24693ef1f1fSCraig Shelley #define CP210X_GET_MDMSTS	0x08
24793ef1f1fSCraig Shelley #define CP210X_SET_XON		0x09
24893ef1f1fSCraig Shelley #define CP210X_SET_XOFF		0x0A
24993ef1f1fSCraig Shelley #define CP210X_SET_EVENTMASK	0x0B
25093ef1f1fSCraig Shelley #define CP210X_GET_EVENTMASK	0x0C
25193ef1f1fSCraig Shelley #define CP210X_SET_CHAR		0x0D
25293ef1f1fSCraig Shelley #define CP210X_GET_CHARS	0x0E
25393ef1f1fSCraig Shelley #define CP210X_GET_PROPS	0x0F
25493ef1f1fSCraig Shelley #define CP210X_GET_COMM_STATUS	0x10
25593ef1f1fSCraig Shelley #define CP210X_RESET		0x11
25693ef1f1fSCraig Shelley #define CP210X_PURGE		0x12
25793ef1f1fSCraig Shelley #define CP210X_SET_FLOW		0x13
25893ef1f1fSCraig Shelley #define CP210X_GET_FLOW		0x14
25993ef1f1fSCraig Shelley #define CP210X_EMBED_EVENTS	0x15
26093ef1f1fSCraig Shelley #define CP210X_GET_EVENTSTATE	0x16
26193ef1f1fSCraig Shelley #define CP210X_SET_CHARS	0x19
2627f482fc8SPreston Fick #define CP210X_GET_BAUDRATE	0x1D
2637f482fc8SPreston Fick #define CP210X_SET_BAUDRATE	0x1E
26403ee2515SGreg Kroah-Hartman 
26593ef1f1fSCraig Shelley /* CP210X_IFC_ENABLE */
26603ee2515SGreg Kroah-Hartman #define UART_ENABLE		0x0001
26703ee2515SGreg Kroah-Hartman #define UART_DISABLE		0x0000
26803ee2515SGreg Kroah-Hartman 
26993ef1f1fSCraig Shelley /* CP210X_(SET|GET)_BAUDDIV */
27003ee2515SGreg Kroah-Hartman #define BAUD_RATE_GEN_FREQ	0x384000
27103ee2515SGreg Kroah-Hartman 
27293ef1f1fSCraig Shelley /* CP210X_(SET|GET)_LINE_CTL */
27303ee2515SGreg Kroah-Hartman #define BITS_DATA_MASK		0X0f00
27403ee2515SGreg Kroah-Hartman #define BITS_DATA_5		0X0500
27503ee2515SGreg Kroah-Hartman #define BITS_DATA_6		0X0600
27603ee2515SGreg Kroah-Hartman #define BITS_DATA_7		0X0700
27703ee2515SGreg Kroah-Hartman #define BITS_DATA_8		0X0800
27803ee2515SGreg Kroah-Hartman #define BITS_DATA_9		0X0900
27903ee2515SGreg Kroah-Hartman 
28003ee2515SGreg Kroah-Hartman #define BITS_PARITY_MASK	0x00f0
28103ee2515SGreg Kroah-Hartman #define BITS_PARITY_NONE	0x0000
28203ee2515SGreg Kroah-Hartman #define BITS_PARITY_ODD		0x0010
28303ee2515SGreg Kroah-Hartman #define BITS_PARITY_EVEN	0x0020
28403ee2515SGreg Kroah-Hartman #define BITS_PARITY_MARK	0x0030
28503ee2515SGreg Kroah-Hartman #define BITS_PARITY_SPACE	0x0040
28603ee2515SGreg Kroah-Hartman 
28703ee2515SGreg Kroah-Hartman #define BITS_STOP_MASK		0x000f
28803ee2515SGreg Kroah-Hartman #define BITS_STOP_1		0x0000
28903ee2515SGreg Kroah-Hartman #define BITS_STOP_1_5		0x0001
29003ee2515SGreg Kroah-Hartman #define BITS_STOP_2		0x0002
29103ee2515SGreg Kroah-Hartman 
29293ef1f1fSCraig Shelley /* CP210X_SET_BREAK */
29372916791SCraig Shelley #define BREAK_ON		0x0001
29472916791SCraig Shelley #define BREAK_OFF		0x0000
29503ee2515SGreg Kroah-Hartman 
29693ef1f1fSCraig Shelley /* CP210X_(SET_MHS|GET_MDMSTS) */
29703ee2515SGreg Kroah-Hartman #define CONTROL_DTR		0x0001
29803ee2515SGreg Kroah-Hartman #define CONTROL_RTS		0x0002
29903ee2515SGreg Kroah-Hartman #define CONTROL_CTS		0x0010
30003ee2515SGreg Kroah-Hartman #define CONTROL_DSR		0x0020
30103ee2515SGreg Kroah-Hartman #define CONTROL_RING		0x0040
30203ee2515SGreg Kroah-Hartman #define CONTROL_DCD		0x0080
30303ee2515SGreg Kroah-Hartman #define CONTROL_WRITE_DTR	0x0100
30403ee2515SGreg Kroah-Hartman #define CONTROL_WRITE_RTS	0x0200
30503ee2515SGreg Kroah-Hartman 
306*6f923a01SKonstantin Shkolnyy /* CP210X_GET_COMM_STATUS returns these 0x13 bytes */
307*6f923a01SKonstantin Shkolnyy struct cp210x_comm_status {
308*6f923a01SKonstantin Shkolnyy 	__le32   ulErrors;
309*6f923a01SKonstantin Shkolnyy 	__le32   ulHoldReasons;
310*6f923a01SKonstantin Shkolnyy 	__le32   ulAmountInInQueue;
311*6f923a01SKonstantin Shkolnyy 	__le32   ulAmountInOutQueue;
312*6f923a01SKonstantin Shkolnyy 	u8       bEofReceived;
313*6f923a01SKonstantin Shkolnyy 	u8       bWaitForImmediate;
314*6f923a01SKonstantin Shkolnyy 	u8       bReserved;
315*6f923a01SKonstantin Shkolnyy } __packed;
316*6f923a01SKonstantin Shkolnyy 
31703ee2515SGreg Kroah-Hartman /*
318ebfb319bSKonstantin Shkolnyy  * CP210X_PURGE - 16 bits passed in wValue of USB request.
319ebfb319bSKonstantin Shkolnyy  * SiLabs app note AN571 gives a strange description of the 4 bits:
320ebfb319bSKonstantin Shkolnyy  * bit 0 or bit 2 clears the transmit queue and 1 or 3 receive.
321ebfb319bSKonstantin Shkolnyy  * writing 1 to all, however, purges cp2108 well enough to avoid the hang.
322ebfb319bSKonstantin Shkolnyy  */
323ebfb319bSKonstantin Shkolnyy #define PURGE_ALL		0x000f
324ebfb319bSKonstantin Shkolnyy 
325ebfb319bSKonstantin Shkolnyy /*
3264cc27bd6SCraig Shelley  * cp210x_get_config
3274cc27bd6SCraig Shelley  * Reads from the CP210x configuration registers
32803ee2515SGreg Kroah-Hartman  * 'size' is specified in bytes.
32903ee2515SGreg Kroah-Hartman  * 'data' is a pointer to a pre-allocated array of integers large
33003ee2515SGreg Kroah-Hartman  * enough to hold 'size' bytes (with 4 bytes to each integer)
33103ee2515SGreg Kroah-Hartman  */
3324cc27bd6SCraig Shelley static int cp210x_get_config(struct usb_serial_port *port, u8 request,
33303ee2515SGreg Kroah-Hartman 		unsigned int *data, int size)
33403ee2515SGreg Kroah-Hartman {
33503ee2515SGreg Kroah-Hartman 	struct usb_serial *serial = port->serial;
336e2ae67a3SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
33703ee2515SGreg Kroah-Hartman 	__le32 *buf;
33803ee2515SGreg Kroah-Hartman 	int result, i, length;
33903ee2515SGreg Kroah-Hartman 
34003ee2515SGreg Kroah-Hartman 	/* Number of integers required to contain the array */
34103ee2515SGreg Kroah-Hartman 	length = (((size - 1) | 3) + 1) / 4;
34203ee2515SGreg Kroah-Hartman 
34303ee2515SGreg Kroah-Hartman 	buf = kcalloc(length, sizeof(__le32), GFP_KERNEL);
34410c642d0SJohan Hovold 	if (!buf)
34503ee2515SGreg Kroah-Hartman 		return -ENOMEM;
34603ee2515SGreg Kroah-Hartman 
34703ee2515SGreg Kroah-Hartman 	/* Issue the request, attempting to read 'size' bytes */
34803ee2515SGreg Kroah-Hartman 	result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
34932445605SPreston Fick 				request, REQTYPE_INTERFACE_TO_HOST, 0x0000,
350e2ae67a3SKonstantin Shkolnyy 				port_priv->bInterfaceNumber, buf, size,
3512d5733fcSYuri Matylitski 				USB_CTRL_GET_TIMEOUT);
35203ee2515SGreg Kroah-Hartman 
35303ee2515SGreg Kroah-Hartman 	/* Convert data into an array of integers */
35403ee2515SGreg Kroah-Hartman 	for (i = 0; i < length; i++)
35503ee2515SGreg Kroah-Hartman 		data[i] = le32_to_cpu(buf[i]);
35603ee2515SGreg Kroah-Hartman 
35703ee2515SGreg Kroah-Hartman 	kfree(buf);
35803ee2515SGreg Kroah-Hartman 
35903ee2515SGreg Kroah-Hartman 	if (result != size) {
360660f3b14SGreg Kroah-Hartman 		dev_dbg(&port->dev, "%s - Unable to send config request, request=0x%x size=%d result=%d\n",
36103ee2515SGreg Kroah-Hartman 			__func__, request, size, result);
3622479e2a9SJohan Hovold 		if (result > 0)
3632479e2a9SJohan Hovold 			result = -EPROTO;
3642479e2a9SJohan Hovold 
3652479e2a9SJohan Hovold 		return result;
36603ee2515SGreg Kroah-Hartman 	}
36703ee2515SGreg Kroah-Hartman 
36803ee2515SGreg Kroah-Hartman 	return 0;
36903ee2515SGreg Kroah-Hartman }
37003ee2515SGreg Kroah-Hartman 
37103ee2515SGreg Kroah-Hartman /*
3724cc27bd6SCraig Shelley  * cp210x_set_config
3734cc27bd6SCraig Shelley  * Writes to the CP210x configuration registers
37403ee2515SGreg Kroah-Hartman  * Values less than 16 bits wide are sent directly
37503ee2515SGreg Kroah-Hartman  * 'size' is specified in bytes.
37603ee2515SGreg Kroah-Hartman  */
3774cc27bd6SCraig Shelley static int cp210x_set_config(struct usb_serial_port *port, u8 request,
37803ee2515SGreg Kroah-Hartman 		unsigned int *data, int size)
37903ee2515SGreg Kroah-Hartman {
38003ee2515SGreg Kroah-Hartman 	struct usb_serial *serial = port->serial;
381e2ae67a3SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
38203ee2515SGreg Kroah-Hartman 	__le32 *buf;
38303ee2515SGreg Kroah-Hartman 	int result, i, length;
38403ee2515SGreg Kroah-Hartman 
38503ee2515SGreg Kroah-Hartman 	/* Number of integers required to contain the array */
38603ee2515SGreg Kroah-Hartman 	length = (((size - 1) | 3) + 1) / 4;
38703ee2515SGreg Kroah-Hartman 
38803ee2515SGreg Kroah-Hartman 	buf = kmalloc(length * sizeof(__le32), GFP_KERNEL);
38910c642d0SJohan Hovold 	if (!buf)
39003ee2515SGreg Kroah-Hartman 		return -ENOMEM;
39103ee2515SGreg Kroah-Hartman 
39203ee2515SGreg Kroah-Hartman 	/* Array of integers into bytes */
39303ee2515SGreg Kroah-Hartman 	for (i = 0; i < length; i++)
39403ee2515SGreg Kroah-Hartman 		buf[i] = cpu_to_le32(data[i]);
39503ee2515SGreg Kroah-Hartman 
39603ee2515SGreg Kroah-Hartman 	if (size > 2) {
39703ee2515SGreg Kroah-Hartman 		result = usb_control_msg(serial->dev,
39803ee2515SGreg Kroah-Hartman 				usb_sndctrlpipe(serial->dev, 0),
39932445605SPreston Fick 				request, REQTYPE_HOST_TO_INTERFACE, 0x0000,
400e2ae67a3SKonstantin Shkolnyy 				port_priv->bInterfaceNumber, buf, size,
4012d5733fcSYuri Matylitski 				USB_CTRL_SET_TIMEOUT);
40203ee2515SGreg Kroah-Hartman 	} else {
40303ee2515SGreg Kroah-Hartman 		result = usb_control_msg(serial->dev,
40403ee2515SGreg Kroah-Hartman 				usb_sndctrlpipe(serial->dev, 0),
40532445605SPreston Fick 				request, REQTYPE_HOST_TO_INTERFACE, data[0],
406e2ae67a3SKonstantin Shkolnyy 				port_priv->bInterfaceNumber, NULL, 0,
4072d5733fcSYuri Matylitski 				USB_CTRL_SET_TIMEOUT);
40803ee2515SGreg Kroah-Hartman 	}
40903ee2515SGreg Kroah-Hartman 
41003ee2515SGreg Kroah-Hartman 	kfree(buf);
41103ee2515SGreg Kroah-Hartman 
41203ee2515SGreg Kroah-Hartman 	if ((size > 2 && result != size) || result < 0) {
413660f3b14SGreg Kroah-Hartman 		dev_dbg(&port->dev, "%s - Unable to send request, request=0x%x size=%d result=%d\n",
41403ee2515SGreg Kroah-Hartman 			__func__, request, size, result);
4152479e2a9SJohan Hovold 		if (result > 0)
4162479e2a9SJohan Hovold 			result = -EPROTO;
4172479e2a9SJohan Hovold 
4182479e2a9SJohan Hovold 		return result;
41903ee2515SGreg Kroah-Hartman 	}
42003ee2515SGreg Kroah-Hartman 
42103ee2515SGreg Kroah-Hartman 	return 0;
42203ee2515SGreg Kroah-Hartman }
42303ee2515SGreg Kroah-Hartman 
42403ee2515SGreg Kroah-Hartman /*
4254cc27bd6SCraig Shelley  * cp210x_set_config_single
4264cc27bd6SCraig Shelley  * Convenience function for calling cp210x_set_config on single data values
42703ee2515SGreg Kroah-Hartman  * without requiring an integer pointer
42803ee2515SGreg Kroah-Hartman  */
4294cc27bd6SCraig Shelley static inline int cp210x_set_config_single(struct usb_serial_port *port,
43003ee2515SGreg Kroah-Hartman 		u8 request, unsigned int data)
43103ee2515SGreg Kroah-Hartman {
4324cc27bd6SCraig Shelley 	return cp210x_set_config(port, request, &data, 2);
43303ee2515SGreg Kroah-Hartman }
43403ee2515SGreg Kroah-Hartman 
43503ee2515SGreg Kroah-Hartman /*
436d0bf1ff0SKonstantin Shkolnyy  * Detect CP2108 GET_LINE_CTL bug and activate workaround.
437d0bf1ff0SKonstantin Shkolnyy  * Write a known good value 0x800, read it back.
438d0bf1ff0SKonstantin Shkolnyy  * If it comes back swapped the bug is detected.
439d0bf1ff0SKonstantin Shkolnyy  * Preserve the original register value.
440d0bf1ff0SKonstantin Shkolnyy  */
441d0bf1ff0SKonstantin Shkolnyy static int cp210x_detect_swapped_line_ctl(struct usb_serial_port *port)
442d0bf1ff0SKonstantin Shkolnyy {
443d0bf1ff0SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
444d0bf1ff0SKonstantin Shkolnyy 	unsigned int line_ctl_save;
445d0bf1ff0SKonstantin Shkolnyy 	unsigned int line_ctl_test;
446d0bf1ff0SKonstantin Shkolnyy 	int err;
447d0bf1ff0SKonstantin Shkolnyy 
448d0bf1ff0SKonstantin Shkolnyy 	err = cp210x_get_config(port, CP210X_GET_LINE_CTL, &line_ctl_save, 2);
449d0bf1ff0SKonstantin Shkolnyy 	if (err)
450d0bf1ff0SKonstantin Shkolnyy 		return err;
451d0bf1ff0SKonstantin Shkolnyy 
452d0bf1ff0SKonstantin Shkolnyy 	line_ctl_test = 0x800;
453d0bf1ff0SKonstantin Shkolnyy 	err = cp210x_set_config(port, CP210X_SET_LINE_CTL, &line_ctl_test, 2);
454d0bf1ff0SKonstantin Shkolnyy 	if (err)
455d0bf1ff0SKonstantin Shkolnyy 		return err;
456d0bf1ff0SKonstantin Shkolnyy 
457d0bf1ff0SKonstantin Shkolnyy 	err = cp210x_get_config(port, CP210X_GET_LINE_CTL, &line_ctl_test, 2);
458d0bf1ff0SKonstantin Shkolnyy 	if (err)
459d0bf1ff0SKonstantin Shkolnyy 		return err;
460d0bf1ff0SKonstantin Shkolnyy 
461d0bf1ff0SKonstantin Shkolnyy 	if (line_ctl_test == 8) {
462d0bf1ff0SKonstantin Shkolnyy 		port_priv->has_swapped_line_ctl = true;
463d0bf1ff0SKonstantin Shkolnyy 		line_ctl_save = swab16((u16)line_ctl_save);
464d0bf1ff0SKonstantin Shkolnyy 	}
465d0bf1ff0SKonstantin Shkolnyy 
466d0bf1ff0SKonstantin Shkolnyy 	return cp210x_set_config(port, CP210X_SET_LINE_CTL, &line_ctl_save, 2);
467d0bf1ff0SKonstantin Shkolnyy }
468d0bf1ff0SKonstantin Shkolnyy 
469d0bf1ff0SKonstantin Shkolnyy /*
470d0bf1ff0SKonstantin Shkolnyy  * Must always be called instead of cp210x_get_config(CP210X_GET_LINE_CTL)
471d0bf1ff0SKonstantin Shkolnyy  * to workaround cp2108 bug and get correct value.
472d0bf1ff0SKonstantin Shkolnyy  */
473d0bf1ff0SKonstantin Shkolnyy static int cp210x_get_line_ctl(struct usb_serial_port *port, unsigned int *ctl)
474d0bf1ff0SKonstantin Shkolnyy {
475d0bf1ff0SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
476d0bf1ff0SKonstantin Shkolnyy 	int err;
477d0bf1ff0SKonstantin Shkolnyy 
478d0bf1ff0SKonstantin Shkolnyy 	err = cp210x_get_config(port, CP210X_GET_LINE_CTL, ctl, 2);
479d0bf1ff0SKonstantin Shkolnyy 	if (err)
480d0bf1ff0SKonstantin Shkolnyy 		return err;
481d0bf1ff0SKonstantin Shkolnyy 
482d0bf1ff0SKonstantin Shkolnyy 	/* Workaround swapped bytes in 16-bit value from CP210X_GET_LINE_CTL */
483d0bf1ff0SKonstantin Shkolnyy 	if (port_priv->has_swapped_line_ctl)
484d0bf1ff0SKonstantin Shkolnyy 		*ctl = swab16((u16)(*ctl));
485d0bf1ff0SKonstantin Shkolnyy 
486d0bf1ff0SKonstantin Shkolnyy 	return 0;
487d0bf1ff0SKonstantin Shkolnyy }
488d0bf1ff0SKonstantin Shkolnyy 
489d0bf1ff0SKonstantin Shkolnyy /*
4904cc27bd6SCraig Shelley  * cp210x_quantise_baudrate
49103ee2515SGreg Kroah-Hartman  * Quantises the baud rate as per AN205 Table 1
49203ee2515SGreg Kroah-Hartman  */
4934f2ab888SJohan Hovold static unsigned int cp210x_quantise_baudrate(unsigned int baud)
4944f2ab888SJohan Hovold {
495be125d9cSJohan Hovold 	if (baud <= 300)
496be125d9cSJohan Hovold 		baud = 300;
49703ee2515SGreg Kroah-Hartman 	else if (baud <= 600)      baud = 600;
49803ee2515SGreg Kroah-Hartman 	else if (baud <= 1200)     baud = 1200;
49903ee2515SGreg Kroah-Hartman 	else if (baud <= 1800)     baud = 1800;
50003ee2515SGreg Kroah-Hartman 	else if (baud <= 2400)     baud = 2400;
50103ee2515SGreg Kroah-Hartman 	else if (baud <= 4000)     baud = 4000;
50203ee2515SGreg Kroah-Hartman 	else if (baud <= 4803)     baud = 4800;
50303ee2515SGreg Kroah-Hartman 	else if (baud <= 7207)     baud = 7200;
50403ee2515SGreg Kroah-Hartman 	else if (baud <= 9612)     baud = 9600;
50503ee2515SGreg Kroah-Hartman 	else if (baud <= 14428)    baud = 14400;
50603ee2515SGreg Kroah-Hartman 	else if (baud <= 16062)    baud = 16000;
50703ee2515SGreg Kroah-Hartman 	else if (baud <= 19250)    baud = 19200;
50803ee2515SGreg Kroah-Hartman 	else if (baud <= 28912)    baud = 28800;
50903ee2515SGreg Kroah-Hartman 	else if (baud <= 38601)    baud = 38400;
51003ee2515SGreg Kroah-Hartman 	else if (baud <= 51558)    baud = 51200;
51103ee2515SGreg Kroah-Hartman 	else if (baud <= 56280)    baud = 56000;
51203ee2515SGreg Kroah-Hartman 	else if (baud <= 58053)    baud = 57600;
51303ee2515SGreg Kroah-Hartman 	else if (baud <= 64111)    baud = 64000;
51403ee2515SGreg Kroah-Hartman 	else if (baud <= 77608)    baud = 76800;
51503ee2515SGreg Kroah-Hartman 	else if (baud <= 117028)   baud = 115200;
51603ee2515SGreg Kroah-Hartman 	else if (baud <= 129347)   baud = 128000;
51703ee2515SGreg Kroah-Hartman 	else if (baud <= 156868)   baud = 153600;
51803ee2515SGreg Kroah-Hartman 	else if (baud <= 237832)   baud = 230400;
51903ee2515SGreg Kroah-Hartman 	else if (baud <= 254234)   baud = 250000;
52003ee2515SGreg Kroah-Hartman 	else if (baud <= 273066)   baud = 256000;
52103ee2515SGreg Kroah-Hartman 	else if (baud <= 491520)   baud = 460800;
52203ee2515SGreg Kroah-Hartman 	else if (baud <= 567138)   baud = 500000;
52303ee2515SGreg Kroah-Hartman 	else if (baud <= 670254)   baud = 576000;
524d1620ca9SJohan Hovold 	else if (baud < 1000000)
525d1620ca9SJohan Hovold 		baud = 921600;
526d1620ca9SJohan Hovold 	else if (baud > 2000000)
527d1620ca9SJohan Hovold 		baud = 2000000;
52803ee2515SGreg Kroah-Hartman 	return baud;
52903ee2515SGreg Kroah-Hartman }
53003ee2515SGreg Kroah-Hartman 
531a509a7e4SAlan Cox static int cp210x_open(struct tty_struct *tty, struct usb_serial_port *port)
53203ee2515SGreg Kroah-Hartman {
53303ee2515SGreg Kroah-Hartman 	int result;
53403ee2515SGreg Kroah-Hartman 
5352479e2a9SJohan Hovold 	result = cp210x_set_config_single(port, CP210X_IFC_ENABLE,
5362479e2a9SJohan Hovold 								UART_ENABLE);
5372479e2a9SJohan Hovold 	if (result) {
5382479e2a9SJohan Hovold 		dev_err(&port->dev, "%s - Unable to enable UART\n", __func__);
5392479e2a9SJohan Hovold 		return result;
54003ee2515SGreg Kroah-Hartman 	}
54103ee2515SGreg Kroah-Hartman 
54203ee2515SGreg Kroah-Hartman 	/* Configure the termios structure */
5434cc27bd6SCraig Shelley 	cp210x_get_termios(tty, port);
54455b2afbbSJohan Hovold 
545cdc32fd6SJohan Hovold 	/* The baud rate must be initialised on cp2104 */
546cdc32fd6SJohan Hovold 	if (tty)
547cdc32fd6SJohan Hovold 		cp210x_change_speed(tty, port, NULL);
548cdc32fd6SJohan Hovold 
54955b2afbbSJohan Hovold 	return usb_serial_generic_open(tty, port);
55003ee2515SGreg Kroah-Hartman }
55103ee2515SGreg Kroah-Hartman 
5524cc27bd6SCraig Shelley static void cp210x_close(struct usb_serial_port *port)
55303ee2515SGreg Kroah-Hartman {
554ebfb319bSKonstantin Shkolnyy 	unsigned int purge_ctl;
555ebfb319bSKonstantin Shkolnyy 
556f26788daSJohan Hovold 	usb_serial_generic_close(port);
557ebfb319bSKonstantin Shkolnyy 
558ebfb319bSKonstantin Shkolnyy 	/* Clear both queues; cp2108 needs this to avoid an occasional hang */
559ebfb319bSKonstantin Shkolnyy 	purge_ctl = PURGE_ALL;
560ebfb319bSKonstantin Shkolnyy 	cp210x_set_config(port, CP210X_PURGE, &purge_ctl, 2);
561ebfb319bSKonstantin Shkolnyy 
5624cc27bd6SCraig Shelley 	cp210x_set_config_single(port, CP210X_IFC_ENABLE, UART_DISABLE);
56303ee2515SGreg Kroah-Hartman }
56403ee2515SGreg Kroah-Hartman 
56503ee2515SGreg Kroah-Hartman /*
566*6f923a01SKonstantin Shkolnyy  * Read how many bytes are waiting in the TX queue.
567*6f923a01SKonstantin Shkolnyy  */
568*6f923a01SKonstantin Shkolnyy static int cp210x_get_tx_queue_byte_count(struct usb_serial_port *port,
569*6f923a01SKonstantin Shkolnyy 		u32 *count)
570*6f923a01SKonstantin Shkolnyy {
571*6f923a01SKonstantin Shkolnyy 	struct usb_serial *serial = port->serial;
572*6f923a01SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv = usb_get_serial_port_data(port);
573*6f923a01SKonstantin Shkolnyy 	struct cp210x_comm_status *sts;
574*6f923a01SKonstantin Shkolnyy 	int result;
575*6f923a01SKonstantin Shkolnyy 
576*6f923a01SKonstantin Shkolnyy 	sts = kmalloc(sizeof(*sts), GFP_KERNEL);
577*6f923a01SKonstantin Shkolnyy 	if (!sts)
578*6f923a01SKonstantin Shkolnyy 		return -ENOMEM;
579*6f923a01SKonstantin Shkolnyy 
580*6f923a01SKonstantin Shkolnyy 	result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
581*6f923a01SKonstantin Shkolnyy 			CP210X_GET_COMM_STATUS, REQTYPE_INTERFACE_TO_HOST,
582*6f923a01SKonstantin Shkolnyy 			0, port_priv->bInterfaceNumber, sts, sizeof(*sts),
583*6f923a01SKonstantin Shkolnyy 			USB_CTRL_GET_TIMEOUT);
584*6f923a01SKonstantin Shkolnyy 	if (result == sizeof(*sts)) {
585*6f923a01SKonstantin Shkolnyy 		*count = le32_to_cpu(sts->ulAmountInOutQueue);
586*6f923a01SKonstantin Shkolnyy 		result = 0;
587*6f923a01SKonstantin Shkolnyy 	} else {
588*6f923a01SKonstantin Shkolnyy 		dev_err(&port->dev, "failed to get comm status: %d\n", result);
589*6f923a01SKonstantin Shkolnyy 		if (result >= 0)
590*6f923a01SKonstantin Shkolnyy 			result = -EPROTO;
591*6f923a01SKonstantin Shkolnyy 	}
592*6f923a01SKonstantin Shkolnyy 
593*6f923a01SKonstantin Shkolnyy 	kfree(sts);
594*6f923a01SKonstantin Shkolnyy 
595*6f923a01SKonstantin Shkolnyy 	return result;
596*6f923a01SKonstantin Shkolnyy }
597*6f923a01SKonstantin Shkolnyy 
598*6f923a01SKonstantin Shkolnyy static bool cp210x_tx_empty(struct usb_serial_port *port)
599*6f923a01SKonstantin Shkolnyy {
600*6f923a01SKonstantin Shkolnyy 	int err;
601*6f923a01SKonstantin Shkolnyy 	u32 count;
602*6f923a01SKonstantin Shkolnyy 
603*6f923a01SKonstantin Shkolnyy 	err = cp210x_get_tx_queue_byte_count(port, &count);
604*6f923a01SKonstantin Shkolnyy 	if (err)
605*6f923a01SKonstantin Shkolnyy 		return true;
606*6f923a01SKonstantin Shkolnyy 
607*6f923a01SKonstantin Shkolnyy 	return !count;
608*6f923a01SKonstantin Shkolnyy }
609*6f923a01SKonstantin Shkolnyy 
610*6f923a01SKonstantin Shkolnyy /*
6114cc27bd6SCraig Shelley  * cp210x_get_termios
61203ee2515SGreg Kroah-Hartman  * Reads the baud rate, data bits, parity, stop bits and flow control mode
61303ee2515SGreg Kroah-Hartman  * from the device, corrects any unsupported values, and configures the
61403ee2515SGreg Kroah-Hartman  * termios structure to reflect the state of the device
61503ee2515SGreg Kroah-Hartman  */
6164cc27bd6SCraig Shelley static void cp210x_get_termios(struct tty_struct *tty,
617d2ad67b3SVomLehn 	struct usb_serial_port *port)
61803ee2515SGreg Kroah-Hartman {
619d2ad67b3SVomLehn 	unsigned int baud;
620d2ad67b3SVomLehn 
621d2ad67b3SVomLehn 	if (tty) {
6224cc27bd6SCraig Shelley 		cp210x_get_termios_port(tty->driver_data,
623adc8d746SAlan Cox 			&tty->termios.c_cflag, &baud);
624d2ad67b3SVomLehn 		tty_encode_baud_rate(tty, baud, baud);
6254f2ab888SJohan Hovold 	} else {
626d2ad67b3SVomLehn 		unsigned int cflag;
627d2ad67b3SVomLehn 		cflag = 0;
6284cc27bd6SCraig Shelley 		cp210x_get_termios_port(port, &cflag, &baud);
629d2ad67b3SVomLehn 	}
630d2ad67b3SVomLehn }
631d2ad67b3SVomLehn 
632d2ad67b3SVomLehn /*
6334cc27bd6SCraig Shelley  * cp210x_get_termios_port
6344cc27bd6SCraig Shelley  * This is the heart of cp210x_get_termios which always uses a &usb_serial_port.
635d2ad67b3SVomLehn  */
6364cc27bd6SCraig Shelley static void cp210x_get_termios_port(struct usb_serial_port *port,
637d2ad67b3SVomLehn 	unsigned int *cflagp, unsigned int *baudp)
638d2ad67b3SVomLehn {
639660f3b14SGreg Kroah-Hartman 	struct device *dev = &port->dev;
64003ee2515SGreg Kroah-Hartman 	unsigned int cflag, modem_ctl[4];
64103ee2515SGreg Kroah-Hartman 	unsigned int baud;
64203ee2515SGreg Kroah-Hartman 	unsigned int bits;
64303ee2515SGreg Kroah-Hartman 
6447f482fc8SPreston Fick 	cp210x_get_config(port, CP210X_GET_BAUDRATE, &baud, 4);
64503ee2515SGreg Kroah-Hartman 
646660f3b14SGreg Kroah-Hartman 	dev_dbg(dev, "%s - baud rate = %d\n", __func__, baud);
647d2ad67b3SVomLehn 	*baudp = baud;
64803ee2515SGreg Kroah-Hartman 
649d2ad67b3SVomLehn 	cflag = *cflagp;
65003ee2515SGreg Kroah-Hartman 
651d0bf1ff0SKonstantin Shkolnyy 	cp210x_get_line_ctl(port, &bits);
65203ee2515SGreg Kroah-Hartman 	cflag &= ~CSIZE;
65303ee2515SGreg Kroah-Hartman 	switch (bits & BITS_DATA_MASK) {
65403ee2515SGreg Kroah-Hartman 	case BITS_DATA_5:
655660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - data bits = 5\n", __func__);
65603ee2515SGreg Kroah-Hartman 		cflag |= CS5;
65703ee2515SGreg Kroah-Hartman 		break;
65803ee2515SGreg Kroah-Hartman 	case BITS_DATA_6:
659660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - data bits = 6\n", __func__);
66003ee2515SGreg Kroah-Hartman 		cflag |= CS6;
66103ee2515SGreg Kroah-Hartman 		break;
66203ee2515SGreg Kroah-Hartman 	case BITS_DATA_7:
663660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - data bits = 7\n", __func__);
66403ee2515SGreg Kroah-Hartman 		cflag |= CS7;
66503ee2515SGreg Kroah-Hartman 		break;
66603ee2515SGreg Kroah-Hartman 	case BITS_DATA_8:
667660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - data bits = 8\n", __func__);
66803ee2515SGreg Kroah-Hartman 		cflag |= CS8;
66903ee2515SGreg Kroah-Hartman 		break;
67003ee2515SGreg Kroah-Hartman 	case BITS_DATA_9:
671660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - data bits = 9 (not supported, using 8 data bits)\n", __func__);
67203ee2515SGreg Kroah-Hartman 		cflag |= CS8;
67303ee2515SGreg Kroah-Hartman 		bits &= ~BITS_DATA_MASK;
67403ee2515SGreg Kroah-Hartman 		bits |= BITS_DATA_8;
6754cc27bd6SCraig Shelley 		cp210x_set_config(port, CP210X_SET_LINE_CTL, &bits, 2);
67603ee2515SGreg Kroah-Hartman 		break;
67703ee2515SGreg Kroah-Hartman 	default:
678660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - Unknown number of data bits, using 8\n", __func__);
67903ee2515SGreg Kroah-Hartman 		cflag |= CS8;
68003ee2515SGreg Kroah-Hartman 		bits &= ~BITS_DATA_MASK;
68103ee2515SGreg Kroah-Hartman 		bits |= BITS_DATA_8;
6824cc27bd6SCraig Shelley 		cp210x_set_config(port, CP210X_SET_LINE_CTL, &bits, 2);
68303ee2515SGreg Kroah-Hartman 		break;
68403ee2515SGreg Kroah-Hartman 	}
68503ee2515SGreg Kroah-Hartman 
68603ee2515SGreg Kroah-Hartman 	switch (bits & BITS_PARITY_MASK) {
68703ee2515SGreg Kroah-Hartman 	case BITS_PARITY_NONE:
688660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - parity = NONE\n", __func__);
68903ee2515SGreg Kroah-Hartman 		cflag &= ~PARENB;
69003ee2515SGreg Kroah-Hartman 		break;
69103ee2515SGreg Kroah-Hartman 	case BITS_PARITY_ODD:
692660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - parity = ODD\n", __func__);
69303ee2515SGreg Kroah-Hartman 		cflag |= (PARENB|PARODD);
69403ee2515SGreg Kroah-Hartman 		break;
69503ee2515SGreg Kroah-Hartman 	case BITS_PARITY_EVEN:
696660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - parity = EVEN\n", __func__);
69703ee2515SGreg Kroah-Hartman 		cflag &= ~PARODD;
69803ee2515SGreg Kroah-Hartman 		cflag |= PARENB;
69903ee2515SGreg Kroah-Hartman 		break;
70003ee2515SGreg Kroah-Hartman 	case BITS_PARITY_MARK:
701660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - parity = MARK\n", __func__);
7024b6181caSRoland Koebler 		cflag |= (PARENB|PARODD|CMSPAR);
70303ee2515SGreg Kroah-Hartman 		break;
70403ee2515SGreg Kroah-Hartman 	case BITS_PARITY_SPACE:
705660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - parity = SPACE\n", __func__);
7064b6181caSRoland Koebler 		cflag &= ~PARODD;
7074b6181caSRoland Koebler 		cflag |= (PARENB|CMSPAR);
70803ee2515SGreg Kroah-Hartman 		break;
70903ee2515SGreg Kroah-Hartman 	default:
710660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - Unknown parity mode, disabling parity\n", __func__);
71103ee2515SGreg Kroah-Hartman 		cflag &= ~PARENB;
71203ee2515SGreg Kroah-Hartman 		bits &= ~BITS_PARITY_MASK;
7134cc27bd6SCraig Shelley 		cp210x_set_config(port, CP210X_SET_LINE_CTL, &bits, 2);
71403ee2515SGreg Kroah-Hartman 		break;
71503ee2515SGreg Kroah-Hartman 	}
71603ee2515SGreg Kroah-Hartman 
71703ee2515SGreg Kroah-Hartman 	cflag &= ~CSTOPB;
71803ee2515SGreg Kroah-Hartman 	switch (bits & BITS_STOP_MASK) {
71903ee2515SGreg Kroah-Hartman 	case BITS_STOP_1:
720660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - stop bits = 1\n", __func__);
72103ee2515SGreg Kroah-Hartman 		break;
72203ee2515SGreg Kroah-Hartman 	case BITS_STOP_1_5:
723660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - stop bits = 1.5 (not supported, using 1 stop bit)\n", __func__);
72403ee2515SGreg Kroah-Hartman 		bits &= ~BITS_STOP_MASK;
7254cc27bd6SCraig Shelley 		cp210x_set_config(port, CP210X_SET_LINE_CTL, &bits, 2);
72603ee2515SGreg Kroah-Hartman 		break;
72703ee2515SGreg Kroah-Hartman 	case BITS_STOP_2:
728660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - stop bits = 2\n", __func__);
72903ee2515SGreg Kroah-Hartman 		cflag |= CSTOPB;
73003ee2515SGreg Kroah-Hartman 		break;
73103ee2515SGreg Kroah-Hartman 	default:
732660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - Unknown number of stop bits, using 1 stop bit\n", __func__);
73303ee2515SGreg Kroah-Hartman 		bits &= ~BITS_STOP_MASK;
7344cc27bd6SCraig Shelley 		cp210x_set_config(port, CP210X_SET_LINE_CTL, &bits, 2);
73503ee2515SGreg Kroah-Hartman 		break;
73603ee2515SGreg Kroah-Hartman 	}
73703ee2515SGreg Kroah-Hartman 
7384cc27bd6SCraig Shelley 	cp210x_get_config(port, CP210X_GET_FLOW, modem_ctl, 16);
73903ee2515SGreg Kroah-Hartman 	if (modem_ctl[0] & 0x0008) {
740660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - flow control = CRTSCTS\n", __func__);
74103ee2515SGreg Kroah-Hartman 		cflag |= CRTSCTS;
74203ee2515SGreg Kroah-Hartman 	} else {
743660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - flow control = NONE\n", __func__);
74403ee2515SGreg Kroah-Hartman 		cflag &= ~CRTSCTS;
74503ee2515SGreg Kroah-Hartman 	}
74603ee2515SGreg Kroah-Hartman 
747d2ad67b3SVomLehn 	*cflagp = cflag;
74803ee2515SGreg Kroah-Hartman }
74903ee2515SGreg Kroah-Hartman 
750e5990874SJohan Hovold /*
751e5990874SJohan Hovold  * CP2101 supports the following baud rates:
752e5990874SJohan Hovold  *
753e5990874SJohan Hovold  *	300, 600, 1200, 1800, 2400, 4800, 7200, 9600, 14400, 19200, 28800,
754e5990874SJohan Hovold  *	38400, 56000, 57600, 115200, 128000, 230400, 460800, 921600
755e5990874SJohan Hovold  *
756e5990874SJohan Hovold  * CP2102 and CP2103 support the following additional rates:
757e5990874SJohan Hovold  *
758e5990874SJohan Hovold  *	4000, 16000, 51200, 64000, 76800, 153600, 250000, 256000, 500000,
759e5990874SJohan Hovold  *	576000
760e5990874SJohan Hovold  *
761e5990874SJohan Hovold  * The device will map a requested rate to a supported one, but the result
762e5990874SJohan Hovold  * of requests for rates greater than 1053257 is undefined (see AN205).
763e5990874SJohan Hovold  *
764e5990874SJohan Hovold  * CP2104, CP2105 and CP2110 support most rates up to 2M, 921k and 1M baud,
765e5990874SJohan Hovold  * respectively, with an error less than 1%. The actual rates are determined
766e5990874SJohan Hovold  * by
767e5990874SJohan Hovold  *
768e5990874SJohan Hovold  *	div = round(freq / (2 x prescale x request))
769e5990874SJohan Hovold  *	actual = freq / (2 x prescale x div)
770e5990874SJohan Hovold  *
771e5990874SJohan Hovold  * For CP2104 and CP2105 freq is 48Mhz and prescale is 4 for request <= 365bps
772e5990874SJohan Hovold  * or 1 otherwise.
773e5990874SJohan Hovold  * For CP2110 freq is 24Mhz and prescale is 4 for request <= 300bps or 1
774e5990874SJohan Hovold  * otherwise.
775e5990874SJohan Hovold  */
776e5990874SJohan Hovold static void cp210x_change_speed(struct tty_struct *tty,
777e5990874SJohan Hovold 		struct usb_serial_port *port, struct ktermios *old_termios)
778e5990874SJohan Hovold {
779e5990874SJohan Hovold 	u32 baud;
780e5990874SJohan Hovold 
781adc8d746SAlan Cox 	baud = tty->termios.c_ospeed;
782e5990874SJohan Hovold 
783d1620ca9SJohan Hovold 	/* This maps the requested rate to a rate valid on cp2102 or cp2103,
784d1620ca9SJohan Hovold 	 * or to an arbitrary rate in [1M,2M].
785e5990874SJohan Hovold 	 *
786e5990874SJohan Hovold 	 * NOTE: B0 is not implemented.
787e5990874SJohan Hovold 	 */
788e5990874SJohan Hovold 	baud = cp210x_quantise_baudrate(baud);
789e5990874SJohan Hovold 
790660f3b14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "%s - setting baud rate to %u\n", __func__, baud);
791e5990874SJohan Hovold 	if (cp210x_set_config(port, CP210X_SET_BAUDRATE, &baud,
792e5990874SJohan Hovold 							sizeof(baud))) {
793e5990874SJohan Hovold 		dev_warn(&port->dev, "failed to set baud rate to %u\n", baud);
794e5990874SJohan Hovold 		if (old_termios)
795e5990874SJohan Hovold 			baud = old_termios->c_ospeed;
796e5990874SJohan Hovold 		else
797e5990874SJohan Hovold 			baud = 9600;
798e5990874SJohan Hovold 	}
799e5990874SJohan Hovold 
800e5990874SJohan Hovold 	tty_encode_baud_rate(tty, baud, baud);
801e5990874SJohan Hovold }
802e5990874SJohan Hovold 
8034cc27bd6SCraig Shelley static void cp210x_set_termios(struct tty_struct *tty,
80403ee2515SGreg Kroah-Hartman 		struct usb_serial_port *port, struct ktermios *old_termios)
80503ee2515SGreg Kroah-Hartman {
806660f3b14SGreg Kroah-Hartman 	struct device *dev = &port->dev;
80703ee2515SGreg Kroah-Hartman 	unsigned int cflag, old_cflag;
80834b76fcaSJohan Hovold 	unsigned int bits;
80903ee2515SGreg Kroah-Hartman 	unsigned int modem_ctl[4];
81003ee2515SGreg Kroah-Hartman 
811adc8d746SAlan Cox 	cflag = tty->termios.c_cflag;
81203ee2515SGreg Kroah-Hartman 	old_cflag = old_termios->c_cflag;
81303ee2515SGreg Kroah-Hartman 
814adc8d746SAlan Cox 	if (tty->termios.c_ospeed != old_termios->c_ospeed)
815e5990874SJohan Hovold 		cp210x_change_speed(tty, port, old_termios);
81603ee2515SGreg Kroah-Hartman 
81703ee2515SGreg Kroah-Hartman 	/* If the number of data bits is to be updated */
81803ee2515SGreg Kroah-Hartman 	if ((cflag & CSIZE) != (old_cflag & CSIZE)) {
819d0bf1ff0SKonstantin Shkolnyy 		cp210x_get_line_ctl(port, &bits);
82003ee2515SGreg Kroah-Hartman 		bits &= ~BITS_DATA_MASK;
82103ee2515SGreg Kroah-Hartman 		switch (cflag & CSIZE) {
82203ee2515SGreg Kroah-Hartman 		case CS5:
82303ee2515SGreg Kroah-Hartman 			bits |= BITS_DATA_5;
824660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "%s - data bits = 5\n", __func__);
82503ee2515SGreg Kroah-Hartman 			break;
82603ee2515SGreg Kroah-Hartman 		case CS6:
82703ee2515SGreg Kroah-Hartman 			bits |= BITS_DATA_6;
828660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "%s - data bits = 6\n", __func__);
82903ee2515SGreg Kroah-Hartman 			break;
83003ee2515SGreg Kroah-Hartman 		case CS7:
83103ee2515SGreg Kroah-Hartman 			bits |= BITS_DATA_7;
832660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "%s - data bits = 7\n", __func__);
83303ee2515SGreg Kroah-Hartman 			break;
83403ee2515SGreg Kroah-Hartman 		case CS8:
83503ee2515SGreg Kroah-Hartman 			bits |= BITS_DATA_8;
836660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "%s - data bits = 8\n", __func__);
83703ee2515SGreg Kroah-Hartman 			break;
83803ee2515SGreg Kroah-Hartman 		/*case CS9:
83903ee2515SGreg Kroah-Hartman 			bits |= BITS_DATA_9;
840660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "%s - data bits = 9\n", __func__);
84103ee2515SGreg Kroah-Hartman 			break;*/
84203ee2515SGreg Kroah-Hartman 		default:
843660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "cp210x driver does not support the number of bits requested, using 8 bit mode\n");
84403ee2515SGreg Kroah-Hartman 			bits |= BITS_DATA_8;
84503ee2515SGreg Kroah-Hartman 			break;
84603ee2515SGreg Kroah-Hartman 		}
8474cc27bd6SCraig Shelley 		if (cp210x_set_config(port, CP210X_SET_LINE_CTL, &bits, 2))
848660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "Number of data bits requested not supported by device\n");
84903ee2515SGreg Kroah-Hartman 	}
85003ee2515SGreg Kroah-Hartman 
8514b6181caSRoland Koebler 	if ((cflag     & (PARENB|PARODD|CMSPAR)) !=
8524b6181caSRoland Koebler 	    (old_cflag & (PARENB|PARODD|CMSPAR))) {
853d0bf1ff0SKonstantin Shkolnyy 		cp210x_get_line_ctl(port, &bits);
85403ee2515SGreg Kroah-Hartman 		bits &= ~BITS_PARITY_MASK;
85503ee2515SGreg Kroah-Hartman 		if (cflag & PARENB) {
8564b6181caSRoland Koebler 			if (cflag & CMSPAR) {
8574b6181caSRoland Koebler 				if (cflag & PARODD) {
8584b6181caSRoland Koebler 					bits |= BITS_PARITY_MARK;
859660f3b14SGreg Kroah-Hartman 					dev_dbg(dev, "%s - parity = MARK\n", __func__);
8604b6181caSRoland Koebler 				} else {
8614b6181caSRoland Koebler 					bits |= BITS_PARITY_SPACE;
862660f3b14SGreg Kroah-Hartman 					dev_dbg(dev, "%s - parity = SPACE\n", __func__);
8634b6181caSRoland Koebler 				}
8644b6181caSRoland Koebler 			} else {
86503ee2515SGreg Kroah-Hartman 				if (cflag & PARODD) {
86603ee2515SGreg Kroah-Hartman 					bits |= BITS_PARITY_ODD;
867660f3b14SGreg Kroah-Hartman 					dev_dbg(dev, "%s - parity = ODD\n", __func__);
86803ee2515SGreg Kroah-Hartman 				} else {
86903ee2515SGreg Kroah-Hartman 					bits |= BITS_PARITY_EVEN;
870660f3b14SGreg Kroah-Hartman 					dev_dbg(dev, "%s - parity = EVEN\n", __func__);
87103ee2515SGreg Kroah-Hartman 				}
87203ee2515SGreg Kroah-Hartman 			}
8734b6181caSRoland Koebler 		}
8744cc27bd6SCraig Shelley 		if (cp210x_set_config(port, CP210X_SET_LINE_CTL, &bits, 2))
875660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "Parity mode not supported by device\n");
87603ee2515SGreg Kroah-Hartman 	}
87703ee2515SGreg Kroah-Hartman 
87803ee2515SGreg Kroah-Hartman 	if ((cflag & CSTOPB) != (old_cflag & CSTOPB)) {
879d0bf1ff0SKonstantin Shkolnyy 		cp210x_get_line_ctl(port, &bits);
88003ee2515SGreg Kroah-Hartman 		bits &= ~BITS_STOP_MASK;
88103ee2515SGreg Kroah-Hartman 		if (cflag & CSTOPB) {
88203ee2515SGreg Kroah-Hartman 			bits |= BITS_STOP_2;
883660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "%s - stop bits = 2\n", __func__);
88403ee2515SGreg Kroah-Hartman 		} else {
88503ee2515SGreg Kroah-Hartman 			bits |= BITS_STOP_1;
886660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "%s - stop bits = 1\n", __func__);
88703ee2515SGreg Kroah-Hartman 		}
8884cc27bd6SCraig Shelley 		if (cp210x_set_config(port, CP210X_SET_LINE_CTL, &bits, 2))
889660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "Number of stop bits requested not supported by device\n");
89003ee2515SGreg Kroah-Hartman 	}
89103ee2515SGreg Kroah-Hartman 
89203ee2515SGreg Kroah-Hartman 	if ((cflag & CRTSCTS) != (old_cflag & CRTSCTS)) {
8934cc27bd6SCraig Shelley 		cp210x_get_config(port, CP210X_GET_FLOW, modem_ctl, 16);
894660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - read modem controls = 0x%.4x 0x%.4x 0x%.4x 0x%.4x\n",
89503ee2515SGreg Kroah-Hartman 			__func__, modem_ctl[0], modem_ctl[1],
89603ee2515SGreg Kroah-Hartman 			modem_ctl[2], modem_ctl[3]);
89703ee2515SGreg Kroah-Hartman 
89803ee2515SGreg Kroah-Hartman 		if (cflag & CRTSCTS) {
89903ee2515SGreg Kroah-Hartman 			modem_ctl[0] &= ~0x7B;
90003ee2515SGreg Kroah-Hartman 			modem_ctl[0] |= 0x09;
90103ee2515SGreg Kroah-Hartman 			modem_ctl[1] = 0x80;
902660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "%s - flow control = CRTSCTS\n", __func__);
90303ee2515SGreg Kroah-Hartman 		} else {
90403ee2515SGreg Kroah-Hartman 			modem_ctl[0] &= ~0x7B;
90503ee2515SGreg Kroah-Hartman 			modem_ctl[0] |= 0x01;
90603ee2515SGreg Kroah-Hartman 			modem_ctl[1] |= 0x40;
907660f3b14SGreg Kroah-Hartman 			dev_dbg(dev, "%s - flow control = NONE\n", __func__);
90803ee2515SGreg Kroah-Hartman 		}
90903ee2515SGreg Kroah-Hartman 
910660f3b14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - write modem controls = 0x%.4x 0x%.4x 0x%.4x 0x%.4x\n",
91103ee2515SGreg Kroah-Hartman 			__func__, modem_ctl[0], modem_ctl[1],
91203ee2515SGreg Kroah-Hartman 			modem_ctl[2], modem_ctl[3]);
9134cc27bd6SCraig Shelley 		cp210x_set_config(port, CP210X_SET_FLOW, modem_ctl, 16);
91403ee2515SGreg Kroah-Hartman 	}
91503ee2515SGreg Kroah-Hartman 
91603ee2515SGreg Kroah-Hartman }
91703ee2515SGreg Kroah-Hartman 
91820b9d177SAlan Cox static int cp210x_tiocmset(struct tty_struct *tty,
91903ee2515SGreg Kroah-Hartman 		unsigned int set, unsigned int clear)
92003ee2515SGreg Kroah-Hartman {
92103ee2515SGreg Kroah-Hartman 	struct usb_serial_port *port = tty->driver_data;
92220b9d177SAlan Cox 	return cp210x_tiocmset_port(port, set, clear);
923d2ad67b3SVomLehn }
924d2ad67b3SVomLehn 
92520b9d177SAlan Cox static int cp210x_tiocmset_port(struct usb_serial_port *port,
926d2ad67b3SVomLehn 		unsigned int set, unsigned int clear)
927d2ad67b3SVomLehn {
92803ee2515SGreg Kroah-Hartman 	unsigned int control = 0;
92903ee2515SGreg Kroah-Hartman 
93003ee2515SGreg Kroah-Hartman 	if (set & TIOCM_RTS) {
93103ee2515SGreg Kroah-Hartman 		control |= CONTROL_RTS;
93203ee2515SGreg Kroah-Hartman 		control |= CONTROL_WRITE_RTS;
93303ee2515SGreg Kroah-Hartman 	}
93403ee2515SGreg Kroah-Hartman 	if (set & TIOCM_DTR) {
93503ee2515SGreg Kroah-Hartman 		control |= CONTROL_DTR;
93603ee2515SGreg Kroah-Hartman 		control |= CONTROL_WRITE_DTR;
93703ee2515SGreg Kroah-Hartman 	}
93803ee2515SGreg Kroah-Hartman 	if (clear & TIOCM_RTS) {
93903ee2515SGreg Kroah-Hartman 		control &= ~CONTROL_RTS;
94003ee2515SGreg Kroah-Hartman 		control |= CONTROL_WRITE_RTS;
94103ee2515SGreg Kroah-Hartman 	}
94203ee2515SGreg Kroah-Hartman 	if (clear & TIOCM_DTR) {
94303ee2515SGreg Kroah-Hartman 		control &= ~CONTROL_DTR;
94403ee2515SGreg Kroah-Hartman 		control |= CONTROL_WRITE_DTR;
94503ee2515SGreg Kroah-Hartman 	}
94603ee2515SGreg Kroah-Hartman 
947660f3b14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "%s - control = 0x%.4x\n", __func__, control);
94803ee2515SGreg Kroah-Hartman 
9494cc27bd6SCraig Shelley 	return cp210x_set_config(port, CP210X_SET_MHS, &control, 2);
95003ee2515SGreg Kroah-Hartman }
95103ee2515SGreg Kroah-Hartman 
952d94c7bd4SAlan Cox static void cp210x_dtr_rts(struct usb_serial_port *p, int on)
953d94c7bd4SAlan Cox {
954d94c7bd4SAlan Cox 	if (on)
95520b9d177SAlan Cox 		cp210x_tiocmset_port(p, TIOCM_DTR|TIOCM_RTS, 0);
956d94c7bd4SAlan Cox 	else
95720b9d177SAlan Cox 		cp210x_tiocmset_port(p, 0, TIOCM_DTR|TIOCM_RTS);
958d94c7bd4SAlan Cox }
959d94c7bd4SAlan Cox 
96060b33c13SAlan Cox static int cp210x_tiocmget(struct tty_struct *tty)
96103ee2515SGreg Kroah-Hartman {
96203ee2515SGreg Kroah-Hartman 	struct usb_serial_port *port = tty->driver_data;
96303ee2515SGreg Kroah-Hartman 	unsigned int control;
96403ee2515SGreg Kroah-Hartman 	int result;
96503ee2515SGreg Kroah-Hartman 
9664cc27bd6SCraig Shelley 	cp210x_get_config(port, CP210X_GET_MDMSTS, &control, 1);
96703ee2515SGreg Kroah-Hartman 
96803ee2515SGreg Kroah-Hartman 	result = ((control & CONTROL_DTR) ? TIOCM_DTR : 0)
96903ee2515SGreg Kroah-Hartman 		|((control & CONTROL_RTS) ? TIOCM_RTS : 0)
97003ee2515SGreg Kroah-Hartman 		|((control & CONTROL_CTS) ? TIOCM_CTS : 0)
97103ee2515SGreg Kroah-Hartman 		|((control & CONTROL_DSR) ? TIOCM_DSR : 0)
97203ee2515SGreg Kroah-Hartman 		|((control & CONTROL_RING)? TIOCM_RI  : 0)
97303ee2515SGreg Kroah-Hartman 		|((control & CONTROL_DCD) ? TIOCM_CD  : 0);
97403ee2515SGreg Kroah-Hartman 
975660f3b14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "%s - control = 0x%.2x\n", __func__, control);
97603ee2515SGreg Kroah-Hartman 
97703ee2515SGreg Kroah-Hartman 	return result;
97803ee2515SGreg Kroah-Hartman }
97903ee2515SGreg Kroah-Hartman 
9804cc27bd6SCraig Shelley static void cp210x_break_ctl(struct tty_struct *tty, int break_state)
98103ee2515SGreg Kroah-Hartman {
98203ee2515SGreg Kroah-Hartman 	struct usb_serial_port *port = tty->driver_data;
98303ee2515SGreg Kroah-Hartman 	unsigned int state;
98403ee2515SGreg Kroah-Hartman 
98503ee2515SGreg Kroah-Hartman 	if (break_state == 0)
98603ee2515SGreg Kroah-Hartman 		state = BREAK_OFF;
98703ee2515SGreg Kroah-Hartman 	else
98803ee2515SGreg Kroah-Hartman 		state = BREAK_ON;
989660f3b14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "%s - turning break %s\n", __func__,
99003ee2515SGreg Kroah-Hartman 		state == BREAK_OFF ? "off" : "on");
9914cc27bd6SCraig Shelley 	cp210x_set_config(port, CP210X_SET_BREAK, &state, 2);
99203ee2515SGreg Kroah-Hartman }
99303ee2515SGreg Kroah-Hartman 
994e2ae67a3SKonstantin Shkolnyy static int cp210x_port_probe(struct usb_serial_port *port)
99503ee2515SGreg Kroah-Hartman {
996e2ae67a3SKonstantin Shkolnyy 	struct usb_serial *serial = port->serial;
9974295fe77SJohan Hovold 	struct usb_host_interface *cur_altsetting;
998e2ae67a3SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv;
999d0bf1ff0SKonstantin Shkolnyy 	int ret;
1000a5360a53SPreston Fick 
1001e2ae67a3SKonstantin Shkolnyy 	port_priv = kzalloc(sizeof(*port_priv), GFP_KERNEL);
1002e2ae67a3SKonstantin Shkolnyy 	if (!port_priv)
1003a5360a53SPreston Fick 		return -ENOMEM;
1004a5360a53SPreston Fick 
10054295fe77SJohan Hovold 	cur_altsetting = serial->interface->cur_altsetting;
1006e2ae67a3SKonstantin Shkolnyy 	port_priv->bInterfaceNumber = cur_altsetting->desc.bInterfaceNumber;
1007a5360a53SPreston Fick 
1008e2ae67a3SKonstantin Shkolnyy 	usb_set_serial_port_data(port, port_priv);
1009a5360a53SPreston Fick 
1010d0bf1ff0SKonstantin Shkolnyy 	ret = cp210x_detect_swapped_line_ctl(port);
1011d0bf1ff0SKonstantin Shkolnyy 	if (ret) {
1012d0bf1ff0SKonstantin Shkolnyy 		kfree(port_priv);
1013d0bf1ff0SKonstantin Shkolnyy 		return ret;
1014d0bf1ff0SKonstantin Shkolnyy 	}
1015d0bf1ff0SKonstantin Shkolnyy 
101603ee2515SGreg Kroah-Hartman 	return 0;
101703ee2515SGreg Kroah-Hartman }
101803ee2515SGreg Kroah-Hartman 
1019e2ae67a3SKonstantin Shkolnyy static int cp210x_port_remove(struct usb_serial_port *port)
1020a5360a53SPreston Fick {
1021e2ae67a3SKonstantin Shkolnyy 	struct cp210x_port_private *port_priv;
1022a5360a53SPreston Fick 
1023e2ae67a3SKonstantin Shkolnyy 	port_priv = usb_get_serial_port_data(port);
1024e2ae67a3SKonstantin Shkolnyy 	kfree(port_priv);
1025e2ae67a3SKonstantin Shkolnyy 
1026e2ae67a3SKonstantin Shkolnyy 	return 0;
1027a5360a53SPreston Fick }
1028a5360a53SPreston Fick 
102968e24113SGreg Kroah-Hartman module_usb_serial_driver(serial_drivers, id_table);
103003ee2515SGreg Kroah-Hartman 
103103ee2515SGreg Kroah-Hartman MODULE_DESCRIPTION(DRIVER_DESC);
103203ee2515SGreg Kroah-Hartman MODULE_LICENSE("GPL");
1033