Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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) |
Johan Hovold | 2afd8287 | 2010-05-15 17:53:53 +0200 | [diff] [blame] | 6 | * Copyright (C) 2010 Johan Hovold (jhovold@gmail.com) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * |
| 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 Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 11 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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. |
| 16 | * |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 17 | * See Documentation/usb/usb-serial.txt for more information on using this |
| 18 | * driver |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | * |
| 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. |
| 23 | * -- Add error reporting back to application for UART error conditions. |
| 24 | * Just point me at how to implement this and I'll do it. I've put the |
| 25 | * framework in, but haven't analyzed the "tty_flip" interface yet. |
| 26 | * -- Add support for flush commands |
| 27 | * -- Add everything that is missing :) |
| 28 | * |
| 29 | * 27-Nov-2001 gkh |
| 30 | * compressed all the differnent device entries into 1. |
| 31 | * |
| 32 | * 30-May-2001 gkh |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 33 | * switched from using spinlock to a semaphore, which fixes lots of |
| 34 | * problems. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | * |
| 36 | * 08-Apr-2001 gb |
| 37 | * - Identify version on module load. |
| 38 | * |
| 39 | * 12-Mar-2001 gkh |
| 40 | * - Added support for the GoHubs GO-COM232 device which is the same as the |
| 41 | * Peracom device. |
| 42 | * |
| 43 | * 06-Nov-2000 gkh |
| 44 | * - Added support for the old Belkin and Peracom devices. |
| 45 | * - Made the port able to be opened multiple times. |
| 46 | * - Added some defaults incase the line settings are things these devices |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 47 | * can't support. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | * |
| 49 | * 18-Oct-2000 William Greathouse |
| 50 | * Released into the wild (linux-usb-devel) |
| 51 | * |
| 52 | * 17-Oct-2000 William Greathouse |
| 53 | * Add code to recognize firmware version and set hardware flow control |
| 54 | * appropriately. Belkin states that firmware prior to 3.05 does not |
| 55 | * operate correctly in hardware handshake mode. I have verified this |
| 56 | * on firmware 2.05 -- for both RTS and DTR input flow control, the control |
| 57 | * line is not reset. The test performed by the Belkin Win* driver is |
| 58 | * to enable hardware flow control for firmware 2.06 or greater and |
| 59 | * for 1.00 or prior. I am only enabling for 2.06 or greater. |
| 60 | * |
| 61 | * 12-Oct-2000 William Greathouse |
| 62 | * First cut at supporting Belkin USB Serial Adapter F5U103 |
| 63 | * I did not have a copy of the original work to support this |
| 64 | * adapter, so pardon any stupid mistakes. All of the information |
| 65 | * I am using to write this driver was acquired by using a modified |
| 66 | * UsbSnoop on Windows2000 and from examining the other USB drivers. |
| 67 | */ |
| 68 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | #include <linux/kernel.h> |
| 70 | #include <linux/errno.h> |
| 71 | #include <linux/init.h> |
| 72 | #include <linux/slab.h> |
| 73 | #include <linux/tty.h> |
| 74 | #include <linux/tty_driver.h> |
| 75 | #include <linux/tty_flip.h> |
| 76 | #include <linux/module.h> |
| 77 | #include <linux/spinlock.h> |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 78 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | #include <linux/usb.h> |
Greg Kroah-Hartman | a969888 | 2006-07-11 21:22:58 -0700 | [diff] [blame] | 80 | #include <linux/usb/serial.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | #include "belkin_sa.h" |
| 82 | |
| 83 | static int debug; |
| 84 | |
| 85 | /* |
| 86 | * Version Information |
| 87 | */ |
Johan Hovold | 2afd8287 | 2010-05-15 17:53:53 +0200 | [diff] [blame] | 88 | #define DRIVER_VERSION "v1.3" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | #define DRIVER_AUTHOR "William Greathouse <wgreathouse@smva.com>" |
| 90 | #define DRIVER_DESC "USB Belkin Serial converter driver" |
| 91 | |
| 92 | /* function prototypes for a Belkin USB Serial Adapter F5U103 */ |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 93 | static int belkin_sa_startup(struct usb_serial *serial); |
Alan Stern | f9c99bb | 2009-06-02 11:53:55 -0400 | [diff] [blame] | 94 | static void belkin_sa_release(struct usb_serial *serial); |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 95 | static int belkin_sa_open(struct tty_struct *tty, |
Alan Cox | a509a7e | 2009-09-19 13:13:26 -0700 | [diff] [blame] | 96 | struct usb_serial_port *port); |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 97 | static void belkin_sa_close(struct usb_serial_port *port); |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 98 | static void belkin_sa_read_int_callback(struct urb *urb); |
Johan Hovold | 2afd8287 | 2010-05-15 17:53:53 +0200 | [diff] [blame] | 99 | static void belkin_sa_process_read_urb(struct urb *urb); |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 100 | static void belkin_sa_set_termios(struct tty_struct *tty, |
| 101 | struct usb_serial_port *port, struct ktermios * old); |
| 102 | static void belkin_sa_break_ctl(struct tty_struct *tty, int break_state); |
Alan Cox | 60b33c1 | 2011-02-14 16:26:14 +0000 | [diff] [blame^] | 103 | static int belkin_sa_tiocmget(struct tty_struct *tty); |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 104 | static int belkin_sa_tiocmset(struct tty_struct *tty, struct file *file, |
| 105 | unsigned int set, unsigned int clear); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
| 107 | |
Németh Márton | 7d40d7e | 2010-01-10 15:34:24 +0100 | [diff] [blame] | 108 | static const struct usb_device_id id_table_combined[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | { USB_DEVICE(BELKIN_SA_VID, BELKIN_SA_PID) }, |
| 110 | { USB_DEVICE(BELKIN_OLD_VID, BELKIN_OLD_PID) }, |
| 111 | { USB_DEVICE(PERACOM_VID, PERACOM_PID) }, |
| 112 | { USB_DEVICE(GOHUBS_VID, GOHUBS_PID) }, |
| 113 | { USB_DEVICE(GOHUBS_VID, HANDYLINK_PID) }, |
| 114 | { USB_DEVICE(BELKIN_DOCKSTATION_VID, BELKIN_DOCKSTATION_PID) }, |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 115 | { } /* Terminating entry */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | }; |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 117 | MODULE_DEVICE_TABLE(usb, id_table_combined); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
| 119 | static struct usb_driver belkin_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | .name = "belkin", |
| 121 | .probe = usb_serial_probe, |
| 122 | .disconnect = usb_serial_disconnect, |
| 123 | .id_table = id_table_combined, |
Johan Hovold | 726ef42 | 2010-05-15 17:53:51 +0200 | [diff] [blame] | 124 | .no_dynamic_id = 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | }; |
| 126 | |
| 127 | /* All of the device info needed for the serial converters */ |
Greg Kroah-Hartman | ea65370 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 128 | static struct usb_serial_driver belkin_device = { |
Greg Kroah-Hartman | 18fcac3 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 129 | .driver = { |
| 130 | .owner = THIS_MODULE, |
Greg Kroah-Hartman | 269bda1 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 131 | .name = "belkin", |
Greg Kroah-Hartman | 18fcac3 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 132 | }, |
Greg Kroah-Hartman | 269bda1 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 133 | .description = "Belkin / Peracom / GoHubs USB Serial Adapter", |
Johannes Hölzl | d9b1b78 | 2006-12-17 21:50:24 +0100 | [diff] [blame] | 134 | .usb_driver = &belkin_driver, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | .id_table = id_table_combined, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | .num_ports = 1, |
| 137 | .open = belkin_sa_open, |
| 138 | .close = belkin_sa_close, |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 139 | .read_int_callback = belkin_sa_read_int_callback, |
Johan Hovold | 2afd8287 | 2010-05-15 17:53:53 +0200 | [diff] [blame] | 140 | .process_read_urb = belkin_sa_process_read_urb, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | .set_termios = belkin_sa_set_termios, |
| 142 | .break_ctl = belkin_sa_break_ctl, |
| 143 | .tiocmget = belkin_sa_tiocmget, |
| 144 | .tiocmset = belkin_sa_tiocmset, |
| 145 | .attach = belkin_sa_startup, |
Alan Stern | f9c99bb | 2009-06-02 11:53:55 -0400 | [diff] [blame] | 146 | .release = belkin_sa_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | }; |
| 148 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | struct 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 Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 167 | #define BSA_USB_CMD(c, v) usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | (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 Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 172 | static int belkin_sa_startup(struct usb_serial *serial) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | { |
| 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 Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 180 | return -1; /* error */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | /* 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 Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 187 | priv->bad_flow_control = |
| 188 | (le16_to_cpu(dev->descriptor.bcdDevice) <= 0x0206) ? 1 : 0; |
Greg Kroah-Hartman | c197a8d | 2008-08-18 13:21:04 -0700 | [diff] [blame] | 189 | dev_info(&dev->dev, "bcdDevice: %04x, bfc: %d\n", |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 190 | le16_to_cpu(dev->descriptor.bcdDevice), |
| 191 | priv->bad_flow_control); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | |
| 193 | init_waitqueue_head(&serial->port[0]->write_wait); |
| 194 | usb_set_serial_port_data(serial->port[0], priv); |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 195 | |
| 196 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | } |
| 198 | |
Alan Stern | f9c99bb | 2009-06-02 11:53:55 -0400 | [diff] [blame] | 199 | static void belkin_sa_release(struct usb_serial *serial) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | int i; |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 202 | |
| 203 | dbg("%s", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | |
Johan Hovold | 726ef42 | 2010-05-15 17:53:51 +0200 | [diff] [blame] | 205 | for (i = 0; i < serial->num_ports; ++i) |
| 206 | kfree(usb_get_serial_port_data(serial->port[i])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | } |
| 208 | |
Johan Hovold | 726ef42 | 2010-05-15 17:53:51 +0200 | [diff] [blame] | 209 | static int belkin_sa_open(struct tty_struct *tty, |
Alan Cox | a509a7e | 2009-09-19 13:13:26 -0700 | [diff] [blame] | 210 | struct usb_serial_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | { |
Johan Hovold | f2f8b7f | 2010-05-15 17:53:52 +0200 | [diff] [blame] | 212 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 214 | dbg("%s port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | retval = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL); |
| 217 | if (retval) { |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 218 | dev_err(&port->dev, "usb_submit_urb(read int) failed\n"); |
Johan Hovold | f2f8b7f | 2010-05-15 17:53:52 +0200 | [diff] [blame] | 219 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | } |
| 221 | |
Johan Hovold | f2f8b7f | 2010-05-15 17:53:52 +0200 | [diff] [blame] | 222 | retval = usb_serial_generic_open(tty, port); |
| 223 | if (retval) |
| 224 | usb_kill_urb(port->interrupt_in_urb); |
| 225 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | return retval; |
Johan Hovold | 726ef42 | 2010-05-15 17:53:51 +0200 | [diff] [blame] | 227 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 229 | static void belkin_sa_close(struct usb_serial_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 231 | dbg("%s port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | |
Johan Hovold | f26788d | 2010-03-17 23:00:45 +0100 | [diff] [blame] | 233 | usb_serial_generic_close(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | usb_kill_urb(port->interrupt_in_urb); |
Johan Hovold | 726ef42 | 2010-05-15 17:53:51 +0200 | [diff] [blame] | 235 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 237 | static void belkin_sa_read_int_callback(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | { |
Ming Lei | cdc9779 | 2008-02-24 18:41:47 +0800 | [diff] [blame] | 239 | struct usb_serial_port *port = urb->context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | struct belkin_sa_private *priv; |
| 241 | unsigned char *data = urb->transfer_buffer; |
| 242 | int retval; |
Greg Kroah-Hartman | f26aad2 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 243 | int status = urb->status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | unsigned long flags; |
| 245 | |
Greg Kroah-Hartman | f26aad2 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 246 | switch (status) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | case 0: |
| 248 | /* success */ |
| 249 | break; |
| 250 | case -ECONNRESET: |
| 251 | case -ENOENT: |
| 252 | case -ESHUTDOWN: |
| 253 | /* this urb is terminated, clean up */ |
Greg Kroah-Hartman | f26aad2 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 254 | dbg("%s - urb shutting down with status: %d", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 255 | __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | return; |
| 257 | default: |
Greg Kroah-Hartman | f26aad2 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 258 | dbg("%s - nonzero urb status received: %d", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 259 | __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | goto exit; |
| 261 | } |
| 262 | |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 263 | usb_serial_debug_data(debug, &port->dev, __func__, |
| 264 | urb->actual_length, data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | |
| 266 | /* Handle known interrupt data */ |
| 267 | /* ignore data[0] and data[1] */ |
| 268 | |
| 269 | priv = usb_get_serial_port_data(port); |
| 270 | spin_lock_irqsave(&priv->lock, flags); |
| 271 | priv->last_msr = data[BELKIN_SA_MSR_INDEX]; |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 272 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | /* Record Control Line states */ |
| 274 | if (priv->last_msr & BELKIN_SA_MSR_DSR) |
| 275 | priv->control_state |= TIOCM_DSR; |
| 276 | else |
| 277 | priv->control_state &= ~TIOCM_DSR; |
| 278 | |
| 279 | if (priv->last_msr & BELKIN_SA_MSR_CTS) |
| 280 | priv->control_state |= TIOCM_CTS; |
| 281 | else |
| 282 | priv->control_state &= ~TIOCM_CTS; |
| 283 | |
| 284 | if (priv->last_msr & BELKIN_SA_MSR_RI) |
| 285 | priv->control_state |= TIOCM_RI; |
| 286 | else |
| 287 | priv->control_state &= ~TIOCM_RI; |
| 288 | |
| 289 | if (priv->last_msr & BELKIN_SA_MSR_CD) |
| 290 | priv->control_state |= TIOCM_CD; |
| 291 | else |
| 292 | priv->control_state &= ~TIOCM_CD; |
| 293 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | priv->last_lsr = data[BELKIN_SA_LSR_INDEX]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | spin_unlock_irqrestore(&priv->lock, flags); |
| 296 | exit: |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 297 | retval = usb_submit_urb(urb, GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | if (retval) |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 299 | dev_err(&port->dev, "%s - usb_submit_urb failed with " |
| 300 | "result %d\n", __func__, retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | } |
| 302 | |
Johan Hovold | 2afd8287 | 2010-05-15 17:53:53 +0200 | [diff] [blame] | 303 | static void belkin_sa_process_read_urb(struct urb *urb) |
| 304 | { |
| 305 | struct usb_serial_port *port = urb->context; |
| 306 | struct belkin_sa_private *priv = usb_get_serial_port_data(port); |
| 307 | struct tty_struct *tty; |
| 308 | unsigned char *data = urb->transfer_buffer; |
| 309 | unsigned long flags; |
| 310 | unsigned char status; |
| 311 | char tty_flag; |
| 312 | |
| 313 | /* Update line status */ |
| 314 | tty_flag = TTY_NORMAL; |
| 315 | |
| 316 | spin_lock_irqsave(&priv->lock, flags); |
| 317 | status = priv->last_lsr; |
| 318 | priv->last_lsr &= ~BELKIN_SA_LSR_ERR; |
| 319 | spin_unlock_irqrestore(&priv->lock, flags); |
| 320 | |
| 321 | if (!urb->actual_length) |
| 322 | return; |
| 323 | |
| 324 | tty = tty_port_tty_get(&port->port); |
| 325 | if (!tty) |
| 326 | return; |
| 327 | |
| 328 | if (status & BELKIN_SA_LSR_ERR) { |
| 329 | /* Break takes precedence over parity, which takes precedence |
| 330 | * over framing errors. */ |
| 331 | if (status & BELKIN_SA_LSR_BI) |
| 332 | tty_flag = TTY_BREAK; |
| 333 | else if (status & BELKIN_SA_LSR_PE) |
| 334 | tty_flag = TTY_PARITY; |
| 335 | else if (status & BELKIN_SA_LSR_FE) |
| 336 | tty_flag = TTY_FRAME; |
| 337 | dev_dbg(&port->dev, "tty_flag = %d\n", tty_flag); |
| 338 | |
| 339 | /* Overrun is special, not associated with a char. */ |
| 340 | if (status & BELKIN_SA_LSR_OE) |
| 341 | tty_insert_flip_char(tty, 0, TTY_OVERRUN); |
| 342 | } |
| 343 | |
| 344 | tty_insert_flip_string_fixed_flag(tty, data, tty_flag, |
| 345 | urb->actual_length); |
| 346 | tty_flip_buffer_push(tty); |
| 347 | tty_kref_put(tty); |
| 348 | } |
| 349 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 350 | static void belkin_sa_set_termios(struct tty_struct *tty, |
| 351 | struct usb_serial_port *port, struct ktermios *old_termios) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | { |
| 353 | struct usb_serial *serial = port->serial; |
| 354 | struct belkin_sa_private *priv = usb_get_serial_port_data(port); |
| 355 | unsigned int iflag; |
| 356 | unsigned int cflag; |
| 357 | unsigned int old_iflag = 0; |
| 358 | unsigned int old_cflag = 0; |
| 359 | __u16 urb_value = 0; /* Will hold the new flags */ |
| 360 | unsigned long flags; |
| 361 | unsigned long control_state; |
| 362 | int bad_flow_control; |
Alan Cox | 9a8baec | 2007-06-22 14:40:18 +0100 | [diff] [blame] | 363 | speed_t baud; |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 364 | struct ktermios *termios = tty->termios; |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 365 | |
Alan Cox | 3ec466b | 2007-12-13 16:15:26 -0800 | [diff] [blame] | 366 | iflag = termios->c_iflag; |
| 367 | cflag = termios->c_cflag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | |
Alan Cox | 3ec466b | 2007-12-13 16:15:26 -0800 | [diff] [blame] | 369 | termios->c_cflag &= ~CMSPAR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | |
| 371 | /* get a local copy of the current port settings */ |
| 372 | spin_lock_irqsave(&priv->lock, flags); |
| 373 | control_state = priv->control_state; |
| 374 | bad_flow_control = priv->bad_flow_control; |
| 375 | spin_unlock_irqrestore(&priv->lock, flags); |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 376 | |
Alan Cox | 9a8baec | 2007-06-22 14:40:18 +0100 | [diff] [blame] | 377 | old_iflag = old_termios->c_iflag; |
| 378 | old_cflag = old_termios->c_cflag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | |
| 380 | /* Set the baud rate */ |
Alan Cox | 3ec466b | 2007-12-13 16:15:26 -0800 | [diff] [blame] | 381 | if ((cflag & CBAUD) != (old_cflag & CBAUD)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | /* reassert DTR and (maybe) RTS on transition from B0 */ |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 383 | if ((old_cflag & CBAUD) == B0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | control_state |= (TIOCM_DTR|TIOCM_RTS); |
| 385 | if (BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST, 1) < 0) |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 386 | dev_err(&port->dev, "Set DTR error\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | /* don't set RTS if using hardware flow control */ |
Alan Cox | 3ec466b | 2007-12-13 16:15:26 -0800 | [diff] [blame] | 388 | if (!(old_cflag & CRTSCTS)) |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 389 | if (BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST |
| 390 | , 1) < 0) |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 391 | dev_err(&port->dev, "Set RTS error\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | } |
Alan Cox | 9a8baec | 2007-06-22 14:40:18 +0100 | [diff] [blame] | 393 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 395 | baud = tty_get_baud_rate(tty); |
Alan Cox | 3ec466b | 2007-12-13 16:15:26 -0800 | [diff] [blame] | 396 | if (baud) { |
| 397 | urb_value = BELKIN_SA_BAUD(baud); |
| 398 | /* Clip to maximum speed */ |
| 399 | if (urb_value == 0) |
| 400 | urb_value = 1; |
| 401 | /* Turn it back into a resulting real baud rate */ |
| 402 | baud = BELKIN_SA_BAUD(urb_value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | |
Alan Cox | 3ec466b | 2007-12-13 16:15:26 -0800 | [diff] [blame] | 404 | /* Report the actual baud rate back to the caller */ |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 405 | tty_encode_baud_rate(tty, baud, baud); |
Alan Cox | 9a8baec | 2007-06-22 14:40:18 +0100 | [diff] [blame] | 406 | if (BSA_USB_CMD(BELKIN_SA_SET_BAUDRATE_REQUEST, urb_value) < 0) |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 407 | dev_err(&port->dev, "Set baudrate error\n"); |
Alan Cox | 9a8baec | 2007-06-22 14:40:18 +0100 | [diff] [blame] | 408 | } else { |
| 409 | /* Disable flow control */ |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 410 | if (BSA_USB_CMD(BELKIN_SA_SET_FLOW_CTRL_REQUEST, |
| 411 | BELKIN_SA_FLOW_NONE) < 0) |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 412 | dev_err(&port->dev, "Disable flowcontrol error\n"); |
Alan Cox | 9a8baec | 2007-06-22 14:40:18 +0100 | [diff] [blame] | 413 | /* Drop RTS and DTR */ |
| 414 | control_state &= ~(TIOCM_DTR | TIOCM_RTS); |
| 415 | if (BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST, 0) < 0) |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 416 | dev_err(&port->dev, "DTR LOW error\n"); |
Alan Cox | 9a8baec | 2007-06-22 14:40:18 +0100 | [diff] [blame] | 417 | if (BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST, 0) < 0) |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 418 | dev_err(&port->dev, "RTS LOW error\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | } |
| 420 | |
| 421 | /* set the parity */ |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 422 | if ((cflag ^ old_cflag) & (PARENB | PARODD)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | if (cflag & PARENB) |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 424 | urb_value = (cflag & PARODD) ? BELKIN_SA_PARITY_ODD |
| 425 | : BELKIN_SA_PARITY_EVEN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | else |
| 427 | urb_value = BELKIN_SA_PARITY_NONE; |
| 428 | if (BSA_USB_CMD(BELKIN_SA_SET_PARITY_REQUEST, urb_value) < 0) |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 429 | dev_err(&port->dev, "Set parity error\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | } |
| 431 | |
| 432 | /* set the number of data bits */ |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 433 | if ((cflag & CSIZE) != (old_cflag & CSIZE)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | switch (cflag & CSIZE) { |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 435 | case CS5: |
| 436 | urb_value = BELKIN_SA_DATA_BITS(5); |
| 437 | break; |
| 438 | case CS6: |
| 439 | urb_value = BELKIN_SA_DATA_BITS(6); |
| 440 | break; |
| 441 | case CS7: |
| 442 | urb_value = BELKIN_SA_DATA_BITS(7); |
| 443 | break; |
| 444 | case CS8: |
| 445 | urb_value = BELKIN_SA_DATA_BITS(8); |
| 446 | break; |
| 447 | default: dbg("CSIZE was not CS5-CS8, using default of 8"); |
| 448 | urb_value = BELKIN_SA_DATA_BITS(8); |
| 449 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | } |
| 451 | if (BSA_USB_CMD(BELKIN_SA_SET_DATA_BITS_REQUEST, urb_value) < 0) |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 452 | dev_err(&port->dev, "Set data bits error\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | } |
| 454 | |
| 455 | /* set the number of stop bits */ |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 456 | if ((cflag & CSTOPB) != (old_cflag & CSTOPB)) { |
| 457 | urb_value = (cflag & CSTOPB) ? BELKIN_SA_STOP_BITS(2) |
| 458 | : BELKIN_SA_STOP_BITS(1); |
| 459 | if (BSA_USB_CMD(BELKIN_SA_SET_STOP_BITS_REQUEST, |
| 460 | urb_value) < 0) |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 461 | dev_err(&port->dev, "Set stop bits error\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | } |
| 463 | |
| 464 | /* Set flow control */ |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 465 | if (((iflag ^ old_iflag) & (IXOFF | IXON)) || |
| 466 | ((cflag ^ old_cflag) & CRTSCTS)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | urb_value = 0; |
| 468 | if ((iflag & IXOFF) || (iflag & IXON)) |
| 469 | urb_value |= (BELKIN_SA_FLOW_OXON | BELKIN_SA_FLOW_IXON); |
| 470 | else |
| 471 | urb_value &= ~(BELKIN_SA_FLOW_OXON | BELKIN_SA_FLOW_IXON); |
| 472 | |
| 473 | if (cflag & CRTSCTS) |
| 474 | urb_value |= (BELKIN_SA_FLOW_OCTS | BELKIN_SA_FLOW_IRTS); |
| 475 | else |
| 476 | urb_value &= ~(BELKIN_SA_FLOW_OCTS | BELKIN_SA_FLOW_IRTS); |
| 477 | |
| 478 | if (bad_flow_control) |
| 479 | urb_value &= ~(BELKIN_SA_FLOW_IRTS); |
| 480 | |
| 481 | if (BSA_USB_CMD(BELKIN_SA_SET_FLOW_CTRL_REQUEST, urb_value) < 0) |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 482 | dev_err(&port->dev, "Set flow control error\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | } |
| 484 | |
| 485 | /* save off the modified port settings */ |
| 486 | spin_lock_irqsave(&priv->lock, flags); |
| 487 | priv->control_state = control_state; |
| 488 | spin_unlock_irqrestore(&priv->lock, flags); |
Johan Hovold | 726ef42 | 2010-05-15 17:53:51 +0200 | [diff] [blame] | 489 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 491 | static void belkin_sa_break_ctl(struct tty_struct *tty, int break_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 493 | struct usb_serial_port *port = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | struct usb_serial *serial = port->serial; |
| 495 | |
| 496 | if (BSA_USB_CMD(BELKIN_SA_SET_BREAK_REQUEST, break_state ? 1 : 0) < 0) |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 497 | dev_err(&port->dev, "Set break_ctl %d\n", break_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | } |
| 499 | |
Alan Cox | 60b33c1 | 2011-02-14 16:26:14 +0000 | [diff] [blame^] | 500 | static int belkin_sa_tiocmget(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 502 | struct usb_serial_port *port = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | struct belkin_sa_private *priv = usb_get_serial_port_data(port); |
| 504 | unsigned long control_state; |
| 505 | unsigned long flags; |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 506 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 507 | dbg("%s", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | |
| 509 | spin_lock_irqsave(&priv->lock, flags); |
| 510 | control_state = priv->control_state; |
| 511 | spin_unlock_irqrestore(&priv->lock, flags); |
| 512 | |
| 513 | return control_state; |
| 514 | } |
| 515 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 516 | static int belkin_sa_tiocmset(struct tty_struct *tty, struct file *file, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | unsigned int set, unsigned int clear) |
| 518 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 519 | struct usb_serial_port *port = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | struct usb_serial *serial = port->serial; |
| 521 | struct belkin_sa_private *priv = usb_get_serial_port_data(port); |
| 522 | unsigned long control_state; |
| 523 | unsigned long flags; |
| 524 | int retval; |
| 525 | int rts = 0; |
| 526 | int dtr = 0; |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 527 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 528 | dbg("%s", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | |
| 530 | spin_lock_irqsave(&priv->lock, flags); |
| 531 | control_state = priv->control_state; |
| 532 | |
| 533 | if (set & TIOCM_RTS) { |
| 534 | control_state |= TIOCM_RTS; |
| 535 | rts = 1; |
| 536 | } |
| 537 | if (set & TIOCM_DTR) { |
| 538 | control_state |= TIOCM_DTR; |
| 539 | dtr = 1; |
| 540 | } |
| 541 | if (clear & TIOCM_RTS) { |
| 542 | control_state &= ~TIOCM_RTS; |
| 543 | rts = 0; |
| 544 | } |
| 545 | if (clear & TIOCM_DTR) { |
| 546 | control_state &= ~TIOCM_DTR; |
| 547 | dtr = 0; |
| 548 | } |
| 549 | |
| 550 | priv->control_state = control_state; |
| 551 | spin_unlock_irqrestore(&priv->lock, flags); |
| 552 | |
| 553 | retval = BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST, rts); |
| 554 | if (retval < 0) { |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 555 | dev_err(&port->dev, "Set RTS error %d\n", retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | goto exit; |
| 557 | } |
| 558 | |
| 559 | retval = BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST, dtr); |
| 560 | if (retval < 0) { |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 561 | dev_err(&port->dev, "Set DTR error %d\n", retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | goto exit; |
| 563 | } |
| 564 | exit: |
| 565 | return retval; |
| 566 | } |
| 567 | |
| 568 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 569 | static int __init belkin_sa_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | { |
| 571 | int retval; |
| 572 | retval = usb_serial_register(&belkin_device); |
| 573 | if (retval) |
| 574 | goto failed_usb_serial_register; |
| 575 | retval = usb_register(&belkin_driver); |
| 576 | if (retval) |
| 577 | goto failed_usb_register; |
Greg Kroah-Hartman | c197a8d | 2008-08-18 13:21:04 -0700 | [diff] [blame] | 578 | printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":" |
| 579 | DRIVER_DESC "\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | return 0; |
| 581 | failed_usb_register: |
| 582 | usb_serial_deregister(&belkin_device); |
| 583 | failed_usb_serial_register: |
| 584 | return retval; |
| 585 | } |
| 586 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | static void __exit belkin_sa_exit (void) |
| 588 | { |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 589 | usb_deregister(&belkin_driver); |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 590 | usb_serial_deregister(&belkin_device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | } |
| 592 | |
| 593 | |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 594 | module_init(belkin_sa_init); |
| 595 | module_exit(belkin_sa_exit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | |
Alan Cox | b69c149 | 2008-07-22 11:09:39 +0100 | [diff] [blame] | 597 | MODULE_AUTHOR(DRIVER_AUTHOR); |
| 598 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 599 | MODULE_VERSION(DRIVER_VERSION); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | MODULE_LICENSE("GPL"); |
| 601 | |
| 602 | module_param(debug, bool, S_IRUGO | S_IWUSR); |
| 603 | MODULE_PARM_DESC(debug, "Debug enabled or not"); |