2 * Belkin USB Serial Adapter Driver
4 * Copyright (C) 2000 William Greathouse (wgreathouse@smva.com)
5 * Copyright (C) 2000-2001 Greg Kroah-Hartman (greg@kroah.com)
6 * Copyright (C) 2010 Johan Hovold (jhovold@gmail.com)
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.
12 * 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.
17 * See Documentation/usb/usb-serial.txt for more information on using this
21 * -- Add true modem contol line query capability. Currently we track the
22 * states reported by the interrupt and the states we request.
23 * -- Add support for flush commands
26 #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>
35 #include <linux/uaccess.h>
36 #include <linux/usb.h>
37 #include <linux/usb/serial.h>
38 #include "belkin_sa.h"
45 #define DRIVER_VERSION "v1.3"
46 #define DRIVER_AUTHOR "William Greathouse <wgreathouse@smva.com>"
47 #define DRIVER_DESC "USB Belkin Serial converter driver"
49 /* function prototypes for a Belkin USB Serial Adapter F5U103 */
50 static int belkin_sa_startup(struct usb_serial
*serial
);
51 static void belkin_sa_release(struct usb_serial
*serial
);
52 static int belkin_sa_open(struct tty_struct
*tty
,
53 struct usb_serial_port
*port
);
54 static void belkin_sa_close(struct usb_serial_port
*port
);
55 static void belkin_sa_read_int_callback(struct urb
*urb
);
56 static void belkin_sa_process_read_urb(struct urb
*urb
);
57 static void belkin_sa_set_termios(struct tty_struct
*tty
,
58 struct usb_serial_port
*port
, struct ktermios
* old
);
59 static void belkin_sa_break_ctl(struct tty_struct
*tty
, int break_state
);
60 static int belkin_sa_tiocmget(struct tty_struct
*tty
);
61 static int belkin_sa_tiocmset(struct tty_struct
*tty
,
62 unsigned int set
, unsigned int clear
);
65 static const struct usb_device_id id_table_combined
[] = {
66 { 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
) },
72 { } /* Terminating entry */
74 MODULE_DEVICE_TABLE(usb
, id_table_combined
);
76 static struct usb_driver belkin_driver
= {
78 .probe
= usb_serial_probe
,
79 .disconnect
= usb_serial_disconnect
,
80 .id_table
= id_table_combined
,
84 /* All of the device info needed for the serial converters */
85 static struct usb_serial_driver belkin_device
= {
90 .description
= "Belkin / Peracom / GoHubs USB Serial Adapter",
91 .usb_driver
= &belkin_driver
,
92 .id_table
= id_table_combined
,
94 .open
= belkin_sa_open
,
95 .close
= belkin_sa_close
,
96 .read_int_callback
= belkin_sa_read_int_callback
,
97 .process_read_urb
= belkin_sa_process_read_urb
,
98 .set_termios
= belkin_sa_set_termios
,
99 .break_ctl
= belkin_sa_break_ctl
,
100 .tiocmget
= belkin_sa_tiocmget
,
101 .tiocmset
= belkin_sa_tiocmset
,
102 .attach
= belkin_sa_startup
,
103 .release
= belkin_sa_release
,
106 struct belkin_sa_private
{
108 unsigned long control_state
;
109 unsigned char last_lsr
;
110 unsigned char last_msr
;
111 int bad_flow_control
;
116 * ***************************************************************************
117 * Belkin USB Serial Adapter F5U103 specific driver functions
118 * ***************************************************************************
121 #define WDR_TIMEOUT 5000 /* default urb timeout */
123 /* assumes that struct usb_serial *serial is available */
124 #define BSA_USB_CMD(c, v) usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), \
125 (c), BELKIN_SA_SET_REQUEST_TYPE, \
126 (v), 0, NULL, 0, WDR_TIMEOUT)
128 /* do some startup allocations not currently performed by usb_serial_probe() */
129 static int belkin_sa_startup(struct usb_serial
*serial
)
131 struct usb_device
*dev
= serial
->dev
;
132 struct belkin_sa_private
*priv
;
134 /* allocate the private data structure */
135 priv
= kmalloc(sizeof(struct belkin_sa_private
), GFP_KERNEL
);
137 return -1; /* error */
138 /* set initial values for control structures */
139 spin_lock_init(&priv
->lock
);
140 priv
->control_state
= 0;
143 /* see comments at top of file */
144 priv
->bad_flow_control
=
145 (le16_to_cpu(dev
->descriptor
.bcdDevice
) <= 0x0206) ? 1 : 0;
146 dev_info(&dev
->dev
, "bcdDevice: %04x, bfc: %d\n",
147 le16_to_cpu(dev
->descriptor
.bcdDevice
),
148 priv
->bad_flow_control
);
150 init_waitqueue_head(&serial
->port
[0]->write_wait
);
151 usb_set_serial_port_data(serial
->port
[0], priv
);
156 static void belkin_sa_release(struct usb_serial
*serial
)
162 for (i
= 0; i
< serial
->num_ports
; ++i
)
163 kfree(usb_get_serial_port_data(serial
->port
[i
]));
166 static int belkin_sa_open(struct tty_struct
*tty
,
167 struct usb_serial_port
*port
)
171 dbg("%s port %d", __func__
, port
->number
);
173 retval
= usb_submit_urb(port
->interrupt_in_urb
, GFP_KERNEL
);
175 dev_err(&port
->dev
, "usb_submit_urb(read int) failed\n");
179 retval
= usb_serial_generic_open(tty
, port
);
181 usb_kill_urb(port
->interrupt_in_urb
);
186 static void belkin_sa_close(struct usb_serial_port
*port
)
188 dbg("%s port %d", __func__
, port
->number
);
190 usb_serial_generic_close(port
);
191 usb_kill_urb(port
->interrupt_in_urb
);
194 static void belkin_sa_read_int_callback(struct urb
*urb
)
196 struct usb_serial_port
*port
= urb
->context
;
197 struct belkin_sa_private
*priv
;
198 unsigned char *data
= urb
->transfer_buffer
;
200 int status
= urb
->status
;
210 /* this urb is terminated, clean up */
211 dbg("%s - urb shutting down with status: %d",
215 dbg("%s - nonzero urb status received: %d",
220 usb_serial_debug_data(debug
, &port
->dev
, __func__
,
221 urb
->actual_length
, data
);
223 /* Handle known interrupt data */
224 /* ignore data[0] and data[1] */
226 priv
= usb_get_serial_port_data(port
);
227 spin_lock_irqsave(&priv
->lock
, flags
);
228 priv
->last_msr
= data
[BELKIN_SA_MSR_INDEX
];
230 /* Record Control Line states */
231 if (priv
->last_msr
& BELKIN_SA_MSR_DSR
)
232 priv
->control_state
|= TIOCM_DSR
;
234 priv
->control_state
&= ~TIOCM_DSR
;
236 if (priv
->last_msr
& BELKIN_SA_MSR_CTS
)
237 priv
->control_state
|= TIOCM_CTS
;
239 priv
->control_state
&= ~TIOCM_CTS
;
241 if (priv
->last_msr
& BELKIN_SA_MSR_RI
)
242 priv
->control_state
|= TIOCM_RI
;
244 priv
->control_state
&= ~TIOCM_RI
;
246 if (priv
->last_msr
& BELKIN_SA_MSR_CD
)
247 priv
->control_state
|= TIOCM_CD
;
249 priv
->control_state
&= ~TIOCM_CD
;
251 priv
->last_lsr
= data
[BELKIN_SA_LSR_INDEX
];
252 spin_unlock_irqrestore(&priv
->lock
, flags
);
254 retval
= usb_submit_urb(urb
, GFP_ATOMIC
);
256 dev_err(&port
->dev
, "%s - usb_submit_urb failed with "
257 "result %d\n", __func__
, retval
);
260 static void belkin_sa_process_read_urb(struct urb
*urb
)
262 struct usb_serial_port
*port
= urb
->context
;
263 struct belkin_sa_private
*priv
= usb_get_serial_port_data(port
);
264 struct tty_struct
*tty
;
265 unsigned char *data
= urb
->transfer_buffer
;
267 unsigned char status
;
270 /* Update line status */
271 tty_flag
= TTY_NORMAL
;
273 spin_lock_irqsave(&priv
->lock
, flags
);
274 status
= priv
->last_lsr
;
275 priv
->last_lsr
&= ~BELKIN_SA_LSR_ERR
;
276 spin_unlock_irqrestore(&priv
->lock
, flags
);
278 if (!urb
->actual_length
)
281 tty
= tty_port_tty_get(&port
->port
);
285 if (status
& BELKIN_SA_LSR_ERR
) {
286 /* Break takes precedence over parity, which takes precedence
287 * over framing errors. */
288 if (status
& BELKIN_SA_LSR_BI
)
289 tty_flag
= TTY_BREAK
;
290 else if (status
& BELKIN_SA_LSR_PE
)
291 tty_flag
= TTY_PARITY
;
292 else if (status
& BELKIN_SA_LSR_FE
)
293 tty_flag
= TTY_FRAME
;
294 dev_dbg(&port
->dev
, "tty_flag = %d\n", tty_flag
);
296 /* Overrun is special, not associated with a char. */
297 if (status
& BELKIN_SA_LSR_OE
)
298 tty_insert_flip_char(tty
, 0, TTY_OVERRUN
);
301 tty_insert_flip_string_fixed_flag(tty
, data
, tty_flag
,
303 tty_flip_buffer_push(tty
);
307 static void belkin_sa_set_termios(struct tty_struct
*tty
,
308 struct usb_serial_port
*port
, struct ktermios
*old_termios
)
310 struct usb_serial
*serial
= port
->serial
;
311 struct belkin_sa_private
*priv
= usb_get_serial_port_data(port
);
314 unsigned int old_iflag
= 0;
315 unsigned int old_cflag
= 0;
316 __u16 urb_value
= 0; /* Will hold the new flags */
318 unsigned long control_state
;
319 int bad_flow_control
;
321 struct ktermios
*termios
= tty
->termios
;
323 iflag
= termios
->c_iflag
;
324 cflag
= termios
->c_cflag
;
326 termios
->c_cflag
&= ~CMSPAR
;
328 /* get a local copy of the current port settings */
329 spin_lock_irqsave(&priv
->lock
, flags
);
330 control_state
= priv
->control_state
;
331 bad_flow_control
= priv
->bad_flow_control
;
332 spin_unlock_irqrestore(&priv
->lock
, flags
);
334 old_iflag
= old_termios
->c_iflag
;
335 old_cflag
= old_termios
->c_cflag
;
337 /* Set the baud rate */
338 if ((cflag
& CBAUD
) != (old_cflag
& CBAUD
)) {
339 /* reassert DTR and (maybe) RTS on transition from B0 */
340 if ((old_cflag
& CBAUD
) == B0
) {
341 control_state
|= (TIOCM_DTR
|TIOCM_RTS
);
342 if (BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST
, 1) < 0)
343 dev_err(&port
->dev
, "Set DTR error\n");
344 /* don't set RTS if using hardware flow control */
345 if (!(old_cflag
& CRTSCTS
))
346 if (BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST
348 dev_err(&port
->dev
, "Set RTS error\n");
352 baud
= tty_get_baud_rate(tty
);
354 urb_value
= BELKIN_SA_BAUD(baud
);
355 /* Clip to maximum speed */
358 /* Turn it back into a resulting real baud rate */
359 baud
= BELKIN_SA_BAUD(urb_value
);
361 /* Report the actual baud rate back to the caller */
362 tty_encode_baud_rate(tty
, baud
, baud
);
363 if (BSA_USB_CMD(BELKIN_SA_SET_BAUDRATE_REQUEST
, urb_value
) < 0)
364 dev_err(&port
->dev
, "Set baudrate error\n");
366 /* Disable flow control */
367 if (BSA_USB_CMD(BELKIN_SA_SET_FLOW_CTRL_REQUEST
,
368 BELKIN_SA_FLOW_NONE
) < 0)
369 dev_err(&port
->dev
, "Disable flowcontrol error\n");
370 /* Drop RTS and DTR */
371 control_state
&= ~(TIOCM_DTR
| TIOCM_RTS
);
372 if (BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST
, 0) < 0)
373 dev_err(&port
->dev
, "DTR LOW error\n");
374 if (BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST
, 0) < 0)
375 dev_err(&port
->dev
, "RTS LOW error\n");
379 if ((cflag
^ old_cflag
) & (PARENB
| PARODD
)) {
381 urb_value
= (cflag
& PARODD
) ? BELKIN_SA_PARITY_ODD
382 : BELKIN_SA_PARITY_EVEN
;
384 urb_value
= BELKIN_SA_PARITY_NONE
;
385 if (BSA_USB_CMD(BELKIN_SA_SET_PARITY_REQUEST
, urb_value
) < 0)
386 dev_err(&port
->dev
, "Set parity error\n");
389 /* set the number of data bits */
390 if ((cflag
& CSIZE
) != (old_cflag
& CSIZE
)) {
391 switch (cflag
& CSIZE
) {
393 urb_value
= BELKIN_SA_DATA_BITS(5);
396 urb_value
= BELKIN_SA_DATA_BITS(6);
399 urb_value
= BELKIN_SA_DATA_BITS(7);
402 urb_value
= BELKIN_SA_DATA_BITS(8);
404 default: dbg("CSIZE was not CS5-CS8, using default of 8");
405 urb_value
= BELKIN_SA_DATA_BITS(8);
408 if (BSA_USB_CMD(BELKIN_SA_SET_DATA_BITS_REQUEST
, urb_value
) < 0)
409 dev_err(&port
->dev
, "Set data bits error\n");
412 /* set the number of stop bits */
413 if ((cflag
& CSTOPB
) != (old_cflag
& CSTOPB
)) {
414 urb_value
= (cflag
& CSTOPB
) ? BELKIN_SA_STOP_BITS(2)
415 : BELKIN_SA_STOP_BITS(1);
416 if (BSA_USB_CMD(BELKIN_SA_SET_STOP_BITS_REQUEST
,
418 dev_err(&port
->dev
, "Set stop bits error\n");
421 /* Set flow control */
422 if (((iflag
^ old_iflag
) & (IXOFF
| IXON
)) ||
423 ((cflag
^ old_cflag
) & CRTSCTS
)) {
425 if ((iflag
& IXOFF
) || (iflag
& IXON
))
426 urb_value
|= (BELKIN_SA_FLOW_OXON
| BELKIN_SA_FLOW_IXON
);
428 urb_value
&= ~(BELKIN_SA_FLOW_OXON
| BELKIN_SA_FLOW_IXON
);
431 urb_value
|= (BELKIN_SA_FLOW_OCTS
| BELKIN_SA_FLOW_IRTS
);
433 urb_value
&= ~(BELKIN_SA_FLOW_OCTS
| BELKIN_SA_FLOW_IRTS
);
435 if (bad_flow_control
)
436 urb_value
&= ~(BELKIN_SA_FLOW_IRTS
);
438 if (BSA_USB_CMD(BELKIN_SA_SET_FLOW_CTRL_REQUEST
, urb_value
) < 0)
439 dev_err(&port
->dev
, "Set flow control error\n");
442 /* save off the modified port settings */
443 spin_lock_irqsave(&priv
->lock
, flags
);
444 priv
->control_state
= control_state
;
445 spin_unlock_irqrestore(&priv
->lock
, flags
);
448 static void belkin_sa_break_ctl(struct tty_struct
*tty
, int break_state
)
450 struct usb_serial_port
*port
= tty
->driver_data
;
451 struct usb_serial
*serial
= port
->serial
;
453 if (BSA_USB_CMD(BELKIN_SA_SET_BREAK_REQUEST
, break_state
? 1 : 0) < 0)
454 dev_err(&port
->dev
, "Set break_ctl %d\n", break_state
);
457 static int belkin_sa_tiocmget(struct tty_struct
*tty
)
459 struct usb_serial_port
*port
= tty
->driver_data
;
460 struct belkin_sa_private
*priv
= usb_get_serial_port_data(port
);
461 unsigned long control_state
;
466 spin_lock_irqsave(&priv
->lock
, flags
);
467 control_state
= priv
->control_state
;
468 spin_unlock_irqrestore(&priv
->lock
, flags
);
470 return control_state
;
473 static int belkin_sa_tiocmset(struct tty_struct
*tty
,
474 unsigned int set
, unsigned int clear
)
476 struct usb_serial_port
*port
= tty
->driver_data
;
477 struct usb_serial
*serial
= port
->serial
;
478 struct belkin_sa_private
*priv
= usb_get_serial_port_data(port
);
479 unsigned long control_state
;
487 spin_lock_irqsave(&priv
->lock
, flags
);
488 control_state
= priv
->control_state
;
490 if (set
& TIOCM_RTS
) {
491 control_state
|= TIOCM_RTS
;
494 if (set
& TIOCM_DTR
) {
495 control_state
|= TIOCM_DTR
;
498 if (clear
& TIOCM_RTS
) {
499 control_state
&= ~TIOCM_RTS
;
502 if (clear
& TIOCM_DTR
) {
503 control_state
&= ~TIOCM_DTR
;
507 priv
->control_state
= control_state
;
508 spin_unlock_irqrestore(&priv
->lock
, flags
);
510 retval
= BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST
, rts
);
512 dev_err(&port
->dev
, "Set RTS error %d\n", retval
);
516 retval
= BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST
, dtr
);
518 dev_err(&port
->dev
, "Set DTR error %d\n", retval
);
526 static int __init
belkin_sa_init(void)
529 retval
= usb_serial_register(&belkin_device
);
531 goto failed_usb_serial_register
;
532 retval
= usb_register(&belkin_driver
);
534 goto failed_usb_register
;
535 printk(KERN_INFO KBUILD_MODNAME
": " DRIVER_VERSION
":"
539 usb_serial_deregister(&belkin_device
);
540 failed_usb_serial_register
:
544 static void __exit
belkin_sa_exit (void)
546 usb_deregister(&belkin_driver
);
547 usb_serial_deregister(&belkin_device
);
551 module_init(belkin_sa_init
);
552 module_exit(belkin_sa_exit
);
554 MODULE_AUTHOR(DRIVER_AUTHOR
);
555 MODULE_DESCRIPTION(DRIVER_DESC
);
556 MODULE_VERSION(DRIVER_VERSION
);
557 MODULE_LICENSE("GPL");
559 module_param(debug
, bool, S_IRUGO
| S_IWUSR
);
560 MODULE_PARM_DESC(debug
, "Debug enabled or not");