blob: 35b0d3dbeb0d79c9118618d80f1c352a51ace3d0 [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)
Ben Minerds70f3c752012-04-28 13:36:35 +10005 * 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 *
Ben Minerds70f3c752012-04-28 13:36:35 +100012 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 *
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
Rusty Russell90ab5ee2012-01-13 09:32:20 +103040static bool debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
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,
81};
82
83/* All of the device info needed for the serial converters */
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -070084static struct usb_serial_driver belkin_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070085 .driver = {
86 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070087 .name = "belkin",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070088 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070089 .description = "Belkin / Peracom / GoHubs USB Serial Adapter",
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 .id_table = id_table_combined,
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 .num_ports = 1,
92 .open = belkin_sa_open,
93 .close = belkin_sa_close,
Alan Coxb69c1492008-07-22 11:09:39 +010094 .read_int_callback = belkin_sa_read_int_callback,
Johan Hovold2afd8282010-05-15 17:53:53 +020095 .process_read_urb = belkin_sa_process_read_urb,
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 .set_termios = belkin_sa_set_termios,
97 .break_ctl = belkin_sa_break_ctl,
98 .tiocmget = belkin_sa_tiocmget,
99 .tiocmset = belkin_sa_tiocmset,
100 .attach = belkin_sa_startup,
Alan Sternf9c99bb2009-06-02 11:53:55 -0400101 .release = belkin_sa_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102};
103
Alan Stern08a4f6b2012-02-23 14:56:17 -0500104static struct usb_serial_driver * const serial_drivers[] = {
105 &belkin_device, NULL
106};
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108struct belkin_sa_private {
109 spinlock_t lock;
110 unsigned long control_state;
111 unsigned char last_lsr;
112 unsigned char last_msr;
113 int bad_flow_control;
114};
115
116
117/*
118 * ***************************************************************************
119 * Belkin USB Serial Adapter F5U103 specific driver functions
120 * ***************************************************************************
121 */
122
123#define WDR_TIMEOUT 5000 /* default urb timeout */
124
125/* assumes that struct usb_serial *serial is available */
Alan Coxb69c1492008-07-22 11:09:39 +0100126#define BSA_USB_CMD(c, v) usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 (c), BELKIN_SA_SET_REQUEST_TYPE, \
128 (v), 0, NULL, 0, WDR_TIMEOUT)
129
130/* do some startup allocations not currently performed by usb_serial_probe() */
Alan Coxb69c1492008-07-22 11:09:39 +0100131static int belkin_sa_startup(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
133 struct usb_device *dev = serial->dev;
134 struct belkin_sa_private *priv;
135
136 /* allocate the private data structure */
137 priv = kmalloc(sizeof(struct belkin_sa_private), GFP_KERNEL);
138 if (!priv)
Alan Coxb69c1492008-07-22 11:09:39 +0100139 return -1; /* error */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 /* set initial values for control structures */
141 spin_lock_init(&priv->lock);
142 priv->control_state = 0;
143 priv->last_lsr = 0;
144 priv->last_msr = 0;
145 /* see comments at top of file */
Alan Coxb69c1492008-07-22 11:09:39 +0100146 priv->bad_flow_control =
147 (le16_to_cpu(dev->descriptor.bcdDevice) <= 0x0206) ? 1 : 0;
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -0700148 dev_info(&dev->dev, "bcdDevice: %04x, bfc: %d\n",
Alan Coxb69c1492008-07-22 11:09:39 +0100149 le16_to_cpu(dev->descriptor.bcdDevice),
150 priv->bad_flow_control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 init_waitqueue_head(&serial->port[0]->write_wait);
153 usb_set_serial_port_data(serial->port[0], priv);
Alan Coxb69c1492008-07-22 11:09:39 +0100154
155 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
Alan Sternf9c99bb2009-06-02 11:53:55 -0400158static void belkin_sa_release(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 int i;
Alan Coxb69c1492008-07-22 11:09:39 +0100161
162 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Johan Hovold726ef422010-05-15 17:53:51 +0200164 for (i = 0; i < serial->num_ports; ++i)
165 kfree(usb_get_serial_port_data(serial->port[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
Johan Hovold726ef422010-05-15 17:53:51 +0200168static int belkin_sa_open(struct tty_struct *tty,
Alan Coxa509a7e2009-09-19 13:13:26 -0700169 struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
Johan Hovoldf2f8b7f2010-05-15 17:53:52 +0200171 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Harvey Harrison441b62c2008-03-03 16:08:34 -0800173 dbg("%s port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 retval = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
176 if (retval) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700177 dev_err(&port->dev, "usb_submit_urb(read int) failed\n");
Johan Hovoldf2f8b7f2010-05-15 17:53:52 +0200178 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 }
180
Johan Hovoldf2f8b7f2010-05-15 17:53:52 +0200181 retval = usb_serial_generic_open(tty, port);
182 if (retval)
183 usb_kill_urb(port->interrupt_in_urb);
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 return retval;
Johan Hovold726ef422010-05-15 17:53:51 +0200186}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Alan Cox335f8512009-06-11 12:26:29 +0100188static void belkin_sa_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
Harvey Harrison441b62c2008-03-03 16:08:34 -0800190 dbg("%s port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Johan Hovoldf26788d2010-03-17 23:00:45 +0100192 usb_serial_generic_close(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 usb_kill_urb(port->interrupt_in_urb);
Johan Hovold726ef422010-05-15 17:53:51 +0200194}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Alan Cox95da3102008-07-22 11:09:07 +0100196static void belkin_sa_read_int_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
Ming Leicdc97792008-02-24 18:41:47 +0800198 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 struct belkin_sa_private *priv;
200 unsigned char *data = urb->transfer_buffer;
201 int retval;
Greg Kroah-Hartmanf26aad22007-06-15 15:44:13 -0700202 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 unsigned long flags;
204
Greg Kroah-Hartmanf26aad22007-06-15 15:44:13 -0700205 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 case 0:
207 /* success */
208 break;
209 case -ECONNRESET:
210 case -ENOENT:
211 case -ESHUTDOWN:
212 /* this urb is terminated, clean up */
Greg Kroah-Hartmanf26aad22007-06-15 15:44:13 -0700213 dbg("%s - urb shutting down with status: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800214 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 return;
216 default:
Greg Kroah-Hartmanf26aad22007-06-15 15:44:13 -0700217 dbg("%s - nonzero urb status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800218 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 goto exit;
220 }
221
Alan Coxb69c1492008-07-22 11:09:39 +0100222 usb_serial_debug_data(debug, &port->dev, __func__,
223 urb->actual_length, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 /* Handle known interrupt data */
226 /* ignore data[0] and data[1] */
227
228 priv = usb_get_serial_port_data(port);
229 spin_lock_irqsave(&priv->lock, flags);
230 priv->last_msr = data[BELKIN_SA_MSR_INDEX];
Alan Coxb69c1492008-07-22 11:09:39 +0100231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 /* Record Control Line states */
233 if (priv->last_msr & BELKIN_SA_MSR_DSR)
234 priv->control_state |= TIOCM_DSR;
235 else
236 priv->control_state &= ~TIOCM_DSR;
237
238 if (priv->last_msr & BELKIN_SA_MSR_CTS)
239 priv->control_state |= TIOCM_CTS;
240 else
241 priv->control_state &= ~TIOCM_CTS;
242
243 if (priv->last_msr & BELKIN_SA_MSR_RI)
244 priv->control_state |= TIOCM_RI;
245 else
246 priv->control_state &= ~TIOCM_RI;
247
248 if (priv->last_msr & BELKIN_SA_MSR_CD)
249 priv->control_state |= TIOCM_CD;
250 else
251 priv->control_state &= ~TIOCM_CD;
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 priv->last_lsr = data[BELKIN_SA_LSR_INDEX];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 spin_unlock_irqrestore(&priv->lock, flags);
255exit:
Alan Coxb69c1492008-07-22 11:09:39 +0100256 retval = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 if (retval)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700258 dev_err(&port->dev, "%s - usb_submit_urb failed with "
259 "result %d\n", __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
Johan Hovold2afd8282010-05-15 17:53:53 +0200262static void belkin_sa_process_read_urb(struct urb *urb)
263{
264 struct usb_serial_port *port = urb->context;
265 struct belkin_sa_private *priv = usb_get_serial_port_data(port);
266 struct tty_struct *tty;
267 unsigned char *data = urb->transfer_buffer;
268 unsigned long flags;
269 unsigned char status;
270 char tty_flag;
271
272 /* Update line status */
273 tty_flag = TTY_NORMAL;
274
275 spin_lock_irqsave(&priv->lock, flags);
276 status = priv->last_lsr;
277 priv->last_lsr &= ~BELKIN_SA_LSR_ERR;
278 spin_unlock_irqrestore(&priv->lock, flags);
279
280 if (!urb->actual_length)
281 return;
282
283 tty = tty_port_tty_get(&port->port);
284 if (!tty)
285 return;
286
287 if (status & BELKIN_SA_LSR_ERR) {
288 /* Break takes precedence over parity, which takes precedence
289 * over framing errors. */
290 if (status & BELKIN_SA_LSR_BI)
291 tty_flag = TTY_BREAK;
292 else if (status & BELKIN_SA_LSR_PE)
293 tty_flag = TTY_PARITY;
294 else if (status & BELKIN_SA_LSR_FE)
295 tty_flag = TTY_FRAME;
296 dev_dbg(&port->dev, "tty_flag = %d\n", tty_flag);
297
298 /* Overrun is special, not associated with a char. */
299 if (status & BELKIN_SA_LSR_OE)
300 tty_insert_flip_char(tty, 0, TTY_OVERRUN);
301 }
302
303 tty_insert_flip_string_fixed_flag(tty, data, tty_flag,
304 urb->actual_length);
305 tty_flip_buffer_push(tty);
306 tty_kref_put(tty);
307}
308
Alan Cox95da3102008-07-22 11:09:07 +0100309static void belkin_sa_set_termios(struct tty_struct *tty,
310 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
312 struct usb_serial *serial = port->serial;
313 struct belkin_sa_private *priv = usb_get_serial_port_data(port);
314 unsigned int iflag;
315 unsigned int cflag;
316 unsigned int old_iflag = 0;
317 unsigned int old_cflag = 0;
318 __u16 urb_value = 0; /* Will hold the new flags */
319 unsigned long flags;
320 unsigned long control_state;
321 int bad_flow_control;
Alan Cox9a8baec2007-06-22 14:40:18 +0100322 speed_t baud;
Alan Cox95da3102008-07-22 11:09:07 +0100323 struct ktermios *termios = tty->termios;
Alan Coxb69c1492008-07-22 11:09:39 +0100324
Alan Cox3ec466b2007-12-13 16:15:26 -0800325 iflag = termios->c_iflag;
326 cflag = termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Alan Cox3ec466b2007-12-13 16:15:26 -0800328 termios->c_cflag &= ~CMSPAR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330 /* get a local copy of the current port settings */
331 spin_lock_irqsave(&priv->lock, flags);
332 control_state = priv->control_state;
333 bad_flow_control = priv->bad_flow_control;
334 spin_unlock_irqrestore(&priv->lock, flags);
Alan Coxb69c1492008-07-22 11:09:39 +0100335
Alan Cox9a8baec2007-06-22 14:40:18 +0100336 old_iflag = old_termios->c_iflag;
337 old_cflag = old_termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 /* Set the baud rate */
Alan Cox3ec466b2007-12-13 16:15:26 -0800340 if ((cflag & CBAUD) != (old_cflag & CBAUD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 /* reassert DTR and (maybe) RTS on transition from B0 */
Alan Coxb69c1492008-07-22 11:09:39 +0100342 if ((old_cflag & CBAUD) == B0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 control_state |= (TIOCM_DTR|TIOCM_RTS);
344 if (BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST, 1) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700345 dev_err(&port->dev, "Set DTR error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 /* don't set RTS if using hardware flow control */
Alan Cox3ec466b2007-12-13 16:15:26 -0800347 if (!(old_cflag & CRTSCTS))
Alan Coxb69c1492008-07-22 11:09:39 +0100348 if (BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST
349 , 1) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700350 dev_err(&port->dev, "Set RTS error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 }
Alan Cox9a8baec2007-06-22 14:40:18 +0100352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Alan Cox95da3102008-07-22 11:09:07 +0100354 baud = tty_get_baud_rate(tty);
Alan Cox3ec466b2007-12-13 16:15:26 -0800355 if (baud) {
356 urb_value = BELKIN_SA_BAUD(baud);
357 /* Clip to maximum speed */
358 if (urb_value == 0)
359 urb_value = 1;
360 /* Turn it back into a resulting real baud rate */
361 baud = BELKIN_SA_BAUD(urb_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Alan Cox3ec466b2007-12-13 16:15:26 -0800363 /* Report the actual baud rate back to the caller */
Alan Cox95da3102008-07-22 11:09:07 +0100364 tty_encode_baud_rate(tty, baud, baud);
Alan Cox9a8baec2007-06-22 14:40:18 +0100365 if (BSA_USB_CMD(BELKIN_SA_SET_BAUDRATE_REQUEST, urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700366 dev_err(&port->dev, "Set baudrate error\n");
Alan Cox9a8baec2007-06-22 14:40:18 +0100367 } else {
368 /* Disable flow control */
Alan Coxb69c1492008-07-22 11:09:39 +0100369 if (BSA_USB_CMD(BELKIN_SA_SET_FLOW_CTRL_REQUEST,
370 BELKIN_SA_FLOW_NONE) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700371 dev_err(&port->dev, "Disable flowcontrol error\n");
Alan Cox9a8baec2007-06-22 14:40:18 +0100372 /* Drop RTS and DTR */
373 control_state &= ~(TIOCM_DTR | TIOCM_RTS);
374 if (BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST, 0) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700375 dev_err(&port->dev, "DTR LOW error\n");
Alan Cox9a8baec2007-06-22 14:40:18 +0100376 if (BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST, 0) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700377 dev_err(&port->dev, "RTS LOW error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 }
379
380 /* set the parity */
Alan Coxb69c1492008-07-22 11:09:39 +0100381 if ((cflag ^ old_cflag) & (PARENB | PARODD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 if (cflag & PARENB)
Alan Coxb69c1492008-07-22 11:09:39 +0100383 urb_value = (cflag & PARODD) ? BELKIN_SA_PARITY_ODD
384 : BELKIN_SA_PARITY_EVEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 else
386 urb_value = BELKIN_SA_PARITY_NONE;
387 if (BSA_USB_CMD(BELKIN_SA_SET_PARITY_REQUEST, urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700388 dev_err(&port->dev, "Set parity error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
390
391 /* set the number of data bits */
Alan Coxb69c1492008-07-22 11:09:39 +0100392 if ((cflag & CSIZE) != (old_cflag & CSIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 switch (cflag & CSIZE) {
Alan Coxb69c1492008-07-22 11:09:39 +0100394 case CS5:
395 urb_value = BELKIN_SA_DATA_BITS(5);
396 break;
397 case CS6:
398 urb_value = BELKIN_SA_DATA_BITS(6);
399 break;
400 case CS7:
401 urb_value = BELKIN_SA_DATA_BITS(7);
402 break;
403 case CS8:
404 urb_value = BELKIN_SA_DATA_BITS(8);
405 break;
Ben Minerds70f3c752012-04-28 13:36:35 +1000406 default:
407 dbg("CSIZE was not CS5-CS8, using default of 8");
Alan Coxb69c1492008-07-22 11:09:39 +0100408 urb_value = BELKIN_SA_DATA_BITS(8);
409 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 }
411 if (BSA_USB_CMD(BELKIN_SA_SET_DATA_BITS_REQUEST, urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700412 dev_err(&port->dev, "Set data bits error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
414
415 /* set the number of stop bits */
Alan Coxb69c1492008-07-22 11:09:39 +0100416 if ((cflag & CSTOPB) != (old_cflag & CSTOPB)) {
417 urb_value = (cflag & CSTOPB) ? BELKIN_SA_STOP_BITS(2)
418 : BELKIN_SA_STOP_BITS(1);
419 if (BSA_USB_CMD(BELKIN_SA_SET_STOP_BITS_REQUEST,
420 urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700421 dev_err(&port->dev, "Set stop bits error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 }
423
424 /* Set flow control */
Alan Coxb69c1492008-07-22 11:09:39 +0100425 if (((iflag ^ old_iflag) & (IXOFF | IXON)) ||
426 ((cflag ^ old_cflag) & CRTSCTS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 urb_value = 0;
428 if ((iflag & IXOFF) || (iflag & IXON))
429 urb_value |= (BELKIN_SA_FLOW_OXON | BELKIN_SA_FLOW_IXON);
430 else
431 urb_value &= ~(BELKIN_SA_FLOW_OXON | BELKIN_SA_FLOW_IXON);
432
433 if (cflag & CRTSCTS)
434 urb_value |= (BELKIN_SA_FLOW_OCTS | BELKIN_SA_FLOW_IRTS);
435 else
436 urb_value &= ~(BELKIN_SA_FLOW_OCTS | BELKIN_SA_FLOW_IRTS);
437
438 if (bad_flow_control)
439 urb_value &= ~(BELKIN_SA_FLOW_IRTS);
440
441 if (BSA_USB_CMD(BELKIN_SA_SET_FLOW_CTRL_REQUEST, urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700442 dev_err(&port->dev, "Set flow control error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
444
445 /* save off the modified port settings */
446 spin_lock_irqsave(&priv->lock, flags);
447 priv->control_state = control_state;
448 spin_unlock_irqrestore(&priv->lock, flags);
Johan Hovold726ef422010-05-15 17:53:51 +0200449}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Alan Cox95da3102008-07-22 11:09:07 +0100451static void belkin_sa_break_ctl(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
Alan Cox95da3102008-07-22 11:09:07 +0100453 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 struct usb_serial *serial = port->serial;
455
456 if (BSA_USB_CMD(BELKIN_SA_SET_BREAK_REQUEST, break_state ? 1 : 0) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700457 dev_err(&port->dev, "Set break_ctl %d\n", break_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
Alan Cox60b33c12011-02-14 16:26:14 +0000460static int belkin_sa_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
Alan Cox95da3102008-07-22 11:09:07 +0100462 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 struct belkin_sa_private *priv = usb_get_serial_port_data(port);
464 unsigned long control_state;
465 unsigned long flags;
Alan Coxb69c1492008-07-22 11:09:39 +0100466
Harvey Harrison441b62c2008-03-03 16:08:34 -0800467 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469 spin_lock_irqsave(&priv->lock, flags);
470 control_state = priv->control_state;
471 spin_unlock_irqrestore(&priv->lock, flags);
472
473 return control_state;
474}
475
Alan Cox20b9d172011-02-14 16:26:50 +0000476static int belkin_sa_tiocmset(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 unsigned int set, unsigned int clear)
478{
Alan Cox95da3102008-07-22 11:09:07 +0100479 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 struct usb_serial *serial = port->serial;
481 struct belkin_sa_private *priv = usb_get_serial_port_data(port);
482 unsigned long control_state;
483 unsigned long flags;
484 int retval;
485 int rts = 0;
486 int dtr = 0;
Alan Coxb69c1492008-07-22 11:09:39 +0100487
Harvey Harrison441b62c2008-03-03 16:08:34 -0800488 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 spin_lock_irqsave(&priv->lock, flags);
491 control_state = priv->control_state;
492
493 if (set & TIOCM_RTS) {
494 control_state |= TIOCM_RTS;
495 rts = 1;
496 }
497 if (set & TIOCM_DTR) {
498 control_state |= TIOCM_DTR;
499 dtr = 1;
500 }
501 if (clear & TIOCM_RTS) {
502 control_state &= ~TIOCM_RTS;
503 rts = 0;
504 }
505 if (clear & TIOCM_DTR) {
506 control_state &= ~TIOCM_DTR;
507 dtr = 0;
508 }
509
510 priv->control_state = control_state;
511 spin_unlock_irqrestore(&priv->lock, flags);
512
513 retval = BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST, rts);
514 if (retval < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700515 dev_err(&port->dev, "Set RTS error %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 goto exit;
517 }
518
519 retval = BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST, dtr);
520 if (retval < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700521 dev_err(&port->dev, "Set DTR error %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 goto exit;
523 }
524exit:
525 return retval;
526}
527
Greg Kroah-Hartmand2daea72012-02-28 13:11:35 -0800528module_usb_serial_driver(belkin_driver, serial_drivers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Alan Coxb69c1492008-07-22 11:09:39 +0100530MODULE_AUTHOR(DRIVER_AUTHOR);
531MODULE_DESCRIPTION(DRIVER_DESC);
532MODULE_VERSION(DRIVER_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533MODULE_LICENSE("GPL");
534
535module_param(debug, bool, S_IRUGO | S_IWUSR);
536MODULE_PARM_DESC(debug, "Debug enabled or not");