option.c 32.8 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
#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_FUJI_MODEM_LIGHT		0x6721
#define OPTION_PRODUCT_FUJI_MODEM_GT		0x6741
#define OPTION_PRODUCT_FUJI_MODEM_EX		0x6761
#define OPTION_PRODUCT_KOI_MODEM		0x6800
#define OPTION_PRODUCT_SCORPION_MODEM		0x6901
#define OPTION_PRODUCT_ETNA_MODEM		0x7001
#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_KOI_MODEM		0x7100

#define HUAWEI_VENDOR_ID			0x12D1
#define HUAWEI_PRODUCT_E600			0x1001
#define HUAWEI_PRODUCT_E220			0x1003
96
#define HUAWEI_PRODUCT_E220BIS			0x1004
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
#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
113 114

#define NOVATELWIRELESS_VENDOR_ID		0x1410
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132

/* 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
133
#define NOVATELWIRELESS_PRODUCT_ES620		0x2130
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
#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

152 153 154 155 156 157
/* AMOI PRODUCTS */
#define AMOI_VENDOR_ID				0x1614
#define AMOI_PRODUCT_H01			0x0800
#define AMOI_PRODUCT_H01A			0x7002
#define AMOI_PRODUCT_H02			0x0802

158
#define DELL_VENDOR_ID				0x413C
159

160
#define KYOCERA_VENDOR_ID			0x0c88
G
Greg Kroah-Hartman 已提交
161
#define KYOCERA_PRODUCT_KPC650			0x17da
162 163
#define KYOCERA_PRODUCT_KPC680			0x180a

164
#define ANYDATA_VENDOR_ID			0x16d5
165
#define ANYDATA_PRODUCT_ADU_620UW		0x6202
166 167
#define ANYDATA_PRODUCT_ADU_E100A		0x6501
#define ANYDATA_PRODUCT_ADU_500A		0x6502
168

169 170 171
#define AXESSTEL_VENDOR_ID			0x1726
#define AXESSTEL_PRODUCT_MV110H			0x1000

172
#define ONDA_VENDOR_ID				0x19d2
173
#define ONDA_PRODUCT_MSA501HS			0x0001
174 175
#define ONDA_PRODUCT_ET502HS			0x0002

176 177 178
#define BANDRICH_VENDOR_ID			0x1A8D
#define BANDRICH_PRODUCT_C100_1			0x1002
#define BANDRICH_PRODUCT_C100_2			0x1003
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
#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
196

197 198 199
#define AMOI_VENDOR_ID			0x1614
#define AMOI_PRODUCT_9508			0x0800

200 201
#define QUALCOMM_VENDOR_ID			0x05C6

202 203
#define MAXON_VENDOR_ID				0x16d8

204 205 206
#define TELIT_VENDOR_ID				0x1bc7
#define TELIT_PRODUCT_UC864E			0x1003

207 208 209
/* ZTE PRODUCTS */
#define ZTE_VENDOR_ID				0x19d2
#define ZTE_PRODUCT_MF628			0x0015
210
#define ZTE_PRODUCT_MF626			0x0031
211
#define ZTE_PRODUCT_CDMA_TECH			0xfffe
212

213 214 215 216
/* Ericsson products */
#define ERICSSON_VENDOR_ID			0x0bdb
#define ERICSSON_PRODUCT_F3507G			0x1900

D
Dan Williams 已提交
217 218 219 220 221 222
/* Pantech products */
#define PANTECH_VENDOR_ID			0x106c
#define PANTECH_PRODUCT_PC5740			0x3701
#define PANTECH_PRODUCT_PC5750			0x3702  /* PX-500 */
#define PANTECH_PRODUCT_UM150			0x3711

223
static struct usb_device_id option_ids[] = {
224 225 226 227 228 229 230 231 232
	{ 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) },
233
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA) },
234 235 236 237 238 239 240 241 242 243 244 245 246 247
	{ 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_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_KOI_MODEM) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_SCORPION_MODEM) },
	{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_ETNA_MODEM) },
	{ 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_KOI_MODEM) },
248
	{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E600, 0xff, 0xff, 0xff) },
249 250
	{ 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) },
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
	{ 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) },
267
	{ USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_9508) },
268 269 270 271 272 273 274 275 276 277 278 279
	{ 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 */
280
	{ USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_ES620) }, /* Novatel Merlin ES620 SM Bus */
281 282 283 284 285 286 287 288 289 290 291 292 293 294
	{ 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 */

295 296 297 298
	{ USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_H01) },
	{ USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_H01A) },
	{ USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_H02) },

299 300 301 302 303 304
	{ 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 */
305
	{ USB_DEVICE(DELL_VENDOR_ID, 0x8129) },	/* Dell Wireless 5700 Mobile Broadband CDMA/EVDO Mini-Card == Novatel Expedite ET620 CDMA/EV-DO */
306 307
	{ 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 */
308
	{ USB_DEVICE(DELL_VENDOR_ID, 0x8137) },	/* Dell Wireless HSDPA 5520 */
309
	{ USB_DEVICE(DELL_VENDOR_ID, 0x8138) },	/* Dell Wireless 5520 Voda I Mobile Broadband (3G HSDPA) Minicard */
310
	{ USB_DEVICE(DELL_VENDOR_ID, 0x8147) },	/* Dell Wireless 5530 Mobile Broadband (3G HSPA) Mini-Card */
311
	{ USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_E100A) },	/* ADU-E100, ADU-310 */
312
	{ USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_500A) },
