blob: 8c892e54d209b2ce906be7824009b6ad492c3998 [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
Dan Williams564d61d2008-02-19 13:15:30 -0500116#define KYOCERA_VENDOR_ID 0x0c88
117#define KYOCERA_PRODUCT_KPC680 0x180a
118
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800119#define ANYDATA_VENDOR_ID 0x16d5
Alexander Gattin46269db2007-06-20 00:48:10 +0300120#define ANYDATA_PRODUCT_ADU_E100A 0x6501
121#define ANYDATA_PRODUCT_ADU_500A 0x6502
Matthias Urlichsba460e42005-07-14 00:33:47 -0700122
Leon Leong3f6e5842007-04-26 00:38:02 -0700123#define BANDRICH_VENDOR_ID 0x1A8D
124#define BANDRICH_PRODUCT_C100_1 0x1002
125#define BANDRICH_PRODUCT_C100_2 0x1003
126
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700127static struct usb_device_id option_ids[] = {
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800128 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COLT) },
129 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA) },
130 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_LIGHT) },
131 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_QUAD) },
132 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_QUAD_LIGHT) },
133 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS) },
134 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_LIGHT) },
135 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_QUAD) },
136 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_QUAD_LIGHT) },
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200137 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA) },
Greg Kroah-Hartmanfd978bf2007-02-21 12:53:17 -0800138 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA_BUS) },
139 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_VIPER) },
140 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_VIPER_BUS) },
141 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GT_MAX_READY) },
142 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GT_MAX) },
143 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_LIGHT) },
144 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_GT) },
145 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_EX) },
146 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_NETWORK_LIGHT) },
147 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_NETWORK_GT) },
148 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_NETWORK_EX) },
149 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_KOI_MODEM) },
150 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_KOI_NETWORK) },
151 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_SCORPION_MODEM) },
152 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_SCORPION_NETWORK) },
153 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM) },
154 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_NETWORK) },
155 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_LITE) },
156 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_GT) },
157 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_EX) },
158 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_NETWORK_LITE) },
159 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_NETWORK_GT) },
160 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_NETWORK_EX) },
161 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_KOI_MODEM) },
162 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_KOI_NETWORK) },
Matthias Urlichsb6137382005-09-22 00:48:40 -0700163 { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E600) },
Jaime Velasco Juanb5ce18a2007-11-30 16:30:11 +0000164 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220, 0xff, 0xff, 0xff) },
165 { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220BIS, 0xff, 0xff, 0xff) },
Greg Kroah-Hartman69806d52007-03-19 13:39:51 -0700166 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1100) }, /* Novatel Merlin XS620/S640 */
167 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1110) }, /* Novatel Merlin S620 */
168 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1120) }, /* Novatel Merlin EX720 */
169 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1130) }, /* Novatel Merlin S720 */
170 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1400) }, /* Novatel U730 */
171 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1410) }, /* Novatel U740 */
172 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1420) }, /* Novatel EU870 */
173 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1430) }, /* Novatel Merlin XU870 HSDPA/3G */
Greg Kroah-Hartman69806d52007-03-19 13:39:51 -0700174 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x2100) }, /* Novatel EV620 CDMA/EV-DO */
175 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x2110) }, /* Novatel Merlin ES620 / Merlin ES720 / Ovation U720 */
176 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x2130) }, /* Novatel Merlin ES620 SM Bus */
177 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x2410) }, /* Novatel EU740 */
Greg Kroah-Hartman3657f6c2002-04-09 12:14:34 -0700178 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x4100) }, /* Novatel U727 */
179 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x4400) }, /* Novatel MC950 */
Warren Turkal7f4a9e82008-02-14 14:01:46 -0800180 { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x5010) }, /* Novatel U727 */
Faidon Liambotis96443212007-08-07 05:46:05 +0300181 { USB_DEVICE(DELL_VENDOR_ID, 0x8114) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO Mini-Card == Novatel Expedite EV620 CDMA/EV-DO */
182 { USB_DEVICE(DELL_VENDOR_ID, 0x8115) }, /* Dell Wireless 5500 Mobile Broadband HSDPA Mini-Card == Novatel Expedite EU740 HSDPA/3G */
183 { USB_DEVICE(DELL_VENDOR_ID, 0x8116) }, /* Dell Wireless 5505 Mobile Broadband HSDPA Mini-Card == Novatel Expedite EU740 HSDPA/3G */
184 { USB_DEVICE(DELL_VENDOR_ID, 0x8117) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO ExpressCard == Novatel Merlin XV620 CDMA/EV-DO */
185 { USB_DEVICE(DELL_VENDOR_ID, 0x8118) }, /* Dell Wireless 5510 Mobile Broadband HSDPA ExpressCard == Novatel Merlin XU870 HSDPA/3G */
186 { USB_DEVICE(DELL_VENDOR_ID, 0x8128) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO Mini-Card == Novatel Expedite E720 CDMA/EV-DO */
Andy Shevchenko59036e92008-02-04 23:57:49 -0800187 { USB_DEVICE(DELL_VENDOR_ID, 0x8129) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO Mini-Card == Novatel Expedite ET620 CDMA/EV-DO */
Stefan Baderaa59e052008-02-05 15:25:35 -0500188 { USB_DEVICE(DELL_VENDOR_ID, 0x8133) }, /* Dell Wireless 5720 == Novatel EV620 CDMA/EV-DO */
189 { USB_DEVICE(DELL_VENDOR_ID, 0x8136) }, /* Dell Wireless HSDPA 5520 == Novatel Expedite EU860D */
Greg Kroah-Hartman2c4cd1f2007-08-30 19:02:10 +0200190 { USB_DEVICE(DELL_VENDOR_ID, 0x8137) }, /* Dell Wireless HSDPA 5520 */
Alexander Gattin46269db2007-06-20 00:48:10 +0300191 { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_E100A) },
192 { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_500A) },
Leon Leong3f6e5842007-04-26 00:38:02 -0700193 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_C100_1) },
194 { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_C100_2) },
Dan Williams564d61d2008-02-19 13:15:30 -0500195 { USB_DEVICE(KYOCERA_VENDOR_ID, KYOCERA_PRODUCT_KPC680) },
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200196 { } /* Terminating entry */
197};
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700198MODULE_DEVICE_TABLE(usb, option_ids);
199
200static struct usb_driver option_driver = {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700201 .name = "option",
202 .probe = usb_serial_probe,
203 .disconnect = usb_serial_disconnect,
204 .id_table = option_ids,
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800205 .no_dynamic_id = 1,
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700206};
207
Uwe Zeisbergerc30fe7f2006-03-24 18:23:14 +0100208/* The card has three separate interfaces, which the serial driver
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700209 * recognizes separately, thus num_port=1.
210 */
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200211
212static struct usb_serial_driver option_1port_device = {
213 .driver = {
214 .owner = THIS_MODULE,
Matthias Urlichs02b2ac52006-08-02 16:41:41 -0700215 .name = "option1",
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200216 },
217 .description = "GSM modem (1-port)",
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100218 .usb_driver = &option_driver,
Greg Kroah-Hartmanb656b2c2007-02-21 12:53:17 -0800219 .id_table = option_ids,
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200220 .num_interrupt_in = NUM_DONT_CARE,
221 .num_bulk_in = NUM_DONT_CARE,
222 .num_bulk_out = NUM_DONT_CARE,
223 .num_ports = 1,
Matthias Urlichsba460e42005-07-14 00:33:47 -0700224 .open = option_open,
225 .close = option_close,
226 .write = option_write,
227 .write_room = option_write_room,
228 .chars_in_buffer = option_chars_in_buffer,
229 .throttle = option_rx_throttle,
230 .unthrottle = option_rx_unthrottle,
231 .ioctl = option_ioctl,
232 .set_termios = option_set_termios,
233 .break_ctl = option_break_ctl,
234 .tiocmget = option_tiocmget,
235 .tiocmset = option_tiocmset,
236 .attach = option_startup,
237 .shutdown = option_shutdown,
238 .read_int_callback = option_instat_callback,
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700239};
240
Matthias Urlichsba460e42005-07-14 00:33:47 -0700241#ifdef CONFIG_USB_DEBUG
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700242static int debug;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700243#else
244#define debug 0
245#endif
246
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700247/* per port private data */
248
Matthias Urlichsba460e42005-07-14 00:33:47 -0700249#define N_IN_URB 4
250#define N_OUT_URB 1
Matthias Urlichsb27c73d2005-09-22 00:49:33 -0700251#define IN_BUFLEN 4096
Matthias Urlichsba460e42005-07-14 00:33:47 -0700252#define OUT_BUFLEN 128
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700253
254struct option_port_private {
255 /* Input endpoints and buffer for this port */
Matthias Urlichsba460e42005-07-14 00:33:47 -0700256 struct urb *in_urbs[N_IN_URB];
Oliver Neukum2129c4e2008-02-01 13:58:52 +0100257 u8 *in_buffer[N_IN_URB];
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700258 /* Output endpoints and buffer for this port */
Matthias Urlichsba460e42005-07-14 00:33:47 -0700259 struct urb *out_urbs[N_OUT_URB];
Oliver Neukum2129c4e2008-02-01 13:58:52 +0100260 u8 *out_buffer[N_OUT_URB];
Alan Stern59c2afa2007-06-05 16:46:26 -0700261 unsigned long out_busy; /* Bit vector of URBs in use */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700262
263 /* Settings for the port */
Matthias Urlichsba460e42005-07-14 00:33:47 -0700264 int rts_state; /* Handshaking pins (outputs) */
265 int dtr_state;
266 int cts_state; /* Handshaking pins (inputs) */
267 int dsr_state;
268 int dcd_state;
269 int ri_state;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700270
Matthias Urlichsba460e42005-07-14 00:33:47 -0700271 unsigned long tx_start_time[N_OUT_URB];
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700272};
273
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700274/* Functions used by new usb-serial code. */
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700275static int __init option_init(void)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700276{
277 int retval;
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200278 retval = usb_serial_register(&option_1port_device);
279 if (retval)
280 goto failed_1port_device_register;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700281 retval = usb_register(&option_driver);
282 if (retval)
283 goto failed_driver_register;
284
285 info(DRIVER_DESC ": " DRIVER_VERSION);
286
287 return 0;
288
289failed_driver_register:
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200290 usb_serial_deregister (&option_1port_device);
291failed_1port_device_register:
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700292 return retval;
293}
294
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700295static void __exit option_exit(void)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700296{
297 usb_deregister (&option_driver);
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200298 usb_serial_deregister (&option_1port_device);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700299}
300
301module_init(option_init);
302module_exit(option_exit);
303
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700304static void option_rx_throttle(struct usb_serial_port *port)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700305{
306 dbg("%s", __FUNCTION__);
307}
308
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700309static void option_rx_unthrottle(struct usb_serial_port *port)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700310{
311 dbg("%s", __FUNCTION__);
312}
313
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700314static void option_break_ctl(struct usb_serial_port *port, int break_state)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700315{
316 /* Unfortunately, I don't know how to send a break */
Matthias Urlichsba460e42005-07-14 00:33:47 -0700317 dbg("%s", __FUNCTION__);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700318}
319
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700320static void option_set_termios(struct usb_serial_port *port,
Alan Cox606d0992006-12-08 02:38:45 -0800321 struct ktermios *old_termios)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700322{
323 dbg("%s", __FUNCTION__);
Alan Coxe650d8a2007-10-18 01:24:21 -0700324 /* Doesn't support option setting */
325 tty_termios_copy_hw(port->tty->termios, old_termios);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700326 option_send_setup(port);
327}
328
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700329static int option_tiocmget(struct usb_serial_port *port, struct file *file)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700330{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700331 unsigned int value;
332 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700333
334 portdata = usb_get_serial_port_data(port);
335
336 value = ((portdata->rts_state) ? TIOCM_RTS : 0) |
337 ((portdata->dtr_state) ? TIOCM_DTR : 0) |
338 ((portdata->cts_state) ? TIOCM_CTS : 0) |
339 ((portdata->dsr_state) ? TIOCM_DSR : 0) |
340 ((portdata->dcd_state) ? TIOCM_CAR : 0) |
341 ((portdata->ri_state) ? TIOCM_RNG : 0);
342
343 return value;
344}
345
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700346static int option_tiocmset(struct usb_serial_port *port, struct file *file,
347 unsigned int set, unsigned int clear)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700348{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700349 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700350
351 portdata = usb_get_serial_port_data(port);
352
353 if (set & TIOCM_RTS)
354 portdata->rts_state = 1;
355 if (set & TIOCM_DTR)
356 portdata->dtr_state = 1;
357
358 if (clear & TIOCM_RTS)
359 portdata->rts_state = 0;
360 if (clear & TIOCM_DTR)
361 portdata->dtr_state = 0;
362 return option_send_setup(port);
363}
364
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700365static int option_ioctl(struct usb_serial_port *port, struct file *file,
366 unsigned int cmd, unsigned long arg)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700367{
368 return -ENOIOCTLCMD;
369}
370
371/* Write */
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700372static int option_write(struct usb_serial_port *port,
373 const unsigned char *buf, int count)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700374{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700375 struct option_port_private *portdata;
376 int i;
377 int left, todo;
378 struct urb *this_urb = NULL; /* spurious */
379 int err;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700380
381 portdata = usb_get_serial_port_data(port);
382
383 dbg("%s: write (%d chars)", __FUNCTION__, count);
384
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700385 i = 0;
386 left = count;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700387 for (i=0; left > 0 && i < N_OUT_URB; i++) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700388 todo = left;
389 if (todo > OUT_BUFLEN)
390 todo = OUT_BUFLEN;
391
Matthias Urlichsba460e42005-07-14 00:33:47 -0700392 this_urb = portdata->out_urbs[i];
Alan Stern59c2afa2007-06-05 16:46:26 -0700393 if (test_and_set_bit(i, &portdata->out_busy)) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700394 if (time_before(jiffies,
395 portdata->tx_start_time[i] + 10 * HZ))
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700396 continue;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700397 usb_unlink_urb(this_urb);
Matthias Urlichsba460e42005-07-14 00:33:47 -0700398 continue;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700399 }
Matthias Urlichsba460e42005-07-14 00:33:47 -0700400 if (this_urb->status != 0)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700401 dbg("usb_write %p failed (err=%d)",
402 this_urb, this_urb->status);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700403
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700404 dbg("%s: endpoint %d buf %d", __FUNCTION__,
405 usb_pipeendpoint(this_urb->pipe), i);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700406
Matthias Urlichsba460e42005-07-14 00:33:47 -0700407 /* send the data */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700408 memcpy (this_urb->transfer_buffer, buf, todo);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700409 this_urb->transfer_buffer_length = todo;
410
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700411 this_urb->dev = port->serial->dev;
412 err = usb_submit_urb(this_urb, GFP_ATOMIC);
413 if (err) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700414 dbg("usb_submit_urb %p (write bulk) failed "
415 "(%d, has %d)", this_urb,
416 err, this_urb->status);
Alan Stern59c2afa2007-06-05 16:46:26 -0700417 clear_bit(i, &portdata->out_busy);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700418 continue;
419 }
420 portdata->tx_start_time[i] = jiffies;
421 buf += todo;
422 left -= todo;
423 }
424
425 count -= left;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700426 dbg("%s: wrote (did %d)", __FUNCTION__, count);
427 return count;
428}
429
David Howells7d12e782006-10-05 14:55:46 +0100430static void option_indat_callback(struct urb *urb)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700431{
Alan Cox33f0f882006-01-09 20:54:13 -0800432 int err;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700433 int endpoint;
434 struct usb_serial_port *port;
435 struct tty_struct *tty;
436 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700437 int status = urb->status;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700438
439 dbg("%s: %p", __FUNCTION__, urb);
440
441 endpoint = usb_pipeendpoint(urb->pipe);
442 port = (struct usb_serial_port *) urb->context;
443
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700444 if (status) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700445 dbg("%s: nonzero status: %d on endpoint %02x.",
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700446 __FUNCTION__, status, endpoint);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700447 } else {
448 tty = port->tty;
449 if (urb->actual_length) {
Alan Cox33f0f882006-01-09 20:54:13 -0800450 tty_buffer_request_room(tty, urb->actual_length);
451 tty_insert_flip_string(tty, data, urb->actual_length);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700452 tty_flip_buffer_push(tty);
453 } else {
454 dbg("%s: empty read urb received", __FUNCTION__);
455 }
456
457 /* Resubmit urb so we continue receiving */
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700458 if (port->open_count && status != -ESHUTDOWN) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700459 err = usb_submit_urb(urb, GFP_ATOMIC);
460 if (err)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700461 printk(KERN_ERR "%s: resubmit read urb failed. "
462 "(%d)", __FUNCTION__, err);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700463 }
464 }
465 return;
466}
467
David Howells7d12e782006-10-05 14:55:46 +0100468static void option_outdat_callback(struct urb *urb)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700469{
470 struct usb_serial_port *port;
Alan Stern59c2afa2007-06-05 16:46:26 -0700471 struct option_port_private *portdata;
472 int i;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700473
474 dbg("%s", __FUNCTION__);
475
476 port = (struct usb_serial_port *) urb->context;
477
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700478 usb_serial_port_softint(port);
Alan Stern59c2afa2007-06-05 16:46:26 -0700479
480 portdata = usb_get_serial_port_data(port);
481 for (i = 0; i < N_OUT_URB; ++i) {
482 if (portdata->out_urbs[i] == urb) {
483 smp_mb__before_clear_bit();
484 clear_bit(i, &portdata->out_busy);
485 break;
486 }
487 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700488}
489
David Howells7d12e782006-10-05 14:55:46 +0100490static void option_instat_callback(struct urb *urb)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700491{
492 int err;
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700493 int status = urb->status;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700494 struct usb_serial_port *port = (struct usb_serial_port *) urb->context;
495 struct option_port_private *portdata = usb_get_serial_port_data(port);
496 struct usb_serial *serial = port->serial;
497
498 dbg("%s", __FUNCTION__);
499 dbg("%s: urb %p port %p has data %p", __FUNCTION__,urb,port,portdata);
500
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700501 if (status == 0) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700502 struct usb_ctrlrequest *req_pkt =
503 (struct usb_ctrlrequest *)urb->transfer_buffer;
504
505 if (!req_pkt) {
506 dbg("%s: NULL req_pkt\n", __FUNCTION__);
507 return;
508 }
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700509 if ((req_pkt->bRequestType == 0xA1) &&
510 (req_pkt->bRequest == 0x20)) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700511 int old_dcd_state;
512 unsigned char signals = *((unsigned char *)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700513 urb->transfer_buffer +
514 sizeof(struct usb_ctrlrequest));
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700515
516 dbg("%s: signal x%x", __FUNCTION__, signals);
517
518 old_dcd_state = portdata->dcd_state;
519 portdata->cts_state = 1;
520 portdata->dcd_state = ((signals & 0x01) ? 1 : 0);
521 portdata->dsr_state = ((signals & 0x02) ? 1 : 0);
522 portdata->ri_state = ((signals & 0x08) ? 1 : 0);
523
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700524 if (port->tty && !C_CLOCAL(port->tty) &&
525 old_dcd_state && !portdata->dcd_state)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700526 tty_hangup(port->tty);
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700527 } else {
528 dbg("%s: type %x req %x", __FUNCTION__,
529 req_pkt->bRequestType,req_pkt->bRequest);
530 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700531 } else
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700532 dbg("%s: error %d", __FUNCTION__, status);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700533
534 /* Resubmit urb so we continue receiving IRQ data */
Greg Kroah-Hartmand6977b52007-06-15 15:44:13 -0700535 if (status != -ESHUTDOWN) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700536 urb->dev = serial->dev;
537 err = usb_submit_urb(urb, GFP_ATOMIC);
538 if (err)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700539 dbg("%s: resubmit intr urb failed. (%d)",
540 __FUNCTION__, err);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700541 }
542}
543
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700544static int option_write_room(struct usb_serial_port *port)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700545{
546 struct option_port_private *portdata;
547 int i;
548 int data_len = 0;
549 struct urb *this_urb;
550
551 portdata = usb_get_serial_port_data(port);
552
Matthias Urlichsba460e42005-07-14 00:33:47 -0700553 for (i=0; i < N_OUT_URB; i++) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700554 this_urb = portdata->out_urbs[i];
Alan Stern59c2afa2007-06-05 16:46:26 -0700555 if (this_urb && !test_bit(i, &portdata->out_busy))
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700556 data_len += OUT_BUFLEN;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700557 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700558
559 dbg("%s: %d", __FUNCTION__, data_len);
560 return data_len;
561}
562
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700563static int option_chars_in_buffer(struct usb_serial_port *port)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700564{
565 struct option_port_private *portdata;
566 int i;
567 int data_len = 0;
568 struct urb *this_urb;
569
570 portdata = usb_get_serial_port_data(port);
571
Matthias Urlichsba460e42005-07-14 00:33:47 -0700572 for (i=0; i < N_OUT_URB; i++) {
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700573 this_urb = portdata->out_urbs[i];
Alan Stern59c2afa2007-06-05 16:46:26 -0700574 if (this_urb && test_bit(i, &portdata->out_busy))
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700575 data_len += this_urb->transfer_buffer_length;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700576 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700577 dbg("%s: %d", __FUNCTION__, data_len);
578 return data_len;
579}
580
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700581static int option_open(struct usb_serial_port *port, struct file *filp)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700582{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700583 struct option_port_private *portdata;
584 struct usb_serial *serial = port->serial;
585 int i, err;
586 struct urb *urb;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700587
588 portdata = usb_get_serial_port_data(port);
589
590 dbg("%s", __FUNCTION__);
591
592 /* Set some sane defaults */
593 portdata->rts_state = 1;
594 portdata->dtr_state = 1;
595
596 /* Reset low level data toggle and start reading from endpoints */
597 for (i = 0; i < N_IN_URB; i++) {
598 urb = portdata->in_urbs[i];
599 if (! urb)
600 continue;
601 if (urb->dev != serial->dev) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700602 dbg("%s: dev %p != %p", __FUNCTION__,
603 urb->dev, serial->dev);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700604 continue;
605 }
606
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700607 /*
608 * make sure endpoint data toggle is synchronized with the
609 * device
610 */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700611 usb_clear_halt(urb->dev, urb->pipe);
612
613 err = usb_submit_urb(urb, GFP_KERNEL);
614 if (err) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700615 dbg("%s: submit urb %d failed (%d) %d",
616 __FUNCTION__, i, err,
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700617 urb->transfer_buffer_length);
618 }
619 }
620
621 /* Reset low level data toggle on out endpoints */
622 for (i = 0; i < N_OUT_URB; i++) {
623 urb = portdata->out_urbs[i];
624 if (! urb)
625 continue;
626 urb->dev = serial->dev;
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700627 /* usb_settoggle(urb->dev, usb_pipeendpoint(urb->pipe),
628 usb_pipeout(urb->pipe), 0); */
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700629 }
630
631 port->tty->low_latency = 1;
632
633 option_send_setup(port);
634
635 return (0);
636}
637
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700638static void option_close(struct usb_serial_port *port, struct file *filp)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700639{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700640 int i;
641 struct usb_serial *serial = port->serial;
642 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700643
644 dbg("%s", __FUNCTION__);
645 portdata = usb_get_serial_port_data(port);
646
647 portdata->rts_state = 0;
648 portdata->dtr_state = 0;
649
650 if (serial->dev) {
Oliver Neukume33fe4d2008-01-21 17:44:10 +0100651 mutex_lock(&serial->disc_mutex);
652 if (!serial->disconnected)
653 option_send_setup(port);
654 mutex_unlock(&serial->disc_mutex);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700655
656 /* Stop reading/writing urbs */
657 for (i = 0; i < N_IN_URB; i++)
Oliver Neukum7d28e742007-03-20 13:41:21 +0100658 usb_kill_urb(portdata->in_urbs[i]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700659 for (i = 0; i < N_OUT_URB; i++)
Oliver Neukum7d28e742007-03-20 13:41:21 +0100660 usb_kill_urb(portdata->out_urbs[i]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700661 }
662 port->tty = NULL;
663}
664
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700665/* Helper functions used by option_setup_urbs */
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700666static struct urb *option_setup_urb(struct usb_serial *serial, int endpoint,
667 int dir, void *ctx, char *buf, int len,
David Howells7d12e782006-10-05 14:55:46 +0100668 void (*callback)(struct urb *))
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700669{
670 struct urb *urb;
671
672 if (endpoint == -1)
673 return NULL; /* endpoint not needed */
674
675 urb = usb_alloc_urb(0, GFP_KERNEL); /* No ISO */
676 if (urb == NULL) {
677 dbg("%s: alloc for endpoint %d failed.", __FUNCTION__, endpoint);
678 return NULL;
679 }
680
681 /* Fill URB using supplied data. */
682 usb_fill_bulk_urb(urb, serial->dev,
683 usb_sndbulkpipe(serial->dev, endpoint) | dir,
684 buf, len, callback, ctx);
685
686 return urb;
687}
688
689/* Setup urbs */
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700690static void option_setup_urbs(struct usb_serial *serial)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700691{
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200692 int i,j;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700693 struct usb_serial_port *port;
694 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700695
696 dbg("%s", __FUNCTION__);
697
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200698 for (i = 0; i < serial->num_ports; i++) {
699 port = serial->port[i];
700 portdata = usb_get_serial_port_data(port);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700701
702 /* Do indat endpoints first */
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200703 for (j = 0; j < N_IN_URB; ++j) {
704 portdata->in_urbs[j] = option_setup_urb (serial,
705 port->bulk_in_endpointAddress, USB_DIR_IN, port,
706 portdata->in_buffer[j], IN_BUFLEN, option_indat_callback);
707 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700708
Matthias Urlichs14f76cc2006-06-02 11:48:56 +0200709 /* outdat endpoints */
710 for (j = 0; j < N_OUT_URB; ++j) {
711 portdata->out_urbs[j] = option_setup_urb (serial,
712 port->bulk_out_endpointAddress, USB_DIR_OUT, port,
713 portdata->out_buffer[j], OUT_BUFLEN, option_outdat_callback);
714 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700715 }
716}
717
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700718static int option_send_setup(struct usb_serial_port *port)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700719{
720 struct usb_serial *serial = port->serial;
721 struct option_port_private *portdata;
722
723 dbg("%s", __FUNCTION__);
724
Miguel Angel Alvarez8c152712006-12-14 19:49:35 +0100725 if (port->number != 0)
726 return 0;
727
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700728 portdata = usb_get_serial_port_data(port);
729
730 if (port->tty) {
731 int val = 0;
732 if (portdata->dtr_state)
733 val |= 0x01;
734 if (portdata->rts_state)
735 val |= 0x02;
736
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700737 return usb_control_msg(serial->dev,
738 usb_rcvctrlpipe(serial->dev, 0),
739 0x22,0x21,val,0,NULL,0,USB_CTRL_SET_TIMEOUT);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700740 }
741
742 return 0;
743}
744
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700745static int option_startup(struct usb_serial *serial)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700746{
Oliver Neukum2129c4e2008-02-01 13:58:52 +0100747 int i, j, err;
Matthias Urlichsba460e42005-07-14 00:33:47 -0700748 struct usb_serial_port *port;
749 struct option_port_private *portdata;
Oliver Neukum2129c4e2008-02-01 13:58:52 +0100750 u8 *buffer;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700751
752 dbg("%s", __FUNCTION__);
753
754 /* Now setup per port private data */
755 for (i = 0; i < serial->num_ports; i++) {
756 port = serial->port[i];
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100757 portdata = kzalloc(sizeof(*portdata), GFP_KERNEL);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700758 if (!portdata) {
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700759 dbg("%s: kmalloc for option_port_private (%d) failed!.",
760 __FUNCTION__, i);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700761 return (1);
762 }
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700763
Oliver Neukum2129c4e2008-02-01 13:58:52 +0100764 for (j = 0; j < N_IN_URB; j++) {
765 buffer = (u8 *)__get_free_page(GFP_KERNEL);
766 if (!buffer)
767 goto bail_out_error;
768 portdata->in_buffer[j] = buffer;
769 }
770
771 for (j = 0; j < N_OUT_URB; j++) {
772 buffer = kmalloc(OUT_BUFLEN, GFP_KERNEL);
773 if (!buffer)
774 goto bail_out_error2;
775 portdata->out_buffer[j] = buffer;
776 }
777
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700778 usb_set_serial_port_data(port, portdata);
779
780 if (! port->interrupt_in_urb)
781 continue;
782 err = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
783 if (err)
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700784 dbg("%s: submit irq_in urb failed %d",
785 __FUNCTION__, err);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700786 }
787
788 option_setup_urbs(serial);
789
790 return (0);
Oliver Neukum2129c4e2008-02-01 13:58:52 +0100791
792bail_out_error2:
793 for (j = 0; j < N_OUT_URB; j++)
794 kfree(portdata->out_buffer[j]);
795bail_out_error:
796 for (j = 0; j < N_IN_URB; j++)
797 if (portdata->in_buffer[j])
798 free_page((unsigned long)portdata->in_buffer[j]);
799 kfree(portdata);
800 return 1;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700801}
802
Andrew Morton7bb75ae2005-07-27 01:08:30 -0700803static void option_shutdown(struct usb_serial *serial)
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700804{
Matthias Urlichsba460e42005-07-14 00:33:47 -0700805 int i, j;
806 struct usb_serial_port *port;
807 struct option_port_private *portdata;
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700808
809 dbg("%s", __FUNCTION__);
810
811 /* Stop reading/writing urbs */
812 for (i = 0; i < serial->num_ports; ++i) {
813 port = serial->port[i];
814 portdata = usb_get_serial_port_data(port);
815 for (j = 0; j < N_IN_URB; j++)
Oliver Neukum7d28e742007-03-20 13:41:21 +0100816 usb_kill_urb(portdata->in_urbs[j]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700817 for (j = 0; j < N_OUT_URB; j++)
Oliver Neukum7d28e742007-03-20 13:41:21 +0100818 usb_kill_urb(portdata->out_urbs[j]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700819 }
820
821 /* Now free them */
822 for (i = 0; i < serial->num_ports; ++i) {
823 port = serial->port[i];
824 portdata = usb_get_serial_port_data(port);
825
826 for (j = 0; j < N_IN_URB; j++) {
827 if (portdata->in_urbs[j]) {
828 usb_free_urb(portdata->in_urbs[j]);
Oliver Neukum2129c4e2008-02-01 13:58:52 +0100829 free_page((unsigned long)portdata->in_buffer[j]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700830 portdata->in_urbs[j] = NULL;
831 }
832 }
833 for (j = 0; j < N_OUT_URB; j++) {
834 if (portdata->out_urbs[j]) {
835 usb_free_urb(portdata->out_urbs[j]);
Oliver Neukum2129c4e2008-02-01 13:58:52 +0100836 kfree(portdata->out_buffer[j]);
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700837 portdata->out_urbs[j] = NULL;
838 }
839 }
840 }
841
842 /* Now free per port private data */
843 for (i = 0; i < serial->num_ports; i++) {
844 port = serial->port[i];
845 kfree(usb_get_serial_port_data(port));
846 }
847}
848
849MODULE_AUTHOR(DRIVER_AUTHOR);
850MODULE_DESCRIPTION(DRIVER_DESC);
851MODULE_VERSION(DRIVER_VERSION);
852MODULE_LICENSE("GPL");
853
Matthias Urlichsba460e42005-07-14 00:33:47 -0700854#ifdef CONFIG_USB_DEBUG
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700855module_param(debug, bool, S_IRUGO | S_IWUSR);
856MODULE_PARM_DESC(debug, "Debug messages");
Matthias Urlichsba460e42005-07-14 00:33:47 -0700857#endif
Matthias Urlichs58cfe912005-05-23 17:00:48 -0700858