blob: 2a70563bbee1003008a20a0f48b880a4503db9ab [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 *
Alan Coxa8d6f0a2008-07-22 11:12:24 +010015 * See Documentation/usb/usb-serial.txt for more information on using this
16 * driver
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 */
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/kernel.h>
21#include <linux/errno.h>
22#include <linux/init.h>
23#include <linux/slab.h>
24#include <linux/tty.h>
25#include <linux/tty_driver.h>
26#include <linux/tty_flip.h>
27#include <linux/module.h>
28#include <linux/moduleparam.h>
Alexey Dobriyan6fd69d32009-03-31 15:19:21 -070029#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/spinlock.h>
Luiz Fernando Capitulino1ce7dd22006-03-24 17:12:31 -030031#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/list.h>
Alan Coxa8d6f0a2008-07-22 11:12:24 +010033#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070035#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "pl2303.h"
37
38/*
39 * Version Information
40 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#define DRIVER_AUTHOR "Greg Kroah-Hartman, greg@kroah.com, http://www.kroah.com/linux/"
42#define DRIVER_DESC "USB Serial Driver core"
43
Pete Zaitcev34f8e762006-06-21 15:00:45 -070044static void port_free(struct usb_serial_port *port);
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046/* Driver structure we register with the USB core */
47static struct usb_driver usb_serial_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 .name = "usbserial",
49 .probe = usb_serial_probe,
50 .disconnect = usb_serial_disconnect,
Oliver Neukumec225592007-04-27 20:54:57 +020051 .suspend = usb_serial_suspend,
52 .resume = usb_serial_resume,
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -080053 .no_dynamic_id = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070054};
55
56/* There is no MODULE_DEVICE_TABLE for usbserial.c. Instead
57 the MODULE_DEVICE_TABLE declarations in each serial driver
58 cause the "hotplug" program to pull in whatever module is necessary
59 via modprobe, and modprobe will load usbserial because the serial
60 drivers depend on it.
61*/
62
63static int debug;
Alan Coxa8d6f0a2008-07-22 11:12:24 +010064/* initially all NULL */
65static struct usb_serial *serial_table[SERIAL_TTY_MINORS];
Oliver Neukum3ddad822007-07-24 15:13:42 +020066static DEFINE_MUTEX(table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067static LIST_HEAD(usb_serial_driver_list);
68
69struct usb_serial *usb_serial_get_by_index(unsigned index)
70{
Oliver Neukum34ef50e2007-01-13 07:29:26 +010071 struct usb_serial *serial;
72
Oliver Neukum3ddad822007-07-24 15:13:42 +020073 mutex_lock(&table_lock);
Oliver Neukum34ef50e2007-01-13 07:29:26 +010074 serial = serial_table[index];
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 if (serial)
77 kref_get(&serial->kref);
Oliver Neukum3ddad822007-07-24 15:13:42 +020078 mutex_unlock(&table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 return serial;
80}
81
Alan Coxa8d6f0a2008-07-22 11:12:24 +010082static struct usb_serial *get_free_serial(struct usb_serial *serial,
83 int num_ports, unsigned int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
85 unsigned int i, j;
86 int good_spot;
87
Harvey Harrison441b62c2008-03-03 16:08:34 -080088 dbg("%s %d", __func__, num_ports);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90 *minor = 0;
Oliver Neukum3ddad822007-07-24 15:13:42 +020091 mutex_lock(&table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 for (i = 0; i < SERIAL_TTY_MINORS; ++i) {
93 if (serial_table[i])
94 continue;
95
96 good_spot = 1;
97 for (j = 1; j <= num_ports-1; ++j)
98 if ((i+j >= SERIAL_TTY_MINORS) || (serial_table[i+j])) {
99 good_spot = 0;
100 i += j;
101 break;
102 }
103 if (good_spot == 0)
104 continue;
105
106 *minor = i;
Oliver Neukuma1f721c2007-03-05 15:23:51 +0100107 j = 0;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800108 dbg("%s - minor base = %d", __func__, *minor);
Oliver Neukuma1f721c2007-03-05 15:23:51 +0100109 for (i = *minor; (i < (*minor + num_ports)) && (i < SERIAL_TTY_MINORS); ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 serial_table[i] = serial;
Oliver Neukuma1f721c2007-03-05 15:23:51 +0100111 serial->port[j++]->number = i;
112 }
Oliver Neukum3ddad822007-07-24 15:13:42 +0200113 mutex_unlock(&table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 return serial;
115 }
Oliver Neukum3ddad822007-07-24 15:13:42 +0200116 mutex_unlock(&table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 return NULL;
118}
119
120static void return_serial(struct usb_serial *serial)
121{
122 int i;
123
Harvey Harrison441b62c2008-03-03 16:08:34 -0800124 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100126 for (i = 0; i < serial->num_ports; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 serial_table[serial->minor + i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
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 */
Alan Stern0282b7f2008-07-29 12:01:04 -0400143 if (serial->minor != SERIAL_TTY_NO_MINOR)
144 return_serial(serial);
Jim Radford521b85a2007-03-13 08:30:50 -0700145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 for (i = 0; i < serial->num_ports; ++i)
Alan Cox95da3102008-07-22 11:09:07 +0100147 serial->port[i]->port.count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 /* the ports are cleaned up and released in port_release() */
150 for (i = 0; i < serial->num_ports; ++i)
151 if (serial->port[i]->dev.parent != NULL) {
152 device_unregister(&serial->port[i]->dev);
153 serial->port[i] = NULL;
154 }
155
156 /* If this is a "fake" port, we have to clean it up here, as it will
157 * not get cleaned up in port_release() as it was never registered with
158 * the driver core */
159 if (serial->num_ports < serial->num_port_pointers) {
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100160 for (i = serial->num_ports;
161 i < serial->num_port_pointers; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 port = serial->port[i];
163 if (!port)
164 continue;
Pete Zaitcev34f8e762006-06-21 15:00:45 -0700165 port_free(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 }
167 }
168
169 usb_put_dev(serial->dev);
170
171 /* free up any memory that we allocated */
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100172 kfree(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +0200175void usb_serial_put(struct usb_serial *serial)
176{
Oliver Neukum3ddad822007-07-24 15:13:42 +0200177 mutex_lock(&table_lock);
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +0200178 kref_put(&serial->kref, destroy_serial);
Oliver Neukum3ddad822007-07-24 15:13:42 +0200179 mutex_unlock(&table_lock);
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +0200180}
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182/*****************************************************************************
183 * Driver tty interface functions
184 *****************************************************************************/
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100185static int serial_open (struct tty_struct *tty, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
187 struct usb_serial *serial;
188 struct usb_serial_port *port;
189 unsigned int portNumber;
190 int retval;
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100191
Harvey Harrison441b62c2008-03-03 16:08:34 -0800192 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 /* get the serial object associated with this tty pointer */
195 serial = usb_serial_get_by_index(tty->index);
196 if (!serial) {
197 tty->driver_data = NULL;
198 return -ENODEV;
199 }
200
201 portNumber = tty->index - serial->minor;
202 port = serial->port[portNumber];
Luiz Fernando Capitulino71a84162006-05-11 22:34:24 -0300203 if (!port) {
204 retval = -ENODEV;
205 goto bailout_kref_put;
206 }
Luiz Fernando Capitulino8a4613f2005-11-28 19:16:07 -0200207
James Woodcock331879f2009-02-11 15:06:53 +0000208 if (port->serial->disconnected) {
209 retval = -ENODEV;
210 goto bailout_kref_put;
211 }
212
Luiz Fernando Capitulino71a84162006-05-11 22:34:24 -0300213 if (mutex_lock_interruptible(&port->mutex)) {
214 retval = -ERESTARTSYS;
215 goto bailout_kref_put;
216 }
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100217
Alan Cox95da3102008-07-22 11:09:07 +0100218 ++port->port.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Paul Fulghumca854852006-04-13 22:28:17 +0200220 /* set up our port structure making the tty driver
221 * remember our port object, and us it */
222 tty->driver_data = port;
Alan Cox4a90f092008-10-13 10:39:46 +0100223 tty_port_tty_set(&port->port, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Alan Cox95da3102008-07-22 11:09:07 +0100225 if (port->port.count == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 /* lock this module before we call it
228 * this may fail, which means we must bail out,
229 * safe because we are called with BKL held */
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700230 if (!try_module_get(serial->type->driver.owner)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 retval = -ENODEV;
Luiz Fernando Capitulino71a84162006-05-11 22:34:24 -0300232 goto bailout_mutex_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 }
234
Sarah Sharpf0fbd5b2007-11-13 17:10:09 -0800235 retval = usb_autopm_get_interface(serial->interface);
236 if (retval)
237 goto bailout_module_put;
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100238 /* only call the device specific open if this
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 * is the first time the port is opened */
Alan Cox95da3102008-07-22 11:09:07 +0100240 retval = serial->type->open(tty, port, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if (retval)
Sarah Sharpf0fbd5b2007-11-13 17:10:09 -0800242 goto bailout_interface_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
244
Luiz Fernando Capitulino1ce7dd22006-03-24 17:12:31 -0300245 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return 0;
247
Sarah Sharpf0fbd5b2007-11-13 17:10:09 -0800248bailout_interface_put:
249 usb_autopm_put_interface(serial->interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250bailout_module_put:
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700251 module_put(serial->type->driver.owner);
Luiz Fernando Capitulino71a84162006-05-11 22:34:24 -0300252bailout_mutex_unlock:
Alan Cox95da3102008-07-22 11:09:07 +0100253 port->port.count = 0;
Frank Gevaertsb059c812006-06-14 15:52:05 +0200254 tty->driver_data = NULL;
Alan Cox4a90f092008-10-13 10:39:46 +0100255 tty_port_tty_set(&port->port, NULL);
Luiz Fernando Capitulino1ce7dd22006-03-24 17:12:31 -0300256 mutex_unlock(&port->mutex);
Luiz Fernando Capitulino71a84162006-05-11 22:34:24 -0300257bailout_kref_put:
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +0200258 usb_serial_put(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return retval;
260}
261
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100262static void serial_close(struct tty_struct *tty, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200264 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 if (!port)
267 return;
268
Harvey Harrison441b62c2008-03-03 16:08:34 -0800269 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Luiz Fernando Capitulino1ce7dd22006-03-24 17:12:31 -0300271 mutex_lock(&port->mutex);
Luiz Fernando Capitulino8a4613f2005-11-28 19:16:07 -0200272
Alan Cox95da3102008-07-22 11:09:07 +0100273 if (port->port.count == 0) {
Luiz Fernando Capitulino1ce7dd22006-03-24 17:12:31 -0300274 mutex_unlock(&port->mutex);
Greg Kroah-Hartman91c0bce2006-03-06 13:25:52 -0800275 return;
276 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Alan Cox4bd43f22009-01-02 13:44:04 +0000278 if (port->port.count == 1)
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100279 /* only call the device specific close if this
Alan Cox4bd43f22009-01-02 13:44:04 +0000280 * port is being closed by the last owner. Ensure we do
281 * this before we drop the port count. The call is protected
282 * by the port mutex
283 */
Alan Cox95da3102008-07-22 11:09:07 +0100284 port->serial->type->close(tty, port, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Alan Cox4bd43f22009-01-02 13:44:04 +0000286 if (port->port.count == (port->console ? 2 : 1)) {
Alan Cox4a90f092008-10-13 10:39:46 +0100287 struct tty_struct *tty = tty_port_tty_get(&port->port);
288 if (tty) {
Alan Cox4bd43f22009-01-02 13:44:04 +0000289 /* We must do this before we drop the port count to
290 zero. */
Alan Cox4a90f092008-10-13 10:39:46 +0100291 if (tty->driver_data)
292 tty->driver_data = NULL;
293 tty_port_tty_set(&port->port, NULL);
Alan Coxfce48772008-10-30 15:54:12 +0000294 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 }
297
Alan Cox4bd43f22009-01-02 13:44:04 +0000298 if (port->port.count == 1) {
Oliver Neukum62ad2962008-06-25 13:32:49 +0200299 mutex_lock(&port->serial->disc_mutex);
300 if (!port->serial->disconnected)
301 usb_autopm_put_interface(port->serial->interface);
302 mutex_unlock(&port->serial->disc_mutex);
Aristeu Rozanski9a6b1ef2007-11-12 15:15:02 -0500303 module_put(port->serial->type->driver.owner);
Sarah Sharpf0fbd5b2007-11-13 17:10:09 -0800304 }
Alan Cox4bd43f22009-01-02 13:44:04 +0000305 --port->port.count;
Aristeu Rozanski9a6b1ef2007-11-12 15:15:02 -0500306
Luiz Fernando Capitulino1ce7dd22006-03-24 17:12:31 -0300307 mutex_unlock(&port->mutex);
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +0200308 usb_serial_put(port->serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309}
310
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100311static int serial_write(struct tty_struct *tty, const unsigned char *buf,
312 int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200314 struct usb_serial_port *port = tty->driver_data;
Oliver Neukum3ff4fd92007-01-13 07:32:27 +0100315 int retval = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Alan Coxf34d7a52008-04-30 00:54:13 -0700317 if (port->serial->dev->state == USB_STATE_NOTATTACHED)
Luiz Fernando Capitulino487f9c62005-11-28 19:16:05 -0200318 goto exit;
319
Harvey Harrison441b62c2008-03-03 16:08:34 -0800320 dbg("%s - port %d, %d byte(s)", __func__, port->number, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Alan Cox95da3102008-07-22 11:09:07 +0100322 /* count is managed under the mutex lock for the tty so cannot
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100323 drop to zero until after the last close completes */
Alan Cox95da3102008-07-22 11:09:07 +0100324 WARN_ON(!port->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 /* pass on to the driver specific version of this function */
Alan Cox95da3102008-07-22 11:09:07 +0100327 retval = port->serial->type->write(tty, port, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329exit:
330 return retval;
331}
332
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100333static int serial_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200335 struct usb_serial_port *port = tty->driver_data;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800336 dbg("%s - port %d", __func__, port->number);
Alan Cox95da3102008-07-22 11:09:07 +0100337 WARN_ON(!port->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 /* pass on to the driver specific version of this function */
Alan Cox95da3102008-07-22 11:09:07 +0100339 return port->serial->type->write_room(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100342static int serial_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200344 struct usb_serial_port *port = tty->driver_data;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800345 dbg("%s = port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Alan Cox95da3102008-07-22 11:09:07 +0100347 WARN_ON(!port->port.count);
Alan Coxeff69372009-01-02 13:47:06 +0000348 /* if the device was unplugged then any remaining characters
349 fell out of the connector ;) */
350 if (port->serial->disconnected)
351 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 /* pass on to the driver specific version of this function */
Alan Cox95da3102008-07-22 11:09:07 +0100353 return port->serial->type->chars_in_buffer(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354}
355
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100356static void serial_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200358 struct usb_serial_port *port = tty->driver_data;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800359 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Alan Cox95da3102008-07-22 11:09:07 +0100361 WARN_ON(!port->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 /* pass on to the driver specific version of this function */
363 if (port->serial->type->throttle)
Alan Cox95da3102008-07-22 11:09:07 +0100364 port->serial->type->throttle(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365}
366
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100367static void serial_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200369 struct usb_serial_port *port = tty->driver_data;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800370 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Alan Cox95da3102008-07-22 11:09:07 +0100372 WARN_ON(!port->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 /* pass on to the driver specific version of this function */
374 if (port->serial->type->unthrottle)
Alan Cox95da3102008-07-22 11:09:07 +0100375 port->serial->type->unthrottle(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376}
377
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100378static int serial_ioctl(struct tty_struct *tty, struct file *file,
379 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200381 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 int retval = -ENODEV;
383
Harvey Harrison441b62c2008-03-03 16:08:34 -0800384 dbg("%s - port %d, cmd 0x%.4x", __func__, port->number, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Alan Cox95da3102008-07-22 11:09:07 +0100386 WARN_ON(!port->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100388 /* pass on to the driver specific version of this function
389 if it is available */
Alan Coxf34d7a52008-04-30 00:54:13 -0700390 if (port->serial->type->ioctl) {
Alan Cox95da3102008-07-22 11:09:07 +0100391 retval = port->serial->type->ioctl(tty, file, cmd, arg);
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100392 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 retval = -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 return retval;
395}
396
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100397static void serial_set_termios(struct tty_struct *tty, struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200399 struct usb_serial_port *port = tty->driver_data;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800400 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Alan Cox95da3102008-07-22 11:09:07 +0100402 WARN_ON(!port->port.count);
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100403 /* pass on to the driver specific version of this function
404 if it is available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 if (port->serial->type->set_termios)
Alan Cox95da3102008-07-22 11:09:07 +0100406 port->serial->type->set_termios(tty, port, old);
Alan Cox33785092007-10-18 01:24:22 -0700407 else
408 tty_termios_copy_hw(tty->termios, old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
Alan Cox9e989662008-07-22 11:18:03 +0100411static int serial_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200413 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Harvey Harrison441b62c2008-03-03 16:08:34 -0800415 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Alan Cox95da3102008-07-22 11:09:07 +0100417 WARN_ON(!port->port.count);
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100418 /* pass on to the driver specific version of this function
419 if it is available */
Alan Cox6b447f042009-01-02 13:48:56 +0000420 if (port->serial->type->break_ctl)
Alan Cox95da3102008-07-22 11:09:07 +0100421 port->serial->type->break_ctl(tty, break_state);
Alan Cox9e989662008-07-22 11:18:03 +0100422 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423}
424
Alexey Dobriyan6fd69d32009-03-31 15:19:21 -0700425static int serial_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
427 struct usb_serial *serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 char tmp[40];
430
Harvey Harrison441b62c2008-03-03 16:08:34 -0800431 dbg("%s", __func__);
Alexey Dobriyan6fd69d32009-03-31 15:19:21 -0700432 seq_puts(m, "usbserinfo:1.0 driver:2.0\n");
433 for (i = 0; i < SERIAL_TTY_MINORS; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 serial = usb_serial_get_by_index(i);
435 if (serial == NULL)
436 continue;
437
Alexey Dobriyan6fd69d32009-03-31 15:19:21 -0700438 seq_printf(m, "%d:", i);
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700439 if (serial->type->driver.owner)
Alexey Dobriyan6fd69d32009-03-31 15:19:21 -0700440 seq_printf(m, " module:%s",
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100441 module_name(serial->type->driver.owner));
Alexey Dobriyan6fd69d32009-03-31 15:19:21 -0700442 seq_printf(m, " name:\"%s\"",
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100443 serial->type->description);
Alexey Dobriyan6fd69d32009-03-31 15:19:21 -0700444 seq_printf(m, " vendor:%04x product:%04x",
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100445 le16_to_cpu(serial->dev->descriptor.idVendor),
446 le16_to_cpu(serial->dev->descriptor.idProduct));
Alexey Dobriyan6fd69d32009-03-31 15:19:21 -0700447 seq_printf(m, " num_ports:%d", serial->num_ports);
448 seq_printf(m, " port:%d", i - serial->minor + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 usb_make_path(serial->dev, tmp, sizeof(tmp));
Alexey Dobriyan6fd69d32009-03-31 15:19:21 -0700450 seq_printf(m, " path:%s", tmp);
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100451
Alexey Dobriyan6fd69d32009-03-31 15:19:21 -0700452 seq_putc(m, '\n');
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +0200453 usb_serial_put(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
Alexey Dobriyan6fd69d32009-03-31 15:19:21 -0700455 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456}
457
Alexey Dobriyan6fd69d32009-03-31 15:19:21 -0700458static int serial_proc_open(struct inode *inode, struct file *file)
459{
460 return single_open(file, serial_proc_show, NULL);
461}
462
463static const struct file_operations serial_proc_fops = {
464 .owner = THIS_MODULE,
465 .open = serial_proc_open,
466 .read = seq_read,
467 .llseek = seq_lseek,
468 .release = single_release,
469};
470
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100471static int serial_tiocmget(struct tty_struct *tty, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200473 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Harvey Harrison441b62c2008-03-03 16:08:34 -0800475 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Alan Cox95da3102008-07-22 11:09:07 +0100477 WARN_ON(!port->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 if (port->serial->type->tiocmget)
Alan Cox95da3102008-07-22 11:09:07 +0100479 return port->serial->type->tiocmget(tty, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 return -EINVAL;
481}
482
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100483static int serial_tiocmset(struct tty_struct *tty, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 unsigned int set, unsigned int clear)
485{
Tobias Klauser81671dd2005-07-04 19:32:51 +0200486 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Harvey Harrison441b62c2008-03-03 16:08:34 -0800488 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Alan Cox95da3102008-07-22 11:09:07 +0100490 WARN_ON(!port->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 if (port->serial->type->tiocmset)
Alan Cox95da3102008-07-22 11:09:07 +0100492 return port->serial->type->tiocmset(tty, file, set, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 return -EINVAL;
494}
495
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700496/*
497 * We would be calling tty_wakeup here, but unfortunately some line
498 * disciplines have an annoying habit of calling tty->write from
499 * the write wakeup callback (e.g. n_hdlc.c).
500 */
501void usb_serial_port_softint(struct usb_serial_port *port)
502{
503 schedule_work(&port->work);
504}
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100505EXPORT_SYMBOL_GPL(usb_serial_port_softint);
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700506
David Howellsc4028952006-11-22 14:57:56 +0000507static void usb_serial_port_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
David Howellsc4028952006-11-22 14:57:56 +0000509 struct usb_serial_port *port =
510 container_of(work, struct usb_serial_port, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 struct tty_struct *tty;
512
Harvey Harrison441b62c2008-03-03 16:08:34 -0800513 dbg("%s - port %d", __func__, port->number);
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100514
Alan Cox4a90f092008-10-13 10:39:46 +0100515 tty = tty_port_tty_get(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 if (!tty)
517 return;
518
519 tty_wakeup(tty);
Alan Cox4a90f092008-10-13 10:39:46 +0100520 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521}
522
523static void port_release(struct device *dev)
524{
525 struct usb_serial_port *port = to_usb_serial_port(dev);
526
Kay Sievers7071a3c2008-05-02 06:02:41 +0200527 dbg ("%s - %s", __func__, dev_name(dev));
Pete Zaitcev34f8e762006-06-21 15:00:45 -0700528 port_free(port);
529}
530
Oliver Neukum34ef50e2007-01-13 07:29:26 +0100531static void kill_traffic(struct usb_serial_port *port)
Pete Zaitcev34f8e762006-06-21 15:00:45 -0700532{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 usb_kill_urb(port->read_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 usb_kill_urb(port->write_urb);
Oliver Neukum5adceac2007-08-17 14:01:38 +0200535 /*
536 * This is tricky.
537 * Some drivers submit the read_urb in the
538 * handler for the write_urb or vice versa
539 * this order determines the order in which
540 * usb_kill_urb() must be used to reliably
541 * kill the URBs. As it is unknown here,
542 * both orders must be used in turn.
543 * The call below is not redundant.
544 */
545 usb_kill_urb(port->read_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 usb_kill_urb(port->interrupt_in_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 usb_kill_urb(port->interrupt_out_urb);
Oliver Neukum34ef50e2007-01-13 07:29:26 +0100548}
549
550static void port_free(struct usb_serial_port *port)
551{
552 kill_traffic(port);
553 usb_free_urb(port->read_urb);
554 usb_free_urb(port->write_urb);
555 usb_free_urb(port->interrupt_in_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 usb_free_urb(port->interrupt_out_urb);
557 kfree(port->bulk_in_buffer);
558 kfree(port->bulk_out_buffer);
559 kfree(port->interrupt_in_buffer);
560 kfree(port->interrupt_out_buffer);
Pete Zaitcev34f8e762006-06-21 15:00:45 -0700561 flush_scheduled_work(); /* port->work */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 kfree(port);
563}
564
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100565static struct usb_serial *create_serial(struct usb_device *dev,
566 struct usb_interface *interface,
567 struct usb_serial_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
569 struct usb_serial *serial;
570
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100571 serial = kzalloc(sizeof(*serial), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 if (!serial) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800573 dev_err(&dev->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 return NULL;
575 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 serial->dev = usb_get_dev(dev);
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700577 serial->type = driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 serial->interface = interface;
579 kref_init(&serial->kref);
Oliver Neukuma1cd7e92008-01-16 17:18:52 +0100580 mutex_init(&serial->disc_mutex);
Alan Stern0282b7f2008-07-29 12:01:04 -0400581 serial->minor = SERIAL_TTY_NO_MINOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 return serial;
584}
585
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +0100586static const struct usb_device_id *match_dynamic_id(struct usb_interface *intf,
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100587 struct usb_serial_driver *drv)
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +0100588{
589 struct usb_dynid *dynid;
590
591 spin_lock(&drv->dynids.lock);
592 list_for_each_entry(dynid, &drv->dynids.list, node) {
593 if (usb_match_one_id(intf, &dynid->id)) {
594 spin_unlock(&drv->dynids.lock);
595 return &dynid->id;
596 }
597 }
598 spin_unlock(&drv->dynids.lock);
599 return NULL;
600}
601
602static const struct usb_device_id *get_iface_id(struct usb_serial_driver *drv,
603 struct usb_interface *intf)
604{
605 const struct usb_device_id *id;
606
607 id = usb_match_id(intf, drv->id_table);
608 if (id) {
609 dbg("static descriptor matches");
610 goto exit;
611 }
612 id = match_dynamic_id(intf, drv);
613 if (id)
614 dbg("dynamic descriptor matches");
615exit:
616 return id;
617}
618
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100619static struct usb_serial_driver *search_serial_device(
620 struct usb_interface *iface)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 const struct usb_device_id *id;
Alan Stern063a2da2007-10-10 16:24:06 -0400623 struct usb_serial_driver *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Adrian Bunk93b1fae2006-01-10 00:13:33 +0100625 /* Check if the usb id matches a known device */
Alan Stern063a2da2007-10-10 16:24:06 -0400626 list_for_each_entry(drv, &usb_serial_driver_list, driver_list) {
627 id = get_iface_id(drv, iface);
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +0100628 if (id)
Alan Stern063a2da2007-10-10 16:24:06 -0400629 return drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 }
631
632 return NULL;
633}
634
635int usb_serial_probe(struct usb_interface *interface,
636 const struct usb_device_id *id)
637{
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100638 struct usb_device *dev = interface_to_usbdev(interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 struct usb_serial *serial = NULL;
640 struct usb_serial_port *port;
641 struct usb_host_interface *iface_desc;
642 struct usb_endpoint_descriptor *endpoint;
643 struct usb_endpoint_descriptor *interrupt_in_endpoint[MAX_NUM_PORTS];
644 struct usb_endpoint_descriptor *interrupt_out_endpoint[MAX_NUM_PORTS];
645 struct usb_endpoint_descriptor *bulk_in_endpoint[MAX_NUM_PORTS];
646 struct usb_endpoint_descriptor *bulk_out_endpoint[MAX_NUM_PORTS];
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700647 struct usb_serial_driver *type = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 int retval;
Andre Hauptdd9ca5d2008-06-18 15:56:00 +0200649 unsigned int minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 int buffer_size;
651 int i;
652 int num_interrupt_in = 0;
653 int num_interrupt_out = 0;
654 int num_bulk_in = 0;
655 int num_bulk_out = 0;
656 int num_ports = 0;
657 int max_endpoints;
658
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100659 lock_kernel(); /* guard against unloading a serial driver module */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 type = search_serial_device(interface);
661 if (!type) {
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100662 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 dbg("none matched");
664 return -ENODEV;
665 }
666
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100667 serial = create_serial(dev, interface, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 if (!serial) {
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100669 unlock_kernel();
Harvey Harrison441b62c2008-03-03 16:08:34 -0800670 dev_err(&interface->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 return -ENOMEM;
672 }
673
674 /* if this device type has a probe function, call it */
675 if (type->probe) {
676 const struct usb_device_id *id;
677
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700678 if (!try_module_get(type->driver.owner)) {
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100679 unlock_kernel();
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100680 dev_err(&interface->dev,
681 "module get failed, exiting\n");
682 kfree(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 return -EIO;
684 }
685
Greg Kroah-Hartman93bacef2006-12-17 21:50:23 +0100686 id = get_iface_id(type, interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 retval = type->probe(serial, id);
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700688 module_put(type->driver.owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 if (retval) {
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100691 unlock_kernel();
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100692 dbg("sub driver rejected device");
693 kfree(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 return retval;
695 }
696 }
697
698 /* descriptor matches, let's find the endpoints needed */
699 /* check out the endpoints */
700 iface_desc = interface->cur_altsetting;
701 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
702 endpoint = &iface_desc->endpoint[i].desc;
Luiz Fernando N. Capitulino4fa1bbf2006-09-27 11:58:53 -0700703
704 if (usb_endpoint_is_bulk_in(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 /* we found a bulk in endpoint */
706 dbg("found bulk in on endpoint %d", i);
707 bulk_in_endpoint[num_bulk_in] = endpoint;
708 ++num_bulk_in;
709 }
710
Luiz Fernando N. Capitulino4fa1bbf2006-09-27 11:58:53 -0700711 if (usb_endpoint_is_bulk_out(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 /* we found a bulk out endpoint */
713 dbg("found bulk out on endpoint %d", i);
714 bulk_out_endpoint[num_bulk_out] = endpoint;
715 ++num_bulk_out;
716 }
Luiz Fernando N. Capitulino4fa1bbf2006-09-27 11:58:53 -0700717
718 if (usb_endpoint_is_int_in(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 /* we found a interrupt in endpoint */
720 dbg("found interrupt in on endpoint %d", i);
721 interrupt_in_endpoint[num_interrupt_in] = endpoint;
722 ++num_interrupt_in;
723 }
724
Luiz Fernando N. Capitulino4fa1bbf2006-09-27 11:58:53 -0700725 if (usb_endpoint_is_int_out(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 /* we found an interrupt out endpoint */
727 dbg("found interrupt out on endpoint %d", i);
728 interrupt_out_endpoint[num_interrupt_out] = endpoint;
729 ++num_interrupt_out;
730 }
731 }
732
733#if defined(CONFIG_USB_SERIAL_PL2303) || defined(CONFIG_USB_SERIAL_PL2303_MODULE)
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100734 /* BEGIN HORRIBLE HACK FOR PL2303 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 /* this is needed due to the looney way its endpoints are set up */
736 if (((le16_to_cpu(dev->descriptor.idVendor) == PL2303_VENDOR_ID) &&
737 (le16_to_cpu(dev->descriptor.idProduct) == PL2303_PRODUCT_ID)) ||
738 ((le16_to_cpu(dev->descriptor.idVendor) == ATEN_VENDOR_ID) &&
Johannes Steingraeber8fd80132006-09-16 16:17:34 +0200739 (le16_to_cpu(dev->descriptor.idProduct) == ATEN_PRODUCT_ID)) ||
740 ((le16_to_cpu(dev->descriptor.idVendor) == ALCOR_VENDOR_ID) &&
Andreas Bombece816cf2008-09-14 01:58:55 +0200741 (le16_to_cpu(dev->descriptor.idProduct) == ALCOR_PRODUCT_ID)) ||
742 ((le16_to_cpu(dev->descriptor.idVendor) == SIEMENS_VENDOR_ID) &&
743 (le16_to_cpu(dev->descriptor.idProduct) == SIEMENS_PRODUCT_ID_EF81))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 if (interface != dev->actconfig->interface[0]) {
745 /* check out the endpoints of the other interface*/
746 iface_desc = dev->actconfig->interface[0]->cur_altsetting;
747 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
748 endpoint = &iface_desc->endpoint[i].desc;
Luiz Fernando N. Capitulino4fa1bbf2006-09-27 11:58:53 -0700749 if (usb_endpoint_is_int_in(endpoint)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 /* we found a interrupt in endpoint */
751 dbg("found interrupt in for Prolific device on separate interface");
752 interrupt_in_endpoint[num_interrupt_in] = endpoint;
753 ++num_interrupt_in;
754 }
755 }
756 }
757
758 /* Now make sure the PL-2303 is configured correctly.
759 * If not, give up now and hope this hack will work
760 * properly during a later invocation of usb_serial_probe
761 */
762 if (num_bulk_in == 0 || num_bulk_out == 0) {
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100763 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 dev_info(&interface->dev, "PL-2303 hack: descriptors matched but endpoints did not\n");
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100765 kfree(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 return -ENODEV;
767 }
768 }
769 /* END HORRIBLE HACK FOR PL2303 */
770#endif
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772#ifdef CONFIG_USB_SERIAL_GENERIC
773 if (type == &usb_serial_generic_device) {
774 num_ports = num_bulk_out;
775 if (num_ports == 0) {
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100776 unlock_kernel();
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100777 dev_err(&interface->dev,
778 "Generic device with no bulk out, not allowed.\n");
779 kfree(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 return -EIO;
781 }
782 }
783#endif
784 if (!num_ports) {
785 /* if this device type has a calc_num_ports function, call it */
786 if (type->calc_num_ports) {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700787 if (!try_module_get(type->driver.owner)) {
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100788 unlock_kernel();
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100789 dev_err(&interface->dev,
790 "module get failed, exiting\n");
791 kfree(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 return -EIO;
793 }
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100794 num_ports = type->calc_num_ports(serial);
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700795 module_put(type->driver.owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 }
797 if (!num_ports)
798 num_ports = type->num_ports;
799 }
800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 serial->num_ports = num_ports;
802 serial->num_bulk_in = num_bulk_in;
803 serial->num_bulk_out = num_bulk_out;
804 serial->num_interrupt_in = num_interrupt_in;
805 serial->num_interrupt_out = num_interrupt_out;
806
Alan Stern063a2da2007-10-10 16:24:06 -0400807 /* found all that we need */
808 dev_info(&interface->dev, "%s converter detected\n",
809 type->description);
810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 /* create our ports, we need as many as the max endpoints */
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100812 /* we don't use num_ports here because some devices have more
813 endpoint pairs than ports */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 max_endpoints = max(num_bulk_in, num_bulk_out);
815 max_endpoints = max(max_endpoints, num_interrupt_in);
816 max_endpoints = max(max_endpoints, num_interrupt_out);
817 max_endpoints = max(max_endpoints, (int)serial->num_ports);
818 serial->num_port_pointers = max_endpoints;
Oliver Neukum4b10f0f2007-01-13 07:31:27 +0100819 unlock_kernel();
820
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100821 dbg("%s - setting up %d port structures for this device",
822 __func__, max_endpoints);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 for (i = 0; i < max_endpoints; ++i) {
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100824 port = kzalloc(sizeof(struct usb_serial_port), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 if (!port)
826 goto probe_error;
Alan Cox4a90f092008-10-13 10:39:46 +0100827 tty_port_init(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 port->serial = serial;
Greg Kroah-Hartman507ca9b2005-04-23 12:49:16 -0700829 spin_lock_init(&port->lock);
Luiz Fernando Capitulino1ce7dd22006-03-24 17:12:31 -0300830 mutex_init(&port->mutex);
David Howellsc4028952006-11-22 14:57:56 +0000831 INIT_WORK(&port->work, usb_serial_port_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 serial->port[i] = port;
833 }
834
835 /* set up the endpoint information */
836 for (i = 0; i < num_bulk_in; ++i) {
837 endpoint = bulk_in_endpoint[i];
838 port = serial->port[i];
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100839 port->read_urb = usb_alloc_urb(0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 if (!port->read_urb) {
841 dev_err(&interface->dev, "No free urbs available\n");
842 goto probe_error;
843 }
844 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
845 port->bulk_in_size = buffer_size;
846 port->bulk_in_endpointAddress = endpoint->bEndpointAddress;
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100847 port->bulk_in_buffer = kmalloc(buffer_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 if (!port->bulk_in_buffer) {
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100849 dev_err(&interface->dev,
850 "Couldn't allocate bulk_in_buffer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 goto probe_error;
852 }
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100853 usb_fill_bulk_urb(port->read_urb, dev,
854 usb_rcvbulkpipe(dev,
855 endpoint->bEndpointAddress),
856 port->bulk_in_buffer, buffer_size,
857 serial->type->read_bulk_callback, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 }
859
860 for (i = 0; i < num_bulk_out; ++i) {
861 endpoint = bulk_out_endpoint[i];
862 port = serial->port[i];
863 port->write_urb = usb_alloc_urb(0, GFP_KERNEL);
864 if (!port->write_urb) {
865 dev_err(&interface->dev, "No free urbs available\n");
866 goto probe_error;
867 }
868 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
869 port->bulk_out_size = buffer_size;
870 port->bulk_out_endpointAddress = endpoint->bEndpointAddress;
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100871 port->bulk_out_buffer = kmalloc(buffer_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 if (!port->bulk_out_buffer) {
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100873 dev_err(&interface->dev,
874 "Couldn't allocate bulk_out_buffer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 goto probe_error;
876 }
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100877 usb_fill_bulk_urb(port->write_urb, dev,
878 usb_sndbulkpipe(dev,
879 endpoint->bEndpointAddress),
880 port->bulk_out_buffer, buffer_size,
881 serial->type->write_bulk_callback, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 }
883
884 if (serial->type->read_int_callback) {
885 for (i = 0; i < num_interrupt_in; ++i) {
886 endpoint = interrupt_in_endpoint[i];
887 port = serial->port[i];
888 port->interrupt_in_urb = usb_alloc_urb(0, GFP_KERNEL);
889 if (!port->interrupt_in_urb) {
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100890 dev_err(&interface->dev,
891 "No free urbs available\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 goto probe_error;
893 }
894 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100895 port->interrupt_in_endpointAddress =
896 endpoint->bEndpointAddress;
897 port->interrupt_in_buffer = kmalloc(buffer_size,
898 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 if (!port->interrupt_in_buffer) {
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100900 dev_err(&interface->dev,
901 "Couldn't allocate interrupt_in_buffer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 goto probe_error;
903 }
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100904 usb_fill_int_urb(port->interrupt_in_urb, dev,
905 usb_rcvintpipe(dev,
906 endpoint->bEndpointAddress),
907 port->interrupt_in_buffer, buffer_size,
908 serial->type->read_int_callback, port,
909 endpoint->bInterval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 }
911 } else if (num_interrupt_in) {
912 dbg("the device claims to support interrupt in transfers, but read_int_callback is not defined");
913 }
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100914
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 if (serial->type->write_int_callback) {
916 for (i = 0; i < num_interrupt_out; ++i) {
917 endpoint = interrupt_out_endpoint[i];
918 port = serial->port[i];
919 port->interrupt_out_urb = usb_alloc_urb(0, GFP_KERNEL);
920 if (!port->interrupt_out_urb) {
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100921 dev_err(&interface->dev,
922 "No free urbs available\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 goto probe_error;
924 }
925 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
926 port->interrupt_out_size = buffer_size;
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100927 port->interrupt_out_endpointAddress =
928 endpoint->bEndpointAddress;
929 port->interrupt_out_buffer = kmalloc(buffer_size,
930 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 if (!port->interrupt_out_buffer) {
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100932 dev_err(&interface->dev,
933 "Couldn't allocate interrupt_out_buffer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 goto probe_error;
935 }
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100936 usb_fill_int_urb(port->interrupt_out_urb, dev,
937 usb_sndintpipe(dev,
938 endpoint->bEndpointAddress),
939 port->interrupt_out_buffer, buffer_size,
940 serial->type->write_int_callback, port,
941 endpoint->bInterval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 }
943 } else if (num_interrupt_out) {
944 dbg("the device claims to support interrupt out transfers, but write_int_callback is not defined");
945 }
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 /* if this device type has an attach function, call it */
948 if (type->attach) {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700949 if (!try_module_get(type->driver.owner)) {
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100950 dev_err(&interface->dev,
951 "module get failed, exiting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 goto probe_error;
953 }
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100954 retval = type->attach(serial);
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700955 module_put(type->driver.owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 if (retval < 0)
957 goto probe_error;
958 if (retval > 0) {
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100959 /* quietly accept this device, but don't bind to a
960 serial port as it's about to disappear */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 goto exit;
962 }
963 }
964
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100965 if (get_free_serial(serial, num_ports, &minor) == NULL) {
Oliver Neukum34ef50e2007-01-13 07:29:26 +0100966 dev_err(&interface->dev, "No more free serial devices\n");
967 goto probe_error;
968 }
Oliver Neukumc744f992007-02-26 15:43:00 +0100969 serial->minor = minor;
Oliver Neukum34ef50e2007-01-13 07:29:26 +0100970
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 /* register all of the individual ports with the driver core */
972 for (i = 0; i < num_ports; ++i) {
973 port = serial->port[i];
974 port->dev.parent = &interface->dev;
975 port->dev.driver = NULL;
976 port->dev.bus = &usb_serial_bus_type;
977 port->dev.release = &port_release;
978
Kay Sievers0031a062008-05-02 06:02:41 +0200979 dev_set_name(&port->dev, "ttyUSB%d", port->number);
Kay Sievers7071a3c2008-05-02 06:02:41 +0200980 dbg ("%s - registering %s", __func__, dev_name(&port->dev));
Greg Kroah-Hartman13f4db92006-08-28 11:43:25 -0700981 retval = device_register(&port->dev);
982 if (retval)
983 dev_err(&port->dev, "Error registering port device, "
984 "continuing\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 }
986
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100987 usb_serial_console_init(debug, minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
989exit:
990 /* success */
Alan Coxa8d6f0a2008-07-22 11:12:24 +0100991 usb_set_intfdata(interface, serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 return 0;
993
994probe_error:
995 for (i = 0; i < num_bulk_in; ++i) {
996 port = serial->port[i];
997 if (!port)
998 continue;
Mariusz Kozlowski95d43162006-11-08 15:36:51 +0100999 usb_free_urb(port->read_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 kfree(port->bulk_in_buffer);
1001 }
1002 for (i = 0; i < num_bulk_out; ++i) {
1003 port = serial->port[i];
1004 if (!port)
1005 continue;
Mariusz Kozlowski95d43162006-11-08 15:36:51 +01001006 usb_free_urb(port->write_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 kfree(port->bulk_out_buffer);
1008 }
1009 for (i = 0; i < num_interrupt_in; ++i) {
1010 port = serial->port[i];
1011 if (!port)
1012 continue;
Mariusz Kozlowski95d43162006-11-08 15:36:51 +01001013 usb_free_urb(port->interrupt_in_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 kfree(port->interrupt_in_buffer);
1015 }
1016 for (i = 0; i < num_interrupt_out; ++i) {
1017 port = serial->port[i];
1018 if (!port)
1019 continue;
Mariusz Kozlowski95d43162006-11-08 15:36:51 +01001020 usb_free_urb(port->interrupt_out_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 kfree(port->interrupt_out_buffer);
1022 }
1023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 /* free up any memory that we allocated */
1025 for (i = 0; i < serial->num_port_pointers; ++i)
1026 kfree(serial->port[i]);
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001027 kfree(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 return -EIO;
1029}
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001030EXPORT_SYMBOL_GPL(usb_serial_probe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
1032void usb_serial_disconnect(struct usb_interface *interface)
1033{
1034 int i;
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001035 struct usb_serial *serial = usb_get_intfdata(interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 struct device *dev = &interface->dev;
1037 struct usb_serial_port *port;
1038
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +02001039 usb_serial_console_disconnect(serial);
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001040 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
Oliver Neukuma1cd7e92008-01-16 17:18:52 +01001042 mutex_lock(&serial->disc_mutex);
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001043 usb_set_intfdata(interface, NULL);
Oliver Neukuma1cd7e92008-01-16 17:18:52 +01001044 /* must set a flag, to signal subdrivers */
1045 serial->disconnected = 1;
1046 for (i = 0; i < serial->num_ports; ++i) {
1047 port = serial->port[i];
1048 if (port) {
Alan Cox4a90f092008-10-13 10:39:46 +01001049 struct tty_struct *tty = tty_port_tty_get(&port->port);
1050 if (tty) {
1051 tty_hangup(tty);
1052 tty_kref_put(tty);
1053 }
Oliver Neukuma1cd7e92008-01-16 17:18:52 +01001054 kill_traffic(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 }
Oliver Neukuma1cd7e92008-01-16 17:18:52 +01001057 /* let the last holder of this object
1058 * cause it to be cleaned up */
1059 mutex_unlock(&serial->disc_mutex);
1060 usb_serial_put(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 dev_info(dev, "device disconnected\n");
1062}
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001063EXPORT_SYMBOL_GPL(usb_serial_disconnect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Oliver Neukumec225592007-04-27 20:54:57 +02001065int usb_serial_suspend(struct usb_interface *intf, pm_message_t message)
1066{
1067 struct usb_serial *serial = usb_get_intfdata(intf);
1068 struct usb_serial_port *port;
1069 int i, r = 0;
1070
Oliver Neukumf8bece82009-02-05 16:54:25 +01001071 serial->suspending = 1;
1072
Oliver Neukume31c1882007-07-23 08:58:39 +02001073 for (i = 0; i < serial->num_ports; ++i) {
1074 port = serial->port[i];
1075 if (port)
1076 kill_traffic(port);
Oliver Neukumec225592007-04-27 20:54:57 +02001077 }
1078
1079 if (serial->type->suspend)
Oliver Neukume31c1882007-07-23 08:58:39 +02001080 r = serial->type->suspend(serial, message);
Oliver Neukumec225592007-04-27 20:54:57 +02001081
1082 return r;
1083}
1084EXPORT_SYMBOL(usb_serial_suspend);
1085
1086int usb_serial_resume(struct usb_interface *intf)
1087{
1088 struct usb_serial *serial = usb_get_intfdata(intf);
Oliver Neukumc49cfa912009-02-06 18:06:43 +01001089 int rv;
Oliver Neukumec225592007-04-27 20:54:57 +02001090
Oliver Neukumf8bece82009-02-05 16:54:25 +01001091 serial->suspending = 0;
Sarah Sharp8abaee22007-10-25 10:58:43 -07001092 if (serial->type->resume)
Oliver Neukumc49cfa912009-02-06 18:06:43 +01001093 rv = serial->type->resume(serial);
1094 else
1095 rv = usb_serial_generic_resume(serial);
Oliver Neukumf8bece82009-02-05 16:54:25 +01001096
Oliver Neukumc49cfa912009-02-06 18:06:43 +01001097 return rv;
Oliver Neukumec225592007-04-27 20:54:57 +02001098}
1099EXPORT_SYMBOL(usb_serial_resume);
1100
Jeff Dikeb68e31d2006-10-02 02:17:18 -07001101static const struct tty_operations serial_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 .open = serial_open,
1103 .close = serial_close,
1104 .write = serial_write,
1105 .write_room = serial_write_room,
1106 .ioctl = serial_ioctl,
1107 .set_termios = serial_set_termios,
1108 .throttle = serial_throttle,
1109 .unthrottle = serial_unthrottle,
1110 .break_ctl = serial_break,
1111 .chars_in_buffer = serial_chars_in_buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 .tiocmget = serial_tiocmget,
1113 .tiocmset = serial_tiocmset,
Alexey Dobriyan6fd69d32009-03-31 15:19:21 -07001114 .proc_fops = &serial_proc_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115};
1116
1117struct tty_driver *usb_serial_tty_driver;
1118
1119static int __init usb_serial_init(void)
1120{
1121 int i;
1122 int result;
1123
1124 usb_serial_tty_driver = alloc_tty_driver(SERIAL_TTY_MINORS);
1125 if (!usb_serial_tty_driver)
1126 return -ENOMEM;
1127
1128 /* Initialize our global data */
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001129 for (i = 0; i < SERIAL_TTY_MINORS; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 serial_table[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
1132 result = bus_register(&usb_serial_bus_type);
1133 if (result) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001134 printk(KERN_ERR "usb-serial: %s - registering bus driver "
1135 "failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 goto exit_bus;
1137 }
1138
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 usb_serial_tty_driver->owner = THIS_MODULE;
1140 usb_serial_tty_driver->driver_name = "usbserial";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 usb_serial_tty_driver->name = "ttyUSB";
1142 usb_serial_tty_driver->major = SERIAL_TTY_MAJOR;
1143 usb_serial_tty_driver->minor_start = 0;
1144 usb_serial_tty_driver->type = TTY_DRIVER_TYPE_SERIAL;
1145 usb_serial_tty_driver->subtype = SERIAL_TYPE_NORMAL;
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001146 usb_serial_tty_driver->flags = TTY_DRIVER_REAL_RAW |
1147 TTY_DRIVER_DYNAMIC_DEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 usb_serial_tty_driver->init_termios = tty_std_termios;
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001149 usb_serial_tty_driver->init_termios.c_cflag = B9600 | CS8 | CREAD
1150 | HUPCL | CLOCAL;
Alan Coxa5b6f602008-04-08 17:16:06 +01001151 usb_serial_tty_driver->init_termios.c_ispeed = 9600;
1152 usb_serial_tty_driver->init_termios.c_ospeed = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 tty_set_operations(usb_serial_tty_driver, &serial_ops);
1154 result = tty_register_driver(usb_serial_tty_driver);
1155 if (result) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001156 printk(KERN_ERR "usb-serial: %s - tty_register_driver failed\n",
1157 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 goto exit_reg_driver;
1159 }
1160
1161 /* register the USB driver */
1162 result = usb_register(&usb_serial_driver);
1163 if (result < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001164 printk(KERN_ERR "usb-serial: %s - usb_register failed\n",
1165 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 goto exit_tty;
1167 }
1168
Greg Kroah-Hartman06299db2005-05-26 05:55:55 -07001169 /* register the generic driver, if we should */
1170 result = usb_serial_generic_register(debug);
1171 if (result < 0) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001172 printk(KERN_ERR "usb-serial: %s - registering generic "
1173 "driver failed\n", __func__);
Greg Kroah-Hartman06299db2005-05-26 05:55:55 -07001174 goto exit_generic;
1175 }
1176
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -07001177 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_DESC "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
1179 return result;
1180
Greg Kroah-Hartman06299db2005-05-26 05:55:55 -07001181exit_generic:
1182 usb_deregister(&usb_serial_driver);
1183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184exit_tty:
1185 tty_unregister_driver(usb_serial_tty_driver);
1186
1187exit_reg_driver:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 bus_unregister(&usb_serial_bus_type);
1189
1190exit_bus:
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001191 printk(KERN_ERR "usb-serial: %s - returning with error %d\n",
1192 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 put_tty_driver(usb_serial_tty_driver);
1194 return result;
1195}
1196
1197
1198static void __exit usb_serial_exit(void)
1199{
1200 usb_serial_console_exit();
1201
1202 usb_serial_generic_deregister();
1203
1204 usb_deregister(&usb_serial_driver);
1205 tty_unregister_driver(usb_serial_tty_driver);
1206 put_tty_driver(usb_serial_tty_driver);
1207 bus_unregister(&usb_serial_bus_type);
1208}
1209
1210
1211module_init(usb_serial_init);
1212module_exit(usb_serial_exit);
1213
1214#define set_to_generic_if_null(type, function) \
1215 do { \
1216 if (!type->function) { \
1217 type->function = usb_serial_generic_##function; \
1218 dbg("Had to override the " #function \
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001219 " usb serial operation with the generic one.");\
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 } \
1221 } while (0)
1222
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07001223static void fixup_generic(struct usb_serial_driver *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224{
1225 set_to_generic_if_null(device, open);
1226 set_to_generic_if_null(device, write);
1227 set_to_generic_if_null(device, close);
1228 set_to_generic_if_null(device, write_room);
1229 set_to_generic_if_null(device, chars_in_buffer);
1230 set_to_generic_if_null(device, read_bulk_callback);
1231 set_to_generic_if_null(device, write_bulk_callback);
1232 set_to_generic_if_null(device, shutdown);
1233}
1234
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001235int usb_serial_register(struct usb_serial_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236{
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001237 /* must be called with BKL held */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 int retval;
1239
Dave Younge4abe662009-02-14 21:21:13 +08001240 if (usb_disabled())
1241 return -ENODEV;
1242
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07001243 fixup_generic(driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -07001245 if (!driver->description)
1246 driver->description = driver->driver.name;
1247
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 /* Add this device to our list of devices */
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07001249 list_add(&driver->driver_list, &usb_serial_driver_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07001251 retval = usb_serial_bus_register(driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 if (retval) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001253 printk(KERN_ERR "usb-serial: problem %d when registering "
1254 "driver %s\n", retval, driver->description);
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07001255 list_del(&driver->driver_list);
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001256 } else
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -07001257 printk(KERN_INFO "USB Serial support registered for %s\n",
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001258 driver->description);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
1260 return retval;
1261}
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001262EXPORT_SYMBOL_GPL(usb_serial_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
1264
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001265void usb_serial_deregister(struct usb_serial_driver *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266{
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001267 /* must be called with BKL held */
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -07001268 printk(KERN_INFO "USB Serial deregistering driver %s\n",
1269 device->description);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 list_del(&device->driver_list);
1271 usb_serial_bus_deregister(device);
1272}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273EXPORT_SYMBOL_GPL(usb_serial_deregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
1275/* Module information */
Alan Coxa8d6f0a2008-07-22 11:12:24 +01001276MODULE_AUTHOR(DRIVER_AUTHOR);
1277MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278MODULE_LICENSE("GPL");
1279
1280module_param(debug, bool, S_IRUGO | S_IWUSR);
1281MODULE_PARM_DESC(debug, "Debug enabled or not");