blob: 817e6ff8de8bc8aebd549697bd3b090315753281 [file] [log] [blame]
Matthew Garrett0d456192010-04-01 12:31:07 -04001/*
2 USB Driver layer for GSM modems
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: see the git log.
13
14 Work sponsored by: Sigos GmbH, Germany <info@sigos.de>
15
16 This driver exists because the "normal" serial driver doesn't work too well
17 with GSM modems. Issues:
18 - data loss -- one single Receive URB is not nearly enough
19 - controlling the baud rate doesn't make sense
20*/
21
22#define DRIVER_VERSION "v0.7.2"
23#define DRIVER_AUTHOR "Matthias Urlichs <smurf@smurf.noris.de>"
24#define DRIVER_DESC "USB Driver for GSM modems"
25
26#include <linux/kernel.h>
27#include <linux/jiffies.h>
28#include <linux/errno.h>
29#include <linux/slab.h>
30#include <linux/tty.h>
31#include <linux/tty_flip.h>
32#include <linux/module.h>
33#include <linux/bitops.h>
Peter Huewe66921ed2010-12-09 23:27:35 +010034#include <linux/uaccess.h>
Matthew Garrett0d456192010-04-01 12:31:07 -040035#include <linux/usb.h>
36#include <linux/usb/serial.h>
Dan Williams02303f72010-11-19 16:04:00 -060037#include <linux/serial.h>
Matthew Garrett0d456192010-04-01 12:31:07 -040038#include "usb-wwan.h"
39
40static int debug;
41
42void usb_wwan_dtr_rts(struct usb_serial_port *port, int on)
43{
44 struct usb_serial *serial = port->serial;
45 struct usb_wwan_port_private *portdata;
46
47 struct usb_wwan_intf_private *intfdata;
48
49 dbg("%s", __func__);
50
51 intfdata = port->serial->private;
52
53 if (!intfdata->send_setup)
54 return;
55
56 portdata = usb_get_serial_port_data(port);
57 mutex_lock(&serial->disc_mutex);
58 portdata->rts_state = on;
59 portdata->dtr_state = on;
60 if (serial->dev)
61 intfdata->send_setup(port);
62 mutex_unlock(&serial->disc_mutex);
63}
64EXPORT_SYMBOL(usb_wwan_dtr_rts);
65
66void usb_wwan_set_termios(struct tty_struct *tty,
67 struct usb_serial_port *port,
68 struct ktermios *old_termios)
69{
70 struct usb_wwan_intf_private *intfdata = port->serial->private;
71
72 dbg("%s", __func__);
73
74 /* Doesn't support option setting */
75 tty_termios_copy_hw(tty->termios, old_termios);
76
77 if (intfdata->send_setup)
78 intfdata->send_setup(port);
79}
80EXPORT_SYMBOL(usb_wwan_set_termios);
81
82int usb_wwan_tiocmget(struct tty_struct *tty, struct file *file)
83{
84 struct usb_serial_port *port = tty->driver_data;
85 unsigned int value;
86 struct usb_wwan_port_private *portdata;
87
88 portdata = usb_get_serial_port_data(port);
89
90 value = ((portdata->rts_state) ? TIOCM_RTS : 0) |
91 ((portdata->dtr_state) ? TIOCM_DTR : 0) |
92 ((portdata->cts_state) ? TIOCM_CTS : 0) |
93 ((portdata->dsr_state) ? TIOCM_DSR : 0) |
94 ((portdata->dcd_state) ? TIOCM_CAR : 0) |
95 ((portdata->ri_state) ? TIOCM_RNG : 0);
96
97 return value;
98}
99EXPORT_SYMBOL(usb_wwan_tiocmget);
100
101int usb_wwan_tiocmset(struct tty_struct *tty, struct file *file,
102 unsigned int set, unsigned int clear)
103{
104 struct usb_serial_port *port = tty->driver_data;
105 struct usb_wwan_port_private *portdata;
106 struct usb_wwan_intf_private *intfdata;
107
108 portdata = usb_get_serial_port_data(port);
109 intfdata = port->serial->private;
110
111 if (!intfdata->send_setup)
112 return -EINVAL;
113
114 /* FIXME: what locks portdata fields ? */
115 if (set & TIOCM_RTS)
116 portdata->rts_state = 1;
117 if (set & TIOCM_DTR)
118 portdata->dtr_state = 1;
119
120 if (clear & TIOCM_RTS)
121 portdata->rts_state = 0;
122 if (clear & TIOCM_DTR)
123 portdata->dtr_state = 0;
124 return intfdata->send_setup(port);
125}
126EXPORT_SYMBOL(usb_wwan_tiocmset);
127
Dan Williams02303f72010-11-19 16:04:00 -0600128static int get_serial_info(struct usb_serial_port *port,
129 struct serial_struct __user *retinfo)
130{
131 struct serial_struct tmp;
132
133 if (!retinfo)
134 return -EFAULT;
135
136 memset(&tmp, 0, sizeof(tmp));
137 tmp.line = port->serial->minor;
138 tmp.port = port->number;
139 tmp.baud_base = tty_get_baud_rate(port->port.tty);
140 tmp.close_delay = port->port.close_delay / 10;
141 tmp.closing_wait = port->port.closing_wait == ASYNC_CLOSING_WAIT_NONE ?
142 ASYNC_CLOSING_WAIT_NONE :
143 port->port.closing_wait / 10;
144
145 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
146 return -EFAULT;
147 return 0;
148}
149
150static int set_serial_info(struct usb_serial_port *port,
151 struct serial_struct __user *newinfo)
152{
153 struct serial_struct new_serial;
154 unsigned int closing_wait, close_delay;
155 int retval = 0;
156
157 if (copy_from_user(&new_serial, newinfo, sizeof(new_serial)))
158 return -EFAULT;
159
160 close_delay = new_serial.close_delay * 10;
161 closing_wait = new_serial.closing_wait == ASYNC_CLOSING_WAIT_NONE ?
162 ASYNC_CLOSING_WAIT_NONE : new_serial.closing_wait * 10;
163
164 mutex_lock(&port->port.mutex);
165
166 if (!capable(CAP_SYS_ADMIN)) {
167 if ((close_delay != port->port.close_delay) ||
168 (closing_wait != port->port.closing_wait))
169 retval = -EPERM;
170 else
171 retval = -EOPNOTSUPP;
172 } else {
173 port->port.close_delay = close_delay;
174 port->port.closing_wait = closing_wait;
175 }
176
177 mutex_unlock(&port->port.mutex);
178 return retval;
179}
180
181int usb_wwan_ioctl(struct tty_struct *tty, struct file *file,
182 unsigned int cmd, unsigned long arg)
183{
184 struct usb_serial_port *port = tty->driver_data;
185
186 dbg("%s cmd 0x%04x", __func__, cmd);
187
188 switch (cmd) {
189 case TIOCGSERIAL:
190 return get_serial_info(port,
191 (struct serial_struct __user *) arg);
192 case TIOCSSERIAL:
193 return set_serial_info(port,
194 (struct serial_struct __user *) arg);
195 default:
196 break;
197 }
198
199 dbg("%s arg not supported", __func__);
200
201 return -ENOIOCTLCMD;
202}
203EXPORT_SYMBOL(usb_wwan_ioctl);
204
Matthew Garrett0d456192010-04-01 12:31:07 -0400205/* Write */
206int usb_wwan_write(struct tty_struct *tty, struct usb_serial_port *port,
207 const unsigned char *buf, int count)
208{
209 struct usb_wwan_port_private *portdata;
210 struct usb_wwan_intf_private *intfdata;
211 int i;
212 int left, todo;
213 struct urb *this_urb = NULL; /* spurious */
214 int err;
215 unsigned long flags;
216
217 portdata = usb_get_serial_port_data(port);
218 intfdata = port->serial->private;
219
220 dbg("%s: write (%d chars)", __func__, count);
221
222 i = 0;
223 left = count;
224 for (i = 0; left > 0 && i < N_OUT_URB; i++) {
225 todo = left;
226 if (todo > OUT_BUFLEN)
227 todo = OUT_BUFLEN;
228
229 this_urb = portdata->out_urbs[i];
230 if (test_and_set_bit(i, &portdata->out_busy)) {
231 if (time_before(jiffies,
232 portdata->tx_start_time[i] + 10 * HZ))
233 continue;
234 usb_unlink_urb(this_urb);
235 continue;
236 }
237 dbg("%s: endpoint %d buf %d", __func__,
238 usb_pipeendpoint(this_urb->pipe), i);
239
240 err = usb_autopm_get_interface_async(port->serial->interface);
241 if (err < 0)
242 break;
243
244 /* send the data */
245 memcpy(this_urb->transfer_buffer, buf, todo);
246 this_urb->transfer_buffer_length = todo;
247
248 spin_lock_irqsave(&intfdata->susp_lock, flags);
249 if (intfdata->suspended) {
250 usb_anchor_urb(this_urb, &portdata->delayed);
251 spin_unlock_irqrestore(&intfdata->susp_lock, flags);
252 } else {
253 intfdata->in_flight++;
254 spin_unlock_irqrestore(&intfdata->susp_lock, flags);
255 err = usb_submit_urb(this_urb, GFP_ATOMIC);
256 if (err) {
257 dbg("usb_submit_urb %p (write bulk) failed "
258 "(%d)", this_urb, err);
259 clear_bit(i, &portdata->out_busy);
260 spin_lock_irqsave(&intfdata->susp_lock, flags);
261 intfdata->in_flight--;
262 spin_unlock_irqrestore(&intfdata->susp_lock,
263 flags);
Oliver Neukum3d06bf12011-02-10 15:33:17 +0100264 usb_autopm_put_interface_async(port->serial->interface);
Oliver Neukum433508a2011-02-10 15:33:23 +0100265 break;
Matthew Garrett0d456192010-04-01 12:31:07 -0400266 }
267 }
268
269 portdata->tx_start_time[i] = jiffies;
270 buf += todo;
271 left -= todo;
272 }
273
274 count -= left;
275 dbg("%s: wrote (did %d)", __func__, count);
276 return count;
277}
278EXPORT_SYMBOL(usb_wwan_write);
279
280static void usb_wwan_indat_callback(struct urb *urb)
281{
282 int err;
283 int endpoint;
284 struct usb_serial_port *port;
285 struct tty_struct *tty;
286 unsigned char *data = urb->transfer_buffer;
287 int status = urb->status;
288
289 dbg("%s: %p", __func__, urb);
290
291 endpoint = usb_pipeendpoint(urb->pipe);
292 port = urb->context;
293
294 if (status) {
295 dbg("%s: nonzero status: %d on endpoint %02x.",
296 __func__, status, endpoint);
297 } else {
298 tty = tty_port_tty_get(&port->port);
299 if (urb->actual_length) {
300 tty_insert_flip_string(tty, data, urb->actual_length);
301 tty_flip_buffer_push(tty);
302 } else
303 dbg("%s: empty read urb received", __func__);
304 tty_kref_put(tty);
305
306 /* Resubmit urb so we continue receiving */
307 if (status != -ESHUTDOWN) {
308 err = usb_submit_urb(urb, GFP_ATOMIC);
Oliver Neukumc9c45582011-02-10 15:33:10 +0100309 if (err) {
310 if (err != -EPERM) {
311 printk(KERN_ERR "%s: resubmit read urb failed. "
312 "(%d)", __func__, err);
313 /* busy also in error unless we are killed */
314 usb_mark_last_busy(port->serial->dev);
315 }
316 } else {
Matthew Garrett0d456192010-04-01 12:31:07 -0400317 usb_mark_last_busy(port->serial->dev);
Oliver Neukumc9c45582011-02-10 15:33:10 +0100318 }
Matthew Garrett0d456192010-04-01 12:31:07 -0400319 }
320
321 }
Matthew Garrett0d456192010-04-01 12:31:07 -0400322}
323
324static void usb_wwan_outdat_callback(struct urb *urb)
325{
326 struct usb_serial_port *port;
327 struct usb_wwan_port_private *portdata;
328 struct usb_wwan_intf_private *intfdata;
329 int i;
330
331 dbg("%s", __func__);
332
333 port = urb->context;
334 intfdata = port->serial->private;
335
336 usb_serial_port_softint(port);
337 usb_autopm_put_interface_async(port->serial->interface);
338 portdata = usb_get_serial_port_data(port);
339 spin_lock(&intfdata->susp_lock);
340 intfdata->in_flight--;
341 spin_unlock(&intfdata->susp_lock);
342
343 for (i = 0; i < N_OUT_URB; ++i) {
344 if (portdata->out_urbs[i] == urb) {
345 smp_mb__before_clear_bit();
346 clear_bit(i, &portdata->out_busy);
347 break;
348 }
349 }
350}
351
352int usb_wwan_write_room(struct tty_struct *tty)
353{
354 struct usb_serial_port *port = tty->driver_data;
355 struct usb_wwan_port_private *portdata;
356 int i;
357 int data_len = 0;
358 struct urb *this_urb;
359
360 portdata = usb_get_serial_port_data(port);
361
362 for (i = 0; i < N_OUT_URB; i++) {
363 this_urb = portdata->out_urbs[i];
364 if (this_urb && !test_bit(i, &portdata->out_busy))
365 data_len += OUT_BUFLEN;
366 }
367
368 dbg("%s: %d", __func__, data_len);
369 return data_len;
370}
371EXPORT_SYMBOL(usb_wwan_write_room);
372
373int usb_wwan_chars_in_buffer(struct tty_struct *tty)
374{
375 struct usb_serial_port *port = tty->driver_data;
376 struct usb_wwan_port_private *portdata;
377 int i;
378 int data_len = 0;
379 struct urb *this_urb;
380
381 portdata = usb_get_serial_port_data(port);
382
383 for (i = 0; i < N_OUT_URB; i++) {
384 this_urb = portdata->out_urbs[i];
385 /* FIXME: This locking is insufficient as this_urb may
386 go unused during the test */
387 if (this_urb && test_bit(i, &portdata->out_busy))
388 data_len += this_urb->transfer_buffer_length;
389 }
390 dbg("%s: %d", __func__, data_len);
391 return data_len;
392}
393EXPORT_SYMBOL(usb_wwan_chars_in_buffer);
394
395int usb_wwan_open(struct tty_struct *tty, struct usb_serial_port *port)
396{
397 struct usb_wwan_port_private *portdata;
398 struct usb_wwan_intf_private *intfdata;
399 struct usb_serial *serial = port->serial;
400 int i, err;
401 struct urb *urb;
402
403 portdata = usb_get_serial_port_data(port);
404 intfdata = serial->private;
405
406 dbg("%s", __func__);
407
408 /* Start reading from the IN endpoint */
409 for (i = 0; i < N_IN_URB; i++) {
410 urb = portdata->in_urbs[i];
411 if (!urb)
412 continue;
413 err = usb_submit_urb(urb, GFP_KERNEL);
414 if (err) {
415 dbg("%s: submit urb %d failed (%d) %d",
416 __func__, i, err, urb->transfer_buffer_length);
417 }
418 }
419
420 if (intfdata->send_setup)
421 intfdata->send_setup(port);
422
423 serial->interface->needs_remote_wakeup = 1;
424 spin_lock_irq(&intfdata->susp_lock);
425 portdata->opened = 1;
426 spin_unlock_irq(&intfdata->susp_lock);
Oliver Neukum9a91aed2011-02-10 15:33:37 +0100427 /* this balances a get in the generic USB serial code */
Matthew Garrett0d456192010-04-01 12:31:07 -0400428 usb_autopm_put_interface(serial->interface);
429
430 return 0;
431}
432EXPORT_SYMBOL(usb_wwan_open);
433
434void usb_wwan_close(struct usb_serial_port *port)
435{
436 int i;
437 struct usb_serial *serial = port->serial;
438 struct usb_wwan_port_private *portdata;
439 struct usb_wwan_intf_private *intfdata = port->serial->private;
440
441 dbg("%s", __func__);
442 portdata = usb_get_serial_port_data(port);
443
444 if (serial->dev) {
445 /* Stop reading/writing urbs */
446 spin_lock_irq(&intfdata->susp_lock);
447 portdata->opened = 0;
448 spin_unlock_irq(&intfdata->susp_lock);
449
450 for (i = 0; i < N_IN_URB; i++)
451 usb_kill_urb(portdata->in_urbs[i]);
452 for (i = 0; i < N_OUT_URB; i++)
453 usb_kill_urb(portdata->out_urbs[i]);
Oliver Neukum9a91aed2011-02-10 15:33:37 +0100454 /* balancing - important as an error cannot be handled*/
455 usb_autopm_get_interface_no_resume(serial->interface);
Matthew Garrett0d456192010-04-01 12:31:07 -0400456 serial->interface->needs_remote_wakeup = 0;
457 }
458}
459EXPORT_SYMBOL(usb_wwan_close);
460
461/* Helper functions used by usb_wwan_setup_urbs */
462static struct urb *usb_wwan_setup_urb(struct usb_serial *serial, int endpoint,
463 int dir, void *ctx, char *buf, int len,
464 void (*callback) (struct urb *))
465{
466 struct urb *urb;
467
468 if (endpoint == -1)
469 return NULL; /* endpoint not needed */
470
471 urb = usb_alloc_urb(0, GFP_KERNEL); /* No ISO */
472 if (urb == NULL) {
473 dbg("%s: alloc for endpoint %d failed.", __func__, endpoint);
474 return NULL;
475 }
476
477 /* Fill URB using supplied data. */
478 usb_fill_bulk_urb(urb, serial->dev,
479 usb_sndbulkpipe(serial->dev, endpoint) | dir,
480 buf, len, callback, ctx);
481
482 return urb;
483}
484
485/* Setup urbs */
486static void usb_wwan_setup_urbs(struct usb_serial *serial)
487{
488 int i, j;
489 struct usb_serial_port *port;
490 struct usb_wwan_port_private *portdata;
491
492 dbg("%s", __func__);
493
494 for (i = 0; i < serial->num_ports; i++) {
495 port = serial->port[i];
496 portdata = usb_get_serial_port_data(port);
497
498 /* Do indat endpoints first */
499 for (j = 0; j < N_IN_URB; ++j) {
500 portdata->in_urbs[j] = usb_wwan_setup_urb(serial,
501 port->
502 bulk_in_endpointAddress,
503 USB_DIR_IN,
504 port,
505 portdata->
506 in_buffer[j],
507 IN_BUFLEN,
508 usb_wwan_indat_callback);
509 }
510
511 /* outdat endpoints */
512 for (j = 0; j < N_OUT_URB; ++j) {
513 portdata->out_urbs[j] = usb_wwan_setup_urb(serial,
514 port->
515 bulk_out_endpointAddress,
516 USB_DIR_OUT,
517 port,
518 portdata->
519 out_buffer
520 [j],
521 OUT_BUFLEN,
522 usb_wwan_outdat_callback);
523 }
524 }
525}
526
527int usb_wwan_startup(struct usb_serial *serial)
528{
529 int i, j, err;
530 struct usb_serial_port *port;
531 struct usb_wwan_port_private *portdata;
532 u8 *buffer;
533
534 dbg("%s", __func__);
535
536 /* Now setup per port private data */
537 for (i = 0; i < serial->num_ports; i++) {
538 port = serial->port[i];
539 portdata = kzalloc(sizeof(*portdata), GFP_KERNEL);
540 if (!portdata) {
541 dbg("%s: kmalloc for usb_wwan_port_private (%d) failed!.",
542 __func__, i);
543 return 1;
544 }
545 init_usb_anchor(&portdata->delayed);
546
547 for (j = 0; j < N_IN_URB; j++) {
548 buffer = (u8 *) __get_free_page(GFP_KERNEL);
549 if (!buffer)
550 goto bail_out_error;
551 portdata->in_buffer[j] = buffer;
552 }
553
554 for (j = 0; j < N_OUT_URB; j++) {
555 buffer = kmalloc(OUT_BUFLEN, GFP_KERNEL);
556 if (!buffer)
557 goto bail_out_error2;
558 portdata->out_buffer[j] = buffer;
559 }
560
561 usb_set_serial_port_data(port, portdata);
562
563 if (!port->interrupt_in_urb)
564 continue;
565 err = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
566 if (err)
567 dbg("%s: submit irq_in urb failed %d", __func__, err);
568 }
569 usb_wwan_setup_urbs(serial);
570 return 0;
571
572bail_out_error2:
573 for (j = 0; j < N_OUT_URB; j++)
574 kfree(portdata->out_buffer[j]);
575bail_out_error:
576 for (j = 0; j < N_IN_URB; j++)
577 if (portdata->in_buffer[j])
578 free_page((unsigned long)portdata->in_buffer[j]);
579 kfree(portdata);
580 return 1;
581}
582EXPORT_SYMBOL(usb_wwan_startup);
583
584static void stop_read_write_urbs(struct usb_serial *serial)
585{
586 int i, j;
587 struct usb_serial_port *port;
588 struct usb_wwan_port_private *portdata;
589
590 /* Stop reading/writing urbs */
591 for (i = 0; i < serial->num_ports; ++i) {
592 port = serial->port[i];
593 portdata = usb_get_serial_port_data(port);
594 for (j = 0; j < N_IN_URB; j++)
595 usb_kill_urb(portdata->in_urbs[j]);
596 for (j = 0; j < N_OUT_URB; j++)
597 usb_kill_urb(portdata->out_urbs[j]);
598 }
599}
600
601void usb_wwan_disconnect(struct usb_serial *serial)
602{
603 dbg("%s", __func__);
604
605 stop_read_write_urbs(serial);
606}
607EXPORT_SYMBOL(usb_wwan_disconnect);
608
609void usb_wwan_release(struct usb_serial *serial)
610{
611 int i, j;
612 struct usb_serial_port *port;
613 struct usb_wwan_port_private *portdata;
614
615 dbg("%s", __func__);
616
617 /* Now free them */
618 for (i = 0; i < serial->num_ports; ++i) {
619 port = serial->port[i];
620 portdata = usb_get_serial_port_data(port);
621
622 for (j = 0; j < N_IN_URB; j++) {
623 usb_free_urb(portdata->in_urbs[j]);
624 free_page((unsigned long)
625 portdata->in_buffer[j]);
626 portdata->in_urbs[j] = NULL;
627 }
628 for (j = 0; j < N_OUT_URB; j++) {
629 usb_free_urb(portdata->out_urbs[j]);
630 kfree(portdata->out_buffer[j]);
631 portdata->out_urbs[j] = NULL;
632 }
633 }
634
635 /* Now free per port private data */
636 for (i = 0; i < serial->num_ports; i++) {
637 port = serial->port[i];
638 kfree(usb_get_serial_port_data(port));
639 }
640}
641EXPORT_SYMBOL(usb_wwan_release);
642
643#ifdef CONFIG_PM
644int usb_wwan_suspend(struct usb_serial *serial, pm_message_t message)
645{
646 struct usb_wwan_intf_private *intfdata = serial->private;
647 int b;
648
649 dbg("%s entered", __func__);
650
651 if (message.event & PM_EVENT_AUTO) {
652 spin_lock_irq(&intfdata->susp_lock);
653 b = intfdata->in_flight;
654 spin_unlock_irq(&intfdata->susp_lock);
655
656 if (b)
657 return -EBUSY;
658 }
659
660 spin_lock_irq(&intfdata->susp_lock);
661 intfdata->suspended = 1;
662 spin_unlock_irq(&intfdata->susp_lock);
663 stop_read_write_urbs(serial);
664
665 return 0;
666}
667EXPORT_SYMBOL(usb_wwan_suspend);
668
Oliver Neukum16871dc2011-02-10 15:33:29 +0100669static void unbusy_queued_urb(struct urb *urb, struct usb_wwan_port_private *portdata)
670{
671 int i;
672
673 for (i = 0; i < N_OUT_URB; i++) {
674 if (urb == portdata->out_urbs[i]) {
675 clear_bit(i, &portdata->out_busy);
676 break;
677 }
678 }
679}
680
Matthew Garrett0d456192010-04-01 12:31:07 -0400681static void play_delayed(struct usb_serial_port *port)
682{
683 struct usb_wwan_intf_private *data;
684 struct usb_wwan_port_private *portdata;
685 struct urb *urb;
686 int err;
687
688 portdata = usb_get_serial_port_data(port);
689 data = port->serial->private;
690 while ((urb = usb_get_from_anchor(&portdata->delayed))) {
691 err = usb_submit_urb(urb, GFP_ATOMIC);
Oliver Neukum16871dc2011-02-10 15:33:29 +0100692 if (!err) {
Matthew Garrett0d456192010-04-01 12:31:07 -0400693 data->in_flight++;
Oliver Neukum16871dc2011-02-10 15:33:29 +0100694 } else {
695 /* we have to throw away the rest */
696 do {
697 unbusy_queued_urb(urb, portdata);
698 //extremely dirty
699 atomic_dec(&port->serial->interface->dev.power.usage_count);
700 } while ((urb = usb_get_from_anchor(&portdata->delayed)));
701 break;
702 }
Matthew Garrett0d456192010-04-01 12:31:07 -0400703 }
704}
705
706int usb_wwan_resume(struct usb_serial *serial)
707{
708 int i, j;
709 struct usb_serial_port *port;
710 struct usb_wwan_intf_private *intfdata = serial->private;
711 struct usb_wwan_port_private *portdata;
712 struct urb *urb;
713 int err = 0;
714
715 dbg("%s entered", __func__);
716 /* get the interrupt URBs resubmitted unconditionally */
717 for (i = 0; i < serial->num_ports; i++) {
718 port = serial->port[i];
719 if (!port->interrupt_in_urb) {
720 dbg("%s: No interrupt URB for port %d", __func__, i);
721 continue;
722 }
723 err = usb_submit_urb(port->interrupt_in_urb, GFP_NOIO);
724 dbg("Submitted interrupt URB for port %d (result %d)", i, err);
725 if (err < 0) {
726 err("%s: Error %d for interrupt URB of port%d",
727 __func__, err, i);
728 goto err_out;
729 }
730 }
731
732 for (i = 0; i < serial->num_ports; i++) {
733 /* walk all ports */
734 port = serial->port[i];
735 portdata = usb_get_serial_port_data(port);
736
737 /* skip closed ports */
738 spin_lock_irq(&intfdata->susp_lock);
739 if (!portdata->opened) {
740 spin_unlock_irq(&intfdata->susp_lock);
741 continue;
742 }
743
744 for (j = 0; j < N_IN_URB; j++) {
745 urb = portdata->in_urbs[j];
746 err = usb_submit_urb(urb, GFP_ATOMIC);
747 if (err < 0) {
748 err("%s: Error %d for bulk URB %d",
749 __func__, err, i);
750 spin_unlock_irq(&intfdata->susp_lock);
751 goto err_out;
752 }
753 }
754 play_delayed(port);
755 spin_unlock_irq(&intfdata->susp_lock);
756 }
757 spin_lock_irq(&intfdata->susp_lock);
758 intfdata->suspended = 0;
759 spin_unlock_irq(&intfdata->susp_lock);
760err_out:
761 return err;
762}
763EXPORT_SYMBOL(usb_wwan_resume);
764#endif
765
766MODULE_AUTHOR(DRIVER_AUTHOR);
767MODULE_DESCRIPTION(DRIVER_DESC);
768MODULE_VERSION(DRIVER_VERSION);
769MODULE_LICENSE("GPL");
770
771module_param(debug, bool, S_IRUGO | S_IWUSR);
772MODULE_PARM_DESC(debug, "Debug messages");