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