blob: 1eff29eae9e80174a7cbd6b5f697341def955835 [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
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -070065static const struct usb_device_id id_table[] = {
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};
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -070074MODULE_DEVICE_TABLE(usb, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76/* All of the device info needed for the serial converters */
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -070077static struct usb_serial_driver belkin_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070078 .driver = {
79 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070080 .name = "belkin",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070081 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070082 .description = "Belkin / Peracom / GoHubs USB Serial Adapter",
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -070083 .id_table = id_table,
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 .num_ports = 1,
85 .open = belkin_sa_open,
86 .close = belkin_sa_close,
Alan Coxb69c1492008-07-22 11:09:39 +010087 .read_int_callback = belkin_sa_read_int_callback,
Johan Hovold2afd8282010-05-15 17:53:53 +020088 .process_read_urb = belkin_sa_process_read_urb,
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 .set_termios = belkin_sa_set_termios,
90 .break_ctl = belkin_sa_break_ctl,
91 .tiocmget = belkin_sa_tiocmget,
92 .tiocmset = belkin_sa_tiocmset,
93 .attach = belkin_sa_startup,
Alan Sternf9c99bb2009-06-02 11:53:55 -040094 .release = belkin_sa_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -070095};
96
Alan Stern08a4f6b2012-02-23 14:56:17 -050097static struct usb_serial_driver * const serial_drivers[] = {
98 &belkin_device, NULL
99};
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101struct belkin_sa_private {
102 spinlock_t lock;
103 unsigned long control_state;
104 unsigned char last_lsr;
105 unsigned char last_msr;
106 int bad_flow_control;
107};
108
109
110/*
111 * ***************************************************************************
112 * Belkin USB Serial Adapter F5U103 specific driver functions
113 * ***************************************************************************
114 */
115
116#define WDR_TIMEOUT 5000 /* default urb timeout */
117
118/* assumes that struct usb_serial *serial is available */
Alan Coxb69c1492008-07-22 11:09:39 +0100119#define BSA_USB_CMD(c, v) usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 (c), BELKIN_SA_SET_REQUEST_TYPE, \
121 (v), 0, NULL, 0, WDR_TIMEOUT)
122
123/* do some startup allocations not currently performed by usb_serial_probe() */
Alan Coxb69c1492008-07-22 11:09:39 +0100124static int belkin_sa_startup(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
126 struct usb_device *dev = serial->dev;
127 struct belkin_sa_private *priv;
128
129 /* allocate the private data structure */
130 priv = kmalloc(sizeof(struct belkin_sa_private), GFP_KERNEL);
131 if (!priv)
Alan Coxb69c1492008-07-22 11:09:39 +0100132 return -1; /* error */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 /* set initial values for control structures */
134 spin_lock_init(&priv->lock);
135 priv->control_state = 0;
136 priv->last_lsr = 0;
137 priv->last_msr = 0;
138 /* see comments at top of file */
Alan Coxb69c1492008-07-22 11:09:39 +0100139 priv->bad_flow_control =
140 (le16_to_cpu(dev->descriptor.bcdDevice) <= 0x0206) ? 1 : 0;
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -0700141 dev_info(&dev->dev, "bcdDevice: %04x, bfc: %d\n",
Alan Coxb69c1492008-07-22 11:09:39 +0100142 le16_to_cpu(dev->descriptor.bcdDevice),
143 priv->bad_flow_control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 init_waitqueue_head(&serial->port[0]->write_wait);
146 usb_set_serial_port_data(serial->port[0], priv);
Alan Coxb69c1492008-07-22 11:09:39 +0100147
148 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
Alan Sternf9c99bb2009-06-02 11:53:55 -0400151static void belkin_sa_release(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 int i;
Alan Coxb69c1492008-07-22 11:09:39 +0100154
Johan Hovold726ef422010-05-15 17:53:51 +0200155 for (i = 0; i < serial->num_ports; ++i)
156 kfree(usb_get_serial_port_data(serial->port[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
Johan Hovold726ef422010-05-15 17:53:51 +0200159static int belkin_sa_open(struct tty_struct *tty,
Alan Coxa509a7e2009-09-19 13:13:26 -0700160 struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
Johan Hovoldf2f8b7f2010-05-15 17:53:52 +0200162 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 retval = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
165 if (retval) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700166 dev_err(&port->dev, "usb_submit_urb(read int) failed\n");
Johan Hovoldf2f8b7f2010-05-15 17:53:52 +0200167 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 }
169
Johan Hovoldf2f8b7f2010-05-15 17:53:52 +0200170 retval = usb_serial_generic_open(tty, port);
171 if (retval)
172 usb_kill_urb(port->interrupt_in_urb);
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 return retval;
Johan Hovold726ef422010-05-15 17:53:51 +0200175}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Alan Cox335f8512009-06-11 12:26:29 +0100177static void belkin_sa_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
Johan Hovoldf26788d2010-03-17 23:00:45 +0100179 usb_serial_generic_close(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 usb_kill_urb(port->interrupt_in_urb);
Johan Hovold726ef422010-05-15 17:53:51 +0200181}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Alan Cox95da3102008-07-22 11:09:07 +0100183static void belkin_sa_read_int_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
Ming Leicdc97792008-02-24 18:41:47 +0800185 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 struct belkin_sa_private *priv;
187 unsigned char *data = urb->transfer_buffer;
188 int retval;
Greg Kroah-Hartmanf26aad22007-06-15 15:44:13 -0700189 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 unsigned long flags;
191
Greg Kroah-Hartmanf26aad22007-06-15 15:44:13 -0700192 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 case 0:
194 /* success */
195 break;
196 case -ECONNRESET:
197 case -ENOENT:
198 case -ESHUTDOWN:
199 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc89aa632012-05-15 16:27:11 -0700200 dev_dbg(&port->dev, "%s - urb shutting down with status: %d\n",
201 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 return;
203 default:
Greg Kroah-Hartmanc89aa632012-05-15 16:27:11 -0700204 dev_dbg(&port->dev, "%s - nonzero urb status received: %d\n",
205 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 goto exit;
207 }
208
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100209 usb_serial_debug_data(&port->dev, __func__, urb->actual_length, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 /* Handle known interrupt data */
212 /* ignore data[0] and data[1] */
213
214 priv = usb_get_serial_port_data(port);
215 spin_lock_irqsave(&priv->lock, flags);
216 priv->last_msr = data[BELKIN_SA_MSR_INDEX];
Alan Coxb69c1492008-07-22 11:09:39 +0100217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 /* Record Control Line states */
219 if (priv->last_msr & BELKIN_SA_MSR_DSR)
220 priv->control_state |= TIOCM_DSR;
221 else
222 priv->control_state &= ~TIOCM_DSR;
223
224 if (priv->last_msr & BELKIN_SA_MSR_CTS)
225 priv->control_state |= TIOCM_CTS;
226 else
227 priv->control_state &= ~TIOCM_CTS;
228
229 if (priv->last_msr & BELKIN_SA_MSR_RI)
230 priv->control_state |= TIOCM_RI;
231 else
232 priv->control_state &= ~TIOCM_RI;
233
234 if (priv->last_msr & BELKIN_SA_MSR_CD)
235 priv->control_state |= TIOCM_CD;
236 else
237 priv->control_state &= ~TIOCM_CD;
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 priv->last_lsr = data[BELKIN_SA_LSR_INDEX];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 spin_unlock_irqrestore(&priv->lock, flags);
241exit:
Alan Coxb69c1492008-07-22 11:09:39 +0100242 retval = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 if (retval)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700244 dev_err(&port->dev, "%s - usb_submit_urb failed with "
245 "result %d\n", __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246}
247
Johan Hovold2afd8282010-05-15 17:53:53 +0200248static void belkin_sa_process_read_urb(struct urb *urb)
249{
250 struct usb_serial_port *port = urb->context;
251 struct belkin_sa_private *priv = usb_get_serial_port_data(port);
252 struct tty_struct *tty;
253 unsigned char *data = urb->transfer_buffer;
254 unsigned long flags;
255 unsigned char status;
256 char tty_flag;
257
258 /* Update line status */
259 tty_flag = TTY_NORMAL;
260
261 spin_lock_irqsave(&priv->lock, flags);
262 status = priv->last_lsr;
263 priv->last_lsr &= ~BELKIN_SA_LSR_ERR;
264 spin_unlock_irqrestore(&priv->lock, flags);
265
266 if (!urb->actual_length)
267 return;
268
269 tty = tty_port_tty_get(&port->port);
270 if (!tty)
271 return;
272
273 if (status & BELKIN_SA_LSR_ERR) {
274 /* Break takes precedence over parity, which takes precedence
275 * over framing errors. */
276 if (status & BELKIN_SA_LSR_BI)
277 tty_flag = TTY_BREAK;
278 else if (status & BELKIN_SA_LSR_PE)
279 tty_flag = TTY_PARITY;
280 else if (status & BELKIN_SA_LSR_FE)
281 tty_flag = TTY_FRAME;
282 dev_dbg(&port->dev, "tty_flag = %d\n", tty_flag);
283
284 /* Overrun is special, not associated with a char. */
285 if (status & BELKIN_SA_LSR_OE)
286 tty_insert_flip_char(tty, 0, TTY_OVERRUN);
287 }
288
289 tty_insert_flip_string_fixed_flag(tty, data, tty_flag,
290 urb->actual_length);
291 tty_flip_buffer_push(tty);
292 tty_kref_put(tty);
293}
294
Alan Cox95da3102008-07-22 11:09:07 +0100295static void belkin_sa_set_termios(struct tty_struct *tty,
296 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
298 struct usb_serial *serial = port->serial;
299 struct belkin_sa_private *priv = usb_get_serial_port_data(port);
300 unsigned int iflag;
301 unsigned int cflag;
302 unsigned int old_iflag = 0;
303 unsigned int old_cflag = 0;
304 __u16 urb_value = 0; /* Will hold the new flags */
305 unsigned long flags;
306 unsigned long control_state;
307 int bad_flow_control;
Alan Cox9a8baec2007-06-22 14:40:18 +0100308 speed_t baud;
Alan Cox95da3102008-07-22 11:09:07 +0100309 struct ktermios *termios = tty->termios;
Alan Coxb69c1492008-07-22 11:09:39 +0100310
Alan Cox3ec466b2007-12-13 16:15:26 -0800311 iflag = termios->c_iflag;
312 cflag = termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Alan Cox3ec466b2007-12-13 16:15:26 -0800314 termios->c_cflag &= ~CMSPAR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 /* get a local copy of the current port settings */
317 spin_lock_irqsave(&priv->lock, flags);
318 control_state = priv->control_state;
319 bad_flow_control = priv->bad_flow_control;
320 spin_unlock_irqrestore(&priv->lock, flags);
Alan Coxb69c1492008-07-22 11:09:39 +0100321
Alan Cox9a8baec2007-06-22 14:40:18 +0100322 old_iflag = old_termios->c_iflag;
323 old_cflag = old_termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325 /* Set the baud rate */
Alan Cox3ec466b2007-12-13 16:15:26 -0800326 if ((cflag & CBAUD) != (old_cflag & CBAUD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 /* reassert DTR and (maybe) RTS on transition from B0 */
Alan Coxb69c1492008-07-22 11:09:39 +0100328 if ((old_cflag & CBAUD) == B0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 control_state |= (TIOCM_DTR|TIOCM_RTS);
330 if (BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST, 1) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700331 dev_err(&port->dev, "Set DTR error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 /* don't set RTS if using hardware flow control */
Alan Cox3ec466b2007-12-13 16:15:26 -0800333 if (!(old_cflag & CRTSCTS))
Alan Coxb69c1492008-07-22 11:09:39 +0100334 if (BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST
335 , 1) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700336 dev_err(&port->dev, "Set RTS error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 }
Alan Cox9a8baec2007-06-22 14:40:18 +0100338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Alan Cox95da3102008-07-22 11:09:07 +0100340 baud = tty_get_baud_rate(tty);
Alan Cox3ec466b2007-12-13 16:15:26 -0800341 if (baud) {
342 urb_value = BELKIN_SA_BAUD(baud);
343 /* Clip to maximum speed */
344 if (urb_value == 0)
345 urb_value = 1;
346 /* Turn it back into a resulting real baud rate */
347 baud = BELKIN_SA_BAUD(urb_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Alan Cox3ec466b2007-12-13 16:15:26 -0800349 /* Report the actual baud rate back to the caller */
Alan Cox95da3102008-07-22 11:09:07 +0100350 tty_encode_baud_rate(tty, baud, baud);
Alan Cox9a8baec2007-06-22 14:40:18 +0100351 if (BSA_USB_CMD(BELKIN_SA_SET_BAUDRATE_REQUEST, urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700352 dev_err(&port->dev, "Set baudrate error\n");
Alan Cox9a8baec2007-06-22 14:40:18 +0100353 } else {
354 /* Disable flow control */
Alan Coxb69c1492008-07-22 11:09:39 +0100355 if (BSA_USB_CMD(BELKIN_SA_SET_FLOW_CTRL_REQUEST,
356 BELKIN_SA_FLOW_NONE) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700357 dev_err(&port->dev, "Disable flowcontrol error\n");
Alan Cox9a8baec2007-06-22 14:40:18 +0100358 /* Drop RTS and DTR */
359 control_state &= ~(TIOCM_DTR | TIOCM_RTS);
360 if (BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST, 0) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700361 dev_err(&port->dev, "DTR LOW error\n");
Alan Cox9a8baec2007-06-22 14:40:18 +0100362 if (BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST, 0) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700363 dev_err(&port->dev, "RTS LOW error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 }
365
366 /* set the parity */
Alan Coxb69c1492008-07-22 11:09:39 +0100367 if ((cflag ^ old_cflag) & (PARENB | PARODD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 if (cflag & PARENB)
Alan Coxb69c1492008-07-22 11:09:39 +0100369 urb_value = (cflag & PARODD) ? BELKIN_SA_PARITY_ODD
370 : BELKIN_SA_PARITY_EVEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 else
372 urb_value = BELKIN_SA_PARITY_NONE;
373 if (BSA_USB_CMD(BELKIN_SA_SET_PARITY_REQUEST, urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700374 dev_err(&port->dev, "Set parity error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
376
377 /* set the number of data bits */
Alan Coxb69c1492008-07-22 11:09:39 +0100378 if ((cflag & CSIZE) != (old_cflag & CSIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 switch (cflag & CSIZE) {
Alan Coxb69c1492008-07-22 11:09:39 +0100380 case CS5:
381 urb_value = BELKIN_SA_DATA_BITS(5);
382 break;
383 case CS6:
384 urb_value = BELKIN_SA_DATA_BITS(6);
385 break;
386 case CS7:
387 urb_value = BELKIN_SA_DATA_BITS(7);
388 break;
389 case CS8:
390 urb_value = BELKIN_SA_DATA_BITS(8);
391 break;
Ben Minerds70f3c752012-04-28 13:36:35 +1000392 default:
Greg Kroah-Hartmanc89aa632012-05-15 16:27:11 -0700393 dev_dbg(&port->dev,
394 "CSIZE was not CS5-CS8, using default of 8\n");
Alan Coxb69c1492008-07-22 11:09:39 +0100395 urb_value = BELKIN_SA_DATA_BITS(8);
396 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 }
398 if (BSA_USB_CMD(BELKIN_SA_SET_DATA_BITS_REQUEST, urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700399 dev_err(&port->dev, "Set data bits error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
401
402 /* set the number of stop bits */
Alan Coxb69c1492008-07-22 11:09:39 +0100403 if ((cflag & CSTOPB) != (old_cflag & CSTOPB)) {
404 urb_value = (cflag & CSTOPB) ? BELKIN_SA_STOP_BITS(2)
405 : BELKIN_SA_STOP_BITS(1);
406 if (BSA_USB_CMD(BELKIN_SA_SET_STOP_BITS_REQUEST,
407 urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700408 dev_err(&port->dev, "Set stop bits error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 }
410
411 /* Set flow control */
Alan Coxb69c1492008-07-22 11:09:39 +0100412 if (((iflag ^ old_iflag) & (IXOFF | IXON)) ||
413 ((cflag ^ old_cflag) & CRTSCTS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 urb_value = 0;
415 if ((iflag & IXOFF) || (iflag & IXON))
416 urb_value |= (BELKIN_SA_FLOW_OXON | BELKIN_SA_FLOW_IXON);
417 else
418 urb_value &= ~(BELKIN_SA_FLOW_OXON | BELKIN_SA_FLOW_IXON);
419
420 if (cflag & CRTSCTS)
421 urb_value |= (BELKIN_SA_FLOW_OCTS | BELKIN_SA_FLOW_IRTS);
422 else
423 urb_value &= ~(BELKIN_SA_FLOW_OCTS | BELKIN_SA_FLOW_IRTS);
424
425 if (bad_flow_control)
426 urb_value &= ~(BELKIN_SA_FLOW_IRTS);
427
428 if (BSA_USB_CMD(BELKIN_SA_SET_FLOW_CTRL_REQUEST, urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700429 dev_err(&port->dev, "Set flow control error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 }
431
432 /* save off the modified port settings */
433 spin_lock_irqsave(&priv->lock, flags);
434 priv->control_state = control_state;
435 spin_unlock_irqrestore(&priv->lock, flags);
Johan Hovold726ef422010-05-15 17:53:51 +0200436}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Alan Cox95da3102008-07-22 11:09:07 +0100438static void belkin_sa_break_ctl(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
Alan Cox95da3102008-07-22 11:09:07 +0100440 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 struct usb_serial *serial = port->serial;
442
443 if (BSA_USB_CMD(BELKIN_SA_SET_BREAK_REQUEST, break_state ? 1 : 0) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700444 dev_err(&port->dev, "Set break_ctl %d\n", break_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
Alan Cox60b33c12011-02-14 16:26:14 +0000447static int belkin_sa_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Alan Cox95da3102008-07-22 11:09:07 +0100449 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 struct belkin_sa_private *priv = usb_get_serial_port_data(port);
451 unsigned long control_state;
452 unsigned long flags;
Alan Coxb69c1492008-07-22 11:09:39 +0100453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 spin_lock_irqsave(&priv->lock, flags);
455 control_state = priv->control_state;
456 spin_unlock_irqrestore(&priv->lock, flags);
457
458 return control_state;
459}
460
Alan Cox20b9d172011-02-14 16:26:50 +0000461static int belkin_sa_tiocmset(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 unsigned int set, unsigned int clear)
463{
Alan Cox95da3102008-07-22 11:09:07 +0100464 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 struct usb_serial *serial = port->serial;
466 struct belkin_sa_private *priv = usb_get_serial_port_data(port);
467 unsigned long control_state;
468 unsigned long flags;
469 int retval;
470 int rts = 0;
471 int dtr = 0;
Alan Coxb69c1492008-07-22 11:09:39 +0100472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 spin_lock_irqsave(&priv->lock, flags);
474 control_state = priv->control_state;
475
476 if (set & TIOCM_RTS) {
477 control_state |= TIOCM_RTS;
478 rts = 1;
479 }
480 if (set & TIOCM_DTR) {
481 control_state |= TIOCM_DTR;
482 dtr = 1;
483 }
484 if (clear & TIOCM_RTS) {
485 control_state &= ~TIOCM_RTS;
486 rts = 0;
487 }
488 if (clear & TIOCM_DTR) {
489 control_state &= ~TIOCM_DTR;
490 dtr = 0;
491 }
492
493 priv->control_state = control_state;
494 spin_unlock_irqrestore(&priv->lock, flags);
495
496 retval = BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST, rts);
497 if (retval < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700498 dev_err(&port->dev, "Set RTS error %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 goto exit;
500 }
501
502 retval = BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST, dtr);
503 if (retval < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700504 dev_err(&port->dev, "Set DTR error %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 goto exit;
506 }
507exit:
508 return retval;
509}
510
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700511module_usb_serial_driver(serial_drivers, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Alan Coxb69c1492008-07-22 11:09:39 +0100513MODULE_AUTHOR(DRIVER_AUTHOR);
514MODULE_DESCRIPTION(DRIVER_DESC);
515MODULE_VERSION(DRIVER_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516MODULE_LICENSE("GPL");
517
518module_param(debug, bool, S_IRUGO | S_IWUSR);
519MODULE_PARM_DESC(debug, "Debug enabled or not");