option.c 33.0 KB
Newer Older
1
/*
2
  USB Driver for GSM modems
3 4 5 6 7 8 9 10 11

  Copyright (C) 2005  Matthias Urlichs <smurf@smurf.noris.de>

  This driver is free software; you can redistribute it and/or modify
  it under the terms of Version 2 of the GNU General Public License as
  published by the Free Software Foundation.

  Portions copied from the Keyspan driver by Hugh Blemings <hugh@blemings.org>

12
  History: see the git log.
13 14 15

  Work sponsored by: Sigos GmbH, Germany <info@sigos.de>

16 17 18
  This driver exists because the "normal" serial driver doesn't work too well
  with GSM modems. Issues:
  - data loss -- one single Receive URB is not nearly enough
19
  - nonstandard flow (Option devices) control
20 21 22 23 24 25 26 27 28
  - controlling the baud rate doesn't make sense

  This driver is named "option" because the most common device it's
  used for is a PC-Card (with an internal OHCI-USB interface, behind
  which the GSM interface sits), made by Option Inc.

  Some of the "one port" devices actually exhibit multiple USB instances
  on the USB bus. This is not a bug, these ports are used for different
  device features.
29
*/
30

31
#define DRIVER_VERSION "v0.7.2"
32
#define DRIVER_AUTHOR "Matthias Urlichs <smurf@smurf.noris.de>"
33
#define DRIVER_DESC "USB Driver for GSM modems"
34 35 36 37 38 39 40

#include <linux/kernel.h>
#include <linux/jiffies.h>
#include <linux/errno.h>
#include <linux/tty.h>
#include <linux/tty_flip.h>
#include <linux/module.h>
41
#include <linux/bitops.h>
42
#include <linux/usb.h>
43
#include <linux/usb/serial.h>
44 45

/* Function prototypes */
A
Alan Cox 已提交
46 47 48 49
static int  option_open(struct tty_struct *tty, struct usb_serial_port *port,
							struct file *filp);
static void option_close(struct tty_struct *tty, struct usb_serial_port *port,
							struct file *filp);
50 51
static int  option_startup(struct usb_serial *serial);
static void option_shutdown(struct usb_serial *serial);
A
Alan Cox 已提交
52
static int  option_write_room(struct tty_struct *tty);
53

54
static void option_instat_callback(struct urb *urb);
55

A
Alan Cox 已提交
56
static int option_write(struct tty_struct *tty, struct usb_serial_port *port,
57
			const unsigned char *buf, int count);
A
Alan Cox 已提交
58 59 60 61 62
static int  option_chars_in_buffer(struct tty_struct *tty);
static void option_set_termios(struct tty_struct *tty,
			struct usb_serial_port *port, struct ktermios *old);
static int  option_tiocmget(struct tty_struct *tty, struct file *file);
static int  option_tiocmset(struct tty_struct *tty, struct file *file,
63
				unsigned int set, unsigned int clear);
A
Alan Cox 已提交
64
static int  option_send_setup(struct tty_struct *tty, struct usb_serial_port *port);
65 66

/* Vendor and product IDs */
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
#define OPTION_VENDOR_ID			0x0AF0
#define OPTION_PRODUCT_COLT			0x5000
#define OPTION_PRODUCT_RICOLA			0x6000
#define OPTION_PRODUCT_RICOLA_LIGHT		0x6100
#define OPTION_PRODUCT_RICOLA_QUAD		0x6200
#define OPTION_PRODUCT_RICOLA_QUAD_LIGHT	0x6300
#define OPTION_PRODUCT_RICOLA_NDIS		0x6050
#define OPTION_PRODUCT_RICOLA_NDIS_LIGHT	0x6150
#define OPTION_PRODUCT_RICOLA_NDIS_QUAD		0x6250
#define OPTION_PRODUCT_RICOLA_NDIS_QUAD_LIGHT	0x6350
#define OPTION_PRODUCT_COBRA			0x6500
#define OPTION_PRODUCT_COBRA_BUS		0x6501
#define OPTION_PRODUCT_VIPER			0x6600
#define OPTION_PRODUCT_VIPER_BUS		0x6601
#define OPTION_PRODUCT_GT_MAX_READY		0x6701
#define OPTION_PRODUCT_GT_MAX			0x6711
#define OPTION_PRODUCT_FUJI_MODEM_LIGHT		0x6721
#define OPTION_PRODUCT_FUJI_MODEM_GT		0x6741
#define OPTION_PRODUCT_FUJI_MODEM_EX		0x6761
#define OPTION_PRODUCT_FUJI_NETWORK_LIGHT	0x6731
#define OPTION_PRODUCT_FUJI_NETWORK_GT		0x6751
#define OPTION_PRODUCT_FUJI_NETWORK_EX		0x6771
#define OPTION_PRODUCT_KOI_MODEM		0x6800
#define OPTION_PRODUCT_KOI_NETWORK		0x6811
#define OPTION_PRODUCT_SCORPION_MODEM		0x6901
#define OPTION_PRODUCT_SCORPION_NETWORK		0x6911
#define OPTION_PRODUCT_ETNA_MODEM		0x7001
#define OPTION_PRODUCT_ETNA_NETWORK		0x7011
#define OPTION_PRODUCT_ETNA_MODEM_LITE		0x7021
#define OPTION_PRODUCT_ETNA_MODEM_GT		0x7041
#define OPTION_PRODUCT_ETNA_MODEM_EX		0x7061
#define OPTION_PRODUCT_ETNA_NETWORK_LITE	0x7031
#define OPTION_PRODUCT_ETNA_NETWORK_GT		0x7051
#define OPTION_PRODUCT_ETNA_NETWORK_EX		0x7071
#define OPTION_PRODUCT_ETNA_KOI_MODEM		0x7100
#define OPTION_PRODUCT_ETNA_KOI_NETWORK		0x7111

