blob: 00d809dfe84d2a7f71ed0dcbb63f3e4f4cf33d8b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * cdc-acm.c
3 *
4 * Copyright (c) 1999 Armin Fuerst <fuerst@in.tum.de>
Pavel Macheka2531292010-07-18 14:27:13 +02005 * Copyright (c) 1999 Pavel Machek <pavel@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * 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 Kubicek61a87ad2005-11-01 18:51:34 +01009 * Copyright (c) 2005 David Kubicek <dave@awk.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
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 Cox6e47e062009-06-11 12:37:06 +010019 * v0.12 - added TIOCM ioctls, added break handling, made struct acm
20 * kmalloced
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 * 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 Kubicek61a87ad2005-11-01 18:51:34 +010034 * v0.25 - downstream tasks paralelized to maximize throughput
David Engrafe4cf3aa2008-03-20 10:01:34 +010035 * v0.26 - multiple write urbs, writesize increased
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 */
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 Brownelle5fbab52008-08-06 18:46:10 -070055#undef VERBOSE_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
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 Neukum7af25b42009-09-08 23:51:28 +020062#include <linux/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <linux/tty_driver.h>
64#include <linux/tty_flip.h>
65#include <linux/module.h>
Arjan van de Ven4186ecf2006-01-11 15:55:29 +010066#include <linux/mutex.h>
Alan Cox10077d42009-06-11 12:36:09 +010067#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <linux/usb.h>
David Brownella8c28f22006-06-13 09:57:47 -070069#include <linux/usb/cdc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#include <asm/byteorder.h>
71#include <asm/unaligned.h>
David Kubicek61a87ad2005-11-01 18:51:34 +010072#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74#include "cdc-acm.h"
75
David Brownelle5fbab52008-08-06 18:46:10 -070076
77#define ACM_CLOSE_TIMEOUT 15 /* seconds to let writes drain */
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079/*
80 * Version Information
81 */
David Engrafe4cf3aa2008-03-20 10:01:34 +010082#define DRIVER_VERSION "v0.26"
David Kubicek61a87ad2005-11-01 18:51:34 +010083#define DRIVER_AUTHOR "Armin Fuerst, Pavel Machek, Johannes Erdfelt, Vojtech Pavlik, David Kubicek"
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#define DRIVER_DESC "USB Abstract Control Model driver for USB modems and ISDN adapters"
85
86static struct usb_driver acm_driver;
87static struct tty_driver *acm_tty_driver;
88static struct acm *acm_table[ACM_TTY_MINORS];
89
Arjan van de Ven4186ecf2006-01-11 15:55:29 +010090static DEFINE_MUTEX(open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Alan Cox10077d42009-06-11 12:36:09 +010092#define ACM_READY(acm) (acm && acm->dev && acm->port.count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Alan Cox739e0282009-06-11 12:27:50 +010094static const struct tty_port_operations acm_port_ops = {
95};
96
David Brownelle5fbab52008-08-06 18:46:10 -070097#ifdef VERBOSE_DEBUG
98#define verbose 1
99#else
100#define verbose 0
101#endif
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103/*
104 * Functions for ACM control messages.
105 */
106
Alan Cox6e47e062009-06-11 12:37:06 +0100107static int acm_ctrl_msg(struct acm *acm, int request, int value,
108 void *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
110 int retval = usb_control_msg(acm->dev, usb_sndctrlpipe(acm->dev, 0),
111 request, USB_RT_ACM, value,
112 acm->control->altsetting[0].desc.bInterfaceNumber,
113 buf, len, 5000);
Alan Cox6e47e062009-06-11 12:37:06 +0100114 dbg("acm_control_msg: rq: 0x%02x val: %#x len: %#x result: %d",
115 request, value, len, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 return retval < 0 ? retval : 0;
117}
118
119/* devices aren't required to support these requests.
120 * the cdc acm descriptor tells whether they do...
121 */
122#define acm_set_control(acm, control) \
123 acm_ctrl_msg(acm, USB_CDC_REQ_SET_CONTROL_LINE_STATE, control, NULL, 0)
124#define acm_set_line(acm, line) \
125 acm_ctrl_msg(acm, USB_CDC_REQ_SET_LINE_CODING, 0, line, sizeof *(line))
126#define acm_send_break(acm, ms) \
127 acm_ctrl_msg(acm, USB_CDC_REQ_SEND_BREAK, ms, NULL, 0)
128
129/*
Oliver Neukum884b6002005-04-21 21:28:02 +0200130 * Write buffer management.
131 * All of these assume proper locks taken by the caller.
132 */
133
134static int acm_wb_alloc(struct acm *acm)
135{
136 int i, wbn;
137 struct acm_wb *wb;
138
David Engrafe4cf3aa2008-03-20 10:01:34 +0100139 wbn = 0;
Oliver Neukum884b6002005-04-21 21:28:02 +0200140 i = 0;
141 for (;;) {
142 wb = &acm->wb[wbn];
143 if (!wb->use) {
144 wb->use = 1;
145 return wbn;
146 }
Oliver Neukum86478942006-05-13 22:50:47 +0200147 wbn = (wbn + 1) % ACM_NW;
148 if (++i >= ACM_NW)
Oliver Neukum884b6002005-04-21 21:28:02 +0200149 return -1;
150 }
151}
152
Oliver Neukum884b6002005-04-21 21:28:02 +0200153static int acm_wb_is_avail(struct acm *acm)
154{
155 int i, n;
David Brownelle5fbab52008-08-06 18:46:10 -0700156 unsigned long flags;
Oliver Neukum884b6002005-04-21 21:28:02 +0200157
Oliver Neukum86478942006-05-13 22:50:47 +0200158 n = ACM_NW;
David Brownelle5fbab52008-08-06 18:46:10 -0700159 spin_lock_irqsave(&acm->write_lock, flags);
Alan Cox6e47e062009-06-11 12:37:06 +0100160 for (i = 0; i < ACM_NW; i++)
Oliver Neukum86478942006-05-13 22:50:47 +0200161 n -= acm->wb[i].use;
David Brownelle5fbab52008-08-06 18:46:10 -0700162 spin_unlock_irqrestore(&acm->write_lock, flags);
Oliver Neukum884b6002005-04-21 21:28:02 +0200163 return n;
164}
165
Oliver Neukum884b6002005-04-21 21:28:02 +0200166/*
Brandon Philipsad0b65e2008-11-06 11:19:11 -0800167 * Finish write. Caller must hold acm->write_lock
Oliver Neukum884b6002005-04-21 21:28:02 +0200168 */
David Engrafe4cf3aa2008-03-20 10:01:34 +0100169static void acm_write_done(struct acm *acm, struct acm_wb *wb)
Oliver Neukum884b6002005-04-21 21:28:02 +0200170{
David Engrafe4cf3aa2008-03-20 10:01:34 +0100171 wb->use = 0;
Oliver Neukum11ea8592008-06-20 11:25:57 +0200172 acm->transmitting--;
Oliver Neukum97d35f92009-12-16 17:05:57 +0100173 usb_autopm_put_interface_async(acm->control);
Oliver Neukum884b6002005-04-21 21:28:02 +0200174}
175
176/*
177 * Poke write.
Oliver Neukum11ea8592008-06-20 11:25:57 +0200178 *
179 * the caller is responsible for locking
Oliver Neukum884b6002005-04-21 21:28:02 +0200180 */
Oliver Neukum11ea8592008-06-20 11:25:57 +0200181
182static int acm_start_wb(struct acm *acm, struct acm_wb *wb)
183{
184 int rc;
185
186 acm->transmitting++;
187
188 wb->urb->transfer_buffer = wb->buf;
189 wb->urb->transfer_dma = wb->dmah;
190 wb->urb->transfer_buffer_length = wb->len;
191 wb->urb->dev = acm->dev;
192
Alan Cox6e47e062009-06-11 12:37:06 +0100193 rc = usb_submit_urb(wb->urb, GFP_ATOMIC);
194 if (rc < 0) {
Oliver Neukum11ea8592008-06-20 11:25:57 +0200195 dbg("usb_submit_urb(write bulk) failed: %d", rc);
196 acm_write_done(acm, wb);
197 }
198 return rc;
199}
200
David Engrafe4cf3aa2008-03-20 10:01:34 +0100201static int acm_write_start(struct acm *acm, int wbn)
Oliver Neukum884b6002005-04-21 21:28:02 +0200202{
203 unsigned long flags;
David Brownell934da462008-08-06 18:44:12 -0700204 struct acm_wb *wb = &acm->wb[wbn];
Oliver Neukum884b6002005-04-21 21:28:02 +0200205 int rc;
206
207 spin_lock_irqsave(&acm->write_lock, flags);
208 if (!acm->dev) {
David Brownell934da462008-08-06 18:44:12 -0700209 wb->use = 0;
Oliver Neukum884b6002005-04-21 21:28:02 +0200210 spin_unlock_irqrestore(&acm->write_lock, flags);
211 return -ENODEV;
212 }
213
Oliver Neukum11ea8592008-06-20 11:25:57 +0200214 dbg("%s susp_count: %d", __func__, acm->susp_count);
Oliver Neukum97d35f92009-12-16 17:05:57 +0100215 usb_autopm_get_interface_async(acm->control);
Oliver Neukum11ea8592008-06-20 11:25:57 +0200216 if (acm->susp_count) {
Oliver Neukum97d35f92009-12-16 17:05:57 +0100217 if (!acm->delayed_wb)
218 acm->delayed_wb = wb;
219 else
220 usb_autopm_put_interface_async(acm->control);
Oliver Neukum11ea8592008-06-20 11:25:57 +0200221 spin_unlock_irqrestore(&acm->write_lock, flags);
222 return 0; /* A white lie */
223 }
224 usb_mark_last_busy(acm->dev);
225
Oliver Neukum11ea8592008-06-20 11:25:57 +0200226 rc = acm_start_wb(acm, wb);
Oliver Neukum884b6002005-04-21 21:28:02 +0200227 spin_unlock_irqrestore(&acm->write_lock, flags);
228
Oliver Neukum884b6002005-04-21 21:28:02 +0200229 return rc;
Oliver Neukum11ea8592008-06-20 11:25:57 +0200230
Oliver Neukum884b6002005-04-21 21:28:02 +0200231}
Oliver Neukumc4cabd22007-02-27 15:28:55 +0100232/*
233 * attributes exported through sysfs
234 */
235static ssize_t show_caps
236(struct device *dev, struct device_attribute *attr, char *buf)
237{
238 struct usb_interface *intf = to_usb_interface(dev);
239 struct acm *acm = usb_get_intfdata(intf);
Oliver Neukum884b6002005-04-21 21:28:02 +0200240
Oliver Neukumc4cabd22007-02-27 15:28:55 +0100241 return sprintf(buf, "%d", acm->ctrl_caps);
242}
243static DEVICE_ATTR(bmCapabilities, S_IRUGO, show_caps, NULL);
244
245static ssize_t show_country_codes
246(struct device *dev, struct device_attribute *attr, char *buf)
247{
248 struct usb_interface *intf = to_usb_interface(dev);
249 struct acm *acm = usb_get_intfdata(intf);
250
251 memcpy(buf, acm->country_codes, acm->country_code_size);
252 return acm->country_code_size;
253}
254
255static DEVICE_ATTR(wCountryCodes, S_IRUGO, show_country_codes, NULL);
256
257static ssize_t show_country_rel_date
258(struct device *dev, struct device_attribute *attr, char *buf)
259{
260 struct usb_interface *intf = to_usb_interface(dev);
261 struct acm *acm = usb_get_intfdata(intf);
262
263 return sprintf(buf, "%d", acm->country_rel_date);
264}
265
266static DEVICE_ATTR(iCountryCodeRelDate, S_IRUGO, show_country_rel_date, NULL);
Oliver Neukum884b6002005-04-21 21:28:02 +0200267/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 * Interrupt handlers for various ACM device responses
269 */
270
271/* control interface reports status changes with "interrupt" transfers */
David Howells7d12e782006-10-05 14:55:46 +0100272static void acm_ctrl_irq(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
274 struct acm *acm = urb->context;
275 struct usb_cdc_notification *dr = urb->transfer_buffer;
Alan Cox10077d42009-06-11 12:36:09 +0100276 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 unsigned char *data;
278 int newctrl;
Greg Kroah-Hartman185d4052007-07-18 10:58:02 -0700279 int retval;
280 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Greg Kroah-Hartman185d4052007-07-18 10:58:02 -0700282 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 case 0:
284 /* success */
285 break;
286 case -ECONNRESET:
287 case -ENOENT:
288 case -ESHUTDOWN:
289 /* this urb is terminated, clean up */
Harvey Harrison441b62c2008-03-03 16:08:34 -0800290 dbg("%s - urb shutting down with status: %d", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 return;
292 default:
Harvey Harrison441b62c2008-03-03 16:08:34 -0800293 dbg("%s - nonzero urb status received: %d", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 goto exit;
295 }
296
297 if (!ACM_READY(acm))
298 goto exit;
299
300 data = (unsigned char *)(dr + 1);
301 switch (dr->bNotificationType) {
Alan Cox6e47e062009-06-11 12:37:06 +0100302 case USB_CDC_NOTIFY_NETWORK_CONNECTION:
303 dbg("%s network", dr->wValue ?
304 "connected to" : "disconnected from");
305 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Alan Cox6e47e062009-06-11 12:37:06 +0100307 case USB_CDC_NOTIFY_SERIAL_STATE:
308 tty = tty_port_tty_get(&acm->port);
309 newctrl = get_unaligned_le16(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Alan Cox6e47e062009-06-11 12:37:06 +0100311 if (tty) {
312 if (!acm->clocal &&
313 (acm->ctrlin & ~newctrl & ACM_CTRL_DCD)) {
314 dbg("calling hangup");
315 tty_hangup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 }
Alan Cox6e47e062009-06-11 12:37:06 +0100317 tty_kref_put(tty);
318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Alan Cox6e47e062009-06-11 12:37:06 +0100320 acm->ctrlin = newctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Alan Cox6e47e062009-06-11 12:37:06 +0100322 dbg("input control lines: dcd%c dsr%c break%c ring%c framing%c parity%c overrun%c",
323 acm->ctrlin & ACM_CTRL_DCD ? '+' : '-',
324 acm->ctrlin & ACM_CTRL_DSR ? '+' : '-',
325 acm->ctrlin & ACM_CTRL_BRK ? '+' : '-',
326 acm->ctrlin & ACM_CTRL_RI ? '+' : '-',
327 acm->ctrlin & ACM_CTRL_FRAMING ? '+' : '-',
328 acm->ctrlin & ACM_CTRL_PARITY ? '+' : '-',
329 acm->ctrlin & ACM_CTRL_OVERRUN ? '+' : '-');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 break;
331
Alan Cox6e47e062009-06-11 12:37:06 +0100332 default:
333 dbg("unknown notification %d received: index %d len %d data0 %d data1 %d",
334 dr->bNotificationType, dr->wIndex,
335 dr->wLength, data[0], data[1]);
336 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 }
338exit:
Oliver Neukum11ea8592008-06-20 11:25:57 +0200339 usb_mark_last_busy(acm->dev);
Alan Cox6e47e062009-06-11 12:37:06 +0100340 retval = usb_submit_urb(urb, GFP_ATOMIC);
Greg Kroah-Hartman185d4052007-07-18 10:58:02 -0700341 if (retval)
Greg Kroah-Hartman9908a322008-08-14 09:37:34 -0700342 dev_err(&urb->dev->dev, "%s - usb_submit_urb failed with "
343 "result %d", __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344}
345
346/* data interface returns incoming bytes, or we got unthrottled */
David Howells7d12e782006-10-05 14:55:46 +0100347static void acm_read_bulk(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
David Kubicek61a87ad2005-11-01 18:51:34 +0100349 struct acm_rb *buf;
350 struct acm_ru *rcv = urb->context;
351 struct acm *acm = rcv->instance;
Oliver Neukum86478942006-05-13 22:50:47 +0200352 int status = urb->status;
Greg Kroah-Hartman185d4052007-07-18 10:58:02 -0700353
354 dbg("Entering acm_read_bulk with status %d", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Oliver Neukum11ea8592008-06-20 11:25:57 +0200356 if (!ACM_READY(acm)) {
357 dev_dbg(&acm->data->dev, "Aborting, acm not ready");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 return;
Oliver Neukum11ea8592008-06-20 11:25:57 +0200359 }
360 usb_mark_last_busy(acm->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Oliver Neukum86478942006-05-13 22:50:47 +0200362 if (status)
Joe Perches898eb712007-10-18 03:06:30 -0700363 dev_dbg(&acm->data->dev, "bulk rx status %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
David Kubicek61a87ad2005-11-01 18:51:34 +0100365 buf = rcv->buffer;
366 buf->size = urb->actual_length;
367
Oliver Neukum86478942006-05-13 22:50:47 +0200368 if (likely(status == 0)) {
369 spin_lock(&acm->read_lock);
Oliver Neukum11ea8592008-06-20 11:25:57 +0200370 acm->processing++;
Oliver Neukum86478942006-05-13 22:50:47 +0200371 list_add_tail(&rcv->list, &acm->spare_read_urbs);
372 list_add_tail(&buf->list, &acm->filled_read_bufs);
373 spin_unlock(&acm->read_lock);
374 } else {
375 /* we drop the buffer due to an error */
376 spin_lock(&acm->read_lock);
377 list_add_tail(&rcv->list, &acm->spare_read_urbs);
378 list_add(&buf->list, &acm->spare_read_bufs);
379 spin_unlock(&acm->read_lock);
380 /* nevertheless the tasklet must be kicked unconditionally
381 so the queue cannot dry up */
382 }
Oliver Neukum11ea8592008-06-20 11:25:57 +0200383 if (likely(!acm->susp_count))
384 tasklet_schedule(&acm->urb_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
386
387static void acm_rx_tasklet(unsigned long _acm)
388{
389 struct acm *acm = (void *)_acm;
David Kubicek61a87ad2005-11-01 18:51:34 +0100390 struct acm_rb *buf;
Alan Cox10077d42009-06-11 12:36:09 +0100391 struct tty_struct *tty;
David Kubicek61a87ad2005-11-01 18:51:34 +0100392 struct acm_ru *rcv;
Jarek Poplawski762f0072006-10-06 07:23:11 +0200393 unsigned long flags;
Oliver Neukumca79b7b2007-02-12 08:41:35 +0100394 unsigned char throttled;
Oliver Neukum11ea8592008-06-20 11:25:57 +0200395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 dbg("Entering acm_rx_tasklet");
397
Alan Cox10077d42009-06-11 12:36:09 +0100398 if (!ACM_READY(acm)) {
Oliver Neukum11ea8592008-06-20 11:25:57 +0200399 dbg("acm_rx_tasklet: ACM not ready");
Oliver Neukumca79b7b2007-02-12 08:41:35 +0100400 return;
Oliver Neukum11ea8592008-06-20 11:25:57 +0200401 }
Oliver Neukumca79b7b2007-02-12 08:41:35 +0100402
Oliver Neukum834dbca2007-03-06 10:47:04 +0100403 spin_lock_irqsave(&acm->throttle_lock, flags);
Oliver Neukumca79b7b2007-02-12 08:41:35 +0100404 throttled = acm->throttle;
Oliver Neukum834dbca2007-03-06 10:47:04 +0100405 spin_unlock_irqrestore(&acm->throttle_lock, flags);
Alan Cox10077d42009-06-11 12:36:09 +0100406 if (throttled) {
Oliver Neukum11ea8592008-06-20 11:25:57 +0200407 dbg("acm_rx_tasklet: throttled");
David Kubicek61a87ad2005-11-01 18:51:34 +0100408 return;
Oliver Neukum11ea8592008-06-20 11:25:57 +0200409 }
David Kubicek61a87ad2005-11-01 18:51:34 +0100410
Alan Cox10077d42009-06-11 12:36:09 +0100411 tty = tty_port_tty_get(&acm->port);
412
David Kubicek61a87ad2005-11-01 18:51:34 +0100413next_buffer:
Jarek Poplawski762f0072006-10-06 07:23:11 +0200414 spin_lock_irqsave(&acm->read_lock, flags);
David Kubicek61a87ad2005-11-01 18:51:34 +0100415 if (list_empty(&acm->filled_read_bufs)) {
Jarek Poplawski762f0072006-10-06 07:23:11 +0200416 spin_unlock_irqrestore(&acm->read_lock, flags);
David Kubicek61a87ad2005-11-01 18:51:34 +0100417 goto urbs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 }
David Kubicek61a87ad2005-11-01 18:51:34 +0100419 buf = list_entry(acm->filled_read_bufs.next,
420 struct acm_rb, list);
421 list_del(&buf->list);
Jarek Poplawski762f0072006-10-06 07:23:11 +0200422 spin_unlock_irqrestore(&acm->read_lock, flags);
David Kubicek61a87ad2005-11-01 18:51:34 +0100423
Oliver Neukum3dd2ae82006-06-23 09:14:17 +0200424 dbg("acm_rx_tasklet: procesing buf 0x%p, size = %d", buf, buf->size);
David Kubicek61a87ad2005-11-01 18:51:34 +0100425
Alan Cox10077d42009-06-11 12:36:09 +0100426 if (tty) {
427 spin_lock_irqsave(&acm->throttle_lock, flags);
428 throttled = acm->throttle;
429 spin_unlock_irqrestore(&acm->throttle_lock, flags);
430 if (!throttled) {
Alan Cox10077d42009-06-11 12:36:09 +0100431 tty_insert_flip_string(tty, buf->base, buf->size);
432 tty_flip_buffer_push(tty);
433 } else {
434 tty_kref_put(tty);
435 dbg("Throttling noticed");
436 spin_lock_irqsave(&acm->read_lock, flags);
437 list_add(&buf->list, &acm->filled_read_bufs);
438 spin_unlock_irqrestore(&acm->read_lock, flags);
439 return;
440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Jarek Poplawski762f0072006-10-06 07:23:11 +0200443 spin_lock_irqsave(&acm->read_lock, flags);
David Kubicek61a87ad2005-11-01 18:51:34 +0100444 list_add(&buf->list, &acm->spare_read_bufs);
Jarek Poplawski762f0072006-10-06 07:23:11 +0200445 spin_unlock_irqrestore(&acm->read_lock, flags);
David Kubicek61a87ad2005-11-01 18:51:34 +0100446 goto next_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
David Kubicek61a87ad2005-11-01 18:51:34 +0100448urbs:
Alan Cox10077d42009-06-11 12:36:09 +0100449 tty_kref_put(tty);
450
David Kubicek61a87ad2005-11-01 18:51:34 +0100451 while (!list_empty(&acm->spare_read_bufs)) {
Jarek Poplawski762f0072006-10-06 07:23:11 +0200452 spin_lock_irqsave(&acm->read_lock, flags);
David Kubicek61a87ad2005-11-01 18:51:34 +0100453 if (list_empty(&acm->spare_read_urbs)) {
Oliver Neukum11ea8592008-06-20 11:25:57 +0200454 acm->processing = 0;
Jarek Poplawski762f0072006-10-06 07:23:11 +0200455 spin_unlock_irqrestore(&acm->read_lock, flags);
David Kubicek61a87ad2005-11-01 18:51:34 +0100456 return;
457 }
458 rcv = list_entry(acm->spare_read_urbs.next,
459 struct acm_ru, list);
460 list_del(&rcv->list);
Jarek Poplawski762f0072006-10-06 07:23:11 +0200461 spin_unlock_irqrestore(&acm->read_lock, flags);
David Kubicek61a87ad2005-11-01 18:51:34 +0100462
463 buf = list_entry(acm->spare_read_bufs.next,
464 struct acm_rb, list);
465 list_del(&buf->list);
466
467 rcv->buffer = buf;
468
Oliver Neukumcf7fdd52009-08-04 23:52:09 +0200469 if (acm->is_int_ep)
Arseniy Lartsev5186ffe2009-07-01 16:27:26 +0400470 usb_fill_int_urb(rcv->urb, acm->dev,
471 acm->rx_endpoint,
472 buf->base,
473 acm->readsize,
Oliver Neukumcf7fdd52009-08-04 23:52:09 +0200474 acm_read_bulk, rcv, acm->bInterval);
Arseniy Lartsev5186ffe2009-07-01 16:27:26 +0400475 else
476 usb_fill_bulk_urb(rcv->urb, acm->dev,
477 acm->rx_endpoint,
478 buf->base,
479 acm->readsize,
480 acm_read_bulk, rcv);
David Kubicek61a87ad2005-11-01 18:51:34 +0100481 rcv->urb->transfer_dma = buf->dma;
482 rcv->urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
483
Alan Cox6e47e062009-06-11 12:37:06 +0100484 /* This shouldn't kill the driver as unsuccessful URBs are
485 returned to the free-urbs-pool and resubmited ASAP */
Oliver Neukum11ea8592008-06-20 11:25:57 +0200486 spin_lock_irqsave(&acm->read_lock, flags);
Alan Cox6e47e062009-06-11 12:37:06 +0100487 if (acm->susp_count ||
488 usb_submit_urb(rcv->urb, GFP_ATOMIC) < 0) {
David Kubicek61a87ad2005-11-01 18:51:34 +0100489 list_add(&buf->list, &acm->spare_read_bufs);
David Kubicek61a87ad2005-11-01 18:51:34 +0100490 list_add(&rcv->list, &acm->spare_read_urbs);
Oliver Neukum11ea8592008-06-20 11:25:57 +0200491 acm->processing = 0;
Jarek Poplawski762f0072006-10-06 07:23:11 +0200492 spin_unlock_irqrestore(&acm->read_lock, flags);
David Kubicek61a87ad2005-11-01 18:51:34 +0100493 return;
Oliver Neukum11ea8592008-06-20 11:25:57 +0200494 } else {
495 spin_unlock_irqrestore(&acm->read_lock, flags);
496 dbg("acm_rx_tasklet: sending urb 0x%p, rcv 0x%p, buf 0x%p", rcv->urb, rcv, buf);
David Kubicek61a87ad2005-11-01 18:51:34 +0100497 }
498 }
Oliver Neukum11ea8592008-06-20 11:25:57 +0200499 spin_lock_irqsave(&acm->read_lock, flags);
500 acm->processing = 0;
501 spin_unlock_irqrestore(&acm->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502}
503
504/* data interface wrote those outgoing bytes */
David Howells7d12e782006-10-05 14:55:46 +0100505static void acm_write_bulk(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
Ming Leicdc97792008-02-24 18:41:47 +0800507 struct acm_wb *wb = urb->context;
David Brownelle5fbab52008-08-06 18:46:10 -0700508 struct acm *acm = wb->instance;
Brandon Philipsad0b65e2008-11-06 11:19:11 -0800509 unsigned long flags;
Oliver Neukum884b6002005-04-21 21:28:02 +0200510
David Brownelle5fbab52008-08-06 18:46:10 -0700511 if (verbose || urb->status
512 || (urb->actual_length != urb->transfer_buffer_length))
513 dev_dbg(&acm->data->dev, "tx %d/%d bytes -- > %d\n",
514 urb->actual_length,
515 urb->transfer_buffer_length,
516 urb->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Brandon Philipsad0b65e2008-11-06 11:19:11 -0800518 spin_lock_irqsave(&acm->write_lock, flags);
David Engrafe4cf3aa2008-03-20 10:01:34 +0100519 acm_write_done(acm, wb);
Brandon Philipsad0b65e2008-11-06 11:19:11 -0800520 spin_unlock_irqrestore(&acm->write_lock, flags);
Oliver Neukum884b6002005-04-21 21:28:02 +0200521 if (ACM_READY(acm))
522 schedule_work(&acm->work);
David Brownelle5fbab52008-08-06 18:46:10 -0700523 else
524 wake_up_interruptible(&acm->drain_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525}
526
David Howellsc4028952006-11-22 14:57:56 +0000527static void acm_softint(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
David Howellsc4028952006-11-22 14:57:56 +0000529 struct acm *acm = container_of(work, struct acm, work);
Alan Cox10077d42009-06-11 12:36:09 +0100530 struct tty_struct *tty;
David Brownelle5fbab52008-08-06 18:46:10 -0700531
532 dev_vdbg(&acm->data->dev, "tx work\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 if (!ACM_READY(acm))
534 return;
Alan Cox10077d42009-06-11 12:36:09 +0100535 tty = tty_port_tty_get(&acm->port);
536 tty_wakeup(tty);
537 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538}
539
540/*
541 * TTY handlers
542 */
543
544static int acm_tty_open(struct tty_struct *tty, struct file *filp)
545{
546 struct acm *acm;
Thadeu Lima de Souza Cascardo42dd2aa2009-06-25 14:41:24 +0100547 int rv = -ENODEV;
David Kubicek61a87ad2005-11-01 18:51:34 +0100548 int i;
Oliver Neukum3dd2ae82006-06-23 09:14:17 +0200549 dbg("Entering acm_tty_open.");
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100550
551 mutex_lock(&open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553 acm = acm_table[tty->index];
554 if (!acm || !acm->dev)
Oliver Neukum2b626dc2010-02-03 17:10:22 +0100555 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 else
557 rv = 0;
558
David Engraf28d1dfa2008-03-20 10:53:52 +0100559 set_bit(TTY_NO_WRITE_SPLIT, &tty->flags);
Alan Cox10077d42009-06-11 12:36:09 +0100560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 tty->driver_data = acm;
Alan Cox10077d42009-06-11 12:36:09 +0100562 tty_port_tty_set(&acm->port, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Oliver Neukum94409cc2008-02-11 15:22:29 +0100564 if (usb_autopm_get_interface(acm->control) < 0)
565 goto early_bail;
Oliver Neukum11ea8592008-06-20 11:25:57 +0200566 else
567 acm->control->needs_remote_wakeup = 1;
Oliver Neukum1365baf2007-10-12 17:24:28 +0200568
569 mutex_lock(&acm->mutex);
Alan Cox10077d42009-06-11 12:36:09 +0100570 if (acm->port.count++) {
Oliver Neukum2b626dc2010-02-03 17:10:22 +0100571 mutex_unlock(&acm->mutex);
Oliver Neukum1365baf2007-10-12 17:24:28 +0200572 usb_autopm_put_interface(acm->control);
Oliver Neukum2b626dc2010-02-03 17:10:22 +0100573 goto out;
Alan Cox10077d42009-06-11 12:36:09 +0100574 }
Oliver Neukum1365baf2007-10-12 17:24:28 +0200575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 acm->ctrlurb->dev = acm->dev;
577 if (usb_submit_urb(acm->ctrlurb, GFP_KERNEL)) {
578 dbg("usb_submit_urb(ctrl irq) failed");
579 goto bail_out;
580 }
581
Oliver Neukumca79b7b2007-02-12 08:41:35 +0100582 if (0 > acm_set_control(acm, acm->ctrlout = ACM_CTRL_DTR | ACM_CTRL_RTS) &&
583 (acm->ctrl_caps & USB_CDC_CAP_LINE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 goto full_bailout;
Alan Cox10077d42009-06-11 12:36:09 +0100585
Oliver Neukum11ea8592008-06-20 11:25:57 +0200586 usb_autopm_put_interface(acm->control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
David Kubicek61a87ad2005-11-01 18:51:34 +0100588 INIT_LIST_HEAD(&acm->spare_read_urbs);
589 INIT_LIST_HEAD(&acm->spare_read_bufs);
590 INIT_LIST_HEAD(&acm->filled_read_bufs);
Alan Cox6e47e062009-06-11 12:37:06 +0100591
592 for (i = 0; i < acm->rx_buflimit; i++)
David Kubicek61a87ad2005-11-01 18:51:34 +0100593 list_add(&(acm->ru[i].list), &acm->spare_read_urbs);
Alan Cox6e47e062009-06-11 12:37:06 +0100594 for (i = 0; i < acm->rx_buflimit; i++)
David Kubicek61a87ad2005-11-01 18:51:34 +0100595 list_add(&(acm->rb[i].list), &acm->spare_read_bufs);
David Kubicek61a87ad2005-11-01 18:51:34 +0100596
Oliver Neukumca79b7b2007-02-12 08:41:35 +0100597 acm->throttle = 0;
598
Oliver Neukum7af25b42009-09-08 23:51:28 +0200599 set_bit(ASYNCB_INITIALIZED, &acm->port.flags);
Alan Cox10077d42009-06-11 12:36:09 +0100600 rv = tty_port_block_til_ready(&acm->port, tty, filp);
Henry Gebhardt18a77b52009-11-04 11:19:28 +0100601 tasklet_schedule(&acm->urb_task);
Oliver Neukum2b626dc2010-02-03 17:10:22 +0100602
Oliver Neukum1365baf2007-10-12 17:24:28 +0200603 mutex_unlock(&acm->mutex);
Oliver Neukum2b626dc2010-02-03 17:10:22 +0100604out:
Oliver Neukum94409cc2008-02-11 15:22:29 +0100605 mutex_unlock(&open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 return rv;
607
608full_bailout:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 usb_kill_urb(acm->ctrlurb);
610bail_out:
Alan Cox10077d42009-06-11 12:36:09 +0100611 acm->port.count--;
Oliver Neukum1365baf2007-10-12 17:24:28 +0200612 mutex_unlock(&acm->mutex);
Oliver Neukum2b626dc2010-02-03 17:10:22 +0100613 usb_autopm_put_interface(acm->control);
Oliver Neukum94409cc2008-02-11 15:22:29 +0100614early_bail:
615 mutex_unlock(&open_mutex);
Alan Cox10077d42009-06-11 12:36:09 +0100616 tty_port_tty_set(&acm->port, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 return -EIO;
618}
619
brian@murphy.dk83ef3442005-06-29 16:53:29 -0700620static void acm_tty_unregister(struct acm *acm)
621{
Alan Cox10077d42009-06-11 12:36:09 +0100622 int i, nr;
David Kubicek61a87ad2005-11-01 18:51:34 +0100623
Oliver Neukum86478942006-05-13 22:50:47 +0200624 nr = acm->rx_buflimit;
brian@murphy.dk83ef3442005-06-29 16:53:29 -0700625 tty_unregister_device(acm_tty_driver, acm->minor);
626 usb_put_intf(acm->control);
627 acm_table[acm->minor] = NULL;
628 usb_free_urb(acm->ctrlurb);
David Engrafe4cf3aa2008-03-20 10:01:34 +0100629 for (i = 0; i < ACM_NW; i++)
630 usb_free_urb(acm->wb[i].urb);
Oliver Neukum86478942006-05-13 22:50:47 +0200631 for (i = 0; i < nr; i++)
David Kubicek61a87ad2005-11-01 18:51:34 +0100632 usb_free_urb(acm->ru[i].urb);
Oliver Neukumc4cabd22007-02-27 15:28:55 +0100633 kfree(acm->country_codes);
brian@murphy.dk83ef3442005-06-29 16:53:29 -0700634 kfree(acm);
635}
636
David Brownelle5fbab52008-08-06 18:46:10 -0700637static int acm_tty_chars_in_buffer(struct tty_struct *tty);
638
Arnd Bergmann4e608672010-06-01 22:53:04 +0200639static void acm_port_down(struct acm *acm)
Alan Cox10077d42009-06-11 12:36:09 +0100640{
641 int i, nr = acm->rx_buflimit;
642 mutex_lock(&open_mutex);
643 if (acm->dev) {
644 usb_autopm_get_interface(acm->control);
645 acm_set_control(acm, acm->ctrlout = 0);
Alan Cox10077d42009-06-11 12:36:09 +0100646 usb_kill_urb(acm->ctrlurb);
647 for (i = 0; i < ACM_NW; i++)
648 usb_kill_urb(acm->wb[i].urb);
Johan Hovold23b80552011-03-22 11:12:09 +0100649 tasklet_disable(&acm->urb_task);
Alan Cox10077d42009-06-11 12:36:09 +0100650 for (i = 0; i < nr; i++)
651 usb_kill_urb(acm->ru[i].urb);
Johan Hovold23b80552011-03-22 11:12:09 +0100652 tasklet_enable(&acm->urb_task);
Alan Cox10077d42009-06-11 12:36:09 +0100653 acm->control->needs_remote_wakeup = 0;
654 usb_autopm_put_interface(acm->control);
655 }
656 mutex_unlock(&open_mutex);
657}
658
659static void acm_tty_hangup(struct tty_struct *tty)
660{
661 struct acm *acm = tty->driver_data;
662 tty_port_hangup(&acm->port);
Arnd Bergmann4e608672010-06-01 22:53:04 +0200663 acm_port_down(acm);
Alan Cox10077d42009-06-11 12:36:09 +0100664}
665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666static void acm_tty_close(struct tty_struct *tty, struct file *filp)
667{
668 struct acm *acm = tty->driver_data;
669
Alan Cox10077d42009-06-11 12:36:09 +0100670 /* Perform the closing process and see if we need to do the hardware
671 shutdown */
Francesco Lavra051522b2009-11-03 10:53:07 +0000672 if (!acm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 return;
Francesco Lavra051522b2009-11-03 10:53:07 +0000674 if (tty_port_close_start(&acm->port, tty, filp) == 0) {
675 mutex_lock(&open_mutex);
676 if (!acm->dev) {
677 tty_port_tty_set(&acm->port, NULL);
678 acm_tty_unregister(acm);
679 tty->driver_data = NULL;
680 }
681 mutex_unlock(&open_mutex);
682 return;
683 }
Arnd Bergmann4e608672010-06-01 22:53:04 +0200684 acm_port_down(acm);
Alan Cox10077d42009-06-11 12:36:09 +0100685 tty_port_close_end(&acm->port, tty);
Alan Cox10077d42009-06-11 12:36:09 +0100686 tty_port_tty_set(&acm->port, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687}
688
Alan Cox6e47e062009-06-11 12:37:06 +0100689static int acm_tty_write(struct tty_struct *tty,
690 const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
692 struct acm *acm = tty->driver_data;
693 int stat;
Oliver Neukum884b6002005-04-21 21:28:02 +0200694 unsigned long flags;
695 int wbn;
696 struct acm_wb *wb;
697
Oliver Neukum3dd2ae82006-06-23 09:14:17 +0200698 dbg("Entering acm_tty_write to write %d bytes,", count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 if (!ACM_READY(acm))
701 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 if (!count)
703 return 0;
704
Oliver Neukum884b6002005-04-21 21:28:02 +0200705 spin_lock_irqsave(&acm->write_lock, flags);
Alan Cox6e47e062009-06-11 12:37:06 +0100706 wbn = acm_wb_alloc(acm);
707 if (wbn < 0) {
Oliver Neukum884b6002005-04-21 21:28:02 +0200708 spin_unlock_irqrestore(&acm->write_lock, flags);
Oliver Neukum884b6002005-04-21 21:28:02 +0200709 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 }
Oliver Neukum884b6002005-04-21 21:28:02 +0200711 wb = &acm->wb[wbn];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Oliver Neukum884b6002005-04-21 21:28:02 +0200713 count = (count > acm->writesize) ? acm->writesize : count;
714 dbg("Get %d bytes...", count);
715 memcpy(wb->buf, buf, count);
716 wb->len = count;
717 spin_unlock_irqrestore(&acm->write_lock, flags);
718
Alan Cox6e47e062009-06-11 12:37:06 +0100719 stat = acm_write_start(acm, wbn);
720 if (stat < 0)
Oliver Neukum884b6002005-04-21 21:28:02 +0200721 return stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 return count;
723}
724
725static int acm_tty_write_room(struct tty_struct *tty)
726{
727 struct acm *acm = tty->driver_data;
728 if (!ACM_READY(acm))
729 return -EINVAL;
Oliver Neukum884b6002005-04-21 21:28:02 +0200730 /*
731 * Do not let the line discipline to know that we have a reserve,
732 * or it might get too enthusiastic.
733 */
David Brownell934da462008-08-06 18:44:12 -0700734 return acm_wb_is_avail(acm) ? acm->writesize : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735}
736
737static int acm_tty_chars_in_buffer(struct tty_struct *tty)
738{
739 struct acm *acm = tty->driver_data;
740 if (!ACM_READY(acm))
Alan Cox23198fd2009-07-20 16:05:27 +0100741 return 0;
Oliver Neukum884b6002005-04-21 21:28:02 +0200742 /*
743 * This is inaccurate (overcounts), but it works.
744 */
Oliver Neukum86478942006-05-13 22:50:47 +0200745 return (ACM_NW - acm_wb_is_avail(acm)) * acm->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746}
747
748static void acm_tty_throttle(struct tty_struct *tty)
749{
750 struct acm *acm = tty->driver_data;
751 if (!ACM_READY(acm))
752 return;
753 spin_lock_bh(&acm->throttle_lock);
754 acm->throttle = 1;
755 spin_unlock_bh(&acm->throttle_lock);
756}
757
758static void acm_tty_unthrottle(struct tty_struct *tty)
759{
760 struct acm *acm = tty->driver_data;
761 if (!ACM_READY(acm))
762 return;
763 spin_lock_bh(&acm->throttle_lock);
764 acm->throttle = 0;
765 spin_unlock_bh(&acm->throttle_lock);
David Kubicek61a87ad2005-11-01 18:51:34 +0100766 tasklet_schedule(&acm->urb_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
768
Alan Cox9e989662008-07-22 11:18:03 +0100769static int acm_tty_break_ctl(struct tty_struct *tty, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
771 struct acm *acm = tty->driver_data;
Alan Cox9e989662008-07-22 11:18:03 +0100772 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 if (!ACM_READY(acm))
Alan Cox9e989662008-07-22 11:18:03 +0100774 return -EINVAL;
775 retval = acm_send_break(acm, state ? 0xffff : 0);
776 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 dbg("send break failed");
Alan Cox9e989662008-07-22 11:18:03 +0100778 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779}
780
Alan Cox60b33c12011-02-14 16:26:14 +0000781static int acm_tty_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782{
783 struct acm *acm = tty->driver_data;
784
785 if (!ACM_READY(acm))
786 return -EINVAL;
787
788 return (acm->ctrlout & ACM_CTRL_DTR ? TIOCM_DTR : 0) |
789 (acm->ctrlout & ACM_CTRL_RTS ? TIOCM_RTS : 0) |
790 (acm->ctrlin & ACM_CTRL_DSR ? TIOCM_DSR : 0) |
791 (acm->ctrlin & ACM_CTRL_RI ? TIOCM_RI : 0) |
792 (acm->ctrlin & ACM_CTRL_DCD ? TIOCM_CD : 0) |
793 TIOCM_CTS;
794}
795
Alan Cox20b9d172011-02-14 16:26:50 +0000796static int acm_tty_tiocmset(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 unsigned int set, unsigned int clear)
798{
799 struct acm *acm = tty->driver_data;
800 unsigned int newctrl;
801
802 if (!ACM_READY(acm))
803 return -EINVAL;
804
805 newctrl = acm->ctrlout;
Alan Cox6e47e062009-06-11 12:37:06 +0100806 set = (set & TIOCM_DTR ? ACM_CTRL_DTR : 0) |
807 (set & TIOCM_RTS ? ACM_CTRL_RTS : 0);
808 clear = (clear & TIOCM_DTR ? ACM_CTRL_DTR : 0) |
809 (clear & TIOCM_RTS ? ACM_CTRL_RTS : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811 newctrl = (newctrl & ~clear) | set;
812
813 if (acm->ctrlout == newctrl)
814 return 0;
815 return acm_set_control(acm, acm->ctrlout = newctrl);
816}
817
Alan Cox6caa76b2011-02-14 16:27:22 +0000818static int acm_tty_ioctl(struct tty_struct *tty,
Alan Cox6e47e062009-06-11 12:37:06 +0100819 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820{
821 struct acm *acm = tty->driver_data;
822
823 if (!ACM_READY(acm))
824 return -EINVAL;
825
826 return -ENOIOCTLCMD;
827}
828
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100829static const __u32 acm_tty_speed[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 0, 50, 75, 110, 134, 150, 200, 300, 600,
831 1200, 1800, 2400, 4800, 9600, 19200, 38400,
832 57600, 115200, 230400, 460800, 500000, 576000,
833 921600, 1000000, 1152000, 1500000, 2000000,
834 2500000, 3000000, 3500000, 4000000
835};
836
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100837static const __u8 acm_tty_size[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 5, 6, 7, 8
839};
840
Alan Cox6e47e062009-06-11 12:37:06 +0100841static void acm_tty_set_termios(struct tty_struct *tty,
842 struct ktermios *termios_old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
844 struct acm *acm = tty->driver_data;
Alan Cox606d0992006-12-08 02:38:45 -0800845 struct ktermios *termios = tty->termios;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 struct usb_cdc_line_coding newline;
847 int newctrl = acm->ctrlout;
848
849 if (!ACM_READY(acm))
850 return;
851
Alan Cox9b80fee2009-09-19 13:13:23 -0700852 newline.dwDTERate = cpu_to_le32(tty_get_baud_rate(tty));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 newline.bCharFormat = termios->c_cflag & CSTOPB ? 2 : 0;
854 newline.bParityType = termios->c_cflag & PARENB ?
Alan Cox6e47e062009-06-11 12:37:06 +0100855 (termios->c_cflag & PARODD ? 1 : 2) +
856 (termios->c_cflag & CMSPAR ? 2 : 0) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 newline.bDataBits = acm_tty_size[(termios->c_cflag & CSIZE) >> 4];
Alan Cox6e47e062009-06-11 12:37:06 +0100858 /* FIXME: Needs to clear unsupported bits in the termios */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 acm->clocal = ((termios->c_cflag & CLOCAL) != 0);
860
861 if (!newline.dwDTERate) {
862 newline.dwDTERate = acm->line.dwDTERate;
863 newctrl &= ~ACM_CTRL_DTR;
Alan Cox6e47e062009-06-11 12:37:06 +0100864 } else
865 newctrl |= ACM_CTRL_DTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
867 if (newctrl != acm->ctrlout)
868 acm_set_control(acm, acm->ctrlout = newctrl);
869
870 if (memcmp(&acm->line, &newline, sizeof newline)) {
871 memcpy(&acm->line, &newline, sizeof newline);
872 dbg("set line: %d %d %d %d", le32_to_cpu(newline.dwDTERate),
873 newline.bCharFormat, newline.bParityType,
874 newline.bDataBits);
875 acm_set_line(acm, &acm->line);
876 }
877}
878
879/*
880 * USB probe and disconnect routines.
881 */
882
Oliver Neukum830f4022008-06-25 14:17:16 +0200883/* Little helpers: write/read buffers free */
Oliver Neukum884b6002005-04-21 21:28:02 +0200884static void acm_write_buffers_free(struct acm *acm)
885{
886 int i;
887 struct acm_wb *wb;
Oliver Neukuma496c642008-10-21 10:39:04 +0200888 struct usb_device *usb_dev = interface_to_usbdev(acm->control);
Oliver Neukum884b6002005-04-21 21:28:02 +0200889
Alan Cox6e47e062009-06-11 12:37:06 +0100890 for (wb = &acm->wb[0], i = 0; i < ACM_NW; i++, wb++)
Daniel Mack997ea582010-04-12 13:17:25 +0200891 usb_free_coherent(usb_dev, acm->writesize, wb->buf, wb->dmah);
Oliver Neukum884b6002005-04-21 21:28:02 +0200892}
893
Oliver Neukum830f4022008-06-25 14:17:16 +0200894static void acm_read_buffers_free(struct acm *acm)
895{
896 struct usb_device *usb_dev = interface_to_usbdev(acm->control);
897 int i, n = acm->rx_buflimit;
898
899 for (i = 0; i < n; i++)
Daniel Mack997ea582010-04-12 13:17:25 +0200900 usb_free_coherent(usb_dev, acm->readsize,
901 acm->rb[i].base, acm->rb[i].dma);
Oliver Neukum830f4022008-06-25 14:17:16 +0200902}
903
Oliver Neukum884b6002005-04-21 21:28:02 +0200904/* Little helper: write buffers allocate */
905static int acm_write_buffers_alloc(struct acm *acm)
906{
907 int i;
908 struct acm_wb *wb;
909
Oliver Neukum86478942006-05-13 22:50:47 +0200910 for (wb = &acm->wb[0], i = 0; i < ACM_NW; i++, wb++) {
Daniel Mack997ea582010-04-12 13:17:25 +0200911 wb->buf = usb_alloc_coherent(acm->dev, acm->writesize, GFP_KERNEL,
Oliver Neukum884b6002005-04-21 21:28:02 +0200912 &wb->dmah);
913 if (!wb->buf) {
914 while (i != 0) {
915 --i;
916 --wb;
Daniel Mack997ea582010-04-12 13:17:25 +0200917 usb_free_coherent(acm->dev, acm->writesize,
Oliver Neukum884b6002005-04-21 21:28:02 +0200918 wb->buf, wb->dmah);
919 }
920 return -ENOMEM;
921 }
922 }
923 return 0;
924}
925
Alan Cox10077d42009-06-11 12:36:09 +0100926static int acm_probe(struct usb_interface *intf,
927 const struct usb_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
929 struct usb_cdc_union_desc *union_header = NULL;
Oliver Neukumc4cabd22007-02-27 15:28:55 +0100930 struct usb_cdc_country_functional_desc *cfd = NULL;
David Brownellc6dbf552008-04-13 14:00:44 -0700931 unsigned char *buffer = intf->altsetting->extra;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 int buflen = intf->altsetting->extralen;
933 struct usb_interface *control_interface;
934 struct usb_interface *data_interface;
Oliver Neukuma2bfb4a2009-05-16 21:13:19 +0200935 struct usb_endpoint_descriptor *epctrl = NULL;
936 struct usb_endpoint_descriptor *epread = NULL;
937 struct usb_endpoint_descriptor *epwrite = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 struct usb_device *usb_dev = interface_to_usbdev(intf);
939 struct acm *acm;
940 int minor;
Alan Cox6e47e062009-06-11 12:37:06 +0100941 int ctrlsize, readsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 u8 *buf;
943 u8 ac_management_function = 0;
944 u8 call_management_function = 0;
945 int call_interface_num = -1;
946 int data_interface_num;
947 unsigned long quirks;
Oliver Neukum86478942006-05-13 22:50:47 +0200948 int num_rx_buf;
David Kubicek61a87ad2005-11-01 18:51:34 +0100949 int i;
Oliver Neukuma2bfb4a2009-05-16 21:13:19 +0200950 int combined_interfaces = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
Oliver Neukum86478942006-05-13 22:50:47 +0200952 /* normal quirks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 quirks = (unsigned long)id->driver_info;
Oliver Neukum86478942006-05-13 22:50:47 +0200954 num_rx_buf = (quirks == SINGLE_RX_URB) ? 1 : ACM_NR;
955
956 /* handle quirks deadly to normal probing*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 if (quirks == NO_UNION_NORMAL) {
958 data_interface = usb_ifnum_to_if(usb_dev, 1);
959 control_interface = usb_ifnum_to_if(usb_dev, 0);
960 goto skip_normal_probe;
961 }
Alan Cox6e47e062009-06-11 12:37:06 +0100962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 /* normal probing*/
964 if (!buffer) {
Greg Kroah-Hartman9908a322008-08-14 09:37:34 -0700965 dev_err(&intf->dev, "Weird descriptor references\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 return -EINVAL;
967 }
968
969 if (!buflen) {
Toby Gray577045c2010-09-02 10:46:20 +0100970 if (intf->cur_altsetting->endpoint &&
971 intf->cur_altsetting->endpoint->extralen &&
Alan Cox6e47e062009-06-11 12:37:06 +0100972 intf->cur_altsetting->endpoint->extra) {
973 dev_dbg(&intf->dev,
974 "Seeking extra descriptors on endpoint\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 buflen = intf->cur_altsetting->endpoint->extralen;
976 buffer = intf->cur_altsetting->endpoint->extra;
977 } else {
Greg Kroah-Hartman9908a322008-08-14 09:37:34 -0700978 dev_err(&intf->dev,
979 "Zero length descriptor references\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 return -EINVAL;
981 }
982 }
983
984 while (buflen > 0) {
Alan Cox6e47e062009-06-11 12:37:06 +0100985 if (buffer[1] != USB_DT_CS_INTERFACE) {
Greg Kroah-Hartman9908a322008-08-14 09:37:34 -0700986 dev_err(&intf->dev, "skipping garbage\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 goto next_desc;
988 }
989
Alan Cox6e47e062009-06-11 12:37:06 +0100990 switch (buffer[2]) {
991 case USB_CDC_UNION_TYPE: /* we've found it */
992 if (union_header) {
993 dev_err(&intf->dev, "More than one "
994 "union descriptor, skipping ...\n");
995 goto next_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 }
Alan Cox6e47e062009-06-11 12:37:06 +0100997 union_header = (struct usb_cdc_union_desc *)buffer;
998 break;
999 case USB_CDC_COUNTRY_TYPE: /* export through sysfs*/
1000 cfd = (struct usb_cdc_country_functional_desc *)buffer;
1001 break;
1002 case USB_CDC_HEADER_TYPE: /* maybe check version */
1003 break; /* for now we ignore it */
1004 case USB_CDC_ACM_TYPE:
1005 ac_management_function = buffer[3];
1006 break;
1007 case USB_CDC_CALL_MANAGEMENT_TYPE:
1008 call_management_function = buffer[3];
1009 call_interface_num = buffer[4];
Julian Calabyce126642010-01-05 23:58:20 +11001010 if ( (quirks & NOT_A_MODEM) == 0 && (call_management_function & 3) != 3)
Alan Cox6e47e062009-06-11 12:37:06 +01001011 dev_err(&intf->dev, "This device cannot do calls on its own. It is not a modem.\n");
1012 break;
1013 default:
1014 /* there are LOTS more CDC descriptors that
1015 * could legitimately be found here.
1016 */
1017 dev_dbg(&intf->dev, "Ignoring descriptor: "
1018 "type %02x, length %d\n",
1019 buffer[2], buffer[0]);
1020 break;
1021 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022next_desc:
1023 buflen -= buffer[0];
1024 buffer += buffer[0];
1025 }
1026
1027 if (!union_header) {
1028 if (call_interface_num > 0) {
Alan Cox6e47e062009-06-11 12:37:06 +01001029 dev_dbg(&intf->dev, "No union descriptor, using call management descriptor\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 data_interface = usb_ifnum_to_if(usb_dev, (data_interface_num = call_interface_num));
1031 control_interface = intf;
1032 } else {
Oliver Neukuma2bfb4a2009-05-16 21:13:19 +02001033 if (intf->cur_altsetting->desc.bNumEndpoints != 3) {
1034 dev_dbg(&intf->dev,"No union descriptor, giving up\n");
1035 return -ENODEV;
1036 } else {
1037 dev_warn(&intf->dev,"No union descriptor, testing for castrated device\n");
1038 combined_interfaces = 1;
1039 control_interface = data_interface = intf;
1040 goto look_for_collapsed_interface;
1041 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 }
1043 } else {
1044 control_interface = usb_ifnum_to_if(usb_dev, union_header->bMasterInterface0);
1045 data_interface = usb_ifnum_to_if(usb_dev, (data_interface_num = union_header->bSlaveInterface0));
1046 if (!control_interface || !data_interface) {
Alan Cox6e47e062009-06-11 12:37:06 +01001047 dev_dbg(&intf->dev, "no interfaces\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 return -ENODEV;
1049 }
1050 }
Alan Cox6e47e062009-06-11 12:37:06 +01001051
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 if (data_interface_num != call_interface_num)
Alan Cox6e47e062009-06-11 12:37:06 +01001053 dev_dbg(&intf->dev, "Separate call control interface. That is not fully supported.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Oliver Neukuma2bfb4a2009-05-16 21:13:19 +02001055 if (control_interface == data_interface) {
1056 /* some broken devices designed for windows work this way */
1057 dev_warn(&intf->dev,"Control and data interfaces are not separated!\n");
1058 combined_interfaces = 1;
1059 /* a popular other OS doesn't use it */
1060 quirks |= NO_CAP_LINE;
1061 if (data_interface->cur_altsetting->desc.bNumEndpoints != 3) {
1062 dev_err(&intf->dev, "This needs exactly 3 endpoints\n");
1063 return -EINVAL;
1064 }
1065look_for_collapsed_interface:
1066 for (i = 0; i < 3; i++) {
1067 struct usb_endpoint_descriptor *ep;
1068 ep = &data_interface->cur_altsetting->endpoint[i].desc;
1069
1070 if (usb_endpoint_is_int_in(ep))
1071 epctrl = ep;
1072 else if (usb_endpoint_is_bulk_out(ep))
1073 epwrite = ep;
1074 else if (usb_endpoint_is_bulk_in(ep))
1075 epread = ep;
1076 else
1077 return -EINVAL;
1078 }
1079 if (!epctrl || !epread || !epwrite)
1080 return -ENODEV;
1081 else
1082 goto made_compressed_probe;
1083 }
1084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085skip_normal_probe:
1086
1087 /*workaround for switched interfaces */
Alan Cox6e47e062009-06-11 12:37:06 +01001088 if (data_interface->cur_altsetting->desc.bInterfaceClass
1089 != CDC_DATA_INTERFACE_TYPE) {
1090 if (control_interface->cur_altsetting->desc.bInterfaceClass
1091 == CDC_DATA_INTERFACE_TYPE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 struct usb_interface *t;
Alan Cox6e47e062009-06-11 12:37:06 +01001093 dev_dbg(&intf->dev,
1094 "Your device has switched interfaces.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 t = control_interface;
1096 control_interface = data_interface;
1097 data_interface = t;
1098 } else {
1099 return -EINVAL;
1100 }
1101 }
Alan Stern74da5d62007-08-02 13:29:10 -04001102
1103 /* Accept probe requests only for the control interface */
Oliver Neukuma2bfb4a2009-05-16 21:13:19 +02001104 if (!combined_interfaces && intf != control_interface)
Alan Stern74da5d62007-08-02 13:29:10 -04001105 return -ENODEV;
Alan Cox6e47e062009-06-11 12:37:06 +01001106
Oliver Neukuma2bfb4a2009-05-16 21:13:19 +02001107 if (!combined_interfaces && usb_interface_claimed(data_interface)) {
1108 /* valid in this context */
Alan Cox6e47e062009-06-11 12:37:06 +01001109 dev_dbg(&intf->dev, "The data interface isn't available\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 return -EBUSY;
1111 }
1112
1113
1114 if (data_interface->cur_altsetting->desc.bNumEndpoints < 2)
1115 return -EINVAL;
1116
1117 epctrl = &control_interface->cur_altsetting->endpoint[0].desc;
1118 epread = &data_interface->cur_altsetting->endpoint[0].desc;
1119 epwrite = &data_interface->cur_altsetting->endpoint[1].desc;
1120
1121
1122 /* workaround for switched endpoints */
Luiz Fernando N. Capitulino45aea702006-10-26 13:02:48 -03001123 if (!usb_endpoint_dir_in(epread)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 /* descriptors are swapped */
1125 struct usb_endpoint_descriptor *t;
Alan Cox6e47e062009-06-11 12:37:06 +01001126 dev_dbg(&intf->dev,
1127 "The data interface has switched endpoints\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 t = epread;
1129 epread = epwrite;
1130 epwrite = t;
1131 }
Oliver Neukuma2bfb4a2009-05-16 21:13:19 +02001132made_compressed_probe:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 dbg("interfaces are valid");
1134 for (minor = 0; minor < ACM_TTY_MINORS && acm_table[minor]; minor++);
1135
1136 if (minor == ACM_TTY_MINORS) {
Greg Kroah-Hartman9908a322008-08-14 09:37:34 -07001137 dev_err(&intf->dev, "no more free acm devices\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 return -ENODEV;
1139 }
1140
Alan Cox6e47e062009-06-11 12:37:06 +01001141 acm = kzalloc(sizeof(struct acm), GFP_KERNEL);
1142 if (acm == NULL) {
Joe Perches898eb712007-10-18 03:06:30 -07001143 dev_dbg(&intf->dev, "out of memory (acm kzalloc)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 goto alloc_fail;
1145 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
1147 ctrlsize = le16_to_cpu(epctrl->wMaxPacketSize);
Alan Cox6e47e062009-06-11 12:37:06 +01001148 readsize = le16_to_cpu(epread->wMaxPacketSize) *
1149 (quirks == SINGLE_RX_URB ? 1 : 2);
Oliver Neukuma2bfb4a2009-05-16 21:13:19 +02001150 acm->combined_interfaces = combined_interfaces;
David Engrafe4cf3aa2008-03-20 10:01:34 +01001151 acm->writesize = le16_to_cpu(epwrite->wMaxPacketSize) * 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 acm->control = control_interface;
1153 acm->data = data_interface;
1154 acm->minor = minor;
1155 acm->dev = usb_dev;
1156 acm->ctrl_caps = ac_management_function;
Oliver Neukuma2bfb4a2009-05-16 21:13:19 +02001157 if (quirks & NO_CAP_LINE)
1158 acm->ctrl_caps &= ~USB_CDC_CAP_LINE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 acm->ctrlsize = ctrlsize;
1160 acm->readsize = readsize;
Oliver Neukum86478942006-05-13 22:50:47 +02001161 acm->rx_buflimit = num_rx_buf;
David Kubicek61a87ad2005-11-01 18:51:34 +01001162 acm->urb_task.func = acm_rx_tasklet;
1163 acm->urb_task.data = (unsigned long) acm;
David Howellsc4028952006-11-22 14:57:56 +00001164 INIT_WORK(&acm->work, acm_softint);
David Brownelle5fbab52008-08-06 18:46:10 -07001165 init_waitqueue_head(&acm->drain_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 spin_lock_init(&acm->throttle_lock);
Oliver Neukum884b6002005-04-21 21:28:02 +02001167 spin_lock_init(&acm->write_lock);
David Kubicek61a87ad2005-11-01 18:51:34 +01001168 spin_lock_init(&acm->read_lock);
Oliver Neukum1365baf2007-10-12 17:24:28 +02001169 mutex_init(&acm->mutex);
David Kubicek61a87ad2005-11-01 18:51:34 +01001170 acm->rx_endpoint = usb_rcvbulkpipe(usb_dev, epread->bEndpointAddress);
Oliver Neukumcf7fdd52009-08-04 23:52:09 +02001171 acm->is_int_ep = usb_endpoint_xfer_int(epread);
1172 if (acm->is_int_ep)
1173 acm->bInterval = epread->bInterval;
Alan Cox739e0282009-06-11 12:27:50 +01001174 tty_port_init(&acm->port);
1175 acm->port.ops = &acm_port_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Daniel Mack997ea582010-04-12 13:17:25 +02001177 buf = usb_alloc_coherent(usb_dev, ctrlsize, GFP_KERNEL, &acm->ctrl_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 if (!buf) {
Joe Perches898eb712007-10-18 03:06:30 -07001179 dev_dbg(&intf->dev, "out of memory (ctrl buffer alloc)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 goto alloc_fail2;
1181 }
1182 acm->ctrl_buffer = buf;
1183
Oliver Neukum884b6002005-04-21 21:28:02 +02001184 if (acm_write_buffers_alloc(acm) < 0) {
Joe Perches898eb712007-10-18 03:06:30 -07001185 dev_dbg(&intf->dev, "out of memory (write buffer alloc)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 goto alloc_fail4;
1187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
1189 acm->ctrlurb = usb_alloc_urb(0, GFP_KERNEL);
1190 if (!acm->ctrlurb) {
Joe Perches898eb712007-10-18 03:06:30 -07001191 dev_dbg(&intf->dev, "out of memory (ctrlurb kmalloc)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 goto alloc_fail5;
1193 }
Oliver Neukum86478942006-05-13 22:50:47 +02001194 for (i = 0; i < num_rx_buf; i++) {
David Kubicek61a87ad2005-11-01 18:51:34 +01001195 struct acm_ru *rcv = &(acm->ru[i]);
1196
Alan Cox6e47e062009-06-11 12:37:06 +01001197 rcv->urb = usb_alloc_urb(0, GFP_KERNEL);
1198 if (rcv->urb == NULL) {
1199 dev_dbg(&intf->dev,
1200 "out of memory (read urbs usb_alloc_urb)\n");
Axel Linc2572b72010-05-31 08:04:47 +08001201 goto alloc_fail6;
David Kubicek61a87ad2005-11-01 18:51:34 +01001202 }
1203
1204 rcv->urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1205 rcv->instance = acm;
1206 }
Oliver Neukum86478942006-05-13 22:50:47 +02001207 for (i = 0; i < num_rx_buf; i++) {
David Brownell672c4e12008-08-06 18:41:12 -07001208 struct acm_rb *rb = &(acm->rb[i]);
David Kubicek61a87ad2005-11-01 18:51:34 +01001209
Daniel Mack997ea582010-04-12 13:17:25 +02001210 rb->base = usb_alloc_coherent(acm->dev, readsize,
David Brownell672c4e12008-08-06 18:41:12 -07001211 GFP_KERNEL, &rb->dma);
1212 if (!rb->base) {
Alan Cox6e47e062009-06-11 12:37:06 +01001213 dev_dbg(&intf->dev,
Daniel Mack997ea582010-04-12 13:17:25 +02001214 "out of memory (read bufs usb_alloc_coherent)\n");
David Kubicek61a87ad2005-11-01 18:51:34 +01001215 goto alloc_fail7;
1216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 }
Alan Cox6e47e062009-06-11 12:37:06 +01001218 for (i = 0; i < ACM_NW; i++) {
David Engrafe4cf3aa2008-03-20 10:01:34 +01001219 struct acm_wb *snd = &(acm->wb[i]);
1220
Alan Cox6e47e062009-06-11 12:37:06 +01001221 snd->urb = usb_alloc_urb(0, GFP_KERNEL);
1222 if (snd->urb == NULL) {
1223 dev_dbg(&intf->dev,
1224 "out of memory (write urbs usb_alloc_urb)");
Axel Linc2572b72010-05-31 08:04:47 +08001225 goto alloc_fail8;
David Engrafe4cf3aa2008-03-20 10:01:34 +01001226 }
1227
Arseniy Lartsev5186ffe2009-07-01 16:27:26 +04001228 if (usb_endpoint_xfer_int(epwrite))
1229 usb_fill_int_urb(snd->urb, usb_dev,
1230 usb_sndbulkpipe(usb_dev, epwrite->bEndpointAddress),
1231 NULL, acm->writesize, acm_write_bulk, snd, epwrite->bInterval);
1232 else
1233 usb_fill_bulk_urb(snd->urb, usb_dev,
1234 usb_sndbulkpipe(usb_dev, epwrite->bEndpointAddress),
1235 NULL, acm->writesize, acm_write_bulk, snd);
David Engrafe4cf3aa2008-03-20 10:01:34 +01001236 snd->urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1237 snd->instance = acm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 }
1239
Alan Cox6e47e062009-06-11 12:37:06 +01001240 usb_set_intfdata(intf, acm);
Oliver Neukumc4cabd22007-02-27 15:28:55 +01001241
1242 i = device_create_file(&intf->dev, &dev_attr_bmCapabilities);
1243 if (i < 0)
1244 goto alloc_fail8;
1245
1246 if (cfd) { /* export the country data */
1247 acm->country_codes = kmalloc(cfd->bLength - 4, GFP_KERNEL);
1248 if (!acm->country_codes)
1249 goto skip_countries;
1250 acm->country_code_size = cfd->bLength - 4;
Alan Cox6e47e062009-06-11 12:37:06 +01001251 memcpy(acm->country_codes, (u8 *)&cfd->wCountyCode0,
1252 cfd->bLength - 4);
Oliver Neukumc4cabd22007-02-27 15:28:55 +01001253 acm->country_rel_date = cfd->iCountryCodeRelDate;
1254
1255 i = device_create_file(&intf->dev, &dev_attr_wCountryCodes);
1256 if (i < 0) {
1257 kfree(acm->country_codes);
1258 goto skip_countries;
1259 }
1260
Alan Cox6e47e062009-06-11 12:37:06 +01001261 i = device_create_file(&intf->dev,
1262 &dev_attr_iCountryCodeRelDate);
Oliver Neukumc4cabd22007-02-27 15:28:55 +01001263 if (i < 0) {
Axel Linc2572b72010-05-31 08:04:47 +08001264 device_remove_file(&intf->dev, &dev_attr_wCountryCodes);
Oliver Neukumc4cabd22007-02-27 15:28:55 +01001265 kfree(acm->country_codes);
1266 goto skip_countries;
1267 }
1268 }
1269
1270skip_countries:
Alan Cox6e47e062009-06-11 12:37:06 +01001271 usb_fill_int_urb(acm->ctrlurb, usb_dev,
Oliver Neukuma2bfb4a2009-05-16 21:13:19 +02001272 usb_rcvintpipe(usb_dev, epctrl->bEndpointAddress),
1273 acm->ctrl_buffer, ctrlsize, acm_ctrl_irq, acm,
1274 /* works around buggy devices */
1275 epctrl->bInterval ? epctrl->bInterval : 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 acm->ctrlurb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1277 acm->ctrlurb->transfer_dma = acm->ctrl_dma;
1278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 dev_info(&intf->dev, "ttyACM%d: USB ACM device\n", minor);
1280
1281 acm_set_control(acm, acm->ctrlout);
1282
1283 acm->line.dwDTERate = cpu_to_le32(9600);
1284 acm->line.bDataBits = 8;
1285 acm_set_line(acm, &acm->line);
1286
1287 usb_driver_claim_interface(&acm_driver, data_interface, acm);
David Brownell672c4e12008-08-06 18:41:12 -07001288 usb_set_intfdata(data_interface, acm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
brian@murphy.dk83ef3442005-06-29 16:53:29 -07001290 usb_get_intf(control_interface);
1291 tty_register_device(acm_tty_driver, minor, &control_interface->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
1293 acm_table[minor] = acm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Oliver Neukumc4cabd22007-02-27 15:28:55 +01001295 return 0;
1296alloc_fail8:
David Engrafe4cf3aa2008-03-20 10:01:34 +01001297 for (i = 0; i < ACM_NW; i++)
1298 usb_free_urb(acm->wb[i].urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299alloc_fail7:
Oliver Neukum830f4022008-06-25 14:17:16 +02001300 acm_read_buffers_free(acm);
Axel Linc2572b72010-05-31 08:04:47 +08001301alloc_fail6:
Oliver Neukum86478942006-05-13 22:50:47 +02001302 for (i = 0; i < num_rx_buf; i++)
David Kubicek61a87ad2005-11-01 18:51:34 +01001303 usb_free_urb(acm->ru[i].urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 usb_free_urb(acm->ctrlurb);
1305alloc_fail5:
Oliver Neukum884b6002005-04-21 21:28:02 +02001306 acm_write_buffers_free(acm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307alloc_fail4:
Daniel Mack997ea582010-04-12 13:17:25 +02001308 usb_free_coherent(usb_dev, ctrlsize, acm->ctrl_buffer, acm->ctrl_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309alloc_fail2:
1310 kfree(acm);
1311alloc_fail:
1312 return -ENOMEM;
1313}
1314
Oliver Neukum1365baf2007-10-12 17:24:28 +02001315static void stop_data_traffic(struct acm *acm)
1316{
1317 int i;
Oliver Neukum11ea8592008-06-20 11:25:57 +02001318 dbg("Entering stop_data_traffic");
Oliver Neukum1365baf2007-10-12 17:24:28 +02001319
1320 tasklet_disable(&acm->urb_task);
1321
1322 usb_kill_urb(acm->ctrlurb);
Alan Cox6e47e062009-06-11 12:37:06 +01001323 for (i = 0; i < ACM_NW; i++)
David Engrafe4cf3aa2008-03-20 10:01:34 +01001324 usb_kill_urb(acm->wb[i].urb);
Oliver Neukum1365baf2007-10-12 17:24:28 +02001325 for (i = 0; i < acm->rx_buflimit; i++)
1326 usb_kill_urb(acm->ru[i].urb);
1327
Oliver Neukum1365baf2007-10-12 17:24:28 +02001328 tasklet_enable(&acm->urb_task);
1329
1330 cancel_work_sync(&acm->work);
1331}
1332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333static void acm_disconnect(struct usb_interface *intf)
1334{
Oliver Neukumc4cabd22007-02-27 15:28:55 +01001335 struct acm *acm = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 struct usb_device *usb_dev = interface_to_usbdev(intf);
Alan Cox10077d42009-06-11 12:36:09 +01001337 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
David Brownell672c4e12008-08-06 18:41:12 -07001339 /* sibling interface is already cleaning up */
1340 if (!acm)
Oliver Neukum86067eea2006-01-08 12:39:13 +01001341 return;
David Brownell672c4e12008-08-06 18:41:12 -07001342
1343 mutex_lock(&open_mutex);
Alan Cox6e47e062009-06-11 12:37:06 +01001344 if (acm->country_codes) {
Alan Stern74da5d62007-08-02 13:29:10 -04001345 device_remove_file(&acm->control->dev,
1346 &dev_attr_wCountryCodes);
1347 device_remove_file(&acm->control->dev,
1348 &dev_attr_iCountryCodeRelDate);
Oliver Neukumc4cabd22007-02-27 15:28:55 +01001349 }
Alan Stern74da5d62007-08-02 13:29:10 -04001350 device_remove_file(&acm->control->dev, &dev_attr_bmCapabilities);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 acm->dev = NULL;
Oliver Neukum86067eea2006-01-08 12:39:13 +01001352 usb_set_intfdata(acm->control, NULL);
1353 usb_set_intfdata(acm->data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Oliver Neukum1365baf2007-10-12 17:24:28 +02001355 stop_data_traffic(acm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Oliver Neukum884b6002005-04-21 21:28:02 +02001357 acm_write_buffers_free(acm);
Daniel Mack997ea582010-04-12 13:17:25 +02001358 usb_free_coherent(usb_dev, acm->ctrlsize, acm->ctrl_buffer,
1359 acm->ctrl_dma);
Oliver Neukum830f4022008-06-25 14:17:16 +02001360 acm_read_buffers_free(acm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
Oliver Neukuma2bfb4a2009-05-16 21:13:19 +02001362 if (!acm->combined_interfaces)
1363 usb_driver_release_interface(&acm_driver, intf == acm->control ?
Oliver Neukum830f4022008-06-25 14:17:16 +02001364 acm->data : acm->control);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
Alan Cox10077d42009-06-11 12:36:09 +01001366 if (acm->port.count == 0) {
brian@murphy.dk83ef3442005-06-29 16:53:29 -07001367 acm_tty_unregister(acm);
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01001368 mutex_unlock(&open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 return;
1370 }
1371
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01001372 mutex_unlock(&open_mutex);
Alan Cox10077d42009-06-11 12:36:09 +01001373 tty = tty_port_tty_get(&acm->port);
1374 if (tty) {
1375 tty_hangup(tty);
1376 tty_kref_put(tty);
1377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378}
1379
Oliver Neukum35758582008-07-01 19:10:08 +02001380#ifdef CONFIG_PM
Oliver Neukum1365baf2007-10-12 17:24:28 +02001381static int acm_suspend(struct usb_interface *intf, pm_message_t message)
1382{
1383 struct acm *acm = usb_get_intfdata(intf);
Oliver Neukum11ea8592008-06-20 11:25:57 +02001384 int cnt;
Oliver Neukum1365baf2007-10-12 17:24:28 +02001385
Alan Stern65bfd292008-11-25 16:39:18 -05001386 if (message.event & PM_EVENT_AUTO) {
Oliver Neukum11ea8592008-06-20 11:25:57 +02001387 int b;
1388
1389 spin_lock_irq(&acm->read_lock);
1390 spin_lock(&acm->write_lock);
1391 b = acm->processing + acm->transmitting;
1392 spin_unlock(&acm->write_lock);
1393 spin_unlock_irq(&acm->read_lock);
1394 if (b)
1395 return -EBUSY;
1396 }
1397
1398 spin_lock_irq(&acm->read_lock);
1399 spin_lock(&acm->write_lock);
1400 cnt = acm->susp_count++;
1401 spin_unlock(&acm->write_lock);
1402 spin_unlock_irq(&acm->read_lock);
1403
1404 if (cnt)
Oliver Neukum1365baf2007-10-12 17:24:28 +02001405 return 0;
1406 /*
1407 we treat opened interfaces differently,
1408 we must guard against open
1409 */
1410 mutex_lock(&acm->mutex);
1411
Alan Cox10077d42009-06-11 12:36:09 +01001412 if (acm->port.count)
Oliver Neukum1365baf2007-10-12 17:24:28 +02001413 stop_data_traffic(acm);
1414
1415 mutex_unlock(&acm->mutex);
1416 return 0;
1417}
1418
1419static int acm_resume(struct usb_interface *intf)
1420{
1421 struct acm *acm = usb_get_intfdata(intf);
Oliver Neukum97d35f92009-12-16 17:05:57 +01001422 struct acm_wb *wb;
Oliver Neukum1365baf2007-10-12 17:24:28 +02001423 int rv = 0;
Oliver Neukum11ea8592008-06-20 11:25:57 +02001424 int cnt;
Oliver Neukum1365baf2007-10-12 17:24:28 +02001425
Oliver Neukum11ea8592008-06-20 11:25:57 +02001426 spin_lock_irq(&acm->read_lock);
1427 acm->susp_count -= 1;
1428 cnt = acm->susp_count;
1429 spin_unlock_irq(&acm->read_lock);
1430
1431 if (cnt)
Oliver Neukum1365baf2007-10-12 17:24:28 +02001432 return 0;
1433
1434 mutex_lock(&acm->mutex);
Alan Cox10077d42009-06-11 12:36:09 +01001435 if (acm->port.count) {
Oliver Neukum1365baf2007-10-12 17:24:28 +02001436 rv = usb_submit_urb(acm->ctrlurb, GFP_NOIO);
Oliver Neukum97d35f92009-12-16 17:05:57 +01001437
1438 spin_lock_irq(&acm->write_lock);
1439 if (acm->delayed_wb) {
1440 wb = acm->delayed_wb;
1441 acm->delayed_wb = NULL;
1442 spin_unlock_irq(&acm->write_lock);
Oliver Neukumf0730922010-03-03 00:37:56 +01001443 acm_start_wb(acm, wb);
Oliver Neukum97d35f92009-12-16 17:05:57 +01001444 } else {
1445 spin_unlock_irq(&acm->write_lock);
1446 }
1447
1448 /*
1449 * delayed error checking because we must
1450 * do the write path at all cost
1451 */
Oliver Neukum1365baf2007-10-12 17:24:28 +02001452 if (rv < 0)
Oliver Neukum11ea8592008-06-20 11:25:57 +02001453 goto err_out;
Oliver Neukum1365baf2007-10-12 17:24:28 +02001454
1455 tasklet_schedule(&acm->urb_task);
1456 }
1457
1458err_out:
1459 mutex_unlock(&acm->mutex);
1460 return rv;
1461}
Oliver Neukum35758582008-07-01 19:10:08 +02001462
Francesco Lavraa91b0c52009-12-08 09:54:11 +01001463static int acm_reset_resume(struct usb_interface *intf)
1464{
1465 struct acm *acm = usb_get_intfdata(intf);
1466 struct tty_struct *tty;
1467
1468 mutex_lock(&acm->mutex);
1469 if (acm->port.count) {
1470 tty = tty_port_tty_get(&acm->port);
1471 if (tty) {
1472 tty_hangup(tty);
1473 tty_kref_put(tty);
1474 }
1475 }
1476 mutex_unlock(&acm->mutex);
1477 return acm_resume(intf);
1478}
1479
Oliver Neukum35758582008-07-01 19:10:08 +02001480#endif /* CONFIG_PM */
Adrian Taylorc1479a92009-11-19 10:35:33 +00001481
1482#define NOKIA_PCSUITE_ACM_INFO(x) \
1483 USB_DEVICE_AND_INTERFACE_INFO(0x0421, x, \
1484 USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM, \
1485 USB_CDC_ACM_PROTO_VENDOR)
1486
Toby Gray4035e452010-09-01 16:01:19 +01001487#define SAMSUNG_PCSUITE_ACM_INFO(x) \
1488 USB_DEVICE_AND_INTERFACE_INFO(0x04e7, x, \
1489 USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM, \
1490 USB_CDC_ACM_PROTO_VENDOR)
1491
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492/*
1493 * USB driver structure.
1494 */
1495
Németh Márton6ef48522010-01-10 15:33:45 +01001496static const struct usb_device_id acm_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 /* quirky and broken devices */
1498 { USB_DEVICE(0x0870, 0x0001), /* Metricom GS Modem */
1499 .driver_info = NO_UNION_NORMAL, /* has no union descriptor */
1500 },
Andrey Arapovb0e2a702007-07-04 17:11:42 +02001501 { USB_DEVICE(0x0e8d, 0x0003), /* FIREFLY, MediaTek Inc; andrey.arapov@gmail.com */
1502 .driver_info = NO_UNION_NORMAL, /* has no union descriptor */
1503 },
Andrew Lunn0f9c7b42008-12-23 17:31:23 +01001504 { USB_DEVICE(0x0e8d, 0x3329), /* MediaTek Inc GPS */
1505 .driver_info = NO_UNION_NORMAL, /* has no union descriptor */
1506 },
Masahito Omote8753e652005-07-29 12:17:25 -07001507 { USB_DEVICE(0x0482, 0x0203), /* KYOCERA AH-K3001V */
1508 .driver_info = NO_UNION_NORMAL, /* has no union descriptor */
1509 },
Chris Malley91a9c922006-10-03 10:08:28 +01001510 { USB_DEVICE(0x079b, 0x000f), /* BT On-Air USB MODEM */
1511 .driver_info = NO_UNION_NORMAL, /* has no union descriptor */
1512 },
Alan Cox7abcf202009-04-06 17:35:01 +01001513 { USB_DEVICE(0x0ace, 0x1602), /* ZyDAS 56K USB MODEM */
1514 .driver_info = SINGLE_RX_URB,
1515 },
Oliver Neukum86478942006-05-13 22:50:47 +02001516 { USB_DEVICE(0x0ace, 0x1608), /* ZyDAS 56K USB MODEM */
1517 .driver_info = SINGLE_RX_URB, /* firmware bug */
1518 },
Oliver Neukum3dd2ae82006-06-23 09:14:17 +02001519 { USB_DEVICE(0x0ace, 0x1611), /* ZyDAS 56K USB MODEM - new version */
1520 .driver_info = SINGLE_RX_URB, /* firmware bug */
1521 },
Oliver Neukum9be84562007-02-12 08:50:03 +01001522 { USB_DEVICE(0x22b8, 0x7000), /* Motorola Q Phone */
1523 .driver_info = NO_UNION_NORMAL, /* has no union descriptor */
1524 },
Iain McFarlane6149ed52008-05-04 00:13:49 +01001525 { USB_DEVICE(0x0803, 0x3095), /* Zoom Telephonics Model 3095F USB MODEM */
1526 .driver_info = NO_UNION_NORMAL, /* has no union descriptor */
1527 },
Eric Sandeenc8fd2c32008-08-14 08:25:40 -05001528 { USB_DEVICE(0x0572, 0x1321), /* Conexant USB MODEM CX93010 */
1529 .driver_info = NO_UNION_NORMAL, /* has no union descriptor */
1530 },
Alan Coxc89c60e2009-01-11 19:53:10 +00001531 { USB_DEVICE(0x0572, 0x1324), /* Conexant USB MODEM RD02-D400 */
1532 .driver_info = NO_UNION_NORMAL, /* has no union descriptor */
1533 },
Xiao Kaijiancab98a02009-05-08 00:48:23 +08001534 { USB_DEVICE(0x0572, 0x1328), /* Shiro / Aztech USB MODEM UM-3100 */
1535 .driver_info = NO_UNION_NORMAL, /* has no union descriptor */
1536 },
Dmitriy Taychenachev155df652009-02-25 12:36:51 +08001537 { USB_DEVICE(0x22b8, 0x6425), /* Motorola MOTOMAGX phones */
1538 },
Adam Richterc332b4e2009-02-18 16:17:15 -08001539 { USB_DEVICE(0x0572, 0x1329), /* Hummingbird huc56s (Conexant) */
1540 .driver_info = NO_UNION_NORMAL, /* union descriptor misplaced on
1541 data interface instead of
1542 communications interface.
1543 Maybe we should define a new
1544 quirk for this. */
1545 },
Kir Kolyshkin1f17c502009-05-28 20:33:58 +04001546 { USB_DEVICE(0x1bbb, 0x0003), /* Alcatel OT-I650 */
1547 .driver_info = NO_UNION_NORMAL, /* reports zero length descriptor */
1548 },
Russ Nelsonc3baa192010-04-21 23:07:03 -04001549 { USB_DEVICE(0x1576, 0x03b1), /* Maretron USB100 */
1550 .driver_info = NO_UNION_NORMAL, /* reports zero length descriptor */
1551 },
Oliver Neukum9be84562007-02-12 08:50:03 +01001552
Adrian Taylorc1479a92009-11-19 10:35:33 +00001553 /* Nokia S60 phones expose two ACM channels. The first is
1554 * a modem and is picked up by the standard AT-command
1555 * information below. The second is 'vendor-specific' but
1556 * is treated as a serial device at the S60 end, so we want
1557 * to expose it on Linux too. */
1558 { NOKIA_PCSUITE_ACM_INFO(0x042D), }, /* Nokia 3250 */
1559 { NOKIA_PCSUITE_ACM_INFO(0x04D8), }, /* Nokia 5500 Sport */
1560 { NOKIA_PCSUITE_ACM_INFO(0x04C9), }, /* Nokia E50 */
1561 { NOKIA_PCSUITE_ACM_INFO(0x0419), }, /* Nokia E60 */
1562 { NOKIA_PCSUITE_ACM_INFO(0x044D), }, /* Nokia E61 */
1563 { NOKIA_PCSUITE_ACM_INFO(0x0001), }, /* Nokia E61i */
1564 { NOKIA_PCSUITE_ACM_INFO(0x0475), }, /* Nokia E62 */
1565 { NOKIA_PCSUITE_ACM_INFO(0x0508), }, /* Nokia E65 */
1566 { NOKIA_PCSUITE_ACM_INFO(0x0418), }, /* Nokia E70 */
1567 { NOKIA_PCSUITE_ACM_INFO(0x0425), }, /* Nokia N71 */
1568 { NOKIA_PCSUITE_ACM_INFO(0x0486), }, /* Nokia N73 */
1569 { NOKIA_PCSUITE_ACM_INFO(0x04DF), }, /* Nokia N75 */
1570 { NOKIA_PCSUITE_ACM_INFO(0x000e), }, /* Nokia N77 */
1571 { NOKIA_PCSUITE_ACM_INFO(0x0445), }, /* Nokia N80 */
1572 { NOKIA_PCSUITE_ACM_INFO(0x042F), }, /* Nokia N91 & N91 8GB */
1573 { NOKIA_PCSUITE_ACM_INFO(0x048E), }, /* Nokia N92 */
1574 { NOKIA_PCSUITE_ACM_INFO(0x0420), }, /* Nokia N93 */
1575 { NOKIA_PCSUITE_ACM_INFO(0x04E6), }, /* Nokia N93i */
1576 { NOKIA_PCSUITE_ACM_INFO(0x04B2), }, /* Nokia 5700 XpressMusic */
1577 { NOKIA_PCSUITE_ACM_INFO(0x0134), }, /* Nokia 6110 Navigator (China) */
1578 { NOKIA_PCSUITE_ACM_INFO(0x046E), }, /* Nokia 6110 Navigator */
1579 { NOKIA_PCSUITE_ACM_INFO(0x002f), }, /* Nokia 6120 classic & */
1580 { NOKIA_PCSUITE_ACM_INFO(0x0088), }, /* Nokia 6121 classic */
1581 { NOKIA_PCSUITE_ACM_INFO(0x00fc), }, /* Nokia 6124 classic */
1582 { NOKIA_PCSUITE_ACM_INFO(0x0042), }, /* Nokia E51 */
1583 { NOKIA_PCSUITE_ACM_INFO(0x00b0), }, /* Nokia E66 */
1584 { NOKIA_PCSUITE_ACM_INFO(0x00ab), }, /* Nokia E71 */
1585 { NOKIA_PCSUITE_ACM_INFO(0x0481), }, /* Nokia N76 */
1586 { NOKIA_PCSUITE_ACM_INFO(0x0007), }, /* Nokia N81 & N81 8GB */
1587 { NOKIA_PCSUITE_ACM_INFO(0x0071), }, /* Nokia N82 */
1588 { NOKIA_PCSUITE_ACM_INFO(0x04F0), }, /* Nokia N95 & N95-3 NAM */
1589 { NOKIA_PCSUITE_ACM_INFO(0x0070), }, /* Nokia N95 8GB */
1590 { NOKIA_PCSUITE_ACM_INFO(0x00e9), }, /* Nokia 5320 XpressMusic */
1591 { NOKIA_PCSUITE_ACM_INFO(0x0099), }, /* Nokia 6210 Navigator, RM-367 */
1592 { NOKIA_PCSUITE_ACM_INFO(0x0128), }, /* Nokia 6210 Navigator, RM-419 */
1593 { NOKIA_PCSUITE_ACM_INFO(0x008f), }, /* Nokia 6220 Classic */
1594 { NOKIA_PCSUITE_ACM_INFO(0x00a0), }, /* Nokia 6650 */
1595 { NOKIA_PCSUITE_ACM_INFO(0x007b), }, /* Nokia N78 */
1596 { NOKIA_PCSUITE_ACM_INFO(0x0094), }, /* Nokia N85 */
1597 { NOKIA_PCSUITE_ACM_INFO(0x003a), }, /* Nokia N96 & N96-3 */
1598 { NOKIA_PCSUITE_ACM_INFO(0x00e9), }, /* Nokia 5320 XpressMusic */
1599 { NOKIA_PCSUITE_ACM_INFO(0x0108), }, /* Nokia 5320 XpressMusic 2G */
1600 { NOKIA_PCSUITE_ACM_INFO(0x01f5), }, /* Nokia N97, RM-505 */
Przemo Firszt83a4eae2010-06-28 21:29:34 +01001601 { NOKIA_PCSUITE_ACM_INFO(0x02e3), }, /* Nokia 5230, RM-588 */
Toby Gray4035e452010-09-01 16:01:19 +01001602 { NOKIA_PCSUITE_ACM_INFO(0x0178), }, /* Nokia E63 */
1603 { NOKIA_PCSUITE_ACM_INFO(0x010e), }, /* Nokia E75 */
1604 { NOKIA_PCSUITE_ACM_INFO(0x02d9), }, /* Nokia 6760 Slide */
1605 { NOKIA_PCSUITE_ACM_INFO(0x01d0), }, /* Nokia E52 */
1606 { NOKIA_PCSUITE_ACM_INFO(0x0223), }, /* Nokia E72 */
1607 { NOKIA_PCSUITE_ACM_INFO(0x0275), }, /* Nokia X6 */
1608 { NOKIA_PCSUITE_ACM_INFO(0x026c), }, /* Nokia N97 Mini */
1609 { NOKIA_PCSUITE_ACM_INFO(0x0154), }, /* Nokia 5800 XpressMusic */
1610 { NOKIA_PCSUITE_ACM_INFO(0x04ce), }, /* Nokia E90 */
1611 { NOKIA_PCSUITE_ACM_INFO(0x01d4), }, /* Nokia E55 */
Arvid Ephraim Picciani721d92f2011-01-25 15:58:40 +01001612 { NOKIA_PCSUITE_ACM_INFO(0x0302), }, /* Nokia N8 */
Toby Gray4035e452010-09-01 16:01:19 +01001613 { SAMSUNG_PCSUITE_ACM_INFO(0x6651), }, /* Samsung GTi8510 (INNOV8) */
Adrian Taylorc1479a92009-11-19 10:35:33 +00001614
1615 /* NOTE: non-Nokia COMM/ACM/0xff is likely MSFT RNDIS... NOT a modem! */
1616
Julian Calaby7c5d8c32010-01-05 23:57:46 +11001617 /* Support Lego NXT using pbLua firmware */
Julian Calabyce126642010-01-05 23:58:20 +11001618 { USB_DEVICE(0x0694, 0xff00),
1619 .driver_info = NOT_A_MODEM,
Otavio Salvador7893afc2010-09-26 23:35:05 -03001620 },
Julian Calaby7c5d8c32010-01-05 23:57:46 +11001621
Philippe Corbes5b239f02010-08-31 19:31:32 +02001622 /* control interfaces without any protocol set */
1623 { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM,
1624 USB_CDC_PROTO_NONE) },
1625
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 /* control interfaces with various AT-command sets */
1627 { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM,
1628 USB_CDC_ACM_PROTO_AT_V25TER) },
1629 { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM,
1630 USB_CDC_ACM_PROTO_AT_PCCA101) },
1631 { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM,
1632 USB_CDC_ACM_PROTO_AT_PCCA101_WAKE) },
1633 { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM,
1634 USB_CDC_ACM_PROTO_AT_GSM) },
1635 { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM,
Alan Cox6e47e062009-06-11 12:37:06 +01001636 USB_CDC_ACM_PROTO_AT_3G) },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM,
1638 USB_CDC_ACM_PROTO_AT_CDMA) },
1639
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 { }
1641};
1642
Alan Cox6e47e062009-06-11 12:37:06 +01001643MODULE_DEVICE_TABLE(usb, acm_ids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
1645static struct usb_driver acm_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 .name = "cdc_acm",
1647 .probe = acm_probe,
1648 .disconnect = acm_disconnect,
Oliver Neukum35758582008-07-01 19:10:08 +02001649#ifdef CONFIG_PM
Oliver Neukum1365baf2007-10-12 17:24:28 +02001650 .suspend = acm_suspend,
1651 .resume = acm_resume,
Francesco Lavraa91b0c52009-12-08 09:54:11 +01001652 .reset_resume = acm_reset_resume,
Oliver Neukum35758582008-07-01 19:10:08 +02001653#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 .id_table = acm_ids,
Oliver Neukum35758582008-07-01 19:10:08 +02001655#ifdef CONFIG_PM
Oliver Neukum1365baf2007-10-12 17:24:28 +02001656 .supports_autosuspend = 1,
Oliver Neukum35758582008-07-01 19:10:08 +02001657#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658};
1659
1660/*
1661 * TTY driver structures.
1662 */
1663
Jeff Dikeb68e31d2006-10-02 02:17:18 -07001664static const struct tty_operations acm_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 .open = acm_tty_open,
1666 .close = acm_tty_close,
Alan Cox10077d42009-06-11 12:36:09 +01001667 .hangup = acm_tty_hangup,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 .write = acm_tty_write,
1669 .write_room = acm_tty_write_room,
1670 .ioctl = acm_tty_ioctl,
1671 .throttle = acm_tty_throttle,
1672 .unthrottle = acm_tty_unthrottle,
1673 .chars_in_buffer = acm_tty_chars_in_buffer,
1674 .break_ctl = acm_tty_break_ctl,
1675 .set_termios = acm_tty_set_termios,
1676 .tiocmget = acm_tty_tiocmget,
1677 .tiocmset = acm_tty_tiocmset,
1678};
1679
1680/*
1681 * Init / exit.
1682 */
1683
1684static int __init acm_init(void)
1685{
1686 int retval;
1687 acm_tty_driver = alloc_tty_driver(ACM_TTY_MINORS);
1688 if (!acm_tty_driver)
1689 return -ENOMEM;
1690 acm_tty_driver->owner = THIS_MODULE,
1691 acm_tty_driver->driver_name = "acm",
1692 acm_tty_driver->name = "ttyACM",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 acm_tty_driver->major = ACM_TTY_MAJOR,
1694 acm_tty_driver->minor_start = 0,
1695 acm_tty_driver->type = TTY_DRIVER_TYPE_SERIAL,
1696 acm_tty_driver->subtype = SERIAL_TYPE_NORMAL,
Greg Kroah-Hartman331b8312005-06-20 21:15:16 -07001697 acm_tty_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 acm_tty_driver->init_termios = tty_std_termios;
Alan Cox6e47e062009-06-11 12:37:06 +01001699 acm_tty_driver->init_termios.c_cflag = B9600 | CS8 | CREAD |
1700 HUPCL | CLOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 tty_set_operations(acm_tty_driver, &acm_ops);
1702
1703 retval = tty_register_driver(acm_tty_driver);
1704 if (retval) {
1705 put_tty_driver(acm_tty_driver);
1706 return retval;
1707 }
1708
1709 retval = usb_register(&acm_driver);
1710 if (retval) {
1711 tty_unregister_driver(acm_tty_driver);
1712 put_tty_driver(acm_tty_driver);
1713 return retval;
1714 }
1715
Greg Kroah-Hartman5909f6e2008-08-18 13:21:04 -07001716 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
1717 DRIVER_DESC "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
1719 return 0;
1720}
1721
1722static void __exit acm_exit(void)
1723{
1724 usb_deregister(&acm_driver);
1725 tty_unregister_driver(acm_tty_driver);
1726 put_tty_driver(acm_tty_driver);
1727}
1728
1729module_init(acm_init);
1730module_exit(acm_exit);
1731
Alan Cox6e47e062009-06-11 12:37:06 +01001732MODULE_AUTHOR(DRIVER_AUTHOR);
1733MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734MODULE_LICENSE("GPL");
Scott James Remnante766aeb2009-04-06 17:33:18 +01001735MODULE_ALIAS_CHARDEV_MAJOR(ACM_TTY_MAJOR);