blob: 15bc71853db532118934e05af99ec6826ce54733 [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:
Rahul Bedarkarcd8c5052014-01-02 19:29:24 +053021 * -- Add true modem control line query capability. Currently we track the
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 * 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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/slab.h>
29#include <linux/tty.h>
30#include <linux/tty_driver.h>
31#include <linux/tty_flip.h>
32#include <linux/module.h>
33#include <linux/spinlock.h>
Alan Coxb69c1492008-07-22 11:09:39 +010034#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070036#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "belkin_sa.h"
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#define DRIVER_AUTHOR "William Greathouse <wgreathouse@smva.com>"
40#define DRIVER_DESC "USB Belkin Serial converter driver"
41
42/* function prototypes for a Belkin USB Serial Adapter F5U103 */
Johan Hovoldfa919752012-10-15 18:20:53 +020043static int belkin_sa_port_probe(struct usb_serial_port *port);
44static int belkin_sa_port_remove(struct usb_serial_port *port);
Alan Coxb69c1492008-07-22 11:09:39 +010045static int belkin_sa_open(struct tty_struct *tty,
Alan Coxa509a7e2009-09-19 13:13:26 -070046 struct usb_serial_port *port);
Alan Cox335f8512009-06-11 12:26:29 +010047static void belkin_sa_close(struct usb_serial_port *port);
Alan Coxb69c1492008-07-22 11:09:39 +010048static void belkin_sa_read_int_callback(struct urb *urb);
Johan Hovold2afd8282010-05-15 17:53:53 +020049static void belkin_sa_process_read_urb(struct urb *urb);
Alan Coxb69c1492008-07-22 11:09:39 +010050static void belkin_sa_set_termios(struct tty_struct *tty,
51 struct usb_serial_port *port, struct ktermios * old);
52static void belkin_sa_break_ctl(struct tty_struct *tty, int break_state);
Alan Cox60b33c12011-02-14 16:26:14 +000053static int belkin_sa_tiocmget(struct tty_struct *tty);
Alan Cox20b9d172011-02-14 16:26:50 +000054static int belkin_sa_tiocmset(struct tty_struct *tty,
Alan Coxb69c1492008-07-22 11:09:39 +010055 unsigned int set, unsigned int clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -070058static const struct usb_device_id id_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 { USB_DEVICE(BELKIN_SA_VID, BELKIN_SA_PID) },
60 { USB_DEVICE(BELKIN_OLD_VID, BELKIN_OLD_PID) },
61 { USB_DEVICE(PERACOM_VID, PERACOM_PID) },
62 { USB_DEVICE(GOHUBS_VID, GOHUBS_PID) },
63 { USB_DEVICE(GOHUBS_VID, HANDYLINK_PID) },
64 { USB_DEVICE(BELKIN_DOCKSTATION_VID, BELKIN_DOCKSTATION_PID) },
Alan Coxb69c1492008-07-22 11:09:39 +010065 { } /* Terminating entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -070066};
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -070067MODULE_DEVICE_TABLE(usb, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69/* All of the device info needed for the serial converters */
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -070070static struct usb_serial_driver belkin_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070071 .driver = {
72 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070073 .name = "belkin",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070074 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070075 .description = "Belkin / Peracom / GoHubs USB Serial Adapter",
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -070076 .id_table = id_table,
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 .num_ports = 1,
78 .open = belkin_sa_open,
79 .close = belkin_sa_close,
Alan Coxb69c1492008-07-22 11:09:39 +010080 .read_int_callback = belkin_sa_read_int_callback,
Johan Hovold2afd8282010-05-15 17:53:53 +020081 .process_read_urb = belkin_sa_process_read_urb,
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 .set_termios = belkin_sa_set_termios,
83 .break_ctl = belkin_sa_break_ctl,
84 .tiocmget = belkin_sa_tiocmget,
85 .tiocmset = belkin_sa_tiocmset,
Johan Hovoldfa919752012-10-15 18:20:53 +020086 .port_probe = belkin_sa_port_probe,
87 .port_remove = belkin_sa_port_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -070088};
89
Alan Stern08a4f6b2012-02-23 14:56:17 -050090static struct usb_serial_driver * const serial_drivers[] = {
91 &belkin_device, NULL
92};
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094struct belkin_sa_private {
95 spinlock_t lock;
96 unsigned long control_state;
97 unsigned char last_lsr;
98 unsigned char last_msr;
99 int bad_flow_control;
100};
101
102
103/*
104 * ***************************************************************************
105 * Belkin USB Serial Adapter F5U103 specific driver functions
106 * ***************************************************************************
107 */
108
109#define WDR_TIMEOUT 5000 /* default urb timeout */
110
111/* assumes that struct usb_serial *serial is available */
Alan Coxb69c1492008-07-22 11:09:39 +0100112#define BSA_USB_CMD(c, v) usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 (c), BELKIN_SA_SET_REQUEST_TYPE, \
114 (v), 0, NULL, 0, WDR_TIMEOUT)
115
Johan Hovoldfa919752012-10-15 18:20:53 +0200116static int belkin_sa_port_probe(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
Johan Hovoldfa919752012-10-15 18:20:53 +0200118 struct usb_device *dev = port->serial->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 struct belkin_sa_private *priv;
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 priv = kmalloc(sizeof(struct belkin_sa_private), GFP_KERNEL);
122 if (!priv)
Johan Hovoldfa919752012-10-15 18:20:53 +0200123 return -ENOMEM;
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 spin_lock_init(&priv->lock);
126 priv->control_state = 0;
127 priv->last_lsr = 0;
128 priv->last_msr = 0;
129 /* see comments at top of file */
Alan Coxb69c1492008-07-22 11:09:39 +0100130 priv->bad_flow_control =
131 (le16_to_cpu(dev->descriptor.bcdDevice) <= 0x0206) ? 1 : 0;
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -0700132 dev_info(&dev->dev, "bcdDevice: %04x, bfc: %d\n",
Alan Coxb69c1492008-07-22 11:09:39 +0100133 le16_to_cpu(dev->descriptor.bcdDevice),
134 priv->bad_flow_control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Johan Hovoldfa919752012-10-15 18:20:53 +0200136 usb_set_serial_port_data(port, priv);
Alan Coxb69c1492008-07-22 11:09:39 +0100137
138 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
140
Johan Hovoldfa919752012-10-15 18:20:53 +0200141static int belkin_sa_port_remove(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
Johan Hovoldfa919752012-10-15 18:20:53 +0200143 struct belkin_sa_private *priv;
Alan Coxb69c1492008-07-22 11:09:39 +0100144
Johan Hovoldfa919752012-10-15 18:20:53 +0200145 priv = usb_get_serial_port_data(port);
146 kfree(priv);
147
148 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
Johan Hovold726ef422010-05-15 17:53:51 +0200151static int belkin_sa_open(struct tty_struct *tty,
Alan Coxa509a7e2009-09-19 13:13:26 -0700152 struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Johan Hovoldf2f8b7f2010-05-15 17:53:52 +0200154 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 retval = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
157 if (retval) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700158 dev_err(&port->dev, "usb_submit_urb(read int) failed\n");
Johan Hovoldf2f8b7f2010-05-15 17:53:52 +0200159 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 }
161
Johan Hovoldf2f8b7f2010-05-15 17:53:52 +0200162 retval = usb_serial_generic_open(tty, port);
163 if (retval)
164 usb_kill_urb(port->interrupt_in_urb);
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 return retval;
Johan Hovold726ef422010-05-15 17:53:51 +0200167}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Alan Cox335f8512009-06-11 12:26:29 +0100169static void belkin_sa_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
Johan Hovoldf26788d2010-03-17 23:00:45 +0100171 usb_serial_generic_close(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 usb_kill_urb(port->interrupt_in_urb);
Johan Hovold726ef422010-05-15 17:53:51 +0200173}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Alan Cox95da3102008-07-22 11:09:07 +0100175static void belkin_sa_read_int_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Ming Leicdc97792008-02-24 18:41:47 +0800177 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 struct belkin_sa_private *priv;
179 unsigned char *data = urb->transfer_buffer;
180 int retval;
Greg Kroah-Hartmanf26aad22007-06-15 15:44:13 -0700181 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 unsigned long flags;
183
Greg Kroah-Hartmanf26aad22007-06-15 15:44:13 -0700184 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 case 0:
186 /* success */
187 break;
188 case -ECONNRESET:
189 case -ENOENT:
190 case -ESHUTDOWN:
191 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc89aa632012-05-15 16:27:11 -0700192 dev_dbg(&port->dev, "%s - urb shutting down with status: %d\n",
193 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 return;
195 default:
Greg Kroah-Hartmanc89aa632012-05-15 16:27:11 -0700196 dev_dbg(&port->dev, "%s - nonzero urb status received: %d\n",
197 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 goto exit;
199 }
200
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100201 usb_serial_debug_data(&port->dev, __func__, urb->actual_length, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203 /* Handle known interrupt data */
204 /* ignore data[0] and data[1] */
205
206 priv = usb_get_serial_port_data(port);
207 spin_lock_irqsave(&priv->lock, flags);
208 priv->last_msr = data[BELKIN_SA_MSR_INDEX];
Alan Coxb69c1492008-07-22 11:09:39 +0100209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 /* Record Control Line states */
211 if (priv->last_msr & BELKIN_SA_MSR_DSR)
212 priv->control_state |= TIOCM_DSR;
213 else
214 priv->control_state &= ~TIOCM_DSR;
215
216 if (priv->last_msr & BELKIN_SA_MSR_CTS)
217 priv->control_state |= TIOCM_CTS;
218 else
219 priv->control_state &= ~TIOCM_CTS;
220
221 if (priv->last_msr & BELKIN_SA_MSR_RI)
222 priv->control_state |= TIOCM_RI;
223 else
224 priv->control_state &= ~TIOCM_RI;
225
226 if (priv->last_msr & BELKIN_SA_MSR_CD)
227 priv->control_state |= TIOCM_CD;
228 else
229 priv->control_state &= ~TIOCM_CD;
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 priv->last_lsr = data[BELKIN_SA_LSR_INDEX];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 spin_unlock_irqrestore(&priv->lock, flags);
233exit:
Alan Coxb69c1492008-07-22 11:09:39 +0100234 retval = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 if (retval)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700236 dev_err(&port->dev, "%s - usb_submit_urb failed with "
237 "result %d\n", __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238}
239
Johan Hovold2afd8282010-05-15 17:53:53 +0200240static void belkin_sa_process_read_urb(struct urb *urb)
241{
242 struct usb_serial_port *port = urb->context;
243 struct belkin_sa_private *priv = usb_get_serial_port_data(port);
Johan Hovold2afd8282010-05-15 17:53:53 +0200244 unsigned char *data = urb->transfer_buffer;
245 unsigned long flags;
246 unsigned char status;
247 char tty_flag;
248
249 /* Update line status */
250 tty_flag = TTY_NORMAL;
251
252 spin_lock_irqsave(&priv->lock, flags);
253 status = priv->last_lsr;
254 priv->last_lsr &= ~BELKIN_SA_LSR_ERR;
255 spin_unlock_irqrestore(&priv->lock, flags);
256
257 if (!urb->actual_length)
258 return;
259
Johan Hovold2afd8282010-05-15 17:53:53 +0200260 if (status & BELKIN_SA_LSR_ERR) {
261 /* Break takes precedence over parity, which takes precedence
262 * over framing errors. */
263 if (status & BELKIN_SA_LSR_BI)
264 tty_flag = TTY_BREAK;
265 else if (status & BELKIN_SA_LSR_PE)
266 tty_flag = TTY_PARITY;
267 else if (status & BELKIN_SA_LSR_FE)
268 tty_flag = TTY_FRAME;
269 dev_dbg(&port->dev, "tty_flag = %d\n", tty_flag);
270
271 /* Overrun is special, not associated with a char. */
272 if (status & BELKIN_SA_LSR_OE)
Jiri Slaby92a19f92013-01-03 15:53:03 +0100273 tty_insert_flip_char(&port->port, 0, TTY_OVERRUN);
Johan Hovold2afd8282010-05-15 17:53:53 +0200274 }
275
Jiri Slaby2f693352013-01-03 15:53:02 +0100276 tty_insert_flip_string_fixed_flag(&port->port, data, tty_flag,
Johan Hovold2afd8282010-05-15 17:53:53 +0200277 urb->actual_length);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100278 tty_flip_buffer_push(&port->port);
Johan Hovold2afd8282010-05-15 17:53:53 +0200279}
280
Alan Cox95da3102008-07-22 11:09:07 +0100281static void belkin_sa_set_termios(struct tty_struct *tty,
282 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
284 struct usb_serial *serial = port->serial;
285 struct belkin_sa_private *priv = usb_get_serial_port_data(port);
286 unsigned int iflag;
287 unsigned int cflag;
288 unsigned int old_iflag = 0;
289 unsigned int old_cflag = 0;
290 __u16 urb_value = 0; /* Will hold the new flags */
291 unsigned long flags;
292 unsigned long control_state;
293 int bad_flow_control;
Alan Cox9a8baec2007-06-22 14:40:18 +0100294 speed_t baud;
Alan Coxadc8d742012-07-14 15:31:47 +0100295 struct ktermios *termios = &tty->termios;
Alan Coxb69c1492008-07-22 11:09:39 +0100296
Alan Cox3ec466b2007-12-13 16:15:26 -0800297 iflag = termios->c_iflag;
298 cflag = termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Alan Cox3ec466b2007-12-13 16:15:26 -0800300 termios->c_cflag &= ~CMSPAR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302 /* get a local copy of the current port settings */
303 spin_lock_irqsave(&priv->lock, flags);
304 control_state = priv->control_state;
305 bad_flow_control = priv->bad_flow_control;
306 spin_unlock_irqrestore(&priv->lock, flags);
Alan Coxb69c1492008-07-22 11:09:39 +0100307
Alan Cox9a8baec2007-06-22 14:40:18 +0100308 old_iflag = old_termios->c_iflag;
309 old_cflag = old_termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 /* Set the baud rate */
Alan Cox3ec466b2007-12-13 16:15:26 -0800312 if ((cflag & CBAUD) != (old_cflag & CBAUD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 /* reassert DTR and (maybe) RTS on transition from B0 */
Alan Coxb69c1492008-07-22 11:09:39 +0100314 if ((old_cflag & CBAUD) == B0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 control_state |= (TIOCM_DTR|TIOCM_RTS);
316 if (BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST, 1) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700317 dev_err(&port->dev, "Set DTR error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 /* don't set RTS if using hardware flow control */
Alan Cox3ec466b2007-12-13 16:15:26 -0800319 if (!(old_cflag & CRTSCTS))
Alan Coxb69c1492008-07-22 11:09:39 +0100320 if (BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST
321 , 1) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700322 dev_err(&port->dev, "Set RTS error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 }
Alan Cox9a8baec2007-06-22 14:40:18 +0100324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Alan Cox95da3102008-07-22 11:09:07 +0100326 baud = tty_get_baud_rate(tty);
Alan Cox3ec466b2007-12-13 16:15:26 -0800327 if (baud) {
328 urb_value = BELKIN_SA_BAUD(baud);
329 /* Clip to maximum speed */
330 if (urb_value == 0)
331 urb_value = 1;
332 /* Turn it back into a resulting real baud rate */
333 baud = BELKIN_SA_BAUD(urb_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Alan Cox3ec466b2007-12-13 16:15:26 -0800335 /* Report the actual baud rate back to the caller */
Alan Cox95da3102008-07-22 11:09:07 +0100336 tty_encode_baud_rate(tty, baud, baud);
Alan Cox9a8baec2007-06-22 14:40:18 +0100337 if (BSA_USB_CMD(BELKIN_SA_SET_BAUDRATE_REQUEST, urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700338 dev_err(&port->dev, "Set baudrate error\n");
Alan Cox9a8baec2007-06-22 14:40:18 +0100339 } else {
340 /* Disable flow control */
Alan Coxb69c1492008-07-22 11:09:39 +0100341 if (BSA_USB_CMD(BELKIN_SA_SET_FLOW_CTRL_REQUEST,
342 BELKIN_SA_FLOW_NONE) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700343 dev_err(&port->dev, "Disable flowcontrol error\n");
Alan Cox9a8baec2007-06-22 14:40:18 +0100344 /* Drop RTS and DTR */
345 control_state &= ~(TIOCM_DTR | TIOCM_RTS);
346 if (BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST, 0) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700347 dev_err(&port->dev, "DTR LOW error\n");
Alan Cox9a8baec2007-06-22 14:40:18 +0100348 if (BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST, 0) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700349 dev_err(&port->dev, "RTS LOW error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
351
352 /* set the parity */
Alan Coxb69c1492008-07-22 11:09:39 +0100353 if ((cflag ^ old_cflag) & (PARENB | PARODD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 if (cflag & PARENB)
Alan Coxb69c1492008-07-22 11:09:39 +0100355 urb_value = (cflag & PARODD) ? BELKIN_SA_PARITY_ODD
356 : BELKIN_SA_PARITY_EVEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 else
358 urb_value = BELKIN_SA_PARITY_NONE;
359 if (BSA_USB_CMD(BELKIN_SA_SET_PARITY_REQUEST, urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700360 dev_err(&port->dev, "Set parity error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 }
362
363 /* set the number of data bits */
Alan Coxb69c1492008-07-22 11:09:39 +0100364 if ((cflag & CSIZE) != (old_cflag & CSIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 switch (cflag & CSIZE) {
Alan Coxb69c1492008-07-22 11:09:39 +0100366 case CS5:
367 urb_value = BELKIN_SA_DATA_BITS(5);
368 break;
369 case CS6:
370 urb_value = BELKIN_SA_DATA_BITS(6);
371 break;
372 case CS7:
373 urb_value = BELKIN_SA_DATA_BITS(7);
374 break;
375 case CS8:
376 urb_value = BELKIN_SA_DATA_BITS(8);
377 break;
Ben Minerds70f3c752012-04-28 13:36:35 +1000378 default:
Greg Kroah-Hartmanc89aa632012-05-15 16:27:11 -0700379 dev_dbg(&port->dev,
380 "CSIZE was not CS5-CS8, using default of 8\n");
Alan Coxb69c1492008-07-22 11:09:39 +0100381 urb_value = BELKIN_SA_DATA_BITS(8);
382 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 }
384 if (BSA_USB_CMD(BELKIN_SA_SET_DATA_BITS_REQUEST, urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700385 dev_err(&port->dev, "Set data bits error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
387
388 /* set the number of stop bits */
Alan Coxb69c1492008-07-22 11:09:39 +0100389 if ((cflag & CSTOPB) != (old_cflag & CSTOPB)) {
390 urb_value = (cflag & CSTOPB) ? BELKIN_SA_STOP_BITS(2)
391 : BELKIN_SA_STOP_BITS(1);
392 if (BSA_USB_CMD(BELKIN_SA_SET_STOP_BITS_REQUEST,
393 urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700394 dev_err(&port->dev, "Set stop bits error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 }
396
397 /* Set flow control */
Alan Coxb69c1492008-07-22 11:09:39 +0100398 if (((iflag ^ old_iflag) & (IXOFF | IXON)) ||
399 ((cflag ^ old_cflag) & CRTSCTS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 urb_value = 0;
401 if ((iflag & IXOFF) || (iflag & IXON))
402 urb_value |= (BELKIN_SA_FLOW_OXON | BELKIN_SA_FLOW_IXON);
403 else
404 urb_value &= ~(BELKIN_SA_FLOW_OXON | BELKIN_SA_FLOW_IXON);
405
406 if (cflag & CRTSCTS)
407 urb_value |= (BELKIN_SA_FLOW_OCTS | BELKIN_SA_FLOW_IRTS);
408 else
409 urb_value &= ~(BELKIN_SA_FLOW_OCTS | BELKIN_SA_FLOW_IRTS);
410
411 if (bad_flow_control)
412 urb_value &= ~(BELKIN_SA_FLOW_IRTS);
413
414 if (BSA_USB_CMD(BELKIN_SA_SET_FLOW_CTRL_REQUEST, urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700415 dev_err(&port->dev, "Set flow control error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 }
417
418 /* save off the modified port settings */
419 spin_lock_irqsave(&priv->lock, flags);
420 priv->control_state = control_state;
421 spin_unlock_irqrestore(&priv->lock, flags);
Johan Hovold726ef422010-05-15 17:53:51 +0200422}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Alan Cox95da3102008-07-22 11:09:07 +0100424static void belkin_sa_break_ctl(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
Alan Cox95da3102008-07-22 11:09:07 +0100426 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 struct usb_serial *serial = port->serial;
428
429 if (BSA_USB_CMD(BELKIN_SA_SET_BREAK_REQUEST, break_state ? 1 : 0) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700430 dev_err(&port->dev, "Set break_ctl %d\n", break_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431}
432
Alan Cox60b33c12011-02-14 16:26:14 +0000433static int belkin_sa_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Alan Cox95da3102008-07-22 11:09:07 +0100435 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 struct belkin_sa_private *priv = usb_get_serial_port_data(port);
437 unsigned long control_state;
438 unsigned long flags;
Alan Coxb69c1492008-07-22 11:09:39 +0100439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 spin_lock_irqsave(&priv->lock, flags);
441 control_state = priv->control_state;
442 spin_unlock_irqrestore(&priv->lock, flags);
443
444 return control_state;
445}
446
Alan Cox20b9d172011-02-14 16:26:50 +0000447static int belkin_sa_tiocmset(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 unsigned int set, unsigned int clear)
449{
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 struct belkin_sa_private *priv = usb_get_serial_port_data(port);
453 unsigned long control_state;
454 unsigned long flags;
455 int retval;
456 int rts = 0;
457 int dtr = 0;
Alan Coxb69c1492008-07-22 11:09:39 +0100458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 spin_lock_irqsave(&priv->lock, flags);
460 control_state = priv->control_state;
461
462 if (set & TIOCM_RTS) {
463 control_state |= TIOCM_RTS;
464 rts = 1;
465 }
466 if (set & TIOCM_DTR) {
467 control_state |= TIOCM_DTR;
468 dtr = 1;
469 }
470 if (clear & TIOCM_RTS) {
471 control_state &= ~TIOCM_RTS;
472 rts = 0;
473 }
474 if (clear & TIOCM_DTR) {
475 control_state &= ~TIOCM_DTR;
476 dtr = 0;
477 }
478
479 priv->control_state = control_state;
480 spin_unlock_irqrestore(&priv->lock, flags);
481
482 retval = BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST, rts);
483 if (retval < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700484 dev_err(&port->dev, "Set RTS error %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 goto exit;
486 }
487
488 retval = BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST, dtr);
489 if (retval < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700490 dev_err(&port->dev, "Set DTR error %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 goto exit;
492 }
493exit:
494 return retval;
495}
496
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700497module_usb_serial_driver(serial_drivers, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Alan Coxb69c1492008-07-22 11:09:39 +0100499MODULE_AUTHOR(DRIVER_AUTHOR);
500MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501MODULE_LICENSE("GPL");