Kevin Lloyd | 69de51f | 2006-06-30 11:17:55 -0700 | [diff] [blame] | 1 | /* |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 2 | USB Driver for Sierra Wireless |
| 3 | |
Kevin Lloyd | f3564de | 2008-03-28 10:05:08 -0700 | [diff] [blame] | 4 | Copyright (C) 2006, 2007, 2008 Kevin Lloyd <klloyd@sierrawireless.com> |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 5 | |
| 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 Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 15 | */ |
| 16 | |
Kevin Lloyd | f3564de | 2008-03-28 10:05:08 -0700 | [diff] [blame] | 17 | #define DRIVER_VERSION "v.1.2.9c" |
| 18 | #define DRIVER_AUTHOR "Kevin Lloyd <klloyd@sierrawireless.com>" |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 19 | #define DRIVER_DESC "USB Driver for Sierra Wireless USB modems" |
Kevin Lloyd | 69de51f | 2006-06-30 11:17:55 -0700 | [diff] [blame] | 20 | |
| 21 | #include <linux/kernel.h> |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 22 | #include <linux/jiffies.h> |
| 23 | #include <linux/errno.h> |
Kevin Lloyd | 69de51f | 2006-06-30 11:17:55 -0700 | [diff] [blame] | 24 | #include <linux/tty.h> |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 25 | #include <linux/tty_flip.h> |
Kevin Lloyd | 69de51f | 2006-06-30 11:17:55 -0700 | [diff] [blame] | 26 | #include <linux/module.h> |
| 27 | #include <linux/usb.h> |
Greg Kroah-Hartman | a969888 | 2006-07-11 21:22:58 -0700 | [diff] [blame] | 28 | #include <linux/usb/serial.h> |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 29 | #include <linux/usb/ch9.h> |
Kevin Lloyd | 69de51f | 2006-06-30 11:17:55 -0700 | [diff] [blame] | 30 | |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 31 | #define SWIMS_USB_REQUEST_SetPower 0x00 |
| 32 | #define SWIMS_USB_REQUEST_SetNmea 0x07 |
Kevin Lloyd | 112225b | 2007-07-16 13:49:27 -0700 | [diff] [blame] | 33 | #define SWIMS_USB_REQUEST_SetMode 0x0B |
Kevin Lloyd | 112225b | 2007-07-16 13:49:27 -0700 | [diff] [blame] | 34 | #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 | |
| 41 | static int debug; |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 42 | static int nmea; |
| 43 | static int truinstall = 1; |
Kevin Lloyd | 112225b | 2007-07-16 13:49:27 -0700 | [diff] [blame] | 44 | |
| 45 | enum devicetype { |
| 46 | DEVICE_3_PORT = 0, |
| 47 | DEVICE_1_PORT = 1, |
| 48 | DEVICE_INSTALLER = 2, |
| 49 | }; |
| 50 | |
Adrian Bunk | 82a24e6 | 2007-07-29 16:59:02 +0200 | [diff] [blame] | 51 | static int sierra_set_power_state(struct usb_device *udev, __u16 swiState) |
Kevin Lloyd | 112225b | 2007-07-16 13:49:27 -0700 | [diff] [blame] | 52 | { |
| 53 | int result; |
Kevin Lloyd | 4e0fee8 | 2008-07-10 14:14:47 -0700 | [diff] [blame] | 54 | dev_dbg(&udev->dev, "%s", __func__); |
Kevin Lloyd | 112225b | 2007-07-16 13:49:27 -0700 | [diff] [blame] | 55 | result = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 56 | SWIMS_USB_REQUEST_SetPower, /* __u8 request */ |
Kevin Lloyd | f3564de | 2008-03-28 10:05:08 -0700 | [diff] [blame] | 57 | USB_TYPE_VENDOR, /* __u8 request type */ |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 58 | swiState, /* __u16 value */ |
| 59 | 0, /* __u16 index */ |
| 60 | NULL, /* void *data */ |
| 61 | 0, /* __u16 size */ |
| 62 | USB_CTRL_SET_TIMEOUT); /* int timeout */ |
Kevin Lloyd | 112225b | 2007-07-16 13:49:27 -0700 | [diff] [blame] | 63 | return result; |
| 64 | } |
| 65 | |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 66 | static int sierra_set_ms_mode(struct usb_device *udev, __u16 eSWocMode) |
Kevin Lloyd | 112225b | 2007-07-16 13:49:27 -0700 | [diff] [blame] | 67 | { |
| 68 | int result; |
Kevin Lloyd | 4e0fee8 | 2008-07-10 14:14:47 -0700 | [diff] [blame] | 69 | dev_dbg(&udev->dev, "%s", __func__); |
Kevin Lloyd | 112225b | 2007-07-16 13:49:27 -0700 | [diff] [blame] | 70 | result = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), |
| 71 | SWIMS_USB_REQUEST_SetMode, /* __u8 request */ |
Kevin Lloyd | f3564de | 2008-03-28 10:05:08 -0700 | [diff] [blame] | 72 | USB_TYPE_VENDOR, /* __u8 request type */ |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 73 | eSWocMode, /* __u16 value */ |
| 74 | 0x0000, /* __u16 index */ |
Kevin Lloyd | 112225b | 2007-07-16 13:49:27 -0700 | [diff] [blame] | 75 | NULL, /* void *data */ |
| 76 | 0, /* __u16 size */ |
| 77 | USB_CTRL_SET_TIMEOUT); /* int timeout */ |
| 78 | return result; |
| 79 | } |
| 80 | |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 81 | static int sierra_vsc_set_nmea(struct usb_device *udev, __u16 enable) |
Kevin Lloyd | 112225b | 2007-07-16 13:49:27 -0700 | [diff] [blame] | 82 | { |
| 83 | int result; |
Kevin Lloyd | 4e0fee8 | 2008-07-10 14:14:47 -0700 | [diff] [blame] | 84 | dev_dbg(&udev->dev, "%s", __func__); |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 85 | result = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), |
| 86 | SWIMS_USB_REQUEST_SetNmea, /* __u8 request */ |
Kevin Lloyd | f3564de | 2008-03-28 10:05:08 -0700 | [diff] [blame] | 87 | USB_TYPE_VENDOR, /* __u8 request type */ |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 88 | 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 Lloyd | 112225b | 2007-07-16 13:49:27 -0700 | [diff] [blame] | 95 | |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 96 | static int sierra_calc_num_ports(struct usb_serial *serial) |
| 97 | { |
| 98 | int result; |
| 99 | int *num_ports = usb_get_serial_data(serial); |
Kevin Lloyd | 4e0fee8 | 2008-07-10 14:14:47 -0700 | [diff] [blame] | 100 | dev_dbg(&serial->dev->dev, "%s", __func__); |
Kevin Lloyd | 112225b | 2007-07-16 13:49:27 -0700 | [diff] [blame] | 101 | |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 102 | result = *num_ports; |
| 103 | |
| 104 | if (result) { |
| 105 | kfree(num_ports); |
| 106 | usb_set_serial_data(serial, NULL); |
Kevin Lloyd | 112225b | 2007-07-16 13:49:27 -0700 | [diff] [blame] | 107 | } |
| 108 | |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 109 | return result; |
| 110 | } |
| 111 | |
Kevin Lloyd | 7106967 | 2008-04-02 11:24:56 -0700 | [diff] [blame] | 112 | static int sierra_calc_interface(struct usb_serial *serial) |
| 113 | { |
Kevin Lloyd | 4e0fee8 | 2008-07-10 14:14:47 -0700 | [diff] [blame] | 114 | 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 Lloyd | 7106967 | 2008-04-02 11:24:56 -0700 | [diff] [blame] | 118 | |
Kevin Lloyd | 4e0fee8 | 2008-07-10 14:14:47 -0700 | [diff] [blame] | 119 | /* Get the interface structure pointer from the serial struct */ |
| 120 | p_interface = serial->interface; |
Kevin Lloyd | 7106967 | 2008-04-02 11:24:56 -0700 | [diff] [blame] | 121 | |
Kevin Lloyd | 4e0fee8 | 2008-07-10 14:14:47 -0700 | [diff] [blame] | 122 | /* Get a pointer to the host interface structure */ |
| 123 | p_host_interface = p_interface->cur_altsetting; |
Kevin Lloyd | 7106967 | 2008-04-02 11:24:56 -0700 | [diff] [blame] | 124 | |
Kevin Lloyd | 4e0fee8 | 2008-07-10 14:14:47 -0700 | [diff] [blame] | 125 | /* 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 Lloyd | 7106967 | 2008-04-02 11:24:56 -0700 | [diff] [blame] | 129 | |
Kevin Lloyd | 4e0fee8 | 2008-07-10 14:14:47 -0700 | [diff] [blame] | 130 | return interface; |
Kevin Lloyd | 7106967 | 2008-04-02 11:24:56 -0700 | [diff] [blame] | 131 | } |
| 132 | |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 133 | static 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 Lloyd | e3173b2 | 2008-07-10 14:14:51 -0700 | [diff] [blame^] | 140 | u8 numendpoints; |
| 141 | |
Kevin Lloyd | 4e0fee8 | 2008-07-10 14:14:47 -0700 | [diff] [blame] | 142 | dev_dbg(&serial->dev->dev, "%s", __func__); |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 143 | |
| 144 | num_ports = kmalloc(sizeof(*num_ports), GFP_KERNEL); |
| 145 | if (!num_ports) |
| 146 | return -ENOMEM; |
| 147 | |
| 148 | ifnum = serial->interface->cur_altsetting->desc.bInterfaceNumber; |
Kevin Lloyd | e3173b2 | 2008-07-10 14:14:51 -0700 | [diff] [blame^] | 149 | numendpoints = serial->interface->cur_altsetting->desc.bNumEndpoints; |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 150 | udev = serial->dev; |
| 151 | |
Kevin Lloyd | e3173b2 | 2008-07-10 14:14:51 -0700 | [diff] [blame^] | 152 | /* Figure out the interface number from the serial structure */ |
| 153 | ifnum = sierra_calc_interface(serial); |
Kevin Lloyd | 7106967 | 2008-04-02 11:24:56 -0700 | [diff] [blame] | 154 | |
Kevin Lloyd | e3173b2 | 2008-07-10 14:14:51 -0700 | [diff] [blame^] | 155 | /* |
| 156 | * If this interface supports more than 1 alternate |
| 157 | * select the 2nd one |
| 158 | */ |
| 159 | if (serial->interface->num_altsetting == 2) { |
| 160 | dev_dbg(&udev->dev, "Selecting alt setting for interface %d\n", |
| 161 | ifnum); |
| 162 | /* We know the alternate setting is 1 for the MC8785 */ |
| 163 | usb_set_interface(udev, ifnum, 1); |
| 164 | } |
Kevin Lloyd | 7106967 | 2008-04-02 11:24:56 -0700 | [diff] [blame] | 165 | |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 166 | /* Check if in installer mode */ |
| 167 | if (truinstall && id->driver_info == DEVICE_INSTALLER) { |
| 168 | dev_dbg(&udev->dev, "%s", "FOUND TRU-INSTALL DEVICE(SW)\n"); |
| 169 | result = sierra_set_ms_mode(udev, SWIMS_SET_MODE_Modem); |
| 170 | /* Don't bind to the device when in installer mode */ |
| 171 | kfree(num_ports); |
| 172 | return -EIO; |
Kevin Lloyd | e3173b2 | 2008-07-10 14:14:51 -0700 | [diff] [blame^] | 173 | /* Dummy interface present on some SKUs should be ignored */ |
| 174 | } else if (ifnum == 0x99) |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 175 | *num_ports = 0; |
Kevin Lloyd | e3173b2 | 2008-07-10 14:14:51 -0700 | [diff] [blame^] | 176 | else if (numendpoints <= 3) |
| 177 | *num_ports = 1; |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 178 | else |
Kevin Lloyd | e3173b2 | 2008-07-10 14:14:51 -0700 | [diff] [blame^] | 179 | *num_ports = (numendpoints-1)/2; |
| 180 | |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 181 | /* |
| 182 | * save off our num_ports info so that we can use it in the |
| 183 | * calc_num_ports callback |
| 184 | */ |
| 185 | usb_set_serial_data(serial, (void *)num_ports); |
| 186 | |
| 187 | return result; |
Kevin Lloyd | 112225b | 2007-07-16 13:49:27 -0700 | [diff] [blame] | 188 | } |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 189 | |
Kevin Lloyd | 69de51f | 2006-06-30 11:17:55 -0700 | [diff] [blame] | 190 | static struct usb_device_id id_table [] = { |
Kevin Lloyd | 69de51f | 2006-06-30 11:17:55 -0700 | [diff] [blame] | 191 | { USB_DEVICE(0x1199, 0x0017) }, /* Sierra Wireless EM5625 */ |
Kevin Lloyd | e43062d | 2007-01-17 16:04:18 -0800 | [diff] [blame] | 192 | { USB_DEVICE(0x1199, 0x0018) }, /* Sierra Wireless MC5720 */ |
Greg Kroah-Hartman | 90ac3c8 | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 193 | { USB_DEVICE(0x1199, 0x0218) }, /* Sierra Wireless MC5720 */ |
Kevin Lloyd | 9454c46 | 2007-07-16 13:49:29 -0700 | [diff] [blame] | 194 | { USB_DEVICE(0x0f30, 0x1b1d) }, /* Sierra Wireless MC5720 */ |
Kevin Lloyd | e43062d | 2007-01-17 16:04:18 -0800 | [diff] [blame] | 195 | { USB_DEVICE(0x1199, 0x0020) }, /* Sierra Wireless MC5725 */ |
Kevin Lloyd | 4e0fee8 | 2008-07-10 14:14:47 -0700 | [diff] [blame] | 196 | { USB_DEVICE(0x1199, 0x0024) }, /* Sierra Wireless MC5727 */ |
agilmore@wirelessbeehive.com | b9e13ac | 2007-12-04 11:37:12 -0700 | [diff] [blame] | 197 | { USB_DEVICE(0x1199, 0x0220) }, /* Sierra Wireless MC5725 */ |
Kevin Lloyd | e43062d | 2007-01-17 16:04:18 -0800 | [diff] [blame] | 198 | { USB_DEVICE(0x1199, 0x0019) }, /* Sierra Wireless AirCard 595 */ |
| 199 | { USB_DEVICE(0x1199, 0x0021) }, /* Sierra Wireless AirCard 597E */ |
Kevin Lloyd | 9454c46 | 2007-07-16 13:49:29 -0700 | [diff] [blame] | 200 | { USB_DEVICE(0x1199, 0x0120) }, /* Sierra Wireless USB Dongle 595U */ |
Kevin Lloyd | 4e0fee8 | 2008-07-10 14:14:47 -0700 | [diff] [blame] | 201 | /* Sierra Wireless C597 */ |
| 202 | { USB_DEVICE_AND_INTERFACE_INFO(0x1199, 0x0023, 0xFF, 0xFF, 0xFF) }, |
Kevin Lloyd | e3173b2 | 2008-07-10 14:14:51 -0700 | [diff] [blame^] | 203 | /* Sierra Wireless Device */ |
| 204 | { USB_DEVICE_AND_INTERFACE_INFO(0x1199, 0x0025, 0xFF, 0xFF, 0xFF) }, |
| 205 | { USB_DEVICE(0x1199, 0x0026) }, /* Sierra Wireless Device */ |
Kevin Lloyd | 9454c46 | 2007-07-16 13:49:29 -0700 | [diff] [blame] | 206 | |
Kevin Lloyd | 69de51f | 2006-06-30 11:17:55 -0700 | [diff] [blame] | 207 | { USB_DEVICE(0x1199, 0x6802) }, /* Sierra Wireless MC8755 */ |
Kevin Lloyd | e43062d | 2007-01-17 16:04:18 -0800 | [diff] [blame] | 208 | { USB_DEVICE(0x1199, 0x6804) }, /* Sierra Wireless MC8755 */ |
Kevin Lloyd | 69de51f | 2006-06-30 11:17:55 -0700 | [diff] [blame] | 209 | { USB_DEVICE(0x1199, 0x6803) }, /* Sierra Wireless MC8765 */ |
Kevin Lloyd | 9454c46 | 2007-07-16 13:49:29 -0700 | [diff] [blame] | 210 | { USB_DEVICE(0x1199, 0x6812) }, /* Sierra Wireless MC8775 & AC 875U */ |
Kevin Lloyd | 4e0fee8 | 2008-07-10 14:14:47 -0700 | [diff] [blame] | 211 | { USB_DEVICE(0x1199, 0x6813) }, /* Sierra Wireless MC8775 (Lenovo) */ |
Kevin Lloyd | 7f170a6 | 2008-03-14 00:53:24 -0700 | [diff] [blame] | 212 | { USB_DEVICE(0x1199, 0x6815) }, /* Sierra Wireless MC8775 */ |
Stefan Seyfried | 8f7f85e | 2008-04-17 07:47:34 +0200 | [diff] [blame] | 213 | { USB_DEVICE(0x03f0, 0x1e1d) }, /* HP hs2300 a.k.a MC8775 */ |
Kevin Lloyd | 69de51f | 2006-06-30 11:17:55 -0700 | [diff] [blame] | 214 | { USB_DEVICE(0x1199, 0x6820) }, /* Sierra Wireless AirCard 875 */ |
Kevin Lloyd | 7106967 | 2008-04-02 11:24:56 -0700 | [diff] [blame] | 215 | { USB_DEVICE(0x1199, 0x6821) }, /* Sierra Wireless AirCard 875U */ |
Kevin Lloyd | 4e0fee8 | 2008-07-10 14:14:47 -0700 | [diff] [blame] | 216 | { USB_DEVICE(0x1199, 0x6832) }, /* Sierra Wireless MC8780 */ |
| 217 | { USB_DEVICE(0x1199, 0x6833) }, /* Sierra Wireless MC8781 */ |
Kevin Lloyd | e3173b2 | 2008-07-10 14:14:51 -0700 | [diff] [blame^] | 218 | { USB_DEVICE(0x1199, 0x683B) }, /* Sierra Wireless MC8785 Composite */ |
| 219 | { USB_DEVICE(0x1199, 0x683C) }, /* Sierra Wireless MC8790 */ |
| 220 | { USB_DEVICE(0x1199, 0x683D) }, /* Sierra Wireless MC8790 */ |
| 221 | { USB_DEVICE(0x1199, 0x683E) }, /* Sierra Wireless MC8790 */ |
Kevin Lloyd | 9454c46 | 2007-07-16 13:49:29 -0700 | [diff] [blame] | 222 | { USB_DEVICE(0x1199, 0x6850) }, /* Sierra Wireless AirCard 880 */ |
| 223 | { USB_DEVICE(0x1199, 0x6851) }, /* Sierra Wireless AirCard 881 */ |
| 224 | { USB_DEVICE(0x1199, 0x6852) }, /* Sierra Wireless AirCard 880 E */ |
| 225 | { USB_DEVICE(0x1199, 0x6853) }, /* Sierra Wireless AirCard 881 E */ |
Kevin Lloyd | 6835b32 | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 226 | { USB_DEVICE(0x1199, 0x6855) }, /* Sierra Wireless AirCard 880 U */ |
Jessica L. Blank | 62aad3a | 2007-12-30 20:11:35 -0600 | [diff] [blame] | 227 | { USB_DEVICE(0x1199, 0x6856) }, /* Sierra Wireless AirCard 881 U */ |
Kevin Lloyd | e3173b2 | 2008-07-10 14:14:51 -0700 | [diff] [blame^] | 228 | { USB_DEVICE(0x1199, 0x6859) }, /* Sierra Wireless AirCard 885 E */ |
| 229 | { USB_DEVICE(0x1199, 0x685A) }, /* Sierra Wireless AirCard 885 E */ |
| 230 | /* Sierra Wireless C885 */ |
| 231 | { USB_DEVICE_AND_INTERFACE_INFO(0x1199, 0x6880, 0xFF, 0xFF, 0xFF)}, |
| 232 | /* Sierra Wireless Device */ |
| 233 | { USB_DEVICE_AND_INTERFACE_INFO(0x1199, 0x6890, 0xFF, 0xFF, 0xFF)}, |
| 234 | /* Sierra Wireless Device */ |
| 235 | { USB_DEVICE_AND_INTERFACE_INFO(0x1199, 0x6892, 0xFF, 0xFF, 0xFF)}, |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 236 | |
Kevin Lloyd | e3173b2 | 2008-07-10 14:14:51 -0700 | [diff] [blame^] | 237 | { USB_DEVICE(0x1199, 0x0112) }, /* Sierra Wireless AirCard 580 */ |
| 238 | { USB_DEVICE(0x0F3D, 0x0112) }, /* Airprime/Sierra PC 5220 */ |
Kevin Lloyd | 112225b | 2007-07-16 13:49:27 -0700 | [diff] [blame] | 239 | |
| 240 | { USB_DEVICE(0x1199, 0x0FFF), .driver_info = DEVICE_INSTALLER}, |
Kevin Lloyd | 69de51f | 2006-06-30 11:17:55 -0700 | [diff] [blame] | 241 | { } |
| 242 | }; |
Greg Kroah-Hartman | 964ee1d | 2006-10-17 10:17:58 -0700 | [diff] [blame] | 243 | MODULE_DEVICE_TABLE(usb, id_table); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 244 | |
Kevin Lloyd | 69de51f | 2006-06-30 11:17:55 -0700 | [diff] [blame] | 245 | static struct usb_driver sierra_driver = { |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 246 | .name = "sierra", |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 247 | .probe = usb_serial_probe, |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 248 | .disconnect = usb_serial_disconnect, |
| 249 | .id_table = id_table, |
Greg Kroah-Hartman | 964ee1d | 2006-10-17 10:17:58 -0700 | [diff] [blame] | 250 | .no_dynamic_id = 1, |
Kevin Lloyd | 69de51f | 2006-06-30 11:17:55 -0700 | [diff] [blame] | 251 | }; |
| 252 | |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 253 | struct sierra_port_private { |
Greg Kroah-Hartman | 17c2327 | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 254 | spinlock_t lock; /* lock the structure */ |
| 255 | int outstanding_urbs; /* number of out urbs in flight */ |
| 256 | |
Oliver Neukum | 4f4f9c5 | 2008-03-14 00:53:24 -0700 | [diff] [blame] | 257 | /* Input endpoints and buffers for this port */ |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 258 | struct urb *in_urbs[N_IN_URB]; |
Oliver Neukum | 4f4f9c5 | 2008-03-14 00:53:24 -0700 | [diff] [blame] | 259 | char *in_buffer[N_IN_URB]; |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 260 | |
| 261 | /* Settings for the port */ |
| 262 | int rts_state; /* Handshaking pins (outputs) */ |
| 263 | int dtr_state; |
| 264 | int cts_state; /* Handshaking pins (inputs) */ |
| 265 | int dsr_state; |
| 266 | int dcd_state; |
| 267 | int ri_state; |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 268 | }; |
| 269 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 270 | static int sierra_send_setup(struct tty_struct *tty, |
| 271 | struct usb_serial_port *port) |
Kevin Lloyd | 69de51f | 2006-06-30 11:17:55 -0700 | [diff] [blame] | 272 | { |
Greg Kroah-Hartman | 964ee1d | 2006-10-17 10:17:58 -0700 | [diff] [blame] | 273 | struct usb_serial *serial = port->serial; |
| 274 | struct sierra_port_private *portdata; |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 275 | __u16 interface = 0; |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 276 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 277 | dbg("%s", __func__); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 278 | |
Greg Kroah-Hartman | 964ee1d | 2006-10-17 10:17:58 -0700 | [diff] [blame] | 279 | portdata = usb_get_serial_port_data(port); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 280 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 281 | if (tty) { |
Greg Kroah-Hartman | 964ee1d | 2006-10-17 10:17:58 -0700 | [diff] [blame] | 282 | int val = 0; |
| 283 | if (portdata->dtr_state) |
| 284 | val |= 0x01; |
| 285 | if (portdata->rts_state) |
| 286 | val |= 0x02; |
| 287 | |
Kevin Lloyd | e3173b2 | 2008-07-10 14:14:51 -0700 | [diff] [blame^] | 288 | /* If composite device then properly report interface */ |
| 289 | if (serial->num_ports == 1) |
| 290 | interface = sierra_calc_interface(serial); |
| 291 | |
| 292 | /* Otherwise the need to do non-composite mapping */ |
| 293 | else { |
| 294 | if (port->bulk_out_endpointAddress == 2) |
| 295 | interface = 0; |
| 296 | else if (port->bulk_out_endpointAddress == 4) |
| 297 | interface = 1; |
| 298 | else if (port->bulk_out_endpointAddress == 5) |
| 299 | interface = 2; |
| 300 | } |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 301 | |
Greg Kroah-Hartman | 964ee1d | 2006-10-17 10:17:58 -0700 | [diff] [blame] | 302 | return usb_control_msg(serial->dev, |
| 303 | usb_rcvctrlpipe(serial->dev, 0), |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 304 | 0x22, 0x21, val, interface, |
| 305 | NULL, 0, USB_CTRL_SET_TIMEOUT); |
Greg Kroah-Hartman | 964ee1d | 2006-10-17 10:17:58 -0700 | [diff] [blame] | 306 | } |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 307 | |
| 308 | return 0; |
Kevin Lloyd | 69de51f | 2006-06-30 11:17:55 -0700 | [diff] [blame] | 309 | } |
| 310 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 311 | static void sierra_set_termios(struct tty_struct *tty, |
| 312 | struct usb_serial_port *port, struct ktermios *old_termios) |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 313 | { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 314 | dbg("%s", __func__); |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 315 | tty_termios_copy_hw(tty->termios, old_termios); |
| 316 | sierra_send_setup(tty, port); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 317 | } |
| 318 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 319 | static int sierra_tiocmget(struct tty_struct *tty, struct file *file) |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 320 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 321 | struct usb_serial_port *port = tty->driver_data; |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 322 | unsigned int value; |
| 323 | struct sierra_port_private *portdata; |
| 324 | |
| 325 | portdata = usb_get_serial_port_data(port); |
| 326 | |
| 327 | value = ((portdata->rts_state) ? TIOCM_RTS : 0) | |
| 328 | ((portdata->dtr_state) ? TIOCM_DTR : 0) | |
| 329 | ((portdata->cts_state) ? TIOCM_CTS : 0) | |
| 330 | ((portdata->dsr_state) ? TIOCM_DSR : 0) | |
| 331 | ((portdata->dcd_state) ? TIOCM_CAR : 0) | |
| 332 | ((portdata->ri_state) ? TIOCM_RNG : 0); |
| 333 | |
| 334 | return value; |
| 335 | } |
| 336 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 337 | static int sierra_tiocmset(struct tty_struct *tty, struct file *file, |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 338 | unsigned int set, unsigned int clear) |
| 339 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 340 | struct usb_serial_port *port = tty->driver_data; |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 341 | struct sierra_port_private *portdata; |
| 342 | |
| 343 | portdata = usb_get_serial_port_data(port); |
| 344 | |
| 345 | if (set & TIOCM_RTS) |
| 346 | portdata->rts_state = 1; |
| 347 | if (set & TIOCM_DTR) |
| 348 | portdata->dtr_state = 1; |
| 349 | |
| 350 | if (clear & TIOCM_RTS) |
| 351 | portdata->rts_state = 0; |
| 352 | if (clear & TIOCM_DTR) |
| 353 | portdata->dtr_state = 0; |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 354 | return sierra_send_setup(tty, port); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 355 | } |
| 356 | |
Greg Kroah-Hartman | 17c2327 | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 357 | static void sierra_outdat_callback(struct urb *urb) |
| 358 | { |
| 359 | struct usb_serial_port *port = urb->context; |
| 360 | struct sierra_port_private *portdata = usb_get_serial_port_data(port); |
| 361 | int status = urb->status; |
| 362 | unsigned long flags; |
| 363 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 364 | dbg("%s - port %d", __func__, port->number); |
Greg Kroah-Hartman | 17c2327 | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 365 | |
| 366 | /* free up the transfer buffer, as usb_free_urb() does not do this */ |
| 367 | kfree(urb->transfer_buffer); |
| 368 | |
| 369 | if (status) |
| 370 | dbg("%s - nonzero write bulk status received: %d", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 371 | __func__, status); |
Greg Kroah-Hartman | 17c2327 | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 372 | |
| 373 | spin_lock_irqsave(&portdata->lock, flags); |
| 374 | --portdata->outstanding_urbs; |
| 375 | spin_unlock_irqrestore(&portdata->lock, flags); |
| 376 | |
| 377 | usb_serial_port_softint(port); |
| 378 | } |
| 379 | |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 380 | /* Write */ |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 381 | static int sierra_write(struct tty_struct *tty, struct usb_serial_port *port, |
| 382 | const unsigned char *buf, int count) |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 383 | { |
Greg Kroah-Hartman | 17c2327 | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 384 | struct sierra_port_private *portdata = usb_get_serial_port_data(port); |
| 385 | struct usb_serial *serial = port->serial; |
| 386 | unsigned long flags; |
| 387 | unsigned char *buffer; |
| 388 | struct urb *urb; |
| 389 | int status; |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 390 | |
| 391 | portdata = usb_get_serial_port_data(port); |
| 392 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 393 | dbg("%s: write (%d chars)", __func__, count); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 394 | |
Greg Kroah-Hartman | 17c2327 | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 395 | spin_lock_irqsave(&portdata->lock, flags); |
| 396 | if (portdata->outstanding_urbs > N_OUT_URB) { |
| 397 | spin_unlock_irqrestore(&portdata->lock, flags); |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 398 | dbg("%s - write limit hit\n", __func__); |
Greg Kroah-Hartman | 17c2327 | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 399 | return 0; |
| 400 | } |
| 401 | portdata->outstanding_urbs++; |
| 402 | spin_unlock_irqrestore(&portdata->lock, flags); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 403 | |
Greg Kroah-Hartman | 17c2327 | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 404 | buffer = kmalloc(count, GFP_ATOMIC); |
| 405 | if (!buffer) { |
| 406 | dev_err(&port->dev, "out of memory\n"); |
| 407 | count = -ENOMEM; |
| 408 | goto error_no_buffer; |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 409 | } |
| 410 | |
Greg Kroah-Hartman | 17c2327 | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 411 | urb = usb_alloc_urb(0, GFP_ATOMIC); |
| 412 | if (!urb) { |
| 413 | dev_err(&port->dev, "no more free urbs\n"); |
| 414 | count = -ENOMEM; |
| 415 | goto error_no_urb; |
| 416 | } |
| 417 | |
| 418 | memcpy(buffer, buf, count); |
| 419 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 420 | usb_serial_debug_data(debug, &port->dev, __func__, count, buffer); |
Greg Kroah-Hartman | 17c2327 | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 421 | |
| 422 | usb_fill_bulk_urb(urb, serial->dev, |
| 423 | usb_sndbulkpipe(serial->dev, |
| 424 | port->bulk_out_endpointAddress), |
| 425 | buffer, count, sierra_outdat_callback, port); |
| 426 | |
| 427 | /* send it down the pipe */ |
| 428 | status = usb_submit_urb(urb, GFP_ATOMIC); |
| 429 | if (status) { |
| 430 | dev_err(&port->dev, "%s - usb_submit_urb(write bulk) failed " |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 431 | "with status = %d\n", __func__, status); |
Greg Kroah-Hartman | 17c2327 | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 432 | count = status; |
| 433 | goto error; |
| 434 | } |
| 435 | |
| 436 | /* we are done with this urb, so let the host driver |
| 437 | * really free it when it is finished with it */ |
| 438 | usb_free_urb(urb); |
| 439 | |
| 440 | return count; |
| 441 | error: |
| 442 | usb_free_urb(urb); |
| 443 | error_no_urb: |
| 444 | kfree(buffer); |
| 445 | error_no_buffer: |
| 446 | spin_lock_irqsave(&portdata->lock, flags); |
| 447 | --portdata->outstanding_urbs; |
| 448 | spin_unlock_irqrestore(&portdata->lock, flags); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 449 | return count; |
| 450 | } |
| 451 | |
| 452 | static void sierra_indat_callback(struct urb *urb) |
| 453 | { |
| 454 | int err; |
| 455 | int endpoint; |
| 456 | struct usb_serial_port *port; |
| 457 | struct tty_struct *tty; |
| 458 | unsigned char *data = urb->transfer_buffer; |
Greg Kroah-Hartman | 17dd221 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 459 | int status = urb->status; |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 460 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 461 | dbg("%s: %p", __func__, urb); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 462 | |
| 463 | endpoint = usb_pipeendpoint(urb->pipe); |
Ming Lei | cdc9779 | 2008-02-24 18:41:47 +0800 | [diff] [blame] | 464 | port = urb->context; |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 465 | |
Greg Kroah-Hartman | 17dd221 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 466 | if (status) { |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 467 | dbg("%s: nonzero status: %d on endpoint %02x.", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 468 | __func__, status, endpoint); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 469 | } else { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 470 | tty = port->port.tty; |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 471 | if (urb->actual_length) { |
| 472 | tty_buffer_request_room(tty, urb->actual_length); |
| 473 | tty_insert_flip_string(tty, data, urb->actual_length); |
| 474 | tty_flip_buffer_push(tty); |
| 475 | } else { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 476 | dbg("%s: empty read urb received", __func__); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 477 | } |
| 478 | |
| 479 | /* Resubmit urb so we continue receiving */ |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 480 | if (port->port.count && status != -ESHUTDOWN) { |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 481 | err = usb_submit_urb(urb, GFP_ATOMIC); |
| 482 | if (err) |
Greg Kroah-Hartman | 17c2327 | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 483 | dev_err(&port->dev, "resubmit read urb failed." |
Joe Perches | 898eb71 | 2007-10-18 03:06:30 -0700 | [diff] [blame] | 484 | "(%d)\n", err); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 485 | } |
| 486 | } |
| 487 | return; |
| 488 | } |
| 489 | |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 490 | static void sierra_instat_callback(struct urb *urb) |
| 491 | { |
| 492 | int err; |
Greg Kroah-Hartman | 17dd221 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 493 | int status = urb->status; |
Ming Lei | cdc9779 | 2008-02-24 18:41:47 +0800 | [diff] [blame] | 494 | struct usb_serial_port *port = urb->context; |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 495 | struct sierra_port_private *portdata = usb_get_serial_port_data(port); |
| 496 | struct usb_serial *serial = port->serial; |
| 497 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 498 | dbg("%s", __func__); |
| 499 | dbg("%s: urb %p port %p has data %p", __func__, urb, port, portdata); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 500 | |
Greg Kroah-Hartman | 17dd221 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 501 | if (status == 0) { |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 502 | struct usb_ctrlrequest *req_pkt = |
| 503 | (struct usb_ctrlrequest *)urb->transfer_buffer; |
| 504 | |
| 505 | if (!req_pkt) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 506 | dbg("%s: NULL req_pkt\n", __func__); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 507 | return; |
| 508 | } |
| 509 | if ((req_pkt->bRequestType == 0xA1) && |
| 510 | (req_pkt->bRequest == 0x20)) { |
| 511 | int old_dcd_state; |
| 512 | unsigned char signals = *((unsigned char *) |
| 513 | urb->transfer_buffer + |
| 514 | sizeof(struct usb_ctrlrequest)); |
| 515 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 516 | dbg("%s: signal x%x", __func__, signals); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 517 | |
| 518 | old_dcd_state = portdata->dcd_state; |
| 519 | portdata->cts_state = 1; |
| 520 | portdata->dcd_state = ((signals & 0x01) ? 1 : 0); |
| 521 | portdata->dsr_state = ((signals & 0x02) ? 1 : 0); |
| 522 | portdata->ri_state = ((signals & 0x08) ? 1 : 0); |
| 523 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 524 | if (port->port.tty && !C_CLOCAL(port->port.tty) && |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 525 | old_dcd_state && !portdata->dcd_state) |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 526 | tty_hangup(port->port.tty); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 527 | } else { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 528 | dbg("%s: type %x req %x", __func__, |
Kevin Lloyd | f3564de | 2008-03-28 10:05:08 -0700 | [diff] [blame] | 529 | req_pkt->bRequestType, req_pkt->bRequest); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 530 | } |
| 531 | } else |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 532 | dbg("%s: error %d", __func__, status); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 533 | |
| 534 | /* Resubmit urb so we continue receiving IRQ data */ |
Greg Kroah-Hartman | 17dd221 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 535 | if (status != -ESHUTDOWN) { |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 536 | urb->dev = serial->dev; |
| 537 | err = usb_submit_urb(urb, GFP_ATOMIC); |
| 538 | if (err) |
| 539 | dbg("%s: resubmit intr urb failed. (%d)", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 540 | __func__, err); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 541 | } |
| 542 | } |
| 543 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 544 | static int sierra_write_room(struct tty_struct *tty) |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 545 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 546 | struct usb_serial_port *port = tty->driver_data; |
Greg Kroah-Hartman | 17c2327 | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 547 | struct sierra_port_private *portdata = usb_get_serial_port_data(port); |
| 548 | unsigned long flags; |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 549 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 550 | dbg("%s - port %d", __func__, port->number); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 551 | |
Greg Kroah-Hartman | 17c2327 | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 552 | /* try to give a good number back based on if we have any free urbs at |
| 553 | * this point in time */ |
| 554 | spin_lock_irqsave(&portdata->lock, flags); |
| 555 | if (portdata->outstanding_urbs > N_OUT_URB * 2 / 3) { |
| 556 | spin_unlock_irqrestore(&portdata->lock, flags); |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 557 | dbg("%s - write limit hit\n", __func__); |
Greg Kroah-Hartman | 17c2327 | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 558 | return 0; |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 559 | } |
Greg Kroah-Hartman | 17c2327 | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 560 | spin_unlock_irqrestore(&portdata->lock, flags); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 561 | |
Greg Kroah-Hartman | 17c2327 | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 562 | return 2048; |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 563 | } |
| 564 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 565 | static int sierra_open(struct tty_struct *tty, |
| 566 | struct usb_serial_port *port, struct file *filp) |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 567 | { |
| 568 | struct sierra_port_private *portdata; |
| 569 | struct usb_serial *serial = port->serial; |
Greg Kroah-Hartman | 9e85c5f | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 570 | int i; |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 571 | struct urb *urb; |
Kevin Lloyd | e43062d | 2007-01-17 16:04:18 -0800 | [diff] [blame] | 572 | int result; |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 573 | |
| 574 | portdata = usb_get_serial_port_data(port); |
| 575 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 576 | dbg("%s", __func__); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 577 | |
| 578 | /* Set some sane defaults */ |
| 579 | portdata->rts_state = 1; |
| 580 | portdata->dtr_state = 1; |
| 581 | |
| 582 | /* Reset low level data toggle and start reading from endpoints */ |
| 583 | for (i = 0; i < N_IN_URB; i++) { |
| 584 | urb = portdata->in_urbs[i]; |
Greg Kroah-Hartman | 9e85c5f | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 585 | if (!urb) |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 586 | continue; |
| 587 | if (urb->dev != serial->dev) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 588 | dbg("%s: dev %p != %p", __func__, |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 589 | urb->dev, serial->dev); |
| 590 | continue; |
| 591 | } |
| 592 | |
| 593 | /* |
| 594 | * make sure endpoint data toggle is synchronized with the |
| 595 | * device |
| 596 | */ |
| 597 | usb_clear_halt(urb->dev, urb->pipe); |
| 598 | |
Greg Kroah-Hartman | 9e85c5f | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 599 | result = usb_submit_urb(urb, GFP_KERNEL); |
| 600 | if (result) { |
Joe Perches | 898eb71 | 2007-10-18 03:06:30 -0700 | [diff] [blame] | 601 | dev_err(&port->dev, "submit urb %d failed (%d) %d\n", |
Greg Kroah-Hartman | 9e85c5f | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 602 | i, result, urb->transfer_buffer_length); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 603 | } |
| 604 | } |
| 605 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 606 | if (tty) |
| 607 | tty->low_latency = 1; |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 608 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 609 | sierra_send_setup(tty, port); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 610 | |
Greg Kroah-Hartman | 9e85c5f | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 611 | /* start up the interrupt endpoint if we have one */ |
| 612 | if (port->interrupt_in_urb) { |
| 613 | result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL); |
| 614 | if (result) |
Joe Perches | 898eb71 | 2007-10-18 03:06:30 -0700 | [diff] [blame] | 615 | dev_err(&port->dev, "submit irq_in urb failed %d\n", |
Greg Kroah-Hartman | 9e85c5f | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 616 | result); |
| 617 | } |
| 618 | return 0; |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 619 | } |
| 620 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 621 | static void sierra_close(struct tty_struct *tty, |
| 622 | struct usb_serial_port *port, struct file *filp) |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 623 | { |
| 624 | int i; |
| 625 | struct usb_serial *serial = port->serial; |
| 626 | struct sierra_port_private *portdata; |
| 627 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 628 | dbg("%s", __func__); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 629 | portdata = usb_get_serial_port_data(port); |
| 630 | |
| 631 | portdata->rts_state = 0; |
| 632 | portdata->dtr_state = 0; |
| 633 | |
| 634 | if (serial->dev) { |
Oliver Neukum | e33fe4d | 2008-01-21 17:44:10 +0100 | [diff] [blame] | 635 | mutex_lock(&serial->disc_mutex); |
| 636 | if (!serial->disconnected) |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 637 | sierra_send_setup(tty, port); |
Oliver Neukum | e33fe4d | 2008-01-21 17:44:10 +0100 | [diff] [blame] | 638 | mutex_unlock(&serial->disc_mutex); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 639 | |
| 640 | /* Stop reading/writing urbs */ |
| 641 | for (i = 0; i < N_IN_URB; i++) |
Greg Kroah-Hartman | 9e85c5f | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 642 | usb_kill_urb(portdata->in_urbs[i]); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 643 | } |
Greg Kroah-Hartman | 9e85c5f | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 644 | |
| 645 | usb_kill_urb(port->interrupt_in_urb); |
| 646 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 647 | port->port.tty = NULL; /* FIXME */ |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 648 | } |
| 649 | |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 650 | static int sierra_startup(struct usb_serial *serial) |
| 651 | { |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 652 | struct usb_serial_port *port; |
| 653 | struct sierra_port_private *portdata; |
Greg Kroah-Hartman | 9e85c5f | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 654 | struct urb *urb; |
| 655 | int i; |
| 656 | int j; |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 657 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 658 | dbg("%s", __func__); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 659 | |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 660 | /* Set Device mode to D0 */ |
Kevin Lloyd | 112225b | 2007-07-16 13:49:27 -0700 | [diff] [blame] | 661 | sierra_set_power_state(serial->dev, 0x0000); |
| 662 | |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 663 | /* Check NMEA and set */ |
| 664 | if (nmea) |
| 665 | sierra_vsc_set_nmea(serial->dev, 1); |
| 666 | |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 667 | /* Now setup per port private data */ |
| 668 | for (i = 0; i < serial->num_ports; i++) { |
| 669 | port = serial->port[i]; |
| 670 | portdata = kzalloc(sizeof(*portdata), GFP_KERNEL); |
| 671 | if (!portdata) { |
| 672 | dbg("%s: kmalloc for sierra_port_private (%d) failed!.", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 673 | __func__, i); |
Greg Kroah-Hartman | 17c2327 | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 674 | return -ENOMEM; |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 675 | } |
Greg Kroah-Hartman | 17c2327 | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 676 | spin_lock_init(&portdata->lock); |
Oliver Neukum | 4f4f9c5 | 2008-03-14 00:53:24 -0700 | [diff] [blame] | 677 | for (j = 0; j < N_IN_URB; j++) { |
| 678 | portdata->in_buffer[j] = kmalloc(IN_BUFLEN, GFP_KERNEL); |
| 679 | if (!portdata->in_buffer[j]) { |
| 680 | for (--j; j >= 0; j--) |
| 681 | kfree(portdata->in_buffer[j]); |
| 682 | kfree(portdata); |
| 683 | return -ENOMEM; |
| 684 | } |
| 685 | } |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 686 | |
| 687 | usb_set_serial_port_data(port, portdata); |
| 688 | |
Greg Kroah-Hartman | 9e85c5f | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 689 | /* initialize the in urbs */ |
| 690 | for (j = 0; j < N_IN_URB; ++j) { |
| 691 | urb = usb_alloc_urb(0, GFP_KERNEL); |
| 692 | if (urb == NULL) { |
| 693 | dbg("%s: alloc for in port failed.", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 694 | __func__); |
Greg Kroah-Hartman | 9e85c5f | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 695 | continue; |
| 696 | } |
| 697 | /* Fill URB using supplied data. */ |
| 698 | usb_fill_bulk_urb(urb, serial->dev, |
| 699 | usb_rcvbulkpipe(serial->dev, |
| 700 | port->bulk_in_endpointAddress), |
| 701 | portdata->in_buffer[j], IN_BUFLEN, |
| 702 | sierra_indat_callback, port); |
| 703 | portdata->in_urbs[j] = urb; |
| 704 | } |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 705 | } |
| 706 | |
Greg Kroah-Hartman | 17c2327 | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 707 | return 0; |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 708 | } |
| 709 | |
| 710 | static void sierra_shutdown(struct usb_serial *serial) |
| 711 | { |
| 712 | int i, j; |
| 713 | struct usb_serial_port *port; |
| 714 | struct sierra_port_private *portdata; |
| 715 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 716 | dbg("%s", __func__); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 717 | |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 718 | for (i = 0; i < serial->num_ports; ++i) { |
| 719 | port = serial->port[i]; |
Greg Kroah-Hartman | f094e4f | 2007-04-26 00:12:01 -0700 | [diff] [blame] | 720 | if (!port) |
| 721 | continue; |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 722 | portdata = usb_get_serial_port_data(port); |
Greg Kroah-Hartman | f094e4f | 2007-04-26 00:12:01 -0700 | [diff] [blame] | 723 | if (!portdata) |
| 724 | continue; |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 725 | |
| 726 | for (j = 0; j < N_IN_URB; j++) { |
Greg Kroah-Hartman | 9e85c5f | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 727 | usb_kill_urb(portdata->in_urbs[j]); |
| 728 | usb_free_urb(portdata->in_urbs[j]); |
Oliver Neukum | 4f4f9c5 | 2008-03-14 00:53:24 -0700 | [diff] [blame] | 729 | kfree(portdata->in_buffer[j]); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 730 | } |
Greg Kroah-Hartman | 9e85c5f | 2007-06-20 14:22:23 +0900 | [diff] [blame] | 731 | kfree(portdata); |
| 732 | usb_set_serial_port_data(port, NULL); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 733 | } |
| 734 | } |
| 735 | |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 736 | static struct usb_serial_driver sierra_device = { |
Greg Kroah-Hartman | 964ee1d | 2006-10-17 10:17:58 -0700 | [diff] [blame] | 737 | .driver = { |
| 738 | .owner = THIS_MODULE, |
Kevin Lloyd | 4e0fee8 | 2008-07-10 14:14:47 -0700 | [diff] [blame] | 739 | .name = "sierra", |
Greg Kroah-Hartman | 964ee1d | 2006-10-17 10:17:58 -0700 | [diff] [blame] | 740 | }, |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 741 | .description = "Sierra USB modem", |
| 742 | .id_table = id_table, |
Johannes Hölzl | d9b1b78 | 2006-12-17 21:50:24 +0100 | [diff] [blame] | 743 | .usb_driver = &sierra_driver, |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 744 | .calc_num_ports = sierra_calc_num_ports, |
| 745 | .probe = sierra_probe, |
Greg Kroah-Hartman | 964ee1d | 2006-10-17 10:17:58 -0700 | [diff] [blame] | 746 | .open = sierra_open, |
| 747 | .close = sierra_close, |
| 748 | .write = sierra_write, |
| 749 | .write_room = sierra_write_room, |
Greg Kroah-Hartman | 964ee1d | 2006-10-17 10:17:58 -0700 | [diff] [blame] | 750 | .set_termios = sierra_set_termios, |
Greg Kroah-Hartman | 964ee1d | 2006-10-17 10:17:58 -0700 | [diff] [blame] | 751 | .tiocmget = sierra_tiocmget, |
| 752 | .tiocmset = sierra_tiocmset, |
| 753 | .attach = sierra_startup, |
| 754 | .shutdown = sierra_shutdown, |
| 755 | .read_int_callback = sierra_instat_callback, |
| 756 | }; |
| 757 | |
| 758 | /* Functions used by new usb-serial code. */ |
| 759 | static int __init sierra_init(void) |
| 760 | { |
| 761 | int retval; |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 762 | retval = usb_serial_register(&sierra_device); |
Greg Kroah-Hartman | 964ee1d | 2006-10-17 10:17:58 -0700 | [diff] [blame] | 763 | if (retval) |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 764 | goto failed_device_register; |
Greg Kroah-Hartman | 964ee1d | 2006-10-17 10:17:58 -0700 | [diff] [blame] | 765 | |
| 766 | |
| 767 | retval = usb_register(&sierra_driver); |
| 768 | if (retval) |
| 769 | goto failed_driver_register; |
| 770 | |
| 771 | info(DRIVER_DESC ": " DRIVER_VERSION); |
| 772 | |
| 773 | return 0; |
| 774 | |
| 775 | failed_driver_register: |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 776 | usb_serial_deregister(&sierra_device); |
| 777 | failed_device_register: |
Greg Kroah-Hartman | 964ee1d | 2006-10-17 10:17:58 -0700 | [diff] [blame] | 778 | return retval; |
| 779 | } |
| 780 | |
| 781 | static void __exit sierra_exit(void) |
| 782 | { |
Alan Cox | 9660ea3 | 2008-07-22 11:14:59 +0100 | [diff] [blame] | 783 | usb_deregister(&sierra_driver); |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 784 | usb_serial_deregister(&sierra_device); |
Greg Kroah-Hartman | 964ee1d | 2006-10-17 10:17:58 -0700 | [diff] [blame] | 785 | } |
| 786 | |
| 787 | module_init(sierra_init); |
| 788 | module_exit(sierra_exit); |
| 789 | |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 790 | MODULE_AUTHOR(DRIVER_AUTHOR); |
| 791 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 792 | MODULE_VERSION(DRIVER_VERSION); |
Kevin Lloyd | 69de51f | 2006-06-30 11:17:55 -0700 | [diff] [blame] | 793 | MODULE_LICENSE("GPL"); |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 794 | |
Kevin Lloyd | 4e0fee8 | 2008-07-10 14:14:47 -0700 | [diff] [blame] | 795 | module_param(nmea, bool, S_IRUGO | S_IWUSR); |
Kevin Lloyd | 228426e | 2008-01-10 11:11:04 -0800 | [diff] [blame] | 796 | MODULE_PARM_DESC(nmea, "NMEA streaming"); |
| 797 | |
Kevin Lloyd | 033a3fb | 2006-10-13 23:53:21 -0700 | [diff] [blame] | 798 | #ifdef CONFIG_USB_DEBUG |
| 799 | module_param(debug, bool, S_IRUGO | S_IWUSR); |
| 800 | MODULE_PARM_DESC(debug, "Debug messages"); |
| 801 | #endif |