313
	{ USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_620UW) },
314
	{ USB_DEVICE(AXESSTEL_VENDOR_ID, AXESSTEL_PRODUCT_MV110H) },
315
	{ USB_DEVICE(ONDA_VENDOR_ID, ONDA_PRODUCT_MSA501HS) },
316
	{ USB_DEVICE(ONDA_VENDOR_ID, ONDA_PRODUCT_ET502HS) },
317 318
	{ USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_C100_1) },
	{ USB_DEVICE(BANDRICH_VENDOR_ID, BANDRICH_PRODUCT_C100_2) },
319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
	{ 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 已提交
334
	{ USB_DEVICE(KYOCERA_VENDOR_ID, KYOCERA_PRODUCT_KPC650) },
335
	{ USB_DEVICE(KYOCERA_VENDOR_ID, KYOCERA_PRODUCT_KPC680) },
336
	{ USB_DEVICE(QUALCOMM_VENDOR_ID, 0x6000)}, /* ZTE AC8700 */
337
	{ USB_DEVICE(QUALCOMM_VENDOR_ID, 0x6613)}, /* Onda H600/ZTE MF330 */
338
	{ USB_DEVICE(MAXON_VENDOR_ID, 0x6280) }, /* BP3-USB & BP3-EXT HSDPA */
339
	{ USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_UC864E) },
340
	{ USB_DEVICE(ZTE_VENDOR_ID, ZTE_PRODUCT_MF626) },
341
	{ USB_DEVICE(ZTE_VENDOR_ID, ZTE_PRODUCT_MF628) },
342
	{ USB_DEVICE(ZTE_VENDOR_ID, ZTE_PRODUCT_CDMA_TECH) },
343
	{ USB_DEVICE(ERICSSON_VENDOR_ID, ERICSSON_PRODUCT_F3507G) },
D
Dan Williams 已提交
344 345 346
	{ USB_DEVICE(PANTECH_VENDOR_ID, PANTECH_PRODUCT_PC5740) },
	{ USB_DEVICE(PANTECH_VENDOR_ID, PANTECH_PRODUCT_PC5750) },
	{ USB_DEVICE(PANTECH_VENDOR_ID, PANTECH_PRODUCT_UM150) },
347 348
	{ } /* Terminating entry */
};
349 350 351 352 353 354 355
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,
356
	.no_dynamic_id = 	1,
357 358
};

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

static struct usb_serial_driver option_1port_device = {
	.driver = {
		.owner =	THIS_MODULE,
366
		.name =		"option1",
367 368
	},
	.description       = "GSM modem (1-port)",
369
	.usb_driver        = &option_driver,
370
	.id_table          = option_ids,
371
	.num_ports         = 1,
372 373 374 375 376 377 378 379 380 381 382
	.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,
383 384 385
};

static int debug;
386

387 388
/* per port private data */

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

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

	/* Settings for the port */
404 405 406 407 408 409 410 411
	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];
412 413 414
};

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

425 426
	printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
	       DRIVER_DESC "\n");
427 428 429 430

	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 = tty_port_tty_get(&port->port);
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
			tty_flip_buffer_push(tty);
A
Alan Cox 已提交
575
		} else 
576
			dbg("%s: empty read urb received", __func__);
A
Alan Cox 已提交
577
		tty_kref_put(tty);
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 647 648 649 650 651 652
			if (old_dcd_state && !portdata->dcd_state) {
				struct tty_struct *tty =
						tty_port_tty_get(&port->port);
				if (tty && !C_CLOCAL(tty))
					tty_hangup(tty);
				tty_kref_put(tty);
			}
653
		} else {
654
			dbg("%s: type %x req %x", __func__,
A
Alan Cox 已提交
655
				req_pkt->bRequestType, req_pkt->bRequest);
656
		}
657
	} else
658
		dbg("%s: error %d", __func__, status);
659 660

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

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

	portdata = usb_get_serial_port_data(port);

680

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

687
	dbg("%s: %d", __func__, data_len);
688 689 690
	return data_len;
}

A
Alan Cox 已提交
691
static int option_chars_in_buffer(struct tty_struct *tty)
692
{
A
Alan Cox 已提交
693
	struct usb_serial_port *port = tty->driver_data;
694 695 696 697 698 699 700
	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 已提交
701
	for (i = 0; i < N_OUT_URB; i++) {
702
		this_urb = portdata->out_urbs[i];
703 704
		/* FIXME: This locking is insufficient as this_urb may
		   go unused during the test */
705
		if (this_urb && test_bit(i, &portdata->out_busy))
706
			data_len += this_urb->transfer_buffer_length;
707
	}
708
	dbg("%s: %d", __func__, data_len);
709 710 711
	return data_len;
}

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

	portdata = usb_get_serial_port_data(port);

