[PATCH] USB: kfree cleanup for drivers/usb/* - no need to check for NULL
[linux-2.6.22.y-op.git] / drivers / usb / serial / belkin_sa.c
blobabb1b2c543bbe11a7509857599024c8c7fdc3b6a
1 /*
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)
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.
11 * 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.
16 * See Documentation/usb/usb-serial.txt for more information on using this driver
18 * TODO:
19 * -- Add true modem contol line query capability. Currently we track the
20 * states reported by the interrupt and the states we request.
21 * -- Add error reporting back to application for UART error conditions.
22 * Just point me at how to implement this and I'll do it. I've put the
23 * framework in, but haven't analyzed the "tty_flip" interface yet.
24 * -- Add support for flush commands
25 * -- Add everything that is missing :)
27 * 27-Nov-2001 gkh
28 * compressed all the differnent device entries into 1.
30 * 30-May-2001 gkh
31 * switched from using spinlock to a semaphore, which fixes lots of problems.
33 * 08-Apr-2001 gb
34 * - Identify version on module load.
36 * 12-Mar-2001 gkh
37 * - Added support for the GoHubs GO-COM232 device which is the same as the
38 * Peracom device.
40 * 06-Nov-2000 gkh
41 * - Added support for the old Belkin and Peracom devices.
42 * - Made the port able to be opened multiple times.
43 * - Added some defaults incase the line settings are things these devices
44 * can't support.
46 * 18-Oct-2000 William Greathouse
47 * Released into the wild (linux-usb-devel)
49 * 17-Oct-2000 William Greathouse
50 * Add code to recognize firmware version and set hardware flow control
51 * appropriately. Belkin states that firmware prior to 3.05 does not
52 * operate correctly in hardware handshake mode. I have verified this
53 * on firmware 2.05 -- for both RTS and DTR input flow control, the control
54 * line is not reset. The test performed by the Belkin Win* driver is
55 * to enable hardware flow control for firmware 2.06 or greater and
56 * for 1.00 or prior. I am only enabling for 2.06 or greater.
58 * 12-Oct-2000 William Greathouse
59 * First cut at supporting Belkin USB Serial Adapter F5U103
60 * I did not have a copy of the original work to support this
61 * adapter, so pardon any stupid mistakes. All of the information
62 * I am using to write this driver was acquired by using a modified
63 * UsbSnoop on Windows2000 and from examining the other USB drivers.
66 #include <linux/config.h>
67 #include <linux/kernel.h>
68 #include <linux/errno.h>
69 #include <linux/init.h>
70 #include <linux/slab.h>
71 #include <linux/tty.h>
72 #include <linux/tty_driver.h>
73 #include <linux/tty_flip.h>
74 #include <linux/module.h>
75 #include <linux/spinlock.h>
76 #include <asm/uaccess.h>
77 #include <linux/usb.h>
78 #include "usb-serial.h"
79 #include "belkin_sa.h"
81 static int debug;
84 * Version Information
86 #define DRIVER_VERSION "v1.2"
87 #define DRIVER_AUTHOR "William Greathouse <wgreathouse@smva.com>"
88 #define DRIVER_DESC "USB Belkin Serial converter driver"
90 /* function prototypes for a Belkin USB Serial Adapter F5U103 */
91 static int belkin_sa_startup (struct usb_serial *serial);
92 static void belkin_sa_shutdown (struct usb_serial *serial);
93 static int belkin_sa_open (struct usb_serial_port *port, struct file *filp);
94 static void belkin_sa_close (struct usb_serial_port *port, struct file *filp);
95 static void belkin_sa_read_int_callback (struct urb *urb, struct pt_regs *regs);
96 static void belkin_sa_set_termios (struct usb_serial_port *port, struct termios * old);
97 static int belkin_sa_ioctl (struct usb_serial_port *port, struct file * file, unsigned int cmd, unsigned long arg);
98 static void belkin_sa_break_ctl (struct usb_serial_port *port, int break_state );
99 static int belkin_sa_tiocmget (struct usb_serial_port *port, struct file *file);
100 static int belkin_sa_tiocmset (struct usb_serial_port *port, struct file *file, unsigned int set, unsigned int clear);
103 static struct usb_device_id id_table_combined [] = {
104 { USB_DEVICE(BELKIN_SA_VID, BELKIN_SA_PID) },
105 { USB_DEVICE(BELKIN_OLD_VID, BELKIN_OLD_PID) },
106 { USB_DEVICE(PERACOM_VID, PERACOM_PID) },
107 { USB_DEVICE(GOHUBS_VID, GOHUBS_PID) },
108 { USB_DEVICE(GOHUBS_VID, HANDYLINK_PID) },
109 { USB_DEVICE(BELKIN_DOCKSTATION_VID, BELKIN_DOCKSTATION_PID) },
110 { } /* Terminating entry */
113 MODULE_DEVICE_TABLE (usb, id_table_combined);
115 static struct usb_driver belkin_driver = {
116 .owner = THIS_MODULE,
117 .name = "belkin",
118 .probe = usb_serial_probe,
119 .disconnect = usb_serial_disconnect,
120 .id_table = id_table_combined,
123 /* All of the device info needed for the serial converters */
124 static struct usb_serial_device_type belkin_device = {
125 .owner = THIS_MODULE,
126 .name = "Belkin / Peracom / GoHubs USB Serial Adapter",
127 .short_name = "belkin",
128 .id_table = id_table_combined,
129 .num_interrupt_in = 1,
130 .num_bulk_in = 1,
131 .num_bulk_out = 1,
132 .num_ports = 1,
133 .open = belkin_sa_open,
134 .close = belkin_sa_close,
135 .read_int_callback = belkin_sa_read_int_callback, /* How we get the status info */
136 .ioctl = belkin_sa_ioctl,
137 .set_termios = belkin_sa_set_termios,
138 .break_ctl = belkin_sa_break_ctl,
139 .tiocmget = belkin_sa_tiocmget,
140 .tiocmset = belkin_sa_tiocmset,
141 .attach = belkin_sa_startup,
142 .shutdown = belkin_sa_shutdown,
146 struct belkin_sa_private {
147 spinlock_t lock;
148 unsigned long control_state;
149 unsigned char last_lsr;
150 unsigned char last_msr;
151 int bad_flow_control;
156 * ***************************************************************************
157 * Belkin USB Serial Adapter F5U103 specific driver functions
158 * ***************************************************************************
161 #define WDR_TIMEOUT 5000 /* default urb timeout */
163 /* assumes that struct usb_serial *serial is available */
164 #define BSA_USB_CMD(c,v) usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), \
165 (c), BELKIN_SA_SET_REQUEST_TYPE, \
166 (v), 0, NULL, 0, WDR_TIMEOUT)
168 /* do some startup allocations not currently performed by usb_serial_probe() */
169 static int belkin_sa_startup (struct usb_serial *serial)
171 struct usb_device *dev = serial->dev;
172 struct belkin_sa_private *priv;
174 /* allocate the private data structure */
175 priv = kmalloc(sizeof(struct belkin_sa_private), GFP_KERNEL);
176 if (!priv)
177 return (-1); /* error */
178 /* set initial values for control structures */
179 spin_lock_init(&priv->lock);
180 priv->control_state = 0;
181 priv->last_lsr = 0;
182 priv->last_msr = 0;
183 /* see comments at top of file */
184 priv->bad_flow_control = (le16_to_cpu(dev->descriptor.bcdDevice) <= 0x0206) ? 1 : 0;
185 info("bcdDevice: %04x, bfc: %d", le16_to_cpu(dev->descriptor.bcdDevice), priv->bad_flow_control);
187 init_waitqueue_head(&serial->port[0]->write_wait);
188 usb_set_serial_port_data(serial->port[0], priv);
190 return (0);
194 static void belkin_sa_shutdown (struct usb_serial *serial)
196 struct belkin_sa_private *priv;
197 int i;
199 dbg ("%s", __FUNCTION__);
201 /* stop reads and writes on all ports */
202 for (i=0; i < serial->num_ports; ++i) {
203 /* My special items, the standard routines free my urbs */
204 priv = usb_get_serial_port_data(serial->port[i]);
205 kfree(priv);
210 static int belkin_sa_open (struct usb_serial_port *port, struct file *filp)
212 int retval = 0;
214 dbg("%s port %d", __FUNCTION__, port->number);
216 /*Start reading from the device*/
217 /* TODO: Look at possibility of submitting multiple URBs to device to
218 * enhance buffering. Win trace shows 16 initial read URBs.
220 port->read_urb->dev = port->serial->dev;
221 retval = usb_submit_urb(port->read_urb, GFP_KERNEL);
222 if (retval) {
223 err("usb_submit_urb(read bulk) failed");
224 goto exit;
227 port->interrupt_in_urb->dev = port->serial->dev;
228 retval = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
229 if (retval) {
230 usb_kill_urb(port->read_urb);
231 err(" usb_submit_urb(read int) failed");
234 exit:
235 return retval;
236 } /* belkin_sa_open */
239 static void belkin_sa_close (struct usb_serial_port *port, struct file *filp)
241 dbg("%s port %d", __FUNCTION__, port->number);
243 /* shutdown our bulk reads and writes */
244 usb_kill_urb(port->write_urb);
245 usb_kill_urb(port->read_urb);
246 usb_kill_urb(port->interrupt_in_urb);
247 } /* belkin_sa_close */
250 static void belkin_sa_read_int_callback (struct urb *urb, struct pt_regs *regs)
252 struct usb_serial_port *port = (struct usb_serial_port *)urb->context;
253 struct belkin_sa_private *priv;
254 unsigned char *data = urb->transfer_buffer;
255 int retval;
256 unsigned long flags;
258 switch (urb->status) {
259 case 0:
260 /* success */
261 break;
262 case -ECONNRESET:
263 case -ENOENT:
264 case -ESHUTDOWN:
265 /* this urb is terminated, clean up */
266 dbg("%s - urb shutting down with status: %d", __FUNCTION__, urb->status);
267 return;
268 default:
269 dbg("%s - nonzero urb status received: %d", __FUNCTION__, urb->status);
270 goto exit;
273 usb_serial_debug_data(debug, &port->dev, __FUNCTION__, urb->actual_length, data);
275 /* Handle known interrupt data */
276 /* ignore data[0] and data[1] */
278 priv = usb_get_serial_port_data(port);
279 spin_lock_irqsave(&priv->lock, flags);
280 priv->last_msr = data[BELKIN_SA_MSR_INDEX];
282 /* Record Control Line states */
283 if (priv->last_msr & BELKIN_SA_MSR_DSR)
284 priv->control_state |= TIOCM_DSR;
285 else
286 priv->control_state &= ~TIOCM_DSR;
288 if (priv->last_msr & BELKIN_SA_MSR_CTS)
289 priv->control_state |= TIOCM_CTS;
290 else
291 priv->control_state &= ~TIOCM_CTS;
293 if (priv->last_msr & BELKIN_SA_MSR_RI)
294 priv->control_state |= TIOCM_RI;
295 else
296 priv->control_state &= ~TIOCM_RI;
298 if (priv->last_msr & BELKIN_SA_MSR_CD)
299 priv->control_state |= TIOCM_CD;
300 else
301 priv->control_state &= ~TIOCM_CD;
303 /* Now to report any errors */
304 priv->last_lsr = data[BELKIN_SA_LSR_INDEX];
305 #if 0
307 * fill in the flip buffer here, but I do not know the relation
308 * to the current/next receive buffer or characters. I need
309 * to look in to this before committing any code.
311 if (priv->last_lsr & BELKIN_SA_LSR_ERR) {
312 tty = port->tty;
313 /* Overrun Error */
314 if (priv->last_lsr & BELKIN_SA_LSR_OE) {
316 /* Parity Error */
317 if (priv->last_lsr & BELKIN_SA_LSR_PE) {
319 /* Framing Error */
320 if (priv->last_lsr & BELKIN_SA_LSR_FE) {
322 /* Break Indicator */
323 if (priv->last_lsr & BELKIN_SA_LSR_BI) {
326 #endif
327 spin_unlock_irqrestore(&priv->lock, flags);
328 exit:
329 retval = usb_submit_urb (urb, GFP_ATOMIC);
330 if (retval)
331 err ("%s - usb_submit_urb failed with result %d",
332 __FUNCTION__, retval);
335 static void belkin_sa_set_termios (struct usb_serial_port *port, struct termios *old_termios)
337 struct usb_serial *serial = port->serial;
338 struct belkin_sa_private *priv = usb_get_serial_port_data(port);
339 unsigned int iflag;
340 unsigned int cflag;
341 unsigned int old_iflag = 0;
342 unsigned int old_cflag = 0;
343 __u16 urb_value = 0; /* Will hold the new flags */
344 unsigned long flags;
345 unsigned long control_state;
346 int bad_flow_control;
348 if ((!port->tty) || (!port->tty->termios)) {
349 dbg ("%s - no tty or termios structure", __FUNCTION__);
350 return;
353 iflag = port->tty->termios->c_iflag;
354 cflag = port->tty->termios->c_cflag;
356 /* get a local copy of the current port settings */
357 spin_lock_irqsave(&priv->lock, flags);
358 control_state = priv->control_state;
359 bad_flow_control = priv->bad_flow_control;
360 spin_unlock_irqrestore(&priv->lock, flags);
362 /* check that they really want us to change something */
363 if (old_termios) {
364 if ((cflag == old_termios->c_cflag) &&
365 (RELEVANT_IFLAG(port->tty->termios->c_iflag) == RELEVANT_IFLAG(old_termios->c_iflag))) {
366 dbg("%s - nothing to change...", __FUNCTION__);
367 return;
369 old_iflag = old_termios->c_iflag;
370 old_cflag = old_termios->c_cflag;
373 /* Set the baud rate */
374 if( (cflag&CBAUD) != (old_cflag&CBAUD) ) {
375 /* reassert DTR and (maybe) RTS on transition from B0 */
376 if( (old_cflag&CBAUD) == B0 ) {
377 control_state |= (TIOCM_DTR|TIOCM_RTS);
378 if (BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST, 1) < 0)
379 err("Set DTR error");
380 /* don't set RTS if using hardware flow control */
381 if (!(old_cflag&CRTSCTS) )
382 if (BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST, 1) < 0)
383 err("Set RTS error");
386 switch(cflag & CBAUD) {
387 case B0: /* handled below */ break;
388 case B300: urb_value = BELKIN_SA_BAUD(300); break;
389 case B600: urb_value = BELKIN_SA_BAUD(600); break;
390 case B1200: urb_value = BELKIN_SA_BAUD(1200); break;
391 case B2400: urb_value = BELKIN_SA_BAUD(2400); break;
392 case B4800: urb_value = BELKIN_SA_BAUD(4800); break;
393 case B9600: urb_value = BELKIN_SA_BAUD(9600); break;
394 case B19200: urb_value = BELKIN_SA_BAUD(19200); break;
395 case B38400: urb_value = BELKIN_SA_BAUD(38400); break;
396 case B57600: urb_value = BELKIN_SA_BAUD(57600); break;
397 case B115200: urb_value = BELKIN_SA_BAUD(115200); break;
398 case B230400: urb_value = BELKIN_SA_BAUD(230400); break;
399 default: err("BELKIN USB Serial Adapter: unsupported baudrate request, using default of 9600");
400 urb_value = BELKIN_SA_BAUD(9600); break;
402 if ((cflag & CBAUD) != B0 ) {
403 if (BSA_USB_CMD(BELKIN_SA_SET_BAUDRATE_REQUEST, urb_value) < 0)
404 err("Set baudrate error");
405 } else {
406 /* Disable flow control */
407 if (BSA_USB_CMD(BELKIN_SA_SET_FLOW_CTRL_REQUEST, BELKIN_SA_FLOW_NONE) < 0)
408 err("Disable flowcontrol error");
410 /* Drop RTS and DTR */
411 control_state &= ~(TIOCM_DTR | TIOCM_RTS);
412 if (BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST, 0) < 0)
413 err("DTR LOW error");
414 if (BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST, 0) < 0)
415 err("RTS LOW error");
419 /* set the parity */
420 if( (cflag&(PARENB|PARODD)) != (old_cflag&(PARENB|PARODD)) ) {
421 if (cflag & PARENB)
422 urb_value = (cflag & PARODD) ? BELKIN_SA_PARITY_ODD : BELKIN_SA_PARITY_EVEN;
423 else
424 urb_value = BELKIN_SA_PARITY_NONE;
425 if (BSA_USB_CMD(BELKIN_SA_SET_PARITY_REQUEST, urb_value) < 0)
426 err("Set parity error");
429 /* set the number of data bits */
430 if( (cflag&CSIZE) != (old_cflag&CSIZE) ) {
431 switch (cflag & CSIZE) {
432 case CS5: urb_value = BELKIN_SA_DATA_BITS(5); break;
433 case CS6: urb_value = BELKIN_SA_DATA_BITS(6); break;
434 case CS7: urb_value = BELKIN_SA_DATA_BITS(7); break;
435 case CS8: urb_value = BELKIN_SA_DATA_BITS(8); break;
436 default: err("CSIZE was not CS5-CS8, using default of 8");
437 urb_value = BELKIN_SA_DATA_BITS(8);
438 break;
440 if (BSA_USB_CMD(BELKIN_SA_SET_DATA_BITS_REQUEST, urb_value) < 0)
441 err("Set data bits error");
444 /* set the number of stop bits */
445 if( (cflag&CSTOPB) != (old_cflag&CSTOPB) ) {
446 urb_value = (cflag & CSTOPB) ? BELKIN_SA_STOP_BITS(2) : BELKIN_SA_STOP_BITS(1);
447 if (BSA_USB_CMD(BELKIN_SA_SET_STOP_BITS_REQUEST, urb_value) < 0)
448 err("Set stop bits error");
451 /* Set flow control */
452 if( (iflag&IXOFF) != (old_iflag&IXOFF)
453 || (iflag&IXON) != (old_iflag&IXON)
454 || (cflag&CRTSCTS) != (old_cflag&CRTSCTS) ) {
455 urb_value = 0;
456 if ((iflag & IXOFF) || (iflag & IXON))
457 urb_value |= (BELKIN_SA_FLOW_OXON | BELKIN_SA_FLOW_IXON);
458 else
459 urb_value &= ~(BELKIN_SA_FLOW_OXON | BELKIN_SA_FLOW_IXON);
461 if (cflag & CRTSCTS)
462 urb_value |= (BELKIN_SA_FLOW_OCTS | BELKIN_SA_FLOW_IRTS);
463 else
464 urb_value &= ~(BELKIN_SA_FLOW_OCTS | BELKIN_SA_FLOW_IRTS);
466 if (bad_flow_control)
467 urb_value &= ~(BELKIN_SA_FLOW_IRTS);
469 if (BSA_USB_CMD(BELKIN_SA_SET_FLOW_CTRL_REQUEST, urb_value) < 0)
470 err("Set flow control error");
473 /* save off the modified port settings */
474 spin_lock_irqsave(&priv->lock, flags);
475 priv->control_state = control_state;
476 spin_unlock_irqrestore(&priv->lock, flags);
477 } /* belkin_sa_set_termios */
480 static void belkin_sa_break_ctl( struct usb_serial_port *port, int break_state )
482 struct usb_serial *serial = port->serial;
484 if (BSA_USB_CMD(BELKIN_SA_SET_BREAK_REQUEST, break_state ? 1 : 0) < 0)
485 err("Set break_ctl %d", break_state);
489 static int belkin_sa_tiocmget (struct usb_serial_port *port, struct file *file)
491 struct belkin_sa_private *priv = usb_get_serial_port_data(port);
492 unsigned long control_state;
493 unsigned long flags;
495 dbg("%s", __FUNCTION__);
497 spin_lock_irqsave(&priv->lock, flags);
498 control_state = priv->control_state;
499 spin_unlock_irqrestore(&priv->lock, flags);
501 return control_state;
505 static int belkin_sa_tiocmset (struct usb_serial_port *port, struct file *file,
506 unsigned int set, unsigned int clear)
508 struct usb_serial *serial = port->serial;
509 struct belkin_sa_private *priv = usb_get_serial_port_data(port);
510 unsigned long control_state;
511 unsigned long flags;
512 int retval;
513 int rts = 0;
514 int dtr = 0;
516 dbg("%s", __FUNCTION__);
518 spin_lock_irqsave(&priv->lock, flags);
519 control_state = priv->control_state;
521 if (set & TIOCM_RTS) {
522 control_state |= TIOCM_RTS;
523 rts = 1;
525 if (set & TIOCM_DTR) {
526 control_state |= TIOCM_DTR;
527 dtr = 1;
529 if (clear & TIOCM_RTS) {
530 control_state &= ~TIOCM_RTS;
531 rts = 0;
533 if (clear & TIOCM_DTR) {
534 control_state &= ~TIOCM_DTR;
535 dtr = 0;
538 priv->control_state = control_state;
539 spin_unlock_irqrestore(&priv->lock, flags);
541 retval = BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST, rts);
542 if (retval < 0) {
543 err("Set RTS error %d", retval);
544 goto exit;
547 retval = BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST, dtr);
548 if (retval < 0) {
549 err("Set DTR error %d", retval);
550 goto exit;
552 exit:
553 return retval;
557 static int belkin_sa_ioctl (struct usb_serial_port *port, struct file * file, unsigned int cmd, unsigned long arg)
559 switch (cmd) {
560 case TIOCMIWAIT:
561 /* wait for any of the 4 modem inputs (DCD,RI,DSR,CTS)*/
562 /* TODO */
563 return( 0 );
565 case TIOCGICOUNT:
566 /* return count of modemline transitions */
567 /* TODO */
568 return 0;
570 default:
571 dbg("belkin_sa_ioctl arg not supported - 0x%04x",cmd);
572 return(-ENOIOCTLCMD);
573 break;
575 return 0;
576 } /* belkin_sa_ioctl */
579 static int __init belkin_sa_init (void)
581 int retval;
582 retval = usb_serial_register(&belkin_device);
583 if (retval)
584 goto failed_usb_serial_register;
585 retval = usb_register(&belkin_driver);
586 if (retval)
587 goto failed_usb_register;
588 info(DRIVER_DESC " " DRIVER_VERSION);
589 return 0;
590 failed_usb_register:
591 usb_serial_deregister(&belkin_device);
592 failed_usb_serial_register:
593 return retval;
597 static void __exit belkin_sa_exit (void)
599 usb_deregister (&belkin_driver);
600 usb_serial_deregister (&belkin_device);
604 module_init (belkin_sa_init);
605 module_exit (belkin_sa_exit);
607 MODULE_AUTHOR( DRIVER_AUTHOR );
608 MODULE_DESCRIPTION( DRIVER_DESC );
609 MODULE_VERSION( DRIVER_VERSION );
610 MODULE_LICENSE("GPL");
612 module_param(debug, bool, S_IRUGO | S_IWUSR);
613 MODULE_PARM_DESC(debug, "Debug enabled or not");