#define HUAWEI_VENDOR_ID			0x12D1
#define HUAWEI_PRODUCT_E600			0x1001
#define HUAWEI_PRODUCT_E220			0x1003
107
#define HUAWEI_PRODUCT_E220BIS			0x1004
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
#define HUAWEI_PRODUCT_E1401			0x1401
#define HUAWEI_PRODUCT_E1403			0x1403
#define HUAWEI_PRODUCT_E1405			0x1405
#define HUAWEI_PRODUCT_E1406			0x1406
#define HUAWEI_PRODUCT_E1408			0x1408
#define HUAWEI_PRODUCT_E1409			0x1409
#define HUAWEI_PRODUCT_E1410			0x1410
#define HUAWEI_PRODUCT_E1411			0x1411
#define HUAWEI_PRODUCT_E1412			0x1412
#define HUAWEI_PRODUCT_E1413			0x1413
#define HUAWEI_PRODUCT_E1414			0x1414
#define HUAWEI_PRODUCT_E1415			0x1415
#define HUAWEI_PRODUCT_E1416			0x1416
#define HUAWEI_PRODUCT_E1417			0x1417
#define HUAWEI_PRODUCT_E1418			0x1418
#define HUAWEI_PRODUCT_E1419			0x1419
124 125

#define NOVATELWIRELESS_VENDOR_ID		0x1410
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143

/* MERLIN EVDO PRODUCTS */
#define NOVATELWIRELESS_PRODUCT_V640		0x1100
#define NOVATELWIRELESS_PRODUCT_V620		0x1110
#define NOVATELWIRELESS_PRODUCT_V740		0x1120
#define NOVATELWIRELESS_PRODUCT_V720		0x1130

/* MERLIN HSDPA/HSPA PRODUCTS */
#define NOVATELWIRELESS_PRODUCT_U730		0x1400
#define NOVATELWIRELESS_PRODUCT_U740		0x1410
#define NOVATELWIRELESS_PRODUCT_U870		0x1420
#define NOVATELWIRELESS_PRODUCT_XU870		0x1430
#define NOVATELWIRELESS_PRODUCT_X950D		0x1450

/* EXPEDITE PRODUCTS */
#define NOVATELWIRELESS_PRODUCT_EV620		0x2100
#define NOVATELWIRELESS_PRODUCT_ES720		0x2110
#define NOVATELWIRELESS_PRODUCT_E725		0x2120
144
#define NOVATELWIRELESS_PRODUCT_ES620		0x2130
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
#define NOVATELWIRELESS_PRODUCT_EU730		0x2400
#define NOVATELWIRELESS_PRODUCT_EU740		0x2410
#define NOVATELWIRELESS_PRODUCT_EU870D		0x2420

/* OVATION PRODUCTS */
#define NOVATELWIRELESS_PRODUCT_MC727		0x4100
#define NOVATELWIRELESS_PRODUCT_MC950D		0x4400

/* FUTURE NOVATEL PRODUCTS */
#define NOVATELWIRELESS_PRODUCT_EVDO_1		0x6000
#define NOVATELWIRELESS_PRODUCT_HSPA_1		0x7000
#define NOVATELWIRELESS_PRODUCT_EMBEDDED_1	0x8000
#define NOVATELWIRELESS_PRODUCT_GLOBAL_1	0x9000
#define NOVATELWIRELESS_PRODUCT_EVDO_2		0x6001
#define NOVATELWIRELESS_PRODUCT_HSPA_2		0x7001
#define NOVATELWIRELESS_PRODUCT_EMBEDDED_2	0x8001
#define NOVATELWIRELESS_PRODUCT_GLOBAL_2	0x9001

163 164 165 166 167 168
/* AMOI PRODUCTS */
#define AMOI_VENDOR_ID				0x1614
#define AMOI_PRODUCT_H01			0x0800
#define AMOI_PRODUCT_H01A			0x7002
#define AMOI_PRODUCT_H02			0x0802

169
#define DELL_VENDOR_ID				0x413C
170

171
#define KYOCERA_VENDOR_ID			0x0c88
G
Greg Kroah-Hartman 已提交
172
#define KYOCERA_PRODUCT_KPC650			0x17da
173 174
#define KYOCERA_PRODUCT_KPC680			0x180a

175
#define ANYDATA_VENDOR_ID			0x16d5
176 177
#define ANYDATA_PRODUCT_ADU_E100A		0x6501
#define ANYDATA_PRODUCT_ADU_500A		0x6502
178

179 180 181
#define AXESSTEL_VENDOR_ID			0x1726
#define AXESSTEL_PRODUCT_MV110H			0x1000

182
#define ONDA_VENDOR_ID				0x19d2
183
#define ONDA_PRODUCT_MSA501HS			0x0001
184 185
#define ONDA_PRODUCT_ET502HS			0x0002

186 187 188
#define BANDRICH_VENDOR_ID			0x1A8D
#define BANDRICH_PRODUCT_C100_1			0x1002
#define BANDRICH_PRODUCT_C100_2			0x1003
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
#define BANDRICH_PRODUCT_1004			0x1004
#define BANDRICH_PRODUCT_1005			0x1005
#define BANDRICH_PRODUCT_1006			0x1006
#define BANDRICH_PRODUCT_1007			0x1007
#define BANDRICH_PRODUCT_1008			0x1008
#define BANDRICH_PRODUCT_1009			0x1009
#define BANDRICH_PRODUCT_100A			0x100a

