Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1 | /* |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 2 | USB Driver for GSM modems |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 3 | |
| 4 | Copyright (C) 2005 Matthias Urlichs <smurf@smurf.noris.de> |
| 5 | |
| 6 | This driver is free software; you can redistribute it and/or modify |
| 7 | it under the terms of Version 2 of the GNU General Public License as |
| 8 | published by the Free Software Foundation. |
| 9 | |
| 10 | Portions copied from the Keyspan driver by Hugh Blemings <hugh@blemings.org> |
| 11 | |
Matthias Urlichs | b3fdab5 | 2006-08-02 16:41:41 -0700 | [diff] [blame] | 12 | History: see the git log. |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 13 | |
| 14 | Work sponsored by: Sigos GmbH, Germany <info@sigos.de> |
| 15 | |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 16 | This driver exists because the "normal" serial driver doesn't work too well |
| 17 | with GSM modems. Issues: |
| 18 | - data loss -- one single Receive URB is not nearly enough |
Matthias Urlichs | 7c1c2f7 | 2006-07-20 04:56:00 +0200 | [diff] [blame] | 19 | - nonstandard flow (Option devices) control |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 20 | - controlling the baud rate doesn't make sense |
| 21 | |
| 22 | This driver is named "option" because the most common device it's |
| 23 | used for is a PC-Card (with an internal OHCI-USB interface, behind |
| 24 | which the GSM interface sits), made by Option Inc. |
| 25 | |
| 26 | Some of the "one port" devices actually exhibit multiple USB instances |
| 27 | on the USB bus. This is not a bug, these ports are used for different |
| 28 | device features. |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 29 | */ |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 30 | |
Chris Collins | 5f76004 | 2008-04-10 10:15:53 +0200 | [diff] [blame] | 31 | #define DRIVER_VERSION "v0.7.2" |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 32 | #define DRIVER_AUTHOR "Matthias Urlichs <smurf@smurf.noris.de>" |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 33 | #define DRIVER_DESC "USB Driver for GSM modems" |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 34 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 35 | #include <linux/kernel.h> |
| 36 | #include <linux/jiffies.h> |
| 37 | #include <linux/errno.h> |
| 38 | #include <linux/tty.h> |
| 39 | #include <linux/tty_flip.h> |
| 40 | #include <linux/module.h> |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 41 | #include <linux/bitops.h> |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 42 | #include <linux/usb.h> |
Greg Kroah-Hartman | a969888 | 2006-07-11 21:22:58 -0700 | [diff] [blame] | 43 | #include <linux/usb/serial.h> |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 44 | |
| 45 | /* Function prototypes */ |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 46 | static int option_open(struct usb_serial_port *port, struct file *filp); |
| 47 | static void option_close(struct usb_serial_port *port, struct file *filp); |
| 48 | static int option_startup(struct usb_serial *serial); |
| 49 | static void option_shutdown(struct usb_serial *serial); |
| 50 | static void option_rx_throttle(struct usb_serial_port *port); |
| 51 | static void option_rx_unthrottle(struct usb_serial_port *port); |
| 52 | static int option_write_room(struct usb_serial_port *port); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 53 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 54 | static void option_instat_callback(struct urb *urb); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 55 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 56 | static int option_write(struct usb_serial_port *port, |
| 57 | const unsigned char *buf, int count); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 58 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 59 | static int option_chars_in_buffer(struct usb_serial_port *port); |
| 60 | static int option_ioctl(struct usb_serial_port *port, struct file *file, |
| 61 | unsigned int cmd, unsigned long arg); |
| 62 | static void option_set_termios(struct usb_serial_port *port, |
Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 63 | struct ktermios *old); |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 64 | static void option_break_ctl(struct usb_serial_port *port, int break_state); |
| 65 | static int option_tiocmget(struct usb_serial_port *port, struct file *file); |
| 66 | static int option_tiocmset(struct usb_serial_port *port, struct file *file, |
| 67 | unsigned int set, unsigned int clear); |
| 68 | static int option_send_setup(struct usb_serial_port *port); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 69 | |
| 70 | /* Vendor and product IDs */ |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 71 | #define OPTION_VENDOR_ID 0x0AF0 |
| 72 | #define OPTION_PRODUCT_COLT 0x5000 |
| 73 | #define OPTION_PRODUCT_RICOLA 0x6000 |
| 74 | #define OPTION_PRODUCT_RICOLA_LIGHT 0x6100 |
| 75 | #define OPTION_PRODUCT_RICOLA_QUAD 0x6200 |
| 76 | #define OPTION_PRODUCT_RICOLA_QUAD_LIGHT 0x6300 |
| 77 | #define OPTION_PRODUCT_RICOLA_NDIS 0x6050 |
| 78 | #define OPTION_PRODUCT_RICOLA_NDIS_LIGHT 0x6150 |
| 79 | #define OPTION_PRODUCT_RICOLA_NDIS_QUAD 0x6250 |
| 80 | #define OPTION_PRODUCT_RICOLA_NDIS_QUAD_LIGHT 0x6350 |
| 81 | #define OPTION_PRODUCT_COBRA 0x6500 |
| 82 | #define OPTION_PRODUCT_COBRA_BUS 0x6501 |
| 83 | #define OPTION_PRODUCT_VIPER 0x6600 |
| 84 | #define OPTION_PRODUCT_VIPER_BUS 0x6601 |
| 85 | #define OPTION_PRODUCT_GT_MAX_READY 0x6701 |
| 86 | #define OPTION_PRODUCT_GT_MAX 0x6711 |
| 87 | #define OPTION_PRODUCT_FUJI_MODEM_LIGHT 0x6721 |
| 88 | #define OPTION_PRODUCT_FUJI_MODEM_GT 0x6741 |
| 89 | #define OPTION_PRODUCT_FUJI_MODEM_EX 0x6761 |
| 90 | #define OPTION_PRODUCT_FUJI_NETWORK_LIGHT 0x6731 |
| 91 | #define OPTION_PRODUCT_FUJI_NETWORK_GT 0x6751 |
| 92 | #define OPTION_PRODUCT_FUJI_NETWORK_EX 0x6771 |
| 93 | #define OPTION_PRODUCT_KOI_MODEM 0x6800 |
| 94 | #define OPTION_PRODUCT_KOI_NETWORK 0x6811 |
| 95 | #define OPTION_PRODUCT_SCORPION_MODEM 0x6901 |
| 96 | #define OPTION_PRODUCT_SCORPION_NETWORK 0x6911 |
| 97 | #define OPTION_PRODUCT_ETNA_MODEM 0x7001 |
| 98 | #define OPTION_PRODUCT_ETNA_NETWORK 0x7011 |
| 99 | #define OPTION_PRODUCT_ETNA_MODEM_LITE 0x7021 |
| 100 | #define OPTION_PRODUCT_ETNA_MODEM_GT 0x7041 |
| 101 | #define OPTION_PRODUCT_ETNA_MODEM_EX 0x7061 |
| 102 | #define OPTION_PRODUCT_ETNA_NETWORK_LITE 0x7031 |
| 103 | #define OPTION_PRODUCT_ETNA_NETWORK_GT 0x7051 |
| 104 | #define OPTION_PRODUCT_ETNA_NETWORK_EX 0x7071 |
| 105 | #define OPTION_PRODUCT_ETNA_KOI_MODEM 0x7100 |
| 106 | #define OPTION_PRODUCT_ETNA_KOI_NETWORK 0x7111 |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 107 | |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 108 | #define HUAWEI_VENDOR_ID 0x12D1 |
| 109 | #define HUAWEI_PRODUCT_E600 0x1001 |
| 110 | #define HUAWEI_PRODUCT_E220 0x1003 |
Jaime Velasco Juan | a3209a0 | 2007-09-07 19:06:39 +0100 | [diff] [blame] | 111 | #define HUAWEI_PRODUCT_E220BIS 0x1004 |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 112 | #define HUAWEI_PRODUCT_E1401 0x1401 |
| 113 | #define HUAWEI_PRODUCT_E1403 0x1403 |
| 114 | #define HUAWEI_PRODUCT_E1405 0x1405 |
| 115 | #define HUAWEI_PRODUCT_E1406 0x1406 |
| 116 | #define HUAWEI_PRODUCT_E1408 0x1408 |
| 117 | #define HUAWEI_PRODUCT_E1409 0x1409 |
| 118 | #define HUAWEI_PRODUCT_E1410 0x1410 |
| 119 | #define HUAWEI_PRODUCT_E1411 0x1411 |
| 120 | #define HUAWEI_PRODUCT_E1412 0x1412 |
| 121 | #define HUAWEI_PRODUCT_E1413 0x1413 |
| 122 | #define HUAWEI_PRODUCT_E1414 0x1414 |
| 123 | #define HUAWEI_PRODUCT_E1415 0x1415 |
| 124 | #define HUAWEI_PRODUCT_E1416 0x1416 |
| 125 | #define HUAWEI_PRODUCT_E1417 0x1417 |
| 126 | #define HUAWEI_PRODUCT_E1418 0x1418 |
| 127 | #define HUAWEI_PRODUCT_E1419 0x1419 |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 128 | |
| 129 | #define NOVATELWIRELESS_VENDOR_ID 0x1410 |
Dirk DeSchepper | 72ab641 | 2008-03-05 08:26:18 +0000 | [diff] [blame] | 130 | |
| 131 | /* MERLIN EVDO PRODUCTS */ |
| 132 | #define NOVATELWIRELESS_PRODUCT_V640 0x1100 |
| 133 | #define NOVATELWIRELESS_PRODUCT_V620 0x1110 |
| 134 | #define NOVATELWIRELESS_PRODUCT_V740 0x1120 |
| 135 | #define NOVATELWIRELESS_PRODUCT_V720 0x1130 |
| 136 | |
| 137 | /* MERLIN HSDPA/HSPA PRODUCTS */ |
| 138 | #define NOVATELWIRELESS_PRODUCT_U730 0x1400 |
| 139 | #define NOVATELWIRELESS_PRODUCT_U740 0x1410 |
| 140 | #define NOVATELWIRELESS_PRODUCT_U870 0x1420 |
| 141 | #define NOVATELWIRELESS_PRODUCT_XU870 0x1430 |
| 142 | #define NOVATELWIRELESS_PRODUCT_X950D 0x1450 |
| 143 | |
| 144 | /* EXPEDITE PRODUCTS */ |
| 145 | #define NOVATELWIRELESS_PRODUCT_EV620 0x2100 |
| 146 | #define NOVATELWIRELESS_PRODUCT_ES720 0x2110 |
| 147 | #define NOVATELWIRELESS_PRODUCT_E725 0x2120 |
Matthias Urlichs | a1d9bc1 | 2008-04-10 10:13:32 +0200 | [diff] [blame] | 148 | #define NOVATELWIRELESS_PRODUCT_ES620 0x2130 |
Dirk DeSchepper | 72ab641 | 2008-03-05 08:26:18 +0000 | [diff] [blame] | 149 | #define NOVATELWIRELESS_PRODUCT_EU730 0x2400 |
| 150 | #define NOVATELWIRELESS_PRODUCT_EU740 0x2410 |
| 151 | #define NOVATELWIRELESS_PRODUCT_EU870D 0x2420 |
| 152 | |
| 153 | /* OVATION PRODUCTS */ |
| 154 | #define NOVATELWIRELESS_PRODUCT_MC727 0x4100 |
| 155 | #define NOVATELWIRELESS_PRODUCT_MC950D 0x4400 |
| 156 | |
| 157 | /* FUTURE NOVATEL PRODUCTS */ |
| 158 | #define NOVATELWIRELESS_PRODUCT_EVDO_1 0x6000 |
| 159 | #define NOVATELWIRELESS_PRODUCT_HSPA_1 0x7000 |
| 160 | #define NOVATELWIRELESS_PRODUCT_EMBEDDED_1 0x8000 |
| 161 | #define NOVATELWIRELESS_PRODUCT_GLOBAL_1 0x9000 |
| 162 | #define NOVATELWIRELESS_PRODUCT_EVDO_2 0x6001 |
| 163 | #define NOVATELWIRELESS_PRODUCT_HSPA_2 0x7001 |
| 164 | #define NOVATELWIRELESS_PRODUCT_EMBEDDED_2 0x8001 |
| 165 | #define NOVATELWIRELESS_PRODUCT_GLOBAL_2 0x9001 |
| 166 | |
tang kai | 32147be | 2008-04-14 10:06:35 +0800 | [diff] [blame] | 167 | /* AMOI PRODUCTS */ |
| 168 | #define AMOI_VENDOR_ID 0x1614 |
| 169 | #define AMOI_PRODUCT_H01 0x0800 |
| 170 | #define AMOI_PRODUCT_H01A 0x7002 |
| 171 | #define AMOI_PRODUCT_H02 0x0802 |
| 172 | |
Faidon Liambotis | 9644321 | 2007-08-07 05:46:05 +0300 | [diff] [blame] | 173 | #define DELL_VENDOR_ID 0x413C |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 174 | |
Dan Williams | 564d61d | 2008-02-19 13:15:30 -0500 | [diff] [blame] | 175 | #define KYOCERA_VENDOR_ID 0x0c88 |
Greg Kroah-Hartman | 640c1bc | 2008-06-19 11:21:16 -0700 | [diff] [blame^] | 176 | #define KYOCERA_PRODUCT_KPC650 0x17da |
Dan Williams | 564d61d | 2008-02-19 13:15:30 -0500 | [diff] [blame] | 177 | #define KYOCERA_PRODUCT_KPC680 0x180a |
| 178 | |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 179 | #define ANYDATA_VENDOR_ID 0x16d5 |
Alexander Gattin | 46269db | 2007-06-20 00:48:10 +0300 | [diff] [blame] | 180 | #define ANYDATA_PRODUCT_ADU_E100A 0x6501 |
| 181 | #define ANYDATA_PRODUCT_ADU_500A 0x6502 |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 182 | |
Daniel Kozák | 85fb62a | 2008-03-04 18:54:53 +0100 | [diff] [blame] | 183 | #define AXESSTEL_VENDOR_ID 0x1726 |
| 184 | #define AXESSTEL_PRODUCT_MV110H 0x1000 |
| 185 | |
andreoli@samba.ing.unimo.it | 4c7d313 | 2008-05-01 19:26:16 +0200 | [diff] [blame] | 186 | #define ONDA_VENDOR_ID 0x19d2 |
Arnaldo Carvalho de Melo | 1b2d23d | 2008-05-16 15:41:40 -0300 | [diff] [blame] | 187 | #define ONDA_PRODUCT_MSA501HS 0x0001 |
andreoli@samba.ing.unimo.it | 4c7d313 | 2008-05-01 19:26:16 +0200 | [diff] [blame] | 188 | #define ONDA_PRODUCT_ET502HS 0x0002 |
| 189 | |
Leon Leong | 3f6e584 | 2007-04-26 00:38:02 -0700 | [diff] [blame] | 190 | #define BANDRICH_VENDOR_ID 0x1A8D |
| 191 | #define BANDRICH_PRODUCT_C100_1 0x1002 |
| 192 | #define BANDRICH_PRODUCT_C100_2 0x1003 |
| 193 | |
Matthias Urlichs | a1d9bc1 | 2008-04-10 10:13:32 +0200 | [diff] [blame] | 194 | #define AMOI_VENDOR_ID 0x1614 |
| 195 | #define AMOI_PRODUCT_9508 0x0800 |
| 196 | |
Kevin Lloyd | d726fb7 | 2008-02-14 13:35:16 -0800 | [diff] [blame] | 197 | #define QUALCOMM_VENDOR_ID 0x05C6 |
| 198 | |
James Cameron | 80d9709 | 2008-04-09 18:59:13 +1000 | [diff] [blame] | 199 | #define MAXON_VENDOR_ID 0x16d8 |
| 200 | |
Greg Kroah-Hartman | ee53b0c | 2008-05-15 10:07:44 -0700 | [diff] [blame] | 201 | #define TELIT_VENDOR_ID 0x1bc7 |
| 202 | #define TELIT_PRODUCT_UC864E 0x1003 |
| 203 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 204 | static struct usb_device_id option_ids[] = { |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 205 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COLT) }, |
| 206 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA) }, |
| 207 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_LIGHT) }, |
| 208 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_QUAD) }, |
| 209 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_QUAD_LIGHT) }, |
| 210 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS) }, |
| 211 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_LIGHT) }, |
| 212 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_QUAD) }, |
| 213 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_QUAD_LIGHT) }, |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 214 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA) }, |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 215 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA_BUS) }, |
| 216 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_VIPER) }, |
| 217 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_VIPER_BUS) }, |
| 218 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GT_MAX_READY) }, |
| 219 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GT_MAX) }, |
| 220 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_LIGHT) }, |
| 221 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_GT) }, |
| 222 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_EX) }, |
| 223 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_NETWORK_LIGHT) }, |
| 224 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_NETWORK_GT) }, |
| 225 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_NETWORK_EX) }, |
| 226 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_KOI_MODEM) }, |
| 227 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_KOI_NETWORK) }, |
| 228 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_SCORPION_MODEM) }, |
| 229 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_SCORPION_NETWORK) }, |
| 230 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM) }, |
| 231 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_NETWORK) }, |
| 232 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_LITE) }, |
| 233 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_GT) }, |
| 234 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_EX) }, |
| 235 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_NETWORK_LITE) }, |
| 236 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_NETWORK_GT) }, |
| 237 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_NETWORK_EX) }, |
| 238 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_KOI_MODEM) }, |
| 239 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_KOI_NETWORK) }, |
Michael Karcher | a7f3872 | 2008-05-28 23:58:18 +0200 | [diff] [blame] | 240 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E600, 0xff, 0xff, 0xff) }, |
Jaime Velasco Juan | b5ce18a | 2007-11-30 16:30:11 +0000 | [diff] [blame] | 241 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220, 0xff, 0xff, 0xff) }, |
| 242 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220BIS, 0xff, 0xff, 0xff) }, |
Michael Karcher | a7f3872 | 2008-05-28 23:58:18 +0200 | [diff] [blame] | 243 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1401, 0xff, 0xff, 0xff) }, |
| 244 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1403, 0xff, 0xff, 0xff) }, |
| 245 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1405, 0xff, 0xff, 0xff) }, |
| 246 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1406, 0xff, 0xff, 0xff) }, |
| 247 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1408, 0xff, 0xff, 0xff) }, |
| 248 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1409, 0xff, 0xff, 0xff) }, |
| 249 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1410, 0xff, 0xff, 0xff) }, |
| 250 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1411, 0xff, 0xff, 0xff) }, |
| 251 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1412, 0xff, 0xff, 0xff) }, |
| 252 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1413, 0xff, 0xff, 0xff) }, |
| 253 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1414, 0xff, 0xff, 0xff) }, |
| 254 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1415, 0xff, 0xff, 0xff) }, |
| 255 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1416, 0xff, 0xff, 0xff) }, |
| 256 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1417, 0xff, 0xff, 0xff) }, |
| 257 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1418, 0xff, 0xff, 0xff) }, |
| 258 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1419, 0xff, 0xff, 0xff) }, |
Matthias Urlichs | a1d9bc1 | 2008-04-10 10:13:32 +0200 | [diff] [blame] | 259 | { USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_9508) }, |
Dirk DeSchepper | 72ab641 | 2008-03-05 08:26:18 +0000 | [diff] [blame] | 260 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V640) }, /* Novatel Merlin V640/XV620 */ |
| 261 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V620) }, /* Novatel Merlin V620/S620 */ |
| 262 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V740) }, /* Novatel Merlin EX720/V740/X720 */ |
| 263 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V720) }, /* Novatel Merlin V720/S720/PC720 */ |
| 264 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_U730) }, /* Novatel U730/U740 (VF version) */ |
| 265 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_U740) }, /* Novatel U740 */ |
| 266 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_U870) }, /* Novatel U870 */ |
| 267 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_XU870) }, /* Novatel Merlin XU870 HSDPA/3G */ |
| 268 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_X950D) }, /* Novatel X950D */ |
| 269 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EV620) }, /* Novatel EV620/ES620 CDMA/EV-DO */ |
| 270 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_ES720) }, /* Novatel ES620/ES720/U720/USB720 */ |
| 271 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_E725) }, /* Novatel E725/E726 */ |
Matthias Urlichs | a1d9bc1 | 2008-04-10 10:13:32 +0200 | [diff] [blame] | 272 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_ES620) }, /* Novatel Merlin ES620 SM Bus */ |
Dirk DeSchepper | 72ab641 | 2008-03-05 08:26:18 +0000 | [diff] [blame] | 273 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EU730) }, /* Novatel EU730 and Vodafone EU740 */ |
| 274 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EU740) }, /* Novatel non-Vodafone EU740 */ |
| 275 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EU870D) }, /* Novatel EU850D/EU860D/EU870D */ |
| 276 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_MC950D) }, /* Novatel MC930D/MC950D */ |
| 277 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_MC727) }, /* Novatel MC727/U727/USB727 */ |
Dirk DeSchepper | 72ab641 | 2008-03-05 08:26:18 +0000 | [diff] [blame] | 278 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EVDO_1) }, /* Novatel EVDO product */ |
| 279 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_HSPA_1) }, /* Novatel HSPA product */ |
| 280 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EMBEDDED_1) }, /* Novatel Embedded product */ |
| 281 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_GLOBAL_1) }, /* Novatel Global product */ |
| 282 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EVDO_2) }, /* Novatel EVDO product */ |
| 283 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_HSPA_2) }, /* Novatel HSPA product */ |
| 284 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EMBEDDED_2) }, /* Novatel Embedded product */ |
| 285 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_GLOBAL_2) }, /* Novatel Global product */ |
| 286 | |
tang kai | 32147be | 2008-04-14 10:06:35 +0800 | [diff] [blame] | 287 | { USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_H01) }, |
| 288 | { USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_H01A) }, |
| 289 | { USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_H02) }, |
| 290 | |
Faidon Liambotis | 9644321 | 2007-08-07 05:46:05 +0300 | [diff] [blame] | 291 | { USB_DEVICE(DELL_VENDOR_ID, 0x8114) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO Mini-Card == Novatel Expedite EV620 CDMA/EV-DO */ |
| 292 | { USB_DEVICE(DELL_VENDOR_ID, 0x8115) }, /* Dell Wireless 5500 Mobile Broadband HSDPA Mini-Card == Novatel Expedite EU740 HSDPA/3G */ |
| 293 | { USB_DEVICE(DELL_VENDOR_ID, 0x8116) }, /* Dell Wireless 5505 Mobile Broadband HSDPA Mini-Card == Novatel Expedite EU740 HSDPA/3G */ |
| 294 | { USB_DEVICE(DELL_VENDOR_ID, 0x8117) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO ExpressCard == Novatel Merlin XV620 CDMA/EV-DO */ |
| 295 | { USB_DEVICE(DELL_VENDOR_ID, 0x8118) }, /* Dell Wireless 5510 Mobile Broadband HSDPA ExpressCard == Novatel Merlin XU870 HSDPA/3G */ |
| 296 | { USB_DEVICE(DELL_VENDOR_ID, 0x8128) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO Mini-Card == Novatel Expedite E720 CDMA/EV-DO */ |
Andy Shevchenko | 59036e9 | 2008-02-04 23:57:49 -0800 | [diff] [blame] | 297 | { USB_DEVICE(DELL_VENDOR_ID, 0x8129) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO Mini-Card == Novatel Expedite ET620 CDMA/EV-DO */ |
Stefan Bader | aa59e05 | 2008-02-05 15:25:35 -0500 | [diff] [blame] | 298 | { USB_DEVICE(DELL_VENDOR_ID, 0x8133) }, /* Dell Wireless 5720 == Novatel EV620 CDMA/EV-DO */ |
| 299 | { USB_DEVICE(DELL_VENDOR_ID, 0x8136) }, /* Dell Wireless HSDPA 5520 == Novatel Expedite EU860D */ |
Greg Kroah-Hartman | 2c4cd1f | 2007-08-30 19:02:10 +0200 | [diff] [blame] | 300 | { USB_DEVICE(DELL_VENDOR_ID, 0x8137) }, /* Dell Wireless HSDPA 5520 */ |
Dan Williams | 96cb15c | 2008-05-13 12:53:45 -0400 | [diff] [blame] | 301 | { USB_DEVICE(DELL_VENDOR_ID, 0x8138) }, /* Dell Wireless 5520 Voda I Mobile Broadband (3G HSDPA) Minicard */ |
Alexander Gattin | 46269db | 2007-06-20 00:48:10 +0300 | [diff] [blame] | 302 | { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_E100A) }, |
| 303 | { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_500A) }, |
Daniel Kozák | 85fb62a | 2008-03-04 18:54:53 +0100 | [diff] [blame] | 304 | { USB_DEVICE(AXESSTEL_VENDOR_ID, AXESSTEL_PRODUCT_MV110H) }, |
Arnaldo Carvalho de Melo | 1b2d23d | 2008-05-16 15:41:40 -0300 | [diff] [blame] | 305 | { USB_DEVICE(ONDA_VENDOR_ID, ONDA_PRODUCT_MSA501HS) }, |
andreoli@samba.ing.unimo.it | 4c7d313 | 2008-05-01 19:26:16 +0200 | [diff] [blame] | 306 | { USB_DEVICE(ONDA_VENDOR_ID, ONDA_PRODUCT_ET502HS) }, |
Leon Leong | 3f6e584 | 2007-04-26 00:38:02 -0700 | [diff] [blame] | 307 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_C100_1) }, |
| 308 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_C100_2) }, |
Greg Kroah-Hartman | 640c1bc | 2008-06-19 11:21:16 -0700 | [diff] [blame^] | 309 | { USB_DEVICE(KYOCERA_VENDOR_ID, KYOCERA_PRODUCT_KPC650) }, |
Dan Williams | 564d61d | 2008-02-19 13:15:30 -0500 | [diff] [blame] | 310 | { USB_DEVICE(KYOCERA_VENDOR_ID, KYOCERA_PRODUCT_KPC680) }, |
Greg Kroah-Hartman | d2e2aff | 2008-07-01 13:11:56 +0530 | [diff] [blame] | 311 | { USB_DEVICE(QUALCOMM_VENDOR_ID, 0x6000)}, /* ZTE AC8700 */ |
Kevin Lloyd | d726fb7 | 2008-02-14 13:35:16 -0800 | [diff] [blame] | 312 | { USB_DEVICE(QUALCOMM_VENDOR_ID, 0x6613)}, /* Onda H600/ZTE MF330 */ |
James Cameron | 80d9709 | 2008-04-09 18:59:13 +1000 | [diff] [blame] | 313 | { USB_DEVICE(MAXON_VENDOR_ID, 0x6280) }, /* BP3-USB & BP3-EXT HSDPA */ |
Greg Kroah-Hartman | ee53b0c | 2008-05-15 10:07:44 -0700 | [diff] [blame] | 314 | { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_UC864E) }, |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 315 | { } /* Terminating entry */ |
| 316 | }; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 317 | MODULE_DEVICE_TABLE(usb, option_ids); |
| 318 | |
| 319 | static struct usb_driver option_driver = { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 320 | .name = "option", |
| 321 | .probe = usb_serial_probe, |
| 322 | .disconnect = usb_serial_disconnect, |
| 323 | .id_table = option_ids, |
Greg Kroah-Hartman | ba9dc65 | 2005-11-16 13:41:28 -0800 | [diff] [blame] | 324 | .no_dynamic_id = 1, |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 325 | }; |
| 326 | |
Uwe Zeisberger | c30fe7f | 2006-03-24 18:23:14 +0100 | [diff] [blame] | 327 | /* The card has three separate interfaces, which the serial driver |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 328 | * recognizes separately, thus num_port=1. |
| 329 | */ |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 330 | |
| 331 | static struct usb_serial_driver option_1port_device = { |
| 332 | .driver = { |
| 333 | .owner = THIS_MODULE, |
Matthias Urlichs | 02b2ac5 | 2006-08-02 16:41:41 -0700 | [diff] [blame] | 334 | .name = "option1", |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 335 | }, |
| 336 | .description = "GSM modem (1-port)", |
Johannes Hölzl | d9b1b78 | 2006-12-17 21:50:24 +0100 | [diff] [blame] | 337 | .usb_driver = &option_driver, |
Greg Kroah-Hartman | b656b2c | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 338 | .id_table = option_ids, |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 339 | .num_ports = 1, |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 340 | .open = option_open, |
| 341 | .close = option_close, |
| 342 | .write = option_write, |
| 343 | .write_room = option_write_room, |
| 344 | .chars_in_buffer = option_chars_in_buffer, |
| 345 | .throttle = option_rx_throttle, |
| 346 | .unthrottle = option_rx_unthrottle, |
| 347 | .ioctl = option_ioctl, |
| 348 | .set_termios = option_set_termios, |
| 349 | .break_ctl = option_break_ctl, |
| 350 | .tiocmget = option_tiocmget, |
| 351 | .tiocmset = option_tiocmset, |
| 352 | .attach = option_startup, |
| 353 | .shutdown = option_shutdown, |
| 354 | .read_int_callback = option_instat_callback, |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 355 | }; |
| 356 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 357 | #ifdef CONFIG_USB_DEBUG |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 358 | static int debug; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 359 | #else |
| 360 | #define debug 0 |
| 361 | #endif |
| 362 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 363 | /* per port private data */ |
| 364 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 365 | #define N_IN_URB 4 |
| 366 | #define N_OUT_URB 1 |
Matthias Urlichs | b27c73d | 2005-09-22 00:49:33 -0700 | [diff] [blame] | 367 | #define IN_BUFLEN 4096 |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 368 | #define OUT_BUFLEN 128 |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 369 | |
| 370 | struct option_port_private { |
| 371 | /* Input endpoints and buffer for this port */ |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 372 | struct urb *in_urbs[N_IN_URB]; |
Oliver Neukum | 2129c4e | 2008-02-01 13:58:52 +0100 | [diff] [blame] | 373 | u8 *in_buffer[N_IN_URB]; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 374 | /* Output endpoints and buffer for this port */ |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 375 | struct urb *out_urbs[N_OUT_URB]; |
Oliver Neukum | 2129c4e | 2008-02-01 13:58:52 +0100 | [diff] [blame] | 376 | u8 *out_buffer[N_OUT_URB]; |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 377 | unsigned long out_busy; /* Bit vector of URBs in use */ |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 378 | |
| 379 | /* Settings for the port */ |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 380 | int rts_state; /* Handshaking pins (outputs) */ |
| 381 | int dtr_state; |
| 382 | int cts_state; /* Handshaking pins (inputs) */ |
| 383 | int dsr_state; |
| 384 | int dcd_state; |
| 385 | int ri_state; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 386 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 387 | unsigned long tx_start_time[N_OUT_URB]; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 388 | }; |
| 389 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 390 | /* Functions used by new usb-serial code. */ |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 391 | static int __init option_init(void) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 392 | { |
| 393 | int retval; |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 394 | retval = usb_serial_register(&option_1port_device); |
| 395 | if (retval) |
| 396 | goto failed_1port_device_register; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 397 | retval = usb_register(&option_driver); |
| 398 | if (retval) |
| 399 | goto failed_driver_register; |
| 400 | |
| 401 | info(DRIVER_DESC ": " DRIVER_VERSION); |
| 402 | |
| 403 | return 0; |
| 404 | |
| 405 | failed_driver_register: |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 406 | usb_serial_deregister (&option_1port_device); |
| 407 | failed_1port_device_register: |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 408 | return retval; |
| 409 | } |
| 410 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 411 | static void __exit option_exit(void) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 412 | { |
| 413 | usb_deregister (&option_driver); |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 414 | usb_serial_deregister (&option_1port_device); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 415 | } |
| 416 | |
| 417 | module_init(option_init); |
| 418 | module_exit(option_exit); |
| 419 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 420 | static void option_rx_throttle(struct usb_serial_port *port) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 421 | { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 422 | dbg("%s", __func__); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 423 | } |
| 424 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 425 | static void option_rx_unthrottle(struct usb_serial_port *port) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 426 | { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 427 | dbg("%s", __func__); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 428 | } |
| 429 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 430 | static void option_break_ctl(struct usb_serial_port *port, int break_state) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 431 | { |
| 432 | /* Unfortunately, I don't know how to send a break */ |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 433 | dbg("%s", __func__); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 434 | } |
| 435 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 436 | static void option_set_termios(struct usb_serial_port *port, |
Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 437 | struct ktermios *old_termios) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 438 | { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 439 | dbg("%s", __func__); |
Alan Cox | e650d8a | 2007-10-18 01:24:21 -0700 | [diff] [blame] | 440 | /* Doesn't support option setting */ |
| 441 | tty_termios_copy_hw(port->tty->termios, old_termios); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 442 | option_send_setup(port); |
| 443 | } |
| 444 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 445 | static int option_tiocmget(struct usb_serial_port *port, struct file *file) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 446 | { |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 447 | unsigned int value; |
| 448 | struct option_port_private *portdata; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 449 | |
| 450 | portdata = usb_get_serial_port_data(port); |
| 451 | |
| 452 | value = ((portdata->rts_state) ? TIOCM_RTS : 0) | |
| 453 | ((portdata->dtr_state) ? TIOCM_DTR : 0) | |
| 454 | ((portdata->cts_state) ? TIOCM_CTS : 0) | |
| 455 | ((portdata->dsr_state) ? TIOCM_DSR : 0) | |
| 456 | ((portdata->dcd_state) ? TIOCM_CAR : 0) | |
| 457 | ((portdata->ri_state) ? TIOCM_RNG : 0); |
| 458 | |
| 459 | return value; |
| 460 | } |
| 461 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 462 | static int option_tiocmset(struct usb_serial_port *port, struct file *file, |
| 463 | unsigned int set, unsigned int clear) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 464 | { |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 465 | struct option_port_private *portdata; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 466 | |
| 467 | portdata = usb_get_serial_port_data(port); |
| 468 | |
Alan Cox | e298449 | 2008-02-20 20:51:45 +0000 | [diff] [blame] | 469 | /* FIXME: what locks portdata fields ? */ |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 470 | if (set & TIOCM_RTS) |
| 471 | portdata->rts_state = 1; |
| 472 | if (set & TIOCM_DTR) |
| 473 | portdata->dtr_state = 1; |
| 474 | |
| 475 | if (clear & TIOCM_RTS) |
| 476 | portdata->rts_state = 0; |
| 477 | if (clear & TIOCM_DTR) |
| 478 | portdata->dtr_state = 0; |
| 479 | return option_send_setup(port); |
| 480 | } |
| 481 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 482 | static int option_ioctl(struct usb_serial_port *port, struct file *file, |
| 483 | unsigned int cmd, unsigned long arg) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 484 | { |
| 485 | return -ENOIOCTLCMD; |
| 486 | } |
| 487 | |
| 488 | /* Write */ |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 489 | static int option_write(struct usb_serial_port *port, |
| 490 | const unsigned char *buf, int count) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 491 | { |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 492 | struct option_port_private *portdata; |
| 493 | int i; |
| 494 | int left, todo; |
| 495 | struct urb *this_urb = NULL; /* spurious */ |
| 496 | int err; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 497 | |
| 498 | portdata = usb_get_serial_port_data(port); |
| 499 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 500 | dbg("%s: write (%d chars)", __func__, count); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 501 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 502 | i = 0; |
| 503 | left = count; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 504 | for (i=0; left > 0 && i < N_OUT_URB; i++) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 505 | todo = left; |
| 506 | if (todo > OUT_BUFLEN) |
| 507 | todo = OUT_BUFLEN; |
| 508 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 509 | this_urb = portdata->out_urbs[i]; |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 510 | if (test_and_set_bit(i, &portdata->out_busy)) { |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 511 | if (time_before(jiffies, |
| 512 | portdata->tx_start_time[i] + 10 * HZ)) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 513 | continue; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 514 | usb_unlink_urb(this_urb); |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 515 | continue; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 516 | } |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 517 | if (this_urb->status != 0) |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 518 | dbg("usb_write %p failed (err=%d)", |
| 519 | this_urb, this_urb->status); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 520 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 521 | dbg("%s: endpoint %d buf %d", __func__, |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 522 | usb_pipeendpoint(this_urb->pipe), i); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 523 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 524 | /* send the data */ |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 525 | memcpy (this_urb->transfer_buffer, buf, todo); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 526 | this_urb->transfer_buffer_length = todo; |
| 527 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 528 | this_urb->dev = port->serial->dev; |
| 529 | err = usb_submit_urb(this_urb, GFP_ATOMIC); |
| 530 | if (err) { |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 531 | dbg("usb_submit_urb %p (write bulk) failed " |
| 532 | "(%d, has %d)", this_urb, |
| 533 | err, this_urb->status); |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 534 | clear_bit(i, &portdata->out_busy); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 535 | continue; |
| 536 | } |
| 537 | portdata->tx_start_time[i] = jiffies; |
| 538 | buf += todo; |
| 539 | left -= todo; |
| 540 | } |
| 541 | |
| 542 | count -= left; |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 543 | dbg("%s: wrote (did %d)", __func__, count); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 544 | return count; |
| 545 | } |
| 546 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 547 | static void option_indat_callback(struct urb *urb) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 548 | { |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 549 | int err; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 550 | int endpoint; |
| 551 | struct usb_serial_port *port; |
| 552 | struct tty_struct *tty; |
| 553 | unsigned char *data = urb->transfer_buffer; |
Greg Kroah-Hartman | d6977b5 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 554 | int status = urb->status; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 555 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 556 | dbg("%s: %p", __func__, urb); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 557 | |
| 558 | endpoint = usb_pipeendpoint(urb->pipe); |
Ming Lei | cdc9779 | 2008-02-24 18:41:47 +0800 | [diff] [blame] | 559 | port = urb->context; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 560 | |
Greg Kroah-Hartman | d6977b5 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 561 | if (status) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 562 | dbg("%s: nonzero status: %d on endpoint %02x.", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 563 | __func__, status, endpoint); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 564 | } else { |
| 565 | tty = port->tty; |
| 566 | if (urb->actual_length) { |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 567 | tty_buffer_request_room(tty, urb->actual_length); |
| 568 | tty_insert_flip_string(tty, data, urb->actual_length); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 569 | tty_flip_buffer_push(tty); |
| 570 | } else { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 571 | dbg("%s: empty read urb received", __func__); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 572 | } |
| 573 | |
| 574 | /* Resubmit urb so we continue receiving */ |
Greg Kroah-Hartman | d6977b5 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 575 | if (port->open_count && status != -ESHUTDOWN) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 576 | err = usb_submit_urb(urb, GFP_ATOMIC); |
| 577 | if (err) |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 578 | printk(KERN_ERR "%s: resubmit read urb failed. " |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 579 | "(%d)", __func__, err); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 580 | } |
| 581 | } |
| 582 | return; |
| 583 | } |
| 584 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 585 | static void option_outdat_callback(struct urb *urb) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 586 | { |
| 587 | struct usb_serial_port *port; |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 588 | struct option_port_private *portdata; |
| 589 | int i; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 590 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 591 | dbg("%s", __func__); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 592 | |
Ming Lei | cdc9779 | 2008-02-24 18:41:47 +0800 | [diff] [blame] | 593 | port = urb->context; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 594 | |
Pete Zaitcev | cf2c748 | 2006-05-22 21:58:49 -0700 | [diff] [blame] | 595 | usb_serial_port_softint(port); |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 596 | |
| 597 | portdata = usb_get_serial_port_data(port); |
| 598 | for (i = 0; i < N_OUT_URB; ++i) { |
| 599 | if (portdata->out_urbs[i] == urb) { |
| 600 | smp_mb__before_clear_bit(); |
| 601 | clear_bit(i, &portdata->out_busy); |
| 602 | break; |
| 603 | } |
| 604 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 605 | } |
| 606 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 607 | static void option_instat_callback(struct urb *urb) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 608 | { |
| 609 | int err; |
Greg Kroah-Hartman | d6977b5 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 610 | int status = urb->status; |
Ming Lei | cdc9779 | 2008-02-24 18:41:47 +0800 | [diff] [blame] | 611 | struct usb_serial_port *port = urb->context; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 612 | struct option_port_private *portdata = usb_get_serial_port_data(port); |
| 613 | struct usb_serial *serial = port->serial; |
| 614 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 615 | dbg("%s", __func__); |
| 616 | dbg("%s: urb %p port %p has data %p", __func__,urb,port,portdata); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 617 | |
Greg Kroah-Hartman | d6977b5 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 618 | if (status == 0) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 619 | struct usb_ctrlrequest *req_pkt = |
| 620 | (struct usb_ctrlrequest *)urb->transfer_buffer; |
| 621 | |
| 622 | if (!req_pkt) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 623 | dbg("%s: NULL req_pkt\n", __func__); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 624 | return; |
| 625 | } |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 626 | if ((req_pkt->bRequestType == 0xA1) && |
| 627 | (req_pkt->bRequest == 0x20)) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 628 | int old_dcd_state; |
| 629 | unsigned char signals = *((unsigned char *) |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 630 | urb->transfer_buffer + |
| 631 | sizeof(struct usb_ctrlrequest)); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 632 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 633 | dbg("%s: signal x%x", __func__, signals); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 634 | |
| 635 | old_dcd_state = portdata->dcd_state; |
| 636 | portdata->cts_state = 1; |
| 637 | portdata->dcd_state = ((signals & 0x01) ? 1 : 0); |
| 638 | portdata->dsr_state = ((signals & 0x02) ? 1 : 0); |
| 639 | portdata->ri_state = ((signals & 0x08) ? 1 : 0); |
| 640 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 641 | if (port->tty && !C_CLOCAL(port->tty) && |
| 642 | old_dcd_state && !portdata->dcd_state) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 643 | tty_hangup(port->tty); |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 644 | } else { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 645 | dbg("%s: type %x req %x", __func__, |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 646 | req_pkt->bRequestType,req_pkt->bRequest); |
| 647 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 648 | } else |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 649 | dbg("%s: error %d", __func__, status); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 650 | |
| 651 | /* Resubmit urb so we continue receiving IRQ data */ |
Greg Kroah-Hartman | d6977b5 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 652 | if (status != -ESHUTDOWN) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 653 | urb->dev = serial->dev; |
| 654 | err = usb_submit_urb(urb, GFP_ATOMIC); |
| 655 | if (err) |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 656 | dbg("%s: resubmit intr urb failed. (%d)", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 657 | __func__, err); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 658 | } |
| 659 | } |
| 660 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 661 | static int option_write_room(struct usb_serial_port *port) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 662 | { |
| 663 | struct option_port_private *portdata; |
| 664 | int i; |
| 665 | int data_len = 0; |
| 666 | struct urb *this_urb; |
| 667 | |
| 668 | portdata = usb_get_serial_port_data(port); |
| 669 | |
Alan Cox | a5b6f60 | 2008-04-08 17:16:06 +0100 | [diff] [blame] | 670 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 671 | for (i=0; i < N_OUT_URB; i++) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 672 | this_urb = portdata->out_urbs[i]; |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 673 | if (this_urb && !test_bit(i, &portdata->out_busy)) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 674 | data_len += OUT_BUFLEN; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 675 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 676 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 677 | dbg("%s: %d", __func__, data_len); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 678 | return data_len; |
| 679 | } |
| 680 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 681 | static int option_chars_in_buffer(struct usb_serial_port *port) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 682 | { |
| 683 | struct option_port_private *portdata; |
| 684 | int i; |
| 685 | int data_len = 0; |
| 686 | struct urb *this_urb; |
| 687 | |
| 688 | portdata = usb_get_serial_port_data(port); |
| 689 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 690 | for (i=0; i < N_OUT_URB; i++) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 691 | this_urb = portdata->out_urbs[i]; |
Alan Cox | a5b6f60 | 2008-04-08 17:16:06 +0100 | [diff] [blame] | 692 | /* FIXME: This locking is insufficient as this_urb may |
| 693 | go unused during the test */ |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 694 | if (this_urb && test_bit(i, &portdata->out_busy)) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 695 | data_len += this_urb->transfer_buffer_length; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 696 | } |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 697 | dbg("%s: %d", __func__, data_len); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 698 | return data_len; |
| 699 | } |
| 700 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 701 | static int option_open(struct usb_serial_port *port, struct file *filp) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 702 | { |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 703 | struct option_port_private *portdata; |
| 704 | struct usb_serial *serial = port->serial; |
| 705 | int i, err; |
| 706 | struct urb *urb; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 707 | |
| 708 | portdata = usb_get_serial_port_data(port); |
| 709 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 710 | dbg("%s", __func__); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 711 | |
| 712 | /* Set some sane defaults */ |
| 713 | portdata->rts_state = 1; |
| 714 | portdata->dtr_state = 1; |
| 715 | |
| 716 | /* Reset low level data toggle and start reading from endpoints */ |
| 717 | for (i = 0; i < N_IN_URB; i++) { |
| 718 | urb = portdata->in_urbs[i]; |
| 719 | if (! urb) |
| 720 | continue; |
| 721 | if (urb->dev != serial->dev) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 722 | dbg("%s: dev %p != %p", __func__, |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 723 | urb->dev, serial->dev); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 724 | continue; |
| 725 | } |
| 726 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 727 | /* |
| 728 | * make sure endpoint data toggle is synchronized with the |
| 729 | * device |
| 730 | */ |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 731 | usb_clear_halt(urb->dev, urb->pipe); |
| 732 | |
| 733 | err = usb_submit_urb(urb, GFP_KERNEL); |
| 734 | if (err) { |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 735 | dbg("%s: submit urb %d failed (%d) %d", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 736 | __func__, i, err, |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 737 | urb->transfer_buffer_length); |
| 738 | } |
| 739 | } |
| 740 | |
| 741 | /* Reset low level data toggle on out endpoints */ |
| 742 | for (i = 0; i < N_OUT_URB; i++) { |
| 743 | urb = portdata->out_urbs[i]; |
| 744 | if (! urb) |
| 745 | continue; |
| 746 | urb->dev = serial->dev; |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 747 | /* usb_settoggle(urb->dev, usb_pipeendpoint(urb->pipe), |
| 748 | usb_pipeout(urb->pipe), 0); */ |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 749 | } |
| 750 | |
| 751 | port->tty->low_latency = 1; |
| 752 | |
| 753 | option_send_setup(port); |
| 754 | |
| 755 | return (0); |
| 756 | } |
| 757 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 758 | static void option_close(struct usb_serial_port *port, struct file *filp) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 759 | { |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 760 | int i; |
| 761 | struct usb_serial *serial = port->serial; |
| 762 | struct option_port_private *portdata; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 763 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 764 | dbg("%s", __func__); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 765 | portdata = usb_get_serial_port_data(port); |
| 766 | |
| 767 | portdata->rts_state = 0; |
| 768 | portdata->dtr_state = 0; |
| 769 | |
| 770 | if (serial->dev) { |
Oliver Neukum | e33fe4d | 2008-01-21 17:44:10 +0100 | [diff] [blame] | 771 | mutex_lock(&serial->disc_mutex); |
| 772 | if (!serial->disconnected) |
| 773 | option_send_setup(port); |
| 774 | mutex_unlock(&serial->disc_mutex); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 775 | |
| 776 | /* Stop reading/writing urbs */ |
| 777 | for (i = 0; i < N_IN_URB; i++) |
Oliver Neukum | 7d28e74 | 2007-03-20 13:41:21 +0100 | [diff] [blame] | 778 | usb_kill_urb(portdata->in_urbs[i]); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 779 | for (i = 0; i < N_OUT_URB; i++) |
Oliver Neukum | 7d28e74 | 2007-03-20 13:41:21 +0100 | [diff] [blame] | 780 | usb_kill_urb(portdata->out_urbs[i]); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 781 | } |
| 782 | port->tty = NULL; |
| 783 | } |
| 784 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 785 | /* Helper functions used by option_setup_urbs */ |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 786 | static struct urb *option_setup_urb(struct usb_serial *serial, int endpoint, |
| 787 | int dir, void *ctx, char *buf, int len, |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 788 | void (*callback)(struct urb *)) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 789 | { |
| 790 | struct urb *urb; |
| 791 | |
| 792 | if (endpoint == -1) |
| 793 | return NULL; /* endpoint not needed */ |
| 794 | |
| 795 | urb = usb_alloc_urb(0, GFP_KERNEL); /* No ISO */ |
| 796 | if (urb == NULL) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 797 | dbg("%s: alloc for endpoint %d failed.", __func__, endpoint); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 798 | return NULL; |
| 799 | } |
| 800 | |
| 801 | /* Fill URB using supplied data. */ |
| 802 | usb_fill_bulk_urb(urb, serial->dev, |
| 803 | usb_sndbulkpipe(serial->dev, endpoint) | dir, |
| 804 | buf, len, callback, ctx); |
| 805 | |
| 806 | return urb; |
| 807 | } |
| 808 | |
| 809 | /* Setup urbs */ |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 810 | static void option_setup_urbs(struct usb_serial *serial) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 811 | { |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 812 | int i,j; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 813 | struct usb_serial_port *port; |
| 814 | struct option_port_private *portdata; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 815 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 816 | dbg("%s", __func__); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 817 | |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 818 | for (i = 0; i < serial->num_ports; i++) { |
| 819 | port = serial->port[i]; |
| 820 | portdata = usb_get_serial_port_data(port); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 821 | |
| 822 | /* Do indat endpoints first */ |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 823 | for (j = 0; j < N_IN_URB; ++j) { |
| 824 | portdata->in_urbs[j] = option_setup_urb (serial, |
| 825 | port->bulk_in_endpointAddress, USB_DIR_IN, port, |
| 826 | portdata->in_buffer[j], IN_BUFLEN, option_indat_callback); |
| 827 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 828 | |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 829 | /* outdat endpoints */ |
| 830 | for (j = 0; j < N_OUT_URB; ++j) { |
| 831 | portdata->out_urbs[j] = option_setup_urb (serial, |
| 832 | port->bulk_out_endpointAddress, USB_DIR_OUT, port, |
| 833 | portdata->out_buffer[j], OUT_BUFLEN, option_outdat_callback); |
| 834 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 835 | } |
| 836 | } |
| 837 | |
Chris Collins | 5f76004 | 2008-04-10 10:15:53 +0200 | [diff] [blame] | 838 | |
| 839 | /** send RTS/DTR state to the port. |
| 840 | * |
| 841 | * This is exactly the same as SET_CONTROL_LINE_STATE from the PSTN |
| 842 | * CDC. |
| 843 | */ |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 844 | static int option_send_setup(struct usb_serial_port *port) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 845 | { |
| 846 | struct usb_serial *serial = port->serial; |
| 847 | struct option_port_private *portdata; |
Chris Collins | 5f76004 | 2008-04-10 10:15:53 +0200 | [diff] [blame] | 848 | int ifNum = serial->interface->cur_altsetting->desc.bInterfaceNumber; |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 849 | dbg("%s", __func__); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 850 | |
| 851 | portdata = usb_get_serial_port_data(port); |
| 852 | |
| 853 | if (port->tty) { |
| 854 | int val = 0; |
| 855 | if (portdata->dtr_state) |
| 856 | val |= 0x01; |
| 857 | if (portdata->rts_state) |
| 858 | val |= 0x02; |
| 859 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 860 | return usb_control_msg(serial->dev, |
| 861 | usb_rcvctrlpipe(serial->dev, 0), |
Chris Collins | 5f76004 | 2008-04-10 10:15:53 +0200 | [diff] [blame] | 862 | 0x22,0x21,val,ifNum,NULL,0,USB_CTRL_SET_TIMEOUT); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 863 | } |
| 864 | |
| 865 | return 0; |
| 866 | } |
| 867 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 868 | static int option_startup(struct usb_serial *serial) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 869 | { |
Oliver Neukum | 2129c4e | 2008-02-01 13:58:52 +0100 | [diff] [blame] | 870 | int i, j, err; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 871 | struct usb_serial_port *port; |
| 872 | struct option_port_private *portdata; |
Oliver Neukum | 2129c4e | 2008-02-01 13:58:52 +0100 | [diff] [blame] | 873 | u8 *buffer; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 874 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 875 | dbg("%s", __func__); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 876 | |
| 877 | /* Now setup per port private data */ |
| 878 | for (i = 0; i < serial->num_ports; i++) { |
| 879 | port = serial->port[i]; |
Eric Sesterhenn | 80b6ca4 | 2006-02-27 21:29:43 +0100 | [diff] [blame] | 880 | portdata = kzalloc(sizeof(*portdata), GFP_KERNEL); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 881 | if (!portdata) { |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 882 | dbg("%s: kmalloc for option_port_private (%d) failed!.", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 883 | __func__, i); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 884 | return (1); |
| 885 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 886 | |
Oliver Neukum | 2129c4e | 2008-02-01 13:58:52 +0100 | [diff] [blame] | 887 | for (j = 0; j < N_IN_URB; j++) { |
| 888 | buffer = (u8 *)__get_free_page(GFP_KERNEL); |
| 889 | if (!buffer) |
| 890 | goto bail_out_error; |
| 891 | portdata->in_buffer[j] = buffer; |
| 892 | } |
| 893 | |
| 894 | for (j = 0; j < N_OUT_URB; j++) { |
| 895 | buffer = kmalloc(OUT_BUFLEN, GFP_KERNEL); |
| 896 | if (!buffer) |
| 897 | goto bail_out_error2; |
| 898 | portdata->out_buffer[j] = buffer; |
| 899 | } |
| 900 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 901 | usb_set_serial_port_data(port, portdata); |
| 902 | |
| 903 | if (! port->interrupt_in_urb) |
| 904 | continue; |
| 905 | err = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL); |
| 906 | if (err) |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 907 | dbg("%s: submit irq_in urb failed %d", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 908 | __func__, err); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 909 | } |
| 910 | |
| 911 | option_setup_urbs(serial); |
| 912 | |
| 913 | return (0); |
Oliver Neukum | 2129c4e | 2008-02-01 13:58:52 +0100 | [diff] [blame] | 914 | |
| 915 | bail_out_error2: |
| 916 | for (j = 0; j < N_OUT_URB; j++) |
| 917 | kfree(portdata->out_buffer[j]); |
| 918 | bail_out_error: |
| 919 | for (j = 0; j < N_IN_URB; j++) |
| 920 | if (portdata->in_buffer[j]) |
| 921 | free_page((unsigned long)portdata->in_buffer[j]); |
| 922 | kfree(portdata); |
| 923 | return 1; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 924 | } |
| 925 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 926 | static void option_shutdown(struct usb_serial *serial) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 927 | { |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 928 | int i, j; |
| 929 | struct usb_serial_port *port; |
| 930 | struct option_port_private *portdata; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 931 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 932 | dbg("%s", __func__); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 933 | |
| 934 | /* Stop reading/writing urbs */ |
| 935 | for (i = 0; i < serial->num_ports; ++i) { |
| 936 | port = serial->port[i]; |
| 937 | portdata = usb_get_serial_port_data(port); |
| 938 | for (j = 0; j < N_IN_URB; j++) |
Oliver Neukum | 7d28e74 | 2007-03-20 13:41:21 +0100 | [diff] [blame] | 939 | usb_kill_urb(portdata->in_urbs[j]); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 940 | for (j = 0; j < N_OUT_URB; j++) |
Oliver Neukum | 7d28e74 | 2007-03-20 13:41:21 +0100 | [diff] [blame] | 941 | usb_kill_urb(portdata->out_urbs[j]); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 942 | } |
| 943 | |
| 944 | /* Now free them */ |
| 945 | for (i = 0; i < serial->num_ports; ++i) { |
| 946 | port = serial->port[i]; |
| 947 | portdata = usb_get_serial_port_data(port); |
| 948 | |
| 949 | for (j = 0; j < N_IN_URB; j++) { |
| 950 | if (portdata->in_urbs[j]) { |
| 951 | usb_free_urb(portdata->in_urbs[j]); |
Oliver Neukum | 2129c4e | 2008-02-01 13:58:52 +0100 | [diff] [blame] | 952 | free_page((unsigned long)portdata->in_buffer[j]); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 953 | portdata->in_urbs[j] = NULL; |
| 954 | } |
| 955 | } |
| 956 | for (j = 0; j < N_OUT_URB; j++) { |
| 957 | if (portdata->out_urbs[j]) { |
| 958 | usb_free_urb(portdata->out_urbs[j]); |
Oliver Neukum | 2129c4e | 2008-02-01 13:58:52 +0100 | [diff] [blame] | 959 | kfree(portdata->out_buffer[j]); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 960 | portdata->out_urbs[j] = NULL; |
| 961 | } |
| 962 | } |
| 963 | } |
| 964 | |
| 965 | /* Now free per port private data */ |
| 966 | for (i = 0; i < serial->num_ports; i++) { |
| 967 | port = serial->port[i]; |
| 968 | kfree(usb_get_serial_port_data(port)); |
| 969 | } |
| 970 | } |
| 971 | |
| 972 | MODULE_AUTHOR(DRIVER_AUTHOR); |
| 973 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 974 | MODULE_VERSION(DRIVER_VERSION); |
| 975 | MODULE_LICENSE("GPL"); |
| 976 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 977 | #ifdef CONFIG_USB_DEBUG |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 978 | module_param(debug, bool, S_IRUGO | S_IWUSR); |
| 979 | MODULE_PARM_DESC(debug, "Debug messages"); |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 980 | #endif |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 981 | |