blob: f9f29b289f2f076b407f83579e7e7ec6220d0688 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Belkin USB Serial Adapter Driver
3 *
4 * Copyright (C) 2000 William Greathouse (wgreathouse@smva.com)
5 * Copyright (C) 2000-2001 Greg Kroah-Hartman (greg@kroah.com)
Johan Hovold2afd8282010-05-15 17:53:53 +02006 * Copyright (C) 2010 Johan Hovold (jhovold@gmail.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * This program is largely derived from work by the linux-usb group
9 * and associated source files. Please see the usb/serial files for
10 * individual credits and copyrights.
Alan Coxb69c1492008-07-22 11:09:39 +010011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
Alan Coxb69c1492008-07-22 11:09:39 +010017 * See Documentation/usb/usb-serial.txt for more information on using this
18 * driver
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 *
20 * TODO:
21 * -- Add true modem contol line query capability. Currently we track the
22 * states reported by the interrupt and the states we request.
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 * -- Add support for flush commands
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 */
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/kernel.h>
27#include <linux/errno.h>
28#include <linux/init.h>
29#include <linux/slab.h>
30#include <linux/tty.h>
31#include <linux/tty_driver.h>
32#include <linux/tty_flip.h>
33#include <linux/module.h>
34#include <linux/spinlock.h>
Alan Coxb69c1492008-07-22 11:09:39 +010035#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070037#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "belkin_sa.h"
39
40static int debug;
41
42/*
43 * Version Information
44 */
Johan Hovold2afd8282010-05-15 17:53:53 +020045#define DRIVER_VERSION "v1.3"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#define DRIVER_AUTHOR "William Greathouse <wgreathouse@smva.com>"
47#define DRIVER_DESC "USB Belkin Serial converter driver"
48
49/* function prototypes for a Belkin USB Serial Adapter F5U103 */
Alan Coxb69c1492008-07-22 11:09:39 +010050static int belkin_sa_startup(struct usb_serial *serial);
Alan Sternf9c99bb2009-06-02 11:53:55 -040051static void belkin_sa_release(struct usb_serial *serial);
Alan Coxb69c1492008-07-22 11:09:39 +010052static int belkin_sa_open(struct tty_struct *tty,
Alan Coxa509a7e2009-09-19 13:13:26 -070053 struct usb_serial_port *port);
Alan Cox335f8512009-06-11 12:26:29 +010054static void belkin_sa_close(struct usb_serial_port *port);
Alan Coxb69c1492008-07-22 11:09:39 +010055static void belkin_sa_read_int_callback(struct urb *urb);
Johan Hovold2afd8282010-05-15 17:53:53 +020056static void belkin_sa_process_read_urb(struct urb *urb);
Alan Coxb69c1492008-07-22 11:09:39 +010057static void belkin_sa_set_termios(struct tty_struct *tty,
58 struct usb_serial_port *port, struct ktermios * old);
59static void belkin_sa_break_ctl(struct tty_struct *tty, int break_state);
Alan Cox60b33c12011-02-14 16:26:14 +000060static int belkin_sa_tiocmget(struct tty_struct *tty);
Alan Cox20b9d172011-02-14 16:26:50 +000061static int belkin_sa_tiocmset(struct tty_struct *tty,
Alan Coxb69c1492008-07-22 11:09:39 +010062 unsigned int set, unsigned int clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64
Németh Márton7d40d7e2010-01-10 15:34:24 +010065static const struct usb_device_id id_table_combined[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 { USB_DEVICE(BELKIN_SA_VID, BELKIN_SA_PID) },
67 { USB_DEVICE(BELKIN_OLD_VID, BELKIN_OLD_PID) },
68 { USB_DEVICE(PERACOM_VID, PERACOM_PID) },
69 { USB_DEVICE(GOHUBS_VID, GOHUBS_PID) },
70 { USB_DEVICE(GOHUBS_VID, HANDYLINK_PID) },
71 { USB_DEVICE(BELKIN_DOCKSTATION_VID, BELKIN_DOCKSTATION_PID) },
Alan Coxb69c1492008-07-22 11:09:39 +010072 { } /* Terminating entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -070073};
Alan Coxb69c1492008-07-22 11:09:39 +010074MODULE_DEVICE_TABLE(usb, id_table_combined);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76static struct usb_driver belkin_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 .name = "belkin",
78 .probe = usb_serial_probe,
79 .disconnect = usb_serial_disconnect,
80 .id_table = id_table_combined,
Johan Hovold726ef422010-05-15 17:53:51 +020081 .no_dynamic_id = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070082};
83
84/* All of the device info needed for the serial converters */
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -070085static struct usb_serial_driver belkin_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070086 .driver = {
87 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070088 .name = "belkin",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070089 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070090 .description = "Belkin / Peracom / GoHubs USB Serial Adapter",
Johannes Hölzld9b1b782006-12-17 21:50:24 +010091 .usb_driver = &belkin_driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 .id_table = id_table_combined,
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 .num_ports = 1,
94 .open = belkin_sa_open,
95 .close = belkin_sa_close,
Alan Coxb69c1492008-07-22 11:09:39 +010096 .read_int_callback = belkin_sa_read_int_callback,
Johan Hovold2afd8282010-05-15 17:53:53 +020097 .process_read_urb = belkin_sa_process_read_urb,
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 .set_termios = belkin_sa_set_termios,
99 .break_ctl = belkin_sa_break_ctl,
100 .tiocmget = belkin_sa_tiocmget,
101 .tiocmset = belkin_sa_tiocmset,
102 .attach = belkin_sa_startup,
Alan Sternf9c99bb2009-06-02 11:53:55 -0400103 .release = belkin_sa_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104};
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106struct belkin_sa_private {
107 spinlock_t lock;
108 unsigned long control_state;
109 unsigned char last_lsr;
110 unsigned char last_msr;
111 int bad_flow_control;
112};
113
114
115/*
116 * ***************************************************************************
117 * Belkin USB Serial Adapter F5U103 specific driver functions
118 * ***************************************************************************
119 */
120
121#define WDR_TIMEOUT 5000 /* default urb timeout */
122
123/* assumes that struct usb_serial *serial is available */
Alan Coxb69c1492008-07-22 11:09:39 +0100124#define BSA_USB_CMD(c, v) usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 (c), BELKIN_SA_SET_REQUEST_TYPE, \
126 (v), 0, NULL, 0, WDR_TIMEOUT)
127
128/* do some startup allocations not currently performed by usb_serial_probe() */
Alan Coxb69c1492008-07-22 11:09:39 +0100129static int belkin_sa_startup(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
131 struct usb_device *dev = serial->dev;
132 struct belkin_sa_private *priv;
133
134 /* allocate the private data structure */
135 priv = kmalloc(sizeof(struct belkin_sa_private), GFP_KERNEL);
136 if (!priv)
Alan Coxb69c1492008-07-22 11:09:39 +0100137 return -1; /* error */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 /* set initial values for control structures */
139 spin_lock_init(&priv->lock);
140 priv->control_state = 0;
141 priv->last_lsr = 0;
142 priv->last_msr = 0;
143 /* see comments at top of file */
Alan Coxb69c1492008-07-22 11:09:39 +0100144 priv->bad_flow_control =
145 (le16_to_cpu(dev->descriptor.bcdDevice) <= 0x0206) ? 1 : 0;
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -0700146 dev_info(&dev->dev, "bcdDevice: %04x, bfc: %d\n",
Alan Coxb69c1492008-07-22 11:09:39 +0100147 le16_to_cpu(dev->descriptor.bcdDevice),
148 priv->bad_flow_control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 init_waitqueue_head(&serial->port[0]->write_wait);
151 usb_set_serial_port_data(serial->port[0], priv);
Alan Coxb69c1492008-07-22 11:09:39 +0100152
153 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
Alan Sternf9c99bb2009-06-02 11:53:55 -0400156static void belkin_sa_release(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 int i;
Alan Coxb69c1492008-07-22 11:09:39 +0100159
160 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Johan Hovold726ef422010-05-15 17:53:51 +0200162 for (i = 0; i < serial->num_ports; ++i)
163 kfree(usb_get_serial_port_data(serial->port[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
Johan Hovold726ef422010-05-15 17:53:51 +0200166static int belkin_sa_open(struct tty_struct *tty,
Alan Coxa509a7e2009-09-19 13:13:26 -0700167 struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
Johan Hovoldf2f8b7f2010-05-15 17:53:52 +0200169 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Harvey Harrison441b62c2008-03-03 16:08:34 -0800171 dbg("%s port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 retval = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
174 if (retval) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700175 dev_err(&port->dev, "usb_submit_urb(read int) failed\n");
Johan Hovoldf2f8b7f2010-05-15 17:53:52 +0200176 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 }
178
Johan Hovoldf2f8b7f2010-05-15 17:53:52 +0200179 retval = usb_serial_generic_open(tty, port);
180 if (retval)
181 usb_kill_urb(port->interrupt_in_urb);
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 return retval;
Johan Hovold726ef422010-05-15 17:53:51 +0200184}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Alan Cox335f8512009-06-11 12:26:29 +0100186static void belkin_sa_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
Harvey Harrison441b62c2008-03-03 16:08:34 -0800188 dbg("%s port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Johan Hovoldf26788d2010-03-17 23:00:45 +0100190 usb_serial_generic_close(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 usb_kill_urb(port->interrupt_in_urb);
Johan Hovold726ef422010-05-15 17:53:51 +0200192}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Alan Cox95da3102008-07-22 11:09:07 +0100194static void belkin_sa_read_int_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Ming Leicdc97792008-02-24 18:41:47 +0800196 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 struct belkin_sa_private *priv;
198 unsigned char *data = urb->transfer_buffer;
199 int retval;
Greg Kroah-Hartmanf26aad22007-06-15 15:44:13 -0700200 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 unsigned long flags;
202
Greg Kroah-Hartmanf26aad22007-06-15 15:44:13 -0700203 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 case 0:
205 /* success */
206 break;
207 case -ECONNRESET:
208 case -ENOENT:
209 case -ESHUTDOWN:
210 /* this urb is terminated, clean up */
Greg Kroah-Hartmanf26aad22007-06-15 15:44:13 -0700211 dbg("%s - urb shutting down with status: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800212 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return;
214 default:
Greg Kroah-Hartmanf26aad22007-06-15 15:44:13 -0700215 dbg("%s - nonzero urb status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800216 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 goto exit;
218 }
219
Alan Coxb69c1492008-07-22 11:09:39 +0100220 usb_serial_debug_data(debug, &port->dev, __func__,
221 urb->actual_length, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223 /* Handle known interrupt data */
224 /* ignore data[0] and data[1] */
225
226 priv = usb_get_serial_port_data(port);
227 spin_lock_irqsave(&priv->lock, flags);
228 priv->last_msr = data[BELKIN_SA_MSR_INDEX];
Alan Coxb69c1492008-07-22 11:09:39 +0100229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 /* Record Control Line states */
231 if (priv->last_msr & BELKIN_SA_MSR_DSR)
232 priv->control_state |= TIOCM_DSR;
233 else
234 priv->control_state &= ~TIOCM_DSR;
235
236 if (priv->last_msr & BELKIN_SA_MSR_CTS)
237 priv->control_state |= TIOCM_CTS;
238 else
239 priv->control_state &= ~TIOCM_CTS;
240
241 if (priv->last_msr & BELKIN_SA_MSR_RI)
242 priv->control_state |= TIOCM_RI;
243 else
244 priv->control_state &= ~TIOCM_RI;
245
246 if (priv->last_msr & BELKIN_SA_MSR_CD)
247 priv->control_state |= TIOCM_CD;
248 else
249 priv->control_state &= ~TIOCM_CD;
250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 priv->last_lsr = data[BELKIN_SA_LSR_INDEX];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 spin_unlock_irqrestore(&priv->lock, flags);
253exit:
Alan Coxb69c1492008-07-22 11:09:39 +0100254 retval = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (retval)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700256 dev_err(&port->dev, "%s - usb_submit_urb failed with "
257 "result %d\n", __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
259
Johan Hovold2afd8282010-05-15 17:53:53 +0200260static void belkin_sa_process_read_urb(struct urb *urb)
261{
262 struct usb_serial_port *port = urb->context;
263 struct belkin_sa_private *priv = usb_get_serial_port_data(port);
264 struct tty_struct *tty;
265 unsigned char *data = urb->transfer_buffer;
266 unsigned long flags;
267 unsigned char status;
268 char tty_flag;
269
270 /* Update line status */
271 tty_flag = TTY_NORMAL;
272
273 spin_lock_irqsave(&priv->lock, flags);
274 status = priv->last_lsr;
275 priv->last_lsr &= ~BELKIN_SA_LSR_ERR;
276 spin_unlock_irqrestore(&priv->lock, flags);
277
278 if (!urb->actual_length)
279 return;
280
281 tty = tty_port_tty_get(&port->port);
282 if (!tty)
283 return;
284
285 if (status & BELKIN_SA_LSR_ERR) {
286 /* Break takes precedence over parity, which takes precedence
287 * over framing errors. */
288 if (status & BELKIN_SA_LSR_BI)
289 tty_flag = TTY_BREAK;
290 else if (status & BELKIN_SA_LSR_PE)
291 tty_flag = TTY_PARITY;
292 else if (status & BELKIN_SA_LSR_FE)
293 tty_flag = TTY_FRAME;
294 dev_dbg(&port->dev, "tty_flag = %d\n", tty_flag);
295
296 /* Overrun is special, not associated with a char. */
297 if (status & BELKIN_SA_LSR_OE)
298 tty_insert_flip_char(tty, 0, TTY_OVERRUN);
299 }
300
301 tty_insert_flip_string_fixed_flag(tty, data, tty_flag,
302 urb->actual_length);
303 tty_flip_buffer_push(tty);
304 tty_kref_put(tty);
305}
306
Alan Cox95da3102008-07-22 11:09:07 +0100307static void belkin_sa_set_termios(struct tty_struct *tty,
308 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
310 struct usb_serial *serial = port->serial;
311 struct belkin_sa_private *priv = usb_get_serial_port_data(port);
312 unsigned int iflag;
313 unsigned int cflag;
314 unsigned int old_iflag = 0;
315 unsigned int old_cflag = 0;
316 __u16 urb_value = 0; /* Will hold the new flags */
317 unsigned long flags;
318 unsigned long control_state;
319 int bad_flow_control;
Alan Cox9a8baec2007-06-22 14:40:18 +0100320 speed_t baud;
Alan Cox95da3102008-07-22 11:09:07 +0100321 struct ktermios *termios = tty->termios;
Alan Coxb69c1492008-07-22 11:09:39 +0100322
Alan Cox3ec466b2007-12-13 16:15:26 -0800323 iflag = termios->c_iflag;
324 cflag = termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Alan Cox3ec466b2007-12-13 16:15:26 -0800326 termios->c_cflag &= ~CMSPAR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 /* get a local copy of the current port settings */
329 spin_lock_irqsave(&priv->lock, flags);
330 control_state = priv->control_state;
331 bad_flow_control = priv->bad_flow_control;
332 spin_unlock_irqrestore(&priv->lock, flags);
Alan Coxb69c1492008-07-22 11:09:39 +0100333
Alan Cox9a8baec2007-06-22 14:40:18 +0100334 old_iflag = old_termios->c_iflag;
335 old_cflag = old_termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337 /* Set the baud rate */
Alan Cox3ec466b2007-12-13 16:15:26 -0800338 if ((cflag & CBAUD) != (old_cflag & CBAUD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 /* reassert DTR and (maybe) RTS on transition from B0 */
Alan Coxb69c1492008-07-22 11:09:39 +0100340 if ((old_cflag & CBAUD) == B0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 control_state |= (TIOCM_DTR|TIOCM_RTS);
342 if (BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST, 1) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700343 dev_err(&port->dev, "Set DTR error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 /* don't set RTS if using hardware flow control */
Alan Cox3ec466b2007-12-13 16:15:26 -0800345 if (!(old_cflag & CRTSCTS))
Alan Coxb69c1492008-07-22 11:09:39 +0100346 if (BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST
347 , 1) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700348 dev_err(&port->dev, "Set RTS error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 }
Alan Cox9a8baec2007-06-22 14:40:18 +0100350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Alan Cox95da3102008-07-22 11:09:07 +0100352 baud = tty_get_baud_rate(tty);
Alan Cox3ec466b2007-12-13 16:15:26 -0800353 if (baud) {
354 urb_value = BELKIN_SA_BAUD(baud);
355 /* Clip to maximum speed */
356 if (urb_value == 0)
357 urb_value = 1;
358 /* Turn it back into a resulting real baud rate */
359 baud = BELKIN_SA_BAUD(urb_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Alan Cox3ec466b2007-12-13 16:15:26 -0800361 /* Report the actual baud rate back to the caller */
Alan Cox95da3102008-07-22 11:09:07 +0100362 tty_encode_baud_rate(tty, baud, baud);
Alan Cox9a8baec2007-06-22 14:40:18 +0100363 if (BSA_USB_CMD(BELKIN_SA_SET_BAUDRATE_REQUEST, urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700364 dev_err(&port->dev, "Set baudrate error\n");
Alan Cox9a8baec2007-06-22 14:40:18 +0100365 } else {
366 /* Disable flow control */
Alan Coxb69c1492008-07-22 11:09:39 +0100367 if (BSA_USB_CMD(BELKIN_SA_SET_FLOW_CTRL_REQUEST,
368 BELKIN_SA_FLOW_NONE) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700369 dev_err(&port->dev, "Disable flowcontrol error\n");
Alan Cox9a8baec2007-06-22 14:40:18 +0100370 /* Drop RTS and DTR */
371 control_state &= ~(TIOCM_DTR | TIOCM_RTS);
372 if (BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST, 0) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700373 dev_err(&port->dev, "DTR LOW error\n");
Alan Cox9a8baec2007-06-22 14:40:18 +0100374 if (BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST, 0) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700375 dev_err(&port->dev, "RTS LOW error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 }
377
378 /* set the parity */
Alan Coxb69c1492008-07-22 11:09:39 +0100379 if ((cflag ^ old_cflag) & (PARENB | PARODD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 if (cflag & PARENB)
Alan Coxb69c1492008-07-22 11:09:39 +0100381 urb_value = (cflag & PARODD) ? BELKIN_SA_PARITY_ODD
382 : BELKIN_SA_PARITY_EVEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 else
384 urb_value = BELKIN_SA_PARITY_NONE;
385 if (BSA_USB_CMD(BELKIN_SA_SET_PARITY_REQUEST, urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700386 dev_err(&port->dev, "Set parity error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
388
389 /* set the number of data bits */
Alan Coxb69c1492008-07-22 11:09:39 +0100390 if ((cflag & CSIZE) != (old_cflag & CSIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 switch (cflag & CSIZE) {
Alan Coxb69c1492008-07-22 11:09:39 +0100392 case CS5:
393 urb_value = BELKIN_SA_DATA_BITS(5);
394 break;
395 case CS6:
396 urb_value = BELKIN_SA_DATA_BITS(6);
397 break;
398 case CS7:
399 urb_value = BELKIN_SA_DATA_BITS(7);
400 break;
401 case CS8:
402 urb_value = BELKIN_SA_DATA_BITS(8);
403 break;
404 default: dbg("CSIZE was not CS5-CS8, using default of 8");
405 urb_value = BELKIN_SA_DATA_BITS(8);
406 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 }
408 if (BSA_USB_CMD(BELKIN_SA_SET_DATA_BITS_REQUEST, urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700409 dev_err(&port->dev, "Set data bits error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 }
411
412 /* set the number of stop bits */
Alan Coxb69c1492008-07-22 11:09:39 +0100413 if ((cflag & CSTOPB) != (old_cflag & CSTOPB)) {
414 urb_value = (cflag & CSTOPB) ? BELKIN_SA_STOP_BITS(2)
415 : BELKIN_SA_STOP_BITS(1);
416 if (BSA_USB_CMD(BELKIN_SA_SET_STOP_BITS_REQUEST,
417 urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700418 dev_err(&port->dev, "Set stop bits error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
420
421 /* Set flow control */
Alan Coxb69c1492008-07-22 11:09:39 +0100422 if (((iflag ^ old_iflag) & (IXOFF | IXON)) ||
423 ((cflag ^ old_cflag) & CRTSCTS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 urb_value = 0;
425 if ((iflag & IXOFF) || (iflag & IXON))
426 urb_value |= (BELKIN_SA_FLOW_OXON | BELKIN_SA_FLOW_IXON);
427 else
428 urb_value &= ~(BELKIN_SA_FLOW_OXON | BELKIN_SA_FLOW_IXON);
429
430 if (cflag & CRTSCTS)
431 urb_value |= (BELKIN_SA_FLOW_OCTS | BELKIN_SA_FLOW_IRTS);
432 else
433 urb_value &= ~(BELKIN_SA_FLOW_OCTS | BELKIN_SA_FLOW_IRTS);
434
435 if (bad_flow_control)
436 urb_value &= ~(BELKIN_SA_FLOW_IRTS);
437
438 if (BSA_USB_CMD(BELKIN_SA_SET_FLOW_CTRL_REQUEST, urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700439 dev_err(&port->dev, "Set flow control error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
441
442 /* save off the modified port settings */
443 spin_lock_irqsave(&priv->lock, flags);
444 priv->control_state = control_state;
445 spin_unlock_irqrestore(&priv->lock, flags);
Johan Hovold726ef422010-05-15 17:53:51 +0200446}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Alan Cox95da3102008-07-22 11:09:07 +0100448static void belkin_sa_break_ctl(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449{
Alan Cox95da3102008-07-22 11:09:07 +0100450 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 struct usb_serial *serial = port->serial;
452
453 if (BSA_USB_CMD(BELKIN_SA_SET_BREAK_REQUEST, break_state ? 1 : 0) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700454 dev_err(&port->dev, "Set break_ctl %d\n", break_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455}
456
Alan Cox60b33c12011-02-14 16:26:14 +0000457static int belkin_sa_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
Alan Cox95da3102008-07-22 11:09:07 +0100459 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 struct belkin_sa_private *priv = usb_get_serial_port_data(port);
461 unsigned long control_state;
462 unsigned long flags;
Alan Coxb69c1492008-07-22 11:09:39 +0100463
Harvey Harrison441b62c2008-03-03 16:08:34 -0800464 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 spin_lock_irqsave(&priv->lock, flags);
467 control_state = priv->control_state;
468 spin_unlock_irqrestore(&priv->lock, flags);
469
470 return control_state;
471}
472
Alan Cox20b9d172011-02-14 16:26:50 +0000473static int belkin_sa_tiocmset(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 unsigned int set, unsigned int clear)
475{
Alan Cox95da3102008-07-22 11:09:07 +0100476 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 struct usb_serial *serial = port->serial;
478 struct belkin_sa_private *priv = usb_get_serial_port_data(port);
479 unsigned long control_state;
480 unsigned long flags;
481 int retval;
482 int rts = 0;
483 int dtr = 0;
Alan Coxb69c1492008-07-22 11:09:39 +0100484
Harvey Harrison441b62c2008-03-03 16:08:34 -0800485 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 spin_lock_irqsave(&priv->lock, flags);
488 control_state = priv->control_state;
489
490 if (set & TIOCM_RTS) {
491 control_state |= TIOCM_RTS;
492 rts = 1;
493 }
494 if (set & TIOCM_DTR) {
495 control_state |= TIOCM_DTR;
496 dtr = 1;
497 }
498 if (clear & TIOCM_RTS) {
499 control_state &= ~TIOCM_RTS;
500 rts = 0;
501 }
502 if (clear & TIOCM_DTR) {
503 control_state &= ~TIOCM_DTR;
504 dtr = 0;
505 }
506
507 priv->control_state = control_state;
508 spin_unlock_irqrestore(&priv->lock, flags);
509
510 retval = BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST, rts);
511 if (retval < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700512 dev_err(&port->dev, "Set RTS error %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 goto exit;
514 }
515
516 retval = BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST, dtr);
517 if (retval < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700518 dev_err(&port->dev, "Set DTR error %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 goto exit;
520 }
521exit:
522 return retval;
523}
524
525
Alan Cox95da3102008-07-22 11:09:07 +0100526static int __init belkin_sa_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
528 int retval;
529 retval = usb_serial_register(&belkin_device);
530 if (retval)
531 goto failed_usb_serial_register;
532 retval = usb_register(&belkin_driver);
533 if (retval)
534 goto failed_usb_register;
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -0700535 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
536 DRIVER_DESC "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 return 0;
538failed_usb_register:
539 usb_serial_deregister(&belkin_device);
540failed_usb_serial_register:
541 return retval;
542}
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544static void __exit belkin_sa_exit (void)
545{
Alan Coxb69c1492008-07-22 11:09:39 +0100546 usb_deregister(&belkin_driver);
Alan Cox95da3102008-07-22 11:09:07 +0100547 usb_serial_deregister(&belkin_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548}
549
550
Alan Coxb69c1492008-07-22 11:09:39 +0100551module_init(belkin_sa_init);
552module_exit(belkin_sa_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Alan Coxb69c1492008-07-22 11:09:39 +0100554MODULE_AUTHOR(DRIVER_AUTHOR);
555MODULE_DESCRIPTION(DRIVER_DESC);
556MODULE_VERSION(DRIVER_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557MODULE_LICENSE("GPL");
558
559module_param(debug, bool, S_IRUGO | S_IWUSR);
560MODULE_PARM_DESC(debug, "Debug enabled or not");