#define BANDRICH_PRODUCT_100B			0x100b
#define BANDRICH_PRODUCT_100C			0x100c
#define BANDRICH_PRODUCT_100D			0x100d
#define BANDRICH_PRODUCT_100E			0x100e

#define BANDRICH_PRODUCT_100F			0x100f
#define BANDRICH_PRODUCT_1010			0x1010
#define BANDRICH_PRODUCT_1011			0x1011
#define BANDRICH_PRODUCT_1012			0x1012
206

207 208 209
#define AMOI_VENDOR_ID			0x1614
#define AMOI_PRODUCT_9508			0x0800

210 211
#define QUALCOMM_VENDOR_ID			0x05C6

212 213
#define MAXON_VENDOR_ID				0x16d8

214 215 216
#define TELIT_VENDOR_ID				0x1bc7
#define TELIT_PRODUCT_UC864E			0x1003

217 218 219 220
/* ZTE PRODUCTS */
#define ZTE_VENDOR_ID				0x19d2
#define ZTE_PRODUCT_MF628			0x0015

221
static struct usb_device_id option_ids[] = {
222 223 224 225 226 227 228 229 230
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COLT) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_LIGHT) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_QUAD) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_QUAD_LIGHT) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_LIGHT) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_QUAD) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA_NDIS_QUAD_LIGHT) },
231
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA) },
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA_BUS) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_VIPER) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_VIPER_BUS) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GT_MAX_READY) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GT_MAX) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_LIGHT) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_GT) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_MODEM_EX) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_NETWORK_LIGHT) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_NETWORK_GT) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUJI_NETWORK_EX) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_KOI_MODEM) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_KOI_NETWORK) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_SCORPION_MODEM) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_SCORPION_NETWORK) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_NETWORK) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_LITE) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_GT) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM_EX) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_NETWORK_LITE) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_NETWORK_GT) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_NETWORK_EX) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_KOI_MODEM) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_KOI_NETWORK) },
257
	{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E600, 0xff, 0xff, 0xff) },
258 259
	{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220, 0xff, 0xff, 0xff) },
	{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220BIS, 0xff, 0xff, 0xff) },
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
	{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1401, 0xff, 0xff, 0xff) },
	{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1403, 0xff, 0xff, 0xff) },
	{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1405, 0xff, 0xff, 0xff) },
	{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1406, 0xff, 0xff, 0xff) },
	{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1408, 0xff, 0xff, 0xff) },
	{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1409, 0xff, 0xff, 0xff) },
	{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1410, 0xff, 0xff, 0xff) },
	{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1411, 0xff, 0xff, 0xff) },
	{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1412, 0xff, 0xff, 0xff) },
	{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1413, 0xff, 0xff, 0xff) },
	{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1414, 0xff, 0xff, 0xff) },
	{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1415, 0xff, 0xff, 0xff) },
	{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1416, 0xff, 0xff, 0xff) },
	{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1417, 0xff, 0xff, 0xff) },
	{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1418, 0xff, 0xff, 0xff) },
	{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1419, 0xff, 0xff, 0xff) },
276
	{ USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_9508) },
277 278 279 280 281 282 283 284 285 286 287 288
	{ USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V640) }, /* Novatel Merlin V640/XV620 */
	{ USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V620) }, /* Novatel Merlin V620/S620 */
	{ USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V740) }, /* Novatel Merlin EX720/V740/X720 */
	{ USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_V720) }, /* Novatel Merlin V720/S720/PC720 */
	{ USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_U730) }, /* Novatel U730/U740 (VF version) */
	{ USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_U740) }, /* Novatel U740 */
	{ USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_U870) }, /* Novatel U870 */
	{ USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_XU870) }, /* Novatel Merlin XU870 HSDPA/3G */
	{ USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_X950D) }, /* Novatel X950D */
	{ USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EV620) }, /* Novatel EV620/ES620 CDMA/EV-DO */
	{ USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_ES720) }, /* Novatel ES620/ES720/U720/USB720 */
	{ USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_E725) }, /* Novatel E725/E726 */
289
	{ USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_ES620) }, /* Novatel Merlin ES620 SM Bus */
290 291 292 293 294 295 296 297 298 299 300 301 302 303
	{ USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EU730) }, /* Novatel EU730 and Vodafone EU740 */
	{ USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EU740) }, /* Novatel non-Vodafone EU740 */
	{ USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EU870D) }, /* Novatel EU850D/EU860D/EU870D */
	{ USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_MC950D) }, /* Novatel MC930D/MC950D */
	{ USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_MC727) }, /* Novatel MC727/U727/USB727 */
	{ USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EVDO_1) }, /* Novatel EVDO product */
	{ USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_HSPA_1) }, /* Novatel HSPA product */
	{ USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EMBEDDED_1) }, /* Novatel Embedded product */
	{ USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_GLOBAL_1) }, /* Novatel Global product */
	{ USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EVDO_2) }, /* Novatel EVDO product */
	{ USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_HSPA_2) }, /* Novatel HSPA product */
	{ USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EMBEDDED_2) }, /* Novatel Embedded product */
	{ USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_GLOBAL_2) }, /* Novatel Global product */

304 305 306 307
	{ USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_H01) },
	{ USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_H01A) },
	{ USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_H02) },

