blob: 3bcf3346658772e1a8efce24fd50072f5cbcf210 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * USB Serial Converter driver
3 *
Greg Kroah-Hartman502b95c2005-06-20 21:15:16 -07004 * Copyright (C) 1999 - 2005 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 *
15 * See Documentation/usb/usb-serial.txt for more information on using this driver
16 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/kernel.h>
20#include <linux/errno.h>
21#include <linux/init.h>
22#include <linux/slab.h>
23#include <linux/tty.h>
24#include <linux/tty_driver.h>
25#include <linux/tty_flip.h>
26#include <linux/module.h>
27#include <linux/moduleparam.h>
28#include <linux/spinlock.h>
Luiz Fernando Capitulino1ce7dd22006-03-24 17:12:31 -030029#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/uaccess.h>
32#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070033#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "pl2303.h"
35
36/*
37 * Version Information
38 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#define DRIVER_AUTHOR "Greg Kroah-Hartman, greg@kroah.com, http://www.kroah.com/linux/"
40#define DRIVER_DESC "USB Serial Driver core"
41
Pete Zaitcev34f8e762006-06-21 15:00:45 -070042static void port_free(struct usb_serial_port *port);
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044/* Driver structure we register with the USB core */
45static struct usb_driver usb_serial_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 .name = "usbserial",
47 .probe = usb_serial_probe,
48 .disconnect = usb_serial_disconnect,
Oliver Neukumec225592007-04-27 20:54:57 +020049 .suspend = usb_serial_suspend,
50 .resume = usb_serial_resume,
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -080051 .no_dynamic_id = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070052};
53
54/* There is no MODULE_DEVICE_TABLE for usbserial.c. Instead
55 the MODULE_DEVICE_TABLE declarations in each serial driver
56 cause the "hotplug" program to pull in whatever module is necessary
57 via modprobe, and modprobe will load usbserial because the serial
58 drivers depend on it.
59*/
60
61static int debug;
62static struct usb_serial *serial_table[SERIAL_TTY_MINORS]; /* initially all NULL */
Oliver Neukum3ddad822007-07-24 15:13:42 +020063static DEFINE_MUTEX(table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064static LIST_HEAD(usb_serial_driver_list);
65
66struct 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
73 if (serial)
74 kref_get(&serial->kref);
Oliver Neukum3ddad822007-07-24 15:13:42 +020075 mutex_unlock(&table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 return serial;
77}
78
79static struct usb_serial *get_free_serial (struct usb_serial *serial, int num_ports, unsigned int *minor)
80{
81 unsigned int i, j;
82 int good_spot;
83
Harvey Harrison441b62c2008-03-03 16:08:34 -080084 dbg("%s %d", __func__, num_ports);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86 *minor = 0;
Oliver Neukum3ddad822007-07-24 15:13:42 +020087 mutex_lock(&table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 for (i = 0; i < SERIAL_TTY_MINORS; ++i) {
89 if (serial_table[i])
90 continue;
91
92 good_spot = 1;
93 for (j = 1; j <= num_ports-1; ++j)
94 if ((i+j >= SERIAL_TTY_MINORS) || (serial_table[i+j])) {
95 good_spot = 0;
96 i += j;
97 break;
98 }
99 if (good_spot == 0)
100 continue;
101
102 *minor = i;
Oliver Neukuma1f721c2007-03-05 15:23:51 +0100103 j = 0;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800104 dbg("%s - minor base = %d", __func__, *minor);
Oliver Neukuma1f721c2007-03-05 15:23:51 +0100105 for (i = *minor; (i < (*minor + num_ports)) && (i < SERIAL_TTY_MINORS); ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 serial_table[i] = serial;
Oliver Neukuma1f721c2007-03-05 15:23:51 +0100107 serial->port[j++]->number = i;
108 }
Oliver Neukum3ddad822007-07-24 15:13:42 +0200109 mutex_unlock(&table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 return serial;
111 }
Oliver Neukum3ddad822007-07-24 15:13:42 +0200112 mutex_unlock(&table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 return NULL;
114}
115
116static void return_serial(struct usb_serial *serial)
117{
118 int i;
119
Harvey Harrison441b62c2008-03-03 16:08:34 -0800120 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 if (serial == NULL)
123 return;
124
125 for (i = 0; i < serial->num_ports; ++i) {
126 serial_table[serial->minor + i] = NULL;
127 }
128}
129
130static void destroy_serial(struct kref *kref)
131{
132 struct usb_serial *serial;
133 struct usb_serial_port *port;
134 int i;
135
136 serial = to_usb_serial(kref);
137
Harvey Harrison441b62c2008-03-03 16:08:34 -0800138 dbg("%s - %s", __func__, serial->type->description);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Jim Radford521b85a2007-03-13 08:30:50 -0700140 serial->type->shutdown(serial);
141
142 /* return the minor range that this device had */
143 return_serial(serial);
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 for (i = 0; i < serial->num_ports; ++i)
146 serial->port[i]->open_count = 0;
147
148 /* the ports are cleaned up and released in port_release() */
149 for (i = 0; i < serial->num_ports; ++i)
150 if (serial->port[i]->dev.parent != NULL) {
151 device_unregister(&serial->port[i]->dev);
152 serial->port[i] = NULL;
153 }
154
155 /* If this is a "fake" port, we have to clean it up here, as it will
156 * not get cleaned up in port_release() as it was never registered with
157 * the driver core */
158 if (serial->num_ports < serial->num_port_pointers) {
159 for (i = serial->num_ports; i < serial->num_port_pointers; ++i) {
160 port = serial->port[i];
161 if (!port)
162 continue;
Pete Zaitcev34f8e762006-06-21 15:00:45 -0700163 port_free(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 }
165 }
166
167 usb_put_dev(serial->dev);
168
169 /* free up any memory that we allocated */
170 kfree (serial);
171}
172
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +0200173void usb_serial_put(struct usb_serial *serial)
174{
Oliver Neukum3ddad822007-07-24 15:13:42 +0200175 mutex_lock(&table_lock);
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +0200176 kref_put(&serial->kref, destroy_serial);
Oliver Neukum3ddad822007-07-24 15:13:42 +0200177 mutex_unlock(&table_lock);
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +0200178}
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180/*****************************************************************************
181 * Driver tty interface functions
182 *****************************************************************************/
183static int serial_open (struct tty_struct *tty, struct file * filp)
184{
185 struct usb_serial *serial;
186 struct usb_serial_port *port;
187 unsigned int portNumber;
188 int retval;
189
Harvey Harrison441b62c2008-03-03 16:08:34 -0800190 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 /* get the serial object associated with this tty pointer */
193 serial = usb_serial_get_by_index(tty->index);
194 if (!serial) {
195 tty->driver_data = NULL;
196 return -ENODEV;
197 }
198
199 portNumber = tty->index - serial->minor;
200 port = serial->port[portNumber];
Luiz Fernando Capitulino71a84162006-05-11 22:34:24 -0300201 if (!port) {
202 retval = -ENODEV;
203 goto bailout_kref_put;
204 }
Luiz Fernando Capitulino8a4613f2005-11-28 19:16:07 -0200205
Luiz Fernando Capitulino71a84162006-05-11 22:34:24 -0300206 if (mutex_lock_interruptible(&port->mutex)) {
207 retval = -ERESTARTSYS;
208 goto bailout_kref_put;
209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 ++port->open_count;
212
Paul Fulghumca854852006-04-13 22:28:17 +0200213 /* set up our port structure making the tty driver
214 * remember our port object, and us it */
215 tty->driver_data = port;
216 port->tty = tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Paul Fulghumca854852006-04-13 22:28:17 +0200218 if (port->open_count == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 /* lock this module before we call it
221 * this may fail, which means we must bail out,
222 * safe because we are called with BKL held */
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700223 if (!try_module_get(serial->type->driver.owner)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 retval = -ENODEV;
Luiz Fernando Capitulino71a84162006-05-11 22:34:24 -0300225 goto bailout_mutex_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }
227
Sarah Sharpf0fbd5b2007-11-13 17:10:09 -0800228 retval = usb_autopm_get_interface(serial->interface);
229 if (retval)
230 goto bailout_module_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 /* only call the device specific open if this
232 * is the first time the port is opened */
233 retval = serial->type->open(port, filp);
234 if (retval)
Sarah Sharpf0fbd5b2007-11-13 17:10:09 -0800235 goto bailout_interface_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237
Luiz Fernando Capitulino1ce7dd22006-03-24 17:12:31 -0300238 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 return 0;
240
Sarah Sharpf0fbd5b2007-11-13 17:10:09 -0800241bailout_interface_put:
242 usb_autopm_put_interface(serial->interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243bailout_module_put:
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700244 module_put(serial->type->driver.owner);
Luiz Fernando Capitulino71a84162006-05-11 22:34:24 -0300245bailout_mutex_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 port->open_count = 0;
Frank Gevaertsb059c812006-06-14 15:52:05 +0200247 tty->driver_data = NULL;
248 port->tty = NULL;
Luiz Fernando Capitulino1ce7dd22006-03-24 17:12:31 -0300249 mutex_unlock(&port->mutex);
Luiz Fernando Capitulino71a84162006-05-11 22:34:24 -0300250bailout_kref_put:
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +0200251 usb_serial_put(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 return retval;
253}
254
255static void serial_close(struct tty_struct *tty, struct file * filp)
256{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200257 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 if (!port)
260 return;
261
Harvey Harrison441b62c2008-03-03 16:08:34 -0800262 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Luiz Fernando Capitulino1ce7dd22006-03-24 17:12:31 -0300264 mutex_lock(&port->mutex);
Luiz Fernando Capitulino8a4613f2005-11-28 19:16:07 -0200265
Greg Kroah-Hartman91c0bce2006-03-06 13:25:52 -0800266 if (port->open_count == 0) {
Luiz Fernando Capitulino1ce7dd22006-03-24 17:12:31 -0300267 mutex_unlock(&port->mutex);
Greg Kroah-Hartman91c0bce2006-03-06 13:25:52 -0800268 return;
269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 --port->open_count;
Aristeu Rozanski9a6b1ef2007-11-12 15:15:02 -0500272 if (port->open_count == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 /* only call the device specific close if this
274 * port is being closed by the last owner */
275 port->serial->type->close(port, filp);
276
Aristeu Rozanski9a6b1ef2007-11-12 15:15:02 -0500277 if (port->open_count == (port->console? 1 : 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 if (port->tty) {
279 if (port->tty->driver_data)
280 port->tty->driver_data = NULL;
281 port->tty = NULL;
282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
284
Sarah Sharpf0fbd5b2007-11-13 17:10:09 -0800285 if (port->open_count == 0) {
286 usb_autopm_put_interface(port->serial->interface);
Aristeu Rozanski9a6b1ef2007-11-12 15:15:02 -0500287 module_put(port->serial->type->driver.owner);
Sarah Sharpf0fbd5b2007-11-13 17:10:09 -0800288 }
Aristeu Rozanski9a6b1ef2007-11-12 15:15:02 -0500289
Luiz Fernando Capitulino1ce7dd22006-03-24 17:12:31 -0300290 mutex_unlock(&port->mutex);
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +0200291 usb_serial_put(port->serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
294static int serial_write (struct tty_struct * tty, const unsigned char *buf, int count)
295{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200296 struct usb_serial_port *port = tty->driver_data;
Oliver Neukum3ff4fd92007-01-13 07:32:27 +0100297 int retval = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Alan Coxf34d7a52008-04-30 00:54:13 -0700299 if (port->serial->dev->state == USB_STATE_NOTATTACHED)
Luiz Fernando Capitulino487f9c62005-11-28 19:16:05 -0200300 goto exit;
301
Harvey Harrison441b62c2008-03-03 16:08:34 -0800302 dbg("%s - port %d, %d byte(s)", __func__, port->number, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Alan Coxf34d7a52008-04-30 00:54:13 -0700304 /* open_count is managed under the mutex lock for the tty so cannot
305 drop to zero until after the last close completes */
306 WARN_ON(!port->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308 /* pass on to the driver specific version of this function */
309 retval = port->serial->type->write(port, buf, count);
310
311exit:
312 return retval;
313}
314
315static int serial_write_room (struct tty_struct *tty)
316{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200317 struct usb_serial_port *port = tty->driver_data;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800318 dbg("%s - port %d", __func__, port->number);
Alan Coxf34d7a52008-04-30 00:54:13 -0700319 WARN_ON(!port->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 /* pass on to the driver specific version of this function */
Alan Coxf34d7a52008-04-30 00:54:13 -0700321 return port->serial->type->write_room(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323
324static int serial_chars_in_buffer (struct tty_struct *tty)
325{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200326 struct usb_serial_port *port = tty->driver_data;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800327 dbg("%s = port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Alan Coxf34d7a52008-04-30 00:54:13 -0700329 WARN_ON(!port->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 /* pass on to the driver specific version of this function */
Alan Coxf34d7a52008-04-30 00:54:13 -0700331 return port->serial->type->chars_in_buffer(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332}
333
334static void serial_throttle (struct tty_struct * tty)
335{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200336 struct usb_serial_port *port = tty->driver_data;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800337 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Alan Coxf34d7a52008-04-30 00:54:13 -0700339 WARN_ON(!port->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 /* pass on to the driver specific version of this function */
341 if (port->serial->type->throttle)
342 port->serial->type->throttle(port);
343}
344
345static void serial_unthrottle (struct tty_struct * tty)
346{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200347 struct usb_serial_port *port = tty->driver_data;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800348 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Alan Coxf34d7a52008-04-30 00:54:13 -0700350 WARN_ON(!port->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 /* pass on to the driver specific version of this function */
352 if (port->serial->type->unthrottle)
353 port->serial->type->unthrottle(port);
354}
355
356static int serial_ioctl (struct tty_struct *tty, struct file * file, unsigned int cmd, unsigned long arg)
357{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200358 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 int retval = -ENODEV;
360
Harvey Harrison441b62c2008-03-03 16:08:34 -0800361 dbg("%s - port %d, cmd 0x%.4x", __func__, port->number, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Alan Coxf34d7a52008-04-30 00:54:13 -0700363 WARN_ON(!port->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 /* pass on to the driver specific version of this function if it is available */
Alan Coxf34d7a52008-04-30 00:54:13 -0700366 if (port->serial->type->ioctl) {
367 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 retval = port->serial->type->ioctl(port, file, cmd, arg);
Alan Coxf34d7a52008-04-30 00:54:13 -0700369 unlock_kernel();
370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 else
372 retval = -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 return retval;
374}
375
Alan Cox606d0992006-12-08 02:38:45 -0800376static void serial_set_termios (struct tty_struct *tty, struct ktermios * old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200378 struct usb_serial_port *port = tty->driver_data;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800379 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Alan Coxf34d7a52008-04-30 00:54:13 -0700381 WARN_ON(!port->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 /* pass on to the driver specific version of this function if it is available */
383 if (port->serial->type->set_termios)
384 port->serial->type->set_termios(port, old);
Alan Cox33785092007-10-18 01:24:22 -0700385 else
386 tty_termios_copy_hw(tty->termios, old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387}
388
389static void serial_break (struct tty_struct *tty, int break_state)
390{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200391 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Harvey Harrison441b62c2008-03-03 16:08:34 -0800393 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Alan Coxf34d7a52008-04-30 00:54:13 -0700395 WARN_ON(!port->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 /* pass on to the driver specific version of this function if it is available */
Alan Coxf34d7a52008-04-30 00:54:13 -0700397 if (port->serial->type->break_ctl) {
398 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 port->serial->type->break_ctl(port, break_state);
Alan Coxf34d7a52008-04-30 00:54:13 -0700400 unlock_kernel();
401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
404static int serial_read_proc (char *page, char **start, off_t off, int count, int *eof, void *data)
405{
406 struct usb_serial *serial;
407 int length = 0;
408 int i;
409 off_t begin = 0;
410 char tmp[40];
411
Harvey Harrison441b62c2008-03-03 16:08:34 -0800412 dbg("%s", __func__);
Greg Kroah-Hartman17a882f2005-06-20 21:15:16 -0700413 length += sprintf (page, "usbserinfo:1.0 driver:2.0\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 for (i = 0; i < SERIAL_TTY_MINORS && length < PAGE_SIZE; ++i) {
415 serial = usb_serial_get_by_index(i);
416 if (serial == NULL)
417 continue;
418
419 length += sprintf (page+length, "%d:", i);
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700420 if (serial->type->driver.owner)
421 length += sprintf (page+length, " module:%s", module_name(serial->type->driver.owner));
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700422 length += sprintf (page+length, " name:\"%s\"", serial->type->description);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 length += sprintf (page+length, " vendor:%04x product:%04x",
424 le16_to_cpu(serial->dev->descriptor.idVendor),
425 le16_to_cpu(serial->dev->descriptor.idProduct));
426 length += sprintf (page+length, " num_ports:%d", serial->num_ports);
427 length += sprintf (page+length, " port:%d", i - serial->minor + 1);
428
429 usb_make_path(serial->dev, tmp, sizeof(tmp));
430 length += sprintf (page+length, " path:%s", tmp);
431
432 length += sprintf (page+length, "\n");
Matthias Urlichs59925832006-09-11 12:35:20 +0200433 if ((length + begin) > (off + count)) {
434 usb_serial_put(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 goto done;
Matthias Urlichs59925832006-09-11 12:35:20 +0200436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 if ((length + begin) < off) {
438 begin += length;
439 length = 0;
440 }
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +0200441 usb_serial_put(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 }
443 *eof = 1;
444done:
445 if (off >= (length + begin))
446 return 0;
447 *start = page + (off-begin);
448 return ((count < begin+length-off) ? count : begin+length-off);
449}
450
451static int serial_tiocmget (struct tty_struct *tty, struct file *file)
452{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200453 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Harvey Harrison441b62c2008-03-03 16:08:34 -0800455 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Alan Coxf34d7a52008-04-30 00:54:13 -0700457 WARN_ON(!port->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 if (port->serial->type->tiocmget)
459 return port->serial->type->tiocmget(port, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 return -EINVAL;
461}
462
463static int serial_tiocmset (struct tty_struct *tty, struct file *file,
464 unsigned int set, unsigned int clear)
465{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200466 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Harvey Harrison441b62c2008-03-03 16:08:34 -0800468 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Alan Coxf34d7a52008-04-30 00:54:13 -0700470 WARN_ON(!port->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 if (port->serial->type->tiocmset)
472 return port->serial->type->tiocmset(port, file, set, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 return -EINVAL;
474}
475
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700476/*
477 * We would be calling tty_wakeup here, but unfortunately some line
478 * disciplines have an annoying habit of calling tty->write from
479 * the write wakeup callback (e.g. n_hdlc.c).
480 */
481void usb_serial_port_softint(struct usb_serial_port *port)
482{
483 schedule_work(&port->work);
484}
485
David Howellsc4028952006-11-22 14:57:56 +0000486static void usb_serial_port_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
David Howellsc4028952006-11-22 14:57:56 +0000488 struct usb_serial_port *port =
489 container_of(work, struct usb_serial_port, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 struct tty_struct *tty;
491
Harvey Harrison441b62c2008-03-03 16:08:34 -0800492 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494 if (!port)
495 return;
496
497 tty = port->tty;
498 if (!tty)
499 return;
500
501 tty_wakeup(tty);
502}
503
504static void port_release(struct device *dev)
505{
506 struct usb_serial_port *port = to_usb_serial_port(dev);
507
Kay Sievers7071a3c2008-05-02 06:02:41 +0200508 dbg ("%s - %s", __func__, dev_name(dev));
Pete Zaitcev34f8e762006-06-21 15:00:45 -0700509 port_free(port);
510}
511
Oliver Neukum34ef50e2007-01-13 07:29:26 +0100512static void kill_traffic(struct usb_serial_port *port)
Pete Zaitcev34f8e762006-06-21 15:00:45 -0700513{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 usb_kill_urb(port->read_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 usb_kill_urb(port->write_urb);
Oliver Neukum5adceac2007-08-17 14:01:38 +0200516 /*
517 * This is tricky.
518 * Some drivers submit the read_urb in the
519 * handler for the write_urb or vice versa
520 * this order determines the order in which
521 * usb_kill_urb() must be used to reliably
522 * kill the URBs. As it is unknown here,
523 * both orders must be used in turn.
524 * The call below is not redundant.
525 */
526 usb_kill_urb(port->read_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 usb_kill_urb(port->interrupt_in_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 usb_kill_urb(port->interrupt_out_urb);
Oliver Neukum34ef50e2007-01-13 07:29:26 +0100529}
530
531static void port_free(struct usb_serial_port *port)
532{
533 kill_traffic(port);
534 usb_free_urb(port->read_urb);
535 usb_free_urb(port->write_urb);
536 usb_free_urb(port->interrupt_in_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 usb_free_urb(port->interrupt_out_urb);
538 kfree(port->bulk_in_buffer);
539 kfree(port->bulk_out_buffer);
540 kfree(port->interrupt_in_buffer);
541 kfree(port->interrupt_out_buffer);
Pete Zaitcev34f8e762006-06-21 15:00:45 -0700542 flush_scheduled_work(); /* port->work */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 kfree(port);
544}
545
546static struct usb_serial * create_serial (struct usb_device *dev,
547 struct usb_interface *interface,
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700548 struct usb_serial_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549{
550 struct usb_serial *serial;
551
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100552 serial = kzalloc(sizeof(*serial), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 if (!serial) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800554 dev_err(&dev->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 return NULL;
556 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 serial->dev = usb_get_dev(dev);
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700558 serial->type = driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 serial->interface = interface;
560 kref_init(&serial->kref);
Oliver Neukuma1cd7e92008-01-16 17:18:52 +0100561 mutex_init(&serial->disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563 return serial;
564}
565
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +0100566static const struct usb_device_id *match_dynamic_id(struct usb_interface *intf,
567 struct usb_serial_driver *drv)
568{
569 struct usb_dynid *dynid;
570
571 spin_lock(&drv->dynids.lock);
572 list_for_each_entry(dynid, &drv->dynids.list, node) {
573 if (usb_match_one_id(intf, &dynid->id)) {
574 spin_unlock(&drv->dynids.lock);
575 return &dynid->id;
576 }
577 }
578 spin_unlock(&drv->dynids.lock);
579 return NULL;
580}
581
582static const struct usb_device_id *get_iface_id(struct usb_serial_driver *drv,
583 struct usb_interface *intf)
584{
585 const struct usb_device_id *id;
586
587 id = usb_match_id(intf, drv->id_table);
588 if (id) {
589 dbg("static descriptor matches");
590 goto exit;
591 }
592 id = match_dynamic_id(intf, drv);
593 if (id)
594 dbg("dynamic descriptor matches");
595exit:
596 return id;
597}
598
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700599static struct usb_serial_driver *search_serial_device(struct usb_interface *iface)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 const struct usb_device_id *id;
Alan Stern063a2da2007-10-10 16:24:06 -0400602 struct usb_serial_driver *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Adrian Bunk93b1fae2006-01-10 00:13:33 +0100604 /* Check if the usb id matches a known device */
Alan Stern063a2da2007-10-10 16:24:06 -0400605 list_for_each_entry(drv, &usb_serial_driver_list, driver_list) {
606 id = get_iface_id(drv, iface);
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +0100607 if (id)
Alan Stern063a2da2007-10-10 16:24:06 -0400608 return drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
610
611 return NULL;
612}
613
614int usb_serial_probe(struct usb_interface *interface,
615 const struct usb_device_id *id)
616{
617 struct usb_device *dev = interface_to_usbdev (interface);
618 struct usb_serial *serial = NULL;
619 struct usb_serial_port *port;
620 struct usb_host_interface *iface_desc;
621 struct usb_endpoint_descriptor *endpoint;
622 struct usb_endpoint_descriptor *interrupt_in_endpoint[MAX_NUM_PORTS];
623 struct usb_endpoint_descriptor *interrupt_out_endpoint[MAX_NUM_PORTS];
624 struct usb_endpoint_descriptor *bulk_in_endpoint[MAX_NUM_PORTS];
625 struct usb_endpoint_descriptor *bulk_out_endpoint[MAX_NUM_PORTS];
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700626 struct usb_serial_driver *type = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 int retval;
Andre Hauptdd9ca5d2008-06-18 15:56:00 +0200628 unsigned int minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 int buffer_size;
630 int i;
631 int num_interrupt_in = 0;
632 int num_interrupt_out = 0;
633 int num_bulk_in = 0;
634 int num_bulk_out = 0;
635 int num_ports = 0;
636 int max_endpoints;
637
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100638 lock_kernel(); /* guard against unloading a serial driver module */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 type = search_serial_device(interface);
640 if (!type) {
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100641 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 dbg("none matched");
643 return -ENODEV;
644 }
645
646 serial = create_serial (dev, interface, type);
647 if (!serial) {
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100648 unlock_kernel();
Harvey Harrison441b62c2008-03-03 16:08:34 -0800649 dev_err(&interface->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 return -ENOMEM;
651 }
652
653 /* if this device type has a probe function, call it */
654 if (type->probe) {
655 const struct usb_device_id *id;
656
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700657 if (!try_module_get(type->driver.owner)) {
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100658 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 dev_err(&interface->dev, "module get failed, exiting\n");
660 kfree (serial);
661 return -EIO;
662 }
663
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +0100664 id = get_iface_id(type, interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 retval = type->probe(serial, id);
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700666 module_put(type->driver.owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668 if (retval) {
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100669 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 dbg ("sub driver rejected device");
671 kfree (serial);
672 return retval;
673 }
674 }
675
676 /* descriptor matches, let's find the endpoints needed */
677 /* check out the endpoints */
678 iface_desc = interface->cur_altsetting;
679 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
680 endpoint = &iface_desc->endpoint[i].desc;
Luiz Fernando N. Capitulino4fa1bbf2006-09-27 11:58:53 -0700681
682 if (usb_endpoint_is_bulk_in(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 /* we found a bulk in endpoint */
684 dbg("found bulk in on endpoint %d", i);
685 bulk_in_endpoint[num_bulk_in] = endpoint;
686 ++num_bulk_in;
687 }
688
Luiz Fernando N. Capitulino4fa1bbf2006-09-27 11:58:53 -0700689 if (usb_endpoint_is_bulk_out(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 /* we found a bulk out endpoint */
691 dbg("found bulk out on endpoint %d", i);
692 bulk_out_endpoint[num_bulk_out] = endpoint;
693 ++num_bulk_out;
694 }
Luiz Fernando N. Capitulino4fa1bbf2006-09-27 11:58:53 -0700695
696 if (usb_endpoint_is_int_in(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 /* we found a interrupt in endpoint */
698 dbg("found interrupt in on endpoint %d", i);
699 interrupt_in_endpoint[num_interrupt_in] = endpoint;
700 ++num_interrupt_in;
701 }
702
Luiz Fernando N. Capitulino4fa1bbf2006-09-27 11:58:53 -0700703 if (usb_endpoint_is_int_out(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 /* we found an interrupt out endpoint */
705 dbg("found interrupt out on endpoint %d", i);
706 interrupt_out_endpoint[num_interrupt_out] = endpoint;
707 ++num_interrupt_out;
708 }
709 }
710
711#if defined(CONFIG_USB_SERIAL_PL2303) || defined(CONFIG_USB_SERIAL_PL2303_MODULE)
712 /* BEGIN HORRIBLE HACK FOR PL2303 */
713 /* this is needed due to the looney way its endpoints are set up */
714 if (((le16_to_cpu(dev->descriptor.idVendor) == PL2303_VENDOR_ID) &&
715 (le16_to_cpu(dev->descriptor.idProduct) == PL2303_PRODUCT_ID)) ||
716 ((le16_to_cpu(dev->descriptor.idVendor) == ATEN_VENDOR_ID) &&
Johannes Steingraeber8fd80132006-09-16 16:17:34 +0200717 (le16_to_cpu(dev->descriptor.idProduct) == ATEN_PRODUCT_ID)) ||
718 ((le16_to_cpu(dev->descriptor.idVendor) == ALCOR_VENDOR_ID) &&
719 (le16_to_cpu(dev->descriptor.idProduct) == ALCOR_PRODUCT_ID))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 if (interface != dev->actconfig->interface[0]) {
721 /* check out the endpoints of the other interface*/
722 iface_desc = dev->actconfig->interface[0]->cur_altsetting;
723 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
724 endpoint = &iface_desc->endpoint[i].desc;
Luiz Fernando N. Capitulino4fa1bbf2006-09-27 11:58:53 -0700725 if (usb_endpoint_is_int_in(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 /* we found a interrupt in endpoint */
727 dbg("found interrupt in for Prolific device on separate interface");
728 interrupt_in_endpoint[num_interrupt_in] = endpoint;
729 ++num_interrupt_in;
730 }
731 }
732 }
733
734 /* Now make sure the PL-2303 is configured correctly.
735 * If not, give up now and hope this hack will work
736 * properly during a later invocation of usb_serial_probe
737 */
738 if (num_bulk_in == 0 || num_bulk_out == 0) {
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100739 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 dev_info(&interface->dev, "PL-2303 hack: descriptors matched but endpoints did not\n");
741 kfree (serial);
742 return -ENODEV;
743 }
744 }
745 /* END HORRIBLE HACK FOR PL2303 */
746#endif
747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748#ifdef CONFIG_USB_SERIAL_GENERIC
749 if (type == &usb_serial_generic_device) {
750 num_ports = num_bulk_out;
751 if (num_ports == 0) {
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100752 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 dev_err(&interface->dev, "Generic device with no bulk out, not allowed.\n");
754 kfree (serial);
755 return -EIO;
756 }
757 }
758#endif
759 if (!num_ports) {
760 /* if this device type has a calc_num_ports function, call it */
761 if (type->calc_num_ports) {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700762 if (!try_module_get(type->driver.owner)) {
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100763 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 dev_err(&interface->dev, "module get failed, exiting\n");
765 kfree (serial);
766 return -EIO;
767 }
768 num_ports = type->calc_num_ports (serial);
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700769 module_put(type->driver.owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 }
771 if (!num_ports)
772 num_ports = type->num_ports;
773 }
774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 serial->num_ports = num_ports;
776 serial->num_bulk_in = num_bulk_in;
777 serial->num_bulk_out = num_bulk_out;
778 serial->num_interrupt_in = num_interrupt_in;
779 serial->num_interrupt_out = num_interrupt_out;
780
Alan Stern063a2da2007-10-10 16:24:06 -0400781 /* found all that we need */
782 dev_info(&interface->dev, "%s converter detected\n",
783 type->description);
784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 /* create our ports, we need as many as the max endpoints */
786 /* we don't use num_ports here cauz some devices have more endpoint pairs than ports */
787 max_endpoints = max(num_bulk_in, num_bulk_out);
788 max_endpoints = max(max_endpoints, num_interrupt_in);
789 max_endpoints = max(max_endpoints, num_interrupt_out);
790 max_endpoints = max(max_endpoints, (int)serial->num_ports);
791 serial->num_port_pointers = max_endpoints;
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100792 unlock_kernel();
793
Harvey Harrison441b62c2008-03-03 16:08:34 -0800794 dbg("%s - setting up %d port structures for this device", __func__, max_endpoints);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 for (i = 0; i < max_endpoints; ++i) {
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100796 port = kzalloc(sizeof(struct usb_serial_port), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 if (!port)
798 goto probe_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 port->serial = serial;
Greg Kroah-Hartman507ca9b2005-04-23 12:49:16 -0700800 spin_lock_init(&port->lock);
Luiz Fernando Capitulino1ce7dd22006-03-24 17:12:31 -0300801 mutex_init(&port->mutex);
David Howellsc4028952006-11-22 14:57:56 +0000802 INIT_WORK(&port->work, usb_serial_port_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 serial->port[i] = port;
804 }
805
806 /* set up the endpoint information */
807 for (i = 0; i < num_bulk_in; ++i) {
808 endpoint = bulk_in_endpoint[i];
809 port = serial->port[i];
810 port->read_urb = usb_alloc_urb (0, GFP_KERNEL);
811 if (!port->read_urb) {
812 dev_err(&interface->dev, "No free urbs available\n");
813 goto probe_error;
814 }
815 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
816 port->bulk_in_size = buffer_size;
817 port->bulk_in_endpointAddress = endpoint->bEndpointAddress;
818 port->bulk_in_buffer = kmalloc (buffer_size, GFP_KERNEL);
819 if (!port->bulk_in_buffer) {
820 dev_err(&interface->dev, "Couldn't allocate bulk_in_buffer\n");
821 goto probe_error;
822 }
823 usb_fill_bulk_urb (port->read_urb, dev,
824 usb_rcvbulkpipe (dev,
825 endpoint->bEndpointAddress),
826 port->bulk_in_buffer, buffer_size,
827 serial->type->read_bulk_callback,
828 port);
829 }
830
831 for (i = 0; i < num_bulk_out; ++i) {
832 endpoint = bulk_out_endpoint[i];
833 port = serial->port[i];
834 port->write_urb = usb_alloc_urb(0, GFP_KERNEL);
835 if (!port->write_urb) {
836 dev_err(&interface->dev, "No free urbs available\n");
837 goto probe_error;
838 }
839 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
840 port->bulk_out_size = buffer_size;
841 port->bulk_out_endpointAddress = endpoint->bEndpointAddress;
842 port->bulk_out_buffer = kmalloc (buffer_size, GFP_KERNEL);
843 if (!port->bulk_out_buffer) {
844 dev_err(&interface->dev, "Couldn't allocate bulk_out_buffer\n");
845 goto probe_error;
846 }
847 usb_fill_bulk_urb (port->write_urb, dev,
848 usb_sndbulkpipe (dev,
849 endpoint->bEndpointAddress),
850 port->bulk_out_buffer, buffer_size,
851 serial->type->write_bulk_callback,
852 port);
853 }
854
855 if (serial->type->read_int_callback) {
856 for (i = 0; i < num_interrupt_in; ++i) {
857 endpoint = interrupt_in_endpoint[i];
858 port = serial->port[i];
859 port->interrupt_in_urb = usb_alloc_urb(0, GFP_KERNEL);
860 if (!port->interrupt_in_urb) {
861 dev_err(&interface->dev, "No free urbs available\n");
862 goto probe_error;
863 }
864 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
865 port->interrupt_in_endpointAddress = endpoint->bEndpointAddress;
866 port->interrupt_in_buffer = kmalloc (buffer_size, GFP_KERNEL);
867 if (!port->interrupt_in_buffer) {
868 dev_err(&interface->dev, "Couldn't allocate interrupt_in_buffer\n");
869 goto probe_error;
870 }
871 usb_fill_int_urb (port->interrupt_in_urb, dev,
872 usb_rcvintpipe (dev,
873 endpoint->bEndpointAddress),
874 port->interrupt_in_buffer, buffer_size,
875 serial->type->read_int_callback, port,
876 endpoint->bInterval);
877 }
878 } else if (num_interrupt_in) {
879 dbg("the device claims to support interrupt in transfers, but read_int_callback is not defined");
880 }
881
882 if (serial->type->write_int_callback) {
883 for (i = 0; i < num_interrupt_out; ++i) {
884 endpoint = interrupt_out_endpoint[i];
885 port = serial->port[i];
886 port->interrupt_out_urb = usb_alloc_urb(0, GFP_KERNEL);
887 if (!port->interrupt_out_urb) {
888 dev_err(&interface->dev, "No free urbs available\n");
889 goto probe_error;
890 }
891 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
892 port->interrupt_out_size = buffer_size;
893 port->interrupt_out_endpointAddress = endpoint->bEndpointAddress;
894 port->interrupt_out_buffer = kmalloc (buffer_size, GFP_KERNEL);
895 if (!port->interrupt_out_buffer) {
896 dev_err(&interface->dev, "Couldn't allocate interrupt_out_buffer\n");
897 goto probe_error;
898 }
899 usb_fill_int_urb (port->interrupt_out_urb, dev,
900 usb_sndintpipe (dev,
901 endpoint->bEndpointAddress),
902 port->interrupt_out_buffer, buffer_size,
903 serial->type->write_int_callback, port,
904 endpoint->bInterval);
905 }
906 } else if (num_interrupt_out) {
907 dbg("the device claims to support interrupt out transfers, but write_int_callback is not defined");
908 }
909
910 /* if this device type has an attach function, call it */
911 if (type->attach) {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700912 if (!try_module_get(type->driver.owner)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 dev_err(&interface->dev, "module get failed, exiting\n");
914 goto probe_error;
915 }
916 retval = type->attach (serial);
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700917 module_put(type->driver.owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 if (retval < 0)
919 goto probe_error;
920 if (retval > 0) {
921 /* quietly accept this device, but don't bind to a serial port
922 * as it's about to disappear */
923 goto exit;
924 }
925 }
926
Oliver Neukum34ef50e2007-01-13 07:29:26 +0100927 if (get_free_serial (serial, num_ports, &minor) == NULL) {
928 dev_err(&interface->dev, "No more free serial devices\n");
929 goto probe_error;
930 }
Oliver Neukumc744f992007-02-26 15:43:00 +0100931 serial->minor = minor;
Oliver Neukum34ef50e2007-01-13 07:29:26 +0100932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 /* register all of the individual ports with the driver core */
934 for (i = 0; i < num_ports; ++i) {
935 port = serial->port[i];
936 port->dev.parent = &interface->dev;
937 port->dev.driver = NULL;
938 port->dev.bus = &usb_serial_bus_type;
939 port->dev.release = &port_release;
940
Kay Sievers0031a062008-05-02 06:02:41 +0200941 dev_set_name(&port->dev, "ttyUSB%d", port->number);
Kay Sievers7071a3c2008-05-02 06:02:41 +0200942 dbg ("%s - registering %s", __func__, dev_name(&port->dev));
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -0700943 retval = device_register(&port->dev);
944 if (retval)
945 dev_err(&port->dev, "Error registering port device, "
946 "continuing\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 }
948
949 usb_serial_console_init (debug, minor);
950
951exit:
952 /* success */
953 usb_set_intfdata (interface, serial);
954 return 0;
955
956probe_error:
957 for (i = 0; i < num_bulk_in; ++i) {
958 port = serial->port[i];
959 if (!port)
960 continue;
Mariusz Kozlowski95d43162006-11-08 15:36:51 +0100961 usb_free_urb(port->read_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 kfree(port->bulk_in_buffer);
963 }
964 for (i = 0; i < num_bulk_out; ++i) {
965 port = serial->port[i];
966 if (!port)
967 continue;
Mariusz Kozlowski95d43162006-11-08 15:36:51 +0100968 usb_free_urb(port->write_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 kfree(port->bulk_out_buffer);
970 }
971 for (i = 0; i < num_interrupt_in; ++i) {
972 port = serial->port[i];
973 if (!port)
974 continue;
Mariusz Kozlowski95d43162006-11-08 15:36:51 +0100975 usb_free_urb(port->interrupt_in_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 kfree(port->interrupt_in_buffer);
977 }
978 for (i = 0; i < num_interrupt_out; ++i) {
979 port = serial->port[i];
980 if (!port)
981 continue;
Mariusz Kozlowski95d43162006-11-08 15:36:51 +0100982 usb_free_urb(port->interrupt_out_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 kfree(port->interrupt_out_buffer);
984 }
985
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 /* free up any memory that we allocated */
987 for (i = 0; i < serial->num_port_pointers; ++i)
988 kfree(serial->port[i]);
989 kfree (serial);
990 return -EIO;
991}
992
993void usb_serial_disconnect(struct usb_interface *interface)
994{
995 int i;
996 struct usb_serial *serial = usb_get_intfdata (interface);
997 struct device *dev = &interface->dev;
998 struct usb_serial_port *port;
999
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +02001000 usb_serial_console_disconnect(serial);
Harvey Harrison441b62c2008-03-03 16:08:34 -08001001 dbg ("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Oliver Neukuma1cd7e92008-01-16 17:18:52 +01001003 mutex_lock(&serial->disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 usb_set_intfdata (interface, NULL);
Oliver Neukuma1cd7e92008-01-16 17:18:52 +01001005 /* must set a flag, to signal subdrivers */
1006 serial->disconnected = 1;
1007 for (i = 0; i < serial->num_ports; ++i) {
1008 port = serial->port[i];
1009 if (port) {
1010 if (port->tty)
1011 tty_hangup(port->tty);
1012 kill_traffic(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 }
Oliver Neukuma1cd7e92008-01-16 17:18:52 +01001015 /* let the last holder of this object
1016 * cause it to be cleaned up */
1017 mutex_unlock(&serial->disc_mutex);
1018 usb_serial_put(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 dev_info(dev, "device disconnected\n");
1020}
1021
Oliver Neukumec225592007-04-27 20:54:57 +02001022int usb_serial_suspend(struct usb_interface *intf, pm_message_t message)
1023{
1024 struct usb_serial *serial = usb_get_intfdata(intf);
1025 struct usb_serial_port *port;
1026 int i, r = 0;
1027
Oliver Neukume31c1882007-07-23 08:58:39 +02001028 for (i = 0; i < serial->num_ports; ++i) {
1029 port = serial->port[i];
1030 if (port)
1031 kill_traffic(port);
Oliver Neukumec225592007-04-27 20:54:57 +02001032 }
1033
1034 if (serial->type->suspend)
Oliver Neukume31c1882007-07-23 08:58:39 +02001035 r = serial->type->suspend(serial, message);
Oliver Neukumec225592007-04-27 20:54:57 +02001036
1037 return r;
1038}
1039EXPORT_SYMBOL(usb_serial_suspend);
1040
1041int usb_serial_resume(struct usb_interface *intf)
1042{
1043 struct usb_serial *serial = usb_get_intfdata(intf);
1044
Sarah Sharp8abaee22007-10-25 10:58:43 -07001045 if (serial->type->resume)
1046 return serial->type->resume(serial);
1047 return 0;
Oliver Neukumec225592007-04-27 20:54:57 +02001048}
1049EXPORT_SYMBOL(usb_serial_resume);
1050
Jeff Dikeb68e31d2006-10-02 02:17:18 -07001051static const struct tty_operations serial_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 .open = serial_open,
1053 .close = serial_close,
1054 .write = serial_write,
1055 .write_room = serial_write_room,
1056 .ioctl = serial_ioctl,
1057 .set_termios = serial_set_termios,
1058 .throttle = serial_throttle,
1059 .unthrottle = serial_unthrottle,
1060 .break_ctl = serial_break,
1061 .chars_in_buffer = serial_chars_in_buffer,
1062 .read_proc = serial_read_proc,
1063 .tiocmget = serial_tiocmget,
1064 .tiocmset = serial_tiocmset,
1065};
1066
1067struct tty_driver *usb_serial_tty_driver;
1068
1069static int __init usb_serial_init(void)
1070{
1071 int i;
1072 int result;
1073
1074 usb_serial_tty_driver = alloc_tty_driver(SERIAL_TTY_MINORS);
1075 if (!usb_serial_tty_driver)
1076 return -ENOMEM;
1077
1078 /* Initialize our global data */
1079 for (i = 0; i < SERIAL_TTY_MINORS; ++i) {
1080 serial_table[i] = NULL;
1081 }
1082
1083 result = bus_register(&usb_serial_bus_type);
1084 if (result) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001085 err("%s - registering bus driver failed", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 goto exit_bus;
1087 }
1088
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 usb_serial_tty_driver->owner = THIS_MODULE;
1090 usb_serial_tty_driver->driver_name = "usbserial";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 usb_serial_tty_driver->name = "ttyUSB";
1092 usb_serial_tty_driver->major = SERIAL_TTY_MAJOR;
1093 usb_serial_tty_driver->minor_start = 0;
1094 usb_serial_tty_driver->type = TTY_DRIVER_TYPE_SERIAL;
1095 usb_serial_tty_driver->subtype = SERIAL_TYPE_NORMAL;
Greg Kroah-Hartman331b8312005-06-20 21:15:16 -07001096 usb_serial_tty_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 usb_serial_tty_driver->init_termios = tty_std_termios;
1098 usb_serial_tty_driver->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL;
Alan Coxa5b6f602008-04-08 17:16:06 +01001099 usb_serial_tty_driver->init_termios.c_ispeed = 9600;
1100 usb_serial_tty_driver->init_termios.c_ospeed = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 tty_set_operations(usb_serial_tty_driver, &serial_ops);
1102 result = tty_register_driver(usb_serial_tty_driver);
1103 if (result) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001104 err("%s - tty_register_driver failed", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 goto exit_reg_driver;
1106 }
1107
1108 /* register the USB driver */
1109 result = usb_register(&usb_serial_driver);
1110 if (result < 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001111 err("%s - usb_register failed", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 goto exit_tty;
1113 }
1114
Greg Kroah-Hartman06299db2005-05-26 05:55:55 -07001115 /* register the generic driver, if we should */
1116 result = usb_serial_generic_register(debug);
1117 if (result < 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001118 err("%s - registering generic driver failed", __func__);
Greg Kroah-Hartman06299db2005-05-26 05:55:55 -07001119 goto exit_generic;
1120 }
1121
Greg Kroah-Hartman17a882f2005-06-20 21:15:16 -07001122 info(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
1124 return result;
1125
Greg Kroah-Hartman06299db2005-05-26 05:55:55 -07001126exit_generic:
1127 usb_deregister(&usb_serial_driver);
1128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129exit_tty:
1130 tty_unregister_driver(usb_serial_tty_driver);
1131
1132exit_reg_driver:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 bus_unregister(&usb_serial_bus_type);
1134
1135exit_bus:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001136 err ("%s - returning with error %d", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 put_tty_driver(usb_serial_tty_driver);
1138 return result;
1139}
1140
1141
1142static void __exit usb_serial_exit(void)
1143{
1144 usb_serial_console_exit();
1145
1146 usb_serial_generic_deregister();
1147
1148 usb_deregister(&usb_serial_driver);
1149 tty_unregister_driver(usb_serial_tty_driver);
1150 put_tty_driver(usb_serial_tty_driver);
1151 bus_unregister(&usb_serial_bus_type);
1152}
1153
1154
1155module_init(usb_serial_init);
1156module_exit(usb_serial_exit);
1157
1158#define set_to_generic_if_null(type, function) \
1159 do { \
1160 if (!type->function) { \
1161 type->function = usb_serial_generic_##function; \
1162 dbg("Had to override the " #function \
1163 " usb serial operation with the generic one.");\
1164 } \
1165 } while (0)
1166
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07001167static void fixup_generic(struct usb_serial_driver *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168{
1169 set_to_generic_if_null(device, open);
1170 set_to_generic_if_null(device, write);
1171 set_to_generic_if_null(device, close);
1172 set_to_generic_if_null(device, write_room);
1173 set_to_generic_if_null(device, chars_in_buffer);
1174 set_to_generic_if_null(device, read_bulk_callback);
1175 set_to_generic_if_null(device, write_bulk_callback);
1176 set_to_generic_if_null(device, shutdown);
Sarah Sharpf0fbd5b2007-11-13 17:10:09 -08001177 set_to_generic_if_null(device, resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178}
1179
Oliver Neukum4b10f0f2007-01-13 07:31:27 +01001180int usb_serial_register(struct usb_serial_driver *driver) /* must be called with BKL held */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181{
1182 int retval;
1183
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07001184 fixup_generic(driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -07001186 if (!driver->description)
1187 driver->description = driver->driver.name;
1188
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 /* Add this device to our list of devices */
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07001190 list_add(&driver->driver_list, &usb_serial_driver_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07001192 retval = usb_serial_bus_register(driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 if (retval) {
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -07001194 err("problem %d when registering driver %s", retval, driver->description);
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07001195 list_del(&driver->driver_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 }
1197 else
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -07001198 info("USB Serial support registered for %s", driver->description);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200 return retval;
1201}
1202
1203
Oliver Neukum4b10f0f2007-01-13 07:31:27 +01001204void usb_serial_deregister(struct usb_serial_driver *device) /* must be called with BKL held */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205{
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -07001206 info("USB Serial deregistering driver %s", device->description);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 list_del(&device->driver_list);
1208 usb_serial_bus_deregister(device);
1209}
1210
1211
1212
1213/* If the usb-serial core is built into the core, the usb-serial drivers
1214 need these symbols to load properly as modules. */
1215EXPORT_SYMBOL_GPL(usb_serial_register);
1216EXPORT_SYMBOL_GPL(usb_serial_deregister);
1217EXPORT_SYMBOL_GPL(usb_serial_probe);
1218EXPORT_SYMBOL_GPL(usb_serial_disconnect);
1219EXPORT_SYMBOL_GPL(usb_serial_port_softint);
1220
1221
1222/* Module information */
1223MODULE_AUTHOR( DRIVER_AUTHOR );
1224MODULE_DESCRIPTION( DRIVER_DESC );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225MODULE_LICENSE("GPL");
1226
1227module_param(debug, bool, S_IRUGO | S_IWUSR);
1228MODULE_PARM_DESC(debug, "Debug enabled or not");