blob: 99449424193f7295f5e3e5160e7993542080bda1 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070040/*
41 * Version Information
42 */
Johan Hovold2afd8282010-05-15 17:53:53 +020043#define DRIVER_VERSION "v1.3"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#define DRIVER_AUTHOR "William Greathouse <wgreathouse@smva.com>"
45#define DRIVER_DESC "USB Belkin Serial converter driver"
46
47/* function prototypes for a Belkin USB Serial Adapter F5U103 */
Alan Coxb69c1492008-07-22 11:09:39 +010048static int belkin_sa_startup(struct usb_serial *serial);
Alan Sternf9c99bb2009-06-02 11:53:55 -040049static void belkin_sa_release(struct usb_serial *serial);
Alan Coxb69c1492008-07-22 11:09:39 +010050static int belkin_sa_open(struct tty_struct *tty,
Alan Coxa509a7e2009-09-19 13:13:26 -070051 struct usb_serial_port *port);
Alan Cox335f8512009-06-11 12:26:29 +010052static void belkin_sa_close(struct usb_serial_port *port);
Alan Coxb69c1492008-07-22 11:09:39 +010053static void belkin_sa_read_int_callback(struct urb *urb);
Johan Hovold2afd8282010-05-15 17:53:53 +020054static void belkin_sa_process_read_urb(struct urb *urb);
Alan Coxb69c1492008-07-22 11:09:39 +010055static void belkin_sa_set_termios(struct tty_struct *tty,
56 struct usb_serial_port *port, struct ktermios * old);
57static void belkin_sa_break_ctl(struct tty_struct *tty, int break_state);
Alan Cox60b33c12011-02-14 16:26:14 +000058static int belkin_sa_tiocmget(struct tty_struct *tty);
Alan Cox20b9d172011-02-14 16:26:50 +000059static int belkin_sa_tiocmset(struct tty_struct *tty,
Alan Coxb69c1492008-07-22 11:09:39 +010060 unsigned int set, unsigned int clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -070063static const struct usb_device_id id_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 { USB_DEVICE(BELKIN_SA_VID, BELKIN_SA_PID) },
65 { USB_DEVICE(BELKIN_OLD_VID, BELKIN_OLD_PID) },
66 { USB_DEVICE(PERACOM_VID, PERACOM_PID) },
67 { USB_DEVICE(GOHUBS_VID, GOHUBS_PID) },
68 { USB_DEVICE(GOHUBS_VID, HANDYLINK_PID) },
69 { USB_DEVICE(BELKIN_DOCKSTATION_VID, BELKIN_DOCKSTATION_PID) },
Alan Coxb69c1492008-07-22 11:09:39 +010070 { } /* Terminating entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -070071};
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -070072MODULE_DEVICE_TABLE(usb, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74/* All of the device info needed for the serial converters */
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -070075static struct usb_serial_driver belkin_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070076 .driver = {
77 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070078 .name = "belkin",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070079 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070080 .description = "Belkin / Peracom / GoHubs USB Serial Adapter",
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -070081 .id_table = id_table,
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 .num_ports = 1,
83 .open = belkin_sa_open,
84 .close = belkin_sa_close,
Alan Coxb69c1492008-07-22 11:09:39 +010085 .read_int_callback = belkin_sa_read_int_callback,
Johan Hovold2afd8282010-05-15 17:53:53 +020086 .process_read_urb = belkin_sa_process_read_urb,
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 .set_termios = belkin_sa_set_termios,
88 .break_ctl = belkin_sa_break_ctl,
89 .tiocmget = belkin_sa_tiocmget,
90 .tiocmset = belkin_sa_tiocmset,
91 .attach = belkin_sa_startup,
Alan Sternf9c99bb2009-06-02 11:53:55 -040092 .release = belkin_sa_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -070093};
94
Alan Stern08a4f6b2012-02-23 14:56:17 -050095static struct usb_serial_driver * const serial_drivers[] = {
96 &belkin_device, NULL
97};
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099struct belkin_sa_private {
100 spinlock_t lock;
101 unsigned long control_state;
102 unsigned char last_lsr;
103 unsigned char last_msr;
104 int bad_flow_control;
105};
106
107
108/*
109 * ***************************************************************************
110 * Belkin USB Serial Adapter F5U103 specific driver functions
111 * ***************************************************************************
112 */
113
114#define WDR_TIMEOUT 5000 /* default urb timeout */
115
116/* assumes that struct usb_serial *serial is available */
Alan Coxb69c1492008-07-22 11:09:39 +0100117#define BSA_USB_CMD(c, v) usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 (c), BELKIN_SA_SET_REQUEST_TYPE, \
119 (v), 0, NULL, 0, WDR_TIMEOUT)
120
121/* do some startup allocations not currently performed by usb_serial_probe() */
Alan Coxb69c1492008-07-22 11:09:39 +0100122static int belkin_sa_startup(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
124 struct usb_device *dev = serial->dev;
125 struct belkin_sa_private *priv;
126
127 /* allocate the private data structure */
128 priv = kmalloc(sizeof(struct belkin_sa_private), GFP_KERNEL);
129 if (!priv)
Alan Coxb69c1492008-07-22 11:09:39 +0100130 return -1; /* error */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 /* set initial values for control structures */
132 spin_lock_init(&priv->lock);
133 priv->control_state = 0;
134 priv->last_lsr = 0;
135 priv->last_msr = 0;
136 /* see comments at top of file */
Alan Coxb69c1492008-07-22 11:09:39 +0100137 priv->bad_flow_control =
138 (le16_to_cpu(dev->descriptor.bcdDevice) <= 0x0206) ? 1 : 0;
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -0700139 dev_info(&dev->dev, "bcdDevice: %04x, bfc: %d\n",
Alan Coxb69c1492008-07-22 11:09:39 +0100140 le16_to_cpu(dev->descriptor.bcdDevice),
141 priv->bad_flow_control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 init_waitqueue_head(&serial->port[0]->write_wait);
144 usb_set_serial_port_data(serial->port[0], priv);
Alan Coxb69c1492008-07-22 11:09:39 +0100145
146 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
148
Alan Sternf9c99bb2009-06-02 11:53:55 -0400149static void belkin_sa_release(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 int i;
Alan Coxb69c1492008-07-22 11:09:39 +0100152
Johan Hovold726ef422010-05-15 17:53:51 +0200153 for (i = 0; i < serial->num_ports; ++i)
154 kfree(usb_get_serial_port_data(serial->port[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155}
156
Johan Hovold726ef422010-05-15 17:53:51 +0200157static int belkin_sa_open(struct tty_struct *tty,
Alan Coxa509a7e2009-09-19 13:13:26 -0700158 struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
Johan Hovoldf2f8b7f2010-05-15 17:53:52 +0200160 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 retval = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
163 if (retval) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700164 dev_err(&port->dev, "usb_submit_urb(read int) failed\n");
Johan Hovoldf2f8b7f2010-05-15 17:53:52 +0200165 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 }
167
Johan Hovoldf2f8b7f2010-05-15 17:53:52 +0200168 retval = usb_serial_generic_open(tty, port);
169 if (retval)
170 usb_kill_urb(port->interrupt_in_urb);
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return retval;
Johan Hovold726ef422010-05-15 17:53:51 +0200173}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Alan Cox335f8512009-06-11 12:26:29 +0100175static void belkin_sa_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Johan Hovoldf26788d2010-03-17 23:00:45 +0100177 usb_serial_generic_close(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 usb_kill_urb(port->interrupt_in_urb);
Johan Hovold726ef422010-05-15 17:53:51 +0200179}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Alan Cox95da3102008-07-22 11:09:07 +0100181static void belkin_sa_read_int_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Ming Leicdc97792008-02-24 18:41:47 +0800183 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 struct belkin_sa_private *priv;
185 unsigned char *data = urb->transfer_buffer;
186 int retval;
Greg Kroah-Hartmanf26aad22007-06-15 15:44:13 -0700187 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 unsigned long flags;
189
Greg Kroah-Hartmanf26aad22007-06-15 15:44:13 -0700190 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 case 0:
192 /* success */
193 break;
194 case -ECONNRESET:
195 case -ENOENT:
196 case -ESHUTDOWN:
197 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc89aa632012-05-15 16:27:11 -0700198 dev_dbg(&port->dev, "%s - urb shutting down with status: %d\n",
199 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 return;
201 default:
Greg Kroah-Hartmanc89aa632012-05-15 16:27:11 -0700202 dev_dbg(&port->dev, "%s - nonzero urb status received: %d\n",
203 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 goto exit;
205 }
206
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100207 usb_serial_debug_data(&port->dev, __func__, urb->actual_length, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 /* Handle known interrupt data */
210 /* ignore data[0] and data[1] */
211
212 priv = usb_get_serial_port_data(port);
213 spin_lock_irqsave(&priv->lock, flags);
214 priv->last_msr = data[BELKIN_SA_MSR_INDEX];
Alan Coxb69c1492008-07-22 11:09:39 +0100215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 /* Record Control Line states */
217 if (priv->last_msr & BELKIN_SA_MSR_DSR)
218 priv->control_state |= TIOCM_DSR;
219 else
220 priv->control_state &= ~TIOCM_DSR;
221
222 if (priv->last_msr & BELKIN_SA_MSR_CTS)
223 priv->control_state |= TIOCM_CTS;
224 else
225 priv->control_state &= ~TIOCM_CTS;
226
227 if (priv->last_msr & BELKIN_SA_MSR_RI)
228 priv->control_state |= TIOCM_RI;
229 else
230 priv->control_state &= ~TIOCM_RI;
231
232 if (priv->last_msr & BELKIN_SA_MSR_CD)
233 priv->control_state |= TIOCM_CD;
234 else
235 priv->control_state &= ~TIOCM_CD;
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 priv->last_lsr = data[BELKIN_SA_LSR_INDEX];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 spin_unlock_irqrestore(&priv->lock, flags);
239exit:
Alan Coxb69c1492008-07-22 11:09:39 +0100240 retval = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if (retval)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700242 dev_err(&port->dev, "%s - usb_submit_urb failed with "
243 "result %d\n", __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244}
245
Johan Hovold2afd8282010-05-15 17:53:53 +0200246static void belkin_sa_process_read_urb(struct urb *urb)
247{
248 struct usb_serial_port *port = urb->context;
249 struct belkin_sa_private *priv = usb_get_serial_port_data(port);
250 struct tty_struct *tty;
251 unsigned char *data = urb->transfer_buffer;
252 unsigned long flags;
253 unsigned char status;
254 char tty_flag;
255
256 /* Update line status */
257 tty_flag = TTY_NORMAL;
258
259 spin_lock_irqsave(&priv->lock, flags);
260 status = priv->last_lsr;
261 priv->last_lsr &= ~BELKIN_SA_LSR_ERR;
262 spin_unlock_irqrestore(&priv->lock, flags);
263
264 if (!urb->actual_length)
265 return;
266
267 tty = tty_port_tty_get(&port->port);
268 if (!tty)
269 return;
270
271 if (status & BELKIN_SA_LSR_ERR) {
272 /* Break takes precedence over parity, which takes precedence
273 * over framing errors. */
274 if (status & BELKIN_SA_LSR_BI)
275 tty_flag = TTY_BREAK;
276 else if (status & BELKIN_SA_LSR_PE)
277 tty_flag = TTY_PARITY;
278 else if (status & BELKIN_SA_LSR_FE)
279 tty_flag = TTY_FRAME;
280 dev_dbg(&port->dev, "tty_flag = %d\n", tty_flag);
281
282 /* Overrun is special, not associated with a char. */
283 if (status & BELKIN_SA_LSR_OE)
284 tty_insert_flip_char(tty, 0, TTY_OVERRUN);
285 }
286
287 tty_insert_flip_string_fixed_flag(tty, data, tty_flag,
288 urb->actual_length);
289 tty_flip_buffer_push(tty);
290 tty_kref_put(tty);
291}
292
Alan Cox95da3102008-07-22 11:09:07 +0100293static void belkin_sa_set_termios(struct tty_struct *tty,
294 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
296 struct usb_serial *serial = port->serial;
297 struct belkin_sa_private *priv = usb_get_serial_port_data(port);
298 unsigned int iflag;
299 unsigned int cflag;
300 unsigned int old_iflag = 0;
301 unsigned int old_cflag = 0;
302 __u16 urb_value = 0; /* Will hold the new flags */
303 unsigned long flags;
304 unsigned long control_state;
305 int bad_flow_control;
Alan Cox9a8baec2007-06-22 14:40:18 +0100306 speed_t baud;
Alan Coxadc8d742012-07-14 15:31:47 +0100307 struct ktermios *termios = &tty->termios;
Alan Coxb69c1492008-07-22 11:09:39 +0100308
Alan Cox3ec466b2007-12-13 16:15:26 -0800309 iflag = termios->c_iflag;
310 cflag = termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Alan Cox3ec466b2007-12-13 16:15:26 -0800312 termios->c_cflag &= ~CMSPAR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314 /* get a local copy of the current port settings */
315 spin_lock_irqsave(&priv->lock, flags);
316 control_state = priv->control_state;
317 bad_flow_control = priv->bad_flow_control;
318 spin_unlock_irqrestore(&priv->lock, flags);
Alan Coxb69c1492008-07-22 11:09:39 +0100319
Alan Cox9a8baec2007-06-22 14:40:18 +0100320 old_iflag = old_termios->c_iflag;
321 old_cflag = old_termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 /* Set the baud rate */
Alan Cox3ec466b2007-12-13 16:15:26 -0800324 if ((cflag & CBAUD) != (old_cflag & CBAUD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 /* reassert DTR and (maybe) RTS on transition from B0 */
Alan Coxb69c1492008-07-22 11:09:39 +0100326 if ((old_cflag & CBAUD) == B0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 control_state |= (TIOCM_DTR|TIOCM_RTS);
328 if (BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST, 1) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700329 dev_err(&port->dev, "Set DTR error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 /* don't set RTS if using hardware flow control */
Alan Cox3ec466b2007-12-13 16:15:26 -0800331 if (!(old_cflag & CRTSCTS))
Alan Coxb69c1492008-07-22 11:09:39 +0100332 if (BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST
333 , 1) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700334 dev_err(&port->dev, "Set RTS error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 }
Alan Cox9a8baec2007-06-22 14:40:18 +0100336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Alan Cox95da3102008-07-22 11:09:07 +0100338 baud = tty_get_baud_rate(tty);
Alan Cox3ec466b2007-12-13 16:15:26 -0800339 if (baud) {
340 urb_value = BELKIN_SA_BAUD(baud);
341 /* Clip to maximum speed */
342 if (urb_value == 0)
343 urb_value = 1;
344 /* Turn it back into a resulting real baud rate */
345 baud = BELKIN_SA_BAUD(urb_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Alan Cox3ec466b2007-12-13 16:15:26 -0800347 /* Report the actual baud rate back to the caller */
Alan Cox95da3102008-07-22 11:09:07 +0100348 tty_encode_baud_rate(tty, baud, baud);
Alan Cox9a8baec2007-06-22 14:40:18 +0100349 if (BSA_USB_CMD(BELKIN_SA_SET_BAUDRATE_REQUEST, urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700350 dev_err(&port->dev, "Set baudrate error\n");
Alan Cox9a8baec2007-06-22 14:40:18 +0100351 } else {
352 /* Disable flow control */
Alan Coxb69c1492008-07-22 11:09:39 +0100353 if (BSA_USB_CMD(BELKIN_SA_SET_FLOW_CTRL_REQUEST,
354 BELKIN_SA_FLOW_NONE) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700355 dev_err(&port->dev, "Disable flowcontrol error\n");
Alan Cox9a8baec2007-06-22 14:40:18 +0100356 /* Drop RTS and DTR */
357 control_state &= ~(TIOCM_DTR | TIOCM_RTS);
358 if (BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST, 0) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700359 dev_err(&port->dev, "DTR LOW error\n");
Alan Cox9a8baec2007-06-22 14:40:18 +0100360 if (BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST, 0) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700361 dev_err(&port->dev, "RTS LOW error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 }
363
364 /* set the parity */
Alan Coxb69c1492008-07-22 11:09:39 +0100365 if ((cflag ^ old_cflag) & (PARENB | PARODD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 if (cflag & PARENB)
Alan Coxb69c1492008-07-22 11:09:39 +0100367 urb_value = (cflag & PARODD) ? BELKIN_SA_PARITY_ODD
368 : BELKIN_SA_PARITY_EVEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 else
370 urb_value = BELKIN_SA_PARITY_NONE;
371 if (BSA_USB_CMD(BELKIN_SA_SET_PARITY_REQUEST, urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700372 dev_err(&port->dev, "Set parity error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
374
375 /* set the number of data bits */
Alan Coxb69c1492008-07-22 11:09:39 +0100376 if ((cflag & CSIZE) != (old_cflag & CSIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 switch (cflag & CSIZE) {
Alan Coxb69c1492008-07-22 11:09:39 +0100378 case CS5:
379 urb_value = BELKIN_SA_DATA_BITS(5);
380 break;
381 case CS6:
382 urb_value = BELKIN_SA_DATA_BITS(6);
383 break;
384 case CS7:
385 urb_value = BELKIN_SA_DATA_BITS(7);
386 break;
387 case CS8:
388 urb_value = BELKIN_SA_DATA_BITS(8);
389 break;
Ben Minerds70f3c752012-04-28 13:36:35 +1000390 default:
Greg Kroah-Hartmanc89aa632012-05-15 16:27:11 -0700391 dev_dbg(&port->dev,
392 "CSIZE was not CS5-CS8, using default of 8\n");
Alan Coxb69c1492008-07-22 11:09:39 +0100393 urb_value = BELKIN_SA_DATA_BITS(8);
394 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 }
396 if (BSA_USB_CMD(BELKIN_SA_SET_DATA_BITS_REQUEST, urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700397 dev_err(&port->dev, "Set data bits error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 }
399
400 /* set the number of stop bits */
Alan Coxb69c1492008-07-22 11:09:39 +0100401 if ((cflag & CSTOPB) != (old_cflag & CSTOPB)) {
402 urb_value = (cflag & CSTOPB) ? BELKIN_SA_STOP_BITS(2)
403 : BELKIN_SA_STOP_BITS(1);
404 if (BSA_USB_CMD(BELKIN_SA_SET_STOP_BITS_REQUEST,
405 urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700406 dev_err(&port->dev, "Set stop bits error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 }
408
409 /* Set flow control */
Alan Coxb69c1492008-07-22 11:09:39 +0100410 if (((iflag ^ old_iflag) & (IXOFF | IXON)) ||
411 ((cflag ^ old_cflag) & CRTSCTS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 urb_value = 0;
413 if ((iflag & IXOFF) || (iflag & IXON))
414 urb_value |= (BELKIN_SA_FLOW_OXON | BELKIN_SA_FLOW_IXON);
415 else
416 urb_value &= ~(BELKIN_SA_FLOW_OXON | BELKIN_SA_FLOW_IXON);
417
418 if (cflag & CRTSCTS)
419 urb_value |= (BELKIN_SA_FLOW_OCTS | BELKIN_SA_FLOW_IRTS);
420 else
421 urb_value &= ~(BELKIN_SA_FLOW_OCTS | BELKIN_SA_FLOW_IRTS);
422
423 if (bad_flow_control)
424 urb_value &= ~(BELKIN_SA_FLOW_IRTS);
425
426 if (BSA_USB_CMD(BELKIN_SA_SET_FLOW_CTRL_REQUEST, urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700427 dev_err(&port->dev, "Set flow control error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
429
430 /* save off the modified port settings */
431 spin_lock_irqsave(&priv->lock, flags);
432 priv->control_state = control_state;
433 spin_unlock_irqrestore(&priv->lock, flags);
Johan Hovold726ef422010-05-15 17:53:51 +0200434}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Alan Cox95da3102008-07-22 11:09:07 +0100436static void belkin_sa_break_ctl(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
Alan Cox95da3102008-07-22 11:09:07 +0100438 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 struct usb_serial *serial = port->serial;
440
441 if (BSA_USB_CMD(BELKIN_SA_SET_BREAK_REQUEST, break_state ? 1 : 0) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700442 dev_err(&port->dev, "Set break_ctl %d\n", break_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}
444
Alan Cox60b33c12011-02-14 16:26:14 +0000445static int belkin_sa_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
Alan Cox95da3102008-07-22 11:09:07 +0100447 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 struct belkin_sa_private *priv = usb_get_serial_port_data(port);
449 unsigned long control_state;
450 unsigned long flags;
Alan Coxb69c1492008-07-22 11:09:39 +0100451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 spin_lock_irqsave(&priv->lock, flags);
453 control_state = priv->control_state;
454 spin_unlock_irqrestore(&priv->lock, flags);
455
456 return control_state;
457}
458
Alan Cox20b9d172011-02-14 16:26:50 +0000459static int belkin_sa_tiocmset(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 unsigned int set, unsigned int clear)
461{
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 usb_serial *serial = port->serial;
464 struct belkin_sa_private *priv = usb_get_serial_port_data(port);
465 unsigned long control_state;
466 unsigned long flags;
467 int retval;
468 int rts = 0;
469 int dtr = 0;
Alan Coxb69c1492008-07-22 11:09:39 +0100470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 spin_lock_irqsave(&priv->lock, flags);
472 control_state = priv->control_state;
473
474 if (set & TIOCM_RTS) {
475 control_state |= TIOCM_RTS;
476 rts = 1;
477 }
478 if (set & TIOCM_DTR) {
479 control_state |= TIOCM_DTR;
480 dtr = 1;
481 }
482 if (clear & TIOCM_RTS) {
483 control_state &= ~TIOCM_RTS;
484 rts = 0;
485 }
486 if (clear & TIOCM_DTR) {
487 control_state &= ~TIOCM_DTR;
488 dtr = 0;
489 }
490
491 priv->control_state = control_state;
492 spin_unlock_irqrestore(&priv->lock, flags);
493
494 retval = BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST, rts);
495 if (retval < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700496 dev_err(&port->dev, "Set RTS error %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 goto exit;
498 }
499
500 retval = BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST, dtr);
501 if (retval < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700502 dev_err(&port->dev, "Set DTR error %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 goto exit;
504 }
505exit:
506 return retval;
507}
508
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700509module_usb_serial_driver(serial_drivers, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Alan Coxb69c1492008-07-22 11:09:39 +0100511MODULE_AUTHOR(DRIVER_AUTHOR);
512MODULE_DESCRIPTION(DRIVER_DESC);
513MODULE_VERSION(DRIVER_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514MODULE_LICENSE("GPL");