308 309 310 311 312 313
	{ USB_DEVICE(DELL_VENDOR_ID, 0x8114) },	/* Dell Wireless 5700 Mobile Broadband CDMA/EVDO Mini-Card == Novatel Expedite EV620 CDMA/EV-DO */
	{ USB_DEVICE(DELL_VENDOR_ID, 0x8115) },	/* Dell Wireless 5500 Mobile Broadband HSDPA Mini-Card == Novatel Expedite EU740 HSDPA/3G */
	{ USB_DEVICE(DELL_VENDOR_ID, 0x8116) },	/* Dell Wireless 5505 Mobile Broadband HSDPA Mini-Card == Novatel Expedite EU740 HSDPA/3G */
	{ USB_DEVICE(DELL_VENDOR_ID, 0x8117) },	/* Dell Wireless 5700 Mobile Broadband CDMA/EVDO ExpressCard == Novatel Merlin XV620 CDMA/EV-DO */
	{ USB_DEVICE(DELL_VENDOR_ID, 0x8118) },	/* Dell Wireless 5510 Mobile Broadband HSDPA ExpressCard == Novatel Merlin XU870 HSDPA/3G */
	{ USB_DEVICE(DELL_VENDOR_ID, 0x8128) },	/* Dell Wireless 5700 Mobile Broadband CDMA/EVDO Mini-Card == Novatel Expedite E720 CDMA/EV-DO */
314
	{ USB_DEVICE(DELL_VENDOR_ID, 0x8129) },	/* Dell Wireless 5700 Mobile Broadband CDMA/EVDO Mini-Card == Novatel Expedite ET620 CDMA/EV-DO */
315 316
	{ USB_DEVICE(DELL_VENDOR_ID, 0x8133) }, /* Dell Wireless 5720 == Novatel EV620 CDMA/EV-DO */
	{ USB_DEVICE(DELL_VENDOR_ID, 0x8136) },	/* Dell Wireless HSDPA 5520 == Novatel Expedite EU860D */
317
	{ USB_DEVICE(DELL_VENDOR_ID, 0x8137) },	/* Dell Wireless HSDPA 5520 */
318
	{ USB_DEVICE(DELL_VENDOR_ID, 0x8138) },	/* Dell Wireless 5520 Voda I Mobile Broadband (3G HSDPA) Minicard */
319 320
	{ USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_E100A) },
	{ USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_500A) },
321
	{ USB_DEVICE(AXESSTEL_VENDOR_ID, AXESSTEL_PRODUCT_MV110H) },
322
	{ USB_DEVICE(ONDA_VENDOR_ID, ONDA_PRODUCT_MSA501HS) },
323
	{ USB_DEVICE(ONDA_VENDOR_ID, ONDA_PRODUCT_ET502HS) },
324 325
	{ USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_C100_1) },
	{ USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_C100_2) },
326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
	{ USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1004) },
	{ USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1005) },
	{ USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1006) },
	{ USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1007) },
	{ USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1008) },
	{ USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1009) },
	{ USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100A) },
	{ USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100B) },
	{ USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100C) },
	{ USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100D) },
	{ USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100E) },
	{ USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_100F) },
	{ USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1010) },
	{ USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1011) },
	{ USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_1012) },
G
Greg Kroah-Hartman 已提交
341
	{ USB_DEVICE(KYOCERA_VENDOR_ID, KYOCERA_PRODUCT_KPC650) },
342
	{ USB_DEVICE(KYOCERA_VENDOR_ID, KYOCERA_PRODUCT_KPC680) },
343
	{ USB_DEVICE(QUALCOMM_VENDOR_ID, 0x6000)}, /* ZTE AC8700 */
344
	{ USB_DEVICE(QUALCOMM_VENDOR_ID, 0x6613)}, /* Onda H600/ZTE MF330 */
345
	{ USB_DEVICE(MAXON_VENDOR_ID, 0x6280) }, /* BP3-USB & BP3-EXT HSDPA */
346
	{ USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_UC864E) },
347
	{ USB_DEVICE(ZTE_VENDOR_ID, ZTE_PRODUCT_MF628) },
348 349
	{ } /* Terminating entry */
};
350 351 352 353 354 355 356
MODULE_DEVICE_TABLE(usb, option_ids);

static struct usb_driver option_driver = {
	.name       = "option",
	.probe      = usb_serial_probe,
	.disconnect = usb_serial_disconnect,
	.id_table   = option_ids,
357
	.no_dynamic_id = 	1,
358 359
};

U
Uwe Zeisberger 已提交
360
/* The card has three separate interfaces, which the serial driver
361 362
 * recognizes separately, thus num_port=1.
 */
363 364 365 366

static struct usb_serial_driver option_1port_device = {
	.driver = {
		.owner =	THIS_MODULE,
367
		.name =		"option1",
368 369
	},
	.description       = "GSM modem (1-port)",
370
	.usb_driver        = &option_driver,
371
	.id_table          = option_ids,
372
	.num_ports         = 1,
373 374 375 376 377 378 379 380 381 382 383
	.open              = option_open,
	.close             = option_close,
	.write             = option_write,
	.write_room        = option_write_room,
	.chars_in_buffer   = option_chars_in_buffer,
	.set_termios       = option_set_termios,
	.tiocmget          = option_tiocmget,
	.tiocmset          = option_tiocmset,
	.attach            = option_startup,
	.shutdown          = option_shutdown,
	.read_int_callback = option_instat_callback,
384 385 386
};

static int debug;
387

388 389
/* per port private data */

390 391
#define N_IN_URB 4
#define N_OUT_URB 1
392
#define IN_BUFLEN 4096
393
#define OUT_BUFLEN 128
394 395 396

struct option_port_private {
	/* Input endpoints and buffer for this port */
397
	struct urb *in_urbs[N_IN_URB];
398
	u8 *in_buffer[N_IN_URB];
399
	/* Output endpoints and buffer for this port */
400
	struct urb *out_urbs[N_OUT_URB];
401
	u8 *out_buffer[N_OUT_URB];
402
	unsigned long out_busy;		/* Bit vector of URBs in use */
403 404

