[PATCH] usb: drivers/usb/core/devio.c dereferences a userspace pointer
[deliverable/linux.git] / drivers / usb / serial / option.c
CommitLineData
58cfe911
MU
1/*
2 Option Card (PCMCIA to) USB to Serial Driver
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
12 History:
13
14 2005-05-19 v0.1 Initial version, based on incomplete docs
ba460e48 15 and analysis of misbehavior with the standard driver
58cfe911
MU
16 2005-05-20 v0.2 Extended the input buffer to avoid losing
17 random 64-byte chunks of data
18 2005-05-21 v0.3 implemented chars_in_buffer()
19 turned on low_latency
20 simplified the code somewhat
ba460e48
MU
21 2005-05-24 v0.4 option_write() sometimes deadlocked under heavy load
22 removed some dead code
23 added sponsor notice
24 coding style clean-up
25 2005-06-20 v0.4.1 add missing braces :-/
26 killed end-of-line whitespace
27 2005-07-15 v0.4.2 rename WLAN product to FUSION, add FUSION2
b6137383 28 2005-09-10 v0.4.3 added HUAWEI E600 card and Audiovox AirCard
b27c73dc
MU
29 2005-09-20 v0.4.4 increased recv buffer size: the card sometimes
30 wants to send >2000 bytes.
6dde4325 31 2006-04-10 v0.4.2 fixed two array overrun errors :-/
ba460e48
MU
32
33 Work sponsored by: Sigos GmbH, Germany <info@sigos.de>
34
58cfe911 35*/
ba460e48
MU
36
37#define DRIVER_VERSION "v0.4"
58cfe911
MU
38#define DRIVER_AUTHOR "Matthias Urlichs <smurf@smurf.noris.de>"
39#define DRIVER_DESC "Option Card (PC-Card to) USB to Serial Driver"
40
41#include <linux/config.h>
42#include <linux/kernel.h>
43#include <linux/jiffies.h>
44#include <linux/errno.h>
45#include <linux/tty.h>
46#include <linux/tty_flip.h>
47#include <linux/module.h>
48#include <linux/usb.h>
49#include "usb-serial.h"
50
51/* Function prototypes */
7bb75aee
AM
52static int option_open(struct usb_serial_port *port, struct file *filp);
53static void option_close(struct usb_serial_port *port, struct file *filp);
54static int option_startup(struct usb_serial *serial);
55static void option_shutdown(struct usb_serial *serial);
56static void option_rx_throttle(struct usb_serial_port *port);
57static void option_rx_unthrottle(struct usb_serial_port *port);
58static int option_write_room(struct usb_serial_port *port);
58cfe911
MU
59
60static void option_instat_callback(struct urb *urb, struct pt_regs *regs);
61
7bb75aee
AM
62static int option_write(struct usb_serial_port *port,
63 const unsigned char *buf, int count);
58cfe911 64
7bb75aee
AM
65static int option_chars_in_buffer(struct usb_serial_port *port);
66static int option_ioctl(struct usb_serial_port *port, struct file *file,
67 unsigned int cmd, unsigned long arg);
68static void option_set_termios(struct usb_serial_port *port,
69 struct termios *old);
70static void option_break_ctl(struct usb_serial_port *port, int break_state);
71static int option_tiocmget(struct usb_serial_port *port, struct file *file);
72static int option_tiocmset(struct usb_serial_port *port, struct file *file,
73 unsigned int set, unsigned int clear);
74static int option_send_setup(struct usb_serial_port *port);
58cfe911
MU
75
76/* Vendor and product IDs */
ba460e48 77#define OPTION_VENDOR_ID 0x0AF0
b6137383
MU
78#define HUAWEI_VENDOR_ID 0x12D1
79#define AUDIOVOX_VENDOR_ID 0x0F3D
ba460e48
MU
80
81#define OPTION_PRODUCT_OLD 0x5000
82#define OPTION_PRODUCT_FUSION 0x6000
83#define OPTION_PRODUCT_FUSION2 0x6300
b6137383
MU
84#define HUAWEI_PRODUCT_E600 0x1001
85#define AUDIOVOX_PRODUCT_AIRCARD 0x0112
58cfe911 86
58cfe911
MU
87static struct usb_device_id option_ids[] = {
88 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_OLD) },
ba460e48
MU
89 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUSION) },
90 { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUSION2) },
b6137383
MU
91 { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E600) },
92 { USB_DEVICE(AUDIOVOX_VENDOR_ID, AUDIOVOX_PRODUCT_AIRCARD) },
58cfe911
MU
93 { } /* Terminating entry */
94};
95
96MODULE_DEVICE_TABLE(usb, option_ids);
97
98static struct usb_driver option_driver = {
58cfe911
MU
99 .name = "option",
100 .probe = usb_serial_probe,
101 .disconnect = usb_serial_disconnect,
102 .id_table = option_ids,
ba9dc657 103 .no_dynamic_id = 1,
58cfe911
MU
104};
105
c30fe7f7 106/* The card has three separate interfaces, which the serial driver
58cfe911
MU
107 * recognizes separately, thus num_port=1.
108 */
ea65370d 109static struct usb_serial_driver option_3port_device = {
18fcac35
GKH
110 .driver = {
111 .owner = THIS_MODULE,
269bda1c 112 .name = "option",
18fcac35 113 },
269bda1c 114 .description = "Option 3G data card",
ba460e48
MU
115 .id_table = option_ids,
116 .num_interrupt_in = NUM_DONT_CARE,
117 .num_bulk_in = NUM_DONT_CARE,
118 .num_bulk_out = NUM_DONT_CARE,
119 .num_ports = 1, /* 3, but the card reports its ports separately */
120 .open = option_open,
121 .close = option_close,
122 .write = option_write,
123 .write_room = option_write_room,
124 .chars_in_buffer = option_chars_in_buffer,
125 .throttle = option_rx_throttle,
126 .unthrottle = option_rx_unthrottle,
127 .ioctl = option_ioctl,
128 .set_termios = option_set_termios,
129 .break_ctl = option_break_ctl,
130 .tiocmget = option_tiocmget,
131 .tiocmset = option_tiocmset,
132 .attach = option_startup,
133 .shutdown = option_shutdown,
134 .read_int_callback = option_instat_callback,
58cfe911
MU
135};
136
ba460e48 137#ifdef CONFIG_USB_DEBUG
58cfe911 138static int debug;
ba460e48
MU
139#else
140#define debug 0
141#endif
142
58cfe911
MU
143/* per port private data */
144
ba460e48
MU
145#define N_IN_URB 4
146#define N_OUT_URB 1
b27c73dc 147#define IN_BUFLEN 4096
ba460e48 148#define OUT_BUFLEN 128
58cfe911
MU
149
150struct option_port_private {
151 /* Input endpoints and buffer for this port */
ba460e48
MU
152 struct urb *in_urbs[N_IN_URB];
153 char in_buffer[N_IN_URB][IN_BUFLEN];
58cfe911 154 /* Output endpoints and buffer for this port */
ba460e48
MU
155 struct urb *out_urbs[N_OUT_URB];
156 char out_buffer[N_OUT_URB][OUT_BUFLEN];
58cfe911
MU
157
158 /* Settings for the port */
ba460e48
MU
159 int rts_state; /* Handshaking pins (outputs) */
160 int dtr_state;
161 int cts_state; /* Handshaking pins (inputs) */
162 int dsr_state;
163 int dcd_state;
164 int ri_state;
165
166 unsigned long tx_start_time[N_OUT_URB];
58cfe911
MU
167};
168
58cfe911 169/* Functions used by new usb-serial code. */
7bb75aee 170static int __init option_init(void)
58cfe911
MU
171{
172 int retval;
173 retval = usb_serial_register(&option_3port_device);
174 if (retval)
175 goto failed_3port_device_register;
176 retval = usb_register(&option_driver);
177 if (retval)
178 goto failed_driver_register;
179
180 info(DRIVER_DESC ": " DRIVER_VERSION);
181
182 return 0;
183
184failed_driver_register:
185 usb_serial_deregister (&option_3port_device);
186failed_3port_device_register:
187 return retval;
188}
189
7bb75aee 190static void __exit option_exit(void)
58cfe911
MU
191{
192 usb_deregister (&option_driver);
193 usb_serial_deregister (&option_3port_device);
194}
195
196module_init(option_init);
197module_exit(option_exit);
198
7bb75aee 199static void option_rx_throttle(struct usb_serial_port *port)
58cfe911
MU
200{
201 dbg("%s", __FUNCTION__);
202}
203
7bb75aee 204static void option_rx_unthrottle(struct usb_serial_port *port)
58cfe911
MU
205{
206 dbg("%s", __FUNCTION__);
207}
208
7bb75aee 209static void option_break_ctl(struct usb_serial_port *port, int break_state)
58cfe911
MU
210{
211 /* Unfortunately, I don't know how to send a break */
ba460e48 212 dbg("%s", __FUNCTION__);
58cfe911
MU
213}
214
7bb75aee
AM
215static void option_set_termios(struct usb_serial_port *port,
216 struct termios *old_termios)
58cfe911
MU
217{
218 dbg("%s", __FUNCTION__);
219
220 option_send_setup(port);
221}
222
7bb75aee 223static int option_tiocmget(struct usb_serial_port *port, struct file *file)
58cfe911 224{
ba460e48
MU
225 unsigned int value;
226 struct option_port_private *portdata;
58cfe911
MU
227
228 portdata = usb_get_serial_port_data(port);
229
230 value = ((portdata->rts_state) ? TIOCM_RTS : 0) |
231 ((portdata->dtr_state) ? TIOCM_DTR : 0) |
232 ((portdata->cts_state) ? TIOCM_CTS : 0) |
233 ((portdata->dsr_state) ? TIOCM_DSR : 0) |
234 ((portdata->dcd_state) ? TIOCM_CAR : 0) |
235 ((portdata->ri_state) ? TIOCM_RNG : 0);
236
237 return value;
238}
239
7bb75aee
AM
240static int option_tiocmset(struct usb_serial_port *port, struct file *file,
241 unsigned int set, unsigned int clear)
58cfe911 242{
ba460e48 243 struct option_port_private *portdata;
58cfe911
MU
244
245 portdata = usb_get_serial_port_data(port);
246
247 if (set & TIOCM_RTS)
248 portdata->rts_state = 1;
249 if (set & TIOCM_DTR)
250 portdata->dtr_state = 1;
251
252 if (clear & TIOCM_RTS)
253 portdata->rts_state = 0;
254 if (clear & TIOCM_DTR)
255 portdata->dtr_state = 0;
256 return option_send_setup(port);
257}
258
7bb75aee
AM
259static int option_ioctl(struct usb_serial_port *port, struct file *file,
260 unsigned int cmd, unsigned long arg)
58cfe911
MU
261{
262 return -ENOIOCTLCMD;
263}
264
265/* Write */
7bb75aee
AM
266static int option_write(struct usb_serial_port *port,
267 const unsigned char *buf, int count)
58cfe911 268{
ba460e48
MU
269 struct option_port_private *portdata;
270 int i;
271 int left, todo;
272 struct urb *this_urb = NULL; /* spurious */
273 int err;
58cfe911
MU
274
275 portdata = usb_get_serial_port_data(port);
276
277 dbg("%s: write (%d chars)", __FUNCTION__, count);
278
58cfe911
MU
279 i = 0;
280 left = count;
ba460e48 281 for (i=0; left > 0 && i < N_OUT_URB; i++) {
58cfe911
MU
282 todo = left;
283 if (todo > OUT_BUFLEN)
284 todo = OUT_BUFLEN;
285
ba460e48
MU
286 this_urb = portdata->out_urbs[i];
287 if (this_urb->status == -EINPROGRESS) {
7bb75aee
AM
288 if (time_before(jiffies,
289 portdata->tx_start_time[i] + 10 * HZ))
58cfe911 290 continue;
58cfe911 291 usb_unlink_urb(this_urb);
ba460e48 292 continue;
58cfe911 293 }
ba460e48 294 if (this_urb->status != 0)
7bb75aee
AM
295 dbg("usb_write %p failed (err=%d)",
296 this_urb, this_urb->status);
58cfe911 297
7bb75aee
AM
298 dbg("%s: endpoint %d buf %d", __FUNCTION__,
299 usb_pipeendpoint(this_urb->pipe), i);
58cfe911 300
ba460e48 301 /* send the data */
58cfe911 302 memcpy (this_urb->transfer_buffer, buf, todo);
58cfe911
MU
303 this_urb->transfer_buffer_length = todo;
304
58cfe911
MU
305 this_urb->dev = port->serial->dev;
306 err = usb_submit_urb(this_urb, GFP_ATOMIC);
307 if (err) {
7bb75aee
AM
308 dbg("usb_submit_urb %p (write bulk) failed "
309 "(%d, has %d)", this_urb,
310 err, this_urb->status);
58cfe911
MU
311 continue;
312 }
313 portdata->tx_start_time[i] = jiffies;
314 buf += todo;
315 left -= todo;
316 }
317
318 count -= left;
58cfe911
MU
319 dbg("%s: wrote (did %d)", __FUNCTION__, count);
320 return count;
321}
322
7bb75aee 323static void option_indat_callback(struct urb *urb, struct pt_regs *regs)
58cfe911 324{
33f0f88f 325 int err;
58cfe911
MU
326 int endpoint;
327 struct usb_serial_port *port;
328 struct tty_struct *tty;
329 unsigned char *data = urb->transfer_buffer;
330
331 dbg("%s: %p", __FUNCTION__, urb);
332
333 endpoint = usb_pipeendpoint(urb->pipe);
334 port = (struct usb_serial_port *) urb->context;
335
336 if (urb->status) {
337 dbg("%s: nonzero status: %d on endpoint %02x.",
338 __FUNCTION__, urb->status, endpoint);
339 } else {
340 tty = port->tty;
341 if (urb->actual_length) {
33f0f88f
AC
342 tty_buffer_request_room(tty, urb->actual_length);
343 tty_insert_flip_string(tty, data, urb->actual_length);
58cfe911
MU
344 tty_flip_buffer_push(tty);
345 } else {
346 dbg("%s: empty read urb received", __FUNCTION__);
347 }
348
349 /* Resubmit urb so we continue receiving */
350 if (port->open_count && urb->status != -ESHUTDOWN) {
351 err = usb_submit_urb(urb, GFP_ATOMIC);
352 if (err)
7bb75aee
AM
353 printk(KERN_ERR "%s: resubmit read urb failed. "
354 "(%d)", __FUNCTION__, err);
58cfe911
MU
355 }
356 }
357 return;
358}
359
7bb75aee 360static void option_outdat_callback(struct urb *urb, struct pt_regs *regs)
58cfe911
MU
361{
362 struct usb_serial_port *port;
363
364 dbg("%s", __FUNCTION__);
365
366 port = (struct usb_serial_port *) urb->context;
367
cf2c7481 368 usb_serial_port_softint(port);
58cfe911
MU
369}
370
7bb75aee 371static void option_instat_callback(struct urb *urb, struct pt_regs *regs)
58cfe911
MU
372{
373 int err;
374 struct usb_serial_port *port = (struct usb_serial_port *) urb->context;
375 struct option_port_private *portdata = usb_get_serial_port_data(port);
376 struct usb_serial *serial = port->serial;
377
378 dbg("%s", __FUNCTION__);
379 dbg("%s: urb %p port %p has data %p", __FUNCTION__,urb,port,portdata);
380
381 if (urb->status == 0) {
382 struct usb_ctrlrequest *req_pkt =
383 (struct usb_ctrlrequest *)urb->transfer_buffer;
384
385 if (!req_pkt) {
386 dbg("%s: NULL req_pkt\n", __FUNCTION__);
387 return;
388 }
7bb75aee
AM
389 if ((req_pkt->bRequestType == 0xA1) &&
390 (req_pkt->bRequest == 0x20)) {
58cfe911
MU
391 int old_dcd_state;
392 unsigned char signals = *((unsigned char *)
7bb75aee
AM
393 urb->transfer_buffer +
394 sizeof(struct usb_ctrlrequest));
58cfe911
MU
395
396 dbg("%s: signal x%x", __FUNCTION__, signals);
397
398 old_dcd_state = portdata->dcd_state;
399 portdata->cts_state = 1;
400 portdata->dcd_state = ((signals & 0x01) ? 1 : 0);
401 portdata->dsr_state = ((signals & 0x02) ? 1 : 0);
402 portdata->ri_state = ((signals & 0x08) ? 1 : 0);
403
7bb75aee
AM
404 if (port->tty && !C_CLOCAL(port->tty) &&
405 old_dcd_state && !portdata->dcd_state)
58cfe911 406 tty_hangup(port->tty);
7bb75aee
AM
407 } else {
408 dbg("%s: type %x req %x", __FUNCTION__,
409 req_pkt->bRequestType,req_pkt->bRequest);
410 }
58cfe911
MU
411 } else
412 dbg("%s: error %d", __FUNCTION__, urb->status);
413
414 /* Resubmit urb so we continue receiving IRQ data */
415 if (urb->status != -ESHUTDOWN) {
416 urb->dev = serial->dev;
417 err = usb_submit_urb(urb, GFP_ATOMIC);
418 if (err)
7bb75aee
AM
419 dbg("%s: resubmit intr urb failed. (%d)",
420 __FUNCTION__, err);
58cfe911
MU
421 }
422}
423
7bb75aee 424static int option_write_room(struct usb_serial_port *port)
58cfe911
MU
425{
426 struct option_port_private *portdata;
427 int i;
428 int data_len = 0;
429 struct urb *this_urb;
430
431 portdata = usb_get_serial_port_data(port);
432
ba460e48 433 for (i=0; i < N_OUT_URB; i++) {
58cfe911
MU
434 this_urb = portdata->out_urbs[i];
435 if (this_urb && this_urb->status != -EINPROGRESS)
436 data_len += OUT_BUFLEN;
ba460e48 437 }
58cfe911
MU
438
439 dbg("%s: %d", __FUNCTION__, data_len);
440 return data_len;
441}
442
7bb75aee 443static int option_chars_in_buffer(struct usb_serial_port *port)
58cfe911
MU
444{
445 struct option_port_private *portdata;
446 int i;
447 int data_len = 0;
448 struct urb *this_urb;
449
450 portdata = usb_get_serial_port_data(port);
451
ba460e48 452 for (i=0; i < N_OUT_URB; i++) {
58cfe911
MU
453 this_urb = portdata->out_urbs[i];
454 if (this_urb && this_urb->status == -EINPROGRESS)
455 data_len += this_urb->transfer_buffer_length;
ba460e48 456 }
58cfe911
MU
457 dbg("%s: %d", __FUNCTION__, data_len);
458 return data_len;
459}
460
7bb75aee 461static int option_open(struct usb_serial_port *port, struct file *filp)
58cfe911 462{
ba460e48
MU
463 struct option_port_private *portdata;
464 struct usb_serial *serial = port->serial;
465 int i, err;
466 struct urb *urb;
58cfe911
MU
467
468 portdata = usb_get_serial_port_data(port);
469
470 dbg("%s", __FUNCTION__);
471
472 /* Set some sane defaults */
473 portdata->rts_state = 1;
474 portdata->dtr_state = 1;
475
476 /* Reset low level data toggle and start reading from endpoints */
477 for (i = 0; i < N_IN_URB; i++) {
478 urb = portdata->in_urbs[i];
479 if (! urb)
480 continue;
481 if (urb->dev != serial->dev) {
7bb75aee
AM
482 dbg("%s: dev %p != %p", __FUNCTION__,
483 urb->dev, serial->dev);
58cfe911
MU
484 continue;
485 }
486
7bb75aee
AM
487 /*
488 * make sure endpoint data toggle is synchronized with the
489 * device
490 */
58cfe911
MU
491 usb_clear_halt(urb->dev, urb->pipe);
492
493 err = usb_submit_urb(urb, GFP_KERNEL);
494 if (err) {
7bb75aee
AM
495 dbg("%s: submit urb %d failed (%d) %d",
496 __FUNCTION__, i, err,
58cfe911
MU
497 urb->transfer_buffer_length);
498 }
499 }
500
501 /* Reset low level data toggle on out endpoints */
502 for (i = 0; i < N_OUT_URB; i++) {
503 urb = portdata->out_urbs[i];
504 if (! urb)
505 continue;
506 urb->dev = serial->dev;
7bb75aee
AM
507 /* usb_settoggle(urb->dev, usb_pipeendpoint(urb->pipe),
508 usb_pipeout(urb->pipe), 0); */
58cfe911
MU
509 }
510
511 port->tty->low_latency = 1;
512
513 option_send_setup(port);
514
515 return (0);
516}
517
7bb75aee 518static inline void stop_urb(struct urb *urb)
58cfe911 519{
242cf670 520 if (urb && urb->status == -EINPROGRESS)
58cfe911 521 usb_kill_urb(urb);
58cfe911
MU
522}
523
7bb75aee 524static void option_close(struct usb_serial_port *port, struct file *filp)
58cfe911 525{
ba460e48
MU
526 int i;
527 struct usb_serial *serial = port->serial;
528 struct option_port_private *portdata;
58cfe911
MU
529
530 dbg("%s", __FUNCTION__);
531 portdata = usb_get_serial_port_data(port);
532
533 portdata->rts_state = 0;
534 portdata->dtr_state = 0;
535
536 if (serial->dev) {
537 option_send_setup(port);
538
539 /* Stop reading/writing urbs */
540 for (i = 0; i < N_IN_URB; i++)
541 stop_urb(portdata->in_urbs[i]);
542 for (i = 0; i < N_OUT_URB; i++)
543 stop_urb(portdata->out_urbs[i]);
544 }
545 port->tty = NULL;
546}
547
58cfe911 548/* Helper functions used by option_setup_urbs */
7bb75aee
AM
549static struct urb *option_setup_urb(struct usb_serial *serial, int endpoint,
550 int dir, void *ctx, char *buf, int len,
551 void (*callback)(struct urb *, struct pt_regs *regs))
58cfe911
MU
552{
553 struct urb *urb;
554
555 if (endpoint == -1)
556 return NULL; /* endpoint not needed */
557
558 urb = usb_alloc_urb(0, GFP_KERNEL); /* No ISO */
559 if (urb == NULL) {
560 dbg("%s: alloc for endpoint %d failed.", __FUNCTION__, endpoint);
561 return NULL;
562 }
563
564 /* Fill URB using supplied data. */
565 usb_fill_bulk_urb(urb, serial->dev,
566 usb_sndbulkpipe(serial->dev, endpoint) | dir,
567 buf, len, callback, ctx);
568
569 return urb;
570}
571
572/* Setup urbs */
7bb75aee 573static void option_setup_urbs(struct usb_serial *serial)
58cfe911 574{
ba460e48
MU
575 int j;
576 struct usb_serial_port *port;
577 struct option_port_private *portdata;
58cfe911
MU
578
579 dbg("%s", __FUNCTION__);
580
581 port = serial->port[0];
582 portdata = usb_get_serial_port_data(port);
583
584 /* Do indat endpoints first */
6dde4325 585 for (j = 0; j < N_IN_URB; ++j) {
58cfe911
MU
586 portdata->in_urbs[j] = option_setup_urb (serial,
587 port->bulk_in_endpointAddress, USB_DIR_IN, port,
588 portdata->in_buffer[j], IN_BUFLEN, option_indat_callback);
589 }
590
591 /* outdat endpoints */
6dde4325 592 for (j = 0; j < N_OUT_URB; ++j) {
58cfe911
MU
593 portdata->out_urbs[j] = option_setup_urb (serial,
594 port->bulk_out_endpointAddress, USB_DIR_OUT, port,
595 portdata->out_buffer[j], OUT_BUFLEN, option_outdat_callback);
596 }
597}
598
7bb75aee 599static int option_send_setup(struct usb_serial_port *port)
58cfe911
MU
600{
601 struct usb_serial *serial = port->serial;
602 struct option_port_private *portdata;
603
604 dbg("%s", __FUNCTION__);
605
606 portdata = usb_get_serial_port_data(port);
607
608 if (port->tty) {
609 int val = 0;
610 if (portdata->dtr_state)
611 val |= 0x01;
612 if (portdata->rts_state)
613 val |= 0x02;
614
7bb75aee
AM
615 return usb_control_msg(serial->dev,
616 usb_rcvctrlpipe(serial->dev, 0),
617 0x22,0x21,val,0,NULL,0,USB_CTRL_SET_TIMEOUT);
58cfe911
MU
618 }
619
620 return 0;
621}
622
7bb75aee 623static int option_startup(struct usb_serial *serial)
58cfe911 624{
ba460e48
MU
625 int i, err;
626 struct usb_serial_port *port;
627 struct option_port_private *portdata;
58cfe911
MU
628
629 dbg("%s", __FUNCTION__);
630
631 /* Now setup per port private data */
632 for (i = 0; i < serial->num_ports; i++) {
633 port = serial->port[i];
80b6ca48 634 portdata = kzalloc(sizeof(*portdata), GFP_KERNEL);
58cfe911 635 if (!portdata) {
7bb75aee
AM
636 dbg("%s: kmalloc for option_port_private (%d) failed!.",
637 __FUNCTION__, i);
58cfe911
MU
638 return (1);
639 }
58cfe911
MU
640
641 usb_set_serial_port_data(port, portdata);
642
643 if (! port->interrupt_in_urb)
644 continue;
645 err = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
646 if (err)
7bb75aee
AM
647 dbg("%s: submit irq_in urb failed %d",
648 __FUNCTION__, err);
58cfe911
MU
649 }
650
651 option_setup_urbs(serial);
652
653 return (0);
654}
655
7bb75aee 656static void option_shutdown(struct usb_serial *serial)
58cfe911 657{
ba460e48
MU
658 int i, j;
659 struct usb_serial_port *port;
660 struct option_port_private *portdata;
58cfe911
MU
661
662 dbg("%s", __FUNCTION__);
663
664 /* Stop reading/writing urbs */
665 for (i = 0; i < serial->num_ports; ++i) {
666 port = serial->port[i];
667 portdata = usb_get_serial_port_data(port);
668 for (j = 0; j < N_IN_URB; j++)
669 stop_urb(portdata->in_urbs[j]);
670 for (j = 0; j < N_OUT_URB; j++)
671 stop_urb(portdata->out_urbs[j]);
672 }
673
674 /* Now free them */
675 for (i = 0; i < serial->num_ports; ++i) {
676 port = serial->port[i];
677 portdata = usb_get_serial_port_data(port);
678
679 for (j = 0; j < N_IN_URB; j++) {
680 if (portdata->in_urbs[j]) {
681 usb_free_urb(portdata->in_urbs[j]);
682 portdata->in_urbs[j] = NULL;
683 }
684 }
685 for (j = 0; j < N_OUT_URB; j++) {
686 if (portdata->out_urbs[j]) {
687 usb_free_urb(portdata->out_urbs[j]);
688 portdata->out_urbs[j] = NULL;
689 }
690 }
691 }
692
693 /* Now free per port private data */
694 for (i = 0; i < serial->num_ports; i++) {
695 port = serial->port[i];
696 kfree(usb_get_serial_port_data(port));
697 }
698}
699
700MODULE_AUTHOR(DRIVER_AUTHOR);
701MODULE_DESCRIPTION(DRIVER_DESC);
702MODULE_VERSION(DRIVER_VERSION);
703MODULE_LICENSE("GPL");
704
ba460e48 705#ifdef CONFIG_USB_DEBUG
58cfe911
MU
706module_param(debug, bool, S_IRUGO | S_IWUSR);
707MODULE_PARM_DESC(debug, "Debug messages");
ba460e48 708#endif
58cfe911 709
This page took 0.207267 seconds and 5 git commands to generate.