blob: b1c91818fe83a53604960b3457ccf704e36001a7 [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
Jaime Velasco Juana3209a02007-09-07 19:06:39 +0100111#define HUAWEI_PRODUCT_E220BIS 0x1004
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800112
113#define NOVATELWIRELESS_VENDOR_ID 0x1410
Faidon Liambotis96443212007-08-07 05:46:05 +0300114#define DELL_VENDOR_ID 0x413C
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800115
116#define ANYDATA_VENDOR_ID 0x16d5
Alexander Gattin46269db2007-06-20 00:48:10 +0300117#define ANYDATA_PRODUCT_ADU_E100A 0x6501
118#define ANYDATA_PRODUCT_ADU_500A 0x6502
Matthias Urlichsba460e42005-07-14 00:33:47 -0700119
Leon Leong3f6e5842007-04-26 00:38:02 -0700120#define BANDRICH_VENDOR_ID 0x1A8D
121#define BANDRICH_PRODUCT_C100_1 0x1002
122#define BANDRICH_PRODUCT_C100_2 0x1003
123
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700124static struct usb_device_id option_ids[] = {
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800125 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COLT) },
126 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA) },
127 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_LIGHT) },
128 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_QUAD) },
129 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_QUAD_LIGHT) },
130 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS) },
131 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_LIGHT) },
132 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_QUAD) },
133 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_QUAD_LIGHT) },
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200134 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA) },
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800135 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA_BUS) },
136 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_VIPER) },
137 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_VIPER_BUS) },
138 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GT_MAX_READY) },
139 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GT_MAX) },
140 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_LIGHT) },
141 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_GT) },
142 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_EX) },
143 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_NETWORK_LIGHT) },
144 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_NETWORK_GT) },
145 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_NETWORK_EX) },
146 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_KOI_MODEM) },
147 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_KOI_NETWORK) },
148 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_SCORPION_MODEM) },
149 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_SCORPION_NETWORK) },
150 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM) },
151 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_NETWORK) },
152 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_LITE) },
153 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_GT) },
154 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_EX) },
155 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_NETWORK_LITE) },
156 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_NETWORK_GT) },
157 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_NETWORK_EX) },
158 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_KOI_MODEM) },
159 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_KOI_NETWORK) },
Matthias Urlichsb6137382005-09-22 00:48:40 -0700160 { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E600) },
Johann Wilhelmab195892006-12-02 07:25:31 +0100161 { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220) },
Jaime Velasco Juana3209a02007-09-07 19:06:39 +0100162 { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220BIS) },
Greg Kroah-Hartman69806d52007-03-19 13:39:51 -0700163 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1100) }, /* Novatel Merlin XS620/S640 */
164 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1110) }, /* Novatel Merlin S620 */
165 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1120) }, /* Novatel Merlin EX720 */
166 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1130) }, /* Novatel Merlin S720 */
167 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1400) }, /* Novatel U730 */
168 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1410) }, /* Novatel U740 */
169 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1420) }, /* Novatel EU870 */
170 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1430) }, /* Novatel Merlin XU870 HSDPA/3G */
Greg Kroah-Hartman69806d52007-03-19 13:39:51 -0700171 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x2100) }, /* Novatel EV620 CDMA/EV-DO */
172 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x2110) }, /* Novatel Merlin ES620 / Merlin ES720 / Ovation U720 */
173 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x2130) }, /* Novatel Merlin ES620 SM Bus */
174 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x2410) }, /* Novatel EU740 */
Greg Kroah-Hartman3657f6c2002-04-09 12:14:34 -0700175 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x4100) }, /* Novatel U727 */
176 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x4400) }, /* Novatel MC950 */
Faidon Liambotis96443212007-08-07 05:46:05 +0300177 { USB_DEVICE(DELL_VENDOR_ID, 0x8114) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO Mini-Card == Novatel Expedite EV620 CDMA/EV-DO */
178 { USB_DEVICE(DELL_VENDOR_ID, 0x8115) }, /* Dell Wireless 5500 Mobile Broadband HSDPA Mini-Card == Novatel Expedite EU740 HSDPA/3G */
179 { USB_DEVICE(DELL_VENDOR_ID, 0x8116) }, /* Dell Wireless 5505 Mobile Broadband HSDPA Mini-Card == Novatel Expedite EU740 HSDPA/3G */
180 { USB_DEVICE(DELL_VENDOR_ID, 0x8117) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO ExpressCard == Novatel Merlin XV620 CDMA/EV-DO */
181 { USB_DEVICE(DELL_VENDOR_ID, 0x8118) }, /* Dell Wireless 5510 Mobile Broadband HSDPA ExpressCard == Novatel Merlin XU870 HSDPA/3G */
182 { USB_DEVICE(DELL_VENDOR_ID, 0x8128) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO Mini-Card == Novatel Expedite E720 CDMA/EV-DO */
Greg Kroah-Hartman2c4cd1f2007-08-30 19:02:10 +0200183 { USB_DEVICE(DELL_VENDOR_ID, 0x8137) }, /* Dell Wireless HSDPA 5520 */
Alexander Gattin46269db2007-06-20 00:48:10 +0300184 { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_E100A) },
185 { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_500A) },
Leon Leong3f6e5842007-04-26 00:38:02 -0700186 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_C100_1) },
187 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_C100_2) },
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200188 { } /* Terminating entry */
189};
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700190MODULE_DEVICE_TABLE(usb, option_ids);
191
192static struct usb_driver option_driver = {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700193 .name = "option",
194 .probe = usb_serial_probe,
195 .disconnect = usb_serial_disconnect,
196 .id_table = option_ids,
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800197 .no_dynamic_id = 1,
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700198};
199
Uwe Zeisbergerc30fe7f2006-03-24 18:23:14 +0100200/* The card has three separate interfaces, which the serial driver
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700201 * recognizes separately, thus num_port=1.
202 */
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200203
204static struct usb_serial_driver option_1port_device = {
205 .driver = {
206 .owner = THIS_MODULE,
Matthias Urlichs02b2ac52006-08-02 16:41:41 -0700207 .name = "option1",
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200208 },
209 .description = "GSM modem (1-port)",
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100210 .usb_driver = &option_driver,
Greg Kroah-Hartmanb656b2c2007-02-21 12:53:17 -0800211 .id_table = option_ids,
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200212 .num_interrupt_in = NUM_DONT_CARE,
213 .num_bulk_in = NUM_DONT_CARE,
214 .num_bulk_out = NUM_DONT_CARE,
215 .num_ports = 1,
Matthias Urlichsba460e42005-07-14 00:33:47 -0700216 .open = option_open,
217 .close = option_close,
218 .write = option_write,
219 .write_room = option_write_room,
220 .chars_in_buffer = option_chars_in_buffer,
221 .throttle = option_rx_throttle,
222 .unthrottle = option_rx_unthrottle,
223 .ioctl = option_ioctl,
224 .set_termios = option_set_termios,
225 .break_ctl = option_break_ctl,
226 .tiocmget = option_tiocmget,
227 .tiocmset = option_tiocmset,
228 .attach = option_startup,
229 .shutdown = option_shutdown,
230 .read_int_callback = option_instat_callback,
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700231};
232
Matthias Urlichsba460e42005-07-14 00:33:47 -0700233#ifdef CONFIG_USB_DEBUG
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700234static int debug;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700235#else
236#define debug 0
237#endif
238
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700239/* per port private data */
240
Matthias Urlichsba460e42005-07-14 00:33:47 -0700241#define N_IN_URB 4
242#define N_OUT_URB 1
Matthias Urlichsb27c73d2005-09-22 00:49:33 -0700243#define IN_BUFLEN 4096
Matthias Urlichsba460e42005-07-14 00:33:47 -0700244#define OUT_BUFLEN 128
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700245
246struct option_port_private {
247 /* Input endpoints and buffer for this port */
Matthias Urlichsba460e42005-07-14 00:33:47 -0700248 struct urb *in_urbs[N_IN_URB];
249 char in_buffer[N_IN_URB][IN_BUFLEN];
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700250 /* Output endpoints and buffer for this port */
Matthias Urlichsba460e42005-07-14 00:33:47 -0700251 struct urb *out_urbs[N_OUT_URB];
252 char out_buffer[N_OUT_URB][OUT_BUFLEN];
Alan Stern59c2afa2007-06-05 16:46:26 -0700253 unsigned long out_busy; /* Bit vector of URBs in use */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700254
255 /* Settings for the port */
Matthias Urlichsba460e42005-07-14 00:33:47 -0700256 int rts_state; /* Handshaking pins (outputs) */
257 int dtr_state;
258 int cts_state; /* Handshaking pins (inputs) */
259 int dsr_state;
260 int dcd_state;
261 int ri_state;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700262
Matthias Urlichsba460e42005-07-14 00:33:47 -0700263 unsigned long tx_start_time[N_OUT_URB];
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700264};
265
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700266/* Functions used by new usb-serial code. */
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700267static int __init option_init(void)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700268{
269 int retval;
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200270 retval = usb_serial_register(&option_1port_device);
271 if (retval)
272 goto failed_1port_device_register;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700273 retval = usb_register(&option_driver);
274 if (retval)
275 goto failed_driver_register;
276
277 info(DRIVER_DESC ": " DRIVER_VERSION);
278
279 return 0;
280
281failed_driver_register:
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200282 usb_serial_deregister (&option_1port_device);
283failed_1port_device_register:
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700284 return retval;
285}
286
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700287static void __exit option_exit(void)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700288{
289 usb_deregister (&option_driver);
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200290 usb_serial_deregister (&option_1port_device);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700291}
292
293module_init(option_init);
294module_exit(option_exit);
295
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700296static void option_rx_throttle(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_rx_unthrottle(struct usb_serial_port *port)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700302{
303 dbg("%s", __FUNCTION__);
304}
305
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700306static void option_break_ctl(struct usb_serial_port *port, int break_state)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700307{
308 /* Unfortunately, I don't know how to send a break */
Matthias Urlichsba460e42005-07-14 00:33:47 -0700309 dbg("%s", __FUNCTION__);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700310}
311
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700312static void option_set_termios(struct usb_serial_port *port,
Alan Cox606d0992006-12-08 02:38:45 -0800313 struct ktermios *old_termios)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700314{
315 dbg("%s", __FUNCTION__);
316
317 option_send_setup(port);
318}
319
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700320static int option_tiocmget(struct usb_serial_port *port, struct file *file)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700321{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700322 unsigned int value;
323 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700324
325 portdata = usb_get_serial_port_data(port);
326
327 value = ((portdata->rts_state) ? TIOCM_RTS : 0) |
328 ((portdata->dtr_state) ? TIOCM_DTR : 0) |
329 ((portdata->cts_state) ? TIOCM_CTS : 0) |
330 ((portdata->dsr_state) ? TIOCM_DSR : 0) |
331 ((portdata->dcd_state) ? TIOCM_CAR : 0) |
332 ((portdata->ri_state) ? TIOCM_RNG : 0);
333
334 return value;
335}
336
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700337static int option_tiocmset(struct usb_serial_port *port, struct file *file,
338 unsigned int set, unsigned int clear)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700339{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700340 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700341
342 portdata = usb_get_serial_port_data(port);
343
344 if (set & TIOCM_RTS)
345 portdata->rts_state = 1;
346 if (set & TIOCM_DTR)
347 portdata->dtr_state = 1;
348
349 if (clear & TIOCM_RTS)
350 portdata->rts_state = 0;
351 if (clear & TIOCM_DTR)
352 portdata->dtr_state = 0;
353 return option_send_setup(port);
354}
355
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700356static int option_ioctl(struct usb_serial_port *port, struct file *file,
357 unsigned int cmd, unsigned long arg)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700358{
359 return -ENOIOCTLCMD;
360}
361
362/* Write */
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700363static int option_write(struct usb_serial_port *port,
364 const unsigned char *buf, int count)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700365{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700366 struct option_port_private *portdata;
367 int i;
368 int left, todo;
369 struct urb *this_urb = NULL; /* spurious */
370 int err;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700371
372 portdata = usb_get_serial_port_data(port);
373
374 dbg("%s: write (%d chars)", __FUNCTION__, count);
375
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700376 i = 0;
377 left = count;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700378 for (i=0; left > 0 && i < N_OUT_URB; i++) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700379 todo = left;
380 if (todo > OUT_BUFLEN)
381 todo = OUT_BUFLEN;
382
Matthias Urlichsba460e42005-07-14 00:33:47 -0700383 this_urb = portdata->out_urbs[i];
Alan Stern59c2afa2007-06-05 16:46:26 -0700384 if (test_and_set_bit(i, &portdata->out_busy)) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700385 if (time_before(jiffies,
386 portdata->tx_start_time[i] + 10 * HZ))
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700387 continue;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700388 usb_unlink_urb(this_urb);
Matthias Urlichsba460e42005-07-14 00:33:47 -0700389 continue;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700390 }
Matthias Urlichsba460e42005-07-14 00:33:47 -0700391 if (this_urb->status != 0)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700392 dbg("usb_write %p failed (err=%d)",
393 this_urb, this_urb->status);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700394
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700395 dbg("%s: endpoint %d buf %d", __FUNCTION__,
396 usb_pipeendpoint(this_urb->pipe), i);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700397
Matthias Urlichsba460e42005-07-14 00:33:47 -0700398 /* send the data */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700399 memcpy (this_urb->transfer_buffer, buf, todo);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700400 this_urb->transfer_buffer_length = todo;
401
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700402 this_urb->dev = port->serial->dev;
403 err = usb_submit_urb(this_urb, GFP_ATOMIC);
404 if (err) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700405 dbg("usb_submit_urb %p (write bulk) failed "
406 "(%d, has %d)", this_urb,
407 err, this_urb->status);
Alan Stern59c2afa2007-06-05 16:46:26 -0700408 clear_bit(i, &portdata->out_busy);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700409 continue;
410 }
411 portdata->tx_start_time[i] = jiffies;
412 buf += todo;
413 left -= todo;
414 }
415
416 count -= left;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700417 dbg("%s: wrote (did %d)", __FUNCTION__, count);
418 return count;
419}
420
David Howells7d12e782006-10-05 14:55:46 +0100421static void option_indat_callback(struct urb *urb)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700422{
Alan Cox33f0f882006-01-09 20:54:13 -0800423 int err;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700424 int endpoint;
425 struct usb_serial_port *port;
426 struct tty_struct *tty;
427 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700428 int status = urb->status;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700429
430 dbg("%s: %p", __FUNCTION__, urb);
431
432 endpoint = usb_pipeendpoint(urb->pipe);
433 port = (struct usb_serial_port *) urb->context;
434
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700435 if (status) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700436 dbg("%s: nonzero status: %d on endpoint %02x.",
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700437 __FUNCTION__, status, endpoint);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700438 } else {
439 tty = port->tty;
440 if (urb->actual_length) {
Alan Cox33f0f882006-01-09 20:54:13 -0800441 tty_buffer_request_room(tty, urb->actual_length);
442 tty_insert_flip_string(tty, data, urb->actual_length);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700443 tty_flip_buffer_push(tty);
444 } else {
445 dbg("%s: empty read urb received", __FUNCTION__);
446 }
447
448 /* Resubmit urb so we continue receiving */
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700449 if (port->open_count && status != -ESHUTDOWN) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700450 err = usb_submit_urb(urb, GFP_ATOMIC);
451 if (err)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700452 printk(KERN_ERR "%s: resubmit read urb failed. "
453 "(%d)", __FUNCTION__, err);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700454 }
455 }
456 return;
457}
458
David Howells7d12e782006-10-05 14:55:46 +0100459static void option_outdat_callback(struct urb *urb)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700460{
461 struct usb_serial_port *port;
Alan Stern59c2afa2007-06-05 16:46:26 -0700462 struct option_port_private *portdata;
463 int i;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700464
465 dbg("%s", __FUNCTION__);
466
467 port = (struct usb_serial_port *) urb->context;
468
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700469 usb_serial_port_softint(port);
Alan Stern59c2afa2007-06-05 16:46:26 -0700470
471 portdata = usb_get_serial_port_data(port);
472 for (i = 0; i < N_OUT_URB; ++i) {
473 if (portdata->out_urbs[i] == urb) {
474 smp_mb__before_clear_bit();
475 clear_bit(i, &portdata->out_busy);
476 break;
477 }
478 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700479}
480
David Howells7d12e782006-10-05 14:55:46 +0100481static void option_instat_callback(struct urb *urb)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700482{
483 int err;
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700484 int status = urb->status;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700485 struct usb_serial_port *port = (struct usb_serial_port *) urb->context;
486 struct option_port_private *portdata = usb_get_serial_port_data(port);
487 struct usb_serial *serial = port->serial;
488
489 dbg("%s", __FUNCTION__);
490 dbg("%s: urb %p port %p has data %p", __FUNCTION__,urb,port,portdata);
491
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700492 if (status == 0) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700493 struct usb_ctrlrequest *req_pkt =
494 (struct usb_ctrlrequest *)urb->transfer_buffer;
495
496 if (!req_pkt) {
497 dbg("%s: NULL req_pkt\n", __FUNCTION__);
498 return;
499 }
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700500 if ((req_pkt->bRequestType == 0xA1) &&
501 (req_pkt->bRequest == 0x20)) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700502 int old_dcd_state;
503 unsigned char signals = *((unsigned char *)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700504 urb->transfer_buffer +
505 sizeof(struct usb_ctrlrequest));
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700506
507 dbg("%s: signal x%x", __FUNCTION__, signals);
508
509 old_dcd_state = portdata->dcd_state;
510 portdata->cts_state = 1;
511 portdata->dcd_state = ((signals & 0x01) ? 1 : 0);
512 portdata->dsr_state = ((signals & 0x02) ? 1 : 0);
513 portdata->ri_state = ((signals & 0x08) ? 1 : 0);
514
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700515 if (port->tty && !C_CLOCAL(port->tty) &&
516 old_dcd_state && !portdata->dcd_state)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700517 tty_hangup(port->tty);
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700518 } else {
519 dbg("%s: type %x req %x", __FUNCTION__,
520 req_pkt->bRequestType,req_pkt->bRequest);
521 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700522 } else
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700523 dbg("%s: error %d", __FUNCTION__, status);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700524
525 /* Resubmit urb so we continue receiving IRQ data */
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700526 if (status != -ESHUTDOWN) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700527 urb->dev = serial->dev;
528 err = usb_submit_urb(urb, GFP_ATOMIC);
529 if (err)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700530 dbg("%s: resubmit intr urb failed. (%d)",
531 __FUNCTION__, err);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700532 }
533}
534
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700535static int option_write_room(struct usb_serial_port *port)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700536{
537 struct option_port_private *portdata;
538 int i;
539 int data_len = 0;
540 struct urb *this_urb;
541
542 portdata = usb_get_serial_port_data(port);
543
Matthias Urlichsba460e42005-07-14 00:33:47 -0700544 for (i=0; i < N_OUT_URB; i++) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700545 this_urb = portdata->out_urbs[i];
Alan Stern59c2afa2007-06-05 16:46:26 -0700546 if (this_urb && !test_bit(i, &portdata->out_busy))
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700547 data_len += OUT_BUFLEN;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700548 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700549
550 dbg("%s: %d", __FUNCTION__, data_len);
551 return data_len;
552}
553
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700554static int option_chars_in_buffer(struct usb_serial_port *port)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700555{
556 struct option_port_private *portdata;
557 int i;
558 int data_len = 0;
559 struct urb *this_urb;
560
561 portdata = usb_get_serial_port_data(port);
562
Matthias Urlichsba460e42005-07-14 00:33:47 -0700563 for (i=0; i < N_OUT_URB; i++) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700564 this_urb = portdata->out_urbs[i];
Alan Stern59c2afa2007-06-05 16:46:26 -0700565 if (this_urb && test_bit(i, &portdata->out_busy))
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700566 data_len += this_urb->transfer_buffer_length;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700567 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700568 dbg("%s: %d", __FUNCTION__, data_len);
569 return data_len;
570}
571
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700572static int option_open(struct usb_serial_port *port, struct file *filp)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700573{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700574 struct option_port_private *portdata;
575 struct usb_serial *serial = port->serial;
576 int i, err;
577 struct urb *urb;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700578
579 portdata = usb_get_serial_port_data(port);
580
581 dbg("%s", __FUNCTION__);
582
583 /* Set some sane defaults */
584 portdata->rts_state = 1;
585 portdata->dtr_state = 1;
586
587 /* Reset low level data toggle and start reading from endpoints */
588 for (i = 0; i < N_IN_URB; i++) {
589 urb = portdata->in_urbs[i];
590 if (! urb)
591 continue;
592 if (urb->dev != serial->dev) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700593 dbg("%s: dev %p != %p", __FUNCTION__,
594 urb->dev, serial->dev);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700595 continue;
596 }
597
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700598 /*
599 * make sure endpoint data toggle is synchronized with the
600 * device
601 */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700602 usb_clear_halt(urb->dev, urb->pipe);
603
604 err = usb_submit_urb(urb, GFP_KERNEL);
605 if (err) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700606 dbg("%s: submit urb %d failed (%d) %d",
607 __FUNCTION__, i, err,
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700608 urb->transfer_buffer_length);
609 }
610 }
611
612 /* Reset low level data toggle on out endpoints */
613 for (i = 0; i < N_OUT_URB; i++) {
614 urb = portdata->out_urbs[i];
615 if (! urb)
616 continue;
617 urb->dev = serial->dev;
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700618 /* usb_settoggle(urb->dev, usb_pipeendpoint(urb->pipe),
619 usb_pipeout(urb->pipe), 0); */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700620 }
621
622 port->tty->low_latency = 1;
623
624 option_send_setup(port);
625
626 return (0);
627}
628
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700629static void option_close(struct usb_serial_port *port, struct file *filp)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700630{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700631 int i;
632 struct usb_serial *serial = port->serial;
633 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700634
635 dbg("%s", __FUNCTION__);
636 portdata = usb_get_serial_port_data(port);
637
638 portdata->rts_state = 0;
639 portdata->dtr_state = 0;
640
641 if (serial->dev) {
642 option_send_setup(port);
643
644 /* Stop reading/writing urbs */
645 for (i = 0; i < N_IN_URB; i++)
Oliver Neukum7d28e742007-03-20 13:41:21 +0100646 usb_kill_urb(portdata->in_urbs[i]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700647 for (i = 0; i < N_OUT_URB; i++)
Oliver Neukum7d28e742007-03-20 13:41:21 +0100648 usb_kill_urb(portdata->out_urbs[i]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700649 }
650 port->tty = NULL;
651}
652
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700653/* Helper functions used by option_setup_urbs */
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700654static struct urb *option_setup_urb(struct usb_serial *serial, int endpoint,
655 int dir, void *ctx, char *buf, int len,
David Howells7d12e782006-10-05 14:55:46 +0100656 void (*callback)(struct urb *))
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700657{
658 struct urb *urb;
659
660 if (endpoint == -1)
661 return NULL; /* endpoint not needed */
662
663 urb = usb_alloc_urb(0, GFP_KERNEL); /* No ISO */
664 if (urb == NULL) {
665 dbg("%s: alloc for endpoint %d failed.", __FUNCTION__, endpoint);
666 return NULL;
667 }
668
669 /* Fill URB using supplied data. */
670 usb_fill_bulk_urb(urb, serial->dev,
671 usb_sndbulkpipe(serial->dev, endpoint) | dir,
672 buf, len, callback, ctx);
673
674 return urb;
675}
676
677/* Setup urbs */
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700678static void option_setup_urbs(struct usb_serial *serial)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700679{
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200680 int i,j;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700681 struct usb_serial_port *port;
682 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700683
684 dbg("%s", __FUNCTION__);
685
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200686 for (i = 0; i < serial->num_ports; i++) {
687 port = serial->port[i];
688 portdata = usb_get_serial_port_data(port);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700689
690 /* Do indat endpoints first */
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200691 for (j = 0; j < N_IN_URB; ++j) {
692 portdata->in_urbs[j] = option_setup_urb (serial,
693 port->bulk_in_endpointAddress, USB_DIR_IN, port,
694 portdata->in_buffer[j], IN_BUFLEN, option_indat_callback);
695 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700696
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200697 /* outdat endpoints */
698 for (j = 0; j < N_OUT_URB; ++j) {
699 portdata->out_urbs[j] = option_setup_urb (serial,
700 port->bulk_out_endpointAddress, USB_DIR_OUT, port,
701 portdata->out_buffer[j], OUT_BUFLEN, option_outdat_callback);
702 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700703 }
704}
705
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700706static int option_send_setup(struct usb_serial_port *port)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700707{
708 struct usb_serial *serial = port->serial;
709 struct option_port_private *portdata;
710
711 dbg("%s", __FUNCTION__);
712
Miguel Angel Alvarez8c152712006-12-14 19:49:35 +0100713 if (port->number != 0)
714 return 0;
715
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700716 portdata = usb_get_serial_port_data(port);
717
718 if (port->tty) {
719 int val = 0;
720 if (portdata->dtr_state)
721 val |= 0x01;
722 if (portdata->rts_state)
723 val |= 0x02;
724
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700725 return usb_control_msg(serial->dev,
726 usb_rcvctrlpipe(serial->dev, 0),
727 0x22,0x21,val,0,NULL,0,USB_CTRL_SET_TIMEOUT);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700728 }
729
730 return 0;
731}
732
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700733static int option_startup(struct usb_serial *serial)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700734{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700735 int i, err;
736 struct usb_serial_port *port;
737 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700738
739 dbg("%s", __FUNCTION__);
740
741 /* Now setup per port private data */
742 for (i = 0; i < serial->num_ports; i++) {
743 port = serial->port[i];
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100744 portdata = kzalloc(sizeof(*portdata), GFP_KERNEL);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700745 if (!portdata) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700746 dbg("%s: kmalloc for option_port_private (%d) failed!.",
747 __FUNCTION__, i);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700748 return (1);
749 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700750
751 usb_set_serial_port_data(port, portdata);
752
753 if (! port->interrupt_in_urb)
754 continue;
755 err = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
756 if (err)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700757 dbg("%s: submit irq_in urb failed %d",
758 __FUNCTION__, err);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700759 }
760
761 option_setup_urbs(serial);
762
763 return (0);
764}
765
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700766static void option_shutdown(struct usb_serial *serial)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700767{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700768 int i, j;
769 struct usb_serial_port *port;
770 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700771
772 dbg("%s", __FUNCTION__);
773
774 /* Stop reading/writing urbs */
775 for (i = 0; i < serial->num_ports; ++i) {
776 port = serial->port[i];
777 portdata = usb_get_serial_port_data(port);
778 for (j = 0; j < N_IN_URB; j++)
Oliver Neukum7d28e742007-03-20 13:41:21 +0100779 usb_kill_urb(portdata->in_urbs[j]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700780 for (j = 0; j < N_OUT_URB; j++)
Oliver Neukum7d28e742007-03-20 13:41:21 +0100781 usb_kill_urb(portdata->out_urbs[j]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700782 }
783
784 /* Now free them */
785 for (i = 0; i < serial->num_ports; ++i) {
786 port = serial->port[i];
787 portdata = usb_get_serial_port_data(port);
788
789 for (j = 0; j < N_IN_URB; j++) {
790 if (portdata->in_urbs[j]) {
791 usb_free_urb(portdata->in_urbs[j]);
792 portdata->in_urbs[j] = NULL;
793 }
794 }
795 for (j = 0; j < N_OUT_URB; j++) {
796 if (portdata->out_urbs[j]) {
797 usb_free_urb(portdata->out_urbs[j]);
798 portdata->out_urbs[j] = NULL;
799 }
800 }
801 }
802
803 /* Now free per port private data */
804 for (i = 0; i < serial->num_ports; i++) {
805 port = serial->port[i];
806 kfree(usb_get_serial_port_data(port));
807 }
808}
809
810MODULE_AUTHOR(DRIVER_AUTHOR);
811MODULE_DESCRIPTION(DRIVER_DESC);
812MODULE_VERSION(DRIVER_VERSION);
813MODULE_LICENSE("GPL");
814
Matthias Urlichsba460e42005-07-14 00:33:47 -0700815#ifdef CONFIG_USB_DEBUG
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700816module_param(debug, bool, S_IRUGO | S_IWUSR);
817MODULE_PARM_DESC(debug, "Debug messages");
Matthias Urlichsba460e42005-07-14 00:33:47 -0700818#endif
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700819