blob: ac4944a8152155af8277f8c43bea7eb5e37fdba9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Silicon Laboratories CP2101/CP2102 USB to RS232 serial adaptor driver
3 *
4 * Copyright (C) 2005 Craig Shelley (craig@microtron.org.uk)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License version
8 * 2 as published by the Free Software Foundation.
9 *
Craig Shelley39a66b82005-05-27 00:09:56 +010010 * Support to set flow control line levels using TIOCMGET and TIOCMSET
11 * thanks to Karl Hiramoto karl@hiramoto.org. RTSCTS hardware flow
12 * control thanks to Munir Nassar nassarmu@real-time.com
13 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 */
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/kernel.h>
17#include <linux/errno.h>
18#include <linux/slab.h>
19#include <linux/tty.h>
20#include <linux/tty_flip.h>
21#include <linux/module.h>
22#include <linux/moduleparam.h>
23#include <linux/usb.h>
Alan Coxff7eb602008-07-22 11:10:17 +010024#include <linux/uaccess.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070025#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27/*
28 * Version Information
29 */
Craig Shelleyef8b6bc2009-02-26 22:19:22 +000030#define DRIVER_VERSION "v0.08"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#define DRIVER_DESC "Silicon Labs CP2101/CP2102 RS232 serial adaptor driver"
32
33/*
34 * Function Prototypes
35 */
Alan Cox95da3102008-07-22 11:09:07 +010036static int cp2101_open(struct tty_struct *, struct usb_serial_port *,
37 struct file *);
38static void cp2101_cleanup(struct usb_serial_port *);
Alan Cox335f8512009-06-11 12:26:29 +010039static void cp2101_close(struct usb_serial_port *);
VomLehnd2ad67b2009-03-12 14:37:42 -070040static void cp2101_get_termios(struct tty_struct *,
41 struct usb_serial_port *port);
42static void cp2101_get_termios_port(struct usb_serial_port *port,
43 unsigned int *cflagp, unsigned int *baudp);
Alan Cox95da3102008-07-22 11:09:07 +010044static void cp2101_set_termios(struct tty_struct *, struct usb_serial_port *,
45 struct ktermios*);
Alan Coxff7eb602008-07-22 11:10:17 +010046static int cp2101_tiocmget(struct tty_struct *, struct file *);
47static int cp2101_tiocmset(struct tty_struct *, struct file *,
Craig Shelley39a66b82005-05-27 00:09:56 +010048 unsigned int, unsigned int);
VomLehnd2ad67b2009-03-12 14:37:42 -070049static int cp2101_tiocmset_port(struct usb_serial_port *port, struct file *,
50 unsigned int, unsigned int);
Alan Cox95da3102008-07-22 11:09:07 +010051static void cp2101_break_ctl(struct tty_struct *, int);
Alan Coxff7eb602008-07-22 11:10:17 +010052static int cp2101_startup(struct usb_serial *);
53static void cp2101_shutdown(struct usb_serial *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055static int debug;
56
57static struct usb_device_id id_table [] = {
M Kondrin5091b582008-11-14 13:02:45 +030058 { USB_DEVICE(0x0471, 0x066A) }, /* AKTAKOM ACE-1001 cable */
Craig Shelley59fba742008-04-12 16:15:54 +010059 { USB_DEVICE(0x0489, 0xE000) }, /* Pirelli Broadband S.p.A, DP-L10 SIP/GSM Mobile */
Craig Shelleyb7c7cbc2009-06-11 13:52:31 +010060 { USB_DEVICE(0x0745, 0x1000) }, /* CipherLab USB CCD Barcode Scanner 1000 */
Edouard Lafargue1f4f7142007-09-25 10:15:36 +020061 { USB_DEVICE(0x08e6, 0x5501) }, /* Gemalto Prox-PU/CU contactless smartcard reader */
Craig Shelleyb7c7cbc2009-06-11 13:52:31 +010062 { USB_DEVICE(0x08FD, 0x000A) }, /* Digianswer A/S , ZigBee/802.15.4 MAC Device */
Craig Shelley198b9512005-08-28 09:51:15 +010063 { USB_DEVICE(0x0FCF, 0x1003) }, /* Dynastream ANT development board */
Martin Kusserow014840e2007-12-21 12:02:17 +010064 { USB_DEVICE(0x0FCF, 0x1004) }, /* Dynastream ANT2USB */
Craig Shelley59fba742008-04-12 16:15:54 +010065 { USB_DEVICE(0x0FCF, 0x1006) }, /* Dynastream ANT development board */
Craig Shelley198b9512005-08-28 09:51:15 +010066 { USB_DEVICE(0x10A6, 0xAA26) }, /* Knock-off DCU-11 cable */
Craig Shelleye988fc82006-01-20 00:06:19 +000067 { USB_DEVICE(0x10AB, 0x10C5) }, /* Siemens MC60 Cable */
68 { USB_DEVICE(0x10B5, 0xAC70) }, /* Nokia CA-42 USB */
Craig Shelleyb7c7cbc2009-06-11 13:52:31 +010069 { USB_DEVICE(0x10C4, 0x0F91) }, /* Vstabi */
Craig Shelley5de8b3a2008-01-03 12:45:59 +000070 { USB_DEVICE(0x10C4, 0x800A) }, /* SPORTident BSM7-D-USB main station */
Craig Shelley59224f52006-03-11 11:29:02 +000071 { USB_DEVICE(0x10C4, 0x803B) }, /* Pololu USB-serial converter */
Craig Shelley92f5cae2007-04-20 14:37:17 +010072 { USB_DEVICE(0x10C4, 0x8053) }, /* Enfora EDG1228 */
Damir N Abdullin9a18e752008-10-30 13:52:38 -070073 { USB_DEVICE(0x10C4, 0x8054) }, /* Enfora GSM2228 */
Vitja Makarov212a4b42006-05-31 00:40:06 +040074 { USB_DEVICE(0x10C4, 0x8066) }, /* Argussoft In-System Programmer */
Craig Shelleye988fc82006-01-20 00:06:19 +000075 { USB_DEVICE(0x10C4, 0x807A) }, /* Crumb128 board */
76 { USB_DEVICE(0x10C4, 0x80CA) }, /* Degree Controls Inc */
Craig Shelley92f5cae2007-04-20 14:37:17 +010077 { USB_DEVICE(0x10C4, 0x80DD) }, /* Tracient RFID */
Craig Shelleye988fc82006-01-20 00:06:19 +000078 { USB_DEVICE(0x10C4, 0x80F6) }, /* Suunto sports instrument */
Craig Shelleyba0f3322008-09-04 21:28:21 +010079 { USB_DEVICE(0x10C4, 0x8115) }, /* Arygon NFC/Mifare Reader */
Craig Shelleye988fc82006-01-20 00:06:19 +000080 { USB_DEVICE(0x10C4, 0x813D) }, /* Burnside Telecom Deskmobile */
Jon K Hellanfc4bd642007-02-28 23:04:33 +010081 { USB_DEVICE(0x10C4, 0x814A) }, /* West Mountain Radio RIGblaster P&P */
82 { USB_DEVICE(0x10C4, 0x814B) }, /* West Mountain Radio RIGtalk */
Craig Shelleye988fc82006-01-20 00:06:19 +000083 { USB_DEVICE(0x10C4, 0x815E) }, /* Helicomm IP-Link 1220-DVM */
Robert M. Kenneyc6535662009-02-26 14:58:39 -050084 { USB_DEVICE(0x10C4, 0x819F) }, /* MJS USB Toslink Switcher */
Bernhard Beck966236972008-05-11 09:23:13 -070085 { USB_DEVICE(0x10C4, 0x81A6) }, /* ThinkOptics WavIt */
Craig Shelley59fba742008-04-12 16:15:54 +010086 { USB_DEVICE(0x10C4, 0x81AC) }, /* MSD Dash Hawk */
Bjorn Schneider78001e32006-10-28 12:42:04 +020087 { USB_DEVICE(0x10C4, 0x81C8) }, /* Lipowsky Industrie Elektronik GmbH, Baby-JTAG */
88 { USB_DEVICE(0x10C4, 0x81E2) }, /* Lipowsky Industrie Elektronik GmbH, Baby-LIN */
Jeff Long8be27c22007-11-28 11:02:09 -050089 { USB_DEVICE(0x10C4, 0x81E7) }, /* Aerocomm Radio */
Craig Shelleyb7c7cbc2009-06-11 13:52:31 +010090 { USB_DEVICE(0x10C4, 0x81F2) }, /* C1007 HF band RFID controller */
Bjorn Schneider78001e32006-10-28 12:42:04 +020091 { USB_DEVICE(0x10C4, 0x8218) }, /* Lipowsky Industrie Elektronik GmbH, HARP-1 */
Tomasz K877e2622009-01-04 12:47:11 +010092 { USB_DEVICE(0x10C4, 0x822B) }, /* Modem EDGE(GSM) Comander 2 */
Wolfgang Glas95bec452009-01-15 23:11:53 +010093 { USB_DEVICE(0x10C4, 0x826B) }, /* Cygnal Integrated Products, Inc., Fasttrax GPS demostration module */
Florian Fainellie8898682008-03-25 17:32:16 +010094 { USB_DEVICE(0x10c4, 0x8293) }, /* Telegesys ETRX2USB */
Craig Shelleyb7c7cbc2009-06-11 13:52:31 +010095 { USB_DEVICE(0x10C4, 0x82F9) }, /* Procyon AVS */
Craig Shelleyba0f3322008-09-04 21:28:21 +010096 { USB_DEVICE(0x10C4, 0x8341) }, /* Siemens MC35PU GPRS Modem */
Craig Shelley881e3c92008-11-09 20:17:54 +000097 { USB_DEVICE(0x10C4, 0x83A8) }, /* Amber Wireless AMB2560 */
Alex Stephensd23bac92009-03-17 00:06:19 +000098 { USB_DEVICE(0x10C4, 0x846E) }, /* BEI USB Sensor Interface (VCP) */
Craig Shelleye988fc82006-01-20 00:06:19 +000099 { USB_DEVICE(0x10C4, 0xEA60) }, /* Silicon Labs factory default */
Craig Shelley61926b92006-10-12 22:09:56 +0100100 { USB_DEVICE(0x10C4, 0xEA61) }, /* Silicon Labs factory default */
Craig Shelley5de8b3a2008-01-03 12:45:59 +0000101 { USB_DEVICE(0x10C4, 0xF001) }, /* Elan Digital Systems USBscope50 */
102 { USB_DEVICE(0x10C4, 0xF002) }, /* Elan Digital Systems USBwave12 */
103 { USB_DEVICE(0x10C4, 0xF003) }, /* Elan Digital Systems USBpulse100 */
104 { USB_DEVICE(0x10C4, 0xF004) }, /* Elan Digital Systems USBcount50 */
Pozsar Balazsebaf4942007-02-16 12:47:49 +0100105 { USB_DEVICE(0x10C5, 0xEA61) }, /* Silicon Labs MobiData GPRS USB Modem */
Craig Shelleyb7c7cbc2009-06-11 13:52:31 +0100106 { USB_DEVICE(0x10CE, 0xEA6A) }, /* Silicon Labs MobiData GPRS USB Modem 100EU */
Johannes Hoelzle05998d2006-12-02 16:54:27 +0100107 { USB_DEVICE(0x13AD, 0x9999) }, /* Baltech card reader */
Craig Shelleyb7c7cbc2009-06-11 13:52:31 +0100108 { USB_DEVICE(0x1555, 0x0004) }, /* Owen AC4 USB-RS485 Converter */
Craig Shelley5de8b3a2008-01-03 12:45:59 +0000109 { USB_DEVICE(0x166A, 0x0303) }, /* Clipsal 5500PCU C-Bus USB interface */
Josef Balatkab0ce84d2005-11-17 09:47:24 -0800110 { USB_DEVICE(0x16D6, 0x0001) }, /* Jablotron serial interface */
Craig Shelleyba0f3322008-09-04 21:28:21 +0100111 { USB_DEVICE(0x18EF, 0xE00F) }, /* ELV USB-I2C-Interface */
Craig Shelley39a66b82005-05-27 00:09:56 +0100112 { } /* Terminating Entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113};
114
Alan Coxff7eb602008-07-22 11:10:17 +0100115MODULE_DEVICE_TABLE(usb, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117static struct usb_driver cp2101_driver = {
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700118 .name = "cp2101",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 .probe = usb_serial_probe,
120 .disconnect = usb_serial_disconnect,
121 .id_table = id_table,
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800122 .no_dynamic_id = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123};
124
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700125static struct usb_serial_driver cp2101_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700126 .driver = {
127 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700128 .name = "cp2101",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700129 },
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100130 .usb_driver = &cp2101_driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 .id_table = id_table,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 .num_ports = 1,
133 .open = cp2101_open,
134 .close = cp2101_close,
135 .break_ctl = cp2101_break_ctl,
136 .set_termios = cp2101_set_termios,
Craig Shelley39a66b82005-05-27 00:09:56 +0100137 .tiocmget = cp2101_tiocmget,
138 .tiocmset = cp2101_tiocmset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 .attach = cp2101_startup,
140 .shutdown = cp2101_shutdown,
141};
142
Craig Shelley39a66b82005-05-27 00:09:56 +0100143/* Config request types */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144#define REQTYPE_HOST_TO_DEVICE 0x41
145#define REQTYPE_DEVICE_TO_HOST 0xc1
146
Craig Shelley39a66b82005-05-27 00:09:56 +0100147/* Config SET requests. To GET, add 1 to the request number */
148#define CP2101_UART 0x00 /* Enable / Disable */
149#define CP2101_BAUDRATE 0x01 /* (BAUD_RATE_GEN_FREQ / baudrate) */
150#define CP2101_BITS 0x03 /* 0x(0)(databits)(parity)(stopbits) */
151#define CP2101_BREAK 0x05 /* On / Off */
152#define CP2101_CONTROL 0x07 /* Flow control line states */
153#define CP2101_MODEMCTL 0x13 /* Modem controls */
154#define CP2101_CONFIG_6 0x19 /* 6 bytes of config data ??? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Craig Shelley39a66b82005-05-27 00:09:56 +0100156/* CP2101_UART */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157#define UART_ENABLE 0x0001
158#define UART_DISABLE 0x0000
159
Craig Shelley39a66b82005-05-27 00:09:56 +0100160/* CP2101_BAUDRATE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161#define BAUD_RATE_GEN_FREQ 0x384000
162
Craig Shelley39a66b82005-05-27 00:09:56 +0100163/* CP2101_BITS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164#define BITS_DATA_MASK 0X0f00
Craig Shelley39a66b82005-05-27 00:09:56 +0100165#define BITS_DATA_5 0X0500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166#define BITS_DATA_6 0X0600
167#define BITS_DATA_7 0X0700
168#define BITS_DATA_8 0X0800
169#define BITS_DATA_9 0X0900
170
171#define BITS_PARITY_MASK 0x00f0
172#define BITS_PARITY_NONE 0x0000
173#define BITS_PARITY_ODD 0x0010
174#define BITS_PARITY_EVEN 0x0020
175#define BITS_PARITY_MARK 0x0030
176#define BITS_PARITY_SPACE 0x0040
177
178#define BITS_STOP_MASK 0x000f
179#define BITS_STOP_1 0x0000
180#define BITS_STOP_1_5 0x0001
181#define BITS_STOP_2 0x0002
Craig Shelley39a66b82005-05-27 00:09:56 +0100182
183/* CP2101_BREAK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184#define BREAK_ON 0x0000
185#define BREAK_OFF 0x0001
186
Craig Shelley39a66b82005-05-27 00:09:56 +0100187/* CP2101_CONTROL */
188#define CONTROL_DTR 0x0001
189#define CONTROL_RTS 0x0002
190#define CONTROL_CTS 0x0010
191#define CONTROL_DSR 0x0020
192#define CONTROL_RING 0x0040
193#define CONTROL_DCD 0x0080
194#define CONTROL_WRITE_DTR 0x0100
195#define CONTROL_WRITE_RTS 0x0200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Craig Shelley39a66b82005-05-27 00:09:56 +0100197/*
198 * cp2101_get_config
199 * Reads from the CP2101 configuration registers
200 * 'size' is specified in bytes.
201 * 'data' is a pointer to a pre-allocated array of integers large
202 * enough to hold 'size' bytes (with 4 bytes to each integer)
203 */
Alan Cox95da3102008-07-22 11:09:07 +0100204static int cp2101_get_config(struct usb_serial_port *port, u8 request,
Craig Shelley39a66b82005-05-27 00:09:56 +0100205 unsigned int *data, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
207 struct usb_serial *serial = port->serial;
Al Viro53ebb3b2007-02-09 16:39:55 +0000208 __le32 *buf;
Craig Shelley39a66b82005-05-27 00:09:56 +0100209 int result, i, length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Craig Shelley39a66b82005-05-27 00:09:56 +0100211 /* Number of integers required to contain the array */
212 length = (((size - 1) | 3) + 1)/4;
213
Al Viro53ebb3b2007-02-09 16:39:55 +0000214 buf = kcalloc(length, sizeof(__le32), GFP_KERNEL);
Craig Shelley39a66b82005-05-27 00:09:56 +0100215 if (!buf) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800216 dev_err(&port->dev, "%s - out of memory.\n", __func__);
Craig Shelley39a66b82005-05-27 00:09:56 +0100217 return -ENOMEM;
218 }
219
220 /* For get requests, the request number must be incremented */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 request++;
222
Craig Shelley39a66b82005-05-27 00:09:56 +0100223 /* Issue the request, attempting to read 'size' bytes */
Alan Coxff7eb602008-07-22 11:10:17 +0100224 result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 request, REQTYPE_DEVICE_TO_HOST, 0x0000,
Craig Shelley39a66b82005-05-27 00:09:56 +0100226 0, buf, size, 300);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Craig Shelley39a66b82005-05-27 00:09:56 +0100228 /* Convert data into an array of integers */
Alan Coxff7eb602008-07-22 11:10:17 +0100229 for (i = 0; i < length; i++)
Craig Shelley39a66b82005-05-27 00:09:56 +0100230 data[i] = le32_to_cpu(buf[i]);
231
232 kfree(buf);
233
234 if (result != size) {
Craig Shelley97324952009-02-26 22:21:51 +0000235 dbg("%s - Unable to send config request, "
Craig Shelley39a66b82005-05-27 00:09:56 +0100236 "request=0x%x size=%d result=%d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800237 __func__, request, size, result);
Craig Shelley39a66b82005-05-27 00:09:56 +0100238 return -EPROTO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 }
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return 0;
242}
243
Craig Shelley39a66b82005-05-27 00:09:56 +0100244/*
245 * cp2101_set_config
246 * Writes to the CP2101 configuration registers
247 * Values less than 16 bits wide are sent directly
248 * 'size' is specified in bytes.
249 */
Alan Cox95da3102008-07-22 11:09:07 +0100250static int cp2101_set_config(struct usb_serial_port *port, u8 request,
Craig Shelley39a66b82005-05-27 00:09:56 +0100251 unsigned int *data, int size)
252{
253 struct usb_serial *serial = port->serial;
Al Viro53ebb3b2007-02-09 16:39:55 +0000254 __le32 *buf;
Craig Shelley39a66b82005-05-27 00:09:56 +0100255 int result, i, length;
256
257 /* Number of integers required to contain the array */
258 length = (((size - 1) | 3) + 1)/4;
259
Al Viro53ebb3b2007-02-09 16:39:55 +0000260 buf = kmalloc(length * sizeof(__le32), GFP_KERNEL);
Craig Shelley39a66b82005-05-27 00:09:56 +0100261 if (!buf) {
262 dev_err(&port->dev, "%s - out of memory.\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800263 __func__);
Craig Shelley39a66b82005-05-27 00:09:56 +0100264 return -ENOMEM;
265 }
266
267 /* Array of integers into bytes */
268 for (i = 0; i < length; i++)
269 buf[i] = cpu_to_le32(data[i]);
270
271 if (size > 2) {
Alan Coxff7eb602008-07-22 11:10:17 +0100272 result = usb_control_msg(serial->dev,
Craig Shelley39a66b82005-05-27 00:09:56 +0100273 usb_sndctrlpipe(serial->dev, 0),
274 request, REQTYPE_HOST_TO_DEVICE, 0x0000,
275 0, buf, size, 300);
276 } else {
Alan Coxff7eb602008-07-22 11:10:17 +0100277 result = usb_control_msg(serial->dev,
Craig Shelley39a66b82005-05-27 00:09:56 +0100278 usb_sndctrlpipe(serial->dev, 0),
279 request, REQTYPE_HOST_TO_DEVICE, data[0],
280 0, NULL, 0, 300);
281 }
282
283 kfree(buf);
284
285 if ((size > 2 && result != size) || result < 0) {
Craig Shelley97324952009-02-26 22:21:51 +0000286 dbg("%s - Unable to send request, "
Craig Shelley39a66b82005-05-27 00:09:56 +0100287 "request=0x%x size=%d result=%d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800288 __func__, request, size, result);
Craig Shelley39a66b82005-05-27 00:09:56 +0100289 return -EPROTO;
290 }
291
292 /* Single data value */
Alan Coxff7eb602008-07-22 11:10:17 +0100293 result = usb_control_msg(serial->dev,
Craig Shelley39a66b82005-05-27 00:09:56 +0100294 usb_sndctrlpipe(serial->dev, 0),
295 request, REQTYPE_HOST_TO_DEVICE, data[0],
296 0, NULL, 0, 300);
297 return 0;
298}
299
300/*
301 * cp2101_set_config_single
302 * Convenience function for calling cp2101_set_config on single data values
303 * without requiring an integer pointer
304 */
Alan Cox95da3102008-07-22 11:09:07 +0100305static inline int cp2101_set_config_single(struct usb_serial_port *port,
Craig Shelley39a66b82005-05-27 00:09:56 +0100306 u8 request, unsigned int data)
307{
308 return cp2101_set_config(port, request, &data, 2);
309}
310
Craig Shelleyef8b6bc2009-02-26 22:19:22 +0000311/*
312 * cp2101_quantise_baudrate
313 * Quantises the baud rate as per AN205 Table 1
314 */
315static unsigned int cp2101_quantise_baudrate(unsigned int baud) {
316 if (baud <= 56) baud = 0;
317 else if (baud <= 300) baud = 300;
318 else if (baud <= 600) baud = 600;
319 else if (baud <= 1200) baud = 1200;
320 else if (baud <= 1800) baud = 1800;
321 else if (baud <= 2400) baud = 2400;
322 else if (baud <= 4000) baud = 4000;
323 else if (baud <= 4803) baud = 4800;
324 else if (baud <= 7207) baud = 7200;
325 else if (baud <= 9612) baud = 9600;
326 else if (baud <= 14428) baud = 14400;
327 else if (baud <= 16062) baud = 16000;
328 else if (baud <= 19250) baud = 19200;
329 else if (baud <= 28912) baud = 28800;
330 else if (baud <= 38601) baud = 38400;
331 else if (baud <= 51558) baud = 51200;
332 else if (baud <= 56280) baud = 56000;
333 else if (baud <= 58053) baud = 57600;
334 else if (baud <= 64111) baud = 64000;
335 else if (baud <= 77608) baud = 76800;
336 else if (baud <= 117028) baud = 115200;
337 else if (baud <= 129347) baud = 128000;
338 else if (baud <= 156868) baud = 153600;
339 else if (baud <= 237832) baud = 230400;
340 else if (baud <= 254234) baud = 250000;
341 else if (baud <= 273066) baud = 256000;
342 else if (baud <= 491520) baud = 460800;
343 else if (baud <= 567138) baud = 500000;
344 else if (baud <= 670254) baud = 576000;
345 else if (baud <= 1053257) baud = 921600;
346 else if (baud <= 1474560) baud = 1228800;
347 else if (baud <= 2457600) baud = 1843200;
348 else baud = 3686400;
349 return baud;
350}
351
Alan Coxff7eb602008-07-22 11:10:17 +0100352static int cp2101_open(struct tty_struct *tty, struct usb_serial_port *port,
Alan Cox95da3102008-07-22 11:09:07 +0100353 struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
355 struct usb_serial *serial = port->serial;
356 int result;
357
Harvey Harrison441b62c2008-03-03 16:08:34 -0800358 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Craig Shelley39a66b82005-05-27 00:09:56 +0100360 if (cp2101_set_config_single(port, CP2101_UART, UART_ENABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 dev_err(&port->dev, "%s - Unable to enable UART\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800362 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 return -EPROTO;
364 }
365
366 /* Start reading from the device */
Alan Coxff7eb602008-07-22 11:10:17 +0100367 usb_fill_bulk_urb(port->read_urb, serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 usb_rcvbulkpipe(serial->dev,
369 port->bulk_in_endpointAddress),
370 port->read_urb->transfer_buffer,
371 port->read_urb->transfer_buffer_length,
372 serial->type->read_bulk_callback,
373 port);
374 result = usb_submit_urb(port->read_urb, GFP_KERNEL);
375 if (result) {
376 dev_err(&port->dev, "%s - failed resubmitting read urb, "
Harvey Harrison441b62c2008-03-03 16:08:34 -0800377 "error %d\n", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 return result;
379 }
380
Craig Shelley39a66b82005-05-27 00:09:56 +0100381 /* Configure the termios structure */
VomLehnd2ad67b2009-03-12 14:37:42 -0700382 cp2101_get_termios(tty, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Craig Shelley39a66b82005-05-27 00:09:56 +0100384 /* Set the DTR and RTS pins low */
VomLehnd2ad67b2009-03-12 14:37:42 -0700385 cp2101_tiocmset_port(tty ? (struct usb_serial_port *) tty->driver_data
386 : port,
387 NULL, TIOCM_DTR | TIOCM_RTS, 0);
Craig Shelley39a66b82005-05-27 00:09:56 +0100388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 return 0;
390}
391
Alan Coxff7eb602008-07-22 11:10:17 +0100392static void cp2101_cleanup(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
394 struct usb_serial *serial = port->serial;
395
Harvey Harrison441b62c2008-03-03 16:08:34 -0800396 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 if (serial->dev) {
399 /* shutdown any bulk reads that might be going on */
400 if (serial->num_bulk_out)
401 usb_kill_urb(port->write_urb);
402 if (serial->num_bulk_in)
403 usb_kill_urb(port->read_urb);
404 }
405}
406
Alan Cox335f8512009-06-11 12:26:29 +0100407static void cp2101_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
Harvey Harrison441b62c2008-03-03 16:08:34 -0800409 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 /* shutdown our urbs */
Harvey Harrison441b62c2008-03-03 16:08:34 -0800412 dbg("%s - shutting down urbs", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 usb_kill_urb(port->write_urb);
414 usb_kill_urb(port->read_urb);
415
Oliver Neukum95bef012008-01-22 13:56:18 +0100416 mutex_lock(&port->serial->disc_mutex);
417 if (!port->serial->disconnected)
418 cp2101_set_config_single(port, CP2101_UART, UART_DISABLE);
419 mutex_unlock(&port->serial->disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
Craig Shelley39a66b82005-05-27 00:09:56 +0100422/*
423 * cp2101_get_termios
424 * Reads the baud rate, data bits, parity, stop bits and flow control mode
425 * from the device, corrects any unsupported values, and configures the
426 * termios structure to reflect the state of the device
427 */
VomLehnd2ad67b2009-03-12 14:37:42 -0700428static void cp2101_get_termios(struct tty_struct *tty,
429 struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
VomLehnd2ad67b2009-03-12 14:37:42 -0700431 unsigned int baud;
432
433 if (tty) {
434 cp2101_get_termios_port(tty->driver_data,
435 &tty->termios->c_cflag, &baud);
436 tty_encode_baud_rate(tty, baud, baud);
437 }
438
439 else {
440 unsigned int cflag;
441 cflag = 0;
442 cp2101_get_termios_port(port, &cflag, &baud);
443 }
444}
445
446/*
447 * cp2101_get_termios_port
448 * This is the heart of cp2101_get_termios which always uses a &usb_serial_port.
449 */
450static void cp2101_get_termios_port(struct usb_serial_port *port,
451 unsigned int *cflagp, unsigned int *baudp)
452{
Craig Shelley39a66b82005-05-27 00:09:56 +0100453 unsigned int cflag, modem_ctl[4];
Harvey Harrisonb2bdd1f2008-05-30 10:29:55 -0700454 unsigned int baud;
455 unsigned int bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Harvey Harrison441b62c2008-03-03 16:08:34 -0800457 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Craig Shelley39a66b82005-05-27 00:09:56 +0100459 cp2101_get_config(port, CP2101_BAUDRATE, &baud, 2);
460 /* Convert to baudrate */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 if (baud)
Craig Shelleyef8b6bc2009-02-26 22:19:22 +0000462 baud = cp2101_quantise_baudrate((BAUD_RATE_GEN_FREQ + baud/2)/ baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Harvey Harrison441b62c2008-03-03 16:08:34 -0800464 dbg("%s - baud rate = %d", __func__, baud);
VomLehnd2ad67b2009-03-12 14:37:42 -0700465 *baudp = baud;
Alan Cox9ab0f202007-10-18 01:24:24 -0700466
VomLehnd2ad67b2009-03-12 14:37:42 -0700467 cflag = *cflagp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Craig Shelley39a66b82005-05-27 00:09:56 +0100469 cp2101_get_config(port, CP2101_BITS, &bits, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 cflag &= ~CSIZE;
Alan Coxff7eb602008-07-22 11:10:17 +0100471 switch (bits & BITS_DATA_MASK) {
472 case BITS_DATA_5:
473 dbg("%s - data bits = 5", __func__);
474 cflag |= CS5;
475 break;
476 case BITS_DATA_6:
477 dbg("%s - data bits = 6", __func__);
478 cflag |= CS6;
479 break;
480 case BITS_DATA_7:
481 dbg("%s - data bits = 7", __func__);
482 cflag |= CS7;
483 break;
484 case BITS_DATA_8:
485 dbg("%s - data bits = 8", __func__);
486 cflag |= CS8;
487 break;
488 case BITS_DATA_9:
489 dbg("%s - data bits = 9 (not supported, using 8 data bits)",
490 __func__);
491 cflag |= CS8;
492 bits &= ~BITS_DATA_MASK;
493 bits |= BITS_DATA_8;
494 cp2101_set_config(port, CP2101_BITS, &bits, 2);
495 break;
496 default:
497 dbg("%s - Unknown number of data bits, using 8", __func__);
498 cflag |= CS8;
499 bits &= ~BITS_DATA_MASK;
500 bits |= BITS_DATA_8;
501 cp2101_set_config(port, CP2101_BITS, &bits, 2);
502 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
504
Alan Coxff7eb602008-07-22 11:10:17 +0100505 switch (bits & BITS_PARITY_MASK) {
506 case BITS_PARITY_NONE:
507 dbg("%s - parity = NONE", __func__);
508 cflag &= ~PARENB;
509 break;
510 case BITS_PARITY_ODD:
511 dbg("%s - parity = ODD", __func__);
512 cflag |= (PARENB|PARODD);
513 break;
514 case BITS_PARITY_EVEN:
515 dbg("%s - parity = EVEN", __func__);
516 cflag &= ~PARODD;
517 cflag |= PARENB;
518 break;
519 case BITS_PARITY_MARK:
520 dbg("%s - parity = MARK (not supported, disabling parity)",
521 __func__);
522 cflag &= ~PARENB;
523 bits &= ~BITS_PARITY_MASK;
524 cp2101_set_config(port, CP2101_BITS, &bits, 2);
525 break;
526 case BITS_PARITY_SPACE:
527 dbg("%s - parity = SPACE (not supported, disabling parity)",
528 __func__);
529 cflag &= ~PARENB;
530 bits &= ~BITS_PARITY_MASK;
531 cp2101_set_config(port, CP2101_BITS, &bits, 2);
532 break;
533 default:
534 dbg("%s - Unknown parity mode, disabling parity", __func__);
535 cflag &= ~PARENB;
536 bits &= ~BITS_PARITY_MASK;
537 cp2101_set_config(port, CP2101_BITS, &bits, 2);
538 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
540
541 cflag &= ~CSTOPB;
Alan Coxff7eb602008-07-22 11:10:17 +0100542 switch (bits & BITS_STOP_MASK) {
543 case BITS_STOP_1:
544 dbg("%s - stop bits = 1", __func__);
545 break;
546 case BITS_STOP_1_5:
547 dbg("%s - stop bits = 1.5 (not supported, using 1 stop bit)",
548 __func__);
549 bits &= ~BITS_STOP_MASK;
550 cp2101_set_config(port, CP2101_BITS, &bits, 2);
551 break;
552 case BITS_STOP_2:
553 dbg("%s - stop bits = 2", __func__);
554 cflag |= CSTOPB;
555 break;
556 default:
557 dbg("%s - Unknown number of stop bits, using 1 stop bit",
558 __func__);
559 bits &= ~BITS_STOP_MASK;
560 cp2101_set_config(port, CP2101_BITS, &bits, 2);
561 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
563
Craig Shelley39a66b82005-05-27 00:09:56 +0100564 cp2101_get_config(port, CP2101_MODEMCTL, modem_ctl, 16);
565 if (modem_ctl[0] & 0x0008) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800566 dbg("%s - flow control = CRTSCTS", __func__);
Craig Shelley39a66b82005-05-27 00:09:56 +0100567 cflag |= CRTSCTS;
568 } else {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800569 dbg("%s - flow control = NONE", __func__);
Craig Shelley39a66b82005-05-27 00:09:56 +0100570 cflag &= ~CRTSCTS;
571 }
572
VomLehnd2ad67b2009-03-12 14:37:42 -0700573 *cflagp = cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
575
Alan Coxff7eb602008-07-22 11:10:17 +0100576static void cp2101_set_termios(struct tty_struct *tty,
Alan Cox95da3102008-07-22 11:09:07 +0100577 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Alan Cox9ab0f202007-10-18 01:24:24 -0700579 unsigned int cflag, old_cflag;
Harvey Harrisonb2bdd1f2008-05-30 10:29:55 -0700580 unsigned int baud = 0, bits;
Craig Shelley39a66b82005-05-27 00:09:56 +0100581 unsigned int modem_ctl[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Harvey Harrison441b62c2008-03-03 16:08:34 -0800583 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Alan Cox95da3102008-07-22 11:09:07 +0100585 if (!tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 return;
Alan Cox9ab0f202007-10-18 01:24:24 -0700587
Alan Cox95da3102008-07-22 11:09:07 +0100588 tty->termios->c_cflag &= ~CMSPAR;
589 cflag = tty->termios->c_cflag;
Alan Cox01e96d22007-07-26 18:54:12 +0100590 old_cflag = old_termios->c_cflag;
Craig Shelleyef8b6bc2009-02-26 22:19:22 +0000591 baud = cp2101_quantise_baudrate(tty_get_baud_rate(tty));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593 /* If the baud rate is to be updated*/
Craig Shelleyef8b6bc2009-02-26 22:19:22 +0000594 if (baud != tty_termios_baud_rate(old_termios) && baud != 0) {
595 dbg("%s - Setting baud rate to %d baud", __func__,
596 baud);
597 if (cp2101_set_config_single(port, CP2101_BAUDRATE,
598 ((BAUD_RATE_GEN_FREQ + baud/2) / baud))) {
Craig Shelley97324952009-02-26 22:21:51 +0000599 dbg("Baud rate requested not supported by device\n");
Craig Shelleyef8b6bc2009-02-26 22:19:22 +0000600 baud = tty_termios_baud_rate(old_termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 }
602 }
Alan Cox9ab0f202007-10-18 01:24:24 -0700603 /* Report back the resulting baud rate */
Alan Cox95da3102008-07-22 11:09:07 +0100604 tty_encode_baud_rate(tty, baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Craig Shelley39a66b82005-05-27 00:09:56 +0100606 /* If the number of data bits is to be updated */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 if ((cflag & CSIZE) != (old_cflag & CSIZE)) {
Craig Shelley39a66b82005-05-27 00:09:56 +0100608 cp2101_get_config(port, CP2101_BITS, &bits, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 bits &= ~BITS_DATA_MASK;
610 switch (cflag & CSIZE) {
Alan Coxff7eb602008-07-22 11:10:17 +0100611 case CS5:
612 bits |= BITS_DATA_5;
613 dbg("%s - data bits = 5", __func__);
614 break;
615 case CS6:
616 bits |= BITS_DATA_6;
617 dbg("%s - data bits = 6", __func__);
618 break;
619 case CS7:
620 bits |= BITS_DATA_7;
621 dbg("%s - data bits = 7", __func__);
622 break;
623 case CS8:
624 bits |= BITS_DATA_8;
625 dbg("%s - data bits = 8", __func__);
626 break;
627 /*case CS9:
628 bits |= BITS_DATA_9;
629 dbg("%s - data bits = 9", __func__);
630 break;*/
631 default:
Craig Shelley97324952009-02-26 22:21:51 +0000632 dbg("cp2101 driver does not "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 "support the number of bits requested,"
634 " using 8 bit mode\n");
635 bits |= BITS_DATA_8;
636 break;
637 }
Craig Shelley39a66b82005-05-27 00:09:56 +0100638 if (cp2101_set_config(port, CP2101_BITS, &bits, 2))
Craig Shelley97324952009-02-26 22:21:51 +0000639 dbg("Number of data bits requested "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 "not supported by device\n");
641 }
642
643 if ((cflag & (PARENB|PARODD)) != (old_cflag & (PARENB|PARODD))) {
Craig Shelley39a66b82005-05-27 00:09:56 +0100644 cp2101_get_config(port, CP2101_BITS, &bits, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 bits &= ~BITS_PARITY_MASK;
646 if (cflag & PARENB) {
647 if (cflag & PARODD) {
648 bits |= BITS_PARITY_ODD;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800649 dbg("%s - parity = ODD", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 } else {
651 bits |= BITS_PARITY_EVEN;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800652 dbg("%s - parity = EVEN", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 }
654 }
Craig Shelley39a66b82005-05-27 00:09:56 +0100655 if (cp2101_set_config(port, CP2101_BITS, &bits, 2))
Craig Shelley97324952009-02-26 22:21:51 +0000656 dbg("Parity mode not supported "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 "by device\n");
658 }
659
660 if ((cflag & CSTOPB) != (old_cflag & CSTOPB)) {
Craig Shelley39a66b82005-05-27 00:09:56 +0100661 cp2101_get_config(port, CP2101_BITS, &bits, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 bits &= ~BITS_STOP_MASK;
663 if (cflag & CSTOPB) {
664 bits |= BITS_STOP_2;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800665 dbg("%s - stop bits = 2", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 } else {
667 bits |= BITS_STOP_1;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800668 dbg("%s - stop bits = 1", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 }
Craig Shelley39a66b82005-05-27 00:09:56 +0100670 if (cp2101_set_config(port, CP2101_BITS, &bits, 2))
Craig Shelley97324952009-02-26 22:21:51 +0000671 dbg("Number of stop bits requested "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 "not supported by device\n");
673 }
Craig Shelley39a66b82005-05-27 00:09:56 +0100674
675 if ((cflag & CRTSCTS) != (old_cflag & CRTSCTS)) {
676 cp2101_get_config(port, CP2101_MODEMCTL, modem_ctl, 16);
677 dbg("%s - read modem controls = 0x%.4x 0x%.4x 0x%.4x 0x%.4x",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800678 __func__, modem_ctl[0], modem_ctl[1],
Craig Shelley39a66b82005-05-27 00:09:56 +0100679 modem_ctl[2], modem_ctl[3]);
680
681 if (cflag & CRTSCTS) {
682 modem_ctl[0] &= ~0x7B;
683 modem_ctl[0] |= 0x09;
684 modem_ctl[1] = 0x80;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800685 dbg("%s - flow control = CRTSCTS", __func__);
Craig Shelley39a66b82005-05-27 00:09:56 +0100686 } else {
687 modem_ctl[0] &= ~0x7B;
688 modem_ctl[0] |= 0x01;
689 modem_ctl[1] |= 0x40;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800690 dbg("%s - flow control = NONE", __func__);
Craig Shelley39a66b82005-05-27 00:09:56 +0100691 }
692
693 dbg("%s - write modem controls = 0x%.4x 0x%.4x 0x%.4x 0x%.4x",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800694 __func__, modem_ctl[0], modem_ctl[1],
Craig Shelley39a66b82005-05-27 00:09:56 +0100695 modem_ctl[2], modem_ctl[3]);
696 cp2101_set_config(port, CP2101_MODEMCTL, modem_ctl, 16);
697 }
698
699}
700
Alan Cox95da3102008-07-22 11:09:07 +0100701static int cp2101_tiocmset (struct tty_struct *tty, struct file *file,
Craig Shelley39a66b82005-05-27 00:09:56 +0100702 unsigned int set, unsigned int clear)
703{
Alan Cox95da3102008-07-22 11:09:07 +0100704 struct usb_serial_port *port = tty->driver_data;
VomLehnd2ad67b2009-03-12 14:37:42 -0700705 return cp2101_tiocmset_port(port, file, set, clear);
706}
707
708static int cp2101_tiocmset_port(struct usb_serial_port *port, struct file *file,
709 unsigned int set, unsigned int clear)
710{
Harvey Harrisonb2bdd1f2008-05-30 10:29:55 -0700711 unsigned int control = 0;
Craig Shelley39a66b82005-05-27 00:09:56 +0100712
Harvey Harrison441b62c2008-03-03 16:08:34 -0800713 dbg("%s - port %d", __func__, port->number);
Craig Shelley39a66b82005-05-27 00:09:56 +0100714
715 if (set & TIOCM_RTS) {
716 control |= CONTROL_RTS;
717 control |= CONTROL_WRITE_RTS;
718 }
719 if (set & TIOCM_DTR) {
720 control |= CONTROL_DTR;
721 control |= CONTROL_WRITE_DTR;
722 }
723 if (clear & TIOCM_RTS) {
724 control &= ~CONTROL_RTS;
725 control |= CONTROL_WRITE_RTS;
726 }
727 if (clear & TIOCM_DTR) {
728 control &= ~CONTROL_DTR;
729 control |= CONTROL_WRITE_DTR;
730 }
731
Harvey Harrison441b62c2008-03-03 16:08:34 -0800732 dbg("%s - control = 0x%.4x", __func__, control);
Craig Shelley39a66b82005-05-27 00:09:56 +0100733
734 return cp2101_set_config(port, CP2101_CONTROL, &control, 2);
Craig Shelley39a66b82005-05-27 00:09:56 +0100735}
736
Alan Cox95da3102008-07-22 11:09:07 +0100737static int cp2101_tiocmget (struct tty_struct *tty, struct file *file)
Craig Shelley39a66b82005-05-27 00:09:56 +0100738{
Alan Cox95da3102008-07-22 11:09:07 +0100739 struct usb_serial_port *port = tty->driver_data;
Harvey Harrisonb2bdd1f2008-05-30 10:29:55 -0700740 unsigned int control;
741 int result;
Craig Shelley39a66b82005-05-27 00:09:56 +0100742
Harvey Harrison441b62c2008-03-03 16:08:34 -0800743 dbg("%s - port %d", __func__, port->number);
Craig Shelley39a66b82005-05-27 00:09:56 +0100744
745 cp2101_get_config(port, CP2101_CONTROL, &control, 1);
746
747 result = ((control & CONTROL_DTR) ? TIOCM_DTR : 0)
748 |((control & CONTROL_RTS) ? TIOCM_RTS : 0)
749 |((control & CONTROL_CTS) ? TIOCM_CTS : 0)
750 |((control & CONTROL_DSR) ? TIOCM_DSR : 0)
751 |((control & CONTROL_RING)? TIOCM_RI : 0)
752 |((control & CONTROL_DCD) ? TIOCM_CD : 0);
753
Harvey Harrison441b62c2008-03-03 16:08:34 -0800754 dbg("%s - control = 0x%.2x", __func__, control);
Craig Shelley39a66b82005-05-27 00:09:56 +0100755
756 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
758
Alan Cox95da3102008-07-22 11:09:07 +0100759static void cp2101_break_ctl (struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760{
Alan Cox95da3102008-07-22 11:09:07 +0100761 struct usb_serial_port *port = tty->driver_data;
Harvey Harrisonb2bdd1f2008-05-30 10:29:55 -0700762 unsigned int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Harvey Harrison441b62c2008-03-03 16:08:34 -0800764 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 if (break_state == 0)
766 state = BREAK_OFF;
767 else
768 state = BREAK_ON;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800769 dbg("%s - turning break %s", __func__,
Alan Coxff7eb602008-07-22 11:10:17 +0100770 state == BREAK_OFF ? "off" : "on");
Craig Shelley39a66b82005-05-27 00:09:56 +0100771 cp2101_set_config(port, CP2101_BREAK, &state, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773
Alan Coxff7eb602008-07-22 11:10:17 +0100774static int cp2101_startup(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
Craig Shelley39a66b82005-05-27 00:09:56 +0100776 /* CP2101 buffers behave strangely unless device is reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 usb_reset_device(serial->dev);
778 return 0;
779}
780
Alan Coxff7eb602008-07-22 11:10:17 +0100781static void cp2101_shutdown(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782{
783 int i;
784
Harvey Harrison441b62c2008-03-03 16:08:34 -0800785 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Craig Shelley39a66b82005-05-27 00:09:56 +0100787 /* Stop reads and writes on all ports */
Alan Coxff7eb602008-07-22 11:10:17 +0100788 for (i = 0; i < serial->num_ports; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 cp2101_cleanup(serial->port[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790}
791
Alan Coxff7eb602008-07-22 11:10:17 +0100792static int __init cp2101_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
794 int retval;
795
796 retval = usb_serial_register(&cp2101_device);
797 if (retval)
Craig Shelley39a66b82005-05-27 00:09:56 +0100798 return retval; /* Failed to register */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 retval = usb_register(&cp2101_driver);
801 if (retval) {
Craig Shelley39a66b82005-05-27 00:09:56 +0100802 /* Failed to register */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 usb_serial_deregister(&cp2101_device);
804 return retval;
805 }
806
Craig Shelley39a66b82005-05-27 00:09:56 +0100807 /* Success */
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -0700808 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
809 DRIVER_DESC "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 return 0;
811}
812
Alan Coxff7eb602008-07-22 11:10:17 +0100813static void __exit cp2101_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
Alan Coxff7eb602008-07-22 11:10:17 +0100815 usb_deregister(&cp2101_driver);
816 usb_serial_deregister(&cp2101_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817}
818
819module_init(cp2101_init);
820module_exit(cp2101_exit);
821
822MODULE_DESCRIPTION(DRIVER_DESC);
823MODULE_VERSION(DRIVER_VERSION);
824MODULE_LICENSE("GPL");
825
826module_param(debug, bool, S_IRUGO | S_IWUSR);
827MODULE_PARM_DESC(debug, "Enable verbose debugging messages");