| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * cdc-acm.c | 
|  | 3 | * | 
|  | 4 | * Copyright (c) 1999 Armin Fuerst	<fuerst@in.tum.de> | 
| Pavel Machek | a253129 | 2010-07-18 14:27:13 +0200 | [diff] [blame] | 5 | * Copyright (c) 1999 Pavel Machek	<pavel@ucw.cz> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * Copyright (c) 1999 Johannes Erdfelt	<johannes@erdfelt.com> | 
|  | 7 | * Copyright (c) 2000 Vojtech Pavlik	<vojtech@suse.cz> | 
|  | 8 | * Copyright (c) 2004 Oliver Neukum	<oliver@neukum.name> | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 9 | * Copyright (c) 2005 David Kubicek	<dave@awk.cz> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | * | 
|  | 11 | * USB Abstract Control Model driver for USB modems and ISDN adapters | 
|  | 12 | * | 
|  | 13 | * Sponsored by SuSE | 
|  | 14 | * | 
|  | 15 | * ChangeLog: | 
|  | 16 | *	v0.9  - thorough cleaning, URBification, almost a rewrite | 
|  | 17 | *	v0.10 - some more cleanups | 
|  | 18 | *	v0.11 - fixed flow control, read error doesn't stop reads | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 19 | *	v0.12 - added TIOCM ioctls, added break handling, made struct acm | 
|  | 20 | *		kmalloced | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | *	v0.13 - added termios, added hangup | 
|  | 22 | *	v0.14 - sized down struct acm | 
|  | 23 | *	v0.15 - fixed flow control again - characters could be lost | 
|  | 24 | *	v0.16 - added code for modems with swapped data and control interfaces | 
|  | 25 | *	v0.17 - added new style probing | 
|  | 26 | *	v0.18 - fixed new style probing for devices with more configurations | 
|  | 27 | *	v0.19 - fixed CLOCAL handling (thanks to Richard Shih-Ping Chan) | 
|  | 28 | *	v0.20 - switched to probing on interface (rather than device) class | 
|  | 29 | *	v0.21 - revert to probing on device for devices with multiple configs | 
|  | 30 | *	v0.22 - probe only the control interface. if usbcore doesn't choose the | 
|  | 31 | *		config we want, sysadmin changes bConfigurationValue in sysfs. | 
|  | 32 | *	v0.23 - use softirq for rx processing, as needed by tty layer | 
|  | 33 | *	v0.24 - change probe method to evaluate CDC union descriptor | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 34 | *	v0.25 - downstream tasks paralelized to maximize throughput | 
| David Engraf | e4cf3aa | 2008-03-20 10:01:34 +0100 | [diff] [blame] | 35 | *	v0.26 - multiple write urbs, writesize increased | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | */ | 
|  | 37 |  | 
|  | 38 | /* | 
|  | 39 | * This program is free software; you can redistribute it and/or modify | 
|  | 40 | * it under the terms of the GNU General Public License as published by | 
|  | 41 | * the Free Software Foundation; either version 2 of the License, or | 
|  | 42 | * (at your option) any later version. | 
|  | 43 | * | 
|  | 44 | * This program is distributed in the hope that it will be useful, | 
|  | 45 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|  | 46 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|  | 47 | * GNU General Public License for more details. | 
|  | 48 | * | 
|  | 49 | * You should have received a copy of the GNU General Public License | 
|  | 50 | * along with this program; if not, write to the Free Software | 
|  | 51 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 
|  | 52 | */ | 
|  | 53 |  | 
|  | 54 | #undef DEBUG | 
| David Brownell | e5fbab5 | 2008-08-06 18:46:10 -0700 | [diff] [blame] | 55 | #undef VERBOSE_DEBUG | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 |  | 
|  | 57 | #include <linux/kernel.h> | 
|  | 58 | #include <linux/errno.h> | 
|  | 59 | #include <linux/init.h> | 
|  | 60 | #include <linux/slab.h> | 
|  | 61 | #include <linux/tty.h> | 
| Oliver Neukum | 7af25b4 | 2009-09-08 23:51:28 +0200 | [diff] [blame] | 62 | #include <linux/serial.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | #include <linux/tty_driver.h> | 
|  | 64 | #include <linux/tty_flip.h> | 
|  | 65 | #include <linux/module.h> | 
| Arjan van de Ven | 4186ecf | 2006-01-11 15:55:29 +0100 | [diff] [blame] | 66 | #include <linux/mutex.h> | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 67 | #include <linux/uaccess.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | #include <linux/usb.h> | 
| David Brownell | a8c28f2 | 2006-06-13 09:57:47 -0700 | [diff] [blame] | 69 | #include <linux/usb/cdc.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | #include <asm/byteorder.h> | 
|  | 71 | #include <asm/unaligned.h> | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 72 | #include <linux/list.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 |  | 
|  | 74 | #include "cdc-acm.h" | 
|  | 75 |  | 
| David Brownell | e5fbab5 | 2008-08-06 18:46:10 -0700 | [diff] [blame] | 76 |  | 
|  | 77 | #define ACM_CLOSE_TIMEOUT	15	/* seconds to let writes drain */ | 
|  | 78 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | /* | 
|  | 80 | * Version Information | 
|  | 81 | */ | 
| David Engraf | e4cf3aa | 2008-03-20 10:01:34 +0100 | [diff] [blame] | 82 | #define DRIVER_VERSION "v0.26" | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 83 | #define DRIVER_AUTHOR "Armin Fuerst, Pavel Machek, Johannes Erdfelt, Vojtech Pavlik, David Kubicek" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | #define DRIVER_DESC "USB Abstract Control Model driver for USB modems and ISDN adapters" | 
|  | 85 |  | 
|  | 86 | static struct usb_driver acm_driver; | 
|  | 87 | static struct tty_driver *acm_tty_driver; | 
|  | 88 | static struct acm *acm_table[ACM_TTY_MINORS]; | 
|  | 89 |  | 
| Arjan van de Ven | 4186ecf | 2006-01-11 15:55:29 +0100 | [diff] [blame] | 90 | static DEFINE_MUTEX(open_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 |  | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 92 | #define ACM_READY(acm)	(acm && acm->dev && acm->port.count) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 |  | 
| Alan Cox | 739e028 | 2009-06-11 12:27:50 +0100 | [diff] [blame] | 94 | static const struct tty_port_operations acm_port_ops = { | 
|  | 95 | }; | 
|  | 96 |  | 
| David Brownell | e5fbab5 | 2008-08-06 18:46:10 -0700 | [diff] [blame] | 97 | #ifdef VERBOSE_DEBUG | 
|  | 98 | #define verbose	1 | 
|  | 99 | #else | 
|  | 100 | #define verbose	0 | 
|  | 101 | #endif | 
|  | 102 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | /* | 
|  | 104 | * Functions for ACM control messages. | 
|  | 105 | */ | 
|  | 106 |  | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 107 | static int acm_ctrl_msg(struct acm *acm, int request, int value, | 
|  | 108 | void *buf, int len) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | { | 
|  | 110 | int retval = usb_control_msg(acm->dev, usb_sndctrlpipe(acm->dev, 0), | 
|  | 111 | request, USB_RT_ACM, value, | 
|  | 112 | acm->control->altsetting[0].desc.bInterfaceNumber, | 
|  | 113 | buf, len, 5000); | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 114 | dbg("acm_control_msg: rq: 0x%02x val: %#x len: %#x result: %d", | 
|  | 115 | request, value, len, retval); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | return retval < 0 ? retval : 0; | 
|  | 117 | } | 
|  | 118 |  | 
|  | 119 | /* devices aren't required to support these requests. | 
|  | 120 | * the cdc acm descriptor tells whether they do... | 
|  | 121 | */ | 
|  | 122 | #define acm_set_control(acm, control) \ | 
|  | 123 | acm_ctrl_msg(acm, USB_CDC_REQ_SET_CONTROL_LINE_STATE, control, NULL, 0) | 
|  | 124 | #define acm_set_line(acm, line) \ | 
|  | 125 | acm_ctrl_msg(acm, USB_CDC_REQ_SET_LINE_CODING, 0, line, sizeof *(line)) | 
|  | 126 | #define acm_send_break(acm, ms) \ | 
|  | 127 | acm_ctrl_msg(acm, USB_CDC_REQ_SEND_BREAK, ms, NULL, 0) | 
|  | 128 |  | 
|  | 129 | /* | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 130 | * Write buffer management. | 
|  | 131 | * All of these assume proper locks taken by the caller. | 
|  | 132 | */ | 
|  | 133 |  | 
|  | 134 | static int acm_wb_alloc(struct acm *acm) | 
|  | 135 | { | 
|  | 136 | int i, wbn; | 
|  | 137 | struct acm_wb *wb; | 
|  | 138 |  | 
| David Engraf | e4cf3aa | 2008-03-20 10:01:34 +0100 | [diff] [blame] | 139 | wbn = 0; | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 140 | i = 0; | 
|  | 141 | for (;;) { | 
|  | 142 | wb = &acm->wb[wbn]; | 
|  | 143 | if (!wb->use) { | 
|  | 144 | wb->use = 1; | 
|  | 145 | return wbn; | 
|  | 146 | } | 
| Oliver Neukum | 8647894 | 2006-05-13 22:50:47 +0200 | [diff] [blame] | 147 | wbn = (wbn + 1) % ACM_NW; | 
|  | 148 | if (++i >= ACM_NW) | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 149 | return -1; | 
|  | 150 | } | 
|  | 151 | } | 
|  | 152 |  | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 153 | static int acm_wb_is_avail(struct acm *acm) | 
|  | 154 | { | 
|  | 155 | int i, n; | 
| David Brownell | e5fbab5 | 2008-08-06 18:46:10 -0700 | [diff] [blame] | 156 | unsigned long flags; | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 157 |  | 
| Oliver Neukum | 8647894 | 2006-05-13 22:50:47 +0200 | [diff] [blame] | 158 | n = ACM_NW; | 
| David Brownell | e5fbab5 | 2008-08-06 18:46:10 -0700 | [diff] [blame] | 159 | spin_lock_irqsave(&acm->write_lock, flags); | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 160 | for (i = 0; i < ACM_NW; i++) | 
| Oliver Neukum | 8647894 | 2006-05-13 22:50:47 +0200 | [diff] [blame] | 161 | n -= acm->wb[i].use; | 
| David Brownell | e5fbab5 | 2008-08-06 18:46:10 -0700 | [diff] [blame] | 162 | spin_unlock_irqrestore(&acm->write_lock, flags); | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 163 | return n; | 
|  | 164 | } | 
|  | 165 |  | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 166 | /* | 
| Brandon Philips | ad0b65e | 2008-11-06 11:19:11 -0800 | [diff] [blame] | 167 | * Finish write. Caller must hold acm->write_lock | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 168 | */ | 
| David Engraf | e4cf3aa | 2008-03-20 10:01:34 +0100 | [diff] [blame] | 169 | static void acm_write_done(struct acm *acm, struct acm_wb *wb) | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 170 | { | 
| David Engraf | e4cf3aa | 2008-03-20 10:01:34 +0100 | [diff] [blame] | 171 | wb->use = 0; | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 172 | acm->transmitting--; | 
| Oliver Neukum | 97d35f9 | 2009-12-16 17:05:57 +0100 | [diff] [blame] | 173 | usb_autopm_put_interface_async(acm->control); | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 174 | } | 
|  | 175 |  | 
|  | 176 | /* | 
|  | 177 | * Poke write. | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 178 | * | 
|  | 179 | * the caller is responsible for locking | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 180 | */ | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 181 |  | 
|  | 182 | static int acm_start_wb(struct acm *acm, struct acm_wb *wb) | 
|  | 183 | { | 
|  | 184 | int rc; | 
|  | 185 |  | 
|  | 186 | acm->transmitting++; | 
|  | 187 |  | 
|  | 188 | wb->urb->transfer_buffer = wb->buf; | 
|  | 189 | wb->urb->transfer_dma = wb->dmah; | 
|  | 190 | wb->urb->transfer_buffer_length = wb->len; | 
|  | 191 | wb->urb->dev = acm->dev; | 
|  | 192 |  | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 193 | rc = usb_submit_urb(wb->urb, GFP_ATOMIC); | 
|  | 194 | if (rc < 0) { | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 195 | dbg("usb_submit_urb(write bulk) failed: %d", rc); | 
|  | 196 | acm_write_done(acm, wb); | 
|  | 197 | } | 
|  | 198 | return rc; | 
|  | 199 | } | 
|  | 200 |  | 
| David Engraf | e4cf3aa | 2008-03-20 10:01:34 +0100 | [diff] [blame] | 201 | static int acm_write_start(struct acm *acm, int wbn) | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 202 | { | 
|  | 203 | unsigned long flags; | 
| David Brownell | 934da46 | 2008-08-06 18:44:12 -0700 | [diff] [blame] | 204 | struct acm_wb *wb = &acm->wb[wbn]; | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 205 | int rc; | 
|  | 206 |  | 
|  | 207 | spin_lock_irqsave(&acm->write_lock, flags); | 
|  | 208 | if (!acm->dev) { | 
| David Brownell | 934da46 | 2008-08-06 18:44:12 -0700 | [diff] [blame] | 209 | wb->use = 0; | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 210 | spin_unlock_irqrestore(&acm->write_lock, flags); | 
|  | 211 | return -ENODEV; | 
|  | 212 | } | 
|  | 213 |  | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 214 | dbg("%s susp_count: %d", __func__, acm->susp_count); | 
| Oliver Neukum | 97d35f9 | 2009-12-16 17:05:57 +0100 | [diff] [blame] | 215 | usb_autopm_get_interface_async(acm->control); | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 216 | if (acm->susp_count) { | 
| Oliver Neukum | 97d35f9 | 2009-12-16 17:05:57 +0100 | [diff] [blame] | 217 | if (!acm->delayed_wb) | 
|  | 218 | acm->delayed_wb = wb; | 
|  | 219 | else | 
|  | 220 | usb_autopm_put_interface_async(acm->control); | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 221 | spin_unlock_irqrestore(&acm->write_lock, flags); | 
|  | 222 | return 0;	/* A white lie */ | 
|  | 223 | } | 
|  | 224 | usb_mark_last_busy(acm->dev); | 
|  | 225 |  | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 226 | rc = acm_start_wb(acm, wb); | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 227 | spin_unlock_irqrestore(&acm->write_lock, flags); | 
|  | 228 |  | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 229 | return rc; | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 230 |  | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 231 | } | 
| Oliver Neukum | c4cabd2 | 2007-02-27 15:28:55 +0100 | [diff] [blame] | 232 | /* | 
|  | 233 | * attributes exported through sysfs | 
|  | 234 | */ | 
|  | 235 | static ssize_t show_caps | 
|  | 236 | (struct device *dev, struct device_attribute *attr, char *buf) | 
|  | 237 | { | 
|  | 238 | struct usb_interface *intf = to_usb_interface(dev); | 
|  | 239 | struct acm *acm = usb_get_intfdata(intf); | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 240 |  | 
| Oliver Neukum | c4cabd2 | 2007-02-27 15:28:55 +0100 | [diff] [blame] | 241 | return sprintf(buf, "%d", acm->ctrl_caps); | 
|  | 242 | } | 
|  | 243 | static DEVICE_ATTR(bmCapabilities, S_IRUGO, show_caps, NULL); | 
|  | 244 |  | 
|  | 245 | static ssize_t show_country_codes | 
|  | 246 | (struct device *dev, struct device_attribute *attr, char *buf) | 
|  | 247 | { | 
|  | 248 | struct usb_interface *intf = to_usb_interface(dev); | 
|  | 249 | struct acm *acm = usb_get_intfdata(intf); | 
|  | 250 |  | 
|  | 251 | memcpy(buf, acm->country_codes, acm->country_code_size); | 
|  | 252 | return acm->country_code_size; | 
|  | 253 | } | 
|  | 254 |  | 
|  | 255 | static DEVICE_ATTR(wCountryCodes, S_IRUGO, show_country_codes, NULL); | 
|  | 256 |  | 
|  | 257 | static ssize_t show_country_rel_date | 
|  | 258 | (struct device *dev, struct device_attribute *attr, char *buf) | 
|  | 259 | { | 
|  | 260 | struct usb_interface *intf = to_usb_interface(dev); | 
|  | 261 | struct acm *acm = usb_get_intfdata(intf); | 
|  | 262 |  | 
|  | 263 | return sprintf(buf, "%d", acm->country_rel_date); | 
|  | 264 | } | 
|  | 265 |  | 
|  | 266 | static DEVICE_ATTR(iCountryCodeRelDate, S_IRUGO, show_country_rel_date, NULL); | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 267 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | * Interrupt handlers for various ACM device responses | 
|  | 269 | */ | 
|  | 270 |  | 
|  | 271 | /* control interface reports status changes with "interrupt" transfers */ | 
| David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 272 | static void acm_ctrl_irq(struct urb *urb) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | { | 
|  | 274 | struct acm *acm = urb->context; | 
|  | 275 | struct usb_cdc_notification *dr = urb->transfer_buffer; | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 276 | struct tty_struct *tty; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | unsigned char *data; | 
|  | 278 | int newctrl; | 
| Greg Kroah-Hartman | 185d405 | 2007-07-18 10:58:02 -0700 | [diff] [blame] | 279 | int retval; | 
|  | 280 | int status = urb->status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 |  | 
| Greg Kroah-Hartman | 185d405 | 2007-07-18 10:58:02 -0700 | [diff] [blame] | 282 | switch (status) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | case 0: | 
|  | 284 | /* success */ | 
|  | 285 | break; | 
|  | 286 | case -ECONNRESET: | 
|  | 287 | case -ENOENT: | 
|  | 288 | case -ESHUTDOWN: | 
|  | 289 | /* this urb is terminated, clean up */ | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 290 | dbg("%s - urb shutting down with status: %d", __func__, status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | return; | 
|  | 292 | default: | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 293 | dbg("%s - nonzero urb status received: %d", __func__, status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | goto exit; | 
|  | 295 | } | 
|  | 296 |  | 
|  | 297 | if (!ACM_READY(acm)) | 
|  | 298 | goto exit; | 
|  | 299 |  | 
|  | 300 | data = (unsigned char *)(dr + 1); | 
|  | 301 | switch (dr->bNotificationType) { | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 302 | case USB_CDC_NOTIFY_NETWORK_CONNECTION: | 
|  | 303 | dbg("%s network", dr->wValue ? | 
|  | 304 | "connected to" : "disconnected from"); | 
|  | 305 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 |  | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 307 | case USB_CDC_NOTIFY_SERIAL_STATE: | 
|  | 308 | tty = tty_port_tty_get(&acm->port); | 
|  | 309 | newctrl = get_unaligned_le16(data); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 |  | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 311 | if (tty) { | 
|  | 312 | if (!acm->clocal && | 
|  | 313 | (acm->ctrlin & ~newctrl & ACM_CTRL_DCD)) { | 
|  | 314 | dbg("calling hangup"); | 
|  | 315 | tty_hangup(tty); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | } | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 317 | tty_kref_put(tty); | 
|  | 318 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 |  | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 320 | acm->ctrlin = newctrl; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 |  | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 322 | dbg("input control lines: dcd%c dsr%c break%c ring%c framing%c parity%c overrun%c", | 
|  | 323 | acm->ctrlin & ACM_CTRL_DCD ? '+' : '-', | 
|  | 324 | acm->ctrlin & ACM_CTRL_DSR ? '+' : '-', | 
|  | 325 | acm->ctrlin & ACM_CTRL_BRK ? '+' : '-', | 
|  | 326 | acm->ctrlin & ACM_CTRL_RI  ? '+' : '-', | 
|  | 327 | acm->ctrlin & ACM_CTRL_FRAMING ? '+' : '-', | 
|  | 328 | acm->ctrlin & ACM_CTRL_PARITY ? '+' : '-', | 
|  | 329 | acm->ctrlin & ACM_CTRL_OVERRUN ? '+' : '-'); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | break; | 
|  | 331 |  | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 332 | default: | 
|  | 333 | dbg("unknown notification %d received: index %d len %d data0 %d data1 %d", | 
|  | 334 | dr->bNotificationType, dr->wIndex, | 
|  | 335 | dr->wLength, data[0], data[1]); | 
|  | 336 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | } | 
|  | 338 | exit: | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 339 | usb_mark_last_busy(acm->dev); | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 340 | retval = usb_submit_urb(urb, GFP_ATOMIC); | 
| Greg Kroah-Hartman | 185d405 | 2007-07-18 10:58:02 -0700 | [diff] [blame] | 341 | if (retval) | 
| Greg Kroah-Hartman | 9908a32 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 342 | dev_err(&urb->dev->dev, "%s - usb_submit_urb failed with " | 
|  | 343 | "result %d", __func__, retval); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | } | 
|  | 345 |  | 
|  | 346 | /* data interface returns incoming bytes, or we got unthrottled */ | 
| David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 347 | static void acm_read_bulk(struct urb *urb) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | { | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 349 | struct acm_rb *buf; | 
|  | 350 | struct acm_ru *rcv = urb->context; | 
|  | 351 | struct acm *acm = rcv->instance; | 
| Oliver Neukum | 8647894 | 2006-05-13 22:50:47 +0200 | [diff] [blame] | 352 | int status = urb->status; | 
| Greg Kroah-Hartman | 185d405 | 2007-07-18 10:58:02 -0700 | [diff] [blame] | 353 |  | 
|  | 354 | dbg("Entering acm_read_bulk with status %d", status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 |  | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 356 | if (!ACM_READY(acm)) { | 
|  | 357 | dev_dbg(&acm->data->dev, "Aborting, acm not ready"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | return; | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 359 | } | 
|  | 360 | usb_mark_last_busy(acm->dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 |  | 
| Oliver Neukum | 8647894 | 2006-05-13 22:50:47 +0200 | [diff] [blame] | 362 | if (status) | 
| Joe Perches | 898eb71 | 2007-10-18 03:06:30 -0700 | [diff] [blame] | 363 | dev_dbg(&acm->data->dev, "bulk rx status %d\n", status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 |  | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 365 | buf = rcv->buffer; | 
|  | 366 | buf->size = urb->actual_length; | 
|  | 367 |  | 
| Oliver Neukum | 8647894 | 2006-05-13 22:50:47 +0200 | [diff] [blame] | 368 | if (likely(status == 0)) { | 
|  | 369 | spin_lock(&acm->read_lock); | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 370 | acm->processing++; | 
| Oliver Neukum | 8647894 | 2006-05-13 22:50:47 +0200 | [diff] [blame] | 371 | list_add_tail(&rcv->list, &acm->spare_read_urbs); | 
|  | 372 | list_add_tail(&buf->list, &acm->filled_read_bufs); | 
|  | 373 | spin_unlock(&acm->read_lock); | 
|  | 374 | } else { | 
|  | 375 | /* we drop the buffer due to an error */ | 
|  | 376 | spin_lock(&acm->read_lock); | 
|  | 377 | list_add_tail(&rcv->list, &acm->spare_read_urbs); | 
|  | 378 | list_add(&buf->list, &acm->spare_read_bufs); | 
|  | 379 | spin_unlock(&acm->read_lock); | 
|  | 380 | /* nevertheless the tasklet must be kicked unconditionally | 
|  | 381 | so the queue cannot dry up */ | 
|  | 382 | } | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 383 | if (likely(!acm->susp_count)) | 
|  | 384 | tasklet_schedule(&acm->urb_task); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | } | 
|  | 386 |  | 
|  | 387 | static void acm_rx_tasklet(unsigned long _acm) | 
|  | 388 | { | 
|  | 389 | struct acm *acm = (void *)_acm; | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 390 | struct acm_rb *buf; | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 391 | struct tty_struct *tty; | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 392 | struct acm_ru *rcv; | 
| Jarek Poplawski | 762f007 | 2006-10-06 07:23:11 +0200 | [diff] [blame] | 393 | unsigned long flags; | 
| Oliver Neukum | ca79b7b | 2007-02-12 08:41:35 +0100 | [diff] [blame] | 394 | unsigned char throttled; | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 395 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | dbg("Entering acm_rx_tasklet"); | 
|  | 397 |  | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 398 | if (!ACM_READY(acm)) { | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 399 | dbg("acm_rx_tasklet: ACM not ready"); | 
| Oliver Neukum | ca79b7b | 2007-02-12 08:41:35 +0100 | [diff] [blame] | 400 | return; | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 401 | } | 
| Oliver Neukum | ca79b7b | 2007-02-12 08:41:35 +0100 | [diff] [blame] | 402 |  | 
| Oliver Neukum | 834dbca | 2007-03-06 10:47:04 +0100 | [diff] [blame] | 403 | spin_lock_irqsave(&acm->throttle_lock, flags); | 
| Oliver Neukum | ca79b7b | 2007-02-12 08:41:35 +0100 | [diff] [blame] | 404 | throttled = acm->throttle; | 
| Oliver Neukum | 834dbca | 2007-03-06 10:47:04 +0100 | [diff] [blame] | 405 | spin_unlock_irqrestore(&acm->throttle_lock, flags); | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 406 | if (throttled) { | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 407 | dbg("acm_rx_tasklet: throttled"); | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 408 | return; | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 409 | } | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 410 |  | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 411 | tty = tty_port_tty_get(&acm->port); | 
|  | 412 |  | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 413 | next_buffer: | 
| Jarek Poplawski | 762f007 | 2006-10-06 07:23:11 +0200 | [diff] [blame] | 414 | spin_lock_irqsave(&acm->read_lock, flags); | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 415 | if (list_empty(&acm->filled_read_bufs)) { | 
| Jarek Poplawski | 762f007 | 2006-10-06 07:23:11 +0200 | [diff] [blame] | 416 | spin_unlock_irqrestore(&acm->read_lock, flags); | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 417 | goto urbs; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | } | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 419 | buf = list_entry(acm->filled_read_bufs.next, | 
|  | 420 | struct acm_rb, list); | 
|  | 421 | list_del(&buf->list); | 
| Jarek Poplawski | 762f007 | 2006-10-06 07:23:11 +0200 | [diff] [blame] | 422 | spin_unlock_irqrestore(&acm->read_lock, flags); | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 423 |  | 
| Oliver Neukum | 3dd2ae8 | 2006-06-23 09:14:17 +0200 | [diff] [blame] | 424 | dbg("acm_rx_tasklet: procesing buf 0x%p, size = %d", buf, buf->size); | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 425 |  | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 426 | if (tty) { | 
|  | 427 | spin_lock_irqsave(&acm->throttle_lock, flags); | 
|  | 428 | throttled = acm->throttle; | 
|  | 429 | spin_unlock_irqrestore(&acm->throttle_lock, flags); | 
|  | 430 | if (!throttled) { | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 431 | tty_insert_flip_string(tty, buf->base, buf->size); | 
|  | 432 | tty_flip_buffer_push(tty); | 
|  | 433 | } else { | 
|  | 434 | tty_kref_put(tty); | 
|  | 435 | dbg("Throttling noticed"); | 
|  | 436 | spin_lock_irqsave(&acm->read_lock, flags); | 
|  | 437 | list_add(&buf->list, &acm->filled_read_bufs); | 
|  | 438 | spin_unlock_irqrestore(&acm->read_lock, flags); | 
|  | 439 | return; | 
|  | 440 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 |  | 
| Jarek Poplawski | 762f007 | 2006-10-06 07:23:11 +0200 | [diff] [blame] | 443 | spin_lock_irqsave(&acm->read_lock, flags); | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 444 | list_add(&buf->list, &acm->spare_read_bufs); | 
| Jarek Poplawski | 762f007 | 2006-10-06 07:23:11 +0200 | [diff] [blame] | 445 | spin_unlock_irqrestore(&acm->read_lock, flags); | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 446 | goto next_buffer; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 |  | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 448 | urbs: | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 449 | tty_kref_put(tty); | 
|  | 450 |  | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 451 | while (!list_empty(&acm->spare_read_bufs)) { | 
| Jarek Poplawski | 762f007 | 2006-10-06 07:23:11 +0200 | [diff] [blame] | 452 | spin_lock_irqsave(&acm->read_lock, flags); | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 453 | if (list_empty(&acm->spare_read_urbs)) { | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 454 | acm->processing = 0; | 
| Jarek Poplawski | 762f007 | 2006-10-06 07:23:11 +0200 | [diff] [blame] | 455 | spin_unlock_irqrestore(&acm->read_lock, flags); | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 456 | return; | 
|  | 457 | } | 
|  | 458 | rcv = list_entry(acm->spare_read_urbs.next, | 
|  | 459 | struct acm_ru, list); | 
|  | 460 | list_del(&rcv->list); | 
| Jarek Poplawski | 762f007 | 2006-10-06 07:23:11 +0200 | [diff] [blame] | 461 | spin_unlock_irqrestore(&acm->read_lock, flags); | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 462 |  | 
|  | 463 | buf = list_entry(acm->spare_read_bufs.next, | 
|  | 464 | struct acm_rb, list); | 
|  | 465 | list_del(&buf->list); | 
|  | 466 |  | 
|  | 467 | rcv->buffer = buf; | 
|  | 468 |  | 
| Oliver Neukum | cf7fdd5 | 2009-08-04 23:52:09 +0200 | [diff] [blame] | 469 | if (acm->is_int_ep) | 
| Arseniy Lartsev | 5186ffe | 2009-07-01 16:27:26 +0400 | [diff] [blame] | 470 | usb_fill_int_urb(rcv->urb, acm->dev, | 
|  | 471 | acm->rx_endpoint, | 
|  | 472 | buf->base, | 
|  | 473 | acm->readsize, | 
| Oliver Neukum | cf7fdd5 | 2009-08-04 23:52:09 +0200 | [diff] [blame] | 474 | acm_read_bulk, rcv, acm->bInterval); | 
| Arseniy Lartsev | 5186ffe | 2009-07-01 16:27:26 +0400 | [diff] [blame] | 475 | else | 
|  | 476 | usb_fill_bulk_urb(rcv->urb, acm->dev, | 
|  | 477 | acm->rx_endpoint, | 
|  | 478 | buf->base, | 
|  | 479 | acm->readsize, | 
|  | 480 | acm_read_bulk, rcv); | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 481 | rcv->urb->transfer_dma = buf->dma; | 
|  | 482 | rcv->urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; | 
|  | 483 |  | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 484 | /* This shouldn't kill the driver as unsuccessful URBs are | 
|  | 485 | returned to the free-urbs-pool and resubmited ASAP */ | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 486 | spin_lock_irqsave(&acm->read_lock, flags); | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 487 | if (acm->susp_count || | 
|  | 488 | usb_submit_urb(rcv->urb, GFP_ATOMIC) < 0) { | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 489 | list_add(&buf->list, &acm->spare_read_bufs); | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 490 | list_add(&rcv->list, &acm->spare_read_urbs); | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 491 | acm->processing = 0; | 
| Jarek Poplawski | 762f007 | 2006-10-06 07:23:11 +0200 | [diff] [blame] | 492 | spin_unlock_irqrestore(&acm->read_lock, flags); | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 493 | return; | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 494 | } else { | 
|  | 495 | spin_unlock_irqrestore(&acm->read_lock, flags); | 
|  | 496 | dbg("acm_rx_tasklet: sending urb 0x%p, rcv 0x%p, buf 0x%p", rcv->urb, rcv, buf); | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 497 | } | 
|  | 498 | } | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 499 | spin_lock_irqsave(&acm->read_lock, flags); | 
|  | 500 | acm->processing = 0; | 
|  | 501 | spin_unlock_irqrestore(&acm->read_lock, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | } | 
|  | 503 |  | 
|  | 504 | /* data interface wrote those outgoing bytes */ | 
| David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 505 | static void acm_write_bulk(struct urb *urb) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | { | 
| Ming Lei | cdc9779 | 2008-02-24 18:41:47 +0800 | [diff] [blame] | 507 | struct acm_wb *wb = urb->context; | 
| David Brownell | e5fbab5 | 2008-08-06 18:46:10 -0700 | [diff] [blame] | 508 | struct acm *acm = wb->instance; | 
| Brandon Philips | ad0b65e | 2008-11-06 11:19:11 -0800 | [diff] [blame] | 509 | unsigned long flags; | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 510 |  | 
| David Brownell | e5fbab5 | 2008-08-06 18:46:10 -0700 | [diff] [blame] | 511 | if (verbose || urb->status | 
|  | 512 | || (urb->actual_length != urb->transfer_buffer_length)) | 
|  | 513 | dev_dbg(&acm->data->dev, "tx %d/%d bytes -- > %d\n", | 
|  | 514 | urb->actual_length, | 
|  | 515 | urb->transfer_buffer_length, | 
|  | 516 | urb->status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 |  | 
| Brandon Philips | ad0b65e | 2008-11-06 11:19:11 -0800 | [diff] [blame] | 518 | spin_lock_irqsave(&acm->write_lock, flags); | 
| David Engraf | e4cf3aa | 2008-03-20 10:01:34 +0100 | [diff] [blame] | 519 | acm_write_done(acm, wb); | 
| Brandon Philips | ad0b65e | 2008-11-06 11:19:11 -0800 | [diff] [blame] | 520 | spin_unlock_irqrestore(&acm->write_lock, flags); | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 521 | if (ACM_READY(acm)) | 
|  | 522 | schedule_work(&acm->work); | 
| David Brownell | e5fbab5 | 2008-08-06 18:46:10 -0700 | [diff] [blame] | 523 | else | 
|  | 524 | wake_up_interruptible(&acm->drain_wait); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | } | 
|  | 526 |  | 
| David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 527 | static void acm_softint(struct work_struct *work) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | { | 
| David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 529 | struct acm *acm = container_of(work, struct acm, work); | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 530 | struct tty_struct *tty; | 
| David Brownell | e5fbab5 | 2008-08-06 18:46:10 -0700 | [diff] [blame] | 531 |  | 
|  | 532 | dev_vdbg(&acm->data->dev, "tx work\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | if (!ACM_READY(acm)) | 
|  | 534 | return; | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 535 | tty = tty_port_tty_get(&acm->port); | 
|  | 536 | tty_wakeup(tty); | 
|  | 537 | tty_kref_put(tty); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | } | 
|  | 539 |  | 
|  | 540 | /* | 
|  | 541 | * TTY handlers | 
|  | 542 | */ | 
|  | 543 |  | 
|  | 544 | static int acm_tty_open(struct tty_struct *tty, struct file *filp) | 
|  | 545 | { | 
|  | 546 | struct acm *acm; | 
| Thadeu Lima de Souza Cascardo | 42dd2aa | 2009-06-25 14:41:24 +0100 | [diff] [blame] | 547 | int rv = -ENODEV; | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 548 | int i; | 
| Oliver Neukum | 3dd2ae8 | 2006-06-23 09:14:17 +0200 | [diff] [blame] | 549 | dbg("Entering acm_tty_open."); | 
| Arjan van de Ven | 4186ecf | 2006-01-11 15:55:29 +0100 | [diff] [blame] | 550 |  | 
|  | 551 | mutex_lock(&open_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 |  | 
|  | 553 | acm = acm_table[tty->index]; | 
|  | 554 | if (!acm || !acm->dev) | 
| Oliver Neukum | 2b626dc | 2010-02-03 17:10:22 +0100 | [diff] [blame] | 555 | goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | else | 
|  | 557 | rv = 0; | 
|  | 558 |  | 
| David Engraf | 28d1dfa | 2008-03-20 10:53:52 +0100 | [diff] [blame] | 559 | set_bit(TTY_NO_WRITE_SPLIT, &tty->flags); | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 560 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | tty->driver_data = acm; | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 562 | tty_port_tty_set(&acm->port, tty); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 |  | 
| Oliver Neukum | 94409cc | 2008-02-11 15:22:29 +0100 | [diff] [blame] | 564 | if (usb_autopm_get_interface(acm->control) < 0) | 
|  | 565 | goto early_bail; | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 566 | else | 
|  | 567 | acm->control->needs_remote_wakeup = 1; | 
| Oliver Neukum | 1365baf | 2007-10-12 17:24:28 +0200 | [diff] [blame] | 568 |  | 
|  | 569 | mutex_lock(&acm->mutex); | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 570 | if (acm->port.count++) { | 
| Oliver Neukum | 2b626dc | 2010-02-03 17:10:22 +0100 | [diff] [blame] | 571 | mutex_unlock(&acm->mutex); | 
| Oliver Neukum | 1365baf | 2007-10-12 17:24:28 +0200 | [diff] [blame] | 572 | usb_autopm_put_interface(acm->control); | 
| Oliver Neukum | 2b626dc | 2010-02-03 17:10:22 +0100 | [diff] [blame] | 573 | goto out; | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 574 | } | 
| Oliver Neukum | 1365baf | 2007-10-12 17:24:28 +0200 | [diff] [blame] | 575 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | acm->ctrlurb->dev = acm->dev; | 
|  | 577 | if (usb_submit_urb(acm->ctrlurb, GFP_KERNEL)) { | 
|  | 578 | dbg("usb_submit_urb(ctrl irq) failed"); | 
|  | 579 | goto bail_out; | 
|  | 580 | } | 
|  | 581 |  | 
| Oliver Neukum | ca79b7b | 2007-02-12 08:41:35 +0100 | [diff] [blame] | 582 | if (0 > acm_set_control(acm, acm->ctrlout = ACM_CTRL_DTR | ACM_CTRL_RTS) && | 
|  | 583 | (acm->ctrl_caps & USB_CDC_CAP_LINE)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | goto full_bailout; | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 585 |  | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 586 | usb_autopm_put_interface(acm->control); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 |  | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 588 | INIT_LIST_HEAD(&acm->spare_read_urbs); | 
|  | 589 | INIT_LIST_HEAD(&acm->spare_read_bufs); | 
|  | 590 | INIT_LIST_HEAD(&acm->filled_read_bufs); | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 591 |  | 
|  | 592 | for (i = 0; i < acm->rx_buflimit; i++) | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 593 | list_add(&(acm->ru[i].list), &acm->spare_read_urbs); | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 594 | for (i = 0; i < acm->rx_buflimit; i++) | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 595 | list_add(&(acm->rb[i].list), &acm->spare_read_bufs); | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 596 |  | 
| Oliver Neukum | ca79b7b | 2007-02-12 08:41:35 +0100 | [diff] [blame] | 597 | acm->throttle = 0; | 
|  | 598 |  | 
| Oliver Neukum | 7af25b4 | 2009-09-08 23:51:28 +0200 | [diff] [blame] | 599 | set_bit(ASYNCB_INITIALIZED, &acm->port.flags); | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 600 | rv = tty_port_block_til_ready(&acm->port, tty, filp); | 
| Henry Gebhardt | 18a77b5 | 2009-11-04 11:19:28 +0100 | [diff] [blame] | 601 | tasklet_schedule(&acm->urb_task); | 
| Oliver Neukum | 2b626dc | 2010-02-03 17:10:22 +0100 | [diff] [blame] | 602 |  | 
| Oliver Neukum | 1365baf | 2007-10-12 17:24:28 +0200 | [diff] [blame] | 603 | mutex_unlock(&acm->mutex); | 
| Oliver Neukum | 2b626dc | 2010-02-03 17:10:22 +0100 | [diff] [blame] | 604 | out: | 
| Oliver Neukum | 94409cc | 2008-02-11 15:22:29 +0100 | [diff] [blame] | 605 | mutex_unlock(&open_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | return rv; | 
|  | 607 |  | 
|  | 608 | full_bailout: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | usb_kill_urb(acm->ctrlurb); | 
|  | 610 | bail_out: | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 611 | acm->port.count--; | 
| Oliver Neukum | 1365baf | 2007-10-12 17:24:28 +0200 | [diff] [blame] | 612 | mutex_unlock(&acm->mutex); | 
| Oliver Neukum | 2b626dc | 2010-02-03 17:10:22 +0100 | [diff] [blame] | 613 | usb_autopm_put_interface(acm->control); | 
| Oliver Neukum | 94409cc | 2008-02-11 15:22:29 +0100 | [diff] [blame] | 614 | early_bail: | 
|  | 615 | mutex_unlock(&open_mutex); | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 616 | tty_port_tty_set(&acm->port, NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | return -EIO; | 
|  | 618 | } | 
|  | 619 |  | 
| brian@murphy.dk | 83ef344 | 2005-06-29 16:53:29 -0700 | [diff] [blame] | 620 | static void acm_tty_unregister(struct acm *acm) | 
|  | 621 | { | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 622 | int i, nr; | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 623 |  | 
| Oliver Neukum | 8647894 | 2006-05-13 22:50:47 +0200 | [diff] [blame] | 624 | nr = acm->rx_buflimit; | 
| brian@murphy.dk | 83ef344 | 2005-06-29 16:53:29 -0700 | [diff] [blame] | 625 | tty_unregister_device(acm_tty_driver, acm->minor); | 
|  | 626 | usb_put_intf(acm->control); | 
|  | 627 | acm_table[acm->minor] = NULL; | 
|  | 628 | usb_free_urb(acm->ctrlurb); | 
| David Engraf | e4cf3aa | 2008-03-20 10:01:34 +0100 | [diff] [blame] | 629 | for (i = 0; i < ACM_NW; i++) | 
|  | 630 | usb_free_urb(acm->wb[i].urb); | 
| Oliver Neukum | 8647894 | 2006-05-13 22:50:47 +0200 | [diff] [blame] | 631 | for (i = 0; i < nr; i++) | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 632 | usb_free_urb(acm->ru[i].urb); | 
| Oliver Neukum | c4cabd2 | 2007-02-27 15:28:55 +0100 | [diff] [blame] | 633 | kfree(acm->country_codes); | 
| brian@murphy.dk | 83ef344 | 2005-06-29 16:53:29 -0700 | [diff] [blame] | 634 | kfree(acm); | 
|  | 635 | } | 
|  | 636 |  | 
| David Brownell | e5fbab5 | 2008-08-06 18:46:10 -0700 | [diff] [blame] | 637 | static int acm_tty_chars_in_buffer(struct tty_struct *tty); | 
|  | 638 |  | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 639 | static void acm_port_down(struct acm *acm, int drain) | 
|  | 640 | { | 
|  | 641 | int i, nr = acm->rx_buflimit; | 
|  | 642 | mutex_lock(&open_mutex); | 
|  | 643 | if (acm->dev) { | 
|  | 644 | usb_autopm_get_interface(acm->control); | 
|  | 645 | acm_set_control(acm, acm->ctrlout = 0); | 
|  | 646 | /* try letting the last writes drain naturally */ | 
|  | 647 | if (drain) { | 
|  | 648 | wait_event_interruptible_timeout(acm->drain_wait, | 
|  | 649 | (ACM_NW == acm_wb_is_avail(acm)) || !acm->dev, | 
|  | 650 | ACM_CLOSE_TIMEOUT * HZ); | 
|  | 651 | } | 
|  | 652 | usb_kill_urb(acm->ctrlurb); | 
|  | 653 | for (i = 0; i < ACM_NW; i++) | 
|  | 654 | usb_kill_urb(acm->wb[i].urb); | 
|  | 655 | for (i = 0; i < nr; i++) | 
|  | 656 | usb_kill_urb(acm->ru[i].urb); | 
|  | 657 | acm->control->needs_remote_wakeup = 0; | 
|  | 658 | usb_autopm_put_interface(acm->control); | 
|  | 659 | } | 
|  | 660 | mutex_unlock(&open_mutex); | 
|  | 661 | } | 
|  | 662 |  | 
|  | 663 | static void acm_tty_hangup(struct tty_struct *tty) | 
|  | 664 | { | 
|  | 665 | struct acm *acm = tty->driver_data; | 
|  | 666 | tty_port_hangup(&acm->port); | 
|  | 667 | acm_port_down(acm, 0); | 
|  | 668 | } | 
|  | 669 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | static void acm_tty_close(struct tty_struct *tty, struct file *filp) | 
|  | 671 | { | 
|  | 672 | struct acm *acm = tty->driver_data; | 
|  | 673 |  | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 674 | /* Perform the closing process and see if we need to do the hardware | 
|  | 675 | shutdown */ | 
| Francesco Lavra | 051522b | 2009-11-03 10:53:07 +0000 | [diff] [blame] | 676 | if (!acm) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | return; | 
| Francesco Lavra | 051522b | 2009-11-03 10:53:07 +0000 | [diff] [blame] | 678 | if (tty_port_close_start(&acm->port, tty, filp) == 0) { | 
|  | 679 | mutex_lock(&open_mutex); | 
|  | 680 | if (!acm->dev) { | 
|  | 681 | tty_port_tty_set(&acm->port, NULL); | 
|  | 682 | acm_tty_unregister(acm); | 
|  | 683 | tty->driver_data = NULL; | 
|  | 684 | } | 
|  | 685 | mutex_unlock(&open_mutex); | 
|  | 686 | return; | 
|  | 687 | } | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 688 | acm_port_down(acm, 0); | 
|  | 689 | tty_port_close_end(&acm->port, tty); | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 690 | tty_port_tty_set(&acm->port, NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | } | 
|  | 692 |  | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 693 | static int acm_tty_write(struct tty_struct *tty, | 
|  | 694 | const unsigned char *buf, int count) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | { | 
|  | 696 | struct acm *acm = tty->driver_data; | 
|  | 697 | int stat; | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 698 | unsigned long flags; | 
|  | 699 | int wbn; | 
|  | 700 | struct acm_wb *wb; | 
|  | 701 |  | 
| Oliver Neukum | 3dd2ae8 | 2006-06-23 09:14:17 +0200 | [diff] [blame] | 702 | dbg("Entering acm_tty_write to write %d bytes,", count); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 |  | 
|  | 704 | if (!ACM_READY(acm)) | 
|  | 705 | return -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | if (!count) | 
|  | 707 | return 0; | 
|  | 708 |  | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 709 | spin_lock_irqsave(&acm->write_lock, flags); | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 710 | wbn = acm_wb_alloc(acm); | 
|  | 711 | if (wbn < 0) { | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 712 | spin_unlock_irqrestore(&acm->write_lock, flags); | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 713 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | } | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 715 | wb = &acm->wb[wbn]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 |  | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 717 | count = (count > acm->writesize) ? acm->writesize : count; | 
|  | 718 | dbg("Get %d bytes...", count); | 
|  | 719 | memcpy(wb->buf, buf, count); | 
|  | 720 | wb->len = count; | 
|  | 721 | spin_unlock_irqrestore(&acm->write_lock, flags); | 
|  | 722 |  | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 723 | stat = acm_write_start(acm, wbn); | 
|  | 724 | if (stat < 0) | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 725 | return stat; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | return count; | 
|  | 727 | } | 
|  | 728 |  | 
|  | 729 | static int acm_tty_write_room(struct tty_struct *tty) | 
|  | 730 | { | 
|  | 731 | struct acm *acm = tty->driver_data; | 
|  | 732 | if (!ACM_READY(acm)) | 
|  | 733 | return -EINVAL; | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 734 | /* | 
|  | 735 | * Do not let the line discipline to know that we have a reserve, | 
|  | 736 | * or it might get too enthusiastic. | 
|  | 737 | */ | 
| David Brownell | 934da46 | 2008-08-06 18:44:12 -0700 | [diff] [blame] | 738 | return acm_wb_is_avail(acm) ? acm->writesize : 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | } | 
|  | 740 |  | 
|  | 741 | static int acm_tty_chars_in_buffer(struct tty_struct *tty) | 
|  | 742 | { | 
|  | 743 | struct acm *acm = tty->driver_data; | 
|  | 744 | if (!ACM_READY(acm)) | 
| Alan Cox | 23198fd | 2009-07-20 16:05:27 +0100 | [diff] [blame] | 745 | return 0; | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 746 | /* | 
|  | 747 | * This is inaccurate (overcounts), but it works. | 
|  | 748 | */ | 
| Oliver Neukum | 8647894 | 2006-05-13 22:50:47 +0200 | [diff] [blame] | 749 | return (ACM_NW - acm_wb_is_avail(acm)) * acm->writesize; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | } | 
|  | 751 |  | 
|  | 752 | static void acm_tty_throttle(struct tty_struct *tty) | 
|  | 753 | { | 
|  | 754 | struct acm *acm = tty->driver_data; | 
|  | 755 | if (!ACM_READY(acm)) | 
|  | 756 | return; | 
|  | 757 | spin_lock_bh(&acm->throttle_lock); | 
|  | 758 | acm->throttle = 1; | 
|  | 759 | spin_unlock_bh(&acm->throttle_lock); | 
|  | 760 | } | 
|  | 761 |  | 
|  | 762 | static void acm_tty_unthrottle(struct tty_struct *tty) | 
|  | 763 | { | 
|  | 764 | struct acm *acm = tty->driver_data; | 
|  | 765 | if (!ACM_READY(acm)) | 
|  | 766 | return; | 
|  | 767 | spin_lock_bh(&acm->throttle_lock); | 
|  | 768 | acm->throttle = 0; | 
|  | 769 | spin_unlock_bh(&acm->throttle_lock); | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 770 | tasklet_schedule(&acm->urb_task); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | } | 
|  | 772 |  | 
| Alan Cox | 9e98966 | 2008-07-22 11:18:03 +0100 | [diff] [blame] | 773 | static int acm_tty_break_ctl(struct tty_struct *tty, int state) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | { | 
|  | 775 | struct acm *acm = tty->driver_data; | 
| Alan Cox | 9e98966 | 2008-07-22 11:18:03 +0100 | [diff] [blame] | 776 | int retval; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | if (!ACM_READY(acm)) | 
| Alan Cox | 9e98966 | 2008-07-22 11:18:03 +0100 | [diff] [blame] | 778 | return -EINVAL; | 
|  | 779 | retval = acm_send_break(acm, state ? 0xffff : 0); | 
|  | 780 | if (retval < 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | dbg("send break failed"); | 
| Alan Cox | 9e98966 | 2008-07-22 11:18:03 +0100 | [diff] [blame] | 782 | return retval; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | } | 
|  | 784 |  | 
|  | 785 | static int acm_tty_tiocmget(struct tty_struct *tty, struct file *file) | 
|  | 786 | { | 
|  | 787 | struct acm *acm = tty->driver_data; | 
|  | 788 |  | 
|  | 789 | if (!ACM_READY(acm)) | 
|  | 790 | return -EINVAL; | 
|  | 791 |  | 
|  | 792 | return (acm->ctrlout & ACM_CTRL_DTR ? TIOCM_DTR : 0) | | 
|  | 793 | (acm->ctrlout & ACM_CTRL_RTS ? TIOCM_RTS : 0) | | 
|  | 794 | (acm->ctrlin  & ACM_CTRL_DSR ? TIOCM_DSR : 0) | | 
|  | 795 | (acm->ctrlin  & ACM_CTRL_RI  ? TIOCM_RI  : 0) | | 
|  | 796 | (acm->ctrlin  & ACM_CTRL_DCD ? TIOCM_CD  : 0) | | 
|  | 797 | TIOCM_CTS; | 
|  | 798 | } | 
|  | 799 |  | 
|  | 800 | static int acm_tty_tiocmset(struct tty_struct *tty, struct file *file, | 
|  | 801 | unsigned int set, unsigned int clear) | 
|  | 802 | { | 
|  | 803 | struct acm *acm = tty->driver_data; | 
|  | 804 | unsigned int newctrl; | 
|  | 805 |  | 
|  | 806 | if (!ACM_READY(acm)) | 
|  | 807 | return -EINVAL; | 
|  | 808 |  | 
|  | 809 | newctrl = acm->ctrlout; | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 810 | set = (set & TIOCM_DTR ? ACM_CTRL_DTR : 0) | | 
|  | 811 | (set & TIOCM_RTS ? ACM_CTRL_RTS : 0); | 
|  | 812 | clear = (clear & TIOCM_DTR ? ACM_CTRL_DTR : 0) | | 
|  | 813 | (clear & TIOCM_RTS ? ACM_CTRL_RTS : 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 |  | 
|  | 815 | newctrl = (newctrl & ~clear) | set; | 
|  | 816 |  | 
|  | 817 | if (acm->ctrlout == newctrl) | 
|  | 818 | return 0; | 
|  | 819 | return acm_set_control(acm, acm->ctrlout = newctrl); | 
|  | 820 | } | 
|  | 821 |  | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 822 | static int acm_tty_ioctl(struct tty_struct *tty, struct file *file, | 
|  | 823 | unsigned int cmd, unsigned long arg) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | { | 
|  | 825 | struct acm *acm = tty->driver_data; | 
|  | 826 |  | 
|  | 827 | if (!ACM_READY(acm)) | 
|  | 828 | return -EINVAL; | 
|  | 829 |  | 
|  | 830 | return -ENOIOCTLCMD; | 
|  | 831 | } | 
|  | 832 |  | 
| Arjan van de Ven | 4c4c943 | 2005-11-29 09:43:42 +0100 | [diff] [blame] | 833 | static const __u32 acm_tty_speed[] = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | 0, 50, 75, 110, 134, 150, 200, 300, 600, | 
|  | 835 | 1200, 1800, 2400, 4800, 9600, 19200, 38400, | 
|  | 836 | 57600, 115200, 230400, 460800, 500000, 576000, | 
|  | 837 | 921600, 1000000, 1152000, 1500000, 2000000, | 
|  | 838 | 2500000, 3000000, 3500000, 4000000 | 
|  | 839 | }; | 
|  | 840 |  | 
| Arjan van de Ven | 4c4c943 | 2005-11-29 09:43:42 +0100 | [diff] [blame] | 841 | static const __u8 acm_tty_size[] = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | 5, 6, 7, 8 | 
|  | 843 | }; | 
|  | 844 |  | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 845 | static void acm_tty_set_termios(struct tty_struct *tty, | 
|  | 846 | struct ktermios *termios_old) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | { | 
|  | 848 | struct acm *acm = tty->driver_data; | 
| Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 849 | struct ktermios *termios = tty->termios; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | struct usb_cdc_line_coding newline; | 
|  | 851 | int newctrl = acm->ctrlout; | 
|  | 852 |  | 
|  | 853 | if (!ACM_READY(acm)) | 
|  | 854 | return; | 
|  | 855 |  | 
| Alan Cox | 9b80fee | 2009-09-19 13:13:23 -0700 | [diff] [blame] | 856 | newline.dwDTERate = cpu_to_le32(tty_get_baud_rate(tty)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | newline.bCharFormat = termios->c_cflag & CSTOPB ? 2 : 0; | 
|  | 858 | newline.bParityType = termios->c_cflag & PARENB ? | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 859 | (termios->c_cflag & PARODD ? 1 : 2) + | 
|  | 860 | (termios->c_cflag & CMSPAR ? 2 : 0) : 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 861 | newline.bDataBits = acm_tty_size[(termios->c_cflag & CSIZE) >> 4]; | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 862 | /* FIXME: Needs to clear unsupported bits in the termios */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | acm->clocal = ((termios->c_cflag & CLOCAL) != 0); | 
|  | 864 |  | 
|  | 865 | if (!newline.dwDTERate) { | 
|  | 866 | newline.dwDTERate = acm->line.dwDTERate; | 
|  | 867 | newctrl &= ~ACM_CTRL_DTR; | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 868 | } else | 
|  | 869 | newctrl |=  ACM_CTRL_DTR; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 |  | 
|  | 871 | if (newctrl != acm->ctrlout) | 
|  | 872 | acm_set_control(acm, acm->ctrlout = newctrl); | 
|  | 873 |  | 
|  | 874 | if (memcmp(&acm->line, &newline, sizeof newline)) { | 
|  | 875 | memcpy(&acm->line, &newline, sizeof newline); | 
|  | 876 | dbg("set line: %d %d %d %d", le32_to_cpu(newline.dwDTERate), | 
|  | 877 | newline.bCharFormat, newline.bParityType, | 
|  | 878 | newline.bDataBits); | 
|  | 879 | acm_set_line(acm, &acm->line); | 
|  | 880 | } | 
|  | 881 | } | 
|  | 882 |  | 
|  | 883 | /* | 
|  | 884 | * USB probe and disconnect routines. | 
|  | 885 | */ | 
|  | 886 |  | 
| Oliver Neukum | 830f402 | 2008-06-25 14:17:16 +0200 | [diff] [blame] | 887 | /* Little helpers: write/read buffers free */ | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 888 | static void acm_write_buffers_free(struct acm *acm) | 
|  | 889 | { | 
|  | 890 | int i; | 
|  | 891 | struct acm_wb *wb; | 
| Oliver Neukum | a496c64 | 2008-10-21 10:39:04 +0200 | [diff] [blame] | 892 | struct usb_device *usb_dev = interface_to_usbdev(acm->control); | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 893 |  | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 894 | for (wb = &acm->wb[0], i = 0; i < ACM_NW; i++, wb++) | 
| Daniel Mack | 997ea58 | 2010-04-12 13:17:25 +0200 | [diff] [blame] | 895 | usb_free_coherent(usb_dev, acm->writesize, wb->buf, wb->dmah); | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 896 | } | 
|  | 897 |  | 
| Oliver Neukum | 830f402 | 2008-06-25 14:17:16 +0200 | [diff] [blame] | 898 | static void acm_read_buffers_free(struct acm *acm) | 
|  | 899 | { | 
|  | 900 | struct usb_device *usb_dev = interface_to_usbdev(acm->control); | 
|  | 901 | int i, n = acm->rx_buflimit; | 
|  | 902 |  | 
|  | 903 | for (i = 0; i < n; i++) | 
| Daniel Mack | 997ea58 | 2010-04-12 13:17:25 +0200 | [diff] [blame] | 904 | usb_free_coherent(usb_dev, acm->readsize, | 
|  | 905 | acm->rb[i].base, acm->rb[i].dma); | 
| Oliver Neukum | 830f402 | 2008-06-25 14:17:16 +0200 | [diff] [blame] | 906 | } | 
|  | 907 |  | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 908 | /* Little helper: write buffers allocate */ | 
|  | 909 | static int acm_write_buffers_alloc(struct acm *acm) | 
|  | 910 | { | 
|  | 911 | int i; | 
|  | 912 | struct acm_wb *wb; | 
|  | 913 |  | 
| Oliver Neukum | 8647894 | 2006-05-13 22:50:47 +0200 | [diff] [blame] | 914 | for (wb = &acm->wb[0], i = 0; i < ACM_NW; i++, wb++) { | 
| Daniel Mack | 997ea58 | 2010-04-12 13:17:25 +0200 | [diff] [blame] | 915 | wb->buf = usb_alloc_coherent(acm->dev, acm->writesize, GFP_KERNEL, | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 916 | &wb->dmah); | 
|  | 917 | if (!wb->buf) { | 
|  | 918 | while (i != 0) { | 
|  | 919 | --i; | 
|  | 920 | --wb; | 
| Daniel Mack | 997ea58 | 2010-04-12 13:17:25 +0200 | [diff] [blame] | 921 | usb_free_coherent(acm->dev, acm->writesize, | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 922 | wb->buf, wb->dmah); | 
|  | 923 | } | 
|  | 924 | return -ENOMEM; | 
|  | 925 | } | 
|  | 926 | } | 
|  | 927 | return 0; | 
|  | 928 | } | 
|  | 929 |  | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 930 | static int acm_probe(struct usb_interface *intf, | 
|  | 931 | const struct usb_device_id *id) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | { | 
|  | 933 | struct usb_cdc_union_desc *union_header = NULL; | 
| Oliver Neukum | c4cabd2 | 2007-02-27 15:28:55 +0100 | [diff] [blame] | 934 | struct usb_cdc_country_functional_desc *cfd = NULL; | 
| David Brownell | c6dbf55 | 2008-04-13 14:00:44 -0700 | [diff] [blame] | 935 | unsigned char *buffer = intf->altsetting->extra; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | int buflen = intf->altsetting->extralen; | 
|  | 937 | struct usb_interface *control_interface; | 
|  | 938 | struct usb_interface *data_interface; | 
| Oliver Neukum | a2bfb4a | 2009-05-16 21:13:19 +0200 | [diff] [blame] | 939 | struct usb_endpoint_descriptor *epctrl = NULL; | 
|  | 940 | struct usb_endpoint_descriptor *epread = NULL; | 
|  | 941 | struct usb_endpoint_descriptor *epwrite = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | struct usb_device *usb_dev = interface_to_usbdev(intf); | 
|  | 943 | struct acm *acm; | 
|  | 944 | int minor; | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 945 | int ctrlsize, readsize; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 946 | u8 *buf; | 
|  | 947 | u8 ac_management_function = 0; | 
|  | 948 | u8 call_management_function = 0; | 
|  | 949 | int call_interface_num = -1; | 
|  | 950 | int data_interface_num; | 
|  | 951 | unsigned long quirks; | 
| Oliver Neukum | 8647894 | 2006-05-13 22:50:47 +0200 | [diff] [blame] | 952 | int num_rx_buf; | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 953 | int i; | 
| Oliver Neukum | a2bfb4a | 2009-05-16 21:13:19 +0200 | [diff] [blame] | 954 | int combined_interfaces = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 955 |  | 
| Oliver Neukum | 8647894 | 2006-05-13 22:50:47 +0200 | [diff] [blame] | 956 | /* normal quirks */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | quirks = (unsigned long)id->driver_info; | 
| Oliver Neukum | 8647894 | 2006-05-13 22:50:47 +0200 | [diff] [blame] | 958 | num_rx_buf = (quirks == SINGLE_RX_URB) ? 1 : ACM_NR; | 
|  | 959 |  | 
|  | 960 | /* handle quirks deadly to normal probing*/ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | if (quirks == NO_UNION_NORMAL) { | 
|  | 962 | data_interface = usb_ifnum_to_if(usb_dev, 1); | 
|  | 963 | control_interface = usb_ifnum_to_if(usb_dev, 0); | 
|  | 964 | goto skip_normal_probe; | 
|  | 965 | } | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 966 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | /* normal probing*/ | 
|  | 968 | if (!buffer) { | 
| Greg Kroah-Hartman | 9908a32 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 969 | dev_err(&intf->dev, "Weird descriptor references\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 970 | return -EINVAL; | 
|  | 971 | } | 
|  | 972 |  | 
|  | 973 | if (!buflen) { | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 974 | if (intf->cur_altsetting->endpoint->extralen && | 
|  | 975 | intf->cur_altsetting->endpoint->extra) { | 
|  | 976 | dev_dbg(&intf->dev, | 
|  | 977 | "Seeking extra descriptors on endpoint\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 978 | buflen = intf->cur_altsetting->endpoint->extralen; | 
|  | 979 | buffer = intf->cur_altsetting->endpoint->extra; | 
|  | 980 | } else { | 
| Greg Kroah-Hartman | 9908a32 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 981 | dev_err(&intf->dev, | 
|  | 982 | "Zero length descriptor references\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 983 | return -EINVAL; | 
|  | 984 | } | 
|  | 985 | } | 
|  | 986 |  | 
|  | 987 | while (buflen > 0) { | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 988 | if (buffer[1] != USB_DT_CS_INTERFACE) { | 
| Greg Kroah-Hartman | 9908a32 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 989 | dev_err(&intf->dev, "skipping garbage\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | goto next_desc; | 
|  | 991 | } | 
|  | 992 |  | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 993 | switch (buffer[2]) { | 
|  | 994 | case USB_CDC_UNION_TYPE: /* we've found it */ | 
|  | 995 | if (union_header) { | 
|  | 996 | dev_err(&intf->dev, "More than one " | 
|  | 997 | "union descriptor, skipping ...\n"); | 
|  | 998 | goto next_desc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | } | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 1000 | union_header = (struct usb_cdc_union_desc *)buffer; | 
|  | 1001 | break; | 
|  | 1002 | case USB_CDC_COUNTRY_TYPE: /* export through sysfs*/ | 
|  | 1003 | cfd = (struct usb_cdc_country_functional_desc *)buffer; | 
|  | 1004 | break; | 
|  | 1005 | case USB_CDC_HEADER_TYPE: /* maybe check version */ | 
|  | 1006 | break; /* for now we ignore it */ | 
|  | 1007 | case USB_CDC_ACM_TYPE: | 
|  | 1008 | ac_management_function = buffer[3]; | 
|  | 1009 | break; | 
|  | 1010 | case USB_CDC_CALL_MANAGEMENT_TYPE: | 
|  | 1011 | call_management_function = buffer[3]; | 
|  | 1012 | call_interface_num = buffer[4]; | 
| Julian Calaby | ce12664 | 2010-01-05 23:58:20 +1100 | [diff] [blame] | 1013 | if ( (quirks & NOT_A_MODEM) == 0 && (call_management_function & 3) != 3) | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 1014 | dev_err(&intf->dev, "This device cannot do calls on its own. It is not a modem.\n"); | 
|  | 1015 | break; | 
|  | 1016 | default: | 
|  | 1017 | /* there are LOTS more CDC descriptors that | 
|  | 1018 | * could legitimately be found here. | 
|  | 1019 | */ | 
|  | 1020 | dev_dbg(&intf->dev, "Ignoring descriptor: " | 
|  | 1021 | "type %02x, length %d\n", | 
|  | 1022 | buffer[2], buffer[0]); | 
|  | 1023 | break; | 
|  | 1024 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1025 | next_desc: | 
|  | 1026 | buflen -= buffer[0]; | 
|  | 1027 | buffer += buffer[0]; | 
|  | 1028 | } | 
|  | 1029 |  | 
|  | 1030 | if (!union_header) { | 
|  | 1031 | if (call_interface_num > 0) { | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 1032 | dev_dbg(&intf->dev, "No union descriptor, using call management descriptor\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | data_interface = usb_ifnum_to_if(usb_dev, (data_interface_num = call_interface_num)); | 
|  | 1034 | control_interface = intf; | 
|  | 1035 | } else { | 
| Oliver Neukum | a2bfb4a | 2009-05-16 21:13:19 +0200 | [diff] [blame] | 1036 | if (intf->cur_altsetting->desc.bNumEndpoints != 3) { | 
|  | 1037 | dev_dbg(&intf->dev,"No union descriptor, giving up\n"); | 
|  | 1038 | return -ENODEV; | 
|  | 1039 | } else { | 
|  | 1040 | dev_warn(&intf->dev,"No union descriptor, testing for castrated device\n"); | 
|  | 1041 | combined_interfaces = 1; | 
|  | 1042 | control_interface = data_interface = intf; | 
|  | 1043 | goto look_for_collapsed_interface; | 
|  | 1044 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | } | 
|  | 1046 | } else { | 
|  | 1047 | control_interface = usb_ifnum_to_if(usb_dev, union_header->bMasterInterface0); | 
|  | 1048 | data_interface = usb_ifnum_to_if(usb_dev, (data_interface_num = union_header->bSlaveInterface0)); | 
|  | 1049 | if (!control_interface || !data_interface) { | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 1050 | dev_dbg(&intf->dev, "no interfaces\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | return -ENODEV; | 
|  | 1052 | } | 
|  | 1053 | } | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 1054 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1055 | if (data_interface_num != call_interface_num) | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 1056 | dev_dbg(&intf->dev, "Separate call control interface. That is not fully supported.\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1057 |  | 
| Oliver Neukum | a2bfb4a | 2009-05-16 21:13:19 +0200 | [diff] [blame] | 1058 | if (control_interface == data_interface) { | 
|  | 1059 | /* some broken devices designed for windows work this way */ | 
|  | 1060 | dev_warn(&intf->dev,"Control and data interfaces are not separated!\n"); | 
|  | 1061 | combined_interfaces = 1; | 
|  | 1062 | /* a popular other OS doesn't use it */ | 
|  | 1063 | quirks |= NO_CAP_LINE; | 
|  | 1064 | if (data_interface->cur_altsetting->desc.bNumEndpoints != 3) { | 
|  | 1065 | dev_err(&intf->dev, "This needs exactly 3 endpoints\n"); | 
|  | 1066 | return -EINVAL; | 
|  | 1067 | } | 
|  | 1068 | look_for_collapsed_interface: | 
|  | 1069 | for (i = 0; i < 3; i++) { | 
|  | 1070 | struct usb_endpoint_descriptor *ep; | 
|  | 1071 | ep = &data_interface->cur_altsetting->endpoint[i].desc; | 
|  | 1072 |  | 
|  | 1073 | if (usb_endpoint_is_int_in(ep)) | 
|  | 1074 | epctrl = ep; | 
|  | 1075 | else if (usb_endpoint_is_bulk_out(ep)) | 
|  | 1076 | epwrite = ep; | 
|  | 1077 | else if (usb_endpoint_is_bulk_in(ep)) | 
|  | 1078 | epread = ep; | 
|  | 1079 | else | 
|  | 1080 | return -EINVAL; | 
|  | 1081 | } | 
|  | 1082 | if (!epctrl || !epread || !epwrite) | 
|  | 1083 | return -ENODEV; | 
|  | 1084 | else | 
|  | 1085 | goto made_compressed_probe; | 
|  | 1086 | } | 
|  | 1087 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | skip_normal_probe: | 
|  | 1089 |  | 
|  | 1090 | /*workaround for switched interfaces */ | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 1091 | if (data_interface->cur_altsetting->desc.bInterfaceClass | 
|  | 1092 | != CDC_DATA_INTERFACE_TYPE) { | 
|  | 1093 | if (control_interface->cur_altsetting->desc.bInterfaceClass | 
|  | 1094 | == CDC_DATA_INTERFACE_TYPE) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | struct usb_interface *t; | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 1096 | dev_dbg(&intf->dev, | 
|  | 1097 | "Your device has switched interfaces.\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | t = control_interface; | 
|  | 1099 | control_interface = data_interface; | 
|  | 1100 | data_interface = t; | 
|  | 1101 | } else { | 
|  | 1102 | return -EINVAL; | 
|  | 1103 | } | 
|  | 1104 | } | 
| Alan Stern | 74da5d6 | 2007-08-02 13:29:10 -0400 | [diff] [blame] | 1105 |  | 
|  | 1106 | /* Accept probe requests only for the control interface */ | 
| Oliver Neukum | a2bfb4a | 2009-05-16 21:13:19 +0200 | [diff] [blame] | 1107 | if (!combined_interfaces && intf != control_interface) | 
| Alan Stern | 74da5d6 | 2007-08-02 13:29:10 -0400 | [diff] [blame] | 1108 | return -ENODEV; | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 1109 |  | 
| Oliver Neukum | a2bfb4a | 2009-05-16 21:13:19 +0200 | [diff] [blame] | 1110 | if (!combined_interfaces && usb_interface_claimed(data_interface)) { | 
|  | 1111 | /* valid in this context */ | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 1112 | dev_dbg(&intf->dev, "The data interface isn't available\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1113 | return -EBUSY; | 
|  | 1114 | } | 
|  | 1115 |  | 
|  | 1116 |  | 
|  | 1117 | if (data_interface->cur_altsetting->desc.bNumEndpoints < 2) | 
|  | 1118 | return -EINVAL; | 
|  | 1119 |  | 
|  | 1120 | epctrl = &control_interface->cur_altsetting->endpoint[0].desc; | 
|  | 1121 | epread = &data_interface->cur_altsetting->endpoint[0].desc; | 
|  | 1122 | epwrite = &data_interface->cur_altsetting->endpoint[1].desc; | 
|  | 1123 |  | 
|  | 1124 |  | 
|  | 1125 | /* workaround for switched endpoints */ | 
| Luiz Fernando N. Capitulino | 45aea70 | 2006-10-26 13:02:48 -0300 | [diff] [blame] | 1126 | if (!usb_endpoint_dir_in(epread)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | /* descriptors are swapped */ | 
|  | 1128 | struct usb_endpoint_descriptor *t; | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 1129 | dev_dbg(&intf->dev, | 
|  | 1130 | "The data interface has switched endpoints\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1131 | t = epread; | 
|  | 1132 | epread = epwrite; | 
|  | 1133 | epwrite = t; | 
|  | 1134 | } | 
| Oliver Neukum | a2bfb4a | 2009-05-16 21:13:19 +0200 | [diff] [blame] | 1135 | made_compressed_probe: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1136 | dbg("interfaces are valid"); | 
|  | 1137 | for (minor = 0; minor < ACM_TTY_MINORS && acm_table[minor]; minor++); | 
|  | 1138 |  | 
|  | 1139 | if (minor == ACM_TTY_MINORS) { | 
| Greg Kroah-Hartman | 9908a32 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 1140 | dev_err(&intf->dev, "no more free acm devices\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1141 | return -ENODEV; | 
|  | 1142 | } | 
|  | 1143 |  | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 1144 | acm = kzalloc(sizeof(struct acm), GFP_KERNEL); | 
|  | 1145 | if (acm == NULL) { | 
| Joe Perches | 898eb71 | 2007-10-18 03:06:30 -0700 | [diff] [blame] | 1146 | dev_dbg(&intf->dev, "out of memory (acm kzalloc)\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1147 | goto alloc_fail; | 
|  | 1148 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1149 |  | 
|  | 1150 | ctrlsize = le16_to_cpu(epctrl->wMaxPacketSize); | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 1151 | readsize = le16_to_cpu(epread->wMaxPacketSize) * | 
|  | 1152 | (quirks == SINGLE_RX_URB ? 1 : 2); | 
| Oliver Neukum | a2bfb4a | 2009-05-16 21:13:19 +0200 | [diff] [blame] | 1153 | acm->combined_interfaces = combined_interfaces; | 
| David Engraf | e4cf3aa | 2008-03-20 10:01:34 +0100 | [diff] [blame] | 1154 | acm->writesize = le16_to_cpu(epwrite->wMaxPacketSize) * 20; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1155 | acm->control = control_interface; | 
|  | 1156 | acm->data = data_interface; | 
|  | 1157 | acm->minor = minor; | 
|  | 1158 | acm->dev = usb_dev; | 
|  | 1159 | acm->ctrl_caps = ac_management_function; | 
| Oliver Neukum | a2bfb4a | 2009-05-16 21:13:19 +0200 | [diff] [blame] | 1160 | if (quirks & NO_CAP_LINE) | 
|  | 1161 | acm->ctrl_caps &= ~USB_CDC_CAP_LINE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | acm->ctrlsize = ctrlsize; | 
|  | 1163 | acm->readsize = readsize; | 
| Oliver Neukum | 8647894 | 2006-05-13 22:50:47 +0200 | [diff] [blame] | 1164 | acm->rx_buflimit = num_rx_buf; | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 1165 | acm->urb_task.func = acm_rx_tasklet; | 
|  | 1166 | acm->urb_task.data = (unsigned long) acm; | 
| David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 1167 | INIT_WORK(&acm->work, acm_softint); | 
| David Brownell | e5fbab5 | 2008-08-06 18:46:10 -0700 | [diff] [blame] | 1168 | init_waitqueue_head(&acm->drain_wait); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1169 | spin_lock_init(&acm->throttle_lock); | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 1170 | spin_lock_init(&acm->write_lock); | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 1171 | spin_lock_init(&acm->read_lock); | 
| Oliver Neukum | 1365baf | 2007-10-12 17:24:28 +0200 | [diff] [blame] | 1172 | mutex_init(&acm->mutex); | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 1173 | acm->rx_endpoint = usb_rcvbulkpipe(usb_dev, epread->bEndpointAddress); | 
| Oliver Neukum | cf7fdd5 | 2009-08-04 23:52:09 +0200 | [diff] [blame] | 1174 | acm->is_int_ep = usb_endpoint_xfer_int(epread); | 
|  | 1175 | if (acm->is_int_ep) | 
|  | 1176 | acm->bInterval = epread->bInterval; | 
| Alan Cox | 739e028 | 2009-06-11 12:27:50 +0100 | [diff] [blame] | 1177 | tty_port_init(&acm->port); | 
|  | 1178 | acm->port.ops = &acm_port_ops; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1179 |  | 
| Daniel Mack | 997ea58 | 2010-04-12 13:17:25 +0200 | [diff] [blame] | 1180 | buf = usb_alloc_coherent(usb_dev, ctrlsize, GFP_KERNEL, &acm->ctrl_dma); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | if (!buf) { | 
| Joe Perches | 898eb71 | 2007-10-18 03:06:30 -0700 | [diff] [blame] | 1182 | dev_dbg(&intf->dev, "out of memory (ctrl buffer alloc)\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1183 | goto alloc_fail2; | 
|  | 1184 | } | 
|  | 1185 | acm->ctrl_buffer = buf; | 
|  | 1186 |  | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 1187 | if (acm_write_buffers_alloc(acm) < 0) { | 
| Joe Perches | 898eb71 | 2007-10-18 03:06:30 -0700 | [diff] [blame] | 1188 | dev_dbg(&intf->dev, "out of memory (write buffer alloc)\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 | goto alloc_fail4; | 
|  | 1190 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1191 |  | 
|  | 1192 | acm->ctrlurb = usb_alloc_urb(0, GFP_KERNEL); | 
|  | 1193 | if (!acm->ctrlurb) { | 
| Joe Perches | 898eb71 | 2007-10-18 03:06:30 -0700 | [diff] [blame] | 1194 | dev_dbg(&intf->dev, "out of memory (ctrlurb kmalloc)\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1195 | goto alloc_fail5; | 
|  | 1196 | } | 
| Oliver Neukum | 8647894 | 2006-05-13 22:50:47 +0200 | [diff] [blame] | 1197 | for (i = 0; i < num_rx_buf; i++) { | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 1198 | struct acm_ru *rcv = &(acm->ru[i]); | 
|  | 1199 |  | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 1200 | rcv->urb = usb_alloc_urb(0, GFP_KERNEL); | 
|  | 1201 | if (rcv->urb == NULL) { | 
|  | 1202 | dev_dbg(&intf->dev, | 
|  | 1203 | "out of memory (read urbs usb_alloc_urb)\n"); | 
| Axel Lin | c2572b7 | 2010-05-31 08:04:47 +0800 | [diff] [blame] | 1204 | goto alloc_fail6; | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 1205 | } | 
|  | 1206 |  | 
|  | 1207 | rcv->urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; | 
|  | 1208 | rcv->instance = acm; | 
|  | 1209 | } | 
| Oliver Neukum | 8647894 | 2006-05-13 22:50:47 +0200 | [diff] [blame] | 1210 | for (i = 0; i < num_rx_buf; i++) { | 
| David Brownell | 672c4e1 | 2008-08-06 18:41:12 -0700 | [diff] [blame] | 1211 | struct acm_rb *rb = &(acm->rb[i]); | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 1212 |  | 
| Daniel Mack | 997ea58 | 2010-04-12 13:17:25 +0200 | [diff] [blame] | 1213 | rb->base = usb_alloc_coherent(acm->dev, readsize, | 
| David Brownell | 672c4e1 | 2008-08-06 18:41:12 -0700 | [diff] [blame] | 1214 | GFP_KERNEL, &rb->dma); | 
|  | 1215 | if (!rb->base) { | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 1216 | dev_dbg(&intf->dev, | 
| Daniel Mack | 997ea58 | 2010-04-12 13:17:25 +0200 | [diff] [blame] | 1217 | "out of memory (read bufs usb_alloc_coherent)\n"); | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 1218 | goto alloc_fail7; | 
|  | 1219 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 | } | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 1221 | for (i = 0; i < ACM_NW; i++) { | 
| David Engraf | e4cf3aa | 2008-03-20 10:01:34 +0100 | [diff] [blame] | 1222 | struct acm_wb *snd = &(acm->wb[i]); | 
|  | 1223 |  | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 1224 | snd->urb = usb_alloc_urb(0, GFP_KERNEL); | 
|  | 1225 | if (snd->urb == NULL) { | 
|  | 1226 | dev_dbg(&intf->dev, | 
|  | 1227 | "out of memory (write urbs usb_alloc_urb)"); | 
| Axel Lin | c2572b7 | 2010-05-31 08:04:47 +0800 | [diff] [blame] | 1228 | goto alloc_fail8; | 
| David Engraf | e4cf3aa | 2008-03-20 10:01:34 +0100 | [diff] [blame] | 1229 | } | 
|  | 1230 |  | 
| Arseniy Lartsev | 5186ffe | 2009-07-01 16:27:26 +0400 | [diff] [blame] | 1231 | if (usb_endpoint_xfer_int(epwrite)) | 
|  | 1232 | usb_fill_int_urb(snd->urb, usb_dev, | 
|  | 1233 | usb_sndbulkpipe(usb_dev, epwrite->bEndpointAddress), | 
|  | 1234 | NULL, acm->writesize, acm_write_bulk, snd, epwrite->bInterval); | 
|  | 1235 | else | 
|  | 1236 | usb_fill_bulk_urb(snd->urb, usb_dev, | 
|  | 1237 | usb_sndbulkpipe(usb_dev, epwrite->bEndpointAddress), | 
|  | 1238 | NULL, acm->writesize, acm_write_bulk, snd); | 
| David Engraf | e4cf3aa | 2008-03-20 10:01:34 +0100 | [diff] [blame] | 1239 | snd->urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; | 
|  | 1240 | snd->instance = acm; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1241 | } | 
|  | 1242 |  | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 1243 | usb_set_intfdata(intf, acm); | 
| Oliver Neukum | c4cabd2 | 2007-02-27 15:28:55 +0100 | [diff] [blame] | 1244 |  | 
|  | 1245 | i = device_create_file(&intf->dev, &dev_attr_bmCapabilities); | 
|  | 1246 | if (i < 0) | 
|  | 1247 | goto alloc_fail8; | 
|  | 1248 |  | 
|  | 1249 | if (cfd) { /* export the country data */ | 
|  | 1250 | acm->country_codes = kmalloc(cfd->bLength - 4, GFP_KERNEL); | 
|  | 1251 | if (!acm->country_codes) | 
|  | 1252 | goto skip_countries; | 
|  | 1253 | acm->country_code_size = cfd->bLength - 4; | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 1254 | memcpy(acm->country_codes, (u8 *)&cfd->wCountyCode0, | 
|  | 1255 | cfd->bLength - 4); | 
| Oliver Neukum | c4cabd2 | 2007-02-27 15:28:55 +0100 | [diff] [blame] | 1256 | acm->country_rel_date = cfd->iCountryCodeRelDate; | 
|  | 1257 |  | 
|  | 1258 | i = device_create_file(&intf->dev, &dev_attr_wCountryCodes); | 
|  | 1259 | if (i < 0) { | 
|  | 1260 | kfree(acm->country_codes); | 
|  | 1261 | goto skip_countries; | 
|  | 1262 | } | 
|  | 1263 |  | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 1264 | i = device_create_file(&intf->dev, | 
|  | 1265 | &dev_attr_iCountryCodeRelDate); | 
| Oliver Neukum | c4cabd2 | 2007-02-27 15:28:55 +0100 | [diff] [blame] | 1266 | if (i < 0) { | 
| Axel Lin | c2572b7 | 2010-05-31 08:04:47 +0800 | [diff] [blame] | 1267 | device_remove_file(&intf->dev, &dev_attr_wCountryCodes); | 
| Oliver Neukum | c4cabd2 | 2007-02-27 15:28:55 +0100 | [diff] [blame] | 1268 | kfree(acm->country_codes); | 
|  | 1269 | goto skip_countries; | 
|  | 1270 | } | 
|  | 1271 | } | 
|  | 1272 |  | 
|  | 1273 | skip_countries: | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 1274 | usb_fill_int_urb(acm->ctrlurb, usb_dev, | 
| Oliver Neukum | a2bfb4a | 2009-05-16 21:13:19 +0200 | [diff] [blame] | 1275 | usb_rcvintpipe(usb_dev, epctrl->bEndpointAddress), | 
|  | 1276 | acm->ctrl_buffer, ctrlsize, acm_ctrl_irq, acm, | 
|  | 1277 | /* works around buggy devices */ | 
|  | 1278 | epctrl->bInterval ? epctrl->bInterval : 0xff); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | acm->ctrlurb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; | 
|  | 1280 | acm->ctrlurb->transfer_dma = acm->ctrl_dma; | 
|  | 1281 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1282 | dev_info(&intf->dev, "ttyACM%d: USB ACM device\n", minor); | 
|  | 1283 |  | 
|  | 1284 | acm_set_control(acm, acm->ctrlout); | 
|  | 1285 |  | 
|  | 1286 | acm->line.dwDTERate = cpu_to_le32(9600); | 
|  | 1287 | acm->line.bDataBits = 8; | 
|  | 1288 | acm_set_line(acm, &acm->line); | 
|  | 1289 |  | 
|  | 1290 | usb_driver_claim_interface(&acm_driver, data_interface, acm); | 
| David Brownell | 672c4e1 | 2008-08-06 18:41:12 -0700 | [diff] [blame] | 1291 | usb_set_intfdata(data_interface, acm); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1292 |  | 
| brian@murphy.dk | 83ef344 | 2005-06-29 16:53:29 -0700 | [diff] [blame] | 1293 | usb_get_intf(control_interface); | 
|  | 1294 | tty_register_device(acm_tty_driver, minor, &control_interface->dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1295 |  | 
|  | 1296 | acm_table[minor] = acm; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1297 |  | 
| Oliver Neukum | c4cabd2 | 2007-02-27 15:28:55 +0100 | [diff] [blame] | 1298 | return 0; | 
|  | 1299 | alloc_fail8: | 
| David Engraf | e4cf3aa | 2008-03-20 10:01:34 +0100 | [diff] [blame] | 1300 | for (i = 0; i < ACM_NW; i++) | 
|  | 1301 | usb_free_urb(acm->wb[i].urb); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1302 | alloc_fail7: | 
| Oliver Neukum | 830f402 | 2008-06-25 14:17:16 +0200 | [diff] [blame] | 1303 | acm_read_buffers_free(acm); | 
| Axel Lin | c2572b7 | 2010-05-31 08:04:47 +0800 | [diff] [blame] | 1304 | alloc_fail6: | 
| Oliver Neukum | 8647894 | 2006-05-13 22:50:47 +0200 | [diff] [blame] | 1305 | for (i = 0; i < num_rx_buf; i++) | 
| David Kubicek | 61a87ad | 2005-11-01 18:51:34 +0100 | [diff] [blame] | 1306 | usb_free_urb(acm->ru[i].urb); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | usb_free_urb(acm->ctrlurb); | 
|  | 1308 | alloc_fail5: | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 1309 | acm_write_buffers_free(acm); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1310 | alloc_fail4: | 
| Daniel Mack | 997ea58 | 2010-04-12 13:17:25 +0200 | [diff] [blame] | 1311 | usb_free_coherent(usb_dev, ctrlsize, acm->ctrl_buffer, acm->ctrl_dma); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1312 | alloc_fail2: | 
|  | 1313 | kfree(acm); | 
|  | 1314 | alloc_fail: | 
|  | 1315 | return -ENOMEM; | 
|  | 1316 | } | 
|  | 1317 |  | 
| Oliver Neukum | 1365baf | 2007-10-12 17:24:28 +0200 | [diff] [blame] | 1318 | static void stop_data_traffic(struct acm *acm) | 
|  | 1319 | { | 
|  | 1320 | int i; | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 1321 | dbg("Entering stop_data_traffic"); | 
| Oliver Neukum | 1365baf | 2007-10-12 17:24:28 +0200 | [diff] [blame] | 1322 |  | 
|  | 1323 | tasklet_disable(&acm->urb_task); | 
|  | 1324 |  | 
|  | 1325 | usb_kill_urb(acm->ctrlurb); | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 1326 | for (i = 0; i < ACM_NW; i++) | 
| David Engraf | e4cf3aa | 2008-03-20 10:01:34 +0100 | [diff] [blame] | 1327 | usb_kill_urb(acm->wb[i].urb); | 
| Oliver Neukum | 1365baf | 2007-10-12 17:24:28 +0200 | [diff] [blame] | 1328 | for (i = 0; i < acm->rx_buflimit; i++) | 
|  | 1329 | usb_kill_urb(acm->ru[i].urb); | 
|  | 1330 |  | 
| Oliver Neukum | 1365baf | 2007-10-12 17:24:28 +0200 | [diff] [blame] | 1331 | tasklet_enable(&acm->urb_task); | 
|  | 1332 |  | 
|  | 1333 | cancel_work_sync(&acm->work); | 
|  | 1334 | } | 
|  | 1335 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1336 | static void acm_disconnect(struct usb_interface *intf) | 
|  | 1337 | { | 
| Oliver Neukum | c4cabd2 | 2007-02-27 15:28:55 +0100 | [diff] [blame] | 1338 | struct acm *acm = usb_get_intfdata(intf); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | struct usb_device *usb_dev = interface_to_usbdev(intf); | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 1340 | struct tty_struct *tty; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1341 |  | 
| David Brownell | 672c4e1 | 2008-08-06 18:41:12 -0700 | [diff] [blame] | 1342 | /* sibling interface is already cleaning up */ | 
|  | 1343 | if (!acm) | 
| Oliver Neukum | 86067eea | 2006-01-08 12:39:13 +0100 | [diff] [blame] | 1344 | return; | 
| David Brownell | 672c4e1 | 2008-08-06 18:41:12 -0700 | [diff] [blame] | 1345 |  | 
|  | 1346 | mutex_lock(&open_mutex); | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 1347 | if (acm->country_codes) { | 
| Alan Stern | 74da5d6 | 2007-08-02 13:29:10 -0400 | [diff] [blame] | 1348 | device_remove_file(&acm->control->dev, | 
|  | 1349 | &dev_attr_wCountryCodes); | 
|  | 1350 | device_remove_file(&acm->control->dev, | 
|  | 1351 | &dev_attr_iCountryCodeRelDate); | 
| Oliver Neukum | c4cabd2 | 2007-02-27 15:28:55 +0100 | [diff] [blame] | 1352 | } | 
| Alan Stern | 74da5d6 | 2007-08-02 13:29:10 -0400 | [diff] [blame] | 1353 | device_remove_file(&acm->control->dev, &dev_attr_bmCapabilities); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | acm->dev = NULL; | 
| Oliver Neukum | 86067eea | 2006-01-08 12:39:13 +0100 | [diff] [blame] | 1355 | usb_set_intfdata(acm->control, NULL); | 
|  | 1356 | usb_set_intfdata(acm->data, NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1357 |  | 
| Oliver Neukum | 1365baf | 2007-10-12 17:24:28 +0200 | [diff] [blame] | 1358 | stop_data_traffic(acm); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1359 |  | 
| Oliver Neukum | 884b600 | 2005-04-21 21:28:02 +0200 | [diff] [blame] | 1360 | acm_write_buffers_free(acm); | 
| Daniel Mack | 997ea58 | 2010-04-12 13:17:25 +0200 | [diff] [blame] | 1361 | usb_free_coherent(usb_dev, acm->ctrlsize, acm->ctrl_buffer, | 
|  | 1362 | acm->ctrl_dma); | 
| Oliver Neukum | 830f402 | 2008-06-25 14:17:16 +0200 | [diff] [blame] | 1363 | acm_read_buffers_free(acm); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1364 |  | 
| Oliver Neukum | a2bfb4a | 2009-05-16 21:13:19 +0200 | [diff] [blame] | 1365 | if (!acm->combined_interfaces) | 
|  | 1366 | usb_driver_release_interface(&acm_driver, intf == acm->control ? | 
| Oliver Neukum | 830f402 | 2008-06-25 14:17:16 +0200 | [diff] [blame] | 1367 | acm->data : acm->control); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1368 |  | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 1369 | if (acm->port.count == 0) { | 
| brian@murphy.dk | 83ef344 | 2005-06-29 16:53:29 -0700 | [diff] [blame] | 1370 | acm_tty_unregister(acm); | 
| Arjan van de Ven | 4186ecf | 2006-01-11 15:55:29 +0100 | [diff] [blame] | 1371 | mutex_unlock(&open_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1372 | return; | 
|  | 1373 | } | 
|  | 1374 |  | 
| Arjan van de Ven | 4186ecf | 2006-01-11 15:55:29 +0100 | [diff] [blame] | 1375 | mutex_unlock(&open_mutex); | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 1376 | tty = tty_port_tty_get(&acm->port); | 
|  | 1377 | if (tty) { | 
|  | 1378 | tty_hangup(tty); | 
|  | 1379 | tty_kref_put(tty); | 
|  | 1380 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1381 | } | 
|  | 1382 |  | 
| Oliver Neukum | 3575858 | 2008-07-01 19:10:08 +0200 | [diff] [blame] | 1383 | #ifdef CONFIG_PM | 
| Oliver Neukum | 1365baf | 2007-10-12 17:24:28 +0200 | [diff] [blame] | 1384 | static int acm_suspend(struct usb_interface *intf, pm_message_t message) | 
|  | 1385 | { | 
|  | 1386 | struct acm *acm = usb_get_intfdata(intf); | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 1387 | int cnt; | 
| Oliver Neukum | 1365baf | 2007-10-12 17:24:28 +0200 | [diff] [blame] | 1388 |  | 
| Alan Stern | 65bfd29 | 2008-11-25 16:39:18 -0500 | [diff] [blame] | 1389 | if (message.event & PM_EVENT_AUTO) { | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 1390 | int b; | 
|  | 1391 |  | 
|  | 1392 | spin_lock_irq(&acm->read_lock); | 
|  | 1393 | spin_lock(&acm->write_lock); | 
|  | 1394 | b = acm->processing + acm->transmitting; | 
|  | 1395 | spin_unlock(&acm->write_lock); | 
|  | 1396 | spin_unlock_irq(&acm->read_lock); | 
|  | 1397 | if (b) | 
|  | 1398 | return -EBUSY; | 
|  | 1399 | } | 
|  | 1400 |  | 
|  | 1401 | spin_lock_irq(&acm->read_lock); | 
|  | 1402 | spin_lock(&acm->write_lock); | 
|  | 1403 | cnt = acm->susp_count++; | 
|  | 1404 | spin_unlock(&acm->write_lock); | 
|  | 1405 | spin_unlock_irq(&acm->read_lock); | 
|  | 1406 |  | 
|  | 1407 | if (cnt) | 
| Oliver Neukum | 1365baf | 2007-10-12 17:24:28 +0200 | [diff] [blame] | 1408 | return 0; | 
|  | 1409 | /* | 
|  | 1410 | we treat opened interfaces differently, | 
|  | 1411 | we must guard against open | 
|  | 1412 | */ | 
|  | 1413 | mutex_lock(&acm->mutex); | 
|  | 1414 |  | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 1415 | if (acm->port.count) | 
| Oliver Neukum | 1365baf | 2007-10-12 17:24:28 +0200 | [diff] [blame] | 1416 | stop_data_traffic(acm); | 
|  | 1417 |  | 
|  | 1418 | mutex_unlock(&acm->mutex); | 
|  | 1419 | return 0; | 
|  | 1420 | } | 
|  | 1421 |  | 
|  | 1422 | static int acm_resume(struct usb_interface *intf) | 
|  | 1423 | { | 
|  | 1424 | struct acm *acm = usb_get_intfdata(intf); | 
| Oliver Neukum | 97d35f9 | 2009-12-16 17:05:57 +0100 | [diff] [blame] | 1425 | struct acm_wb *wb; | 
| Oliver Neukum | 1365baf | 2007-10-12 17:24:28 +0200 | [diff] [blame] | 1426 | int rv = 0; | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 1427 | int cnt; | 
| Oliver Neukum | 1365baf | 2007-10-12 17:24:28 +0200 | [diff] [blame] | 1428 |  | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 1429 | spin_lock_irq(&acm->read_lock); | 
|  | 1430 | acm->susp_count -= 1; | 
|  | 1431 | cnt = acm->susp_count; | 
|  | 1432 | spin_unlock_irq(&acm->read_lock); | 
|  | 1433 |  | 
|  | 1434 | if (cnt) | 
| Oliver Neukum | 1365baf | 2007-10-12 17:24:28 +0200 | [diff] [blame] | 1435 | return 0; | 
|  | 1436 |  | 
|  | 1437 | mutex_lock(&acm->mutex); | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 1438 | if (acm->port.count) { | 
| Oliver Neukum | 1365baf | 2007-10-12 17:24:28 +0200 | [diff] [blame] | 1439 | rv = usb_submit_urb(acm->ctrlurb, GFP_NOIO); | 
| Oliver Neukum | 97d35f9 | 2009-12-16 17:05:57 +0100 | [diff] [blame] | 1440 |  | 
|  | 1441 | spin_lock_irq(&acm->write_lock); | 
|  | 1442 | if (acm->delayed_wb) { | 
|  | 1443 | wb = acm->delayed_wb; | 
|  | 1444 | acm->delayed_wb = NULL; | 
|  | 1445 | spin_unlock_irq(&acm->write_lock); | 
| Oliver Neukum | f073092 | 2010-03-03 00:37:56 +0100 | [diff] [blame] | 1446 | acm_start_wb(acm, wb); | 
| Oliver Neukum | 97d35f9 | 2009-12-16 17:05:57 +0100 | [diff] [blame] | 1447 | } else { | 
|  | 1448 | spin_unlock_irq(&acm->write_lock); | 
|  | 1449 | } | 
|  | 1450 |  | 
|  | 1451 | /* | 
|  | 1452 | * delayed error checking because we must | 
|  | 1453 | * do the write path at all cost | 
|  | 1454 | */ | 
| Oliver Neukum | 1365baf | 2007-10-12 17:24:28 +0200 | [diff] [blame] | 1455 | if (rv < 0) | 
| Oliver Neukum | 11ea859 | 2008-06-20 11:25:57 +0200 | [diff] [blame] | 1456 | goto err_out; | 
| Oliver Neukum | 1365baf | 2007-10-12 17:24:28 +0200 | [diff] [blame] | 1457 |  | 
|  | 1458 | tasklet_schedule(&acm->urb_task); | 
|  | 1459 | } | 
|  | 1460 |  | 
|  | 1461 | err_out: | 
|  | 1462 | mutex_unlock(&acm->mutex); | 
|  | 1463 | return rv; | 
|  | 1464 | } | 
| Oliver Neukum | 3575858 | 2008-07-01 19:10:08 +0200 | [diff] [blame] | 1465 |  | 
| Francesco Lavra | a91b0c5 | 2009-12-08 09:54:11 +0100 | [diff] [blame] | 1466 | static int acm_reset_resume(struct usb_interface *intf) | 
|  | 1467 | { | 
|  | 1468 | struct acm *acm = usb_get_intfdata(intf); | 
|  | 1469 | struct tty_struct *tty; | 
|  | 1470 |  | 
|  | 1471 | mutex_lock(&acm->mutex); | 
|  | 1472 | if (acm->port.count) { | 
|  | 1473 | tty = tty_port_tty_get(&acm->port); | 
|  | 1474 | if (tty) { | 
|  | 1475 | tty_hangup(tty); | 
|  | 1476 | tty_kref_put(tty); | 
|  | 1477 | } | 
|  | 1478 | } | 
|  | 1479 | mutex_unlock(&acm->mutex); | 
|  | 1480 | return acm_resume(intf); | 
|  | 1481 | } | 
|  | 1482 |  | 
| Oliver Neukum | 3575858 | 2008-07-01 19:10:08 +0200 | [diff] [blame] | 1483 | #endif /* CONFIG_PM */ | 
| Adrian Taylor | c1479a9 | 2009-11-19 10:35:33 +0000 | [diff] [blame] | 1484 |  | 
|  | 1485 | #define NOKIA_PCSUITE_ACM_INFO(x) \ | 
|  | 1486 | USB_DEVICE_AND_INTERFACE_INFO(0x0421, x, \ | 
|  | 1487 | USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM, \ | 
|  | 1488 | USB_CDC_ACM_PROTO_VENDOR) | 
|  | 1489 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1490 | /* | 
|  | 1491 | * USB driver structure. | 
|  | 1492 | */ | 
|  | 1493 |  | 
| Németh Márton | 6ef4852 | 2010-01-10 15:33:45 +0100 | [diff] [blame] | 1494 | static const struct usb_device_id acm_ids[] = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1495 | /* quirky and broken devices */ | 
|  | 1496 | { USB_DEVICE(0x0870, 0x0001), /* Metricom GS Modem */ | 
|  | 1497 | .driver_info = NO_UNION_NORMAL, /* has no union descriptor */ | 
|  | 1498 | }, | 
| Andrey Arapov | b0e2a70 | 2007-07-04 17:11:42 +0200 | [diff] [blame] | 1499 | { USB_DEVICE(0x0e8d, 0x0003), /* FIREFLY, MediaTek Inc; andrey.arapov@gmail.com */ | 
|  | 1500 | .driver_info = NO_UNION_NORMAL, /* has no union descriptor */ | 
|  | 1501 | }, | 
| Andrew Lunn | 0f9c7b4 | 2008-12-23 17:31:23 +0100 | [diff] [blame] | 1502 | { USB_DEVICE(0x0e8d, 0x3329), /* MediaTek Inc GPS */ | 
|  | 1503 | .driver_info = NO_UNION_NORMAL, /* has no union descriptor */ | 
|  | 1504 | }, | 
| Masahito Omote | 8753e65 | 2005-07-29 12:17:25 -0700 | [diff] [blame] | 1505 | { USB_DEVICE(0x0482, 0x0203), /* KYOCERA AH-K3001V */ | 
|  | 1506 | .driver_info = NO_UNION_NORMAL, /* has no union descriptor */ | 
|  | 1507 | }, | 
| Chris Malley | 91a9c92 | 2006-10-03 10:08:28 +0100 | [diff] [blame] | 1508 | { USB_DEVICE(0x079b, 0x000f), /* BT On-Air USB MODEM */ | 
|  | 1509 | .driver_info = NO_UNION_NORMAL, /* has no union descriptor */ | 
|  | 1510 | }, | 
| Alan Cox | 7abcf20 | 2009-04-06 17:35:01 +0100 | [diff] [blame] | 1511 | { USB_DEVICE(0x0ace, 0x1602), /* ZyDAS 56K USB MODEM */ | 
|  | 1512 | .driver_info = SINGLE_RX_URB, | 
|  | 1513 | }, | 
| Oliver Neukum | 8647894 | 2006-05-13 22:50:47 +0200 | [diff] [blame] | 1514 | { USB_DEVICE(0x0ace, 0x1608), /* ZyDAS 56K USB MODEM */ | 
|  | 1515 | .driver_info = SINGLE_RX_URB, /* firmware bug */ | 
|  | 1516 | }, | 
| Oliver Neukum | 3dd2ae8 | 2006-06-23 09:14:17 +0200 | [diff] [blame] | 1517 | { USB_DEVICE(0x0ace, 0x1611), /* ZyDAS 56K USB MODEM - new version */ | 
|  | 1518 | .driver_info = SINGLE_RX_URB, /* firmware bug */ | 
|  | 1519 | }, | 
| Oliver Neukum | 9be8456 | 2007-02-12 08:50:03 +0100 | [diff] [blame] | 1520 | { USB_DEVICE(0x22b8, 0x7000), /* Motorola Q Phone */ | 
|  | 1521 | .driver_info = NO_UNION_NORMAL, /* has no union descriptor */ | 
|  | 1522 | }, | 
| Iain McFarlane | 6149ed5 | 2008-05-04 00:13:49 +0100 | [diff] [blame] | 1523 | { USB_DEVICE(0x0803, 0x3095), /* Zoom Telephonics Model 3095F USB MODEM */ | 
|  | 1524 | .driver_info = NO_UNION_NORMAL, /* has no union descriptor */ | 
|  | 1525 | }, | 
| Eric Sandeen | c8fd2c3 | 2008-08-14 08:25:40 -0500 | [diff] [blame] | 1526 | { USB_DEVICE(0x0572, 0x1321), /* Conexant USB MODEM CX93010 */ | 
|  | 1527 | .driver_info = NO_UNION_NORMAL, /* has no union descriptor */ | 
|  | 1528 | }, | 
| Alan Cox | c89c60e | 2009-01-11 19:53:10 +0000 | [diff] [blame] | 1529 | { USB_DEVICE(0x0572, 0x1324), /* Conexant USB MODEM RD02-D400 */ | 
|  | 1530 | .driver_info = NO_UNION_NORMAL, /* has no union descriptor */ | 
|  | 1531 | }, | 
| Xiao Kaijian | cab98a0 | 2009-05-08 00:48:23 +0800 | [diff] [blame] | 1532 | { USB_DEVICE(0x0572, 0x1328), /* Shiro / Aztech USB MODEM UM-3100 */ | 
|  | 1533 | .driver_info = NO_UNION_NORMAL, /* has no union descriptor */ | 
|  | 1534 | }, | 
| Dmitriy Taychenachev | 155df65 | 2009-02-25 12:36:51 +0800 | [diff] [blame] | 1535 | { USB_DEVICE(0x22b8, 0x6425), /* Motorola MOTOMAGX phones */ | 
|  | 1536 | }, | 
| Adam Richter | c332b4e | 2009-02-18 16:17:15 -0800 | [diff] [blame] | 1537 | { USB_DEVICE(0x0572, 0x1329), /* Hummingbird huc56s (Conexant) */ | 
|  | 1538 | .driver_info = NO_UNION_NORMAL, /* union descriptor misplaced on | 
|  | 1539 | data interface instead of | 
|  | 1540 | communications interface. | 
|  | 1541 | Maybe we should define a new | 
|  | 1542 | quirk for this. */ | 
|  | 1543 | }, | 
| Kir Kolyshkin | 1f17c50 | 2009-05-28 20:33:58 +0400 | [diff] [blame] | 1544 | { USB_DEVICE(0x1bbb, 0x0003), /* Alcatel OT-I650 */ | 
|  | 1545 | .driver_info = NO_UNION_NORMAL, /* reports zero length descriptor */ | 
|  | 1546 | }, | 
| Russ Nelson | c3baa19 | 2010-04-21 23:07:03 -0400 | [diff] [blame] | 1547 | { USB_DEVICE(0x1576, 0x03b1), /* Maretron USB100 */ | 
|  | 1548 | .driver_info = NO_UNION_NORMAL, /* reports zero length descriptor */ | 
|  | 1549 | }, | 
| Oliver Neukum | 9be8456 | 2007-02-12 08:50:03 +0100 | [diff] [blame] | 1550 |  | 
| Adrian Taylor | c1479a9 | 2009-11-19 10:35:33 +0000 | [diff] [blame] | 1551 | /* Nokia S60 phones expose two ACM channels. The first is | 
|  | 1552 | * a modem and is picked up by the standard AT-command | 
|  | 1553 | * information below. The second is 'vendor-specific' but | 
|  | 1554 | * is treated as a serial device at the S60 end, so we want | 
|  | 1555 | * to expose it on Linux too. */ | 
|  | 1556 | { NOKIA_PCSUITE_ACM_INFO(0x042D), }, /* Nokia 3250 */ | 
|  | 1557 | { NOKIA_PCSUITE_ACM_INFO(0x04D8), }, /* Nokia 5500 Sport */ | 
|  | 1558 | { NOKIA_PCSUITE_ACM_INFO(0x04C9), }, /* Nokia E50 */ | 
|  | 1559 | { NOKIA_PCSUITE_ACM_INFO(0x0419), }, /* Nokia E60 */ | 
|  | 1560 | { NOKIA_PCSUITE_ACM_INFO(0x044D), }, /* Nokia E61 */ | 
|  | 1561 | { NOKIA_PCSUITE_ACM_INFO(0x0001), }, /* Nokia E61i */ | 
|  | 1562 | { NOKIA_PCSUITE_ACM_INFO(0x0475), }, /* Nokia E62 */ | 
|  | 1563 | { NOKIA_PCSUITE_ACM_INFO(0x0508), }, /* Nokia E65 */ | 
|  | 1564 | { NOKIA_PCSUITE_ACM_INFO(0x0418), }, /* Nokia E70 */ | 
|  | 1565 | { NOKIA_PCSUITE_ACM_INFO(0x0425), }, /* Nokia N71 */ | 
|  | 1566 | { NOKIA_PCSUITE_ACM_INFO(0x0486), }, /* Nokia N73 */ | 
|  | 1567 | { NOKIA_PCSUITE_ACM_INFO(0x04DF), }, /* Nokia N75 */ | 
|  | 1568 | { NOKIA_PCSUITE_ACM_INFO(0x000e), }, /* Nokia N77 */ | 
|  | 1569 | { NOKIA_PCSUITE_ACM_INFO(0x0445), }, /* Nokia N80 */ | 
|  | 1570 | { NOKIA_PCSUITE_ACM_INFO(0x042F), }, /* Nokia N91 & N91 8GB */ | 
|  | 1571 | { NOKIA_PCSUITE_ACM_INFO(0x048E), }, /* Nokia N92 */ | 
|  | 1572 | { NOKIA_PCSUITE_ACM_INFO(0x0420), }, /* Nokia N93 */ | 
|  | 1573 | { NOKIA_PCSUITE_ACM_INFO(0x04E6), }, /* Nokia N93i  */ | 
|  | 1574 | { NOKIA_PCSUITE_ACM_INFO(0x04B2), }, /* Nokia 5700 XpressMusic */ | 
|  | 1575 | { NOKIA_PCSUITE_ACM_INFO(0x0134), }, /* Nokia 6110 Navigator (China) */ | 
|  | 1576 | { NOKIA_PCSUITE_ACM_INFO(0x046E), }, /* Nokia 6110 Navigator */ | 
|  | 1577 | { NOKIA_PCSUITE_ACM_INFO(0x002f), }, /* Nokia 6120 classic &  */ | 
|  | 1578 | { NOKIA_PCSUITE_ACM_INFO(0x0088), }, /* Nokia 6121 classic */ | 
|  | 1579 | { NOKIA_PCSUITE_ACM_INFO(0x00fc), }, /* Nokia 6124 classic */ | 
|  | 1580 | { NOKIA_PCSUITE_ACM_INFO(0x0042), }, /* Nokia E51 */ | 
|  | 1581 | { NOKIA_PCSUITE_ACM_INFO(0x00b0), }, /* Nokia E66 */ | 
|  | 1582 | { NOKIA_PCSUITE_ACM_INFO(0x00ab), }, /* Nokia E71 */ | 
|  | 1583 | { NOKIA_PCSUITE_ACM_INFO(0x0481), }, /* Nokia N76 */ | 
|  | 1584 | { NOKIA_PCSUITE_ACM_INFO(0x0007), }, /* Nokia N81 & N81 8GB */ | 
|  | 1585 | { NOKIA_PCSUITE_ACM_INFO(0x0071), }, /* Nokia N82 */ | 
|  | 1586 | { NOKIA_PCSUITE_ACM_INFO(0x04F0), }, /* Nokia N95 & N95-3 NAM */ | 
|  | 1587 | { NOKIA_PCSUITE_ACM_INFO(0x0070), }, /* Nokia N95 8GB  */ | 
|  | 1588 | { NOKIA_PCSUITE_ACM_INFO(0x00e9), }, /* Nokia 5320 XpressMusic */ | 
|  | 1589 | { NOKIA_PCSUITE_ACM_INFO(0x0099), }, /* Nokia 6210 Navigator, RM-367 */ | 
|  | 1590 | { NOKIA_PCSUITE_ACM_INFO(0x0128), }, /* Nokia 6210 Navigator, RM-419 */ | 
|  | 1591 | { NOKIA_PCSUITE_ACM_INFO(0x008f), }, /* Nokia 6220 Classic */ | 
|  | 1592 | { NOKIA_PCSUITE_ACM_INFO(0x00a0), }, /* Nokia 6650 */ | 
|  | 1593 | { NOKIA_PCSUITE_ACM_INFO(0x007b), }, /* Nokia N78 */ | 
|  | 1594 | { NOKIA_PCSUITE_ACM_INFO(0x0094), }, /* Nokia N85 */ | 
|  | 1595 | { NOKIA_PCSUITE_ACM_INFO(0x003a), }, /* Nokia N96 & N96-3  */ | 
|  | 1596 | { NOKIA_PCSUITE_ACM_INFO(0x00e9), }, /* Nokia 5320 XpressMusic */ | 
|  | 1597 | { NOKIA_PCSUITE_ACM_INFO(0x0108), }, /* Nokia 5320 XpressMusic 2G */ | 
|  | 1598 | { NOKIA_PCSUITE_ACM_INFO(0x01f5), }, /* Nokia N97, RM-505 */ | 
| Przemo Firszt | 83a4eae | 2010-06-28 21:29:34 +0100 | [diff] [blame] | 1599 | { NOKIA_PCSUITE_ACM_INFO(0x02e3), }, /* Nokia 5230, RM-588 */ | 
| Adrian Taylor | c1479a9 | 2009-11-19 10:35:33 +0000 | [diff] [blame] | 1600 |  | 
|  | 1601 | /* NOTE: non-Nokia COMM/ACM/0xff is likely MSFT RNDIS... NOT a modem! */ | 
|  | 1602 |  | 
| Julian Calaby | 7c5d8c3 | 2010-01-05 23:57:46 +1100 | [diff] [blame] | 1603 | /* Support Lego NXT using pbLua firmware */ | 
| Julian Calaby | ce12664 | 2010-01-05 23:58:20 +1100 | [diff] [blame] | 1604 | { USB_DEVICE(0x0694, 0xff00), | 
|  | 1605 | .driver_info = NOT_A_MODEM, | 
|  | 1606 | }, | 
| Julian Calaby | 7c5d8c3 | 2010-01-05 23:57:46 +1100 | [diff] [blame] | 1607 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1608 | /* control interfaces with various AT-command sets */ | 
|  | 1609 | { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM, | 
|  | 1610 | USB_CDC_ACM_PROTO_AT_V25TER) }, | 
|  | 1611 | { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM, | 
|  | 1612 | USB_CDC_ACM_PROTO_AT_PCCA101) }, | 
|  | 1613 | { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM, | 
|  | 1614 | USB_CDC_ACM_PROTO_AT_PCCA101_WAKE) }, | 
|  | 1615 | { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM, | 
|  | 1616 | USB_CDC_ACM_PROTO_AT_GSM) }, | 
|  | 1617 | { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM, | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 1618 | USB_CDC_ACM_PROTO_AT_3G) }, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1619 | { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM, | 
|  | 1620 | USB_CDC_ACM_PROTO_AT_CDMA) }, | 
|  | 1621 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1622 | { } | 
|  | 1623 | }; | 
|  | 1624 |  | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 1625 | MODULE_DEVICE_TABLE(usb, acm_ids); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1626 |  | 
|  | 1627 | static struct usb_driver acm_driver = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1628 | .name =		"cdc_acm", | 
|  | 1629 | .probe =	acm_probe, | 
|  | 1630 | .disconnect =	acm_disconnect, | 
| Oliver Neukum | 3575858 | 2008-07-01 19:10:08 +0200 | [diff] [blame] | 1631 | #ifdef CONFIG_PM | 
| Oliver Neukum | 1365baf | 2007-10-12 17:24:28 +0200 | [diff] [blame] | 1632 | .suspend =	acm_suspend, | 
|  | 1633 | .resume =	acm_resume, | 
| Francesco Lavra | a91b0c5 | 2009-12-08 09:54:11 +0100 | [diff] [blame] | 1634 | .reset_resume =	acm_reset_resume, | 
| Oliver Neukum | 3575858 | 2008-07-01 19:10:08 +0200 | [diff] [blame] | 1635 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1636 | .id_table =	acm_ids, | 
| Oliver Neukum | 3575858 | 2008-07-01 19:10:08 +0200 | [diff] [blame] | 1637 | #ifdef CONFIG_PM | 
| Oliver Neukum | 1365baf | 2007-10-12 17:24:28 +0200 | [diff] [blame] | 1638 | .supports_autosuspend = 1, | 
| Oliver Neukum | 3575858 | 2008-07-01 19:10:08 +0200 | [diff] [blame] | 1639 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1640 | }; | 
|  | 1641 |  | 
|  | 1642 | /* | 
|  | 1643 | * TTY driver structures. | 
|  | 1644 | */ | 
|  | 1645 |  | 
| Jeff Dike | b68e31d | 2006-10-02 02:17:18 -0700 | [diff] [blame] | 1646 | static const struct tty_operations acm_ops = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1647 | .open =			acm_tty_open, | 
|  | 1648 | .close =		acm_tty_close, | 
| Alan Cox | 10077d4 | 2009-06-11 12:36:09 +0100 | [diff] [blame] | 1649 | .hangup =		acm_tty_hangup, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1650 | .write =		acm_tty_write, | 
|  | 1651 | .write_room =		acm_tty_write_room, | 
|  | 1652 | .ioctl =		acm_tty_ioctl, | 
|  | 1653 | .throttle =		acm_tty_throttle, | 
|  | 1654 | .unthrottle =		acm_tty_unthrottle, | 
|  | 1655 | .chars_in_buffer =	acm_tty_chars_in_buffer, | 
|  | 1656 | .break_ctl =		acm_tty_break_ctl, | 
|  | 1657 | .set_termios =		acm_tty_set_termios, | 
|  | 1658 | .tiocmget =		acm_tty_tiocmget, | 
|  | 1659 | .tiocmset =		acm_tty_tiocmset, | 
|  | 1660 | }; | 
|  | 1661 |  | 
|  | 1662 | /* | 
|  | 1663 | * Init / exit. | 
|  | 1664 | */ | 
|  | 1665 |  | 
|  | 1666 | static int __init acm_init(void) | 
|  | 1667 | { | 
|  | 1668 | int retval; | 
|  | 1669 | acm_tty_driver = alloc_tty_driver(ACM_TTY_MINORS); | 
|  | 1670 | if (!acm_tty_driver) | 
|  | 1671 | return -ENOMEM; | 
|  | 1672 | acm_tty_driver->owner = THIS_MODULE, | 
|  | 1673 | acm_tty_driver->driver_name = "acm", | 
|  | 1674 | acm_tty_driver->name = "ttyACM", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1675 | acm_tty_driver->major = ACM_TTY_MAJOR, | 
|  | 1676 | acm_tty_driver->minor_start = 0, | 
|  | 1677 | acm_tty_driver->type = TTY_DRIVER_TYPE_SERIAL, | 
|  | 1678 | acm_tty_driver->subtype = SERIAL_TYPE_NORMAL, | 
| Greg Kroah-Hartman | 331b831 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 1679 | acm_tty_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1680 | acm_tty_driver->init_termios = tty_std_termios; | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 1681 | acm_tty_driver->init_termios.c_cflag = B9600 | CS8 | CREAD | | 
|  | 1682 | HUPCL | CLOCAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1683 | tty_set_operations(acm_tty_driver, &acm_ops); | 
|  | 1684 |  | 
|  | 1685 | retval = tty_register_driver(acm_tty_driver); | 
|  | 1686 | if (retval) { | 
|  | 1687 | put_tty_driver(acm_tty_driver); | 
|  | 1688 | return retval; | 
|  | 1689 | } | 
|  | 1690 |  | 
|  | 1691 | retval = usb_register(&acm_driver); | 
|  | 1692 | if (retval) { | 
|  | 1693 | tty_unregister_driver(acm_tty_driver); | 
|  | 1694 | put_tty_driver(acm_tty_driver); | 
|  | 1695 | return retval; | 
|  | 1696 | } | 
|  | 1697 |  | 
| Greg Kroah-Hartman | 5909f6e | 2008-08-18 13:21:04 -0700 | [diff] [blame] | 1698 | printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":" | 
|  | 1699 | DRIVER_DESC "\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1700 |  | 
|  | 1701 | return 0; | 
|  | 1702 | } | 
|  | 1703 |  | 
|  | 1704 | static void __exit acm_exit(void) | 
|  | 1705 | { | 
|  | 1706 | usb_deregister(&acm_driver); | 
|  | 1707 | tty_unregister_driver(acm_tty_driver); | 
|  | 1708 | put_tty_driver(acm_tty_driver); | 
|  | 1709 | } | 
|  | 1710 |  | 
|  | 1711 | module_init(acm_init); | 
|  | 1712 | module_exit(acm_exit); | 
|  | 1713 |  | 
| Alan Cox | 6e47e06 | 2009-06-11 12:37:06 +0100 | [diff] [blame] | 1714 | MODULE_AUTHOR(DRIVER_AUTHOR); | 
|  | 1715 | MODULE_DESCRIPTION(DRIVER_DESC); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1716 | MODULE_LICENSE("GPL"); | 
| Scott James Remnant | e766aeb | 2009-04-06 17:33:18 +0100 | [diff] [blame] | 1717 | MODULE_ALIAS_CHARDEV_MAJOR(ACM_TTY_MAJOR); |