722
	dbg("%s", __func__);
723 724 725 726 727 728 729 730

	/* 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 已提交
731
		if (!urb)
732 733
			continue;
		if (urb->dev != serial->dev) {
734
			dbg("%s: dev %p != %p", __func__,
735
				urb->dev, serial->dev);
736 737 738
			continue;
		}

739 740 741 742
		/*
		 * make sure endpoint data toggle is synchronized with the
		 * device
		 */
743 744 745 746
		usb_clear_halt(urb->dev, urb->pipe);

		err = usb_submit_urb(urb, GFP_KERNEL);
		if (err) {
747
			dbg("%s: submit urb %d failed (%d) %d",
748
				__func__, i, err,
749 750 751 752 753 754 755
				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 已提交
756
		if (!urb)
757 758
			continue;
		urb->dev = serial->dev;
759 760
		/* usb_settoggle(urb->dev, usb_pipeendpoint(urb->pipe),
				usb_pipeout(urb->pipe), 0); */
761 762
	}

A
Alan Cox 已提交
763 764
	if (tty)
		tty->low_latency = 1;
765

A
Alan Cox 已提交
766
	option_send_setup(tty, port);
767

A
Alan Cox 已提交
768
	return 0;
769 770
}

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

778
	dbg("%s", __func__);
779 780 781 782 783 784
	portdata = usb_get_serial_port_data(port);

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

	if (serial->dev) {
785 786
		mutex_lock(&serial->disc_mutex);
		if (!serial->disconnected)
A
Alan Cox 已提交
787
			option_send_setup(tty, port);
788
		mutex_unlock(&serial->disc_mutex);
789 790 791

		/* Stop reading/writing urbs */
		for (i = 0; i < N_IN_URB; i++)
O
Oliver Neukum 已提交
792
			usb_kill_urb(portdata->in_urbs[i]);
793
		for (i = 0; i < N_OUT_URB; i++)
O
Oliver Neukum 已提交
794
			usb_kill_urb(portdata->out_urbs[i]);
795
	}
A
Alan Cox 已提交
796
	tty_port_tty_set(&port->port, NULL);
797 798 799
}

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

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

	urb = usb_alloc_urb(0, GFP_KERNEL);		/* No ISO */
	if (urb == NULL) {
811
		dbg("%s: alloc for endpoint %d failed.", __func__, endpoint);
812 813 814 815 816 817 818 819 820 821 822 823
		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 */
824
static void option_setup_urbs(struct usb_serial *serial)
825
{
A
Alan Cox 已提交
826
	int i, j;
827 828
	struct usb_serial_port *port;
	struct option_port_private *portdata;
829

830
	dbg("%s", __func__);
831

832 833 834
	for (i = 0; i < serial->num_ports; i++) {
		port = serial->port[i];
		portdata = usb_get_serial_port_data(port);
835

A
Alan Cox 已提交
836
		/* Do indat endpoints first */
837
		for (j = 0; j < N_IN_URB; ++j) {
A
Alan Cox 已提交
838 839 840 841 842
			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);
843
		}
844

845 846
		/* outdat endpoints */
		for (j = 0; j < N_OUT_URB; ++j) {
A
Alan Cox 已提交
847 848 849 850 851
			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);
852
		}
853 854 855
	}
}

856 857 858 859 860 861

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

	portdata = usb_get_serial_port_data(port);

A
Alan Cox 已提交
872
	if (tty) {
873 874 875 876 877 878
		int val = 0;
		if (portdata->dtr_state)
			val |= 0x01;
		if (portdata->rts_state)
			val |= 0x02;

879
		return usb_control_msg(serial->dev,
A
Alan Cox 已提交
880 881
			usb_rcvctrlpipe(serial->dev, 0),
			0x22, 0x21, val, ifNum, NULL, 0, USB_CTRL_SET_TIMEOUT);
882 883 884 885
	}
	return 0;
}

886
static int option_startup(struct usb_serial *serial)
887
{
888
	int i, j, err;
889 890
	struct usb_serial_port *port;
	struct option_port_private *portdata;
891
	u8 *buffer;
892

893
	dbg("%s", __func__);
894 895 896 897

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

905 906 907 908 909 910 911 912 913 914 915 916 917 918
		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;
		}

919 920
		usb_set_serial_port_data(port, portdata);

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

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;
940 941
}

942
static void option_shutdown(struct usb_serial *serial)
943
{
944 945 946
	int i, j;
	struct usb_serial_port *port;
	struct option_port_private *portdata;
947

948
	dbg("%s", __func__);
949 950 951 952 953 954

	/* 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 已提交
955
			usb_kill_urb(portdata->in_urbs[j]);
956
		for (j = 0; j < N_OUT_URB; j++)
O
Oliver Neukum 已提交
957
			usb_kill_urb(portdata->out_urbs[j]);
958 959 960 961 962 963 964 965 966 967
	}

	/* 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 已提交
968 969
				free_page((unsigned long)
					portdata->in_buffer[j]);
970 971 972 973 974 975
				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]);
976
				kfree(portdata->out_buffer[j]);
977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995
				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");