blob: 4350990abf1467a57f45ab5eac9917486c5890bb [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 Cox95da3102008-07-22 11:09:07 +010046static int option_open(struct tty_struct *tty, struct usb_serial_port *port, struct file *filp);
47static void option_close(struct tty_struct *tty, struct usb_serial_port *port, struct file *filp);
Andrew Morton7bb75ae2005-07-27 01:08:30 -070048static int option_startup(struct usb_serial *serial);
49static void option_shutdown(struct usb_serial *serial);
Alan Cox95da3102008-07-22 11:09:07 +010050static int option_write_room(struct tty_struct *tty);
Matthias Urlichs58cfe912005-05-23 17:00:48 -070051
David Howells7d12e782006-10-05 14:55:46 +010052static void option_instat_callback(struct urb *urb);
Matthias Urlichs58cfe912005-05-23 17:00:48 -070053
Alan Cox95da3102008-07-22 11:09:07 +010054static int option_write(struct tty_struct *tty, struct usb_serial_port *port,
Andrew Morton7bb75ae2005-07-27 01:08:30 -070055 const unsigned char *buf, int count);
Alan Cox95da3102008-07-22 11:09:07 +010056static int option_chars_in_buffer(struct tty_struct *tty);
57static void option_set_termios(struct tty_struct *tty,
58 struct usb_serial_port *port, struct ktermios *old);
59static int option_tiocmget(struct tty_struct *tty, struct file *file);
60static int option_tiocmset(struct tty_struct *tty, struct file *file,
Andrew Morton7bb75ae2005-07-27 01:08:30 -070061 unsigned int set, unsigned int clear);
Alan Cox95da3102008-07-22 11:09:07 +010062static int option_send_setup(struct tty_struct *tty, struct usb_serial_port *port);
Matthias Urlichs58cfe912005-05-23 17:00:48 -070063
64/* Vendor and product IDs */
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -080065#define OPTION_VENDOR_ID 0x0AF0
66#define OPTION_PRODUCT_COLT 0x5000
67#define OPTION_PRODUCT_RICOLA 0x6000
68#define OPTION_PRODUCT_RICOLA_LIGHT 0x6100
69#define OPTION_PRODUCT_RICOLA_QUAD 0x6200
70#define OPTION_PRODUCT_RICOLA_QUAD_LIGHT 0x6300
71#define OPTION_PRODUCT_RICOLA_NDIS 0x6050
72#define OPTION_PRODUCT_RICOLA_NDIS_LIGHT 0x6150
73#define OPTION_PRODUCT_RICOLA_NDIS_QUAD 0x6250
74#define OPTION_PRODUCT_RICOLA_NDIS_QUAD_LIGHT 0x6350
75#define OPTION_PRODUCT_COBRA 0x6500
76#define OPTION_PRODUCT_COBRA_BUS 0x6501
77#define OPTION_PRODUCT_VIPER 0x6600
78#define OPTION_PRODUCT_VIPER_BUS 0x6601
79#define OPTION_PRODUCT_GT_MAX_READY 0x6701
80#define OPTION_PRODUCT_GT_MAX 0x6711
81#define OPTION_PRODUCT_FUJI_MODEM_LIGHT 0x6721
82#define OPTION_PRODUCT_FUJI_MODEM_GT 0x6741
83#define OPTION_PRODUCT_FUJI_MODEM_EX 0x6761
84#define OPTION_PRODUCT_FUJI_NETWORK_LIGHT 0x6731
85#define OPTION_PRODUCT_FUJI_NETWORK_GT 0x6751
86#define OPTION_PRODUCT_FUJI_NETWORK_EX 0x6771
87#define OPTION_PRODUCT_KOI_MODEM 0x6800
88#define OPTION_PRODUCT_KOI_NETWORK 0x6811
89#define OPTION_PRODUCT_SCORPION_MODEM 0x6901
90#define OPTION_PRODUCT_SCORPION_NETWORK 0x6911
91#define OPTION_PRODUCT_ETNA_MODEM 0x7001
92#define OPTION_PRODUCT_ETNA_NETWORK 0x7011
93#define OPTION_PRODUCT_ETNA_MODEM_LITE 0x7021
94#define OPTION_PRODUCT_ETNA_MODEM_GT 0x7041
95#define OPTION_PRODUCT_ETNA_MODEM_EX 0x7061
96#define OPTION_PRODUCT_ETNA_NETWORK_LITE 0x7031
97#define OPTION_PRODUCT_ETNA_NETWORK_GT 0x7051
98#define OPTION_PRODUCT_ETNA_NETWORK_EX 0x7071
99#define OPTION_PRODUCT_ETNA_KOI_MODEM 0x7100
100#define OPTION_PRODUCT_ETNA_KOI_NETWORK 0x7111
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700101
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800102#define HUAWEI_VENDOR_ID 0x12D1
103#define HUAWEI_PRODUCT_E600 0x1001
104#define HUAWEI_PRODUCT_E220 0x1003
Jaime Velasco Juana3209a02007-09-07 19:06:39 +0100105#define HUAWEI_PRODUCT_E220BIS 0x1004
fangxiaozhiaad8a272008-04-10 14:51:06 +0800106#define HUAWEI_PRODUCT_E1401 0x1401
107#define HUAWEI_PRODUCT_E1403 0x1403
108#define HUAWEI_PRODUCT_E1405 0x1405
109#define HUAWEI_PRODUCT_E1406 0x1406
110#define HUAWEI_PRODUCT_E1408 0x1408
111#define HUAWEI_PRODUCT_E1409 0x1409
112#define HUAWEI_PRODUCT_E1410 0x1410
113#define HUAWEI_PRODUCT_E1411 0x1411
114#define HUAWEI_PRODUCT_E1412 0x1412
115#define HUAWEI_PRODUCT_E1413 0x1413
116#define HUAWEI_PRODUCT_E1414 0x1414
117#define HUAWEI_PRODUCT_E1415 0x1415
118#define HUAWEI_PRODUCT_E1416 0x1416
119#define HUAWEI_PRODUCT_E1417 0x1417
120#define HUAWEI_PRODUCT_E1418 0x1418
121#define HUAWEI_PRODUCT_E1419 0x1419
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800122
123#define NOVATELWIRELESS_VENDOR_ID 0x1410
Dirk DeSchepper72ab6412008-03-05 08:26:18 +0000124
125/* MERLIN EVDO PRODUCTS */
126#define NOVATELWIRELESS_PRODUCT_V640 0x1100
127#define NOVATELWIRELESS_PRODUCT_V620 0x1110
128#define NOVATELWIRELESS_PRODUCT_V740 0x1120
129#define NOVATELWIRELESS_PRODUCT_V720 0x1130
130
131/* MERLIN HSDPA/HSPA PRODUCTS */
132#define NOVATELWIRELESS_PRODUCT_U730 0x1400
133#define NOVATELWIRELESS_PRODUCT_U740 0x1410
134#define NOVATELWIRELESS_PRODUCT_U870 0x1420
135#define NOVATELWIRELESS_PRODUCT_XU870 0x1430
136#define NOVATELWIRELESS_PRODUCT_X950D 0x1450
137
138/* EXPEDITE PRODUCTS */
139#define NOVATELWIRELESS_PRODUCT_EV620 0x2100
140#define NOVATELWIRELESS_PRODUCT_ES720 0x2110
141#define NOVATELWIRELESS_PRODUCT_E725 0x2120
Matthias Urlichsa1d9bc12008-04-10 10:13:32 +0200142#define NOVATELWIRELESS_PRODUCT_ES620 0x2130
Dirk DeSchepper72ab6412008-03-05 08:26:18 +0000143#define NOVATELWIRELESS_PRODUCT_EU730 0x2400
144#define NOVATELWIRELESS_PRODUCT_EU740 0x2410
145#define NOVATELWIRELESS_PRODUCT_EU870D 0x2420
146
147/* OVATION PRODUCTS */
148#define NOVATELWIRELESS_PRODUCT_MC727 0x4100
149#define NOVATELWIRELESS_PRODUCT_MC950D 0x4400
150
151/* FUTURE NOVATEL PRODUCTS */
152#define NOVATELWIRELESS_PRODUCT_EVDO_1 0x6000
153#define NOVATELWIRELESS_PRODUCT_HSPA_1 0x7000
154#define NOVATELWIRELESS_PRODUCT_EMBEDDED_1 0x8000
155#define NOVATELWIRELESS_PRODUCT_GLOBAL_1 0x9000
156#define NOVATELWIRELESS_PRODUCT_EVDO_2 0x6001
157#define NOVATELWIRELESS_PRODUCT_HSPA_2 0x7001
158#define NOVATELWIRELESS_PRODUCT_EMBEDDED_2 0x8001
159#define NOVATELWIRELESS_PRODUCT_GLOBAL_2 0x9001
160
tang kai32147be2008-04-14 10:06:35 +0800161/* AMOI PRODUCTS */
162#define AMOI_VENDOR_ID 0x1614
163#define AMOI_PRODUCT_H01 0x0800
164#define AMOI_PRODUCT_H01A 0x7002
165#define AMOI_PRODUCT_H02 0x0802
166
Faidon Liambotis96443212007-08-07 05:46:05 +0300167#define DELL_VENDOR_ID 0x413C
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800168
Dan Williams564d61d2008-02-19 13:15:30 -0500169#define KYOCERA_VENDOR_ID 0x0c88
Greg Kroah-Hartman640c1bc2008-06-19 11:21:16 -0700170#define KYOCERA_PRODUCT_KPC650 0x17da
Dan Williams564d61d2008-02-19 13:15:30 -0500171#define KYOCERA_PRODUCT_KPC680 0x180a
172
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800173#define ANYDATA_VENDOR_ID 0x16d5
Alexander Gattin46269db2007-06-20 00:48:10 +0300174#define ANYDATA_PRODUCT_ADU_E100A 0x6501
175#define ANYDATA_PRODUCT_ADU_500A 0x6502
Matthias Urlichsba460e42005-07-14 00:33:47 -0700176
Daniel Kozák85fb62a2008-03-04 18:54:53 +0100177#define AXESSTEL_VENDOR_ID 0x1726
178#define AXESSTEL_PRODUCT_MV110H 0x1000
179
andreoli@samba.ing.unimo.it4c7d3132008-05-01 19:26:16 +0200180#define ONDA_VENDOR_ID 0x19d2
Arnaldo Carvalho de Melo1b2d23d2008-05-16 15:41:40 -0300181#define ONDA_PRODUCT_MSA501HS 0x0001
andreoli@samba.ing.unimo.it4c7d3132008-05-01 19:26:16 +0200182#define ONDA_PRODUCT_ET502HS 0x0002
183
Leon Leong3f6e5842007-04-26 00:38:02 -0700184#define BANDRICH_VENDOR_ID 0x1A8D
185#define BANDRICH_PRODUCT_C100_1 0x1002
186#define BANDRICH_PRODUCT_C100_2 0x1003
187
Matthias Urlichsa1d9bc12008-04-10 10:13:32 +0200188#define AMOI_VENDOR_ID 0x1614
189#define AMOI_PRODUCT_9508 0x0800
190
Kevin Lloydd726fb72008-02-14 13:35:16 -0800191#define QUALCOMM_VENDOR_ID 0x05C6
192
James Cameron80d97092008-04-09 18:59:13 +1000193#define MAXON_VENDOR_ID 0x16d8
194
Greg Kroah-Hartmanee53b0c2008-05-15 10:07:44 -0700195#define TELIT_VENDOR_ID 0x1bc7
196#define TELIT_PRODUCT_UC864E 0x1003
197
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700198static struct usb_device_id option_ids[] = {
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800199 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COLT) },
200 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA) },
201 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_LIGHT) },
202 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_QUAD) },
203 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_QUAD_LIGHT) },
204 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS) },
205 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_LIGHT) },
206 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_QUAD) },
207 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_QUAD_LIGHT) },
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200208 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA) },
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800209 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA_BUS) },
210 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_VIPER) },
211 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_VIPER_BUS) },
212 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GT_MAX_READY) },
213 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GT_MAX) },
214 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_LIGHT) },
215 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_GT) },
216 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_EX) },
217 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_NETWORK_LIGHT) },
218 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_NETWORK_GT) },
219 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_NETWORK_EX) },
220 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_KOI_MODEM) },
221 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_KOI_NETWORK) },
222 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_SCORPION_MODEM) },
223 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_SCORPION_NETWORK) },
224 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM) },
225 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_NETWORK) },
226 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_LITE) },
227 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_GT) },
228 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_EX) },
229 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_NETWORK_LITE) },
230 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_NETWORK_GT) },
231 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_NETWORK_EX) },
232 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_KOI_MODEM) },
233 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_KOI_NETWORK) },
Michael Karchera7f38722008-05-28 23:58:18 +0200234 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E600, 0xff, 0xff, 0xff) },
Jaime Velasco Juanb5ce18a2007-11-30 16:30:11 +0000235 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220, 0xff, 0xff, 0xff) },
236 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220BIS, 0xff, 0xff, 0xff) },
Michael Karchera7f38722008-05-28 23:58:18 +0200237 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1401, 0xff, 0xff, 0xff) },
238 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1403, 0xff, 0xff, 0xff) },
239 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1405, 0xff, 0xff, 0xff) },
240 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1406, 0xff, 0xff, 0xff) },
241 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1408, 0xff, 0xff, 0xff) },
242 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1409, 0xff, 0xff, 0xff) },
243 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1410, 0xff, 0xff, 0xff) },
244 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1411, 0xff, 0xff, 0xff) },
245 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1412, 0xff, 0xff, 0xff) },
246 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1413, 0xff, 0xff, 0xff) },
247 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1414, 0xff, 0xff, 0xff) },
248 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1415, 0xff, 0xff, 0xff) },
249 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1416, 0xff, 0xff, 0xff) },
250 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1417, 0xff, 0xff, 0xff) },
251 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1418, 0xff, 0xff, 0xff) },
252 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1419, 0xff, 0xff, 0xff) },
Matthias Urlichsa1d9bc12008-04-10 10:13:32 +0200253 { USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_9508) },
Dirk DeSchepper72ab6412008-03-05 08:26:18 +0000254 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V640) }, /* Novatel Merlin V640/XV620 */
255 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V620) }, /* Novatel Merlin V620/S620 */
256 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V740) }, /* Novatel Merlin EX720/V740/X720 */
257 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V720) }, /* Novatel Merlin V720/S720/PC720 */
258 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_U730) }, /* Novatel U730/U740 (VF version) */
259 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_U740) }, /* Novatel U740 */
260 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_U870) }, /* Novatel U870 */
261 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_XU870) }, /* Novatel Merlin XU870 HSDPA/3G */
262 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_X950D) }, /* Novatel X950D */
263 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EV620) }, /* Novatel EV620/ES620 CDMA/EV-DO */
264 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_ES720) }, /* Novatel ES620/ES720/U720/USB720 */
265 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_E725) }, /* Novatel E725/E726 */
Matthias Urlichsa1d9bc12008-04-10 10:13:32 +0200266 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_ES620) }, /* Novatel Merlin ES620 SM Bus */
Dirk DeSchepper72ab6412008-03-05 08:26:18 +0000267 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EU730) }, /* Novatel EU730 and Vodafone EU740 */
268 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EU740) }, /* Novatel non-Vodafone EU740 */
269 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EU870D) }, /* Novatel EU850D/EU860D/EU870D */
270 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_MC950D) }, /* Novatel MC930D/MC950D */
271 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_MC727) }, /* Novatel MC727/U727/USB727 */
Dirk DeSchepper72ab6412008-03-05 08:26:18 +0000272 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EVDO_1) }, /* Novatel EVDO product */
273 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_HSPA_1) }, /* Novatel HSPA product */
274 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EMBEDDED_1) }, /* Novatel Embedded product */
275 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_GLOBAL_1) }, /* Novatel Global product */
276 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EVDO_2) }, /* Novatel EVDO product */
277 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_HSPA_2) }, /* Novatel HSPA product */
278 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EMBEDDED_2) }, /* Novatel Embedded product */
279 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_GLOBAL_2) }, /* Novatel Global product */
280
tang kai32147be2008-04-14 10:06:35 +0800281 { USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_H01) },
282 { USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_H01A) },
283 { USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_H02) },
284
Faidon Liambotis96443212007-08-07 05:46:05 +0300285 { USB_DEVICE(DELL_VENDOR_ID, 0x8114) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO Mini-Card == Novatel Expedite EV620 CDMA/EV-DO */
286 { USB_DEVICE(DELL_VENDOR_ID, 0x8115) }, /* Dell Wireless 5500 Mobile Broadband HSDPA Mini-Card == Novatel Expedite EU740 HSDPA/3G */
287 { USB_DEVICE(DELL_VENDOR_ID, 0x8116) }, /* Dell Wireless 5505 Mobile Broadband HSDPA Mini-Card == Novatel Expedite EU740 HSDPA/3G */
288 { USB_DEVICE(DELL_VENDOR_ID, 0x8117) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO ExpressCard == Novatel Merlin XV620 CDMA/EV-DO */
289 { USB_DEVICE(DELL_VENDOR_ID, 0x8118) }, /* Dell Wireless 5510 Mobile Broadband HSDPA ExpressCard == Novatel Merlin XU870 HSDPA/3G */
290 { USB_DEVICE(DELL_VENDOR_ID, 0x8128) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO Mini-Card == Novatel Expedite E720 CDMA/EV-DO */
Andy Shevchenko59036e92008-02-04 23:57:49 -0800291 { USB_DEVICE(DELL_VENDOR_ID, 0x8129) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO Mini-Card == Novatel Expedite ET620 CDMA/EV-DO */
Stefan Baderaa59e052008-02-05 15:25:35 -0500292 { USB_DEVICE(DELL_VENDOR_ID, 0x8133) }, /* Dell Wireless 5720 == Novatel EV620 CDMA/EV-DO */
293 { USB_DEVICE(DELL_VENDOR_ID, 0x8136) }, /* Dell Wireless HSDPA 5520 == Novatel Expedite EU860D */
Greg Kroah-Hartman2c4cd1f2007-08-30 19:02:10 +0200294 { USB_DEVICE(DELL_VENDOR_ID, 0x8137) }, /* Dell Wireless HSDPA 5520 */
Dan Williams96cb15c2008-05-13 12:53:45 -0400295 { USB_DEVICE(DELL_VENDOR_ID, 0x8138) }, /* Dell Wireless 5520 Voda I Mobile Broadband (3G HSDPA) Minicard */
Alexander Gattin46269db2007-06-20 00:48:10 +0300296 { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_E100A) },
297 { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_500A) },
Daniel Kozák85fb62a2008-03-04 18:54:53 +0100298 { USB_DEVICE(AXESSTEL_VENDOR_ID, AXESSTEL_PRODUCT_MV110H) },
Arnaldo Carvalho de Melo1b2d23d2008-05-16 15:41:40 -0300299 { USB_DEVICE(ONDA_VENDOR_ID, ONDA_PRODUCT_MSA501HS) },
andreoli@samba.ing.unimo.it4c7d3132008-05-01 19:26:16 +0200300 { USB_DEVICE(ONDA_VENDOR_ID, ONDA_PRODUCT_ET502HS) },
Leon Leong3f6e5842007-04-26 00:38:02 -0700301 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_C100_1) },
302 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_C100_2) },
Greg Kroah-Hartman640c1bc2008-06-19 11:21:16 -0700303 { USB_DEVICE(KYOCERA_VENDOR_ID, KYOCERA_PRODUCT_KPC650) },
Dan Williams564d61d2008-02-19 13:15:30 -0500304 { USB_DEVICE(KYOCERA_VENDOR_ID, KYOCERA_PRODUCT_KPC680) },
Greg Kroah-Hartmand2e2aff2008-07-01 13:11:56 +0530305 { USB_DEVICE(QUALCOMM_VENDOR_ID, 0x6000)}, /* ZTE AC8700 */
Kevin Lloydd726fb72008-02-14 13:35:16 -0800306 { USB_DEVICE(QUALCOMM_VENDOR_ID, 0x6613)}, /* Onda H600/ZTE MF330 */
James Cameron80d97092008-04-09 18:59:13 +1000307 { USB_DEVICE(MAXON_VENDOR_ID, 0x6280) }, /* BP3-USB & BP3-EXT HSDPA */
Greg Kroah-Hartmanee53b0c2008-05-15 10:07:44 -0700308 { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_UC864E) },
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200309 { } /* Terminating entry */
310};
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700311MODULE_DEVICE_TABLE(usb, option_ids);
312
313static struct usb_driver option_driver = {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700314 .name = "option",
315 .probe = usb_serial_probe,
316 .disconnect = usb_serial_disconnect,
317 .id_table = option_ids,
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800318 .no_dynamic_id = 1,
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700319};
320
Uwe Zeisbergerc30fe7f2006-03-24 18:23:14 +0100321/* The card has three separate interfaces, which the serial driver
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700322 * recognizes separately, thus num_port=1.
323 */
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200324
325static struct usb_serial_driver option_1port_device = {
326 .driver = {
327 .owner = THIS_MODULE,
Matthias Urlichs02b2ac52006-08-02 16:41:41 -0700328 .name = "option1",
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200329 },
330 .description = "GSM modem (1-port)",
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100331 .usb_driver = &option_driver,
Greg Kroah-Hartmanb656b2c2007-02-21 12:53:17 -0800332 .id_table = option_ids,
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200333 .num_ports = 1,
Matthias Urlichsba460e42005-07-14 00:33:47 -0700334 .open = option_open,
335 .close = option_close,
336 .write = option_write,
337 .write_room = option_write_room,
338 .chars_in_buffer = option_chars_in_buffer,
Matthias Urlichsba460e42005-07-14 00:33:47 -0700339 .set_termios = option_set_termios,
Matthias Urlichsba460e42005-07-14 00:33:47 -0700340 .tiocmget = option_tiocmget,
341 .tiocmset = option_tiocmset,
342 .attach = option_startup,
343 .shutdown = option_shutdown,
344 .read_int_callback = option_instat_callback,
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700345};
346
Matthias Urlichsba460e42005-07-14 00:33:47 -0700347#ifdef CONFIG_USB_DEBUG
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700348static int debug;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700349#else
350#define debug 0
351#endif
352
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700353/* per port private data */
354
Matthias Urlichsba460e42005-07-14 00:33:47 -0700355#define N_IN_URB 4
356#define N_OUT_URB 1
Matthias Urlichsb27c73d2005-09-22 00:49:33 -0700357#define IN_BUFLEN 4096
Matthias Urlichsba460e42005-07-14 00:33:47 -0700358#define OUT_BUFLEN 128
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700359
360struct option_port_private {
361 /* Input endpoints and buffer for this port */
Matthias Urlichsba460e42005-07-14 00:33:47 -0700362 struct urb *in_urbs[N_IN_URB];
Oliver Neukum2129c4e2008-02-01 13:58:52 +0100363 u8 *in_buffer[N_IN_URB];
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700364 /* Output endpoints and buffer for this port */
Matthias Urlichsba460e42005-07-14 00:33:47 -0700365 struct urb *out_urbs[N_OUT_URB];
Oliver Neukum2129c4e2008-02-01 13:58:52 +0100366 u8 *out_buffer[N_OUT_URB];
Alan Stern59c2afa2007-06-05 16:46:26 -0700367 unsigned long out_busy; /* Bit vector of URBs in use */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700368
369 /* Settings for the port */
Matthias Urlichsba460e42005-07-14 00:33:47 -0700370 int rts_state; /* Handshaking pins (outputs) */
371 int dtr_state;
372 int cts_state; /* Handshaking pins (inputs) */
373 int dsr_state;
374 int dcd_state;
375 int ri_state;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700376
Matthias Urlichsba460e42005-07-14 00:33:47 -0700377 unsigned long tx_start_time[N_OUT_URB];
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700378};
379
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700380/* Functions used by new usb-serial code. */
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700381static int __init option_init(void)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700382{
383 int retval;
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200384 retval = usb_serial_register(&option_1port_device);
385 if (retval)
386 goto failed_1port_device_register;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700387 retval = usb_register(&option_driver);
388 if (retval)
389 goto failed_driver_register;
390
391 info(DRIVER_DESC ": " DRIVER_VERSION);
392
393 return 0;
394
395failed_driver_register:
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200396 usb_serial_deregister (&option_1port_device);
397failed_1port_device_register:
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700398 return retval;
399}
400
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700401static void __exit option_exit(void)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700402{
403 usb_deregister (&option_driver);
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200404 usb_serial_deregister (&option_1port_device);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700405}
406
407module_init(option_init);
408module_exit(option_exit);
409
Alan Cox95da3102008-07-22 11:09:07 +0100410static void option_set_termios(struct tty_struct *tty,
411 struct usb_serial_port *port, struct ktermios *old_termios)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700412{
Harvey Harrison441b62c2008-03-03 16:08:34 -0800413 dbg("%s", __func__);
Alan Coxe650d8a2007-10-18 01:24:21 -0700414 /* Doesn't support option setting */
Alan Cox95da3102008-07-22 11:09:07 +0100415 tty_termios_copy_hw(tty->termios, old_termios);
416 option_send_setup(tty, port);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700417}
418
Alan Cox95da3102008-07-22 11:09:07 +0100419static int option_tiocmget(struct tty_struct *tty, struct file *file)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700420{
Alan Cox95da3102008-07-22 11:09:07 +0100421 struct usb_serial_port *port = tty->driver_data;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700422 unsigned int value;
423 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700424
425 portdata = usb_get_serial_port_data(port);
426
427 value = ((portdata->rts_state) ? TIOCM_RTS : 0) |
428 ((portdata->dtr_state) ? TIOCM_DTR : 0) |
429 ((portdata->cts_state) ? TIOCM_CTS : 0) |
430 ((portdata->dsr_state) ? TIOCM_DSR : 0) |
431 ((portdata->dcd_state) ? TIOCM_CAR : 0) |
432 ((portdata->ri_state) ? TIOCM_RNG : 0);
433
434 return value;
435}
436
Alan Cox95da3102008-07-22 11:09:07 +0100437static int option_tiocmset(struct tty_struct *tty, struct file *file,
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700438 unsigned int set, unsigned int clear)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700439{
Alan Cox95da3102008-07-22 11:09:07 +0100440 struct usb_serial_port *port = tty->driver_data;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700441 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700442
443 portdata = usb_get_serial_port_data(port);
444
Alan Coxe2984492008-02-20 20:51:45 +0000445 /* FIXME: what locks portdata fields ? */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700446 if (set & TIOCM_RTS)
447 portdata->rts_state = 1;
448 if (set & TIOCM_DTR)
449 portdata->dtr_state = 1;
450
451 if (clear & TIOCM_RTS)
452 portdata->rts_state = 0;
453 if (clear & TIOCM_DTR)
454 portdata->dtr_state = 0;
Alan Cox95da3102008-07-22 11:09:07 +0100455 return option_send_setup(tty, port);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700456}
457
458/* Write */
Alan Cox95da3102008-07-22 11:09:07 +0100459static int option_write(struct tty_struct *tty, struct usb_serial_port *port,
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700460 const unsigned char *buf, int count)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700461{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700462 struct option_port_private *portdata;
463 int i;
464 int left, todo;
465 struct urb *this_urb = NULL; /* spurious */
466 int err;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700467
468 portdata = usb_get_serial_port_data(port);
469
Harvey Harrison441b62c2008-03-03 16:08:34 -0800470 dbg("%s: write (%d chars)", __func__, count);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700471
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700472 i = 0;
473 left = count;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700474 for (i=0; left > 0 && i < N_OUT_URB; i++) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700475 todo = left;
476 if (todo > OUT_BUFLEN)
477 todo = OUT_BUFLEN;
478
Matthias Urlichsba460e42005-07-14 00:33:47 -0700479 this_urb = portdata->out_urbs[i];
Alan Stern59c2afa2007-06-05 16:46:26 -0700480 if (test_and_set_bit(i, &portdata->out_busy)) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700481 if (time_before(jiffies,
482 portdata->tx_start_time[i] + 10 * HZ))
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700483 continue;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700484 usb_unlink_urb(this_urb);
Matthias Urlichsba460e42005-07-14 00:33:47 -0700485 continue;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700486 }
Matthias Urlichsba460e42005-07-14 00:33:47 -0700487 if (this_urb->status != 0)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700488 dbg("usb_write %p failed (err=%d)",
489 this_urb, this_urb->status);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700490
Harvey Harrison441b62c2008-03-03 16:08:34 -0800491 dbg("%s: endpoint %d buf %d", __func__,
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700492 usb_pipeendpoint(this_urb->pipe), i);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700493
Matthias Urlichsba460e42005-07-14 00:33:47 -0700494 /* send the data */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700495 memcpy (this_urb->transfer_buffer, buf, todo);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700496 this_urb->transfer_buffer_length = todo;
497
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700498 this_urb->dev = port->serial->dev;
499 err = usb_submit_urb(this_urb, GFP_ATOMIC);
500 if (err) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700501 dbg("usb_submit_urb %p (write bulk) failed "
502 "(%d, has %d)", this_urb,
503 err, this_urb->status);
Alan Stern59c2afa2007-06-05 16:46:26 -0700504 clear_bit(i, &portdata->out_busy);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700505 continue;
506 }
507 portdata->tx_start_time[i] = jiffies;
508 buf += todo;
509 left -= todo;
510 }
511
512 count -= left;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800513 dbg("%s: wrote (did %d)", __func__, count);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700514 return count;
515}
516
David Howells7d12e782006-10-05 14:55:46 +0100517static void option_indat_callback(struct urb *urb)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700518{
Alan Cox33f0f882006-01-09 20:54:13 -0800519 int err;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700520 int endpoint;
521 struct usb_serial_port *port;
522 struct tty_struct *tty;
523 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700524 int status = urb->status;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700525
Harvey Harrison441b62c2008-03-03 16:08:34 -0800526 dbg("%s: %p", __func__, urb);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700527
528 endpoint = usb_pipeendpoint(urb->pipe);
Ming Leicdc97792008-02-24 18:41:47 +0800529 port = urb->context;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700530
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700531 if (status) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700532 dbg("%s: nonzero status: %d on endpoint %02x.",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800533 __func__, status, endpoint);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700534 } else {
Alan Cox95da3102008-07-22 11:09:07 +0100535 tty = port->port.tty;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700536 if (urb->actual_length) {
Alan Cox33f0f882006-01-09 20:54:13 -0800537 tty_buffer_request_room(tty, urb->actual_length);
538 tty_insert_flip_string(tty, data, urb->actual_length);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700539 tty_flip_buffer_push(tty);
540 } else {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800541 dbg("%s: empty read urb received", __func__);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700542 }
543
544 /* Resubmit urb so we continue receiving */
Alan Cox95da3102008-07-22 11:09:07 +0100545 if (port->port.count && status != -ESHUTDOWN) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700546 err = usb_submit_urb(urb, GFP_ATOMIC);
547 if (err)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700548 printk(KERN_ERR "%s: resubmit read urb failed. "
Harvey Harrison441b62c2008-03-03 16:08:34 -0800549 "(%d)", __func__, err);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700550 }
551 }
552 return;
553}
554
David Howells7d12e782006-10-05 14:55:46 +0100555static void option_outdat_callback(struct urb *urb)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700556{
557 struct usb_serial_port *port;
Alan Stern59c2afa2007-06-05 16:46:26 -0700558 struct option_port_private *portdata;
559 int i;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700560
Harvey Harrison441b62c2008-03-03 16:08:34 -0800561 dbg("%s", __func__);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700562
Ming Leicdc97792008-02-24 18:41:47 +0800563 port = urb->context;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700564
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700565 usb_serial_port_softint(port);
Alan Stern59c2afa2007-06-05 16:46:26 -0700566
567 portdata = usb_get_serial_port_data(port);
568 for (i = 0; i < N_OUT_URB; ++i) {
569 if (portdata->out_urbs[i] == urb) {
570 smp_mb__before_clear_bit();
571 clear_bit(i, &portdata->out_busy);
572 break;
573 }
574 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700575}
576
David Howells7d12e782006-10-05 14:55:46 +0100577static void option_instat_callback(struct urb *urb)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700578{
579 int err;
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700580 int status = urb->status;
Ming Leicdc97792008-02-24 18:41:47 +0800581 struct usb_serial_port *port = urb->context;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700582 struct option_port_private *portdata = usb_get_serial_port_data(port);
583 struct usb_serial *serial = port->serial;
584
Harvey Harrison441b62c2008-03-03 16:08:34 -0800585 dbg("%s", __func__);
586 dbg("%s: urb %p port %p has data %p", __func__,urb,port,portdata);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700587
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700588 if (status == 0) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700589 struct usb_ctrlrequest *req_pkt =
590 (struct usb_ctrlrequest *)urb->transfer_buffer;
591
592 if (!req_pkt) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800593 dbg("%s: NULL req_pkt\n", __func__);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700594 return;
595 }
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700596 if ((req_pkt->bRequestType == 0xA1) &&
597 (req_pkt->bRequest == 0x20)) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700598 int old_dcd_state;
599 unsigned char signals = *((unsigned char *)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700600 urb->transfer_buffer +
601 sizeof(struct usb_ctrlrequest));
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700602
Harvey Harrison441b62c2008-03-03 16:08:34 -0800603 dbg("%s: signal x%x", __func__, signals);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700604
605 old_dcd_state = portdata->dcd_state;
606 portdata->cts_state = 1;
607 portdata->dcd_state = ((signals & 0x01) ? 1 : 0);
608 portdata->dsr_state = ((signals & 0x02) ? 1 : 0);
609 portdata->ri_state = ((signals & 0x08) ? 1 : 0);
610
Alan Cox95da3102008-07-22 11:09:07 +0100611 if (port->port.tty && !C_CLOCAL(port->port.tty) &&
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700612 old_dcd_state && !portdata->dcd_state)
Alan Cox95da3102008-07-22 11:09:07 +0100613 tty_hangup(port->port.tty);
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700614 } else {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800615 dbg("%s: type %x req %x", __func__,
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700616 req_pkt->bRequestType,req_pkt->bRequest);
617 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700618 } else
Harvey Harrison441b62c2008-03-03 16:08:34 -0800619 dbg("%s: error %d", __func__, status);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700620
621 /* Resubmit urb so we continue receiving IRQ data */
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700622 if (status != -ESHUTDOWN) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700623 urb->dev = serial->dev;
624 err = usb_submit_urb(urb, GFP_ATOMIC);
625 if (err)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700626 dbg("%s: resubmit intr urb failed. (%d)",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800627 __func__, err);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700628 }
629}
630
Alan Cox95da3102008-07-22 11:09:07 +0100631static int option_write_room(struct tty_struct *tty)
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 Urlichs58cfe912005-05-23 17:00:48 -0700634 struct option_port_private *portdata;
635 int i;
636 int data_len = 0;
637 struct urb *this_urb;
638
639 portdata = usb_get_serial_port_data(port);
640
Alan Coxa5b6f602008-04-08 17:16:06 +0100641
Matthias Urlichsba460e42005-07-14 00:33:47 -0700642 for (i=0; i < N_OUT_URB; i++) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700643 this_urb = portdata->out_urbs[i];
Alan Stern59c2afa2007-06-05 16:46:26 -0700644 if (this_urb && !test_bit(i, &portdata->out_busy))
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700645 data_len += OUT_BUFLEN;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700646 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700647
Harvey Harrison441b62c2008-03-03 16:08:34 -0800648 dbg("%s: %d", __func__, data_len);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700649 return data_len;
650}
651
Alan Cox95da3102008-07-22 11:09:07 +0100652static int option_chars_in_buffer(struct tty_struct *tty)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700653{
Alan Cox95da3102008-07-22 11:09:07 +0100654 struct usb_serial_port *port = tty->driver_data;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700655 struct option_port_private *portdata;
656 int i;
657 int data_len = 0;
658 struct urb *this_urb;
659
660 portdata = usb_get_serial_port_data(port);
661
Matthias Urlichsba460e42005-07-14 00:33:47 -0700662 for (i=0; i < N_OUT_URB; i++) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700663 this_urb = portdata->out_urbs[i];
Alan Coxa5b6f602008-04-08 17:16:06 +0100664 /* FIXME: This locking is insufficient as this_urb may
665 go unused during the test */
Alan Stern59c2afa2007-06-05 16:46:26 -0700666 if (this_urb && test_bit(i, &portdata->out_busy))
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700667 data_len += this_urb->transfer_buffer_length;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700668 }
Harvey Harrison441b62c2008-03-03 16:08:34 -0800669 dbg("%s: %d", __func__, data_len);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700670 return data_len;
671}
672
Alan Cox95da3102008-07-22 11:09:07 +0100673static int option_open(struct tty_struct *tty,
674 struct usb_serial_port *port, struct file *filp)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700675{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700676 struct option_port_private *portdata;
677 struct usb_serial *serial = port->serial;
678 int i, err;
679 struct urb *urb;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700680
681 portdata = usb_get_serial_port_data(port);
682
Harvey Harrison441b62c2008-03-03 16:08:34 -0800683 dbg("%s", __func__);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700684
685 /* Set some sane defaults */
686 portdata->rts_state = 1;
687 portdata->dtr_state = 1;
688
689 /* Reset low level data toggle and start reading from endpoints */
690 for (i = 0; i < N_IN_URB; i++) {
691 urb = portdata->in_urbs[i];
692 if (! urb)
693 continue;
694 if (urb->dev != serial->dev) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800695 dbg("%s: dev %p != %p", __func__,
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700696 urb->dev, serial->dev);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700697 continue;
698 }
699
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700700 /*
701 * make sure endpoint data toggle is synchronized with the
702 * device
703 */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700704 usb_clear_halt(urb->dev, urb->pipe);
705
706 err = usb_submit_urb(urb, GFP_KERNEL);
707 if (err) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700708 dbg("%s: submit urb %d failed (%d) %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800709 __func__, i, err,
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700710 urb->transfer_buffer_length);
711 }
712 }
713
714 /* Reset low level data toggle on out endpoints */
715 for (i = 0; i < N_OUT_URB; i++) {
716 urb = portdata->out_urbs[i];
717 if (! urb)
718 continue;
719 urb->dev = serial->dev;
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700720 /* usb_settoggle(urb->dev, usb_pipeendpoint(urb->pipe),
721 usb_pipeout(urb->pipe), 0); */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700722 }
723
Alan Cox95da3102008-07-22 11:09:07 +0100724 if (tty)
725 tty->low_latency = 1;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700726
Alan Cox95da3102008-07-22 11:09:07 +0100727 option_send_setup(tty, port);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700728
729 return (0);
730}
731
Alan Cox95da3102008-07-22 11:09:07 +0100732static void option_close(struct tty_struct *tty,
733 struct usb_serial_port *port, struct file *filp)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700734{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700735 int i;
736 struct usb_serial *serial = port->serial;
737 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700738
Harvey Harrison441b62c2008-03-03 16:08:34 -0800739 dbg("%s", __func__);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700740 portdata = usb_get_serial_port_data(port);
741
742 portdata->rts_state = 0;
743 portdata->dtr_state = 0;
744
745 if (serial->dev) {
Oliver Neukume33fe4d2008-01-21 17:44:10 +0100746 mutex_lock(&serial->disc_mutex);
747 if (!serial->disconnected)
Alan Cox95da3102008-07-22 11:09:07 +0100748 option_send_setup(tty, port);
Oliver Neukume33fe4d2008-01-21 17:44:10 +0100749 mutex_unlock(&serial->disc_mutex);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700750
751 /* Stop reading/writing urbs */
752 for (i = 0; i < N_IN_URB; i++)
Oliver Neukum7d28e742007-03-20 13:41:21 +0100753 usb_kill_urb(portdata->in_urbs[i]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700754 for (i = 0; i < N_OUT_URB; i++)
Oliver Neukum7d28e742007-03-20 13:41:21 +0100755 usb_kill_urb(portdata->out_urbs[i]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700756 }
Alan Cox95da3102008-07-22 11:09:07 +0100757 port->port.tty = NULL; /* FIXME */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700758}
759
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700760/* Helper functions used by option_setup_urbs */
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700761static struct urb *option_setup_urb(struct usb_serial *serial, int endpoint,
762 int dir, void *ctx, char *buf, int len,
David Howells7d12e782006-10-05 14:55:46 +0100763 void (*callback)(struct urb *))
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700764{
765 struct urb *urb;
766
767 if (endpoint == -1)
768 return NULL; /* endpoint not needed */
769
770 urb = usb_alloc_urb(0, GFP_KERNEL); /* No ISO */
771 if (urb == NULL) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800772 dbg("%s: alloc for endpoint %d failed.", __func__, endpoint);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700773 return NULL;
774 }
775
776 /* Fill URB using supplied data. */
777 usb_fill_bulk_urb(urb, serial->dev,
778 usb_sndbulkpipe(serial->dev, endpoint) | dir,
779 buf, len, callback, ctx);
780
781 return urb;
782}
783
784/* Setup urbs */
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700785static void option_setup_urbs(struct usb_serial *serial)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700786{
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200787 int i,j;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700788 struct usb_serial_port *port;
789 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700790
Harvey Harrison441b62c2008-03-03 16:08:34 -0800791 dbg("%s", __func__);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700792
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200793 for (i = 0; i < serial->num_ports; i++) {
794 port = serial->port[i];
795 portdata = usb_get_serial_port_data(port);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700796
797 /* Do indat endpoints first */
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200798 for (j = 0; j < N_IN_URB; ++j) {
799 portdata->in_urbs[j] = option_setup_urb (serial,
800 port->bulk_in_endpointAddress, USB_DIR_IN, port,
801 portdata->in_buffer[j], IN_BUFLEN, option_indat_callback);
802 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700803
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200804 /* outdat endpoints */
805 for (j = 0; j < N_OUT_URB; ++j) {
806 portdata->out_urbs[j] = option_setup_urb (serial,
807 port->bulk_out_endpointAddress, USB_DIR_OUT, port,
808 portdata->out_buffer[j], OUT_BUFLEN, option_outdat_callback);
809 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700810 }
811}
812
Chris Collins5f760042008-04-10 10:15:53 +0200813
814/** send RTS/DTR state to the port.
815 *
816 * This is exactly the same as SET_CONTROL_LINE_STATE from the PSTN
817 * CDC.
818*/
Alan Cox95da3102008-07-22 11:09:07 +0100819static int option_send_setup(struct tty_struct *tty,
820 struct usb_serial_port *port)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700821{
822 struct usb_serial *serial = port->serial;
823 struct option_port_private *portdata;
Chris Collins5f760042008-04-10 10:15:53 +0200824 int ifNum = serial->interface->cur_altsetting->desc.bInterfaceNumber;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800825 dbg("%s", __func__);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700826
827 portdata = usb_get_serial_port_data(port);
828
Alan Cox95da3102008-07-22 11:09:07 +0100829 if (tty) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700830 int val = 0;
831 if (portdata->dtr_state)
832 val |= 0x01;
833 if (portdata->rts_state)
834 val |= 0x02;
835
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700836 return usb_control_msg(serial->dev,
837 usb_rcvctrlpipe(serial->dev, 0),
Chris Collins5f760042008-04-10 10:15:53 +0200838 0x22,0x21,val,ifNum,NULL,0,USB_CTRL_SET_TIMEOUT);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700839 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700840 return 0;
841}
842
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700843static int option_startup(struct usb_serial *serial)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700844{
Oliver Neukum2129c4e2008-02-01 13:58:52 +0100845 int i, j, err;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700846 struct usb_serial_port *port;
847 struct option_port_private *portdata;
Oliver Neukum2129c4e2008-02-01 13:58:52 +0100848 u8 *buffer;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700849
Harvey Harrison441b62c2008-03-03 16:08:34 -0800850 dbg("%s", __func__);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700851
852 /* Now setup per port private data */
853 for (i = 0; i < serial->num_ports; i++) {
854 port = serial->port[i];
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100855 portdata = kzalloc(sizeof(*portdata), GFP_KERNEL);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700856 if (!portdata) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700857 dbg("%s: kmalloc for option_port_private (%d) failed!.",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800858 __func__, i);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700859 return (1);
860 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700861
Oliver Neukum2129c4e2008-02-01 13:58:52 +0100862 for (j = 0; j < N_IN_URB; j++) {
863 buffer = (u8 *)__get_free_page(GFP_KERNEL);
864 if (!buffer)
865 goto bail_out_error;
866 portdata->in_buffer[j] = buffer;
867 }
868
869 for (j = 0; j < N_OUT_URB; j++) {
870 buffer = kmalloc(OUT_BUFLEN, GFP_KERNEL);
871 if (!buffer)
872 goto bail_out_error2;
873 portdata->out_buffer[j] = buffer;
874 }
875
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700876 usb_set_serial_port_data(port, portdata);
877
878 if (! port->interrupt_in_urb)
879 continue;
880 err = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
881 if (err)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700882 dbg("%s: submit irq_in urb failed %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800883 __func__, err);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700884 }
885
886 option_setup_urbs(serial);
887
888 return (0);
Oliver Neukum2129c4e2008-02-01 13:58:52 +0100889
890bail_out_error2:
891 for (j = 0; j < N_OUT_URB; j++)
892 kfree(portdata->out_buffer[j]);
893bail_out_error:
894 for (j = 0; j < N_IN_URB; j++)
895 if (portdata->in_buffer[j])
896 free_page((unsigned long)portdata->in_buffer[j]);
897 kfree(portdata);
898 return 1;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700899}
900
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700901static void option_shutdown(struct usb_serial *serial)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700902{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700903 int i, j;
904 struct usb_serial_port *port;
905 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700906
Harvey Harrison441b62c2008-03-03 16:08:34 -0800907 dbg("%s", __func__);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700908
909 /* Stop reading/writing urbs */
910 for (i = 0; i < serial->num_ports; ++i) {
911 port = serial->port[i];
912 portdata = usb_get_serial_port_data(port);
913 for (j = 0; j < N_IN_URB; j++)
Oliver Neukum7d28e742007-03-20 13:41:21 +0100914 usb_kill_urb(portdata->in_urbs[j]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700915 for (j = 0; j < N_OUT_URB; j++)
Oliver Neukum7d28e742007-03-20 13:41:21 +0100916 usb_kill_urb(portdata->out_urbs[j]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700917 }
918
919 /* Now free them */
920 for (i = 0; i < serial->num_ports; ++i) {
921 port = serial->port[i];
922 portdata = usb_get_serial_port_data(port);
923
924 for (j = 0; j < N_IN_URB; j++) {
925 if (portdata->in_urbs[j]) {
926 usb_free_urb(portdata->in_urbs[j]);
Oliver Neukum2129c4e2008-02-01 13:58:52 +0100927 free_page((unsigned long)portdata->in_buffer[j]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700928 portdata->in_urbs[j] = NULL;
929 }
930 }
931 for (j = 0; j < N_OUT_URB; j++) {
932 if (portdata->out_urbs[j]) {
933 usb_free_urb(portdata->out_urbs[j]);
Oliver Neukum2129c4e2008-02-01 13:58:52 +0100934 kfree(portdata->out_buffer[j]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700935 portdata->out_urbs[j] = NULL;
936 }
937 }
938 }
939
940 /* Now free per port private data */
941 for (i = 0; i < serial->num_ports; i++) {
942 port = serial->port[i];
943 kfree(usb_get_serial_port_data(port));
944 }
945}
946
947MODULE_AUTHOR(DRIVER_AUTHOR);
948MODULE_DESCRIPTION(DRIVER_DESC);
949MODULE_VERSION(DRIVER_VERSION);
950MODULE_LICENSE("GPL");
951
Matthias Urlichsba460e42005-07-14 00:33:47 -0700952#ifdef CONFIG_USB_DEBUG
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700953module_param(debug, bool, S_IRUGO | S_IWUSR);
954MODULE_PARM_DESC(debug, "Debug messages");
Matthias Urlichsba460e42005-07-14 00:33:47 -0700955#endif
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700956