	/* Settings for the port */
405 406 407 408 409 410 411 412
	int rts_state;	/* Handshaking pins (outputs) */
	int dtr_state;
	int cts_state;	/* Handshaking pins (inputs) */
	int dsr_state;
	int dcd_state;
	int ri_state;

	unsigned long tx_start_time[N_OUT_URB];
413 414 415
};

/* Functions used by new usb-serial code. */
416
static int __init option_init(void)
417 418
{
	int retval;
419 420 421
	retval = usb_serial_register(&option_1port_device);
	if (retval)
		goto failed_1port_device_register;
422 423 424 425 426 427 428 429 430
	retval = usb_register(&option_driver);
	if (retval)
		goto failed_driver_register;

	info(DRIVER_DESC ": " DRIVER_VERSION);

	return 0;

failed_driver_register:
A
Alan Cox 已提交
431
	usb_serial_deregister(&option_1port_device);
432
failed_1port_device_register:
433 434 435
	return retval;
}

436
static void __exit option_exit(void)
437
{
A
Alan Cox 已提交
438 439
	usb_deregister(&option_driver);
	usb_serial_deregister(&option_1port_device);
440 441 442 443 444
}

module_init(option_init);
module_exit(option_exit);

A
Alan Cox 已提交
445 446
static void option_set_termios(struct tty_struct *tty,
		struct usb_serial_port *port, struct ktermios *old_termios)
447
{
448
	dbg("%s", __func__);
A
Alan Cox 已提交
449
	/* Doesn't support option setting */
A
Alan Cox 已提交
450 451
	tty_termios_copy_hw(tty->termios, old_termios);
	option_send_setup(tty, port);
452 453
}

A
Alan Cox 已提交
454
static int option_tiocmget(struct tty_struct *tty, struct file *file)
455
{
A
Alan Cox 已提交
456
	struct usb_serial_port *port = tty->driver_data;
457 458
	unsigned int value;
	struct option_port_private *portdata;
459 460 461 462 463 464 465 466 467 468 469 470 471

	portdata = usb_get_serial_port_data(port);

	value = ((portdata->rts_state) ? TIOCM_RTS : 0) |
		((portdata->dtr_state) ? TIOCM_DTR : 0) |
		((portdata->cts_state) ? TIOCM_CTS : 0) |
		((portdata->dsr_state) ? TIOCM_DSR : 0) |
		((portdata->dcd_state) ? TIOCM_CAR : 0) |
		((portdata->ri_state) ? TIOCM_RNG : 0);

	return value;
}

A
Alan Cox 已提交
472
static int option_tiocmset(struct tty_struct *tty, struct file *file,
473
			unsigned int set, unsigned int clear)
474
{
A
Alan Cox 已提交
475
	struct usb_serial_port *port = tty->driver_data;
476
	struct option_port_private *portdata;
477 478 479

	portdata = usb_get_serial_port_data(port);

480
	/* FIXME: what locks portdata fields ? */
481 482 483 484 485 486 487 488 489
	if (set & TIOCM_RTS)
		portdata->rts_state = 1;
	if (set & TIOCM_DTR)
		portdata->dtr_state = 1;

	if (clear & TIOCM_RTS)
		portdata->rts_state = 0;
	if (clear & TIOCM_DTR)
		portdata->dtr_state = 0;
A
Alan Cox 已提交
490
	return option_send_setup(tty, port);
491 492 493
}

/* Write */
A
Alan Cox 已提交
494
static int option_write(struct tty_struct *tty, struct usb_serial_port *port,
495
			const unsigned char *buf, int count)
496
{
497 498 499 500 501
	struct option_port_private *portdata;
	int i;
	int left, todo;
	struct urb *this_urb = NULL; /* spurious */
	int err;
502 503 504

	portdata = usb_get_serial_port_data(port);

505
	dbg("%s: write (%d chars)", __func__, count);
506 507 508

	i = 0;
	left = count;
A
Alan Cox 已提交
509
	for (i = 0; left > 0 && i < N_OUT_URB; i++) {
510 511 512 513
		todo = left;
		if (todo > OUT_BUFLEN)
			todo = OUT_BUFLEN;

514
		this_urb = portdata->out_urbs[i];
515
		if (test_and_set_bit(i, &portdata->out_busy)) {
516 517
			if (time_before(jiffies,
					portdata->tx_start_time[i] + 10 * HZ))
518 519
				continue;
			usb_unlink_urb(this_urb);
520
			continue;
521
		}
522
		if (this_urb->status != 0)
523 524
			dbg("usb_write %p failed (err=%d)",
				this_urb, this_urb->status);
525

526
		dbg("%s: endpoint %d buf %d", __func__,
527
			usb_pipeendpoint(this_urb->pipe), i);
528

529
		/* send the data */
A
Alan Cox 已提交
530
		memcpy(this_urb->transfer_buffer, buf, todo);
531 532 533 534 535
		this_urb->transfer_buffer_length = todo;

		this_urb->dev = port->serial->dev;
		err = usb_submit_urb(this_urb, GFP_ATOMIC);
		if (err) {
536 537 538
			dbg("usb_submit_urb %p (write bulk) failed "
				"(%d, has %d)", this_urb,
				err, this_urb->status);
539
			clear_bit(i, &portdata->out_busy);
540 541 542 543 544 545 546 547
			continue;
		}
		portdata->tx_start_time[i] = jiffies;
		buf += todo;
		left -= todo;
	}

	count -= left;
548
	dbg("%s: wrote (did %d)", __func__, count);
549 550 551
	return count;
}

