blob: db623e754899859bc88e043a23ee593bdd3a14cf [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 *
14 * Outstanding Issues:
15 * Buffers are not flushed when the port is opened.
16 * Multiple calls to write() may fail with "Resource temporarily unavailable"
17 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 */
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/kernel.h>
21#include <linux/errno.h>
22#include <linux/slab.h>
23#include <linux/tty.h>
24#include <linux/tty_flip.h>
25#include <linux/module.h>
26#include <linux/moduleparam.h>
27#include <linux/usb.h>
28#include <asm/uaccess.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070029#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31/*
32 * Version Information
33 */
Craig Shelley59224f52006-03-11 11:29:02 +000034#define DRIVER_VERSION "v0.07"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#define DRIVER_DESC "Silicon Labs CP2101/CP2102 RS232 serial adaptor driver"
36
37/*
38 * Function Prototypes
39 */
40static int cp2101_open(struct usb_serial_port*, struct file*);
41static void cp2101_cleanup(struct usb_serial_port*);
42static void cp2101_close(struct usb_serial_port*, struct file*);
43static void cp2101_get_termios(struct usb_serial_port*);
Alan Cox606d0992006-12-08 02:38:45 -080044static void cp2101_set_termios(struct usb_serial_port*, struct ktermios*);
Craig Shelley39a66b82005-05-27 00:09:56 +010045static int cp2101_tiocmget (struct usb_serial_port *, struct file *);
46static int cp2101_tiocmset (struct usb_serial_port *, struct file *,
47 unsigned int, unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048static void cp2101_break_ctl(struct usb_serial_port*, int);
49static int cp2101_startup (struct usb_serial *);
50static void cp2101_shutdown(struct usb_serial*);
51
52
53static int debug;
54
55static struct usb_device_id id_table [] = {
Craig Shelley198b9512005-08-28 09:51:15 +010056 { USB_DEVICE(0x0FCF, 0x1003) }, /* Dynastream ANT development board */
Craig Shelley198b9512005-08-28 09:51:15 +010057 { USB_DEVICE(0x10A6, 0xAA26) }, /* Knock-off DCU-11 cable */
Craig Shelleye988fc82006-01-20 00:06:19 +000058 { USB_DEVICE(0x10AB, 0x10C5) }, /* Siemens MC60 Cable */
59 { USB_DEVICE(0x10B5, 0xAC70) }, /* Nokia CA-42 USB */
Craig Shelley59224f52006-03-11 11:29:02 +000060 { USB_DEVICE(0x10C4, 0x803B) }, /* Pololu USB-serial converter */
Vitja Makarov212a4b42006-05-31 00:40:06 +040061 { USB_DEVICE(0x10C4, 0x8066) }, /* Argussoft In-System Programmer */
Craig Shelleye988fc82006-01-20 00:06:19 +000062 { USB_DEVICE(0x10C4, 0x807A) }, /* Crumb128 board */
63 { USB_DEVICE(0x10C4, 0x80CA) }, /* Degree Controls Inc */
64 { USB_DEVICE(0x10C4, 0x80F6) }, /* Suunto sports instrument */
65 { USB_DEVICE(0x10C4, 0x813D) }, /* Burnside Telecom Deskmobile */
66 { USB_DEVICE(0x10C4, 0x815E) }, /* Helicomm IP-Link 1220-DVM */
Bjorn Schneider78001e32006-10-28 12:42:04 +020067 { USB_DEVICE(0x10C4, 0x81C8) }, /* Lipowsky Industrie Elektronik GmbH, Baby-JTAG */
68 { USB_DEVICE(0x10C4, 0x81E2) }, /* Lipowsky Industrie Elektronik GmbH, Baby-LIN */
69 { USB_DEVICE(0x10C4, 0x8218) }, /* Lipowsky Industrie Elektronik GmbH, HARP-1 */
Craig Shelleye988fc82006-01-20 00:06:19 +000070 { USB_DEVICE(0x10C4, 0xEA60) }, /* Silicon Labs factory default */
Craig Shelley61926b92006-10-12 22:09:56 +010071 { USB_DEVICE(0x10C4, 0xEA61) }, /* Silicon Labs factory default */
Pozsar Balazsebaf4942007-02-16 12:47:49 +010072 { USB_DEVICE(0x10C5, 0xEA61) }, /* Silicon Labs MobiData GPRS USB Modem */
Johannes Hoelzle05998d2006-12-02 16:54:27 +010073 { USB_DEVICE(0x13AD, 0x9999) }, /* Baltech card reader */
Josef Balatkab0ce84d2005-11-17 09:47:24 -080074 { USB_DEVICE(0x16D6, 0x0001) }, /* Jablotron serial interface */
Craig Shelley39a66b82005-05-27 00:09:56 +010075 { } /* Terminating Entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -070076};
77
78MODULE_DEVICE_TABLE (usb, id_table);
79
80static struct usb_driver cp2101_driver = {
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070081 .name = "cp2101",
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 .probe = usb_serial_probe,
83 .disconnect = usb_serial_disconnect,
84 .id_table = id_table,
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -080085 .no_dynamic_id = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070086};
87
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -070088static struct usb_serial_driver cp2101_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070089 .driver = {
90 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070091 .name = "cp2101",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070092 },
Johannes Hölzld9b1b782006-12-17 21:50:24 +010093 .usb_driver = &cp2101_driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 .id_table = id_table,
95 .num_interrupt_in = 0,
96 .num_bulk_in = 0,
97 .num_bulk_out = 0,
98 .num_ports = 1,
99 .open = cp2101_open,
100 .close = cp2101_close,
101 .break_ctl = cp2101_break_ctl,
102 .set_termios = cp2101_set_termios,
Craig Shelley39a66b82005-05-27 00:09:56 +0100103 .tiocmget = cp2101_tiocmget,
104 .tiocmset = cp2101_tiocmset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 .attach = cp2101_startup,
106 .shutdown = cp2101_shutdown,
107};
108
Craig Shelley39a66b82005-05-27 00:09:56 +0100109/* Config request types */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#define REQTYPE_HOST_TO_DEVICE 0x41
111#define REQTYPE_DEVICE_TO_HOST 0xc1
112
Craig Shelley39a66b82005-05-27 00:09:56 +0100113/* Config SET requests. To GET, add 1 to the request number */
114#define CP2101_UART 0x00 /* Enable / Disable */
115#define CP2101_BAUDRATE 0x01 /* (BAUD_RATE_GEN_FREQ / baudrate) */
116#define CP2101_BITS 0x03 /* 0x(0)(databits)(parity)(stopbits) */
117#define CP2101_BREAK 0x05 /* On / Off */
118#define CP2101_CONTROL 0x07 /* Flow control line states */
119#define CP2101_MODEMCTL 0x13 /* Modem controls */
120#define CP2101_CONFIG_6 0x19 /* 6 bytes of config data ??? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Craig Shelley39a66b82005-05-27 00:09:56 +0100122/* CP2101_UART */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123#define UART_ENABLE 0x0001
124#define UART_DISABLE 0x0000
125
Craig Shelley39a66b82005-05-27 00:09:56 +0100126/* CP2101_BAUDRATE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127#define BAUD_RATE_GEN_FREQ 0x384000
128
Craig Shelley39a66b82005-05-27 00:09:56 +0100129/* CP2101_BITS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130#define BITS_DATA_MASK 0X0f00
Craig Shelley39a66b82005-05-27 00:09:56 +0100131#define BITS_DATA_5 0X0500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132#define BITS_DATA_6 0X0600
133#define BITS_DATA_7 0X0700
134#define BITS_DATA_8 0X0800
135#define BITS_DATA_9 0X0900
136
137#define BITS_PARITY_MASK 0x00f0
138#define BITS_PARITY_NONE 0x0000
139#define BITS_PARITY_ODD 0x0010
140#define BITS_PARITY_EVEN 0x0020
141#define BITS_PARITY_MARK 0x0030
142#define BITS_PARITY_SPACE 0x0040
143
144#define BITS_STOP_MASK 0x000f
145#define BITS_STOP_1 0x0000
146#define BITS_STOP_1_5 0x0001
147#define BITS_STOP_2 0x0002
Craig Shelley39a66b82005-05-27 00:09:56 +0100148
149/* CP2101_BREAK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150#define BREAK_ON 0x0000
151#define BREAK_OFF 0x0001
152
Craig Shelley39a66b82005-05-27 00:09:56 +0100153/* CP2101_CONTROL */
154#define CONTROL_DTR 0x0001
155#define CONTROL_RTS 0x0002
156#define CONTROL_CTS 0x0010
157#define CONTROL_DSR 0x0020
158#define CONTROL_RING 0x0040
159#define CONTROL_DCD 0x0080
160#define CONTROL_WRITE_DTR 0x0100
161#define CONTROL_WRITE_RTS 0x0200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Craig Shelley39a66b82005-05-27 00:09:56 +0100163/*
164 * cp2101_get_config
165 * Reads from the CP2101 configuration registers
166 * 'size' is specified in bytes.
167 * 'data' is a pointer to a pre-allocated array of integers large
168 * enough to hold 'size' bytes (with 4 bytes to each integer)
169 */
170static int cp2101_get_config(struct usb_serial_port* port, u8 request,
171 unsigned int *data, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
173 struct usb_serial *serial = port->serial;
Al Viro53ebb3b2007-02-09 16:39:55 +0000174 __le32 *buf;
Craig Shelley39a66b82005-05-27 00:09:56 +0100175 int result, i, length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Craig Shelley39a66b82005-05-27 00:09:56 +0100177 /* Number of integers required to contain the array */
178 length = (((size - 1) | 3) + 1)/4;
179
Al Viro53ebb3b2007-02-09 16:39:55 +0000180 buf = kcalloc(length, sizeof(__le32), GFP_KERNEL);
Craig Shelley39a66b82005-05-27 00:09:56 +0100181 if (!buf) {
182 dev_err(&port->dev, "%s - out of memory.\n", __FUNCTION__);
183 return -ENOMEM;
184 }
185
186 /* For get requests, the request number must be incremented */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 request++;
188
Craig Shelley39a66b82005-05-27 00:09:56 +0100189 /* Issue the request, attempting to read 'size' bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 result = usb_control_msg (serial->dev,usb_rcvctrlpipe (serial->dev, 0),
191 request, REQTYPE_DEVICE_TO_HOST, 0x0000,
Craig Shelley39a66b82005-05-27 00:09:56 +0100192 0, buf, size, 300);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Craig Shelley39a66b82005-05-27 00:09:56 +0100194 /* Convert data into an array of integers */
195 for (i=0; i<length; i++)
196 data[i] = le32_to_cpu(buf[i]);
197
198 kfree(buf);
199
200 if (result != size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 dev_err(&port->dev, "%s - Unable to send config request, "
Craig Shelley39a66b82005-05-27 00:09:56 +0100202 "request=0x%x size=%d result=%d\n",
203 __FUNCTION__, request, size, result);
204 return -EPROTO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 }
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 return 0;
208}
209
Craig Shelley39a66b82005-05-27 00:09:56 +0100210/*
211 * cp2101_set_config
212 * Writes to the CP2101 configuration registers
213 * Values less than 16 bits wide are sent directly
214 * 'size' is specified in bytes.
215 */
216static int cp2101_set_config(struct usb_serial_port* port, u8 request,
217 unsigned int *data, int size)
218{
219 struct usb_serial *serial = port->serial;
Al Viro53ebb3b2007-02-09 16:39:55 +0000220 __le32 *buf;
Craig Shelley39a66b82005-05-27 00:09:56 +0100221 int result, i, length;
222
223 /* Number of integers required to contain the array */
224 length = (((size - 1) | 3) + 1)/4;
225
Al Viro53ebb3b2007-02-09 16:39:55 +0000226 buf = kmalloc(length * sizeof(__le32), GFP_KERNEL);
Craig Shelley39a66b82005-05-27 00:09:56 +0100227 if (!buf) {
228 dev_err(&port->dev, "%s - out of memory.\n",
229 __FUNCTION__);
230 return -ENOMEM;
231 }
232
233 /* Array of integers into bytes */
234 for (i = 0; i < length; i++)
235 buf[i] = cpu_to_le32(data[i]);
236
237 if (size > 2) {
238 result = usb_control_msg (serial->dev,
239 usb_sndctrlpipe(serial->dev, 0),
240 request, REQTYPE_HOST_TO_DEVICE, 0x0000,
241 0, buf, size, 300);
242 } else {
243 result = usb_control_msg (serial->dev,
244 usb_sndctrlpipe(serial->dev, 0),
245 request, REQTYPE_HOST_TO_DEVICE, data[0],
246 0, NULL, 0, 300);
247 }
248
249 kfree(buf);
250
251 if ((size > 2 && result != size) || result < 0) {
252 dev_err(&port->dev, "%s - Unable to send request, "
253 "request=0x%x size=%d result=%d\n",
254 __FUNCTION__, request, size, result);
255 return -EPROTO;
256 }
257
258 /* Single data value */
259 result = usb_control_msg (serial->dev,
260 usb_sndctrlpipe(serial->dev, 0),
261 request, REQTYPE_HOST_TO_DEVICE, data[0],
262 0, NULL, 0, 300);
263 return 0;
264}
265
266/*
267 * cp2101_set_config_single
268 * Convenience function for calling cp2101_set_config on single data values
269 * without requiring an integer pointer
270 */
271static inline int cp2101_set_config_single(struct usb_serial_port* port,
272 u8 request, unsigned int data)
273{
274 return cp2101_set_config(port, request, &data, 2);
275}
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277static int cp2101_open (struct usb_serial_port *port, struct file *filp)
278{
279 struct usb_serial *serial = port->serial;
280 int result;
281
282 dbg("%s - port %d", __FUNCTION__, port->number);
283
Craig Shelley39a66b82005-05-27 00:09:56 +0100284 if (cp2101_set_config_single(port, CP2101_UART, UART_ENABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 dev_err(&port->dev, "%s - Unable to enable UART\n",
286 __FUNCTION__);
287 return -EPROTO;
288 }
289
290 /* Start reading from the device */
291 usb_fill_bulk_urb (port->read_urb, serial->dev,
292 usb_rcvbulkpipe(serial->dev,
293 port->bulk_in_endpointAddress),
294 port->read_urb->transfer_buffer,
295 port->read_urb->transfer_buffer_length,
296 serial->type->read_bulk_callback,
297 port);
298 result = usb_submit_urb(port->read_urb, GFP_KERNEL);
299 if (result) {
300 dev_err(&port->dev, "%s - failed resubmitting read urb, "
301 "error %d\n", __FUNCTION__, result);
302 return result;
303 }
304
Craig Shelley39a66b82005-05-27 00:09:56 +0100305 /* Configure the termios structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 cp2101_get_termios(port);
307
Craig Shelley39a66b82005-05-27 00:09:56 +0100308 /* Set the DTR and RTS pins low */
309 cp2101_tiocmset(port, NULL, TIOCM_DTR | TIOCM_RTS, 0);
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 return 0;
312}
313
314static void cp2101_cleanup (struct usb_serial_port *port)
315{
316 struct usb_serial *serial = port->serial;
317
318 dbg("%s - port %d", __FUNCTION__, port->number);
319
320 if (serial->dev) {
321 /* shutdown any bulk reads that might be going on */
322 if (serial->num_bulk_out)
323 usb_kill_urb(port->write_urb);
324 if (serial->num_bulk_in)
325 usb_kill_urb(port->read_urb);
326 }
327}
328
329static void cp2101_close (struct usb_serial_port *port, struct file * filp)
330{
331 dbg("%s - port %d", __FUNCTION__, port->number);
332
333 /* shutdown our urbs */
334 dbg("%s - shutting down urbs", __FUNCTION__);
335 usb_kill_urb(port->write_urb);
336 usb_kill_urb(port->read_urb);
337
Craig Shelley39a66b82005-05-27 00:09:56 +0100338 cp2101_set_config_single(port, CP2101_UART, UART_DISABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339}
340
Craig Shelley39a66b82005-05-27 00:09:56 +0100341/*
342 * cp2101_get_termios
343 * Reads the baud rate, data bits, parity, stop bits and flow control mode
344 * from the device, corrects any unsupported values, and configures the
345 * termios structure to reflect the state of the device
346 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347static void cp2101_get_termios (struct usb_serial_port *port)
348{
Craig Shelley39a66b82005-05-27 00:09:56 +0100349 unsigned int cflag, modem_ctl[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 int baud;
351 int bits;
352
353 dbg("%s - port %d", __FUNCTION__, port->number);
354
355 if ((!port->tty) || (!port->tty->termios)) {
356 dbg("%s - no tty structures", __FUNCTION__);
357 return;
358 }
359 cflag = port->tty->termios->c_cflag;
360
Craig Shelley39a66b82005-05-27 00:09:56 +0100361 cp2101_get_config(port, CP2101_BAUDRATE, &baud, 2);
362 /* Convert to baudrate */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 if (baud)
364 baud = BAUD_RATE_GEN_FREQ / baud;
365
366 dbg("%s - baud rate = %d", __FUNCTION__, baud);
367 cflag &= ~CBAUD;
368 switch (baud) {
Craig Shelley39a66b82005-05-27 00:09:56 +0100369 /*
370 * The baud rates which are commented out below
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 * appear to be supported by the device
372 * but are non-standard
373 */
374 case 600: cflag |= B600; break;
375 case 1200: cflag |= B1200; break;
376 case 1800: cflag |= B1800; break;
377 case 2400: cflag |= B2400; break;
378 case 4800: cflag |= B4800; break;
379 /*case 7200: cflag |= B7200; break;*/
380 case 9600: cflag |= B9600; break;
381 /*case 14400: cflag |= B14400; break;*/
382 case 19200: cflag |= B19200; break;
383 /*case 28800: cflag |= B28800; break;*/
384 case 38400: cflag |= B38400; break;
385 /*case 55854: cflag |= B55054; break;*/
386 case 57600: cflag |= B57600; break;
387 case 115200: cflag |= B115200; break;
388 /*case 127117: cflag |= B127117; break;*/
389 case 230400: cflag |= B230400; break;
390 case 460800: cflag |= B460800; break;
391 case 921600: cflag |= B921600; break;
392 /*case 3686400: cflag |= B3686400; break;*/
393 default:
394 dbg("%s - Baud rate is not supported, "
395 "using 9600 baud", __FUNCTION__);
396 cflag |= B9600;
Craig Shelley39a66b82005-05-27 00:09:56 +0100397 cp2101_set_config_single(port, CP2101_BAUDRATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 (BAUD_RATE_GEN_FREQ/9600));
399 break;
400 }
401
Craig Shelley39a66b82005-05-27 00:09:56 +0100402 cp2101_get_config(port, CP2101_BITS, &bits, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 cflag &= ~CSIZE;
404 switch(bits & BITS_DATA_MASK) {
Craig Shelley39a66b82005-05-27 00:09:56 +0100405 case BITS_DATA_5:
406 dbg("%s - data bits = 5", __FUNCTION__);
407 cflag |= CS5;
408 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 case BITS_DATA_6:
410 dbg("%s - data bits = 6", __FUNCTION__);
411 cflag |= CS6;
412 break;
413 case BITS_DATA_7:
414 dbg("%s - data bits = 7", __FUNCTION__);
415 cflag |= CS7;
416 break;
417 case BITS_DATA_8:
418 dbg("%s - data bits = 8", __FUNCTION__);
419 cflag |= CS8;
420 break;
421 case BITS_DATA_9:
422 dbg("%s - data bits = 9 (not supported, "
423 "using 8 data bits)", __FUNCTION__);
424 cflag |= CS8;
425 bits &= ~BITS_DATA_MASK;
426 bits |= BITS_DATA_8;
Craig Shelley39a66b82005-05-27 00:09:56 +0100427 cp2101_set_config(port, CP2101_BITS, &bits, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 break;
429 default:
430 dbg("%s - Unknown number of data bits, "
431 "using 8", __FUNCTION__);
432 cflag |= CS8;
433 bits &= ~BITS_DATA_MASK;
434 bits |= BITS_DATA_8;
Craig Shelley39a66b82005-05-27 00:09:56 +0100435 cp2101_set_config(port, CP2101_BITS, &bits, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 break;
437 }
438
439 switch(bits & BITS_PARITY_MASK) {
440 case BITS_PARITY_NONE:
441 dbg("%s - parity = NONE", __FUNCTION__);
442 cflag &= ~PARENB;
443 break;
444 case BITS_PARITY_ODD:
445 dbg("%s - parity = ODD", __FUNCTION__);
446 cflag |= (PARENB|PARODD);
447 break;
448 case BITS_PARITY_EVEN:
449 dbg("%s - parity = EVEN", __FUNCTION__);
450 cflag &= ~PARODD;
451 cflag |= PARENB;
452 break;
453 case BITS_PARITY_MARK:
454 dbg("%s - parity = MARK (not supported, "
455 "disabling parity)", __FUNCTION__);
456 cflag &= ~PARENB;
457 bits &= ~BITS_PARITY_MASK;
Craig Shelley39a66b82005-05-27 00:09:56 +0100458 cp2101_set_config(port, CP2101_BITS, &bits, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 break;
460 case BITS_PARITY_SPACE:
461 dbg("%s - parity = SPACE (not supported, "
462 "disabling parity)", __FUNCTION__);
463 cflag &= ~PARENB;
464 bits &= ~BITS_PARITY_MASK;
Craig Shelley39a66b82005-05-27 00:09:56 +0100465 cp2101_set_config(port, CP2101_BITS, &bits, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 break;
467 default:
468 dbg("%s - Unknown parity mode, "
469 "disabling parity", __FUNCTION__);
470 cflag &= ~PARENB;
471 bits &= ~BITS_PARITY_MASK;
Craig Shelley39a66b82005-05-27 00:09:56 +0100472 cp2101_set_config(port, CP2101_BITS, &bits, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 break;
474 }
475
476 cflag &= ~CSTOPB;
477 switch(bits & BITS_STOP_MASK) {
478 case BITS_STOP_1:
479 dbg("%s - stop bits = 1", __FUNCTION__);
480 break;
481 case BITS_STOP_1_5:
482 dbg("%s - stop bits = 1.5 (not supported, "
Craig Shelley39a66b82005-05-27 00:09:56 +0100483 "using 1 stop bit)", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 bits &= ~BITS_STOP_MASK;
Craig Shelley39a66b82005-05-27 00:09:56 +0100485 cp2101_set_config(port, CP2101_BITS, &bits, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 break;
487 case BITS_STOP_2:
488 dbg("%s - stop bits = 2", __FUNCTION__);
489 cflag |= CSTOPB;
490 break;
491 default:
492 dbg("%s - Unknown number of stop bits, "
493 "using 1 stop bit", __FUNCTION__);
494 bits &= ~BITS_STOP_MASK;
Craig Shelley39a66b82005-05-27 00:09:56 +0100495 cp2101_set_config(port, CP2101_BITS, &bits, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 break;
497 }
498
Craig Shelley39a66b82005-05-27 00:09:56 +0100499 cp2101_get_config(port, CP2101_MODEMCTL, modem_ctl, 16);
500 if (modem_ctl[0] & 0x0008) {
501 dbg("%s - flow control = CRTSCTS", __FUNCTION__);
502 cflag |= CRTSCTS;
503 } else {
504 dbg("%s - flow control = NONE", __FUNCTION__);
505 cflag &= ~CRTSCTS;
506 }
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 port->tty->termios->c_cflag = cflag;
509}
510
511static void cp2101_set_termios (struct usb_serial_port *port,
Alan Cox606d0992006-12-08 02:38:45 -0800512 struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
514 unsigned int cflag, old_cflag=0;
Craig Shelley39a66b82005-05-27 00:09:56 +0100515 int baud=0, bits;
516 unsigned int modem_ctl[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518 dbg("%s - port %d", __FUNCTION__, port->number);
519
520 if ((!port->tty) || (!port->tty->termios)) {
521 dbg("%s - no tty structures", __FUNCTION__);
522 return;
523 }
524 cflag = port->tty->termios->c_cflag;
525
Craig Shelley39a66b82005-05-27 00:09:56 +0100526 /* Check that they really want us to change something */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 if (old_termios) {
528 if ((cflag == old_termios->c_cflag) &&
529 (RELEVANT_IFLAG(port->tty->termios->c_iflag)
530 == RELEVANT_IFLAG(old_termios->c_iflag))) {
531 dbg("%s - nothing to change...", __FUNCTION__);
532 return;
533 }
534
535 old_cflag = old_termios->c_cflag;
536 }
537
538 /* If the baud rate is to be updated*/
539 if ((cflag & CBAUD) != (old_cflag & CBAUD)) {
540 switch (cflag & CBAUD) {
Craig Shelley39a66b82005-05-27 00:09:56 +0100541 /*
542 * The baud rates which are commented out below
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 * appear to be supported by the device
544 * but are non-standard
545 */
546 case B0: baud = 0; break;
547 case B600: baud = 600; break;
548 case B1200: baud = 1200; break;
549 case B1800: baud = 1800; break;
550 case B2400: baud = 2400; break;
551 case B4800: baud = 4800; break;
552 /*case B7200: baud = 7200; break;*/
553 case B9600: baud = 9600; break;
554 /*ase B14400: baud = 14400; break;*/
555 case B19200: baud = 19200; break;
556 /*case B28800: baud = 28800; break;*/
557 case B38400: baud = 38400; break;
558 /*case B55854: baud = 55054; break;*/
559 case B57600: baud = 57600; break;
560 case B115200: baud = 115200; break;
561 /*case B127117: baud = 127117; break;*/
562 case B230400: baud = 230400; break;
563 case B460800: baud = 460800; break;
564 case B921600: baud = 921600; break;
565 /*case B3686400: baud = 3686400; break;*/
566 default:
567 dev_err(&port->dev, "cp2101 driver does not "
568 "support the baudrate requested\n");
569 break;
570 }
571
572 if (baud) {
573 dbg("%s - Setting baud rate to %d baud", __FUNCTION__,
574 baud);
Craig Shelley39a66b82005-05-27 00:09:56 +0100575 if (cp2101_set_config_single(port, CP2101_BAUDRATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 (BAUD_RATE_GEN_FREQ / baud)))
577 dev_err(&port->dev, "Baud rate requested not "
578 "supported by device\n");
579 }
580 }
581
Craig Shelley39a66b82005-05-27 00:09:56 +0100582 /* If the number of data bits is to be updated */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 if ((cflag & CSIZE) != (old_cflag & CSIZE)) {
Craig Shelley39a66b82005-05-27 00:09:56 +0100584 cp2101_get_config(port, CP2101_BITS, &bits, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 bits &= ~BITS_DATA_MASK;
586 switch (cflag & CSIZE) {
Craig Shelley39a66b82005-05-27 00:09:56 +0100587 case CS5:
588 bits |= BITS_DATA_5;
589 dbg("%s - data bits = 5", __FUNCTION__);
590 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 case CS6:
592 bits |= BITS_DATA_6;
593 dbg("%s - data bits = 6", __FUNCTION__);
594 break;
595 case CS7:
596 bits |= BITS_DATA_7;
597 dbg("%s - data bits = 7", __FUNCTION__);
598 break;
599 case CS8:
600 bits |= BITS_DATA_8;
601 dbg("%s - data bits = 8", __FUNCTION__);
602 break;
603 /*case CS9:
604 bits |= BITS_DATA_9;
605 dbg("%s - data bits = 9", __FUNCTION__);
606 break;*/
607 default:
608 dev_err(&port->dev, "cp2101 driver does not "
609 "support the number of bits requested,"
610 " using 8 bit mode\n");
611 bits |= BITS_DATA_8;
612 break;
613 }
Craig Shelley39a66b82005-05-27 00:09:56 +0100614 if (cp2101_set_config(port, CP2101_BITS, &bits, 2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 dev_err(&port->dev, "Number of data bits requested "
616 "not supported by device\n");
617 }
618
619 if ((cflag & (PARENB|PARODD)) != (old_cflag & (PARENB|PARODD))) {
Craig Shelley39a66b82005-05-27 00:09:56 +0100620 cp2101_get_config(port, CP2101_BITS, &bits, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 bits &= ~BITS_PARITY_MASK;
622 if (cflag & PARENB) {
623 if (cflag & PARODD) {
624 bits |= BITS_PARITY_ODD;
625 dbg("%s - parity = ODD", __FUNCTION__);
626 } else {
627 bits |= BITS_PARITY_EVEN;
628 dbg("%s - parity = EVEN", __FUNCTION__);
629 }
630 }
Craig Shelley39a66b82005-05-27 00:09:56 +0100631 if (cp2101_set_config(port, CP2101_BITS, &bits, 2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 dev_err(&port->dev, "Parity mode not supported "
633 "by device\n");
634 }
635
636 if ((cflag & CSTOPB) != (old_cflag & CSTOPB)) {
Craig Shelley39a66b82005-05-27 00:09:56 +0100637 cp2101_get_config(port, CP2101_BITS, &bits, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 bits &= ~BITS_STOP_MASK;
639 if (cflag & CSTOPB) {
640 bits |= BITS_STOP_2;
641 dbg("%s - stop bits = 2", __FUNCTION__);
642 } else {
643 bits |= BITS_STOP_1;
644 dbg("%s - stop bits = 1", __FUNCTION__);
645 }
Craig Shelley39a66b82005-05-27 00:09:56 +0100646 if (cp2101_set_config(port, CP2101_BITS, &bits, 2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 dev_err(&port->dev, "Number of stop bits requested "
648 "not supported by device\n");
649 }
Craig Shelley39a66b82005-05-27 00:09:56 +0100650
651 if ((cflag & CRTSCTS) != (old_cflag & CRTSCTS)) {
652 cp2101_get_config(port, CP2101_MODEMCTL, modem_ctl, 16);
653 dbg("%s - read modem controls = 0x%.4x 0x%.4x 0x%.4x 0x%.4x",
654 __FUNCTION__, modem_ctl[0], modem_ctl[1],
655 modem_ctl[2], modem_ctl[3]);
656
657 if (cflag & CRTSCTS) {
658 modem_ctl[0] &= ~0x7B;
659 modem_ctl[0] |= 0x09;
660 modem_ctl[1] = 0x80;
661 dbg("%s - flow control = CRTSCTS", __FUNCTION__);
662 } else {
663 modem_ctl[0] &= ~0x7B;
664 modem_ctl[0] |= 0x01;
665 modem_ctl[1] |= 0x40;
666 dbg("%s - flow control = NONE", __FUNCTION__);
667 }
668
669 dbg("%s - write modem controls = 0x%.4x 0x%.4x 0x%.4x 0x%.4x",
670 __FUNCTION__, modem_ctl[0], modem_ctl[1],
671 modem_ctl[2], modem_ctl[3]);
672 cp2101_set_config(port, CP2101_MODEMCTL, modem_ctl, 16);
673 }
674
675}
676
677static int cp2101_tiocmset (struct usb_serial_port *port, struct file *file,
678 unsigned int set, unsigned int clear)
679{
680 int control = 0;
681
682 dbg("%s - port %d", __FUNCTION__, port->number);
683
684 if (set & TIOCM_RTS) {
685 control |= CONTROL_RTS;
686 control |= CONTROL_WRITE_RTS;
687 }
688 if (set & TIOCM_DTR) {
689 control |= CONTROL_DTR;
690 control |= CONTROL_WRITE_DTR;
691 }
692 if (clear & TIOCM_RTS) {
693 control &= ~CONTROL_RTS;
694 control |= CONTROL_WRITE_RTS;
695 }
696 if (clear & TIOCM_DTR) {
697 control &= ~CONTROL_DTR;
698 control |= CONTROL_WRITE_DTR;
699 }
700
701 dbg("%s - control = 0x%.4x", __FUNCTION__, control);
702
703 return cp2101_set_config(port, CP2101_CONTROL, &control, 2);
704
705}
706
707static int cp2101_tiocmget (struct usb_serial_port *port, struct file *file)
708{
709 int control, result;
710
711 dbg("%s - port %d", __FUNCTION__, port->number);
712
713 cp2101_get_config(port, CP2101_CONTROL, &control, 1);
714
715 result = ((control & CONTROL_DTR) ? TIOCM_DTR : 0)
716 |((control & CONTROL_RTS) ? TIOCM_RTS : 0)
717 |((control & CONTROL_CTS) ? TIOCM_CTS : 0)
718 |((control & CONTROL_DSR) ? TIOCM_DSR : 0)
719 |((control & CONTROL_RING)? TIOCM_RI : 0)
720 |((control & CONTROL_DCD) ? TIOCM_CD : 0);
721
722 dbg("%s - control = 0x%.2x", __FUNCTION__, control);
723
724 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725}
726
727static void cp2101_break_ctl (struct usb_serial_port *port, int break_state)
728{
Craig Shelley39a66b82005-05-27 00:09:56 +0100729 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731 dbg("%s - port %d", __FUNCTION__, port->number);
732 if (break_state == 0)
733 state = BREAK_OFF;
734 else
735 state = BREAK_ON;
736 dbg("%s - turning break %s", __FUNCTION__,
737 state==BREAK_OFF ? "off" : "on");
Craig Shelley39a66b82005-05-27 00:09:56 +0100738 cp2101_set_config(port, CP2101_BREAK, &state, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739}
740
741static int cp2101_startup (struct usb_serial *serial)
742{
Craig Shelley39a66b82005-05-27 00:09:56 +0100743 /* CP2101 buffers behave strangely unless device is reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 usb_reset_device(serial->dev);
745 return 0;
746}
747
748static void cp2101_shutdown (struct usb_serial *serial)
749{
750 int i;
751
752 dbg("%s", __FUNCTION__);
753
Craig Shelley39a66b82005-05-27 00:09:56 +0100754 /* Stop reads and writes on all ports */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 for (i=0; i < serial->num_ports; ++i) {
756 cp2101_cleanup(serial->port[i]);
757 }
758}
759
760static int __init cp2101_init (void)
761{
762 int retval;
763
764 retval = usb_serial_register(&cp2101_device);
765 if (retval)
Craig Shelley39a66b82005-05-27 00:09:56 +0100766 return retval; /* Failed to register */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
768 retval = usb_register(&cp2101_driver);
769 if (retval) {
Craig Shelley39a66b82005-05-27 00:09:56 +0100770 /* Failed to register */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 usb_serial_deregister(&cp2101_device);
772 return retval;
773 }
774
Craig Shelley39a66b82005-05-27 00:09:56 +0100775 /* Success */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 info(DRIVER_DESC " " DRIVER_VERSION);
777 return 0;
778}
779
780static void __exit cp2101_exit (void)
781{
782 usb_deregister (&cp2101_driver);
783 usb_serial_deregister (&cp2101_device);
784}
785
786module_init(cp2101_init);
787module_exit(cp2101_exit);
788
789MODULE_DESCRIPTION(DRIVER_DESC);
790MODULE_VERSION(DRIVER_VERSION);
791MODULE_LICENSE("GPL");
792
793module_param(debug, bool, S_IRUGO | S_IWUSR);
794MODULE_PARM_DESC(debug, "Enable verbose debugging messages");