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 */ |
Pascal Terjan | c5be1b5 | 2009-04-16 19:00:45 +0200 | [diff] [blame] | 46 | static int option_probe(struct usb_serial *serial, |
| 47 | const struct usb_device_id *id); |
Alan Cox | a509a7e | 2009-09-19 13:13:26 -0700 | [diff] [blame] | 48 | static int option_open(struct tty_struct *tty, struct usb_serial_port *port); |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 49 | static void option_close(struct usb_serial_port *port); |
| 50 | static void option_dtr_rts(struct usb_serial_port *port, int on); |
| 51 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 52 | static int option_startup(struct usb_serial *serial); |
Alan Stern | f9c99bb | 2009-06-02 11:53:55 -0400 | [diff] [blame] | 53 | static void option_disconnect(struct usb_serial *serial); |
| 54 | static void option_release(struct usb_serial *serial); |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 55 | static int option_write_room(struct tty_struct *tty); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 56 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 57 | static void option_instat_callback(struct urb *urb); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 58 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 59 | static int option_write(struct tty_struct *tty, struct usb_serial_port *port, |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 60 | const unsigned char *buf, int count); |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 61 | static int option_chars_in_buffer(struct tty_struct *tty); |
| 62 | static void option_set_termios(struct tty_struct *tty, |
| 63 | struct usb_serial_port *port, struct ktermios *old); |
| 64 | static int option_tiocmget(struct tty_struct *tty, struct file *file); |
| 65 | static int option_tiocmset(struct tty_struct *tty, struct file *file, |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 66 | unsigned int set, unsigned int clear); |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 67 | static int option_send_setup(struct usb_serial_port *port); |
Oliver Neukum | 5f4fab9 | 2009-07-13 23:24:10 +0200 | [diff] [blame] | 68 | #ifdef CONFIG_PM |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 69 | static int option_suspend(struct usb_serial *serial, pm_message_t message); |
| 70 | static int option_resume(struct usb_serial *serial); |
Oliver Neukum | 5f4fab9 | 2009-07-13 23:24:10 +0200 | [diff] [blame] | 71 | #endif |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 72 | |
| 73 | /* Vendor and product IDs */ |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 74 | #define OPTION_VENDOR_ID 0x0AF0 |
| 75 | #define OPTION_PRODUCT_COLT 0x5000 |
| 76 | #define OPTION_PRODUCT_RICOLA 0x6000 |
| 77 | #define OPTION_PRODUCT_RICOLA_LIGHT 0x6100 |
| 78 | #define OPTION_PRODUCT_RICOLA_QUAD 0x6200 |
| 79 | #define OPTION_PRODUCT_RICOLA_QUAD_LIGHT 0x6300 |
| 80 | #define OPTION_PRODUCT_RICOLA_NDIS 0x6050 |
| 81 | #define OPTION_PRODUCT_RICOLA_NDIS_LIGHT 0x6150 |
| 82 | #define OPTION_PRODUCT_RICOLA_NDIS_QUAD 0x6250 |
| 83 | #define OPTION_PRODUCT_RICOLA_NDIS_QUAD_LIGHT 0x6350 |
| 84 | #define OPTION_PRODUCT_COBRA 0x6500 |
| 85 | #define OPTION_PRODUCT_COBRA_BUS 0x6501 |
| 86 | #define OPTION_PRODUCT_VIPER 0x6600 |
| 87 | #define OPTION_PRODUCT_VIPER_BUS 0x6601 |
| 88 | #define OPTION_PRODUCT_GT_MAX_READY 0x6701 |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 89 | #define OPTION_PRODUCT_FUJI_MODEM_LIGHT 0x6721 |
| 90 | #define OPTION_PRODUCT_FUJI_MODEM_GT 0x6741 |
| 91 | #define OPTION_PRODUCT_FUJI_MODEM_EX 0x6761 |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 92 | #define OPTION_PRODUCT_KOI_MODEM 0x6800 |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 93 | #define OPTION_PRODUCT_SCORPION_MODEM 0x6901 |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 94 | #define OPTION_PRODUCT_ETNA_MODEM 0x7001 |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 95 | #define OPTION_PRODUCT_ETNA_MODEM_LITE 0x7021 |
| 96 | #define OPTION_PRODUCT_ETNA_MODEM_GT 0x7041 |
| 97 | #define OPTION_PRODUCT_ETNA_MODEM_EX 0x7061 |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 98 | #define OPTION_PRODUCT_ETNA_KOI_MODEM 0x7100 |
Achilleas Kotsis | e7f2f0d | 2009-03-16 16:35:02 +0200 | [diff] [blame] | 99 | #define OPTION_PRODUCT_GTM380_MODEM 0x7201 |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 100 | |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 101 | #define HUAWEI_VENDOR_ID 0x12D1 |
| 102 | #define HUAWEI_PRODUCT_E600 0x1001 |
| 103 | #define HUAWEI_PRODUCT_E220 0x1003 |
Jaime Velasco Juan | a3209a0 | 2007-09-07 19:06:39 +0100 | [diff] [blame] | 104 | #define HUAWEI_PRODUCT_E220BIS 0x1004 |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 105 | #define HUAWEI_PRODUCT_E1401 0x1401 |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 106 | #define HUAWEI_PRODUCT_E1402 0x1402 |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 107 | #define HUAWEI_PRODUCT_E1403 0x1403 |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 108 | #define HUAWEI_PRODUCT_E1404 0x1404 |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 109 | #define HUAWEI_PRODUCT_E1405 0x1405 |
| 110 | #define HUAWEI_PRODUCT_E1406 0x1406 |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 111 | #define HUAWEI_PRODUCT_E1407 0x1407 |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 112 | #define HUAWEI_PRODUCT_E1408 0x1408 |
| 113 | #define HUAWEI_PRODUCT_E1409 0x1409 |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 114 | #define HUAWEI_PRODUCT_E140A 0x140A |
| 115 | #define HUAWEI_PRODUCT_E140B 0x140B |
| 116 | #define HUAWEI_PRODUCT_E140C 0x140C |
| 117 | #define HUAWEI_PRODUCT_E140D 0x140D |
| 118 | #define HUAWEI_PRODUCT_E140E 0x140E |
| 119 | #define HUAWEI_PRODUCT_E140F 0x140F |
fangxiaozhi | aad8a27 | 2008-04-10 14:51:06 +0800 | [diff] [blame] | 120 | #define HUAWEI_PRODUCT_E1410 0x1410 |
| 121 | #define HUAWEI_PRODUCT_E1411 0x1411 |
| 122 | #define HUAWEI_PRODUCT_E1412 0x1412 |
| 123 | #define HUAWEI_PRODUCT_E1413 0x1413 |
| 124 | #define HUAWEI_PRODUCT_E1414 0x1414 |
| 125 | #define HUAWEI_PRODUCT_E1415 0x1415 |
| 126 | #define HUAWEI_PRODUCT_E1416 0x1416 |
| 127 | #define HUAWEI_PRODUCT_E1417 0x1417 |
| 128 | #define HUAWEI_PRODUCT_E1418 0x1418 |
| 129 | #define HUAWEI_PRODUCT_E1419 0x1419 |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 130 | #define HUAWEI_PRODUCT_E141A 0x141A |
| 131 | #define HUAWEI_PRODUCT_E141B 0x141B |
| 132 | #define HUAWEI_PRODUCT_E141C 0x141C |
| 133 | #define HUAWEI_PRODUCT_E141D 0x141D |
| 134 | #define HUAWEI_PRODUCT_E141E 0x141E |
| 135 | #define HUAWEI_PRODUCT_E141F 0x141F |
| 136 | #define HUAWEI_PRODUCT_E1420 0x1420 |
| 137 | #define HUAWEI_PRODUCT_E1421 0x1421 |
| 138 | #define HUAWEI_PRODUCT_E1422 0x1422 |
| 139 | #define HUAWEI_PRODUCT_E1423 0x1423 |
| 140 | #define HUAWEI_PRODUCT_E1424 0x1424 |
| 141 | #define HUAWEI_PRODUCT_E1425 0x1425 |
| 142 | #define HUAWEI_PRODUCT_E1426 0x1426 |
| 143 | #define HUAWEI_PRODUCT_E1427 0x1427 |
| 144 | #define HUAWEI_PRODUCT_E1428 0x1428 |
| 145 | #define HUAWEI_PRODUCT_E1429 0x1429 |
| 146 | #define HUAWEI_PRODUCT_E142A 0x142A |
| 147 | #define HUAWEI_PRODUCT_E142B 0x142B |
| 148 | #define HUAWEI_PRODUCT_E142C 0x142C |
| 149 | #define HUAWEI_PRODUCT_E142D 0x142D |
| 150 | #define HUAWEI_PRODUCT_E142E 0x142E |
| 151 | #define HUAWEI_PRODUCT_E142F 0x142F |
| 152 | #define HUAWEI_PRODUCT_E1430 0x1430 |
| 153 | #define HUAWEI_PRODUCT_E1431 0x1431 |
| 154 | #define HUAWEI_PRODUCT_E1432 0x1432 |
| 155 | #define HUAWEI_PRODUCT_E1433 0x1433 |
| 156 | #define HUAWEI_PRODUCT_E1434 0x1434 |
| 157 | #define HUAWEI_PRODUCT_E1435 0x1435 |
| 158 | #define HUAWEI_PRODUCT_E1436 0x1436 |
| 159 | #define HUAWEI_PRODUCT_E1437 0x1437 |
| 160 | #define HUAWEI_PRODUCT_E1438 0x1438 |
| 161 | #define HUAWEI_PRODUCT_E1439 0x1439 |
| 162 | #define HUAWEI_PRODUCT_E143A 0x143A |
| 163 | #define HUAWEI_PRODUCT_E143B 0x143B |
| 164 | #define HUAWEI_PRODUCT_E143C 0x143C |
| 165 | #define HUAWEI_PRODUCT_E143D 0x143D |
| 166 | #define HUAWEI_PRODUCT_E143E 0x143E |
| 167 | #define HUAWEI_PRODUCT_E143F 0x143F |
Ronnie Furuskog | 0ee3a33 | 2009-09-21 21:20:55 +0200 | [diff] [blame] | 168 | #define HUAWEI_PRODUCT_E14AC 0x14AC |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 169 | |
Alex.Cheng@quantatw.com | fc91be2 | 2009-01-22 16:01:57 +0800 | [diff] [blame] | 170 | #define QUANTA_VENDOR_ID 0x0408 |
| 171 | #define QUANTA_PRODUCT_Q101 0xEA02 |
| 172 | #define QUANTA_PRODUCT_Q111 0xEA03 |
| 173 | #define QUANTA_PRODUCT_GLX 0xEA04 |
| 174 | #define QUANTA_PRODUCT_GKE 0xEA05 |
| 175 | #define QUANTA_PRODUCT_GLE 0xEA06 |
| 176 | |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 177 | #define NOVATELWIRELESS_VENDOR_ID 0x1410 |
Dirk DeSchepper | 72ab641 | 2008-03-05 08:26:18 +0000 | [diff] [blame] | 178 | |
Leslie Watter | c6206fa | 2008-11-12 15:10:07 -0200 | [diff] [blame] | 179 | /* YISO PRODUCTS */ |
| 180 | |
| 181 | #define YISO_VENDOR_ID 0x0EAB |
| 182 | #define YISO_PRODUCT_U893 0xC893 |
| 183 | |
Dirk DeSchepper | 72ab641 | 2008-03-05 08:26:18 +0000 | [diff] [blame] | 184 | /* MERLIN EVDO PRODUCTS */ |
| 185 | #define NOVATELWIRELESS_PRODUCT_V640 0x1100 |
| 186 | #define NOVATELWIRELESS_PRODUCT_V620 0x1110 |
| 187 | #define NOVATELWIRELESS_PRODUCT_V740 0x1120 |
| 188 | #define NOVATELWIRELESS_PRODUCT_V720 0x1130 |
| 189 | |
| 190 | /* MERLIN HSDPA/HSPA PRODUCTS */ |
| 191 | #define NOVATELWIRELESS_PRODUCT_U730 0x1400 |
| 192 | #define NOVATELWIRELESS_PRODUCT_U740 0x1410 |
| 193 | #define NOVATELWIRELESS_PRODUCT_U870 0x1420 |
| 194 | #define NOVATELWIRELESS_PRODUCT_XU870 0x1430 |
| 195 | #define NOVATELWIRELESS_PRODUCT_X950D 0x1450 |
| 196 | |
| 197 | /* EXPEDITE PRODUCTS */ |
| 198 | #define NOVATELWIRELESS_PRODUCT_EV620 0x2100 |
| 199 | #define NOVATELWIRELESS_PRODUCT_ES720 0x2110 |
| 200 | #define NOVATELWIRELESS_PRODUCT_E725 0x2120 |
Matthias Urlichs | a1d9bc1 | 2008-04-10 10:13:32 +0200 | [diff] [blame] | 201 | #define NOVATELWIRELESS_PRODUCT_ES620 0x2130 |
Dirk DeSchepper | 72ab641 | 2008-03-05 08:26:18 +0000 | [diff] [blame] | 202 | #define NOVATELWIRELESS_PRODUCT_EU730 0x2400 |
| 203 | #define NOVATELWIRELESS_PRODUCT_EU740 0x2410 |
| 204 | #define NOVATELWIRELESS_PRODUCT_EU870D 0x2420 |
| 205 | |
| 206 | /* OVATION PRODUCTS */ |
| 207 | #define NOVATELWIRELESS_PRODUCT_MC727 0x4100 |
| 208 | #define NOVATELWIRELESS_PRODUCT_MC950D 0x4400 |
Dirk Hohndel | 56a21827 | 2009-03-14 20:47:39 -0700 | [diff] [blame] | 209 | #define NOVATELWIRELESS_PRODUCT_U727 0x5010 |
Tim Gardner | f1469fc | 2009-07-17 07:55:36 -0600 | [diff] [blame] | 210 | #define NOVATELWIRELESS_PRODUCT_MC727_NEW 0x5100 |
Richard Laager | 9685a59 | 2009-04-26 20:56:20 -0500 | [diff] [blame] | 211 | #define NOVATELWIRELESS_PRODUCT_MC760 0x6000 |
Dan Williams | 71f9f6c | 2009-06-30 16:09:28 -0400 | [diff] [blame] | 212 | #define NOVATELWIRELESS_PRODUCT_OVMC760 0x6002 |
Dirk DeSchepper | 72ab641 | 2008-03-05 08:26:18 +0000 | [diff] [blame] | 213 | |
| 214 | /* FUTURE NOVATEL PRODUCTS */ |
Dirk De Schepper | c200b9c | 2009-02-06 20:48:34 +0000 | [diff] [blame] | 215 | #define NOVATELWIRELESS_PRODUCT_EVDO_HIGHSPEED 0X6001 |
| 216 | #define NOVATELWIRELESS_PRODUCT_HSPA_FULLSPEED 0X7000 |
| 217 | #define NOVATELWIRELESS_PRODUCT_HSPA_HIGHSPEED 0X7001 |
| 218 | #define NOVATELWIRELESS_PRODUCT_EVDO_EMBEDDED_FULLSPEED 0X8000 |
| 219 | #define NOVATELWIRELESS_PRODUCT_EVDO_EMBEDDED_HIGHSPEED 0X8001 |
| 220 | #define NOVATELWIRELESS_PRODUCT_HSPA_EMBEDDED_FULLSPEED 0X9000 |
| 221 | #define NOVATELWIRELESS_PRODUCT_HSPA_EMBEDDED_HIGHSPEED 0X9001 |
| 222 | #define NOVATELWIRELESS_PRODUCT_GLOBAL 0XA001 |
Dirk DeSchepper | 72ab641 | 2008-03-05 08:26:18 +0000 | [diff] [blame] | 223 | |
tang kai | 32147be | 2008-04-14 10:06:35 +0800 | [diff] [blame] | 224 | /* AMOI PRODUCTS */ |
| 225 | #define AMOI_VENDOR_ID 0x1614 |
| 226 | #define AMOI_PRODUCT_H01 0x0800 |
| 227 | #define AMOI_PRODUCT_H01A 0x7002 |
| 228 | #define AMOI_PRODUCT_H02 0x0802 |
| 229 | |
Faidon Liambotis | 9644321 | 2007-08-07 05:46:05 +0300 | [diff] [blame] | 230 | #define DELL_VENDOR_ID 0x413C |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 231 | |
Dirk De Schepper | c200b9c | 2009-02-06 20:48:34 +0000 | [diff] [blame] | 232 | /* Dell modems */ |
| 233 | #define DELL_PRODUCT_5700_MINICARD 0x8114 |
| 234 | #define DELL_PRODUCT_5500_MINICARD 0x8115 |
| 235 | #define DELL_PRODUCT_5505_MINICARD 0x8116 |
| 236 | #define DELL_PRODUCT_5700_EXPRESSCARD 0x8117 |
| 237 | #define DELL_PRODUCT_5510_EXPRESSCARD 0x8118 |
| 238 | |
| 239 | #define DELL_PRODUCT_5700_MINICARD_SPRINT 0x8128 |
| 240 | #define DELL_PRODUCT_5700_MINICARD_TELUS 0x8129 |
| 241 | |
| 242 | #define DELL_PRODUCT_5720_MINICARD_VZW 0x8133 |
| 243 | #define DELL_PRODUCT_5720_MINICARD_SPRINT 0x8134 |
| 244 | #define DELL_PRODUCT_5720_MINICARD_TELUS 0x8135 |
| 245 | #define DELL_PRODUCT_5520_MINICARD_CINGULAR 0x8136 |
| 246 | #define DELL_PRODUCT_5520_MINICARD_GENERIC_L 0x8137 |
| 247 | #define DELL_PRODUCT_5520_MINICARD_GENERIC_I 0x8138 |
| 248 | |
| 249 | #define DELL_PRODUCT_5730_MINICARD_SPRINT 0x8180 |
| 250 | #define DELL_PRODUCT_5730_MINICARD_TELUS 0x8181 |
| 251 | #define DELL_PRODUCT_5730_MINICARD_VZW 0x8182 |
| 252 | |
Dan Williams | 564d61d | 2008-02-19 13:15:30 -0500 | [diff] [blame] | 253 | #define KYOCERA_VENDOR_ID 0x0c88 |
Greg Kroah-Hartman | 640c1bc | 2008-06-19 11:21:16 -0700 | [diff] [blame] | 254 | #define KYOCERA_PRODUCT_KPC650 0x17da |
Dan Williams | 564d61d | 2008-02-19 13:15:30 -0500 | [diff] [blame] | 255 | #define KYOCERA_PRODUCT_KPC680 0x180a |
| 256 | |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 257 | #define ANYDATA_VENDOR_ID 0x16d5 |
Hiroshi Miura | f803382 | 2008-08-19 10:58:25 +0200 | [diff] [blame] | 258 | #define ANYDATA_PRODUCT_ADU_620UW 0x6202 |
Alexander Gattin | 46269db | 2007-06-20 00:48:10 +0300 | [diff] [blame] | 259 | #define ANYDATA_PRODUCT_ADU_E100A 0x6501 |
| 260 | #define ANYDATA_PRODUCT_ADU_500A 0x6502 |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 261 | |
Daniel Kozák | 85fb62a | 2008-03-04 18:54:53 +0100 | [diff] [blame] | 262 | #define AXESSTEL_VENDOR_ID 0x1726 |
| 263 | #define AXESSTEL_PRODUCT_MV110H 0x1000 |
| 264 | |
Leon Leong | 3f6e584 | 2007-04-26 00:38:02 -0700 | [diff] [blame] | 265 | #define BANDRICH_VENDOR_ID 0x1A8D |
| 266 | #define BANDRICH_PRODUCT_C100_1 0x1002 |
| 267 | #define BANDRICH_PRODUCT_C100_2 0x1003 |
Leon Leong | bf3fc82 | 2008-08-01 11:40:12 +0800 | [diff] [blame] | 268 | #define BANDRICH_PRODUCT_1004 0x1004 |
| 269 | #define BANDRICH_PRODUCT_1005 0x1005 |
| 270 | #define BANDRICH_PRODUCT_1006 0x1006 |
| 271 | #define BANDRICH_PRODUCT_1007 0x1007 |
| 272 | #define BANDRICH_PRODUCT_1008 0x1008 |
| 273 | #define BANDRICH_PRODUCT_1009 0x1009 |
| 274 | #define BANDRICH_PRODUCT_100A 0x100a |
| 275 | |
| 276 | #define BANDRICH_PRODUCT_100B 0x100b |
| 277 | #define BANDRICH_PRODUCT_100C 0x100c |
| 278 | #define BANDRICH_PRODUCT_100D 0x100d |
| 279 | #define BANDRICH_PRODUCT_100E 0x100e |
| 280 | |
| 281 | #define BANDRICH_PRODUCT_100F 0x100f |
| 282 | #define BANDRICH_PRODUCT_1010 0x1010 |
| 283 | #define BANDRICH_PRODUCT_1011 0x1011 |
| 284 | #define BANDRICH_PRODUCT_1012 0x1012 |
Leon Leong | 3f6e584 | 2007-04-26 00:38:02 -0700 | [diff] [blame] | 285 | |
Matthias Urlichs | a1d9bc1 | 2008-04-10 10:13:32 +0200 | [diff] [blame] | 286 | #define AMOI_VENDOR_ID 0x1614 |
| 287 | #define AMOI_PRODUCT_9508 0x0800 |
| 288 | |
Kevin Lloyd | d726fb7 | 2008-02-14 13:35:16 -0800 | [diff] [blame] | 289 | #define QUALCOMM_VENDOR_ID 0x05C6 |
| 290 | |
James Cameron | 80d9709 | 2008-04-09 18:59:13 +1000 | [diff] [blame] | 291 | #define MAXON_VENDOR_ID 0x16d8 |
| 292 | |
Greg Kroah-Hartman | ee53b0c | 2008-05-15 10:07:44 -0700 | [diff] [blame] | 293 | #define TELIT_VENDOR_ID 0x1bc7 |
| 294 | #define TELIT_PRODUCT_UC864E 0x1003 |
Manuel Lauss | ce60c48 | 2009-09-01 09:04:35 +0200 | [diff] [blame] | 295 | #define TELIT_PRODUCT_UC864G 0x1004 |
Greg Kroah-Hartman | ee53b0c | 2008-05-15 10:07:44 -0700 | [diff] [blame] | 296 | |
Oliver Martin | 6188a83 | 2008-08-09 04:49:26 +0200 | [diff] [blame] | 297 | /* ZTE PRODUCTS */ |
| 298 | #define ZTE_VENDOR_ID 0x19d2 |
Albert Pauw | 9ea19b8 | 2009-03-01 09:37:52 +0100 | [diff] [blame] | 299 | #define ZTE_PRODUCT_MF622 0x0001 |
Oliver Martin | 6188a83 | 2008-08-09 04:49:26 +0200 | [diff] [blame] | 300 | #define ZTE_PRODUCT_MF628 0x0015 |
Mikhail Gusarov | bfd8408 | 2008-10-18 18:20:02 +0700 | [diff] [blame] | 301 | #define ZTE_PRODUCT_MF626 0x0031 |
Otavio Salvador | 884579d | 2008-09-17 14:40:46 -0300 | [diff] [blame] | 302 | #define ZTE_PRODUCT_CDMA_TECH 0xfffe |
Peng Huang | 1837915 | 2009-07-22 11:54:48 +0200 | [diff] [blame] | 303 | #define ZTE_PRODUCT_AC8710 0xfff1 |
Huzaifa Sidhpurwala | a67d8e6 | 2009-09-01 10:07:41 +0530 | [diff] [blame] | 304 | #define ZTE_PRODUCT_AC2726 0xfff5 |
Oliver Martin | 6188a83 | 2008-08-09 04:49:26 +0200 | [diff] [blame] | 305 | |
Jesse Sung | 28fb668 | 2009-02-20 21:13:45 -0800 | [diff] [blame] | 306 | #define BENQ_VENDOR_ID 0x04a5 |
| 307 | #define BENQ_PRODUCT_H10 0x4068 |
| 308 | |
Pascal Terjan | c00deaa | 2009-04-07 14:40:42 +0200 | [diff] [blame] | 309 | #define DLINK_VENDOR_ID 0x1186 |
| 310 | #define DLINK_PRODUCT_DWM_652 0x3e04 |
Zhang Le | ff854ce | 2009-11-04 23:22:59 +0800 | [diff] [blame] | 311 | #define DLINK_PRODUCT_DWM_652_U5 0xce16 |
Pascal Terjan | c00deaa | 2009-04-07 14:40:42 +0200 | [diff] [blame] | 312 | |
Brad Lu | e3a3174 | 2009-06-16 18:04:00 +0800 | [diff] [blame] | 313 | #define QISDA_VENDOR_ID 0x1da5 |
| 314 | #define QISDA_PRODUCT_H21_4512 0x4512 |
| 315 | #define QISDA_PRODUCT_H21_4523 0x4523 |
| 316 | #define QISDA_PRODUCT_H20_4515 0x4515 |
| 317 | #define QISDA_PRODUCT_H20_4519 0x4519 |
| 318 | |
Bryan Wu | fead2ab | 2009-10-22 15:00:36 +0800 | [diff] [blame] | 319 | /* TLAYTECH PRODUCTS */ |
| 320 | #define TLAYTECH_VENDOR_ID 0x20B9 |
| 321 | #define TLAYTECH_PRODUCT_TEU800 0x1682 |
Pascal Terjan | c00deaa | 2009-04-07 14:40:42 +0200 | [diff] [blame] | 322 | |
Michele Valzelli | 334f9b0 | 2009-05-27 00:09:12 +0200 | [diff] [blame] | 323 | /* TOSHIBA PRODUCTS */ |
| 324 | #define TOSHIBA_VENDOR_ID 0x0930 |
| 325 | #define TOSHIBA_PRODUCT_HSDPA_MINICARD 0x1302 |
Peter Magdina | 75f4721 | 2009-10-07 16:22:17 +0200 | [diff] [blame] | 326 | #define TOSHIBA_PRODUCT_G450 0x0d45 |
Michele Valzelli | 334f9b0 | 2009-05-27 00:09:12 +0200 | [diff] [blame] | 327 | |
Anssi Hannula | c3325eb | 2009-07-06 19:08:59 +0300 | [diff] [blame] | 328 | #define ALINK_VENDOR_ID 0x1e0e |
| 329 | #define ALINK_PRODUCT_3GU 0x9200 |
| 330 | |
Javier Martin | 48c348c | 2009-07-23 04:03:43 +0200 | [diff] [blame] | 331 | /* ALCATEL PRODUCTS */ |
| 332 | #define ALCATEL_VENDOR_ID 0x1bbb |
| 333 | #define ALCATEL_PRODUCT_X060S 0x0000 |
| 334 | |
Huzaifa Sidhpurwala | 12148da | 2009-10-12 14:34:45 +0530 | [diff] [blame] | 335 | /* Airplus products */ |
| 336 | #define AIRPLUS_VENDOR_ID 0x1011 |
| 337 | #define AIRPLUS_PRODUCT_MCD650 0x3198 |
Javier Martin | 48c348c | 2009-07-23 04:03:43 +0200 | [diff] [blame] | 338 | |
Gernot Hillier | 0ec8648 | 2009-11-27 13:49:23 +0100 | [diff] [blame] | 339 | /* 4G Systems products */ |
| 340 | #define FOUR_G_SYSTEMS_VENDOR_ID 0x1c9e |
Gernot Hillier | 79da01d | 2010-01-11 09:06:44 +0100 | [diff] [blame] | 341 | /* This is the 4G XS Stick W14 a.k.a. Mobilcom Debitel Surf-Stick * |
| 342 | * It seems to contain a Qualcomm QSC6240/6290 chipset */ |
Gernot Hillier | 0ec8648 | 2009-11-27 13:49:23 +0100 | [diff] [blame] | 343 | #define FOUR_G_SYSTEMS_PRODUCT_W14 0x9603 |
| 344 | |
Donny Kurnia | c983202 | 2009-12-23 19:03:12 +0700 | [diff] [blame] | 345 | /* Haier products */ |
| 346 | #define HAIER_VENDOR_ID 0x201e |
| 347 | #define HAIER_PRODUCT_CE100 0x2009 |
| 348 | |
Gernot Hillier | cc175ce | 2010-01-11 09:30:00 +0100 | [diff] [blame] | 349 | /* some devices interfaces need special handling due to a number of reasons */ |
| 350 | enum option_blacklist_reason { |
| 351 | OPTION_BLACKLIST_NONE = 0, |
| 352 | OPTION_BLACKLIST_SENDSETUP = 1, |
| 353 | OPTION_BLACKLIST_RESERVED_IF = 2 |
| 354 | }; |
| 355 | |
| 356 | struct option_blacklist_info { |
| 357 | const u32 infolen; /* number of interface numbers on blacklist */ |
| 358 | const u8 *ifaceinfo; /* pointer to the array holding the numbers */ |
| 359 | enum option_blacklist_reason reason; |
| 360 | }; |
| 361 | |
Gernot Hillier | a741710 | 2010-01-11 09:35:17 +0100 | [diff] [blame] | 362 | static const u8 four_g_w14_no_sendsetup[] = { 0, 1 }; |
| 363 | static const struct option_blacklist_info four_g_w14_blacklist = { |
| 364 | .infolen = ARRAY_SIZE(four_g_w14_no_sendsetup), |
| 365 | .ifaceinfo = four_g_w14_no_sendsetup, |
| 366 | .reason = OPTION_BLACKLIST_SENDSETUP |
| 367 | }; |
| 368 | |
Németh Márton | 7d40d7e | 2010-01-10 15:34:24 +0100 | [diff] [blame] | 369 | static const struct usb_device_id option_ids[] = { |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 370 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COLT) }, |
| 371 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA) }, |
| 372 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_LIGHT) }, |
| 373 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_QUAD) }, |
| 374 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_QUAD_LIGHT) }, |
| 375 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS) }, |
| 376 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_LIGHT) }, |
| 377 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_QUAD) }, |
| 378 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_QUAD_LIGHT) }, |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 379 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA) }, |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 380 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA_BUS) }, |
| 381 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_VIPER) }, |
| 382 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_VIPER_BUS) }, |
| 383 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GT_MAX_READY) }, |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 384 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_LIGHT) }, |
| 385 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_GT) }, |
| 386 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_EX) }, |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 387 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_KOI_MODEM) }, |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 388 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_SCORPION_MODEM) }, |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 389 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM) }, |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 390 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_LITE) }, |
| 391 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_GT) }, |
| 392 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_EX) }, |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 393 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_KOI_MODEM) }, |
Achilleas Kotsis | e7f2f0d | 2009-03-16 16:35:02 +0200 | [diff] [blame] | 394 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GTM380_MODEM) }, |
Alex.Cheng@quantatw.com | fc91be2 | 2009-01-22 16:01:57 +0800 | [diff] [blame] | 395 | { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_Q101) }, |
| 396 | { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_Q111) }, |
| 397 | { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_GLX) }, |
| 398 | { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_GKE) }, |
| 399 | { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_GLE) }, |
Michael Karcher | a7f3872 | 2008-05-28 23:58:18 +0200 | [diff] [blame] | 400 | { 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] | 401 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220, 0xff, 0xff, 0xff) }, |
| 402 | { 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] | 403 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1401, 0xff, 0xff, 0xff) }, |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 404 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1402, 0xff, 0xff, 0xff) }, |
Michael Karcher | a7f3872 | 2008-05-28 23:58:18 +0200 | [diff] [blame] | 405 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1403, 0xff, 0xff, 0xff) }, |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 406 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1404, 0xff, 0xff, 0xff) }, |
Michael Karcher | a7f3872 | 2008-05-28 23:58:18 +0200 | [diff] [blame] | 407 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1405, 0xff, 0xff, 0xff) }, |
| 408 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1406, 0xff, 0xff, 0xff) }, |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 409 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1407, 0xff, 0xff, 0xff) }, |
Michael Karcher | a7f3872 | 2008-05-28 23:58:18 +0200 | [diff] [blame] | 410 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1408, 0xff, 0xff, 0xff) }, |
| 411 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1409, 0xff, 0xff, 0xff) }, |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 412 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E140A, 0xff, 0xff, 0xff) }, |
| 413 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E140B, 0xff, 0xff, 0xff) }, |
| 414 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E140C, 0xff, 0xff, 0xff) }, |
| 415 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E140D, 0xff, 0xff, 0xff) }, |
| 416 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E140E, 0xff, 0xff, 0xff) }, |
| 417 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E140F, 0xff, 0xff, 0xff) }, |
Michael Karcher | a7f3872 | 2008-05-28 23:58:18 +0200 | [diff] [blame] | 418 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1410, 0xff, 0xff, 0xff) }, |
| 419 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1411, 0xff, 0xff, 0xff) }, |
| 420 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1412, 0xff, 0xff, 0xff) }, |
| 421 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1413, 0xff, 0xff, 0xff) }, |
| 422 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1414, 0xff, 0xff, 0xff) }, |
| 423 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1415, 0xff, 0xff, 0xff) }, |
| 424 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1416, 0xff, 0xff, 0xff) }, |
| 425 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1417, 0xff, 0xff, 0xff) }, |
| 426 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1418, 0xff, 0xff, 0xff) }, |
| 427 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1419, 0xff, 0xff, 0xff) }, |
fangxiaozhi | 1460e5e | 2008-10-15 14:15:36 +0800 | [diff] [blame] | 428 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E141A, 0xff, 0xff, 0xff) }, |
| 429 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E141B, 0xff, 0xff, 0xff) }, |
| 430 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E141C, 0xff, 0xff, 0xff) }, |
| 431 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E141D, 0xff, 0xff, 0xff) }, |
| 432 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E141E, 0xff, 0xff, 0xff) }, |
| 433 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E141F, 0xff, 0xff, 0xff) }, |
| 434 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1420, 0xff, 0xff, 0xff) }, |
| 435 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1421, 0xff, 0xff, 0xff) }, |
| 436 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1422, 0xff, 0xff, 0xff) }, |
| 437 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1423, 0xff, 0xff, 0xff) }, |
| 438 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1424, 0xff, 0xff, 0xff) }, |
| 439 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1425, 0xff, 0xff, 0xff) }, |
| 440 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1426, 0xff, 0xff, 0xff) }, |
| 441 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1427, 0xff, 0xff, 0xff) }, |
| 442 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1428, 0xff, 0xff, 0xff) }, |
| 443 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1429, 0xff, 0xff, 0xff) }, |
| 444 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E142A, 0xff, 0xff, 0xff) }, |
| 445 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E142B, 0xff, 0xff, 0xff) }, |
| 446 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E142C, 0xff, 0xff, 0xff) }, |
| 447 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E142D, 0xff, 0xff, 0xff) }, |
| 448 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E142E, 0xff, 0xff, 0xff) }, |
| 449 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E142F, 0xff, 0xff, 0xff) }, |
| 450 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1430, 0xff, 0xff, 0xff) }, |
| 451 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1431, 0xff, 0xff, 0xff) }, |
| 452 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1432, 0xff, 0xff, 0xff) }, |
| 453 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1433, 0xff, 0xff, 0xff) }, |
| 454 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1434, 0xff, 0xff, 0xff) }, |
| 455 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1435, 0xff, 0xff, 0xff) }, |
| 456 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1436, 0xff, 0xff, 0xff) }, |
| 457 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1437, 0xff, 0xff, 0xff) }, |
| 458 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1438, 0xff, 0xff, 0xff) }, |
| 459 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1439, 0xff, 0xff, 0xff) }, |
| 460 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E143A, 0xff, 0xff, 0xff) }, |
| 461 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E143B, 0xff, 0xff, 0xff) }, |
| 462 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E143C, 0xff, 0xff, 0xff) }, |
| 463 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E143D, 0xff, 0xff, 0xff) }, |
| 464 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E143E, 0xff, 0xff, 0xff) }, |
| 465 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E143F, 0xff, 0xff, 0xff) }, |
Ronnie Furuskog | 0ee3a33 | 2009-09-21 21:20:55 +0200 | [diff] [blame] | 466 | { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E14AC) }, |
Matthias Urlichs | a1d9bc1 | 2008-04-10 10:13:32 +0200 | [diff] [blame] | 467 | { USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_9508) }, |
Dirk DeSchepper | 72ab641 | 2008-03-05 08:26:18 +0000 | [diff] [blame] | 468 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V640) }, /* Novatel Merlin V640/XV620 */ |
| 469 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V620) }, /* Novatel Merlin V620/S620 */ |
| 470 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V740) }, /* Novatel Merlin EX720/V740/X720 */ |
| 471 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V720) }, /* Novatel Merlin V720/S720/PC720 */ |
| 472 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_U730) }, /* Novatel U730/U740 (VF version) */ |
| 473 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_U740) }, /* Novatel U740 */ |
| 474 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_U870) }, /* Novatel U870 */ |
| 475 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_XU870) }, /* Novatel Merlin XU870 HSDPA/3G */ |
| 476 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_X950D) }, /* Novatel X950D */ |
| 477 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EV620) }, /* Novatel EV620/ES620 CDMA/EV-DO */ |
| 478 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_ES720) }, /* Novatel ES620/ES720/U720/USB720 */ |
| 479 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_E725) }, /* Novatel E725/E726 */ |
Matthias Urlichs | a1d9bc1 | 2008-04-10 10:13:32 +0200 | [diff] [blame] | 480 | { 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] | 481 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EU730) }, /* Novatel EU730 and Vodafone EU740 */ |
| 482 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EU740) }, /* Novatel non-Vodafone EU740 */ |
| 483 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EU870D) }, /* Novatel EU850D/EU860D/EU870D */ |
| 484 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_MC950D) }, /* Novatel MC930D/MC950D */ |
| 485 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_MC727) }, /* Novatel MC727/U727/USB727 */ |
Tim Gardner | f1469fc | 2009-07-17 07:55:36 -0600 | [diff] [blame] | 486 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_MC727_NEW) }, /* Novatel MC727/U727/USB727 refresh */ |
Dirk Hohndel | 56a21827 | 2009-03-14 20:47:39 -0700 | [diff] [blame] | 487 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_U727) }, /* Novatel MC727/U727/USB727 */ |
Richard Laager | 9685a59 | 2009-04-26 20:56:20 -0500 | [diff] [blame] | 488 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_MC760) }, /* Novatel MC760/U760/USB760 */ |
Dan Williams | 71f9f6c | 2009-06-30 16:09:28 -0400 | [diff] [blame] | 489 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_OVMC760) }, /* Novatel Ovation MC760 */ |
Dirk De Schepper | c200b9c | 2009-02-06 20:48:34 +0000 | [diff] [blame] | 490 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_HSPA_FULLSPEED) }, /* Novatel HSPA product */ |
| 491 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EVDO_EMBEDDED_FULLSPEED) }, /* Novatel EVDO Embedded product */ |
| 492 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_HSPA_EMBEDDED_FULLSPEED) }, /* Novatel HSPA Embedded product */ |
| 493 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EVDO_HIGHSPEED) }, /* Novatel EVDO product */ |
| 494 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_HSPA_HIGHSPEED) }, /* Novatel HSPA product */ |
| 495 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EVDO_EMBEDDED_HIGHSPEED) }, /* Novatel EVDO Embedded product */ |
| 496 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_HSPA_EMBEDDED_HIGHSPEED) }, /* Novatel HSPA Embedded product */ |
| 497 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_GLOBAL) }, /* Novatel Global product */ |
Dirk DeSchepper | 72ab641 | 2008-03-05 08:26:18 +0000 | [diff] [blame] | 498 | |
tang kai | 32147be | 2008-04-14 10:06:35 +0800 | [diff] [blame] | 499 | { USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_H01) }, |
| 500 | { USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_H01A) }, |
| 501 | { USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_H02) }, |
| 502 | |
Dirk De Schepper | c200b9c | 2009-02-06 20:48:34 +0000 | [diff] [blame] | 503 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5700_MINICARD) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO Mini-Card == Novatel Expedite EV620 CDMA/EV-DO */ |
| 504 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5500_MINICARD) }, /* Dell Wireless 5500 Mobile Broadband HSDPA Mini-Card == Novatel Expedite EU740 HSDPA/3G */ |
| 505 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5505_MINICARD) }, /* Dell Wireless 5505 Mobile Broadband HSDPA Mini-Card == Novatel Expedite EU740 HSDPA/3G */ |
| 506 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5700_EXPRESSCARD) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO ExpressCard == Novatel Merlin XV620 CDMA/EV-DO */ |
| 507 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5510_EXPRESSCARD) }, /* Dell Wireless 5510 Mobile Broadband HSDPA ExpressCard == Novatel Merlin XU870 HSDPA/3G */ |
| 508 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5700_MINICARD_SPRINT) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO Mini-Card == Novatel Expedite E720 CDMA/EV-DO */ |
| 509 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5700_MINICARD_TELUS) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO Mini-Card == Novatel Expedite ET620 CDMA/EV-DO */ |
| 510 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5720_MINICARD_VZW) }, /* Dell Wireless 5720 == Novatel EV620 CDMA/EV-DO */ |
| 511 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5720_MINICARD_SPRINT) }, /* Dell Wireless 5720 == Novatel EV620 CDMA/EV-DO */ |
| 512 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5720_MINICARD_TELUS) }, /* Dell Wireless 5720 == Novatel EV620 CDMA/EV-DO */ |
| 513 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5520_MINICARD_CINGULAR) }, /* Dell Wireless HSDPA 5520 == Novatel Expedite EU860D */ |
| 514 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5520_MINICARD_GENERIC_L) }, /* Dell Wireless HSDPA 5520 */ |
| 515 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5520_MINICARD_GENERIC_I) }, /* Dell Wireless 5520 Voda I Mobile Broadband (3G HSDPA) Minicard */ |
Dirk De Schepper | c200b9c | 2009-02-06 20:48:34 +0000 | [diff] [blame] | 516 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5730_MINICARD_SPRINT) }, /* Dell Wireless 5730 Mobile Broadband EVDO/HSPA Mini-Card */ |
| 517 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5730_MINICARD_TELUS) }, /* Dell Wireless 5730 Mobile Broadband EVDO/HSPA Mini-Card */ |
| 518 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5730_MINICARD_VZW) }, /* Dell Wireless 5730 Mobile Broadband EVDO/HSPA Mini-Card */ |
Jon K Hellan | bb78a82 | 2008-10-03 10:36:16 +0200 | [diff] [blame] | 519 | { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_E100A) }, /* ADU-E100, ADU-310 */ |
Alexander Gattin | 46269db | 2007-06-20 00:48:10 +0300 | [diff] [blame] | 520 | { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_500A) }, |
Hiroshi Miura | f803382 | 2008-08-19 10:58:25 +0200 | [diff] [blame] | 521 | { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_620UW) }, |
Daniel Kozák | 85fb62a | 2008-03-04 18:54:53 +0100 | [diff] [blame] | 522 | { USB_DEVICE(AXESSTEL_VENDOR_ID, AXESSTEL_PRODUCT_MV110H) }, |
Leslie Watter | c6206fa | 2008-11-12 15:10:07 -0200 | [diff] [blame] | 523 | { USB_DEVICE(YISO_VENDOR_ID, YISO_PRODUCT_U893) }, |
Leon Leong | 3f6e584 | 2007-04-26 00:38:02 -0700 | [diff] [blame] | 524 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_C100_1) }, |
| 525 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_C100_2) }, |
Leon Leong | bf3fc82 | 2008-08-01 11:40:12 +0800 | [diff] [blame] | 526 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1004) }, |
| 527 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1005) }, |
| 528 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1006) }, |
| 529 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1007) }, |
| 530 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1008) }, |
| 531 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1009) }, |
| 532 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100A) }, |
| 533 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100B) }, |
| 534 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100C) }, |
| 535 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100D) }, |
| 536 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100E) }, |
| 537 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100F) }, |
| 538 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1010) }, |
| 539 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1011) }, |
| 540 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1012) }, |
Greg Kroah-Hartman | 640c1bc | 2008-06-19 11:21:16 -0700 | [diff] [blame] | 541 | { USB_DEVICE(KYOCERA_VENDOR_ID, KYOCERA_PRODUCT_KPC650) }, |
Dan Williams | 564d61d | 2008-02-19 13:15:30 -0500 | [diff] [blame] | 542 | { USB_DEVICE(KYOCERA_VENDOR_ID, KYOCERA_PRODUCT_KPC680) }, |
Greg Kroah-Hartman | d2e2aff | 2008-07-01 13:11:56 +0530 | [diff] [blame] | 543 | { USB_DEVICE(QUALCOMM_VENDOR_ID, 0x6000)}, /* ZTE AC8700 */ |
Kevin Lloyd | d726fb7 | 2008-02-14 13:35:16 -0800 | [diff] [blame] | 544 | { USB_DEVICE(QUALCOMM_VENDOR_ID, 0x6613)}, /* Onda H600/ZTE MF330 */ |
James Cameron | 80d9709 | 2008-04-09 18:59:13 +1000 | [diff] [blame] | 545 | { USB_DEVICE(MAXON_VENDOR_ID, 0x6280) }, /* BP3-USB & BP3-EXT HSDPA */ |
Greg Kroah-Hartman | ee53b0c | 2008-05-15 10:07:44 -0700 | [diff] [blame] | 546 | { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_UC864E) }, |
Manuel Lauss | ce60c48 | 2009-09-01 09:04:35 +0200 | [diff] [blame] | 547 | { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_UC864G) }, |
Herton Ronaldo Krzesinski | c420bef | 2009-07-15 17:10:26 -0300 | [diff] [blame] | 548 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, ZTE_PRODUCT_MF622, 0xff, 0xff, 0xff) }, /* ZTE WCDMA products */ |
| 549 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0002, 0xff, 0xff, 0xff) }, |
| 550 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0003, 0xff, 0xff, 0xff) }, |
| 551 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0004, 0xff, 0xff, 0xff) }, |
| 552 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0005, 0xff, 0xff, 0xff) }, |
| 553 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0006, 0xff, 0xff, 0xff) }, |
| 554 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0007, 0xff, 0xff, 0xff) }, |
| 555 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0008, 0xff, 0xff, 0xff) }, |
| 556 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0009, 0xff, 0xff, 0xff) }, |
| 557 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x000a, 0xff, 0xff, 0xff) }, |
| 558 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x000b, 0xff, 0xff, 0xff) }, |
| 559 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x000c, 0xff, 0xff, 0xff) }, |
| 560 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x000d, 0xff, 0xff, 0xff) }, |
| 561 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x000e, 0xff, 0xff, 0xff) }, |
| 562 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x000f, 0xff, 0xff, 0xff) }, |
| 563 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0010, 0xff, 0xff, 0xff) }, |
| 564 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0011, 0xff, 0xff, 0xff) }, |
| 565 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0012, 0xff, 0xff, 0xff) }, |
| 566 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0013, 0xff, 0xff, 0xff) }, |
| 567 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, ZTE_PRODUCT_MF628, 0xff, 0xff, 0xff) }, |
| 568 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0016, 0xff, 0xff, 0xff) }, |
| 569 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0017, 0xff, 0xff, 0xff) }, |
| 570 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0018, 0xff, 0xff, 0xff) }, |
| 571 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0019, 0xff, 0xff, 0xff) }, |
| 572 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0020, 0xff, 0xff, 0xff) }, |
| 573 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0021, 0xff, 0xff, 0xff) }, |
| 574 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0022, 0xff, 0xff, 0xff) }, |
| 575 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0023, 0xff, 0xff, 0xff) }, |
| 576 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0024, 0xff, 0xff, 0xff) }, |
| 577 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0025, 0xff, 0xff, 0xff) }, |
| 578 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0026, 0xff, 0xff, 0xff) }, |
| 579 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0028, 0xff, 0xff, 0xff) }, |
| 580 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0029, 0xff, 0xff, 0xff) }, |
| 581 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0030, 0xff, 0xff, 0xff) }, |
| 582 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, ZTE_PRODUCT_MF626, 0xff, 0xff, 0xff) }, |
| 583 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0032, 0xff, 0xff, 0xff) }, |
| 584 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0033, 0xff, 0xff, 0xff) }, |
| 585 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0037, 0xff, 0xff, 0xff) }, |
| 586 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0039, 0xff, 0xff, 0xff) }, |
| 587 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0042, 0xff, 0xff, 0xff) }, |
| 588 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0043, 0xff, 0xff, 0xff) }, |
| 589 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0048, 0xff, 0xff, 0xff) }, |
| 590 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0049, 0xff, 0xff, 0xff) }, |
| 591 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0051, 0xff, 0xff, 0xff) }, |
| 592 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0052, 0xff, 0xff, 0xff) }, |
| 593 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0054, 0xff, 0xff, 0xff) }, |
| 594 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0055, 0xff, 0xff, 0xff) }, |
| 595 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0057, 0xff, 0xff, 0xff) }, |
| 596 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0058, 0xff, 0xff, 0xff) }, |
| 597 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0061, 0xff, 0xff, 0xff) }, |
| 598 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0062, 0xff, 0xff, 0xff) }, |
| 599 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0063, 0xff, 0xff, 0xff) }, |
| 600 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0064, 0xff, 0xff, 0xff) }, |
| 601 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0066, 0xff, 0xff, 0xff) }, |
| 602 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0069, 0xff, 0xff, 0xff) }, |
| 603 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0076, 0xff, 0xff, 0xff) }, |
| 604 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0078, 0xff, 0xff, 0xff) }, |
| 605 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0082, 0xff, 0xff, 0xff) }, |
| 606 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0086, 0xff, 0xff, 0xff) }, |
| 607 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x2002, 0xff, 0xff, 0xff) }, |
| 608 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x2003, 0xff, 0xff, 0xff) }, |
zhao.ming9@zte.com.cn | 8d87cac | 2009-12-07 11:36:34 +0800 | [diff] [blame] | 609 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0104, 0xff, 0xff, 0xff) }, |
| 610 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0106, 0xff, 0xff, 0xff) }, |
| 611 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0108, 0xff, 0xff, 0xff) }, |
| 612 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0113, 0xff, 0xff, 0xff) }, |
| 613 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0117, 0xff, 0xff, 0xff) }, |
| 614 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0118, 0xff, 0xff, 0xff) }, |
| 615 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0121, 0xff, 0xff, 0xff) }, |
| 616 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0122, 0xff, 0xff, 0xff) }, |
| 617 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0123, 0xff, 0xff, 0xff) }, |
| 618 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0124, 0xff, 0xff, 0xff) }, |
| 619 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0125, 0xff, 0xff, 0xff) }, |
| 620 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0126, 0xff, 0xff, 0xff) }, |
| 621 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0128, 0xff, 0xff, 0xff) }, |
| 622 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0142, 0xff, 0xff, 0xff) }, |
| 623 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0143, 0xff, 0xff, 0xff) }, |
| 624 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0144, 0xff, 0xff, 0xff) }, |
| 625 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0145, 0xff, 0xff, 0xff) }, |
| 626 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0146, 0xff, 0xff, 0xff) }, |
| 627 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0147, 0xff, 0xff, 0xff) }, |
| 628 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0148, 0xff, 0xff, 0xff) }, |
| 629 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0149, 0xff, 0xff, 0xff) }, |
| 630 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0150, 0xff, 0xff, 0xff) }, |
| 631 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0151, 0xff, 0xff, 0xff) }, |
| 632 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0152, 0xff, 0xff, 0xff) }, |
| 633 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0153, 0xff, 0xff, 0xff) }, |
| 634 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0154, 0xff, 0xff, 0xff) }, |
| 635 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0155, 0xff, 0xff, 0xff) }, |
| 636 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0156, 0xff, 0xff, 0xff) }, |
| 637 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0157, 0xff, 0xff, 0xff) }, |
| 638 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0158, 0xff, 0xff, 0xff) }, |
| 639 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0159, 0xff, 0xff, 0xff) }, |
| 640 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0160, 0xff, 0xff, 0xff) }, |
| 641 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0161, 0xff, 0xff, 0xff) }, |
| 642 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0162, 0xff, 0xff, 0xff) }, |
Herton Ronaldo Krzesinski | c420bef | 2009-07-15 17:10:26 -0300 | [diff] [blame] | 643 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0014, 0xff, 0xff, 0xff) }, /* ZTE CDMA products */ |
| 644 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0027, 0xff, 0xff, 0xff) }, |
| 645 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0059, 0xff, 0xff, 0xff) }, |
| 646 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0060, 0xff, 0xff, 0xff) }, |
| 647 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0070, 0xff, 0xff, 0xff) }, |
| 648 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0073, 0xff, 0xff, 0xff) }, |
zhao.ming9@zte.com.cn | 8d87cac | 2009-12-07 11:36:34 +0800 | [diff] [blame] | 649 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0130, 0xff, 0xff, 0xff) }, |
| 650 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0141, 0xff, 0xff, 0xff) }, |
Herton Ronaldo Krzesinski | c420bef | 2009-07-15 17:10:26 -0300 | [diff] [blame] | 651 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, ZTE_PRODUCT_CDMA_TECH, 0xff, 0xff, 0xff) }, |
Peng Huang | 1837915 | 2009-07-22 11:54:48 +0200 | [diff] [blame] | 652 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, ZTE_PRODUCT_AC8710, 0xff, 0xff, 0xff) }, |
Huzaifa Sidhpurwala | a67d8e6 | 2009-09-01 10:07:41 +0530 | [diff] [blame] | 653 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, ZTE_PRODUCT_AC2726, 0xff, 0xff, 0xff) }, |
Jesse Sung | 28fb668 | 2009-02-20 21:13:45 -0800 | [diff] [blame] | 654 | { USB_DEVICE(BENQ_VENDOR_ID, BENQ_PRODUCT_H10) }, |
Pascal Terjan | c00deaa | 2009-04-07 14:40:42 +0200 | [diff] [blame] | 655 | { USB_DEVICE(DLINK_VENDOR_ID, DLINK_PRODUCT_DWM_652) }, |
Zhang Le | ff854ce | 2009-11-04 23:22:59 +0800 | [diff] [blame] | 656 | { USB_DEVICE(ALINK_VENDOR_ID, DLINK_PRODUCT_DWM_652_U5) }, /* Yes, ALINK_VENDOR_ID */ |
Brad Lu | e3a3174 | 2009-06-16 18:04:00 +0800 | [diff] [blame] | 657 | { USB_DEVICE(QISDA_VENDOR_ID, QISDA_PRODUCT_H21_4512) }, |
| 658 | { USB_DEVICE(QISDA_VENDOR_ID, QISDA_PRODUCT_H21_4523) }, |
| 659 | { USB_DEVICE(QISDA_VENDOR_ID, QISDA_PRODUCT_H20_4515) }, |
| 660 | { USB_DEVICE(QISDA_VENDOR_ID, QISDA_PRODUCT_H20_4519) }, |
Peter Magdina | 75f4721 | 2009-10-07 16:22:17 +0200 | [diff] [blame] | 661 | { USB_DEVICE(TOSHIBA_VENDOR_ID, TOSHIBA_PRODUCT_G450) }, |
Michele Valzelli | 334f9b0 | 2009-05-27 00:09:12 +0200 | [diff] [blame] | 662 | { USB_DEVICE(TOSHIBA_VENDOR_ID, TOSHIBA_PRODUCT_HSDPA_MINICARD ) }, /* Toshiba 3G HSDPA == Novatel Expedite EU870D MiniCard */ |
Anssi Hannula | c3325eb | 2009-07-06 19:08:59 +0300 | [diff] [blame] | 663 | { USB_DEVICE(ALINK_VENDOR_ID, 0x9000) }, |
Zhang Le | 54a8e14 | 2009-11-17 14:53:42 -0800 | [diff] [blame] | 664 | { USB_DEVICE(ALINK_VENDOR_ID, 0xce16) }, |
Anssi Hannula | c3325eb | 2009-07-06 19:08:59 +0300 | [diff] [blame] | 665 | { USB_DEVICE_AND_INTERFACE_INFO(ALINK_VENDOR_ID, ALINK_PRODUCT_3GU, 0xff, 0xff, 0xff) }, |
Javier Martin | 48c348c | 2009-07-23 04:03:43 +0200 | [diff] [blame] | 666 | { USB_DEVICE(ALCATEL_VENDOR_ID, ALCATEL_PRODUCT_X060S) }, |
Huzaifa Sidhpurwala | 12148da | 2009-10-12 14:34:45 +0530 | [diff] [blame] | 667 | { USB_DEVICE(AIRPLUS_VENDOR_ID, AIRPLUS_PRODUCT_MCD650) }, |
Bryan Wu | fead2ab | 2009-10-22 15:00:36 +0800 | [diff] [blame] | 668 | { USB_DEVICE(TLAYTECH_VENDOR_ID, TLAYTECH_PRODUCT_TEU800) }, |
Gernot Hillier | a741710 | 2010-01-11 09:35:17 +0100 | [diff] [blame] | 669 | { USB_DEVICE(FOUR_G_SYSTEMS_VENDOR_ID, FOUR_G_SYSTEMS_PRODUCT_W14), |
| 670 | .driver_info = (kernel_ulong_t)&four_g_w14_blacklist |
| 671 | }, |
Donny Kurnia | c983202 | 2009-12-23 19:03:12 +0700 | [diff] [blame] | 672 | { USB_DEVICE(HAIER_VENDOR_ID, HAIER_PRODUCT_CE100) }, |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 673 | { } /* Terminating entry */ |
| 674 | }; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 675 | MODULE_DEVICE_TABLE(usb, option_ids); |
| 676 | |
| 677 | static struct usb_driver option_driver = { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 678 | .name = "option", |
| 679 | .probe = usb_serial_probe, |
| 680 | .disconnect = usb_serial_disconnect, |
Oliver Neukum | 5f4fab9 | 2009-07-13 23:24:10 +0200 | [diff] [blame] | 681 | #ifdef CONFIG_PM |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 682 | .suspend = usb_serial_suspend, |
| 683 | .resume = usb_serial_resume, |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 684 | .supports_autosuspend = 1, |
Oliver Neukum | 5f4fab9 | 2009-07-13 23:24:10 +0200 | [diff] [blame] | 685 | #endif |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 686 | .id_table = option_ids, |
Greg Kroah-Hartman | ba9dc65 | 2005-11-16 13:41:28 -0800 | [diff] [blame] | 687 | .no_dynamic_id = 1, |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 688 | }; |
| 689 | |
Uwe Zeisberger | c30fe7f | 2006-03-24 18:23:14 +0100 | [diff] [blame] | 690 | /* The card has three separate interfaces, which the serial driver |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 691 | * recognizes separately, thus num_port=1. |
| 692 | */ |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 693 | |
| 694 | static struct usb_serial_driver option_1port_device = { |
| 695 | .driver = { |
| 696 | .owner = THIS_MODULE, |
Matthias Urlichs | 02b2ac5 | 2006-08-02 16:41:41 -0700 | [diff] [blame] | 697 | .name = "option1", |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 698 | }, |
| 699 | .description = "GSM modem (1-port)", |
Johannes Hölzl | d9b1b78 | 2006-12-17 21:50:24 +0100 | [diff] [blame] | 700 | .usb_driver = &option_driver, |
Greg Kroah-Hartman | b656b2c | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 701 | .id_table = option_ids, |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 702 | .num_ports = 1, |
Pascal Terjan | c5be1b5 | 2009-04-16 19:00:45 +0200 | [diff] [blame] | 703 | .probe = option_probe, |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 704 | .open = option_open, |
| 705 | .close = option_close, |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 706 | .dtr_rts = option_dtr_rts, |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 707 | .write = option_write, |
| 708 | .write_room = option_write_room, |
| 709 | .chars_in_buffer = option_chars_in_buffer, |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 710 | .set_termios = option_set_termios, |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 711 | .tiocmget = option_tiocmget, |
| 712 | .tiocmset = option_tiocmset, |
| 713 | .attach = option_startup, |
Alan Stern | f9c99bb | 2009-06-02 11:53:55 -0400 | [diff] [blame] | 714 | .disconnect = option_disconnect, |
| 715 | .release = option_release, |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 716 | .read_int_callback = option_instat_callback, |
Oliver Neukum | 5f4fab9 | 2009-07-13 23:24:10 +0200 | [diff] [blame] | 717 | #ifdef CONFIG_PM |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 718 | .suspend = option_suspend, |
| 719 | .resume = option_resume, |
Oliver Neukum | 5f4fab9 | 2009-07-13 23:24:10 +0200 | [diff] [blame] | 720 | #endif |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 721 | }; |
| 722 | |
| 723 | static int debug; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 724 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 725 | /* per port private data */ |
| 726 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 727 | #define N_IN_URB 4 |
Greg Kroah-Hartman | f1632df | 2008-12-16 13:26:07 -0800 | [diff] [blame] | 728 | #define N_OUT_URB 4 |
Matthias Urlichs | b27c73d | 2005-09-22 00:49:33 -0700 | [diff] [blame] | 729 | #define IN_BUFLEN 4096 |
Greg Kroah-Hartman | f1632df | 2008-12-16 13:26:07 -0800 | [diff] [blame] | 730 | #define OUT_BUFLEN 4096 |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 731 | |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 732 | struct option_intf_private { |
| 733 | spinlock_t susp_lock; |
| 734 | unsigned int suspended:1; |
| 735 | int in_flight; |
Gernot Hillier | cc175ce | 2010-01-11 09:30:00 +0100 | [diff] [blame] | 736 | struct option_blacklist_info *blacklist_info; |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 737 | }; |
| 738 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 739 | struct option_port_private { |
| 740 | /* Input endpoints and buffer for this port */ |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 741 | struct urb *in_urbs[N_IN_URB]; |
Oliver Neukum | 2129c4e | 2008-02-01 13:58:52 +0100 | [diff] [blame] | 742 | u8 *in_buffer[N_IN_URB]; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 743 | /* Output endpoints and buffer for this port */ |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 744 | struct urb *out_urbs[N_OUT_URB]; |
Oliver Neukum | 2129c4e | 2008-02-01 13:58:52 +0100 | [diff] [blame] | 745 | u8 *out_buffer[N_OUT_URB]; |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 746 | unsigned long out_busy; /* Bit vector of URBs in use */ |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 747 | int opened; |
| 748 | struct usb_anchor delayed; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 749 | |
| 750 | /* Settings for the port */ |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 751 | int rts_state; /* Handshaking pins (outputs) */ |
| 752 | int dtr_state; |
| 753 | int cts_state; /* Handshaking pins (inputs) */ |
| 754 | int dsr_state; |
| 755 | int dcd_state; |
| 756 | int ri_state; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 757 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 758 | unsigned long tx_start_time[N_OUT_URB]; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 759 | }; |
| 760 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 761 | /* Functions used by new usb-serial code. */ |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 762 | static int __init option_init(void) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 763 | { |
| 764 | int retval; |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 765 | retval = usb_serial_register(&option_1port_device); |
| 766 | if (retval) |
| 767 | goto failed_1port_device_register; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 768 | retval = usb_register(&option_driver); |
| 769 | if (retval) |
| 770 | goto failed_driver_register; |
| 771 | |
Greg Kroah-Hartman | c197a8d | 2008-08-18 13:21:04 -0700 | [diff] [blame] | 772 | printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":" |
| 773 | DRIVER_DESC "\n"); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 774 | |
| 775 | return 0; |
| 776 | |
| 777 | failed_driver_register: |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 778 | usb_serial_deregister(&option_1port_device); |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 779 | failed_1port_device_register: |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 780 | return retval; |
| 781 | } |
| 782 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 783 | static void __exit option_exit(void) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 784 | { |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 785 | usb_deregister(&option_driver); |
| 786 | usb_serial_deregister(&option_1port_device); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 787 | } |
| 788 | |
| 789 | module_init(option_init); |
| 790 | module_exit(option_exit); |
| 791 | |
Pascal Terjan | c5be1b5 | 2009-04-16 19:00:45 +0200 | [diff] [blame] | 792 | static int option_probe(struct usb_serial *serial, |
| 793 | const struct usb_device_id *id) |
| 794 | { |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 795 | struct option_intf_private *data; |
Pascal Terjan | c5be1b5 | 2009-04-16 19:00:45 +0200 | [diff] [blame] | 796 | /* D-Link DWM 652 still exposes CD-Rom emulation interface in modem mode */ |
| 797 | if (serial->dev->descriptor.idVendor == DLINK_VENDOR_ID && |
| 798 | serial->dev->descriptor.idProduct == DLINK_PRODUCT_DWM_652 && |
| 799 | serial->interface->cur_altsetting->desc.bInterfaceClass == 0x8) |
| 800 | return -ENODEV; |
| 801 | |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 802 | data = serial->private = kzalloc(sizeof(struct option_intf_private), GFP_KERNEL); |
| 803 | if (!data) |
| 804 | return -ENOMEM; |
| 805 | spin_lock_init(&data->susp_lock); |
Gernot Hillier | cc175ce | 2010-01-11 09:30:00 +0100 | [diff] [blame] | 806 | data->blacklist_info = (struct option_blacklist_info*) id->driver_info; |
Pascal Terjan | c5be1b5 | 2009-04-16 19:00:45 +0200 | [diff] [blame] | 807 | return 0; |
| 808 | } |
| 809 | |
Gernot Hillier | cc175ce | 2010-01-11 09:30:00 +0100 | [diff] [blame] | 810 | static enum option_blacklist_reason is_blacklisted(const u8 ifnum, |
| 811 | const struct option_blacklist_info *blacklist) |
| 812 | { |
| 813 | const u8 *info; |
| 814 | int i; |
| 815 | |
| 816 | if (blacklist) { |
| 817 | info = blacklist->ifaceinfo; |
| 818 | |
| 819 | for (i = 0; i < blacklist->infolen; i++) { |
| 820 | if (info[i] == ifnum) |
| 821 | return blacklist->reason; |
| 822 | } |
| 823 | } |
| 824 | return OPTION_BLACKLIST_NONE; |
| 825 | } |
| 826 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 827 | static void option_set_termios(struct tty_struct *tty, |
| 828 | struct usb_serial_port *port, struct ktermios *old_termios) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 829 | { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 830 | dbg("%s", __func__); |
Alan Cox | e650d8a | 2007-10-18 01:24:21 -0700 | [diff] [blame] | 831 | /* Doesn't support option setting */ |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 832 | tty_termios_copy_hw(tty->termios, old_termios); |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 833 | option_send_setup(port); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 834 | } |
| 835 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 836 | static int option_tiocmget(struct tty_struct *tty, struct file *file) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 837 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 838 | struct usb_serial_port *port = tty->driver_data; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 839 | unsigned int value; |
| 840 | struct option_port_private *portdata; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 841 | |
| 842 | portdata = usb_get_serial_port_data(port); |
| 843 | |
| 844 | value = ((portdata->rts_state) ? TIOCM_RTS : 0) | |
| 845 | ((portdata->dtr_state) ? TIOCM_DTR : 0) | |
| 846 | ((portdata->cts_state) ? TIOCM_CTS : 0) | |
| 847 | ((portdata->dsr_state) ? TIOCM_DSR : 0) | |
| 848 | ((portdata->dcd_state) ? TIOCM_CAR : 0) | |
| 849 | ((portdata->ri_state) ? TIOCM_RNG : 0); |
| 850 | |
| 851 | return value; |
| 852 | } |
| 853 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 854 | static int option_tiocmset(struct tty_struct *tty, struct file *file, |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 855 | unsigned int set, unsigned int clear) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 856 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 857 | struct usb_serial_port *port = tty->driver_data; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 858 | struct option_port_private *portdata; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 859 | |
| 860 | portdata = usb_get_serial_port_data(port); |
| 861 | |
Alan Cox | e298449 | 2008-02-20 20:51:45 +0000 | [diff] [blame] | 862 | /* FIXME: what locks portdata fields ? */ |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 863 | if (set & TIOCM_RTS) |
| 864 | portdata->rts_state = 1; |
| 865 | if (set & TIOCM_DTR) |
| 866 | portdata->dtr_state = 1; |
| 867 | |
| 868 | if (clear & TIOCM_RTS) |
| 869 | portdata->rts_state = 0; |
| 870 | if (clear & TIOCM_DTR) |
| 871 | portdata->dtr_state = 0; |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 872 | return option_send_setup(port); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 873 | } |
| 874 | |
| 875 | /* Write */ |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 876 | static int option_write(struct tty_struct *tty, struct usb_serial_port *port, |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 877 | const unsigned char *buf, int count) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 878 | { |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 879 | struct option_port_private *portdata; |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 880 | struct option_intf_private *intfdata; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 881 | int i; |
| 882 | int left, todo; |
| 883 | struct urb *this_urb = NULL; /* spurious */ |
| 884 | int err; |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 885 | unsigned long flags; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 886 | |
| 887 | portdata = usb_get_serial_port_data(port); |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 888 | intfdata = port->serial->private; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 889 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 890 | dbg("%s: write (%d chars)", __func__, count); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 891 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 892 | i = 0; |
| 893 | left = count; |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 894 | for (i = 0; left > 0 && i < N_OUT_URB; i++) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 895 | todo = left; |
| 896 | if (todo > OUT_BUFLEN) |
| 897 | todo = OUT_BUFLEN; |
| 898 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 899 | this_urb = portdata->out_urbs[i]; |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 900 | if (test_and_set_bit(i, &portdata->out_busy)) { |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 901 | if (time_before(jiffies, |
| 902 | portdata->tx_start_time[i] + 10 * HZ)) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 903 | continue; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 904 | usb_unlink_urb(this_urb); |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 905 | continue; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 906 | } |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 907 | dbg("%s: endpoint %d buf %d", __func__, |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 908 | usb_pipeendpoint(this_urb->pipe), i); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 909 | |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 910 | err = usb_autopm_get_interface_async(port->serial->interface); |
| 911 | if (err < 0) |
| 912 | break; |
| 913 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 914 | /* send the data */ |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 915 | memcpy(this_urb->transfer_buffer, buf, todo); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 916 | this_urb->transfer_buffer_length = todo; |
| 917 | |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 918 | spin_lock_irqsave(&intfdata->susp_lock, flags); |
| 919 | if (intfdata->suspended) { |
| 920 | usb_anchor_urb(this_urb, &portdata->delayed); |
| 921 | spin_unlock_irqrestore(&intfdata->susp_lock, flags); |
| 922 | } else { |
| 923 | intfdata->in_flight++; |
| 924 | spin_unlock_irqrestore(&intfdata->susp_lock, flags); |
| 925 | err = usb_submit_urb(this_urb, GFP_ATOMIC); |
| 926 | if (err) { |
| 927 | dbg("usb_submit_urb %p (write bulk) failed " |
| 928 | "(%d)", this_urb, err); |
| 929 | clear_bit(i, &portdata->out_busy); |
| 930 | spin_lock_irqsave(&intfdata->susp_lock, flags); |
| 931 | intfdata->in_flight--; |
| 932 | spin_unlock_irqrestore(&intfdata->susp_lock, flags); |
| 933 | continue; |
| 934 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 935 | } |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 936 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 937 | portdata->tx_start_time[i] = jiffies; |
| 938 | buf += todo; |
| 939 | left -= todo; |
| 940 | } |
| 941 | |
| 942 | count -= left; |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 943 | dbg("%s: wrote (did %d)", __func__, count); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 944 | return count; |
| 945 | } |
| 946 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 947 | static void option_indat_callback(struct urb *urb) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 948 | { |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 949 | int err; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 950 | int endpoint; |
| 951 | struct usb_serial_port *port; |
| 952 | struct tty_struct *tty; |
| 953 | unsigned char *data = urb->transfer_buffer; |
Greg Kroah-Hartman | d6977b5 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 954 | int status = urb->status; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 955 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 956 | dbg("%s: %p", __func__, urb); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 957 | |
| 958 | endpoint = usb_pipeendpoint(urb->pipe); |
Ming Lei | cdc9779 | 2008-02-24 18:41:47 +0800 | [diff] [blame] | 959 | port = urb->context; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 960 | |
Greg Kroah-Hartman | d6977b5 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 961 | if (status) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 962 | dbg("%s: nonzero status: %d on endpoint %02x.", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 963 | __func__, status, endpoint); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 964 | } else { |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 965 | tty = tty_port_tty_get(&port->port); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 966 | if (urb->actual_length) { |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 967 | tty_buffer_request_room(tty, urb->actual_length); |
| 968 | tty_insert_flip_string(tty, data, urb->actual_length); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 969 | tty_flip_buffer_push(tty); |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 970 | } else |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 971 | dbg("%s: empty read urb received", __func__); |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 972 | tty_kref_put(tty); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 973 | |
| 974 | /* Resubmit urb so we continue receiving */ |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 975 | if (port->port.count && status != -ESHUTDOWN) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 976 | err = usb_submit_urb(urb, GFP_ATOMIC); |
| 977 | if (err) |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 978 | printk(KERN_ERR "%s: resubmit read urb failed. " |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 979 | "(%d)", __func__, err); |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 980 | else |
| 981 | usb_mark_last_busy(port->serial->dev); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 982 | } |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 983 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 984 | } |
| 985 | return; |
| 986 | } |
| 987 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 988 | static void option_outdat_callback(struct urb *urb) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 989 | { |
| 990 | struct usb_serial_port *port; |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 991 | struct option_port_private *portdata; |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 992 | struct option_intf_private *intfdata; |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 993 | int i; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 994 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 995 | dbg("%s", __func__); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 996 | |
Ming Lei | cdc9779 | 2008-02-24 18:41:47 +0800 | [diff] [blame] | 997 | port = urb->context; |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 998 | intfdata = port->serial->private; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 999 | |
Pete Zaitcev | cf2c748 | 2006-05-22 21:58:49 -0700 | [diff] [blame] | 1000 | usb_serial_port_softint(port); |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1001 | usb_autopm_put_interface_async(port->serial->interface); |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 1002 | portdata = usb_get_serial_port_data(port); |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1003 | spin_lock(&intfdata->susp_lock); |
| 1004 | intfdata->in_flight--; |
| 1005 | spin_unlock(&intfdata->susp_lock); |
| 1006 | |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 1007 | for (i = 0; i < N_OUT_URB; ++i) { |
| 1008 | if (portdata->out_urbs[i] == urb) { |
| 1009 | smp_mb__before_clear_bit(); |
| 1010 | clear_bit(i, &portdata->out_busy); |
| 1011 | break; |
| 1012 | } |
| 1013 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1014 | } |
| 1015 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1016 | static void option_instat_callback(struct urb *urb) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1017 | { |
| 1018 | int err; |
Greg Kroah-Hartman | d6977b5 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1019 | int status = urb->status; |
Ming Lei | cdc9779 | 2008-02-24 18:41:47 +0800 | [diff] [blame] | 1020 | struct usb_serial_port *port = urb->context; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1021 | struct option_port_private *portdata = usb_get_serial_port_data(port); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1022 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1023 | dbg("%s", __func__); |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 1024 | 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] | 1025 | |
Greg Kroah-Hartman | d6977b5 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1026 | if (status == 0) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1027 | struct usb_ctrlrequest *req_pkt = |
| 1028 | (struct usb_ctrlrequest *)urb->transfer_buffer; |
| 1029 | |
| 1030 | if (!req_pkt) { |
Joe Perches | 759f363 | 2010-02-05 16:50:08 -0800 | [diff] [blame^] | 1031 | dbg("%s: NULL req_pkt", __func__); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1032 | return; |
| 1033 | } |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 1034 | if ((req_pkt->bRequestType == 0xA1) && |
| 1035 | (req_pkt->bRequest == 0x20)) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1036 | int old_dcd_state; |
| 1037 | unsigned char signals = *((unsigned char *) |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 1038 | urb->transfer_buffer + |
| 1039 | sizeof(struct usb_ctrlrequest)); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1040 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1041 | dbg("%s: signal x%x", __func__, signals); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1042 | |
| 1043 | old_dcd_state = portdata->dcd_state; |
| 1044 | portdata->cts_state = 1; |
| 1045 | portdata->dcd_state = ((signals & 0x01) ? 1 : 0); |
| 1046 | portdata->dsr_state = ((signals & 0x02) ? 1 : 0); |
| 1047 | portdata->ri_state = ((signals & 0x08) ? 1 : 0); |
| 1048 | |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 1049 | if (old_dcd_state && !portdata->dcd_state) { |
| 1050 | struct tty_struct *tty = |
| 1051 | tty_port_tty_get(&port->port); |
| 1052 | if (tty && !C_CLOCAL(tty)) |
| 1053 | tty_hangup(tty); |
| 1054 | tty_kref_put(tty); |
| 1055 | } |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 1056 | } else { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1057 | dbg("%s: type %x req %x", __func__, |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 1058 | req_pkt->bRequestType, req_pkt->bRequest); |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 1059 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1060 | } else |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1061 | err("%s: error %d", __func__, status); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1062 | |
| 1063 | /* Resubmit urb so we continue receiving IRQ data */ |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1064 | if (status != -ESHUTDOWN && status != -ENOENT) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1065 | err = usb_submit_urb(urb, GFP_ATOMIC); |
| 1066 | if (err) |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 1067 | dbg("%s: resubmit intr urb failed. (%d)", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1068 | __func__, err); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1069 | } |
| 1070 | } |
| 1071 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1072 | static int option_write_room(struct tty_struct *tty) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1073 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1074 | struct usb_serial_port *port = tty->driver_data; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1075 | struct option_port_private *portdata; |
| 1076 | int i; |
| 1077 | int data_len = 0; |
| 1078 | struct urb *this_urb; |
| 1079 | |
| 1080 | portdata = usb_get_serial_port_data(port); |
| 1081 | |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 1082 | for (i = 0; i < N_OUT_URB; i++) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1083 | this_urb = portdata->out_urbs[i]; |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 1084 | if (this_urb && !test_bit(i, &portdata->out_busy)) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1085 | data_len += OUT_BUFLEN; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 1086 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1087 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1088 | dbg("%s: %d", __func__, data_len); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1089 | return data_len; |
| 1090 | } |
| 1091 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1092 | static int option_chars_in_buffer(struct tty_struct *tty) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1093 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1094 | struct usb_serial_port *port = tty->driver_data; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1095 | struct option_port_private *portdata; |
| 1096 | int i; |
| 1097 | int data_len = 0; |
| 1098 | struct urb *this_urb; |
| 1099 | |
| 1100 | portdata = usb_get_serial_port_data(port); |
| 1101 | |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 1102 | for (i = 0; i < N_OUT_URB; i++) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1103 | this_urb = portdata->out_urbs[i]; |
Alan Cox | a5b6f60 | 2008-04-08 17:16:06 +0100 | [diff] [blame] | 1104 | /* FIXME: This locking is insufficient as this_urb may |
| 1105 | go unused during the test */ |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 1106 | if (this_urb && test_bit(i, &portdata->out_busy)) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1107 | data_len += this_urb->transfer_buffer_length; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 1108 | } |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1109 | dbg("%s: %d", __func__, data_len); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1110 | return data_len; |
| 1111 | } |
| 1112 | |
Alan Cox | a509a7e | 2009-09-19 13:13:26 -0700 | [diff] [blame] | 1113 | static int option_open(struct tty_struct *tty, struct usb_serial_port *port) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1114 | { |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 1115 | struct option_port_private *portdata; |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1116 | struct option_intf_private *intfdata; |
| 1117 | struct usb_serial *serial = port->serial; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 1118 | int i, err; |
| 1119 | struct urb *urb; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1120 | |
| 1121 | portdata = usb_get_serial_port_data(port); |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1122 | intfdata = serial->private; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1123 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1124 | dbg("%s", __func__); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1125 | |
Alan Stern | f092c24 | 2009-07-09 12:58:43 -0400 | [diff] [blame] | 1126 | /* Start reading from the IN endpoint */ |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1127 | for (i = 0; i < N_IN_URB; i++) { |
| 1128 | urb = portdata->in_urbs[i]; |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 1129 | if (!urb) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1130 | continue; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1131 | err = usb_submit_urb(urb, GFP_KERNEL); |
| 1132 | if (err) { |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 1133 | dbg("%s: submit urb %d failed (%d) %d", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1134 | __func__, i, err, |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1135 | urb->transfer_buffer_length); |
| 1136 | } |
| 1137 | } |
| 1138 | |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 1139 | option_send_setup(port); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1140 | |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1141 | serial->interface->needs_remote_wakeup = 1; |
| 1142 | spin_lock_irq(&intfdata->susp_lock); |
| 1143 | portdata->opened = 1; |
| 1144 | spin_unlock_irq(&intfdata->susp_lock); |
| 1145 | usb_autopm_put_interface(serial->interface); |
| 1146 | |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 1147 | return 0; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1148 | } |
| 1149 | |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 1150 | static void option_dtr_rts(struct usb_serial_port *port, int on) |
| 1151 | { |
| 1152 | struct usb_serial *serial = port->serial; |
| 1153 | struct option_port_private *portdata; |
| 1154 | |
| 1155 | dbg("%s", __func__); |
| 1156 | portdata = usb_get_serial_port_data(port); |
| 1157 | mutex_lock(&serial->disc_mutex); |
| 1158 | portdata->rts_state = on; |
| 1159 | portdata->dtr_state = on; |
| 1160 | if (serial->dev) |
| 1161 | option_send_setup(port); |
| 1162 | mutex_unlock(&serial->disc_mutex); |
| 1163 | } |
| 1164 | |
| 1165 | |
| 1166 | static void option_close(struct usb_serial_port *port) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1167 | { |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 1168 | int i; |
| 1169 | struct usb_serial *serial = port->serial; |
| 1170 | struct option_port_private *portdata; |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1171 | struct option_intf_private *intfdata = port->serial->private; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1172 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1173 | dbg("%s", __func__); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1174 | portdata = usb_get_serial_port_data(port); |
| 1175 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1176 | if (serial->dev) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1177 | /* Stop reading/writing urbs */ |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1178 | spin_lock_irq(&intfdata->susp_lock); |
| 1179 | portdata->opened = 0; |
| 1180 | spin_unlock_irq(&intfdata->susp_lock); |
| 1181 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1182 | for (i = 0; i < N_IN_URB; i++) |
Oliver Neukum | 7d28e74 | 2007-03-20 13:41:21 +0100 | [diff] [blame] | 1183 | usb_kill_urb(portdata->in_urbs[i]); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1184 | for (i = 0; i < N_OUT_URB; i++) |
Oliver Neukum | 7d28e74 | 2007-03-20 13:41:21 +0100 | [diff] [blame] | 1185 | usb_kill_urb(portdata->out_urbs[i]); |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1186 | usb_autopm_get_interface(serial->interface); |
| 1187 | serial->interface->needs_remote_wakeup = 0; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1188 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1189 | } |
| 1190 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1191 | /* Helper functions used by option_setup_urbs */ |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 1192 | static struct urb *option_setup_urb(struct usb_serial *serial, int endpoint, |
| 1193 | int dir, void *ctx, char *buf, int len, |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1194 | void (*callback)(struct urb *)) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1195 | { |
| 1196 | struct urb *urb; |
| 1197 | |
| 1198 | if (endpoint == -1) |
| 1199 | return NULL; /* endpoint not needed */ |
| 1200 | |
| 1201 | urb = usb_alloc_urb(0, GFP_KERNEL); /* No ISO */ |
| 1202 | if (urb == NULL) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1203 | dbg("%s: alloc for endpoint %d failed.", __func__, endpoint); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1204 | return NULL; |
| 1205 | } |
| 1206 | |
| 1207 | /* Fill URB using supplied data. */ |
| 1208 | usb_fill_bulk_urb(urb, serial->dev, |
| 1209 | usb_sndbulkpipe(serial->dev, endpoint) | dir, |
| 1210 | buf, len, callback, ctx); |
| 1211 | |
| 1212 | return urb; |
| 1213 | } |
| 1214 | |
| 1215 | /* Setup urbs */ |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 1216 | static void option_setup_urbs(struct usb_serial *serial) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1217 | { |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 1218 | int i, j; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 1219 | struct usb_serial_port *port; |
| 1220 | struct option_port_private *portdata; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1221 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1222 | dbg("%s", __func__); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1223 | |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 1224 | for (i = 0; i < serial->num_ports; i++) { |
| 1225 | port = serial->port[i]; |
| 1226 | portdata = usb_get_serial_port_data(port); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1227 | |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 1228 | /* Do indat endpoints first */ |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 1229 | for (j = 0; j < N_IN_URB; ++j) { |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 1230 | portdata->in_urbs[j] = option_setup_urb(serial, |
| 1231 | port->bulk_in_endpointAddress, |
| 1232 | USB_DIR_IN, port, |
| 1233 | portdata->in_buffer[j], |
| 1234 | IN_BUFLEN, option_indat_callback); |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 1235 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1236 | |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 1237 | /* outdat endpoints */ |
| 1238 | for (j = 0; j < N_OUT_URB; ++j) { |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 1239 | portdata->out_urbs[j] = option_setup_urb(serial, |
| 1240 | port->bulk_out_endpointAddress, |
| 1241 | USB_DIR_OUT, port, |
| 1242 | portdata->out_buffer[j], |
| 1243 | OUT_BUFLEN, option_outdat_callback); |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 1244 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1245 | } |
| 1246 | } |
| 1247 | |
Chris Collins | 5f76004 | 2008-04-10 10:15:53 +0200 | [diff] [blame] | 1248 | |
| 1249 | /** send RTS/DTR state to the port. |
| 1250 | * |
| 1251 | * This is exactly the same as SET_CONTROL_LINE_STATE from the PSTN |
| 1252 | * CDC. |
| 1253 | */ |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 1254 | static int option_send_setup(struct usb_serial_port *port) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1255 | { |
| 1256 | struct usb_serial *serial = port->serial; |
Gernot Hillier | cc175ce | 2010-01-11 09:30:00 +0100 | [diff] [blame] | 1257 | struct option_intf_private *intfdata = |
| 1258 | (struct option_intf_private *) serial->private; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1259 | struct option_port_private *portdata; |
Chris Collins | 5f76004 | 2008-04-10 10:15:53 +0200 | [diff] [blame] | 1260 | int ifNum = serial->interface->cur_altsetting->desc.bInterfaceNumber; |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 1261 | int val = 0; |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1262 | dbg("%s", __func__); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1263 | |
Gernot Hillier | cc175ce | 2010-01-11 09:30:00 +0100 | [diff] [blame] | 1264 | if (is_blacklisted(ifNum, intfdata->blacklist_info) == |
| 1265 | OPTION_BLACKLIST_SENDSETUP) { |
| 1266 | dbg("No send_setup on blacklisted interface #%d\n", ifNum); |
| 1267 | return -EIO; |
| 1268 | } |
| 1269 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1270 | portdata = usb_get_serial_port_data(port); |
| 1271 | |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 1272 | if (portdata->dtr_state) |
| 1273 | val |= 0x01; |
| 1274 | if (portdata->rts_state) |
| 1275 | val |= 0x02; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1276 | |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 1277 | return usb_control_msg(serial->dev, |
| 1278 | usb_rcvctrlpipe(serial->dev, 0), |
| 1279 | 0x22, 0x21, val, ifNum, NULL, 0, USB_CTRL_SET_TIMEOUT); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1280 | } |
| 1281 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 1282 | static int option_startup(struct usb_serial *serial) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1283 | { |
Oliver Neukum | 2129c4e | 2008-02-01 13:58:52 +0100 | [diff] [blame] | 1284 | int i, j, err; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 1285 | struct usb_serial_port *port; |
| 1286 | struct option_port_private *portdata; |
Oliver Neukum | 2129c4e | 2008-02-01 13:58:52 +0100 | [diff] [blame] | 1287 | u8 *buffer; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1288 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1289 | dbg("%s", __func__); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1290 | |
| 1291 | /* Now setup per port private data */ |
| 1292 | for (i = 0; i < serial->num_ports; i++) { |
| 1293 | port = serial->port[i]; |
Eric Sesterhenn | 80b6ca4 | 2006-02-27 21:29:43 +0100 | [diff] [blame] | 1294 | portdata = kzalloc(sizeof(*portdata), GFP_KERNEL); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1295 | if (!portdata) { |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 1296 | dbg("%s: kmalloc for option_port_private (%d) failed!.", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1297 | __func__, i); |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 1298 | return 1; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1299 | } |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1300 | init_usb_anchor(&portdata->delayed); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1301 | |
Oliver Neukum | 2129c4e | 2008-02-01 13:58:52 +0100 | [diff] [blame] | 1302 | for (j = 0; j < N_IN_URB; j++) { |
| 1303 | buffer = (u8 *)__get_free_page(GFP_KERNEL); |
| 1304 | if (!buffer) |
| 1305 | goto bail_out_error; |
| 1306 | portdata->in_buffer[j] = buffer; |
| 1307 | } |
| 1308 | |
| 1309 | for (j = 0; j < N_OUT_URB; j++) { |
| 1310 | buffer = kmalloc(OUT_BUFLEN, GFP_KERNEL); |
| 1311 | if (!buffer) |
| 1312 | goto bail_out_error2; |
| 1313 | portdata->out_buffer[j] = buffer; |
| 1314 | } |
| 1315 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1316 | usb_set_serial_port_data(port, portdata); |
| 1317 | |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 1318 | if (!port->interrupt_in_urb) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1319 | continue; |
| 1320 | err = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL); |
| 1321 | if (err) |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 1322 | dbg("%s: submit irq_in urb failed %d", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1323 | __func__, err); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1324 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1325 | option_setup_urbs(serial); |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 1326 | return 0; |
Oliver Neukum | 2129c4e | 2008-02-01 13:58:52 +0100 | [diff] [blame] | 1327 | |
| 1328 | bail_out_error2: |
| 1329 | for (j = 0; j < N_OUT_URB; j++) |
| 1330 | kfree(portdata->out_buffer[j]); |
| 1331 | bail_out_error: |
| 1332 | for (j = 0; j < N_IN_URB; j++) |
| 1333 | if (portdata->in_buffer[j]) |
| 1334 | free_page((unsigned long)portdata->in_buffer[j]); |
| 1335 | kfree(portdata); |
| 1336 | return 1; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1337 | } |
| 1338 | |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1339 | static void stop_read_write_urbs(struct usb_serial *serial) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1340 | { |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 1341 | int i, j; |
| 1342 | struct usb_serial_port *port; |
| 1343 | struct option_port_private *portdata; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1344 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1345 | /* Stop reading/writing urbs */ |
| 1346 | for (i = 0; i < serial->num_ports; ++i) { |
| 1347 | port = serial->port[i]; |
| 1348 | portdata = usb_get_serial_port_data(port); |
| 1349 | for (j = 0; j < N_IN_URB; j++) |
Oliver Neukum | 7d28e74 | 2007-03-20 13:41:21 +0100 | [diff] [blame] | 1350 | usb_kill_urb(portdata->in_urbs[j]); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1351 | for (j = 0; j < N_OUT_URB; j++) |
Oliver Neukum | 7d28e74 | 2007-03-20 13:41:21 +0100 | [diff] [blame] | 1352 | usb_kill_urb(portdata->out_urbs[j]); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1353 | } |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1354 | } |
| 1355 | |
Alan Stern | f9c99bb | 2009-06-02 11:53:55 -0400 | [diff] [blame] | 1356 | static void option_disconnect(struct usb_serial *serial) |
| 1357 | { |
| 1358 | dbg("%s", __func__); |
| 1359 | |
| 1360 | stop_read_write_urbs(serial); |
| 1361 | } |
| 1362 | |
| 1363 | static void option_release(struct usb_serial *serial) |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1364 | { |
| 1365 | int i, j; |
| 1366 | struct usb_serial_port *port; |
| 1367 | struct option_port_private *portdata; |
| 1368 | |
| 1369 | dbg("%s", __func__); |
| 1370 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1371 | /* Now free them */ |
| 1372 | for (i = 0; i < serial->num_ports; ++i) { |
| 1373 | port = serial->port[i]; |
| 1374 | portdata = usb_get_serial_port_data(port); |
| 1375 | |
| 1376 | for (j = 0; j < N_IN_URB; j++) { |
| 1377 | if (portdata->in_urbs[j]) { |
| 1378 | usb_free_urb(portdata->in_urbs[j]); |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 1379 | free_page((unsigned long) |
| 1380 | portdata->in_buffer[j]); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1381 | portdata->in_urbs[j] = NULL; |
| 1382 | } |
| 1383 | } |
| 1384 | for (j = 0; j < N_OUT_URB; j++) { |
| 1385 | if (portdata->out_urbs[j]) { |
| 1386 | usb_free_urb(portdata->out_urbs[j]); |
Oliver Neukum | 2129c4e | 2008-02-01 13:58:52 +0100 | [diff] [blame] | 1387 | kfree(portdata->out_buffer[j]); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1388 | portdata->out_urbs[j] = NULL; |
| 1389 | } |
| 1390 | } |
| 1391 | } |
| 1392 | |
| 1393 | /* Now free per port private data */ |
| 1394 | for (i = 0; i < serial->num_ports; i++) { |
| 1395 | port = serial->port[i]; |
| 1396 | kfree(usb_get_serial_port_data(port)); |
| 1397 | } |
| 1398 | } |
| 1399 | |
Oliver Neukum | 5f4fab9 | 2009-07-13 23:24:10 +0200 | [diff] [blame] | 1400 | #ifdef CONFIG_PM |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1401 | static int option_suspend(struct usb_serial *serial, pm_message_t message) |
| 1402 | { |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1403 | struct option_intf_private *intfdata = serial->private; |
| 1404 | int b; |
| 1405 | |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1406 | dbg("%s entered", __func__); |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1407 | |
Alan Stern | fb34d53 | 2009-11-13 11:53:59 -0500 | [diff] [blame] | 1408 | if (message.event & PM_EVENT_AUTO) { |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1409 | spin_lock_irq(&intfdata->susp_lock); |
| 1410 | b = intfdata->in_flight; |
| 1411 | spin_unlock_irq(&intfdata->susp_lock); |
| 1412 | |
| 1413 | if (b) |
| 1414 | return -EBUSY; |
| 1415 | } |
| 1416 | |
| 1417 | spin_lock_irq(&intfdata->susp_lock); |
| 1418 | intfdata->suspended = 1; |
| 1419 | spin_unlock_irq(&intfdata->susp_lock); |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1420 | stop_read_write_urbs(serial); |
| 1421 | |
| 1422 | return 0; |
| 1423 | } |
| 1424 | |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1425 | static void play_delayed(struct usb_serial_port *port) |
| 1426 | { |
| 1427 | struct option_intf_private *data; |
| 1428 | struct option_port_private *portdata; |
| 1429 | struct urb *urb; |
| 1430 | int err; |
| 1431 | |
| 1432 | portdata = usb_get_serial_port_data(port); |
| 1433 | data = port->serial->private; |
| 1434 | while ((urb = usb_get_from_anchor(&portdata->delayed))) { |
| 1435 | err = usb_submit_urb(urb, GFP_ATOMIC); |
| 1436 | if (!err) |
| 1437 | data->in_flight++; |
| 1438 | } |
| 1439 | } |
| 1440 | |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1441 | static int option_resume(struct usb_serial *serial) |
| 1442 | { |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1443 | int i, j; |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1444 | struct usb_serial_port *port; |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1445 | struct option_intf_private *intfdata = serial->private; |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1446 | struct option_port_private *portdata; |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1447 | struct urb *urb; |
| 1448 | int err = 0; |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1449 | |
| 1450 | dbg("%s entered", __func__); |
| 1451 | /* get the interrupt URBs resubmitted unconditionally */ |
| 1452 | for (i = 0; i < serial->num_ports; i++) { |
| 1453 | port = serial->port[i]; |
| 1454 | if (!port->interrupt_in_urb) { |
Joe Perches | 759f363 | 2010-02-05 16:50:08 -0800 | [diff] [blame^] | 1455 | dbg("%s: No interrupt URB for port %d", __func__, i); |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1456 | continue; |
| 1457 | } |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1458 | err = usb_submit_urb(port->interrupt_in_urb, GFP_NOIO); |
| 1459 | dbg("Submitted interrupt URB for port %d (result %d)", i, err); |
| 1460 | if (err < 0) { |
| 1461 | err("%s: Error %d for interrupt URB of port%d", |
| 1462 | __func__, err, i); |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1463 | goto err_out; |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1464 | } |
| 1465 | } |
| 1466 | |
| 1467 | for (i = 0; i < serial->num_ports; i++) { |
| 1468 | /* walk all ports */ |
| 1469 | port = serial->port[i]; |
| 1470 | portdata = usb_get_serial_port_data(port); |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1471 | |
| 1472 | /* skip closed ports */ |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1473 | spin_lock_irq(&intfdata->susp_lock); |
| 1474 | if (!portdata->opened) { |
| 1475 | spin_unlock_irq(&intfdata->susp_lock); |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1476 | continue; |
| 1477 | } |
| 1478 | |
| 1479 | for (j = 0; j < N_IN_URB; j++) { |
| 1480 | urb = portdata->in_urbs[j]; |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1481 | err = usb_submit_urb(urb, GFP_ATOMIC); |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1482 | if (err < 0) { |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1483 | err("%s: Error %d for bulk URB %d", |
| 1484 | __func__, err, i); |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1485 | spin_unlock_irq(&intfdata->susp_lock); |
| 1486 | goto err_out; |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1487 | } |
| 1488 | } |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1489 | play_delayed(port); |
| 1490 | spin_unlock_irq(&intfdata->susp_lock); |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1491 | } |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1492 | spin_lock_irq(&intfdata->susp_lock); |
| 1493 | intfdata->suspended = 0; |
| 1494 | spin_unlock_irq(&intfdata->susp_lock); |
| 1495 | err_out: |
| 1496 | return err; |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1497 | } |
Oliver Neukum | 5f4fab9 | 2009-07-13 23:24:10 +0200 | [diff] [blame] | 1498 | #endif |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1499 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1500 | MODULE_AUTHOR(DRIVER_AUTHOR); |
| 1501 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 1502 | MODULE_VERSION(DRIVER_VERSION); |
| 1503 | MODULE_LICENSE("GPL"); |
| 1504 | |
| 1505 | module_param(debug, bool, S_IRUGO | S_IWUSR); |
| 1506 | MODULE_PARM_DESC(debug, "Debug messages"); |