blob: 4cb3c165742bbb59d2cc2be66bb6da7488700196 [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
Matthias Urlichse37de9e2006-07-06 13:12:53 +020031#define DRIVER_VERSION "v0.7.1"
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 */
Andrew Morton7bb75ae2005-07-27 01:08:30 -070046static int option_open(struct usb_serial_port *port, struct file *filp);
47static void option_close(struct usb_serial_port *port, struct file *filp);
48static int option_startup(struct usb_serial *serial);
49static void option_shutdown(struct usb_serial *serial);
50static void option_rx_throttle(struct usb_serial_port *port);
51static void option_rx_unthrottle(struct usb_serial_port *port);
52static int option_write_room(struct usb_serial_port *port);
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
Andrew Morton7bb75ae2005-07-27 01:08:30 -070056static int option_write(struct usb_serial_port *port,
57 const unsigned char *buf, int count);
Matthias Urlichs58cfe912005-05-23 17:00:48 -070058
Andrew Morton7bb75ae2005-07-27 01:08:30 -070059static int option_chars_in_buffer(struct usb_serial_port *port);
60static int option_ioctl(struct usb_serial_port *port, struct file *file,
61 unsigned int cmd, unsigned long arg);
62static void option_set_termios(struct usb_serial_port *port,
Alan Cox606d0992006-12-08 02:38:45 -080063 struct ktermios *old);
Andrew Morton7bb75ae2005-07-27 01:08:30 -070064static void option_break_ctl(struct usb_serial_port *port, int break_state);
65static int option_tiocmget(struct usb_serial_port *port, struct file *file);
66static int option_tiocmset(struct usb_serial_port *port, struct file *file,
67 unsigned int set, unsigned int clear);
68static int option_send_setup(struct usb_serial_port *port);
Matthias Urlichs58cfe912005-05-23 17:00:48 -070069
70/* Vendor and product IDs */
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -080071#define OPTION_VENDOR_ID 0x0AF0
72#define OPTION_PRODUCT_COLT 0x5000
73#define OPTION_PRODUCT_RICOLA 0x6000
74#define OPTION_PRODUCT_RICOLA_LIGHT 0x6100
75#define OPTION_PRODUCT_RICOLA_QUAD 0x6200
76#define OPTION_PRODUCT_RICOLA_QUAD_LIGHT 0x6300
77#define OPTION_PRODUCT_RICOLA_NDIS 0x6050
78#define OPTION_PRODUCT_RICOLA_NDIS_LIGHT 0x6150
79#define OPTION_PRODUCT_RICOLA_NDIS_QUAD 0x6250
80#define OPTION_PRODUCT_RICOLA_NDIS_QUAD_LIGHT 0x6350
81#define OPTION_PRODUCT_COBRA 0x6500
82#define OPTION_PRODUCT_COBRA_BUS 0x6501
83#define OPTION_PRODUCT_VIPER 0x6600
84#define OPTION_PRODUCT_VIPER_BUS 0x6601
85#define OPTION_PRODUCT_GT_MAX_READY 0x6701
86#define OPTION_PRODUCT_GT_MAX 0x6711
87#define OPTION_PRODUCT_FUJI_MODEM_LIGHT 0x6721
88#define OPTION_PRODUCT_FUJI_MODEM_GT 0x6741
89#define OPTION_PRODUCT_FUJI_MODEM_EX 0x6761
90#define OPTION_PRODUCT_FUJI_NETWORK_LIGHT 0x6731
91#define OPTION_PRODUCT_FUJI_NETWORK_GT 0x6751
92#define OPTION_PRODUCT_FUJI_NETWORK_EX 0x6771
93#define OPTION_PRODUCT_KOI_MODEM 0x6800
94#define OPTION_PRODUCT_KOI_NETWORK 0x6811
95#define OPTION_PRODUCT_SCORPION_MODEM 0x6901
96#define OPTION_PRODUCT_SCORPION_NETWORK 0x6911
97#define OPTION_PRODUCT_ETNA_MODEM 0x7001
98#define OPTION_PRODUCT_ETNA_NETWORK 0x7011
99#define OPTION_PRODUCT_ETNA_MODEM_LITE 0x7021
100#define OPTION_PRODUCT_ETNA_MODEM_GT 0x7041
101#define OPTION_PRODUCT_ETNA_MODEM_EX 0x7061
102#define OPTION_PRODUCT_ETNA_NETWORK_LITE 0x7031
103#define OPTION_PRODUCT_ETNA_NETWORK_GT 0x7051
104#define OPTION_PRODUCT_ETNA_NETWORK_EX 0x7071
105#define OPTION_PRODUCT_ETNA_KOI_MODEM 0x7100
106#define OPTION_PRODUCT_ETNA_KOI_NETWORK 0x7111
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700107
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800108#define HUAWEI_VENDOR_ID 0x12D1
109#define HUAWEI_PRODUCT_E600 0x1001
110#define HUAWEI_PRODUCT_E220 0x1003
111
112#define NOVATELWIRELESS_VENDOR_ID 0x1410
Faidon Liambotis96443212007-08-07 05:46:05 +0300113#define DELL_VENDOR_ID 0x413C
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800114
115#define ANYDATA_VENDOR_ID 0x16d5
Alexander Gattin46269db2007-06-20 00:48:10 +0300116#define ANYDATA_PRODUCT_ADU_E100A 0x6501
117#define ANYDATA_PRODUCT_ADU_500A 0x6502
Matthias Urlichsba460e42005-07-14 00:33:47 -0700118
Leon Leong3f6e5842007-04-26 00:38:02 -0700119#define BANDRICH_VENDOR_ID 0x1A8D
120#define BANDRICH_PRODUCT_C100_1 0x1002
121#define BANDRICH_PRODUCT_C100_2 0x1003
122
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700123static struct usb_device_id option_ids[] = {
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800124 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COLT) },
125 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA) },
126 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_LIGHT) },
127 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_QUAD) },
128 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_QUAD_LIGHT) },
129 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS) },
130 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_LIGHT) },
131 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_QUAD) },
132 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_QUAD_LIGHT) },
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200133 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA) },
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800134 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA_BUS) },
135 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_VIPER) },
136 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_VIPER_BUS) },
137 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GT_MAX_READY) },
138 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GT_MAX) },
139 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_LIGHT) },
140 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_GT) },
141 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_EX) },
142 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_NETWORK_LIGHT) },
143 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_NETWORK_GT) },
144 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_NETWORK_EX) },
145 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_KOI_MODEM) },
146 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_KOI_NETWORK) },
147 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_SCORPION_MODEM) },
148 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_SCORPION_NETWORK) },
149 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM) },
150 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_NETWORK) },
151 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_LITE) },
152 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_GT) },
153 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_EX) },
154 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_NETWORK_LITE) },
155 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_NETWORK_GT) },
156 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_NETWORK_EX) },
157 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_KOI_MODEM) },
158 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_KOI_NETWORK) },
Matthias Urlichsb6137382005-09-22 00:48:40 -0700159 { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E600) },
Johann Wilhelmab195892006-12-02 07:25:31 +0100160 { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220) },
Greg Kroah-Hartman69806d52007-03-19 13:39:51 -0700161 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1100) }, /* Novatel Merlin XS620/S640 */
162 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1110) }, /* Novatel Merlin S620 */
163 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1120) }, /* Novatel Merlin EX720 */
164 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1130) }, /* Novatel Merlin S720 */
165 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1400) }, /* Novatel U730 */
166 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1410) }, /* Novatel U740 */
167 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1420) }, /* Novatel EU870 */
168 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1430) }, /* Novatel Merlin XU870 HSDPA/3G */
Greg Kroah-Hartman69806d52007-03-19 13:39:51 -0700169 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x2100) }, /* Novatel EV620 CDMA/EV-DO */
170 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x2110) }, /* Novatel Merlin ES620 / Merlin ES720 / Ovation U720 */
171 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x2130) }, /* Novatel Merlin ES620 SM Bus */
172 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x2410) }, /* Novatel EU740 */
Faidon Liambotis96443212007-08-07 05:46:05 +0300173 { USB_DEVICE(DELL_VENDOR_ID, 0x8114) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO Mini-Card == Novatel Expedite EV620 CDMA/EV-DO */
174 { USB_DEVICE(DELL_VENDOR_ID, 0x8115) }, /* Dell Wireless 5500 Mobile Broadband HSDPA Mini-Card == Novatel Expedite EU740 HSDPA/3G */
175 { USB_DEVICE(DELL_VENDOR_ID, 0x8116) }, /* Dell Wireless 5505 Mobile Broadband HSDPA Mini-Card == Novatel Expedite EU740 HSDPA/3G */
176 { USB_DEVICE(DELL_VENDOR_ID, 0x8117) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO ExpressCard == Novatel Merlin XV620 CDMA/EV-DO */
177 { USB_DEVICE(DELL_VENDOR_ID, 0x8118) }, /* Dell Wireless 5510 Mobile Broadband HSDPA ExpressCard == Novatel Merlin XU870 HSDPA/3G */
178 { USB_DEVICE(DELL_VENDOR_ID, 0x8128) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO Mini-Card == Novatel Expedite E720 CDMA/EV-DO */
Alexander Gattin46269db2007-06-20 00:48:10 +0300179 { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_E100A) },
180 { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_500A) },
Leon Leong3f6e5842007-04-26 00:38:02 -0700181 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_C100_1) },
182 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_C100_2) },
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200183 { } /* Terminating entry */
184};
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700185MODULE_DEVICE_TABLE(usb, option_ids);
186
187static struct usb_driver option_driver = {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700188 .name = "option",
189 .probe = usb_serial_probe,
190 .disconnect = usb_serial_disconnect,
191 .id_table = option_ids,
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800192 .no_dynamic_id = 1,
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700193};
194
Uwe Zeisbergerc30fe7f2006-03-24 18:23:14 +0100195/* The card has three separate interfaces, which the serial driver
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700196 * recognizes separately, thus num_port=1.
197 */
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200198
199static struct usb_serial_driver option_1port_device = {
200 .driver = {
201 .owner = THIS_MODULE,
Matthias Urlichs02b2ac52006-08-02 16:41:41 -0700202 .name = "option1",
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200203 },
204 .description = "GSM modem (1-port)",
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100205 .usb_driver = &option_driver,
Greg Kroah-Hartmanb656b2c2007-02-21 12:53:17 -0800206 .id_table = option_ids,
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200207 .num_interrupt_in = NUM_DONT_CARE,
208 .num_bulk_in = NUM_DONT_CARE,
209 .num_bulk_out = NUM_DONT_CARE,
210 .num_ports = 1,
Matthias Urlichsba460e42005-07-14 00:33:47 -0700211 .open = option_open,
212 .close = option_close,
213 .write = option_write,
214 .write_room = option_write_room,
215 .chars_in_buffer = option_chars_in_buffer,
216 .throttle = option_rx_throttle,
217 .unthrottle = option_rx_unthrottle,
218 .ioctl = option_ioctl,
219 .set_termios = option_set_termios,
220 .break_ctl = option_break_ctl,
221 .tiocmget = option_tiocmget,
222 .tiocmset = option_tiocmset,
223 .attach = option_startup,
224 .shutdown = option_shutdown,
225 .read_int_callback = option_instat_callback,
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700226};
227
Matthias Urlichsba460e42005-07-14 00:33:47 -0700228#ifdef CONFIG_USB_DEBUG
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700229static int debug;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700230#else
231#define debug 0
232#endif
233
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700234/* per port private data */
235
Matthias Urlichsba460e42005-07-14 00:33:47 -0700236#define N_IN_URB 4
237#define N_OUT_URB 1
Matthias Urlichsb27c73d2005-09-22 00:49:33 -0700238#define IN_BUFLEN 4096
Matthias Urlichsba460e42005-07-14 00:33:47 -0700239#define OUT_BUFLEN 128
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700240
241struct option_port_private {
242 /* Input endpoints and buffer for this port */
Matthias Urlichsba460e42005-07-14 00:33:47 -0700243 struct urb *in_urbs[N_IN_URB];
244 char in_buffer[N_IN_URB][IN_BUFLEN];
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700245 /* Output endpoints and buffer for this port */
Matthias Urlichsba460e42005-07-14 00:33:47 -0700246 struct urb *out_urbs[N_OUT_URB];
247 char out_buffer[N_OUT_URB][OUT_BUFLEN];
Alan Stern59c2afa2007-06-05 16:46:26 -0700248 unsigned long out_busy; /* Bit vector of URBs in use */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700249
250 /* Settings for the port */
Matthias Urlichsba460e42005-07-14 00:33:47 -0700251 int rts_state; /* Handshaking pins (outputs) */
252 int dtr_state;
253 int cts_state; /* Handshaking pins (inputs) */
254 int dsr_state;
255 int dcd_state;
256 int ri_state;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700257
Matthias Urlichsba460e42005-07-14 00:33:47 -0700258 unsigned long tx_start_time[N_OUT_URB];
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700259};
260
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700261/* Functions used by new usb-serial code. */
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700262static int __init option_init(void)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700263{
264 int retval;
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200265 retval = usb_serial_register(&option_1port_device);
266 if (retval)
267 goto failed_1port_device_register;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700268 retval = usb_register(&option_driver);
269 if (retval)
270 goto failed_driver_register;
271
272 info(DRIVER_DESC ": " DRIVER_VERSION);
273
274 return 0;
275
276failed_driver_register:
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200277 usb_serial_deregister (&option_1port_device);
278failed_1port_device_register:
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700279 return retval;
280}
281
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700282static void __exit option_exit(void)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700283{
284 usb_deregister (&option_driver);
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200285 usb_serial_deregister (&option_1port_device);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700286}
287
288module_init(option_init);
289module_exit(option_exit);
290
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700291static void option_rx_throttle(struct usb_serial_port *port)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700292{
293 dbg("%s", __FUNCTION__);
294}
295
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700296static void option_rx_unthrottle(struct usb_serial_port *port)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700297{
298 dbg("%s", __FUNCTION__);
299}
300
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700301static void option_break_ctl(struct usb_serial_port *port, int break_state)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700302{
303 /* Unfortunately, I don't know how to send a break */
Matthias Urlichsba460e42005-07-14 00:33:47 -0700304 dbg("%s", __FUNCTION__);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700305}
306
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700307static void option_set_termios(struct usb_serial_port *port,
Alan Cox606d0992006-12-08 02:38:45 -0800308 struct ktermios *old_termios)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700309{
310 dbg("%s", __FUNCTION__);
311
312 option_send_setup(port);
313}
314
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700315static int option_tiocmget(struct usb_serial_port *port, struct file *file)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700316{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700317 unsigned int value;
318 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700319
320 portdata = usb_get_serial_port_data(port);
321
322 value = ((portdata->rts_state) ? TIOCM_RTS : 0) |
323 ((portdata->dtr_state) ? TIOCM_DTR : 0) |
324 ((portdata->cts_state) ? TIOCM_CTS : 0) |
325 ((portdata->dsr_state) ? TIOCM_DSR : 0) |
326 ((portdata->dcd_state) ? TIOCM_CAR : 0) |
327 ((portdata->ri_state) ? TIOCM_RNG : 0);
328
329 return value;
330}
331
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700332static int option_tiocmset(struct usb_serial_port *port, struct file *file,
333 unsigned int set, unsigned int clear)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700334{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700335 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700336
337 portdata = usb_get_serial_port_data(port);
338
339 if (set & TIOCM_RTS)
340 portdata->rts_state = 1;
341 if (set & TIOCM_DTR)
342 portdata->dtr_state = 1;
343
344 if (clear & TIOCM_RTS)
345 portdata->rts_state = 0;
346 if (clear & TIOCM_DTR)
347 portdata->dtr_state = 0;
348 return option_send_setup(port);
349}
350
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700351static int option_ioctl(struct usb_serial_port *port, struct file *file,
352 unsigned int cmd, unsigned long arg)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700353{
354 return -ENOIOCTLCMD;
355}
356
357/* Write */
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700358static int option_write(struct usb_serial_port *port,
359 const unsigned char *buf, int count)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700360{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700361 struct option_port_private *portdata;
362 int i;
363 int left, todo;
364 struct urb *this_urb = NULL; /* spurious */
365 int err;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700366
367 portdata = usb_get_serial_port_data(port);
368
369 dbg("%s: write (%d chars)", __FUNCTION__, count);
370
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700371 i = 0;
372 left = count;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700373 for (i=0; left > 0 && i < N_OUT_URB; i++) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700374 todo = left;
375 if (todo > OUT_BUFLEN)
376 todo = OUT_BUFLEN;
377
Matthias Urlichsba460e42005-07-14 00:33:47 -0700378 this_urb = portdata->out_urbs[i];
Alan Stern59c2afa2007-06-05 16:46:26 -0700379 if (test_and_set_bit(i, &portdata->out_busy)) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700380 if (time_before(jiffies,
381 portdata->tx_start_time[i] + 10 * HZ))
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700382 continue;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700383 usb_unlink_urb(this_urb);
Matthias Urlichsba460e42005-07-14 00:33:47 -0700384 continue;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700385 }
Matthias Urlichsba460e42005-07-14 00:33:47 -0700386 if (this_urb->status != 0)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700387 dbg("usb_write %p failed (err=%d)",
388 this_urb, this_urb->status);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700389
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700390 dbg("%s: endpoint %d buf %d", __FUNCTION__,
391 usb_pipeendpoint(this_urb->pipe), i);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700392
Matthias Urlichsba460e42005-07-14 00:33:47 -0700393 /* send the data */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700394 memcpy (this_urb->transfer_buffer, buf, todo);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700395 this_urb->transfer_buffer_length = todo;
396
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700397 this_urb->dev = port->serial->dev;
398 err = usb_submit_urb(this_urb, GFP_ATOMIC);
399 if (err) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700400 dbg("usb_submit_urb %p (write bulk) failed "
401 "(%d, has %d)", this_urb,
402 err, this_urb->status);
Alan Stern59c2afa2007-06-05 16:46:26 -0700403 clear_bit(i, &portdata->out_busy);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700404 continue;
405 }
406 portdata->tx_start_time[i] = jiffies;
407 buf += todo;
408 left -= todo;
409 }
410
411 count -= left;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700412 dbg("%s: wrote (did %d)", __FUNCTION__, count);
413 return count;
414}
415
David Howells7d12e782006-10-05 14:55:46 +0100416static void option_indat_callback(struct urb *urb)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700417{
Alan Cox33f0f882006-01-09 20:54:13 -0800418 int err;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700419 int endpoint;
420 struct usb_serial_port *port;
421 struct tty_struct *tty;
422 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700423 int status = urb->status;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700424
425 dbg("%s: %p", __FUNCTION__, urb);
426
427 endpoint = usb_pipeendpoint(urb->pipe);
428 port = (struct usb_serial_port *) urb->context;
429
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700430 if (status) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700431 dbg("%s: nonzero status: %d on endpoint %02x.",
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700432 __FUNCTION__, status, endpoint);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700433 } else {
434 tty = port->tty;
435 if (urb->actual_length) {
Alan Cox33f0f882006-01-09 20:54:13 -0800436 tty_buffer_request_room(tty, urb->actual_length);
437 tty_insert_flip_string(tty, data, urb->actual_length);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700438 tty_flip_buffer_push(tty);
439 } else {
440 dbg("%s: empty read urb received", __FUNCTION__);
441 }
442
443 /* Resubmit urb so we continue receiving */
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700444 if (port->open_count && status != -ESHUTDOWN) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700445 err = usb_submit_urb(urb, GFP_ATOMIC);
446 if (err)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700447 printk(KERN_ERR "%s: resubmit read urb failed. "
448 "(%d)", __FUNCTION__, err);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700449 }
450 }
451 return;
452}
453
David Howells7d12e782006-10-05 14:55:46 +0100454static void option_outdat_callback(struct urb *urb)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700455{
456 struct usb_serial_port *port;
Alan Stern59c2afa2007-06-05 16:46:26 -0700457 struct option_port_private *portdata;
458 int i;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700459
460 dbg("%s", __FUNCTION__);
461
462 port = (struct usb_serial_port *) urb->context;
463
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700464 usb_serial_port_softint(port);
Alan Stern59c2afa2007-06-05 16:46:26 -0700465
466 portdata = usb_get_serial_port_data(port);
467 for (i = 0; i < N_OUT_URB; ++i) {
468 if (portdata->out_urbs[i] == urb) {
469 smp_mb__before_clear_bit();
470 clear_bit(i, &portdata->out_busy);
471 break;
472 }
473 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700474}
475
David Howells7d12e782006-10-05 14:55:46 +0100476static void option_instat_callback(struct urb *urb)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700477{
478 int err;
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700479 int status = urb->status;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700480 struct usb_serial_port *port = (struct usb_serial_port *) urb->context;
481 struct option_port_private *portdata = usb_get_serial_port_data(port);
482 struct usb_serial *serial = port->serial;
483
484 dbg("%s", __FUNCTION__);
485 dbg("%s: urb %p port %p has data %p", __FUNCTION__,urb,port,portdata);
486
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700487 if (status == 0) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700488 struct usb_ctrlrequest *req_pkt =
489 (struct usb_ctrlrequest *)urb->transfer_buffer;
490
491 if (!req_pkt) {
492 dbg("%s: NULL req_pkt\n", __FUNCTION__);
493 return;
494 }
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700495 if ((req_pkt->bRequestType == 0xA1) &&
496 (req_pkt->bRequest == 0x20)) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700497 int old_dcd_state;
498 unsigned char signals = *((unsigned char *)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700499 urb->transfer_buffer +
500 sizeof(struct usb_ctrlrequest));
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700501
502 dbg("%s: signal x%x", __FUNCTION__, signals);
503
504 old_dcd_state = portdata->dcd_state;
505 portdata->cts_state = 1;
506 portdata->dcd_state = ((signals & 0x01) ? 1 : 0);
507 portdata->dsr_state = ((signals & 0x02) ? 1 : 0);
508 portdata->ri_state = ((signals & 0x08) ? 1 : 0);
509
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700510 if (port->tty && !C_CLOCAL(port->tty) &&
511 old_dcd_state && !portdata->dcd_state)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700512 tty_hangup(port->tty);
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700513 } else {
514 dbg("%s: type %x req %x", __FUNCTION__,
515 req_pkt->bRequestType,req_pkt->bRequest);
516 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700517 } else
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700518 dbg("%s: error %d", __FUNCTION__, status);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700519
520 /* Resubmit urb so we continue receiving IRQ data */
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700521 if (status != -ESHUTDOWN) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700522 urb->dev = serial->dev;
523 err = usb_submit_urb(urb, GFP_ATOMIC);
524 if (err)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700525 dbg("%s: resubmit intr urb failed. (%d)",
526 __FUNCTION__, err);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700527 }
528}
529
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700530static int option_write_room(struct usb_serial_port *port)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700531{
532 struct option_port_private *portdata;
533 int i;
534 int data_len = 0;
535 struct urb *this_urb;
536
537 portdata = usb_get_serial_port_data(port);
538
Matthias Urlichsba460e42005-07-14 00:33:47 -0700539 for (i=0; i < N_OUT_URB; i++) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700540 this_urb = portdata->out_urbs[i];
Alan Stern59c2afa2007-06-05 16:46:26 -0700541 if (this_urb && !test_bit(i, &portdata->out_busy))
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700542 data_len += OUT_BUFLEN;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700543 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700544
545 dbg("%s: %d", __FUNCTION__, data_len);
546 return data_len;
547}
548
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700549static int option_chars_in_buffer(struct usb_serial_port *port)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700550{
551 struct option_port_private *portdata;
552 int i;
553 int data_len = 0;
554 struct urb *this_urb;
555
556 portdata = usb_get_serial_port_data(port);
557
Matthias Urlichsba460e42005-07-14 00:33:47 -0700558 for (i=0; i < N_OUT_URB; i++) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700559 this_urb = portdata->out_urbs[i];
Alan Stern59c2afa2007-06-05 16:46:26 -0700560 if (this_urb && test_bit(i, &portdata->out_busy))
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700561 data_len += this_urb->transfer_buffer_length;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700562 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700563 dbg("%s: %d", __FUNCTION__, data_len);
564 return data_len;
565}
566
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700567static int option_open(struct usb_serial_port *port, struct file *filp)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700568{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700569 struct option_port_private *portdata;
570 struct usb_serial *serial = port->serial;
571 int i, err;
572 struct urb *urb;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700573
574 portdata = usb_get_serial_port_data(port);
575
576 dbg("%s", __FUNCTION__);
577
578 /* Set some sane defaults */
579 portdata->rts_state = 1;
580 portdata->dtr_state = 1;
581
582 /* Reset low level data toggle and start reading from endpoints */
583 for (i = 0; i < N_IN_URB; i++) {
584 urb = portdata->in_urbs[i];
585 if (! urb)
586 continue;
587 if (urb->dev != serial->dev) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700588 dbg("%s: dev %p != %p", __FUNCTION__,
589 urb->dev, serial->dev);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700590 continue;
591 }
592
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700593 /*
594 * make sure endpoint data toggle is synchronized with the
595 * device
596 */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700597 usb_clear_halt(urb->dev, urb->pipe);
598
599 err = usb_submit_urb(urb, GFP_KERNEL);
600 if (err) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700601 dbg("%s: submit urb %d failed (%d) %d",
602 __FUNCTION__, i, err,
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700603 urb->transfer_buffer_length);
604 }
605 }
606
607 /* Reset low level data toggle on out endpoints */
608 for (i = 0; i < N_OUT_URB; i++) {
609 urb = portdata->out_urbs[i];
610 if (! urb)
611 continue;
612 urb->dev = serial->dev;
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700613 /* usb_settoggle(urb->dev, usb_pipeendpoint(urb->pipe),
614 usb_pipeout(urb->pipe), 0); */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700615 }
616
617 port->tty->low_latency = 1;
618
619 option_send_setup(port);
620
621 return (0);
622}
623
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700624static void option_close(struct usb_serial_port *port, struct file *filp)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700625{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700626 int i;
627 struct usb_serial *serial = port->serial;
628 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700629
630 dbg("%s", __FUNCTION__);
631 portdata = usb_get_serial_port_data(port);
632
633 portdata->rts_state = 0;
634 portdata->dtr_state = 0;
635
636 if (serial->dev) {
637 option_send_setup(port);
638
639 /* Stop reading/writing urbs */
640 for (i = 0; i < N_IN_URB; i++)
Oliver Neukum7d28e742007-03-20 13:41:21 +0100641 usb_kill_urb(portdata->in_urbs[i]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700642 for (i = 0; i < N_OUT_URB; i++)
Oliver Neukum7d28e742007-03-20 13:41:21 +0100643 usb_kill_urb(portdata->out_urbs[i]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700644 }
645 port->tty = NULL;
646}
647
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700648/* Helper functions used by option_setup_urbs */
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700649static struct urb *option_setup_urb(struct usb_serial *serial, int endpoint,
650 int dir, void *ctx, char *buf, int len,
David Howells7d12e782006-10-05 14:55:46 +0100651 void (*callback)(struct urb *))
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700652{
653 struct urb *urb;
654
655 if (endpoint == -1)
656 return NULL; /* endpoint not needed */
657
658 urb = usb_alloc_urb(0, GFP_KERNEL); /* No ISO */
659 if (urb == NULL) {
660 dbg("%s: alloc for endpoint %d failed.", __FUNCTION__, endpoint);
661 return NULL;
662 }
663
664 /* Fill URB using supplied data. */
665 usb_fill_bulk_urb(urb, serial->dev,
666 usb_sndbulkpipe(serial->dev, endpoint) | dir,
667 buf, len, callback, ctx);
668
669 return urb;
670}
671
672/* Setup urbs */
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700673static void option_setup_urbs(struct usb_serial *serial)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700674{
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200675 int i,j;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700676 struct usb_serial_port *port;
677 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700678
679 dbg("%s", __FUNCTION__);
680
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200681 for (i = 0; i < serial->num_ports; i++) {
682 port = serial->port[i];
683 portdata = usb_get_serial_port_data(port);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700684
685 /* Do indat endpoints first */
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200686 for (j = 0; j < N_IN_URB; ++j) {
687 portdata->in_urbs[j] = option_setup_urb (serial,
688 port->bulk_in_endpointAddress, USB_DIR_IN, port,
689 portdata->in_buffer[j], IN_BUFLEN, option_indat_callback);
690 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700691
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200692 /* outdat endpoints */
693 for (j = 0; j < N_OUT_URB; ++j) {
694 portdata->out_urbs[j] = option_setup_urb (serial,
695 port->bulk_out_endpointAddress, USB_DIR_OUT, port,
696 portdata->out_buffer[j], OUT_BUFLEN, option_outdat_callback);
697 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700698 }
699}
700
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700701static int option_send_setup(struct usb_serial_port *port)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700702{
703 struct usb_serial *serial = port->serial;
704 struct option_port_private *portdata;
705
706 dbg("%s", __FUNCTION__);
707
Miguel Angel Alvarez8c152712006-12-14 19:49:35 +0100708 if (port->number != 0)
709 return 0;
710
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700711 portdata = usb_get_serial_port_data(port);
712
713 if (port->tty) {
714 int val = 0;
715 if (portdata->dtr_state)
716 val |= 0x01;
717 if (portdata->rts_state)
718 val |= 0x02;
719
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700720 return usb_control_msg(serial->dev,
721 usb_rcvctrlpipe(serial->dev, 0),
722 0x22,0x21,val,0,NULL,0,USB_CTRL_SET_TIMEOUT);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700723 }
724
725 return 0;
726}
727
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700728static int option_startup(struct usb_serial *serial)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700729{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700730 int i, err;
731 struct usb_serial_port *port;
732 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700733
734 dbg("%s", __FUNCTION__);
735
736 /* Now setup per port private data */
737 for (i = 0; i < serial->num_ports; i++) {
738 port = serial->port[i];
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100739 portdata = kzalloc(sizeof(*portdata), GFP_KERNEL);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700740 if (!portdata) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700741 dbg("%s: kmalloc for option_port_private (%d) failed!.",
742 __FUNCTION__, i);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700743 return (1);
744 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700745
746 usb_set_serial_port_data(port, portdata);
747
748 if (! port->interrupt_in_urb)
749 continue;
750 err = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
751 if (err)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700752 dbg("%s: submit irq_in urb failed %d",
753 __FUNCTION__, err);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700754 }
755
756 option_setup_urbs(serial);
757
758 return (0);
759}
760
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700761static void option_shutdown(struct usb_serial *serial)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700762{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700763 int i, j;
764 struct usb_serial_port *port;
765 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700766
767 dbg("%s", __FUNCTION__);
768
769 /* Stop reading/writing urbs */
770 for (i = 0; i < serial->num_ports; ++i) {
771 port = serial->port[i];
772 portdata = usb_get_serial_port_data(port);
773 for (j = 0; j < N_IN_URB; j++)
Oliver Neukum7d28e742007-03-20 13:41:21 +0100774 usb_kill_urb(portdata->in_urbs[j]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700775 for (j = 0; j < N_OUT_URB; j++)
Oliver Neukum7d28e742007-03-20 13:41:21 +0100776 usb_kill_urb(portdata->out_urbs[j]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700777 }
778
779 /* Now free them */
780 for (i = 0; i < serial->num_ports; ++i) {
781 port = serial->port[i];
782 portdata = usb_get_serial_port_data(port);
783
784 for (j = 0; j < N_IN_URB; j++) {
785 if (portdata->in_urbs[j]) {
786 usb_free_urb(portdata->in_urbs[j]);
787 portdata->in_urbs[j] = NULL;
788 }
789 }
790 for (j = 0; j < N_OUT_URB; j++) {
791 if (portdata->out_urbs[j]) {
792 usb_free_urb(portdata->out_urbs[j]);
793 portdata->out_urbs[j] = NULL;
794 }
795 }
796 }
797
798 /* Now free per port private data */
799 for (i = 0; i < serial->num_ports; i++) {
800 port = serial->port[i];
801 kfree(usb_get_serial_port_data(port));
802 }
803}
804
805MODULE_AUTHOR(DRIVER_AUTHOR);
806MODULE_DESCRIPTION(DRIVER_DESC);
807MODULE_VERSION(DRIVER_VERSION);
808MODULE_LICENSE("GPL");
809
Matthias Urlichsba460e42005-07-14 00:33:47 -0700810#ifdef CONFIG_USB_DEBUG
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700811module_param(debug, bool, S_IRUGO | S_IWUSR);
812MODULE_PARM_DESC(debug, "Debug messages");
Matthias Urlichsba460e42005-07-14 00:33:47 -0700813#endif
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700814