blob: 0fed43a96871d0967f4b2d4ee7a13695ea46b2e0 [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>
41#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070042#include <linux/usb/serial.h>
Matthias Urlichs58cfe912005-05-23 17:00:48 -070043
44/* Function prototypes */
Andrew Morton7bb75ae2005-07-27 01:08:30 -070045static int option_open(struct usb_serial_port *port, struct file *filp);
46static void option_close(struct usb_serial_port *port, struct file *filp);
47static int option_startup(struct usb_serial *serial);
48static void option_shutdown(struct usb_serial *serial);
49static void option_rx_throttle(struct usb_serial_port *port);
50static void option_rx_unthrottle(struct usb_serial_port *port);
51static int option_write_room(struct usb_serial_port *port);
Matthias Urlichs58cfe912005-05-23 17:00:48 -070052
David Howells7d12e782006-10-05 14:55:46 +010053static void option_instat_callback(struct urb *urb);
Matthias Urlichs58cfe912005-05-23 17:00:48 -070054
Andrew Morton7bb75ae2005-07-27 01:08:30 -070055static int option_write(struct usb_serial_port *port,
56 const unsigned char *buf, int count);
Matthias Urlichs58cfe912005-05-23 17:00:48 -070057
Andrew Morton7bb75ae2005-07-27 01:08:30 -070058static int option_chars_in_buffer(struct usb_serial_port *port);
59static int option_ioctl(struct usb_serial_port *port, struct file *file,
60 unsigned int cmd, unsigned long arg);
61static void option_set_termios(struct usb_serial_port *port,
Alan Cox606d0992006-12-08 02:38:45 -080062 struct ktermios *old);
Andrew Morton7bb75ae2005-07-27 01:08:30 -070063static void option_break_ctl(struct usb_serial_port *port, int break_state);
64static int option_tiocmget(struct usb_serial_port *port, struct file *file);
65static int option_tiocmset(struct usb_serial_port *port, struct file *file,
66 unsigned int set, unsigned int clear);
67static int option_send_setup(struct usb_serial_port *port);
Matthias Urlichs58cfe912005-05-23 17:00:48 -070068
69/* Vendor and product IDs */
Matthias Urlichs14f76cc2006-06-02 11:48:56 +020070#define OPTION_VENDOR_ID 0x0AF0
71#define HUAWEI_VENDOR_ID 0x12D1
72#define AUDIOVOX_VENDOR_ID 0x0F3D
Matthias Urlichs14f76cc2006-06-02 11:48:56 +020073#define NOVATELWIRELESS_VENDOR_ID 0x1410
Matthias Urlichs31fcbb72006-07-12 08:35:29 +020074#define ANYDATA_VENDOR_ID 0x16d5
Matthias Urlichs58cfe912005-05-23 17:00:48 -070075
Matthias Urlichs14f76cc2006-06-02 11:48:56 +020076#define OPTION_PRODUCT_OLD 0x5000
77#define OPTION_PRODUCT_FUSION 0x6000
78#define OPTION_PRODUCT_FUSION2 0x6300
79#define OPTION_PRODUCT_COBRA 0x6500
Matthias Urlichse37de9e2006-07-06 13:12:53 +020080#define OPTION_PRODUCT_COBRA2 0x6600
garrett_damore@tadpole.com53e8f842007-01-12 17:10:28 -080081#define OPTION_PRODUCT_GTMAX36 0x6701
Matthias Urlichs14f76cc2006-06-02 11:48:56 +020082#define HUAWEI_PRODUCT_E600 0x1001
Johann Wilhelmab195892006-12-02 07:25:31 +010083#define HUAWEI_PRODUCT_E220 0x1003
Matthias Urlichs14f76cc2006-06-02 11:48:56 +020084#define AUDIOVOX_PRODUCT_AIRCARD 0x0112
Matthias Urlichs14f76cc2006-06-02 11:48:56 +020085#define NOVATELWIRELESS_PRODUCT_U740 0x1400
Matthias Urlichs31fcbb72006-07-12 08:35:29 +020086#define ANYDATA_PRODUCT_ID 0x6501
Matthias Urlichsba460e42005-07-14 00:33:47 -070087
Matthias Urlichs58cfe912005-05-23 17:00:48 -070088static struct usb_device_id option_ids[] = {
89 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_OLD) },
Matthias Urlichsba460e42005-07-14 00:33:47 -070090 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUSION) },
91 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUSION2) },
Matthias Urlichs14f76cc2006-06-02 11:48:56 +020092 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA) },
Matthias Urlichse37de9e2006-07-06 13:12:53 +020093 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA2) },
garrett_damore@tadpole.com53e8f842007-01-12 17:10:28 -080094 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GTMAX36) },
Matthias Urlichsb6137382005-09-22 00:48:40 -070095 { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E600) },
Johann Wilhelmab195892006-12-02 07:25:31 +010096 { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220) },
Matthias Urlichsb6137382005-09-22 00:48:40 -070097 { USB_DEVICE(AUDIOVOX_VENDOR_ID, AUDIOVOX_PRODUCT_AIRCARD) },
Matthias Urlichs14f76cc2006-06-02 11:48:56 +020098 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID,NOVATELWIRELESS_PRODUCT_U740) },
Matthias Urlichs31fcbb72006-07-12 08:35:29 +020099 { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ID) },
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200100 { } /* Terminating entry */
101};
102
103static struct usb_device_id option_ids1[] = {
104 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_OLD) },
105 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUSION) },
106 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUSION2) },
107 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA) },
Matthias Urlichse37de9e2006-07-06 13:12:53 +0200108 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA2) },
garrett_damore@tadpole.com53e8f842007-01-12 17:10:28 -0800109 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GTMAX36) },
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200110 { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E600) },
Johann Wilhelmab195892006-12-02 07:25:31 +0100111 { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220) },
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200112 { USB_DEVICE(AUDIOVOX_VENDOR_ID, AUDIOVOX_PRODUCT_AIRCARD) },
113 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID,NOVATELWIRELESS_PRODUCT_U740) },
Matthias Urlichs31fcbb72006-07-12 08:35:29 +0200114 { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ID) },
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200115 { } /* Terminating entry */
116};
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700117
118MODULE_DEVICE_TABLE(usb, option_ids);
119
120static struct usb_driver option_driver = {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700121 .name = "option",
122 .probe = usb_serial_probe,
123 .disconnect = usb_serial_disconnect,
124 .id_table = option_ids,
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800125 .no_dynamic_id = 1,
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700126};
127
Uwe Zeisbergerc30fe7f2006-03-24 18:23:14 +0100128/* The card has three separate interfaces, which the serial driver
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700129 * recognizes separately, thus num_port=1.
130 */
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200131
132static struct usb_serial_driver option_1port_device = {
133 .driver = {
134 .owner = THIS_MODULE,
Matthias Urlichs02b2ac52006-08-02 16:41:41 -0700135 .name = "option1",
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200136 },
137 .description = "GSM modem (1-port)",
138 .id_table = option_ids1,
139 .num_interrupt_in = NUM_DONT_CARE,
140 .num_bulk_in = NUM_DONT_CARE,
141 .num_bulk_out = NUM_DONT_CARE,
142 .num_ports = 1,
Matthias Urlichsba460e42005-07-14 00:33:47 -0700143 .open = option_open,
144 .close = option_close,
145 .write = option_write,
146 .write_room = option_write_room,
147 .chars_in_buffer = option_chars_in_buffer,
148 .throttle = option_rx_throttle,
149 .unthrottle = option_rx_unthrottle,
150 .ioctl = option_ioctl,
151 .set_termios = option_set_termios,
152 .break_ctl = option_break_ctl,
153 .tiocmget = option_tiocmget,
154 .tiocmset = option_tiocmset,
155 .attach = option_startup,
156 .shutdown = option_shutdown,
157 .read_int_callback = option_instat_callback,
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700158};
159
Matthias Urlichsba460e42005-07-14 00:33:47 -0700160#ifdef CONFIG_USB_DEBUG
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700161static int debug;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700162#else
163#define debug 0
164#endif
165
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700166/* per port private data */
167
Matthias Urlichsba460e42005-07-14 00:33:47 -0700168#define N_IN_URB 4
169#define N_OUT_URB 1
Matthias Urlichsb27c73d2005-09-22 00:49:33 -0700170#define IN_BUFLEN 4096
Matthias Urlichsba460e42005-07-14 00:33:47 -0700171#define OUT_BUFLEN 128
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700172
173struct option_port_private {
174 /* Input endpoints and buffer for this port */
Matthias Urlichsba460e42005-07-14 00:33:47 -0700175 struct urb *in_urbs[N_IN_URB];
176 char in_buffer[N_IN_URB][IN_BUFLEN];
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700177 /* Output endpoints and buffer for this port */
Matthias Urlichsba460e42005-07-14 00:33:47 -0700178 struct urb *out_urbs[N_OUT_URB];
179 char out_buffer[N_OUT_URB][OUT_BUFLEN];
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700180
181 /* Settings for the port */
Matthias Urlichsba460e42005-07-14 00:33:47 -0700182 int rts_state; /* Handshaking pins (outputs) */
183 int dtr_state;
184 int cts_state; /* Handshaking pins (inputs) */
185 int dsr_state;
186 int dcd_state;
187 int ri_state;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700188
Matthias Urlichsba460e42005-07-14 00:33:47 -0700189 unsigned long tx_start_time[N_OUT_URB];
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700190};
191
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700192/* Functions used by new usb-serial code. */
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700193static int __init option_init(void)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700194{
195 int retval;
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200196 retval = usb_serial_register(&option_1port_device);
197 if (retval)
198 goto failed_1port_device_register;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700199 retval = usb_register(&option_driver);
200 if (retval)
201 goto failed_driver_register;
202
203 info(DRIVER_DESC ": " DRIVER_VERSION);
204
205 return 0;
206
207failed_driver_register:
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200208 usb_serial_deregister (&option_1port_device);
209failed_1port_device_register:
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700210 return retval;
211}
212
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700213static void __exit option_exit(void)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700214{
215 usb_deregister (&option_driver);
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200216 usb_serial_deregister (&option_1port_device);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700217}
218
219module_init(option_init);
220module_exit(option_exit);
221
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700222static void option_rx_throttle(struct usb_serial_port *port)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700223{
224 dbg("%s", __FUNCTION__);
225}
226
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700227static void option_rx_unthrottle(struct usb_serial_port *port)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700228{
229 dbg("%s", __FUNCTION__);
230}
231
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700232static void option_break_ctl(struct usb_serial_port *port, int break_state)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700233{
234 /* Unfortunately, I don't know how to send a break */
Matthias Urlichsba460e42005-07-14 00:33:47 -0700235 dbg("%s", __FUNCTION__);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700236}
237
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700238static void option_set_termios(struct usb_serial_port *port,
Alan Cox606d0992006-12-08 02:38:45 -0800239 struct ktermios *old_termios)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700240{
241 dbg("%s", __FUNCTION__);
242
243 option_send_setup(port);
244}
245
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700246static int option_tiocmget(struct usb_serial_port *port, struct file *file)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700247{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700248 unsigned int value;
249 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700250
251 portdata = usb_get_serial_port_data(port);
252
253 value = ((portdata->rts_state) ? TIOCM_RTS : 0) |
254 ((portdata->dtr_state) ? TIOCM_DTR : 0) |
255 ((portdata->cts_state) ? TIOCM_CTS : 0) |
256 ((portdata->dsr_state) ? TIOCM_DSR : 0) |
257 ((portdata->dcd_state) ? TIOCM_CAR : 0) |
258 ((portdata->ri_state) ? TIOCM_RNG : 0);
259
260 return value;
261}
262
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700263static int option_tiocmset(struct usb_serial_port *port, struct file *file,
264 unsigned int set, unsigned int clear)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700265{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700266 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700267
268 portdata = usb_get_serial_port_data(port);
269
270 if (set & TIOCM_RTS)
271 portdata->rts_state = 1;
272 if (set & TIOCM_DTR)
273 portdata->dtr_state = 1;
274
275 if (clear & TIOCM_RTS)
276 portdata->rts_state = 0;
277 if (clear & TIOCM_DTR)
278 portdata->dtr_state = 0;
279 return option_send_setup(port);
280}
281
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700282static int option_ioctl(struct usb_serial_port *port, struct file *file,
283 unsigned int cmd, unsigned long arg)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700284{
285 return -ENOIOCTLCMD;
286}
287
288/* Write */
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700289static int option_write(struct usb_serial_port *port,
290 const unsigned char *buf, int count)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700291{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700292 struct option_port_private *portdata;
293 int i;
294 int left, todo;
295 struct urb *this_urb = NULL; /* spurious */
296 int err;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700297
298 portdata = usb_get_serial_port_data(port);
299
300 dbg("%s: write (%d chars)", __FUNCTION__, count);
301
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700302 i = 0;
303 left = count;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700304 for (i=0; left > 0 && i < N_OUT_URB; i++) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700305 todo = left;
306 if (todo > OUT_BUFLEN)
307 todo = OUT_BUFLEN;
308
Matthias Urlichsba460e42005-07-14 00:33:47 -0700309 this_urb = portdata->out_urbs[i];
310 if (this_urb->status == -EINPROGRESS) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700311 if (time_before(jiffies,
312 portdata->tx_start_time[i] + 10 * HZ))
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700313 continue;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700314 usb_unlink_urb(this_urb);
Matthias Urlichsba460e42005-07-14 00:33:47 -0700315 continue;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700316 }
Matthias Urlichsba460e42005-07-14 00:33:47 -0700317 if (this_urb->status != 0)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700318 dbg("usb_write %p failed (err=%d)",
319 this_urb, this_urb->status);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700320
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700321 dbg("%s: endpoint %d buf %d", __FUNCTION__,
322 usb_pipeendpoint(this_urb->pipe), i);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700323
Matthias Urlichsba460e42005-07-14 00:33:47 -0700324 /* send the data */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700325 memcpy (this_urb->transfer_buffer, buf, todo);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700326 this_urb->transfer_buffer_length = todo;
327
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700328 this_urb->dev = port->serial->dev;
329 err = usb_submit_urb(this_urb, GFP_ATOMIC);
330 if (err) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700331 dbg("usb_submit_urb %p (write bulk) failed "
332 "(%d, has %d)", this_urb,
333 err, this_urb->status);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700334 continue;
335 }
336 portdata->tx_start_time[i] = jiffies;
337 buf += todo;
338 left -= todo;
339 }
340
341 count -= left;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700342 dbg("%s: wrote (did %d)", __FUNCTION__, count);
343 return count;
344}
345
David Howells7d12e782006-10-05 14:55:46 +0100346static void option_indat_callback(struct urb *urb)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700347{
Alan Cox33f0f882006-01-09 20:54:13 -0800348 int err;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700349 int endpoint;
350 struct usb_serial_port *port;
351 struct tty_struct *tty;
352 unsigned char *data = urb->transfer_buffer;
353
354 dbg("%s: %p", __FUNCTION__, urb);
355
356 endpoint = usb_pipeendpoint(urb->pipe);
357 port = (struct usb_serial_port *) urb->context;
358
359 if (urb->status) {
360 dbg("%s: nonzero status: %d on endpoint %02x.",
361 __FUNCTION__, urb->status, endpoint);
362 } else {
363 tty = port->tty;
364 if (urb->actual_length) {
Alan Cox33f0f882006-01-09 20:54:13 -0800365 tty_buffer_request_room(tty, urb->actual_length);
366 tty_insert_flip_string(tty, data, urb->actual_length);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700367 tty_flip_buffer_push(tty);
368 } else {
369 dbg("%s: empty read urb received", __FUNCTION__);
370 }
371
372 /* Resubmit urb so we continue receiving */
373 if (port->open_count && urb->status != -ESHUTDOWN) {
374 err = usb_submit_urb(urb, GFP_ATOMIC);
375 if (err)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700376 printk(KERN_ERR "%s: resubmit read urb failed. "
377 "(%d)", __FUNCTION__, err);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700378 }
379 }
380 return;
381}
382
David Howells7d12e782006-10-05 14:55:46 +0100383static void option_outdat_callback(struct urb *urb)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700384{
385 struct usb_serial_port *port;
386
387 dbg("%s", __FUNCTION__);
388
389 port = (struct usb_serial_port *) urb->context;
390
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700391 usb_serial_port_softint(port);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700392}
393
David Howells7d12e782006-10-05 14:55:46 +0100394static void option_instat_callback(struct urb *urb)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700395{
396 int err;
397 struct usb_serial_port *port = (struct usb_serial_port *) urb->context;
398 struct option_port_private *portdata = usb_get_serial_port_data(port);
399 struct usb_serial *serial = port->serial;
400
401 dbg("%s", __FUNCTION__);
402 dbg("%s: urb %p port %p has data %p", __FUNCTION__,urb,port,portdata);
403
404 if (urb->status == 0) {
405 struct usb_ctrlrequest *req_pkt =
406 (struct usb_ctrlrequest *)urb->transfer_buffer;
407
408 if (!req_pkt) {
409 dbg("%s: NULL req_pkt\n", __FUNCTION__);
410 return;
411 }
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700412 if ((req_pkt->bRequestType == 0xA1) &&
413 (req_pkt->bRequest == 0x20)) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700414 int old_dcd_state;
415 unsigned char signals = *((unsigned char *)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700416 urb->transfer_buffer +
417 sizeof(struct usb_ctrlrequest));
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700418
419 dbg("%s: signal x%x", __FUNCTION__, signals);
420
421 old_dcd_state = portdata->dcd_state;
422 portdata->cts_state = 1;
423 portdata->dcd_state = ((signals & 0x01) ? 1 : 0);
424 portdata->dsr_state = ((signals & 0x02) ? 1 : 0);
425 portdata->ri_state = ((signals & 0x08) ? 1 : 0);
426
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700427 if (port->tty && !C_CLOCAL(port->tty) &&
428 old_dcd_state && !portdata->dcd_state)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700429 tty_hangup(port->tty);
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700430 } else {
431 dbg("%s: type %x req %x", __FUNCTION__,
432 req_pkt->bRequestType,req_pkt->bRequest);
433 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700434 } else
435 dbg("%s: error %d", __FUNCTION__, urb->status);
436
437 /* Resubmit urb so we continue receiving IRQ data */
438 if (urb->status != -ESHUTDOWN) {
439 urb->dev = serial->dev;
440 err = usb_submit_urb(urb, GFP_ATOMIC);
441 if (err)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700442 dbg("%s: resubmit intr urb failed. (%d)",
443 __FUNCTION__, err);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700444 }
445}
446
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700447static int option_write_room(struct usb_serial_port *port)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700448{
449 struct option_port_private *portdata;
450 int i;
451 int data_len = 0;
452 struct urb *this_urb;
453
454 portdata = usb_get_serial_port_data(port);
455
Matthias Urlichsba460e42005-07-14 00:33:47 -0700456 for (i=0; i < N_OUT_URB; i++) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700457 this_urb = portdata->out_urbs[i];
458 if (this_urb && this_urb->status != -EINPROGRESS)
459 data_len += OUT_BUFLEN;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700460 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700461
462 dbg("%s: %d", __FUNCTION__, data_len);
463 return data_len;
464}
465
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700466static int option_chars_in_buffer(struct usb_serial_port *port)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700467{
468 struct option_port_private *portdata;
469 int i;
470 int data_len = 0;
471 struct urb *this_urb;
472
473 portdata = usb_get_serial_port_data(port);
474
Matthias Urlichsba460e42005-07-14 00:33:47 -0700475 for (i=0; i < N_OUT_URB; i++) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700476 this_urb = portdata->out_urbs[i];
477 if (this_urb && this_urb->status == -EINPROGRESS)
478 data_len += this_urb->transfer_buffer_length;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700479 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700480 dbg("%s: %d", __FUNCTION__, data_len);
481 return data_len;
482}
483
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700484static int option_open(struct usb_serial_port *port, struct file *filp)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700485{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700486 struct option_port_private *portdata;
487 struct usb_serial *serial = port->serial;
488 int i, err;
489 struct urb *urb;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700490
491 portdata = usb_get_serial_port_data(port);
492
493 dbg("%s", __FUNCTION__);
494
495 /* Set some sane defaults */
496 portdata->rts_state = 1;
497 portdata->dtr_state = 1;
498
499 /* Reset low level data toggle and start reading from endpoints */
500 for (i = 0; i < N_IN_URB; i++) {
501 urb = portdata->in_urbs[i];
502 if (! urb)
503 continue;
504 if (urb->dev != serial->dev) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700505 dbg("%s: dev %p != %p", __FUNCTION__,
506 urb->dev, serial->dev);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700507 continue;
508 }
509
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700510 /*
511 * make sure endpoint data toggle is synchronized with the
512 * device
513 */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700514 usb_clear_halt(urb->dev, urb->pipe);
515
516 err = usb_submit_urb(urb, GFP_KERNEL);
517 if (err) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700518 dbg("%s: submit urb %d failed (%d) %d",
519 __FUNCTION__, i, err,
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700520 urb->transfer_buffer_length);
521 }
522 }
523
524 /* Reset low level data toggle on out endpoints */
525 for (i = 0; i < N_OUT_URB; i++) {
526 urb = portdata->out_urbs[i];
527 if (! urb)
528 continue;
529 urb->dev = serial->dev;
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700530 /* usb_settoggle(urb->dev, usb_pipeendpoint(urb->pipe),
531 usb_pipeout(urb->pipe), 0); */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700532 }
533
534 port->tty->low_latency = 1;
535
536 option_send_setup(port);
537
538 return (0);
539}
540
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700541static inline void stop_urb(struct urb *urb)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700542{
Greg Kroah-Hartman242cf672005-07-29 16:11:07 -0400543 if (urb && urb->status == -EINPROGRESS)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700544 usb_kill_urb(urb);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700545}
546
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700547static void option_close(struct usb_serial_port *port, struct file *filp)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700548{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700549 int i;
550 struct usb_serial *serial = port->serial;
551 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700552
553 dbg("%s", __FUNCTION__);
554 portdata = usb_get_serial_port_data(port);
555
556 portdata->rts_state = 0;
557 portdata->dtr_state = 0;
558
559 if (serial->dev) {
560 option_send_setup(port);
561
562 /* Stop reading/writing urbs */
563 for (i = 0; i < N_IN_URB; i++)
564 stop_urb(portdata->in_urbs[i]);
565 for (i = 0; i < N_OUT_URB; i++)
566 stop_urb(portdata->out_urbs[i]);
567 }
568 port->tty = NULL;
569}
570
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700571/* Helper functions used by option_setup_urbs */
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700572static struct urb *option_setup_urb(struct usb_serial *serial, int endpoint,
573 int dir, void *ctx, char *buf, int len,
David Howells7d12e782006-10-05 14:55:46 +0100574 void (*callback)(struct urb *))
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700575{
576 struct urb *urb;
577
578 if (endpoint == -1)
579 return NULL; /* endpoint not needed */
580
581 urb = usb_alloc_urb(0, GFP_KERNEL); /* No ISO */
582 if (urb == NULL) {
583 dbg("%s: alloc for endpoint %d failed.", __FUNCTION__, endpoint);
584 return NULL;
585 }
586
587 /* Fill URB using supplied data. */
588 usb_fill_bulk_urb(urb, serial->dev,
589 usb_sndbulkpipe(serial->dev, endpoint) | dir,
590 buf, len, callback, ctx);
591
592 return urb;
593}
594
595/* Setup urbs */
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700596static void option_setup_urbs(struct usb_serial *serial)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700597{
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200598 int i,j;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700599 struct usb_serial_port *port;
600 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700601
602 dbg("%s", __FUNCTION__);
603
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200604 for (i = 0; i < serial->num_ports; i++) {
605 port = serial->port[i];
606 portdata = usb_get_serial_port_data(port);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700607
608 /* Do indat endpoints first */
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200609 for (j = 0; j < N_IN_URB; ++j) {
610 portdata->in_urbs[j] = option_setup_urb (serial,
611 port->bulk_in_endpointAddress, USB_DIR_IN, port,
612 portdata->in_buffer[j], IN_BUFLEN, option_indat_callback);
613 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700614
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200615 /* outdat endpoints */
616 for (j = 0; j < N_OUT_URB; ++j) {
617 portdata->out_urbs[j] = option_setup_urb (serial,
618 port->bulk_out_endpointAddress, USB_DIR_OUT, port,
619 portdata->out_buffer[j], OUT_BUFLEN, option_outdat_callback);
620 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700621 }
622}
623
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700624static int option_send_setup(struct usb_serial_port *port)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700625{
626 struct usb_serial *serial = port->serial;
627 struct option_port_private *portdata;
628
629 dbg("%s", __FUNCTION__);
630
Miguel Angel Alvarez8c152712006-12-14 19:49:35 +0100631 if (port->number != 0)
632 return 0;
633
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700634 portdata = usb_get_serial_port_data(port);
635
636 if (port->tty) {
637 int val = 0;
638 if (portdata->dtr_state)
639 val |= 0x01;
640 if (portdata->rts_state)
641 val |= 0x02;
642
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700643 return usb_control_msg(serial->dev,
644 usb_rcvctrlpipe(serial->dev, 0),
645 0x22,0x21,val,0,NULL,0,USB_CTRL_SET_TIMEOUT);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700646 }
647
648 return 0;
649}
650
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700651static int option_startup(struct usb_serial *serial)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700652{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700653 int i, err;
654 struct usb_serial_port *port;
655 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700656
657 dbg("%s", __FUNCTION__);
658
659 /* Now setup per port private data */
660 for (i = 0; i < serial->num_ports; i++) {
661 port = serial->port[i];
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100662 portdata = kzalloc(sizeof(*portdata), GFP_KERNEL);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700663 if (!portdata) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700664 dbg("%s: kmalloc for option_port_private (%d) failed!.",
665 __FUNCTION__, i);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700666 return (1);
667 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700668
669 usb_set_serial_port_data(port, portdata);
670
671 if (! port->interrupt_in_urb)
672 continue;
673 err = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
674 if (err)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700675 dbg("%s: submit irq_in urb failed %d",
676 __FUNCTION__, err);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700677 }
678
679 option_setup_urbs(serial);
680
681 return (0);
682}
683
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700684static void option_shutdown(struct usb_serial *serial)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700685{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700686 int i, j;
687 struct usb_serial_port *port;
688 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700689
690 dbg("%s", __FUNCTION__);
691
692 /* Stop reading/writing urbs */
693 for (i = 0; i < serial->num_ports; ++i) {
694 port = serial->port[i];
695 portdata = usb_get_serial_port_data(port);
696 for (j = 0; j < N_IN_URB; j++)
697 stop_urb(portdata->in_urbs[j]);
698 for (j = 0; j < N_OUT_URB; j++)
699 stop_urb(portdata->out_urbs[j]);
700 }
701
702 /* Now free them */
703 for (i = 0; i < serial->num_ports; ++i) {
704 port = serial->port[i];
705 portdata = usb_get_serial_port_data(port);
706
707 for (j = 0; j < N_IN_URB; j++) {
708 if (portdata->in_urbs[j]) {
709 usb_free_urb(portdata->in_urbs[j]);
710 portdata->in_urbs[j] = NULL;
711 }
712 }
713 for (j = 0; j < N_OUT_URB; j++) {
714 if (portdata->out_urbs[j]) {
715 usb_free_urb(portdata->out_urbs[j]);
716 portdata->out_urbs[j] = NULL;
717 }
718 }
719 }
720
721 /* Now free per port private data */
722 for (i = 0; i < serial->num_ports; i++) {
723 port = serial->port[i];
724 kfree(usb_get_serial_port_data(port));
725 }
726}
727
728MODULE_AUTHOR(DRIVER_AUTHOR);
729MODULE_DESCRIPTION(DRIVER_DESC);
730MODULE_VERSION(DRIVER_VERSION);
731MODULE_LICENSE("GPL");
732
Matthias Urlichsba460e42005-07-14 00:33:47 -0700733#ifdef CONFIG_USB_DEBUG
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700734module_param(debug, bool, S_IRUGO | S_IWUSR);
735MODULE_PARM_DESC(debug, "Debug messages");
Matthias Urlichsba460e42005-07-14 00:33:47 -0700736#endif
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700737