blob: 6b7ed333386a67eafcb57f7730b5439666641a3e [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 Lloydf3564de2008-03-28 10:05:08 -07004 Copyright (C) 2006, 2007, 2008 Kevin Lloyd <klloyd@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
Kevin Lloyd0585e4d2008-07-10 14:14:54 -070017#define DRIVER_VERSION "v.1.2.13a"
Kevin Lloydf3564de2008-03-28 10:05:08 -070018#define DRIVER_AUTHOR "Kevin Lloyd <klloyd@sierrawireless.com>"
Kevin Lloyd033a3fb2006-10-13 23:53:21 -070019#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 Lloyd0585e4d2008-07-10 14:14:54 -070034#define SWIMS_USB_REQUEST_GetSwocInfo 0x0A
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;
Kevin Lloyd112225b2007-07-16 13:49:27 -070044
Adrian Bunk82a24e62007-07-29 16:59:02 +020045static int sierra_set_power_state(struct usb_device *udev, __u16 swiState)
Kevin Lloyd112225b2007-07-16 13:49:27 -070046{
47 int result;
Kevin Lloyd4e0fee82008-07-10 14:14:47 -070048 dev_dbg(&udev->dev, "%s", __func__);
Kevin Lloyd112225b2007-07-16 13:49:27 -070049 result = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
Kevin Lloyd228426e2008-01-10 11:11:04 -080050 SWIMS_USB_REQUEST_SetPower, /* __u8 request */
Kevin Lloydf3564de2008-03-28 10:05:08 -070051 USB_TYPE_VENDOR, /* __u8 request type */
Kevin Lloyd228426e2008-01-10 11:11:04 -080052 swiState, /* __u16 value */
53 0, /* __u16 index */
54 NULL, /* void *data */
55 0, /* __u16 size */
56 USB_CTRL_SET_TIMEOUT); /* int timeout */
Kevin Lloyd112225b2007-07-16 13:49:27 -070057 return result;
58}
59
Kevin Lloyd228426e2008-01-10 11:11:04 -080060static int sierra_vsc_set_nmea(struct usb_device *udev, __u16 enable)
Kevin Lloyd112225b2007-07-16 13:49:27 -070061{
62 int result;
Kevin Lloyd4e0fee82008-07-10 14:14:47 -070063 dev_dbg(&udev->dev, "%s", __func__);
Kevin Lloyd228426e2008-01-10 11:11:04 -080064 result = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
65 SWIMS_USB_REQUEST_SetNmea, /* __u8 request */
Kevin Lloydf3564de2008-03-28 10:05:08 -070066 USB_TYPE_VENDOR, /* __u8 request type */
Kevin Lloyd228426e2008-01-10 11:11:04 -080067 enable, /* __u16 value */
68 0x0000, /* __u16 index */
69 NULL, /* void *data */
70 0, /* __u16 size */
71 USB_CTRL_SET_TIMEOUT); /* int timeout */
72 return result;
73}
Kevin Lloyd112225b2007-07-16 13:49:27 -070074
Kevin Lloyd228426e2008-01-10 11:11:04 -080075static int sierra_calc_num_ports(struct usb_serial *serial)
76{
77 int result;
78 int *num_ports = usb_get_serial_data(serial);
Kevin Lloyd4e0fee82008-07-10 14:14:47 -070079 dev_dbg(&serial->dev->dev, "%s", __func__);
Kevin Lloyd112225b2007-07-16 13:49:27 -070080
Kevin Lloyd228426e2008-01-10 11:11:04 -080081 result = *num_ports;
82
83 if (result) {
84 kfree(num_ports);
85 usb_set_serial_data(serial, NULL);
Kevin Lloyd112225b2007-07-16 13:49:27 -070086 }
87
Kevin Lloyd228426e2008-01-10 11:11:04 -080088 return result;
89}
90
Kevin Lloyd71069672008-04-02 11:24:56 -070091static int sierra_calc_interface(struct usb_serial *serial)
92{
Kevin Lloyd4e0fee82008-07-10 14:14:47 -070093 int interface;
94 struct usb_interface *p_interface;
95 struct usb_host_interface *p_host_interface;
96 dev_dbg(&serial->dev->dev, "%s", __func__);
Kevin Lloyd71069672008-04-02 11:24:56 -070097
Kevin Lloyd4e0fee82008-07-10 14:14:47 -070098 /* Get the interface structure pointer from the serial struct */
99 p_interface = serial->interface;
Kevin Lloyd71069672008-04-02 11:24:56 -0700100
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700101 /* Get a pointer to the host interface structure */
102 p_host_interface = p_interface->cur_altsetting;
Kevin Lloyd71069672008-04-02 11:24:56 -0700103
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700104 /* read the interface descriptor for this active altsetting
105 * to find out the interface number we are on
106 */
107 interface = p_host_interface->desc.bInterfaceNumber;
Kevin Lloyd71069672008-04-02 11:24:56 -0700108
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700109 return interface;
Kevin Lloyd71069672008-04-02 11:24:56 -0700110}
111
Kevin Lloyd228426e2008-01-10 11:11:04 -0800112static 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;
Kevin Lloyde3173b22008-07-10 14:14:51 -0700119 u8 numendpoints;
120
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700121 dev_dbg(&serial->dev->dev, "%s", __func__);
Kevin Lloyd228426e2008-01-10 11:11:04 -0800122
123 num_ports = kmalloc(sizeof(*num_ports), GFP_KERNEL);
124 if (!num_ports)
125 return -ENOMEM;
126
127 ifnum = serial->interface->cur_altsetting->desc.bInterfaceNumber;
Kevin Lloyde3173b22008-07-10 14:14:51 -0700128 numendpoints = serial->interface->cur_altsetting->desc.bNumEndpoints;
Kevin Lloyd228426e2008-01-10 11:11:04 -0800129 udev = serial->dev;
130
Kevin Lloyde3173b22008-07-10 14:14:51 -0700131 /* Figure out the interface number from the serial structure */
132 ifnum = sierra_calc_interface(serial);
Kevin Lloyd71069672008-04-02 11:24:56 -0700133
Kevin Lloyde3173b22008-07-10 14:14:51 -0700134 /*
135 * If this interface supports more than 1 alternate
136 * select the 2nd one
137 */
138 if (serial->interface->num_altsetting == 2) {
139 dev_dbg(&udev->dev, "Selecting alt setting for interface %d\n",
140 ifnum);
141 /* We know the alternate setting is 1 for the MC8785 */
142 usb_set_interface(udev, ifnum, 1);
143 }
Kevin Lloyd71069672008-04-02 11:24:56 -0700144
Kevin Lloyde3173b22008-07-10 14:14:51 -0700145 /* Dummy interface present on some SKUs should be ignored */
Kevin Lloyd0585e4d2008-07-10 14:14:54 -0700146 if (ifnum == 0x99)
Kevin Lloyd228426e2008-01-10 11:11:04 -0800147 *num_ports = 0;
Kevin Lloyde3173b22008-07-10 14:14:51 -0700148 else if (numendpoints <= 3)
149 *num_ports = 1;
Kevin Lloyd228426e2008-01-10 11:11:04 -0800150 else
Kevin Lloyde3173b22008-07-10 14:14:51 -0700151 *num_ports = (numendpoints-1)/2;
152
Kevin Lloyd228426e2008-01-10 11:11:04 -0800153 /*
154 * save off our num_ports info so that we can use it in the
155 * calc_num_ports callback
156 */
157 usb_set_serial_data(serial, (void *)num_ports);
158
159 return result;
Kevin Lloyd112225b2007-07-16 13:49:27 -0700160}
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700161
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700162static struct usb_device_id id_table [] = {
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700163 { USB_DEVICE(0x1199, 0x0017) }, /* Sierra Wireless EM5625 */
Kevin Lloyde43062d2007-01-17 16:04:18 -0800164 { USB_DEVICE(0x1199, 0x0018) }, /* Sierra Wireless MC5720 */
Greg Kroah-Hartman90ac3c82002-04-09 12:14:34 -0700165 { USB_DEVICE(0x1199, 0x0218) }, /* Sierra Wireless MC5720 */
Kevin Lloyd9454c462007-07-16 13:49:29 -0700166 { USB_DEVICE(0x0f30, 0x1b1d) }, /* Sierra Wireless MC5720 */
Kevin Lloyde43062d2007-01-17 16:04:18 -0800167 { USB_DEVICE(0x1199, 0x0020) }, /* Sierra Wireless MC5725 */
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700168 { USB_DEVICE(0x1199, 0x0024) }, /* Sierra Wireless MC5727 */
agilmore@wirelessbeehive.comb9e13ac2007-12-04 11:37:12 -0700169 { USB_DEVICE(0x1199, 0x0220) }, /* Sierra Wireless MC5725 */
Kevin Lloyde43062d2007-01-17 16:04:18 -0800170 { USB_DEVICE(0x1199, 0x0019) }, /* Sierra Wireless AirCard 595 */
171 { USB_DEVICE(0x1199, 0x0021) }, /* Sierra Wireless AirCard 597E */
Kevin Lloyd9454c462007-07-16 13:49:29 -0700172 { USB_DEVICE(0x1199, 0x0120) }, /* Sierra Wireless USB Dongle 595U */
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700173 /* Sierra Wireless C597 */
174 { USB_DEVICE_AND_INTERFACE_INFO(0x1199, 0x0023, 0xFF, 0xFF, 0xFF) },
Kevin Lloyde3173b22008-07-10 14:14:51 -0700175 /* Sierra Wireless Device */
176 { USB_DEVICE_AND_INTERFACE_INFO(0x1199, 0x0025, 0xFF, 0xFF, 0xFF) },
177 { USB_DEVICE(0x1199, 0x0026) }, /* Sierra Wireless Device */
Kevin Lloyd9454c462007-07-16 13:49:29 -0700178
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700179 { USB_DEVICE(0x1199, 0x6802) }, /* Sierra Wireless MC8755 */
Kevin Lloyde43062d2007-01-17 16:04:18 -0800180 { USB_DEVICE(0x1199, 0x6804) }, /* Sierra Wireless MC8755 */
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700181 { USB_DEVICE(0x1199, 0x6803) }, /* Sierra Wireless MC8765 */
Kevin Lloyd9454c462007-07-16 13:49:29 -0700182 { USB_DEVICE(0x1199, 0x6812) }, /* Sierra Wireless MC8775 & AC 875U */
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700183 { USB_DEVICE(0x1199, 0x6813) }, /* Sierra Wireless MC8775 (Lenovo) */
Kevin Lloyd7f170a62008-03-14 00:53:24 -0700184 { USB_DEVICE(0x1199, 0x6815) }, /* Sierra Wireless MC8775 */
Stefan Seyfried8f7f85e2008-04-17 07:47:34 +0200185 { USB_DEVICE(0x03f0, 0x1e1d) }, /* HP hs2300 a.k.a MC8775 */
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700186 { USB_DEVICE(0x1199, 0x6820) }, /* Sierra Wireless AirCard 875 */
Kevin Lloyd71069672008-04-02 11:24:56 -0700187 { USB_DEVICE(0x1199, 0x6821) }, /* Sierra Wireless AirCard 875U */
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700188 { USB_DEVICE(0x1199, 0x6832) }, /* Sierra Wireless MC8780 */
189 { USB_DEVICE(0x1199, 0x6833) }, /* Sierra Wireless MC8781 */
Kevin Lloyde3173b22008-07-10 14:14:51 -0700190 { USB_DEVICE(0x1199, 0x683B) }, /* Sierra Wireless MC8785 Composite */
191 { USB_DEVICE(0x1199, 0x683C) }, /* Sierra Wireless MC8790 */
192 { USB_DEVICE(0x1199, 0x683D) }, /* Sierra Wireless MC8790 */
193 { USB_DEVICE(0x1199, 0x683E) }, /* Sierra Wireless MC8790 */
Kevin Lloyd9454c462007-07-16 13:49:29 -0700194 { USB_DEVICE(0x1199, 0x6850) }, /* Sierra Wireless AirCard 880 */
195 { USB_DEVICE(0x1199, 0x6851) }, /* Sierra Wireless AirCard 881 */
196 { USB_DEVICE(0x1199, 0x6852) }, /* Sierra Wireless AirCard 880 E */
197 { USB_DEVICE(0x1199, 0x6853) }, /* Sierra Wireless AirCard 881 E */
Kevin Lloyd6835b322008-01-10 11:11:04 -0800198 { USB_DEVICE(0x1199, 0x6855) }, /* Sierra Wireless AirCard 880 U */
Jessica L. Blank62aad3a2007-12-30 20:11:35 -0600199 { USB_DEVICE(0x1199, 0x6856) }, /* Sierra Wireless AirCard 881 U */
Kevin Lloyde3173b22008-07-10 14:14:51 -0700200 { USB_DEVICE(0x1199, 0x6859) }, /* Sierra Wireless AirCard 885 E */
201 { USB_DEVICE(0x1199, 0x685A) }, /* Sierra Wireless AirCard 885 E */
202 /* Sierra Wireless C885 */
203 { USB_DEVICE_AND_INTERFACE_INFO(0x1199, 0x6880, 0xFF, 0xFF, 0xFF)},
204 /* Sierra Wireless Device */
205 { USB_DEVICE_AND_INTERFACE_INFO(0x1199, 0x6890, 0xFF, 0xFF, 0xFF)},
206 /* Sierra Wireless Device */
207 { USB_DEVICE_AND_INTERFACE_INFO(0x1199, 0x6892, 0xFF, 0xFF, 0xFF)},
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700208
Kevin Lloyde3173b22008-07-10 14:14:51 -0700209 { USB_DEVICE(0x1199, 0x0112) }, /* Sierra Wireless AirCard 580 */
210 { USB_DEVICE(0x0F3D, 0x0112) }, /* Airprime/Sierra PC 5220 */
Kevin Lloyd112225b2007-07-16 13:49:27 -0700211
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700212 { }
213};
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700214MODULE_DEVICE_TABLE(usb, id_table);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700215
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700216static struct usb_driver sierra_driver = {
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700217 .name = "sierra",
Kevin Lloyd228426e2008-01-10 11:11:04 -0800218 .probe = usb_serial_probe,
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700219 .disconnect = usb_serial_disconnect,
220 .id_table = id_table,
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700221 .no_dynamic_id = 1,
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700222};
223
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700224struct sierra_port_private {
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900225 spinlock_t lock; /* lock the structure */
226 int outstanding_urbs; /* number of out urbs in flight */
227
Oliver Neukum4f4f9c52008-03-14 00:53:24 -0700228 /* Input endpoints and buffers for this port */
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700229 struct urb *in_urbs[N_IN_URB];
Oliver Neukum4f4f9c52008-03-14 00:53:24 -0700230 char *in_buffer[N_IN_URB];
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700231
232 /* Settings for the port */
233 int rts_state; /* Handshaking pins (outputs) */
234 int dtr_state;
235 int cts_state; /* Handshaking pins (inputs) */
236 int dsr_state;
237 int dcd_state;
238 int ri_state;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700239};
240
Alan Cox95da3102008-07-22 11:09:07 +0100241static int sierra_send_setup(struct tty_struct *tty,
242 struct usb_serial_port *port)
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700243{
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700244 struct usb_serial *serial = port->serial;
245 struct sierra_port_private *portdata;
Kevin Lloyd228426e2008-01-10 11:11:04 -0800246 __u16 interface = 0;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700247
Harvey Harrison441b62c2008-03-03 16:08:34 -0800248 dbg("%s", __func__);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700249
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700250 portdata = usb_get_serial_port_data(port);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700251
Alan Cox95da3102008-07-22 11:09:07 +0100252 if (tty) {
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700253 int val = 0;
254 if (portdata->dtr_state)
255 val |= 0x01;
256 if (portdata->rts_state)
257 val |= 0x02;
258
Kevin Lloyde3173b22008-07-10 14:14:51 -0700259 /* If composite device then properly report interface */
260 if (serial->num_ports == 1)
261 interface = sierra_calc_interface(serial);
262
263 /* Otherwise the need to do non-composite mapping */
264 else {
265 if (port->bulk_out_endpointAddress == 2)
266 interface = 0;
267 else if (port->bulk_out_endpointAddress == 4)
268 interface = 1;
269 else if (port->bulk_out_endpointAddress == 5)
270 interface = 2;
271 }
Kevin Lloyd228426e2008-01-10 11:11:04 -0800272
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700273 return usb_control_msg(serial->dev,
274 usb_rcvctrlpipe(serial->dev, 0),
Kevin Lloyd228426e2008-01-10 11:11:04 -0800275 0x22, 0x21, val, interface,
276 NULL, 0, USB_CTRL_SET_TIMEOUT);
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700277 }
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700278
279 return 0;
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700280}
281
Alan Cox95da3102008-07-22 11:09:07 +0100282static void sierra_set_termios(struct tty_struct *tty,
283 struct usb_serial_port *port, struct ktermios *old_termios)
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700284{
Harvey Harrison441b62c2008-03-03 16:08:34 -0800285 dbg("%s", __func__);
Alan Cox95da3102008-07-22 11:09:07 +0100286 tty_termios_copy_hw(tty->termios, old_termios);
287 sierra_send_setup(tty, port);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700288}
289
Alan Cox95da3102008-07-22 11:09:07 +0100290static int sierra_tiocmget(struct tty_struct *tty, struct file *file)
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700291{
Alan Cox95da3102008-07-22 11:09:07 +0100292 struct usb_serial_port *port = tty->driver_data;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700293 unsigned int value;
294 struct sierra_port_private *portdata;
295
296 portdata = usb_get_serial_port_data(port);
297
298 value = ((portdata->rts_state) ? TIOCM_RTS : 0) |
299 ((portdata->dtr_state) ? TIOCM_DTR : 0) |
300 ((portdata->cts_state) ? TIOCM_CTS : 0) |
301 ((portdata->dsr_state) ? TIOCM_DSR : 0) |
302 ((portdata->dcd_state) ? TIOCM_CAR : 0) |
303 ((portdata->ri_state) ? TIOCM_RNG : 0);
304
305 return value;
306}
307
Alan Cox95da3102008-07-22 11:09:07 +0100308static int sierra_tiocmset(struct tty_struct *tty, struct file *file,
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700309 unsigned int set, unsigned int clear)
310{
Alan Cox95da3102008-07-22 11:09:07 +0100311 struct usb_serial_port *port = tty->driver_data;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700312 struct sierra_port_private *portdata;
313
314 portdata = usb_get_serial_port_data(port);
315
316 if (set & TIOCM_RTS)
317 portdata->rts_state = 1;
318 if (set & TIOCM_DTR)
319 portdata->dtr_state = 1;
320
321 if (clear & TIOCM_RTS)
322 portdata->rts_state = 0;
323 if (clear & TIOCM_DTR)
324 portdata->dtr_state = 0;
Alan Cox95da3102008-07-22 11:09:07 +0100325 return sierra_send_setup(tty, port);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700326}
327
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900328static void sierra_outdat_callback(struct urb *urb)
329{
330 struct usb_serial_port *port = urb->context;
331 struct sierra_port_private *portdata = usb_get_serial_port_data(port);
332 int status = urb->status;
333 unsigned long flags;
334
Harvey Harrison441b62c2008-03-03 16:08:34 -0800335 dbg("%s - port %d", __func__, port->number);
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900336
337 /* free up the transfer buffer, as usb_free_urb() does not do this */
338 kfree(urb->transfer_buffer);
339
340 if (status)
341 dbg("%s - nonzero write bulk status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800342 __func__, status);
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900343
344 spin_lock_irqsave(&portdata->lock, flags);
345 --portdata->outstanding_urbs;
346 spin_unlock_irqrestore(&portdata->lock, flags);
347
348 usb_serial_port_softint(port);
349}
350
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700351/* Write */
Alan Cox95da3102008-07-22 11:09:07 +0100352static int sierra_write(struct tty_struct *tty, struct usb_serial_port *port,
353 const unsigned char *buf, int count)
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700354{
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900355 struct sierra_port_private *portdata = usb_get_serial_port_data(port);
356 struct usb_serial *serial = port->serial;
357 unsigned long flags;
358 unsigned char *buffer;
359 struct urb *urb;
360 int status;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700361
362 portdata = usb_get_serial_port_data(port);
363
Harvey Harrison441b62c2008-03-03 16:08:34 -0800364 dbg("%s: write (%d chars)", __func__, count);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700365
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900366 spin_lock_irqsave(&portdata->lock, flags);
367 if (portdata->outstanding_urbs > N_OUT_URB) {
368 spin_unlock_irqrestore(&portdata->lock, flags);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800369 dbg("%s - write limit hit\n", __func__);
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900370 return 0;
371 }
372 portdata->outstanding_urbs++;
373 spin_unlock_irqrestore(&portdata->lock, flags);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700374
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900375 buffer = kmalloc(count, GFP_ATOMIC);
376 if (!buffer) {
377 dev_err(&port->dev, "out of memory\n");
378 count = -ENOMEM;
379 goto error_no_buffer;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700380 }
381
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900382 urb = usb_alloc_urb(0, GFP_ATOMIC);
383 if (!urb) {
384 dev_err(&port->dev, "no more free urbs\n");
385 count = -ENOMEM;
386 goto error_no_urb;
387 }
388
389 memcpy(buffer, buf, count);
390
Harvey Harrison441b62c2008-03-03 16:08:34 -0800391 usb_serial_debug_data(debug, &port->dev, __func__, count, buffer);
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900392
393 usb_fill_bulk_urb(urb, serial->dev,
394 usb_sndbulkpipe(serial->dev,
395 port->bulk_out_endpointAddress),
396 buffer, count, sierra_outdat_callback, port);
397
398 /* send it down the pipe */
399 status = usb_submit_urb(urb, GFP_ATOMIC);
400 if (status) {
401 dev_err(&port->dev, "%s - usb_submit_urb(write bulk) failed "
Harvey Harrison441b62c2008-03-03 16:08:34 -0800402 "with status = %d\n", __func__, status);
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900403 count = status;
404 goto error;
405 }
406
407 /* we are done with this urb, so let the host driver
408 * really free it when it is finished with it */
409 usb_free_urb(urb);
410
411 return count;
412error:
413 usb_free_urb(urb);
414error_no_urb:
415 kfree(buffer);
416error_no_buffer:
417 spin_lock_irqsave(&portdata->lock, flags);
418 --portdata->outstanding_urbs;
419 spin_unlock_irqrestore(&portdata->lock, flags);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700420 return count;
421}
422
423static void sierra_indat_callback(struct urb *urb)
424{
425 int err;
426 int endpoint;
427 struct usb_serial_port *port;
428 struct tty_struct *tty;
429 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartman17dd2212007-06-15 15:44:13 -0700430 int status = urb->status;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700431
Harvey Harrison441b62c2008-03-03 16:08:34 -0800432 dbg("%s: %p", __func__, urb);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700433
434 endpoint = usb_pipeendpoint(urb->pipe);
Ming Leicdc97792008-02-24 18:41:47 +0800435 port = urb->context;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700436
Greg Kroah-Hartman17dd2212007-06-15 15:44:13 -0700437 if (status) {
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700438 dbg("%s: nonzero status: %d on endpoint %02x.",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800439 __func__, status, endpoint);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700440 } else {
Alan Cox95da3102008-07-22 11:09:07 +0100441 tty = port->port.tty;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700442 if (urb->actual_length) {
443 tty_buffer_request_room(tty, urb->actual_length);
444 tty_insert_flip_string(tty, data, urb->actual_length);
445 tty_flip_buffer_push(tty);
446 } else {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800447 dbg("%s: empty read urb received", __func__);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700448 }
449
450 /* Resubmit urb so we continue receiving */
Alan Cox95da3102008-07-22 11:09:07 +0100451 if (port->port.count && status != -ESHUTDOWN) {
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700452 err = usb_submit_urb(urb, GFP_ATOMIC);
453 if (err)
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900454 dev_err(&port->dev, "resubmit read urb failed."
Joe Perches898eb712007-10-18 03:06:30 -0700455 "(%d)\n", err);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700456 }
457 }
458 return;
459}
460
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700461static void sierra_instat_callback(struct urb *urb)
462{
463 int err;
Greg Kroah-Hartman17dd2212007-06-15 15:44:13 -0700464 int status = urb->status;
Ming Leicdc97792008-02-24 18:41:47 +0800465 struct usb_serial_port *port = urb->context;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700466 struct sierra_port_private *portdata = usb_get_serial_port_data(port);
467 struct usb_serial *serial = port->serial;
468
Harvey Harrison441b62c2008-03-03 16:08:34 -0800469 dbg("%s", __func__);
470 dbg("%s: urb %p port %p has data %p", __func__, urb, port, portdata);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700471
Greg Kroah-Hartman17dd2212007-06-15 15:44:13 -0700472 if (status == 0) {
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700473 struct usb_ctrlrequest *req_pkt =
474 (struct usb_ctrlrequest *)urb->transfer_buffer;
475
476 if (!req_pkt) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800477 dbg("%s: NULL req_pkt\n", __func__);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700478 return;
479 }
480 if ((req_pkt->bRequestType == 0xA1) &&
481 (req_pkt->bRequest == 0x20)) {
482 int old_dcd_state;
483 unsigned char signals = *((unsigned char *)
484 urb->transfer_buffer +
485 sizeof(struct usb_ctrlrequest));
486
Harvey Harrison441b62c2008-03-03 16:08:34 -0800487 dbg("%s: signal x%x", __func__, signals);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700488
489 old_dcd_state = portdata->dcd_state;
490 portdata->cts_state = 1;
491 portdata->dcd_state = ((signals & 0x01) ? 1 : 0);
492 portdata->dsr_state = ((signals & 0x02) ? 1 : 0);
493 portdata->ri_state = ((signals & 0x08) ? 1 : 0);
494
Alan Cox95da3102008-07-22 11:09:07 +0100495 if (port->port.tty && !C_CLOCAL(port->port.tty) &&
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700496 old_dcd_state && !portdata->dcd_state)
Alan Cox95da3102008-07-22 11:09:07 +0100497 tty_hangup(port->port.tty);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700498 } else {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800499 dbg("%s: type %x req %x", __func__,
Kevin Lloydf3564de2008-03-28 10:05:08 -0700500 req_pkt->bRequestType, req_pkt->bRequest);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700501 }
502 } else
Harvey Harrison441b62c2008-03-03 16:08:34 -0800503 dbg("%s: error %d", __func__, status);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700504
505 /* Resubmit urb so we continue receiving IRQ data */
Greg Kroah-Hartman17dd2212007-06-15 15:44:13 -0700506 if (status != -ESHUTDOWN) {
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700507 urb->dev = serial->dev;
508 err = usb_submit_urb(urb, GFP_ATOMIC);
509 if (err)
510 dbg("%s: resubmit intr urb failed. (%d)",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800511 __func__, err);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700512 }
513}
514
Alan Cox95da3102008-07-22 11:09:07 +0100515static int sierra_write_room(struct tty_struct *tty)
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700516{
Alan Cox95da3102008-07-22 11:09:07 +0100517 struct usb_serial_port *port = tty->driver_data;
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900518 struct sierra_port_private *portdata = usb_get_serial_port_data(port);
519 unsigned long flags;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700520
Harvey Harrison441b62c2008-03-03 16:08:34 -0800521 dbg("%s - port %d", __func__, port->number);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700522
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900523 /* try to give a good number back based on if we have any free urbs at
524 * this point in time */
525 spin_lock_irqsave(&portdata->lock, flags);
526 if (portdata->outstanding_urbs > N_OUT_URB * 2 / 3) {
527 spin_unlock_irqrestore(&portdata->lock, flags);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800528 dbg("%s - write limit hit\n", __func__);
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900529 return 0;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700530 }
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900531 spin_unlock_irqrestore(&portdata->lock, flags);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700532
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900533 return 2048;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700534}
535
Alan Cox95da3102008-07-22 11:09:07 +0100536static int sierra_open(struct tty_struct *tty,
537 struct usb_serial_port *port, struct file *filp)
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700538{
539 struct sierra_port_private *portdata;
540 struct usb_serial *serial = port->serial;
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900541 int i;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700542 struct urb *urb;
Kevin Lloyde43062d2007-01-17 16:04:18 -0800543 int result;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700544
545 portdata = usb_get_serial_port_data(port);
546
Harvey Harrison441b62c2008-03-03 16:08:34 -0800547 dbg("%s", __func__);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700548
549 /* Set some sane defaults */
550 portdata->rts_state = 1;
551 portdata->dtr_state = 1;
552
553 /* Reset low level data toggle and start reading from endpoints */
554 for (i = 0; i < N_IN_URB; i++) {
555 urb = portdata->in_urbs[i];
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900556 if (!urb)
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700557 continue;
558 if (urb->dev != serial->dev) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800559 dbg("%s: dev %p != %p", __func__,
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700560 urb->dev, serial->dev);
561 continue;
562 }
563
564 /*
565 * make sure endpoint data toggle is synchronized with the
566 * device
567 */
568 usb_clear_halt(urb->dev, urb->pipe);
569
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900570 result = usb_submit_urb(urb, GFP_KERNEL);
571 if (result) {
Joe Perches898eb712007-10-18 03:06:30 -0700572 dev_err(&port->dev, "submit urb %d failed (%d) %d\n",
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900573 i, result, urb->transfer_buffer_length);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700574 }
575 }
576
Alan Cox95da3102008-07-22 11:09:07 +0100577 if (tty)
578 tty->low_latency = 1;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700579
Alan Cox95da3102008-07-22 11:09:07 +0100580 sierra_send_setup(tty, port);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700581
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900582 /* start up the interrupt endpoint if we have one */
583 if (port->interrupt_in_urb) {
584 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
585 if (result)
Joe Perches898eb712007-10-18 03:06:30 -0700586 dev_err(&port->dev, "submit irq_in urb failed %d\n",
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900587 result);
588 }
589 return 0;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700590}
591
Alan Cox95da3102008-07-22 11:09:07 +0100592static void sierra_close(struct tty_struct *tty,
593 struct usb_serial_port *port, struct file *filp)
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700594{
595 int i;
596 struct usb_serial *serial = port->serial;
597 struct sierra_port_private *portdata;
598
Harvey Harrison441b62c2008-03-03 16:08:34 -0800599 dbg("%s", __func__);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700600 portdata = usb_get_serial_port_data(port);
601
602 portdata->rts_state = 0;
603 portdata->dtr_state = 0;
604
605 if (serial->dev) {
Oliver Neukume33fe4d2008-01-21 17:44:10 +0100606 mutex_lock(&serial->disc_mutex);
607 if (!serial->disconnected)
Alan Cox95da3102008-07-22 11:09:07 +0100608 sierra_send_setup(tty, port);
Oliver Neukume33fe4d2008-01-21 17:44:10 +0100609 mutex_unlock(&serial->disc_mutex);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700610
611 /* Stop reading/writing urbs */
612 for (i = 0; i < N_IN_URB; i++)
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900613 usb_kill_urb(portdata->in_urbs[i]);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700614 }
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900615
616 usb_kill_urb(port->interrupt_in_urb);
617
Alan Cox95da3102008-07-22 11:09:07 +0100618 port->port.tty = NULL; /* FIXME */
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700619}
620
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700621static int sierra_startup(struct usb_serial *serial)
622{
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700623 struct usb_serial_port *port;
624 struct sierra_port_private *portdata;
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900625 struct urb *urb;
626 int i;
627 int j;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700628
Harvey Harrison441b62c2008-03-03 16:08:34 -0800629 dbg("%s", __func__);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700630
Kevin Lloyd228426e2008-01-10 11:11:04 -0800631 /* Set Device mode to D0 */
Kevin Lloyd112225b2007-07-16 13:49:27 -0700632 sierra_set_power_state(serial->dev, 0x0000);
633
Kevin Lloyd228426e2008-01-10 11:11:04 -0800634 /* Check NMEA and set */
635 if (nmea)
636 sierra_vsc_set_nmea(serial->dev, 1);
637
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700638 /* Now setup per port private data */
639 for (i = 0; i < serial->num_ports; i++) {
640 port = serial->port[i];
641 portdata = kzalloc(sizeof(*portdata), GFP_KERNEL);
642 if (!portdata) {
643 dbg("%s: kmalloc for sierra_port_private (%d) failed!.",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800644 __func__, i);
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900645 return -ENOMEM;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700646 }
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900647 spin_lock_init(&portdata->lock);
Oliver Neukum4f4f9c52008-03-14 00:53:24 -0700648 for (j = 0; j < N_IN_URB; j++) {
649 portdata->in_buffer[j] = kmalloc(IN_BUFLEN, GFP_KERNEL);
650 if (!portdata->in_buffer[j]) {
651 for (--j; j >= 0; j--)
652 kfree(portdata->in_buffer[j]);
653 kfree(portdata);
654 return -ENOMEM;
655 }
656 }
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700657
658 usb_set_serial_port_data(port, portdata);
659
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900660 /* initialize the in urbs */
661 for (j = 0; j < N_IN_URB; ++j) {
662 urb = usb_alloc_urb(0, GFP_KERNEL);
663 if (urb == NULL) {
664 dbg("%s: alloc for in port failed.",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800665 __func__);
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900666 continue;
667 }
668 /* Fill URB using supplied data. */
669 usb_fill_bulk_urb(urb, serial->dev,
670 usb_rcvbulkpipe(serial->dev,
671 port->bulk_in_endpointAddress),
672 portdata->in_buffer[j], IN_BUFLEN,
673 sierra_indat_callback, port);
674 portdata->in_urbs[j] = urb;
675 }
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700676 }
677
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900678 return 0;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700679}
680
681static void sierra_shutdown(struct usb_serial *serial)
682{
683 int i, j;
684 struct usb_serial_port *port;
685 struct sierra_port_private *portdata;
686
Harvey Harrison441b62c2008-03-03 16:08:34 -0800687 dbg("%s", __func__);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700688
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700689 for (i = 0; i < serial->num_ports; ++i) {
690 port = serial->port[i];
Greg Kroah-Hartmanf094e4f2007-04-26 00:12:01 -0700691 if (!port)
692 continue;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700693 portdata = usb_get_serial_port_data(port);
Greg Kroah-Hartmanf094e4f2007-04-26 00:12:01 -0700694 if (!portdata)
695 continue;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700696
697 for (j = 0; j < N_IN_URB; j++) {
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900698 usb_kill_urb(portdata->in_urbs[j]);
699 usb_free_urb(portdata->in_urbs[j]);
Oliver Neukum4f4f9c52008-03-14 00:53:24 -0700700 kfree(portdata->in_buffer[j]);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700701 }
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900702 kfree(portdata);
703 usb_set_serial_port_data(port, NULL);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700704 }
705}
706
Kevin Lloyd228426e2008-01-10 11:11:04 -0800707static struct usb_serial_driver sierra_device = {
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700708 .driver = {
709 .owner = THIS_MODULE,
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700710 .name = "sierra",
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700711 },
Kevin Lloyd228426e2008-01-10 11:11:04 -0800712 .description = "Sierra USB modem",
713 .id_table = id_table,
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100714 .usb_driver = &sierra_driver,
Kevin Lloyd228426e2008-01-10 11:11:04 -0800715 .calc_num_ports = sierra_calc_num_ports,
716 .probe = sierra_probe,
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700717 .open = sierra_open,
718 .close = sierra_close,
719 .write = sierra_write,
720 .write_room = sierra_write_room,
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700721 .set_termios = sierra_set_termios,
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700722 .tiocmget = sierra_tiocmget,
723 .tiocmset = sierra_tiocmset,
724 .attach = sierra_startup,
725 .shutdown = sierra_shutdown,
726 .read_int_callback = sierra_instat_callback,
727};
728
729/* Functions used by new usb-serial code. */
730static int __init sierra_init(void)
731{
732 int retval;
Kevin Lloyd228426e2008-01-10 11:11:04 -0800733 retval = usb_serial_register(&sierra_device);
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700734 if (retval)
Kevin Lloyd228426e2008-01-10 11:11:04 -0800735 goto failed_device_register;
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700736
737
738 retval = usb_register(&sierra_driver);
739 if (retval)
740 goto failed_driver_register;
741
742 info(DRIVER_DESC ": " DRIVER_VERSION);
743
744 return 0;
745
746failed_driver_register:
Kevin Lloyd228426e2008-01-10 11:11:04 -0800747 usb_serial_deregister(&sierra_device);
748failed_device_register:
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700749 return retval;
750}
751
752static void __exit sierra_exit(void)
753{
Alan Cox9660ea32008-07-22 11:14:59 +0100754 usb_deregister(&sierra_driver);
Kevin Lloyd228426e2008-01-10 11:11:04 -0800755 usb_serial_deregister(&sierra_device);
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700756}
757
758module_init(sierra_init);
759module_exit(sierra_exit);
760
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700761MODULE_AUTHOR(DRIVER_AUTHOR);
762MODULE_DESCRIPTION(DRIVER_DESC);
763MODULE_VERSION(DRIVER_VERSION);
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700764MODULE_LICENSE("GPL");
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700765
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700766module_param(nmea, bool, S_IRUGO | S_IWUSR);
Kevin Lloyd228426e2008-01-10 11:11:04 -0800767MODULE_PARM_DESC(nmea, "NMEA streaming");
768
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700769#ifdef CONFIG_USB_DEBUG
770module_param(debug, bool, S_IRUGO | S_IWUSR);
771MODULE_PARM_DESC(debug, "Debug messages");
772#endif