blob: a16d69fadba1cd9fa7088b9baa3a598b6402c2d9 [file] [log] [blame]
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001/*
Matthias Urlichs14f76cc2006-06-02 11:48:56 +02002 USB Driver for GSM modems
Matthias Urlichs58cfe912005-05-23 17:00:48 -07003
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 Urlichsb3fdab52006-08-02 16:41:41 -070012 History: see the git log.
Matthias Urlichsba460e42005-07-14 00:33:47 -070013
14 Work sponsored by: Sigos GmbH, Germany <info@sigos.de>
15
Matthias Urlichs14f76cc2006-06-02 11:48:56 +020016 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 Urlichs7c1c2f72006-07-20 04:56:00 +020019 - nonstandard flow (Option devices) control
Matthias Urlichs14f76cc2006-06-02 11:48:56 +020020 - 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 Urlichs58cfe912005-05-23 17:00:48 -070029*/
Matthias Urlichsba460e42005-07-14 00:33:47 -070030
Chris Collins5f760042008-04-10 10:15:53 +020031#define DRIVER_VERSION "v0.7.2"
Matthias Urlichs58cfe912005-05-23 17:00:48 -070032#define DRIVER_AUTHOR "Matthias Urlichs <smurf@smurf.noris.de>"
Matthias Urlichs14f76cc2006-06-02 11:48:56 +020033#define DRIVER_DESC "USB Driver for GSM modems"
Matthias Urlichs58cfe912005-05-23 17:00:48 -070034
Matthias Urlichs58cfe912005-05-23 17:00:48 -070035#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 Stern59c2afa2007-06-05 16:46:26 -070041#include <linux/bitops.h>
Matthias Urlichs58cfe912005-05-23 17:00:48 -070042#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070043#include <linux/usb/serial.h>
Matthias Urlichs58cfe912005-05-23 17:00:48 -070044
45/* Function prototypes */
Alan Cox19e58fa2008-07-22 11:15:45 +010046static int option_open(struct tty_struct *tty, struct usb_serial_port *port,
47 struct file *filp);
Alan Cox335f8512009-06-11 12:26:29 +010048static void option_close(struct usb_serial_port *port);
49static void option_dtr_rts(struct usb_serial_port *port, int on);
50
Andrew Morton7bb75ae2005-07-27 01:08:30 -070051static int option_startup(struct usb_serial *serial);
52static void option_shutdown(struct usb_serial *serial);
Alan Cox95da3102008-07-22 11:09:07 +010053static int option_write_room(struct tty_struct *tty);
Matthias Urlichs58cfe912005-05-23 17:00:48 -070054
David Howells7d12e782006-10-05 14:55:46 +010055static void option_instat_callback(struct urb *urb);
Matthias Urlichs58cfe912005-05-23 17:00:48 -070056
Alan Cox95da3102008-07-22 11:09:07 +010057static int option_write(struct tty_struct *tty, struct usb_serial_port *port,
Andrew Morton7bb75ae2005-07-27 01:08:30 -070058 const unsigned char *buf, int count);
Alan Cox95da3102008-07-22 11:09:07 +010059static int option_chars_in_buffer(struct tty_struct *tty);
60static void option_set_termios(struct tty_struct *tty,
61 struct usb_serial_port *port, struct ktermios *old);
62static int option_tiocmget(struct tty_struct *tty, struct file *file);
63static int option_tiocmset(struct tty_struct *tty, struct file *file,
Andrew Morton7bb75ae2005-07-27 01:08:30 -070064 unsigned int set, unsigned int clear);
Alan Cox335f8512009-06-11 12:26:29 +010065static int option_send_setup(struct usb_serial_port *port);
Oliver Neukum4901b2c2009-01-27 17:21:40 +010066static int option_suspend(struct usb_serial *serial, pm_message_t message);
67static int option_resume(struct usb_serial *serial);
Matthias Urlichs58cfe912005-05-23 17:00:48 -070068
69/* Vendor and product IDs */
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -080070#define OPTION_VENDOR_ID 0x0AF0
71#define OPTION_PRODUCT_COLT 0x5000
72#define OPTION_PRODUCT_RICOLA 0x6000
73#define OPTION_PRODUCT_RICOLA_LIGHT 0x6100
74#define OPTION_PRODUCT_RICOLA_QUAD 0x6200
75#define OPTION_PRODUCT_RICOLA_QUAD_LIGHT 0x6300
76#define OPTION_PRODUCT_RICOLA_NDIS 0x6050
77#define OPTION_PRODUCT_RICOLA_NDIS_LIGHT 0x6150
78#define OPTION_PRODUCT_RICOLA_NDIS_QUAD 0x6250
79#define OPTION_PRODUCT_RICOLA_NDIS_QUAD_LIGHT 0x6350
80#define OPTION_PRODUCT_COBRA 0x6500
81#define OPTION_PRODUCT_COBRA_BUS 0x6501
82#define OPTION_PRODUCT_VIPER 0x6600
83#define OPTION_PRODUCT_VIPER_BUS 0x6601
84#define OPTION_PRODUCT_GT_MAX_READY 0x6701
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -080085#define OPTION_PRODUCT_FUJI_MODEM_LIGHT 0x6721
86#define OPTION_PRODUCT_FUJI_MODEM_GT 0x6741
87#define OPTION_PRODUCT_FUJI_MODEM_EX 0x6761
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -080088#define OPTION_PRODUCT_KOI_MODEM 0x6800
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -080089#define OPTION_PRODUCT_SCORPION_MODEM 0x6901
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -080090#define OPTION_PRODUCT_ETNA_MODEM 0x7001
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -080091#define OPTION_PRODUCT_ETNA_MODEM_LITE 0x7021
92#define OPTION_PRODUCT_ETNA_MODEM_GT 0x7041
93#define OPTION_PRODUCT_ETNA_MODEM_EX 0x7061
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -080094#define OPTION_PRODUCT_ETNA_KOI_MODEM 0x7100
Achilleas Kotsise7f2f0d2009-03-16 16:35:02 +020095#define OPTION_PRODUCT_GTM380_MODEM 0x7201
Matthias Urlichs58cfe912005-05-23 17:00:48 -070096
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -080097#define HUAWEI_VENDOR_ID 0x12D1
98#define HUAWEI_PRODUCT_E600 0x1001
99#define HUAWEI_PRODUCT_E220 0x1003
Jaime Velasco Juana3209a02007-09-07 19:06:39 +0100100#define HUAWEI_PRODUCT_E220BIS 0x1004
fangxiaozhiaad8a272008-04-10 14:51:06 +0800101#define HUAWEI_PRODUCT_E1401 0x1401
fangxiaozhi1460e5e2008-10-15 14:15:36 +0800102#define HUAWEI_PRODUCT_E1402 0x1402
fangxiaozhiaad8a272008-04-10 14:51:06 +0800103#define HUAWEI_PRODUCT_E1403 0x1403
fangxiaozhi1460e5e2008-10-15 14:15:36 +0800104#define HUAWEI_PRODUCT_E1404 0x1404
fangxiaozhiaad8a272008-04-10 14:51:06 +0800105#define HUAWEI_PRODUCT_E1405 0x1405
106#define HUAWEI_PRODUCT_E1406 0x1406
fangxiaozhi1460e5e2008-10-15 14:15:36 +0800107#define HUAWEI_PRODUCT_E1407 0x1407
fangxiaozhiaad8a272008-04-10 14:51:06 +0800108#define HUAWEI_PRODUCT_E1408 0x1408
109#define HUAWEI_PRODUCT_E1409 0x1409
fangxiaozhi1460e5e2008-10-15 14:15:36 +0800110#define HUAWEI_PRODUCT_E140A 0x140A
111#define HUAWEI_PRODUCT_E140B 0x140B
112#define HUAWEI_PRODUCT_E140C 0x140C
113#define HUAWEI_PRODUCT_E140D 0x140D
114#define HUAWEI_PRODUCT_E140E 0x140E
115#define HUAWEI_PRODUCT_E140F 0x140F
fangxiaozhiaad8a272008-04-10 14:51:06 +0800116#define HUAWEI_PRODUCT_E1410 0x1410
117#define HUAWEI_PRODUCT_E1411 0x1411
118#define HUAWEI_PRODUCT_E1412 0x1412
119#define HUAWEI_PRODUCT_E1413 0x1413
120#define HUAWEI_PRODUCT_E1414 0x1414
121#define HUAWEI_PRODUCT_E1415 0x1415
122#define HUAWEI_PRODUCT_E1416 0x1416
123#define HUAWEI_PRODUCT_E1417 0x1417
124#define HUAWEI_PRODUCT_E1418 0x1418
125#define HUAWEI_PRODUCT_E1419 0x1419
fangxiaozhi1460e5e2008-10-15 14:15:36 +0800126#define HUAWEI_PRODUCT_E141A 0x141A
127#define HUAWEI_PRODUCT_E141B 0x141B
128#define HUAWEI_PRODUCT_E141C 0x141C
129#define HUAWEI_PRODUCT_E141D 0x141D
130#define HUAWEI_PRODUCT_E141E 0x141E
131#define HUAWEI_PRODUCT_E141F 0x141F
132#define HUAWEI_PRODUCT_E1420 0x1420
133#define HUAWEI_PRODUCT_E1421 0x1421
134#define HUAWEI_PRODUCT_E1422 0x1422
135#define HUAWEI_PRODUCT_E1423 0x1423
136#define HUAWEI_PRODUCT_E1424 0x1424
137#define HUAWEI_PRODUCT_E1425 0x1425
138#define HUAWEI_PRODUCT_E1426 0x1426
139#define HUAWEI_PRODUCT_E1427 0x1427
140#define HUAWEI_PRODUCT_E1428 0x1428
141#define HUAWEI_PRODUCT_E1429 0x1429
142#define HUAWEI_PRODUCT_E142A 0x142A
143#define HUAWEI_PRODUCT_E142B 0x142B
144#define HUAWEI_PRODUCT_E142C 0x142C
145#define HUAWEI_PRODUCT_E142D 0x142D
146#define HUAWEI_PRODUCT_E142E 0x142E
147#define HUAWEI_PRODUCT_E142F 0x142F
148#define HUAWEI_PRODUCT_E1430 0x1430
149#define HUAWEI_PRODUCT_E1431 0x1431
150#define HUAWEI_PRODUCT_E1432 0x1432
151#define HUAWEI_PRODUCT_E1433 0x1433
152#define HUAWEI_PRODUCT_E1434 0x1434
153#define HUAWEI_PRODUCT_E1435 0x1435
154#define HUAWEI_PRODUCT_E1436 0x1436
155#define HUAWEI_PRODUCT_E1437 0x1437
156#define HUAWEI_PRODUCT_E1438 0x1438
157#define HUAWEI_PRODUCT_E1439 0x1439
158#define HUAWEI_PRODUCT_E143A 0x143A
159#define HUAWEI_PRODUCT_E143B 0x143B
160#define HUAWEI_PRODUCT_E143C 0x143C
161#define HUAWEI_PRODUCT_E143D 0x143D
162#define HUAWEI_PRODUCT_E143E 0x143E
163#define HUAWEI_PRODUCT_E143F 0x143F
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800164
Alex.Cheng@quantatw.comfc91be22009-01-22 16:01:57 +0800165#define QUANTA_VENDOR_ID 0x0408
166#define QUANTA_PRODUCT_Q101 0xEA02
167#define QUANTA_PRODUCT_Q111 0xEA03
168#define QUANTA_PRODUCT_GLX 0xEA04
169#define QUANTA_PRODUCT_GKE 0xEA05
170#define QUANTA_PRODUCT_GLE 0xEA06
171
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800172#define NOVATELWIRELESS_VENDOR_ID 0x1410
Dirk DeSchepper72ab6412008-03-05 08:26:18 +0000173
Leslie Watterc6206fa2008-11-12 15:10:07 -0200174/* YISO PRODUCTS */
175
176#define YISO_VENDOR_ID 0x0EAB
177#define YISO_PRODUCT_U893 0xC893
178
Dirk DeSchepper72ab6412008-03-05 08:26:18 +0000179/* MERLIN EVDO PRODUCTS */
180#define NOVATELWIRELESS_PRODUCT_V640 0x1100
181#define NOVATELWIRELESS_PRODUCT_V620 0x1110
182#define NOVATELWIRELESS_PRODUCT_V740 0x1120
183#define NOVATELWIRELESS_PRODUCT_V720 0x1130
184
185/* MERLIN HSDPA/HSPA PRODUCTS */
186#define NOVATELWIRELESS_PRODUCT_U730 0x1400
187#define NOVATELWIRELESS_PRODUCT_U740 0x1410
188#define NOVATELWIRELESS_PRODUCT_U870 0x1420
189#define NOVATELWIRELESS_PRODUCT_XU870 0x1430
190#define NOVATELWIRELESS_PRODUCT_X950D 0x1450
191
192/* EXPEDITE PRODUCTS */
193#define NOVATELWIRELESS_PRODUCT_EV620 0x2100
194#define NOVATELWIRELESS_PRODUCT_ES720 0x2110
195#define NOVATELWIRELESS_PRODUCT_E725 0x2120
Matthias Urlichsa1d9bc12008-04-10 10:13:32 +0200196#define NOVATELWIRELESS_PRODUCT_ES620 0x2130
Dirk DeSchepper72ab6412008-03-05 08:26:18 +0000197#define NOVATELWIRELESS_PRODUCT_EU730 0x2400
198#define NOVATELWIRELESS_PRODUCT_EU740 0x2410
199#define NOVATELWIRELESS_PRODUCT_EU870D 0x2420
200
201/* OVATION PRODUCTS */
202#define NOVATELWIRELESS_PRODUCT_MC727 0x4100
203#define NOVATELWIRELESS_PRODUCT_MC950D 0x4400
Dirk Hohndel56a21822009-03-14 20:47:39 -0700204#define NOVATELWIRELESS_PRODUCT_U727 0x5010
Dirk DeSchepper72ab6412008-03-05 08:26:18 +0000205
206/* FUTURE NOVATEL PRODUCTS */
Dirk De Schepperc200b9c2009-02-06 20:48:34 +0000207#define NOVATELWIRELESS_PRODUCT_EVDO_FULLSPEED 0X6000
208#define NOVATELWIRELESS_PRODUCT_EVDO_HIGHSPEED 0X6001
209#define NOVATELWIRELESS_PRODUCT_HSPA_FULLSPEED 0X7000
210#define NOVATELWIRELESS_PRODUCT_HSPA_HIGHSPEED 0X7001
211#define NOVATELWIRELESS_PRODUCT_EVDO_EMBEDDED_FULLSPEED 0X8000
212#define NOVATELWIRELESS_PRODUCT_EVDO_EMBEDDED_HIGHSPEED 0X8001
213#define NOVATELWIRELESS_PRODUCT_HSPA_EMBEDDED_FULLSPEED 0X9000
214#define NOVATELWIRELESS_PRODUCT_HSPA_EMBEDDED_HIGHSPEED 0X9001
215#define NOVATELWIRELESS_PRODUCT_GLOBAL 0XA001
Dirk DeSchepper72ab6412008-03-05 08:26:18 +0000216
tang kai32147be2008-04-14 10:06:35 +0800217/* AMOI PRODUCTS */
218#define AMOI_VENDOR_ID 0x1614
219#define AMOI_PRODUCT_H01 0x0800
220#define AMOI_PRODUCT_H01A 0x7002
221#define AMOI_PRODUCT_H02 0x0802
222
Faidon Liambotis96443212007-08-07 05:46:05 +0300223#define DELL_VENDOR_ID 0x413C
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800224
Dirk De Schepperc200b9c2009-02-06 20:48:34 +0000225/* Dell modems */
226#define DELL_PRODUCT_5700_MINICARD 0x8114
227#define DELL_PRODUCT_5500_MINICARD 0x8115
228#define DELL_PRODUCT_5505_MINICARD 0x8116
229#define DELL_PRODUCT_5700_EXPRESSCARD 0x8117
230#define DELL_PRODUCT_5510_EXPRESSCARD 0x8118
231
232#define DELL_PRODUCT_5700_MINICARD_SPRINT 0x8128
233#define DELL_PRODUCT_5700_MINICARD_TELUS 0x8129
234
235#define DELL_PRODUCT_5720_MINICARD_VZW 0x8133
236#define DELL_PRODUCT_5720_MINICARD_SPRINT 0x8134
237#define DELL_PRODUCT_5720_MINICARD_TELUS 0x8135
238#define DELL_PRODUCT_5520_MINICARD_CINGULAR 0x8136
239#define DELL_PRODUCT_5520_MINICARD_GENERIC_L 0x8137
240#define DELL_PRODUCT_5520_MINICARD_GENERIC_I 0x8138
241
242#define DELL_PRODUCT_5730_MINICARD_SPRINT 0x8180
243#define DELL_PRODUCT_5730_MINICARD_TELUS 0x8181
244#define DELL_PRODUCT_5730_MINICARD_VZW 0x8182
245
Dan Williams564d61d2008-02-19 13:15:30 -0500246#define KYOCERA_VENDOR_ID 0x0c88
Greg Kroah-Hartman640c1bc2008-06-19 11:21:16 -0700247#define KYOCERA_PRODUCT_KPC650 0x17da
Dan Williams564d61d2008-02-19 13:15:30 -0500248#define KYOCERA_PRODUCT_KPC680 0x180a
249
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800250#define ANYDATA_VENDOR_ID 0x16d5
Hiroshi Miuraf8033822008-08-19 10:58:25 +0200251#define ANYDATA_PRODUCT_ADU_620UW 0x6202
Alexander Gattin46269db2007-06-20 00:48:10 +0300252#define ANYDATA_PRODUCT_ADU_E100A 0x6501
253#define ANYDATA_PRODUCT_ADU_500A 0x6502
Matthias Urlichsba460e42005-07-14 00:33:47 -0700254
Daniel Kozák85fb62a2008-03-04 18:54:53 +0100255#define AXESSTEL_VENDOR_ID 0x1726
256#define AXESSTEL_PRODUCT_MV110H 0x1000
257
andreoli@samba.ing.unimo.it4c7d3132008-05-01 19:26:16 +0200258#define ONDA_VENDOR_ID 0x19d2
Arnaldo Carvalho de Melo1b2d23d2008-05-16 15:41:40 -0300259#define ONDA_PRODUCT_MSA501HS 0x0001
andreoli@samba.ing.unimo.it4c7d3132008-05-01 19:26:16 +0200260#define ONDA_PRODUCT_ET502HS 0x0002
Marcel Sebek3b498a62008-12-28 14:06:50 +0100261#define ONDA_PRODUCT_MT503HS 0x2000
andreoli@samba.ing.unimo.it4c7d3132008-05-01 19:26:16 +0200262
Leon Leong3f6e5842007-04-26 00:38:02 -0700263#define BANDRICH_VENDOR_ID 0x1A8D
264#define BANDRICH_PRODUCT_C100_1 0x1002
265#define BANDRICH_PRODUCT_C100_2 0x1003
Leon Leongbf3fc822008-08-01 11:40:12 +0800266#define BANDRICH_PRODUCT_1004 0x1004
267#define BANDRICH_PRODUCT_1005 0x1005
268#define BANDRICH_PRODUCT_1006 0x1006
269#define BANDRICH_PRODUCT_1007 0x1007
270#define BANDRICH_PRODUCT_1008 0x1008
271#define BANDRICH_PRODUCT_1009 0x1009
272#define BANDRICH_PRODUCT_100A 0x100a
273
274#define BANDRICH_PRODUCT_100B 0x100b
275#define BANDRICH_PRODUCT_100C 0x100c
276#define BANDRICH_PRODUCT_100D 0x100d
277#define BANDRICH_PRODUCT_100E 0x100e
278
279#define BANDRICH_PRODUCT_100F 0x100f
280#define BANDRICH_PRODUCT_1010 0x1010
281#define BANDRICH_PRODUCT_1011 0x1011
282#define BANDRICH_PRODUCT_1012 0x1012
Leon Leong3f6e5842007-04-26 00:38:02 -0700283
Matthias Urlichsa1d9bc12008-04-10 10:13:32 +0200284#define AMOI_VENDOR_ID 0x1614
285#define AMOI_PRODUCT_9508 0x0800
286
Kevin Lloydd726fb72008-02-14 13:35:16 -0800287#define QUALCOMM_VENDOR_ID 0x05C6
288
James Cameron80d97092008-04-09 18:59:13 +1000289#define MAXON_VENDOR_ID 0x16d8
290
Greg Kroah-Hartmanee53b0c2008-05-15 10:07:44 -0700291#define TELIT_VENDOR_ID 0x1bc7
292#define TELIT_PRODUCT_UC864E 0x1003
293
Oliver Martin6188a832008-08-09 04:49:26 +0200294/* ZTE PRODUCTS */
295#define ZTE_VENDOR_ID 0x19d2
Albert Pauw9ea19b82009-03-01 09:37:52 +0100296#define ZTE_PRODUCT_MF622 0x0001
Oliver Martin6188a832008-08-09 04:49:26 +0200297#define ZTE_PRODUCT_MF628 0x0015
Mikhail Gusarovbfd84082008-10-18 18:20:02 +0700298#define ZTE_PRODUCT_MF626 0x0031
Otavio Salvador884579d2008-09-17 14:40:46 -0300299#define ZTE_PRODUCT_CDMA_TECH 0xfffe
Oliver Martin6188a832008-08-09 04:49:26 +0200300
Jesse Sung28fb6682009-02-20 21:13:45 -0800301#define BENQ_VENDOR_ID 0x04a5
302#define BENQ_PRODUCT_H10 0x4068
303
Pascal Terjanc00deaa2009-04-07 14:40:42 +0200304#define DLINK_VENDOR_ID 0x1186
305#define DLINK_PRODUCT_DWM_652 0x3e04
306
307
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700308static struct usb_device_id option_ids[] = {
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800309 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COLT) },
310 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA) },
311 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_LIGHT) },
312 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_QUAD) },
313 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_QUAD_LIGHT) },
314 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS) },
315 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_LIGHT) },
316 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_QUAD) },
317 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_QUAD_LIGHT) },
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200318 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA) },
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800319 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA_BUS) },
320 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_VIPER) },
321 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_VIPER_BUS) },
322 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GT_MAX_READY) },
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800323 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_LIGHT) },
324 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_GT) },
325 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_EX) },
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800326 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_KOI_MODEM) },
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800327 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_SCORPION_MODEM) },
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800328 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM) },
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800329 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_LITE) },
330 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_GT) },
331 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_EX) },
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800332 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_KOI_MODEM) },
Achilleas Kotsise7f2f0d2009-03-16 16:35:02 +0200333 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GTM380_MODEM) },
Alex.Cheng@quantatw.comfc91be22009-01-22 16:01:57 +0800334 { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_Q101) },
335 { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_Q111) },
336 { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_GLX) },
337 { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_GKE) },
338 { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_GLE) },
Michael Karchera7f38722008-05-28 23:58:18 +0200339 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E600, 0xff, 0xff, 0xff) },
Jaime Velasco Juanb5ce18a2007-11-30 16:30:11 +0000340 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220, 0xff, 0xff, 0xff) },
341 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220BIS, 0xff, 0xff, 0xff) },
Michael Karchera7f38722008-05-28 23:58:18 +0200342 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1401, 0xff, 0xff, 0xff) },
fangxiaozhi1460e5e2008-10-15 14:15:36 +0800343 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1402, 0xff, 0xff, 0xff) },
Michael Karchera7f38722008-05-28 23:58:18 +0200344 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1403, 0xff, 0xff, 0xff) },
fangxiaozhi1460e5e2008-10-15 14:15:36 +0800345 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1404, 0xff, 0xff, 0xff) },
Michael Karchera7f38722008-05-28 23:58:18 +0200346 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1405, 0xff, 0xff, 0xff) },
347 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1406, 0xff, 0xff, 0xff) },
fangxiaozhi1460e5e2008-10-15 14:15:36 +0800348 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1407, 0xff, 0xff, 0xff) },
Michael Karchera7f38722008-05-28 23:58:18 +0200349 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1408, 0xff, 0xff, 0xff) },
350 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1409, 0xff, 0xff, 0xff) },
fangxiaozhi1460e5e2008-10-15 14:15:36 +0800351 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E140A, 0xff, 0xff, 0xff) },
352 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E140B, 0xff, 0xff, 0xff) },
353 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E140C, 0xff, 0xff, 0xff) },
354 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E140D, 0xff, 0xff, 0xff) },
355 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E140E, 0xff, 0xff, 0xff) },
356 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E140F, 0xff, 0xff, 0xff) },
Michael Karchera7f38722008-05-28 23:58:18 +0200357 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1410, 0xff, 0xff, 0xff) },
358 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1411, 0xff, 0xff, 0xff) },
359 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1412, 0xff, 0xff, 0xff) },
360 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1413, 0xff, 0xff, 0xff) },
361 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1414, 0xff, 0xff, 0xff) },
362 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1415, 0xff, 0xff, 0xff) },
363 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1416, 0xff, 0xff, 0xff) },
364 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1417, 0xff, 0xff, 0xff) },
365 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1418, 0xff, 0xff, 0xff) },
366 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1419, 0xff, 0xff, 0xff) },
fangxiaozhi1460e5e2008-10-15 14:15:36 +0800367 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E141A, 0xff, 0xff, 0xff) },
368 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E141B, 0xff, 0xff, 0xff) },
369 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E141C, 0xff, 0xff, 0xff) },
370 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E141D, 0xff, 0xff, 0xff) },
371 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E141E, 0xff, 0xff, 0xff) },
372 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E141F, 0xff, 0xff, 0xff) },
373 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1420, 0xff, 0xff, 0xff) },
374 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1421, 0xff, 0xff, 0xff) },
375 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1422, 0xff, 0xff, 0xff) },
376 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1423, 0xff, 0xff, 0xff) },
377 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1424, 0xff, 0xff, 0xff) },
378 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1425, 0xff, 0xff, 0xff) },
379 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1426, 0xff, 0xff, 0xff) },
380 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1427, 0xff, 0xff, 0xff) },
381 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1428, 0xff, 0xff, 0xff) },
382 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1429, 0xff, 0xff, 0xff) },
383 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E142A, 0xff, 0xff, 0xff) },
384 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E142B, 0xff, 0xff, 0xff) },
385 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E142C, 0xff, 0xff, 0xff) },
386 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E142D, 0xff, 0xff, 0xff) },
387 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E142E, 0xff, 0xff, 0xff) },
388 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E142F, 0xff, 0xff, 0xff) },
389 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1430, 0xff, 0xff, 0xff) },
390 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1431, 0xff, 0xff, 0xff) },
391 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1432, 0xff, 0xff, 0xff) },
392 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1433, 0xff, 0xff, 0xff) },
393 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1434, 0xff, 0xff, 0xff) },
394 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1435, 0xff, 0xff, 0xff) },
395 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1436, 0xff, 0xff, 0xff) },
396 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1437, 0xff, 0xff, 0xff) },
397 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1438, 0xff, 0xff, 0xff) },
398 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1439, 0xff, 0xff, 0xff) },
399 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E143A, 0xff, 0xff, 0xff) },
400 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E143B, 0xff, 0xff, 0xff) },
401 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E143C, 0xff, 0xff, 0xff) },
402 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E143D, 0xff, 0xff, 0xff) },
403 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E143E, 0xff, 0xff, 0xff) },
404 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E143F, 0xff, 0xff, 0xff) },
Matthias Urlichsa1d9bc12008-04-10 10:13:32 +0200405 { USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_9508) },
Dirk DeSchepper72ab6412008-03-05 08:26:18 +0000406 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V640) }, /* Novatel Merlin V640/XV620 */
407 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V620) }, /* Novatel Merlin V620/S620 */
408 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V740) }, /* Novatel Merlin EX720/V740/X720 */
409 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V720) }, /* Novatel Merlin V720/S720/PC720 */
410 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_U730) }, /* Novatel U730/U740 (VF version) */
411 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_U740) }, /* Novatel U740 */
412 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_U870) }, /* Novatel U870 */
413 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_XU870) }, /* Novatel Merlin XU870 HSDPA/3G */
414 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_X950D) }, /* Novatel X950D */
415 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EV620) }, /* Novatel EV620/ES620 CDMA/EV-DO */
416 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_ES720) }, /* Novatel ES620/ES720/U720/USB720 */
417 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_E725) }, /* Novatel E725/E726 */
Matthias Urlichsa1d9bc12008-04-10 10:13:32 +0200418 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_ES620) }, /* Novatel Merlin ES620 SM Bus */
Dirk DeSchepper72ab6412008-03-05 08:26:18 +0000419 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EU730) }, /* Novatel EU730 and Vodafone EU740 */
420 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EU740) }, /* Novatel non-Vodafone EU740 */
421 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EU870D) }, /* Novatel EU850D/EU860D/EU870D */
422 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_MC950D) }, /* Novatel MC930D/MC950D */
423 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_MC727) }, /* Novatel MC727/U727/USB727 */
Dirk Hohndel56a21822009-03-14 20:47:39 -0700424 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_U727) }, /* Novatel MC727/U727/USB727 */
Dirk De Schepperc200b9c2009-02-06 20:48:34 +0000425 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EVDO_FULLSPEED) }, /* Novatel EVDO product */
426 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_HSPA_FULLSPEED) }, /* Novatel HSPA product */
427 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EVDO_EMBEDDED_FULLSPEED) }, /* Novatel EVDO Embedded product */
428 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_HSPA_EMBEDDED_FULLSPEED) }, /* Novatel HSPA Embedded product */
429 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EVDO_HIGHSPEED) }, /* Novatel EVDO product */
430 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_HSPA_HIGHSPEED) }, /* Novatel HSPA product */
431 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EVDO_EMBEDDED_HIGHSPEED) }, /* Novatel EVDO Embedded product */
432 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_HSPA_EMBEDDED_HIGHSPEED) }, /* Novatel HSPA Embedded product */
433 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_GLOBAL) }, /* Novatel Global product */
Dirk DeSchepper72ab6412008-03-05 08:26:18 +0000434
tang kai32147be2008-04-14 10:06:35 +0800435 { USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_H01) },
436 { USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_H01A) },
437 { USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_H02) },
438
Dirk De Schepperc200b9c2009-02-06 20:48:34 +0000439 { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5700_MINICARD) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO Mini-Card == Novatel Expedite EV620 CDMA/EV-DO */
440 { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5500_MINICARD) }, /* Dell Wireless 5500 Mobile Broadband HSDPA Mini-Card == Novatel Expedite EU740 HSDPA/3G */
441 { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5505_MINICARD) }, /* Dell Wireless 5505 Mobile Broadband HSDPA Mini-Card == Novatel Expedite EU740 HSDPA/3G */
442 { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5700_EXPRESSCARD) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO ExpressCard == Novatel Merlin XV620 CDMA/EV-DO */
443 { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5510_EXPRESSCARD) }, /* Dell Wireless 5510 Mobile Broadband HSDPA ExpressCard == Novatel Merlin XU870 HSDPA/3G */
444 { 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 */
445 { 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 */
446 { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5720_MINICARD_VZW) }, /* Dell Wireless 5720 == Novatel EV620 CDMA/EV-DO */
447 { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5720_MINICARD_SPRINT) }, /* Dell Wireless 5720 == Novatel EV620 CDMA/EV-DO */
448 { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5720_MINICARD_TELUS) }, /* Dell Wireless 5720 == Novatel EV620 CDMA/EV-DO */
449 { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5520_MINICARD_CINGULAR) }, /* Dell Wireless HSDPA 5520 == Novatel Expedite EU860D */
450 { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5520_MINICARD_GENERIC_L) }, /* Dell Wireless HSDPA 5520 */
451 { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5520_MINICARD_GENERIC_I) }, /* Dell Wireless 5520 Voda I Mobile Broadband (3G HSDPA) Minicard */
Dirk De Schepperc200b9c2009-02-06 20:48:34 +0000452 { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5730_MINICARD_SPRINT) }, /* Dell Wireless 5730 Mobile Broadband EVDO/HSPA Mini-Card */
453 { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5730_MINICARD_TELUS) }, /* Dell Wireless 5730 Mobile Broadband EVDO/HSPA Mini-Card */
454 { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5730_MINICARD_VZW) }, /* Dell Wireless 5730 Mobile Broadband EVDO/HSPA Mini-Card */
Jon K Hellanbb78a822008-10-03 10:36:16 +0200455 { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_E100A) }, /* ADU-E100, ADU-310 */
Alexander Gattin46269db2007-06-20 00:48:10 +0300456 { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_500A) },
Hiroshi Miuraf8033822008-08-19 10:58:25 +0200457 { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_620UW) },
Daniel Kozák85fb62a2008-03-04 18:54:53 +0100458 { USB_DEVICE(AXESSTEL_VENDOR_ID, AXESSTEL_PRODUCT_MV110H) },
Arnaldo Carvalho de Melo1b2d23d2008-05-16 15:41:40 -0300459 { USB_DEVICE(ONDA_VENDOR_ID, ONDA_PRODUCT_MSA501HS) },
andreoli@samba.ing.unimo.it4c7d3132008-05-01 19:26:16 +0200460 { USB_DEVICE(ONDA_VENDOR_ID, ONDA_PRODUCT_ET502HS) },
Greg Kroah-Hartman5bb4bd92008-11-29 11:46:21 -0800461 { USB_DEVICE(ONDA_VENDOR_ID, 0x0003) },
462 { USB_DEVICE(ONDA_VENDOR_ID, 0x0004) },
463 { USB_DEVICE(ONDA_VENDOR_ID, 0x0005) },
464 { USB_DEVICE(ONDA_VENDOR_ID, 0x0006) },
465 { USB_DEVICE(ONDA_VENDOR_ID, 0x0007) },
466 { USB_DEVICE(ONDA_VENDOR_ID, 0x0008) },
467 { USB_DEVICE(ONDA_VENDOR_ID, 0x0009) },
468 { USB_DEVICE(ONDA_VENDOR_ID, 0x000a) },
469 { USB_DEVICE(ONDA_VENDOR_ID, 0x000b) },
470 { USB_DEVICE(ONDA_VENDOR_ID, 0x000c) },
471 { USB_DEVICE(ONDA_VENDOR_ID, 0x000d) },
472 { USB_DEVICE(ONDA_VENDOR_ID, 0x000e) },
473 { USB_DEVICE(ONDA_VENDOR_ID, 0x000f) },
474 { USB_DEVICE(ONDA_VENDOR_ID, 0x0010) },
475 { USB_DEVICE(ONDA_VENDOR_ID, 0x0011) },
476 { USB_DEVICE(ONDA_VENDOR_ID, 0x0012) },
477 { USB_DEVICE(ONDA_VENDOR_ID, 0x0013) },
478 { USB_DEVICE(ONDA_VENDOR_ID, 0x0014) },
479 { USB_DEVICE(ONDA_VENDOR_ID, 0x0015) },
480 { USB_DEVICE(ONDA_VENDOR_ID, 0x0016) },
481 { USB_DEVICE(ONDA_VENDOR_ID, 0x0017) },
482 { USB_DEVICE(ONDA_VENDOR_ID, 0x0018) },
483 { USB_DEVICE(ONDA_VENDOR_ID, 0x0019) },
484 { USB_DEVICE(ONDA_VENDOR_ID, 0x0020) },
485 { USB_DEVICE(ONDA_VENDOR_ID, 0x0021) },
486 { USB_DEVICE(ONDA_VENDOR_ID, 0x0022) },
487 { USB_DEVICE(ONDA_VENDOR_ID, 0x0023) },
488 { USB_DEVICE(ONDA_VENDOR_ID, 0x0024) },
489 { USB_DEVICE(ONDA_VENDOR_ID, 0x0025) },
490 { USB_DEVICE(ONDA_VENDOR_ID, 0x0026) },
491 { USB_DEVICE(ONDA_VENDOR_ID, 0x0027) },
492 { USB_DEVICE(ONDA_VENDOR_ID, 0x0028) },
493 { USB_DEVICE(ONDA_VENDOR_ID, 0x0029) },
494 { USB_DEVICE(ONDA_VENDOR_ID, ONDA_PRODUCT_MT503HS) },
Leslie Watterc6206fa2008-11-12 15:10:07 -0200495 { USB_DEVICE(YISO_VENDOR_ID, YISO_PRODUCT_U893) },
Leon Leong3f6e5842007-04-26 00:38:02 -0700496 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_C100_1) },
497 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_C100_2) },
Leon Leongbf3fc822008-08-01 11:40:12 +0800498 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1004) },
499 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1005) },
500 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1006) },
501 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1007) },
502 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1008) },
503 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1009) },
504 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100A) },
505 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100B) },
506 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100C) },
507 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100D) },
508 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100E) },
509 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100F) },
510 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1010) },
511 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1011) },
512 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1012) },
Greg Kroah-Hartman640c1bc2008-06-19 11:21:16 -0700513 { USB_DEVICE(KYOCERA_VENDOR_ID, KYOCERA_PRODUCT_KPC650) },
Dan Williams564d61d2008-02-19 13:15:30 -0500514 { USB_DEVICE(KYOCERA_VENDOR_ID, KYOCERA_PRODUCT_KPC680) },
Greg Kroah-Hartmand2e2aff2008-07-01 13:11:56 +0530515 { USB_DEVICE(QUALCOMM_VENDOR_ID, 0x6000)}, /* ZTE AC8700 */
Kevin Lloydd726fb72008-02-14 13:35:16 -0800516 { USB_DEVICE(QUALCOMM_VENDOR_ID, 0x6613)}, /* Onda H600/ZTE MF330 */
James Cameron80d97092008-04-09 18:59:13 +1000517 { USB_DEVICE(MAXON_VENDOR_ID, 0x6280) }, /* BP3-USB & BP3-EXT HSDPA */
Greg Kroah-Hartmanee53b0c2008-05-15 10:07:44 -0700518 { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_UC864E) },
Albert Pauw9ea19b82009-03-01 09:37:52 +0100519 { USB_DEVICE(ZTE_VENDOR_ID, ZTE_PRODUCT_MF622) },
Mikhail Gusarovbfd84082008-10-18 18:20:02 +0700520 { USB_DEVICE(ZTE_VENDOR_ID, ZTE_PRODUCT_MF626) },
Oliver Martin6188a832008-08-09 04:49:26 +0200521 { USB_DEVICE(ZTE_VENDOR_ID, ZTE_PRODUCT_MF628) },
Otavio Salvador884579d2008-09-17 14:40:46 -0300522 { USB_DEVICE(ZTE_VENDOR_ID, ZTE_PRODUCT_CDMA_TECH) },
Jesse Sung28fb6682009-02-20 21:13:45 -0800523 { USB_DEVICE(BENQ_VENDOR_ID, BENQ_PRODUCT_H10) },
Pascal Terjanc00deaa2009-04-07 14:40:42 +0200524 { USB_DEVICE(DLINK_VENDOR_ID, DLINK_PRODUCT_DWM_652) },
Jesse Sung28fb6682009-02-20 21:13:45 -0800525 { USB_DEVICE(0x1da5, 0x4515) }, /* BenQ H20 */
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200526 { } /* Terminating entry */
527};
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700528MODULE_DEVICE_TABLE(usb, option_ids);
529
530static struct usb_driver option_driver = {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700531 .name = "option",
532 .probe = usb_serial_probe,
533 .disconnect = usb_serial_disconnect,
Oliver Neukum4901b2c2009-01-27 17:21:40 +0100534 .suspend = usb_serial_suspend,
535 .resume = usb_serial_resume,
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700536 .id_table = option_ids,
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800537 .no_dynamic_id = 1,
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700538};
539
Uwe Zeisbergerc30fe7f2006-03-24 18:23:14 +0100540/* The card has three separate interfaces, which the serial driver
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700541 * recognizes separately, thus num_port=1.
542 */
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200543
544static struct usb_serial_driver option_1port_device = {
545 .driver = {
546 .owner = THIS_MODULE,
Matthias Urlichs02b2ac52006-08-02 16:41:41 -0700547 .name = "option1",
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200548 },
549 .description = "GSM modem (1-port)",
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100550 .usb_driver = &option_driver,
Greg Kroah-Hartmanb656b2c2007-02-21 12:53:17 -0800551 .id_table = option_ids,
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200552 .num_ports = 1,
Matthias Urlichsba460e42005-07-14 00:33:47 -0700553 .open = option_open,
554 .close = option_close,
Alan Cox335f8512009-06-11 12:26:29 +0100555 .dtr_rts = option_dtr_rts,
Matthias Urlichsba460e42005-07-14 00:33:47 -0700556 .write = option_write,
557 .write_room = option_write_room,
558 .chars_in_buffer = option_chars_in_buffer,
Matthias Urlichsba460e42005-07-14 00:33:47 -0700559 .set_termios = option_set_termios,
Matthias Urlichsba460e42005-07-14 00:33:47 -0700560 .tiocmget = option_tiocmget,
561 .tiocmset = option_tiocmset,
562 .attach = option_startup,
563 .shutdown = option_shutdown,
564 .read_int_callback = option_instat_callback,
Oliver Neukum4901b2c2009-01-27 17:21:40 +0100565 .suspend = option_suspend,
566 .resume = option_resume,
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700567};
568
569static int debug;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700570
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700571/* per port private data */
572
Matthias Urlichsba460e42005-07-14 00:33:47 -0700573#define N_IN_URB 4
Greg Kroah-Hartmanf1632df2008-12-16 13:26:07 -0800574#define N_OUT_URB 4
Matthias Urlichsb27c73d2005-09-22 00:49:33 -0700575#define IN_BUFLEN 4096
Greg Kroah-Hartmanf1632df2008-12-16 13:26:07 -0800576#define OUT_BUFLEN 4096
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700577
578struct option_port_private {
579 /* Input endpoints and buffer for this port */
Matthias Urlichsba460e42005-07-14 00:33:47 -0700580 struct urb *in_urbs[N_IN_URB];
Oliver Neukum2129c4e2008-02-01 13:58:52 +0100581 u8 *in_buffer[N_IN_URB];
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700582 /* Output endpoints and buffer for this port */
Matthias Urlichsba460e42005-07-14 00:33:47 -0700583 struct urb *out_urbs[N_OUT_URB];
Oliver Neukum2129c4e2008-02-01 13:58:52 +0100584 u8 *out_buffer[N_OUT_URB];
Alan Stern59c2afa2007-06-05 16:46:26 -0700585 unsigned long out_busy; /* Bit vector of URBs in use */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700586
587 /* Settings for the port */
Matthias Urlichsba460e42005-07-14 00:33:47 -0700588 int rts_state; /* Handshaking pins (outputs) */
589 int dtr_state;
590 int cts_state; /* Handshaking pins (inputs) */
591 int dsr_state;
592 int dcd_state;
593 int ri_state;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700594
Matthias Urlichsba460e42005-07-14 00:33:47 -0700595 unsigned long tx_start_time[N_OUT_URB];
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700596};
597
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700598/* Functions used by new usb-serial code. */
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700599static int __init option_init(void)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700600{
601 int retval;
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200602 retval = usb_serial_register(&option_1port_device);
603 if (retval)
604 goto failed_1port_device_register;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700605 retval = usb_register(&option_driver);
606 if (retval)
607 goto failed_driver_register;
608
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -0700609 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
610 DRIVER_DESC "\n");
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700611
612 return 0;
613
614failed_driver_register:
Alan Cox19e58fa2008-07-22 11:15:45 +0100615 usb_serial_deregister(&option_1port_device);
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200616failed_1port_device_register:
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700617 return retval;
618}
619
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700620static void __exit option_exit(void)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700621{
Alan Cox19e58fa2008-07-22 11:15:45 +0100622 usb_deregister(&option_driver);
623 usb_serial_deregister(&option_1port_device);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700624}
625
626module_init(option_init);
627module_exit(option_exit);
628
Alan Cox95da3102008-07-22 11:09:07 +0100629static void option_set_termios(struct tty_struct *tty,
630 struct usb_serial_port *port, struct ktermios *old_termios)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700631{
Harvey Harrison441b62c2008-03-03 16:08:34 -0800632 dbg("%s", __func__);
Alan Coxe650d8a2007-10-18 01:24:21 -0700633 /* Doesn't support option setting */
Alan Cox95da3102008-07-22 11:09:07 +0100634 tty_termios_copy_hw(tty->termios, old_termios);
Alan Cox335f8512009-06-11 12:26:29 +0100635 option_send_setup(port);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700636}
637
Alan Cox95da3102008-07-22 11:09:07 +0100638static int option_tiocmget(struct tty_struct *tty, struct file *file)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700639{
Alan Cox95da3102008-07-22 11:09:07 +0100640 struct usb_serial_port *port = tty->driver_data;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700641 unsigned int value;
642 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700643
644 portdata = usb_get_serial_port_data(port);
645
646 value = ((portdata->rts_state) ? TIOCM_RTS : 0) |
647 ((portdata->dtr_state) ? TIOCM_DTR : 0) |
648 ((portdata->cts_state) ? TIOCM_CTS : 0) |
649 ((portdata->dsr_state) ? TIOCM_DSR : 0) |
650 ((portdata->dcd_state) ? TIOCM_CAR : 0) |
651 ((portdata->ri_state) ? TIOCM_RNG : 0);
652
653 return value;
654}
655
Alan Cox95da3102008-07-22 11:09:07 +0100656static int option_tiocmset(struct tty_struct *tty, struct file *file,
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700657 unsigned int set, unsigned int clear)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700658{
Alan Cox95da3102008-07-22 11:09:07 +0100659 struct usb_serial_port *port = tty->driver_data;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700660 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700661
662 portdata = usb_get_serial_port_data(port);
663
Alan Coxe2984492008-02-20 20:51:45 +0000664 /* FIXME: what locks portdata fields ? */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700665 if (set & TIOCM_RTS)
666 portdata->rts_state = 1;
667 if (set & TIOCM_DTR)
668 portdata->dtr_state = 1;
669
670 if (clear & TIOCM_RTS)
671 portdata->rts_state = 0;
672 if (clear & TIOCM_DTR)
673 portdata->dtr_state = 0;
Alan Cox335f8512009-06-11 12:26:29 +0100674 return option_send_setup(port);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700675}
676
677/* Write */
Alan Cox95da3102008-07-22 11:09:07 +0100678static int option_write(struct tty_struct *tty, struct usb_serial_port *port,
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700679 const unsigned char *buf, int count)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700680{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700681 struct option_port_private *portdata;
682 int i;
683 int left, todo;
684 struct urb *this_urb = NULL; /* spurious */
685 int err;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700686
687 portdata = usb_get_serial_port_data(port);
688
Harvey Harrison441b62c2008-03-03 16:08:34 -0800689 dbg("%s: write (%d chars)", __func__, count);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700690
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700691 i = 0;
692 left = count;
Alan Cox19e58fa2008-07-22 11:15:45 +0100693 for (i = 0; left > 0 && i < N_OUT_URB; i++) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700694 todo = left;
695 if (todo > OUT_BUFLEN)
696 todo = OUT_BUFLEN;
697
Matthias Urlichsba460e42005-07-14 00:33:47 -0700698 this_urb = portdata->out_urbs[i];
Alan Stern59c2afa2007-06-05 16:46:26 -0700699 if (test_and_set_bit(i, &portdata->out_busy)) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700700 if (time_before(jiffies,
701 portdata->tx_start_time[i] + 10 * HZ))
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700702 continue;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700703 usb_unlink_urb(this_urb);
Matthias Urlichsba460e42005-07-14 00:33:47 -0700704 continue;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700705 }
Harvey Harrison441b62c2008-03-03 16:08:34 -0800706 dbg("%s: endpoint %d buf %d", __func__,
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700707 usb_pipeendpoint(this_urb->pipe), i);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700708
Matthias Urlichsba460e42005-07-14 00:33:47 -0700709 /* send the data */
Alan Cox19e58fa2008-07-22 11:15:45 +0100710 memcpy(this_urb->transfer_buffer, buf, todo);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700711 this_urb->transfer_buffer_length = todo;
712
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700713 this_urb->dev = port->serial->dev;
714 err = usb_submit_urb(this_urb, GFP_ATOMIC);
715 if (err) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700716 dbg("usb_submit_urb %p (write bulk) failed "
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800717 "(%d)", this_urb, err);
Alan Stern59c2afa2007-06-05 16:46:26 -0700718 clear_bit(i, &portdata->out_busy);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700719 continue;
720 }
721 portdata->tx_start_time[i] = jiffies;
722 buf += todo;
723 left -= todo;
724 }
725
726 count -= left;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800727 dbg("%s: wrote (did %d)", __func__, count);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700728 return count;
729}
730
David Howells7d12e782006-10-05 14:55:46 +0100731static void option_indat_callback(struct urb *urb)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700732{
Alan Cox33f0f882006-01-09 20:54:13 -0800733 int err;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700734 int endpoint;
735 struct usb_serial_port *port;
736 struct tty_struct *tty;
737 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700738 int status = urb->status;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700739
Harvey Harrison441b62c2008-03-03 16:08:34 -0800740 dbg("%s: %p", __func__, urb);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700741
742 endpoint = usb_pipeendpoint(urb->pipe);
Ming Leicdc97792008-02-24 18:41:47 +0800743 port = urb->context;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700744
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700745 if (status) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700746 dbg("%s: nonzero status: %d on endpoint %02x.",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800747 __func__, status, endpoint);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700748 } else {
Alan Cox4a90f092008-10-13 10:39:46 +0100749 tty = tty_port_tty_get(&port->port);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700750 if (urb->actual_length) {
Alan Cox33f0f882006-01-09 20:54:13 -0800751 tty_buffer_request_room(tty, urb->actual_length);
752 tty_insert_flip_string(tty, data, urb->actual_length);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700753 tty_flip_buffer_push(tty);
Alan Cox4a90f092008-10-13 10:39:46 +0100754 } else
Harvey Harrison441b62c2008-03-03 16:08:34 -0800755 dbg("%s: empty read urb received", __func__);
Alan Cox4a90f092008-10-13 10:39:46 +0100756 tty_kref_put(tty);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700757
758 /* Resubmit urb so we continue receiving */
Alan Cox95da3102008-07-22 11:09:07 +0100759 if (port->port.count && status != -ESHUTDOWN) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700760 err = usb_submit_urb(urb, GFP_ATOMIC);
761 if (err)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700762 printk(KERN_ERR "%s: resubmit read urb failed. "
Harvey Harrison441b62c2008-03-03 16:08:34 -0800763 "(%d)", __func__, err);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700764 }
765 }
766 return;
767}
768
David Howells7d12e782006-10-05 14:55:46 +0100769static void option_outdat_callback(struct urb *urb)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700770{
771 struct usb_serial_port *port;
Alan Stern59c2afa2007-06-05 16:46:26 -0700772 struct option_port_private *portdata;
773 int i;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700774
Harvey Harrison441b62c2008-03-03 16:08:34 -0800775 dbg("%s", __func__);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700776
Ming Leicdc97792008-02-24 18:41:47 +0800777 port = urb->context;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700778
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700779 usb_serial_port_softint(port);
Alan Stern59c2afa2007-06-05 16:46:26 -0700780
781 portdata = usb_get_serial_port_data(port);
782 for (i = 0; i < N_OUT_URB; ++i) {
783 if (portdata->out_urbs[i] == urb) {
784 smp_mb__before_clear_bit();
785 clear_bit(i, &portdata->out_busy);
786 break;
787 }
788 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700789}
790
David Howells7d12e782006-10-05 14:55:46 +0100791static void option_instat_callback(struct urb *urb)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700792{
793 int err;
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700794 int status = urb->status;
Ming Leicdc97792008-02-24 18:41:47 +0800795 struct usb_serial_port *port = urb->context;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700796 struct option_port_private *portdata = usb_get_serial_port_data(port);
797 struct usb_serial *serial = port->serial;
798
Harvey Harrison441b62c2008-03-03 16:08:34 -0800799 dbg("%s", __func__);
Alan Cox19e58fa2008-07-22 11:15:45 +0100800 dbg("%s: urb %p port %p has data %p", __func__, urb, port, portdata);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700801
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700802 if (status == 0) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700803 struct usb_ctrlrequest *req_pkt =
804 (struct usb_ctrlrequest *)urb->transfer_buffer;
805
806 if (!req_pkt) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800807 dbg("%s: NULL req_pkt\n", __func__);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700808 return;
809 }
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700810 if ((req_pkt->bRequestType == 0xA1) &&
811 (req_pkt->bRequest == 0x20)) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700812 int old_dcd_state;
813 unsigned char signals = *((unsigned char *)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700814 urb->transfer_buffer +
815 sizeof(struct usb_ctrlrequest));
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700816
Harvey Harrison441b62c2008-03-03 16:08:34 -0800817 dbg("%s: signal x%x", __func__, signals);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700818
819 old_dcd_state = portdata->dcd_state;
820 portdata->cts_state = 1;
821 portdata->dcd_state = ((signals & 0x01) ? 1 : 0);
822 portdata->dsr_state = ((signals & 0x02) ? 1 : 0);
823 portdata->ri_state = ((signals & 0x08) ? 1 : 0);
824
Alan Cox4a90f092008-10-13 10:39:46 +0100825 if (old_dcd_state && !portdata->dcd_state) {
826 struct tty_struct *tty =
827 tty_port_tty_get(&port->port);
828 if (tty && !C_CLOCAL(tty))
829 tty_hangup(tty);
830 tty_kref_put(tty);
831 }
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700832 } else {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800833 dbg("%s: type %x req %x", __func__,
Alan Cox19e58fa2008-07-22 11:15:45 +0100834 req_pkt->bRequestType, req_pkt->bRequest);
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700835 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700836 } else
Oliver Neukum4901b2c2009-01-27 17:21:40 +0100837 err("%s: error %d", __func__, status);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700838
839 /* Resubmit urb so we continue receiving IRQ data */
Oliver Neukum4901b2c2009-01-27 17:21:40 +0100840 if (status != -ESHUTDOWN && status != -ENOENT) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700841 urb->dev = serial->dev;
842 err = usb_submit_urb(urb, GFP_ATOMIC);
843 if (err)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700844 dbg("%s: resubmit intr urb failed. (%d)",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800845 __func__, err);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700846 }
847}
848
Alan Cox95da3102008-07-22 11:09:07 +0100849static int option_write_room(struct tty_struct *tty)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700850{
Alan Cox95da3102008-07-22 11:09:07 +0100851 struct usb_serial_port *port = tty->driver_data;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700852 struct option_port_private *portdata;
853 int i;
854 int data_len = 0;
855 struct urb *this_urb;
856
857 portdata = usb_get_serial_port_data(port);
858
Alan Cox19e58fa2008-07-22 11:15:45 +0100859 for (i = 0; i < N_OUT_URB; i++) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700860 this_urb = portdata->out_urbs[i];
Alan Stern59c2afa2007-06-05 16:46:26 -0700861 if (this_urb && !test_bit(i, &portdata->out_busy))
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700862 data_len += OUT_BUFLEN;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700863 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700864
Harvey Harrison441b62c2008-03-03 16:08:34 -0800865 dbg("%s: %d", __func__, data_len);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700866 return data_len;
867}
868
Alan Cox95da3102008-07-22 11:09:07 +0100869static int option_chars_in_buffer(struct tty_struct *tty)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700870{
Alan Cox95da3102008-07-22 11:09:07 +0100871 struct usb_serial_port *port = tty->driver_data;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700872 struct option_port_private *portdata;
873 int i;
874 int data_len = 0;
875 struct urb *this_urb;
876
877 portdata = usb_get_serial_port_data(port);
878
Alan Cox19e58fa2008-07-22 11:15:45 +0100879 for (i = 0; i < N_OUT_URB; i++) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700880 this_urb = portdata->out_urbs[i];
Alan Coxa5b6f602008-04-08 17:16:06 +0100881 /* FIXME: This locking is insufficient as this_urb may
882 go unused during the test */
Alan Stern59c2afa2007-06-05 16:46:26 -0700883 if (this_urb && test_bit(i, &portdata->out_busy))
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700884 data_len += this_urb->transfer_buffer_length;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700885 }
Harvey Harrison441b62c2008-03-03 16:08:34 -0800886 dbg("%s: %d", __func__, data_len);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700887 return data_len;
888}
889
Alan Cox95da3102008-07-22 11:09:07 +0100890static int option_open(struct tty_struct *tty,
891 struct usb_serial_port *port, struct file *filp)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700892{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700893 struct option_port_private *portdata;
894 struct usb_serial *serial = port->serial;
895 int i, err;
896 struct urb *urb;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700897
898 portdata = usb_get_serial_port_data(port);
899
Harvey Harrison441b62c2008-03-03 16:08:34 -0800900 dbg("%s", __func__);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700901
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700902 /* Reset low level data toggle and start reading from endpoints */
903 for (i = 0; i < N_IN_URB; i++) {
904 urb = portdata->in_urbs[i];
Alan Cox19e58fa2008-07-22 11:15:45 +0100905 if (!urb)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700906 continue;
907 if (urb->dev != serial->dev) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800908 dbg("%s: dev %p != %p", __func__,
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700909 urb->dev, serial->dev);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700910 continue;
911 }
912
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700913 /*
914 * make sure endpoint data toggle is synchronized with the
915 * device
916 */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700917 usb_clear_halt(urb->dev, urb->pipe);
918
919 err = usb_submit_urb(urb, GFP_KERNEL);
920 if (err) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700921 dbg("%s: submit urb %d failed (%d) %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800922 __func__, i, err,
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700923 urb->transfer_buffer_length);
924 }
925 }
926
927 /* Reset low level data toggle on out endpoints */
928 for (i = 0; i < N_OUT_URB; i++) {
929 urb = portdata->out_urbs[i];
Alan Cox19e58fa2008-07-22 11:15:45 +0100930 if (!urb)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700931 continue;
932 urb->dev = serial->dev;
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700933 /* usb_settoggle(urb->dev, usb_pipeendpoint(urb->pipe),
934 usb_pipeout(urb->pipe), 0); */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700935 }
936
Alan Cox335f8512009-06-11 12:26:29 +0100937 option_send_setup(port);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700938
Alan Cox19e58fa2008-07-22 11:15:45 +0100939 return 0;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700940}
941
Alan Cox335f8512009-06-11 12:26:29 +0100942static void option_dtr_rts(struct usb_serial_port *port, int on)
943{
944 struct usb_serial *serial = port->serial;
945 struct option_port_private *portdata;
946
947 dbg("%s", __func__);
948 portdata = usb_get_serial_port_data(port);
949 mutex_lock(&serial->disc_mutex);
950 portdata->rts_state = on;
951 portdata->dtr_state = on;
952 if (serial->dev)
953 option_send_setup(port);
954 mutex_unlock(&serial->disc_mutex);
955}
956
957
958static void option_close(struct usb_serial_port *port)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700959{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700960 int i;
961 struct usb_serial *serial = port->serial;
962 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700963
Harvey Harrison441b62c2008-03-03 16:08:34 -0800964 dbg("%s", __func__);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700965 portdata = usb_get_serial_port_data(port);
966
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700967 if (serial->dev) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700968 /* Stop reading/writing urbs */
969 for (i = 0; i < N_IN_URB; i++)
Oliver Neukum7d28e742007-03-20 13:41:21 +0100970 usb_kill_urb(portdata->in_urbs[i]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700971 for (i = 0; i < N_OUT_URB; i++)
Oliver Neukum7d28e742007-03-20 13:41:21 +0100972 usb_kill_urb(portdata->out_urbs[i]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700973 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700974}
975
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700976/* Helper functions used by option_setup_urbs */
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700977static struct urb *option_setup_urb(struct usb_serial *serial, int endpoint,
978 int dir, void *ctx, char *buf, int len,
David Howells7d12e782006-10-05 14:55:46 +0100979 void (*callback)(struct urb *))
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700980{
981 struct urb *urb;
982
983 if (endpoint == -1)
984 return NULL; /* endpoint not needed */
985
986 urb = usb_alloc_urb(0, GFP_KERNEL); /* No ISO */
987 if (urb == NULL) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800988 dbg("%s: alloc for endpoint %d failed.", __func__, endpoint);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700989 return NULL;
990 }
991
992 /* Fill URB using supplied data. */
993 usb_fill_bulk_urb(urb, serial->dev,
994 usb_sndbulkpipe(serial->dev, endpoint) | dir,
995 buf, len, callback, ctx);
996
997 return urb;
998}
999
1000/* Setup urbs */
Andrew Morton7bb75ae2005-07-27 01:08:30 -07001001static void option_setup_urbs(struct usb_serial *serial)
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001002{
Alan Cox19e58fa2008-07-22 11:15:45 +01001003 int i, j;
Matthias Urlichsba460e42005-07-14 00:33:47 -07001004 struct usb_serial_port *port;
1005 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001006
Harvey Harrison441b62c2008-03-03 16:08:34 -08001007 dbg("%s", __func__);
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001008
Matthias Urlichs14f76cc2006-06-02 11:48:56 +02001009 for (i = 0; i < serial->num_ports; i++) {
1010 port = serial->port[i];
1011 portdata = usb_get_serial_port_data(port);
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001012
Alan Cox19e58fa2008-07-22 11:15:45 +01001013 /* Do indat endpoints first */
Matthias Urlichs14f76cc2006-06-02 11:48:56 +02001014 for (j = 0; j < N_IN_URB; ++j) {
Alan Cox19e58fa2008-07-22 11:15:45 +01001015 portdata->in_urbs[j] = option_setup_urb(serial,
1016 port->bulk_in_endpointAddress,
1017 USB_DIR_IN, port,
1018 portdata->in_buffer[j],
1019 IN_BUFLEN, option_indat_callback);
Matthias Urlichs14f76cc2006-06-02 11:48:56 +02001020 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001021
Matthias Urlichs14f76cc2006-06-02 11:48:56 +02001022 /* outdat endpoints */
1023 for (j = 0; j < N_OUT_URB; ++j) {
Alan Cox19e58fa2008-07-22 11:15:45 +01001024 portdata->out_urbs[j] = option_setup_urb(serial,
1025 port->bulk_out_endpointAddress,
1026 USB_DIR_OUT, port,
1027 portdata->out_buffer[j],
1028 OUT_BUFLEN, option_outdat_callback);
Matthias Urlichs14f76cc2006-06-02 11:48:56 +02001029 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001030 }
1031}
1032
Chris Collins5f760042008-04-10 10:15:53 +02001033
1034/** send RTS/DTR state to the port.
1035 *
1036 * This is exactly the same as SET_CONTROL_LINE_STATE from the PSTN
1037 * CDC.
1038*/
Alan Cox335f8512009-06-11 12:26:29 +01001039static int option_send_setup(struct usb_serial_port *port)
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001040{
1041 struct usb_serial *serial = port->serial;
1042 struct option_port_private *portdata;
Chris Collins5f760042008-04-10 10:15:53 +02001043 int ifNum = serial->interface->cur_altsetting->desc.bInterfaceNumber;
Alan Cox335f8512009-06-11 12:26:29 +01001044 int val = 0;
Harvey Harrison441b62c2008-03-03 16:08:34 -08001045 dbg("%s", __func__);
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001046
1047 portdata = usb_get_serial_port_data(port);
1048
Alan Cox335f8512009-06-11 12:26:29 +01001049 if (portdata->dtr_state)
1050 val |= 0x01;
1051 if (portdata->rts_state)
1052 val |= 0x02;
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001053
Alan Cox335f8512009-06-11 12:26:29 +01001054 return usb_control_msg(serial->dev,
1055 usb_rcvctrlpipe(serial->dev, 0),
1056 0x22, 0x21, val, ifNum, NULL, 0, USB_CTRL_SET_TIMEOUT);
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001057}
1058
Andrew Morton7bb75ae2005-07-27 01:08:30 -07001059static int option_startup(struct usb_serial *serial)
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001060{
Oliver Neukum2129c4e2008-02-01 13:58:52 +01001061 int i, j, err;
Matthias Urlichsba460e42005-07-14 00:33:47 -07001062 struct usb_serial_port *port;
1063 struct option_port_private *portdata;
Oliver Neukum2129c4e2008-02-01 13:58:52 +01001064 u8 *buffer;
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001065
Harvey Harrison441b62c2008-03-03 16:08:34 -08001066 dbg("%s", __func__);
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001067
1068 /* Now setup per port private data */
1069 for (i = 0; i < serial->num_ports; i++) {
1070 port = serial->port[i];
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +01001071 portdata = kzalloc(sizeof(*portdata), GFP_KERNEL);
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001072 if (!portdata) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -07001073 dbg("%s: kmalloc for option_port_private (%d) failed!.",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001074 __func__, i);
Alan Cox19e58fa2008-07-22 11:15:45 +01001075 return 1;
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001076 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001077
Oliver Neukum2129c4e2008-02-01 13:58:52 +01001078 for (j = 0; j < N_IN_URB; j++) {
1079 buffer = (u8 *)__get_free_page(GFP_KERNEL);
1080 if (!buffer)
1081 goto bail_out_error;
1082 portdata->in_buffer[j] = buffer;
1083 }
1084
1085 for (j = 0; j < N_OUT_URB; j++) {
1086 buffer = kmalloc(OUT_BUFLEN, GFP_KERNEL);
1087 if (!buffer)
1088 goto bail_out_error2;
1089 portdata->out_buffer[j] = buffer;
1090 }
1091
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001092 usb_set_serial_port_data(port, portdata);
1093
Alan Cox19e58fa2008-07-22 11:15:45 +01001094 if (!port->interrupt_in_urb)
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001095 continue;
1096 err = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
1097 if (err)
Andrew Morton7bb75ae2005-07-27 01:08:30 -07001098 dbg("%s: submit irq_in urb failed %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001099 __func__, err);
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001100 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001101 option_setup_urbs(serial);
Alan Cox19e58fa2008-07-22 11:15:45 +01001102 return 0;
Oliver Neukum2129c4e2008-02-01 13:58:52 +01001103
1104bail_out_error2:
1105 for (j = 0; j < N_OUT_URB; j++)
1106 kfree(portdata->out_buffer[j]);
1107bail_out_error:
1108 for (j = 0; j < N_IN_URB; j++)
1109 if (portdata->in_buffer[j])
1110 free_page((unsigned long)portdata->in_buffer[j]);
1111 kfree(portdata);
1112 return 1;
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001113}
1114
Oliver Neukum4901b2c2009-01-27 17:21:40 +01001115static void stop_read_write_urbs(struct usb_serial *serial)
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001116{
Matthias Urlichsba460e42005-07-14 00:33:47 -07001117 int i, j;
1118 struct usb_serial_port *port;
1119 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001120
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001121 /* Stop reading/writing urbs */
1122 for (i = 0; i < serial->num_ports; ++i) {
1123 port = serial->port[i];
1124 portdata = usb_get_serial_port_data(port);
1125 for (j = 0; j < N_IN_URB; j++)
Oliver Neukum7d28e742007-03-20 13:41:21 +01001126 usb_kill_urb(portdata->in_urbs[j]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001127 for (j = 0; j < N_OUT_URB; j++)
Oliver Neukum7d28e742007-03-20 13:41:21 +01001128 usb_kill_urb(portdata->out_urbs[j]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001129 }
Oliver Neukum4901b2c2009-01-27 17:21:40 +01001130}
1131
1132static void option_shutdown(struct usb_serial *serial)
1133{
1134 int i, j;
1135 struct usb_serial_port *port;
1136 struct option_port_private *portdata;
1137
1138 dbg("%s", __func__);
1139
1140 stop_read_write_urbs(serial);
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001141
1142 /* Now free them */
1143 for (i = 0; i < serial->num_ports; ++i) {
1144 port = serial->port[i];
1145 portdata = usb_get_serial_port_data(port);
1146
1147 for (j = 0; j < N_IN_URB; j++) {
1148 if (portdata->in_urbs[j]) {
1149 usb_free_urb(portdata->in_urbs[j]);
Alan Cox19e58fa2008-07-22 11:15:45 +01001150 free_page((unsigned long)
1151 portdata->in_buffer[j]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001152 portdata->in_urbs[j] = NULL;
1153 }
1154 }
1155 for (j = 0; j < N_OUT_URB; j++) {
1156 if (portdata->out_urbs[j]) {
1157 usb_free_urb(portdata->out_urbs[j]);
Oliver Neukum2129c4e2008-02-01 13:58:52 +01001158 kfree(portdata->out_buffer[j]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001159 portdata->out_urbs[j] = NULL;
1160 }
1161 }
1162 }
1163
1164 /* Now free per port private data */
1165 for (i = 0; i < serial->num_ports; i++) {
1166 port = serial->port[i];
1167 kfree(usb_get_serial_port_data(port));
1168 }
1169}
1170
Oliver Neukum4901b2c2009-01-27 17:21:40 +01001171static int option_suspend(struct usb_serial *serial, pm_message_t message)
1172{
1173 dbg("%s entered", __func__);
1174 stop_read_write_urbs(serial);
1175
1176 return 0;
1177}
1178
1179static int option_resume(struct usb_serial *serial)
1180{
1181 int err, i, j;
1182 struct usb_serial_port *port;
1183 struct urb *urb;
1184 struct option_port_private *portdata;
1185
1186 dbg("%s entered", __func__);
1187 /* get the interrupt URBs resubmitted unconditionally */
1188 for (i = 0; i < serial->num_ports; i++) {
1189 port = serial->port[i];
1190 if (!port->interrupt_in_urb) {
1191 dbg("%s: No interrupt URB for port %d\n", __func__, i);
1192 continue;
1193 }
1194 port->interrupt_in_urb->dev = serial->dev;
1195 err = usb_submit_urb(port->interrupt_in_urb, GFP_NOIO);
1196 dbg("Submitted interrupt URB for port %d (result %d)", i, err);
1197 if (err < 0) {
1198 err("%s: Error %d for interrupt URB of port%d",
1199 __func__, err, i);
1200 return err;
1201 }
1202 }
1203
1204 for (i = 0; i < serial->num_ports; i++) {
1205 /* walk all ports */
1206 port = serial->port[i];
1207 portdata = usb_get_serial_port_data(port);
1208 mutex_lock(&port->mutex);
1209
1210 /* skip closed ports */
1211 if (!port->port.count) {
1212 mutex_unlock(&port->mutex);
1213 continue;
1214 }
1215
1216 for (j = 0; j < N_IN_URB; j++) {
1217 urb = portdata->in_urbs[j];
1218 err = usb_submit_urb(urb, GFP_NOIO);
1219 if (err < 0) {
1220 mutex_unlock(&port->mutex);
1221 err("%s: Error %d for bulk URB %d",
1222 __func__, err, i);
1223 return err;
1224 }
1225 }
1226 mutex_unlock(&port->mutex);
1227 }
1228 return 0;
1229}
1230
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001231MODULE_AUTHOR(DRIVER_AUTHOR);
1232MODULE_DESCRIPTION(DRIVER_DESC);
1233MODULE_VERSION(DRIVER_VERSION);
1234MODULE_LICENSE("GPL");
1235
1236module_param(debug, bool, S_IRUGO | S_IWUSR);
1237MODULE_PARM_DESC(debug, "Debug messages");