blob: 7b02a4ae1da4494cfed5196594260a0e59004e7c [file] [log] [blame]
Kevin Lloyd69de51f2006-06-30 11:17:55 -07001/*
Kevin Lloyd033a3fb2006-10-13 23:53:21 -07002 USB Driver for Sierra Wireless
3
Kevin Lloyd228426e2008-01-10 11:11:04 -08004 Copyright (C) 2006, 2007, 2008 Kevin Lloyd <linux@sierrawireless.com>
Kevin Lloyd033a3fb2006-10-13 23:53:21 -07005
6 IMPORTANT DISCLAIMER: This driver is not commercially supported by
7 Sierra Wireless. Use at your own risk.
8
9 This driver is free software; you can redistribute it and/or modify
10 it under the terms of Version 2 of the GNU General Public License as
11 published by the Free Software Foundation.
12
13 Portions based on the option driver by Matthias Urlichs <smurf@smurf.noris.de>
14 Whom based his on the Keyspan driver by Hugh Blemings <hugh@blemings.org>
Kevin Lloyd033a3fb2006-10-13 23:53:21 -070015*/
16
Oliver Neukum4f4f9c52008-03-14 00:53:24 -070017#define DRIVER_VERSION "v.1.2.8"
Kevin Lloyd033a3fb2006-10-13 23:53:21 -070018#define DRIVER_AUTHOR "Kevin Lloyd <linux@sierrawireless.com>"
19#define DRIVER_DESC "USB Driver for Sierra Wireless USB modems"
Kevin Lloyd69de51f2006-06-30 11:17:55 -070020
21#include <linux/kernel.h>
Kevin Lloyd033a3fb2006-10-13 23:53:21 -070022#include <linux/jiffies.h>
23#include <linux/errno.h>
Kevin Lloyd69de51f2006-06-30 11:17:55 -070024#include <linux/tty.h>
Kevin Lloyd033a3fb2006-10-13 23:53:21 -070025#include <linux/tty_flip.h>
Kevin Lloyd69de51f2006-06-30 11:17:55 -070026#include <linux/module.h>
27#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070028#include <linux/usb/serial.h>
Kevin Lloyd228426e2008-01-10 11:11:04 -080029#include <linux/usb/ch9.h>
Kevin Lloyd69de51f2006-06-30 11:17:55 -070030
Kevin Lloyd228426e2008-01-10 11:11:04 -080031#define SWIMS_USB_REQUEST_SetPower 0x00
32#define SWIMS_USB_REQUEST_SetNmea 0x07
Kevin Lloyd112225b2007-07-16 13:49:27 -070033#define SWIMS_USB_REQUEST_SetMode 0x0B
Kevin Lloyd228426e2008-01-10 11:11:04 -080034#define SWIMS_USB_REQUEST_TYPE_VSC_SET 0x40
Kevin Lloyd112225b2007-07-16 13:49:27 -070035#define SWIMS_SET_MODE_Modem 0x0001
36
37/* per port private data */
38#define N_IN_URB 4
39#define N_OUT_URB 4
40#define IN_BUFLEN 4096
41
42static int debug;
Kevin Lloyd228426e2008-01-10 11:11:04 -080043static int nmea;
44static int truinstall = 1;
Kevin Lloyd112225b2007-07-16 13:49:27 -070045
46enum devicetype {
47 DEVICE_3_PORT = 0,
48 DEVICE_1_PORT = 1,
49 DEVICE_INSTALLER = 2,
50};
51
Adrian Bunk82a24e62007-07-29 16:59:02 +020052static int sierra_set_power_state(struct usb_device *udev, __u16 swiState)
Kevin Lloyd112225b2007-07-16 13:49:27 -070053{
54 int result;
Joe Perches898eb712007-10-18 03:06:30 -070055 dev_dbg(&udev->dev, "%s", "SET POWER STATE\n");
Kevin Lloyd112225b2007-07-16 13:49:27 -070056 result = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
Kevin Lloyd228426e2008-01-10 11:11:04 -080057 SWIMS_USB_REQUEST_SetPower, /* __u8 request */
58 SWIMS_USB_REQUEST_TYPE_VSC_SET, /* __u8 request type */
59 swiState, /* __u16 value */
60 0, /* __u16 index */
61 NULL, /* void *data */
62 0, /* __u16 size */
63 USB_CTRL_SET_TIMEOUT); /* int timeout */
Kevin Lloyd112225b2007-07-16 13:49:27 -070064 return result;
65}
66
Kevin Lloyd228426e2008-01-10 11:11:04 -080067static int sierra_set_ms_mode(struct usb_device *udev, __u16 eSWocMode)
Kevin Lloyd112225b2007-07-16 13:49:27 -070068{
69 int result;
Joe Perches898eb712007-10-18 03:06:30 -070070 dev_dbg(&udev->dev, "%s", "DEVICE MODE SWITCH\n");
Kevin Lloyd112225b2007-07-16 13:49:27 -070071 result = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
72 SWIMS_USB_REQUEST_SetMode, /* __u8 request */
Kevin Lloyd228426e2008-01-10 11:11:04 -080073 SWIMS_USB_REQUEST_TYPE_VSC_SET, /* __u8 request type */
74 eSWocMode, /* __u16 value */
75 0x0000, /* __u16 index */
Kevin Lloyd112225b2007-07-16 13:49:27 -070076 NULL, /* void *data */
77 0, /* __u16 size */
78 USB_CTRL_SET_TIMEOUT); /* int timeout */
79 return result;
80}
81
Kevin Lloyd228426e2008-01-10 11:11:04 -080082static int sierra_vsc_set_nmea(struct usb_device *udev, __u16 enable)
Kevin Lloyd112225b2007-07-16 13:49:27 -070083{
84 int result;
Kevin Lloyd228426e2008-01-10 11:11:04 -080085 dev_dbg(&udev->dev, "%s", "NMEA Enable sent\n");
86 result = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
87 SWIMS_USB_REQUEST_SetNmea, /* __u8 request */
88 SWIMS_USB_REQUEST_TYPE_VSC_SET, /* __u8 request type */
89 enable, /* __u16 value */
90 0x0000, /* __u16 index */
91 NULL, /* void *data */
92 0, /* __u16 size */
93 USB_CTRL_SET_TIMEOUT); /* int timeout */
94 return result;
95}
Kevin Lloyd112225b2007-07-16 13:49:27 -070096
Kevin Lloyd228426e2008-01-10 11:11:04 -080097static int sierra_calc_num_ports(struct usb_serial *serial)
98{
99 int result;
100 int *num_ports = usb_get_serial_data(serial);
Kevin Lloyd112225b2007-07-16 13:49:27 -0700101
Kevin Lloyd228426e2008-01-10 11:11:04 -0800102 result = *num_ports;
103
104 if (result) {
105 kfree(num_ports);
106 usb_set_serial_data(serial, NULL);
Kevin Lloyd112225b2007-07-16 13:49:27 -0700107 }
108
Kevin Lloyd228426e2008-01-10 11:11:04 -0800109 return result;
110}
111
112static int sierra_probe(struct usb_serial *serial,
113 const struct usb_device_id *id)
114{
115 int result = 0;
116 struct usb_device *udev;
117 int *num_ports;
118 u8 ifnum;
119
120 num_ports = kmalloc(sizeof(*num_ports), GFP_KERNEL);
121 if (!num_ports)
122 return -ENOMEM;
123
124 ifnum = serial->interface->cur_altsetting->desc.bInterfaceNumber;
125 udev = serial->dev;
126
127 /* Check if in installer mode */
128 if (truinstall && id->driver_info == DEVICE_INSTALLER) {
129 dev_dbg(&udev->dev, "%s", "FOUND TRU-INSTALL DEVICE(SW)\n");
130 result = sierra_set_ms_mode(udev, SWIMS_SET_MODE_Modem);
131 /* Don't bind to the device when in installer mode */
132 kfree(num_ports);
133 return -EIO;
134 } else if (id->driver_info == DEVICE_1_PORT)
135 *num_ports = 1;
136 else if (ifnum == 0x99)
137 *num_ports = 0;
138 else
139 *num_ports = 3;
140 /*
141 * save off our num_ports info so that we can use it in the
142 * calc_num_ports callback
143 */
144 usb_set_serial_data(serial, (void *)num_ports);
145
146 return result;
Kevin Lloyd112225b2007-07-16 13:49:27 -0700147}
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700148
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700149static struct usb_device_id id_table [] = {
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700150 { USB_DEVICE(0x1199, 0x0017) }, /* Sierra Wireless EM5625 */
Kevin Lloyde43062d2007-01-17 16:04:18 -0800151 { USB_DEVICE(0x1199, 0x0018) }, /* Sierra Wireless MC5720 */
Greg Kroah-Hartman90ac3c82002-04-09 12:14:34 -0700152 { USB_DEVICE(0x1199, 0x0218) }, /* Sierra Wireless MC5720 */
Kevin Lloyd9454c462007-07-16 13:49:29 -0700153 { USB_DEVICE(0x0f30, 0x1b1d) }, /* Sierra Wireless MC5720 */
Kevin Lloyde43062d2007-01-17 16:04:18 -0800154 { USB_DEVICE(0x1199, 0x0020) }, /* Sierra Wireless MC5725 */
agilmore@wirelessbeehive.comb9e13ac2007-12-04 11:37:12 -0700155 { USB_DEVICE(0x1199, 0x0220) }, /* Sierra Wireless MC5725 */
Kevin Lloyde43062d2007-01-17 16:04:18 -0800156 { USB_DEVICE(0x1199, 0x0019) }, /* Sierra Wireless AirCard 595 */
157 { USB_DEVICE(0x1199, 0x0021) }, /* Sierra Wireless AirCard 597E */
Kevin Lloyd9454c462007-07-16 13:49:29 -0700158 { USB_DEVICE(0x1199, 0x0120) }, /* Sierra Wireless USB Dongle 595U */
Kevin Lloyd6835b322008-01-10 11:11:04 -0800159 { USB_DEVICE(0x1199, 0x0023) }, /* Sierra Wireless AirCard */
Kevin Lloyd9454c462007-07-16 13:49:29 -0700160
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700161 { USB_DEVICE(0x1199, 0x6802) }, /* Sierra Wireless MC8755 */
Kevin Lloyde43062d2007-01-17 16:04:18 -0800162 { USB_DEVICE(0x1199, 0x6804) }, /* Sierra Wireless MC8755 */
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700163 { USB_DEVICE(0x1199, 0x6803) }, /* Sierra Wireless MC8765 */
Kevin Lloyd9454c462007-07-16 13:49:29 -0700164 { USB_DEVICE(0x1199, 0x6812) }, /* Sierra Wireless MC8775 & AC 875U */
Kevin R Pageed0ccdb2007-12-13 01:10:48 +0000165 { USB_DEVICE(0x1199, 0x6813) }, /* Sierra Wireless MC8775 (Thinkpad internal) */
Kevin Lloyd7f170a62008-03-14 00:53:24 -0700166 { USB_DEVICE(0x1199, 0x6815) }, /* Sierra Wireless MC8775 */
Stefan Seyfried8f7f85e2008-04-17 07:47:34 +0200167 { USB_DEVICE(0x03f0, 0x1e1d) }, /* HP hs2300 a.k.a MC8775 */
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700168 { USB_DEVICE(0x1199, 0x6820) }, /* Sierra Wireless AirCard 875 */
Kevin Lloyd9454c462007-07-16 13:49:29 -0700169 { USB_DEVICE(0x1199, 0x6832) }, /* Sierra Wireless MC8780*/
170 { USB_DEVICE(0x1199, 0x6833) }, /* Sierra Wireless MC8781*/
171 { USB_DEVICE(0x1199, 0x6850) }, /* Sierra Wireless AirCard 880 */
172 { USB_DEVICE(0x1199, 0x6851) }, /* Sierra Wireless AirCard 881 */
173 { USB_DEVICE(0x1199, 0x6852) }, /* Sierra Wireless AirCard 880 E */
174 { USB_DEVICE(0x1199, 0x6853) }, /* Sierra Wireless AirCard 881 E */
Kevin Lloyd6835b322008-01-10 11:11:04 -0800175 { USB_DEVICE(0x1199, 0x6855) }, /* Sierra Wireless AirCard 880 U */
Jessica L. Blank62aad3a2007-12-30 20:11:35 -0600176 { USB_DEVICE(0x1199, 0x6856) }, /* Sierra Wireless AirCard 881 U */
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700177
Kevin Lloyd6835b322008-01-10 11:11:04 -0800178 { USB_DEVICE(0x1199, 0x6468) }, /* Sierra Wireless MP3G - EVDO */
179 { USB_DEVICE(0x1199, 0x6469) }, /* Sierra Wireless MP3G - UMTS/HSPA */
180
Kevin Lloyd112225b2007-07-16 13:49:27 -0700181 { USB_DEVICE(0x1199, 0x0112), .driver_info = DEVICE_1_PORT }, /* Sierra Wireless AirCard 580 */
182 { USB_DEVICE(0x0F3D, 0x0112), .driver_info = DEVICE_1_PORT }, /* Airprime/Sierra PC 5220 */
183
184 { USB_DEVICE(0x1199, 0x0FFF), .driver_info = DEVICE_INSTALLER},
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700185 { }
186};
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700187MODULE_DEVICE_TABLE(usb, id_table);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700188
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700189static struct usb_driver sierra_driver = {
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700190 .name = "sierra",
Kevin Lloyd228426e2008-01-10 11:11:04 -0800191 .probe = usb_serial_probe,
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700192 .disconnect = usb_serial_disconnect,
193 .id_table = id_table,
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700194 .no_dynamic_id = 1,
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700195};
196
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700197struct sierra_port_private {
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900198 spinlock_t lock; /* lock the structure */
199 int outstanding_urbs; /* number of out urbs in flight */
200
Oliver Neukum4f4f9c52008-03-14 00:53:24 -0700201 /* Input endpoints and buffers for this port */
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700202 struct urb *in_urbs[N_IN_URB];
Oliver Neukum4f4f9c52008-03-14 00:53:24 -0700203 char *in_buffer[N_IN_URB];
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700204
205 /* Settings for the port */
206 int rts_state; /* Handshaking pins (outputs) */
207 int dtr_state;
208 int cts_state; /* Handshaking pins (inputs) */
209 int dsr_state;
210 int dcd_state;
211 int ri_state;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700212};
213
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700214static int sierra_send_setup(struct usb_serial_port *port)
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700215{
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700216 struct usb_serial *serial = port->serial;
217 struct sierra_port_private *portdata;
Kevin Lloyd228426e2008-01-10 11:11:04 -0800218 __u16 interface = 0;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700219
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700220 dbg("%s", __FUNCTION__);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700221
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700222 portdata = usb_get_serial_port_data(port);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700223
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700224 if (port->tty) {
225 int val = 0;
226 if (portdata->dtr_state)
227 val |= 0x01;
228 if (portdata->rts_state)
229 val |= 0x02;
230
Kevin Lloyd228426e2008-01-10 11:11:04 -0800231 /* Determine which port is targeted */
232 if (port->bulk_out_endpointAddress == 2)
233 interface = 0;
234 else if (port->bulk_out_endpointAddress == 4)
235 interface = 1;
236 else if (port->bulk_out_endpointAddress == 5)
237 interface = 2;
238
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700239 return usb_control_msg(serial->dev,
240 usb_rcvctrlpipe(serial->dev, 0),
Kevin Lloyd228426e2008-01-10 11:11:04 -0800241 0x22, 0x21, val, interface,
242 NULL, 0, USB_CTRL_SET_TIMEOUT);
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700243 }
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700244
245 return 0;
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700246}
247
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700248static void sierra_rx_throttle(struct usb_serial_port *port)
249{
250 dbg("%s", __FUNCTION__);
251}
252
253static void sierra_rx_unthrottle(struct usb_serial_port *port)
254{
255 dbg("%s", __FUNCTION__);
256}
257
258static void sierra_break_ctl(struct usb_serial_port *port, int break_state)
259{
260 /* Unfortunately, I don't know how to send a break */
261 dbg("%s", __FUNCTION__);
262}
263
264static void sierra_set_termios(struct usb_serial_port *port,
Alan Cox606d0992006-12-08 02:38:45 -0800265 struct ktermios *old_termios)
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700266{
267 dbg("%s", __FUNCTION__);
Alan Coxed1f12e2007-10-18 01:24:22 -0700268 tty_termios_copy_hw(port->tty->termios, old_termios);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700269 sierra_send_setup(port);
270}
271
272static int sierra_tiocmget(struct usb_serial_port *port, struct file *file)
273{
274 unsigned int value;
275 struct sierra_port_private *portdata;
276
277 portdata = usb_get_serial_port_data(port);
278
279 value = ((portdata->rts_state) ? TIOCM_RTS : 0) |
280 ((portdata->dtr_state) ? TIOCM_DTR : 0) |
281 ((portdata->cts_state) ? TIOCM_CTS : 0) |
282 ((portdata->dsr_state) ? TIOCM_DSR : 0) |
283 ((portdata->dcd_state) ? TIOCM_CAR : 0) |
284 ((portdata->ri_state) ? TIOCM_RNG : 0);
285
286 return value;
287}
288
289static int sierra_tiocmset(struct usb_serial_port *port, struct file *file,
290 unsigned int set, unsigned int clear)
291{
292 struct sierra_port_private *portdata;
293
294 portdata = usb_get_serial_port_data(port);
295
296 if (set & TIOCM_RTS)
297 portdata->rts_state = 1;
298 if (set & TIOCM_DTR)
299 portdata->dtr_state = 1;
300
301 if (clear & TIOCM_RTS)
302 portdata->rts_state = 0;
303 if (clear & TIOCM_DTR)
304 portdata->dtr_state = 0;
305 return sierra_send_setup(port);
306}
307
308static int sierra_ioctl(struct usb_serial_port *port, struct file *file,
309 unsigned int cmd, unsigned long arg)
310{
311 return -ENOIOCTLCMD;
312}
313
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900314static void sierra_outdat_callback(struct urb *urb)
315{
316 struct usb_serial_port *port = urb->context;
317 struct sierra_port_private *portdata = usb_get_serial_port_data(port);
318 int status = urb->status;
319 unsigned long flags;
320
321 dbg("%s - port %d", __FUNCTION__, port->number);
322
323 /* free up the transfer buffer, as usb_free_urb() does not do this */
324 kfree(urb->transfer_buffer);
325
326 if (status)
327 dbg("%s - nonzero write bulk status received: %d",
328 __FUNCTION__, status);
329
330 spin_lock_irqsave(&portdata->lock, flags);
331 --portdata->outstanding_urbs;
332 spin_unlock_irqrestore(&portdata->lock, flags);
333
334 usb_serial_port_softint(port);
335}
336
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700337/* Write */
338static int sierra_write(struct usb_serial_port *port,
339 const unsigned char *buf, int count)
340{
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900341 struct sierra_port_private *portdata = usb_get_serial_port_data(port);
342 struct usb_serial *serial = port->serial;
343 unsigned long flags;
344 unsigned char *buffer;
345 struct urb *urb;
346 int status;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700347
348 portdata = usb_get_serial_port_data(port);
349
350 dbg("%s: write (%d chars)", __FUNCTION__, count);
351
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900352 spin_lock_irqsave(&portdata->lock, flags);
353 if (portdata->outstanding_urbs > N_OUT_URB) {
354 spin_unlock_irqrestore(&portdata->lock, flags);
355 dbg("%s - write limit hit\n", __FUNCTION__);
356 return 0;
357 }
358 portdata->outstanding_urbs++;
359 spin_unlock_irqrestore(&portdata->lock, flags);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700360
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900361 buffer = kmalloc(count, GFP_ATOMIC);
362 if (!buffer) {
363 dev_err(&port->dev, "out of memory\n");
364 count = -ENOMEM;
365 goto error_no_buffer;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700366 }
367
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900368 urb = usb_alloc_urb(0, GFP_ATOMIC);
369 if (!urb) {
370 dev_err(&port->dev, "no more free urbs\n");
371 count = -ENOMEM;
372 goto error_no_urb;
373 }
374
375 memcpy(buffer, buf, count);
376
377 usb_serial_debug_data(debug, &port->dev, __FUNCTION__, count, buffer);
378
379 usb_fill_bulk_urb(urb, serial->dev,
380 usb_sndbulkpipe(serial->dev,
381 port->bulk_out_endpointAddress),
382 buffer, count, sierra_outdat_callback, port);
383
384 /* send it down the pipe */
385 status = usb_submit_urb(urb, GFP_ATOMIC);
386 if (status) {
387 dev_err(&port->dev, "%s - usb_submit_urb(write bulk) failed "
388 "with status = %d\n", __FUNCTION__, status);
389 count = status;
390 goto error;
391 }
392
393 /* we are done with this urb, so let the host driver
394 * really free it when it is finished with it */
395 usb_free_urb(urb);
396
397 return count;
398error:
399 usb_free_urb(urb);
400error_no_urb:
401 kfree(buffer);
402error_no_buffer:
403 spin_lock_irqsave(&portdata->lock, flags);
404 --portdata->outstanding_urbs;
405 spin_unlock_irqrestore(&portdata->lock, flags);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700406 return count;
407}
408
409static void sierra_indat_callback(struct urb *urb)
410{
411 int err;
412 int endpoint;
413 struct usb_serial_port *port;
414 struct tty_struct *tty;
415 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartman17dd2212007-06-15 15:44:13 -0700416 int status = urb->status;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700417
418 dbg("%s: %p", __FUNCTION__, urb);
419
420 endpoint = usb_pipeendpoint(urb->pipe);
421 port = (struct usb_serial_port *) urb->context;
422
Greg Kroah-Hartman17dd2212007-06-15 15:44:13 -0700423 if (status) {
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700424 dbg("%s: nonzero status: %d on endpoint %02x.",
Greg Kroah-Hartman17dd2212007-06-15 15:44:13 -0700425 __FUNCTION__, status, endpoint);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700426 } else {
427 tty = port->tty;
428 if (urb->actual_length) {
429 tty_buffer_request_room(tty, urb->actual_length);
430 tty_insert_flip_string(tty, data, urb->actual_length);
431 tty_flip_buffer_push(tty);
432 } else {
433 dbg("%s: empty read urb received", __FUNCTION__);
434 }
435
436 /* Resubmit urb so we continue receiving */
Greg Kroah-Hartman17dd2212007-06-15 15:44:13 -0700437 if (port->open_count && status != -ESHUTDOWN) {
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700438 err = usb_submit_urb(urb, GFP_ATOMIC);
439 if (err)
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900440 dev_err(&port->dev, "resubmit read urb failed."
Joe Perches898eb712007-10-18 03:06:30 -0700441 "(%d)\n", err);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700442 }
443 }
444 return;
445}
446
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700447static void sierra_instat_callback(struct urb *urb)
448{
449 int err;
Greg Kroah-Hartman17dd2212007-06-15 15:44:13 -0700450 int status = urb->status;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700451 struct usb_serial_port *port = (struct usb_serial_port *) urb->context;
452 struct sierra_port_private *portdata = usb_get_serial_port_data(port);
453 struct usb_serial *serial = port->serial;
454
455 dbg("%s", __FUNCTION__);
456 dbg("%s: urb %p port %p has data %p", __FUNCTION__,urb,port,portdata);
457
Greg Kroah-Hartman17dd2212007-06-15 15:44:13 -0700458 if (status == 0) {
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700459 struct usb_ctrlrequest *req_pkt =
460 (struct usb_ctrlrequest *)urb->transfer_buffer;
461
462 if (!req_pkt) {
463 dbg("%s: NULL req_pkt\n", __FUNCTION__);
464 return;
465 }
466 if ((req_pkt->bRequestType == 0xA1) &&
467 (req_pkt->bRequest == 0x20)) {
468 int old_dcd_state;
469 unsigned char signals = *((unsigned char *)
470 urb->transfer_buffer +
471 sizeof(struct usb_ctrlrequest));
472
473 dbg("%s: signal x%x", __FUNCTION__, signals);
474
475 old_dcd_state = portdata->dcd_state;
476 portdata->cts_state = 1;
477 portdata->dcd_state = ((signals & 0x01) ? 1 : 0);
478 portdata->dsr_state = ((signals & 0x02) ? 1 : 0);
479 portdata->ri_state = ((signals & 0x08) ? 1 : 0);
480
481 if (port->tty && !C_CLOCAL(port->tty) &&
482 old_dcd_state && !portdata->dcd_state)
483 tty_hangup(port->tty);
484 } else {
485 dbg("%s: type %x req %x", __FUNCTION__,
486 req_pkt->bRequestType,req_pkt->bRequest);
487 }
488 } else
Greg Kroah-Hartman17dd2212007-06-15 15:44:13 -0700489 dbg("%s: error %d", __FUNCTION__, status);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700490
491 /* Resubmit urb so we continue receiving IRQ data */
Greg Kroah-Hartman17dd2212007-06-15 15:44:13 -0700492 if (status != -ESHUTDOWN) {
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700493 urb->dev = serial->dev;
494 err = usb_submit_urb(urb, GFP_ATOMIC);
495 if (err)
496 dbg("%s: resubmit intr urb failed. (%d)",
497 __FUNCTION__, err);
498 }
499}
500
501static int sierra_write_room(struct usb_serial_port *port)
502{
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900503 struct sierra_port_private *portdata = usb_get_serial_port_data(port);
504 unsigned long flags;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700505
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900506 dbg("%s - port %d", __FUNCTION__, port->number);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700507
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900508 /* try to give a good number back based on if we have any free urbs at
509 * this point in time */
510 spin_lock_irqsave(&portdata->lock, flags);
511 if (portdata->outstanding_urbs > N_OUT_URB * 2 / 3) {
512 spin_unlock_irqrestore(&portdata->lock, flags);
513 dbg("%s - write limit hit\n", __FUNCTION__);
514 return 0;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700515 }
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900516 spin_unlock_irqrestore(&portdata->lock, flags);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700517
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900518 return 2048;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700519}
520
521static int sierra_chars_in_buffer(struct usb_serial_port *port)
522{
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900523 dbg("%s - port %d", __FUNCTION__, port->number);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700524
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900525 /*
526 * We can't really account for how much data we
527 * have sent out, but hasn't made it through to the
528 * device as we can't see the backend here, so just
529 * tell the tty layer that everything is flushed.
530 */
531 return 0;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700532}
533
534static int sierra_open(struct usb_serial_port *port, struct file *filp)
535{
536 struct sierra_port_private *portdata;
537 struct usb_serial *serial = port->serial;
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900538 int i;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700539 struct urb *urb;
Kevin Lloyde43062d2007-01-17 16:04:18 -0800540 int result;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700541
542 portdata = usb_get_serial_port_data(port);
543
544 dbg("%s", __FUNCTION__);
545
546 /* Set some sane defaults */
547 portdata->rts_state = 1;
548 portdata->dtr_state = 1;
549
550 /* Reset low level data toggle and start reading from endpoints */
551 for (i = 0; i < N_IN_URB; i++) {
552 urb = portdata->in_urbs[i];
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900553 if (!urb)
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700554 continue;
555 if (urb->dev != serial->dev) {
556 dbg("%s: dev %p != %p", __FUNCTION__,
557 urb->dev, serial->dev);
558 continue;
559 }
560
561 /*
562 * make sure endpoint data toggle is synchronized with the
563 * device
564 */
565 usb_clear_halt(urb->dev, urb->pipe);
566
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900567 result = usb_submit_urb(urb, GFP_KERNEL);
568 if (result) {
Joe Perches898eb712007-10-18 03:06:30 -0700569 dev_err(&port->dev, "submit urb %d failed (%d) %d\n",
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900570 i, result, urb->transfer_buffer_length);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700571 }
572 }
573
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700574 port->tty->low_latency = 1;
575
576 sierra_send_setup(port);
577
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900578 /* start up the interrupt endpoint if we have one */
579 if (port->interrupt_in_urb) {
580 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
581 if (result)
Joe Perches898eb712007-10-18 03:06:30 -0700582 dev_err(&port->dev, "submit irq_in urb failed %d\n",
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900583 result);
584 }
585 return 0;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700586}
587
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700588static void sierra_close(struct usb_serial_port *port, struct file *filp)
589{
590 int i;
591 struct usb_serial *serial = port->serial;
592 struct sierra_port_private *portdata;
593
594 dbg("%s", __FUNCTION__);
595 portdata = usb_get_serial_port_data(port);
596
597 portdata->rts_state = 0;
598 portdata->dtr_state = 0;
599
600 if (serial->dev) {
Oliver Neukume33fe4d2008-01-21 17:44:10 +0100601 mutex_lock(&serial->disc_mutex);
602 if (!serial->disconnected)
603 sierra_send_setup(port);
604 mutex_unlock(&serial->disc_mutex);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700605
606 /* Stop reading/writing urbs */
607 for (i = 0; i < N_IN_URB; i++)
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900608 usb_kill_urb(portdata->in_urbs[i]);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700609 }
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900610
611 usb_kill_urb(port->interrupt_in_urb);
612
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700613 port->tty = NULL;
614}
615
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700616static int sierra_startup(struct usb_serial *serial)
617{
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700618 struct usb_serial_port *port;
619 struct sierra_port_private *portdata;
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900620 struct urb *urb;
621 int i;
622 int j;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700623
624 dbg("%s", __FUNCTION__);
625
Kevin Lloyd228426e2008-01-10 11:11:04 -0800626 /* Set Device mode to D0 */
Kevin Lloyd112225b2007-07-16 13:49:27 -0700627 sierra_set_power_state(serial->dev, 0x0000);
628
Kevin Lloyd228426e2008-01-10 11:11:04 -0800629 /* Check NMEA and set */
630 if (nmea)
631 sierra_vsc_set_nmea(serial->dev, 1);
632
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700633 /* Now setup per port private data */
634 for (i = 0; i < serial->num_ports; i++) {
635 port = serial->port[i];
636 portdata = kzalloc(sizeof(*portdata), GFP_KERNEL);
637 if (!portdata) {
638 dbg("%s: kmalloc for sierra_port_private (%d) failed!.",
639 __FUNCTION__, i);
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900640 return -ENOMEM;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700641 }
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900642 spin_lock_init(&portdata->lock);
Oliver Neukum4f4f9c52008-03-14 00:53:24 -0700643 for (j = 0; j < N_IN_URB; j++) {
644 portdata->in_buffer[j] = kmalloc(IN_BUFLEN, GFP_KERNEL);
645 if (!portdata->in_buffer[j]) {
646 for (--j; j >= 0; j--)
647 kfree(portdata->in_buffer[j]);
648 kfree(portdata);
649 return -ENOMEM;
650 }
651 }
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700652
653 usb_set_serial_port_data(port, portdata);
654
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900655 /* initialize the in urbs */
656 for (j = 0; j < N_IN_URB; ++j) {
657 urb = usb_alloc_urb(0, GFP_KERNEL);
658 if (urb == NULL) {
659 dbg("%s: alloc for in port failed.",
660 __FUNCTION__);
661 continue;
662 }
663 /* Fill URB using supplied data. */
664 usb_fill_bulk_urb(urb, serial->dev,
665 usb_rcvbulkpipe(serial->dev,
666 port->bulk_in_endpointAddress),
667 portdata->in_buffer[j], IN_BUFLEN,
668 sierra_indat_callback, port);
669 portdata->in_urbs[j] = urb;
670 }
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700671 }
672
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900673 return 0;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700674}
675
676static void sierra_shutdown(struct usb_serial *serial)
677{
678 int i, j;
679 struct usb_serial_port *port;
680 struct sierra_port_private *portdata;
681
682 dbg("%s", __FUNCTION__);
683
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700684 for (i = 0; i < serial->num_ports; ++i) {
685 port = serial->port[i];
Greg Kroah-Hartmanf094e4f2007-04-26 00:12:01 -0700686 if (!port)
687 continue;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700688 portdata = usb_get_serial_port_data(port);
Greg Kroah-Hartmanf094e4f2007-04-26 00:12:01 -0700689 if (!portdata)
690 continue;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700691
692 for (j = 0; j < N_IN_URB; j++) {
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900693 usb_kill_urb(portdata->in_urbs[j]);
694 usb_free_urb(portdata->in_urbs[j]);
Oliver Neukum4f4f9c52008-03-14 00:53:24 -0700695 kfree(portdata->in_buffer[j]);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700696 }
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900697 kfree(portdata);
698 usb_set_serial_port_data(port, NULL);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700699 }
700}
701
Kevin Lloyd228426e2008-01-10 11:11:04 -0800702static struct usb_serial_driver sierra_device = {
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700703 .driver = {
704 .owner = THIS_MODULE,
705 .name = "sierra1",
706 },
Kevin Lloyd228426e2008-01-10 11:11:04 -0800707 .description = "Sierra USB modem",
708 .id_table = id_table,
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100709 .usb_driver = &sierra_driver,
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700710 .num_interrupt_in = NUM_DONT_CARE,
Kevin Lloyd228426e2008-01-10 11:11:04 -0800711 .num_bulk_in = NUM_DONT_CARE,
712 .num_bulk_out = NUM_DONT_CARE,
713 .calc_num_ports = sierra_calc_num_ports,
714 .probe = sierra_probe,
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700715 .open = sierra_open,
716 .close = sierra_close,
717 .write = sierra_write,
718 .write_room = sierra_write_room,
719 .chars_in_buffer = sierra_chars_in_buffer,
720 .throttle = sierra_rx_throttle,
721 .unthrottle = sierra_rx_unthrottle,
722 .ioctl = sierra_ioctl,
723 .set_termios = sierra_set_termios,
724 .break_ctl = sierra_break_ctl,
725 .tiocmget = sierra_tiocmget,
726 .tiocmset = sierra_tiocmset,
727 .attach = sierra_startup,
728 .shutdown = sierra_shutdown,
729 .read_int_callback = sierra_instat_callback,
730};
731
732/* Functions used by new usb-serial code. */
733static int __init sierra_init(void)
734{
735 int retval;
Kevin Lloyd228426e2008-01-10 11:11:04 -0800736 retval = usb_serial_register(&sierra_device);
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700737 if (retval)
Kevin Lloyd228426e2008-01-10 11:11:04 -0800738 goto failed_device_register;
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700739
740
741 retval = usb_register(&sierra_driver);
742 if (retval)
743 goto failed_driver_register;
744
745 info(DRIVER_DESC ": " DRIVER_VERSION);
746
747 return 0;
748
749failed_driver_register:
Kevin Lloyd228426e2008-01-10 11:11:04 -0800750 usb_serial_deregister(&sierra_device);
751failed_device_register:
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700752 return retval;
753}
754
755static void __exit sierra_exit(void)
756{
757 usb_deregister (&sierra_driver);
Kevin Lloyd228426e2008-01-10 11:11:04 -0800758 usb_serial_deregister(&sierra_device);
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700759}
760
761module_init(sierra_init);
762module_exit(sierra_exit);
763
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700764MODULE_AUTHOR(DRIVER_AUTHOR);
765MODULE_DESCRIPTION(DRIVER_DESC);
766MODULE_VERSION(DRIVER_VERSION);
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700767MODULE_LICENSE("GPL");
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700768
Kevin Lloyd228426e2008-01-10 11:11:04 -0800769module_param(truinstall, bool, 0);
770MODULE_PARM_DESC(truinstall, "TRU-Install support");
771
772module_param(nmea, bool, 0);
773MODULE_PARM_DESC(nmea, "NMEA streaming");
774
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700775#ifdef CONFIG_USB_DEBUG
776module_param(debug, bool, S_IRUGO | S_IWUSR);
777MODULE_PARM_DESC(debug, "Debug messages");
778#endif
779