552
static void option_indat_callback(struct urb *urb)
553
{
A
Alan Cox 已提交
554
	int err;
555 556 557 558
	int endpoint;
	struct usb_serial_port *port;
	struct tty_struct *tty;
	unsigned char *data = urb->transfer_buffer;
559
	int status = urb->status;
560

561
	dbg("%s: %p", __func__, urb);
562 563

	endpoint = usb_pipeendpoint(urb->pipe);
564
	port =  urb->context;
565

566
	if (status) {
567
		dbg("%s: nonzero status: %d on endpoint %02x.",
568
		    __func__, status, endpoint);
569
	} else {
A
Alan Cox 已提交
570
		tty = port->port.tty;
571
		if (urb->actual_length) {
A
Alan Cox 已提交
572 573
			tty_buffer_request_room(tty, urb->actual_length);
			tty_insert_flip_string(tty, data, urb->actual_length);
574 575
			tty_flip_buffer_push(tty);
		} else {
576
			dbg("%s: empty read urb received", __func__);
577 578 579
		}

		/* Resubmit urb so we continue receiving */
A
Alan Cox 已提交
580
		if (port->port.count && status != -ESHUTDOWN) {
581 582
			err = usb_submit_urb(urb, GFP_ATOMIC);
			if (err)
583
				printk(KERN_ERR "%s: resubmit read urb failed. "
584
					"(%d)", __func__, err);
585 586 587 588 589
		}
	}
	return;
}

590
static void option_outdat_callback(struct urb *urb)
591 592
{
	struct usb_serial_port *port;
593 594
	struct option_port_private *portdata;
	int i;
595

596
	dbg("%s", __func__);
597

598
	port =  urb->context;
599

600
	usb_serial_port_softint(port);
601 602 603 604 605 606 607 608 609

	portdata = usb_get_serial_port_data(port);
	for (i = 0; i < N_OUT_URB; ++i) {
		if (portdata->out_urbs[i] == urb) {
			smp_mb__before_clear_bit();
			clear_bit(i, &portdata->out_busy);
			break;
		}
	}
610 611
}

612
static void option_instat_callback(struct urb *urb)
613 614
{
	int err;
615
	int status = urb->status;
616
	struct usb_serial_port *port =  urb->context;
617 618 619
	struct option_port_private *portdata = usb_get_serial_port_data(port);
	struct usb_serial *serial = port->serial;

620
	dbg("%s", __func__);
A
Alan Cox 已提交
621
	dbg("%s: urb %p port %p has data %p", __func__, urb, port, portdata);
622

623
	if (status == 0) {
624 625 626 627
		struct usb_ctrlrequest *req_pkt =
				(struct usb_ctrlrequest *)urb->transfer_buffer;

		if (!req_pkt) {
628
			dbg("%s: NULL req_pkt\n", __func__);
629 630
			return;
		}
631 632
		if ((req_pkt->bRequestType == 0xA1) &&
				(req_pkt->bRequest == 0x20)) {
633 634
			int old_dcd_state;
			unsigned char signals = *((unsigned char *)
635 636
					urb->transfer_buffer +
					sizeof(struct usb_ctrlrequest));
637

638
			dbg("%s: signal x%x", __func__, signals);
639 640 641 642 643 644 645

			old_dcd_state = portdata->dcd_state;
			portdata->cts_state = 1;
			portdata->dcd_state = ((signals & 0x01) ? 1 : 0);
			portdata->dsr_state = ((signals & 0x02) ? 1 : 0);
			portdata->ri_state = ((signals & 0x08) ? 1 : 0);

A
Alan Cox 已提交
646
			if (port->port.tty && !C_CLOCAL(port->port.tty) &&
647
					old_dcd_state && !portdata->dcd_state)
A
Alan Cox 已提交
648
				tty_hangup(port->port.tty);
649
		} else {
650
			dbg("%s: type %x req %x", __func__,
A
Alan Cox 已提交
651
				req_pkt->bRequestType, req_pkt->bRequest);
652
		}
653
	} else
654
		dbg("%s: error %d", __func__, status);
655 656

	/* Resubmit urb so we continue receiving IRQ data */
657
	if (status != -ESHUTDOWN) {
658 659 660
		urb->dev = serial->dev;
		err = usb_submit_urb(urb, GFP_ATOMIC);
		if (err)
661
			dbg("%s: resubmit intr urb failed. (%d)",
662
				__func__, err);
663 664 665
	}
}

A
Alan Cox 已提交
666
static int option_write_room(struct tty_struct *tty)
667
{
A
Alan Cox 已提交
668
	struct usb_serial_port *port = tty->driver_data;
669 670 671 672 673 674 675
	struct option_port_private *portdata;
	int i;
	int data_len = 0;
	struct urb *this_urb;

	portdata = usb_get_serial_port_data(port);

676

A
Alan Cox 已提交
677
	for (i = 0; i < N_OUT_URB; i++) {
678
		this_urb = portdata->out_urbs[i];
679
		if (this_urb && !test_bit(i, &portdata->out_busy))
680
			data_len += OUT_BUFLEN;
681
	}
682

683
	dbg("%s: %d", __func__, data_len);
684 685 686
	return data_len;
}

