blob: ffaed8ace0665cf5960ed7655d999abb2953c354 [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)
Alan Cox95da3102008-07-22 11:09:07 +0100146 serial->port[i]->port.count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
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
Alan Cox95da3102008-07-22 11:09:07 +0100211 ++port->port.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
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;
Alan Cox95da3102008-07-22 11:09:07 +0100216 port->port.tty = tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Alan Cox95da3102008-07-22 11:09:07 +0100218 if (port->port.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 */
Alan Cox95da3102008-07-22 11:09:07 +0100233 retval = serial->type->open(tty, port, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 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:
Alan Cox95da3102008-07-22 11:09:07 +0100246 port->port.count = 0;
Frank Gevaertsb059c812006-06-14 15:52:05 +0200247 tty->driver_data = NULL;
Alan Cox95da3102008-07-22 11:09:07 +0100248 port->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
Alan Cox95da3102008-07-22 11:09:07 +0100266 if (port->port.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
Alan Cox95da3102008-07-22 11:09:07 +0100271 --port->port.count;
272 if (port->port.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 */
Alan Cox95da3102008-07-22 11:09:07 +0100275 port->serial->type->close(tty, port, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Alan Cox95da3102008-07-22 11:09:07 +0100277 if (port->port.count == (port->console? 1 : 0)) {
278 if (port->port.tty) {
279 if (port->port.tty->driver_data)
280 port->port.tty->driver_data = NULL;
281 port->port.tty = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
284
Alan Cox95da3102008-07-22 11:09:07 +0100285 if (port->port.count == 0) {
Oliver Neukum62ad2962008-06-25 13:32:49 +0200286 mutex_lock(&port->serial->disc_mutex);
287 if (!port->serial->disconnected)
288 usb_autopm_put_interface(port->serial->interface);
289 mutex_unlock(&port->serial->disc_mutex);
Aristeu Rozanski9a6b1ef2007-11-12 15:15:02 -0500290 module_put(port->serial->type->driver.owner);
Sarah Sharpf0fbd5b2007-11-13 17:10:09 -0800291 }
Aristeu Rozanski9a6b1ef2007-11-12 15:15:02 -0500292
Luiz Fernando Capitulino1ce7dd22006-03-24 17:12:31 -0300293 mutex_unlock(&port->mutex);
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +0200294 usb_serial_put(port->serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295}
296
297static int serial_write (struct tty_struct * tty, const unsigned char *buf, int count)
298{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200299 struct usb_serial_port *port = tty->driver_data;
Oliver Neukum3ff4fd92007-01-13 07:32:27 +0100300 int retval = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Alan Coxf34d7a52008-04-30 00:54:13 -0700302 if (port->serial->dev->state == USB_STATE_NOTATTACHED)
Luiz Fernando Capitulino487f9c62005-11-28 19:16:05 -0200303 goto exit;
304
Harvey Harrison441b62c2008-03-03 16:08:34 -0800305 dbg("%s - port %d, %d byte(s)", __func__, port->number, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Alan Cox95da3102008-07-22 11:09:07 +0100307 /* count is managed under the mutex lock for the tty so cannot
Alan Coxf34d7a52008-04-30 00:54:13 -0700308 drop to zero until after the last close completes */
Alan Cox95da3102008-07-22 11:09:07 +0100309 WARN_ON(!port->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 /* pass on to the driver specific version of this function */
Alan Cox95da3102008-07-22 11:09:07 +0100312 retval = port->serial->type->write(tty, port, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314exit:
315 return retval;
316}
317
318static int serial_write_room (struct tty_struct *tty)
319{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200320 struct usb_serial_port *port = tty->driver_data;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800321 dbg("%s - port %d", __func__, port->number);
Alan Cox95da3102008-07-22 11:09:07 +0100322 WARN_ON(!port->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 /* pass on to the driver specific version of this function */
Alan Cox95da3102008-07-22 11:09:07 +0100324 return port->serial->type->write_room(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
327static int serial_chars_in_buffer (struct tty_struct *tty)
328{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200329 struct usb_serial_port *port = tty->driver_data;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800330 dbg("%s = port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Alan Cox95da3102008-07-22 11:09:07 +0100332 WARN_ON(!port->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 /* pass on to the driver specific version of this function */
Alan Cox95da3102008-07-22 11:09:07 +0100334 return port->serial->type->chars_in_buffer(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
337static void serial_throttle (struct tty_struct * tty)
338{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200339 struct usb_serial_port *port = tty->driver_data;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800340 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Alan Cox95da3102008-07-22 11:09:07 +0100342 WARN_ON(!port->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 /* pass on to the driver specific version of this function */
344 if (port->serial->type->throttle)
Alan Cox95da3102008-07-22 11:09:07 +0100345 port->serial->type->throttle(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346}
347
348static void serial_unthrottle (struct tty_struct * tty)
349{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200350 struct usb_serial_port *port = tty->driver_data;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800351 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Alan Cox95da3102008-07-22 11:09:07 +0100353 WARN_ON(!port->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 /* pass on to the driver specific version of this function */
355 if (port->serial->type->unthrottle)
Alan Cox95da3102008-07-22 11:09:07 +0100356 port->serial->type->unthrottle(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
358
359static int serial_ioctl (struct tty_struct *tty, struct file * file, unsigned int cmd, unsigned long arg)
360{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200361 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 int retval = -ENODEV;
363
Harvey Harrison441b62c2008-03-03 16:08:34 -0800364 dbg("%s - port %d, cmd 0x%.4x", __func__, port->number, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Alan Cox95da3102008-07-22 11:09:07 +0100366 WARN_ON(!port->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 /* pass on to the driver specific version of this function if it is available */
Alan Coxf34d7a52008-04-30 00:54:13 -0700369 if (port->serial->type->ioctl) {
370 lock_kernel();
Alan Cox95da3102008-07-22 11:09:07 +0100371 retval = port->serial->type->ioctl(tty, file, cmd, arg);
Alan Coxf34d7a52008-04-30 00:54:13 -0700372 unlock_kernel();
373 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 else
375 retval = -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return retval;
377}
378
Alan Cox606d0992006-12-08 02:38:45 -0800379static void serial_set_termios (struct tty_struct *tty, struct ktermios * old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200381 struct usb_serial_port *port = tty->driver_data;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800382 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Alan Cox95da3102008-07-22 11:09:07 +0100384 WARN_ON(!port->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 /* pass on to the driver specific version of this function if it is available */
386 if (port->serial->type->set_termios)
Alan Cox95da3102008-07-22 11:09:07 +0100387 port->serial->type->set_termios(tty, port, old);
Alan Cox33785092007-10-18 01:24:22 -0700388 else
389 tty_termios_copy_hw(tty->termios, old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390}
391
392static void serial_break (struct tty_struct *tty, int break_state)
393{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200394 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Harvey Harrison441b62c2008-03-03 16:08:34 -0800396 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Alan Cox95da3102008-07-22 11:09:07 +0100398 WARN_ON(!port->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 /* pass on to the driver specific version of this function if it is available */
Alan Coxf34d7a52008-04-30 00:54:13 -0700400 if (port->serial->type->break_ctl) {
401 lock_kernel();
Alan Cox95da3102008-07-22 11:09:07 +0100402 port->serial->type->break_ctl(tty, break_state);
Alan Coxf34d7a52008-04-30 00:54:13 -0700403 unlock_kernel();
404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
407static int serial_read_proc (char *page, char **start, off_t off, int count, int *eof, void *data)
408{
409 struct usb_serial *serial;
410 int length = 0;
411 int i;
412 off_t begin = 0;
413 char tmp[40];
414
Harvey Harrison441b62c2008-03-03 16:08:34 -0800415 dbg("%s", __func__);
Greg Kroah-Hartman17a882f2005-06-20 21:15:16 -0700416 length += sprintf (page, "usbserinfo:1.0 driver:2.0\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 for (i = 0; i < SERIAL_TTY_MINORS && length < PAGE_SIZE; ++i) {
418 serial = usb_serial_get_by_index(i);
419 if (serial == NULL)
420 continue;
421
422 length += sprintf (page+length, "%d:", i);
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700423 if (serial->type->driver.owner)
424 length += sprintf (page+length, " module:%s", module_name(serial->type->driver.owner));
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700425 length += sprintf (page+length, " name:\"%s\"", serial->type->description);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 length += sprintf (page+length, " vendor:%04x product:%04x",
427 le16_to_cpu(serial->dev->descriptor.idVendor),
428 le16_to_cpu(serial->dev->descriptor.idProduct));
429 length += sprintf (page+length, " num_ports:%d", serial->num_ports);
430 length += sprintf (page+length, " port:%d", i - serial->minor + 1);
431
432 usb_make_path(serial->dev, tmp, sizeof(tmp));
433 length += sprintf (page+length, " path:%s", tmp);
434
435 length += sprintf (page+length, "\n");
Matthias Urlichs59925832006-09-11 12:35:20 +0200436 if ((length + begin) > (off + count)) {
437 usb_serial_put(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 goto done;
Matthias Urlichs59925832006-09-11 12:35:20 +0200439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 if ((length + begin) < off) {
441 begin += length;
442 length = 0;
443 }
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +0200444 usb_serial_put(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 }
446 *eof = 1;
447done:
448 if (off >= (length + begin))
449 return 0;
450 *start = page + (off-begin);
451 return ((count < begin+length-off) ? count : begin+length-off);
452}
453
454static int serial_tiocmget (struct tty_struct *tty, struct file *file)
455{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200456 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Harvey Harrison441b62c2008-03-03 16:08:34 -0800458 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Alan Cox95da3102008-07-22 11:09:07 +0100460 WARN_ON(!port->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 if (port->serial->type->tiocmget)
Alan Cox95da3102008-07-22 11:09:07 +0100462 return port->serial->type->tiocmget(tty, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 return -EINVAL;
464}
465
466static int serial_tiocmset (struct tty_struct *tty, struct file *file,
467 unsigned int set, unsigned int clear)
468{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200469 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
Harvey Harrison441b62c2008-03-03 16:08:34 -0800471 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Alan Cox95da3102008-07-22 11:09:07 +0100473 WARN_ON(!port->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 if (port->serial->type->tiocmset)
Alan Cox95da3102008-07-22 11:09:07 +0100475 return port->serial->type->tiocmset(tty, file, set, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 return -EINVAL;
477}
478
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700479/*
480 * We would be calling tty_wakeup here, but unfortunately some line
481 * disciplines have an annoying habit of calling tty->write from
482 * the write wakeup callback (e.g. n_hdlc.c).
483 */
484void usb_serial_port_softint(struct usb_serial_port *port)
485{
486 schedule_work(&port->work);
487}
488
David Howellsc4028952006-11-22 14:57:56 +0000489static void usb_serial_port_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
David Howellsc4028952006-11-22 14:57:56 +0000491 struct usb_serial_port *port =
492 container_of(work, struct usb_serial_port, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 struct tty_struct *tty;
494
Harvey Harrison441b62c2008-03-03 16:08:34 -0800495 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497 if (!port)
498 return;
499
Alan Cox95da3102008-07-22 11:09:07 +0100500 tty = port->port.tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 if (!tty)
502 return;
503
504 tty_wakeup(tty);
505}
506
507static void port_release(struct device *dev)
508{
509 struct usb_serial_port *port = to_usb_serial_port(dev);
510
Kay Sievers7071a3c2008-05-02 06:02:41 +0200511 dbg ("%s - %s", __func__, dev_name(dev));
Pete Zaitcev34f8e762006-06-21 15:00:45 -0700512 port_free(port);
513}
514
Oliver Neukum34ef50e2007-01-13 07:29:26 +0100515static void kill_traffic(struct usb_serial_port *port)
Pete Zaitcev34f8e762006-06-21 15:00:45 -0700516{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 usb_kill_urb(port->read_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 usb_kill_urb(port->write_urb);
Oliver Neukum5adceac2007-08-17 14:01:38 +0200519 /*
520 * This is tricky.
521 * Some drivers submit the read_urb in the
522 * handler for the write_urb or vice versa
523 * this order determines the order in which
524 * usb_kill_urb() must be used to reliably
525 * kill the URBs. As it is unknown here,
526 * both orders must be used in turn.
527 * The call below is not redundant.
528 */
529 usb_kill_urb(port->read_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 usb_kill_urb(port->interrupt_in_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 usb_kill_urb(port->interrupt_out_urb);
Oliver Neukum34ef50e2007-01-13 07:29:26 +0100532}
533
534static void port_free(struct usb_serial_port *port)
535{
536 kill_traffic(port);
537 usb_free_urb(port->read_urb);
538 usb_free_urb(port->write_urb);
539 usb_free_urb(port->interrupt_in_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 usb_free_urb(port->interrupt_out_urb);
541 kfree(port->bulk_in_buffer);
542 kfree(port->bulk_out_buffer);
543 kfree(port->interrupt_in_buffer);
544 kfree(port->interrupt_out_buffer);
Pete Zaitcev34f8e762006-06-21 15:00:45 -0700545 flush_scheduled_work(); /* port->work */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 kfree(port);
547}
548
549static struct usb_serial * create_serial (struct usb_device *dev,
550 struct usb_interface *interface,
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700551 struct usb_serial_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
553 struct usb_serial *serial;
554
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100555 serial = kzalloc(sizeof(*serial), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 if (!serial) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800557 dev_err(&dev->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 return NULL;
559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 serial->dev = usb_get_dev(dev);
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700561 serial->type = driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 serial->interface = interface;
563 kref_init(&serial->kref);
Oliver Neukuma1cd7e92008-01-16 17:18:52 +0100564 mutex_init(&serial->disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566 return serial;
567}
568
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +0100569static const struct usb_device_id *match_dynamic_id(struct usb_interface *intf,
570 struct usb_serial_driver *drv)
571{
572 struct usb_dynid *dynid;
573
574 spin_lock(&drv->dynids.lock);
575 list_for_each_entry(dynid, &drv->dynids.list, node) {
576 if (usb_match_one_id(intf, &dynid->id)) {
577 spin_unlock(&drv->dynids.lock);
578 return &dynid->id;
579 }
580 }
581 spin_unlock(&drv->dynids.lock);
582 return NULL;
583}
584
585static const struct usb_device_id *get_iface_id(struct usb_serial_driver *drv,
586 struct usb_interface *intf)
587{
588 const struct usb_device_id *id;
589
590 id = usb_match_id(intf, drv->id_table);
591 if (id) {
592 dbg("static descriptor matches");
593 goto exit;
594 }
595 id = match_dynamic_id(intf, drv);
596 if (id)
597 dbg("dynamic descriptor matches");
598exit:
599 return id;
600}
601
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700602static struct usb_serial_driver *search_serial_device(struct usb_interface *iface)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 const struct usb_device_id *id;
Alan Stern063a2da2007-10-10 16:24:06 -0400605 struct usb_serial_driver *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Adrian Bunk93b1fae2006-01-10 00:13:33 +0100607 /* Check if the usb id matches a known device */
Alan Stern063a2da2007-10-10 16:24:06 -0400608 list_for_each_entry(drv, &usb_serial_driver_list, driver_list) {
609 id = get_iface_id(drv, iface);
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +0100610 if (id)
Alan Stern063a2da2007-10-10 16:24:06 -0400611 return drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 }
613
614 return NULL;
615}
616
617int usb_serial_probe(struct usb_interface *interface,
618 const struct usb_device_id *id)
619{
620 struct usb_device *dev = interface_to_usbdev (interface);
621 struct usb_serial *serial = NULL;
622 struct usb_serial_port *port;
623 struct usb_host_interface *iface_desc;
624 struct usb_endpoint_descriptor *endpoint;
625 struct usb_endpoint_descriptor *interrupt_in_endpoint[MAX_NUM_PORTS];
626 struct usb_endpoint_descriptor *interrupt_out_endpoint[MAX_NUM_PORTS];
627 struct usb_endpoint_descriptor *bulk_in_endpoint[MAX_NUM_PORTS];
628 struct usb_endpoint_descriptor *bulk_out_endpoint[MAX_NUM_PORTS];
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700629 struct usb_serial_driver *type = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 int retval;
Andre Hauptdd9ca5d2008-06-18 15:56:00 +0200631 unsigned int minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 int buffer_size;
633 int i;
634 int num_interrupt_in = 0;
635 int num_interrupt_out = 0;
636 int num_bulk_in = 0;
637 int num_bulk_out = 0;
638 int num_ports = 0;
639 int max_endpoints;
640
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100641 lock_kernel(); /* guard against unloading a serial driver module */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 type = search_serial_device(interface);
643 if (!type) {
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100644 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 dbg("none matched");
646 return -ENODEV;
647 }
648
649 serial = create_serial (dev, interface, type);
650 if (!serial) {
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100651 unlock_kernel();
Harvey Harrison441b62c2008-03-03 16:08:34 -0800652 dev_err(&interface->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 return -ENOMEM;
654 }
655
656 /* if this device type has a probe function, call it */
657 if (type->probe) {
658 const struct usb_device_id *id;
659
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700660 if (!try_module_get(type->driver.owner)) {
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100661 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 dev_err(&interface->dev, "module get failed, exiting\n");
663 kfree (serial);
664 return -EIO;
665 }
666
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +0100667 id = get_iface_id(type, interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 retval = type->probe(serial, id);
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700669 module_put(type->driver.owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671 if (retval) {
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100672 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 dbg ("sub driver rejected device");
674 kfree (serial);
675 return retval;
676 }
677 }
678
679 /* descriptor matches, let's find the endpoints needed */
680 /* check out the endpoints */
681 iface_desc = interface->cur_altsetting;
682 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
683 endpoint = &iface_desc->endpoint[i].desc;
Luiz Fernando N. Capitulino4fa1bbf2006-09-27 11:58:53 -0700684
685 if (usb_endpoint_is_bulk_in(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 /* we found a bulk in endpoint */
687 dbg("found bulk in on endpoint %d", i);
688 bulk_in_endpoint[num_bulk_in] = endpoint;
689 ++num_bulk_in;
690 }
691
Luiz Fernando N. Capitulino4fa1bbf2006-09-27 11:58:53 -0700692 if (usb_endpoint_is_bulk_out(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 /* we found a bulk out endpoint */
694 dbg("found bulk out on endpoint %d", i);
695 bulk_out_endpoint[num_bulk_out] = endpoint;
696 ++num_bulk_out;
697 }
Luiz Fernando N. Capitulino4fa1bbf2006-09-27 11:58:53 -0700698
699 if (usb_endpoint_is_int_in(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 /* we found a interrupt in endpoint */
701 dbg("found interrupt in on endpoint %d", i);
702 interrupt_in_endpoint[num_interrupt_in] = endpoint;
703 ++num_interrupt_in;
704 }
705
Luiz Fernando N. Capitulino4fa1bbf2006-09-27 11:58:53 -0700706 if (usb_endpoint_is_int_out(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 /* we found an interrupt out endpoint */
708 dbg("found interrupt out on endpoint %d", i);
709 interrupt_out_endpoint[num_interrupt_out] = endpoint;
710 ++num_interrupt_out;
711 }
712 }
713
714#if defined(CONFIG_USB_SERIAL_PL2303) || defined(CONFIG_USB_SERIAL_PL2303_MODULE)
715 /* BEGIN HORRIBLE HACK FOR PL2303 */
716 /* this is needed due to the looney way its endpoints are set up */
717 if (((le16_to_cpu(dev->descriptor.idVendor) == PL2303_VENDOR_ID) &&
718 (le16_to_cpu(dev->descriptor.idProduct) == PL2303_PRODUCT_ID)) ||
719 ((le16_to_cpu(dev->descriptor.idVendor) == ATEN_VENDOR_ID) &&
Johannes Steingraeber8fd80132006-09-16 16:17:34 +0200720 (le16_to_cpu(dev->descriptor.idProduct) == ATEN_PRODUCT_ID)) ||
721 ((le16_to_cpu(dev->descriptor.idVendor) == ALCOR_VENDOR_ID) &&
722 (le16_to_cpu(dev->descriptor.idProduct) == ALCOR_PRODUCT_ID))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 if (interface != dev->actconfig->interface[0]) {
724 /* check out the endpoints of the other interface*/
725 iface_desc = dev->actconfig->interface[0]->cur_altsetting;
726 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
727 endpoint = &iface_desc->endpoint[i].desc;
Luiz Fernando N. Capitulino4fa1bbf2006-09-27 11:58:53 -0700728 if (usb_endpoint_is_int_in(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 /* we found a interrupt in endpoint */
730 dbg("found interrupt in for Prolific device on separate interface");
731 interrupt_in_endpoint[num_interrupt_in] = endpoint;
732 ++num_interrupt_in;
733 }
734 }
735 }
736
737 /* Now make sure the PL-2303 is configured correctly.
738 * If not, give up now and hope this hack will work
739 * properly during a later invocation of usb_serial_probe
740 */
741 if (num_bulk_in == 0 || num_bulk_out == 0) {
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100742 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 dev_info(&interface->dev, "PL-2303 hack: descriptors matched but endpoints did not\n");
744 kfree (serial);
745 return -ENODEV;
746 }
747 }
748 /* END HORRIBLE HACK FOR PL2303 */
749#endif
750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751#ifdef CONFIG_USB_SERIAL_GENERIC
752 if (type == &usb_serial_generic_device) {
753 num_ports = num_bulk_out;
754 if (num_ports == 0) {
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100755 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 dev_err(&interface->dev, "Generic device with no bulk out, not allowed.\n");
757 kfree (serial);
758 return -EIO;
759 }
760 }
761#endif
762 if (!num_ports) {
763 /* if this device type has a calc_num_ports function, call it */
764 if (type->calc_num_ports) {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700765 if (!try_module_get(type->driver.owner)) {
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100766 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 dev_err(&interface->dev, "module get failed, exiting\n");
768 kfree (serial);
769 return -EIO;
770 }
771 num_ports = type->calc_num_ports (serial);
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700772 module_put(type->driver.owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
774 if (!num_ports)
775 num_ports = type->num_ports;
776 }
777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 serial->num_ports = num_ports;
779 serial->num_bulk_in = num_bulk_in;
780 serial->num_bulk_out = num_bulk_out;
781 serial->num_interrupt_in = num_interrupt_in;
782 serial->num_interrupt_out = num_interrupt_out;
783
Alan Stern063a2da2007-10-10 16:24:06 -0400784 /* found all that we need */
785 dev_info(&interface->dev, "%s converter detected\n",
786 type->description);
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 /* create our ports, we need as many as the max endpoints */
789 /* we don't use num_ports here cauz some devices have more endpoint pairs than ports */
790 max_endpoints = max(num_bulk_in, num_bulk_out);
791 max_endpoints = max(max_endpoints, num_interrupt_in);
792 max_endpoints = max(max_endpoints, num_interrupt_out);
793 max_endpoints = max(max_endpoints, (int)serial->num_ports);
794 serial->num_port_pointers = max_endpoints;
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100795 unlock_kernel();
796
Harvey Harrison441b62c2008-03-03 16:08:34 -0800797 dbg("%s - setting up %d port structures for this device", __func__, max_endpoints);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 for (i = 0; i < max_endpoints; ++i) {
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100799 port = kzalloc(sizeof(struct usb_serial_port), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 if (!port)
801 goto probe_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 port->serial = serial;
Greg Kroah-Hartman507ca9b2005-04-23 12:49:16 -0700803 spin_lock_init(&port->lock);
Luiz Fernando Capitulino1ce7dd22006-03-24 17:12:31 -0300804 mutex_init(&port->mutex);
David Howellsc4028952006-11-22 14:57:56 +0000805 INIT_WORK(&port->work, usb_serial_port_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 serial->port[i] = port;
807 }
808
809 /* set up the endpoint information */
810 for (i = 0; i < num_bulk_in; ++i) {
811 endpoint = bulk_in_endpoint[i];
812 port = serial->port[i];
813 port->read_urb = usb_alloc_urb (0, GFP_KERNEL);
814 if (!port->read_urb) {
815 dev_err(&interface->dev, "No free urbs available\n");
816 goto probe_error;
817 }
818 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
819 port->bulk_in_size = buffer_size;
820 port->bulk_in_endpointAddress = endpoint->bEndpointAddress;
821 port->bulk_in_buffer = kmalloc (buffer_size, GFP_KERNEL);
822 if (!port->bulk_in_buffer) {
823 dev_err(&interface->dev, "Couldn't allocate bulk_in_buffer\n");
824 goto probe_error;
825 }
826 usb_fill_bulk_urb (port->read_urb, dev,
827 usb_rcvbulkpipe (dev,
828 endpoint->bEndpointAddress),
829 port->bulk_in_buffer, buffer_size,
830 serial->type->read_bulk_callback,
831 port);
832 }
833
834 for (i = 0; i < num_bulk_out; ++i) {
835 endpoint = bulk_out_endpoint[i];
836 port = serial->port[i];
837 port->write_urb = usb_alloc_urb(0, GFP_KERNEL);
838 if (!port->write_urb) {
839 dev_err(&interface->dev, "No free urbs available\n");
840 goto probe_error;
841 }
842 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
843 port->bulk_out_size = buffer_size;
844 port->bulk_out_endpointAddress = endpoint->bEndpointAddress;
845 port->bulk_out_buffer = kmalloc (buffer_size, GFP_KERNEL);
846 if (!port->bulk_out_buffer) {
847 dev_err(&interface->dev, "Couldn't allocate bulk_out_buffer\n");
848 goto probe_error;
849 }
850 usb_fill_bulk_urb (port->write_urb, dev,
851 usb_sndbulkpipe (dev,
852 endpoint->bEndpointAddress),
853 port->bulk_out_buffer, buffer_size,
854 serial->type->write_bulk_callback,
855 port);
856 }
857
858 if (serial->type->read_int_callback) {
859 for (i = 0; i < num_interrupt_in; ++i) {
860 endpoint = interrupt_in_endpoint[i];
861 port = serial->port[i];
862 port->interrupt_in_urb = usb_alloc_urb(0, GFP_KERNEL);
863 if (!port->interrupt_in_urb) {
864 dev_err(&interface->dev, "No free urbs available\n");
865 goto probe_error;
866 }
867 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
868 port->interrupt_in_endpointAddress = endpoint->bEndpointAddress;
869 port->interrupt_in_buffer = kmalloc (buffer_size, GFP_KERNEL);
870 if (!port->interrupt_in_buffer) {
871 dev_err(&interface->dev, "Couldn't allocate interrupt_in_buffer\n");
872 goto probe_error;
873 }
874 usb_fill_int_urb (port->interrupt_in_urb, dev,
875 usb_rcvintpipe (dev,
876 endpoint->bEndpointAddress),
877 port->interrupt_in_buffer, buffer_size,
878 serial->type->read_int_callback, port,
879 endpoint->bInterval);
880 }
881 } else if (num_interrupt_in) {
882 dbg("the device claims to support interrupt in transfers, but read_int_callback is not defined");
883 }
884
885 if (serial->type->write_int_callback) {
886 for (i = 0; i < num_interrupt_out; ++i) {
887 endpoint = interrupt_out_endpoint[i];
888 port = serial->port[i];
889 port->interrupt_out_urb = usb_alloc_urb(0, GFP_KERNEL);
890 if (!port->interrupt_out_urb) {
891 dev_err(&interface->dev, "No free urbs available\n");
892 goto probe_error;
893 }
894 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
895 port->interrupt_out_size = buffer_size;
896 port->interrupt_out_endpointAddress = endpoint->bEndpointAddress;
897 port->interrupt_out_buffer = kmalloc (buffer_size, GFP_KERNEL);
898 if (!port->interrupt_out_buffer) {
899 dev_err(&interface->dev, "Couldn't allocate interrupt_out_buffer\n");
900 goto probe_error;
901 }
902 usb_fill_int_urb (port->interrupt_out_urb, dev,
903 usb_sndintpipe (dev,
904 endpoint->bEndpointAddress),
905 port->interrupt_out_buffer, buffer_size,
906 serial->type->write_int_callback, port,
907 endpoint->bInterval);
908 }
909 } else if (num_interrupt_out) {
910 dbg("the device claims to support interrupt out transfers, but write_int_callback is not defined");
911 }
912
913 /* if this device type has an attach function, call it */
914 if (type->attach) {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700915 if (!try_module_get(type->driver.owner)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 dev_err(&interface->dev, "module get failed, exiting\n");
917 goto probe_error;
918 }
919 retval = type->attach (serial);
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700920 module_put(type->driver.owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 if (retval < 0)
922 goto probe_error;
923 if (retval > 0) {
924 /* quietly accept this device, but don't bind to a serial port
925 * as it's about to disappear */
926 goto exit;
927 }
928 }
929
Oliver Neukum34ef50e2007-01-13 07:29:26 +0100930 if (get_free_serial (serial, num_ports, &minor) == NULL) {
931 dev_err(&interface->dev, "No more free serial devices\n");
932 goto probe_error;
933 }
Oliver Neukumc744f992007-02-26 15:43:00 +0100934 serial->minor = minor;
Oliver Neukum34ef50e2007-01-13 07:29:26 +0100935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 /* register all of the individual ports with the driver core */
937 for (i = 0; i < num_ports; ++i) {
938 port = serial->port[i];
939 port->dev.parent = &interface->dev;
940 port->dev.driver = NULL;
941 port->dev.bus = &usb_serial_bus_type;
942 port->dev.release = &port_release;
943
Kay Sievers0031a062008-05-02 06:02:41 +0200944 dev_set_name(&port->dev, "ttyUSB%d", port->number);
Kay Sievers7071a3c2008-05-02 06:02:41 +0200945 dbg ("%s - registering %s", __func__, dev_name(&port->dev));
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -0700946 retval = device_register(&port->dev);
947 if (retval)
948 dev_err(&port->dev, "Error registering port device, "
949 "continuing\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 }
951
952 usb_serial_console_init (debug, minor);
953
954exit:
955 /* success */
956 usb_set_intfdata (interface, serial);
957 return 0;
958
959probe_error:
960 for (i = 0; i < num_bulk_in; ++i) {
961 port = serial->port[i];
962 if (!port)
963 continue;
Mariusz Kozlowski95d43162006-11-08 15:36:51 +0100964 usb_free_urb(port->read_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 kfree(port->bulk_in_buffer);
966 }
967 for (i = 0; i < num_bulk_out; ++i) {
968 port = serial->port[i];
969 if (!port)
970 continue;
Mariusz Kozlowski95d43162006-11-08 15:36:51 +0100971 usb_free_urb(port->write_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 kfree(port->bulk_out_buffer);
973 }
974 for (i = 0; i < num_interrupt_in; ++i) {
975 port = serial->port[i];
976 if (!port)
977 continue;
Mariusz Kozlowski95d43162006-11-08 15:36:51 +0100978 usb_free_urb(port->interrupt_in_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 kfree(port->interrupt_in_buffer);
980 }
981 for (i = 0; i < num_interrupt_out; ++i) {
982 port = serial->port[i];
983 if (!port)
984 continue;
Mariusz Kozlowski95d43162006-11-08 15:36:51 +0100985 usb_free_urb(port->interrupt_out_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 kfree(port->interrupt_out_buffer);
987 }
988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 /* free up any memory that we allocated */
990 for (i = 0; i < serial->num_port_pointers; ++i)
991 kfree(serial->port[i]);
992 kfree (serial);
993 return -EIO;
994}
995
996void usb_serial_disconnect(struct usb_interface *interface)
997{
998 int i;
999 struct usb_serial *serial = usb_get_intfdata (interface);
1000 struct device *dev = &interface->dev;
1001 struct usb_serial_port *port;
1002
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +02001003 usb_serial_console_disconnect(serial);
Harvey Harrison441b62c2008-03-03 16:08:34 -08001004 dbg ("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Oliver Neukuma1cd7e92008-01-16 17:18:52 +01001006 mutex_lock(&serial->disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 usb_set_intfdata (interface, NULL);
Oliver Neukuma1cd7e92008-01-16 17:18:52 +01001008 /* must set a flag, to signal subdrivers */
1009 serial->disconnected = 1;
1010 for (i = 0; i < serial->num_ports; ++i) {
1011 port = serial->port[i];
1012 if (port) {
Alan Cox95da3102008-07-22 11:09:07 +01001013 if (port->port.tty)
1014 tty_hangup(port->port.tty);
Oliver Neukuma1cd7e92008-01-16 17:18:52 +01001015 kill_traffic(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 }
Oliver Neukuma1cd7e92008-01-16 17:18:52 +01001018 /* let the last holder of this object
1019 * cause it to be cleaned up */
1020 mutex_unlock(&serial->disc_mutex);
1021 usb_serial_put(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 dev_info(dev, "device disconnected\n");
1023}
1024
Oliver Neukumec225592007-04-27 20:54:57 +02001025int usb_serial_suspend(struct usb_interface *intf, pm_message_t message)
1026{
1027 struct usb_serial *serial = usb_get_intfdata(intf);
1028 struct usb_serial_port *port;
1029 int i, r = 0;
1030
Oliver Neukume31c1882007-07-23 08:58:39 +02001031 for (i = 0; i < serial->num_ports; ++i) {
1032 port = serial->port[i];
1033 if (port)
1034 kill_traffic(port);
Oliver Neukumec225592007-04-27 20:54:57 +02001035 }
1036
1037 if (serial->type->suspend)
Oliver Neukume31c1882007-07-23 08:58:39 +02001038 r = serial->type->suspend(serial, message);
Oliver Neukumec225592007-04-27 20:54:57 +02001039
1040 return r;
1041}
1042EXPORT_SYMBOL(usb_serial_suspend);
1043
1044int usb_serial_resume(struct usb_interface *intf)
1045{
1046 struct usb_serial *serial = usb_get_intfdata(intf);
1047
Sarah Sharp8abaee22007-10-25 10:58:43 -07001048 if (serial->type->resume)
1049 return serial->type->resume(serial);
1050 return 0;
Oliver Neukumec225592007-04-27 20:54:57 +02001051}
1052EXPORT_SYMBOL(usb_serial_resume);
1053
Jeff Dikeb68e31d2006-10-02 02:17:18 -07001054static const struct tty_operations serial_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 .open = serial_open,
1056 .close = serial_close,
1057 .write = serial_write,
1058 .write_room = serial_write_room,
1059 .ioctl = serial_ioctl,
1060 .set_termios = serial_set_termios,
1061 .throttle = serial_throttle,
1062 .unthrottle = serial_unthrottle,
1063 .break_ctl = serial_break,
1064 .chars_in_buffer = serial_chars_in_buffer,
1065 .read_proc = serial_read_proc,
1066 .tiocmget = serial_tiocmget,
1067 .tiocmset = serial_tiocmset,
1068};
1069
1070struct tty_driver *usb_serial_tty_driver;
1071
1072static int __init usb_serial_init(void)
1073{
1074 int i;
1075 int result;
1076
1077 usb_serial_tty_driver = alloc_tty_driver(SERIAL_TTY_MINORS);
1078 if (!usb_serial_tty_driver)
1079 return -ENOMEM;
1080
1081 /* Initialize our global data */
1082 for (i = 0; i < SERIAL_TTY_MINORS; ++i) {
1083 serial_table[i] = NULL;
1084 }
1085
1086 result = bus_register(&usb_serial_bus_type);
1087 if (result) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001088 err("%s - registering bus driver failed", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 goto exit_bus;
1090 }
1091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 usb_serial_tty_driver->owner = THIS_MODULE;
1093 usb_serial_tty_driver->driver_name = "usbserial";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 usb_serial_tty_driver->name = "ttyUSB";
1095 usb_serial_tty_driver->major = SERIAL_TTY_MAJOR;
1096 usb_serial_tty_driver->minor_start = 0;
1097 usb_serial_tty_driver->type = TTY_DRIVER_TYPE_SERIAL;
1098 usb_serial_tty_driver->subtype = SERIAL_TYPE_NORMAL;
Greg Kroah-Hartman331b8312005-06-20 21:15:16 -07001099 usb_serial_tty_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 usb_serial_tty_driver->init_termios = tty_std_termios;
1101 usb_serial_tty_driver->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL;
Alan Coxa5b6f602008-04-08 17:16:06 +01001102 usb_serial_tty_driver->init_termios.c_ispeed = 9600;
1103 usb_serial_tty_driver->init_termios.c_ospeed = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 tty_set_operations(usb_serial_tty_driver, &serial_ops);
1105 result = tty_register_driver(usb_serial_tty_driver);
1106 if (result) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001107 err("%s - tty_register_driver failed", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 goto exit_reg_driver;
1109 }
1110
1111 /* register the USB driver */
1112 result = usb_register(&usb_serial_driver);
1113 if (result < 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001114 err("%s - usb_register failed", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 goto exit_tty;
1116 }
1117
Greg Kroah-Hartman06299db2005-05-26 05:55:55 -07001118 /* register the generic driver, if we should */
1119 result = usb_serial_generic_register(debug);
1120 if (result < 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001121 err("%s - registering generic driver failed", __func__);
Greg Kroah-Hartman06299db2005-05-26 05:55:55 -07001122 goto exit_generic;
1123 }
1124
Greg Kroah-Hartman17a882f2005-06-20 21:15:16 -07001125 info(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
1127 return result;
1128
Greg Kroah-Hartman06299db2005-05-26 05:55:55 -07001129exit_generic:
1130 usb_deregister(&usb_serial_driver);
1131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132exit_tty:
1133 tty_unregister_driver(usb_serial_tty_driver);
1134
1135exit_reg_driver:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 bus_unregister(&usb_serial_bus_type);
1137
1138exit_bus:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001139 err ("%s - returning with error %d", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 put_tty_driver(usb_serial_tty_driver);
1141 return result;
1142}
1143
1144
1145static void __exit usb_serial_exit(void)
1146{
1147 usb_serial_console_exit();
1148
1149 usb_serial_generic_deregister();
1150
1151 usb_deregister(&usb_serial_driver);
1152 tty_unregister_driver(usb_serial_tty_driver);
1153 put_tty_driver(usb_serial_tty_driver);
1154 bus_unregister(&usb_serial_bus_type);
1155}
1156
1157
1158module_init(usb_serial_init);
1159module_exit(usb_serial_exit);
1160
1161#define set_to_generic_if_null(type, function) \
1162 do { \
1163 if (!type->function) { \
1164 type->function = usb_serial_generic_##function; \
1165 dbg("Had to override the " #function \
1166 " usb serial operation with the generic one.");\
1167 } \
1168 } while (0)
1169
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07001170static void fixup_generic(struct usb_serial_driver *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171{
1172 set_to_generic_if_null(device, open);
1173 set_to_generic_if_null(device, write);
1174 set_to_generic_if_null(device, close);
1175 set_to_generic_if_null(device, write_room);
1176 set_to_generic_if_null(device, chars_in_buffer);
1177 set_to_generic_if_null(device, read_bulk_callback);
1178 set_to_generic_if_null(device, write_bulk_callback);
1179 set_to_generic_if_null(device, shutdown);
Sarah Sharpf0fbd5b2007-11-13 17:10:09 -08001180 set_to_generic_if_null(device, resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181}
1182
Oliver Neukum4b10f0f2007-01-13 07:31:27 +01001183int usb_serial_register(struct usb_serial_driver *driver) /* must be called with BKL held */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184{
1185 int retval;
1186
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07001187 fixup_generic(driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -07001189 if (!driver->description)
1190 driver->description = driver->driver.name;
1191
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 /* Add this device to our list of devices */
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07001193 list_add(&driver->driver_list, &usb_serial_driver_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07001195 retval = usb_serial_bus_register(driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 if (retval) {
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -07001197 err("problem %d when registering driver %s", retval, driver->description);
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07001198 list_del(&driver->driver_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 }
1200 else
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -07001201 info("USB Serial support registered for %s", driver->description);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
1203 return retval;
1204}
1205
1206
Oliver Neukum4b10f0f2007-01-13 07:31:27 +01001207void usb_serial_deregister(struct usb_serial_driver *device) /* must be called with BKL held */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208{
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -07001209 info("USB Serial deregistering driver %s", device->description);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 list_del(&device->driver_list);
1211 usb_serial_bus_deregister(device);
1212}
1213
1214
1215
1216/* If the usb-serial core is built into the core, the usb-serial drivers
1217 need these symbols to load properly as modules. */
1218EXPORT_SYMBOL_GPL(usb_serial_register);
1219EXPORT_SYMBOL_GPL(usb_serial_deregister);
1220EXPORT_SYMBOL_GPL(usb_serial_probe);
1221EXPORT_SYMBOL_GPL(usb_serial_disconnect);
1222EXPORT_SYMBOL_GPL(usb_serial_port_softint);
1223
1224
1225/* Module information */
1226MODULE_AUTHOR( DRIVER_AUTHOR );
1227MODULE_DESCRIPTION( DRIVER_DESC );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228MODULE_LICENSE("GPL");
1229
1230module_param(debug, bool, S_IRUGO | S_IWUSR);
1231MODULE_PARM_DESC(debug, "Debug enabled or not");