blob: 4b1bd7def4a5a32243753431ffd526952c017368 [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
84 dbg("%s %d", __FUNCTION__, num_ports);
85
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 dbg("%s - minor base = %d", __FUNCTION__, *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
120 dbg("%s", __FUNCTION__);
121
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
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700138 dbg("%s - %s", __FUNCTION__, 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
190 dbg("%s", __FUNCTION__);
191
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
228 /* only call the device specific open if this
229 * is the first time the port is opened */
230 retval = serial->type->open(port, filp);
231 if (retval)
232 goto bailout_module_put;
233 }
234
Luiz Fernando Capitulino1ce7dd22006-03-24 17:12:31 -0300235 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 return 0;
237
238bailout_module_put:
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700239 module_put(serial->type->driver.owner);
Luiz Fernando Capitulino71a84162006-05-11 22:34:24 -0300240bailout_mutex_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 port->open_count = 0;
Frank Gevaertsb059c812006-06-14 15:52:05 +0200242 tty->driver_data = NULL;
243 port->tty = NULL;
Luiz Fernando Capitulino1ce7dd22006-03-24 17:12:31 -0300244 mutex_unlock(&port->mutex);
Luiz Fernando Capitulino71a84162006-05-11 22:34:24 -0300245bailout_kref_put:
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +0200246 usb_serial_put(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 return retval;
248}
249
250static void serial_close(struct tty_struct *tty, struct file * filp)
251{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200252 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 if (!port)
255 return;
256
257 dbg("%s - port %d", __FUNCTION__, port->number);
258
Luiz Fernando Capitulino1ce7dd22006-03-24 17:12:31 -0300259 mutex_lock(&port->mutex);
Luiz Fernando Capitulino8a4613f2005-11-28 19:16:07 -0200260
Greg Kroah-Hartman91c0bce2006-03-06 13:25:52 -0800261 if (port->open_count == 0) {
Luiz Fernando Capitulino1ce7dd22006-03-24 17:12:31 -0300262 mutex_unlock(&port->mutex);
Greg Kroah-Hartman91c0bce2006-03-06 13:25:52 -0800263 return;
264 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 --port->open_count;
267 if (port->open_count == 0) {
268 /* only call the device specific close if this
269 * port is being closed by the last owner */
270 port->serial->type->close(port, filp);
271
272 if (port->tty) {
273 if (port->tty->driver_data)
274 port->tty->driver_data = NULL;
275 port->tty = NULL;
276 }
277
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700278 module_put(port->serial->type->driver.owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 }
280
Luiz Fernando Capitulino1ce7dd22006-03-24 17:12:31 -0300281 mutex_unlock(&port->mutex);
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +0200282 usb_serial_put(port->serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283}
284
285static int serial_write (struct tty_struct * tty, const unsigned char *buf, int count)
286{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200287 struct usb_serial_port *port = tty->driver_data;
Oliver Neukum3ff4fd92007-01-13 07:32:27 +0100288 int retval = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +0200290 if (!port || port->serial->dev->state == USB_STATE_NOTATTACHED)
Luiz Fernando Capitulino487f9c62005-11-28 19:16:05 -0200291 goto exit;
292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 dbg("%s - port %d, %d byte(s)", __FUNCTION__, port->number, count);
294
295 if (!port->open_count) {
Oliver Neukum3ff4fd92007-01-13 07:32:27 +0100296 retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 dbg("%s - port not opened", __FUNCTION__);
298 goto exit;
299 }
300
301 /* pass on to the driver specific version of this function */
302 retval = port->serial->type->write(port, buf, count);
303
304exit:
305 return retval;
306}
307
308static int serial_write_room (struct tty_struct *tty)
309{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200310 struct usb_serial_port *port = tty->driver_data;
Luiz Fernando N. Capitulinodb54a532006-06-12 22:46:20 -0300311 int retval = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Luiz Fernando Capitulino487f9c62005-11-28 19:16:05 -0200313 if (!port)
314 goto exit;
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 dbg("%s - port %d", __FUNCTION__, port->number);
317
318 if (!port->open_count) {
319 dbg("%s - port not open", __FUNCTION__);
320 goto exit;
321 }
322
323 /* pass on to the driver specific version of this function */
324 retval = port->serial->type->write_room(port);
325
326exit:
327 return retval;
328}
329
330static int serial_chars_in_buffer (struct tty_struct *tty)
331{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200332 struct usb_serial_port *port = tty->driver_data;
Luiz Fernando N. Capitulinodb54a532006-06-12 22:46:20 -0300333 int retval = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Luiz Fernando Capitulino487f9c62005-11-28 19:16:05 -0200335 if (!port)
336 goto exit;
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 dbg("%s = port %d", __FUNCTION__, port->number);
339
340 if (!port->open_count) {
341 dbg("%s - port not open", __FUNCTION__);
342 goto exit;
343 }
344
345 /* pass on to the driver specific version of this function */
346 retval = port->serial->type->chars_in_buffer(port);
347
348exit:
349 return retval;
350}
351
352static void serial_throttle (struct tty_struct * tty)
353{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200354 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Luiz Fernando Capitulino487f9c62005-11-28 19:16:05 -0200356 if (!port)
357 return;
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 dbg("%s - port %d", __FUNCTION__, port->number);
360
361 if (!port->open_count) {
362 dbg ("%s - port not open", __FUNCTION__);
363 return;
364 }
365
366 /* pass on to the driver specific version of this function */
367 if (port->serial->type->throttle)
368 port->serial->type->throttle(port);
369}
370
371static void serial_unthrottle (struct tty_struct * tty)
372{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200373 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Luiz Fernando Capitulino487f9c62005-11-28 19:16:05 -0200375 if (!port)
376 return;
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 dbg("%s - port %d", __FUNCTION__, port->number);
379
380 if (!port->open_count) {
381 dbg("%s - port not open", __FUNCTION__);
382 return;
383 }
384
385 /* pass on to the driver specific version of this function */
386 if (port->serial->type->unthrottle)
387 port->serial->type->unthrottle(port);
388}
389
390static int serial_ioctl (struct tty_struct *tty, struct file * file, unsigned int cmd, unsigned long arg)
391{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200392 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 int retval = -ENODEV;
394
Luiz Fernando Capitulino487f9c62005-11-28 19:16:05 -0200395 if (!port)
396 goto exit;
397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 dbg("%s - port %d, cmd 0x%.4x", __FUNCTION__, port->number, cmd);
399
400 if (!port->open_count) {
401 dbg ("%s - port not open", __FUNCTION__);
402 goto exit;
403 }
404
405 /* pass on to the driver specific version of this function if it is available */
406 if (port->serial->type->ioctl)
407 retval = port->serial->type->ioctl(port, file, cmd, arg);
408 else
409 retval = -ENOIOCTLCMD;
410
411exit:
412 return retval;
413}
414
Alan Cox606d0992006-12-08 02:38:45 -0800415static void serial_set_termios (struct tty_struct *tty, struct ktermios * old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200417 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Luiz Fernando Capitulino487f9c62005-11-28 19:16:05 -0200419 if (!port)
420 return;
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 dbg("%s - port %d", __FUNCTION__, port->number);
423
424 if (!port->open_count) {
425 dbg("%s - port not open", __FUNCTION__);
426 return;
427 }
428
429 /* pass on to the driver specific version of this function if it is available */
430 if (port->serial->type->set_termios)
431 port->serial->type->set_termios(port, old);
432}
433
434static void serial_break (struct tty_struct *tty, int break_state)
435{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200436 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Luiz Fernando Capitulino487f9c62005-11-28 19:16:05 -0200438 if (!port)
439 return;
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 dbg("%s - port %d", __FUNCTION__, port->number);
442
443 if (!port->open_count) {
444 dbg("%s - port not open", __FUNCTION__);
445 return;
446 }
447
448 /* pass on to the driver specific version of this function if it is available */
449 if (port->serial->type->break_ctl)
450 port->serial->type->break_ctl(port, break_state);
451}
452
453static int serial_read_proc (char *page, char **start, off_t off, int count, int *eof, void *data)
454{
455 struct usb_serial *serial;
456 int length = 0;
457 int i;
458 off_t begin = 0;
459 char tmp[40];
460
461 dbg("%s", __FUNCTION__);
Greg Kroah-Hartman17a882f2005-06-20 21:15:16 -0700462 length += sprintf (page, "usbserinfo:1.0 driver:2.0\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 for (i = 0; i < SERIAL_TTY_MINORS && length < PAGE_SIZE; ++i) {
464 serial = usb_serial_get_by_index(i);
465 if (serial == NULL)
466 continue;
467
468 length += sprintf (page+length, "%d:", i);
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700469 if (serial->type->driver.owner)
470 length += sprintf (page+length, " module:%s", module_name(serial->type->driver.owner));
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700471 length += sprintf (page+length, " name:\"%s\"", serial->type->description);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 length += sprintf (page+length, " vendor:%04x product:%04x",
473 le16_to_cpu(serial->dev->descriptor.idVendor),
474 le16_to_cpu(serial->dev->descriptor.idProduct));
475 length += sprintf (page+length, " num_ports:%d", serial->num_ports);
476 length += sprintf (page+length, " port:%d", i - serial->minor + 1);
477
478 usb_make_path(serial->dev, tmp, sizeof(tmp));
479 length += sprintf (page+length, " path:%s", tmp);
480
481 length += sprintf (page+length, "\n");
Matthias Urlichs59925832006-09-11 12:35:20 +0200482 if ((length + begin) > (off + count)) {
483 usb_serial_put(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 goto done;
Matthias Urlichs59925832006-09-11 12:35:20 +0200485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 if ((length + begin) < off) {
487 begin += length;
488 length = 0;
489 }
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +0200490 usb_serial_put(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 }
492 *eof = 1;
493done:
494 if (off >= (length + begin))
495 return 0;
496 *start = page + (off-begin);
497 return ((count < begin+length-off) ? count : begin+length-off);
498}
499
500static int serial_tiocmget (struct tty_struct *tty, struct file *file)
501{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200502 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Luiz Fernando Capitulino487f9c62005-11-28 19:16:05 -0200504 if (!port)
Luiz Fernando N. Capitulinodb54a532006-06-12 22:46:20 -0300505 return -ENODEV;
Luiz Fernando Capitulino487f9c62005-11-28 19:16:05 -0200506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 dbg("%s - port %d", __FUNCTION__, port->number);
508
509 if (!port->open_count) {
510 dbg("%s - port not open", __FUNCTION__);
Luiz Fernando N. Capitulinodb54a532006-06-12 22:46:20 -0300511 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 }
513
514 if (port->serial->type->tiocmget)
515 return port->serial->type->tiocmget(port, file);
516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 return -EINVAL;
518}
519
520static int serial_tiocmset (struct tty_struct *tty, struct file *file,
521 unsigned int set, unsigned int clear)
522{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200523 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Luiz Fernando Capitulino487f9c62005-11-28 19:16:05 -0200525 if (!port)
Luiz Fernando N. Capitulinodb54a532006-06-12 22:46:20 -0300526 return -ENODEV;
Luiz Fernando Capitulino487f9c62005-11-28 19:16:05 -0200527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 dbg("%s - port %d", __FUNCTION__, port->number);
529
530 if (!port->open_count) {
531 dbg("%s - port not open", __FUNCTION__);
Luiz Fernando N. Capitulinodb54a532006-06-12 22:46:20 -0300532 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 }
534
535 if (port->serial->type->tiocmset)
536 return port->serial->type->tiocmset(port, file, set, clear);
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 return -EINVAL;
539}
540
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700541/*
542 * We would be calling tty_wakeup here, but unfortunately some line
543 * disciplines have an annoying habit of calling tty->write from
544 * the write wakeup callback (e.g. n_hdlc.c).
545 */
546void usb_serial_port_softint(struct usb_serial_port *port)
547{
548 schedule_work(&port->work);
549}
550
David Howellsc4028952006-11-22 14:57:56 +0000551static void usb_serial_port_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
David Howellsc4028952006-11-22 14:57:56 +0000553 struct usb_serial_port *port =
554 container_of(work, struct usb_serial_port, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 struct tty_struct *tty;
556
557 dbg("%s - port %d", __FUNCTION__, port->number);
558
559 if (!port)
560 return;
561
562 tty = port->tty;
563 if (!tty)
564 return;
565
566 tty_wakeup(tty);
567}
568
569static void port_release(struct device *dev)
570{
571 struct usb_serial_port *port = to_usb_serial_port(dev);
572
573 dbg ("%s - %s", __FUNCTION__, dev->bus_id);
Pete Zaitcev34f8e762006-06-21 15:00:45 -0700574 port_free(port);
575}
576
Oliver Neukum34ef50e2007-01-13 07:29:26 +0100577static void kill_traffic(struct usb_serial_port *port)
Pete Zaitcev34f8e762006-06-21 15:00:45 -0700578{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 usb_kill_urb(port->read_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 usb_kill_urb(port->write_urb);
Oliver Neukum5adceac2007-08-17 14:01:38 +0200581 /*
582 * This is tricky.
583 * Some drivers submit the read_urb in the
584 * handler for the write_urb or vice versa
585 * this order determines the order in which
586 * usb_kill_urb() must be used to reliably
587 * kill the URBs. As it is unknown here,
588 * both orders must be used in turn.
589 * The call below is not redundant.
590 */
591 usb_kill_urb(port->read_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 usb_kill_urb(port->interrupt_in_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 usb_kill_urb(port->interrupt_out_urb);
Oliver Neukum34ef50e2007-01-13 07:29:26 +0100594}
595
596static void port_free(struct usb_serial_port *port)
597{
598 kill_traffic(port);
599 usb_free_urb(port->read_urb);
600 usb_free_urb(port->write_urb);
601 usb_free_urb(port->interrupt_in_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 usb_free_urb(port->interrupt_out_urb);
603 kfree(port->bulk_in_buffer);
604 kfree(port->bulk_out_buffer);
605 kfree(port->interrupt_in_buffer);
606 kfree(port->interrupt_out_buffer);
Pete Zaitcev34f8e762006-06-21 15:00:45 -0700607 flush_scheduled_work(); /* port->work */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 kfree(port);
609}
610
611static struct usb_serial * create_serial (struct usb_device *dev,
612 struct usb_interface *interface,
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700613 struct usb_serial_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
615 struct usb_serial *serial;
616
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100617 serial = kzalloc(sizeof(*serial), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 if (!serial) {
619 dev_err(&dev->dev, "%s - out of memory\n", __FUNCTION__);
620 return NULL;
621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 serial->dev = usb_get_dev(dev);
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700623 serial->type = driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 serial->interface = interface;
625 kref_init(&serial->kref);
626
627 return serial;
628}
629
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +0100630static const struct usb_device_id *match_dynamic_id(struct usb_interface *intf,
631 struct usb_serial_driver *drv)
632{
633 struct usb_dynid *dynid;
634
635 spin_lock(&drv->dynids.lock);
636 list_for_each_entry(dynid, &drv->dynids.list, node) {
637 if (usb_match_one_id(intf, &dynid->id)) {
638 spin_unlock(&drv->dynids.lock);
639 return &dynid->id;
640 }
641 }
642 spin_unlock(&drv->dynids.lock);
643 return NULL;
644}
645
646static const struct usb_device_id *get_iface_id(struct usb_serial_driver *drv,
647 struct usb_interface *intf)
648{
649 const struct usb_device_id *id;
650
651 id = usb_match_id(intf, drv->id_table);
652 if (id) {
653 dbg("static descriptor matches");
654 goto exit;
655 }
656 id = match_dynamic_id(intf, drv);
657 if (id)
658 dbg("dynamic descriptor matches");
659exit:
660 return id;
661}
662
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700663static struct usb_serial_driver *search_serial_device(struct usb_interface *iface)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 const struct usb_device_id *id;
Alan Stern063a2da2007-10-10 16:24:06 -0400666 struct usb_serial_driver *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Adrian Bunk93b1fae2006-01-10 00:13:33 +0100668 /* Check if the usb id matches a known device */
Alan Stern063a2da2007-10-10 16:24:06 -0400669 list_for_each_entry(drv, &usb_serial_driver_list, driver_list) {
670 id = get_iface_id(drv, iface);
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +0100671 if (id)
Alan Stern063a2da2007-10-10 16:24:06 -0400672 return drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
674
675 return NULL;
676}
677
678int usb_serial_probe(struct usb_interface *interface,
679 const struct usb_device_id *id)
680{
681 struct usb_device *dev = interface_to_usbdev (interface);
682 struct usb_serial *serial = NULL;
683 struct usb_serial_port *port;
684 struct usb_host_interface *iface_desc;
685 struct usb_endpoint_descriptor *endpoint;
686 struct usb_endpoint_descriptor *interrupt_in_endpoint[MAX_NUM_PORTS];
687 struct usb_endpoint_descriptor *interrupt_out_endpoint[MAX_NUM_PORTS];
688 struct usb_endpoint_descriptor *bulk_in_endpoint[MAX_NUM_PORTS];
689 struct usb_endpoint_descriptor *bulk_out_endpoint[MAX_NUM_PORTS];
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700690 struct usb_serial_driver *type = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 int retval;
692 int minor;
693 int buffer_size;
694 int i;
695 int num_interrupt_in = 0;
696 int num_interrupt_out = 0;
697 int num_bulk_in = 0;
698 int num_bulk_out = 0;
699 int num_ports = 0;
700 int max_endpoints;
701
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100702 lock_kernel(); /* guard against unloading a serial driver module */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 type = search_serial_device(interface);
704 if (!type) {
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100705 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 dbg("none matched");
707 return -ENODEV;
708 }
709
710 serial = create_serial (dev, interface, type);
711 if (!serial) {
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100712 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 dev_err(&interface->dev, "%s - out of memory\n", __FUNCTION__);
714 return -ENOMEM;
715 }
716
717 /* if this device type has a probe function, call it */
718 if (type->probe) {
719 const struct usb_device_id *id;
720
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700721 if (!try_module_get(type->driver.owner)) {
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100722 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 dev_err(&interface->dev, "module get failed, exiting\n");
724 kfree (serial);
725 return -EIO;
726 }
727
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +0100728 id = get_iface_id(type, interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 retval = type->probe(serial, id);
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700730 module_put(type->driver.owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732 if (retval) {
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100733 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 dbg ("sub driver rejected device");
735 kfree (serial);
736 return retval;
737 }
738 }
739
740 /* descriptor matches, let's find the endpoints needed */
741 /* check out the endpoints */
742 iface_desc = interface->cur_altsetting;
743 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
744 endpoint = &iface_desc->endpoint[i].desc;
Luiz Fernando N. Capitulino4fa1bbf2006-09-27 11:58:53 -0700745
746 if (usb_endpoint_is_bulk_in(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 /* we found a bulk in endpoint */
748 dbg("found bulk in on endpoint %d", i);
749 bulk_in_endpoint[num_bulk_in] = endpoint;
750 ++num_bulk_in;
751 }
752
Luiz Fernando N. Capitulino4fa1bbf2006-09-27 11:58:53 -0700753 if (usb_endpoint_is_bulk_out(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 /* we found a bulk out endpoint */
755 dbg("found bulk out on endpoint %d", i);
756 bulk_out_endpoint[num_bulk_out] = endpoint;
757 ++num_bulk_out;
758 }
Luiz Fernando N. Capitulino4fa1bbf2006-09-27 11:58:53 -0700759
760 if (usb_endpoint_is_int_in(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 /* we found a interrupt in endpoint */
762 dbg("found interrupt in on endpoint %d", i);
763 interrupt_in_endpoint[num_interrupt_in] = endpoint;
764 ++num_interrupt_in;
765 }
766
Luiz Fernando N. Capitulino4fa1bbf2006-09-27 11:58:53 -0700767 if (usb_endpoint_is_int_out(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 /* we found an interrupt out endpoint */
769 dbg("found interrupt out on endpoint %d", i);
770 interrupt_out_endpoint[num_interrupt_out] = endpoint;
771 ++num_interrupt_out;
772 }
773 }
774
775#if defined(CONFIG_USB_SERIAL_PL2303) || defined(CONFIG_USB_SERIAL_PL2303_MODULE)
776 /* BEGIN HORRIBLE HACK FOR PL2303 */
777 /* this is needed due to the looney way its endpoints are set up */
778 if (((le16_to_cpu(dev->descriptor.idVendor) == PL2303_VENDOR_ID) &&
779 (le16_to_cpu(dev->descriptor.idProduct) == PL2303_PRODUCT_ID)) ||
780 ((le16_to_cpu(dev->descriptor.idVendor) == ATEN_VENDOR_ID) &&
Johannes Steingraeber8fd80132006-09-16 16:17:34 +0200781 (le16_to_cpu(dev->descriptor.idProduct) == ATEN_PRODUCT_ID)) ||
782 ((le16_to_cpu(dev->descriptor.idVendor) == ALCOR_VENDOR_ID) &&
783 (le16_to_cpu(dev->descriptor.idProduct) == ALCOR_PRODUCT_ID))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 if (interface != dev->actconfig->interface[0]) {
785 /* check out the endpoints of the other interface*/
786 iface_desc = dev->actconfig->interface[0]->cur_altsetting;
787 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
788 endpoint = &iface_desc->endpoint[i].desc;
Luiz Fernando N. Capitulino4fa1bbf2006-09-27 11:58:53 -0700789 if (usb_endpoint_is_int_in(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 /* we found a interrupt in endpoint */
791 dbg("found interrupt in for Prolific device on separate interface");
792 interrupt_in_endpoint[num_interrupt_in] = endpoint;
793 ++num_interrupt_in;
794 }
795 }
796 }
797
798 /* Now make sure the PL-2303 is configured correctly.
799 * If not, give up now and hope this hack will work
800 * properly during a later invocation of usb_serial_probe
801 */
802 if (num_bulk_in == 0 || num_bulk_out == 0) {
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100803 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 dev_info(&interface->dev, "PL-2303 hack: descriptors matched but endpoints did not\n");
805 kfree (serial);
806 return -ENODEV;
807 }
808 }
809 /* END HORRIBLE HACK FOR PL2303 */
810#endif
811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812#ifdef CONFIG_USB_SERIAL_GENERIC
813 if (type == &usb_serial_generic_device) {
814 num_ports = num_bulk_out;
815 if (num_ports == 0) {
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100816 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 dev_err(&interface->dev, "Generic device with no bulk out, not allowed.\n");
818 kfree (serial);
819 return -EIO;
820 }
821 }
822#endif
823 if (!num_ports) {
824 /* if this device type has a calc_num_ports function, call it */
825 if (type->calc_num_ports) {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700826 if (!try_module_get(type->driver.owner)) {
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100827 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 dev_err(&interface->dev, "module get failed, exiting\n");
829 kfree (serial);
830 return -EIO;
831 }
832 num_ports = type->calc_num_ports (serial);
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700833 module_put(type->driver.owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 }
835 if (!num_ports)
836 num_ports = type->num_ports;
837 }
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 serial->num_ports = num_ports;
840 serial->num_bulk_in = num_bulk_in;
841 serial->num_bulk_out = num_bulk_out;
842 serial->num_interrupt_in = num_interrupt_in;
843 serial->num_interrupt_out = num_interrupt_out;
844
Alan Stern063a2da2007-10-10 16:24:06 -0400845 /* check that the device meets the driver's requirements */
846 if ((type->num_interrupt_in != NUM_DONT_CARE &&
847 type->num_interrupt_in != num_interrupt_in)
848 || (type->num_interrupt_out != NUM_DONT_CARE &&
849 type->num_interrupt_out != num_interrupt_out)
850 || (type->num_bulk_in != NUM_DONT_CARE &&
851 type->num_bulk_in != num_bulk_in)
852 || (type->num_bulk_out != NUM_DONT_CARE &&
853 type->num_bulk_out != num_bulk_out)) {
854 dbg("wrong number of endpoints");
855 kfree(serial);
856 return -EIO;
857 }
858
859 /* found all that we need */
860 dev_info(&interface->dev, "%s converter detected\n",
861 type->description);
862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 /* create our ports, we need as many as the max endpoints */
864 /* we don't use num_ports here cauz some devices have more endpoint pairs than ports */
865 max_endpoints = max(num_bulk_in, num_bulk_out);
866 max_endpoints = max(max_endpoints, num_interrupt_in);
867 max_endpoints = max(max_endpoints, num_interrupt_out);
868 max_endpoints = max(max_endpoints, (int)serial->num_ports);
869 serial->num_port_pointers = max_endpoints;
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100870 unlock_kernel();
871
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 dbg("%s - setting up %d port structures for this device", __FUNCTION__, max_endpoints);
873 for (i = 0; i < max_endpoints; ++i) {
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100874 port = kzalloc(sizeof(struct usb_serial_port), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 if (!port)
876 goto probe_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 port->serial = serial;
Greg Kroah-Hartman507ca9b2005-04-23 12:49:16 -0700878 spin_lock_init(&port->lock);
Luiz Fernando Capitulino1ce7dd22006-03-24 17:12:31 -0300879 mutex_init(&port->mutex);
David Howellsc4028952006-11-22 14:57:56 +0000880 INIT_WORK(&port->work, usb_serial_port_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 serial->port[i] = port;
882 }
883
884 /* set up the endpoint information */
885 for (i = 0; i < num_bulk_in; ++i) {
886 endpoint = bulk_in_endpoint[i];
887 port = serial->port[i];
888 port->read_urb = usb_alloc_urb (0, GFP_KERNEL);
889 if (!port->read_urb) {
890 dev_err(&interface->dev, "No free urbs available\n");
891 goto probe_error;
892 }
893 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
894 port->bulk_in_size = buffer_size;
895 port->bulk_in_endpointAddress = endpoint->bEndpointAddress;
896 port->bulk_in_buffer = kmalloc (buffer_size, GFP_KERNEL);
897 if (!port->bulk_in_buffer) {
898 dev_err(&interface->dev, "Couldn't allocate bulk_in_buffer\n");
899 goto probe_error;
900 }
901 usb_fill_bulk_urb (port->read_urb, dev,
902 usb_rcvbulkpipe (dev,
903 endpoint->bEndpointAddress),
904 port->bulk_in_buffer, buffer_size,
905 serial->type->read_bulk_callback,
906 port);
907 }
908
909 for (i = 0; i < num_bulk_out; ++i) {
910 endpoint = bulk_out_endpoint[i];
911 port = serial->port[i];
912 port->write_urb = usb_alloc_urb(0, GFP_KERNEL);
913 if (!port->write_urb) {
914 dev_err(&interface->dev, "No free urbs available\n");
915 goto probe_error;
916 }
917 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
918 port->bulk_out_size = buffer_size;
919 port->bulk_out_endpointAddress = endpoint->bEndpointAddress;
920 port->bulk_out_buffer = kmalloc (buffer_size, GFP_KERNEL);
921 if (!port->bulk_out_buffer) {
922 dev_err(&interface->dev, "Couldn't allocate bulk_out_buffer\n");
923 goto probe_error;
924 }
925 usb_fill_bulk_urb (port->write_urb, dev,
926 usb_sndbulkpipe (dev,
927 endpoint->bEndpointAddress),
928 port->bulk_out_buffer, buffer_size,
929 serial->type->write_bulk_callback,
930 port);
931 }
932
933 if (serial->type->read_int_callback) {
934 for (i = 0; i < num_interrupt_in; ++i) {
935 endpoint = interrupt_in_endpoint[i];
936 port = serial->port[i];
937 port->interrupt_in_urb = usb_alloc_urb(0, GFP_KERNEL);
938 if (!port->interrupt_in_urb) {
939 dev_err(&interface->dev, "No free urbs available\n");
940 goto probe_error;
941 }
942 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
943 port->interrupt_in_endpointAddress = endpoint->bEndpointAddress;
944 port->interrupt_in_buffer = kmalloc (buffer_size, GFP_KERNEL);
945 if (!port->interrupt_in_buffer) {
946 dev_err(&interface->dev, "Couldn't allocate interrupt_in_buffer\n");
947 goto probe_error;
948 }
949 usb_fill_int_urb (port->interrupt_in_urb, dev,
950 usb_rcvintpipe (dev,
951 endpoint->bEndpointAddress),
952 port->interrupt_in_buffer, buffer_size,
953 serial->type->read_int_callback, port,
954 endpoint->bInterval);
955 }
956 } else if (num_interrupt_in) {
957 dbg("the device claims to support interrupt in transfers, but read_int_callback is not defined");
958 }
959
960 if (serial->type->write_int_callback) {
961 for (i = 0; i < num_interrupt_out; ++i) {
962 endpoint = interrupt_out_endpoint[i];
963 port = serial->port[i];
964 port->interrupt_out_urb = usb_alloc_urb(0, GFP_KERNEL);
965 if (!port->interrupt_out_urb) {
966 dev_err(&interface->dev, "No free urbs available\n");
967 goto probe_error;
968 }
969 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
970 port->interrupt_out_size = buffer_size;
971 port->interrupt_out_endpointAddress = endpoint->bEndpointAddress;
972 port->interrupt_out_buffer = kmalloc (buffer_size, GFP_KERNEL);
973 if (!port->interrupt_out_buffer) {
974 dev_err(&interface->dev, "Couldn't allocate interrupt_out_buffer\n");
975 goto probe_error;
976 }
977 usb_fill_int_urb (port->interrupt_out_urb, dev,
978 usb_sndintpipe (dev,
979 endpoint->bEndpointAddress),
980 port->interrupt_out_buffer, buffer_size,
981 serial->type->write_int_callback, port,
982 endpoint->bInterval);
983 }
984 } else if (num_interrupt_out) {
985 dbg("the device claims to support interrupt out transfers, but write_int_callback is not defined");
986 }
987
988 /* if this device type has an attach function, call it */
989 if (type->attach) {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700990 if (!try_module_get(type->driver.owner)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 dev_err(&interface->dev, "module get failed, exiting\n");
992 goto probe_error;
993 }
994 retval = type->attach (serial);
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700995 module_put(type->driver.owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 if (retval < 0)
997 goto probe_error;
998 if (retval > 0) {
999 /* quietly accept this device, but don't bind to a serial port
1000 * as it's about to disappear */
1001 goto exit;
1002 }
1003 }
1004
Oliver Neukum34ef50e2007-01-13 07:29:26 +01001005 if (get_free_serial (serial, num_ports, &minor) == NULL) {
1006 dev_err(&interface->dev, "No more free serial devices\n");
1007 goto probe_error;
1008 }
Oliver Neukumc744f992007-02-26 15:43:00 +01001009 serial->minor = minor;
Oliver Neukum34ef50e2007-01-13 07:29:26 +01001010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 /* register all of the individual ports with the driver core */
1012 for (i = 0; i < num_ports; ++i) {
1013 port = serial->port[i];
1014 port->dev.parent = &interface->dev;
1015 port->dev.driver = NULL;
1016 port->dev.bus = &usb_serial_bus_type;
1017 port->dev.release = &port_release;
1018
1019 snprintf (&port->dev.bus_id[0], sizeof(port->dev.bus_id), "ttyUSB%d", port->number);
1020 dbg ("%s - registering %s", __FUNCTION__, port->dev.bus_id);
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -07001021 retval = device_register(&port->dev);
1022 if (retval)
1023 dev_err(&port->dev, "Error registering port device, "
1024 "continuing\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 }
1026
1027 usb_serial_console_init (debug, minor);
1028
1029exit:
1030 /* success */
1031 usb_set_intfdata (interface, serial);
1032 return 0;
1033
1034probe_error:
1035 for (i = 0; i < num_bulk_in; ++i) {
1036 port = serial->port[i];
1037 if (!port)
1038 continue;
Mariusz Kozlowski95d43162006-11-08 15:36:51 +01001039 usb_free_urb(port->read_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 kfree(port->bulk_in_buffer);
1041 }
1042 for (i = 0; i < num_bulk_out; ++i) {
1043 port = serial->port[i];
1044 if (!port)
1045 continue;
Mariusz Kozlowski95d43162006-11-08 15:36:51 +01001046 usb_free_urb(port->write_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 kfree(port->bulk_out_buffer);
1048 }
1049 for (i = 0; i < num_interrupt_in; ++i) {
1050 port = serial->port[i];
1051 if (!port)
1052 continue;
Mariusz Kozlowski95d43162006-11-08 15:36:51 +01001053 usb_free_urb(port->interrupt_in_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 kfree(port->interrupt_in_buffer);
1055 }
1056 for (i = 0; i < num_interrupt_out; ++i) {
1057 port = serial->port[i];
1058 if (!port)
1059 continue;
Mariusz Kozlowski95d43162006-11-08 15:36:51 +01001060 usb_free_urb(port->interrupt_out_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 kfree(port->interrupt_out_buffer);
1062 }
1063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 /* free up any memory that we allocated */
1065 for (i = 0; i < serial->num_port_pointers; ++i)
1066 kfree(serial->port[i]);
1067 kfree (serial);
1068 return -EIO;
1069}
1070
1071void usb_serial_disconnect(struct usb_interface *interface)
1072{
1073 int i;
1074 struct usb_serial *serial = usb_get_intfdata (interface);
1075 struct device *dev = &interface->dev;
1076 struct usb_serial_port *port;
1077
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +02001078 usb_serial_console_disconnect(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 dbg ("%s", __FUNCTION__);
1080
1081 usb_set_intfdata (interface, NULL);
1082 if (serial) {
1083 for (i = 0; i < serial->num_ports; ++i) {
1084 port = serial->port[i];
Oliver Neukum34ef50e2007-01-13 07:29:26 +01001085 if (port) {
1086 if (port->tty)
1087 tty_hangup(port->tty);
1088 kill_traffic(port);
1089 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 }
1091 /* let the last holder of this object
1092 * cause it to be cleaned up */
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +02001093 usb_serial_put(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 }
1095 dev_info(dev, "device disconnected\n");
1096}
1097
Oliver Neukumec225592007-04-27 20:54:57 +02001098int usb_serial_suspend(struct usb_interface *intf, pm_message_t message)
1099{
1100 struct usb_serial *serial = usb_get_intfdata(intf);
1101 struct usb_serial_port *port;
1102 int i, r = 0;
1103
Oliver Neukume31c1882007-07-23 08:58:39 +02001104 if (!serial) /* device has been disconnected */
1105 return 0;
1106
1107 for (i = 0; i < serial->num_ports; ++i) {
1108 port = serial->port[i];
1109 if (port)
1110 kill_traffic(port);
Oliver Neukumec225592007-04-27 20:54:57 +02001111 }
1112
1113 if (serial->type->suspend)
Oliver Neukume31c1882007-07-23 08:58:39 +02001114 r = serial->type->suspend(serial, message);
Oliver Neukumec225592007-04-27 20:54:57 +02001115
1116 return r;
1117}
1118EXPORT_SYMBOL(usb_serial_suspend);
1119
1120int usb_serial_resume(struct usb_interface *intf)
1121{
1122 struct usb_serial *serial = usb_get_intfdata(intf);
1123
1124 return serial->type->resume(serial);
1125}
1126EXPORT_SYMBOL(usb_serial_resume);
1127
Jeff Dikeb68e31d2006-10-02 02:17:18 -07001128static const struct tty_operations serial_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 .open = serial_open,
1130 .close = serial_close,
1131 .write = serial_write,
1132 .write_room = serial_write_room,
1133 .ioctl = serial_ioctl,
1134 .set_termios = serial_set_termios,
1135 .throttle = serial_throttle,
1136 .unthrottle = serial_unthrottle,
1137 .break_ctl = serial_break,
1138 .chars_in_buffer = serial_chars_in_buffer,
1139 .read_proc = serial_read_proc,
1140 .tiocmget = serial_tiocmget,
1141 .tiocmset = serial_tiocmset,
1142};
1143
1144struct tty_driver *usb_serial_tty_driver;
1145
1146static int __init usb_serial_init(void)
1147{
1148 int i;
1149 int result;
1150
1151 usb_serial_tty_driver = alloc_tty_driver(SERIAL_TTY_MINORS);
1152 if (!usb_serial_tty_driver)
1153 return -ENOMEM;
1154
1155 /* Initialize our global data */
1156 for (i = 0; i < SERIAL_TTY_MINORS; ++i) {
1157 serial_table[i] = NULL;
1158 }
1159
1160 result = bus_register(&usb_serial_bus_type);
1161 if (result) {
1162 err("%s - registering bus driver failed", __FUNCTION__);
1163 goto exit_bus;
1164 }
1165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 usb_serial_tty_driver->owner = THIS_MODULE;
1167 usb_serial_tty_driver->driver_name = "usbserial";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 usb_serial_tty_driver->name = "ttyUSB";
1169 usb_serial_tty_driver->major = SERIAL_TTY_MAJOR;
1170 usb_serial_tty_driver->minor_start = 0;
1171 usb_serial_tty_driver->type = TTY_DRIVER_TYPE_SERIAL;
1172 usb_serial_tty_driver->subtype = SERIAL_TYPE_NORMAL;
Greg Kroah-Hartman331b8312005-06-20 21:15:16 -07001173 usb_serial_tty_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 usb_serial_tty_driver->init_termios = tty_std_termios;
1175 usb_serial_tty_driver->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL;
1176 tty_set_operations(usb_serial_tty_driver, &serial_ops);
1177 result = tty_register_driver(usb_serial_tty_driver);
1178 if (result) {
1179 err("%s - tty_register_driver failed", __FUNCTION__);
1180 goto exit_reg_driver;
1181 }
1182
1183 /* register the USB driver */
1184 result = usb_register(&usb_serial_driver);
1185 if (result < 0) {
1186 err("%s - usb_register failed", __FUNCTION__);
1187 goto exit_tty;
1188 }
1189
Greg Kroah-Hartman06299db2005-05-26 05:55:55 -07001190 /* register the generic driver, if we should */
1191 result = usb_serial_generic_register(debug);
1192 if (result < 0) {
1193 err("%s - registering generic driver failed", __FUNCTION__);
1194 goto exit_generic;
1195 }
1196
Greg Kroah-Hartman17a882f2005-06-20 21:15:16 -07001197 info(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
1199 return result;
1200
Greg Kroah-Hartman06299db2005-05-26 05:55:55 -07001201exit_generic:
1202 usb_deregister(&usb_serial_driver);
1203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204exit_tty:
1205 tty_unregister_driver(usb_serial_tty_driver);
1206
1207exit_reg_driver:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 bus_unregister(&usb_serial_bus_type);
1209
1210exit_bus:
1211 err ("%s - returning with error %d", __FUNCTION__, result);
1212 put_tty_driver(usb_serial_tty_driver);
1213 return result;
1214}
1215
1216
1217static void __exit usb_serial_exit(void)
1218{
1219 usb_serial_console_exit();
1220
1221 usb_serial_generic_deregister();
1222
1223 usb_deregister(&usb_serial_driver);
1224 tty_unregister_driver(usb_serial_tty_driver);
1225 put_tty_driver(usb_serial_tty_driver);
1226 bus_unregister(&usb_serial_bus_type);
1227}
1228
1229
1230module_init(usb_serial_init);
1231module_exit(usb_serial_exit);
1232
1233#define set_to_generic_if_null(type, function) \
1234 do { \
1235 if (!type->function) { \
1236 type->function = usb_serial_generic_##function; \
1237 dbg("Had to override the " #function \
1238 " usb serial operation with the generic one.");\
1239 } \
1240 } while (0)
1241
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07001242static void fixup_generic(struct usb_serial_driver *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243{
1244 set_to_generic_if_null(device, open);
1245 set_to_generic_if_null(device, write);
1246 set_to_generic_if_null(device, close);
1247 set_to_generic_if_null(device, write_room);
1248 set_to_generic_if_null(device, chars_in_buffer);
1249 set_to_generic_if_null(device, read_bulk_callback);
1250 set_to_generic_if_null(device, write_bulk_callback);
1251 set_to_generic_if_null(device, shutdown);
1252}
1253
Oliver Neukum4b10f0f2007-01-13 07:31:27 +01001254int usb_serial_register(struct usb_serial_driver *driver) /* must be called with BKL held */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255{
1256 int retval;
1257
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07001258 fixup_generic(driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -07001260 if (!driver->description)
1261 driver->description = driver->driver.name;
1262
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 /* Add this device to our list of devices */
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07001264 list_add(&driver->driver_list, &usb_serial_driver_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07001266 retval = usb_serial_bus_register(driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 if (retval) {
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -07001268 err("problem %d when registering driver %s", retval, driver->description);
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07001269 list_del(&driver->driver_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 }
1271 else
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -07001272 info("USB Serial support registered for %s", driver->description);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
1274 return retval;
1275}
1276
1277
Oliver Neukum4b10f0f2007-01-13 07:31:27 +01001278void usb_serial_deregister(struct usb_serial_driver *device) /* must be called with BKL held */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279{
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -07001280 info("USB Serial deregistering driver %s", device->description);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 list_del(&device->driver_list);
1282 usb_serial_bus_deregister(device);
1283}
1284
1285
1286
1287/* If the usb-serial core is built into the core, the usb-serial drivers
1288 need these symbols to load properly as modules. */
1289EXPORT_SYMBOL_GPL(usb_serial_register);
1290EXPORT_SYMBOL_GPL(usb_serial_deregister);
1291EXPORT_SYMBOL_GPL(usb_serial_probe);
1292EXPORT_SYMBOL_GPL(usb_serial_disconnect);
1293EXPORT_SYMBOL_GPL(usb_serial_port_softint);
1294
1295
1296/* Module information */
1297MODULE_AUTHOR( DRIVER_AUTHOR );
1298MODULE_DESCRIPTION( DRIVER_DESC );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299MODULE_LICENSE("GPL");
1300
1301module_param(debug, bool, S_IRUGO | S_IWUSR);
1302MODULE_PARM_DESC(debug, "Debug enabled or not");