blob: a3aaf08e56d5334fce8e2c6a649597bba621e40d [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 Lloydf3564de2008-03-28 10:05:08 -070017#define DRIVER_VERSION "v.1.2.9c"
18#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 Lloyd112225b2007-07-16 13:49:27 -070034#define SWIMS_SET_MODE_Modem 0x0001
35
36/* per port private data */
37#define N_IN_URB 4
38#define N_OUT_URB 4
39#define IN_BUFLEN 4096
40
41static int debug;
Kevin Lloyd228426e2008-01-10 11:11:04 -080042static int nmea;
43static int truinstall = 1;
Kevin Lloyd112225b2007-07-16 13:49:27 -070044
45enum devicetype {
46 DEVICE_3_PORT = 0,
47 DEVICE_1_PORT = 1,
48 DEVICE_INSTALLER = 2,
49};
50
Adrian Bunk82a24e62007-07-29 16:59:02 +020051static int sierra_set_power_state(struct usb_device *udev, __u16 swiState)
Kevin Lloyd112225b2007-07-16 13:49:27 -070052{
53 int result;
Kevin Lloyd4e0fee82008-07-10 14:14:47 -070054 dev_dbg(&udev->dev, "%s", __func__);
Kevin Lloyd112225b2007-07-16 13:49:27 -070055 result = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
Kevin Lloyd228426e2008-01-10 11:11:04 -080056 SWIMS_USB_REQUEST_SetPower, /* __u8 request */
Kevin Lloydf3564de2008-03-28 10:05:08 -070057 USB_TYPE_VENDOR, /* __u8 request type */
Kevin Lloyd228426e2008-01-10 11:11:04 -080058 swiState, /* __u16 value */
59 0, /* __u16 index */
60 NULL, /* void *data */
61 0, /* __u16 size */
62 USB_CTRL_SET_TIMEOUT); /* int timeout */
Kevin Lloyd112225b2007-07-16 13:49:27 -070063 return result;
64}
65
Kevin Lloyd228426e2008-01-10 11:11:04 -080066static int sierra_set_ms_mode(struct usb_device *udev, __u16 eSWocMode)
Kevin Lloyd112225b2007-07-16 13:49:27 -070067{
68 int result;
Kevin Lloyd4e0fee82008-07-10 14:14:47 -070069 dev_dbg(&udev->dev, "%s", __func__);
Kevin Lloyd112225b2007-07-16 13:49:27 -070070 result = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
71 SWIMS_USB_REQUEST_SetMode, /* __u8 request */
Kevin Lloydf3564de2008-03-28 10:05:08 -070072 USB_TYPE_VENDOR, /* __u8 request type */
Kevin Lloyd228426e2008-01-10 11:11:04 -080073 eSWocMode, /* __u16 value */
74 0x0000, /* __u16 index */
Kevin Lloyd112225b2007-07-16 13:49:27 -070075 NULL, /* void *data */
76 0, /* __u16 size */
77 USB_CTRL_SET_TIMEOUT); /* int timeout */
78 return result;
79}
80
Kevin Lloyd228426e2008-01-10 11:11:04 -080081static int sierra_vsc_set_nmea(struct usb_device *udev, __u16 enable)
Kevin Lloyd112225b2007-07-16 13:49:27 -070082{
83 int result;
Kevin Lloyd4e0fee82008-07-10 14:14:47 -070084 dev_dbg(&udev->dev, "%s", __func__);
Kevin Lloyd228426e2008-01-10 11:11:04 -080085 result = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
86 SWIMS_USB_REQUEST_SetNmea, /* __u8 request */
Kevin Lloydf3564de2008-03-28 10:05:08 -070087 USB_TYPE_VENDOR, /* __u8 request type */
Kevin Lloyd228426e2008-01-10 11:11:04 -080088 enable, /* __u16 value */
89 0x0000, /* __u16 index */
90 NULL, /* void *data */
91 0, /* __u16 size */
92 USB_CTRL_SET_TIMEOUT); /* int timeout */
93 return result;
94}
Kevin Lloyd112225b2007-07-16 13:49:27 -070095
Kevin Lloyd228426e2008-01-10 11:11:04 -080096static int sierra_calc_num_ports(struct usb_serial *serial)
97{
98 int result;
99 int *num_ports = usb_get_serial_data(serial);
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700100 dev_dbg(&serial->dev->dev, "%s", __func__);
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
Kevin Lloyd71069672008-04-02 11:24:56 -0700112static int sierra_calc_interface(struct usb_serial *serial)
113{
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700114 int interface;
115 struct usb_interface *p_interface;
116 struct usb_host_interface *p_host_interface;
117 dev_dbg(&serial->dev->dev, "%s", __func__);
Kevin Lloyd71069672008-04-02 11:24:56 -0700118
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700119 /* Get the interface structure pointer from the serial struct */
120 p_interface = serial->interface;
Kevin Lloyd71069672008-04-02 11:24:56 -0700121
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700122 /* Get a pointer to the host interface structure */
123 p_host_interface = p_interface->cur_altsetting;
Kevin Lloyd71069672008-04-02 11:24:56 -0700124
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700125 /* read the interface descriptor for this active altsetting
126 * to find out the interface number we are on
127 */
128 interface = p_host_interface->desc.bInterfaceNumber;
Kevin Lloyd71069672008-04-02 11:24:56 -0700129
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700130 return interface;
Kevin Lloyd71069672008-04-02 11:24:56 -0700131}
132
Kevin Lloyd228426e2008-01-10 11:11:04 -0800133static int sierra_probe(struct usb_serial *serial,
134 const struct usb_device_id *id)
135{
136 int result = 0;
137 struct usb_device *udev;
138 int *num_ports;
139 u8 ifnum;
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700140 dev_dbg(&serial->dev->dev, "%s", __func__);
Kevin Lloyd228426e2008-01-10 11:11:04 -0800141
142 num_ports = kmalloc(sizeof(*num_ports), GFP_KERNEL);
143 if (!num_ports)
144 return -ENOMEM;
145
146 ifnum = serial->interface->cur_altsetting->desc.bInterfaceNumber;
147 udev = serial->dev;
148
Kevin Lloyd71069672008-04-02 11:24:56 -0700149 /* Figure out the interface number from the serial structure */
150 ifnum = sierra_calc_interface(serial);
151
152 /*
153 * If this interface supports more than 1 alternate
154 * select the 2nd one
155 */
156 if (serial->interface->num_altsetting == 2) {
157 dev_dbg(&udev->dev,
158 "Selecting alt setting for interface %d\n",
159 ifnum);
160
161 /* We know the alternate setting is 1 for the MC8785 */
162 usb_set_interface(udev, ifnum, 1);
163 }
164
Kevin Lloyd228426e2008-01-10 11:11:04 -0800165 /* Check if in installer mode */
166 if (truinstall && id->driver_info == DEVICE_INSTALLER) {
167 dev_dbg(&udev->dev, "%s", "FOUND TRU-INSTALL DEVICE(SW)\n");
168 result = sierra_set_ms_mode(udev, SWIMS_SET_MODE_Modem);
169 /* Don't bind to the device when in installer mode */
170 kfree(num_ports);
171 return -EIO;
172 } else if (id->driver_info == DEVICE_1_PORT)
173 *num_ports = 1;
174 else if (ifnum == 0x99)
175 *num_ports = 0;
176 else
177 *num_ports = 3;
178 /*
179 * save off our num_ports info so that we can use it in the
180 * calc_num_ports callback
181 */
182 usb_set_serial_data(serial, (void *)num_ports);
183
184 return result;
Kevin Lloyd112225b2007-07-16 13:49:27 -0700185}
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700186
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700187static struct usb_device_id id_table [] = {
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700188 { USB_DEVICE(0x1199, 0x0017) }, /* Sierra Wireless EM5625 */
Kevin Lloyde43062d2007-01-17 16:04:18 -0800189 { USB_DEVICE(0x1199, 0x0018) }, /* Sierra Wireless MC5720 */
Greg Kroah-Hartman90ac3c82002-04-09 12:14:34 -0700190 { USB_DEVICE(0x1199, 0x0218) }, /* Sierra Wireless MC5720 */
Kevin Lloyd9454c462007-07-16 13:49:29 -0700191 { USB_DEVICE(0x0f30, 0x1b1d) }, /* Sierra Wireless MC5720 */
Kevin Lloyde43062d2007-01-17 16:04:18 -0800192 { USB_DEVICE(0x1199, 0x0020) }, /* Sierra Wireless MC5725 */
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700193 { USB_DEVICE(0x1199, 0x0024) }, /* Sierra Wireless MC5727 */
agilmore@wirelessbeehive.comb9e13ac2007-12-04 11:37:12 -0700194 { USB_DEVICE(0x1199, 0x0220) }, /* Sierra Wireless MC5725 */
Kevin Lloyde43062d2007-01-17 16:04:18 -0800195 { USB_DEVICE(0x1199, 0x0019) }, /* Sierra Wireless AirCard 595 */
196 { USB_DEVICE(0x1199, 0x0021) }, /* Sierra Wireless AirCard 597E */
Kevin Lloyd9454c462007-07-16 13:49:29 -0700197 { USB_DEVICE(0x1199, 0x0120) }, /* Sierra Wireless USB Dongle 595U */
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700198 /* Sierra Wireless C597 */
199 { USB_DEVICE_AND_INTERFACE_INFO(0x1199, 0x0023, 0xFF, 0xFF, 0xFF) },
Kevin Lloyd9454c462007-07-16 13:49:29 -0700200
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700201 { USB_DEVICE(0x1199, 0x6802) }, /* Sierra Wireless MC8755 */
Kevin Lloyde43062d2007-01-17 16:04:18 -0800202 { USB_DEVICE(0x1199, 0x6804) }, /* Sierra Wireless MC8755 */
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700203 { USB_DEVICE(0x1199, 0x6803) }, /* Sierra Wireless MC8765 */
Kevin Lloyd9454c462007-07-16 13:49:29 -0700204 { USB_DEVICE(0x1199, 0x6812) }, /* Sierra Wireless MC8775 & AC 875U */
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700205 { USB_DEVICE(0x1199, 0x6813) }, /* Sierra Wireless MC8775 (Lenovo) */
Kevin Lloyd7f170a62008-03-14 00:53:24 -0700206 { USB_DEVICE(0x1199, 0x6815) }, /* Sierra Wireless MC8775 */
Stefan Seyfried8f7f85e2008-04-17 07:47:34 +0200207 { USB_DEVICE(0x03f0, 0x1e1d) }, /* HP hs2300 a.k.a MC8775 */
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700208 { USB_DEVICE(0x1199, 0x6820) }, /* Sierra Wireless AirCard 875 */
Kevin Lloyd71069672008-04-02 11:24:56 -0700209 { USB_DEVICE(0x1199, 0x6821) }, /* Sierra Wireless AirCard 875U */
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700210 { USB_DEVICE(0x1199, 0x6832) }, /* Sierra Wireless MC8780 */
211 { USB_DEVICE(0x1199, 0x6833) }, /* Sierra Wireless MC8781 */
212 { USB_DEVICE(0x1199, 0x683B), .driver_info = DEVICE_1_PORT }, /* Sierra Wireless MC8785 Composite */
Kevin Lloyd9454c462007-07-16 13:49:29 -0700213 { USB_DEVICE(0x1199, 0x6850) }, /* Sierra Wireless AirCard 880 */
214 { USB_DEVICE(0x1199, 0x6851) }, /* Sierra Wireless AirCard 881 */
215 { USB_DEVICE(0x1199, 0x6852) }, /* Sierra Wireless AirCard 880 E */
216 { USB_DEVICE(0x1199, 0x6853) }, /* Sierra Wireless AirCard 881 E */
Kevin Lloyd6835b322008-01-10 11:11:04 -0800217 { USB_DEVICE(0x1199, 0x6855) }, /* Sierra Wireless AirCard 880 U */
Jessica L. Blank62aad3a2007-12-30 20:11:35 -0600218 { USB_DEVICE(0x1199, 0x6856) }, /* Sierra Wireless AirCard 881 U */
Kevin Lloyd71069672008-04-02 11:24:56 -0700219 { USB_DEVICE(0x1199, 0x6859), .driver_info = DEVICE_1_PORT }, /* Sierra Wireless AirCard 885 E */
220 { USB_DEVICE(0x1199, 0x685A), .driver_info = DEVICE_1_PORT }, /* Sierra Wireless AirCard 885 E */
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700221
Kevin Lloyd112225b2007-07-16 13:49:27 -0700222 { USB_DEVICE(0x1199, 0x0112), .driver_info = DEVICE_1_PORT }, /* Sierra Wireless AirCard 580 */
223 { USB_DEVICE(0x0F3D, 0x0112), .driver_info = DEVICE_1_PORT }, /* Airprime/Sierra PC 5220 */
224
225 { USB_DEVICE(0x1199, 0x0FFF), .driver_info = DEVICE_INSTALLER},
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700226 { }
227};
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700228MODULE_DEVICE_TABLE(usb, id_table);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700229
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700230static struct usb_driver sierra_driver = {
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700231 .name = "sierra",
Kevin Lloyd228426e2008-01-10 11:11:04 -0800232 .probe = usb_serial_probe,
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700233 .disconnect = usb_serial_disconnect,
234 .id_table = id_table,
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700235 .no_dynamic_id = 1,
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700236};
237
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700238struct sierra_port_private {
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900239 spinlock_t lock; /* lock the structure */
240 int outstanding_urbs; /* number of out urbs in flight */
241
Oliver Neukum4f4f9c52008-03-14 00:53:24 -0700242 /* Input endpoints and buffers for this port */
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700243 struct urb *in_urbs[N_IN_URB];
Oliver Neukum4f4f9c52008-03-14 00:53:24 -0700244 char *in_buffer[N_IN_URB];
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700245
246 /* Settings for the port */
247 int rts_state; /* Handshaking pins (outputs) */
248 int dtr_state;
249 int cts_state; /* Handshaking pins (inputs) */
250 int dsr_state;
251 int dcd_state;
252 int ri_state;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700253};
254
Alan Cox95da3102008-07-22 11:09:07 +0100255static int sierra_send_setup(struct tty_struct *tty,
256 struct usb_serial_port *port)
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700257{
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700258 struct usb_serial *serial = port->serial;
259 struct sierra_port_private *portdata;
Kevin Lloyd228426e2008-01-10 11:11:04 -0800260 __u16 interface = 0;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700261
Harvey Harrison441b62c2008-03-03 16:08:34 -0800262 dbg("%s", __func__);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700263
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700264 portdata = usb_get_serial_port_data(port);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700265
Alan Cox95da3102008-07-22 11:09:07 +0100266 if (tty) {
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700267 int val = 0;
268 if (portdata->dtr_state)
269 val |= 0x01;
270 if (portdata->rts_state)
271 val |= 0x02;
272
Kevin Lloyd228426e2008-01-10 11:11:04 -0800273 /* Determine which port is targeted */
274 if (port->bulk_out_endpointAddress == 2)
275 interface = 0;
276 else if (port->bulk_out_endpointAddress == 4)
277 interface = 1;
278 else if (port->bulk_out_endpointAddress == 5)
279 interface = 2;
280
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700281 return usb_control_msg(serial->dev,
282 usb_rcvctrlpipe(serial->dev, 0),
Kevin Lloyd228426e2008-01-10 11:11:04 -0800283 0x22, 0x21, val, interface,
284 NULL, 0, USB_CTRL_SET_TIMEOUT);
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700285 }
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700286
287 return 0;
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700288}
289
Alan Cox95da3102008-07-22 11:09:07 +0100290static void sierra_set_termios(struct tty_struct *tty,
291 struct usb_serial_port *port, struct ktermios *old_termios)
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700292{
Harvey Harrison441b62c2008-03-03 16:08:34 -0800293 dbg("%s", __func__);
Alan Cox95da3102008-07-22 11:09:07 +0100294 tty_termios_copy_hw(tty->termios, old_termios);
295 sierra_send_setup(tty, port);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700296}
297
Alan Cox95da3102008-07-22 11:09:07 +0100298static int sierra_tiocmget(struct tty_struct *tty, struct file *file)
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700299{
Alan Cox95da3102008-07-22 11:09:07 +0100300 struct usb_serial_port *port = tty->driver_data;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700301 unsigned int value;
302 struct sierra_port_private *portdata;
303
304 portdata = usb_get_serial_port_data(port);
305
306 value = ((portdata->rts_state) ? TIOCM_RTS : 0) |
307 ((portdata->dtr_state) ? TIOCM_DTR : 0) |
308 ((portdata->cts_state) ? TIOCM_CTS : 0) |
309 ((portdata->dsr_state) ? TIOCM_DSR : 0) |
310 ((portdata->dcd_state) ? TIOCM_CAR : 0) |
311 ((portdata->ri_state) ? TIOCM_RNG : 0);
312
313 return value;
314}
315
Alan Cox95da3102008-07-22 11:09:07 +0100316static int sierra_tiocmset(struct tty_struct *tty, struct file *file,
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700317 unsigned int set, unsigned int clear)
318{
Alan Cox95da3102008-07-22 11:09:07 +0100319 struct usb_serial_port *port = tty->driver_data;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700320 struct sierra_port_private *portdata;
321
322 portdata = usb_get_serial_port_data(port);
323
324 if (set & TIOCM_RTS)
325 portdata->rts_state = 1;
326 if (set & TIOCM_DTR)
327 portdata->dtr_state = 1;
328
329 if (clear & TIOCM_RTS)
330 portdata->rts_state = 0;
331 if (clear & TIOCM_DTR)
332 portdata->dtr_state = 0;
Alan Cox95da3102008-07-22 11:09:07 +0100333 return sierra_send_setup(tty, port);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700334}
335
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900336static void sierra_outdat_callback(struct urb *urb)
337{
338 struct usb_serial_port *port = urb->context;
339 struct sierra_port_private *portdata = usb_get_serial_port_data(port);
340 int status = urb->status;
341 unsigned long flags;
342
Harvey Harrison441b62c2008-03-03 16:08:34 -0800343 dbg("%s - port %d", __func__, port->number);
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900344
345 /* free up the transfer buffer, as usb_free_urb() does not do this */
346 kfree(urb->transfer_buffer);
347
348 if (status)
349 dbg("%s - nonzero write bulk status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800350 __func__, status);
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900351
352 spin_lock_irqsave(&portdata->lock, flags);
353 --portdata->outstanding_urbs;
354 spin_unlock_irqrestore(&portdata->lock, flags);
355
356 usb_serial_port_softint(port);
357}
358
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700359/* Write */
Alan Cox95da3102008-07-22 11:09:07 +0100360static int sierra_write(struct tty_struct *tty, struct usb_serial_port *port,
361 const unsigned char *buf, int count)
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700362{
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900363 struct sierra_port_private *portdata = usb_get_serial_port_data(port);
364 struct usb_serial *serial = port->serial;
365 unsigned long flags;
366 unsigned char *buffer;
367 struct urb *urb;
368 int status;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700369
370 portdata = usb_get_serial_port_data(port);
371
Harvey Harrison441b62c2008-03-03 16:08:34 -0800372 dbg("%s: write (%d chars)", __func__, count);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700373
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900374 spin_lock_irqsave(&portdata->lock, flags);
375 if (portdata->outstanding_urbs > N_OUT_URB) {
376 spin_unlock_irqrestore(&portdata->lock, flags);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800377 dbg("%s - write limit hit\n", __func__);
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900378 return 0;
379 }
380 portdata->outstanding_urbs++;
381 spin_unlock_irqrestore(&portdata->lock, flags);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700382
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900383 buffer = kmalloc(count, GFP_ATOMIC);
384 if (!buffer) {
385 dev_err(&port->dev, "out of memory\n");
386 count = -ENOMEM;
387 goto error_no_buffer;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700388 }
389
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900390 urb = usb_alloc_urb(0, GFP_ATOMIC);
391 if (!urb) {
392 dev_err(&port->dev, "no more free urbs\n");
393 count = -ENOMEM;
394 goto error_no_urb;
395 }
396
397 memcpy(buffer, buf, count);
398
Harvey Harrison441b62c2008-03-03 16:08:34 -0800399 usb_serial_debug_data(debug, &port->dev, __func__, count, buffer);
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900400
401 usb_fill_bulk_urb(urb, serial->dev,
402 usb_sndbulkpipe(serial->dev,
403 port->bulk_out_endpointAddress),
404 buffer, count, sierra_outdat_callback, port);
405
406 /* send it down the pipe */
407 status = usb_submit_urb(urb, GFP_ATOMIC);
408 if (status) {
409 dev_err(&port->dev, "%s - usb_submit_urb(write bulk) failed "
Harvey Harrison441b62c2008-03-03 16:08:34 -0800410 "with status = %d\n", __func__, status);
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900411 count = status;
412 goto error;
413 }
414
415 /* we are done with this urb, so let the host driver
416 * really free it when it is finished with it */
417 usb_free_urb(urb);
418
419 return count;
420error:
421 usb_free_urb(urb);
422error_no_urb:
423 kfree(buffer);
424error_no_buffer:
425 spin_lock_irqsave(&portdata->lock, flags);
426 --portdata->outstanding_urbs;
427 spin_unlock_irqrestore(&portdata->lock, flags);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700428 return count;
429}
430
431static void sierra_indat_callback(struct urb *urb)
432{
433 int err;
434 int endpoint;
435 struct usb_serial_port *port;
436 struct tty_struct *tty;
437 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartman17dd2212007-06-15 15:44:13 -0700438 int status = urb->status;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700439
Harvey Harrison441b62c2008-03-03 16:08:34 -0800440 dbg("%s: %p", __func__, urb);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700441
442 endpoint = usb_pipeendpoint(urb->pipe);
Ming Leicdc97792008-02-24 18:41:47 +0800443 port = urb->context;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700444
Greg Kroah-Hartman17dd2212007-06-15 15:44:13 -0700445 if (status) {
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700446 dbg("%s: nonzero status: %d on endpoint %02x.",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800447 __func__, status, endpoint);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700448 } else {
Alan Cox95da3102008-07-22 11:09:07 +0100449 tty = port->port.tty;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700450 if (urb->actual_length) {
451 tty_buffer_request_room(tty, urb->actual_length);
452 tty_insert_flip_string(tty, data, urb->actual_length);
453 tty_flip_buffer_push(tty);
454 } else {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800455 dbg("%s: empty read urb received", __func__);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700456 }
457
458 /* Resubmit urb so we continue receiving */
Alan Cox95da3102008-07-22 11:09:07 +0100459 if (port->port.count && status != -ESHUTDOWN) {
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700460 err = usb_submit_urb(urb, GFP_ATOMIC);
461 if (err)
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900462 dev_err(&port->dev, "resubmit read urb failed."
Joe Perches898eb712007-10-18 03:06:30 -0700463 "(%d)\n", err);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700464 }
465 }
466 return;
467}
468
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700469static void sierra_instat_callback(struct urb *urb)
470{
471 int err;
Greg Kroah-Hartman17dd2212007-06-15 15:44:13 -0700472 int status = urb->status;
Ming Leicdc97792008-02-24 18:41:47 +0800473 struct usb_serial_port *port = urb->context;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700474 struct sierra_port_private *portdata = usb_get_serial_port_data(port);
475 struct usb_serial *serial = port->serial;
476
Harvey Harrison441b62c2008-03-03 16:08:34 -0800477 dbg("%s", __func__);
478 dbg("%s: urb %p port %p has data %p", __func__, urb, port, portdata);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700479
Greg Kroah-Hartman17dd2212007-06-15 15:44:13 -0700480 if (status == 0) {
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700481 struct usb_ctrlrequest *req_pkt =
482 (struct usb_ctrlrequest *)urb->transfer_buffer;
483
484 if (!req_pkt) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800485 dbg("%s: NULL req_pkt\n", __func__);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700486 return;
487 }
488 if ((req_pkt->bRequestType == 0xA1) &&
489 (req_pkt->bRequest == 0x20)) {
490 int old_dcd_state;
491 unsigned char signals = *((unsigned char *)
492 urb->transfer_buffer +
493 sizeof(struct usb_ctrlrequest));
494
Harvey Harrison441b62c2008-03-03 16:08:34 -0800495 dbg("%s: signal x%x", __func__, signals);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700496
497 old_dcd_state = portdata->dcd_state;
498 portdata->cts_state = 1;
499 portdata->dcd_state = ((signals & 0x01) ? 1 : 0);
500 portdata->dsr_state = ((signals & 0x02) ? 1 : 0);
501 portdata->ri_state = ((signals & 0x08) ? 1 : 0);
502
Alan Cox95da3102008-07-22 11:09:07 +0100503 if (port->port.tty && !C_CLOCAL(port->port.tty) &&
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700504 old_dcd_state && !portdata->dcd_state)
Alan Cox95da3102008-07-22 11:09:07 +0100505 tty_hangup(port->port.tty);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700506 } else {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800507 dbg("%s: type %x req %x", __func__,
Kevin Lloydf3564de2008-03-28 10:05:08 -0700508 req_pkt->bRequestType, req_pkt->bRequest);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700509 }
510 } else
Harvey Harrison441b62c2008-03-03 16:08:34 -0800511 dbg("%s: error %d", __func__, status);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700512
513 /* Resubmit urb so we continue receiving IRQ data */
Greg Kroah-Hartman17dd2212007-06-15 15:44:13 -0700514 if (status != -ESHUTDOWN) {
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700515 urb->dev = serial->dev;
516 err = usb_submit_urb(urb, GFP_ATOMIC);
517 if (err)
518 dbg("%s: resubmit intr urb failed. (%d)",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800519 __func__, err);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700520 }
521}
522
Alan Cox95da3102008-07-22 11:09:07 +0100523static int sierra_write_room(struct tty_struct *tty)
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700524{
Alan Cox95da3102008-07-22 11:09:07 +0100525 struct usb_serial_port *port = tty->driver_data;
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900526 struct sierra_port_private *portdata = usb_get_serial_port_data(port);
527 unsigned long flags;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700528
Harvey Harrison441b62c2008-03-03 16:08:34 -0800529 dbg("%s - port %d", __func__, port->number);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700530
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900531 /* try to give a good number back based on if we have any free urbs at
532 * this point in time */
533 spin_lock_irqsave(&portdata->lock, flags);
534 if (portdata->outstanding_urbs > N_OUT_URB * 2 / 3) {
535 spin_unlock_irqrestore(&portdata->lock, flags);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800536 dbg("%s - write limit hit\n", __func__);
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900537 return 0;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700538 }
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900539 spin_unlock_irqrestore(&portdata->lock, flags);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700540
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900541 return 2048;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700542}
543
Alan Cox95da3102008-07-22 11:09:07 +0100544static int sierra_open(struct tty_struct *tty,
545 struct usb_serial_port *port, struct file *filp)
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700546{
547 struct sierra_port_private *portdata;
548 struct usb_serial *serial = port->serial;
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900549 int i;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700550 struct urb *urb;
Kevin Lloyde43062d2007-01-17 16:04:18 -0800551 int result;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700552
553 portdata = usb_get_serial_port_data(port);
554
Harvey Harrison441b62c2008-03-03 16:08:34 -0800555 dbg("%s", __func__);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700556
557 /* Set some sane defaults */
558 portdata->rts_state = 1;
559 portdata->dtr_state = 1;
560
561 /* Reset low level data toggle and start reading from endpoints */
562 for (i = 0; i < N_IN_URB; i++) {
563 urb = portdata->in_urbs[i];
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900564 if (!urb)
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700565 continue;
566 if (urb->dev != serial->dev) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800567 dbg("%s: dev %p != %p", __func__,
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700568 urb->dev, serial->dev);
569 continue;
570 }
571
572 /*
573 * make sure endpoint data toggle is synchronized with the
574 * device
575 */
576 usb_clear_halt(urb->dev, urb->pipe);
577
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900578 result = usb_submit_urb(urb, GFP_KERNEL);
579 if (result) {
Joe Perches898eb712007-10-18 03:06:30 -0700580 dev_err(&port->dev, "submit urb %d failed (%d) %d\n",
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900581 i, result, urb->transfer_buffer_length);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700582 }
583 }
584
Alan Cox95da3102008-07-22 11:09:07 +0100585 if (tty)
586 tty->low_latency = 1;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700587
Alan Cox95da3102008-07-22 11:09:07 +0100588 sierra_send_setup(tty, port);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700589
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900590 /* start up the interrupt endpoint if we have one */
591 if (port->interrupt_in_urb) {
592 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
593 if (result)
Joe Perches898eb712007-10-18 03:06:30 -0700594 dev_err(&port->dev, "submit irq_in urb failed %d\n",
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900595 result);
596 }
597 return 0;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700598}
599
Alan Cox95da3102008-07-22 11:09:07 +0100600static void sierra_close(struct tty_struct *tty,
601 struct usb_serial_port *port, struct file *filp)
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700602{
603 int i;
604 struct usb_serial *serial = port->serial;
605 struct sierra_port_private *portdata;
606
Harvey Harrison441b62c2008-03-03 16:08:34 -0800607 dbg("%s", __func__);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700608 portdata = usb_get_serial_port_data(port);
609
610 portdata->rts_state = 0;
611 portdata->dtr_state = 0;
612
613 if (serial->dev) {
Oliver Neukume33fe4d2008-01-21 17:44:10 +0100614 mutex_lock(&serial->disc_mutex);
615 if (!serial->disconnected)
Alan Cox95da3102008-07-22 11:09:07 +0100616 sierra_send_setup(tty, port);
Oliver Neukume33fe4d2008-01-21 17:44:10 +0100617 mutex_unlock(&serial->disc_mutex);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700618
619 /* Stop reading/writing urbs */
620 for (i = 0; i < N_IN_URB; i++)
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900621 usb_kill_urb(portdata->in_urbs[i]);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700622 }
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900623
624 usb_kill_urb(port->interrupt_in_urb);
625
Alan Cox95da3102008-07-22 11:09:07 +0100626 port->port.tty = NULL; /* FIXME */
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700627}
628
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700629static int sierra_startup(struct usb_serial *serial)
630{
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700631 struct usb_serial_port *port;
632 struct sierra_port_private *portdata;
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900633 struct urb *urb;
634 int i;
635 int j;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700636
Harvey Harrison441b62c2008-03-03 16:08:34 -0800637 dbg("%s", __func__);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700638
Kevin Lloyd228426e2008-01-10 11:11:04 -0800639 /* Set Device mode to D0 */
Kevin Lloyd112225b2007-07-16 13:49:27 -0700640 sierra_set_power_state(serial->dev, 0x0000);
641
Kevin Lloyd228426e2008-01-10 11:11:04 -0800642 /* Check NMEA and set */
643 if (nmea)
644 sierra_vsc_set_nmea(serial->dev, 1);
645
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700646 /* Now setup per port private data */
647 for (i = 0; i < serial->num_ports; i++) {
648 port = serial->port[i];
649 portdata = kzalloc(sizeof(*portdata), GFP_KERNEL);
650 if (!portdata) {
651 dbg("%s: kmalloc for sierra_port_private (%d) failed!.",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800652 __func__, i);
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900653 return -ENOMEM;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700654 }
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900655 spin_lock_init(&portdata->lock);
Oliver Neukum4f4f9c52008-03-14 00:53:24 -0700656 for (j = 0; j < N_IN_URB; j++) {
657 portdata->in_buffer[j] = kmalloc(IN_BUFLEN, GFP_KERNEL);
658 if (!portdata->in_buffer[j]) {
659 for (--j; j >= 0; j--)
660 kfree(portdata->in_buffer[j]);
661 kfree(portdata);
662 return -ENOMEM;
663 }
664 }
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700665
666 usb_set_serial_port_data(port, portdata);
667
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900668 /* initialize the in urbs */
669 for (j = 0; j < N_IN_URB; ++j) {
670 urb = usb_alloc_urb(0, GFP_KERNEL);
671 if (urb == NULL) {
672 dbg("%s: alloc for in port failed.",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800673 __func__);
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900674 continue;
675 }
676 /* Fill URB using supplied data. */
677 usb_fill_bulk_urb(urb, serial->dev,
678 usb_rcvbulkpipe(serial->dev,
679 port->bulk_in_endpointAddress),
680 portdata->in_buffer[j], IN_BUFLEN,
681 sierra_indat_callback, port);
682 portdata->in_urbs[j] = urb;
683 }
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700684 }
685
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900686 return 0;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700687}
688
689static void sierra_shutdown(struct usb_serial *serial)
690{
691 int i, j;
692 struct usb_serial_port *port;
693 struct sierra_port_private *portdata;
694
Harvey Harrison441b62c2008-03-03 16:08:34 -0800695 dbg("%s", __func__);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700696
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700697 for (i = 0; i < serial->num_ports; ++i) {
698 port = serial->port[i];
Greg Kroah-Hartmanf094e4f2007-04-26 00:12:01 -0700699 if (!port)
700 continue;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700701 portdata = usb_get_serial_port_data(port);
Greg Kroah-Hartmanf094e4f2007-04-26 00:12:01 -0700702 if (!portdata)
703 continue;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700704
705 for (j = 0; j < N_IN_URB; j++) {
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900706 usb_kill_urb(portdata->in_urbs[j]);
707 usb_free_urb(portdata->in_urbs[j]);
Oliver Neukum4f4f9c52008-03-14 00:53:24 -0700708 kfree(portdata->in_buffer[j]);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700709 }
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900710 kfree(portdata);
711 usb_set_serial_port_data(port, NULL);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700712 }
713}
714
Kevin Lloyd228426e2008-01-10 11:11:04 -0800715static struct usb_serial_driver sierra_device = {
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700716 .driver = {
717 .owner = THIS_MODULE,
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700718 .name = "sierra",
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700719 },
Kevin Lloyd228426e2008-01-10 11:11:04 -0800720 .description = "Sierra USB modem",
721 .id_table = id_table,
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100722 .usb_driver = &sierra_driver,
Kevin Lloyd228426e2008-01-10 11:11:04 -0800723 .calc_num_ports = sierra_calc_num_ports,
724 .probe = sierra_probe,
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700725 .open = sierra_open,
726 .close = sierra_close,
727 .write = sierra_write,
728 .write_room = sierra_write_room,
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700729 .set_termios = sierra_set_termios,
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700730 .tiocmget = sierra_tiocmget,
731 .tiocmset = sierra_tiocmset,
732 .attach = sierra_startup,
733 .shutdown = sierra_shutdown,
734 .read_int_callback = sierra_instat_callback,
735};
736
737/* Functions used by new usb-serial code. */
738static int __init sierra_init(void)
739{
740 int retval;
Kevin Lloyd228426e2008-01-10 11:11:04 -0800741 retval = usb_serial_register(&sierra_device);
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700742 if (retval)
Kevin Lloyd228426e2008-01-10 11:11:04 -0800743 goto failed_device_register;
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700744
745
746 retval = usb_register(&sierra_driver);
747 if (retval)
748 goto failed_driver_register;
749
750 info(DRIVER_DESC ": " DRIVER_VERSION);
751
752 return 0;
753
754failed_driver_register:
Kevin Lloyd228426e2008-01-10 11:11:04 -0800755 usb_serial_deregister(&sierra_device);
756failed_device_register:
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700757 return retval;
758}
759
760static void __exit sierra_exit(void)
761{
Alan Cox9660ea32008-07-22 11:14:59 +0100762 usb_deregister(&sierra_driver);
Kevin Lloyd228426e2008-01-10 11:11:04 -0800763 usb_serial_deregister(&sierra_device);
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700764}
765
766module_init(sierra_init);
767module_exit(sierra_exit);
768
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700769MODULE_AUTHOR(DRIVER_AUTHOR);
770MODULE_DESCRIPTION(DRIVER_DESC);
771MODULE_VERSION(DRIVER_VERSION);
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700772MODULE_LICENSE("GPL");
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700773
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700774module_param(nmea, bool, S_IRUGO | S_IWUSR);
Kevin Lloyd228426e2008-01-10 11:11:04 -0800775MODULE_PARM_DESC(nmea, "NMEA streaming");
776
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700777#ifdef CONFIG_USB_DEBUG
778module_param(debug, bool, S_IRUGO | S_IWUSR);
779MODULE_PARM_DESC(debug, "Debug messages");
780#endif