A
Alan Cox 已提交
687
static int option_chars_in_buffer(struct tty_struct *tty)
688
{
A
Alan Cox 已提交
689
	struct usb_serial_port *port = tty->driver_data;
690 691 692 693 694 695 696
	struct option_port_private *portdata;
	int i;
	int data_len = 0;
	struct urb *this_urb;

	portdata = usb_get_serial_port_data(port);

A
Alan Cox 已提交
697
	for (i = 0; i < N_OUT_URB; i++) {
698
		this_urb = portdata->out_urbs[i];
699 700
		/* FIXME: This locking is insufficient as this_urb may
		   go unused during the test */
701
		if (this_urb && test_bit(i, &portdata->out_busy))
702
			data_len += this_urb->transfer_buffer_length;
703
	}
704
	dbg("%s: %d", __func__, data_len);
705 706 707
	return data_len;
}

A
Alan Cox 已提交
708 709
static int option_open(struct tty_struct *tty,
			struct usb_serial_port *port, struct file *filp)
710
{
711 712 713 714
	struct option_port_private *portdata;
	struct usb_serial *serial = port->serial;
	int i, err;
	struct urb *urb;
715 716 717

	portdata = usb_get_serial_port_data(port);

718
	dbg("%s", __func__);
719 720 721 722 723 724 725 726

	/* Set some sane defaults */
	portdata->rts_state = 1;
	portdata->dtr_state = 1;

	/* Reset low level data toggle and start reading from endpoints */
	for (i = 0; i < N_IN_URB; i++) {
		urb = portdata->in_urbs[i];
A
Alan Cox 已提交
727
		if (!urb)
728 729
			continue;
		if (urb->dev != serial->dev) {
730
			dbg("%s: dev %p != %p", __func__,
731
				urb->dev, serial->dev);
732 733 734
			continue;
		}

735 736 737 738
		/*
		 * make sure endpoint data toggle is synchronized with the
		 * device
		 */
739 740 741 742
		usb_clear_halt(urb->dev, urb->pipe);

		err = usb_submit_urb(urb, GFP_KERNEL);
		if (err) {
743
			dbg("%s: submit urb %d failed (%d) %d",
744
				__func__, i, err,
745 746 747 748 749 750 751
				urb->transfer_buffer_length);
		}
	}

	/* Reset low level data toggle on out endpoints */
	for (i = 0; i < N_OUT_URB; i++) {
		urb = portdata->out_urbs[i];
A
Alan Cox 已提交
752
		if (!urb)
753 754
			continue;
		urb->dev = serial->dev;
755 756
		/* usb_settoggle(urb->dev, usb_pipeendpoint(urb->pipe),
				usb_pipeout(urb->pipe), 0); */
757 758
	}

A
Alan Cox 已提交
759 760
	if (tty)
		tty->low_latency = 1;
761

A
Alan Cox 已提交
762
	option_send_setup(tty, port);
763

A
Alan Cox 已提交
764
	return 0;
765 766
}

A
Alan Cox 已提交
767 768
static void option_close(struct tty_struct *tty,
			struct usb_serial_port *port, struct file *filp)
769
{
770 771 772
	int i;
	struct usb_serial *serial = port->serial;
	struct option_port_private *portdata;
773

774
	dbg("%s", __func__);
775 776 777 778 779 780
	portdata = usb_get_serial_port_data(port);

	portdata->rts_state = 0;
	portdata->dtr_state = 0;

	if (serial->dev) {
781 782
		mutex_lock(&serial->disc_mutex);
		if (!serial->disconnected)
A
Alan Cox 已提交
783
			option_send_setup(tty, port);
784
		mutex_unlock(&serial->disc_mutex);
785 786 787

		/* Stop reading/writing urbs */
		for (i = 0; i < N_IN_URB; i++)
O
Oliver Neukum 已提交
788
			usb_kill_urb(portdata->in_urbs[i]);
789
		for (i = 0; i < N_OUT_URB; i++)
O
Oliver Neukum 已提交
790
			usb_kill_urb(portdata->out_urbs[i]);
791
	}
A
Alan Cox 已提交
792
	port->port.tty = NULL;	/* FIXME */
793 794 795
}

/* Helper functions used by option_setup_urbs */
796 797
static struct urb *option_setup_urb(struct usb_serial *serial, int endpoint,
		int dir, void *ctx, char *buf, int len,
798
		void (*callback)(struct urb *))
799 800 801 802 803 804 805 806
{
	struct urb *urb;

	if (endpoint == -1)
		return NULL;		/* endpoint not needed */

	urb = usb_alloc_urb(0, GFP_KERNEL);		/* No ISO */
	if (urb == NULL) {
807
		dbg("%s: alloc for endpoint %d failed.", __func__, endpoint);
808 809 810 811 812 813 814 815 816 817 818 819
		return NULL;
	}

		/* Fill URB using supplied data. */
	usb_fill_bulk_urb(urb, serial->dev,
		      usb_sndbulkpipe(serial->dev, endpoint) | dir,
		      buf, len, callback, ctx);

	return urb;
}

/* Setup urbs */
820
static void option_setup_urbs(struct usb_serial *serial)
821
{
A
Alan Cox 已提交
822
	int i, j;
823 824
	struct usb_serial_port *port;
	struct option_port_private *portdata;
825

826
	dbg("%s", __func__);
827

828 829 830
	for (i = 0; i < serial->num_ports; i++) {
		port = serial->port[i];
		portdata = usb_get_serial_port_data(port);
831

A
Alan Cox 已提交
832
		/* Do indat endpoints first */
833
		for (j = 0; j < N_IN_URB; ++j) {
A
Alan Cox 已提交
834 835 836 837 838
			portdata->in_urbs[j] = option_setup_urb(serial,
					port->bulk_in_endpointAddress,
					USB_DIR_IN, port,
					portdata->in_buffer[j],
					IN_BUFLEN, option_indat_callback);
839
		}
840

841 842
		/* outdat endpoints */
		for (j = 0; j < N_OUT_URB; ++j) {
A
Alan Cox 已提交
843 844 845 846 847
			portdata->out_urbs[j] = option_setup_urb(serial,
					port->bulk_out_endpointAddress,
					USB_DIR_OUT, port,
					portdata->out_buffer[j],
					OUT_BUFLEN, option_outdat_callback);
848
		}
849 850 851
	}
}

