blob: 59675cc7aa017e0bcce341a5367f2d551608ccc0 [file] [log] [blame]
xjb04a4022021-11-25 15:01:52 +08001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * cdc-acm.c
4 *
5 * Copyright (c) 1999 Armin Fuerst <fuerst@in.tum.de>
6 * Copyright (c) 1999 Pavel Machek <pavel@ucw.cz>
7 * Copyright (c) 1999 Johannes Erdfelt <johannes@erdfelt.com>
8 * Copyright (c) 2000 Vojtech Pavlik <vojtech@suse.cz>
9 * Copyright (c) 2004 Oliver Neukum <oliver@neukum.name>
10 * Copyright (c) 2005 David Kubicek <dave@awk.cz>
11 * Copyright (c) 2011 Johan Hovold <jhovold@gmail.com>
12 *
13 * USB Abstract Control Model driver for USB modems and ISDN adapters
14 *
15 * Sponsored by SuSE
16 */
17
18#undef DEBUG
19#undef VERBOSE_DEBUG
20
21#include <linux/kernel.h>
22#include <linux/sched/signal.h>
23#include <linux/errno.h>
24#include <linux/init.h>
25#include <linux/slab.h>
26#include <linux/log2.h>
27#include <linux/tty.h>
28#include <linux/serial.h>
29#include <linux/tty_driver.h>
30#include <linux/tty_flip.h>
31#include <linux/module.h>
32#include <linux/mutex.h>
33#include <linux/uaccess.h>
34#include <linux/usb.h>
35#include <linux/usb/cdc.h>
36#include <asm/byteorder.h>
37#include <asm/unaligned.h>
38#include <linux/idr.h>
39#include <linux/list.h>
40
41#include "cdc-acm.h"
42
43
44#define DRIVER_AUTHOR "Armin Fuerst, Pavel Machek, Johannes Erdfelt, Vojtech Pavlik, David Kubicek, Johan Hovold"
45#define DRIVER_DESC "USB Abstract Control Model driver for USB modems and ISDN adapters"
46
47static struct usb_driver acm_driver;
48static struct tty_driver *acm_tty_driver;
49
50static DEFINE_IDR(acm_minors);
51static DEFINE_MUTEX(acm_minors_lock);
52
53static void acm_tty_set_termios(struct tty_struct *tty,
54 struct ktermios *termios_old);
55
56/*
57 * acm_minors accessors
58 */
59
60/*
61 * Look up an ACM structure by minor. If found and not disconnected, increment
62 * its refcount and return it with its mutex held.
63 */
64static struct acm *acm_get_by_minor(unsigned int minor)
65{
66 struct acm *acm;
67
68 mutex_lock(&acm_minors_lock);
69 acm = idr_find(&acm_minors, minor);
70 if (acm) {
71 mutex_lock(&acm->mutex);
72 if (acm->disconnected) {
73 mutex_unlock(&acm->mutex);
74 acm = NULL;
75 } else {
76 tty_port_get(&acm->port);
77 mutex_unlock(&acm->mutex);
78 }
79 }
80 mutex_unlock(&acm_minors_lock);
81 return acm;
82}
83
84/*
85 * Try to find an available minor number and if found, associate it with 'acm'.
86 */
87static int acm_alloc_minor(struct acm *acm)
88{
89 int minor;
90
91 mutex_lock(&acm_minors_lock);
92 minor = idr_alloc(&acm_minors, acm, 0, ACM_TTY_MINORS, GFP_KERNEL);
93 mutex_unlock(&acm_minors_lock);
94
95 return minor;
96}
97
98/* Release the minor number associated with 'acm'. */
99static void acm_release_minor(struct acm *acm)
100{
101 mutex_lock(&acm_minors_lock);
102 idr_remove(&acm_minors, acm->minor);
103 mutex_unlock(&acm_minors_lock);
104}
105
106/*
107 * Functions for ACM control messages.
108 */
109
110static int acm_ctrl_msg(struct acm *acm, int request, int value,
111 void *buf, int len)
112{
113 int retval;
114
115 retval = usb_autopm_get_interface(acm->control);
116 if (retval)
117 return retval;
118
119 retval = usb_control_msg(acm->dev, usb_sndctrlpipe(acm->dev, 0),
120 request, USB_RT_ACM, value,
121 acm->control->altsetting[0].desc.bInterfaceNumber,
122 buf, len, 5000);
123
124 dev_dbg(&acm->control->dev,
125 "%s - rq 0x%02x, val %#x, len %#x, result %d\n",
126 __func__, request, value, len, retval);
127
128 usb_autopm_put_interface(acm->control);
129
130 return retval < 0 ? retval : 0;
131}
132
133/* devices aren't required to support these requests.
134 * the cdc acm descriptor tells whether they do...
135 */
136static inline int acm_set_control(struct acm *acm, int control)
137{
138 if (acm->quirks & QUIRK_CONTROL_LINE_STATE)
139 return -EOPNOTSUPP;
140
141 return acm_ctrl_msg(acm, USB_CDC_REQ_SET_CONTROL_LINE_STATE,
142 control, NULL, 0);
143}
144
145#define acm_set_line(acm, line) \
146 acm_ctrl_msg(acm, USB_CDC_REQ_SET_LINE_CODING, 0, line, sizeof *(line))
147#define acm_send_break(acm, ms) \
148 acm_ctrl_msg(acm, USB_CDC_REQ_SEND_BREAK, ms, NULL, 0)
149
150static void acm_kill_urbs(struct acm *acm)
151{
152 int i;
153
154 usb_kill_urb(acm->ctrlurb);
155 for (i = 0; i < ACM_NW; i++)
156 usb_kill_urb(acm->wb[i].urb);
157 for (i = 0; i < acm->rx_buflimit; i++)
158 usb_kill_urb(acm->read_urbs[i]);
159}
160
161/*
162 * Write buffer management.
163 * All of these assume proper locks taken by the caller.
164 */
165
166static int acm_wb_alloc(struct acm *acm)
167{
168 int i, wbn;
169 struct acm_wb *wb;
170
171 wbn = 0;
172 i = 0;
173 for (;;) {
174 wb = &acm->wb[wbn];
175 if (!wb->use) {
176 wb->use = 1;
177 wb->len = 0;
178 return wbn;
179 }
180 wbn = (wbn + 1) % ACM_NW;
181 if (++i >= ACM_NW)
182 return -1;
183 }
184}
185
186static int acm_wb_is_avail(struct acm *acm)
187{
188 int i, n;
189 unsigned long flags;
190
191 n = ACM_NW;
192 spin_lock_irqsave(&acm->write_lock, flags);
193 for (i = 0; i < ACM_NW; i++)
194 n -= acm->wb[i].use;
195 spin_unlock_irqrestore(&acm->write_lock, flags);
196 return n;
197}
198
199/*
200 * Finish write. Caller must hold acm->write_lock
201 */
202static void acm_write_done(struct acm *acm, struct acm_wb *wb)
203{
204 wb->use = 0;
205 acm->transmitting--;
206 usb_autopm_put_interface_async(acm->control);
207}
208
209/*
210 * Poke write.
211 *
212 * the caller is responsible for locking
213 */
214
215static int acm_start_wb(struct acm *acm, struct acm_wb *wb)
216{
217 int rc;
218
219 acm->transmitting++;
220
221 wb->urb->transfer_buffer = wb->buf;
222 wb->urb->transfer_dma = wb->dmah;
223 wb->urb->transfer_buffer_length = wb->len;
224 wb->urb->dev = acm->dev;
225
226 rc = usb_submit_urb(wb->urb, GFP_ATOMIC);
227 if (rc < 0) {
228 dev_err(&acm->data->dev,
229 "%s - usb_submit_urb(write bulk) failed: %d\n",
230 __func__, rc);
231 acm_write_done(acm, wb);
232 }
233 return rc;
234}
235
236/*
237 * attributes exported through sysfs
238 */
239static ssize_t bmCapabilities_show
240(struct device *dev, struct device_attribute *attr, char *buf)
241{
242 struct usb_interface *intf = to_usb_interface(dev);
243 struct acm *acm = usb_get_intfdata(intf);
244
245 return sprintf(buf, "%d", acm->ctrl_caps);
246}
247static DEVICE_ATTR_RO(bmCapabilities);
248
249static ssize_t wCountryCodes_show
250(struct device *dev, struct device_attribute *attr, char *buf)
251{
252 struct usb_interface *intf = to_usb_interface(dev);
253 struct acm *acm = usb_get_intfdata(intf);
254
255 memcpy(buf, acm->country_codes, acm->country_code_size);
256 return acm->country_code_size;
257}
258
259static DEVICE_ATTR_RO(wCountryCodes);
260
261static ssize_t iCountryCodeRelDate_show
262(struct device *dev, struct device_attribute *attr, char *buf)
263{
264 struct usb_interface *intf = to_usb_interface(dev);
265 struct acm *acm = usb_get_intfdata(intf);
266
267 return sprintf(buf, "%d", acm->country_rel_date);
268}
269
270static DEVICE_ATTR_RO(iCountryCodeRelDate);
271/*
272 * Interrupt handlers for various ACM device responses
273 */
274
275static void acm_process_notification(struct acm *acm, unsigned char *buf)
276{
277 int newctrl;
278 int difference;
279 unsigned long flags;
280 struct usb_cdc_notification *dr = (struct usb_cdc_notification *)buf;
281 unsigned char *data = buf + sizeof(struct usb_cdc_notification);
282
283 switch (dr->bNotificationType) {
284 case USB_CDC_NOTIFY_NETWORK_CONNECTION:
285 dev_dbg(&acm->control->dev,
286 "%s - network connection: %d\n", __func__, dr->wValue);
287 break;
288
289 case USB_CDC_NOTIFY_SERIAL_STATE:
290 if (le16_to_cpu(dr->wLength) != 2) {
291 dev_dbg(&acm->control->dev,
292 "%s - malformed serial state\n", __func__);
293 break;
294 }
295
296 newctrl = get_unaligned_le16(data);
297 dev_dbg(&acm->control->dev,
298 "%s - serial state: 0x%x\n", __func__, newctrl);
299
300 if (!acm->clocal && (acm->ctrlin & ~newctrl & ACM_CTRL_DCD)) {
301 dev_dbg(&acm->control->dev,
302 "%s - calling hangup\n", __func__);
303 tty_port_tty_hangup(&acm->port, false);
304 }
305
306 difference = acm->ctrlin ^ newctrl;
307 spin_lock_irqsave(&acm->read_lock, flags);
308 acm->ctrlin = newctrl;
309 acm->oldcount = acm->iocount;
310
311 if (difference & ACM_CTRL_DSR)
312 acm->iocount.dsr++;
313 if (difference & ACM_CTRL_DCD)
314 acm->iocount.dcd++;
315 if (newctrl & ACM_CTRL_BRK)
316 acm->iocount.brk++;
317 if (newctrl & ACM_CTRL_RI)
318 acm->iocount.rng++;
319 if (newctrl & ACM_CTRL_FRAMING)
320 acm->iocount.frame++;
321 if (newctrl & ACM_CTRL_PARITY)
322 acm->iocount.parity++;
323 if (newctrl & ACM_CTRL_OVERRUN)
324 acm->iocount.overrun++;
325 spin_unlock_irqrestore(&acm->read_lock, flags);
326
327 if (difference)
328 wake_up_all(&acm->wioctl);
329
330 break;
331
332 default:
333 dev_dbg(&acm->control->dev,
334 "%s - unknown notification %d received: index %d len %d\n",
335 __func__,
336 dr->bNotificationType, dr->wIndex, dr->wLength);
337 }
338}
339
340/* control interface reports status changes with "interrupt" transfers */
341static void acm_ctrl_irq(struct urb *urb)
342{
343 struct acm *acm = urb->context;
344 struct usb_cdc_notification *dr = urb->transfer_buffer;
345 unsigned int current_size = urb->actual_length;
346 unsigned int expected_size, copy_size, alloc_size;
347 int retval;
348 int status = urb->status;
349
350 switch (status) {
351 case 0:
352 /* success */
353 break;
354 case -ECONNRESET:
355 case -ENOENT:
356 case -ESHUTDOWN:
357 /* this urb is terminated, clean up */
358 dev_dbg(&acm->control->dev,
359 "%s - urb shutting down with status: %d\n",
360 __func__, status);
361 return;
362 default:
363 dev_dbg(&acm->control->dev,
364 "%s - nonzero urb status received: %d\n",
365 __func__, status);
366 goto exit;
367 }
368
369 usb_mark_last_busy(acm->dev);
370
371 if (acm->nb_index)
372 dr = (struct usb_cdc_notification *)acm->notification_buffer;
373
374 /* size = notification-header + (optional) data */
375 expected_size = sizeof(struct usb_cdc_notification) +
376 le16_to_cpu(dr->wLength);
377
378 if (current_size < expected_size) {
379 /* notification is transmitted fragmented, reassemble */
380 if (acm->nb_size < expected_size) {
381 if (acm->nb_size) {
382 kfree(acm->notification_buffer);
383 acm->nb_size = 0;
384 }
385 alloc_size = roundup_pow_of_two(expected_size);
386 /*
387 * kmalloc ensures a valid notification_buffer after a
388 * use of kfree in case the previous allocation was too
389 * small. Final freeing is done on disconnect.
390 */
391 acm->notification_buffer =
392 kmalloc(alloc_size, GFP_ATOMIC);
393 if (!acm->notification_buffer)
394 goto exit;
395 acm->nb_size = alloc_size;
396 }
397
398 copy_size = min(current_size,
399 expected_size - acm->nb_index);
400
401 memcpy(&acm->notification_buffer[acm->nb_index],
402 urb->transfer_buffer, copy_size);
403 acm->nb_index += copy_size;
404 current_size = acm->nb_index;
405 }
406
407 if (current_size >= expected_size) {
408 /* notification complete */
409 acm_process_notification(acm, (unsigned char *)dr);
410 acm->nb_index = 0;
411 }
412
413exit:
414 retval = usb_submit_urb(urb, GFP_ATOMIC);
415 if (retval && retval != -EPERM)
416 dev_err(&acm->control->dev,
417 "%s - usb_submit_urb failed: %d\n", __func__, retval);
418}
419
420static int acm_submit_read_urb(struct acm *acm, int index, gfp_t mem_flags)
421{
422 int res;
423
424 if (!test_and_clear_bit(index, &acm->read_urbs_free))
425 return 0;
426
427 res = usb_submit_urb(acm->read_urbs[index], mem_flags);
428 if (res) {
429 if (res != -EPERM && res != -ENODEV) {
430 dev_err(&acm->data->dev,
431 "urb %d failed submission with %d\n",
432 index, res);
433 }
434 set_bit(index, &acm->read_urbs_free);
435 return res;
436 } else {
437 dev_vdbg(&acm->data->dev, "submitted urb %d\n", index);
438 }
439
440 return 0;
441}
442
443static int acm_submit_read_urbs(struct acm *acm, gfp_t mem_flags)
444{
445 int res;
446 int i;
447
448 for (i = 0; i < acm->rx_buflimit; ++i) {
449 res = acm_submit_read_urb(acm, i, mem_flags);
450 if (res)
451 return res;
452 }
453
454 return 0;
455}
456
457static void acm_process_read_urb(struct acm *acm, struct urb *urb)
458{
459 if (!urb->actual_length)
460 return;
461
462 tty_insert_flip_string(&acm->port, urb->transfer_buffer,
463 urb->actual_length);
464 tty_flip_buffer_push(&acm->port);
465}
466
467static void acm_read_bulk_callback(struct urb *urb)
468{
469 struct acm_rb *rb = urb->context;
470 struct acm *acm = rb->instance;
471 unsigned long flags;
472 int status = urb->status;
473 bool stopped = false;
474 bool stalled = false;
475
476 dev_vdbg(&acm->data->dev, "got urb %d, len %d, status %d\n",
477 rb->index, urb->actual_length, status);
478
479 if (!acm->dev) {
480 dev_dbg(&acm->data->dev, "%s - disconnected\n", __func__);
481 return;
482 }
483
484 switch (status) {
485 case 0:
486 usb_mark_last_busy(acm->dev);
487 acm_process_read_urb(acm, urb);
488 break;
489 case -EPIPE:
490 set_bit(EVENT_RX_STALL, &acm->flags);
491 stalled = true;
492 break;
493 case -ENOENT:
494 case -ECONNRESET:
495 case -ESHUTDOWN:
496 dev_dbg(&acm->data->dev,
497 "%s - urb shutting down with status: %d\n",
498 __func__, status);
499 stopped = true;
500 break;
501 default:
502 dev_dbg(&acm->data->dev,
503 "%s - nonzero urb status received: %d\n",
504 __func__, status);
505 break;
506 }
507
508 /*
509 * Make sure URB processing is done before marking as free to avoid
510 * racing with unthrottle() on another CPU. Matches the barriers
511 * implied by the test_and_clear_bit() in acm_submit_read_urb().
512 */
513 smp_mb__before_atomic();
514 set_bit(rb->index, &acm->read_urbs_free);
515 /*
516 * Make sure URB is marked as free before checking the throttled flag
517 * to avoid racing with unthrottle() on another CPU. Matches the
518 * smp_mb() in unthrottle().
519 */
520 smp_mb__after_atomic();
521
522 if (stopped || stalled) {
523 if (stalled)
524 schedule_work(&acm->work);
525 return;
526 }
527
528 /* throttle device if requested by tty */
529 spin_lock_irqsave(&acm->read_lock, flags);
530 acm->throttled = acm->throttle_req;
531 if (!acm->throttled) {
532 spin_unlock_irqrestore(&acm->read_lock, flags);
533 acm_submit_read_urb(acm, rb->index, GFP_ATOMIC);
534 } else {
535 spin_unlock_irqrestore(&acm->read_lock, flags);
536 }
537}
538
539/* data interface wrote those outgoing bytes */
540static void acm_write_bulk(struct urb *urb)
541{
542 struct acm_wb *wb = urb->context;
543 struct acm *acm = wb->instance;
544 unsigned long flags;
545 int status = urb->status;
546
547 if (status || (urb->actual_length != urb->transfer_buffer_length))
548 dev_vdbg(&acm->data->dev, "wrote len %d/%d, status %d\n",
549 urb->actual_length,
550 urb->transfer_buffer_length,
551 status);
552
553 spin_lock_irqsave(&acm->write_lock, flags);
554 acm_write_done(acm, wb);
555 spin_unlock_irqrestore(&acm->write_lock, flags);
556 set_bit(EVENT_TTY_WAKEUP, &acm->flags);
557 schedule_work(&acm->work);
558}
559
560static void acm_softint(struct work_struct *work)
561{
562 int i;
563 struct acm *acm = container_of(work, struct acm, work);
564
565 if (test_bit(EVENT_RX_STALL, &acm->flags)) {
566 if (!(usb_autopm_get_interface(acm->data))) {
567 for (i = 0; i < acm->rx_buflimit; i++)
568 usb_kill_urb(acm->read_urbs[i]);
569 usb_clear_halt(acm->dev, acm->in);
570 acm_submit_read_urbs(acm, GFP_KERNEL);
571 usb_autopm_put_interface(acm->data);
572 }
573 clear_bit(EVENT_RX_STALL, &acm->flags);
574 }
575
576 if (test_and_clear_bit(EVENT_TTY_WAKEUP, &acm->flags))
577 tty_port_tty_wakeup(&acm->port);
578}
579
580/*
581 * TTY handlers
582 */
583
584static int acm_tty_install(struct tty_driver *driver, struct tty_struct *tty)
585{
586 struct acm *acm;
587 int retval;
588
589 acm = acm_get_by_minor(tty->index);
590 if (!acm)
591 return -ENODEV;
592
593 retval = tty_standard_install(driver, tty);
594 if (retval)
595 goto error_init_termios;
596
597 /*
598 * Suppress initial echoing for some devices which might send data
599 * immediately after acm driver has been installed.
600 */
601 if (acm->quirks & DISABLE_ECHO)
602 tty->termios.c_lflag &= ~ECHO;
603
604 tty->driver_data = acm;
605
606 return 0;
607
608error_init_termios:
609 tty_port_put(&acm->port);
610 return retval;
611}
612
613static int acm_tty_open(struct tty_struct *tty, struct file *filp)
614{
615 struct acm *acm = tty->driver_data;
616
617 return tty_port_open(&acm->port, tty, filp);
618}
619
620static void acm_port_dtr_rts(struct tty_port *port, int raise)
621{
622 struct acm *acm = container_of(port, struct acm, port);
623 int val;
624 int res;
625
626 if (raise)
627 val = ACM_CTRL_DTR | ACM_CTRL_RTS;
628 else
629 val = 0;
630
631 /* FIXME: add missing ctrlout locking throughout driver */
632 acm->ctrlout = val;
633
634 res = acm_set_control(acm, val);
635 if (res && (acm->ctrl_caps & USB_CDC_CAP_LINE))
636 dev_err(&acm->control->dev, "failed to set dtr/rts\n");
637}
638
639static int acm_port_activate(struct tty_port *port, struct tty_struct *tty)
640{
641 struct acm *acm = container_of(port, struct acm, port);
642 int retval = -ENODEV;
643 int i;
644
645 mutex_lock(&acm->mutex);
646 if (acm->disconnected)
647 goto disconnected;
648
649 retval = usb_autopm_get_interface(acm->control);
650 if (retval)
651 goto error_get_interface;
652
653 /*
654 * FIXME: Why do we need this? Allocating 64K of physically contiguous
655 * memory is really nasty...
656 */
657 set_bit(TTY_NO_WRITE_SPLIT, &tty->flags);
658 acm->control->needs_remote_wakeup = 1;
659
660 acm->ctrlurb->dev = acm->dev;
661 retval = usb_submit_urb(acm->ctrlurb, GFP_KERNEL);
662 if (retval) {
663 dev_err(&acm->control->dev,
664 "%s - usb_submit_urb(ctrl irq) failed\n", __func__);
665 goto error_submit_urb;
666 }
667
668 acm_tty_set_termios(tty, NULL);
669
670 /*
671 * Unthrottle device in case the TTY was closed while throttled.
672 */
673 spin_lock_irq(&acm->read_lock);
674 acm->throttled = 0;
675 acm->throttle_req = 0;
676 spin_unlock_irq(&acm->read_lock);
677
678 retval = acm_submit_read_urbs(acm, GFP_KERNEL);
679 if (retval)
680 goto error_submit_read_urbs;
681
682 usb_autopm_put_interface(acm->control);
683
684 mutex_unlock(&acm->mutex);
685
686 return 0;
687
688error_submit_read_urbs:
689 for (i = 0; i < acm->rx_buflimit; i++)
690 usb_kill_urb(acm->read_urbs[i]);
691 usb_kill_urb(acm->ctrlurb);
692error_submit_urb:
693 usb_autopm_put_interface(acm->control);
694error_get_interface:
695disconnected:
696 mutex_unlock(&acm->mutex);
697
698 return usb_translate_errors(retval);
699}
700
701static void acm_port_destruct(struct tty_port *port)
702{
703 struct acm *acm = container_of(port, struct acm, port);
704
705 acm_release_minor(acm);
706 usb_put_intf(acm->control);
707 kfree(acm->country_codes);
708 kfree(acm);
709}
710
711static void acm_port_shutdown(struct tty_port *port)
712{
713 struct acm *acm = container_of(port, struct acm, port);
714 struct urb *urb;
715 struct acm_wb *wb;
716
717 /*
718 * Need to grab write_lock to prevent race with resume, but no need to
719 * hold it due to the tty-port initialised flag.
720 */
721 spin_lock_irq(&acm->write_lock);
722 spin_unlock_irq(&acm->write_lock);
723
724 usb_autopm_get_interface_no_resume(acm->control);
725 acm->control->needs_remote_wakeup = 0;
726 usb_autopm_put_interface(acm->control);
727
728 for (;;) {
729 urb = usb_get_from_anchor(&acm->delayed);
730 if (!urb)
731 break;
732 wb = urb->context;
733 wb->use = 0;
734 usb_autopm_put_interface_async(acm->control);
735 }
736
737 acm_kill_urbs(acm);
738}
739
740static void acm_tty_cleanup(struct tty_struct *tty)
741{
742 struct acm *acm = tty->driver_data;
743
744 tty_port_put(&acm->port);
745}
746
747static void acm_tty_hangup(struct tty_struct *tty)
748{
749 struct acm *acm = tty->driver_data;
750
751 tty_port_hangup(&acm->port);
752}
753
754static void acm_tty_close(struct tty_struct *tty, struct file *filp)
755{
756 struct acm *acm = tty->driver_data;
757
758 tty_port_close(&acm->port, tty, filp);
759}
760
761static int acm_tty_write(struct tty_struct *tty,
762 const unsigned char *buf, int count)
763{
764 struct acm *acm = tty->driver_data;
765 int stat;
766 unsigned long flags;
767 int wbn;
768 struct acm_wb *wb;
769
770 if (!count)
771 return 0;
772
773 dev_vdbg(&acm->data->dev, "%d bytes from tty layer\n", count);
774
775 spin_lock_irqsave(&acm->write_lock, flags);
776 wbn = acm_wb_alloc(acm);
777 if (wbn < 0) {
778 spin_unlock_irqrestore(&acm->write_lock, flags);
779 return 0;
780 }
781 wb = &acm->wb[wbn];
782
783 if (!acm->dev) {
784 wb->use = 0;
785 spin_unlock_irqrestore(&acm->write_lock, flags);
786 return -ENODEV;
787 }
788
789 count = (count > acm->writesize) ? acm->writesize : count;
790 dev_vdbg(&acm->data->dev, "writing %d bytes\n", count);
791 memcpy(wb->buf, buf, count);
792 wb->len = count;
793
794 stat = usb_autopm_get_interface_async(acm->control);
795 if (stat) {
796 wb->use = 0;
797 spin_unlock_irqrestore(&acm->write_lock, flags);
798 return stat;
799 }
800
801 if (acm->susp_count) {
802 usb_anchor_urb(wb->urb, &acm->delayed);
803 spin_unlock_irqrestore(&acm->write_lock, flags);
804 return count;
805 }
806
807 stat = acm_start_wb(acm, wb);
808 spin_unlock_irqrestore(&acm->write_lock, flags);
809
810 if (stat < 0)
811 return stat;
812 return count;
813}
814
815static int acm_tty_write_room(struct tty_struct *tty)
816{
817 struct acm *acm = tty->driver_data;
818 /*
819 * Do not let the line discipline to know that we have a reserve,
820 * or it might get too enthusiastic.
821 */
822 return acm_wb_is_avail(acm) ? acm->writesize : 0;
823}
824
825static int acm_tty_chars_in_buffer(struct tty_struct *tty)
826{
827 struct acm *acm = tty->driver_data;
828 /*
829 * if the device was unplugged then any remaining characters fell out
830 * of the connector ;)
831 */
832 if (acm->disconnected)
833 return 0;
834 /*
835 * This is inaccurate (overcounts), but it works.
836 */
837 return (ACM_NW - acm_wb_is_avail(acm)) * acm->writesize;
838}
839
840static void acm_tty_throttle(struct tty_struct *tty)
841{
842 struct acm *acm = tty->driver_data;
843
844 spin_lock_irq(&acm->read_lock);
845 acm->throttle_req = 1;
846 spin_unlock_irq(&acm->read_lock);
847}
848
849static void acm_tty_unthrottle(struct tty_struct *tty)
850{
851 struct acm *acm = tty->driver_data;
852 unsigned int was_throttled;
853
854 spin_lock_irq(&acm->read_lock);
855 was_throttled = acm->throttled;
856 acm->throttled = 0;
857 acm->throttle_req = 0;
858 spin_unlock_irq(&acm->read_lock);
859
860 /* Matches the smp_mb__after_atomic() in acm_read_bulk_callback(). */
861 smp_mb();
862
863 if (was_throttled)
864 acm_submit_read_urbs(acm, GFP_KERNEL);
865}
866
867static int acm_tty_break_ctl(struct tty_struct *tty, int state)
868{
869 struct acm *acm = tty->driver_data;
870 int retval;
871
872 retval = acm_send_break(acm, state ? 0xffff : 0);
873 if (retval < 0)
874 dev_dbg(&acm->control->dev,
875 "%s - send break failed\n", __func__);
876 return retval;
877}
878
879static int acm_tty_tiocmget(struct tty_struct *tty)
880{
881 struct acm *acm = tty->driver_data;
882
883 return (acm->ctrlout & ACM_CTRL_DTR ? TIOCM_DTR : 0) |
884 (acm->ctrlout & ACM_CTRL_RTS ? TIOCM_RTS : 0) |
885 (acm->ctrlin & ACM_CTRL_DSR ? TIOCM_DSR : 0) |
886 (acm->ctrlin & ACM_CTRL_RI ? TIOCM_RI : 0) |
887 (acm->ctrlin & ACM_CTRL_DCD ? TIOCM_CD : 0) |
888 TIOCM_CTS;
889}
890
891static int acm_tty_tiocmset(struct tty_struct *tty,
892 unsigned int set, unsigned int clear)
893{
894 struct acm *acm = tty->driver_data;
895 unsigned int newctrl;
896
897 newctrl = acm->ctrlout;
898 set = (set & TIOCM_DTR ? ACM_CTRL_DTR : 0) |
899 (set & TIOCM_RTS ? ACM_CTRL_RTS : 0);
900 clear = (clear & TIOCM_DTR ? ACM_CTRL_DTR : 0) |
901 (clear & TIOCM_RTS ? ACM_CTRL_RTS : 0);
902
903 newctrl = (newctrl & ~clear) | set;
904
905 if (acm->ctrlout == newctrl)
906 return 0;
907 return acm_set_control(acm, acm->ctrlout = newctrl);
908}
909
910static int get_serial_info(struct acm *acm, struct serial_struct __user *info)
911{
912 struct serial_struct tmp;
913
914 memset(&tmp, 0, sizeof(tmp));
915 tmp.xmit_fifo_size = acm->writesize;
916 tmp.baud_base = le32_to_cpu(acm->line.dwDTERate);
917 tmp.close_delay = acm->port.close_delay / 10;
918 tmp.closing_wait = acm->port.closing_wait == ASYNC_CLOSING_WAIT_NONE ?
919 ASYNC_CLOSING_WAIT_NONE :
920 acm->port.closing_wait / 10;
921
922 if (copy_to_user(info, &tmp, sizeof(tmp)))
923 return -EFAULT;
924 else
925 return 0;
926}
927
928static int set_serial_info(struct acm *acm,
929 struct serial_struct __user *newinfo)
930{
931 struct serial_struct new_serial;
932 unsigned int closing_wait, close_delay;
933 int retval = 0;
934
935 if (copy_from_user(&new_serial, newinfo, sizeof(new_serial)))
936 return -EFAULT;
937
938 close_delay = new_serial.close_delay * 10;
939 closing_wait = new_serial.closing_wait == ASYNC_CLOSING_WAIT_NONE ?
940 ASYNC_CLOSING_WAIT_NONE : new_serial.closing_wait * 10;
941
942 mutex_lock(&acm->port.mutex);
943
944 if (!capable(CAP_SYS_ADMIN)) {
945 if ((close_delay != acm->port.close_delay) ||
946 (closing_wait != acm->port.closing_wait))
947 retval = -EPERM;
948 else
949 retval = -EOPNOTSUPP;
950 } else {
951 acm->port.close_delay = close_delay;
952 acm->port.closing_wait = closing_wait;
953 }
954
955 mutex_unlock(&acm->port.mutex);
956 return retval;
957}
958
959static int wait_serial_change(struct acm *acm, unsigned long arg)
960{
961 int rv = 0;
962 DECLARE_WAITQUEUE(wait, current);
963 struct async_icount old, new;
964
965 do {
966 spin_lock_irq(&acm->read_lock);
967 old = acm->oldcount;
968 new = acm->iocount;
969 acm->oldcount = new;
970 spin_unlock_irq(&acm->read_lock);
971
972 if ((arg & TIOCM_DSR) &&
973 old.dsr != new.dsr)
974 break;
975 if ((arg & TIOCM_CD) &&
976 old.dcd != new.dcd)
977 break;
978 if ((arg & TIOCM_RI) &&
979 old.rng != new.rng)
980 break;
981
982 add_wait_queue(&acm->wioctl, &wait);
983 set_current_state(TASK_INTERRUPTIBLE);
984 schedule();
985 remove_wait_queue(&acm->wioctl, &wait);
986 if (acm->disconnected) {
987 if (arg & TIOCM_CD)
988 break;
989 else
990 rv = -ENODEV;
991 } else {
992 if (signal_pending(current))
993 rv = -ERESTARTSYS;
994 }
995 } while (!rv);
996
997
998
999 return rv;
1000}
1001
1002static int acm_tty_get_icount(struct tty_struct *tty,
1003 struct serial_icounter_struct *icount)
1004{
1005 struct acm *acm = tty->driver_data;
1006
1007 icount->dsr = acm->iocount.dsr;
1008 icount->rng = acm->iocount.rng;
1009 icount->dcd = acm->iocount.dcd;
1010 icount->frame = acm->iocount.frame;
1011 icount->overrun = acm->iocount.overrun;
1012 icount->parity = acm->iocount.parity;
1013 icount->brk = acm->iocount.brk;
1014
1015 return 0;
1016}
1017
1018static int acm_tty_ioctl(struct tty_struct *tty,
1019 unsigned int cmd, unsigned long arg)
1020{
1021 struct acm *acm = tty->driver_data;
1022 int rv = -ENOIOCTLCMD;
1023
1024 switch (cmd) {
1025 case TIOCGSERIAL: /* gets serial port data */
1026 rv = get_serial_info(acm, (struct serial_struct __user *) arg);
1027 break;
1028 case TIOCSSERIAL:
1029 rv = set_serial_info(acm, (struct serial_struct __user *) arg);
1030 break;
1031 case TIOCMIWAIT:
1032 rv = usb_autopm_get_interface(acm->control);
1033 if (rv < 0) {
1034 rv = -EIO;
1035 break;
1036 }
1037 rv = wait_serial_change(acm, arg);
1038 usb_autopm_put_interface(acm->control);
1039 break;
1040 }
1041
1042 return rv;
1043}
1044
1045static void acm_tty_set_termios(struct tty_struct *tty,
1046 struct ktermios *termios_old)
1047{
1048 struct acm *acm = tty->driver_data;
1049 struct ktermios *termios = &tty->termios;
1050 struct usb_cdc_line_coding newline;
1051 int newctrl = acm->ctrlout;
1052
1053 newline.dwDTERate = cpu_to_le32(tty_get_baud_rate(tty));
1054 newline.bCharFormat = termios->c_cflag & CSTOPB ? 2 : 0;
1055 newline.bParityType = termios->c_cflag & PARENB ?
1056 (termios->c_cflag & PARODD ? 1 : 2) +
1057 (termios->c_cflag & CMSPAR ? 2 : 0) : 0;
1058 switch (termios->c_cflag & CSIZE) {
1059 case CS5:
1060 newline.bDataBits = 5;
1061 break;
1062 case CS6:
1063 newline.bDataBits = 6;
1064 break;
1065 case CS7:
1066 newline.bDataBits = 7;
1067 break;
1068 case CS8:
1069 default:
1070 newline.bDataBits = 8;
1071 break;
1072 }
1073 /* FIXME: Needs to clear unsupported bits in the termios */
1074 acm->clocal = ((termios->c_cflag & CLOCAL) != 0);
1075
1076 if (C_BAUD(tty) == B0) {
1077 newline.dwDTERate = acm->line.dwDTERate;
1078 newctrl &= ~ACM_CTRL_DTR;
1079 } else if (termios_old && (termios_old->c_cflag & CBAUD) == B0) {
1080 newctrl |= ACM_CTRL_DTR;
1081 }
1082
1083 if (newctrl != acm->ctrlout)
1084 acm_set_control(acm, acm->ctrlout = newctrl);
1085
1086 if (memcmp(&acm->line, &newline, sizeof newline)) {
1087 memcpy(&acm->line, &newline, sizeof newline);
1088 dev_dbg(&acm->control->dev, "%s - set line: %d %d %d %d\n",
1089 __func__,
1090 le32_to_cpu(newline.dwDTERate),
1091 newline.bCharFormat, newline.bParityType,
1092 newline.bDataBits);
1093 acm_set_line(acm, &acm->line);
1094 }
1095}
1096
1097static const struct tty_port_operations acm_port_ops = {
1098 .dtr_rts = acm_port_dtr_rts,
1099 .shutdown = acm_port_shutdown,
1100 .activate = acm_port_activate,
1101 .destruct = acm_port_destruct,
1102};
1103
1104/*
1105 * USB probe and disconnect routines.
1106 */
1107
1108/* Little helpers: write/read buffers free */
1109static void acm_write_buffers_free(struct acm *acm)
1110{
1111 int i;
1112 struct acm_wb *wb;
1113
1114 for (wb = &acm->wb[0], i = 0; i < ACM_NW; i++, wb++)
1115 usb_free_coherent(acm->dev, acm->writesize, wb->buf, wb->dmah);
1116}
1117
1118static void acm_read_buffers_free(struct acm *acm)
1119{
1120 int i;
1121
1122 for (i = 0; i < acm->rx_buflimit; i++)
1123 usb_free_coherent(acm->dev, acm->readsize,
1124 acm->read_buffers[i].base, acm->read_buffers[i].dma);
1125}
1126
1127/* Little helper: write buffers allocate */
1128static int acm_write_buffers_alloc(struct acm *acm)
1129{
1130 int i;
1131 struct acm_wb *wb;
1132
1133 for (wb = &acm->wb[0], i = 0; i < ACM_NW; i++, wb++) {
1134 wb->buf = usb_alloc_coherent(acm->dev, acm->writesize, GFP_KERNEL,
1135 &wb->dmah);
1136 if (!wb->buf) {
1137 while (i != 0) {
1138 --i;
1139 --wb;
1140 usb_free_coherent(acm->dev, acm->writesize,
1141 wb->buf, wb->dmah);
1142 }
1143 return -ENOMEM;
1144 }
1145 }
1146 return 0;
1147}
1148
1149static int acm_probe(struct usb_interface *intf,
1150 const struct usb_device_id *id)
1151{
1152 struct usb_cdc_union_desc *union_header = NULL;
1153 struct usb_cdc_call_mgmt_descriptor *cmgmd = NULL;
1154 unsigned char *buffer = intf->altsetting->extra;
1155 int buflen = intf->altsetting->extralen;
1156 struct usb_interface *control_interface;
1157 struct usb_interface *data_interface;
1158 struct usb_endpoint_descriptor *epctrl = NULL;
1159 struct usb_endpoint_descriptor *epread = NULL;
1160 struct usb_endpoint_descriptor *epwrite = NULL;
1161 struct usb_device *usb_dev = interface_to_usbdev(intf);
1162 struct usb_cdc_parsed_header h;
1163 struct acm *acm;
1164 int minor;
1165 int ctrlsize, readsize;
1166 u8 *buf;
1167 int call_intf_num = -1;
1168 int data_intf_num = -1;
1169 unsigned long quirks;
1170 int num_rx_buf;
1171 int i;
1172 int combined_interfaces = 0;
1173 struct device *tty_dev;
1174 int rv = -ENOMEM;
1175 int res;
1176
1177 /* normal quirks */
1178 quirks = (unsigned long)id->driver_info;
1179
1180 if (quirks == IGNORE_DEVICE)
1181 return -ENODEV;
1182
1183 memset(&h, 0x00, sizeof(struct usb_cdc_parsed_header));
1184
1185 num_rx_buf = (quirks == SINGLE_RX_URB) ? 1 : ACM_NR;
1186
1187 /* handle quirks deadly to normal probing*/
1188 if (quirks == NO_UNION_NORMAL) {
1189 data_interface = usb_ifnum_to_if(usb_dev, 1);
1190 control_interface = usb_ifnum_to_if(usb_dev, 0);
1191 /* we would crash */
1192 if (!data_interface || !control_interface)
1193 return -ENODEV;
1194 goto skip_normal_probe;
1195 }
1196
1197 /* normal probing*/
1198 if (!buffer) {
1199 dev_err(&intf->dev, "Weird descriptor references\n");
1200 return -EINVAL;
1201 }
1202
1203 if (!intf->cur_altsetting)
1204 return -EINVAL;
1205
1206 if (!buflen) {
1207 if (intf->cur_altsetting->endpoint &&
1208 intf->cur_altsetting->endpoint->extralen &&
1209 intf->cur_altsetting->endpoint->extra) {
1210 dev_dbg(&intf->dev,
1211 "Seeking extra descriptors on endpoint\n");
1212 buflen = intf->cur_altsetting->endpoint->extralen;
1213 buffer = intf->cur_altsetting->endpoint->extra;
1214 } else {
1215 dev_err(&intf->dev,
1216 "Zero length descriptor references\n");
1217 return -EINVAL;
1218 }
1219 }
1220
1221 cdc_parse_cdc_header(&h, intf, buffer, buflen);
1222 union_header = h.usb_cdc_union_desc;
1223 cmgmd = h.usb_cdc_call_mgmt_descriptor;
1224 if (cmgmd)
1225 call_intf_num = cmgmd->bDataInterface;
1226
1227 if (!union_header) {
1228 if (call_intf_num > 0) {
1229 dev_dbg(&intf->dev, "No union descriptor, using call management descriptor\n");
1230 /* quirks for Droids MuIn LCD */
1231 if (quirks & NO_DATA_INTERFACE) {
1232 data_interface = usb_ifnum_to_if(usb_dev, 0);
1233 } else {
1234 data_intf_num = call_intf_num;
1235 data_interface = usb_ifnum_to_if(usb_dev, data_intf_num);
1236 }
1237 control_interface = intf;
1238 } else {
1239 if (intf->cur_altsetting->desc.bNumEndpoints != 3) {
1240 dev_dbg(&intf->dev,"No union descriptor, giving up\n");
1241 return -ENODEV;
1242 } else {
1243 dev_warn(&intf->dev,"No union descriptor, testing for castrated device\n");
1244 combined_interfaces = 1;
1245 control_interface = data_interface = intf;
1246 goto look_for_collapsed_interface;
1247 }
1248 }
1249 } else {
1250 data_intf_num = union_header->bSlaveInterface0;
1251 control_interface = usb_ifnum_to_if(usb_dev, union_header->bMasterInterface0);
1252 data_interface = usb_ifnum_to_if(usb_dev, data_intf_num);
1253 }
1254
1255 if (!control_interface || !data_interface) {
1256 dev_dbg(&intf->dev, "no interfaces\n");
1257 return -ENODEV;
1258 }
1259 if (!data_interface->cur_altsetting || !control_interface->cur_altsetting)
1260 return -ENODEV;
1261
1262 if (data_intf_num != call_intf_num)
1263 dev_dbg(&intf->dev, "Separate call control interface. That is not fully supported.\n");
1264
1265 if (control_interface == data_interface) {
1266 /* some broken devices designed for windows work this way */
1267 dev_warn(&intf->dev,"Control and data interfaces are not separated!\n");
1268 combined_interfaces = 1;
1269 /* a popular other OS doesn't use it */
1270 quirks |= NO_CAP_LINE;
1271 if (data_interface->cur_altsetting->desc.bNumEndpoints != 3) {
1272 dev_err(&intf->dev, "This needs exactly 3 endpoints\n");
1273 return -EINVAL;
1274 }
1275look_for_collapsed_interface:
1276 res = usb_find_common_endpoints(data_interface->cur_altsetting,
1277 &epread, &epwrite, &epctrl, NULL);
1278 if (res)
1279 return res;
1280
1281 goto made_compressed_probe;
1282 }
1283
1284skip_normal_probe:
1285
1286 /*workaround for switched interfaces */
1287 if (data_interface->cur_altsetting->desc.bInterfaceClass
1288 != CDC_DATA_INTERFACE_TYPE) {
1289 if (control_interface->cur_altsetting->desc.bInterfaceClass
1290 == CDC_DATA_INTERFACE_TYPE) {
1291 dev_dbg(&intf->dev,
1292 "Your device has switched interfaces.\n");
1293 swap(control_interface, data_interface);
1294 } else {
1295 return -EINVAL;
1296 }
1297 }
1298
1299 /* Accept probe requests only for the control interface */
1300 if (!combined_interfaces && intf != control_interface)
1301 return -ENODEV;
1302
1303 if (!combined_interfaces && usb_interface_claimed(data_interface)) {
1304 /* valid in this context */
1305 dev_dbg(&intf->dev, "The data interface isn't available\n");
1306 return -EBUSY;
1307 }
1308
1309
1310 if (data_interface->cur_altsetting->desc.bNumEndpoints < 2 ||
1311 control_interface->cur_altsetting->desc.bNumEndpoints == 0)
1312 return -EINVAL;
1313
1314 epctrl = &control_interface->cur_altsetting->endpoint[0].desc;
1315 epread = &data_interface->cur_altsetting->endpoint[0].desc;
1316 epwrite = &data_interface->cur_altsetting->endpoint[1].desc;
1317
1318
1319 /* workaround for switched endpoints */
1320 if (!usb_endpoint_dir_in(epread)) {
1321 /* descriptors are swapped */
1322 dev_dbg(&intf->dev,
1323 "The data interface has switched endpoints\n");
1324 swap(epread, epwrite);
1325 }
1326made_compressed_probe:
1327 dev_dbg(&intf->dev, "interfaces are valid\n");
1328
1329 acm = kzalloc(sizeof(struct acm), GFP_KERNEL);
1330 if (acm == NULL)
1331 goto alloc_fail;
1332
1333 tty_port_init(&acm->port);
1334 acm->port.ops = &acm_port_ops;
1335
1336 ctrlsize = usb_endpoint_maxp(epctrl);
1337 readsize = usb_endpoint_maxp(epread) *
1338 (quirks == SINGLE_RX_URB ? 1 : 2);
1339 acm->combined_interfaces = combined_interfaces;
1340 acm->writesize = usb_endpoint_maxp(epwrite) * 20;
1341 acm->control = control_interface;
1342 acm->data = data_interface;
1343
1344 usb_get_intf(acm->control); /* undone in destruct() */
1345
1346 minor = acm_alloc_minor(acm);
1347 if (minor < 0)
1348 goto alloc_fail1;
1349
1350 acm->minor = minor;
1351 acm->dev = usb_dev;
1352 if (h.usb_cdc_acm_descriptor)
1353 acm->ctrl_caps = h.usb_cdc_acm_descriptor->bmCapabilities;
1354 if (quirks & NO_CAP_LINE)
1355 acm->ctrl_caps &= ~USB_CDC_CAP_LINE;
1356 acm->ctrlsize = ctrlsize;
1357 acm->readsize = readsize;
1358 acm->rx_buflimit = num_rx_buf;
1359 INIT_WORK(&acm->work, acm_softint);
1360 init_waitqueue_head(&acm->wioctl);
1361 spin_lock_init(&acm->write_lock);
1362 spin_lock_init(&acm->read_lock);
1363 mutex_init(&acm->mutex);
1364 if (usb_endpoint_xfer_int(epread)) {
1365 acm->bInterval = epread->bInterval;
1366 acm->in = usb_rcvintpipe(usb_dev, epread->bEndpointAddress);
1367 } else {
1368 acm->in = usb_rcvbulkpipe(usb_dev, epread->bEndpointAddress);
1369 }
1370 if (usb_endpoint_xfer_int(epwrite))
1371 acm->out = usb_sndintpipe(usb_dev, epwrite->bEndpointAddress);
1372 else
1373 acm->out = usb_sndbulkpipe(usb_dev, epwrite->bEndpointAddress);
1374 init_usb_anchor(&acm->delayed);
1375 acm->quirks = quirks;
1376
1377 buf = usb_alloc_coherent(usb_dev, ctrlsize, GFP_KERNEL, &acm->ctrl_dma);
1378 if (!buf)
1379 goto alloc_fail1;
1380 acm->ctrl_buffer = buf;
1381
1382 if (acm_write_buffers_alloc(acm) < 0)
1383 goto alloc_fail2;
1384
1385 acm->ctrlurb = usb_alloc_urb(0, GFP_KERNEL);
1386 if (!acm->ctrlurb)
1387 goto alloc_fail3;
1388
1389 for (i = 0; i < num_rx_buf; i++) {
1390 struct acm_rb *rb = &(acm->read_buffers[i]);
1391 struct urb *urb;
1392
1393 rb->base = usb_alloc_coherent(acm->dev, readsize, GFP_KERNEL,
1394 &rb->dma);
1395 if (!rb->base)
1396 goto alloc_fail4;
1397 rb->index = i;
1398 rb->instance = acm;
1399
1400 urb = usb_alloc_urb(0, GFP_KERNEL);
1401 if (!urb)
1402 goto alloc_fail4;
1403
1404 urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1405 urb->transfer_dma = rb->dma;
1406 if (usb_endpoint_xfer_int(epread))
1407 usb_fill_int_urb(urb, acm->dev, acm->in, rb->base,
1408 acm->readsize,
1409 acm_read_bulk_callback, rb,
1410 acm->bInterval);
1411 else
1412 usb_fill_bulk_urb(urb, acm->dev, acm->in, rb->base,
1413 acm->readsize,
1414 acm_read_bulk_callback, rb);
1415
1416 acm->read_urbs[i] = urb;
1417 __set_bit(i, &acm->read_urbs_free);
1418 }
1419 for (i = 0; i < ACM_NW; i++) {
1420 struct acm_wb *snd = &(acm->wb[i]);
1421
1422 snd->urb = usb_alloc_urb(0, GFP_KERNEL);
1423 if (snd->urb == NULL)
1424 goto alloc_fail5;
1425
1426 if (usb_endpoint_xfer_int(epwrite))
1427 usb_fill_int_urb(snd->urb, usb_dev, acm->out,
1428 NULL, acm->writesize, acm_write_bulk, snd, epwrite->bInterval);
1429 else
1430 usb_fill_bulk_urb(snd->urb, usb_dev, acm->out,
1431 NULL, acm->writesize, acm_write_bulk, snd);
1432 snd->urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1433 if (quirks & SEND_ZERO_PACKET)
1434 snd->urb->transfer_flags |= URB_ZERO_PACKET;
1435 snd->instance = acm;
1436 }
1437
1438 usb_set_intfdata(intf, acm);
1439
1440 i = device_create_file(&intf->dev, &dev_attr_bmCapabilities);
1441 if (i < 0)
1442 goto alloc_fail5;
1443
1444 if (h.usb_cdc_country_functional_desc) { /* export the country data */
1445 struct usb_cdc_country_functional_desc * cfd =
1446 h.usb_cdc_country_functional_desc;
1447
1448 acm->country_codes = kmalloc(cfd->bLength - 4, GFP_KERNEL);
1449 if (!acm->country_codes)
1450 goto skip_countries;
1451 acm->country_code_size = cfd->bLength - 4;
1452 memcpy(acm->country_codes, (u8 *)&cfd->wCountyCode0,
1453 cfd->bLength - 4);
1454 acm->country_rel_date = cfd->iCountryCodeRelDate;
1455
1456 i = device_create_file(&intf->dev, &dev_attr_wCountryCodes);
1457 if (i < 0) {
1458 kfree(acm->country_codes);
1459 acm->country_codes = NULL;
1460 acm->country_code_size = 0;
1461 goto skip_countries;
1462 }
1463
1464 i = device_create_file(&intf->dev,
1465 &dev_attr_iCountryCodeRelDate);
1466 if (i < 0) {
1467 device_remove_file(&intf->dev, &dev_attr_wCountryCodes);
1468 kfree(acm->country_codes);
1469 acm->country_codes = NULL;
1470 acm->country_code_size = 0;
1471 goto skip_countries;
1472 }
1473 }
1474
1475skip_countries:
1476 usb_fill_int_urb(acm->ctrlurb, usb_dev,
1477 usb_rcvintpipe(usb_dev, epctrl->bEndpointAddress),
1478 acm->ctrl_buffer, ctrlsize, acm_ctrl_irq, acm,
1479 /* works around buggy devices */
1480 epctrl->bInterval ? epctrl->bInterval : 16);
1481 acm->ctrlurb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1482 acm->ctrlurb->transfer_dma = acm->ctrl_dma;
1483 acm->notification_buffer = NULL;
1484 acm->nb_index = 0;
1485 acm->nb_size = 0;
1486
1487 dev_info(&intf->dev, "ttyACM%d: USB ACM device\n", minor);
1488
1489 acm->line.dwDTERate = cpu_to_le32(9600);
1490 acm->line.bDataBits = 8;
1491 acm_set_line(acm, &acm->line);
1492
1493 usb_driver_claim_interface(&acm_driver, data_interface, acm);
1494 usb_set_intfdata(data_interface, acm);
1495
1496 tty_dev = tty_port_register_device(&acm->port, acm_tty_driver, minor,
1497 &control_interface->dev);
1498 if (IS_ERR(tty_dev)) {
1499 rv = PTR_ERR(tty_dev);
1500 goto alloc_fail6;
1501 }
1502
1503 if (quirks & CLEAR_HALT_CONDITIONS) {
1504 usb_clear_halt(usb_dev, acm->in);
1505 usb_clear_halt(usb_dev, acm->out);
1506 }
1507
1508 return 0;
1509alloc_fail6:
1510 if (acm->country_codes) {
1511 device_remove_file(&acm->control->dev,
1512 &dev_attr_wCountryCodes);
1513 device_remove_file(&acm->control->dev,
1514 &dev_attr_iCountryCodeRelDate);
1515 kfree(acm->country_codes);
1516 }
1517 device_remove_file(&acm->control->dev, &dev_attr_bmCapabilities);
1518alloc_fail5:
1519 usb_set_intfdata(intf, NULL);
1520 for (i = 0; i < ACM_NW; i++)
1521 usb_free_urb(acm->wb[i].urb);
1522alloc_fail4:
1523 for (i = 0; i < num_rx_buf; i++)
1524 usb_free_urb(acm->read_urbs[i]);
1525 acm_read_buffers_free(acm);
1526 usb_free_urb(acm->ctrlurb);
1527alloc_fail3:
1528 acm_write_buffers_free(acm);
1529alloc_fail2:
1530 usb_free_coherent(usb_dev, ctrlsize, acm->ctrl_buffer, acm->ctrl_dma);
1531alloc_fail1:
1532 tty_port_put(&acm->port);
1533alloc_fail:
1534 return rv;
1535}
1536
1537static void acm_disconnect(struct usb_interface *intf)
1538{
1539 struct acm *acm = usb_get_intfdata(intf);
1540 struct tty_struct *tty;
1541 int i;
1542
1543 /* sibling interface is already cleaning up */
1544 if (!acm)
1545 return;
1546
1547 mutex_lock(&acm->mutex);
1548 acm->disconnected = true;
1549 if (acm->country_codes) {
1550 device_remove_file(&acm->control->dev,
1551 &dev_attr_wCountryCodes);
1552 device_remove_file(&acm->control->dev,
1553 &dev_attr_iCountryCodeRelDate);
1554 }
1555 wake_up_all(&acm->wioctl);
1556 device_remove_file(&acm->control->dev, &dev_attr_bmCapabilities);
1557 usb_set_intfdata(acm->control, NULL);
1558 usb_set_intfdata(acm->data, NULL);
1559 mutex_unlock(&acm->mutex);
1560
1561 tty = tty_port_tty_get(&acm->port);
1562 if (tty) {
1563 tty_vhangup(tty);
1564 tty_kref_put(tty);
1565 }
1566
1567 acm_kill_urbs(acm);
1568 cancel_work_sync(&acm->work);
1569
1570 tty_unregister_device(acm_tty_driver, acm->minor);
1571
1572 usb_free_urb(acm->ctrlurb);
1573 for (i = 0; i < ACM_NW; i++)
1574 usb_free_urb(acm->wb[i].urb);
1575 for (i = 0; i < acm->rx_buflimit; i++)
1576 usb_free_urb(acm->read_urbs[i]);
1577 acm_write_buffers_free(acm);
1578 usb_free_coherent(acm->dev, acm->ctrlsize, acm->ctrl_buffer, acm->ctrl_dma);
1579 acm_read_buffers_free(acm);
1580
1581 kfree(acm->notification_buffer);
1582
1583 if (!acm->combined_interfaces)
1584 usb_driver_release_interface(&acm_driver, intf == acm->control ?
1585 acm->data : acm->control);
1586
1587 tty_port_put(&acm->port);
1588}
1589
1590#ifdef CONFIG_PM
1591static int acm_suspend(struct usb_interface *intf, pm_message_t message)
1592{
1593 struct acm *acm = usb_get_intfdata(intf);
1594 int cnt;
1595
1596 spin_lock_irq(&acm->write_lock);
1597 if (PMSG_IS_AUTO(message)) {
1598 if (acm->transmitting) {
1599 spin_unlock_irq(&acm->write_lock);
1600 return -EBUSY;
1601 }
1602 }
1603 cnt = acm->susp_count++;
1604 spin_unlock_irq(&acm->write_lock);
1605
1606 if (cnt)
1607 return 0;
1608
1609 acm_kill_urbs(acm);
1610 cancel_work_sync(&acm->work);
1611
1612 return 0;
1613}
1614
1615static int acm_resume(struct usb_interface *intf)
1616{
1617 struct acm *acm = usb_get_intfdata(intf);
1618 struct urb *urb;
1619 int rv = 0;
1620
1621 spin_lock_irq(&acm->write_lock);
1622
1623 if (--acm->susp_count)
1624 goto out;
1625
1626 if (tty_port_initialized(&acm->port)) {
1627 rv = usb_submit_urb(acm->ctrlurb, GFP_ATOMIC);
1628
1629 for (;;) {
1630 urb = usb_get_from_anchor(&acm->delayed);
1631 if (!urb)
1632 break;
1633
1634 acm_start_wb(acm, urb->context);
1635 }
1636
1637 /*
1638 * delayed error checking because we must
1639 * do the write path at all cost
1640 */
1641 if (rv < 0)
1642 goto out;
1643
1644 rv = acm_submit_read_urbs(acm, GFP_ATOMIC);
1645 }
1646out:
1647 spin_unlock_irq(&acm->write_lock);
1648
1649 return rv;
1650}
1651
1652static int acm_reset_resume(struct usb_interface *intf)
1653{
1654 struct acm *acm = usb_get_intfdata(intf);
1655
1656 if (tty_port_initialized(&acm->port))
1657 tty_port_tty_hangup(&acm->port, false);
1658
1659 return acm_resume(intf);
1660}
1661
1662#endif /* CONFIG_PM */
1663
1664static int acm_pre_reset(struct usb_interface *intf)
1665{
1666 struct acm *acm = usb_get_intfdata(intf);
1667
1668 clear_bit(EVENT_RX_STALL, &acm->flags);
1669 acm->nb_index = 0; /* pending control transfers are lost */
1670
1671 return 0;
1672}
1673
1674#define NOKIA_PCSUITE_ACM_INFO(x) \
1675 USB_DEVICE_AND_INTERFACE_INFO(0x0421, x, \
1676 USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM, \
1677 USB_CDC_ACM_PROTO_VENDOR)
1678
1679#define SAMSUNG_PCSUITE_ACM_INFO(x) \
1680 USB_DEVICE_AND_INTERFACE_INFO(0x04e7, x, \
1681 USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM, \
1682 USB_CDC_ACM_PROTO_VENDOR)
1683
1684/*
1685 * USB driver structure.
1686 */
1687
1688static const struct usb_device_id acm_ids[] = {
1689 /* quirky and broken devices */
1690 { USB_DEVICE(0x076d, 0x0006), /* Denso Cradle CU-321 */
1691 .driver_info = NO_UNION_NORMAL, },/* has no union descriptor */
1692 { USB_DEVICE(0x17ef, 0x7000), /* Lenovo USB modem */
1693 .driver_info = NO_UNION_NORMAL, },/* has no union descriptor */
1694 { USB_DEVICE(0x0870, 0x0001), /* Metricom GS Modem */
1695 .driver_info = NO_UNION_NORMAL, /* has no union descriptor */
1696 },
1697 { USB_DEVICE(0x0e8d, 0x0003), /* FIREFLY, MediaTek Inc; andrey.arapov@gmail.com */
1698 .driver_info = NO_UNION_NORMAL, /* has no union descriptor */
1699 },
1700 { USB_DEVICE(0x0e8d, 0x2000), /* MediaTek Inc Preloader */
1701 .driver_info = DISABLE_ECHO, /* DISABLE ECHO in termios flag */
1702 },
1703 { USB_DEVICE(0x0e8d, 0x3329), /* MediaTek Inc GPS */
1704 .driver_info = NO_UNION_NORMAL, /* has no union descriptor */
1705 },
1706 { USB_DEVICE(0x0482, 0x0203), /* KYOCERA AH-K3001V */
1707 .driver_info = NO_UNION_NORMAL, /* has no union descriptor */
1708 },
1709 { USB_DEVICE(0x079b, 0x000f), /* BT On-Air USB MODEM */
1710 .driver_info = NO_UNION_NORMAL, /* has no union descriptor */
1711 },
1712 { USB_DEVICE(0x0ace, 0x1602), /* ZyDAS 56K USB MODEM */
1713 .driver_info = SINGLE_RX_URB,
1714 },
1715 { USB_DEVICE(0x0ace, 0x1608), /* ZyDAS 56K USB MODEM */
1716 .driver_info = SINGLE_RX_URB, /* firmware bug */
1717 },
1718 { USB_DEVICE(0x0ace, 0x1611), /* ZyDAS 56K USB MODEM - new version */
1719 .driver_info = SINGLE_RX_URB, /* firmware bug */
1720 },
1721 { USB_DEVICE(0x11ca, 0x0201), /* VeriFone Mx870 Gadget Serial */
1722 .driver_info = SINGLE_RX_URB,
1723 },
1724 { USB_DEVICE(0x1965, 0x0018), /* Uniden UBC125XLT */
1725 .driver_info = NO_UNION_NORMAL, /* has no union descriptor */
1726 },
1727 { USB_DEVICE(0x22b8, 0x7000), /* Motorola Q Phone */
1728 .driver_info = NO_UNION_NORMAL, /* has no union descriptor */
1729 },
1730 { USB_DEVICE(0x0803, 0x3095), /* Zoom Telephonics Model 3095F USB MODEM */
1731 .driver_info = NO_UNION_NORMAL, /* has no union descriptor */
1732 },
1733 { USB_DEVICE(0x0572, 0x1321), /* Conexant USB MODEM CX93010 */
1734 .driver_info = NO_UNION_NORMAL, /* has no union descriptor */
1735 },
1736 { USB_DEVICE(0x0572, 0x1324), /* Conexant USB MODEM RD02-D400 */
1737 .driver_info = NO_UNION_NORMAL, /* has no union descriptor */
1738 },
1739 { USB_DEVICE(0x0572, 0x1328), /* Shiro / Aztech USB MODEM UM-3100 */
1740 .driver_info = NO_UNION_NORMAL, /* has no union descriptor */
1741 },
1742 { USB_DEVICE(0x0572, 0x1349), /* Hiro (Conexant) USB MODEM H50228 */
1743 .driver_info = NO_UNION_NORMAL, /* has no union descriptor */
1744 },
1745 { USB_DEVICE(0x20df, 0x0001), /* Simtec Electronics Entropy Key */
1746 .driver_info = QUIRK_CONTROL_LINE_STATE, },
1747 { USB_DEVICE(0x2184, 0x001c) }, /* GW Instek AFG-2225 */
1748 { USB_DEVICE(0x2184, 0x0036) }, /* GW Instek AFG-125 */
1749 { USB_DEVICE(0x22b8, 0x6425), /* Motorola MOTOMAGX phones */
1750 },
1751 /* Motorola H24 HSPA module: */
1752 { USB_DEVICE(0x22b8, 0x2d91) }, /* modem */
1753 { USB_DEVICE(0x22b8, 0x2d92), /* modem + diagnostics */
1754 .driver_info = NO_UNION_NORMAL, /* handle only modem interface */
1755 },
1756 { USB_DEVICE(0x22b8, 0x2d93), /* modem + AT port */
1757 .driver_info = NO_UNION_NORMAL, /* handle only modem interface */
1758 },
1759 { USB_DEVICE(0x22b8, 0x2d95), /* modem + AT port + diagnostics */
1760 .driver_info = NO_UNION_NORMAL, /* handle only modem interface */
1761 },
1762 { USB_DEVICE(0x22b8, 0x2d96), /* modem + NMEA */
1763 .driver_info = NO_UNION_NORMAL, /* handle only modem interface */
1764 },
1765 { USB_DEVICE(0x22b8, 0x2d97), /* modem + diagnostics + NMEA */
1766 .driver_info = NO_UNION_NORMAL, /* handle only modem interface */
1767 },
1768 { USB_DEVICE(0x22b8, 0x2d99), /* modem + AT port + NMEA */
1769 .driver_info = NO_UNION_NORMAL, /* handle only modem interface */
1770 },
1771 { USB_DEVICE(0x22b8, 0x2d9a), /* modem + AT port + diagnostics + NMEA */
1772 .driver_info = NO_UNION_NORMAL, /* handle only modem interface */
1773 },
1774
1775 { USB_DEVICE(0x0572, 0x1329), /* Hummingbird huc56s (Conexant) */
1776 .driver_info = NO_UNION_NORMAL, /* union descriptor misplaced on
1777 data interface instead of
1778 communications interface.
1779 Maybe we should define a new
1780 quirk for this. */
1781 },
1782 { USB_DEVICE(0x0572, 0x1340), /* Conexant CX93010-2x UCMxx */
1783 .driver_info = NO_UNION_NORMAL,
1784 },
1785 { USB_DEVICE(0x05f9, 0x4002), /* PSC Scanning, Magellan 800i */
1786 .driver_info = NO_UNION_NORMAL,
1787 },
1788 { USB_DEVICE(0x1bbb, 0x0003), /* Alcatel OT-I650 */
1789 .driver_info = NO_UNION_NORMAL, /* reports zero length descriptor */
1790 },
1791 { USB_DEVICE(0x1576, 0x03b1), /* Maretron USB100 */
1792 .driver_info = NO_UNION_NORMAL, /* reports zero length descriptor */
1793 },
1794 { USB_DEVICE(0xfff0, 0x0100), /* DATECS FP-2000 */
1795 .driver_info = NO_UNION_NORMAL, /* reports zero length descriptor */
1796 },
1797 { USB_DEVICE(0x09d8, 0x0320), /* Elatec GmbH TWN3 */
1798 .driver_info = NO_UNION_NORMAL, /* has misplaced union descriptor */
1799 },
1800 { USB_DEVICE(0x0ca6, 0xa050), /* Castles VEGA3000 */
1801 .driver_info = NO_UNION_NORMAL, /* reports zero length descriptor */
1802 },
1803
1804 { USB_DEVICE(0x2912, 0x0001), /* ATOL FPrint */
1805 .driver_info = CLEAR_HALT_CONDITIONS,
1806 },
1807
1808 /* Nokia S60 phones expose two ACM channels. The first is
1809 * a modem and is picked up by the standard AT-command
1810 * information below. The second is 'vendor-specific' but
1811 * is treated as a serial device at the S60 end, so we want
1812 * to expose it on Linux too. */
1813 { NOKIA_PCSUITE_ACM_INFO(0x042D), }, /* Nokia 3250 */
1814 { NOKIA_PCSUITE_ACM_INFO(0x04D8), }, /* Nokia 5500 Sport */
1815 { NOKIA_PCSUITE_ACM_INFO(0x04C9), }, /* Nokia E50 */
1816 { NOKIA_PCSUITE_ACM_INFO(0x0419), }, /* Nokia E60 */
1817 { NOKIA_PCSUITE_ACM_INFO(0x044D), }, /* Nokia E61 */
1818 { NOKIA_PCSUITE_ACM_INFO(0x0001), }, /* Nokia E61i */
1819 { NOKIA_PCSUITE_ACM_INFO(0x0475), }, /* Nokia E62 */
1820 { NOKIA_PCSUITE_ACM_INFO(0x0508), }, /* Nokia E65 */
1821 { NOKIA_PCSUITE_ACM_INFO(0x0418), }, /* Nokia E70 */
1822 { NOKIA_PCSUITE_ACM_INFO(0x0425), }, /* Nokia N71 */
1823 { NOKIA_PCSUITE_ACM_INFO(0x0486), }, /* Nokia N73 */
1824 { NOKIA_PCSUITE_ACM_INFO(0x04DF), }, /* Nokia N75 */
1825 { NOKIA_PCSUITE_ACM_INFO(0x000e), }, /* Nokia N77 */
1826 { NOKIA_PCSUITE_ACM_INFO(0x0445), }, /* Nokia N80 */
1827 { NOKIA_PCSUITE_ACM_INFO(0x042F), }, /* Nokia N91 & N91 8GB */
1828 { NOKIA_PCSUITE_ACM_INFO(0x048E), }, /* Nokia N92 */
1829 { NOKIA_PCSUITE_ACM_INFO(0x0420), }, /* Nokia N93 */
1830 { NOKIA_PCSUITE_ACM_INFO(0x04E6), }, /* Nokia N93i */
1831 { NOKIA_PCSUITE_ACM_INFO(0x04B2), }, /* Nokia 5700 XpressMusic */
1832 { NOKIA_PCSUITE_ACM_INFO(0x0134), }, /* Nokia 6110 Navigator (China) */
1833 { NOKIA_PCSUITE_ACM_INFO(0x046E), }, /* Nokia 6110 Navigator */
1834 { NOKIA_PCSUITE_ACM_INFO(0x002f), }, /* Nokia 6120 classic & */
1835 { NOKIA_PCSUITE_ACM_INFO(0x0088), }, /* Nokia 6121 classic */
1836 { NOKIA_PCSUITE_ACM_INFO(0x00fc), }, /* Nokia 6124 classic */
1837 { NOKIA_PCSUITE_ACM_INFO(0x0042), }, /* Nokia E51 */
1838 { NOKIA_PCSUITE_ACM_INFO(0x00b0), }, /* Nokia E66 */
1839 { NOKIA_PCSUITE_ACM_INFO(0x00ab), }, /* Nokia E71 */
1840 { NOKIA_PCSUITE_ACM_INFO(0x0481), }, /* Nokia N76 */
1841 { NOKIA_PCSUITE_ACM_INFO(0x0007), }, /* Nokia N81 & N81 8GB */
1842 { NOKIA_PCSUITE_ACM_INFO(0x0071), }, /* Nokia N82 */
1843 { NOKIA_PCSUITE_ACM_INFO(0x04F0), }, /* Nokia N95 & N95-3 NAM */
1844 { NOKIA_PCSUITE_ACM_INFO(0x0070), }, /* Nokia N95 8GB */
1845 { NOKIA_PCSUITE_ACM_INFO(0x00e9), }, /* Nokia 5320 XpressMusic */
1846 { NOKIA_PCSUITE_ACM_INFO(0x0099), }, /* Nokia 6210 Navigator, RM-367 */
1847 { NOKIA_PCSUITE_ACM_INFO(0x0128), }, /* Nokia 6210 Navigator, RM-419 */
1848 { NOKIA_PCSUITE_ACM_INFO(0x008f), }, /* Nokia 6220 Classic */
1849 { NOKIA_PCSUITE_ACM_INFO(0x00a0), }, /* Nokia 6650 */
1850 { NOKIA_PCSUITE_ACM_INFO(0x007b), }, /* Nokia N78 */
1851 { NOKIA_PCSUITE_ACM_INFO(0x0094), }, /* Nokia N85 */
1852 { NOKIA_PCSUITE_ACM_INFO(0x003a), }, /* Nokia N96 & N96-3 */
1853 { NOKIA_PCSUITE_ACM_INFO(0x00e9), }, /* Nokia 5320 XpressMusic */
1854 { NOKIA_PCSUITE_ACM_INFO(0x0108), }, /* Nokia 5320 XpressMusic 2G */
1855 { NOKIA_PCSUITE_ACM_INFO(0x01f5), }, /* Nokia N97, RM-505 */
1856 { NOKIA_PCSUITE_ACM_INFO(0x02e3), }, /* Nokia 5230, RM-588 */
1857 { NOKIA_PCSUITE_ACM_INFO(0x0178), }, /* Nokia E63 */
1858 { NOKIA_PCSUITE_ACM_INFO(0x010e), }, /* Nokia E75 */
1859 { NOKIA_PCSUITE_ACM_INFO(0x02d9), }, /* Nokia 6760 Slide */
1860 { NOKIA_PCSUITE_ACM_INFO(0x01d0), }, /* Nokia E52 */
1861 { NOKIA_PCSUITE_ACM_INFO(0x0223), }, /* Nokia E72 */
1862 { NOKIA_PCSUITE_ACM_INFO(0x0275), }, /* Nokia X6 */
1863 { NOKIA_PCSUITE_ACM_INFO(0x026c), }, /* Nokia N97 Mini */
1864 { NOKIA_PCSUITE_ACM_INFO(0x0154), }, /* Nokia 5800 XpressMusic */
1865 { NOKIA_PCSUITE_ACM_INFO(0x04ce), }, /* Nokia E90 */
1866 { NOKIA_PCSUITE_ACM_INFO(0x01d4), }, /* Nokia E55 */
1867 { NOKIA_PCSUITE_ACM_INFO(0x0302), }, /* Nokia N8 */
1868 { NOKIA_PCSUITE_ACM_INFO(0x0335), }, /* Nokia E7 */
1869 { NOKIA_PCSUITE_ACM_INFO(0x03cd), }, /* Nokia C7 */
1870 { SAMSUNG_PCSUITE_ACM_INFO(0x6651), }, /* Samsung GTi8510 (INNOV8) */
1871
1872 /* Support for Owen devices */
1873 { USB_DEVICE(0x03eb, 0x0030), }, /* Owen SI30 */
1874
1875 /* NOTE: non-Nokia COMM/ACM/0xff is likely MSFT RNDIS... NOT a modem! */
1876
1877 /* Support for Droids MuIn LCD */
1878 { USB_DEVICE(0x04d8, 0x000b),
1879 .driver_info = NO_DATA_INTERFACE,
1880 },
1881
1882#if IS_ENABLED(CONFIG_INPUT_IMS_PCU)
1883 { USB_DEVICE(0x04d8, 0x0082), /* Application mode */
1884 .driver_info = IGNORE_DEVICE,
1885 },
1886 { USB_DEVICE(0x04d8, 0x0083), /* Bootloader mode */
1887 .driver_info = IGNORE_DEVICE,
1888 },
1889#endif
1890
1891 /*Samsung phone in firmware update mode */
1892 { USB_DEVICE(0x04e8, 0x685d),
1893 .driver_info = IGNORE_DEVICE,
1894 },
1895
1896 /* Exclude Infineon Flash Loader utility */
1897 { USB_DEVICE(0x058b, 0x0041),
1898 .driver_info = IGNORE_DEVICE,
1899 },
1900
1901 { USB_DEVICE(0x1bc7, 0x0021), /* Telit 3G ACM only composition */
1902 .driver_info = SEND_ZERO_PACKET,
1903 },
1904 { USB_DEVICE(0x1bc7, 0x0023), /* Telit 3G ACM + ECM composition */
1905 .driver_info = SEND_ZERO_PACKET,
1906 },
1907
1908 /* control interfaces without any protocol set */
1909 { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM,
1910 USB_CDC_PROTO_NONE) },
1911
1912 /* control interfaces with various AT-command sets */
1913 { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM,
1914 USB_CDC_ACM_PROTO_AT_V25TER) },
1915 { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM,
1916 USB_CDC_ACM_PROTO_AT_PCCA101) },
1917 { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM,
1918 USB_CDC_ACM_PROTO_AT_PCCA101_WAKE) },
1919 { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM,
1920 USB_CDC_ACM_PROTO_AT_GSM) },
1921 { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM,
1922 USB_CDC_ACM_PROTO_AT_3G) },
1923 { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM,
1924 USB_CDC_ACM_PROTO_AT_CDMA) },
1925
1926 { USB_DEVICE(0x1519, 0x0452), /* Intel 7260 modem */
1927 .driver_info = SEND_ZERO_PACKET,
1928 },
1929
1930 { }
1931};
1932
1933MODULE_DEVICE_TABLE(usb, acm_ids);
1934
1935static struct usb_driver acm_driver = {
1936 .name = "cdc_acm",
1937 .probe = acm_probe,
1938 .disconnect = acm_disconnect,
1939#ifdef CONFIG_PM
1940 .suspend = acm_suspend,
1941 .resume = acm_resume,
1942 .reset_resume = acm_reset_resume,
1943#endif
1944 .pre_reset = acm_pre_reset,
1945 .id_table = acm_ids,
1946#ifdef CONFIG_PM
1947 .supports_autosuspend = 1,
1948#endif
1949 .disable_hub_initiated_lpm = 1,
1950};
1951
1952/*
1953 * TTY driver structures.
1954 */
1955
1956static const struct tty_operations acm_ops = {
1957 .install = acm_tty_install,
1958 .open = acm_tty_open,
1959 .close = acm_tty_close,
1960 .cleanup = acm_tty_cleanup,
1961 .hangup = acm_tty_hangup,
1962 .write = acm_tty_write,
1963 .write_room = acm_tty_write_room,
1964 .ioctl = acm_tty_ioctl,
1965 .throttle = acm_tty_throttle,
1966 .unthrottle = acm_tty_unthrottle,
1967 .chars_in_buffer = acm_tty_chars_in_buffer,
1968 .break_ctl = acm_tty_break_ctl,
1969 .set_termios = acm_tty_set_termios,
1970 .tiocmget = acm_tty_tiocmget,
1971 .tiocmset = acm_tty_tiocmset,
1972 .get_icount = acm_tty_get_icount,
1973};
1974
1975/*
1976 * Init / exit.
1977 */
1978
1979static int __init acm_init(void)
1980{
1981 int retval;
1982 acm_tty_driver = alloc_tty_driver(ACM_TTY_MINORS);
1983 if (!acm_tty_driver)
1984 return -ENOMEM;
1985 acm_tty_driver->driver_name = "acm",
1986 acm_tty_driver->name = "ttyACM",
1987 acm_tty_driver->major = ACM_TTY_MAJOR,
1988 acm_tty_driver->minor_start = 0,
1989 acm_tty_driver->type = TTY_DRIVER_TYPE_SERIAL,
1990 acm_tty_driver->subtype = SERIAL_TYPE_NORMAL,
1991 acm_tty_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
1992 acm_tty_driver->init_termios = tty_std_termios;
1993 acm_tty_driver->init_termios.c_cflag = B9600 | CS8 | CREAD |
1994 HUPCL | CLOCAL;
1995 tty_set_operations(acm_tty_driver, &acm_ops);
1996
1997 retval = tty_register_driver(acm_tty_driver);
1998 if (retval) {
1999 put_tty_driver(acm_tty_driver);
2000 return retval;
2001 }
2002
2003 retval = usb_register(&acm_driver);
2004 if (retval) {
2005 tty_unregister_driver(acm_tty_driver);
2006 put_tty_driver(acm_tty_driver);
2007 return retval;
2008 }
2009
2010 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_DESC "\n");
2011
2012 return 0;
2013}
2014
2015static void __exit acm_exit(void)
2016{
2017 usb_deregister(&acm_driver);
2018 tty_unregister_driver(acm_tty_driver);
2019 put_tty_driver(acm_tty_driver);
2020 idr_destroy(&acm_minors);
2021}
2022
2023module_init(acm_init);
2024module_exit(acm_exit);
2025
2026MODULE_AUTHOR(DRIVER_AUTHOR);
2027MODULE_DESCRIPTION(DRIVER_DESC);
2028MODULE_LICENSE("GPL");
2029MODULE_ALIAS_CHARDEV_MAJOR(ACM_TTY_MAJOR);