blob: d560c0b54e6e3602b300412873501196ef2c8090 [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);
48static void option_close(struct tty_struct *tty, struct usb_serial_port *port,
49 struct file *filp);
Andrew Morton7bb75ae2005-07-27 01:08:30 -070050static int option_startup(struct usb_serial *serial);
51static void option_shutdown(struct usb_serial *serial);
Alan Cox95da3102008-07-22 11:09:07 +010052static int option_write_room(struct tty_struct *tty);
Matthias Urlichs58cfe912005-05-23 17:00:48 -070053
David Howells7d12e782006-10-05 14:55:46 +010054static void option_instat_callback(struct urb *urb);
Matthias Urlichs58cfe912005-05-23 17:00:48 -070055
Alan Cox95da3102008-07-22 11:09:07 +010056static int option_write(struct tty_struct *tty, struct usb_serial_port *port,
Andrew Morton7bb75ae2005-07-27 01:08:30 -070057 const unsigned char *buf, int count);
Alan Cox95da3102008-07-22 11:09:07 +010058static int option_chars_in_buffer(struct tty_struct *tty);
59static void option_set_termios(struct tty_struct *tty,
60 struct usb_serial_port *port, struct ktermios *old);
61static int option_tiocmget(struct tty_struct *tty, struct file *file);
62static int option_tiocmset(struct tty_struct *tty, struct file *file,
Andrew Morton7bb75ae2005-07-27 01:08:30 -070063 unsigned int set, unsigned int clear);
Alan Cox95da3102008-07-22 11:09:07 +010064static int option_send_setup(struct tty_struct *tty, struct usb_serial_port *port);
Oliver Neukum4901b2c2009-01-27 17:21:40 +010065static int option_suspend(struct usb_serial *serial, pm_message_t message);
66static int option_resume(struct usb_serial *serial);
Matthias Urlichs58cfe912005-05-23 17:00:48 -070067
68/* Vendor and product IDs */
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -080069#define OPTION_VENDOR_ID 0x0AF0
70#define OPTION_PRODUCT_COLT 0x5000
71#define OPTION_PRODUCT_RICOLA 0x6000
72#define OPTION_PRODUCT_RICOLA_LIGHT 0x6100
73#define OPTION_PRODUCT_RICOLA_QUAD 0x6200
74#define OPTION_PRODUCT_RICOLA_QUAD_LIGHT 0x6300
75#define OPTION_PRODUCT_RICOLA_NDIS 0x6050
76#define OPTION_PRODUCT_RICOLA_NDIS_LIGHT 0x6150
77#define OPTION_PRODUCT_RICOLA_NDIS_QUAD 0x6250
78#define OPTION_PRODUCT_RICOLA_NDIS_QUAD_LIGHT 0x6350
79#define OPTION_PRODUCT_COBRA 0x6500
80#define OPTION_PRODUCT_COBRA_BUS 0x6501
81#define OPTION_PRODUCT_VIPER 0x6600
82#define OPTION_PRODUCT_VIPER_BUS 0x6601
83#define OPTION_PRODUCT_GT_MAX_READY 0x6701
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -080084#define OPTION_PRODUCT_FUJI_MODEM_LIGHT 0x6721
85#define OPTION_PRODUCT_FUJI_MODEM_GT 0x6741
86#define OPTION_PRODUCT_FUJI_MODEM_EX 0x6761
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -080087#define OPTION_PRODUCT_KOI_MODEM 0x6800
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -080088#define OPTION_PRODUCT_SCORPION_MODEM 0x6901
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -080089#define OPTION_PRODUCT_ETNA_MODEM 0x7001
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -080090#define OPTION_PRODUCT_ETNA_MODEM_LITE 0x7021
91#define OPTION_PRODUCT_ETNA_MODEM_GT 0x7041
92#define OPTION_PRODUCT_ETNA_MODEM_EX 0x7061
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -080093#define OPTION_PRODUCT_ETNA_KOI_MODEM 0x7100
Achilleas Kotsise7f2f0d2009-03-16 16:35:02 +020094#define OPTION_PRODUCT_GTM380_MODEM 0x7201
Matthias Urlichs58cfe912005-05-23 17:00:48 -070095
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -080096#define HUAWEI_VENDOR_ID 0x12D1
97#define HUAWEI_PRODUCT_E600 0x1001
98#define HUAWEI_PRODUCT_E220 0x1003
Jaime Velasco Juana3209a02007-09-07 19:06:39 +010099#define HUAWEI_PRODUCT_E220BIS 0x1004
fangxiaozhiaad8a272008-04-10 14:51:06 +0800100#define HUAWEI_PRODUCT_E1401 0x1401
fangxiaozhi1460e5e2008-10-15 14:15:36 +0800101#define HUAWEI_PRODUCT_E1402 0x1402
fangxiaozhiaad8a272008-04-10 14:51:06 +0800102#define HUAWEI_PRODUCT_E1403 0x1403
fangxiaozhi1460e5e2008-10-15 14:15:36 +0800103#define HUAWEI_PRODUCT_E1404 0x1404
fangxiaozhiaad8a272008-04-10 14:51:06 +0800104#define HUAWEI_PRODUCT_E1405 0x1405
105#define HUAWEI_PRODUCT_E1406 0x1406
fangxiaozhi1460e5e2008-10-15 14:15:36 +0800106#define HUAWEI_PRODUCT_E1407 0x1407
fangxiaozhiaad8a272008-04-10 14:51:06 +0800107#define HUAWEI_PRODUCT_E1408 0x1408
108#define HUAWEI_PRODUCT_E1409 0x1409
fangxiaozhi1460e5e2008-10-15 14:15:36 +0800109#define HUAWEI_PRODUCT_E140A 0x140A
110#define HUAWEI_PRODUCT_E140B 0x140B
111#define HUAWEI_PRODUCT_E140C 0x140C
112#define HUAWEI_PRODUCT_E140D 0x140D
113#define HUAWEI_PRODUCT_E140E 0x140E
114#define HUAWEI_PRODUCT_E140F 0x140F
fangxiaozhiaad8a272008-04-10 14:51:06 +0800115#define HUAWEI_PRODUCT_E1410 0x1410
116#define HUAWEI_PRODUCT_E1411 0x1411
117#define HUAWEI_PRODUCT_E1412 0x1412
118#define HUAWEI_PRODUCT_E1413 0x1413
119#define HUAWEI_PRODUCT_E1414 0x1414
120#define HUAWEI_PRODUCT_E1415 0x1415
121#define HUAWEI_PRODUCT_E1416 0x1416
122#define HUAWEI_PRODUCT_E1417 0x1417
123#define HUAWEI_PRODUCT_E1418 0x1418
124#define HUAWEI_PRODUCT_E1419 0x1419
fangxiaozhi1460e5e2008-10-15 14:15:36 +0800125#define HUAWEI_PRODUCT_E141A 0x141A
126#define HUAWEI_PRODUCT_E141B 0x141B
127#define HUAWEI_PRODUCT_E141C 0x141C
128#define HUAWEI_PRODUCT_E141D 0x141D
129#define HUAWEI_PRODUCT_E141E 0x141E
130#define HUAWEI_PRODUCT_E141F 0x141F
131#define HUAWEI_PRODUCT_E1420 0x1420
132#define HUAWEI_PRODUCT_E1421 0x1421
133#define HUAWEI_PRODUCT_E1422 0x1422
134#define HUAWEI_PRODUCT_E1423 0x1423
135#define HUAWEI_PRODUCT_E1424 0x1424
136#define HUAWEI_PRODUCT_E1425 0x1425
137#define HUAWEI_PRODUCT_E1426 0x1426
138#define HUAWEI_PRODUCT_E1427 0x1427
139#define HUAWEI_PRODUCT_E1428 0x1428
140#define HUAWEI_PRODUCT_E1429 0x1429
141#define HUAWEI_PRODUCT_E142A 0x142A
142#define HUAWEI_PRODUCT_E142B 0x142B
143#define HUAWEI_PRODUCT_E142C 0x142C
144#define HUAWEI_PRODUCT_E142D 0x142D
145#define HUAWEI_PRODUCT_E142E 0x142E
146#define HUAWEI_PRODUCT_E142F 0x142F
147#define HUAWEI_PRODUCT_E1430 0x1430
148#define HUAWEI_PRODUCT_E1431 0x1431
149#define HUAWEI_PRODUCT_E1432 0x1432
150#define HUAWEI_PRODUCT_E1433 0x1433
151#define HUAWEI_PRODUCT_E1434 0x1434
152#define HUAWEI_PRODUCT_E1435 0x1435
153#define HUAWEI_PRODUCT_E1436 0x1436
154#define HUAWEI_PRODUCT_E1437 0x1437
155#define HUAWEI_PRODUCT_E1438 0x1438
156#define HUAWEI_PRODUCT_E1439 0x1439
157#define HUAWEI_PRODUCT_E143A 0x143A
158#define HUAWEI_PRODUCT_E143B 0x143B
159#define HUAWEI_PRODUCT_E143C 0x143C
160#define HUAWEI_PRODUCT_E143D 0x143D
161#define HUAWEI_PRODUCT_E143E 0x143E
162#define HUAWEI_PRODUCT_E143F 0x143F
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800163
Alex.Cheng@quantatw.comfc91be22009-01-22 16:01:57 +0800164#define QUANTA_VENDOR_ID 0x0408
165#define QUANTA_PRODUCT_Q101 0xEA02
166#define QUANTA_PRODUCT_Q111 0xEA03
167#define QUANTA_PRODUCT_GLX 0xEA04
168#define QUANTA_PRODUCT_GKE 0xEA05
169#define QUANTA_PRODUCT_GLE 0xEA06
170
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800171#define NOVATELWIRELESS_VENDOR_ID 0x1410
Dirk DeSchepper72ab6412008-03-05 08:26:18 +0000172
Leslie Watterc6206fa2008-11-12 15:10:07 -0200173/* YISO PRODUCTS */
174
175#define YISO_VENDOR_ID 0x0EAB
176#define YISO_PRODUCT_U893 0xC893
177
Dirk DeSchepper72ab6412008-03-05 08:26:18 +0000178/* MERLIN EVDO PRODUCTS */
179#define NOVATELWIRELESS_PRODUCT_V640 0x1100
180#define NOVATELWIRELESS_PRODUCT_V620 0x1110
181#define NOVATELWIRELESS_PRODUCT_V740 0x1120
182#define NOVATELWIRELESS_PRODUCT_V720 0x1130
183
184/* MERLIN HSDPA/HSPA PRODUCTS */
185#define NOVATELWIRELESS_PRODUCT_U730 0x1400
186#define NOVATELWIRELESS_PRODUCT_U740 0x1410
187#define NOVATELWIRELESS_PRODUCT_U870 0x1420
188#define NOVATELWIRELESS_PRODUCT_XU870 0x1430
189#define NOVATELWIRELESS_PRODUCT_X950D 0x1450
190
191/* EXPEDITE PRODUCTS */
192#define NOVATELWIRELESS_PRODUCT_EV620 0x2100
193#define NOVATELWIRELESS_PRODUCT_ES720 0x2110
194#define NOVATELWIRELESS_PRODUCT_E725 0x2120
Matthias Urlichsa1d9bc12008-04-10 10:13:32 +0200195#define NOVATELWIRELESS_PRODUCT_ES620 0x2130
Dirk DeSchepper72ab6412008-03-05 08:26:18 +0000196#define NOVATELWIRELESS_PRODUCT_EU730 0x2400
197#define NOVATELWIRELESS_PRODUCT_EU740 0x2410
198#define NOVATELWIRELESS_PRODUCT_EU870D 0x2420
199
200/* OVATION PRODUCTS */
201#define NOVATELWIRELESS_PRODUCT_MC727 0x4100
202#define NOVATELWIRELESS_PRODUCT_MC950D 0x4400
Dirk Hohndel56a21822009-03-14 20:47:39 -0700203#define NOVATELWIRELESS_PRODUCT_U727 0x5010
Dirk DeSchepper72ab6412008-03-05 08:26:18 +0000204
205/* FUTURE NOVATEL PRODUCTS */
Dirk De Schepperc200b9c2009-02-06 20:48:34 +0000206#define NOVATELWIRELESS_PRODUCT_EVDO_FULLSPEED 0X6000
207#define NOVATELWIRELESS_PRODUCT_EVDO_HIGHSPEED 0X6001
208#define NOVATELWIRELESS_PRODUCT_HSPA_FULLSPEED 0X7000
209#define NOVATELWIRELESS_PRODUCT_HSPA_HIGHSPEED 0X7001
210#define NOVATELWIRELESS_PRODUCT_EVDO_EMBEDDED_FULLSPEED 0X8000
211#define NOVATELWIRELESS_PRODUCT_EVDO_EMBEDDED_HIGHSPEED 0X8001
212#define NOVATELWIRELESS_PRODUCT_HSPA_EMBEDDED_FULLSPEED 0X9000
213#define NOVATELWIRELESS_PRODUCT_HSPA_EMBEDDED_HIGHSPEED 0X9001
214#define NOVATELWIRELESS_PRODUCT_GLOBAL 0XA001
Dirk DeSchepper72ab6412008-03-05 08:26:18 +0000215
tang kai32147be2008-04-14 10:06:35 +0800216/* AMOI PRODUCTS */
217#define AMOI_VENDOR_ID 0x1614
218#define AMOI_PRODUCT_H01 0x0800
219#define AMOI_PRODUCT_H01A 0x7002
220#define AMOI_PRODUCT_H02 0x0802
221
Faidon Liambotis96443212007-08-07 05:46:05 +0300222#define DELL_VENDOR_ID 0x413C
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800223
Dirk De Schepperc200b9c2009-02-06 20:48:34 +0000224/* Dell modems */
225#define DELL_PRODUCT_5700_MINICARD 0x8114
226#define DELL_PRODUCT_5500_MINICARD 0x8115
227#define DELL_PRODUCT_5505_MINICARD 0x8116
228#define DELL_PRODUCT_5700_EXPRESSCARD 0x8117
229#define DELL_PRODUCT_5510_EXPRESSCARD 0x8118
230
231#define DELL_PRODUCT_5700_MINICARD_SPRINT 0x8128
232#define DELL_PRODUCT_5700_MINICARD_TELUS 0x8129
233
234#define DELL_PRODUCT_5720_MINICARD_VZW 0x8133
235#define DELL_PRODUCT_5720_MINICARD_SPRINT 0x8134
236#define DELL_PRODUCT_5720_MINICARD_TELUS 0x8135
237#define DELL_PRODUCT_5520_MINICARD_CINGULAR 0x8136
238#define DELL_PRODUCT_5520_MINICARD_GENERIC_L 0x8137
239#define DELL_PRODUCT_5520_MINICARD_GENERIC_I 0x8138
240
241#define DELL_PRODUCT_5730_MINICARD_SPRINT 0x8180
242#define DELL_PRODUCT_5730_MINICARD_TELUS 0x8181
243#define DELL_PRODUCT_5730_MINICARD_VZW 0x8182
244
Dan Williams564d61d2008-02-19 13:15:30 -0500245#define KYOCERA_VENDOR_ID 0x0c88
Greg Kroah-Hartman640c1bc2008-06-19 11:21:16 -0700246#define KYOCERA_PRODUCT_KPC650 0x17da
Dan Williams564d61d2008-02-19 13:15:30 -0500247#define KYOCERA_PRODUCT_KPC680 0x180a
248
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800249#define ANYDATA_VENDOR_ID 0x16d5
Hiroshi Miuraf8033822008-08-19 10:58:25 +0200250#define ANYDATA_PRODUCT_ADU_620UW 0x6202
Alexander Gattin46269db2007-06-20 00:48:10 +0300251#define ANYDATA_PRODUCT_ADU_E100A 0x6501
252#define ANYDATA_PRODUCT_ADU_500A 0x6502
Matthias Urlichsba460e42005-07-14 00:33:47 -0700253
Daniel Kozák85fb62a2008-03-04 18:54:53 +0100254#define AXESSTEL_VENDOR_ID 0x1726
255#define AXESSTEL_PRODUCT_MV110H 0x1000
256
andreoli@samba.ing.unimo.it4c7d3132008-05-01 19:26:16 +0200257#define ONDA_VENDOR_ID 0x19d2
Arnaldo Carvalho de Melo1b2d23d2008-05-16 15:41:40 -0300258#define ONDA_PRODUCT_MSA501HS 0x0001
andreoli@samba.ing.unimo.it4c7d3132008-05-01 19:26:16 +0200259#define ONDA_PRODUCT_ET502HS 0x0002
Marcel Sebek3b498a62008-12-28 14:06:50 +0100260#define ONDA_PRODUCT_MT503HS 0x2000
andreoli@samba.ing.unimo.it4c7d3132008-05-01 19:26:16 +0200261
Leon Leong3f6e5842007-04-26 00:38:02 -0700262#define BANDRICH_VENDOR_ID 0x1A8D
263#define BANDRICH_PRODUCT_C100_1 0x1002
264#define BANDRICH_PRODUCT_C100_2 0x1003
Leon Leongbf3fc822008-08-01 11:40:12 +0800265#define BANDRICH_PRODUCT_1004 0x1004
266#define BANDRICH_PRODUCT_1005 0x1005
267#define BANDRICH_PRODUCT_1006 0x1006
268#define BANDRICH_PRODUCT_1007 0x1007
269#define BANDRICH_PRODUCT_1008 0x1008
270#define BANDRICH_PRODUCT_1009 0x1009
271#define BANDRICH_PRODUCT_100A 0x100a
272
273#define BANDRICH_PRODUCT_100B 0x100b
274#define BANDRICH_PRODUCT_100C 0x100c
275#define BANDRICH_PRODUCT_100D 0x100d
276#define BANDRICH_PRODUCT_100E 0x100e
277
278#define BANDRICH_PRODUCT_100F 0x100f
279#define BANDRICH_PRODUCT_1010 0x1010
280#define BANDRICH_PRODUCT_1011 0x1011
281#define BANDRICH_PRODUCT_1012 0x1012
Leon Leong3f6e5842007-04-26 00:38:02 -0700282
Matthias Urlichsa1d9bc12008-04-10 10:13:32 +0200283#define AMOI_VENDOR_ID 0x1614
284#define AMOI_PRODUCT_9508 0x0800
285
Kevin Lloydd726fb72008-02-14 13:35:16 -0800286#define QUALCOMM_VENDOR_ID 0x05C6
287
James Cameron80d97092008-04-09 18:59:13 +1000288#define MAXON_VENDOR_ID 0x16d8
289
Greg Kroah-Hartmanee53b0c2008-05-15 10:07:44 -0700290#define TELIT_VENDOR_ID 0x1bc7
291#define TELIT_PRODUCT_UC864E 0x1003
292
Oliver Martin6188a832008-08-09 04:49:26 +0200293/* ZTE PRODUCTS */
294#define ZTE_VENDOR_ID 0x19d2
Albert Pauw9ea19b82009-03-01 09:37:52 +0100295#define ZTE_PRODUCT_MF622 0x0001
Oliver Martin6188a832008-08-09 04:49:26 +0200296#define ZTE_PRODUCT_MF628 0x0015
Mikhail Gusarovbfd84082008-10-18 18:20:02 +0700297#define ZTE_PRODUCT_MF626 0x0031
Otavio Salvador884579d2008-09-17 14:40:46 -0300298#define ZTE_PRODUCT_CDMA_TECH 0xfffe
Oliver Martin6188a832008-08-09 04:49:26 +0200299
Jesse Sung28fb6682009-02-20 21:13:45 -0800300#define BENQ_VENDOR_ID 0x04a5
301#define BENQ_PRODUCT_H10 0x4068
302
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700303static struct usb_device_id option_ids[] = {
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800304 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COLT) },
305 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA) },
306 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_LIGHT) },
307 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_QUAD) },
308 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_QUAD_LIGHT) },
309 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS) },
310 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_LIGHT) },
311 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_QUAD) },
312 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_QUAD_LIGHT) },
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200313 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA) },
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800314 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA_BUS) },
315 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_VIPER) },
316 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_VIPER_BUS) },
317 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GT_MAX_READY) },
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800318 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_LIGHT) },
319 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_GT) },
320 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_EX) },
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800321 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_KOI_MODEM) },
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800322 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_SCORPION_MODEM) },
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800323 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM) },
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800324 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_LITE) },
325 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_GT) },
326 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_EX) },
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800327 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_KOI_MODEM) },
Achilleas Kotsise7f2f0d2009-03-16 16:35:02 +0200328 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GTM380_MODEM) },
Alex.Cheng@quantatw.comfc91be22009-01-22 16:01:57 +0800329 { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_Q101) },
330 { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_Q111) },
331 { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_GLX) },
332 { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_GKE) },
333 { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_GLE) },
Michael Karchera7f38722008-05-28 23:58:18 +0200334 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E600, 0xff, 0xff, 0xff) },
Jaime Velasco Juanb5ce18a2007-11-30 16:30:11 +0000335 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220, 0xff, 0xff, 0xff) },
336 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220BIS, 0xff, 0xff, 0xff) },
Michael Karchera7f38722008-05-28 23:58:18 +0200337 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1401, 0xff, 0xff, 0xff) },
fangxiaozhi1460e5e2008-10-15 14:15:36 +0800338 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1402, 0xff, 0xff, 0xff) },
Michael Karchera7f38722008-05-28 23:58:18 +0200339 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1403, 0xff, 0xff, 0xff) },
fangxiaozhi1460e5e2008-10-15 14:15:36 +0800340 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1404, 0xff, 0xff, 0xff) },
Michael Karchera7f38722008-05-28 23:58:18 +0200341 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1405, 0xff, 0xff, 0xff) },
342 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1406, 0xff, 0xff, 0xff) },
fangxiaozhi1460e5e2008-10-15 14:15:36 +0800343 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1407, 0xff, 0xff, 0xff) },
Michael Karchera7f38722008-05-28 23:58:18 +0200344 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1408, 0xff, 0xff, 0xff) },
345 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1409, 0xff, 0xff, 0xff) },
fangxiaozhi1460e5e2008-10-15 14:15:36 +0800346 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E140A, 0xff, 0xff, 0xff) },
347 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E140B, 0xff, 0xff, 0xff) },
348 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E140C, 0xff, 0xff, 0xff) },
349 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E140D, 0xff, 0xff, 0xff) },
350 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E140E, 0xff, 0xff, 0xff) },
351 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E140F, 0xff, 0xff, 0xff) },
Michael Karchera7f38722008-05-28 23:58:18 +0200352 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1410, 0xff, 0xff, 0xff) },
353 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1411, 0xff, 0xff, 0xff) },
354 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1412, 0xff, 0xff, 0xff) },
355 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1413, 0xff, 0xff, 0xff) },
356 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1414, 0xff, 0xff, 0xff) },
357 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1415, 0xff, 0xff, 0xff) },
358 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1416, 0xff, 0xff, 0xff) },
359 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1417, 0xff, 0xff, 0xff) },
360 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1418, 0xff, 0xff, 0xff) },
361 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1419, 0xff, 0xff, 0xff) },
fangxiaozhi1460e5e2008-10-15 14:15:36 +0800362 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E141A, 0xff, 0xff, 0xff) },
363 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E141B, 0xff, 0xff, 0xff) },
364 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E141C, 0xff, 0xff, 0xff) },
365 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E141D, 0xff, 0xff, 0xff) },
366 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E141E, 0xff, 0xff, 0xff) },
367 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E141F, 0xff, 0xff, 0xff) },
368 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1420, 0xff, 0xff, 0xff) },
369 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1421, 0xff, 0xff, 0xff) },
370 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1422, 0xff, 0xff, 0xff) },
371 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1423, 0xff, 0xff, 0xff) },
372 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1424, 0xff, 0xff, 0xff) },
373 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1425, 0xff, 0xff, 0xff) },
374 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1426, 0xff, 0xff, 0xff) },
375 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1427, 0xff, 0xff, 0xff) },
376 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1428, 0xff, 0xff, 0xff) },
377 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1429, 0xff, 0xff, 0xff) },
378 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E142A, 0xff, 0xff, 0xff) },
379 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E142B, 0xff, 0xff, 0xff) },
380 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E142C, 0xff, 0xff, 0xff) },
381 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E142D, 0xff, 0xff, 0xff) },
382 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E142E, 0xff, 0xff, 0xff) },
383 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E142F, 0xff, 0xff, 0xff) },
384 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1430, 0xff, 0xff, 0xff) },
385 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1431, 0xff, 0xff, 0xff) },
386 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1432, 0xff, 0xff, 0xff) },
387 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1433, 0xff, 0xff, 0xff) },
388 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1434, 0xff, 0xff, 0xff) },
389 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1435, 0xff, 0xff, 0xff) },
390 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1436, 0xff, 0xff, 0xff) },
391 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1437, 0xff, 0xff, 0xff) },
392 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1438, 0xff, 0xff, 0xff) },
393 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1439, 0xff, 0xff, 0xff) },
394 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E143A, 0xff, 0xff, 0xff) },
395 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E143B, 0xff, 0xff, 0xff) },
396 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E143C, 0xff, 0xff, 0xff) },
397 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E143D, 0xff, 0xff, 0xff) },
398 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E143E, 0xff, 0xff, 0xff) },
399 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E143F, 0xff, 0xff, 0xff) },
Matthias Urlichsa1d9bc12008-04-10 10:13:32 +0200400 { USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_9508) },
Dirk DeSchepper72ab6412008-03-05 08:26:18 +0000401 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V640) }, /* Novatel Merlin V640/XV620 */
402 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V620) }, /* Novatel Merlin V620/S620 */
403 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V740) }, /* Novatel Merlin EX720/V740/X720 */
404 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V720) }, /* Novatel Merlin V720/S720/PC720 */
405 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_U730) }, /* Novatel U730/U740 (VF version) */
406 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_U740) }, /* Novatel U740 */
407 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_U870) }, /* Novatel U870 */
408 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_XU870) }, /* Novatel Merlin XU870 HSDPA/3G */
409 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_X950D) }, /* Novatel X950D */
410 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EV620) }, /* Novatel EV620/ES620 CDMA/EV-DO */
411 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_ES720) }, /* Novatel ES620/ES720/U720/USB720 */
412 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_E725) }, /* Novatel E725/E726 */
Matthias Urlichsa1d9bc12008-04-10 10:13:32 +0200413 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_ES620) }, /* Novatel Merlin ES620 SM Bus */
Dirk DeSchepper72ab6412008-03-05 08:26:18 +0000414 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EU730) }, /* Novatel EU730 and Vodafone EU740 */
415 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EU740) }, /* Novatel non-Vodafone EU740 */
416 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EU870D) }, /* Novatel EU850D/EU860D/EU870D */
417 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_MC950D) }, /* Novatel MC930D/MC950D */
418 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_MC727) }, /* Novatel MC727/U727/USB727 */
Dirk Hohndel56a21822009-03-14 20:47:39 -0700419 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_U727) }, /* Novatel MC727/U727/USB727 */
Dirk De Schepperc200b9c2009-02-06 20:48:34 +0000420 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EVDO_FULLSPEED) }, /* Novatel EVDO product */
421 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_HSPA_FULLSPEED) }, /* Novatel HSPA product */
422 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EVDO_EMBEDDED_FULLSPEED) }, /* Novatel EVDO Embedded product */
423 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_HSPA_EMBEDDED_FULLSPEED) }, /* Novatel HSPA Embedded product */
424 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EVDO_HIGHSPEED) }, /* Novatel EVDO product */
425 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_HSPA_HIGHSPEED) }, /* Novatel HSPA product */
426 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EVDO_EMBEDDED_HIGHSPEED) }, /* Novatel EVDO Embedded product */
427 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_HSPA_EMBEDDED_HIGHSPEED) }, /* Novatel HSPA Embedded product */
428 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_GLOBAL) }, /* Novatel Global product */
Dirk DeSchepper72ab6412008-03-05 08:26:18 +0000429
tang kai32147be2008-04-14 10:06:35 +0800430 { USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_H01) },
431 { USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_H01A) },
432 { USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_H02) },
433
Dirk De Schepperc200b9c2009-02-06 20:48:34 +0000434 { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5700_MINICARD) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO Mini-Card == Novatel Expedite EV620 CDMA/EV-DO */
435 { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5500_MINICARD) }, /* Dell Wireless 5500 Mobile Broadband HSDPA Mini-Card == Novatel Expedite EU740 HSDPA/3G */
436 { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5505_MINICARD) }, /* Dell Wireless 5505 Mobile Broadband HSDPA Mini-Card == Novatel Expedite EU740 HSDPA/3G */
437 { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5700_EXPRESSCARD) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO ExpressCard == Novatel Merlin XV620 CDMA/EV-DO */
438 { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5510_EXPRESSCARD) }, /* Dell Wireless 5510 Mobile Broadband HSDPA ExpressCard == Novatel Merlin XU870 HSDPA/3G */
439 { 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 */
440 { 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 */
441 { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5720_MINICARD_VZW) }, /* Dell Wireless 5720 == Novatel EV620 CDMA/EV-DO */
442 { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5720_MINICARD_SPRINT) }, /* Dell Wireless 5720 == Novatel EV620 CDMA/EV-DO */
443 { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5720_MINICARD_TELUS) }, /* Dell Wireless 5720 == Novatel EV620 CDMA/EV-DO */
444 { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5520_MINICARD_CINGULAR) }, /* Dell Wireless HSDPA 5520 == Novatel Expedite EU860D */
445 { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5520_MINICARD_GENERIC_L) }, /* Dell Wireless HSDPA 5520 */
446 { 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 +0000447 { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5730_MINICARD_SPRINT) }, /* Dell Wireless 5730 Mobile Broadband EVDO/HSPA Mini-Card */
448 { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5730_MINICARD_TELUS) }, /* Dell Wireless 5730 Mobile Broadband EVDO/HSPA Mini-Card */
449 { 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 +0200450 { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_E100A) }, /* ADU-E100, ADU-310 */
Alexander Gattin46269db2007-06-20 00:48:10 +0300451 { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_500A) },
Hiroshi Miuraf8033822008-08-19 10:58:25 +0200452 { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_620UW) },
Daniel Kozák85fb62a2008-03-04 18:54:53 +0100453 { USB_DEVICE(AXESSTEL_VENDOR_ID, AXESSTEL_PRODUCT_MV110H) },
Arnaldo Carvalho de Melo1b2d23d2008-05-16 15:41:40 -0300454 { USB_DEVICE(ONDA_VENDOR_ID, ONDA_PRODUCT_MSA501HS) },
andreoli@samba.ing.unimo.it4c7d3132008-05-01 19:26:16 +0200455 { USB_DEVICE(ONDA_VENDOR_ID, ONDA_PRODUCT_ET502HS) },
Greg Kroah-Hartman5bb4bd92008-11-29 11:46:21 -0800456 { USB_DEVICE(ONDA_VENDOR_ID, 0x0003) },
457 { USB_DEVICE(ONDA_VENDOR_ID, 0x0004) },
458 { USB_DEVICE(ONDA_VENDOR_ID, 0x0005) },
459 { USB_DEVICE(ONDA_VENDOR_ID, 0x0006) },
460 { USB_DEVICE(ONDA_VENDOR_ID, 0x0007) },
461 { USB_DEVICE(ONDA_VENDOR_ID, 0x0008) },
462 { USB_DEVICE(ONDA_VENDOR_ID, 0x0009) },
463 { USB_DEVICE(ONDA_VENDOR_ID, 0x000a) },
464 { USB_DEVICE(ONDA_VENDOR_ID, 0x000b) },
465 { USB_DEVICE(ONDA_VENDOR_ID, 0x000c) },
466 { USB_DEVICE(ONDA_VENDOR_ID, 0x000d) },
467 { USB_DEVICE(ONDA_VENDOR_ID, 0x000e) },
468 { USB_DEVICE(ONDA_VENDOR_ID, 0x000f) },
469 { USB_DEVICE(ONDA_VENDOR_ID, 0x0010) },
470 { USB_DEVICE(ONDA_VENDOR_ID, 0x0011) },
471 { USB_DEVICE(ONDA_VENDOR_ID, 0x0012) },
472 { USB_DEVICE(ONDA_VENDOR_ID, 0x0013) },
473 { USB_DEVICE(ONDA_VENDOR_ID, 0x0014) },
474 { USB_DEVICE(ONDA_VENDOR_ID, 0x0015) },
475 { USB_DEVICE(ONDA_VENDOR_ID, 0x0016) },
476 { USB_DEVICE(ONDA_VENDOR_ID, 0x0017) },
477 { USB_DEVICE(ONDA_VENDOR_ID, 0x0018) },
478 { USB_DEVICE(ONDA_VENDOR_ID, 0x0019) },
479 { USB_DEVICE(ONDA_VENDOR_ID, 0x0020) },
480 { USB_DEVICE(ONDA_VENDOR_ID, 0x0021) },
481 { USB_DEVICE(ONDA_VENDOR_ID, 0x0022) },
482 { USB_DEVICE(ONDA_VENDOR_ID, 0x0023) },
483 { USB_DEVICE(ONDA_VENDOR_ID, 0x0024) },
484 { USB_DEVICE(ONDA_VENDOR_ID, 0x0025) },
485 { USB_DEVICE(ONDA_VENDOR_ID, 0x0026) },
486 { USB_DEVICE(ONDA_VENDOR_ID, 0x0027) },
487 { USB_DEVICE(ONDA_VENDOR_ID, 0x0028) },
488 { USB_DEVICE(ONDA_VENDOR_ID, 0x0029) },
489 { USB_DEVICE(ONDA_VENDOR_ID, ONDA_PRODUCT_MT503HS) },
Leslie Watterc6206fa2008-11-12 15:10:07 -0200490 { USB_DEVICE(YISO_VENDOR_ID, YISO_PRODUCT_U893) },
Leon Leong3f6e5842007-04-26 00:38:02 -0700491 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_C100_1) },
492 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_C100_2) },
Leon Leongbf3fc822008-08-01 11:40:12 +0800493 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1004) },
494 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1005) },
495 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1006) },
496 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1007) },
497 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1008) },
498 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1009) },
499 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100A) },
500 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100B) },
501 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100C) },
502 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100D) },
503 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100E) },
504 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100F) },
505 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1010) },
506 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1011) },
507 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1012) },
Greg Kroah-Hartman640c1bc2008-06-19 11:21:16 -0700508 { USB_DEVICE(KYOCERA_VENDOR_ID, KYOCERA_PRODUCT_KPC650) },
Dan Williams564d61d2008-02-19 13:15:30 -0500509 { USB_DEVICE(KYOCERA_VENDOR_ID, KYOCERA_PRODUCT_KPC680) },
Greg Kroah-Hartmand2e2aff2008-07-01 13:11:56 +0530510 { USB_DEVICE(QUALCOMM_VENDOR_ID, 0x6000)}, /* ZTE AC8700 */
Kevin Lloydd726fb72008-02-14 13:35:16 -0800511 { USB_DEVICE(QUALCOMM_VENDOR_ID, 0x6613)}, /* Onda H600/ZTE MF330 */
James Cameron80d97092008-04-09 18:59:13 +1000512 { USB_DEVICE(MAXON_VENDOR_ID, 0x6280) }, /* BP3-USB & BP3-EXT HSDPA */
Greg Kroah-Hartmanee53b0c2008-05-15 10:07:44 -0700513 { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_UC864E) },
Albert Pauw9ea19b82009-03-01 09:37:52 +0100514 { USB_DEVICE(ZTE_VENDOR_ID, ZTE_PRODUCT_MF622) },
Mikhail Gusarovbfd84082008-10-18 18:20:02 +0700515 { USB_DEVICE(ZTE_VENDOR_ID, ZTE_PRODUCT_MF626) },
Oliver Martin6188a832008-08-09 04:49:26 +0200516 { USB_DEVICE(ZTE_VENDOR_ID, ZTE_PRODUCT_MF628) },
Otavio Salvador884579d2008-09-17 14:40:46 -0300517 { USB_DEVICE(ZTE_VENDOR_ID, ZTE_PRODUCT_CDMA_TECH) },
Jesse Sung28fb6682009-02-20 21:13:45 -0800518 { USB_DEVICE(BENQ_VENDOR_ID, BENQ_PRODUCT_H10) },
519 { USB_DEVICE(0x1da5, 0x4515) }, /* BenQ H20 */
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200520 { } /* Terminating entry */
521};
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700522MODULE_DEVICE_TABLE(usb, option_ids);
523
524static struct usb_driver option_driver = {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700525 .name = "option",
526 .probe = usb_serial_probe,
527 .disconnect = usb_serial_disconnect,
Oliver Neukum4901b2c2009-01-27 17:21:40 +0100528 .suspend = usb_serial_suspend,
529 .resume = usb_serial_resume,
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700530 .id_table = option_ids,
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800531 .no_dynamic_id = 1,
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700532};
533
Uwe Zeisbergerc30fe7f2006-03-24 18:23:14 +0100534/* The card has three separate interfaces, which the serial driver
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700535 * recognizes separately, thus num_port=1.
536 */
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200537
538static struct usb_serial_driver option_1port_device = {
539 .driver = {
540 .owner = THIS_MODULE,
Matthias Urlichs02b2ac52006-08-02 16:41:41 -0700541 .name = "option1",
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200542 },
543 .description = "GSM modem (1-port)",
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100544 .usb_driver = &option_driver,
Greg Kroah-Hartmanb656b2c2007-02-21 12:53:17 -0800545 .id_table = option_ids,
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200546 .num_ports = 1,
Matthias Urlichsba460e42005-07-14 00:33:47 -0700547 .open = option_open,
548 .close = option_close,
549 .write = option_write,
550 .write_room = option_write_room,
551 .chars_in_buffer = option_chars_in_buffer,
Matthias Urlichsba460e42005-07-14 00:33:47 -0700552 .set_termios = option_set_termios,
Matthias Urlichsba460e42005-07-14 00:33:47 -0700553 .tiocmget = option_tiocmget,
554 .tiocmset = option_tiocmset,
555 .attach = option_startup,
556 .shutdown = option_shutdown,
557 .read_int_callback = option_instat_callback,
Oliver Neukum4901b2c2009-01-27 17:21:40 +0100558 .suspend = option_suspend,
559 .resume = option_resume,
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700560};
561
562static int debug;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700563
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700564/* per port private data */
565
Matthias Urlichsba460e42005-07-14 00:33:47 -0700566#define N_IN_URB 4
Greg Kroah-Hartmanf1632df2008-12-16 13:26:07 -0800567#define N_OUT_URB 4
Matthias Urlichsb27c73d2005-09-22 00:49:33 -0700568#define IN_BUFLEN 4096
Greg Kroah-Hartmanf1632df2008-12-16 13:26:07 -0800569#define OUT_BUFLEN 4096
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700570
571struct option_port_private {
572 /* Input endpoints and buffer for this port */
Matthias Urlichsba460e42005-07-14 00:33:47 -0700573 struct urb *in_urbs[N_IN_URB];
Oliver Neukum2129c4e2008-02-01 13:58:52 +0100574 u8 *in_buffer[N_IN_URB];
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700575 /* Output endpoints and buffer for this port */
Matthias Urlichsba460e42005-07-14 00:33:47 -0700576 struct urb *out_urbs[N_OUT_URB];
Oliver Neukum2129c4e2008-02-01 13:58:52 +0100577 u8 *out_buffer[N_OUT_URB];
Alan Stern59c2afa2007-06-05 16:46:26 -0700578 unsigned long out_busy; /* Bit vector of URBs in use */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700579
580 /* Settings for the port */
Matthias Urlichsba460e42005-07-14 00:33:47 -0700581 int rts_state; /* Handshaking pins (outputs) */
582 int dtr_state;
583 int cts_state; /* Handshaking pins (inputs) */
584 int dsr_state;
585 int dcd_state;
586 int ri_state;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700587
Matthias Urlichsba460e42005-07-14 00:33:47 -0700588 unsigned long tx_start_time[N_OUT_URB];
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700589};
590
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700591/* Functions used by new usb-serial code. */
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700592static int __init option_init(void)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700593{
594 int retval;
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200595 retval = usb_serial_register(&option_1port_device);
596 if (retval)
597 goto failed_1port_device_register;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700598 retval = usb_register(&option_driver);
599 if (retval)
600 goto failed_driver_register;
601
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -0700602 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
603 DRIVER_DESC "\n");
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700604
605 return 0;
606
607failed_driver_register:
Alan Cox19e58fa2008-07-22 11:15:45 +0100608 usb_serial_deregister(&option_1port_device);
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200609failed_1port_device_register:
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700610 return retval;
611}
612
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700613static void __exit option_exit(void)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700614{
Alan Cox19e58fa2008-07-22 11:15:45 +0100615 usb_deregister(&option_driver);
616 usb_serial_deregister(&option_1port_device);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700617}
618
619module_init(option_init);
620module_exit(option_exit);
621
Alan Cox95da3102008-07-22 11:09:07 +0100622static void option_set_termios(struct tty_struct *tty,
623 struct usb_serial_port *port, struct ktermios *old_termios)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700624{
Harvey Harrison441b62c2008-03-03 16:08:34 -0800625 dbg("%s", __func__);
Alan Coxe650d8a2007-10-18 01:24:21 -0700626 /* Doesn't support option setting */
Alan Cox95da3102008-07-22 11:09:07 +0100627 tty_termios_copy_hw(tty->termios, old_termios);
628 option_send_setup(tty, port);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700629}
630
Alan Cox95da3102008-07-22 11:09:07 +0100631static int option_tiocmget(struct tty_struct *tty, struct file *file)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700632{
Alan Cox95da3102008-07-22 11:09:07 +0100633 struct usb_serial_port *port = tty->driver_data;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700634 unsigned int value;
635 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700636
637 portdata = usb_get_serial_port_data(port);
638
639 value = ((portdata->rts_state) ? TIOCM_RTS : 0) |
640 ((portdata->dtr_state) ? TIOCM_DTR : 0) |
641 ((portdata->cts_state) ? TIOCM_CTS : 0) |
642 ((portdata->dsr_state) ? TIOCM_DSR : 0) |
643 ((portdata->dcd_state) ? TIOCM_CAR : 0) |
644 ((portdata->ri_state) ? TIOCM_RNG : 0);
645
646 return value;
647}
648
Alan Cox95da3102008-07-22 11:09:07 +0100649static int option_tiocmset(struct tty_struct *tty, struct file *file,
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700650 unsigned int set, unsigned int clear)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700651{
Alan Cox95da3102008-07-22 11:09:07 +0100652 struct usb_serial_port *port = tty->driver_data;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700653 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700654
655 portdata = usb_get_serial_port_data(port);
656
Alan Coxe2984492008-02-20 20:51:45 +0000657 /* FIXME: what locks portdata fields ? */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700658 if (set & TIOCM_RTS)
659 portdata->rts_state = 1;
660 if (set & TIOCM_DTR)
661 portdata->dtr_state = 1;
662
663 if (clear & TIOCM_RTS)
664 portdata->rts_state = 0;
665 if (clear & TIOCM_DTR)
666 portdata->dtr_state = 0;
Alan Cox95da3102008-07-22 11:09:07 +0100667 return option_send_setup(tty, port);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700668}
669
670/* Write */
Alan Cox95da3102008-07-22 11:09:07 +0100671static int option_write(struct tty_struct *tty, struct usb_serial_port *port,
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700672 const unsigned char *buf, int count)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700673{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700674 struct option_port_private *portdata;
675 int i;
676 int left, todo;
677 struct urb *this_urb = NULL; /* spurious */
678 int err;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700679
680 portdata = usb_get_serial_port_data(port);
681
Harvey Harrison441b62c2008-03-03 16:08:34 -0800682 dbg("%s: write (%d chars)", __func__, count);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700683
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700684 i = 0;
685 left = count;
Alan Cox19e58fa2008-07-22 11:15:45 +0100686 for (i = 0; left > 0 && i < N_OUT_URB; i++) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700687 todo = left;
688 if (todo > OUT_BUFLEN)
689 todo = OUT_BUFLEN;
690
Matthias Urlichsba460e42005-07-14 00:33:47 -0700691 this_urb = portdata->out_urbs[i];
Alan Stern59c2afa2007-06-05 16:46:26 -0700692 if (test_and_set_bit(i, &portdata->out_busy)) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700693 if (time_before(jiffies,
694 portdata->tx_start_time[i] + 10 * HZ))
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700695 continue;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700696 usb_unlink_urb(this_urb);
Matthias Urlichsba460e42005-07-14 00:33:47 -0700697 continue;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700698 }
Harvey Harrison441b62c2008-03-03 16:08:34 -0800699 dbg("%s: endpoint %d buf %d", __func__,
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700700 usb_pipeendpoint(this_urb->pipe), i);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700701
Matthias Urlichsba460e42005-07-14 00:33:47 -0700702 /* send the data */
Alan Cox19e58fa2008-07-22 11:15:45 +0100703 memcpy(this_urb->transfer_buffer, buf, todo);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700704 this_urb->transfer_buffer_length = todo;
705
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700706 this_urb->dev = port->serial->dev;
707 err = usb_submit_urb(this_urb, GFP_ATOMIC);
708 if (err) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700709 dbg("usb_submit_urb %p (write bulk) failed "
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800710 "(%d)", this_urb, err);
Alan Stern59c2afa2007-06-05 16:46:26 -0700711 clear_bit(i, &portdata->out_busy);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700712 continue;
713 }
714 portdata->tx_start_time[i] = jiffies;
715 buf += todo;
716 left -= todo;
717 }
718
719 count -= left;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800720 dbg("%s: wrote (did %d)", __func__, count);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700721 return count;
722}
723
David Howells7d12e782006-10-05 14:55:46 +0100724static void option_indat_callback(struct urb *urb)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700725{
Alan Cox33f0f882006-01-09 20:54:13 -0800726 int err;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700727 int endpoint;
728 struct usb_serial_port *port;
729 struct tty_struct *tty;
730 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700731 int status = urb->status;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700732
Harvey Harrison441b62c2008-03-03 16:08:34 -0800733 dbg("%s: %p", __func__, urb);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700734
735 endpoint = usb_pipeendpoint(urb->pipe);
Ming Leicdc97792008-02-24 18:41:47 +0800736 port = urb->context;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700737
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700738 if (status) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700739 dbg("%s: nonzero status: %d on endpoint %02x.",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800740 __func__, status, endpoint);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700741 } else {
Alan Cox4a90f092008-10-13 10:39:46 +0100742 tty = tty_port_tty_get(&port->port);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700743 if (urb->actual_length) {
Alan Cox33f0f882006-01-09 20:54:13 -0800744 tty_buffer_request_room(tty, urb->actual_length);
745 tty_insert_flip_string(tty, data, urb->actual_length);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700746 tty_flip_buffer_push(tty);
Alan Cox4a90f092008-10-13 10:39:46 +0100747 } else
Harvey Harrison441b62c2008-03-03 16:08:34 -0800748 dbg("%s: empty read urb received", __func__);
Alan Cox4a90f092008-10-13 10:39:46 +0100749 tty_kref_put(tty);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700750
751 /* Resubmit urb so we continue receiving */
Alan Cox95da3102008-07-22 11:09:07 +0100752 if (port->port.count && status != -ESHUTDOWN) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700753 err = usb_submit_urb(urb, GFP_ATOMIC);
754 if (err)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700755 printk(KERN_ERR "%s: resubmit read urb failed. "
Harvey Harrison441b62c2008-03-03 16:08:34 -0800756 "(%d)", __func__, err);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700757 }
758 }
759 return;
760}
761
David Howells7d12e782006-10-05 14:55:46 +0100762static void option_outdat_callback(struct urb *urb)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700763{
764 struct usb_serial_port *port;
Alan Stern59c2afa2007-06-05 16:46:26 -0700765 struct option_port_private *portdata;
766 int i;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700767
Harvey Harrison441b62c2008-03-03 16:08:34 -0800768 dbg("%s", __func__);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700769
Ming Leicdc97792008-02-24 18:41:47 +0800770 port = urb->context;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700771
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700772 usb_serial_port_softint(port);
Alan Stern59c2afa2007-06-05 16:46:26 -0700773
774 portdata = usb_get_serial_port_data(port);
775 for (i = 0; i < N_OUT_URB; ++i) {
776 if (portdata->out_urbs[i] == urb) {
777 smp_mb__before_clear_bit();
778 clear_bit(i, &portdata->out_busy);
779 break;
780 }
781 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700782}
783
David Howells7d12e782006-10-05 14:55:46 +0100784static void option_instat_callback(struct urb *urb)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700785{
786 int err;
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700787 int status = urb->status;
Ming Leicdc97792008-02-24 18:41:47 +0800788 struct usb_serial_port *port = urb->context;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700789 struct option_port_private *portdata = usb_get_serial_port_data(port);
790 struct usb_serial *serial = port->serial;
791
Harvey Harrison441b62c2008-03-03 16:08:34 -0800792 dbg("%s", __func__);
Alan Cox19e58fa2008-07-22 11:15:45 +0100793 dbg("%s: urb %p port %p has data %p", __func__, urb, port, portdata);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700794
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700795 if (status == 0) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700796 struct usb_ctrlrequest *req_pkt =
797 (struct usb_ctrlrequest *)urb->transfer_buffer;
798
799 if (!req_pkt) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800800 dbg("%s: NULL req_pkt\n", __func__);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700801 return;
802 }
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700803 if ((req_pkt->bRequestType == 0xA1) &&
804 (req_pkt->bRequest == 0x20)) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700805 int old_dcd_state;
806 unsigned char signals = *((unsigned char *)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700807 urb->transfer_buffer +
808 sizeof(struct usb_ctrlrequest));
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700809
Harvey Harrison441b62c2008-03-03 16:08:34 -0800810 dbg("%s: signal x%x", __func__, signals);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700811
812 old_dcd_state = portdata->dcd_state;
813 portdata->cts_state = 1;
814 portdata->dcd_state = ((signals & 0x01) ? 1 : 0);
815 portdata->dsr_state = ((signals & 0x02) ? 1 : 0);
816 portdata->ri_state = ((signals & 0x08) ? 1 : 0);
817
Alan Cox4a90f092008-10-13 10:39:46 +0100818 if (old_dcd_state && !portdata->dcd_state) {
819 struct tty_struct *tty =
820 tty_port_tty_get(&port->port);
821 if (tty && !C_CLOCAL(tty))
822 tty_hangup(tty);
823 tty_kref_put(tty);
824 }
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700825 } else {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800826 dbg("%s: type %x req %x", __func__,
Alan Cox19e58fa2008-07-22 11:15:45 +0100827 req_pkt->bRequestType, req_pkt->bRequest);
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700828 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700829 } else
Oliver Neukum4901b2c2009-01-27 17:21:40 +0100830 err("%s: error %d", __func__, status);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700831
832 /* Resubmit urb so we continue receiving IRQ data */
Oliver Neukum4901b2c2009-01-27 17:21:40 +0100833 if (status != -ESHUTDOWN && status != -ENOENT) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700834 urb->dev = serial->dev;
835 err = usb_submit_urb(urb, GFP_ATOMIC);
836 if (err)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700837 dbg("%s: resubmit intr urb failed. (%d)",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800838 __func__, err);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700839 }
840}
841
Alan Cox95da3102008-07-22 11:09:07 +0100842static int option_write_room(struct tty_struct *tty)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700843{
Alan Cox95da3102008-07-22 11:09:07 +0100844 struct usb_serial_port *port = tty->driver_data;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700845 struct option_port_private *portdata;
846 int i;
847 int data_len = 0;
848 struct urb *this_urb;
849
850 portdata = usb_get_serial_port_data(port);
851
Alan Cox19e58fa2008-07-22 11:15:45 +0100852 for (i = 0; i < N_OUT_URB; i++) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700853 this_urb = portdata->out_urbs[i];
Alan Stern59c2afa2007-06-05 16:46:26 -0700854 if (this_urb && !test_bit(i, &portdata->out_busy))
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700855 data_len += OUT_BUFLEN;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700856 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700857
Harvey Harrison441b62c2008-03-03 16:08:34 -0800858 dbg("%s: %d", __func__, data_len);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700859 return data_len;
860}
861
Alan Cox95da3102008-07-22 11:09:07 +0100862static int option_chars_in_buffer(struct tty_struct *tty)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700863{
Alan Cox95da3102008-07-22 11:09:07 +0100864 struct usb_serial_port *port = tty->driver_data;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700865 struct option_port_private *portdata;
866 int i;
867 int data_len = 0;
868 struct urb *this_urb;
869
870 portdata = usb_get_serial_port_data(port);
871
Alan Cox19e58fa2008-07-22 11:15:45 +0100872 for (i = 0; i < N_OUT_URB; i++) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700873 this_urb = portdata->out_urbs[i];
Alan Coxa5b6f602008-04-08 17:16:06 +0100874 /* FIXME: This locking is insufficient as this_urb may
875 go unused during the test */
Alan Stern59c2afa2007-06-05 16:46:26 -0700876 if (this_urb && test_bit(i, &portdata->out_busy))
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700877 data_len += this_urb->transfer_buffer_length;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700878 }
Harvey Harrison441b62c2008-03-03 16:08:34 -0800879 dbg("%s: %d", __func__, data_len);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700880 return data_len;
881}
882
Alan Cox95da3102008-07-22 11:09:07 +0100883static int option_open(struct tty_struct *tty,
884 struct usb_serial_port *port, struct file *filp)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700885{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700886 struct option_port_private *portdata;
887 struct usb_serial *serial = port->serial;
888 int i, err;
889 struct urb *urb;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700890
891 portdata = usb_get_serial_port_data(port);
892
Harvey Harrison441b62c2008-03-03 16:08:34 -0800893 dbg("%s", __func__);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700894
895 /* Set some sane defaults */
896 portdata->rts_state = 1;
897 portdata->dtr_state = 1;
898
899 /* Reset low level data toggle and start reading from endpoints */
900 for (i = 0; i < N_IN_URB; i++) {
901 urb = portdata->in_urbs[i];
Alan Cox19e58fa2008-07-22 11:15:45 +0100902 if (!urb)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700903 continue;
904 if (urb->dev != serial->dev) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800905 dbg("%s: dev %p != %p", __func__,
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700906 urb->dev, serial->dev);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700907 continue;
908 }
909
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700910 /*
911 * make sure endpoint data toggle is synchronized with the
912 * device
913 */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700914 usb_clear_halt(urb->dev, urb->pipe);
915
916 err = usb_submit_urb(urb, GFP_KERNEL);
917 if (err) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700918 dbg("%s: submit urb %d failed (%d) %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800919 __func__, i, err,
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700920 urb->transfer_buffer_length);
921 }
922 }
923
924 /* Reset low level data toggle on out endpoints */
925 for (i = 0; i < N_OUT_URB; i++) {
926 urb = portdata->out_urbs[i];
Alan Cox19e58fa2008-07-22 11:15:45 +0100927 if (!urb)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700928 continue;
929 urb->dev = serial->dev;
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700930 /* usb_settoggle(urb->dev, usb_pipeendpoint(urb->pipe),
931 usb_pipeout(urb->pipe), 0); */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700932 }
933
Alan Cox95da3102008-07-22 11:09:07 +0100934 if (tty)
935 tty->low_latency = 1;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700936
Alan Cox95da3102008-07-22 11:09:07 +0100937 option_send_setup(tty, 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 Cox95da3102008-07-22 11:09:07 +0100942static void option_close(struct tty_struct *tty,
943 struct usb_serial_port *port, struct file *filp)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700944{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700945 int i;
946 struct usb_serial *serial = port->serial;
947 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700948
Harvey Harrison441b62c2008-03-03 16:08:34 -0800949 dbg("%s", __func__);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700950 portdata = usb_get_serial_port_data(port);
951
952 portdata->rts_state = 0;
953 portdata->dtr_state = 0;
954
955 if (serial->dev) {
Oliver Neukume33fe4d2008-01-21 17:44:10 +0100956 mutex_lock(&serial->disc_mutex);
957 if (!serial->disconnected)
Alan Cox95da3102008-07-22 11:09:07 +0100958 option_send_setup(tty, port);
Oliver Neukume33fe4d2008-01-21 17:44:10 +0100959 mutex_unlock(&serial->disc_mutex);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700960
961 /* Stop reading/writing urbs */
962 for (i = 0; i < N_IN_URB; i++)
Oliver Neukum7d28e742007-03-20 13:41:21 +0100963 usb_kill_urb(portdata->in_urbs[i]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700964 for (i = 0; i < N_OUT_URB; i++)
Oliver Neukum7d28e742007-03-20 13:41:21 +0100965 usb_kill_urb(portdata->out_urbs[i]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700966 }
Alan Cox4a90f092008-10-13 10:39:46 +0100967 tty_port_tty_set(&port->port, NULL);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700968}
969
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700970/* Helper functions used by option_setup_urbs */
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700971static struct urb *option_setup_urb(struct usb_serial *serial, int endpoint,
972 int dir, void *ctx, char *buf, int len,
David Howells7d12e782006-10-05 14:55:46 +0100973 void (*callback)(struct urb *))
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700974{
975 struct urb *urb;
976
977 if (endpoint == -1)
978 return NULL; /* endpoint not needed */
979
980 urb = usb_alloc_urb(0, GFP_KERNEL); /* No ISO */
981 if (urb == NULL) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800982 dbg("%s: alloc for endpoint %d failed.", __func__, endpoint);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700983 return NULL;
984 }
985
986 /* Fill URB using supplied data. */
987 usb_fill_bulk_urb(urb, serial->dev,
988 usb_sndbulkpipe(serial->dev, endpoint) | dir,
989 buf, len, callback, ctx);
990
991 return urb;
992}
993
994/* Setup urbs */
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700995static void option_setup_urbs(struct usb_serial *serial)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700996{
Alan Cox19e58fa2008-07-22 11:15:45 +0100997 int i, j;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700998 struct usb_serial_port *port;
999 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001000
Harvey Harrison441b62c2008-03-03 16:08:34 -08001001 dbg("%s", __func__);
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001002
Matthias Urlichs14f76cc2006-06-02 11:48:56 +02001003 for (i = 0; i < serial->num_ports; i++) {
1004 port = serial->port[i];
1005 portdata = usb_get_serial_port_data(port);
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001006
Alan Cox19e58fa2008-07-22 11:15:45 +01001007 /* Do indat endpoints first */
Matthias Urlichs14f76cc2006-06-02 11:48:56 +02001008 for (j = 0; j < N_IN_URB; ++j) {
Alan Cox19e58fa2008-07-22 11:15:45 +01001009 portdata->in_urbs[j] = option_setup_urb(serial,
1010 port->bulk_in_endpointAddress,
1011 USB_DIR_IN, port,
1012 portdata->in_buffer[j],
1013 IN_BUFLEN, option_indat_callback);
Matthias Urlichs14f76cc2006-06-02 11:48:56 +02001014 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001015
Matthias Urlichs14f76cc2006-06-02 11:48:56 +02001016 /* outdat endpoints */
1017 for (j = 0; j < N_OUT_URB; ++j) {
Alan Cox19e58fa2008-07-22 11:15:45 +01001018 portdata->out_urbs[j] = option_setup_urb(serial,
1019 port->bulk_out_endpointAddress,
1020 USB_DIR_OUT, port,
1021 portdata->out_buffer[j],
1022 OUT_BUFLEN, option_outdat_callback);
Matthias Urlichs14f76cc2006-06-02 11:48:56 +02001023 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001024 }
1025}
1026
Chris Collins5f760042008-04-10 10:15:53 +02001027
1028/** send RTS/DTR state to the port.
1029 *
1030 * This is exactly the same as SET_CONTROL_LINE_STATE from the PSTN
1031 * CDC.
1032*/
Alan Cox95da3102008-07-22 11:09:07 +01001033static int option_send_setup(struct tty_struct *tty,
1034 struct usb_serial_port *port)
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001035{
1036 struct usb_serial *serial = port->serial;
1037 struct option_port_private *portdata;
Chris Collins5f760042008-04-10 10:15:53 +02001038 int ifNum = serial->interface->cur_altsetting->desc.bInterfaceNumber;
Harvey Harrison441b62c2008-03-03 16:08:34 -08001039 dbg("%s", __func__);
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001040
1041 portdata = usb_get_serial_port_data(port);
1042
Alan Cox95da3102008-07-22 11:09:07 +01001043 if (tty) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001044 int val = 0;
1045 if (portdata->dtr_state)
1046 val |= 0x01;
1047 if (portdata->rts_state)
1048 val |= 0x02;
1049
Andrew Morton7bb75ae2005-07-27 01:08:30 -07001050 return usb_control_msg(serial->dev,
Alan Cox19e58fa2008-07-22 11:15:45 +01001051 usb_rcvctrlpipe(serial->dev, 0),
1052 0x22, 0x21, val, ifNum, NULL, 0, USB_CTRL_SET_TIMEOUT);
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001053 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001054 return 0;
1055}
1056
Andrew Morton7bb75ae2005-07-27 01:08:30 -07001057static int option_startup(struct usb_serial *serial)
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001058{
Oliver Neukum2129c4e2008-02-01 13:58:52 +01001059 int i, j, err;
Matthias Urlichsba460e42005-07-14 00:33:47 -07001060 struct usb_serial_port *port;
1061 struct option_port_private *portdata;
Oliver Neukum2129c4e2008-02-01 13:58:52 +01001062 u8 *buffer;
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001063
Harvey Harrison441b62c2008-03-03 16:08:34 -08001064 dbg("%s", __func__);
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001065
1066 /* Now setup per port private data */
1067 for (i = 0; i < serial->num_ports; i++) {
1068 port = serial->port[i];
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +01001069 portdata = kzalloc(sizeof(*portdata), GFP_KERNEL);
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001070 if (!portdata) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -07001071 dbg("%s: kmalloc for option_port_private (%d) failed!.",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001072 __func__, i);
Alan Cox19e58fa2008-07-22 11:15:45 +01001073 return 1;
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001074 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001075
Oliver Neukum2129c4e2008-02-01 13:58:52 +01001076 for (j = 0; j < N_IN_URB; j++) {
1077 buffer = (u8 *)__get_free_page(GFP_KERNEL);
1078 if (!buffer)
1079 goto bail_out_error;
1080 portdata->in_buffer[j] = buffer;
1081 }
1082
1083 for (j = 0; j < N_OUT_URB; j++) {
1084 buffer = kmalloc(OUT_BUFLEN, GFP_KERNEL);
1085 if (!buffer)
1086 goto bail_out_error2;
1087 portdata->out_buffer[j] = buffer;
1088 }
1089
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001090 usb_set_serial_port_data(port, portdata);
1091
Alan Cox19e58fa2008-07-22 11:15:45 +01001092 if (!port->interrupt_in_urb)
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001093 continue;
1094 err = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
1095 if (err)
Andrew Morton7bb75ae2005-07-27 01:08:30 -07001096 dbg("%s: submit irq_in urb failed %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001097 __func__, err);
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001098 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001099 option_setup_urbs(serial);
Alan Cox19e58fa2008-07-22 11:15:45 +01001100 return 0;
Oliver Neukum2129c4e2008-02-01 13:58:52 +01001101
1102bail_out_error2:
1103 for (j = 0; j < N_OUT_URB; j++)
1104 kfree(portdata->out_buffer[j]);
1105bail_out_error:
1106 for (j = 0; j < N_IN_URB; j++)
1107 if (portdata->in_buffer[j])
1108 free_page((unsigned long)portdata->in_buffer[j]);
1109 kfree(portdata);
1110 return 1;
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001111}
1112
Oliver Neukum4901b2c2009-01-27 17:21:40 +01001113static void stop_read_write_urbs(struct usb_serial *serial)
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001114{
Matthias Urlichsba460e42005-07-14 00:33:47 -07001115 int i, j;
1116 struct usb_serial_port *port;
1117 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001118
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001119 /* Stop reading/writing urbs */
1120 for (i = 0; i < serial->num_ports; ++i) {
1121 port = serial->port[i];
1122 portdata = usb_get_serial_port_data(port);
1123 for (j = 0; j < N_IN_URB; j++)
Oliver Neukum7d28e742007-03-20 13:41:21 +01001124 usb_kill_urb(portdata->in_urbs[j]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001125 for (j = 0; j < N_OUT_URB; j++)
Oliver Neukum7d28e742007-03-20 13:41:21 +01001126 usb_kill_urb(portdata->out_urbs[j]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001127 }
Oliver Neukum4901b2c2009-01-27 17:21:40 +01001128}
1129
1130static void option_shutdown(struct usb_serial *serial)
1131{
1132 int i, j;
1133 struct usb_serial_port *port;
1134 struct option_port_private *portdata;
1135
1136 dbg("%s", __func__);
1137
1138 stop_read_write_urbs(serial);
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001139
1140 /* Now free them */
1141 for (i = 0; i < serial->num_ports; ++i) {
1142 port = serial->port[i];
1143 portdata = usb_get_serial_port_data(port);
1144
1145 for (j = 0; j < N_IN_URB; j++) {
1146 if (portdata->in_urbs[j]) {
1147 usb_free_urb(portdata->in_urbs[j]);
Alan Cox19e58fa2008-07-22 11:15:45 +01001148 free_page((unsigned long)
1149 portdata->in_buffer[j]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001150 portdata->in_urbs[j] = NULL;
1151 }
1152 }
1153 for (j = 0; j < N_OUT_URB; j++) {
1154 if (portdata->out_urbs[j]) {
1155 usb_free_urb(portdata->out_urbs[j]);
Oliver Neukum2129c4e2008-02-01 13:58:52 +01001156 kfree(portdata->out_buffer[j]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001157 portdata->out_urbs[j] = NULL;
1158 }
1159 }
1160 }
1161
1162 /* Now free per port private data */
1163 for (i = 0; i < serial->num_ports; i++) {
1164 port = serial->port[i];
1165 kfree(usb_get_serial_port_data(port));
1166 }
1167}
1168
Oliver Neukum4901b2c2009-01-27 17:21:40 +01001169static int option_suspend(struct usb_serial *serial, pm_message_t message)
1170{
1171 dbg("%s entered", __func__);
1172 stop_read_write_urbs(serial);
1173
1174 return 0;
1175}
1176
1177static int option_resume(struct usb_serial *serial)
1178{
1179 int err, i, j;
1180 struct usb_serial_port *port;
1181 struct urb *urb;
1182 struct option_port_private *portdata;
1183
1184 dbg("%s entered", __func__);
1185 /* get the interrupt URBs resubmitted unconditionally */
1186 for (i = 0; i < serial->num_ports; i++) {
1187 port = serial->port[i];
1188 if (!port->interrupt_in_urb) {
1189 dbg("%s: No interrupt URB for port %d\n", __func__, i);
1190 continue;
1191 }
1192 port->interrupt_in_urb->dev = serial->dev;
1193 err = usb_submit_urb(port->interrupt_in_urb, GFP_NOIO);
1194 dbg("Submitted interrupt URB for port %d (result %d)", i, err);
1195 if (err < 0) {
1196 err("%s: Error %d for interrupt URB of port%d",
1197 __func__, err, i);
1198 return err;
1199 }
1200 }
1201
1202 for (i = 0; i < serial->num_ports; i++) {
1203 /* walk all ports */
1204 port = serial->port[i];
1205 portdata = usb_get_serial_port_data(port);
1206 mutex_lock(&port->mutex);
1207
1208 /* skip closed ports */
1209 if (!port->port.count) {
1210 mutex_unlock(&port->mutex);
1211 continue;
1212 }
1213
1214 for (j = 0; j < N_IN_URB; j++) {
1215 urb = portdata->in_urbs[j];
1216 err = usb_submit_urb(urb, GFP_NOIO);
1217 if (err < 0) {
1218 mutex_unlock(&port->mutex);
1219 err("%s: Error %d for bulk URB %d",
1220 __func__, err, i);
1221 return err;
1222 }
1223 }
1224 mutex_unlock(&port->mutex);
1225 }
1226 return 0;
1227}
1228
Matthias Urlichs58cfe912005-05-23 17:00:48 -07001229MODULE_AUTHOR(DRIVER_AUTHOR);
1230MODULE_DESCRIPTION(DRIVER_DESC);
1231MODULE_VERSION(DRIVER_VERSION);
1232MODULE_LICENSE("GPL");
1233
1234module_param(debug, bool, S_IRUGO | S_IWUSR);
1235MODULE_PARM_DESC(debug, "Debug messages");