852 853 854 855 856 857

/** send RTS/DTR state to the port.
 *
 * This is exactly the same as SET_CONTROL_LINE_STATE from the PSTN
 * CDC.
*/
A
Alan Cox 已提交
858 859
static int option_send_setup(struct tty_struct *tty,
						struct usb_serial_port *port)
860 861 862
{
	struct usb_serial *serial = port->serial;
	struct option_port_private *portdata;
863
	int ifNum = serial->interface->cur_altsetting->desc.bInterfaceNumber;
864
	dbg("%s", __func__);
865 866 867

	portdata = usb_get_serial_port_data(port);

A
Alan Cox 已提交
868
	if (tty) {
869 870 871 872 873 874
		int val = 0;
		if (portdata->dtr_state)
			val |= 0x01;
		if (portdata->rts_state)
			val |= 0x02;

875
		return usb_control_msg(serial->dev,
A
Alan Cox 已提交
876 877
			usb_rcvctrlpipe(serial->dev, 0),
			0x22, 0x21, val, ifNum, NULL, 0, USB_CTRL_SET_TIMEOUT);
878 879 880 881
	}
	return 0;
}

882
static int option_startup(struct usb_serial *serial)
883
{
884
	int i, j, err;
885 886
	struct usb_serial_port *port;
	struct option_port_private *portdata;
887
	u8 *buffer;
888

889
	dbg("%s", __func__);
890 891 892 893

	/* Now setup per port private data */
	for (i = 0; i < serial->num_ports; i++) {
		port = serial->port[i];
894
		portdata = kzalloc(sizeof(*portdata), GFP_KERNEL);
895
		if (!portdata) {
896
			dbg("%s: kmalloc for option_port_private (%d) failed!.",
897
					__func__, i);
A
Alan Cox 已提交
898
			return 1;
899 900
		}

901 902 903 904 905 906 907 908 909 910 911 912 913 914
		for (j = 0; j < N_IN_URB; j++) {
			buffer = (u8 *)__get_free_page(GFP_KERNEL);
			if (!buffer)
				goto bail_out_error;
			portdata->in_buffer[j] = buffer;
		}

		for (j = 0; j < N_OUT_URB; j++) {
			buffer = kmalloc(OUT_BUFLEN, GFP_KERNEL);
			if (!buffer)
				goto bail_out_error2;
			portdata->out_buffer[j] = buffer;
		}

915 916
		usb_set_serial_port_data(port, portdata);

A
Alan Cox 已提交
917
		if (!port->interrupt_in_urb)
918 919 920
			continue;
		err = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
		if (err)
921
			dbg("%s: submit irq_in urb failed %d",
922
				__func__, err);
923 924
	}
	option_setup_urbs(serial);
A
Alan Cox 已提交
925
	return 0;
926 927 928 929 930 931 932 933 934 935

bail_out_error2:
	for (j = 0; j < N_OUT_URB; j++)
		kfree(portdata->out_buffer[j]);
bail_out_error:
	for (j = 0; j < N_IN_URB; j++)
		if (portdata->in_buffer[j])
			free_page((unsigned long)portdata->in_buffer[j]);
	kfree(portdata);
	return 1;
936 937
}

938
static void option_shutdown(struct usb_serial *serial)
939
{
940 941 942
	int i, j;
	struct usb_serial_port *port;
	struct option_port_private *portdata;
943

944
	dbg("%s", __func__);
945 946 947 948 949 950

	/* Stop reading/writing urbs */
	for (i = 0; i < serial->num_ports; ++i) {
		port = serial->port[i];
		portdata = usb_get_serial_port_data(port);
		for (j = 0; j < N_IN_URB; j++)
O
Oliver Neukum 已提交
951
			usb_kill_urb(portdata->in_urbs[j]);
952
		for (j = 0; j < N_OUT_URB; j++)
O
Oliver Neukum 已提交
953
			usb_kill_urb(portdata->out_urbs[j]);
954 955 956 957 958 959 960 961 962 963
	}

	/* Now free them */
	for (i = 0; i < serial->num_ports; ++i) {
		port = serial->port[i];
		portdata = usb_get_serial_port_data(port);

		for (j = 0; j < N_IN_URB; j++) {
			if (portdata->in_urbs[j]) {
				usb_free_urb(portdata->in_urbs[j]);
A
Alan Cox 已提交
964 965
				free_page((unsigned long)
					portdata->in_buffer[j]);
966 967 968 969 970 971
				portdata->in_urbs[j] = NULL;
			}
		}
		for (j = 0; j < N_OUT_URB; j++) {
			if (portdata->out_urbs[j]) {
				usb_free_urb(portdata->out_urbs[j]);
972
				kfree(portdata->out_buffer[j]);
973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991
				portdata->out_urbs[j] = NULL;
			}
		}
	}

	/* Now free per port private data */
	for (i = 0; i < serial->num_ports; i++) {
		port = serial->port[i];
		kfree(usb_get_serial_port_data(port));
	}
}

MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_VERSION(DRIVER_VERSION);
MODULE_LICENSE("GPL");

module_param(debug, bool, S_IRUGO | S_IWUSR);
MODULE_PARM_DESC(debug, "Debug messages");