blob: 8a9352b2c26fd19f8ac0a1d254c979ff9c9ea221 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * USB Serial Converter driver
3 *
Greg Kroah-Hartman71863642012-05-15 15:40:00 -07004 * Copyright (C) 1999 - 2012 Greg Kroah-Hartman (greg@kroah.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Copyright (C) 2000 Peter Berger (pberger@brimson.com)
6 * Copyright (C) 2000 Al Borchers (borchers@steinerpoint.com)
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License version
10 * 2 as published by the Free Software Foundation.
11 *
Greg Kroah-Hartman502b95c2005-06-20 21:15:16 -070012 * This driver was originally based on the ACM driver by Armin Fuerst (which was
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * based on a driver by Brad Keryan)
14 *
Alan Coxa8d6f0a2008-07-22 11:12:24 +010015 * See Documentation/usb/usb-serial.txt for more information on using this
16 * driver
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 */
19
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -070020#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/kernel.h>
23#include <linux/errno.h>
24#include <linux/init.h>
25#include <linux/slab.h>
26#include <linux/tty.h>
27#include <linux/tty_driver.h>
28#include <linux/tty_flip.h>
29#include <linux/module.h>
30#include <linux/moduleparam.h>
Alexey Dobriyan6fd69d32009-03-31 15:19:21 -070031#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/spinlock.h>
Luiz Fernando Capitulino1ce7dd22006-03-24 17:12:31 -030033#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/list.h>
Alan Coxa8d6f0a2008-07-22 11:12:24 +010035#include <linux/uaccess.h>
Alan Coxc56d3002009-07-28 00:34:58 +010036#include <linux/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070038#include <linux/usb/serial.h>
David VomLehn8e8dce02009-08-28 12:54:27 -070039#include <linux/kfifo.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include "pl2303.h"
41
42/*
43 * Version Information
44 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#define DRIVER_AUTHOR "Greg Kroah-Hartman, greg@kroah.com, http://www.kroah.com/linux/"
46#define DRIVER_DESC "USB Serial Driver core"
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048/* There is no MODULE_DEVICE_TABLE for usbserial.c. Instead
49 the MODULE_DEVICE_TABLE declarations in each serial driver
50 cause the "hotplug" program to pull in whatever module is necessary
51 via modprobe, and modprobe will load usbserial because the serial
52 drivers depend on it.
53*/
54
Rusty Russell90ab5ee2012-01-13 09:32:20 +103055static bool debug;
Alan Coxa8d6f0a2008-07-22 11:12:24 +010056/* initially all NULL */
57static struct usb_serial *serial_table[SERIAL_TTY_MINORS];
Oliver Neukum3ddad822007-07-24 15:13:42 +020058static DEFINE_MUTEX(table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059static LIST_HEAD(usb_serial_driver_list);
60
Alan Stern8bc2c1b2009-09-01 11:38:59 -040061/*
62 * Look up the serial structure. If it is found and it hasn't been
63 * disconnected, return with its disc_mutex held and its refcount
64 * incremented. Otherwise return NULL.
65 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070066struct usb_serial *usb_serial_get_by_index(unsigned index)
67{
Oliver Neukum34ef50e2007-01-13 07:29:26 +010068 struct usb_serial *serial;
69
Oliver Neukum3ddad822007-07-24 15:13:42 +020070 mutex_lock(&table_lock);
Oliver Neukum34ef50e2007-01-13 07:29:26 +010071 serial = serial_table[index];
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Alan Stern8bc2c1b2009-09-01 11:38:59 -040073 if (serial) {
74 mutex_lock(&serial->disc_mutex);
75 if (serial->disconnected) {
76 mutex_unlock(&serial->disc_mutex);
77 serial = NULL;
78 } else {
79 kref_get(&serial->kref);
80 }
81 }
Oliver Neukum3ddad822007-07-24 15:13:42 +020082 mutex_unlock(&table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 return serial;
84}
85
Alan Coxa8d6f0a2008-07-22 11:12:24 +010086static struct usb_serial *get_free_serial(struct usb_serial *serial,
87 int num_ports, unsigned int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
89 unsigned int i, j;
90 int good_spot;
91
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -070092 dev_dbg(&serial->interface->dev, "%s %d\n", __func__, num_ports);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 *minor = 0;
Oliver Neukum3ddad822007-07-24 15:13:42 +020095 mutex_lock(&table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 for (i = 0; i < SERIAL_TTY_MINORS; ++i) {
97 if (serial_table[i])
98 continue;
99
100 good_spot = 1;
101 for (j = 1; j <= num_ports-1; ++j)
102 if ((i+j >= SERIAL_TTY_MINORS) || (serial_table[i+j])) {
103 good_spot = 0;
104 i += j;
105 break;
106 }
107 if (good_spot == 0)
108 continue;
109
110 *minor = i;
Oliver Neukuma1f721c2007-03-05 15:23:51 +0100111 j = 0;
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700112 dev_dbg(&serial->interface->dev, "%s - minor base = %d\n", __func__, *minor);
Oliver Neukuma1f721c2007-03-05 15:23:51 +0100113 for (i = *minor; (i < (*minor + num_ports)) && (i < SERIAL_TTY_MINORS); ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 serial_table[i] = serial;
Oliver Neukuma1f721c2007-03-05 15:23:51 +0100115 serial->port[j++]->number = i;
116 }
Oliver Neukum3ddad822007-07-24 15:13:42 +0200117 mutex_unlock(&table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 return serial;
119 }
Oliver Neukum3ddad822007-07-24 15:13:42 +0200120 mutex_unlock(&table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 return NULL;
122}
123
124static void return_serial(struct usb_serial *serial)
125{
126 int i;
127
Alan Stern8bc2c1b2009-09-01 11:38:59 -0400128 mutex_lock(&table_lock);
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100129 for (i = 0; i < serial->num_ports; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 serial_table[serial->minor + i] = NULL;
Alan Stern8bc2c1b2009-09-01 11:38:59 -0400131 mutex_unlock(&table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
134static void destroy_serial(struct kref *kref)
135{
136 struct usb_serial *serial;
137 struct usb_serial_port *port;
138 int i;
139
140 serial = to_usb_serial(kref);
141
Jim Radford521b85a2007-03-13 08:30:50 -0700142 /* return the minor range that this device had */
Alan Stern0282b7f2008-07-29 12:01:04 -0400143 if (serial->minor != SERIAL_TTY_NO_MINOR)
144 return_serial(serial);
Jim Radford521b85a2007-03-13 08:30:50 -0700145
Alan Sterna4720c62009-10-09 12:43:12 -0400146 if (serial->attached)
147 serial->type->release(serial);
Alan Sternf9c99bb2009-06-02 11:53:55 -0400148
Alan Stern41bd34d2009-09-01 11:38:34 -0400149 /* Now that nothing is using the ports, they can be freed */
150 for (i = 0; i < serial->num_port_pointers; ++i) {
Alan Sternf9c99bb2009-06-02 11:53:55 -0400151 port = serial->port[i];
Alan Stern41bd34d2009-09-01 11:38:34 -0400152 if (port) {
153 port->serial = NULL;
Alan Sternf9c99bb2009-06-02 11:53:55 -0400154 put_device(&port->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 }
156 }
157
158 usb_put_dev(serial->dev);
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100159 kfree(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
161
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +0200162void usb_serial_put(struct usb_serial *serial)
163{
164 kref_put(&serial->kref, destroy_serial);
165}
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167/*****************************************************************************
168 * Driver tty interface functions
169 *****************************************************************************/
Alan Sternf5b09532009-09-01 11:38:44 -0400170
171/**
172 * serial_install - install tty
173 * @driver: the driver (USB in our case)
174 * @tty: the tty being created
175 *
176 * Create the termios objects for this tty. We use the default
177 * USB serial settings but permit them to be overridden by
178 * serial->type->init_termios.
Alan Sterncc56cd02009-09-01 11:39:13 -0400179 *
180 * This is the first place a new tty gets used. Hence this is where we
181 * acquire references to the usb_serial structure and the driver module,
182 * where we store a pointer to the port, and where we do an autoresume.
Dave Youngf278a2f2009-09-27 16:00:42 +0000183 * All these actions are reversed in serial_cleanup().
Alan Sternf5b09532009-09-01 11:38:44 -0400184 */
185static int serial_install(struct tty_driver *driver, struct tty_struct *tty)
186{
187 int idx = tty->index;
188 struct usb_serial *serial;
Alan Sterncc56cd02009-09-01 11:39:13 -0400189 struct usb_serial_port *port;
190 int retval = -ENODEV;
191
192 serial = usb_serial_get_by_index(idx);
193 if (!serial)
194 return retval;
195
196 port = serial->port[idx - serial->minor];
197 if (!port)
198 goto error_no_port;
199 if (!try_module_get(serial->type->driver.owner))
200 goto error_module_get;
201
202 retval = usb_autopm_get_interface(serial->interface);
203 if (retval)
204 goto error_get_interface;
Alan Sternf5b09532009-09-01 11:38:44 -0400205
Jiri Slaby76f82a72012-01-30 21:14:29 +0100206 retval = tty_standard_install(driver, tty);
207 if (retval)
208 goto error_init_termios;
209
Alan Sterncc56cd02009-09-01 11:39:13 -0400210 mutex_unlock(&serial->disc_mutex);
211
Alan Stern7e29bb42009-09-01 11:39:22 -0400212 /* allow the driver to update the settings */
213 if (serial->type->init_termios)
214 serial->type->init_termios(tty);
215
Alan Sterncc56cd02009-09-01 11:39:13 -0400216 tty->driver_data = port;
217
Alan Sterncc56cd02009-09-01 11:39:13 -0400218 return retval;
219
Alan Stern7e29bb42009-09-01 11:39:22 -0400220 error_init_termios:
Jiri Slaby76f82a72012-01-30 21:14:29 +0100221 usb_autopm_put_interface(serial->interface);
222 error_get_interface:
Alan Sterncc56cd02009-09-01 11:39:13 -0400223 module_put(serial->type->driver.owner);
224 error_module_get:
225 error_no_port:
226 usb_serial_put(serial);
227 mutex_unlock(&serial->disc_mutex);
228 return retval;
Alan Sternf5b09532009-09-01 11:38:44 -0400229}
230
Alan Cox64bc3972009-10-06 16:06:11 +0100231static int serial_activate(struct tty_port *tport, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
Alan Cox64bc3972009-10-06 16:06:11 +0100233 struct usb_serial_port *port =
234 container_of(tport, struct usb_serial_port, port);
Alan Stern320348c2009-09-01 11:39:59 -0400235 struct usb_serial *serial = port->serial;
236 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Alan Cox64bc3972009-10-06 16:06:11 +0100238 mutex_lock(&serial->disc_mutex);
239 if (serial->disconnected)
240 retval = -ENODEV;
241 else
242 retval = port->serial->type->open(tty, port);
243 mutex_unlock(&serial->disc_mutex);
Johan Hovold3827d872011-11-10 17:38:13 +0100244
245 if (retval < 0)
246 retval = usb_translate_errors(retval);
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return retval;
249}
250
Alan Cox64bc3972009-10-06 16:06:11 +0100251static int serial_open(struct tty_struct *tty, struct file *filp)
252{
253 struct usb_serial_port *port = tty->driver_data;
254
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700255 dev_dbg(tty->dev, "%s - port %d\n", __func__, port->number);
Alan Cox64bc3972009-10-06 16:06:11 +0100256 return tty_port_open(&port->port, tty, filp);
257}
258
Alan Cox335f8512009-06-11 12:26:29 +0100259/**
Alan Stern74556122009-09-01 11:39:40 -0400260 * serial_down - shut down hardware
Alan Coxe1108a62009-10-06 16:06:36 +0100261 * @tport: tty port to shut down
Alan Cox335f8512009-06-11 12:26:29 +0100262 *
Alan Sternf5b09532009-09-01 11:38:44 -0400263 * Shut down a USB serial port unless it is the console. We never
Alan Coxe1108a62009-10-06 16:06:36 +0100264 * shut down the console hardware as it will always be in use. Serialized
265 * against activate by the tport mutex and kept to matching open/close pairs
266 * of calls by the ASYNCB_INITIALIZED flag.
Alan Cox335f8512009-06-11 12:26:29 +0100267 */
Alan Coxe1108a62009-10-06 16:06:36 +0100268static void serial_down(struct tty_port *tport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
Alan Coxe1108a62009-10-06 16:06:36 +0100270 struct usb_serial_port *port =
271 container_of(tport, struct usb_serial_port, port);
Alan Cox335f8512009-06-11 12:26:29 +0100272 struct usb_serial_driver *drv = port->serial->type;
Alan Sternf5b09532009-09-01 11:38:44 -0400273 /*
274 * The console is magical. Do not hang up the console hardware
275 * or there will be tears.
276 */
Jason Wesselbd5afa92010-03-08 21:50:12 -0600277 if (port->port.console)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 return;
Alan Cox335f8512009-06-11 12:26:29 +0100279 if (drv->close)
280 drv->close(port);
Alan Cox335f8512009-06-11 12:26:29 +0100281}
282
Alan Sternf5b09532009-09-01 11:38:44 -0400283static void serial_hangup(struct tty_struct *tty)
Alan Cox335f8512009-06-11 12:26:29 +0100284{
Alan Cox4455e342009-09-19 13:13:24 -0700285 struct usb_serial_port *port = tty->driver_data;
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700286
287 dev_dbg(tty->dev, "%s - port %d\n", __func__, port->number);
Alan Sternf5b09532009-09-01 11:38:44 -0400288 tty_port_hangup(&port->port);
Alan Cox335f8512009-06-11 12:26:29 +0100289}
290
291static void serial_close(struct tty_struct *tty, struct file *filp)
292{
293 struct usb_serial_port *port = tty->driver_data;
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700294
295 dev_dbg(tty->dev, "%s - port %d\n", __func__, port->number);
Alan Coxe1108a62009-10-06 16:06:36 +0100296 tty_port_close(&port->port, tty, filp);
Alan Cox335f8512009-06-11 12:26:29 +0100297}
298
Alan Sternf5b09532009-09-01 11:38:44 -0400299/**
Dave Youngf278a2f2009-09-27 16:00:42 +0000300 * serial_cleanup - free resources post close/hangup
Alan Sternf5b09532009-09-01 11:38:44 -0400301 * @port: port to free up
302 *
303 * Do the resource freeing and refcount dropping for the port.
304 * Avoid freeing the console.
305 *
Dave Youngf278a2f2009-09-27 16:00:42 +0000306 * Called asynchronously after the last tty kref is dropped,
307 * and the tty layer has already done the tty_shutdown(tty);
Alan Sternf5b09532009-09-01 11:38:44 -0400308 */
Dave Youngf278a2f2009-09-27 16:00:42 +0000309static void serial_cleanup(struct tty_struct *tty)
Alan Cox335f8512009-06-11 12:26:29 +0100310{
311 struct usb_serial_port *port = tty->driver_data;
Alan Sternf5b09532009-09-01 11:38:44 -0400312 struct usb_serial *serial;
313 struct module *owner;
314
315 /* The console is magical. Do not hang up the console hardware
316 * or there will be tears.
317 */
Jason Wesselbd5afa92010-03-08 21:50:12 -0600318 if (port->port.console)
Alan Sternf5b09532009-09-01 11:38:44 -0400319 return;
320
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700321 dev_dbg(tty->dev, "%s - port %d\n", __func__, port->number);
Alan Sternff8324d2009-09-01 11:39:51 -0400322
Alan Sterncc56cd02009-09-01 11:39:13 -0400323 tty->driver_data = NULL;
324
Alan Sternf5b09532009-09-01 11:38:44 -0400325 serial = port->serial;
326 owner = serial->type->driver.owner;
327
328 mutex_lock(&serial->disc_mutex);
329 if (!serial->disconnected)
330 usb_autopm_put_interface(serial->interface);
331 mutex_unlock(&serial->disc_mutex);
332
333 usb_serial_put(serial);
334 module_put(owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100337static int serial_write(struct tty_struct *tty, const unsigned char *buf,
338 int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200340 struct usb_serial_port *port = tty->driver_data;
Oliver Neukum3ff4fd92007-01-13 07:32:27 +0100341 int retval = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Alan Coxf34d7a52008-04-30 00:54:13 -0700343 if (port->serial->dev->state == USB_STATE_NOTATTACHED)
Luiz Fernando Capitulino487f9c62005-11-28 19:16:05 -0200344 goto exit;
345
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700346 dev_dbg(tty->dev, "%s - port %d, %d byte(s)\n", __func__,
347 port->number, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 /* pass on to the driver specific version of this function */
Alan Cox95da3102008-07-22 11:09:07 +0100350 retval = port->serial->type->write(tty, port, buf, count);
Johan Hovoldc6249ff2011-11-10 17:40:44 +0100351 if (retval < 0)
352 retval = usb_translate_errors(retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353exit:
354 return retval;
355}
356
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100357static int serial_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200359 struct usb_serial_port *port = tty->driver_data;
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700360
361 dev_dbg(tty->dev, "%s - port %d\n", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 /* pass on to the driver specific version of this function */
Alan Cox95da3102008-07-22 11:09:07 +0100363 return port->serial->type->write_room(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364}
365
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100366static int serial_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200368 struct usb_serial_port *port = tty->driver_data;
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700369
370 dev_dbg(tty->dev, "%s - port %d\n", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Alan Coxeff69372009-01-02 13:47:06 +0000372 /* if the device was unplugged then any remaining characters
373 fell out of the connector ;) */
374 if (port->serial->disconnected)
375 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 /* pass on to the driver specific version of this function */
Alan Cox95da3102008-07-22 11:09:07 +0100377 return port->serial->type->chars_in_buffer(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378}
379
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100380static void serial_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200382 struct usb_serial_port *port = tty->driver_data;
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700383
384 dev_dbg(tty->dev, "%s - port %d\n", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 /* pass on to the driver specific version of this function */
387 if (port->serial->type->throttle)
Alan Cox95da3102008-07-22 11:09:07 +0100388 port->serial->type->throttle(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389}
390
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100391static void serial_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200393 struct usb_serial_port *port = tty->driver_data;
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700394
395 dev_dbg(tty->dev, "%s - port %d\n", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 /* pass on to the driver specific version of this function */
398 if (port->serial->type->unthrottle)
Alan Cox95da3102008-07-22 11:09:07 +0100399 port->serial->type->unthrottle(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400}
401
Alan Cox6caa76b2011-02-14 16:27:22 +0000402static int serial_ioctl(struct tty_struct *tty,
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100403 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200405 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 int retval = -ENODEV;
407
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700408 dev_dbg(tty->dev, "%s - port %d, cmd 0x%.4x\n", __func__,
409 port->number, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100411 /* pass on to the driver specific version of this function
412 if it is available */
Alan Coxf34d7a52008-04-30 00:54:13 -0700413 if (port->serial->type->ioctl) {
Alan Cox00a0d0d2011-02-14 16:27:06 +0000414 retval = port->serial->type->ioctl(tty, cmd, arg);
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100415 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 retval = -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 return retval;
418}
419
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100420static void serial_set_termios(struct tty_struct *tty, struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200422 struct usb_serial_port *port = tty->driver_data;
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700423
424 dev_dbg(tty->dev, "%s - port %d\n", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100426 /* pass on to the driver specific version of this function
427 if it is available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (port->serial->type->set_termios)
Alan Cox95da3102008-07-22 11:09:07 +0100429 port->serial->type->set_termios(tty, port, old);
Alan Cox33785092007-10-18 01:24:22 -0700430 else
431 tty_termios_copy_hw(tty->termios, old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
Alan Cox9e989662008-07-22 11:18:03 +0100434static int serial_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200436 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700438 dev_dbg(tty->dev, "%s - port %d\n", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100440 /* pass on to the driver specific version of this function
441 if it is available */
Alan Cox6b447f042009-01-02 13:48:56 +0000442 if (port->serial->type->break_ctl)
Alan Cox95da3102008-07-22 11:09:07 +0100443 port->serial->type->break_ctl(tty, break_state);
Alan Cox9e989662008-07-22 11:18:03 +0100444 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
Alexey Dobriyan6fd69d32009-03-31 15:19:21 -0700447static int serial_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
449 struct usb_serial *serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 char tmp[40];
452
Alexey Dobriyan6fd69d32009-03-31 15:19:21 -0700453 seq_puts(m, "usbserinfo:1.0 driver:2.0\n");
454 for (i = 0; i < SERIAL_TTY_MINORS; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 serial = usb_serial_get_by_index(i);
456 if (serial == NULL)
457 continue;
458
Alexey Dobriyan6fd69d32009-03-31 15:19:21 -0700459 seq_printf(m, "%d:", i);
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700460 if (serial->type->driver.owner)
Alexey Dobriyan6fd69d32009-03-31 15:19:21 -0700461 seq_printf(m, " module:%s",
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100462 module_name(serial->type->driver.owner));
Alexey Dobriyan6fd69d32009-03-31 15:19:21 -0700463 seq_printf(m, " name:\"%s\"",
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100464 serial->type->description);
Alexey Dobriyan6fd69d32009-03-31 15:19:21 -0700465 seq_printf(m, " vendor:%04x product:%04x",
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100466 le16_to_cpu(serial->dev->descriptor.idVendor),
467 le16_to_cpu(serial->dev->descriptor.idProduct));
Alexey Dobriyan6fd69d32009-03-31 15:19:21 -0700468 seq_printf(m, " num_ports:%d", serial->num_ports);
469 seq_printf(m, " port:%d", i - serial->minor + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 usb_make_path(serial->dev, tmp, sizeof(tmp));
Alexey Dobriyan6fd69d32009-03-31 15:19:21 -0700471 seq_printf(m, " path:%s", tmp);
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100472
Alexey Dobriyan6fd69d32009-03-31 15:19:21 -0700473 seq_putc(m, '\n');
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +0200474 usb_serial_put(serial);
Alan Stern8bc2c1b2009-09-01 11:38:59 -0400475 mutex_unlock(&serial->disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 }
Alexey Dobriyan6fd69d32009-03-31 15:19:21 -0700477 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
479
Alexey Dobriyan6fd69d32009-03-31 15:19:21 -0700480static int serial_proc_open(struct inode *inode, struct file *file)
481{
482 return single_open(file, serial_proc_show, NULL);
483}
484
485static const struct file_operations serial_proc_fops = {
486 .owner = THIS_MODULE,
487 .open = serial_proc_open,
488 .read = seq_read,
489 .llseek = seq_lseek,
490 .release = single_release,
491};
492
Alan Cox60b33c12011-02-14 16:26:14 +0000493static int serial_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200495 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700497 dev_dbg(tty->dev, "%s - port %d\n", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 if (port->serial->type->tiocmget)
Alan Cox60b33c12011-02-14 16:26:14 +0000500 return port->serial->type->tiocmget(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return -EINVAL;
502}
503
Alan Cox20b9d172011-02-14 16:26:50 +0000504static int serial_tiocmset(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 unsigned int set, unsigned int clear)
506{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200507 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700509 dev_dbg(tty->dev, "%s - port %d\n", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 if (port->serial->type->tiocmset)
Alan Cox20b9d172011-02-14 16:26:50 +0000512 return port->serial->type->tiocmset(tty, set, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 return -EINVAL;
514}
515
Alan Coxd281da72010-09-16 18:21:24 +0100516static int serial_get_icount(struct tty_struct *tty,
517 struct serial_icounter_struct *icount)
518{
519 struct usb_serial_port *port = tty->driver_data;
520
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700521 dev_dbg(tty->dev, "%s - port %d\n", __func__, port->number);
Alan Coxd281da72010-09-16 18:21:24 +0100522
523 if (port->serial->type->get_icount)
524 return port->serial->type->get_icount(tty, icount);
525 return -EINVAL;
526}
527
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700528/*
529 * We would be calling tty_wakeup here, but unfortunately some line
530 * disciplines have an annoying habit of calling tty->write from
531 * the write wakeup callback (e.g. n_hdlc.c).
532 */
533void usb_serial_port_softint(struct usb_serial_port *port)
534{
535 schedule_work(&port->work);
536}
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100537EXPORT_SYMBOL_GPL(usb_serial_port_softint);
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700538
David Howellsc4028952006-11-22 14:57:56 +0000539static void usb_serial_port_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
David Howellsc4028952006-11-22 14:57:56 +0000541 struct usb_serial_port *port =
542 container_of(work, struct usb_serial_port, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 struct tty_struct *tty;
544
Alan Cox4a90f092008-10-13 10:39:46 +0100545 tty = tty_port_tty_get(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 if (!tty)
547 return;
548
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700549 dev_dbg(tty->dev, "%s - port %d\n", __func__, port->number);
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 tty_wakeup(tty);
Alan Cox4a90f092008-10-13 10:39:46 +0100552 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
554
Oliver Neukum34ef50e2007-01-13 07:29:26 +0100555static void kill_traffic(struct usb_serial_port *port)
Pete Zaitcev34f8e762006-06-21 15:00:45 -0700556{
Johan Hovold27c7acf2010-05-05 23:57:37 +0200557 int i;
558
Johan Hovoldd83b4052011-11-06 19:06:37 +0100559 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i)
560 usb_kill_urb(port->read_urbs[i]);
Johan Hovold27c7acf2010-05-05 23:57:37 +0200561 for (i = 0; i < ARRAY_SIZE(port->write_urbs); ++i)
562 usb_kill_urb(port->write_urbs[i]);
Oliver Neukum5adceac2007-08-17 14:01:38 +0200563 /*
564 * This is tricky.
565 * Some drivers submit the read_urb in the
566 * handler for the write_urb or vice versa
567 * this order determines the order in which
568 * usb_kill_urb() must be used to reliably
569 * kill the URBs. As it is unknown here,
570 * both orders must be used in turn.
571 * The call below is not redundant.
572 */
573 usb_kill_urb(port->read_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 usb_kill_urb(port->interrupt_in_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 usb_kill_urb(port->interrupt_out_urb);
Oliver Neukum34ef50e2007-01-13 07:29:26 +0100576}
577
Alan Stern41bd34d2009-09-01 11:38:34 -0400578static void port_release(struct device *dev)
Oliver Neukum34ef50e2007-01-13 07:29:26 +0100579{
Alan Stern41bd34d2009-09-01 11:38:34 -0400580 struct usb_serial_port *port = to_usb_serial_port(dev);
Johan Hovold27c7acf2010-05-05 23:57:37 +0200581 int i;
Alan Stern41bd34d2009-09-01 11:38:34 -0400582
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700583 dev_dbg(dev, "%s\n", __func__);
Alan Stern41bd34d2009-09-01 11:38:34 -0400584
Alan Stern2d931482009-04-14 11:31:02 -0400585 /*
586 * Stop all the traffic before cancelling the work, so that
587 * nobody will restart it by calling usb_serial_port_softint.
588 */
Oliver Neukum34ef50e2007-01-13 07:29:26 +0100589 kill_traffic(port);
Alan Stern2d931482009-04-14 11:31:02 -0400590 cancel_work_sync(&port->work);
591
Oliver Neukum34ef50e2007-01-13 07:29:26 +0100592 usb_free_urb(port->interrupt_in_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 usb_free_urb(port->interrupt_out_urb);
Johan Hovoldd83b4052011-11-06 19:06:37 +0100594 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i) {
595 usb_free_urb(port->read_urbs[i]);
596 kfree(port->bulk_in_buffers[i]);
597 }
Johan Hovold27c7acf2010-05-05 23:57:37 +0200598 for (i = 0; i < ARRAY_SIZE(port->write_urbs); ++i) {
599 usb_free_urb(port->write_urbs[i]);
600 kfree(port->bulk_out_buffers[i]);
601 }
Stefani Seibold119eecc2009-12-23 09:10:48 +0100602 kfifo_free(&port->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 kfree(port->interrupt_in_buffer);
604 kfree(port->interrupt_out_buffer);
605 kfree(port);
606}
607
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100608static struct usb_serial *create_serial(struct usb_device *dev,
609 struct usb_interface *interface,
610 struct usb_serial_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
612 struct usb_serial *serial;
613
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100614 serial = kzalloc(sizeof(*serial), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 if (!serial) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800616 dev_err(&dev->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 return NULL;
618 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 serial->dev = usb_get_dev(dev);
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700620 serial->type = driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 serial->interface = interface;
622 kref_init(&serial->kref);
Oliver Neukuma1cd7e92008-01-16 17:18:52 +0100623 mutex_init(&serial->disc_mutex);
Alan Stern0282b7f2008-07-29 12:01:04 -0400624 serial->minor = SERIAL_TTY_NO_MINOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 return serial;
627}
628
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +0100629static const struct usb_device_id *match_dynamic_id(struct usb_interface *intf,
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100630 struct usb_serial_driver *drv)
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +0100631{
632 struct usb_dynid *dynid;
633
634 spin_lock(&drv->dynids.lock);
635 list_for_each_entry(dynid, &drv->dynids.list, node) {
636 if (usb_match_one_id(intf, &dynid->id)) {
637 spin_unlock(&drv->dynids.lock);
638 return &dynid->id;
639 }
640 }
641 spin_unlock(&drv->dynids.lock);
642 return NULL;
643}
644
645static const struct usb_device_id *get_iface_id(struct usb_serial_driver *drv,
646 struct usb_interface *intf)
647{
648 const struct usb_device_id *id;
649
650 id = usb_match_id(intf, drv->id_table);
651 if (id) {
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700652 dev_dbg(&intf->dev, "static descriptor matches\n");
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +0100653 goto exit;
654 }
655 id = match_dynamic_id(intf, drv);
656 if (id)
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700657 dev_dbg(&intf->dev, "dynamic descriptor matches\n");
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +0100658exit:
659 return id;
660}
661
Andi Kleen0daeed32010-06-01 23:04:42 +0200662/* Caller must hold table_lock */
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100663static struct usb_serial_driver *search_serial_device(
664 struct usb_interface *iface)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
Bjørn Mork954c3f82012-05-30 10:00:14 +0200666 const struct usb_device_id *id = NULL;
Alan Stern063a2da2007-10-10 16:24:06 -0400667 struct usb_serial_driver *drv;
Bjørn Mork954c3f82012-05-30 10:00:14 +0200668 struct usb_driver *driver = to_usb_driver(iface->dev.driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Adrian Bunk93b1fae2006-01-10 00:13:33 +0100670 /* Check if the usb id matches a known device */
Alan Stern063a2da2007-10-10 16:24:06 -0400671 list_for_each_entry(drv, &usb_serial_driver_list, driver_list) {
Bjørn Mork954c3f82012-05-30 10:00:14 +0200672 if (drv->usb_driver == driver)
673 id = get_iface_id(drv, iface);
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +0100674 if (id)
Alan Stern063a2da2007-10-10 16:24:06 -0400675 return drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 }
677
678 return NULL;
679}
680
Alan Cox335f8512009-06-11 12:26:29 +0100681static int serial_carrier_raised(struct tty_port *port)
682{
683 struct usb_serial_port *p = container_of(port, struct usb_serial_port, port);
684 struct usb_serial_driver *drv = p->serial->type;
Johan Hovold3e1f4902011-11-10 17:40:43 +0100685
Alan Cox335f8512009-06-11 12:26:29 +0100686 if (drv->carrier_raised)
687 return drv->carrier_raised(p);
688 /* No carrier control - don't block */
Johan Hovold3e1f4902011-11-10 17:40:43 +0100689 return 1;
Alan Cox335f8512009-06-11 12:26:29 +0100690}
691
692static void serial_dtr_rts(struct tty_port *port, int on)
693{
694 struct usb_serial_port *p = container_of(port, struct usb_serial_port, port);
695 struct usb_serial_driver *drv = p->serial->type;
Johan Hovold3e1f4902011-11-10 17:40:43 +0100696
Alan Cox335f8512009-06-11 12:26:29 +0100697 if (drv->dtr_rts)
698 drv->dtr_rts(p, on);
699}
700
701static const struct tty_port_operations serial_port_ops = {
702 .carrier_raised = serial_carrier_raised,
703 .dtr_rts = serial_dtr_rts,
Alan Cox64bc3972009-10-06 16:06:11 +0100704 .activate = serial_activate,
Alan Coxe1108a62009-10-06 16:06:36 +0100705 .shutdown = serial_down,
Alan Cox335f8512009-06-11 12:26:29 +0100706};
707
Greg Kroah-Hartman2edd2842012-05-07 14:46:48 -0700708static int usb_serial_probe(struct usb_interface *interface,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 const struct usb_device_id *id)
710{
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700711 struct device *ddev = &interface->dev;
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100712 struct usb_device *dev = interface_to_usbdev(interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 struct usb_serial *serial = NULL;
714 struct usb_serial_port *port;
715 struct usb_host_interface *iface_desc;
716 struct usb_endpoint_descriptor *endpoint;
717 struct usb_endpoint_descriptor *interrupt_in_endpoint[MAX_NUM_PORTS];
718 struct usb_endpoint_descriptor *interrupt_out_endpoint[MAX_NUM_PORTS];
719 struct usb_endpoint_descriptor *bulk_in_endpoint[MAX_NUM_PORTS];
720 struct usb_endpoint_descriptor *bulk_out_endpoint[MAX_NUM_PORTS];
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700721 struct usb_serial_driver *type = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 int retval;
Andre Hauptdd9ca5d2008-06-18 15:56:00 +0200723 unsigned int minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 int buffer_size;
725 int i;
Johan Hovoldd83b4052011-11-06 19:06:37 +0100726 int j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 int num_interrupt_in = 0;
728 int num_interrupt_out = 0;
729 int num_bulk_in = 0;
730 int num_bulk_out = 0;
731 int num_ports = 0;
732 int max_endpoints;
733
Andi Kleen0daeed32010-06-01 23:04:42 +0200734 mutex_lock(&table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 type = search_serial_device(interface);
736 if (!type) {
Andi Kleen0daeed32010-06-01 23:04:42 +0200737 mutex_unlock(&table_lock);
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700738 dev_dbg(ddev, "none matched\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 return -ENODEV;
740 }
741
Andi Kleen0daeed32010-06-01 23:04:42 +0200742 if (!try_module_get(type->driver.owner)) {
743 mutex_unlock(&table_lock);
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700744 dev_err(ddev, "module get failed, exiting\n");
Andi Kleen0daeed32010-06-01 23:04:42 +0200745 return -EIO;
746 }
747 mutex_unlock(&table_lock);
748
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100749 serial = create_serial(dev, interface, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 if (!serial) {
Ming Leid92a3ca2010-08-07 16:20:35 +0800751 module_put(type->driver.owner);
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700752 dev_err(ddev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 return -ENOMEM;
754 }
755
756 /* if this device type has a probe function, call it */
757 if (type->probe) {
758 const struct usb_device_id *id;
759
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +0100760 id = get_iface_id(type, interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 retval = type->probe(serial, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
763 if (retval) {
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700764 dev_dbg(ddev, "sub driver rejected device\n");
Jan Safrata0658a332012-05-22 14:04:50 +0200765 usb_serial_put(serial);
Ming Leid92a3ca2010-08-07 16:20:35 +0800766 module_put(type->driver.owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 return retval;
768 }
769 }
770
771 /* descriptor matches, let's find the endpoints needed */
772 /* check out the endpoints */
773 iface_desc = interface->cur_altsetting;
774 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
775 endpoint = &iface_desc->endpoint[i].desc;
Luiz Fernando N. Capitulino4fa1bbf2006-09-27 11:58:53 -0700776
777 if (usb_endpoint_is_bulk_in(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 /* we found a bulk in endpoint */
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700779 dev_dbg(ddev, "found bulk in on endpoint %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 bulk_in_endpoint[num_bulk_in] = endpoint;
781 ++num_bulk_in;
782 }
783
Luiz Fernando N. Capitulino4fa1bbf2006-09-27 11:58:53 -0700784 if (usb_endpoint_is_bulk_out(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 /* we found a bulk out endpoint */
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700786 dev_dbg(ddev, "found bulk out on endpoint %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 bulk_out_endpoint[num_bulk_out] = endpoint;
788 ++num_bulk_out;
789 }
Luiz Fernando N. Capitulino4fa1bbf2006-09-27 11:58:53 -0700790
791 if (usb_endpoint_is_int_in(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 /* we found a interrupt in endpoint */
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700793 dev_dbg(ddev, "found interrupt in on endpoint %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 interrupt_in_endpoint[num_interrupt_in] = endpoint;
795 ++num_interrupt_in;
796 }
797
Luiz Fernando N. Capitulino4fa1bbf2006-09-27 11:58:53 -0700798 if (usb_endpoint_is_int_out(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 /* we found an interrupt out endpoint */
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700800 dev_dbg(ddev, "found interrupt out on endpoint %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 interrupt_out_endpoint[num_interrupt_out] = endpoint;
802 ++num_interrupt_out;
803 }
804 }
805
806#if defined(CONFIG_USB_SERIAL_PL2303) || defined(CONFIG_USB_SERIAL_PL2303_MODULE)
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100807 /* BEGIN HORRIBLE HACK FOR PL2303 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 /* this is needed due to the looney way its endpoints are set up */
809 if (((le16_to_cpu(dev->descriptor.idVendor) == PL2303_VENDOR_ID) &&
810 (le16_to_cpu(dev->descriptor.idProduct) == PL2303_PRODUCT_ID)) ||
811 ((le16_to_cpu(dev->descriptor.idVendor) == ATEN_VENDOR_ID) &&
Johannes Steingraeber8fd80132006-09-16 16:17:34 +0200812 (le16_to_cpu(dev->descriptor.idProduct) == ATEN_PRODUCT_ID)) ||
813 ((le16_to_cpu(dev->descriptor.idVendor) == ALCOR_VENDOR_ID) &&
Andreas Bombece816cf2008-09-14 01:58:55 +0200814 (le16_to_cpu(dev->descriptor.idProduct) == ALCOR_PRODUCT_ID)) ||
815 ((le16_to_cpu(dev->descriptor.idVendor) == SIEMENS_VENDOR_ID) &&
816 (le16_to_cpu(dev->descriptor.idProduct) == SIEMENS_PRODUCT_ID_EF81))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 if (interface != dev->actconfig->interface[0]) {
818 /* check out the endpoints of the other interface*/
819 iface_desc = dev->actconfig->interface[0]->cur_altsetting;
820 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
821 endpoint = &iface_desc->endpoint[i].desc;
Luiz Fernando N. Capitulino4fa1bbf2006-09-27 11:58:53 -0700822 if (usb_endpoint_is_int_in(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 /* we found a interrupt in endpoint */
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700824 dev_dbg(ddev, "found interrupt in for Prolific device on separate interface\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 interrupt_in_endpoint[num_interrupt_in] = endpoint;
826 ++num_interrupt_in;
827 }
828 }
829 }
830
831 /* Now make sure the PL-2303 is configured correctly.
832 * If not, give up now and hope this hack will work
833 * properly during a later invocation of usb_serial_probe
834 */
835 if (num_bulk_in == 0 || num_bulk_out == 0) {
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700836 dev_info(ddev, "PL-2303 hack: descriptors matched but endpoints did not\n");
Jan Safrata0658a332012-05-22 14:04:50 +0200837 usb_serial_put(serial);
Ming Leid92a3ca2010-08-07 16:20:35 +0800838 module_put(type->driver.owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 return -ENODEV;
840 }
841 }
842 /* END HORRIBLE HACK FOR PL2303 */
843#endif
844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845#ifdef CONFIG_USB_SERIAL_GENERIC
846 if (type == &usb_serial_generic_device) {
847 num_ports = num_bulk_out;
848 if (num_ports == 0) {
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700849 dev_err(ddev, "Generic device with no bulk out, not allowed.\n");
Jan Safrata0658a332012-05-22 14:04:50 +0200850 usb_serial_put(serial);
Ming Leid92a3ca2010-08-07 16:20:35 +0800851 module_put(type->driver.owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 return -EIO;
853 }
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700854 dev_info(ddev, "The \"generic\" usb-serial driver is only for testing and one-off prototypes.\n");
855 dev_info(ddev, "Tell linux-usb@vger.kernel.org to add your device to a proper driver.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 }
857#endif
858 if (!num_ports) {
859 /* if this device type has a calc_num_ports function, call it */
Ming Leid92a3ca2010-08-07 16:20:35 +0800860 if (type->calc_num_ports)
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100861 num_ports = type->calc_num_ports(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 if (!num_ports)
863 num_ports = type->num_ports;
864 }
865
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 serial->num_ports = num_ports;
867 serial->num_bulk_in = num_bulk_in;
868 serial->num_bulk_out = num_bulk_out;
869 serial->num_interrupt_in = num_interrupt_in;
870 serial->num_interrupt_out = num_interrupt_out;
871
Alan Stern063a2da2007-10-10 16:24:06 -0400872 /* found all that we need */
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700873 dev_info(ddev, "%s converter detected\n", type->description);
Alan Stern063a2da2007-10-10 16:24:06 -0400874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 /* create our ports, we need as many as the max endpoints */
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100876 /* we don't use num_ports here because some devices have more
877 endpoint pairs than ports */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 max_endpoints = max(num_bulk_in, num_bulk_out);
879 max_endpoints = max(max_endpoints, num_interrupt_in);
880 max_endpoints = max(max_endpoints, num_interrupt_out);
881 max_endpoints = max(max_endpoints, (int)serial->num_ports);
882 serial->num_port_pointers = max_endpoints;
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100883
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700884 dev_dbg(ddev, "setting up %d port structures for this device", max_endpoints);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 for (i = 0; i < max_endpoints; ++i) {
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100886 port = kzalloc(sizeof(struct usb_serial_port), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 if (!port)
888 goto probe_error;
Alan Cox4a90f092008-10-13 10:39:46 +0100889 tty_port_init(&port->port);
Alan Cox335f8512009-06-11 12:26:29 +0100890 port->port.ops = &serial_port_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 port->serial = serial;
Greg Kroah-Hartman507ca9b2005-04-23 12:49:16 -0700892 spin_lock_init(&port->lock);
Alan Coxe1108a62009-10-06 16:06:36 +0100893 /* Keep this for private driver use for the moment but
894 should probably go away */
David Howellsc4028952006-11-22 14:57:56 +0000895 INIT_WORK(&port->work, usb_serial_port_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 serial->port[i] = port;
Alan Stern41bd34d2009-09-01 11:38:34 -0400897 port->dev.parent = &interface->dev;
898 port->dev.driver = NULL;
899 port->dev.bus = &usb_serial_bus_type;
900 port->dev.release = &port_release;
901 device_initialize(&port->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 }
903
904 /* set up the endpoint information */
905 for (i = 0; i < num_bulk_in; ++i) {
906 endpoint = bulk_in_endpoint[i];
907 port = serial->port[i];
Alan Stern969e3032011-02-23 15:28:18 -0500908 buffer_size = max_t(int, serial->type->bulk_in_size,
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700909 usb_endpoint_maxp(endpoint));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 port->bulk_in_size = buffer_size;
911 port->bulk_in_endpointAddress = endpoint->bEndpointAddress;
Johan Hovoldd83b4052011-11-06 19:06:37 +0100912
913 for (j = 0; j < ARRAY_SIZE(port->read_urbs); ++j) {
914 set_bit(j, &port->read_urbs_free);
915 port->read_urbs[j] = usb_alloc_urb(0, GFP_KERNEL);
916 if (!port->read_urbs[j]) {
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700917 dev_err(ddev, "No free urbs available\n");
Johan Hovoldd83b4052011-11-06 19:06:37 +0100918 goto probe_error;
919 }
920 port->bulk_in_buffers[j] = kmalloc(buffer_size,
921 GFP_KERNEL);
922 if (!port->bulk_in_buffers[j]) {
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700923 dev_err(ddev, "Couldn't allocate bulk_in_buffer\n");
Johan Hovoldd83b4052011-11-06 19:06:37 +0100924 goto probe_error;
925 }
926 usb_fill_bulk_urb(port->read_urbs[j], dev,
927 usb_rcvbulkpipe(dev,
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100928 endpoint->bEndpointAddress),
Johan Hovoldd83b4052011-11-06 19:06:37 +0100929 port->bulk_in_buffers[j], buffer_size,
930 serial->type->read_bulk_callback,
931 port);
932 }
933
934 port->read_urb = port->read_urbs[0];
935 port->bulk_in_buffer = port->bulk_in_buffers[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
937
938 for (i = 0; i < num_bulk_out; ++i) {
939 endpoint = bulk_out_endpoint[i];
940 port = serial->port[i];
Stefani Seibold119eecc2009-12-23 09:10:48 +0100941 if (kfifo_alloc(&port->write_fifo, PAGE_SIZE, GFP_KERNEL))
David VomLehn8e8dce02009-08-28 12:54:27 -0700942 goto probe_error;
Johan Hovoldbbcb2b92010-03-17 23:00:37 +0100943 buffer_size = serial->type->bulk_out_size;
944 if (!buffer_size)
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700945 buffer_size = usb_endpoint_maxp(endpoint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 port->bulk_out_size = buffer_size;
947 port->bulk_out_endpointAddress = endpoint->bEndpointAddress;
Johan Hovold1ce7b932011-11-06 19:06:31 +0100948
Johan Hovold27c7acf2010-05-05 23:57:37 +0200949 for (j = 0; j < ARRAY_SIZE(port->write_urbs); ++j) {
950 set_bit(j, &port->write_urbs_free);
951 port->write_urbs[j] = usb_alloc_urb(0, GFP_KERNEL);
952 if (!port->write_urbs[j]) {
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700953 dev_err(ddev, "No free urbs available\n");
Johan Hovold27c7acf2010-05-05 23:57:37 +0200954 goto probe_error;
955 }
956 port->bulk_out_buffers[j] = kmalloc(buffer_size,
957 GFP_KERNEL);
958 if (!port->bulk_out_buffers[j]) {
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700959 dev_err(ddev, "Couldn't allocate bulk_out_buffer\n");
Johan Hovold27c7acf2010-05-05 23:57:37 +0200960 goto probe_error;
961 }
962 usb_fill_bulk_urb(port->write_urbs[j], dev,
963 usb_sndbulkpipe(dev,
964 endpoint->bEndpointAddress),
965 port->bulk_out_buffers[j], buffer_size,
966 serial->type->write_bulk_callback,
967 port);
968 }
Johan Hovold1ce7b932011-11-06 19:06:31 +0100969
970 port->write_urb = port->write_urbs[0];
971 port->bulk_out_buffer = port->bulk_out_buffers[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 }
973
974 if (serial->type->read_int_callback) {
975 for (i = 0; i < num_interrupt_in; ++i) {
976 endpoint = interrupt_in_endpoint[i];
977 port = serial->port[i];
978 port->interrupt_in_urb = usb_alloc_urb(0, GFP_KERNEL);
979 if (!port->interrupt_in_urb) {
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700980 dev_err(ddev, "No free urbs available\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 goto probe_error;
982 }
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700983 buffer_size = usb_endpoint_maxp(endpoint);
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100984 port->interrupt_in_endpointAddress =
985 endpoint->bEndpointAddress;
986 port->interrupt_in_buffer = kmalloc(buffer_size,
987 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 if (!port->interrupt_in_buffer) {
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -0700989 dev_err(ddev, "Couldn't allocate interrupt_in_buffer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 goto probe_error;
991 }
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100992 usb_fill_int_urb(port->interrupt_in_urb, dev,
993 usb_rcvintpipe(dev,
994 endpoint->bEndpointAddress),
995 port->interrupt_in_buffer, buffer_size,
996 serial->type->read_int_callback, port,
997 endpoint->bInterval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 }
999 } else if (num_interrupt_in) {
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -07001000 dev_dbg(ddev, "The device claims to support interrupt in transfers, but read_int_callback is not defined\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 }
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if (serial->type->write_int_callback) {
1004 for (i = 0; i < num_interrupt_out; ++i) {
1005 endpoint = interrupt_out_endpoint[i];
1006 port = serial->port[i];
1007 port->interrupt_out_urb = usb_alloc_urb(0, GFP_KERNEL);
1008 if (!port->interrupt_out_urb) {
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -07001009 dev_err(ddev, "No free urbs available\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 goto probe_error;
1011 }
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07001012 buffer_size = usb_endpoint_maxp(endpoint);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 port->interrupt_out_size = buffer_size;
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001014 port->interrupt_out_endpointAddress =
1015 endpoint->bEndpointAddress;
1016 port->interrupt_out_buffer = kmalloc(buffer_size,
1017 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 if (!port->interrupt_out_buffer) {
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -07001019 dev_err(ddev, "Couldn't allocate interrupt_out_buffer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 goto probe_error;
1021 }
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001022 usb_fill_int_urb(port->interrupt_out_urb, dev,
1023 usb_sndintpipe(dev,
1024 endpoint->bEndpointAddress),
1025 port->interrupt_out_buffer, buffer_size,
1026 serial->type->write_int_callback, port,
1027 endpoint->bInterval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 }
1029 } else if (num_interrupt_out) {
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -07001030 dev_dbg(ddev, "The device claims to support interrupt out transfers, but write_int_callback is not defined\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 }
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001032
Johan Hovoldbdce6612012-04-25 15:56:32 +02001033 usb_set_intfdata(interface, serial);
1034
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 /* if this device type has an attach function, call it */
1036 if (type->attach) {
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001037 retval = type->attach(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 if (retval < 0)
1039 goto probe_error;
Alan Sterna4720c62009-10-09 12:43:12 -04001040 serial->attached = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 if (retval > 0) {
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001042 /* quietly accept this device, but don't bind to a
1043 serial port as it's about to disappear */
Alan Stern0a3c8542009-05-27 11:25:52 -04001044 serial->num_ports = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 goto exit;
1046 }
Alan Sterna4720c62009-10-09 12:43:12 -04001047 } else {
1048 serial->attached = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 }
1050
Johan Hovolda65a6f12012-03-20 16:59:33 +01001051 /* Avoid race with tty_open and serial_install by setting the
1052 * disconnected flag and not clearing it until all ports have been
1053 * registered.
1054 */
1055 serial->disconnected = 1;
1056
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001057 if (get_free_serial(serial, num_ports, &minor) == NULL) {
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -07001058 dev_err(ddev, "No more free serial devices\n");
Oliver Neukum34ef50e2007-01-13 07:29:26 +01001059 goto probe_error;
1060 }
Oliver Neukumc744f992007-02-26 15:43:00 +01001061 serial->minor = minor;
Oliver Neukum34ef50e2007-01-13 07:29:26 +01001062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 /* register all of the individual ports with the driver core */
1064 for (i = 0; i < num_ports; ++i) {
1065 port = serial->port[i];
Kay Sievers0031a062008-05-02 06:02:41 +02001066 dev_set_name(&port->dev, "ttyUSB%d", port->number);
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -07001067 dev_dbg(ddev, "registering %s", dev_name(&port->dev));
Ming Leia7a6b792010-07-13 23:56:24 +08001068 device_enable_async_suspend(&port->dev);
1069
Alan Stern41bd34d2009-09-01 11:38:34 -04001070 retval = device_add(&port->dev);
Alan Stern891a3b12012-03-28 16:10:49 -04001071 if (retval)
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -07001072 dev_err(ddev, "Error registering port device, continuing\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 }
1074
Johan Hovolda65a6f12012-03-20 16:59:33 +01001075 serial->disconnected = 0;
1076
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001077 usb_serial_console_init(debug, minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078exit:
Ming Leid92a3ca2010-08-07 16:20:35 +08001079 module_put(type->driver.owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 return 0;
1081
1082probe_error:
Alan Stern41bd34d2009-09-01 11:38:34 -04001083 usb_serial_put(serial);
Ming Leid92a3ca2010-08-07 16:20:35 +08001084 module_put(type->driver.owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 return -EIO;
1086}
1087
Greg Kroah-Hartman32078f92012-05-07 14:02:13 -07001088static void usb_serial_disconnect(struct usb_interface *interface)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089{
1090 int i;
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001091 struct usb_serial *serial = usb_get_intfdata(interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 struct device *dev = &interface->dev;
1093 struct usb_serial_port *port;
1094
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +02001095 usb_serial_console_disconnect(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Oliver Neukuma1cd7e92008-01-16 17:18:52 +01001097 mutex_lock(&serial->disc_mutex);
Oliver Neukuma1cd7e92008-01-16 17:18:52 +01001098 /* must set a flag, to signal subdrivers */
1099 serial->disconnected = 1;
Alan Stern2d931482009-04-14 11:31:02 -04001100 mutex_unlock(&serial->disc_mutex);
1101
Oliver Neukuma1cd7e92008-01-16 17:18:52 +01001102 for (i = 0; i < serial->num_ports; ++i) {
1103 port = serial->port[i];
1104 if (port) {
Alan Cox4a90f092008-10-13 10:39:46 +01001105 struct tty_struct *tty = tty_port_tty_get(&port->port);
1106 if (tty) {
Alan Coxd2b39182009-09-19 13:13:23 -07001107 tty_vhangup(tty);
Alan Cox4a90f092008-10-13 10:39:46 +01001108 tty_kref_put(tty);
1109 }
Oliver Neukuma1cd7e92008-01-16 17:18:52 +01001110 kill_traffic(port);
Alan Stern2d931482009-04-14 11:31:02 -04001111 cancel_work_sync(&port->work);
Alan Stern891a3b12012-03-28 16:10:49 -04001112 if (device_is_registered(&port->dev))
Alan Sternc706ebd2009-06-02 11:54:11 -04001113 device_del(&port->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 }
Alan Sternf9c99bb2009-06-02 11:53:55 -04001116 serial->type->disconnect(serial);
Alan Stern2d931482009-04-14 11:31:02 -04001117
Alan Stern41bd34d2009-09-01 11:38:34 -04001118 /* let the last holder of this object cause it to be cleaned up */
Oliver Neukuma1cd7e92008-01-16 17:18:52 +01001119 usb_serial_put(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 dev_info(dev, "device disconnected\n");
1121}
1122
Oliver Neukumec225592007-04-27 20:54:57 +02001123int usb_serial_suspend(struct usb_interface *intf, pm_message_t message)
1124{
1125 struct usb_serial *serial = usb_get_intfdata(intf);
1126 struct usb_serial_port *port;
1127 int i, r = 0;
1128
Oliver Neukumf8bece82009-02-05 16:54:25 +01001129 serial->suspending = 1;
1130
Oliver Neukum81e5b232009-07-21 08:47:34 +02001131 if (serial->type->suspend) {
1132 r = serial->type->suspend(serial, message);
Oliver Neukuma5f60052009-10-01 15:01:17 +02001133 if (r < 0) {
1134 serial->suspending = 0;
Oliver Neukum81e5b232009-07-21 08:47:34 +02001135 goto err_out;
Oliver Neukuma5f60052009-10-01 15:01:17 +02001136 }
Oliver Neukum81e5b232009-07-21 08:47:34 +02001137 }
1138
Oliver Neukume31c1882007-07-23 08:58:39 +02001139 for (i = 0; i < serial->num_ports; ++i) {
1140 port = serial->port[i];
1141 if (port)
1142 kill_traffic(port);
Oliver Neukumec225592007-04-27 20:54:57 +02001143 }
1144
Oliver Neukum81e5b232009-07-21 08:47:34 +02001145err_out:
Oliver Neukumec225592007-04-27 20:54:57 +02001146 return r;
1147}
1148EXPORT_SYMBOL(usb_serial_suspend);
1149
1150int usb_serial_resume(struct usb_interface *intf)
1151{
1152 struct usb_serial *serial = usb_get_intfdata(intf);
Oliver Neukumc49cfa912009-02-06 18:06:43 +01001153 int rv;
Oliver Neukumec225592007-04-27 20:54:57 +02001154
Oliver Neukumf8bece82009-02-05 16:54:25 +01001155 serial->suspending = 0;
Sarah Sharp8abaee22007-10-25 10:58:43 -07001156 if (serial->type->resume)
Oliver Neukumc49cfa912009-02-06 18:06:43 +01001157 rv = serial->type->resume(serial);
1158 else
1159 rv = usb_serial_generic_resume(serial);
Oliver Neukumf8bece82009-02-05 16:54:25 +01001160
Oliver Neukumc49cfa912009-02-06 18:06:43 +01001161 return rv;
Oliver Neukumec225592007-04-27 20:54:57 +02001162}
1163EXPORT_SYMBOL(usb_serial_resume);
1164
Greg Kroah-Hartman71863642012-05-15 15:40:00 -07001165static int usb_serial_reset_resume(struct usb_interface *intf)
1166{
1167 struct usb_serial *serial = usb_get_intfdata(intf);
1168 int rv;
1169
1170 serial->suspending = 0;
1171 if (serial->type->reset_resume)
1172 rv = serial->type->reset_resume(serial);
Greg Kroah-Hartmandcd82cd2012-05-16 08:37:17 -07001173 else {
1174 rv = -EOPNOTSUPP;
1175 intf->needs_binding = 1;
1176 }
Greg Kroah-Hartman71863642012-05-15 15:40:00 -07001177
1178 return rv;
1179}
1180
Jeff Dikeb68e31d2006-10-02 02:17:18 -07001181static const struct tty_operations serial_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 .open = serial_open,
1183 .close = serial_close,
1184 .write = serial_write,
Johan Hovold3e1f4902011-11-10 17:40:43 +01001185 .hangup = serial_hangup,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 .write_room = serial_write_room,
1187 .ioctl = serial_ioctl,
1188 .set_termios = serial_set_termios,
1189 .throttle = serial_throttle,
1190 .unthrottle = serial_unthrottle,
1191 .break_ctl = serial_break,
1192 .chars_in_buffer = serial_chars_in_buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 .tiocmget = serial_tiocmget,
1194 .tiocmset = serial_tiocmset,
Johan Hovold3e1f4902011-11-10 17:40:43 +01001195 .get_icount = serial_get_icount,
1196 .cleanup = serial_cleanup,
1197 .install = serial_install,
Alexey Dobriyan6fd69d32009-03-31 15:19:21 -07001198 .proc_fops = &serial_proc_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199};
1200
Alan Cox335f8512009-06-11 12:26:29 +01001201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202struct tty_driver *usb_serial_tty_driver;
1203
Greg Kroah-Hartman32078f92012-05-07 14:02:13 -07001204/* Driver structure we register with the USB core */
1205static struct usb_driver usb_serial_driver = {
1206 .name = "usbserial",
1207 .probe = usb_serial_probe,
1208 .disconnect = usb_serial_disconnect,
1209 .suspend = usb_serial_suspend,
1210 .resume = usb_serial_resume,
1211 .no_dynamic_id = 1,
1212 .supports_autosuspend = 1,
1213};
1214
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215static int __init usb_serial_init(void)
1216{
1217 int i;
1218 int result;
1219
1220 usb_serial_tty_driver = alloc_tty_driver(SERIAL_TTY_MINORS);
1221 if (!usb_serial_tty_driver)
1222 return -ENOMEM;
1223
1224 /* Initialize our global data */
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001225 for (i = 0; i < SERIAL_TTY_MINORS; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 serial_table[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
1228 result = bus_register(&usb_serial_bus_type);
1229 if (result) {
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -07001230 pr_err("%s - registering bus driver failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 goto exit_bus;
1232 }
1233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 usb_serial_tty_driver->driver_name = "usbserial";
Johan Hovold3e1f4902011-11-10 17:40:43 +01001235 usb_serial_tty_driver->name = "ttyUSB";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 usb_serial_tty_driver->major = SERIAL_TTY_MAJOR;
1237 usb_serial_tty_driver->minor_start = 0;
1238 usb_serial_tty_driver->type = TTY_DRIVER_TYPE_SERIAL;
1239 usb_serial_tty_driver->subtype = SERIAL_TYPE_NORMAL;
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001240 usb_serial_tty_driver->flags = TTY_DRIVER_REAL_RAW |
1241 TTY_DRIVER_DYNAMIC_DEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 usb_serial_tty_driver->init_termios = tty_std_termios;
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001243 usb_serial_tty_driver->init_termios.c_cflag = B9600 | CS8 | CREAD
1244 | HUPCL | CLOCAL;
Alan Coxa5b6f602008-04-08 17:16:06 +01001245 usb_serial_tty_driver->init_termios.c_ispeed = 9600;
1246 usb_serial_tty_driver->init_termios.c_ospeed = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 tty_set_operations(usb_serial_tty_driver, &serial_ops);
1248 result = tty_register_driver(usb_serial_tty_driver);
1249 if (result) {
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -07001250 pr_err("%s - tty_register_driver failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 goto exit_reg_driver;
1252 }
1253
1254 /* register the USB driver */
1255 result = usb_register(&usb_serial_driver);
1256 if (result < 0) {
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -07001257 pr_err("%s - usb_register failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 goto exit_tty;
1259 }
1260
Greg Kroah-Hartman06299db2005-05-26 05:55:55 -07001261 /* register the generic driver, if we should */
1262 result = usb_serial_generic_register(debug);
1263 if (result < 0) {
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -07001264 pr_err("%s - registering generic driver failed\n", __func__);
Greg Kroah-Hartman06299db2005-05-26 05:55:55 -07001265 goto exit_generic;
1266 }
1267
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -07001268 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_DESC "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
1270 return result;
1271
Greg Kroah-Hartman06299db2005-05-26 05:55:55 -07001272exit_generic:
1273 usb_deregister(&usb_serial_driver);
1274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275exit_tty:
1276 tty_unregister_driver(usb_serial_tty_driver);
1277
1278exit_reg_driver:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 bus_unregister(&usb_serial_bus_type);
1280
1281exit_bus:
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -07001282 pr_err("%s - returning with error %d\n", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 put_tty_driver(usb_serial_tty_driver);
1284 return result;
1285}
1286
1287
1288static void __exit usb_serial_exit(void)
1289{
1290 usb_serial_console_exit();
1291
1292 usb_serial_generic_deregister();
1293
1294 usb_deregister(&usb_serial_driver);
1295 tty_unregister_driver(usb_serial_tty_driver);
1296 put_tty_driver(usb_serial_tty_driver);
1297 bus_unregister(&usb_serial_bus_type);
1298}
1299
1300
1301module_init(usb_serial_init);
1302module_exit(usb_serial_exit);
1303
1304#define set_to_generic_if_null(type, function) \
1305 do { \
1306 if (!type->function) { \
1307 type->function = usb_serial_generic_##function; \
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -07001308 pr_debug("Had to override the " #function \
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001309 " usb serial operation with the generic one.");\
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 } \
1311 } while (0)
1312
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07001313static void fixup_generic(struct usb_serial_driver *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314{
1315 set_to_generic_if_null(device, open);
1316 set_to_generic_if_null(device, write);
1317 set_to_generic_if_null(device, close);
1318 set_to_generic_if_null(device, write_room);
1319 set_to_generic_if_null(device, chars_in_buffer);
1320 set_to_generic_if_null(device, read_bulk_callback);
1321 set_to_generic_if_null(device, write_bulk_callback);
Alan Sternf9c99bb2009-06-02 11:53:55 -04001322 set_to_generic_if_null(device, disconnect);
1323 set_to_generic_if_null(device, release);
Johan Hovold23154322010-03-17 23:05:57 +01001324 set_to_generic_if_null(device, process_read_urb);
Johan Hovoldeaa3bcb2010-03-17 23:06:08 +01001325 set_to_generic_if_null(device, prepare_write_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326}
1327
Greg Kroah-Hartmanf799e762012-02-24 12:50:30 -08001328static int usb_serial_register(struct usb_serial_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329{
1330 int retval;
1331
Dave Younge4abe662009-02-14 21:21:13 +08001332 if (usb_disabled())
1333 return -ENODEV;
1334
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07001335 fixup_generic(driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -07001337 if (!driver->description)
1338 driver->description = driver->driver.name;
Alan Stern5620b5f2011-01-11 14:16:50 -05001339 if (!driver->usb_driver) {
1340 WARN(1, "Serial driver %s has no usb_driver\n",
1341 driver->description);
1342 return -EINVAL;
1343 }
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -07001344
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 /* Add this device to our list of devices */
Andi Kleen0daeed32010-06-01 23:04:42 +02001346 mutex_lock(&table_lock);
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07001347 list_add(&driver->driver_list, &usb_serial_driver_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07001349 retval = usb_serial_bus_register(driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 if (retval) {
Greg Kroah-Hartman92931d22012-09-13 16:30:31 -07001351 pr_err("problem %d when registering driver %s\n", retval, driver->description);
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07001352 list_del(&driver->driver_list);
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001353 } else
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -07001354 printk(KERN_INFO "USB Serial support registered for %s\n",
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001355 driver->description);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Andi Kleen0daeed32010-06-01 23:04:42 +02001357 mutex_unlock(&table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 return retval;
1359}
1360
Greg Kroah-Hartmanf799e762012-02-24 12:50:30 -08001361static void usb_serial_deregister(struct usb_serial_driver *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362{
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -07001363 printk(KERN_INFO "USB Serial deregistering driver %s\n",
1364 device->description);
Andi Kleen0daeed32010-06-01 23:04:42 +02001365 mutex_lock(&table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 list_del(&device->driver_list);
1367 usb_serial_bus_deregister(device);
Andi Kleen0daeed32010-06-01 23:04:42 +02001368 mutex_unlock(&table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Alan Stern765e0ba2012-02-23 14:55:59 -05001371/**
1372 * usb_serial_register_drivers - register drivers for a usb-serial module
Alan Stern765e0ba2012-02-23 14:55:59 -05001373 * @serial_drivers: NULL-terminated array of pointers to drivers to be registered
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07001374 * @name: name of the usb_driver for this set of @serial_drivers
1375 * @id_table: list of all devices this @serial_drivers set binds to
Alan Stern765e0ba2012-02-23 14:55:59 -05001376 *
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07001377 * Registers all the drivers in the @serial_drivers array, and dynamically
1378 * creates a struct usb_driver with the name @name and id_table of @id_table.
Alan Stern765e0ba2012-02-23 14:55:59 -05001379 */
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07001380int usb_serial_register_drivers(struct usb_serial_driver *const serial_drivers[],
1381 const char *name,
1382 const struct usb_device_id *id_table)
Alan Stern765e0ba2012-02-23 14:55:59 -05001383{
1384 int rc;
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07001385 struct usb_driver *udriver;
Alan Stern765e0ba2012-02-23 14:55:59 -05001386 struct usb_serial_driver * const *sd;
1387
1388 /*
1389 * udriver must be registered before any of the serial drivers,
1390 * because the store_new_id() routine for the serial drivers (in
1391 * bus.c) probes udriver.
1392 *
1393 * Performance hack: We don't want udriver to be probed until
1394 * the serial drivers are registered, because the probe would
1395 * simply fail for lack of a matching serial driver.
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07001396 * So we leave udriver's id_table set to NULL until we are all set.
Alan Stern5cbe61c2012-05-07 11:20:06 -04001397 *
1398 * Suspend/resume support is implemented in the usb-serial core,
1399 * so fill in the PM-related fields in udriver.
Alan Stern765e0ba2012-02-23 14:55:59 -05001400 */
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07001401 udriver = kzalloc(sizeof(*udriver), GFP_KERNEL);
1402 if (!udriver)
1403 return -ENOMEM;
Alan Stern765e0ba2012-02-23 14:55:59 -05001404
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07001405 udriver->name = name;
Alan Stern765e0ba2012-02-23 14:55:59 -05001406 udriver->no_dynamic_id = 1;
Alan Stern5cbe61c2012-05-07 11:20:06 -04001407 udriver->supports_autosuspend = 1;
1408 udriver->suspend = usb_serial_suspend;
1409 udriver->resume = usb_serial_resume;
Greg Kroah-Hartman5026bb02012-05-07 13:48:33 -07001410 udriver->probe = usb_serial_probe;
Greg Kroah-Hartman32078f92012-05-07 14:02:13 -07001411 udriver->disconnect = usb_serial_disconnect;
Greg Kroah-Hartman71863642012-05-15 15:40:00 -07001412
1413 /* we only set the reset_resume field if the serial_driver has one */
1414 for (sd = serial_drivers; *sd; ++sd) {
1415 if ((*sd)->reset_resume)
1416 udriver->reset_resume = usb_serial_reset_resume;
1417 break;
1418 }
1419
Alan Stern765e0ba2012-02-23 14:55:59 -05001420 rc = usb_register(udriver);
1421 if (rc)
1422 return rc;
1423
1424 for (sd = serial_drivers; *sd; ++sd) {
1425 (*sd)->usb_driver = udriver;
1426 rc = usb_serial_register(*sd);
1427 if (rc)
1428 goto failed;
1429 }
1430
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07001431 /* Now set udriver's id_table and look for matches */
1432 udriver->id_table = id_table;
Alan Stern765e0ba2012-02-23 14:55:59 -05001433 rc = driver_attach(&udriver->drvwrap.driver);
1434 return 0;
1435
1436 failed:
1437 while (sd-- > serial_drivers)
1438 usb_serial_deregister(*sd);
1439 usb_deregister(udriver);
1440 return rc;
1441}
1442EXPORT_SYMBOL_GPL(usb_serial_register_drivers);
1443
1444/**
1445 * usb_serial_deregister_drivers - deregister drivers for a usb-serial module
Alan Stern765e0ba2012-02-23 14:55:59 -05001446 * @serial_drivers: NULL-terminated array of pointers to drivers to be deregistered
1447 *
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07001448 * Deregisters all the drivers in the @serial_drivers array and deregisters and
1449 * frees the struct usb_driver that was created by the call to
1450 * usb_serial_register_drivers().
Alan Stern765e0ba2012-02-23 14:55:59 -05001451 */
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07001452void usb_serial_deregister_drivers(struct usb_serial_driver *const serial_drivers[])
Alan Stern765e0ba2012-02-23 14:55:59 -05001453{
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07001454 struct usb_driver *udriver = (*serial_drivers)->usb_driver;
1455
Alan Stern765e0ba2012-02-23 14:55:59 -05001456 for (; *serial_drivers; ++serial_drivers)
1457 usb_serial_deregister(*serial_drivers);
1458 usb_deregister(udriver);
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07001459 kfree(udriver);
Alan Stern765e0ba2012-02-23 14:55:59 -05001460}
1461EXPORT_SYMBOL_GPL(usb_serial_deregister_drivers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
1463/* Module information */
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001464MODULE_AUTHOR(DRIVER_AUTHOR);
1465MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466MODULE_LICENSE("GPL");
1467
1468module_param(debug, bool, S_IRUGO | S_IWUSR);
1469MODULE_PARM_DESC(debug, "Debug enabled or not");