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