blob: 9ea7b4a4a22b5cc8f9a2b4f724e3faabbed00c26 [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
20#include <linux/config.h>
21#include <linux/kernel.h>
22#include <linux/errno.h>
23#include <linux/slab.h>
24#include <linux/tty.h>
25#include <linux/tty_flip.h>
26#include <linux/module.h>
27#include <linux/moduleparam.h>
28#include <linux/usb.h>
29#include <asm/uaccess.h>
30#include "usb-serial.h"
31
32/*
33 * Version Information
34 */
Craig Shelleye988fc82006-01-20 00:06:19 +000035#define DRIVER_VERSION "v0.06"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#define DRIVER_DESC "Silicon Labs CP2101/CP2102 RS232 serial adaptor driver"
37
38/*
39 * Function Prototypes
40 */
41static int cp2101_open(struct usb_serial_port*, struct file*);
42static void cp2101_cleanup(struct usb_serial_port*);
43static void cp2101_close(struct usb_serial_port*, struct file*);
44static void cp2101_get_termios(struct usb_serial_port*);
45static void cp2101_set_termios(struct usb_serial_port*, struct termios*);
Craig Shelley39a66b82005-05-27 00:09:56 +010046static int cp2101_tiocmget (struct usb_serial_port *, struct file *);
47static int cp2101_tiocmset (struct usb_serial_port *, struct file *,
48 unsigned int, unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049static void cp2101_break_ctl(struct usb_serial_port*, int);
50static int cp2101_startup (struct usb_serial *);
51static void cp2101_shutdown(struct usb_serial*);
52
53
54static int debug;
55
56static struct usb_device_id id_table [] = {
Craig Shelley198b9512005-08-28 09:51:15 +010057 { USB_DEVICE(0x0FCF, 0x1003) }, /* Dynastream ANT development board */
Craig Shelley198b9512005-08-28 09:51:15 +010058 { USB_DEVICE(0x10A6, 0xAA26) }, /* Knock-off DCU-11 cable */
Craig Shelleye988fc82006-01-20 00:06:19 +000059 { USB_DEVICE(0x10AB, 0x10C5) }, /* Siemens MC60 Cable */
60 { USB_DEVICE(0x10B5, 0xAC70) }, /* Nokia CA-42 USB */
61 { USB_DEVICE(0x10C4, 0x807A) }, /* Crumb128 board */
62 { USB_DEVICE(0x10C4, 0x80CA) }, /* Degree Controls Inc */
63 { USB_DEVICE(0x10C4, 0x80F6) }, /* Suunto sports instrument */
64 { USB_DEVICE(0x10C4, 0x813D) }, /* Burnside Telecom Deskmobile */
65 { USB_DEVICE(0x10C4, 0x815E) }, /* Helicomm IP-Link 1220-DVM */
66 { USB_DEVICE(0x10C4, 0xEA60) }, /* Silicon Labs factory default */
Josef Balatkab0ce84d2005-11-17 09:47:24 -080067 { USB_DEVICE(0x16D6, 0x0001) }, /* Jablotron serial interface */
Craig Shelley39a66b82005-05-27 00:09:56 +010068 { } /* Terminating Entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069};
70
71MODULE_DEVICE_TABLE (usb, id_table);
72
73static struct usb_driver cp2101_driver = {
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070074 .name = "cp2101",
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 .probe = usb_serial_probe,
76 .disconnect = usb_serial_disconnect,
77 .id_table = id_table,
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -080078 .no_dynamic_id = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070079};
80
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -070081static struct usb_serial_driver cp2101_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070082 .driver = {
83 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070084 .name = "cp2101",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070085 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 .id_table = id_table,
87 .num_interrupt_in = 0,
88 .num_bulk_in = 0,
89 .num_bulk_out = 0,
90 .num_ports = 1,
91 .open = cp2101_open,
92 .close = cp2101_close,
93 .break_ctl = cp2101_break_ctl,
94 .set_termios = cp2101_set_termios,
Craig Shelley39a66b82005-05-27 00:09:56 +010095 .tiocmget = cp2101_tiocmget,
96 .tiocmset = cp2101_tiocmset,
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 .attach = cp2101_startup,
98 .shutdown = cp2101_shutdown,
99};
100
Craig Shelley39a66b82005-05-27 00:09:56 +0100101/* Config request types */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#define REQTYPE_HOST_TO_DEVICE 0x41
103#define REQTYPE_DEVICE_TO_HOST 0xc1
104
Craig Shelley39a66b82005-05-27 00:09:56 +0100105/* Config SET requests. To GET, add 1 to the request number */
106#define CP2101_UART 0x00 /* Enable / Disable */
107#define CP2101_BAUDRATE 0x01 /* (BAUD_RATE_GEN_FREQ / baudrate) */
108#define CP2101_BITS 0x03 /* 0x(0)(databits)(parity)(stopbits) */
109#define CP2101_BREAK 0x05 /* On / Off */
110#define CP2101_CONTROL 0x07 /* Flow control line states */
111#define CP2101_MODEMCTL 0x13 /* Modem controls */
112#define CP2101_CONFIG_6 0x19 /* 6 bytes of config data ??? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Craig Shelley39a66b82005-05-27 00:09:56 +0100114/* CP2101_UART */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#define UART_ENABLE 0x0001
116#define UART_DISABLE 0x0000
117
Craig Shelley39a66b82005-05-27 00:09:56 +0100118/* CP2101_BAUDRATE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119#define BAUD_RATE_GEN_FREQ 0x384000
120
Craig Shelley39a66b82005-05-27 00:09:56 +0100121/* CP2101_BITS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#define BITS_DATA_MASK 0X0f00
Craig Shelley39a66b82005-05-27 00:09:56 +0100123#define BITS_DATA_5 0X0500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#define BITS_DATA_6 0X0600
125#define BITS_DATA_7 0X0700
126#define BITS_DATA_8 0X0800
127#define BITS_DATA_9 0X0900
128
129#define BITS_PARITY_MASK 0x00f0
130#define BITS_PARITY_NONE 0x0000
131#define BITS_PARITY_ODD 0x0010
132#define BITS_PARITY_EVEN 0x0020
133#define BITS_PARITY_MARK 0x0030
134#define BITS_PARITY_SPACE 0x0040
135
136#define BITS_STOP_MASK 0x000f
137#define BITS_STOP_1 0x0000
138#define BITS_STOP_1_5 0x0001
139#define BITS_STOP_2 0x0002
Craig Shelley39a66b82005-05-27 00:09:56 +0100140
141/* CP2101_BREAK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142#define BREAK_ON 0x0000
143#define BREAK_OFF 0x0001
144
Craig Shelley39a66b82005-05-27 00:09:56 +0100145/* CP2101_CONTROL */
146#define CONTROL_DTR 0x0001
147#define CONTROL_RTS 0x0002
148#define CONTROL_CTS 0x0010
149#define CONTROL_DSR 0x0020
150#define CONTROL_RING 0x0040
151#define CONTROL_DCD 0x0080
152#define CONTROL_WRITE_DTR 0x0100
153#define CONTROL_WRITE_RTS 0x0200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Craig Shelley39a66b82005-05-27 00:09:56 +0100155/*
156 * cp2101_get_config
157 * Reads from the CP2101 configuration registers
158 * 'size' is specified in bytes.
159 * 'data' is a pointer to a pre-allocated array of integers large
160 * enough to hold 'size' bytes (with 4 bytes to each integer)
161 */
162static int cp2101_get_config(struct usb_serial_port* port, u8 request,
163 unsigned int *data, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
165 struct usb_serial *serial = port->serial;
Craig Shelley39a66b82005-05-27 00:09:56 +0100166 u32 *buf;
167 int result, i, length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Craig Shelley39a66b82005-05-27 00:09:56 +0100169 /* Number of integers required to contain the array */
170 length = (((size - 1) | 3) + 1)/4;
171
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100172 buf = kcalloc(length, sizeof(u32), GFP_KERNEL);
Craig Shelley39a66b82005-05-27 00:09:56 +0100173 if (!buf) {
174 dev_err(&port->dev, "%s - out of memory.\n", __FUNCTION__);
175 return -ENOMEM;
176 }
177
178 /* For get requests, the request number must be incremented */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 request++;
180
Craig Shelley39a66b82005-05-27 00:09:56 +0100181 /* Issue the request, attempting to read 'size' bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 result = usb_control_msg (serial->dev,usb_rcvctrlpipe (serial->dev, 0),
183 request, REQTYPE_DEVICE_TO_HOST, 0x0000,
Craig Shelley39a66b82005-05-27 00:09:56 +0100184 0, buf, size, 300);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Craig Shelley39a66b82005-05-27 00:09:56 +0100186 /* Convert data into an array of integers */
187 for (i=0; i<length; i++)
188 data[i] = le32_to_cpu(buf[i]);
189
190 kfree(buf);
191
192 if (result != size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 dev_err(&port->dev, "%s - Unable to send config request, "
Craig Shelley39a66b82005-05-27 00:09:56 +0100194 "request=0x%x size=%d result=%d\n",
195 __FUNCTION__, request, size, result);
196 return -EPROTO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 }
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 return 0;
200}
201
Craig Shelley39a66b82005-05-27 00:09:56 +0100202/*
203 * cp2101_set_config
204 * Writes to the CP2101 configuration registers
205 * Values less than 16 bits wide are sent directly
206 * 'size' is specified in bytes.
207 */
208static int cp2101_set_config(struct usb_serial_port* port, u8 request,
209 unsigned int *data, int size)
210{
211 struct usb_serial *serial = port->serial;
212 u32 *buf;
213 int result, i, length;
214
215 /* Number of integers required to contain the array */
216 length = (((size - 1) | 3) + 1)/4;
217
218 buf = kmalloc(length * sizeof(u32), GFP_KERNEL);
219 if (!buf) {
220 dev_err(&port->dev, "%s - out of memory.\n",
221 __FUNCTION__);
222 return -ENOMEM;
223 }
224
225 /* Array of integers into bytes */
226 for (i = 0; i < length; i++)
227 buf[i] = cpu_to_le32(data[i]);
228
229 if (size > 2) {
230 result = usb_control_msg (serial->dev,
231 usb_sndctrlpipe(serial->dev, 0),
232 request, REQTYPE_HOST_TO_DEVICE, 0x0000,
233 0, buf, size, 300);
234 } else {
235 result = usb_control_msg (serial->dev,
236 usb_sndctrlpipe(serial->dev, 0),
237 request, REQTYPE_HOST_TO_DEVICE, data[0],
238 0, NULL, 0, 300);
239 }
240
241 kfree(buf);
242
243 if ((size > 2 && result != size) || result < 0) {
244 dev_err(&port->dev, "%s - Unable to send request, "
245 "request=0x%x size=%d result=%d\n",
246 __FUNCTION__, request, size, result);
247 return -EPROTO;
248 }
249
250 /* Single data value */
251 result = usb_control_msg (serial->dev,
252 usb_sndctrlpipe(serial->dev, 0),
253 request, REQTYPE_HOST_TO_DEVICE, data[0],
254 0, NULL, 0, 300);
255 return 0;
256}
257
258/*
259 * cp2101_set_config_single
260 * Convenience function for calling cp2101_set_config on single data values
261 * without requiring an integer pointer
262 */
263static inline int cp2101_set_config_single(struct usb_serial_port* port,
264 u8 request, unsigned int data)
265{
266 return cp2101_set_config(port, request, &data, 2);
267}
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269static int cp2101_open (struct usb_serial_port *port, struct file *filp)
270{
271 struct usb_serial *serial = port->serial;
272 int result;
273
274 dbg("%s - port %d", __FUNCTION__, port->number);
275
Craig Shelley39a66b82005-05-27 00:09:56 +0100276 if (cp2101_set_config_single(port, CP2101_UART, UART_ENABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 dev_err(&port->dev, "%s - Unable to enable UART\n",
278 __FUNCTION__);
279 return -EPROTO;
280 }
281
282 /* Start reading from the device */
283 usb_fill_bulk_urb (port->read_urb, serial->dev,
284 usb_rcvbulkpipe(serial->dev,
285 port->bulk_in_endpointAddress),
286 port->read_urb->transfer_buffer,
287 port->read_urb->transfer_buffer_length,
288 serial->type->read_bulk_callback,
289 port);
290 result = usb_submit_urb(port->read_urb, GFP_KERNEL);
291 if (result) {
292 dev_err(&port->dev, "%s - failed resubmitting read urb, "
293 "error %d\n", __FUNCTION__, result);
294 return result;
295 }
296
Craig Shelley39a66b82005-05-27 00:09:56 +0100297 /* Configure the termios structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 cp2101_get_termios(port);
299
Craig Shelley39a66b82005-05-27 00:09:56 +0100300 /* Set the DTR and RTS pins low */
301 cp2101_tiocmset(port, NULL, TIOCM_DTR | TIOCM_RTS, 0);
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 return 0;
304}
305
306static void cp2101_cleanup (struct usb_serial_port *port)
307{
308 struct usb_serial *serial = port->serial;
309
310 dbg("%s - port %d", __FUNCTION__, port->number);
311
312 if (serial->dev) {
313 /* shutdown any bulk reads that might be going on */
314 if (serial->num_bulk_out)
315 usb_kill_urb(port->write_urb);
316 if (serial->num_bulk_in)
317 usb_kill_urb(port->read_urb);
318 }
319}
320
321static void cp2101_close (struct usb_serial_port *port, struct file * filp)
322{
323 dbg("%s - port %d", __FUNCTION__, port->number);
324
325 /* shutdown our urbs */
326 dbg("%s - shutting down urbs", __FUNCTION__);
327 usb_kill_urb(port->write_urb);
328 usb_kill_urb(port->read_urb);
329
Craig Shelley39a66b82005-05-27 00:09:56 +0100330 cp2101_set_config_single(port, CP2101_UART, UART_DISABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
Craig Shelley39a66b82005-05-27 00:09:56 +0100333/*
334 * cp2101_get_termios
335 * Reads the baud rate, data bits, parity, stop bits and flow control mode
336 * from the device, corrects any unsupported values, and configures the
337 * termios structure to reflect the state of the device
338 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339static void cp2101_get_termios (struct usb_serial_port *port)
340{
Craig Shelley39a66b82005-05-27 00:09:56 +0100341 unsigned int cflag, modem_ctl[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 int baud;
343 int bits;
344
345 dbg("%s - port %d", __FUNCTION__, port->number);
346
347 if ((!port->tty) || (!port->tty->termios)) {
348 dbg("%s - no tty structures", __FUNCTION__);
349 return;
350 }
351 cflag = port->tty->termios->c_cflag;
352
Craig Shelley39a66b82005-05-27 00:09:56 +0100353 cp2101_get_config(port, CP2101_BAUDRATE, &baud, 2);
354 /* Convert to baudrate */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 if (baud)
356 baud = BAUD_RATE_GEN_FREQ / baud;
357
358 dbg("%s - baud rate = %d", __FUNCTION__, baud);
359 cflag &= ~CBAUD;
360 switch (baud) {
Craig Shelley39a66b82005-05-27 00:09:56 +0100361 /*
362 * The baud rates which are commented out below
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 * appear to be supported by the device
364 * but are non-standard
365 */
366 case 600: cflag |= B600; break;
367 case 1200: cflag |= B1200; break;
368 case 1800: cflag |= B1800; break;
369 case 2400: cflag |= B2400; break;
370 case 4800: cflag |= B4800; break;
371 /*case 7200: cflag |= B7200; break;*/
372 case 9600: cflag |= B9600; break;
373 /*case 14400: cflag |= B14400; break;*/
374 case 19200: cflag |= B19200; break;
375 /*case 28800: cflag |= B28800; break;*/
376 case 38400: cflag |= B38400; break;
377 /*case 55854: cflag |= B55054; break;*/
378 case 57600: cflag |= B57600; break;
379 case 115200: cflag |= B115200; break;
380 /*case 127117: cflag |= B127117; break;*/
381 case 230400: cflag |= B230400; break;
382 case 460800: cflag |= B460800; break;
383 case 921600: cflag |= B921600; break;
384 /*case 3686400: cflag |= B3686400; break;*/
385 default:
386 dbg("%s - Baud rate is not supported, "
387 "using 9600 baud", __FUNCTION__);
388 cflag |= B9600;
Craig Shelley39a66b82005-05-27 00:09:56 +0100389 cp2101_set_config_single(port, CP2101_BAUDRATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 (BAUD_RATE_GEN_FREQ/9600));
391 break;
392 }
393
Craig Shelley39a66b82005-05-27 00:09:56 +0100394 cp2101_get_config(port, CP2101_BITS, &bits, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 cflag &= ~CSIZE;
396 switch(bits & BITS_DATA_MASK) {
Craig Shelley39a66b82005-05-27 00:09:56 +0100397 case BITS_DATA_5:
398 dbg("%s - data bits = 5", __FUNCTION__);
399 cflag |= CS5;
400 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 case BITS_DATA_6:
402 dbg("%s - data bits = 6", __FUNCTION__);
403 cflag |= CS6;
404 break;
405 case BITS_DATA_7:
406 dbg("%s - data bits = 7", __FUNCTION__);
407 cflag |= CS7;
408 break;
409 case BITS_DATA_8:
410 dbg("%s - data bits = 8", __FUNCTION__);
411 cflag |= CS8;
412 break;
413 case BITS_DATA_9:
414 dbg("%s - data bits = 9 (not supported, "
415 "using 8 data bits)", __FUNCTION__);
416 cflag |= CS8;
417 bits &= ~BITS_DATA_MASK;
418 bits |= BITS_DATA_8;
Craig Shelley39a66b82005-05-27 00:09:56 +0100419 cp2101_set_config(port, CP2101_BITS, &bits, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 break;
421 default:
422 dbg("%s - Unknown number of data bits, "
423 "using 8", __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 }
430
431 switch(bits & BITS_PARITY_MASK) {
432 case BITS_PARITY_NONE:
433 dbg("%s - parity = NONE", __FUNCTION__);
434 cflag &= ~PARENB;
435 break;
436 case BITS_PARITY_ODD:
437 dbg("%s - parity = ODD", __FUNCTION__);
438 cflag |= (PARENB|PARODD);
439 break;
440 case BITS_PARITY_EVEN:
441 dbg("%s - parity = EVEN", __FUNCTION__);
442 cflag &= ~PARODD;
443 cflag |= PARENB;
444 break;
445 case BITS_PARITY_MARK:
446 dbg("%s - parity = MARK (not supported, "
447 "disabling parity)", __FUNCTION__);
448 cflag &= ~PARENB;
449 bits &= ~BITS_PARITY_MASK;
Craig Shelley39a66b82005-05-27 00:09:56 +0100450 cp2101_set_config(port, CP2101_BITS, &bits, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 break;
452 case BITS_PARITY_SPACE:
453 dbg("%s - parity = SPACE (not supported, "
454 "disabling parity)", __FUNCTION__);
455 cflag &= ~PARENB;
456 bits &= ~BITS_PARITY_MASK;
Craig Shelley39a66b82005-05-27 00:09:56 +0100457 cp2101_set_config(port, CP2101_BITS, &bits, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 break;
459 default:
460 dbg("%s - Unknown parity mode, "
461 "disabling parity", __FUNCTION__);
462 cflag &= ~PARENB;
463 bits &= ~BITS_PARITY_MASK;
Craig Shelley39a66b82005-05-27 00:09:56 +0100464 cp2101_set_config(port, CP2101_BITS, &bits, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 break;
466 }
467
468 cflag &= ~CSTOPB;
469 switch(bits & BITS_STOP_MASK) {
470 case BITS_STOP_1:
471 dbg("%s - stop bits = 1", __FUNCTION__);
472 break;
473 case BITS_STOP_1_5:
474 dbg("%s - stop bits = 1.5 (not supported, "
Craig Shelley39a66b82005-05-27 00:09:56 +0100475 "using 1 stop bit)", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 bits &= ~BITS_STOP_MASK;
Craig Shelley39a66b82005-05-27 00:09:56 +0100477 cp2101_set_config(port, CP2101_BITS, &bits, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 break;
479 case BITS_STOP_2:
480 dbg("%s - stop bits = 2", __FUNCTION__);
481 cflag |= CSTOPB;
482 break;
483 default:
484 dbg("%s - Unknown number of stop bits, "
485 "using 1 stop bit", __FUNCTION__);
486 bits &= ~BITS_STOP_MASK;
Craig Shelley39a66b82005-05-27 00:09:56 +0100487 cp2101_set_config(port, CP2101_BITS, &bits, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 break;
489 }
490
Craig Shelley39a66b82005-05-27 00:09:56 +0100491 cp2101_get_config(port, CP2101_MODEMCTL, modem_ctl, 16);
492 if (modem_ctl[0] & 0x0008) {
493 dbg("%s - flow control = CRTSCTS", __FUNCTION__);
494 cflag |= CRTSCTS;
495 } else {
496 dbg("%s - flow control = NONE", __FUNCTION__);
497 cflag &= ~CRTSCTS;
498 }
499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 port->tty->termios->c_cflag = cflag;
501}
502
503static void cp2101_set_termios (struct usb_serial_port *port,
504 struct termios *old_termios)
505{
506 unsigned int cflag, old_cflag=0;
Craig Shelley39a66b82005-05-27 00:09:56 +0100507 int baud=0, bits;
508 unsigned int modem_ctl[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510 dbg("%s - port %d", __FUNCTION__, port->number);
511
512 if ((!port->tty) || (!port->tty->termios)) {
513 dbg("%s - no tty structures", __FUNCTION__);
514 return;
515 }
516 cflag = port->tty->termios->c_cflag;
517
Craig Shelley39a66b82005-05-27 00:09:56 +0100518 /* Check that they really want us to change something */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 if (old_termios) {
520 if ((cflag == old_termios->c_cflag) &&
521 (RELEVANT_IFLAG(port->tty->termios->c_iflag)
522 == RELEVANT_IFLAG(old_termios->c_iflag))) {
523 dbg("%s - nothing to change...", __FUNCTION__);
524 return;
525 }
526
527 old_cflag = old_termios->c_cflag;
528 }
529
530 /* If the baud rate is to be updated*/
531 if ((cflag & CBAUD) != (old_cflag & CBAUD)) {
532 switch (cflag & CBAUD) {
Craig Shelley39a66b82005-05-27 00:09:56 +0100533 /*
534 * The baud rates which are commented out below
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 * appear to be supported by the device
536 * but are non-standard
537 */
538 case B0: baud = 0; break;
539 case B600: baud = 600; break;
540 case B1200: baud = 1200; break;
541 case B1800: baud = 1800; break;
542 case B2400: baud = 2400; break;
543 case B4800: baud = 4800; break;
544 /*case B7200: baud = 7200; break;*/
545 case B9600: baud = 9600; break;
546 /*ase B14400: baud = 14400; break;*/
547 case B19200: baud = 19200; break;
548 /*case B28800: baud = 28800; break;*/
549 case B38400: baud = 38400; break;
550 /*case B55854: baud = 55054; break;*/
551 case B57600: baud = 57600; break;
552 case B115200: baud = 115200; break;
553 /*case B127117: baud = 127117; break;*/
554 case B230400: baud = 230400; break;
555 case B460800: baud = 460800; break;
556 case B921600: baud = 921600; break;
557 /*case B3686400: baud = 3686400; break;*/
558 default:
559 dev_err(&port->dev, "cp2101 driver does not "
560 "support the baudrate requested\n");
561 break;
562 }
563
564 if (baud) {
565 dbg("%s - Setting baud rate to %d baud", __FUNCTION__,
566 baud);
Craig Shelley39a66b82005-05-27 00:09:56 +0100567 if (cp2101_set_config_single(port, CP2101_BAUDRATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 (BAUD_RATE_GEN_FREQ / baud)))
569 dev_err(&port->dev, "Baud rate requested not "
570 "supported by device\n");
571 }
572 }
573
Craig Shelley39a66b82005-05-27 00:09:56 +0100574 /* If the number of data bits is to be updated */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if ((cflag & CSIZE) != (old_cflag & CSIZE)) {
Craig Shelley39a66b82005-05-27 00:09:56 +0100576 cp2101_get_config(port, CP2101_BITS, &bits, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 bits &= ~BITS_DATA_MASK;
578 switch (cflag & CSIZE) {
Craig Shelley39a66b82005-05-27 00:09:56 +0100579 case CS5:
580 bits |= BITS_DATA_5;
581 dbg("%s - data bits = 5", __FUNCTION__);
582 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 case CS6:
584 bits |= BITS_DATA_6;
585 dbg("%s - data bits = 6", __FUNCTION__);
586 break;
587 case CS7:
588 bits |= BITS_DATA_7;
589 dbg("%s - data bits = 7", __FUNCTION__);
590 break;
591 case CS8:
592 bits |= BITS_DATA_8;
593 dbg("%s - data bits = 8", __FUNCTION__);
594 break;
595 /*case CS9:
596 bits |= BITS_DATA_9;
597 dbg("%s - data bits = 9", __FUNCTION__);
598 break;*/
599 default:
600 dev_err(&port->dev, "cp2101 driver does not "
601 "support the number of bits requested,"
602 " using 8 bit mode\n");
603 bits |= BITS_DATA_8;
604 break;
605 }
Craig Shelley39a66b82005-05-27 00:09:56 +0100606 if (cp2101_set_config(port, CP2101_BITS, &bits, 2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 dev_err(&port->dev, "Number of data bits requested "
608 "not supported by device\n");
609 }
610
611 if ((cflag & (PARENB|PARODD)) != (old_cflag & (PARENB|PARODD))) {
Craig Shelley39a66b82005-05-27 00:09:56 +0100612 cp2101_get_config(port, CP2101_BITS, &bits, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 bits &= ~BITS_PARITY_MASK;
614 if (cflag & PARENB) {
615 if (cflag & PARODD) {
616 bits |= BITS_PARITY_ODD;
617 dbg("%s - parity = ODD", __FUNCTION__);
618 } else {
619 bits |= BITS_PARITY_EVEN;
620 dbg("%s - parity = EVEN", __FUNCTION__);
621 }
622 }
Craig Shelley39a66b82005-05-27 00:09:56 +0100623 if (cp2101_set_config(port, CP2101_BITS, &bits, 2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 dev_err(&port->dev, "Parity mode not supported "
625 "by device\n");
626 }
627
628 if ((cflag & CSTOPB) != (old_cflag & CSTOPB)) {
Craig Shelley39a66b82005-05-27 00:09:56 +0100629 cp2101_get_config(port, CP2101_BITS, &bits, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 bits &= ~BITS_STOP_MASK;
631 if (cflag & CSTOPB) {
632 bits |= BITS_STOP_2;
633 dbg("%s - stop bits = 2", __FUNCTION__);
634 } else {
635 bits |= BITS_STOP_1;
636 dbg("%s - stop bits = 1", __FUNCTION__);
637 }
Craig Shelley39a66b82005-05-27 00:09:56 +0100638 if (cp2101_set_config(port, CP2101_BITS, &bits, 2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 dev_err(&port->dev, "Number of stop bits requested "
640 "not supported by device\n");
641 }
Craig Shelley39a66b82005-05-27 00:09:56 +0100642
643 if ((cflag & CRTSCTS) != (old_cflag & CRTSCTS)) {
644 cp2101_get_config(port, CP2101_MODEMCTL, modem_ctl, 16);
645 dbg("%s - read modem controls = 0x%.4x 0x%.4x 0x%.4x 0x%.4x",
646 __FUNCTION__, modem_ctl[0], modem_ctl[1],
647 modem_ctl[2], modem_ctl[3]);
648
649 if (cflag & CRTSCTS) {
650 modem_ctl[0] &= ~0x7B;
651 modem_ctl[0] |= 0x09;
652 modem_ctl[1] = 0x80;
653 dbg("%s - flow control = CRTSCTS", __FUNCTION__);
654 } else {
655 modem_ctl[0] &= ~0x7B;
656 modem_ctl[0] |= 0x01;
657 modem_ctl[1] |= 0x40;
658 dbg("%s - flow control = NONE", __FUNCTION__);
659 }
660
661 dbg("%s - write modem controls = 0x%.4x 0x%.4x 0x%.4x 0x%.4x",
662 __FUNCTION__, modem_ctl[0], modem_ctl[1],
663 modem_ctl[2], modem_ctl[3]);
664 cp2101_set_config(port, CP2101_MODEMCTL, modem_ctl, 16);
665 }
666
667}
668
669static int cp2101_tiocmset (struct usb_serial_port *port, struct file *file,
670 unsigned int set, unsigned int clear)
671{
672 int control = 0;
673
674 dbg("%s - port %d", __FUNCTION__, port->number);
675
676 if (set & TIOCM_RTS) {
677 control |= CONTROL_RTS;
678 control |= CONTROL_WRITE_RTS;
679 }
680 if (set & TIOCM_DTR) {
681 control |= CONTROL_DTR;
682 control |= CONTROL_WRITE_DTR;
683 }
684 if (clear & TIOCM_RTS) {
685 control &= ~CONTROL_RTS;
686 control |= CONTROL_WRITE_RTS;
687 }
688 if (clear & TIOCM_DTR) {
689 control &= ~CONTROL_DTR;
690 control |= CONTROL_WRITE_DTR;
691 }
692
693 dbg("%s - control = 0x%.4x", __FUNCTION__, control);
694
695 return cp2101_set_config(port, CP2101_CONTROL, &control, 2);
696
697}
698
699static int cp2101_tiocmget (struct usb_serial_port *port, struct file *file)
700{
701 int control, result;
702
703 dbg("%s - port %d", __FUNCTION__, port->number);
704
705 cp2101_get_config(port, CP2101_CONTROL, &control, 1);
706
707 result = ((control & CONTROL_DTR) ? TIOCM_DTR : 0)
708 |((control & CONTROL_RTS) ? TIOCM_RTS : 0)
709 |((control & CONTROL_CTS) ? TIOCM_CTS : 0)
710 |((control & CONTROL_DSR) ? TIOCM_DSR : 0)
711 |((control & CONTROL_RING)? TIOCM_RI : 0)
712 |((control & CONTROL_DCD) ? TIOCM_CD : 0);
713
714 dbg("%s - control = 0x%.2x", __FUNCTION__, control);
715
716 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717}
718
719static void cp2101_break_ctl (struct usb_serial_port *port, int break_state)
720{
Craig Shelley39a66b82005-05-27 00:09:56 +0100721 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723 dbg("%s - port %d", __FUNCTION__, port->number);
724 if (break_state == 0)
725 state = BREAK_OFF;
726 else
727 state = BREAK_ON;
728 dbg("%s - turning break %s", __FUNCTION__,
729 state==BREAK_OFF ? "off" : "on");
Craig Shelley39a66b82005-05-27 00:09:56 +0100730 cp2101_set_config(port, CP2101_BREAK, &state, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731}
732
733static int cp2101_startup (struct usb_serial *serial)
734{
Craig Shelley39a66b82005-05-27 00:09:56 +0100735 /* CP2101 buffers behave strangely unless device is reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 usb_reset_device(serial->dev);
737 return 0;
738}
739
740static void cp2101_shutdown (struct usb_serial *serial)
741{
742 int i;
743
744 dbg("%s", __FUNCTION__);
745
Craig Shelley39a66b82005-05-27 00:09:56 +0100746 /* Stop reads and writes on all ports */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 for (i=0; i < serial->num_ports; ++i) {
748 cp2101_cleanup(serial->port[i]);
749 }
750}
751
752static int __init cp2101_init (void)
753{
754 int retval;
755
756 retval = usb_serial_register(&cp2101_device);
757 if (retval)
Craig Shelley39a66b82005-05-27 00:09:56 +0100758 return retval; /* Failed to register */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760 retval = usb_register(&cp2101_driver);
761 if (retval) {
Craig Shelley39a66b82005-05-27 00:09:56 +0100762 /* Failed to register */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 usb_serial_deregister(&cp2101_device);
764 return retval;
765 }
766
Craig Shelley39a66b82005-05-27 00:09:56 +0100767 /* Success */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 info(DRIVER_DESC " " DRIVER_VERSION);
769 return 0;
770}
771
772static void __exit cp2101_exit (void)
773{
774 usb_deregister (&cp2101_driver);
775 usb_serial_deregister (&cp2101_device);
776}
777
778module_init(cp2101_init);
779module_exit(cp2101_exit);
780
781MODULE_DESCRIPTION(DRIVER_DESC);
782MODULE_VERSION(DRIVER_VERSION);
783MODULE_LICENSE("GPL");
784
785module_param(debug, bool, S_IRUGO | S_IWUSR);
786MODULE_PARM_DESC(debug, "Enable verbose debugging messages");