Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1 | /* |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 2 | USB Driver for GSM modems |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 3 | |
| 4 | Copyright (C) 2005 Matthias Urlichs <smurf@smurf.noris.de> |
| 5 | |
| 6 | This driver is free software; you can redistribute it and/or modify |
| 7 | it under the terms of Version 2 of the GNU General Public License as |
| 8 | published by the Free Software Foundation. |
| 9 | |
| 10 | Portions copied from the Keyspan driver by Hugh Blemings <hugh@blemings.org> |
| 11 | |
Matthias Urlichs | b3fdab5 | 2006-08-02 16:41:41 -0700 | [diff] [blame] | 12 | History: see the git log. |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 13 | |
| 14 | Work sponsored by: Sigos GmbH, Germany <info@sigos.de> |
| 15 | |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 16 | This driver exists because the "normal" serial driver doesn't work too well |
| 17 | with GSM modems. Issues: |
| 18 | - data loss -- one single Receive URB is not nearly enough |
Matthias Urlichs | 7c1c2f7 | 2006-07-20 04:56:00 +0200 | [diff] [blame] | 19 | - nonstandard flow (Option devices) control |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 20 | - controlling the baud rate doesn't make sense |
| 21 | |
| 22 | This driver is named "option" because the most common device it's |
| 23 | used for is a PC-Card (with an internal OHCI-USB interface, behind |
| 24 | which the GSM interface sits), made by Option Inc. |
| 25 | |
| 26 | Some of the "one port" devices actually exhibit multiple USB instances |
| 27 | on the USB bus. This is not a bug, these ports are used for different |
| 28 | device features. |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 29 | */ |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 30 | |
Matthias Urlichs | e37de9e | 2006-07-06 13:12:53 +0200 | [diff] [blame] | 31 | #define DRIVER_VERSION "v0.7.1" |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 32 | #define DRIVER_AUTHOR "Matthias Urlichs <smurf@smurf.noris.de>" |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 33 | #define DRIVER_DESC "USB Driver for GSM modems" |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 34 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 35 | #include <linux/kernel.h> |
| 36 | #include <linux/jiffies.h> |
| 37 | #include <linux/errno.h> |
| 38 | #include <linux/tty.h> |
| 39 | #include <linux/tty_flip.h> |
| 40 | #include <linux/module.h> |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 41 | #include <linux/bitops.h> |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 42 | #include <linux/usb.h> |
Greg Kroah-Hartman | a969888 | 2006-07-11 21:22:58 -0700 | [diff] [blame] | 43 | #include <linux/usb/serial.h> |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 44 | |
| 45 | /* Function prototypes */ |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 46 | static int option_open(struct usb_serial_port *port, struct file *filp); |
| 47 | static void option_close(struct usb_serial_port *port, struct file *filp); |
| 48 | static int option_startup(struct usb_serial *serial); |
| 49 | static void option_shutdown(struct usb_serial *serial); |
| 50 | static void option_rx_throttle(struct usb_serial_port *port); |
| 51 | static void option_rx_unthrottle(struct usb_serial_port *port); |
| 52 | static int option_write_room(struct usb_serial_port *port); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 53 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 54 | static void option_instat_callback(struct urb *urb); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 55 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 56 | static int option_write(struct usb_serial_port *port, |
| 57 | const unsigned char *buf, int count); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 58 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 59 | static int option_chars_in_buffer(struct usb_serial_port *port); |
| 60 | static int option_ioctl(struct usb_serial_port *port, struct file *file, |
| 61 | unsigned int cmd, unsigned long arg); |
| 62 | static void option_set_termios(struct usb_serial_port *port, |
Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 63 | struct ktermios *old); |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 64 | static void option_break_ctl(struct usb_serial_port *port, int break_state); |
| 65 | static int option_tiocmget(struct usb_serial_port *port, struct file *file); |
| 66 | static int option_tiocmset(struct usb_serial_port *port, struct file *file, |
| 67 | unsigned int set, unsigned int clear); |
| 68 | static int option_send_setup(struct usb_serial_port *port); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 69 | |
| 70 | /* Vendor and product IDs */ |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 71 | #define OPTION_VENDOR_ID 0x0AF0 |
| 72 | #define OPTION_PRODUCT_COLT 0x5000 |
| 73 | #define OPTION_PRODUCT_RICOLA 0x6000 |
| 74 | #define OPTION_PRODUCT_RICOLA_LIGHT 0x6100 |
| 75 | #define OPTION_PRODUCT_RICOLA_QUAD 0x6200 |
| 76 | #define OPTION_PRODUCT_RICOLA_QUAD_LIGHT 0x6300 |
| 77 | #define OPTION_PRODUCT_RICOLA_NDIS 0x6050 |
| 78 | #define OPTION_PRODUCT_RICOLA_NDIS_LIGHT 0x6150 |
| 79 | #define OPTION_PRODUCT_RICOLA_NDIS_QUAD 0x6250 |
| 80 | #define OPTION_PRODUCT_RICOLA_NDIS_QUAD_LIGHT 0x6350 |
| 81 | #define OPTION_PRODUCT_COBRA 0x6500 |
| 82 | #define OPTION_PRODUCT_COBRA_BUS 0x6501 |
| 83 | #define OPTION_PRODUCT_VIPER 0x6600 |
| 84 | #define OPTION_PRODUCT_VIPER_BUS 0x6601 |
| 85 | #define OPTION_PRODUCT_GT_MAX_READY 0x6701 |
| 86 | #define OPTION_PRODUCT_GT_MAX 0x6711 |
| 87 | #define OPTION_PRODUCT_FUJI_MODEM_LIGHT 0x6721 |
| 88 | #define OPTION_PRODUCT_FUJI_MODEM_GT 0x6741 |
| 89 | #define OPTION_PRODUCT_FUJI_MODEM_EX 0x6761 |
| 90 | #define OPTION_PRODUCT_FUJI_NETWORK_LIGHT 0x6731 |
| 91 | #define OPTION_PRODUCT_FUJI_NETWORK_GT 0x6751 |
| 92 | #define OPTION_PRODUCT_FUJI_NETWORK_EX 0x6771 |
| 93 | #define OPTION_PRODUCT_KOI_MODEM 0x6800 |
| 94 | #define OPTION_PRODUCT_KOI_NETWORK 0x6811 |
| 95 | #define OPTION_PRODUCT_SCORPION_MODEM 0x6901 |
| 96 | #define OPTION_PRODUCT_SCORPION_NETWORK 0x6911 |
| 97 | #define OPTION_PRODUCT_ETNA_MODEM 0x7001 |
| 98 | #define OPTION_PRODUCT_ETNA_NETWORK 0x7011 |
| 99 | #define OPTION_PRODUCT_ETNA_MODEM_LITE 0x7021 |
| 100 | #define OPTION_PRODUCT_ETNA_MODEM_GT 0x7041 |
| 101 | #define OPTION_PRODUCT_ETNA_MODEM_EX 0x7061 |
| 102 | #define OPTION_PRODUCT_ETNA_NETWORK_LITE 0x7031 |
| 103 | #define OPTION_PRODUCT_ETNA_NETWORK_GT 0x7051 |
| 104 | #define OPTION_PRODUCT_ETNA_NETWORK_EX 0x7071 |
| 105 | #define OPTION_PRODUCT_ETNA_KOI_MODEM 0x7100 |
| 106 | #define OPTION_PRODUCT_ETNA_KOI_NETWORK 0x7111 |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 107 | |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 108 | #define HUAWEI_VENDOR_ID 0x12D1 |
| 109 | #define HUAWEI_PRODUCT_E600 0x1001 |
| 110 | #define HUAWEI_PRODUCT_E220 0x1003 |
Jaime Velasco Juan | a3209a0 | 2007-09-07 19:06:39 +0100 | [diff] [blame] | 111 | #define HUAWEI_PRODUCT_E220BIS 0x1004 |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 112 | |
| 113 | #define NOVATELWIRELESS_VENDOR_ID 0x1410 |
Faidon Liambotis | 9644321 | 2007-08-07 05:46:05 +0300 | [diff] [blame] | 114 | #define DELL_VENDOR_ID 0x413C |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 115 | |
| 116 | #define ANYDATA_VENDOR_ID 0x16d5 |
Alexander Gattin | 46269db | 2007-06-20 00:48:10 +0300 | [diff] [blame] | 117 | #define ANYDATA_PRODUCT_ADU_E100A 0x6501 |
| 118 | #define ANYDATA_PRODUCT_ADU_500A 0x6502 |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 119 | |
Leon Leong | 3f6e584 | 2007-04-26 00:38:02 -0700 | [diff] [blame] | 120 | #define BANDRICH_VENDOR_ID 0x1A8D |
| 121 | #define BANDRICH_PRODUCT_C100_1 0x1002 |
| 122 | #define BANDRICH_PRODUCT_C100_2 0x1003 |
| 123 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 124 | static struct usb_device_id option_ids[] = { |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 125 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COLT) }, |
| 126 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA) }, |
| 127 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_LIGHT) }, |
| 128 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_QUAD) }, |
| 129 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_QUAD_LIGHT) }, |
| 130 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS) }, |
| 131 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_LIGHT) }, |
| 132 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_QUAD) }, |
| 133 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_QUAD_LIGHT) }, |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 134 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA) }, |
Greg Kroah-Hartman | fd978bfa | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 135 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA_BUS) }, |
| 136 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_VIPER) }, |
| 137 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_VIPER_BUS) }, |
| 138 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GT_MAX_READY) }, |
| 139 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GT_MAX) }, |
| 140 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_LIGHT) }, |
| 141 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_GT) }, |
| 142 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_EX) }, |
| 143 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_NETWORK_LIGHT) }, |
| 144 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_NETWORK_GT) }, |
| 145 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_NETWORK_EX) }, |
| 146 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_KOI_MODEM) }, |
| 147 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_KOI_NETWORK) }, |
| 148 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_SCORPION_MODEM) }, |
| 149 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_SCORPION_NETWORK) }, |
| 150 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM) }, |
| 151 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_NETWORK) }, |
| 152 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_LITE) }, |
| 153 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_GT) }, |
| 154 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_EX) }, |
| 155 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_NETWORK_LITE) }, |
| 156 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_NETWORK_GT) }, |
| 157 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_NETWORK_EX) }, |
| 158 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_KOI_MODEM) }, |
| 159 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_KOI_NETWORK) }, |
Matthias Urlichs | b613738 | 2005-09-22 00:48:40 -0700 | [diff] [blame] | 160 | { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E600) }, |
Jaime Velasco Juan | b5ce18a | 2007-11-30 16:30:11 +0000 | [diff] [blame] | 161 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220, 0xff, 0xff, 0xff) }, |
| 162 | { USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220BIS, 0xff, 0xff, 0xff) }, |
Greg Kroah-Hartman | 69806d5 | 2007-03-19 13:39:51 -0700 | [diff] [blame] | 163 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1100) }, /* Novatel Merlin XS620/S640 */ |
| 164 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1110) }, /* Novatel Merlin S620 */ |
| 165 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1120) }, /* Novatel Merlin EX720 */ |
| 166 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1130) }, /* Novatel Merlin S720 */ |
| 167 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1400) }, /* Novatel U730 */ |
| 168 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1410) }, /* Novatel U740 */ |
| 169 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1420) }, /* Novatel EU870 */ |
| 170 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x1430) }, /* Novatel Merlin XU870 HSDPA/3G */ |
Greg Kroah-Hartman | 69806d5 | 2007-03-19 13:39:51 -0700 | [diff] [blame] | 171 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x2100) }, /* Novatel EV620 CDMA/EV-DO */ |
| 172 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x2110) }, /* Novatel Merlin ES620 / Merlin ES720 / Ovation U720 */ |
| 173 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x2130) }, /* Novatel Merlin ES620 SM Bus */ |
| 174 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x2410) }, /* Novatel EU740 */ |
Greg Kroah-Hartman | 3657f6c | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 175 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x4100) }, /* Novatel U727 */ |
| 176 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, 0x4400) }, /* Novatel MC950 */ |
Faidon Liambotis | 9644321 | 2007-08-07 05:46:05 +0300 | [diff] [blame] | 177 | { USB_DEVICE(DELL_VENDOR_ID, 0x8114) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO Mini-Card == Novatel Expedite EV620 CDMA/EV-DO */ |
| 178 | { USB_DEVICE(DELL_VENDOR_ID, 0x8115) }, /* Dell Wireless 5500 Mobile Broadband HSDPA Mini-Card == Novatel Expedite EU740 HSDPA/3G */ |
| 179 | { USB_DEVICE(DELL_VENDOR_ID, 0x8116) }, /* Dell Wireless 5505 Mobile Broadband HSDPA Mini-Card == Novatel Expedite EU740 HSDPA/3G */ |
| 180 | { USB_DEVICE(DELL_VENDOR_ID, 0x8117) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO ExpressCard == Novatel Merlin XV620 CDMA/EV-DO */ |
| 181 | { USB_DEVICE(DELL_VENDOR_ID, 0x8118) }, /* Dell Wireless 5510 Mobile Broadband HSDPA ExpressCard == Novatel Merlin XU870 HSDPA/3G */ |
| 182 | { USB_DEVICE(DELL_VENDOR_ID, 0x8128) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO Mini-Card == Novatel Expedite E720 CDMA/EV-DO */ |
Nate Carlson | ab91d34 | 2008-01-24 12:45:07 -0600 | [diff] [blame] | 183 | { USB_DEVICE(DELL_VENDOR_ID, 0x8136) }, /* Dell Wireless HSDPA 5520 == Novatel Expedite EU860D */ |
Greg Kroah-Hartman | 2c4cd1f | 2007-08-30 19:02:10 +0200 | [diff] [blame] | 184 | { USB_DEVICE(DELL_VENDOR_ID, 0x8137) }, /* Dell Wireless HSDPA 5520 */ |
Alexander Gattin | 46269db | 2007-06-20 00:48:10 +0300 | [diff] [blame] | 185 | { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_E100A) }, |
| 186 | { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_500A) }, |
Leon Leong | 3f6e584 | 2007-04-26 00:38:02 -0700 | [diff] [blame] | 187 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_C100_1) }, |
| 188 | { USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_C100_2) }, |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 189 | { } /* Terminating entry */ |
| 190 | }; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 191 | MODULE_DEVICE_TABLE(usb, option_ids); |
| 192 | |
| 193 | static struct usb_driver option_driver = { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 194 | .name = "option", |
| 195 | .probe = usb_serial_probe, |
| 196 | .disconnect = usb_serial_disconnect, |
| 197 | .id_table = option_ids, |
Greg Kroah-Hartman | ba9dc65 | 2005-11-16 13:41:28 -0800 | [diff] [blame] | 198 | .no_dynamic_id = 1, |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 199 | }; |
| 200 | |
Uwe Zeisberger | c30fe7f | 2006-03-24 18:23:14 +0100 | [diff] [blame] | 201 | /* The card has three separate interfaces, which the serial driver |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 202 | * recognizes separately, thus num_port=1. |
| 203 | */ |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 204 | |
| 205 | static struct usb_serial_driver option_1port_device = { |
| 206 | .driver = { |
| 207 | .owner = THIS_MODULE, |
Matthias Urlichs | 02b2ac5 | 2006-08-02 16:41:41 -0700 | [diff] [blame] | 208 | .name = "option1", |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 209 | }, |
| 210 | .description = "GSM modem (1-port)", |
Johannes Hölzl | d9b1b78 | 2006-12-17 21:50:24 +0100 | [diff] [blame] | 211 | .usb_driver = &option_driver, |
Greg Kroah-Hartman | b656b2c | 2007-02-21 12:53:17 -0800 | [diff] [blame] | 212 | .id_table = option_ids, |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 213 | .num_interrupt_in = NUM_DONT_CARE, |
| 214 | .num_bulk_in = NUM_DONT_CARE, |
| 215 | .num_bulk_out = NUM_DONT_CARE, |
| 216 | .num_ports = 1, |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 217 | .open = option_open, |
| 218 | .close = option_close, |
| 219 | .write = option_write, |
| 220 | .write_room = option_write_room, |
| 221 | .chars_in_buffer = option_chars_in_buffer, |
| 222 | .throttle = option_rx_throttle, |
| 223 | .unthrottle = option_rx_unthrottle, |
| 224 | .ioctl = option_ioctl, |
| 225 | .set_termios = option_set_termios, |
| 226 | .break_ctl = option_break_ctl, |
| 227 | .tiocmget = option_tiocmget, |
| 228 | .tiocmset = option_tiocmset, |
| 229 | .attach = option_startup, |
| 230 | .shutdown = option_shutdown, |
| 231 | .read_int_callback = option_instat_callback, |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 232 | }; |
| 233 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 234 | #ifdef CONFIG_USB_DEBUG |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 235 | static int debug; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 236 | #else |
| 237 | #define debug 0 |
| 238 | #endif |
| 239 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 240 | /* per port private data */ |
| 241 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 242 | #define N_IN_URB 4 |
| 243 | #define N_OUT_URB 1 |
Matthias Urlichs | b27c73d | 2005-09-22 00:49:33 -0700 | [diff] [blame] | 244 | #define IN_BUFLEN 4096 |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 245 | #define OUT_BUFLEN 128 |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 246 | |
| 247 | struct option_port_private { |
| 248 | /* Input endpoints and buffer for this port */ |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 249 | struct urb *in_urbs[N_IN_URB]; |
| 250 | char in_buffer[N_IN_URB][IN_BUFLEN]; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 251 | /* Output endpoints and buffer for this port */ |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 252 | struct urb *out_urbs[N_OUT_URB]; |
| 253 | char out_buffer[N_OUT_URB][OUT_BUFLEN]; |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 254 | unsigned long out_busy; /* Bit vector of URBs in use */ |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 255 | |
| 256 | /* Settings for the port */ |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 257 | int rts_state; /* Handshaking pins (outputs) */ |
| 258 | int dtr_state; |
| 259 | int cts_state; /* Handshaking pins (inputs) */ |
| 260 | int dsr_state; |
| 261 | int dcd_state; |
| 262 | int ri_state; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 263 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 264 | unsigned long tx_start_time[N_OUT_URB]; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 265 | }; |
| 266 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 267 | /* Functions used by new usb-serial code. */ |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 268 | static int __init option_init(void) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 269 | { |
| 270 | int retval; |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 271 | retval = usb_serial_register(&option_1port_device); |
| 272 | if (retval) |
| 273 | goto failed_1port_device_register; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 274 | retval = usb_register(&option_driver); |
| 275 | if (retval) |
| 276 | goto failed_driver_register; |
| 277 | |
| 278 | info(DRIVER_DESC ": " DRIVER_VERSION); |
| 279 | |
| 280 | return 0; |
| 281 | |
| 282 | failed_driver_register: |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 283 | usb_serial_deregister (&option_1port_device); |
| 284 | failed_1port_device_register: |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 285 | return retval; |
| 286 | } |
| 287 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 288 | static void __exit option_exit(void) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 289 | { |
| 290 | usb_deregister (&option_driver); |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 291 | usb_serial_deregister (&option_1port_device); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 292 | } |
| 293 | |
| 294 | module_init(option_init); |
| 295 | module_exit(option_exit); |
| 296 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 297 | static void option_rx_throttle(struct usb_serial_port *port) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 298 | { |
| 299 | dbg("%s", __FUNCTION__); |
| 300 | } |
| 301 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 302 | static void option_rx_unthrottle(struct usb_serial_port *port) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 303 | { |
| 304 | dbg("%s", __FUNCTION__); |
| 305 | } |
| 306 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 307 | static void option_break_ctl(struct usb_serial_port *port, int break_state) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 308 | { |
| 309 | /* Unfortunately, I don't know how to send a break */ |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 310 | dbg("%s", __FUNCTION__); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 311 | } |
| 312 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 313 | static void option_set_termios(struct usb_serial_port *port, |
Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 314 | struct ktermios *old_termios) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 315 | { |
| 316 | dbg("%s", __FUNCTION__); |
Alan Cox | e650d8a | 2007-10-18 01:24:21 -0700 | [diff] [blame] | 317 | /* Doesn't support option setting */ |
| 318 | tty_termios_copy_hw(port->tty->termios, old_termios); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 319 | option_send_setup(port); |
| 320 | } |
| 321 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 322 | static int option_tiocmget(struct usb_serial_port *port, struct file *file) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 323 | { |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 324 | unsigned int value; |
| 325 | struct option_port_private *portdata; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 326 | |
| 327 | portdata = usb_get_serial_port_data(port); |
| 328 | |
| 329 | value = ((portdata->rts_state) ? TIOCM_RTS : 0) | |
| 330 | ((portdata->dtr_state) ? TIOCM_DTR : 0) | |
| 331 | ((portdata->cts_state) ? TIOCM_CTS : 0) | |
| 332 | ((portdata->dsr_state) ? TIOCM_DSR : 0) | |
| 333 | ((portdata->dcd_state) ? TIOCM_CAR : 0) | |
| 334 | ((portdata->ri_state) ? TIOCM_RNG : 0); |
| 335 | |
| 336 | return value; |
| 337 | } |
| 338 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 339 | static int option_tiocmset(struct usb_serial_port *port, struct file *file, |
| 340 | unsigned int set, unsigned int clear) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 341 | { |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 342 | struct option_port_private *portdata; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 343 | |
| 344 | portdata = usb_get_serial_port_data(port); |
| 345 | |
| 346 | if (set & TIOCM_RTS) |
| 347 | portdata->rts_state = 1; |
| 348 | if (set & TIOCM_DTR) |
| 349 | portdata->dtr_state = 1; |
| 350 | |
| 351 | if (clear & TIOCM_RTS) |
| 352 | portdata->rts_state = 0; |
| 353 | if (clear & TIOCM_DTR) |
| 354 | portdata->dtr_state = 0; |
| 355 | return option_send_setup(port); |
| 356 | } |
| 357 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 358 | static int option_ioctl(struct usb_serial_port *port, struct file *file, |
| 359 | unsigned int cmd, unsigned long arg) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 360 | { |
| 361 | return -ENOIOCTLCMD; |
| 362 | } |
| 363 | |
| 364 | /* Write */ |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 365 | static int option_write(struct usb_serial_port *port, |
| 366 | const unsigned char *buf, int count) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 367 | { |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 368 | struct option_port_private *portdata; |
| 369 | int i; |
| 370 | int left, todo; |
| 371 | struct urb *this_urb = NULL; /* spurious */ |
| 372 | int err; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 373 | |
| 374 | portdata = usb_get_serial_port_data(port); |
| 375 | |
| 376 | dbg("%s: write (%d chars)", __FUNCTION__, count); |
| 377 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 378 | i = 0; |
| 379 | left = count; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 380 | for (i=0; left > 0 && i < N_OUT_URB; i++) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 381 | todo = left; |
| 382 | if (todo > OUT_BUFLEN) |
| 383 | todo = OUT_BUFLEN; |
| 384 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 385 | this_urb = portdata->out_urbs[i]; |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 386 | if (test_and_set_bit(i, &portdata->out_busy)) { |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 387 | if (time_before(jiffies, |
| 388 | portdata->tx_start_time[i] + 10 * HZ)) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 389 | continue; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 390 | usb_unlink_urb(this_urb); |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 391 | continue; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 392 | } |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 393 | if (this_urb->status != 0) |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 394 | dbg("usb_write %p failed (err=%d)", |
| 395 | this_urb, this_urb->status); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 396 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 397 | dbg("%s: endpoint %d buf %d", __FUNCTION__, |
| 398 | usb_pipeendpoint(this_urb->pipe), i); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 399 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 400 | /* send the data */ |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 401 | memcpy (this_urb->transfer_buffer, buf, todo); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 402 | this_urb->transfer_buffer_length = todo; |
| 403 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 404 | this_urb->dev = port->serial->dev; |
| 405 | err = usb_submit_urb(this_urb, GFP_ATOMIC); |
| 406 | if (err) { |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 407 | dbg("usb_submit_urb %p (write bulk) failed " |
| 408 | "(%d, has %d)", this_urb, |
| 409 | err, this_urb->status); |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 410 | clear_bit(i, &portdata->out_busy); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 411 | continue; |
| 412 | } |
| 413 | portdata->tx_start_time[i] = jiffies; |
| 414 | buf += todo; |
| 415 | left -= todo; |
| 416 | } |
| 417 | |
| 418 | count -= left; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 419 | dbg("%s: wrote (did %d)", __FUNCTION__, count); |
| 420 | return count; |
| 421 | } |
| 422 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 423 | static void option_indat_callback(struct urb *urb) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 424 | { |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 425 | int err; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 426 | int endpoint; |
| 427 | struct usb_serial_port *port; |
| 428 | struct tty_struct *tty; |
| 429 | unsigned char *data = urb->transfer_buffer; |
Greg Kroah-Hartman | d6977b5 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 430 | int status = urb->status; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 431 | |
| 432 | dbg("%s: %p", __FUNCTION__, urb); |
| 433 | |
| 434 | endpoint = usb_pipeendpoint(urb->pipe); |
| 435 | port = (struct usb_serial_port *) urb->context; |
| 436 | |
Greg Kroah-Hartman | d6977b5 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 437 | if (status) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 438 | dbg("%s: nonzero status: %d on endpoint %02x.", |
Greg Kroah-Hartman | d6977b5 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 439 | __FUNCTION__, status, endpoint); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 440 | } else { |
| 441 | tty = port->tty; |
| 442 | if (urb->actual_length) { |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 443 | tty_buffer_request_room(tty, urb->actual_length); |
| 444 | tty_insert_flip_string(tty, data, urb->actual_length); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 445 | tty_flip_buffer_push(tty); |
| 446 | } else { |
| 447 | dbg("%s: empty read urb received", __FUNCTION__); |
| 448 | } |
| 449 | |
| 450 | /* Resubmit urb so we continue receiving */ |
Greg Kroah-Hartman | d6977b5 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 451 | if (port->open_count && status != -ESHUTDOWN) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 452 | err = usb_submit_urb(urb, GFP_ATOMIC); |
| 453 | if (err) |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 454 | printk(KERN_ERR "%s: resubmit read urb failed. " |
| 455 | "(%d)", __FUNCTION__, err); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 456 | } |
| 457 | } |
| 458 | return; |
| 459 | } |
| 460 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 461 | static void option_outdat_callback(struct urb *urb) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 462 | { |
| 463 | struct usb_serial_port *port; |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 464 | struct option_port_private *portdata; |
| 465 | int i; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 466 | |
| 467 | dbg("%s", __FUNCTION__); |
| 468 | |
| 469 | port = (struct usb_serial_port *) urb->context; |
| 470 | |
Pete Zaitcev | cf2c748 | 2006-05-22 21:58:49 -0700 | [diff] [blame] | 471 | usb_serial_port_softint(port); |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 472 | |
| 473 | portdata = usb_get_serial_port_data(port); |
| 474 | for (i = 0; i < N_OUT_URB; ++i) { |
| 475 | if (portdata->out_urbs[i] == urb) { |
| 476 | smp_mb__before_clear_bit(); |
| 477 | clear_bit(i, &portdata->out_busy); |
| 478 | break; |
| 479 | } |
| 480 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 481 | } |
| 482 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 483 | static void option_instat_callback(struct urb *urb) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 484 | { |
| 485 | int err; |
Greg Kroah-Hartman | d6977b5 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 486 | int status = urb->status; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 487 | struct usb_serial_port *port = (struct usb_serial_port *) urb->context; |
| 488 | struct option_port_private *portdata = usb_get_serial_port_data(port); |
| 489 | struct usb_serial *serial = port->serial; |
| 490 | |
| 491 | dbg("%s", __FUNCTION__); |
| 492 | dbg("%s: urb %p port %p has data %p", __FUNCTION__,urb,port,portdata); |
| 493 | |
Greg Kroah-Hartman | d6977b5 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 494 | if (status == 0) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 495 | struct usb_ctrlrequest *req_pkt = |
| 496 | (struct usb_ctrlrequest *)urb->transfer_buffer; |
| 497 | |
| 498 | if (!req_pkt) { |
| 499 | dbg("%s: NULL req_pkt\n", __FUNCTION__); |
| 500 | return; |
| 501 | } |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 502 | if ((req_pkt->bRequestType == 0xA1) && |
| 503 | (req_pkt->bRequest == 0x20)) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 504 | int old_dcd_state; |
| 505 | unsigned char signals = *((unsigned char *) |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 506 | urb->transfer_buffer + |
| 507 | sizeof(struct usb_ctrlrequest)); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 508 | |
| 509 | dbg("%s: signal x%x", __FUNCTION__, signals); |
| 510 | |
| 511 | old_dcd_state = portdata->dcd_state; |
| 512 | portdata->cts_state = 1; |
| 513 | portdata->dcd_state = ((signals & 0x01) ? 1 : 0); |
| 514 | portdata->dsr_state = ((signals & 0x02) ? 1 : 0); |
| 515 | portdata->ri_state = ((signals & 0x08) ? 1 : 0); |
| 516 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 517 | if (port->tty && !C_CLOCAL(port->tty) && |
| 518 | old_dcd_state && !portdata->dcd_state) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 519 | tty_hangup(port->tty); |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 520 | } else { |
| 521 | dbg("%s: type %x req %x", __FUNCTION__, |
| 522 | req_pkt->bRequestType,req_pkt->bRequest); |
| 523 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 524 | } else |
Greg Kroah-Hartman | d6977b5 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 525 | dbg("%s: error %d", __FUNCTION__, status); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 526 | |
| 527 | /* Resubmit urb so we continue receiving IRQ data */ |
Greg Kroah-Hartman | d6977b5 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 528 | if (status != -ESHUTDOWN) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 529 | urb->dev = serial->dev; |
| 530 | err = usb_submit_urb(urb, GFP_ATOMIC); |
| 531 | if (err) |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 532 | dbg("%s: resubmit intr urb failed. (%d)", |
| 533 | __FUNCTION__, err); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 534 | } |
| 535 | } |
| 536 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 537 | static int option_write_room(struct usb_serial_port *port) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 538 | { |
| 539 | struct option_port_private *portdata; |
| 540 | int i; |
| 541 | int data_len = 0; |
| 542 | struct urb *this_urb; |
| 543 | |
| 544 | portdata = usb_get_serial_port_data(port); |
| 545 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 546 | for (i=0; i < N_OUT_URB; i++) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 547 | this_urb = portdata->out_urbs[i]; |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 548 | if (this_urb && !test_bit(i, &portdata->out_busy)) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 549 | data_len += OUT_BUFLEN; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 550 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 551 | |
| 552 | dbg("%s: %d", __FUNCTION__, data_len); |
| 553 | return data_len; |
| 554 | } |
| 555 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 556 | static int option_chars_in_buffer(struct usb_serial_port *port) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 557 | { |
| 558 | struct option_port_private *portdata; |
| 559 | int i; |
| 560 | int data_len = 0; |
| 561 | struct urb *this_urb; |
| 562 | |
| 563 | portdata = usb_get_serial_port_data(port); |
| 564 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 565 | for (i=0; i < N_OUT_URB; i++) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 566 | this_urb = portdata->out_urbs[i]; |
Alan Stern | 59c2afa | 2007-06-05 16:46:26 -0700 | [diff] [blame] | 567 | if (this_urb && test_bit(i, &portdata->out_busy)) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 568 | data_len += this_urb->transfer_buffer_length; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 569 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 570 | dbg("%s: %d", __FUNCTION__, data_len); |
| 571 | return data_len; |
| 572 | } |
| 573 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 574 | static int option_open(struct usb_serial_port *port, struct file *filp) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 575 | { |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 576 | struct option_port_private *portdata; |
| 577 | struct usb_serial *serial = port->serial; |
| 578 | int i, err; |
| 579 | struct urb *urb; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 580 | |
| 581 | portdata = usb_get_serial_port_data(port); |
| 582 | |
| 583 | dbg("%s", __FUNCTION__); |
| 584 | |
| 585 | /* Set some sane defaults */ |
| 586 | portdata->rts_state = 1; |
| 587 | portdata->dtr_state = 1; |
| 588 | |
| 589 | /* Reset low level data toggle and start reading from endpoints */ |
| 590 | for (i = 0; i < N_IN_URB; i++) { |
| 591 | urb = portdata->in_urbs[i]; |
| 592 | if (! urb) |
| 593 | continue; |
| 594 | if (urb->dev != serial->dev) { |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 595 | dbg("%s: dev %p != %p", __FUNCTION__, |
| 596 | urb->dev, serial->dev); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 597 | continue; |
| 598 | } |
| 599 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 600 | /* |
| 601 | * make sure endpoint data toggle is synchronized with the |
| 602 | * device |
| 603 | */ |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 604 | usb_clear_halt(urb->dev, urb->pipe); |
| 605 | |
| 606 | err = usb_submit_urb(urb, GFP_KERNEL); |
| 607 | if (err) { |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 608 | dbg("%s: submit urb %d failed (%d) %d", |
| 609 | __FUNCTION__, i, err, |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 610 | urb->transfer_buffer_length); |
| 611 | } |
| 612 | } |
| 613 | |
| 614 | /* Reset low level data toggle on out endpoints */ |
| 615 | for (i = 0; i < N_OUT_URB; i++) { |
| 616 | urb = portdata->out_urbs[i]; |
| 617 | if (! urb) |
| 618 | continue; |
| 619 | urb->dev = serial->dev; |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 620 | /* usb_settoggle(urb->dev, usb_pipeendpoint(urb->pipe), |
| 621 | usb_pipeout(urb->pipe), 0); */ |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 622 | } |
| 623 | |
| 624 | port->tty->low_latency = 1; |
| 625 | |
| 626 | option_send_setup(port); |
| 627 | |
| 628 | return (0); |
| 629 | } |
| 630 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 631 | static void option_close(struct usb_serial_port *port, struct file *filp) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 632 | { |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 633 | int i; |
| 634 | struct usb_serial *serial = port->serial; |
| 635 | struct option_port_private *portdata; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 636 | |
| 637 | dbg("%s", __FUNCTION__); |
| 638 | portdata = usb_get_serial_port_data(port); |
| 639 | |
| 640 | portdata->rts_state = 0; |
| 641 | portdata->dtr_state = 0; |
| 642 | |
| 643 | if (serial->dev) { |
Oliver Neukum | e33fe4d | 2008-01-21 17:44:10 +0100 | [diff] [blame^] | 644 | mutex_lock(&serial->disc_mutex); |
| 645 | if (!serial->disconnected) |
| 646 | option_send_setup(port); |
| 647 | mutex_unlock(&serial->disc_mutex); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 648 | |
| 649 | /* Stop reading/writing urbs */ |
| 650 | for (i = 0; i < N_IN_URB; i++) |
Oliver Neukum | 7d28e74 | 2007-03-20 13:41:21 +0100 | [diff] [blame] | 651 | usb_kill_urb(portdata->in_urbs[i]); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 652 | for (i = 0; i < N_OUT_URB; i++) |
Oliver Neukum | 7d28e74 | 2007-03-20 13:41:21 +0100 | [diff] [blame] | 653 | usb_kill_urb(portdata->out_urbs[i]); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 654 | } |
| 655 | port->tty = NULL; |
| 656 | } |
| 657 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 658 | /* Helper functions used by option_setup_urbs */ |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 659 | static struct urb *option_setup_urb(struct usb_serial *serial, int endpoint, |
| 660 | int dir, void *ctx, char *buf, int len, |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 661 | void (*callback)(struct urb *)) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 662 | { |
| 663 | struct urb *urb; |
| 664 | |
| 665 | if (endpoint == -1) |
| 666 | return NULL; /* endpoint not needed */ |
| 667 | |
| 668 | urb = usb_alloc_urb(0, GFP_KERNEL); /* No ISO */ |
| 669 | if (urb == NULL) { |
| 670 | dbg("%s: alloc for endpoint %d failed.", __FUNCTION__, endpoint); |
| 671 | return NULL; |
| 672 | } |
| 673 | |
| 674 | /* Fill URB using supplied data. */ |
| 675 | usb_fill_bulk_urb(urb, serial->dev, |
| 676 | usb_sndbulkpipe(serial->dev, endpoint) | dir, |
| 677 | buf, len, callback, ctx); |
| 678 | |
| 679 | return urb; |
| 680 | } |
| 681 | |
| 682 | /* Setup urbs */ |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 683 | static void option_setup_urbs(struct usb_serial *serial) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 684 | { |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 685 | int i,j; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 686 | struct usb_serial_port *port; |
| 687 | struct option_port_private *portdata; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 688 | |
| 689 | dbg("%s", __FUNCTION__); |
| 690 | |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 691 | for (i = 0; i < serial->num_ports; i++) { |
| 692 | port = serial->port[i]; |
| 693 | portdata = usb_get_serial_port_data(port); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 694 | |
| 695 | /* Do indat endpoints first */ |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 696 | for (j = 0; j < N_IN_URB; ++j) { |
| 697 | portdata->in_urbs[j] = option_setup_urb (serial, |
| 698 | port->bulk_in_endpointAddress, USB_DIR_IN, port, |
| 699 | portdata->in_buffer[j], IN_BUFLEN, option_indat_callback); |
| 700 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 701 | |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 702 | /* outdat endpoints */ |
| 703 | for (j = 0; j < N_OUT_URB; ++j) { |
| 704 | portdata->out_urbs[j] = option_setup_urb (serial, |
| 705 | port->bulk_out_endpointAddress, USB_DIR_OUT, port, |
| 706 | portdata->out_buffer[j], OUT_BUFLEN, option_outdat_callback); |
| 707 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 708 | } |
| 709 | } |
| 710 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 711 | static int option_send_setup(struct usb_serial_port *port) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 712 | { |
| 713 | struct usb_serial *serial = port->serial; |
| 714 | struct option_port_private *portdata; |
| 715 | |
| 716 | dbg("%s", __FUNCTION__); |
| 717 | |
Miguel Angel Alvarez | 8c15271 | 2006-12-14 19:49:35 +0100 | [diff] [blame] | 718 | if (port->number != 0) |
| 719 | return 0; |
| 720 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 721 | portdata = usb_get_serial_port_data(port); |
| 722 | |
| 723 | if (port->tty) { |
| 724 | int val = 0; |
| 725 | if (portdata->dtr_state) |
| 726 | val |= 0x01; |
| 727 | if (portdata->rts_state) |
| 728 | val |= 0x02; |
| 729 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 730 | return usb_control_msg(serial->dev, |
| 731 | usb_rcvctrlpipe(serial->dev, 0), |
| 732 | 0x22,0x21,val,0,NULL,0,USB_CTRL_SET_TIMEOUT); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 733 | } |
| 734 | |
| 735 | return 0; |
| 736 | } |
| 737 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 738 | static int option_startup(struct usb_serial *serial) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 739 | { |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 740 | int i, err; |
| 741 | struct usb_serial_port *port; |
| 742 | struct option_port_private *portdata; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 743 | |
| 744 | dbg("%s", __FUNCTION__); |
| 745 | |
| 746 | /* Now setup per port private data */ |
| 747 | for (i = 0; i < serial->num_ports; i++) { |
| 748 | port = serial->port[i]; |
Eric Sesterhenn | 80b6ca4 | 2006-02-27 21:29:43 +0100 | [diff] [blame] | 749 | portdata = kzalloc(sizeof(*portdata), GFP_KERNEL); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 750 | if (!portdata) { |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 751 | dbg("%s: kmalloc for option_port_private (%d) failed!.", |
| 752 | __FUNCTION__, i); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 753 | return (1); |
| 754 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 755 | |
| 756 | usb_set_serial_port_data(port, portdata); |
| 757 | |
| 758 | if (! port->interrupt_in_urb) |
| 759 | continue; |
| 760 | err = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL); |
| 761 | if (err) |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 762 | dbg("%s: submit irq_in urb failed %d", |
| 763 | __FUNCTION__, err); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 764 | } |
| 765 | |
| 766 | option_setup_urbs(serial); |
| 767 | |
| 768 | return (0); |
| 769 | } |
| 770 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 771 | static void option_shutdown(struct usb_serial *serial) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 772 | { |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 773 | int i, j; |
| 774 | struct usb_serial_port *port; |
| 775 | struct option_port_private *portdata; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 776 | |
| 777 | dbg("%s", __FUNCTION__); |
| 778 | |
| 779 | /* Stop reading/writing urbs */ |
| 780 | for (i = 0; i < serial->num_ports; ++i) { |
| 781 | port = serial->port[i]; |
| 782 | portdata = usb_get_serial_port_data(port); |
| 783 | for (j = 0; j < N_IN_URB; j++) |
Oliver Neukum | 7d28e74 | 2007-03-20 13:41:21 +0100 | [diff] [blame] | 784 | usb_kill_urb(portdata->in_urbs[j]); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 785 | for (j = 0; j < N_OUT_URB; j++) |
Oliver Neukum | 7d28e74 | 2007-03-20 13:41:21 +0100 | [diff] [blame] | 786 | usb_kill_urb(portdata->out_urbs[j]); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 787 | } |
| 788 | |
| 789 | /* Now free them */ |
| 790 | for (i = 0; i < serial->num_ports; ++i) { |
| 791 | port = serial->port[i]; |
| 792 | portdata = usb_get_serial_port_data(port); |
| 793 | |
| 794 | for (j = 0; j < N_IN_URB; j++) { |
| 795 | if (portdata->in_urbs[j]) { |
| 796 | usb_free_urb(portdata->in_urbs[j]); |
| 797 | portdata->in_urbs[j] = NULL; |
| 798 | } |
| 799 | } |
| 800 | for (j = 0; j < N_OUT_URB; j++) { |
| 801 | if (portdata->out_urbs[j]) { |
| 802 | usb_free_urb(portdata->out_urbs[j]); |
| 803 | portdata->out_urbs[j] = NULL; |
| 804 | } |
| 805 | } |
| 806 | } |
| 807 | |
| 808 | /* Now free per port private data */ |
| 809 | for (i = 0; i < serial->num_ports; i++) { |
| 810 | port = serial->port[i]; |
| 811 | kfree(usb_get_serial_port_data(port)); |
| 812 | } |
| 813 | } |
| 814 | |
| 815 | MODULE_AUTHOR(DRIVER_AUTHOR); |
| 816 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 817 | MODULE_VERSION(DRIVER_VERSION); |
| 818 | MODULE_LICENSE("GPL"); |
| 819 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 820 | #ifdef CONFIG_USB_DEBUG |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 821 | module_param(debug, bool, S_IRUGO | S_IWUSR); |
| 822 | MODULE_PARM_DESC(debug, "Debug messages"); |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 823 | #endif |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 824 | |