blob: bdab31afc37d617b2f5e5d1b5bd8faada0caef65 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Belkin USB Serial Adapter Driver
3 *
4 * Copyright (C) 2000 William Greathouse (wgreathouse@smva.com)
5 * Copyright (C) 2000-2001 Greg Kroah-Hartman (greg@kroah.com)
6 *
7 * This program is largely derived from work by the linux-usb group
8 * and associated source files. Please see the usb/serial files for
9 * individual credits and copyrights.
Alan Coxb69c1492008-07-22 11:09:39 +010010 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
Alan Coxb69c1492008-07-22 11:09:39 +010016 * See Documentation/usb/usb-serial.txt for more information on using this
17 * driver
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 *
19 * TODO:
20 * -- Add true modem contol line query capability. Currently we track the
21 * states reported by the interrupt and the states we request.
22 * -- Add error reporting back to application for UART error conditions.
23 * Just point me at how to implement this and I'll do it. I've put the
24 * framework in, but haven't analyzed the "tty_flip" interface yet.
25 * -- Add support for flush commands
26 * -- Add everything that is missing :)
27 *
28 * 27-Nov-2001 gkh
29 * compressed all the differnent device entries into 1.
30 *
31 * 30-May-2001 gkh
Alan Coxb69c1492008-07-22 11:09:39 +010032 * switched from using spinlock to a semaphore, which fixes lots of
33 * problems.
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 *
35 * 08-Apr-2001 gb
36 * - Identify version on module load.
37 *
38 * 12-Mar-2001 gkh
39 * - Added support for the GoHubs GO-COM232 device which is the same as the
40 * Peracom device.
41 *
42 * 06-Nov-2000 gkh
43 * - Added support for the old Belkin and Peracom devices.
44 * - Made the port able to be opened multiple times.
45 * - Added some defaults incase the line settings are things these devices
Alan Coxb69c1492008-07-22 11:09:39 +010046 * can't support.
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 *
48 * 18-Oct-2000 William Greathouse
49 * Released into the wild (linux-usb-devel)
50 *
51 * 17-Oct-2000 William Greathouse
52 * Add code to recognize firmware version and set hardware flow control
53 * appropriately. Belkin states that firmware prior to 3.05 does not
54 * operate correctly in hardware handshake mode. I have verified this
55 * on firmware 2.05 -- for both RTS and DTR input flow control, the control
56 * line is not reset. The test performed by the Belkin Win* driver is
57 * to enable hardware flow control for firmware 2.06 or greater and
58 * for 1.00 or prior. I am only enabling for 2.06 or greater.
59 *
60 * 12-Oct-2000 William Greathouse
61 * First cut at supporting Belkin USB Serial Adapter F5U103
62 * I did not have a copy of the original work to support this
63 * adapter, so pardon any stupid mistakes. All of the information
64 * I am using to write this driver was acquired by using a modified
65 * UsbSnoop on Windows2000 and from examining the other USB drivers.
66 */
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <linux/kernel.h>
69#include <linux/errno.h>
70#include <linux/init.h>
71#include <linux/slab.h>
72#include <linux/tty.h>
73#include <linux/tty_driver.h>
74#include <linux/tty_flip.h>
75#include <linux/module.h>
76#include <linux/spinlock.h>
Alan Coxb69c1492008-07-22 11:09:39 +010077#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070079#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#include "belkin_sa.h"
81
82static int debug;
83
84/*
85 * Version Information
86 */
87#define DRIVER_VERSION "v1.2"
88#define DRIVER_AUTHOR "William Greathouse <wgreathouse@smva.com>"
89#define DRIVER_DESC "USB Belkin Serial converter driver"
90
91/* function prototypes for a Belkin USB Serial Adapter F5U103 */
Alan Coxb69c1492008-07-22 11:09:39 +010092static int belkin_sa_startup(struct usb_serial *serial);
Alan Sternf9c99bb2009-06-02 11:53:55 -040093static void belkin_sa_release(struct usb_serial *serial);
Alan Coxb69c1492008-07-22 11:09:39 +010094static int belkin_sa_open(struct tty_struct *tty,
Alan Coxa509a7e2009-09-19 13:13:26 -070095 struct usb_serial_port *port);
Alan Cox335f8512009-06-11 12:26:29 +010096static void belkin_sa_close(struct usb_serial_port *port);
Alan Coxb69c1492008-07-22 11:09:39 +010097static void belkin_sa_read_int_callback(struct urb *urb);
98static void belkin_sa_set_termios(struct tty_struct *tty,
99 struct usb_serial_port *port, struct ktermios * old);
100static void belkin_sa_break_ctl(struct tty_struct *tty, int break_state);
101static int belkin_sa_tiocmget(struct tty_struct *tty, struct file *file);
102static int belkin_sa_tiocmset(struct tty_struct *tty, struct file *file,
103 unsigned int set, unsigned int clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105
Németh Márton7d40d7e2010-01-10 15:34:24 +0100106static const struct usb_device_id id_table_combined[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 { USB_DEVICE(BELKIN_SA_VID, BELKIN_SA_PID) },
108 { USB_DEVICE(BELKIN_OLD_VID, BELKIN_OLD_PID) },
109 { USB_DEVICE(PERACOM_VID, PERACOM_PID) },
110 { USB_DEVICE(GOHUBS_VID, GOHUBS_PID) },
111 { USB_DEVICE(GOHUBS_VID, HANDYLINK_PID) },
112 { USB_DEVICE(BELKIN_DOCKSTATION_VID, BELKIN_DOCKSTATION_PID) },
Alan Coxb69c1492008-07-22 11:09:39 +0100113 { } /* Terminating entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114};
115
Alan Coxb69c1492008-07-22 11:09:39 +0100116MODULE_DEVICE_TABLE(usb, id_table_combined);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118static struct usb_driver belkin_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 .name = "belkin",
120 .probe = usb_serial_probe,
121 .disconnect = usb_serial_disconnect,
122 .id_table = id_table_combined,
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800123 .no_dynamic_id = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124};
125
126/* All of the device info needed for the serial converters */
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700127static struct usb_serial_driver belkin_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700128 .driver = {
129 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700130 .name = "belkin",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700131 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700132 .description = "Belkin / Peracom / GoHubs USB Serial Adapter",
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100133 .usb_driver = &belkin_driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 .id_table = id_table_combined,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 .num_ports = 1,
136 .open = belkin_sa_open,
137 .close = belkin_sa_close,
Alan Coxb69c1492008-07-22 11:09:39 +0100138 .read_int_callback = belkin_sa_read_int_callback,
139 /* How we get the status info */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 .set_termios = belkin_sa_set_termios,
141 .break_ctl = belkin_sa_break_ctl,
142 .tiocmget = belkin_sa_tiocmget,
143 .tiocmset = belkin_sa_tiocmset,
144 .attach = belkin_sa_startup,
Alan Sternf9c99bb2009-06-02 11:53:55 -0400145 .release = belkin_sa_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146};
147
148
149struct belkin_sa_private {
150 spinlock_t lock;
151 unsigned long control_state;
152 unsigned char last_lsr;
153 unsigned char last_msr;
154 int bad_flow_control;
155};
156
157
158/*
159 * ***************************************************************************
160 * Belkin USB Serial Adapter F5U103 specific driver functions
161 * ***************************************************************************
162 */
163
164#define WDR_TIMEOUT 5000 /* default urb timeout */
165
166/* assumes that struct usb_serial *serial is available */
Alan Coxb69c1492008-07-22 11:09:39 +0100167#define BSA_USB_CMD(c, v) usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 (c), BELKIN_SA_SET_REQUEST_TYPE, \
169 (v), 0, NULL, 0, WDR_TIMEOUT)
170
171/* do some startup allocations not currently performed by usb_serial_probe() */
Alan Coxb69c1492008-07-22 11:09:39 +0100172static int belkin_sa_startup(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
174 struct usb_device *dev = serial->dev;
175 struct belkin_sa_private *priv;
176
177 /* allocate the private data structure */
178 priv = kmalloc(sizeof(struct belkin_sa_private), GFP_KERNEL);
179 if (!priv)
Alan Coxb69c1492008-07-22 11:09:39 +0100180 return -1; /* error */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 /* set initial values for control structures */
182 spin_lock_init(&priv->lock);
183 priv->control_state = 0;
184 priv->last_lsr = 0;
185 priv->last_msr = 0;
186 /* see comments at top of file */
Alan Coxb69c1492008-07-22 11:09:39 +0100187 priv->bad_flow_control =
188 (le16_to_cpu(dev->descriptor.bcdDevice) <= 0x0206) ? 1 : 0;
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -0700189 dev_info(&dev->dev, "bcdDevice: %04x, bfc: %d\n",
Alan Coxb69c1492008-07-22 11:09:39 +0100190 le16_to_cpu(dev->descriptor.bcdDevice),
191 priv->bad_flow_control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 init_waitqueue_head(&serial->port[0]->write_wait);
194 usb_set_serial_port_data(serial->port[0], priv);
Alan Coxb69c1492008-07-22 11:09:39 +0100195
196 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197}
198
199
Alan Sternf9c99bb2009-06-02 11:53:55 -0400200static void belkin_sa_release(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
202 struct belkin_sa_private *priv;
203 int i;
Alan Coxb69c1492008-07-22 11:09:39 +0100204
205 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Alan Coxb69c1492008-07-22 11:09:39 +0100207 for (i = 0; i < serial->num_ports; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 /* My special items, the standard routines free my urbs */
209 priv = usb_get_serial_port_data(serial->port[i]);
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700210 kfree(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 }
212}
213
214
Alan Coxb69c1492008-07-22 11:09:39 +0100215static int belkin_sa_open(struct tty_struct *tty,
Alan Coxa509a7e2009-09-19 13:13:26 -0700216 struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
218 int retval = 0;
219
Harvey Harrison441b62c2008-03-03 16:08:34 -0800220 dbg("%s port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 /*Start reading from the device*/
223 /* TODO: Look at possibility of submitting multiple URBs to device to
224 * enhance buffering. Win trace shows 16 initial read URBs.
225 */
226 port->read_urb->dev = port->serial->dev;
227 retval = usb_submit_urb(port->read_urb, GFP_KERNEL);
228 if (retval) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700229 dev_err(&port->dev, "usb_submit_urb(read bulk) failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 goto exit;
231 }
232
233 port->interrupt_in_urb->dev = port->serial->dev;
234 retval = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
235 if (retval) {
236 usb_kill_urb(port->read_urb);
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700237 dev_err(&port->dev, "usb_submit_urb(read int) failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 }
239
240exit:
241 return retval;
242} /* belkin_sa_open */
243
244
Alan Cox335f8512009-06-11 12:26:29 +0100245static void belkin_sa_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
Harvey Harrison441b62c2008-03-03 16:08:34 -0800247 dbg("%s port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Johan Hovoldf26788d2010-03-17 23:00:45 +0100249 usb_serial_generic_close(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 usb_kill_urb(port->interrupt_in_urb);
251} /* belkin_sa_close */
252
253
Alan Cox95da3102008-07-22 11:09:07 +0100254static void belkin_sa_read_int_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
Ming Leicdc97792008-02-24 18:41:47 +0800256 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 struct belkin_sa_private *priv;
258 unsigned char *data = urb->transfer_buffer;
259 int retval;
Greg Kroah-Hartmanf26aad22007-06-15 15:44:13 -0700260 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 unsigned long flags;
262
Greg Kroah-Hartmanf26aad22007-06-15 15:44:13 -0700263 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 case 0:
265 /* success */
266 break;
267 case -ECONNRESET:
268 case -ENOENT:
269 case -ESHUTDOWN:
270 /* this urb is terminated, clean up */
Greg Kroah-Hartmanf26aad22007-06-15 15:44:13 -0700271 dbg("%s - urb shutting down with status: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800272 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 return;
274 default:
Greg Kroah-Hartmanf26aad22007-06-15 15:44:13 -0700275 dbg("%s - nonzero urb status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800276 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 goto exit;
278 }
279
Alan Coxb69c1492008-07-22 11:09:39 +0100280 usb_serial_debug_data(debug, &port->dev, __func__,
281 urb->actual_length, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 /* Handle known interrupt data */
284 /* ignore data[0] and data[1] */
285
286 priv = usb_get_serial_port_data(port);
287 spin_lock_irqsave(&priv->lock, flags);
288 priv->last_msr = data[BELKIN_SA_MSR_INDEX];
Alan Coxb69c1492008-07-22 11:09:39 +0100289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 /* Record Control Line states */
291 if (priv->last_msr & BELKIN_SA_MSR_DSR)
292 priv->control_state |= TIOCM_DSR;
293 else
294 priv->control_state &= ~TIOCM_DSR;
295
296 if (priv->last_msr & BELKIN_SA_MSR_CTS)
297 priv->control_state |= TIOCM_CTS;
298 else
299 priv->control_state &= ~TIOCM_CTS;
300
301 if (priv->last_msr & BELKIN_SA_MSR_RI)
302 priv->control_state |= TIOCM_RI;
303 else
304 priv->control_state &= ~TIOCM_RI;
305
306 if (priv->last_msr & BELKIN_SA_MSR_CD)
307 priv->control_state |= TIOCM_CD;
308 else
309 priv->control_state &= ~TIOCM_CD;
310
311 /* Now to report any errors */
312 priv->last_lsr = data[BELKIN_SA_LSR_INDEX];
313#if 0
314 /*
315 * fill in the flip buffer here, but I do not know the relation
316 * to the current/next receive buffer or characters. I need
317 * to look in to this before committing any code.
318 */
319 if (priv->last_lsr & BELKIN_SA_LSR_ERR) {
Alan Cox4a90f092008-10-13 10:39:46 +0100320 tty = tty_port_tty_get(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 /* Overrun Error */
322 if (priv->last_lsr & BELKIN_SA_LSR_OE) {
323 }
324 /* Parity Error */
325 if (priv->last_lsr & BELKIN_SA_LSR_PE) {
326 }
327 /* Framing Error */
328 if (priv->last_lsr & BELKIN_SA_LSR_FE) {
329 }
330 /* Break Indicator */
331 if (priv->last_lsr & BELKIN_SA_LSR_BI) {
332 }
Alan Cox4a90f092008-10-13 10:39:46 +0100333 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 }
335#endif
336 spin_unlock_irqrestore(&priv->lock, flags);
337exit:
Alan Coxb69c1492008-07-22 11:09:39 +0100338 retval = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 if (retval)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700340 dev_err(&port->dev, "%s - usb_submit_urb failed with "
341 "result %d\n", __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
Alan Cox95da3102008-07-22 11:09:07 +0100344static void belkin_sa_set_termios(struct tty_struct *tty,
345 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
347 struct usb_serial *serial = port->serial;
348 struct belkin_sa_private *priv = usb_get_serial_port_data(port);
349 unsigned int iflag;
350 unsigned int cflag;
351 unsigned int old_iflag = 0;
352 unsigned int old_cflag = 0;
353 __u16 urb_value = 0; /* Will hold the new flags */
354 unsigned long flags;
355 unsigned long control_state;
356 int bad_flow_control;
Alan Cox9a8baec2007-06-22 14:40:18 +0100357 speed_t baud;
Alan Cox95da3102008-07-22 11:09:07 +0100358 struct ktermios *termios = tty->termios;
Alan Coxb69c1492008-07-22 11:09:39 +0100359
Alan Cox3ec466b2007-12-13 16:15:26 -0800360 iflag = termios->c_iflag;
361 cflag = termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Alan Cox3ec466b2007-12-13 16:15:26 -0800363 termios->c_cflag &= ~CMSPAR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 /* get a local copy of the current port settings */
366 spin_lock_irqsave(&priv->lock, flags);
367 control_state = priv->control_state;
368 bad_flow_control = priv->bad_flow_control;
369 spin_unlock_irqrestore(&priv->lock, flags);
Alan Coxb69c1492008-07-22 11:09:39 +0100370
Alan Cox9a8baec2007-06-22 14:40:18 +0100371 old_iflag = old_termios->c_iflag;
372 old_cflag = old_termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374 /* Set the baud rate */
Alan Cox3ec466b2007-12-13 16:15:26 -0800375 if ((cflag & CBAUD) != (old_cflag & CBAUD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 /* reassert DTR and (maybe) RTS on transition from B0 */
Alan Coxb69c1492008-07-22 11:09:39 +0100377 if ((old_cflag & CBAUD) == B0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 control_state |= (TIOCM_DTR|TIOCM_RTS);
379 if (BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST, 1) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700380 dev_err(&port->dev, "Set DTR error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 /* don't set RTS if using hardware flow control */
Alan Cox3ec466b2007-12-13 16:15:26 -0800382 if (!(old_cflag & CRTSCTS))
Alan Coxb69c1492008-07-22 11:09:39 +0100383 if (BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST
384 , 1) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700385 dev_err(&port->dev, "Set RTS error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
Alan Cox9a8baec2007-06-22 14:40:18 +0100387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Alan Cox95da3102008-07-22 11:09:07 +0100389 baud = tty_get_baud_rate(tty);
Alan Cox3ec466b2007-12-13 16:15:26 -0800390 if (baud) {
391 urb_value = BELKIN_SA_BAUD(baud);
392 /* Clip to maximum speed */
393 if (urb_value == 0)
394 urb_value = 1;
395 /* Turn it back into a resulting real baud rate */
396 baud = BELKIN_SA_BAUD(urb_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Alan Cox3ec466b2007-12-13 16:15:26 -0800398 /* Report the actual baud rate back to the caller */
Alan Cox95da3102008-07-22 11:09:07 +0100399 tty_encode_baud_rate(tty, baud, baud);
Alan Cox9a8baec2007-06-22 14:40:18 +0100400 if (BSA_USB_CMD(BELKIN_SA_SET_BAUDRATE_REQUEST, urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700401 dev_err(&port->dev, "Set baudrate error\n");
Alan Cox9a8baec2007-06-22 14:40:18 +0100402 } else {
403 /* Disable flow control */
Alan Coxb69c1492008-07-22 11:09:39 +0100404 if (BSA_USB_CMD(BELKIN_SA_SET_FLOW_CTRL_REQUEST,
405 BELKIN_SA_FLOW_NONE) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700406 dev_err(&port->dev, "Disable flowcontrol error\n");
Alan Cox9a8baec2007-06-22 14:40:18 +0100407 /* Drop RTS and DTR */
408 control_state &= ~(TIOCM_DTR | TIOCM_RTS);
409 if (BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST, 0) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700410 dev_err(&port->dev, "DTR LOW error\n");
Alan Cox9a8baec2007-06-22 14:40:18 +0100411 if (BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST, 0) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700412 dev_err(&port->dev, "RTS LOW error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
414
415 /* set the parity */
Alan Coxb69c1492008-07-22 11:09:39 +0100416 if ((cflag ^ old_cflag) & (PARENB | PARODD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 if (cflag & PARENB)
Alan Coxb69c1492008-07-22 11:09:39 +0100418 urb_value = (cflag & PARODD) ? BELKIN_SA_PARITY_ODD
419 : BELKIN_SA_PARITY_EVEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 else
421 urb_value = BELKIN_SA_PARITY_NONE;
422 if (BSA_USB_CMD(BELKIN_SA_SET_PARITY_REQUEST, urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700423 dev_err(&port->dev, "Set parity error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 }
425
426 /* set the number of data bits */
Alan Coxb69c1492008-07-22 11:09:39 +0100427 if ((cflag & CSIZE) != (old_cflag & CSIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 switch (cflag & CSIZE) {
Alan Coxb69c1492008-07-22 11:09:39 +0100429 case CS5:
430 urb_value = BELKIN_SA_DATA_BITS(5);
431 break;
432 case CS6:
433 urb_value = BELKIN_SA_DATA_BITS(6);
434 break;
435 case CS7:
436 urb_value = BELKIN_SA_DATA_BITS(7);
437 break;
438 case CS8:
439 urb_value = BELKIN_SA_DATA_BITS(8);
440 break;
441 default: dbg("CSIZE was not CS5-CS8, using default of 8");
442 urb_value = BELKIN_SA_DATA_BITS(8);
443 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 }
445 if (BSA_USB_CMD(BELKIN_SA_SET_DATA_BITS_REQUEST, urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700446 dev_err(&port->dev, "Set data bits error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
448
449 /* set the number of stop bits */
Alan Coxb69c1492008-07-22 11:09:39 +0100450 if ((cflag & CSTOPB) != (old_cflag & CSTOPB)) {
451 urb_value = (cflag & CSTOPB) ? BELKIN_SA_STOP_BITS(2)
452 : BELKIN_SA_STOP_BITS(1);
453 if (BSA_USB_CMD(BELKIN_SA_SET_STOP_BITS_REQUEST,
454 urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700455 dev_err(&port->dev, "Set stop bits error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 }
457
458 /* Set flow control */
Alan Coxb69c1492008-07-22 11:09:39 +0100459 if (((iflag ^ old_iflag) & (IXOFF | IXON)) ||
460 ((cflag ^ old_cflag) & CRTSCTS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 urb_value = 0;
462 if ((iflag & IXOFF) || (iflag & IXON))
463 urb_value |= (BELKIN_SA_FLOW_OXON | BELKIN_SA_FLOW_IXON);
464 else
465 urb_value &= ~(BELKIN_SA_FLOW_OXON | BELKIN_SA_FLOW_IXON);
466
467 if (cflag & CRTSCTS)
468 urb_value |= (BELKIN_SA_FLOW_OCTS | BELKIN_SA_FLOW_IRTS);
469 else
470 urb_value &= ~(BELKIN_SA_FLOW_OCTS | BELKIN_SA_FLOW_IRTS);
471
472 if (bad_flow_control)
473 urb_value &= ~(BELKIN_SA_FLOW_IRTS);
474
475 if (BSA_USB_CMD(BELKIN_SA_SET_FLOW_CTRL_REQUEST, urb_value) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700476 dev_err(&port->dev, "Set flow control error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
478
479 /* save off the modified port settings */
480 spin_lock_irqsave(&priv->lock, flags);
481 priv->control_state = control_state;
482 spin_unlock_irqrestore(&priv->lock, flags);
483} /* belkin_sa_set_termios */
484
485
Alan Cox95da3102008-07-22 11:09:07 +0100486static void belkin_sa_break_ctl(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
Alan Cox95da3102008-07-22 11:09:07 +0100488 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 struct usb_serial *serial = port->serial;
490
491 if (BSA_USB_CMD(BELKIN_SA_SET_BREAK_REQUEST, break_state ? 1 : 0) < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700492 dev_err(&port->dev, "Set break_ctl %d\n", break_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494
495
Alan Cox95da3102008-07-22 11:09:07 +0100496static int belkin_sa_tiocmget(struct tty_struct *tty, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
Alan Cox95da3102008-07-22 11:09:07 +0100498 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 struct belkin_sa_private *priv = usb_get_serial_port_data(port);
500 unsigned long control_state;
501 unsigned long flags;
Alan Coxb69c1492008-07-22 11:09:39 +0100502
Harvey Harrison441b62c2008-03-03 16:08:34 -0800503 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 spin_lock_irqsave(&priv->lock, flags);
506 control_state = priv->control_state;
507 spin_unlock_irqrestore(&priv->lock, flags);
508
509 return control_state;
510}
511
512
Alan Cox95da3102008-07-22 11:09:07 +0100513static int belkin_sa_tiocmset(struct tty_struct *tty, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 unsigned int set, unsigned int clear)
515{
Alan Cox95da3102008-07-22 11:09:07 +0100516 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 struct usb_serial *serial = port->serial;
518 struct belkin_sa_private *priv = usb_get_serial_port_data(port);
519 unsigned long control_state;
520 unsigned long flags;
521 int retval;
522 int rts = 0;
523 int dtr = 0;
Alan Coxb69c1492008-07-22 11:09:39 +0100524
Harvey Harrison441b62c2008-03-03 16:08:34 -0800525 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527 spin_lock_irqsave(&priv->lock, flags);
528 control_state = priv->control_state;
529
530 if (set & TIOCM_RTS) {
531 control_state |= TIOCM_RTS;
532 rts = 1;
533 }
534 if (set & TIOCM_DTR) {
535 control_state |= TIOCM_DTR;
536 dtr = 1;
537 }
538 if (clear & TIOCM_RTS) {
539 control_state &= ~TIOCM_RTS;
540 rts = 0;
541 }
542 if (clear & TIOCM_DTR) {
543 control_state &= ~TIOCM_DTR;
544 dtr = 0;
545 }
546
547 priv->control_state = control_state;
548 spin_unlock_irqrestore(&priv->lock, flags);
549
550 retval = BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST, rts);
551 if (retval < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700552 dev_err(&port->dev, "Set RTS error %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 goto exit;
554 }
555
556 retval = BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST, dtr);
557 if (retval < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700558 dev_err(&port->dev, "Set DTR error %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 goto exit;
560 }
561exit:
562 return retval;
563}
564
565
Alan Cox95da3102008-07-22 11:09:07 +0100566static int __init belkin_sa_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
568 int retval;
569 retval = usb_serial_register(&belkin_device);
570 if (retval)
571 goto failed_usb_serial_register;
572 retval = usb_register(&belkin_driver);
573 if (retval)
574 goto failed_usb_register;
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -0700575 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
576 DRIVER_DESC "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 return 0;
578failed_usb_register:
579 usb_serial_deregister(&belkin_device);
580failed_usb_serial_register:
581 return retval;
582}
583
584
585static void __exit belkin_sa_exit (void)
586{
Alan Coxb69c1492008-07-22 11:09:39 +0100587 usb_deregister(&belkin_driver);
Alan Cox95da3102008-07-22 11:09:07 +0100588 usb_serial_deregister(&belkin_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589}
590
591
Alan Coxb69c1492008-07-22 11:09:39 +0100592module_init(belkin_sa_init);
593module_exit(belkin_sa_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Alan Coxb69c1492008-07-22 11:09:39 +0100595MODULE_AUTHOR(DRIVER_AUTHOR);
596MODULE_DESCRIPTION(DRIVER_DESC);
597MODULE_VERSION(DRIVER_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598MODULE_LICENSE("GPL");
599
600module_param(debug, bool, S_IRUGO | S_IWUSR);
601MODULE_PARM_DESC(debug, "Debug enabled or not");