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 |
| 341 | #define FOUR_G_SYSTEMS_PRODUCT_W14 0x9603 |
| 342 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 343 | static struct usb_device_id option_ids[] = { |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 344 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COLT) }, |
| 345 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA) }, |
| 346 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_LIGHT) }, |
| 347 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_QUAD) }, |
| 348 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_QUAD_LIGHT) }, |
| 349 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS) }, |
| 350 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_LIGHT) }, |
| 351 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_QUAD) }, |
| 352 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_QUAD_LIGHT) }, |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 353 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA) }, |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 354 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA_BUS) }, |
| 355 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_VIPER) }, |
| 356 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_VIPER_BUS) }, |
| 357 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GT_MAX_READY) }, |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 358 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_LIGHT) }, |
| 359 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_GT) }, |
| 360 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_EX) }, |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 361 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_KOI_MODEM) }, |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 362 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_SCORPION_MODEM) }, |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 363 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM) }, |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 364 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_LITE) }, |
| 365 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_GT) }, |
| 366 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_EX) }, |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 367 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_KOI_MODEM) }, |
Achilleas Kotsis | e7f2f0d | 2009-03-16 16:35:02 +0200 | [diff] [blame] | 368 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GTM380_MODEM) }, |
Alex.Cheng@quantatw.com | fc91be2 | 2009-01-22 16:01:57 +0800 | [diff] [blame] | 369 | { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_Q101) }, |
| 370 | { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_Q111) }, |
| 371 | { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_GLX) }, |
| 372 | { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_GKE) }, |
| 373 | { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_GLE) }, |
Michael Karcher | a7f3872 | 2008-05-28 23:58:18 +0200 | [diff] [blame] | 374 | { 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] | 375 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220, 0xff, 0xff, 0xff) }, |
| 376 | { 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] | 377 | { 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] | 378 | { 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] | 379 | { 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] | 380 | { 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] | 381 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1405, 0xff, 0xff, 0xff) }, |
| 382 | { 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] | 383 | { 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] | 384 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1408, 0xff, 0xff, 0xff) }, |
| 385 | { 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] | 386 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E140A, 0xff, 0xff, 0xff) }, |
| 387 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E140B, 0xff, 0xff, 0xff) }, |
| 388 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E140C, 0xff, 0xff, 0xff) }, |
| 389 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E140D, 0xff, 0xff, 0xff) }, |
| 390 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E140E, 0xff, 0xff, 0xff) }, |
| 391 | { 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] | 392 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1410, 0xff, 0xff, 0xff) }, |
| 393 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1411, 0xff, 0xff, 0xff) }, |
| 394 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1412, 0xff, 0xff, 0xff) }, |
| 395 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1413, 0xff, 0xff, 0xff) }, |
| 396 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1414, 0xff, 0xff, 0xff) }, |
| 397 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1415, 0xff, 0xff, 0xff) }, |
| 398 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1416, 0xff, 0xff, 0xff) }, |
| 399 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1417, 0xff, 0xff, 0xff) }, |
| 400 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1418, 0xff, 0xff, 0xff) }, |
| 401 | { 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] | 402 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E141A, 0xff, 0xff, 0xff) }, |
| 403 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E141B, 0xff, 0xff, 0xff) }, |
| 404 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E141C, 0xff, 0xff, 0xff) }, |
| 405 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E141D, 0xff, 0xff, 0xff) }, |
| 406 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E141E, 0xff, 0xff, 0xff) }, |
| 407 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E141F, 0xff, 0xff, 0xff) }, |
| 408 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1420, 0xff, 0xff, 0xff) }, |
| 409 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1421, 0xff, 0xff, 0xff) }, |
| 410 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1422, 0xff, 0xff, 0xff) }, |
| 411 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1423, 0xff, 0xff, 0xff) }, |
| 412 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1424, 0xff, 0xff, 0xff) }, |
| 413 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1425, 0xff, 0xff, 0xff) }, |
| 414 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1426, 0xff, 0xff, 0xff) }, |
| 415 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1427, 0xff, 0xff, 0xff) }, |
| 416 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1428, 0xff, 0xff, 0xff) }, |
| 417 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1429, 0xff, 0xff, 0xff) }, |
| 418 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E142A, 0xff, 0xff, 0xff) }, |
| 419 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E142B, 0xff, 0xff, 0xff) }, |
| 420 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E142C, 0xff, 0xff, 0xff) }, |
| 421 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E142D, 0xff, 0xff, 0xff) }, |
| 422 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E142E, 0xff, 0xff, 0xff) }, |
| 423 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E142F, 0xff, 0xff, 0xff) }, |
| 424 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1430, 0xff, 0xff, 0xff) }, |
| 425 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1431, 0xff, 0xff, 0xff) }, |
| 426 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1432, 0xff, 0xff, 0xff) }, |
| 427 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1433, 0xff, 0xff, 0xff) }, |
| 428 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1434, 0xff, 0xff, 0xff) }, |
| 429 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1435, 0xff, 0xff, 0xff) }, |
| 430 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1436, 0xff, 0xff, 0xff) }, |
| 431 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1437, 0xff, 0xff, 0xff) }, |
| 432 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1438, 0xff, 0xff, 0xff) }, |
| 433 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1439, 0xff, 0xff, 0xff) }, |
| 434 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E143A, 0xff, 0xff, 0xff) }, |
| 435 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E143B, 0xff, 0xff, 0xff) }, |
| 436 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E143C, 0xff, 0xff, 0xff) }, |
| 437 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E143D, 0xff, 0xff, 0xff) }, |
| 438 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E143E, 0xff, 0xff, 0xff) }, |
| 439 | { 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] | 440 | { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E14AC) }, |
Matthias Urlichs | a1d9bc1 | 2008-04-10 10:13:32 +0200 | [diff] [blame] | 441 | { USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_9508) }, |
Dirk DeSchepper | 72ab641 | 2008-03-05 08:26:18 +0000 | [diff] [blame] | 442 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V640) }, /* Novatel Merlin V640/XV620 */ |
| 443 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V620) }, /* Novatel Merlin V620/S620 */ |
| 444 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V740) }, /* Novatel Merlin EX720/V740/X720 */ |
| 445 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V720) }, /* Novatel Merlin V720/S720/PC720 */ |
| 446 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_U730) }, /* Novatel U730/U740 (VF version) */ |
| 447 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_U740) }, /* Novatel U740 */ |
| 448 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_U870) }, /* Novatel U870 */ |
| 449 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_XU870) }, /* Novatel Merlin XU870 HSDPA/3G */ |
| 450 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_X950D) }, /* Novatel X950D */ |
| 451 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EV620) }, /* Novatel EV620/ES620 CDMA/EV-DO */ |
| 452 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_ES720) }, /* Novatel ES620/ES720/U720/USB720 */ |
| 453 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_E725) }, /* Novatel E725/E726 */ |
Matthias Urlichs | a1d9bc1 | 2008-04-10 10:13:32 +0200 | [diff] [blame] | 454 | { 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] | 455 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EU730) }, /* Novatel EU730 and Vodafone EU740 */ |
| 456 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EU740) }, /* Novatel non-Vodafone EU740 */ |
| 457 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EU870D) }, /* Novatel EU850D/EU860D/EU870D */ |
| 458 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_MC950D) }, /* Novatel MC930D/MC950D */ |
| 459 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_MC727) }, /* Novatel MC727/U727/USB727 */ |
Tim Gardner | f1469fc | 2009-07-17 07:55:36 -0600 | [diff] [blame] | 460 | { 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] | 461 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_U727) }, /* Novatel MC727/U727/USB727 */ |
Richard Laager | 9685a59 | 2009-04-26 20:56:20 -0500 | [diff] [blame] | 462 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_MC760) }, /* Novatel MC760/U760/USB760 */ |
Dan Williams | 71f9f6c | 2009-06-30 16:09:28 -0400 | [diff] [blame] | 463 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_OVMC760) }, /* Novatel Ovation MC760 */ |
Dirk De Schepper | c200b9c | 2009-02-06 20:48:34 +0000 | [diff] [blame] | 464 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_HSPA_FULLSPEED) }, /* Novatel HSPA product */ |
| 465 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EVDO_EMBEDDED_FULLSPEED) }, /* Novatel EVDO Embedded product */ |
| 466 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_HSPA_EMBEDDED_FULLSPEED) }, /* Novatel HSPA Embedded product */ |
| 467 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EVDO_HIGHSPEED) }, /* Novatel EVDO product */ |
| 468 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_HSPA_HIGHSPEED) }, /* Novatel HSPA product */ |
| 469 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EVDO_EMBEDDED_HIGHSPEED) }, /* Novatel EVDO Embedded product */ |
| 470 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_HSPA_EMBEDDED_HIGHSPEED) }, /* Novatel HSPA Embedded product */ |
| 471 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_GLOBAL) }, /* Novatel Global product */ |
Dirk DeSchepper | 72ab641 | 2008-03-05 08:26:18 +0000 | [diff] [blame] | 472 | |
tang kai | 32147be | 2008-04-14 10:06:35 +0800 | [diff] [blame] | 473 | { USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_H01) }, |
| 474 | { USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_H01A) }, |
| 475 | { USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_H02) }, |
| 476 | |
Dirk De Schepper | c200b9c | 2009-02-06 20:48:34 +0000 | [diff] [blame] | 477 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5700_MINICARD) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO Mini-Card == Novatel Expedite EV620 CDMA/EV-DO */ |
| 478 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5500_MINICARD) }, /* Dell Wireless 5500 Mobile Broadband HSDPA Mini-Card == Novatel Expedite EU740 HSDPA/3G */ |
| 479 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5505_MINICARD) }, /* Dell Wireless 5505 Mobile Broadband HSDPA Mini-Card == Novatel Expedite EU740 HSDPA/3G */ |
| 480 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5700_EXPRESSCARD) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO ExpressCard == Novatel Merlin XV620 CDMA/EV-DO */ |
| 481 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5510_EXPRESSCARD) }, /* Dell Wireless 5510 Mobile Broadband HSDPA ExpressCard == Novatel Merlin XU870 HSDPA/3G */ |
| 482 | { 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 */ |
| 483 | { 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 */ |
| 484 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5720_MINICARD_VZW) }, /* Dell Wireless 5720 == Novatel EV620 CDMA/EV-DO */ |
| 485 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5720_MINICARD_SPRINT) }, /* Dell Wireless 5720 == Novatel EV620 CDMA/EV-DO */ |
| 486 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5720_MINICARD_TELUS) }, /* Dell Wireless 5720 == Novatel EV620 CDMA/EV-DO */ |
| 487 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5520_MINICARD_CINGULAR) }, /* Dell Wireless HSDPA 5520 == Novatel Expedite EU860D */ |
| 488 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5520_MINICARD_GENERIC_L) }, /* Dell Wireless HSDPA 5520 */ |
| 489 | { 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] | 490 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5730_MINICARD_SPRINT) }, /* Dell Wireless 5730 Mobile Broadband EVDO/HSPA Mini-Card */ |
| 491 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5730_MINICARD_TELUS) }, /* Dell Wireless 5730 Mobile Broadband EVDO/HSPA Mini-Card */ |
| 492 | { 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] | 493 | { 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] | 494 | { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_500A) }, |
Hiroshi Miura | f803382 | 2008-08-19 10:58:25 +0200 | [diff] [blame] | 495 | { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_620UW) }, |
Daniel Kozák | 85fb62a | 2008-03-04 18:54:53 +0100 | [diff] [blame] | 496 | { USB_DEVICE(AXESSTEL_VENDOR_ID, AXESSTEL_PRODUCT_MV110H) }, |
Leslie Watter | c6206fa | 2008-11-12 15:10:07 -0200 | [diff] [blame] | 497 | { USB_DEVICE(YISO_VENDOR_ID, YISO_PRODUCT_U893) }, |
Leon Leong | 3f6e584 | 2007-04-26 00:38:02 -0700 | [diff] [blame] | 498 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_C100_1) }, |
| 499 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_C100_2) }, |
Leon Leong | bf3fc82 | 2008-08-01 11:40:12 +0800 | [diff] [blame] | 500 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1004) }, |
| 501 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1005) }, |
| 502 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1006) }, |
| 503 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1007) }, |
| 504 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1008) }, |
| 505 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1009) }, |
| 506 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100A) }, |
| 507 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100B) }, |
| 508 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100C) }, |
| 509 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100D) }, |
| 510 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100E) }, |
| 511 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100F) }, |
| 512 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1010) }, |
| 513 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1011) }, |
| 514 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1012) }, |
Greg Kroah-Hartman | 640c1bc | 2008-06-19 11:21:16 -0700 | [diff] [blame] | 515 | { USB_DEVICE(KYOCERA_VENDOR_ID, KYOCERA_PRODUCT_KPC650) }, |
Dan Williams | 564d61d | 2008-02-19 13:15:30 -0500 | [diff] [blame] | 516 | { USB_DEVICE(KYOCERA_VENDOR_ID, KYOCERA_PRODUCT_KPC680) }, |
Greg Kroah-Hartman | d2e2aff | 2008-07-01 13:11:56 +0530 | [diff] [blame] | 517 | { USB_DEVICE(QUALCOMM_VENDOR_ID, 0x6000)}, /* ZTE AC8700 */ |
Kevin Lloyd | d726fb7 | 2008-02-14 13:35:16 -0800 | [diff] [blame] | 518 | { USB_DEVICE(QUALCOMM_VENDOR_ID, 0x6613)}, /* Onda H600/ZTE MF330 */ |
James Cameron | 80d9709 | 2008-04-09 18:59:13 +1000 | [diff] [blame] | 519 | { USB_DEVICE(MAXON_VENDOR_ID, 0x6280) }, /* BP3-USB & BP3-EXT HSDPA */ |
Greg Kroah-Hartman | ee53b0c | 2008-05-15 10:07:44 -0700 | [diff] [blame] | 520 | { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_UC864E) }, |
Manuel Lauss | ce60c48 | 2009-09-01 09:04:35 +0200 | [diff] [blame] | 521 | { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_UC864G) }, |
Herton Ronaldo Krzesinski | c420bef | 2009-07-15 17:10:26 -0300 | [diff] [blame] | 522 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, ZTE_PRODUCT_MF622, 0xff, 0xff, 0xff) }, /* ZTE WCDMA products */ |
| 523 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0002, 0xff, 0xff, 0xff) }, |
| 524 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0003, 0xff, 0xff, 0xff) }, |
| 525 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0004, 0xff, 0xff, 0xff) }, |
| 526 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0005, 0xff, 0xff, 0xff) }, |
| 527 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0006, 0xff, 0xff, 0xff) }, |
| 528 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0007, 0xff, 0xff, 0xff) }, |
| 529 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0008, 0xff, 0xff, 0xff) }, |
| 530 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0009, 0xff, 0xff, 0xff) }, |
| 531 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x000a, 0xff, 0xff, 0xff) }, |
| 532 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x000b, 0xff, 0xff, 0xff) }, |
| 533 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x000c, 0xff, 0xff, 0xff) }, |
| 534 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x000d, 0xff, 0xff, 0xff) }, |
| 535 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x000e, 0xff, 0xff, 0xff) }, |
| 536 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x000f, 0xff, 0xff, 0xff) }, |
| 537 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0010, 0xff, 0xff, 0xff) }, |
| 538 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0011, 0xff, 0xff, 0xff) }, |
| 539 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0012, 0xff, 0xff, 0xff) }, |
| 540 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0013, 0xff, 0xff, 0xff) }, |
| 541 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, ZTE_PRODUCT_MF628, 0xff, 0xff, 0xff) }, |
| 542 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0016, 0xff, 0xff, 0xff) }, |
| 543 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0017, 0xff, 0xff, 0xff) }, |
| 544 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0018, 0xff, 0xff, 0xff) }, |
| 545 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0019, 0xff, 0xff, 0xff) }, |
| 546 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0020, 0xff, 0xff, 0xff) }, |
| 547 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0021, 0xff, 0xff, 0xff) }, |
| 548 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0022, 0xff, 0xff, 0xff) }, |
| 549 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0023, 0xff, 0xff, 0xff) }, |
| 550 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0024, 0xff, 0xff, 0xff) }, |
| 551 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0025, 0xff, 0xff, 0xff) }, |
| 552 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0026, 0xff, 0xff, 0xff) }, |
| 553 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0028, 0xff, 0xff, 0xff) }, |
| 554 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0029, 0xff, 0xff, 0xff) }, |
| 555 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0030, 0xff, 0xff, 0xff) }, |
| 556 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, ZTE_PRODUCT_MF626, 0xff, 0xff, 0xff) }, |
| 557 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0032, 0xff, 0xff, 0xff) }, |
| 558 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0033, 0xff, 0xff, 0xff) }, |
| 559 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0037, 0xff, 0xff, 0xff) }, |
| 560 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0039, 0xff, 0xff, 0xff) }, |
| 561 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0042, 0xff, 0xff, 0xff) }, |
| 562 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0043, 0xff, 0xff, 0xff) }, |
| 563 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0048, 0xff, 0xff, 0xff) }, |
| 564 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0049, 0xff, 0xff, 0xff) }, |
| 565 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0051, 0xff, 0xff, 0xff) }, |
| 566 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0052, 0xff, 0xff, 0xff) }, |
| 567 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0054, 0xff, 0xff, 0xff) }, |
| 568 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0055, 0xff, 0xff, 0xff) }, |
| 569 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0057, 0xff, 0xff, 0xff) }, |
| 570 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0058, 0xff, 0xff, 0xff) }, |
| 571 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0061, 0xff, 0xff, 0xff) }, |
| 572 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0062, 0xff, 0xff, 0xff) }, |
| 573 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0063, 0xff, 0xff, 0xff) }, |
| 574 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0064, 0xff, 0xff, 0xff) }, |
| 575 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0066, 0xff, 0xff, 0xff) }, |
| 576 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0069, 0xff, 0xff, 0xff) }, |
| 577 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0076, 0xff, 0xff, 0xff) }, |
| 578 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0078, 0xff, 0xff, 0xff) }, |
| 579 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0082, 0xff, 0xff, 0xff) }, |
| 580 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0086, 0xff, 0xff, 0xff) }, |
| 581 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x2002, 0xff, 0xff, 0xff) }, |
| 582 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x2003, 0xff, 0xff, 0xff) }, |
| 583 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0014, 0xff, 0xff, 0xff) }, /* ZTE CDMA products */ |
| 584 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0027, 0xff, 0xff, 0xff) }, |
| 585 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0059, 0xff, 0xff, 0xff) }, |
| 586 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0060, 0xff, 0xff, 0xff) }, |
| 587 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0070, 0xff, 0xff, 0xff) }, |
| 588 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0073, 0xff, 0xff, 0xff) }, |
| 589 | { 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] | 590 | { 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] | 591 | { 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] | 592 | { USB_DEVICE(BENQ_VENDOR_ID, BENQ_PRODUCT_H10) }, |
Pascal Terjan | c00deaa | 2009-04-07 14:40:42 +0200 | [diff] [blame] | 593 | { USB_DEVICE(DLINK_VENDOR_ID, DLINK_PRODUCT_DWM_652) }, |
Zhang Le | ff854ce | 2009-11-04 23:22:59 +0800 | [diff] [blame] | 594 | { 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] | 595 | { USB_DEVICE(QISDA_VENDOR_ID, QISDA_PRODUCT_H21_4512) }, |
| 596 | { USB_DEVICE(QISDA_VENDOR_ID, QISDA_PRODUCT_H21_4523) }, |
| 597 | { USB_DEVICE(QISDA_VENDOR_ID, QISDA_PRODUCT_H20_4515) }, |
| 598 | { USB_DEVICE(QISDA_VENDOR_ID, QISDA_PRODUCT_H20_4519) }, |
Peter Magdina | 75f4721 | 2009-10-07 16:22:17 +0200 | [diff] [blame] | 599 | { USB_DEVICE(TOSHIBA_VENDOR_ID, TOSHIBA_PRODUCT_G450) }, |
Michele Valzelli | 334f9b0 | 2009-05-27 00:09:12 +0200 | [diff] [blame] | 600 | { 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] | 601 | { USB_DEVICE(ALINK_VENDOR_ID, 0x9000) }, |
Zhang Le | 54a8e14 | 2009-11-17 14:53:42 -0800 | [diff] [blame^] | 602 | { USB_DEVICE(ALINK_VENDOR_ID, 0xce16) }, |
Anssi Hannula | c3325eb | 2009-07-06 19:08:59 +0300 | [diff] [blame] | 603 | { 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] | 604 | { USB_DEVICE(ALCATEL_VENDOR_ID, ALCATEL_PRODUCT_X060S) }, |
Huzaifa Sidhpurwala | 12148da | 2009-10-12 14:34:45 +0530 | [diff] [blame] | 605 | { USB_DEVICE(AIRPLUS_VENDOR_ID, AIRPLUS_PRODUCT_MCD650) }, |
Bryan Wu | fead2ab | 2009-10-22 15:00:36 +0800 | [diff] [blame] | 606 | { USB_DEVICE(TLAYTECH_VENDOR_ID, TLAYTECH_PRODUCT_TEU800) }, |
Gernot Hillier | 0ec8648 | 2009-11-27 13:49:23 +0100 | [diff] [blame] | 607 | { USB_DEVICE(FOUR_G_SYSTEMS_VENDOR_ID, FOUR_G_SYSTEMS_PRODUCT_W14) }, |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 608 | { } /* Terminating entry */ |
| 609 | }; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 610 | MODULE_DEVICE_TABLE(usb, option_ids); |
| 611 | |
| 612 | static struct usb_driver option_driver = { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 613 | .name = "option", |
| 614 | .probe = usb_serial_probe, |
| 615 | .disconnect = usb_serial_disconnect, |
Oliver Neukum | 5f4fab9 | 2009-07-13 23:24:10 +0200 | [diff] [blame] | 616 | #ifdef CONFIG_PM |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 617 | .suspend = usb_serial_suspend, |
| 618 | .resume = usb_serial_resume, |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 619 | .supports_autosuspend = 1, |
Oliver Neukum | 5f4fab9 | 2009-07-13 23:24:10 +0200 | [diff] [blame] | 620 | #endif |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 621 | .id_table = option_ids, |
Greg Kroah-Hartman | ba9dc65 | 2005-11-16 13:41:28 -0800 | [diff] [blame] | 622 | .no_dynamic_id = 1, |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 623 | }; |
| 624 | |
Uwe Zeisberger | c30fe7f | 2006-03-24 18:23:14 +0100 | [diff] [blame] | 625 | /* The card has three separate interfaces, which the serial driver |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 626 | * recognizes separately, thus num_port=1. |
| 627 | */ |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 628 | |
| 629 | static struct usb_serial_driver option_1port_device = { |
| 630 | .driver = { |
| 631 | .owner = THIS_MODULE, |
Matthias Urlichs | 02b2ac5 | 2006-08-02 16:41:41 -0700 | [diff] [blame] | 632 | .name = "option1", |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 633 | }, |
| 634 | .description = "GSM modem (1-port)", |
Johannes Hölzl | d9b1b78 | 2006-12-17 21:50:24 +0100 | [diff] [blame] | 635 | .usb_driver = &option_driver, |
Greg Kroah-Hartman | b656b2c | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 636 | .id_table = option_ids, |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 637 | .num_ports = 1, |
Pascal Terjan | c5be1b5 | 2009-04-16 19:00:45 +0200 | [diff] [blame] | 638 | .probe = option_probe, |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 639 | .open = option_open, |
| 640 | .close = option_close, |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 641 | .dtr_rts = option_dtr_rts, |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 642 | .write = option_write, |
| 643 | .write_room = option_write_room, |
| 644 | .chars_in_buffer = option_chars_in_buffer, |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 645 | .set_termios = option_set_termios, |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 646 | .tiocmget = option_tiocmget, |
| 647 | .tiocmset = option_tiocmset, |
| 648 | .attach = option_startup, |
Alan Stern | f9c99bb | 2009-06-02 11:53:55 -0400 | [diff] [blame] | 649 | .disconnect = option_disconnect, |
| 650 | .release = option_release, |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 651 | .read_int_callback = option_instat_callback, |
Oliver Neukum | 5f4fab9 | 2009-07-13 23:24:10 +0200 | [diff] [blame] | 652 | #ifdef CONFIG_PM |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 653 | .suspend = option_suspend, |
| 654 | .resume = option_resume, |
Oliver Neukum | 5f4fab9 | 2009-07-13 23:24:10 +0200 | [diff] [blame] | 655 | #endif |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 656 | }; |
| 657 | |
| 658 | static int debug; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 659 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 660 | /* per port private data */ |
| 661 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 662 | #define N_IN_URB 4 |
Greg Kroah-Hartman | f1632df | 2008-12-16 13:26:07 -0800 | [diff] [blame] | 663 | #define N_OUT_URB 4 |
Matthias Urlichs | b27c73d | 2005-09-22 00:49:33 -0700 | [diff] [blame] | 664 | #define IN_BUFLEN 4096 |
Greg Kroah-Hartman | f1632df | 2008-12-16 13:26:07 -0800 | [diff] [blame] | 665 | #define OUT_BUFLEN 4096 |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 666 | |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 667 | struct option_intf_private { |
| 668 | spinlock_t susp_lock; |
| 669 | unsigned int suspended:1; |
| 670 | int in_flight; |
| 671 | }; |
| 672 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 673 | struct option_port_private { |
| 674 | /* Input endpoints and buffer for this port */ |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 675 | struct urb *in_urbs[N_IN_URB]; |
Oliver Neukum | 2129c4e | 2008-02-01 13:58:52 +0100 | [diff] [blame] | 676 | u8 *in_buffer[N_IN_URB]; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 677 | /* Output endpoints and buffer for this port */ |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 678 | struct urb *out_urbs[N_OUT_URB]; |
Oliver Neukum | 2129c4e | 2008-02-01 13:58:52 +0100 | [diff] [blame] | 679 | u8 *out_buffer[N_OUT_URB]; |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 680 | unsigned long out_busy; /* Bit vector of URBs in use */ |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 681 | int opened; |
| 682 | struct usb_anchor delayed; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 683 | |
| 684 | /* Settings for the port */ |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 685 | int rts_state; /* Handshaking pins (outputs) */ |
| 686 | int dtr_state; |
| 687 | int cts_state; /* Handshaking pins (inputs) */ |
| 688 | int dsr_state; |
| 689 | int dcd_state; |
| 690 | int ri_state; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 691 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 692 | unsigned long tx_start_time[N_OUT_URB]; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 693 | }; |
| 694 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 695 | /* Functions used by new usb-serial code. */ |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 696 | static int __init option_init(void) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 697 | { |
| 698 | int retval; |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 699 | retval = usb_serial_register(&option_1port_device); |
| 700 | if (retval) |
| 701 | goto failed_1port_device_register; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 702 | retval = usb_register(&option_driver); |
| 703 | if (retval) |
| 704 | goto failed_driver_register; |
| 705 | |
Greg Kroah-Hartman | c197a8d | 2008-08-18 13:21:04 -0700 | [diff] [blame] | 706 | printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":" |
| 707 | DRIVER_DESC "\n"); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 708 | |
| 709 | return 0; |
| 710 | |
| 711 | failed_driver_register: |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 712 | usb_serial_deregister(&option_1port_device); |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 713 | failed_1port_device_register: |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 714 | return retval; |
| 715 | } |
| 716 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 717 | static void __exit option_exit(void) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 718 | { |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 719 | usb_deregister(&option_driver); |
| 720 | usb_serial_deregister(&option_1port_device); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 721 | } |
| 722 | |
| 723 | module_init(option_init); |
| 724 | module_exit(option_exit); |
| 725 | |
Pascal Terjan | c5be1b5 | 2009-04-16 19:00:45 +0200 | [diff] [blame] | 726 | static int option_probe(struct usb_serial *serial, |
| 727 | const struct usb_device_id *id) |
| 728 | { |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 729 | struct option_intf_private *data; |
Pascal Terjan | c5be1b5 | 2009-04-16 19:00:45 +0200 | [diff] [blame] | 730 | /* D-Link DWM 652 still exposes CD-Rom emulation interface in modem mode */ |
| 731 | if (serial->dev->descriptor.idVendor == DLINK_VENDOR_ID && |
| 732 | serial->dev->descriptor.idProduct == DLINK_PRODUCT_DWM_652 && |
| 733 | serial->interface->cur_altsetting->desc.bInterfaceClass == 0x8) |
| 734 | return -ENODEV; |
| 735 | |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 736 | data = serial->private = kzalloc(sizeof(struct option_intf_private), GFP_KERNEL); |
| 737 | if (!data) |
| 738 | return -ENOMEM; |
| 739 | spin_lock_init(&data->susp_lock); |
Pascal Terjan | c5be1b5 | 2009-04-16 19:00:45 +0200 | [diff] [blame] | 740 | return 0; |
| 741 | } |
| 742 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 743 | static void option_set_termios(struct tty_struct *tty, |
| 744 | struct usb_serial_port *port, struct ktermios *old_termios) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 745 | { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 746 | dbg("%s", __func__); |
Alan Cox | e650d8a | 2007-10-18 01:24:21 -0700 | [diff] [blame] | 747 | /* Doesn't support option setting */ |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 748 | tty_termios_copy_hw(tty->termios, old_termios); |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 749 | option_send_setup(port); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 750 | } |
| 751 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 752 | static int option_tiocmget(struct tty_struct *tty, struct file *file) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 753 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 754 | struct usb_serial_port *port = tty->driver_data; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 755 | unsigned int value; |
| 756 | struct option_port_private *portdata; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 757 | |
| 758 | portdata = usb_get_serial_port_data(port); |
| 759 | |
| 760 | value = ((portdata->rts_state) ? TIOCM_RTS : 0) | |
| 761 | ((portdata->dtr_state) ? TIOCM_DTR : 0) | |
| 762 | ((portdata->cts_state) ? TIOCM_CTS : 0) | |
| 763 | ((portdata->dsr_state) ? TIOCM_DSR : 0) | |
| 764 | ((portdata->dcd_state) ? TIOCM_CAR : 0) | |
| 765 | ((portdata->ri_state) ? TIOCM_RNG : 0); |
| 766 | |
| 767 | return value; |
| 768 | } |
| 769 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 770 | static int option_tiocmset(struct tty_struct *tty, struct file *file, |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 771 | unsigned int set, unsigned int clear) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 772 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 773 | struct usb_serial_port *port = tty->driver_data; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 774 | struct option_port_private *portdata; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 775 | |
| 776 | portdata = usb_get_serial_port_data(port); |
| 777 | |
Alan Cox | e298449 | 2008-02-20 20:51:45 +0000 | [diff] [blame] | 778 | /* FIXME: what locks portdata fields ? */ |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 779 | if (set & TIOCM_RTS) |
| 780 | portdata->rts_state = 1; |
| 781 | if (set & TIOCM_DTR) |
| 782 | portdata->dtr_state = 1; |
| 783 | |
| 784 | if (clear & TIOCM_RTS) |
| 785 | portdata->rts_state = 0; |
| 786 | if (clear & TIOCM_DTR) |
| 787 | portdata->dtr_state = 0; |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 788 | return option_send_setup(port); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 789 | } |
| 790 | |
| 791 | /* Write */ |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 792 | 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] | 793 | const unsigned char *buf, int count) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 794 | { |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 795 | struct option_port_private *portdata; |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 796 | struct option_intf_private *intfdata; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 797 | int i; |
| 798 | int left, todo; |
| 799 | struct urb *this_urb = NULL; /* spurious */ |
| 800 | int err; |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 801 | unsigned long flags; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 802 | |
| 803 | portdata = usb_get_serial_port_data(port); |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 804 | intfdata = port->serial->private; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 805 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 806 | dbg("%s: write (%d chars)", __func__, count); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 807 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 808 | i = 0; |
| 809 | left = count; |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 810 | for (i = 0; left > 0 && i < N_OUT_URB; i++) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 811 | todo = left; |
| 812 | if (todo > OUT_BUFLEN) |
| 813 | todo = OUT_BUFLEN; |
| 814 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 815 | this_urb = portdata->out_urbs[i]; |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 816 | if (test_and_set_bit(i, &portdata->out_busy)) { |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 817 | if (time_before(jiffies, |
| 818 | portdata->tx_start_time[i] + 10 * HZ)) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 819 | continue; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 820 | usb_unlink_urb(this_urb); |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 821 | continue; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 822 | } |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 823 | dbg("%s: endpoint %d buf %d", __func__, |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 824 | usb_pipeendpoint(this_urb->pipe), i); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 825 | |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 826 | err = usb_autopm_get_interface_async(port->serial->interface); |
| 827 | if (err < 0) |
| 828 | break; |
| 829 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 830 | /* send the data */ |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 831 | memcpy(this_urb->transfer_buffer, buf, todo); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 832 | this_urb->transfer_buffer_length = todo; |
| 833 | |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 834 | spin_lock_irqsave(&intfdata->susp_lock, flags); |
| 835 | if (intfdata->suspended) { |
| 836 | usb_anchor_urb(this_urb, &portdata->delayed); |
| 837 | spin_unlock_irqrestore(&intfdata->susp_lock, flags); |
| 838 | } else { |
| 839 | intfdata->in_flight++; |
| 840 | spin_unlock_irqrestore(&intfdata->susp_lock, flags); |
| 841 | err = usb_submit_urb(this_urb, GFP_ATOMIC); |
| 842 | if (err) { |
| 843 | dbg("usb_submit_urb %p (write bulk) failed " |
| 844 | "(%d)", this_urb, err); |
| 845 | clear_bit(i, &portdata->out_busy); |
| 846 | spin_lock_irqsave(&intfdata->susp_lock, flags); |
| 847 | intfdata->in_flight--; |
| 848 | spin_unlock_irqrestore(&intfdata->susp_lock, flags); |
| 849 | continue; |
| 850 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 851 | } |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 852 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 853 | portdata->tx_start_time[i] = jiffies; |
| 854 | buf += todo; |
| 855 | left -= todo; |
| 856 | } |
| 857 | |
| 858 | count -= left; |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 859 | dbg("%s: wrote (did %d)", __func__, count); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 860 | return count; |
| 861 | } |
| 862 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 863 | static void option_indat_callback(struct urb *urb) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 864 | { |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 865 | int err; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 866 | int endpoint; |
| 867 | struct usb_serial_port *port; |
| 868 | struct tty_struct *tty; |
| 869 | unsigned char *data = urb->transfer_buffer; |
Greg Kroah-Hartman | d6977b5 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 870 | int status = urb->status; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 871 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 872 | dbg("%s: %p", __func__, urb); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 873 | |
| 874 | endpoint = usb_pipeendpoint(urb->pipe); |
Ming Lei | cdc9779 | 2008-02-24 18:41:47 +0800 | [diff] [blame] | 875 | port = urb->context; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 876 | |
Greg Kroah-Hartman | d6977b5 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 877 | if (status) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 878 | dbg("%s: nonzero status: %d on endpoint %02x.", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 879 | __func__, status, endpoint); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 880 | } else { |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 881 | tty = tty_port_tty_get(&port->port); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 882 | if (urb->actual_length) { |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 883 | tty_buffer_request_room(tty, urb->actual_length); |
| 884 | tty_insert_flip_string(tty, data, urb->actual_length); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 885 | tty_flip_buffer_push(tty); |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 886 | } else |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 887 | dbg("%s: empty read urb received", __func__); |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 888 | tty_kref_put(tty); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 889 | |
| 890 | /* Resubmit urb so we continue receiving */ |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 891 | if (port->port.count && status != -ESHUTDOWN) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 892 | err = usb_submit_urb(urb, GFP_ATOMIC); |
| 893 | if (err) |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 894 | printk(KERN_ERR "%s: resubmit read urb failed. " |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 895 | "(%d)", __func__, err); |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 896 | else |
| 897 | usb_mark_last_busy(port->serial->dev); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 898 | } |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 899 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 900 | } |
| 901 | return; |
| 902 | } |
| 903 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 904 | static void option_outdat_callback(struct urb *urb) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 905 | { |
| 906 | struct usb_serial_port *port; |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 907 | struct option_port_private *portdata; |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 908 | struct option_intf_private *intfdata; |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 909 | int i; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 910 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 911 | dbg("%s", __func__); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 912 | |
Ming Lei | cdc9779 | 2008-02-24 18:41:47 +0800 | [diff] [blame] | 913 | port = urb->context; |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 914 | intfdata = port->serial->private; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 915 | |
Pete Zaitcev | cf2c748 | 2006-05-22 21:58:49 -0700 | [diff] [blame] | 916 | usb_serial_port_softint(port); |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 917 | usb_autopm_put_interface_async(port->serial->interface); |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 918 | portdata = usb_get_serial_port_data(port); |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 919 | spin_lock(&intfdata->susp_lock); |
| 920 | intfdata->in_flight--; |
| 921 | spin_unlock(&intfdata->susp_lock); |
| 922 | |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 923 | for (i = 0; i < N_OUT_URB; ++i) { |
| 924 | if (portdata->out_urbs[i] == urb) { |
| 925 | smp_mb__before_clear_bit(); |
| 926 | clear_bit(i, &portdata->out_busy); |
| 927 | break; |
| 928 | } |
| 929 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 930 | } |
| 931 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 932 | static void option_instat_callback(struct urb *urb) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 933 | { |
| 934 | int err; |
Greg Kroah-Hartman | d6977b5 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 935 | int status = urb->status; |
Ming Lei | cdc9779 | 2008-02-24 18:41:47 +0800 | [diff] [blame] | 936 | struct usb_serial_port *port = urb->context; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 937 | struct option_port_private *portdata = usb_get_serial_port_data(port); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 938 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 939 | dbg("%s", __func__); |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 940 | 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] | 941 | |
Greg Kroah-Hartman | d6977b5 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 942 | if (status == 0) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 943 | struct usb_ctrlrequest *req_pkt = |
| 944 | (struct usb_ctrlrequest *)urb->transfer_buffer; |
| 945 | |
| 946 | if (!req_pkt) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 947 | dbg("%s: NULL req_pkt\n", __func__); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 948 | return; |
| 949 | } |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 950 | if ((req_pkt->bRequestType == 0xA1) && |
| 951 | (req_pkt->bRequest == 0x20)) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 952 | int old_dcd_state; |
| 953 | unsigned char signals = *((unsigned char *) |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 954 | urb->transfer_buffer + |
| 955 | sizeof(struct usb_ctrlrequest)); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 956 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 957 | dbg("%s: signal x%x", __func__, signals); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 958 | |
| 959 | old_dcd_state = portdata->dcd_state; |
| 960 | portdata->cts_state = 1; |
| 961 | portdata->dcd_state = ((signals & 0x01) ? 1 : 0); |
| 962 | portdata->dsr_state = ((signals & 0x02) ? 1 : 0); |
| 963 | portdata->ri_state = ((signals & 0x08) ? 1 : 0); |
| 964 | |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 965 | if (old_dcd_state && !portdata->dcd_state) { |
| 966 | struct tty_struct *tty = |
| 967 | tty_port_tty_get(&port->port); |
| 968 | if (tty && !C_CLOCAL(tty)) |
| 969 | tty_hangup(tty); |
| 970 | tty_kref_put(tty); |
| 971 | } |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 972 | } else { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 973 | dbg("%s: type %x req %x", __func__, |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 974 | req_pkt->bRequestType, req_pkt->bRequest); |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 975 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 976 | } else |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 977 | err("%s: error %d", __func__, status); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 978 | |
| 979 | /* Resubmit urb so we continue receiving IRQ data */ |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 980 | if (status != -ESHUTDOWN && status != -ENOENT) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 981 | err = usb_submit_urb(urb, GFP_ATOMIC); |
| 982 | if (err) |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 983 | dbg("%s: resubmit intr urb failed. (%d)", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 984 | __func__, err); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 985 | } |
| 986 | } |
| 987 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 988 | static int option_write_room(struct tty_struct *tty) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 989 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 990 | struct usb_serial_port *port = tty->driver_data; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 991 | struct option_port_private *portdata; |
| 992 | int i; |
| 993 | int data_len = 0; |
| 994 | struct urb *this_urb; |
| 995 | |
| 996 | portdata = usb_get_serial_port_data(port); |
| 997 | |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 998 | for (i = 0; i < N_OUT_URB; i++) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 999 | this_urb = portdata->out_urbs[i]; |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 1000 | if (this_urb && !test_bit(i, &portdata->out_busy)) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1001 | data_len += OUT_BUFLEN; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 1002 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1003 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1004 | dbg("%s: %d", __func__, data_len); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1005 | return data_len; |
| 1006 | } |
| 1007 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1008 | static int option_chars_in_buffer(struct tty_struct *tty) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1009 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1010 | struct usb_serial_port *port = tty->driver_data; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1011 | struct option_port_private *portdata; |
| 1012 | int i; |
| 1013 | int data_len = 0; |
| 1014 | struct urb *this_urb; |
| 1015 | |
| 1016 | portdata = usb_get_serial_port_data(port); |
| 1017 | |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 1018 | for (i = 0; i < N_OUT_URB; i++) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1019 | this_urb = portdata->out_urbs[i]; |
Alan Cox | a5b6f60 | 2008-04-08 17:16:06 +0100 | [diff] [blame] | 1020 | /* FIXME: This locking is insufficient as this_urb may |
| 1021 | go unused during the test */ |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 1022 | if (this_urb && test_bit(i, &portdata->out_busy)) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1023 | data_len += this_urb->transfer_buffer_length; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 1024 | } |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1025 | dbg("%s: %d", __func__, data_len); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1026 | return data_len; |
| 1027 | } |
| 1028 | |
Alan Cox | a509a7e | 2009-09-19 13:13:26 -0700 | [diff] [blame] | 1029 | 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] | 1030 | { |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 1031 | struct option_port_private *portdata; |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1032 | struct option_intf_private *intfdata; |
| 1033 | struct usb_serial *serial = port->serial; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 1034 | int i, err; |
| 1035 | struct urb *urb; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1036 | |
| 1037 | portdata = usb_get_serial_port_data(port); |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1038 | intfdata = serial->private; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1039 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1040 | dbg("%s", __func__); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1041 | |
Alan Stern | f092c24 | 2009-07-09 12:58:43 -0400 | [diff] [blame] | 1042 | /* Start reading from the IN endpoint */ |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1043 | for (i = 0; i < N_IN_URB; i++) { |
| 1044 | urb = portdata->in_urbs[i]; |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 1045 | if (!urb) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1046 | continue; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1047 | err = usb_submit_urb(urb, GFP_KERNEL); |
| 1048 | if (err) { |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 1049 | dbg("%s: submit urb %d failed (%d) %d", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1050 | __func__, i, err, |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1051 | urb->transfer_buffer_length); |
| 1052 | } |
| 1053 | } |
| 1054 | |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 1055 | option_send_setup(port); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1056 | |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1057 | serial->interface->needs_remote_wakeup = 1; |
| 1058 | spin_lock_irq(&intfdata->susp_lock); |
| 1059 | portdata->opened = 1; |
| 1060 | spin_unlock_irq(&intfdata->susp_lock); |
| 1061 | usb_autopm_put_interface(serial->interface); |
| 1062 | |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 1063 | return 0; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1064 | } |
| 1065 | |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 1066 | static void option_dtr_rts(struct usb_serial_port *port, int on) |
| 1067 | { |
| 1068 | struct usb_serial *serial = port->serial; |
| 1069 | struct option_port_private *portdata; |
| 1070 | |
| 1071 | dbg("%s", __func__); |
| 1072 | portdata = usb_get_serial_port_data(port); |
| 1073 | mutex_lock(&serial->disc_mutex); |
| 1074 | portdata->rts_state = on; |
| 1075 | portdata->dtr_state = on; |
| 1076 | if (serial->dev) |
| 1077 | option_send_setup(port); |
| 1078 | mutex_unlock(&serial->disc_mutex); |
| 1079 | } |
| 1080 | |
| 1081 | |
| 1082 | static void option_close(struct usb_serial_port *port) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1083 | { |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 1084 | int i; |
| 1085 | struct usb_serial *serial = port->serial; |
| 1086 | struct option_port_private *portdata; |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1087 | struct option_intf_private *intfdata = port->serial->private; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1088 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1089 | dbg("%s", __func__); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1090 | portdata = usb_get_serial_port_data(port); |
| 1091 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1092 | if (serial->dev) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1093 | /* Stop reading/writing urbs */ |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1094 | spin_lock_irq(&intfdata->susp_lock); |
| 1095 | portdata->opened = 0; |
| 1096 | spin_unlock_irq(&intfdata->susp_lock); |
| 1097 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1098 | for (i = 0; i < N_IN_URB; i++) |
Oliver Neukum | 7d28e74 | 2007-03-20 13:41:21 +0100 | [diff] [blame] | 1099 | usb_kill_urb(portdata->in_urbs[i]); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1100 | for (i = 0; i < N_OUT_URB; i++) |
Oliver Neukum | 7d28e74 | 2007-03-20 13:41:21 +0100 | [diff] [blame] | 1101 | usb_kill_urb(portdata->out_urbs[i]); |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1102 | usb_autopm_get_interface(serial->interface); |
| 1103 | serial->interface->needs_remote_wakeup = 0; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1104 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1105 | } |
| 1106 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1107 | /* Helper functions used by option_setup_urbs */ |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 1108 | static struct urb *option_setup_urb(struct usb_serial *serial, int endpoint, |
| 1109 | int dir, void *ctx, char *buf, int len, |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1110 | void (*callback)(struct urb *)) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1111 | { |
| 1112 | struct urb *urb; |
| 1113 | |
| 1114 | if (endpoint == -1) |
| 1115 | return NULL; /* endpoint not needed */ |
| 1116 | |
| 1117 | urb = usb_alloc_urb(0, GFP_KERNEL); /* No ISO */ |
| 1118 | if (urb == NULL) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1119 | dbg("%s: alloc for endpoint %d failed.", __func__, endpoint); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1120 | return NULL; |
| 1121 | } |
| 1122 | |
| 1123 | /* Fill URB using supplied data. */ |
| 1124 | usb_fill_bulk_urb(urb, serial->dev, |
| 1125 | usb_sndbulkpipe(serial->dev, endpoint) | dir, |
| 1126 | buf, len, callback, ctx); |
| 1127 | |
| 1128 | return urb; |
| 1129 | } |
| 1130 | |
| 1131 | /* Setup urbs */ |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 1132 | static void option_setup_urbs(struct usb_serial *serial) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1133 | { |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 1134 | int i, j; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 1135 | struct usb_serial_port *port; |
| 1136 | struct option_port_private *portdata; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1137 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1138 | dbg("%s", __func__); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1139 | |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 1140 | for (i = 0; i < serial->num_ports; i++) { |
| 1141 | port = serial->port[i]; |
| 1142 | portdata = usb_get_serial_port_data(port); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1143 | |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 1144 | /* Do indat endpoints first */ |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 1145 | for (j = 0; j < N_IN_URB; ++j) { |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 1146 | portdata->in_urbs[j] = option_setup_urb(serial, |
| 1147 | port->bulk_in_endpointAddress, |
| 1148 | USB_DIR_IN, port, |
| 1149 | portdata->in_buffer[j], |
| 1150 | IN_BUFLEN, option_indat_callback); |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 1151 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1152 | |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 1153 | /* outdat endpoints */ |
| 1154 | for (j = 0; j < N_OUT_URB; ++j) { |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 1155 | portdata->out_urbs[j] = option_setup_urb(serial, |
| 1156 | port->bulk_out_endpointAddress, |
| 1157 | USB_DIR_OUT, port, |
| 1158 | portdata->out_buffer[j], |
| 1159 | OUT_BUFLEN, option_outdat_callback); |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 1160 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1161 | } |
| 1162 | } |
| 1163 | |
Chris Collins | 5f76004 | 2008-04-10 10:15:53 +0200 | [diff] [blame] | 1164 | |
| 1165 | /** send RTS/DTR state to the port. |
| 1166 | * |
| 1167 | * This is exactly the same as SET_CONTROL_LINE_STATE from the PSTN |
| 1168 | * CDC. |
| 1169 | */ |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 1170 | static int option_send_setup(struct usb_serial_port *port) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1171 | { |
| 1172 | struct usb_serial *serial = port->serial; |
| 1173 | struct option_port_private *portdata; |
Chris Collins | 5f76004 | 2008-04-10 10:15:53 +0200 | [diff] [blame] | 1174 | int ifNum = serial->interface->cur_altsetting->desc.bInterfaceNumber; |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 1175 | int val = 0; |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1176 | dbg("%s", __func__); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1177 | |
| 1178 | portdata = usb_get_serial_port_data(port); |
| 1179 | |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 1180 | if (portdata->dtr_state) |
| 1181 | val |= 0x01; |
| 1182 | if (portdata->rts_state) |
| 1183 | val |= 0x02; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1184 | |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 1185 | return usb_control_msg(serial->dev, |
| 1186 | usb_rcvctrlpipe(serial->dev, 0), |
| 1187 | 0x22, 0x21, val, ifNum, NULL, 0, USB_CTRL_SET_TIMEOUT); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1188 | } |
| 1189 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 1190 | static int option_startup(struct usb_serial *serial) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1191 | { |
Oliver Neukum | 2129c4e | 2008-02-01 13:58:52 +0100 | [diff] [blame] | 1192 | int i, j, err; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 1193 | struct usb_serial_port *port; |
| 1194 | struct option_port_private *portdata; |
Oliver Neukum | 2129c4e | 2008-02-01 13:58:52 +0100 | [diff] [blame] | 1195 | u8 *buffer; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1196 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1197 | dbg("%s", __func__); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1198 | |
| 1199 | /* Now setup per port private data */ |
| 1200 | for (i = 0; i < serial->num_ports; i++) { |
| 1201 | port = serial->port[i]; |
Eric Sesterhenn | 80b6ca4 | 2006-02-27 21:29:43 +0100 | [diff] [blame] | 1202 | portdata = kzalloc(sizeof(*portdata), GFP_KERNEL); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1203 | if (!portdata) { |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 1204 | dbg("%s: kmalloc for option_port_private (%d) failed!.", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1205 | __func__, i); |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 1206 | return 1; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1207 | } |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1208 | init_usb_anchor(&portdata->delayed); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1209 | |
Oliver Neukum | 2129c4e | 2008-02-01 13:58:52 +0100 | [diff] [blame] | 1210 | for (j = 0; j < N_IN_URB; j++) { |
| 1211 | buffer = (u8 *)__get_free_page(GFP_KERNEL); |
| 1212 | if (!buffer) |
| 1213 | goto bail_out_error; |
| 1214 | portdata->in_buffer[j] = buffer; |
| 1215 | } |
| 1216 | |
| 1217 | for (j = 0; j < N_OUT_URB; j++) { |
| 1218 | buffer = kmalloc(OUT_BUFLEN, GFP_KERNEL); |
| 1219 | if (!buffer) |
| 1220 | goto bail_out_error2; |
| 1221 | portdata->out_buffer[j] = buffer; |
| 1222 | } |
| 1223 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1224 | usb_set_serial_port_data(port, portdata); |
| 1225 | |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 1226 | if (!port->interrupt_in_urb) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1227 | continue; |
| 1228 | err = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL); |
| 1229 | if (err) |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 1230 | dbg("%s: submit irq_in urb failed %d", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1231 | __func__, err); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1232 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1233 | option_setup_urbs(serial); |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 1234 | return 0; |
Oliver Neukum | 2129c4e | 2008-02-01 13:58:52 +0100 | [diff] [blame] | 1235 | |
| 1236 | bail_out_error2: |
| 1237 | for (j = 0; j < N_OUT_URB; j++) |
| 1238 | kfree(portdata->out_buffer[j]); |
| 1239 | bail_out_error: |
| 1240 | for (j = 0; j < N_IN_URB; j++) |
| 1241 | if (portdata->in_buffer[j]) |
| 1242 | free_page((unsigned long)portdata->in_buffer[j]); |
| 1243 | kfree(portdata); |
| 1244 | return 1; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1245 | } |
| 1246 | |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1247 | static void stop_read_write_urbs(struct usb_serial *serial) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1248 | { |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 1249 | int i, j; |
| 1250 | struct usb_serial_port *port; |
| 1251 | struct option_port_private *portdata; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1252 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1253 | /* Stop reading/writing urbs */ |
| 1254 | for (i = 0; i < serial->num_ports; ++i) { |
| 1255 | port = serial->port[i]; |
| 1256 | portdata = usb_get_serial_port_data(port); |
| 1257 | for (j = 0; j < N_IN_URB; j++) |
Oliver Neukum | 7d28e74 | 2007-03-20 13:41:21 +0100 | [diff] [blame] | 1258 | usb_kill_urb(portdata->in_urbs[j]); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1259 | for (j = 0; j < N_OUT_URB; j++) |
Oliver Neukum | 7d28e74 | 2007-03-20 13:41:21 +0100 | [diff] [blame] | 1260 | usb_kill_urb(portdata->out_urbs[j]); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1261 | } |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1262 | } |
| 1263 | |
Alan Stern | f9c99bb | 2009-06-02 11:53:55 -0400 | [diff] [blame] | 1264 | static void option_disconnect(struct usb_serial *serial) |
| 1265 | { |
| 1266 | dbg("%s", __func__); |
| 1267 | |
| 1268 | stop_read_write_urbs(serial); |
| 1269 | } |
| 1270 | |
| 1271 | static void option_release(struct usb_serial *serial) |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1272 | { |
| 1273 | int i, j; |
| 1274 | struct usb_serial_port *port; |
| 1275 | struct option_port_private *portdata; |
| 1276 | |
| 1277 | dbg("%s", __func__); |
| 1278 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1279 | /* Now free them */ |
| 1280 | for (i = 0; i < serial->num_ports; ++i) { |
| 1281 | port = serial->port[i]; |
| 1282 | portdata = usb_get_serial_port_data(port); |
| 1283 | |
| 1284 | for (j = 0; j < N_IN_URB; j++) { |
| 1285 | if (portdata->in_urbs[j]) { |
| 1286 | usb_free_urb(portdata->in_urbs[j]); |
Alan Cox | 19e58fa | 2008-07-22 11:15:45 +0100 | [diff] [blame] | 1287 | free_page((unsigned long) |
| 1288 | portdata->in_buffer[j]); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1289 | portdata->in_urbs[j] = NULL; |
| 1290 | } |
| 1291 | } |
| 1292 | for (j = 0; j < N_OUT_URB; j++) { |
| 1293 | if (portdata->out_urbs[j]) { |
| 1294 | usb_free_urb(portdata->out_urbs[j]); |
Oliver Neukum | 2129c4e | 2008-02-01 13:58:52 +0100 | [diff] [blame] | 1295 | kfree(portdata->out_buffer[j]); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1296 | portdata->out_urbs[j] = NULL; |
| 1297 | } |
| 1298 | } |
| 1299 | } |
| 1300 | |
| 1301 | /* Now free per port private data */ |
| 1302 | for (i = 0; i < serial->num_ports; i++) { |
| 1303 | port = serial->port[i]; |
| 1304 | kfree(usb_get_serial_port_data(port)); |
| 1305 | } |
| 1306 | } |
| 1307 | |
Oliver Neukum | 5f4fab9 | 2009-07-13 23:24:10 +0200 | [diff] [blame] | 1308 | #ifdef CONFIG_PM |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1309 | static int option_suspend(struct usb_serial *serial, pm_message_t message) |
| 1310 | { |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1311 | struct option_intf_private *intfdata = serial->private; |
| 1312 | int b; |
| 1313 | |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1314 | dbg("%s entered", __func__); |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1315 | |
| 1316 | if (serial->dev->auto_pm) { |
| 1317 | spin_lock_irq(&intfdata->susp_lock); |
| 1318 | b = intfdata->in_flight; |
| 1319 | spin_unlock_irq(&intfdata->susp_lock); |
| 1320 | |
| 1321 | if (b) |
| 1322 | return -EBUSY; |
| 1323 | } |
| 1324 | |
| 1325 | spin_lock_irq(&intfdata->susp_lock); |
| 1326 | intfdata->suspended = 1; |
| 1327 | spin_unlock_irq(&intfdata->susp_lock); |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1328 | stop_read_write_urbs(serial); |
| 1329 | |
| 1330 | return 0; |
| 1331 | } |
| 1332 | |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1333 | static void play_delayed(struct usb_serial_port *port) |
| 1334 | { |
| 1335 | struct option_intf_private *data; |
| 1336 | struct option_port_private *portdata; |
| 1337 | struct urb *urb; |
| 1338 | int err; |
| 1339 | |
| 1340 | portdata = usb_get_serial_port_data(port); |
| 1341 | data = port->serial->private; |
| 1342 | while ((urb = usb_get_from_anchor(&portdata->delayed))) { |
| 1343 | err = usb_submit_urb(urb, GFP_ATOMIC); |
| 1344 | if (!err) |
| 1345 | data->in_flight++; |
| 1346 | } |
| 1347 | } |
| 1348 | |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1349 | static int option_resume(struct usb_serial *serial) |
| 1350 | { |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1351 | int i, j; |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1352 | struct usb_serial_port *port; |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1353 | struct option_intf_private *intfdata = serial->private; |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1354 | struct option_port_private *portdata; |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1355 | struct urb *urb; |
| 1356 | int err = 0; |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1357 | |
| 1358 | dbg("%s entered", __func__); |
| 1359 | /* get the interrupt URBs resubmitted unconditionally */ |
| 1360 | for (i = 0; i < serial->num_ports; i++) { |
| 1361 | port = serial->port[i]; |
| 1362 | if (!port->interrupt_in_urb) { |
| 1363 | dbg("%s: No interrupt URB for port %d\n", __func__, i); |
| 1364 | continue; |
| 1365 | } |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1366 | err = usb_submit_urb(port->interrupt_in_urb, GFP_NOIO); |
| 1367 | dbg("Submitted interrupt URB for port %d (result %d)", i, err); |
| 1368 | if (err < 0) { |
| 1369 | err("%s: Error %d for interrupt URB of port%d", |
| 1370 | __func__, err, i); |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1371 | goto err_out; |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1372 | } |
| 1373 | } |
| 1374 | |
| 1375 | for (i = 0; i < serial->num_ports; i++) { |
| 1376 | /* walk all ports */ |
| 1377 | port = serial->port[i]; |
| 1378 | portdata = usb_get_serial_port_data(port); |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1379 | |
| 1380 | /* skip closed ports */ |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1381 | spin_lock_irq(&intfdata->susp_lock); |
| 1382 | if (!portdata->opened) { |
| 1383 | spin_unlock_irq(&intfdata->susp_lock); |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1384 | continue; |
| 1385 | } |
| 1386 | |
| 1387 | for (j = 0; j < N_IN_URB; j++) { |
| 1388 | urb = portdata->in_urbs[j]; |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1389 | err = usb_submit_urb(urb, GFP_ATOMIC); |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1390 | if (err < 0) { |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1391 | err("%s: Error %d for bulk URB %d", |
| 1392 | __func__, err, i); |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1393 | spin_unlock_irq(&intfdata->susp_lock); |
| 1394 | goto err_out; |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1395 | } |
| 1396 | } |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1397 | play_delayed(port); |
| 1398 | spin_unlock_irq(&intfdata->susp_lock); |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1399 | } |
Oliver Neukum | 383cedc | 2009-07-01 16:00:32 +0200 | [diff] [blame] | 1400 | spin_lock_irq(&intfdata->susp_lock); |
| 1401 | intfdata->suspended = 0; |
| 1402 | spin_unlock_irq(&intfdata->susp_lock); |
| 1403 | err_out: |
| 1404 | return err; |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1405 | } |
Oliver Neukum | 5f4fab9 | 2009-07-13 23:24:10 +0200 | [diff] [blame] | 1406 | #endif |
Oliver Neukum | 4901b2c | 2009-01-27 17:21:40 +0100 | [diff] [blame] | 1407 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1408 | MODULE_AUTHOR(DRIVER_AUTHOR); |
| 1409 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 1410 | MODULE_VERSION(DRIVER_VERSION); |
| 1411 | MODULE_LICENSE("GPL"); |
| 1412 | |
| 1413 | module_param(debug, bool, S_IRUGO | S_IWUSR); |
| 1414 | MODULE_PARM_DESC(debug, "Debug messages"); |