blob: 1319b8968d82e6034d8541a3fb07e51077826d4c [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
Elina Pasheva212b8f02009-04-21 17:54:42 -070017#define DRIVER_VERSION "v.1.3.3"
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
34/* per port private data */
35#define N_IN_URB 4
36#define N_OUT_URB 4
37#define IN_BUFLEN 4096
38
39static int debug;
Kevin Lloyd228426e2008-01-10 11:11:04 -080040static int nmea;
Kevin Lloyd112225b2007-07-16 13:49:27 -070041
Adrian Bunk82a24e62007-07-29 16:59:02 +020042static int sierra_set_power_state(struct usb_device *udev, __u16 swiState)
Kevin Lloyd112225b2007-07-16 13:49:27 -070043{
44 int result;
Kevin Lloyd4e0fee82008-07-10 14:14:47 -070045 dev_dbg(&udev->dev, "%s", __func__);
Kevin Lloyd112225b2007-07-16 13:49:27 -070046 result = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
Kevin Lloyd228426e2008-01-10 11:11:04 -080047 SWIMS_USB_REQUEST_SetPower, /* __u8 request */
Kevin Lloydf3564de2008-03-28 10:05:08 -070048 USB_TYPE_VENDOR, /* __u8 request type */
Kevin Lloyd228426e2008-01-10 11:11:04 -080049 swiState, /* __u16 value */
50 0, /* __u16 index */
51 NULL, /* void *data */
52 0, /* __u16 size */
53 USB_CTRL_SET_TIMEOUT); /* int timeout */
Kevin Lloyd112225b2007-07-16 13:49:27 -070054 return result;
55}
56
Kevin Lloyd228426e2008-01-10 11:11:04 -080057static int sierra_vsc_set_nmea(struct usb_device *udev, __u16 enable)
Kevin Lloyd112225b2007-07-16 13:49:27 -070058{
59 int result;
Kevin Lloyd4e0fee82008-07-10 14:14:47 -070060 dev_dbg(&udev->dev, "%s", __func__);
Kevin Lloyd228426e2008-01-10 11:11:04 -080061 result = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
62 SWIMS_USB_REQUEST_SetNmea, /* __u8 request */
Kevin Lloydf3564de2008-03-28 10:05:08 -070063 USB_TYPE_VENDOR, /* __u8 request type */
Kevin Lloyd228426e2008-01-10 11:11:04 -080064 enable, /* __u16 value */
65 0x0000, /* __u16 index */
66 NULL, /* void *data */
67 0, /* __u16 size */
68 USB_CTRL_SET_TIMEOUT); /* int timeout */
69 return result;
70}
Kevin Lloyd112225b2007-07-16 13:49:27 -070071
Kevin Lloyd228426e2008-01-10 11:11:04 -080072static int sierra_calc_num_ports(struct usb_serial *serial)
73{
74 int result;
75 int *num_ports = usb_get_serial_data(serial);
Kevin Lloyd4e0fee82008-07-10 14:14:47 -070076 dev_dbg(&serial->dev->dev, "%s", __func__);
Kevin Lloyd112225b2007-07-16 13:49:27 -070077
Kevin Lloyd228426e2008-01-10 11:11:04 -080078 result = *num_ports;
79
80 if (result) {
81 kfree(num_ports);
82 usb_set_serial_data(serial, NULL);
Kevin Lloyd112225b2007-07-16 13:49:27 -070083 }
84
Kevin Lloyd228426e2008-01-10 11:11:04 -080085 return result;
86}
87
Kevin Lloyd71069672008-04-02 11:24:56 -070088static int sierra_calc_interface(struct usb_serial *serial)
89{
Kevin Lloyd4e0fee82008-07-10 14:14:47 -070090 int interface;
91 struct usb_interface *p_interface;
92 struct usb_host_interface *p_host_interface;
93 dev_dbg(&serial->dev->dev, "%s", __func__);
Kevin Lloyd71069672008-04-02 11:24:56 -070094
Kevin Lloyd4e0fee82008-07-10 14:14:47 -070095 /* Get the interface structure pointer from the serial struct */
96 p_interface = serial->interface;
Kevin Lloyd71069672008-04-02 11:24:56 -070097
Kevin Lloyd4e0fee82008-07-10 14:14:47 -070098 /* Get a pointer to the host interface structure */
99 p_host_interface = p_interface->cur_altsetting;
Kevin Lloyd71069672008-04-02 11:24:56 -0700100
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700101 /* read the interface descriptor for this active altsetting
102 * to find out the interface number we are on
103 */
104 interface = p_host_interface->desc.bInterfaceNumber;
Kevin Lloyd71069672008-04-02 11:24:56 -0700105
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700106 return interface;
Kevin Lloyd71069672008-04-02 11:24:56 -0700107}
108
Kevin Lloyd228426e2008-01-10 11:11:04 -0800109static int sierra_probe(struct usb_serial *serial,
110 const struct usb_device_id *id)
111{
112 int result = 0;
113 struct usb_device *udev;
114 int *num_ports;
115 u8 ifnum;
Kevin Lloyde3173b22008-07-10 14:14:51 -0700116 u8 numendpoints;
117
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700118 dev_dbg(&serial->dev->dev, "%s", __func__);
Kevin Lloyd228426e2008-01-10 11:11:04 -0800119
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;
Kevin Lloyde3173b22008-07-10 14:14:51 -0700125 numendpoints = serial->interface->cur_altsetting->desc.bNumEndpoints;
Kevin Lloyd228426e2008-01-10 11:11:04 -0800126 udev = serial->dev;
127
Kevin Lloyde3173b22008-07-10 14:14:51 -0700128 /* Figure out the interface number from the serial structure */
129 ifnum = sierra_calc_interface(serial);
Kevin Lloyd71069672008-04-02 11:24:56 -0700130
Kevin Lloyde3173b22008-07-10 14:14:51 -0700131 /*
132 * If this interface supports more than 1 alternate
133 * select the 2nd one
134 */
135 if (serial->interface->num_altsetting == 2) {
136 dev_dbg(&udev->dev, "Selecting alt setting for interface %d\n",
137 ifnum);
138 /* We know the alternate setting is 1 for the MC8785 */
139 usb_set_interface(udev, ifnum, 1);
140 }
Kevin Lloyd71069672008-04-02 11:24:56 -0700141
Kevin Lloyde3173b22008-07-10 14:14:51 -0700142 /* Dummy interface present on some SKUs should be ignored */
Kevin Lloyd0585e4d2008-07-10 14:14:54 -0700143 if (ifnum == 0x99)
Kevin Lloyd228426e2008-01-10 11:11:04 -0800144 *num_ports = 0;
Kevin Lloyde3173b22008-07-10 14:14:51 -0700145 else if (numendpoints <= 3)
146 *num_ports = 1;
Kevin Lloyd228426e2008-01-10 11:11:04 -0800147 else
Kevin Lloyde3173b22008-07-10 14:14:51 -0700148 *num_ports = (numendpoints-1)/2;
149
Kevin Lloyd228426e2008-01-10 11:11:04 -0800150 /*
151 * save off our num_ports info so that we can use it in the
152 * calc_num_ports callback
153 */
154 usb_set_serial_data(serial, (void *)num_ports);
155
156 return result;
Kevin Lloyd112225b2007-07-16 13:49:27 -0700157}
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700158
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700159static struct usb_device_id id_table [] = {
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700160 { USB_DEVICE(0x1199, 0x0017) }, /* Sierra Wireless EM5625 */
Kevin Lloyde43062d2007-01-17 16:04:18 -0800161 { USB_DEVICE(0x1199, 0x0018) }, /* Sierra Wireless MC5720 */
Greg Kroah-Hartman90ac3c82002-04-09 12:14:34 -0700162 { USB_DEVICE(0x1199, 0x0218) }, /* Sierra Wireless MC5720 */
Tony Murrayf8834f12008-08-22 17:30:44 -0500163 { USB_DEVICE(0x03f0, 0x1b1d) }, /* HP ev2200 a.k.a MC5720 */
Kevin Lloyde43062d2007-01-17 16:04:18 -0800164 { USB_DEVICE(0x1199, 0x0020) }, /* Sierra Wireless MC5725 */
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700165 { USB_DEVICE(0x1199, 0x0024) }, /* Sierra Wireless MC5727 */
agilmore@wirelessbeehive.comb9e13ac2007-12-04 11:37:12 -0700166 { USB_DEVICE(0x1199, 0x0220) }, /* Sierra Wireless MC5725 */
Kevin Lloyde43062d2007-01-17 16:04:18 -0800167 { USB_DEVICE(0x1199, 0x0019) }, /* Sierra Wireless AirCard 595 */
168 { USB_DEVICE(0x1199, 0x0021) }, /* Sierra Wireless AirCard 597E */
Kevin Lloyd9454c462007-07-16 13:49:29 -0700169 { USB_DEVICE(0x1199, 0x0120) }, /* Sierra Wireless USB Dongle 595U */
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700170 /* Sierra Wireless C597 */
171 { USB_DEVICE_AND_INTERFACE_INFO(0x1199, 0x0023, 0xFF, 0xFF, 0xFF) },
Kevin Lloyde3173b22008-07-10 14:14:51 -0700172 /* Sierra Wireless Device */
173 { USB_DEVICE_AND_INTERFACE_INFO(0x1199, 0x0025, 0xFF, 0xFF, 0xFF) },
174 { USB_DEVICE(0x1199, 0x0026) }, /* Sierra Wireless Device */
Kevin Lloyd73b2c202008-08-25 19:20:40 -0700175 { USB_DEVICE(0x1199, 0x0027) }, /* Sierra Wireless Device */
176 { USB_DEVICE(0x1199, 0x0028) }, /* Sierra Wireless Device */
Kevin Lloyd9454c462007-07-16 13:49:29 -0700177
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700178 { USB_DEVICE(0x1199, 0x6802) }, /* Sierra Wireless MC8755 */
Kevin Lloyde43062d2007-01-17 16:04:18 -0800179 { USB_DEVICE(0x1199, 0x6804) }, /* Sierra Wireless MC8755 */
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700180 { USB_DEVICE(0x1199, 0x6803) }, /* Sierra Wireless MC8765 */
Kevin Lloyd9454c462007-07-16 13:49:29 -0700181 { USB_DEVICE(0x1199, 0x6812) }, /* Sierra Wireless MC8775 & AC 875U */
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700182 { USB_DEVICE(0x1199, 0x6813) }, /* Sierra Wireless MC8775 (Lenovo) */
Kevin Lloyd7f170a62008-03-14 00:53:24 -0700183 { USB_DEVICE(0x1199, 0x6815) }, /* Sierra Wireless MC8775 */
Stefan Seyfried8f7f85e2008-04-17 07:47:34 +0200184 { USB_DEVICE(0x03f0, 0x1e1d) }, /* HP hs2300 a.k.a MC8775 */
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700185 { USB_DEVICE(0x1199, 0x6820) }, /* Sierra Wireless AirCard 875 */
Kevin Lloyd71069672008-04-02 11:24:56 -0700186 { USB_DEVICE(0x1199, 0x6821) }, /* Sierra Wireless AirCard 875U */
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700187 { USB_DEVICE(0x1199, 0x6832) }, /* Sierra Wireless MC8780 */
188 { USB_DEVICE(0x1199, 0x6833) }, /* Sierra Wireless MC8781 */
Kevin Lloydb77a5c72008-09-17 09:03:38 -0700189 { USB_DEVICE(0x1199, 0x683A) }, /* Sierra Wireless MC8785 */
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 */
Kevin Lloyd73b2c202008-08-25 19:20:40 -0700207 { USB_DEVICE_AND_INTERFACE_INFO(0x1199, 0x6891, 0xFF, 0xFF, 0xFF)},
208 /* Sierra Wireless Device */
Kevin Lloyde3173b22008-07-10 14:14:51 -0700209 { USB_DEVICE_AND_INTERFACE_INFO(0x1199, 0x6892, 0xFF, 0xFF, 0xFF)},
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700210
Kevin Lloyde3173b22008-07-10 14:14:51 -0700211 { USB_DEVICE(0x1199, 0x0112) }, /* Sierra Wireless AirCard 580 */
212 { USB_DEVICE(0x0F3D, 0x0112) }, /* Airprime/Sierra PC 5220 */
Kevin Lloyd112225b2007-07-16 13:49:27 -0700213
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700214 { }
215};
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700216MODULE_DEVICE_TABLE(usb, id_table);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700217
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700218static struct usb_driver sierra_driver = {
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700219 .name = "sierra",
Kevin Lloyd228426e2008-01-10 11:11:04 -0800220 .probe = usb_serial_probe,
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700221 .disconnect = usb_serial_disconnect,
222 .id_table = id_table,
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700223 .no_dynamic_id = 1,
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700224};
225
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700226struct sierra_port_private {
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900227 spinlock_t lock; /* lock the structure */
228 int outstanding_urbs; /* number of out urbs in flight */
229
Oliver Neukum4f4f9c52008-03-14 00:53:24 -0700230 /* Input endpoints and buffers for this port */
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700231 struct urb *in_urbs[N_IN_URB];
Oliver Neukum4f4f9c52008-03-14 00:53:24 -0700232 char *in_buffer[N_IN_URB];
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700233
234 /* Settings for the port */
235 int rts_state; /* Handshaking pins (outputs) */
236 int dtr_state;
237 int cts_state; /* Handshaking pins (inputs) */
238 int dsr_state;
239 int dcd_state;
240 int ri_state;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700241};
242
Alan Cox335f8512009-06-11 12:26:29 +0100243static int sierra_send_setup(struct usb_serial_port *port)
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700244{
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700245 struct usb_serial *serial = port->serial;
246 struct sierra_port_private *portdata;
Kevin Lloyd228426e2008-01-10 11:11:04 -0800247 __u16 interface = 0;
Alan Cox335f8512009-06-11 12:26:29 +0100248 int val = 0;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700249
Kevin Lloyd7384a922008-09-16 21:05:24 -0700250 dev_dbg(&port->dev, "%s", __func__);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700251
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700252 portdata = usb_get_serial_port_data(port);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700253
Alan Cox335f8512009-06-11 12:26:29 +0100254 if (portdata->dtr_state)
255 val |= 0x01;
256 if (portdata->rts_state)
257 val |= 0x02;
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700258
Alan Cox335f8512009-06-11 12:26:29 +0100259 /* If composite device then properly report interface */
260 if (serial->num_ports == 1)
261 interface = sierra_calc_interface(serial);
Kevin Lloyde3173b22008-07-10 14:14:51 -0700262
Alan Cox335f8512009-06-11 12:26:29 +0100263 /* 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;
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700271 }
Alan Cox335f8512009-06-11 12:26:29 +0100272 return usb_control_msg(serial->dev,
273 usb_rcvctrlpipe(serial->dev, 0),
274 0x22, 0x21, val, interface,
275 NULL, 0, USB_CTRL_SET_TIMEOUT);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700276 return 0;
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700277}
278
Alan Cox95da3102008-07-22 11:09:07 +0100279static void sierra_set_termios(struct tty_struct *tty,
280 struct usb_serial_port *port, struct ktermios *old_termios)
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700281{
Kevin Lloyd7384a922008-09-16 21:05:24 -0700282 dev_dbg(&port->dev, "%s", __func__);
Alan Cox95da3102008-07-22 11:09:07 +0100283 tty_termios_copy_hw(tty->termios, old_termios);
Alan Cox335f8512009-06-11 12:26:29 +0100284 sierra_send_setup(port);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700285}
286
Alan Cox95da3102008-07-22 11:09:07 +0100287static int sierra_tiocmget(struct tty_struct *tty, struct file *file)
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700288{
Alan Cox95da3102008-07-22 11:09:07 +0100289 struct usb_serial_port *port = tty->driver_data;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700290 unsigned int value;
291 struct sierra_port_private *portdata;
292
Kevin Lloyd7384a922008-09-16 21:05:24 -0700293 dev_dbg(&port->dev, "%s", __func__);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700294 portdata = usb_get_serial_port_data(port);
295
296 value = ((portdata->rts_state) ? TIOCM_RTS : 0) |
297 ((portdata->dtr_state) ? TIOCM_DTR : 0) |
298 ((portdata->cts_state) ? TIOCM_CTS : 0) |
299 ((portdata->dsr_state) ? TIOCM_DSR : 0) |
300 ((portdata->dcd_state) ? TIOCM_CAR : 0) |
301 ((portdata->ri_state) ? TIOCM_RNG : 0);
302
303 return value;
304}
305
Alan Cox95da3102008-07-22 11:09:07 +0100306static int sierra_tiocmset(struct tty_struct *tty, struct file *file,
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700307 unsigned int set, unsigned int clear)
308{
Alan Cox95da3102008-07-22 11:09:07 +0100309 struct usb_serial_port *port = tty->driver_data;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700310 struct sierra_port_private *portdata;
311
312 portdata = usb_get_serial_port_data(port);
313
314 if (set & TIOCM_RTS)
315 portdata->rts_state = 1;
316 if (set & TIOCM_DTR)
317 portdata->dtr_state = 1;
318
319 if (clear & TIOCM_RTS)
320 portdata->rts_state = 0;
321 if (clear & TIOCM_DTR)
322 portdata->dtr_state = 0;
Alan Cox335f8512009-06-11 12:26:29 +0100323 return sierra_send_setup(port);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700324}
325
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900326static void sierra_outdat_callback(struct urb *urb)
327{
328 struct usb_serial_port *port = urb->context;
329 struct sierra_port_private *portdata = usb_get_serial_port_data(port);
330 int status = urb->status;
331 unsigned long flags;
332
Kevin Lloyd7384a922008-09-16 21:05:24 -0700333 dev_dbg(&port->dev, "%s - port %d", __func__, port->number);
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900334
335 /* free up the transfer buffer, as usb_free_urb() does not do this */
336 kfree(urb->transfer_buffer);
337
338 if (status)
Kevin Lloyd7384a922008-09-16 21:05:24 -0700339 dev_dbg(&port->dev, "%s - nonzero write bulk status "
340 "received: %d", __func__, status);
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900341
342 spin_lock_irqsave(&portdata->lock, flags);
343 --portdata->outstanding_urbs;
344 spin_unlock_irqrestore(&portdata->lock, flags);
345
346 usb_serial_port_softint(port);
347}
348
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700349/* Write */
Alan Cox95da3102008-07-22 11:09:07 +0100350static int sierra_write(struct tty_struct *tty, struct usb_serial_port *port,
351 const unsigned char *buf, int count)
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700352{
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900353 struct sierra_port_private *portdata = usb_get_serial_port_data(port);
354 struct usb_serial *serial = port->serial;
355 unsigned long flags;
356 unsigned char *buffer;
357 struct urb *urb;
358 int status;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700359
360 portdata = usb_get_serial_port_data(port);
361
Kevin Lloyd7384a922008-09-16 21:05:24 -0700362 dev_dbg(&port->dev, "%s: write (%d chars)", __func__, count);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700363
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900364 spin_lock_irqsave(&portdata->lock, flags);
365 if (portdata->outstanding_urbs > N_OUT_URB) {
366 spin_unlock_irqrestore(&portdata->lock, flags);
Kevin Lloyd7384a922008-09-16 21:05:24 -0700367 dev_dbg(&port->dev, "%s - write limit hit\n", __func__);
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900368 return 0;
369 }
370 portdata->outstanding_urbs++;
371 spin_unlock_irqrestore(&portdata->lock, flags);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700372
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900373 buffer = kmalloc(count, GFP_ATOMIC);
374 if (!buffer) {
375 dev_err(&port->dev, "out of memory\n");
376 count = -ENOMEM;
377 goto error_no_buffer;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700378 }
379
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900380 urb = usb_alloc_urb(0, GFP_ATOMIC);
381 if (!urb) {
382 dev_err(&port->dev, "no more free urbs\n");
383 count = -ENOMEM;
384 goto error_no_urb;
385 }
386
387 memcpy(buffer, buf, count);
388
Harvey Harrison441b62c2008-03-03 16:08:34 -0800389 usb_serial_debug_data(debug, &port->dev, __func__, count, buffer);
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900390
391 usb_fill_bulk_urb(urb, serial->dev,
392 usb_sndbulkpipe(serial->dev,
393 port->bulk_out_endpointAddress),
394 buffer, count, sierra_outdat_callback, port);
395
396 /* send it down the pipe */
397 status = usb_submit_urb(urb, GFP_ATOMIC);
398 if (status) {
399 dev_err(&port->dev, "%s - usb_submit_urb(write bulk) failed "
Harvey Harrison441b62c2008-03-03 16:08:34 -0800400 "with status = %d\n", __func__, status);
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900401 count = status;
402 goto error;
403 }
404
405 /* we are done with this urb, so let the host driver
406 * really free it when it is finished with it */
407 usb_free_urb(urb);
408
409 return count;
410error:
411 usb_free_urb(urb);
412error_no_urb:
413 kfree(buffer);
414error_no_buffer:
415 spin_lock_irqsave(&portdata->lock, flags);
416 --portdata->outstanding_urbs;
417 spin_unlock_irqrestore(&portdata->lock, flags);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700418 return count;
419}
420
421static void sierra_indat_callback(struct urb *urb)
422{
423 int err;
424 int endpoint;
425 struct usb_serial_port *port;
426 struct tty_struct *tty;
427 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartman17dd2212007-06-15 15:44:13 -0700428 int status = urb->status;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700429
Harvey Harrison441b62c2008-03-03 16:08:34 -0800430 dbg("%s: %p", __func__, urb);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700431
432 endpoint = usb_pipeendpoint(urb->pipe);
Ming Leicdc97792008-02-24 18:41:47 +0800433 port = urb->context;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700434
Greg Kroah-Hartman17dd2212007-06-15 15:44:13 -0700435 if (status) {
Kevin Lloyd7384a922008-09-16 21:05:24 -0700436 dev_dbg(&port->dev, "%s: nonzero status: %d on"
437 " endpoint %02x.", __func__, status, endpoint);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700438 } else {
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700439 if (urb->actual_length) {
Alan Coxd95186d2009-01-02 13:42:56 +0000440 tty = tty_port_tty_get(&port->port);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700441 tty_buffer_request_room(tty, urb->actual_length);
442 tty_insert_flip_string(tty, data, urb->actual_length);
443 tty_flip_buffer_push(tty);
Alan Cox4a90f092008-10-13 10:39:46 +0100444 tty_kref_put(tty);
445 } else
Kevin Lloyd7384a922008-09-16 21:05:24 -0700446 dev_dbg(&port->dev, "%s: empty read urb"
447 " received", __func__);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700448
449 /* Resubmit urb so we continue receiving */
Alan Cox95da3102008-07-22 11:09:07 +0100450 if (port->port.count && status != -ESHUTDOWN) {
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700451 err = usb_submit_urb(urb, GFP_ATOMIC);
452 if (err)
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900453 dev_err(&port->dev, "resubmit read urb failed."
Joe Perches898eb712007-10-18 03:06:30 -0700454 "(%d)\n", err);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700455 }
456 }
457 return;
458}
459
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700460static void sierra_instat_callback(struct urb *urb)
461{
462 int err;
Greg Kroah-Hartman17dd2212007-06-15 15:44:13 -0700463 int status = urb->status;
Ming Leicdc97792008-02-24 18:41:47 +0800464 struct usb_serial_port *port = urb->context;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700465 struct sierra_port_private *portdata = usb_get_serial_port_data(port);
466 struct usb_serial *serial = port->serial;
467
Kevin Lloyd7384a922008-09-16 21:05:24 -0700468 dev_dbg(&port->dev, "%s", __func__);
469 dev_dbg(&port->dev, "%s: urb %p port %p has data %p", __func__,
470 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) {
Kevin Lloyd7384a922008-09-16 21:05:24 -0700477 dev_dbg(&port->dev, "%s: NULL req_pkt\n",
478 __func__);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700479 return;
480 }
481 if ((req_pkt->bRequestType == 0xA1) &&
482 (req_pkt->bRequest == 0x20)) {
483 int old_dcd_state;
484 unsigned char signals = *((unsigned char *)
485 urb->transfer_buffer +
486 sizeof(struct usb_ctrlrequest));
Alan Cox4a90f092008-10-13 10:39:46 +0100487 struct tty_struct *tty;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700488
Kevin Lloyd7384a922008-09-16 21:05:24 -0700489 dev_dbg(&port->dev, "%s: signal x%x", __func__,
490 signals);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700491
492 old_dcd_state = portdata->dcd_state;
493 portdata->cts_state = 1;
494 portdata->dcd_state = ((signals & 0x01) ? 1 : 0);
495 portdata->dsr_state = ((signals & 0x02) ? 1 : 0);
496 portdata->ri_state = ((signals & 0x08) ? 1 : 0);
497
Alan Cox4a90f092008-10-13 10:39:46 +0100498 tty = tty_port_tty_get(&port->port);
499 if (tty && !C_CLOCAL(tty) &&
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700500 old_dcd_state && !portdata->dcd_state)
Alan Cox4a90f092008-10-13 10:39:46 +0100501 tty_hangup(tty);
502 tty_kref_put(tty);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700503 } else {
Kevin Lloyd7384a922008-09-16 21:05:24 -0700504 dev_dbg(&port->dev, "%s: type %x req %x",
505 __func__, req_pkt->bRequestType,
506 req_pkt->bRequest);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700507 }
508 } else
Kevin Lloyd7384a922008-09-16 21:05:24 -0700509 dev_dbg(&port->dev, "%s: error %d", __func__, status);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700510
511 /* Resubmit urb so we continue receiving IRQ data */
Greg Kroah-Hartman17dd2212007-06-15 15:44:13 -0700512 if (status != -ESHUTDOWN) {
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700513 urb->dev = serial->dev;
514 err = usb_submit_urb(urb, GFP_ATOMIC);
515 if (err)
Kevin Lloyd7384a922008-09-16 21:05:24 -0700516 dev_dbg(&port->dev, "%s: resubmit intr urb "
517 "failed. (%d)", __func__, err);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700518 }
519}
520
Alan Cox95da3102008-07-22 11:09:07 +0100521static int sierra_write_room(struct tty_struct *tty)
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700522{
Alan Cox95da3102008-07-22 11:09:07 +0100523 struct usb_serial_port *port = tty->driver_data;
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900524 struct sierra_port_private *portdata = usb_get_serial_port_data(port);
525 unsigned long flags;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700526
Kevin Lloyd7384a922008-09-16 21:05:24 -0700527 dev_dbg(&port->dev, "%s - port %d", __func__, port->number);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700528
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900529 /* try to give a good number back based on if we have any free urbs at
530 * this point in time */
531 spin_lock_irqsave(&portdata->lock, flags);
532 if (portdata->outstanding_urbs > N_OUT_URB * 2 / 3) {
533 spin_unlock_irqrestore(&portdata->lock, flags);
Kevin Lloyd7384a922008-09-16 21:05:24 -0700534 dev_dbg(&port->dev, "%s - write limit hit\n", __func__);
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900535 return 0;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700536 }
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900537 spin_unlock_irqrestore(&portdata->lock, flags);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700538
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900539 return 2048;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700540}
541
Alan Cox95da3102008-07-22 11:09:07 +0100542static int sierra_open(struct tty_struct *tty,
543 struct usb_serial_port *port, struct file *filp)
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700544{
545 struct sierra_port_private *portdata;
546 struct usb_serial *serial = port->serial;
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900547 int i;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700548 struct urb *urb;
Kevin Lloyde43062d2007-01-17 16:04:18 -0800549 int result;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700550
551 portdata = usb_get_serial_port_data(port);
552
Kevin Lloyd7384a922008-09-16 21:05:24 -0700553 dev_dbg(&port->dev, "%s", __func__);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700554
555 /* Set some sane defaults */
556 portdata->rts_state = 1;
557 portdata->dtr_state = 1;
558
559 /* Reset low level data toggle and start reading from endpoints */
560 for (i = 0; i < N_IN_URB; i++) {
561 urb = portdata->in_urbs[i];
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900562 if (!urb)
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700563 continue;
564 if (urb->dev != serial->dev) {
Kevin Lloyd7384a922008-09-16 21:05:24 -0700565 dev_dbg(&port->dev, "%s: dev %p != %p",
566 __func__, urb->dev, serial->dev);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700567 continue;
568 }
569
570 /*
571 * make sure endpoint data toggle is synchronized with the
572 * device
573 */
574 usb_clear_halt(urb->dev, urb->pipe);
575
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900576 result = usb_submit_urb(urb, GFP_KERNEL);
577 if (result) {
Joe Perches898eb712007-10-18 03:06:30 -0700578 dev_err(&port->dev, "submit urb %d failed (%d) %d\n",
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900579 i, result, urb->transfer_buffer_length);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700580 }
581 }
582
Alan Cox335f8512009-06-11 12:26:29 +0100583 sierra_send_setup(port);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700584
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900585 /* start up the interrupt endpoint if we have one */
586 if (port->interrupt_in_urb) {
587 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
588 if (result)
Joe Perches898eb712007-10-18 03:06:30 -0700589 dev_err(&port->dev, "submit irq_in urb failed %d\n",
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900590 result);
591 }
592 return 0;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700593}
594
Alan Cox335f8512009-06-11 12:26:29 +0100595static void sierra_dtr_rts(struct usb_serial_port *port, int on)
596{
597 struct usb_serial *serial = port->serial;
598 struct sierra_port_private *portdata;
599
600 portdata = usb_get_serial_port_data(port);
601 portdata->rts_state = on;
602 portdata->dtr_state = on;
603
604 if (serial->dev) {
605 mutex_lock(&serial->disc_mutex);
606 if (!serial->disconnected)
607 sierra_send_setup(port);
608 mutex_unlock(&serial->disc_mutex);
609 }
610}
611
612static void sierra_close(struct usb_serial_port *port)
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700613{
614 int i;
615 struct usb_serial *serial = port->serial;
616 struct sierra_port_private *portdata;
617
Kevin Lloyd7384a922008-09-16 21:05:24 -0700618 dev_dbg(&port->dev, "%s", __func__);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700619 portdata = usb_get_serial_port_data(port);
620
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700621 if (serial->dev) {
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700622 /* Stop reading/writing urbs */
623 for (i = 0; i < N_IN_URB; i++)
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900624 usb_kill_urb(portdata->in_urbs[i]);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700625 }
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900626 usb_kill_urb(port->interrupt_in_urb);
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
Kevin Lloyd7384a922008-09-16 21:05:24 -0700637 dev_dbg(&serial->dev->dev, "%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) {
Kevin Lloyd7384a922008-09-16 21:05:24 -0700651 dev_dbg(&port->dev, "%s: kmalloc for "
652 "sierra_port_private (%d) failed!.",
653 __func__, i);
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900654 return -ENOMEM;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700655 }
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900656 spin_lock_init(&portdata->lock);
Oliver Neukum4f4f9c52008-03-14 00:53:24 -0700657 for (j = 0; j < N_IN_URB; j++) {
658 portdata->in_buffer[j] = kmalloc(IN_BUFLEN, GFP_KERNEL);
659 if (!portdata->in_buffer[j]) {
660 for (--j; j >= 0; j--)
661 kfree(portdata->in_buffer[j]);
662 kfree(portdata);
663 return -ENOMEM;
664 }
665 }
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700666
667 usb_set_serial_port_data(port, portdata);
668
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900669 /* initialize the in urbs */
670 for (j = 0; j < N_IN_URB; ++j) {
671 urb = usb_alloc_urb(0, GFP_KERNEL);
672 if (urb == NULL) {
Kevin Lloyd7384a922008-09-16 21:05:24 -0700673 dev_dbg(&port->dev, "%s: alloc for in "
674 "port failed.", __func__);
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900675 continue;
676 }
677 /* Fill URB using supplied data. */
678 usb_fill_bulk_urb(urb, serial->dev,
679 usb_rcvbulkpipe(serial->dev,
680 port->bulk_in_endpointAddress),
681 portdata->in_buffer[j], IN_BUFLEN,
682 sierra_indat_callback, port);
683 portdata->in_urbs[j] = urb;
684 }
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700685 }
686
Greg Kroah-Hartman17c23272007-06-20 14:22:23 +0900687 return 0;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700688}
689
690static void sierra_shutdown(struct usb_serial *serial)
691{
692 int i, j;
693 struct usb_serial_port *port;
694 struct sierra_port_private *portdata;
695
Kevin Lloyd7384a922008-09-16 21:05:24 -0700696 dev_dbg(&serial->dev->dev, "%s", __func__);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700697
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700698 for (i = 0; i < serial->num_ports; ++i) {
699 port = serial->port[i];
Greg Kroah-Hartmanf094e4f2007-04-26 00:12:01 -0700700 if (!port)
701 continue;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700702 portdata = usb_get_serial_port_data(port);
Greg Kroah-Hartmanf094e4f2007-04-26 00:12:01 -0700703 if (!portdata)
704 continue;
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700705
706 for (j = 0; j < N_IN_URB; j++) {
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900707 usb_kill_urb(portdata->in_urbs[j]);
708 usb_free_urb(portdata->in_urbs[j]);
Oliver Neukum4f4f9c52008-03-14 00:53:24 -0700709 kfree(portdata->in_buffer[j]);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700710 }
Greg Kroah-Hartman9e85c5f2007-06-20 14:22:23 +0900711 kfree(portdata);
712 usb_set_serial_port_data(port, NULL);
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700713 }
714}
715
Kevin Lloyd228426e2008-01-10 11:11:04 -0800716static struct usb_serial_driver sierra_device = {
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700717 .driver = {
718 .owner = THIS_MODULE,
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700719 .name = "sierra",
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700720 },
Kevin Lloyd228426e2008-01-10 11:11:04 -0800721 .description = "Sierra USB modem",
722 .id_table = id_table,
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100723 .usb_driver = &sierra_driver,
Kevin Lloyd228426e2008-01-10 11:11:04 -0800724 .calc_num_ports = sierra_calc_num_ports,
725 .probe = sierra_probe,
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700726 .open = sierra_open,
727 .close = sierra_close,
Alan Cox335f8512009-06-11 12:26:29 +0100728 .dtr_rts = sierra_dtr_rts,
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700729 .write = sierra_write,
730 .write_room = sierra_write_room,
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700731 .set_termios = sierra_set_termios,
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700732 .tiocmget = sierra_tiocmget,
733 .tiocmset = sierra_tiocmset,
734 .attach = sierra_startup,
735 .shutdown = sierra_shutdown,
736 .read_int_callback = sierra_instat_callback,
737};
738
739/* Functions used by new usb-serial code. */
740static int __init sierra_init(void)
741{
742 int retval;
Kevin Lloyd228426e2008-01-10 11:11:04 -0800743 retval = usb_serial_register(&sierra_device);
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700744 if (retval)
Kevin Lloyd228426e2008-01-10 11:11:04 -0800745 goto failed_device_register;
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700746
747
748 retval = usb_register(&sierra_driver);
749 if (retval)
750 goto failed_driver_register;
751
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -0700752 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
753 DRIVER_DESC "\n");
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700754
755 return 0;
756
757failed_driver_register:
Kevin Lloyd228426e2008-01-10 11:11:04 -0800758 usb_serial_deregister(&sierra_device);
759failed_device_register:
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700760 return retval;
761}
762
763static void __exit sierra_exit(void)
764{
Alan Cox9660ea32008-07-22 11:14:59 +0100765 usb_deregister(&sierra_driver);
Kevin Lloyd228426e2008-01-10 11:11:04 -0800766 usb_serial_deregister(&sierra_device);
Greg Kroah-Hartman964ee1d2006-10-17 10:17:58 -0700767}
768
769module_init(sierra_init);
770module_exit(sierra_exit);
771
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700772MODULE_AUTHOR(DRIVER_AUTHOR);
773MODULE_DESCRIPTION(DRIVER_DESC);
774MODULE_VERSION(DRIVER_VERSION);
Kevin Lloyd69de51f2006-06-30 11:17:55 -0700775MODULE_LICENSE("GPL");
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700776
Kevin Lloyd4e0fee82008-07-10 14:14:47 -0700777module_param(nmea, bool, S_IRUGO | S_IWUSR);
Kevin Lloyd228426e2008-01-10 11:11:04 -0800778MODULE_PARM_DESC(nmea, "NMEA streaming");
779
Kevin Lloyd033a3fb2006-10-13 23:53:21 -0700780module_param(debug, bool, S_IRUGO | S_IWUSR);
781MODULE_PARM_DESC(debug, "Debug messages");