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