blob: 3644f513a4e0191c12037e0da65e634900699e43 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * USB Serial Converter Generic functions
3 *
Johan Hovoldd83b4052011-11-06 19:06:37 +01004 * Copyright (C) 2010 - 2011 Johan Hovold (jhovold@gmail.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Copyright (C) 1999 - 2002 Greg Kroah-Hartman (greg@kroah.com)
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License version
9 * 2 as published by the Free Software Foundation.
10 *
11 */
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/kernel.h>
14#include <linux/errno.h>
15#include <linux/slab.h>
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -070016#include <linux/sysrq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/tty.h>
18#include <linux/tty_flip.h>
19#include <linux/module.h>
20#include <linux/moduleparam.h>
21#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070022#include <linux/usb/serial.h>
Alan Coxae643872008-07-22 11:11:55 +010023#include <linux/uaccess.h>
David VomLehn8e8dce02009-08-28 12:54:27 -070024#include <linux/kfifo.h>
Alan Stern1f871582010-02-17 10:05:47 -050025#include <linux/serial.h>
Johannes Hölzld9b1b782006-12-17 21:50:24 +010026
Linus Torvalds1da177e2005-04-16 15:20:36 -070027static int debug;
28
29#ifdef CONFIG_USB_SERIAL_GENERIC
David Brownellb46d60f2007-03-23 12:51:55 -070030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031static __u16 vendor = 0x05f9;
32static __u16 product = 0xffff;
33
34module_param(vendor, ushort, 0);
35MODULE_PARM_DESC(vendor, "User specified USB idVendor");
36
37module_param(product, ushort, 0);
38MODULE_PARM_DESC(product, "User specified USB idProduct");
39
40static struct usb_device_id generic_device_ids[2]; /* Initially all zeroes. */
41
Johannes Hölzld9b1b782006-12-17 21:50:24 +010042/* we want to look at all devices, as the vendor/product id can change
43 * depending on the command line argument */
Németh Márton7d40d7e2010-01-10 15:34:24 +010044static const struct usb_device_id generic_serial_ids[] = {
Johannes Hölzld9b1b782006-12-17 21:50:24 +010045 {.driver_info = 42},
46 {}
47};
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/* All of the device info needed for the Generic Serial Converter */
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -070050struct usb_serial_driver usb_serial_generic_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070051 .driver = {
52 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070053 .name = "generic",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070054 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 .id_table = generic_device_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 .num_ports = 1,
Alan Sternf9c99bb2009-06-02 11:53:55 -040057 .disconnect = usb_serial_generic_disconnect,
58 .release = usb_serial_generic_release,
Joris van Rantwijk253ca922007-02-01 20:08:18 +010059 .throttle = usb_serial_generic_throttle,
60 .unthrottle = usb_serial_generic_unthrottle,
Oliver Neukumec225592007-04-27 20:54:57 +020061 .resume = usb_serial_generic_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -070062};
63
Alan Stern765e0ba2012-02-23 14:55:59 -050064static struct usb_serial_driver * const serial_drivers[] = {
65 &usb_serial_generic_device, NULL
66};
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#endif
69
Alan Coxae643872008-07-22 11:11:55 +010070int usb_serial_generic_register(int _debug)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
72 int retval = 0;
73
74 debug = _debug;
75#ifdef CONFIG_USB_SERIAL_GENERIC
76 generic_device_ids[0].idVendor = vendor;
77 generic_device_ids[0].idProduct = product;
Alan Coxae643872008-07-22 11:11:55 +010078 generic_device_ids[0].match_flags =
79 USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_PRODUCT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81 /* register our generic driver with ourselves */
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -070082 retval = usb_serial_register_drivers(serial_drivers, "usbserial_generic", generic_serial_ids);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#endif
84 return retval;
85}
86
Alan Coxae643872008-07-22 11:11:55 +010087void usb_serial_generic_deregister(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
89#ifdef CONFIG_USB_SERIAL_GENERIC
90 /* remove our generic driver */
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -070091 usb_serial_deregister_drivers(serial_drivers);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092#endif
93}
94
Alan Coxa509a7e2009-09-19 13:13:26 -070095int usb_serial_generic_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 int result = 0;
Joris van Rantwijk253ca922007-02-01 20:08:18 +010098 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100100 /* clear the throttle flags */
101 spin_lock_irqsave(&port->lock, flags);
102 port->throttled = 0;
103 port->throttle_req = 0;
104 spin_unlock_irqrestore(&port->lock, flags);
105
106 /* if we have a bulk endpoint, start reading from it */
Johan Hovold41bd72f2010-03-17 23:05:53 +0100107 if (port->bulk_in_size)
Johan Hovoldd83b4052011-11-06 19:06:37 +0100108 result = usb_serial_generic_submit_read_urbs(port, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110 return result;
111}
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700112EXPORT_SYMBOL_GPL(usb_serial_generic_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Alan Cox95da3102008-07-22 11:09:07 +0100114static void generic_cleanup(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
116 struct usb_serial *serial = port->serial;
Johan Hovoldec3ee502010-03-17 23:00:44 +0100117 unsigned long flags;
Johan Hovold27c7acf2010-05-05 23:57:37 +0200118 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 if (serial->dev) {
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100121 /* shutdown any bulk transfers that might be going on */
Johan Hovoldec3ee502010-03-17 23:00:44 +0100122 if (port->bulk_out_size) {
Johan Hovold27c7acf2010-05-05 23:57:37 +0200123 for (i = 0; i < ARRAY_SIZE(port->write_urbs); ++i)
124 usb_kill_urb(port->write_urbs[i]);
Johan Hovoldec3ee502010-03-17 23:00:44 +0100125
126 spin_lock_irqsave(&port->lock, flags);
127 kfifo_reset_out(&port->write_fifo);
128 spin_unlock_irqrestore(&port->lock, flags);
129 }
Johan Hovoldd83b4052011-11-06 19:06:37 +0100130 if (port->bulk_in_size) {
131 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i)
132 usb_kill_urb(port->read_urbs[i]);
133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 }
135}
136
Alan Cox335f8512009-06-11 12:26:29 +0100137void usb_serial_generic_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
Alan Coxae643872008-07-22 11:11:55 +0100139 generic_cleanup(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
Johan Hovoldf26788d2010-03-17 23:00:45 +0100141EXPORT_SYMBOL_GPL(usb_serial_generic_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Johan Hovoldeaa3bcb2010-03-17 23:06:08 +0100143int usb_serial_generic_prepare_write_buffer(struct usb_serial_port *port,
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200144 void *dest, size_t size)
Johan Hovoldeaa3bcb2010-03-17 23:06:08 +0100145{
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200146 return kfifo_out_locked(&port->write_fifo, dest, size, &port->lock);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500147}
148
David VomLehn8e8dce02009-08-28 12:54:27 -0700149/**
150 * usb_serial_generic_write_start - kick off an URB write
151 * @port: Pointer to the &struct usb_serial_port data
152 *
Johan Hovold27c7acf2010-05-05 23:57:37 +0200153 * Returns zero on success, or a negative errno value
David VomLehn8e8dce02009-08-28 12:54:27 -0700154 */
155static int usb_serial_generic_write_start(struct usb_serial_port *port)
156{
Johan Hovold27c7acf2010-05-05 23:57:37 +0200157 struct urb *urb;
158 int count, result;
David VomLehn8e8dce02009-08-28 12:54:27 -0700159 unsigned long flags;
Johan Hovold27c7acf2010-05-05 23:57:37 +0200160 int i;
David VomLehn8e8dce02009-08-28 12:54:27 -0700161
Johan Hovold27c7acf2010-05-05 23:57:37 +0200162 if (test_and_set_bit_lock(USB_SERIAL_WRITE_BUSY, &port->flags))
163 return 0;
164retry:
David VomLehn8e8dce02009-08-28 12:54:27 -0700165 spin_lock_irqsave(&port->lock, flags);
Johan Hovold27c7acf2010-05-05 23:57:37 +0200166 if (!port->write_urbs_free || !kfifo_len(&port->write_fifo)) {
167 clear_bit_unlock(USB_SERIAL_WRITE_BUSY, &port->flags);
Johan Hovold50a5f702010-03-17 23:06:02 +0100168 spin_unlock_irqrestore(&port->lock, flags);
David VomLehn8e8dce02009-08-28 12:54:27 -0700169 return 0;
Johan Hovold50a5f702010-03-17 23:06:02 +0100170 }
Johan Hovold27c7acf2010-05-05 23:57:37 +0200171 i = (int)find_first_bit(&port->write_urbs_free,
172 ARRAY_SIZE(port->write_urbs));
Johan Hovold50a5f702010-03-17 23:06:02 +0100173 spin_unlock_irqrestore(&port->lock, flags);
David VomLehn8e8dce02009-08-28 12:54:27 -0700174
Johan Hovold27c7acf2010-05-05 23:57:37 +0200175 urb = port->write_urbs[i];
Johan Hovoldeaa3bcb2010-03-17 23:06:08 +0100176 count = port->serial->type->prepare_write_buffer(port,
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200177 urb->transfer_buffer,
178 port->bulk_out_size);
Johan Hovold27c7acf2010-05-05 23:57:37 +0200179 urb->transfer_buffer_length = count;
180 usb_serial_debug_data(debug, &port->dev, __func__, count,
181 urb->transfer_buffer);
Johan Hovoldb58af402010-08-04 15:45:57 +0200182 spin_lock_irqsave(&port->lock, flags);
183 port->tx_bytes += count;
184 spin_unlock_irqrestore(&port->lock, flags);
185
186 clear_bit(i, &port->write_urbs_free);
Johan Hovold27c7acf2010-05-05 23:57:37 +0200187 result = usb_submit_urb(urb, GFP_ATOMIC);
David VomLehn8e8dce02009-08-28 12:54:27 -0700188 if (result) {
Johan Hovoldf1475a02012-02-10 13:20:50 +0100189 dev_err_console(port, "%s - error submitting urb: %d\n",
David VomLehn8e8dce02009-08-28 12:54:27 -0700190 __func__, result);
Johan Hovoldb58af402010-08-04 15:45:57 +0200191 set_bit(i, &port->write_urbs_free);
192 spin_lock_irqsave(&port->lock, flags);
193 port->tx_bytes -= count;
194 spin_unlock_irqrestore(&port->lock, flags);
195
Johan Hovold27c7acf2010-05-05 23:57:37 +0200196 clear_bit_unlock(USB_SERIAL_WRITE_BUSY, &port->flags);
Johan Hovold30af7fb2010-03-17 23:00:42 +0100197 return result;
198 }
Johan Hovold30af7fb2010-03-17 23:00:42 +0100199
Johan Hovold27c7acf2010-05-05 23:57:37 +0200200 /* Try sending off another urb, unless in irq context (in which case
201 * there will be no free urb). */
202 if (!in_irq())
203 goto retry;
204
205 clear_bit_unlock(USB_SERIAL_WRITE_BUSY, &port->flags);
206
207 return 0;
David VomLehn8e8dce02009-08-28 12:54:27 -0700208}
209
210/**
211 * usb_serial_generic_write - generic write function for serial USB devices
212 * @tty: Pointer to &struct tty_struct for the device
213 * @port: Pointer to the &usb_serial_port structure for the device
214 * @buf: Pointer to the data to write
215 * @count: Number of bytes to write
216 *
217 * Returns the number of characters actually written, which may be anything
218 * from zero to @count. If an error occurs, it returns the negative errno
219 * value.
220 */
Alan Cox95da3102008-07-22 11:09:07 +0100221int usb_serial_generic_write(struct tty_struct *tty,
222 struct usb_serial_port *port, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100226 /* only do something if we have a bulk out endpoint */
227 if (!port->bulk_out_size)
228 return -ENODEV;
229
Johan Hovold1a1405e2010-03-17 23:06:01 +0100230 if (!count)
Alan Coxae643872008-07-22 11:11:55 +0100231 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Stefani Seibold119eecc2009-12-23 09:10:48 +0100233 count = kfifo_in_locked(&port->write_fifo, buf, count, &port->lock);
David VomLehn8e8dce02009-08-28 12:54:27 -0700234 result = usb_serial_generic_write_start(port);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200235 if (result)
236 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200238 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500240EXPORT_SYMBOL_GPL(usb_serial_generic_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Alan Coxae643872008-07-22 11:11:55 +0100242int usb_serial_generic_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
Alan Cox95da3102008-07-22 11:09:07 +0100244 struct usb_serial_port *port = tty->driver_data;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500245 unsigned long flags;
Johan Hovold25d514c2010-03-17 23:06:07 +0100246 int room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100248 if (!port->bulk_out_size)
249 return 0;
250
Jason Wessel715b1dc2009-05-11 15:24:07 -0500251 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200252 room = kfifo_avail(&port->write_fifo);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500253 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Harvey Harrison441b62c2008-03-03 16:08:34 -0800255 dbg("%s - returns %d", __func__, room);
Alan Coxa5b6f602008-04-08 17:16:06 +0100256 return room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
258
Alan Cox95da3102008-07-22 11:09:07 +0100259int usb_serial_generic_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
Alan Cox95da3102008-07-22 11:09:07 +0100261 struct usb_serial_port *port = tty->driver_data;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500262 unsigned long flags;
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100263 int chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100265 if (!port->bulk_out_size)
266 return 0;
267
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100268 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200269 chars = kfifo_len(&port->write_fifo) + port->tx_bytes;
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100270 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Harvey Harrison441b62c2008-03-03 16:08:34 -0800272 dbg("%s - returns %d", __func__, chars);
Alan Cox95da3102008-07-22 11:09:07 +0100273 return chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
275
Johan Hovoldd83b4052011-11-06 19:06:37 +0100276static int usb_serial_generic_submit_read_urb(struct usb_serial_port *port,
277 int index, gfp_t mem_flags)
278{
279 int res;
280
281 if (!test_and_clear_bit(index, &port->read_urbs_free))
282 return 0;
283
Johan Hovoldc1d830c2012-04-25 16:12:08 +0200284 dbg("%s - port %d, urb %d", __func__, port->number, index);
Johan Hovoldd83b4052011-11-06 19:06:37 +0100285
286 res = usb_submit_urb(port->read_urbs[index], mem_flags);
287 if (res) {
288 if (res != -EPERM) {
289 dev_err(&port->dev,
290 "%s - usb_submit_urb failed: %d\n",
291 __func__, res);
292 }
293 set_bit(index, &port->read_urbs_free);
294 return res;
295 }
296
297 return 0;
298}
299
300int usb_serial_generic_submit_read_urbs(struct usb_serial_port *port,
Johan Hovold41bd72f2010-03-17 23:05:53 +0100301 gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
Johan Hovoldd83b4052011-11-06 19:06:37 +0100303 int res;
304 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Johan Hovoldd83b4052011-11-06 19:06:37 +0100306 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i) {
307 res = usb_serial_generic_submit_read_urb(port, i, mem_flags);
308 if (res)
309 goto err;
Johan Hovold0ae14742010-02-27 14:05:46 +0100310 }
Johan Hovoldd83b4052011-11-06 19:06:37 +0100311
312 return 0;
313err:
314 for (; i >= 0; --i)
315 usb_kill_urb(port->read_urbs[i]);
316
317 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
Johan Hovoldd83b4052011-11-06 19:06:37 +0100319EXPORT_SYMBOL_GPL(usb_serial_generic_submit_read_urbs);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100320
Johan Hovold23154322010-03-17 23:05:57 +0100321void usb_serial_generic_process_read_urb(struct urb *urb)
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200322{
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100323 struct usb_serial_port *port = urb->context;
324 struct tty_struct *tty;
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500325 char *ch = (char *)urb->transfer_buffer;
326 int i;
327
Johan Hovold56a1df42010-05-15 17:53:44 +0200328 if (!urb->actual_length)
329 return;
330
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100331 tty = tty_port_tty_get(&port->port);
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500332 if (!tty)
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100333 return;
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200334
Alan Cox4cd1de02009-07-09 13:35:52 +0100335 /* The per character mucking around with sysrq path it too slow for
336 stuff like 3G modems, so shortcircuit it in the 99.9999999% of cases
337 where the USB serial is not a console anyway */
Jason Wesselbd5afa92010-03-08 21:50:12 -0600338 if (!port->port.console || !port->sysrq)
Alan Cox4cd1de02009-07-09 13:35:52 +0100339 tty_insert_flip_string(tty, ch, urb->actual_length);
340 else {
Alan Cox4cd1de02009-07-09 13:35:52 +0100341 for (i = 0; i < urb->actual_length; i++, ch++) {
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700342 if (!usb_serial_handle_sysrq_char(port, *ch))
Alan Cox4cd1de02009-07-09 13:35:52 +0100343 tty_insert_flip_char(tty, *ch, TTY_NORMAL);
344 }
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200345 }
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500346 tty_flip_buffer_push(tty);
Alan Cox4a90f092008-10-13 10:39:46 +0100347 tty_kref_put(tty);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200348}
Johan Hovold23154322010-03-17 23:05:57 +0100349EXPORT_SYMBOL_GPL(usb_serial_generic_process_read_urb);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200350
Alan Cox95da3102008-07-22 11:09:07 +0100351void usb_serial_generic_read_bulk_callback(struct urb *urb)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100352{
Ming Leicdc97792008-02-24 18:41:47 +0800353 struct usb_serial_port *port = urb->context;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100354 unsigned char *data = urb->transfer_buffer;
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100355 unsigned long flags;
Johan Hovoldd83b4052011-11-06 19:06:37 +0100356 int i;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100357
Johan Hovoldd83b4052011-11-06 19:06:37 +0100358 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i) {
359 if (urb == port->read_urbs[i])
360 break;
361 }
362 set_bit(i, &port->read_urbs_free);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100363
Johan Hovoldc1d830c2012-04-25 16:12:08 +0200364 dbg("%s - port %d, urb %d, len %d", __func__, port->number, i,
Johan Hovoldd83b4052011-11-06 19:06:37 +0100365 urb->actual_length);
366 if (urb->status) {
Johan Hovoldc1d830c2012-04-25 16:12:08 +0200367 dbg("%s - non-zero urb status: %d", __func__, urb->status);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100368 return;
369 }
370
Alan Coxae643872008-07-22 11:11:55 +0100371 usb_serial_debug_data(debug, &port->dev, __func__,
372 urb->actual_length, data);
Johan Hovold23154322010-03-17 23:05:57 +0100373 port->serial->type->process_read_urb(urb);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100374
375 /* Throttle the device if requested by tty */
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100376 spin_lock_irqsave(&port->lock, flags);
Alan Coxae643872008-07-22 11:11:55 +0100377 port->throttled = port->throttle_req;
378 if (!port->throttled) {
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800379 spin_unlock_irqrestore(&port->lock, flags);
Johan Hovoldd83b4052011-11-06 19:06:37 +0100380 usb_serial_generic_submit_read_urb(port, i, GFP_ATOMIC);
Alan Coxae643872008-07-22 11:11:55 +0100381 } else
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800382 spin_unlock_irqrestore(&port->lock, flags);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100383}
Luiz Fernando N. Capitulino166ffcc2006-07-11 14:19:25 -0300384EXPORT_SYMBOL_GPL(usb_serial_generic_read_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Alan Cox95da3102008-07-22 11:09:07 +0100386void usb_serial_generic_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
Jason Wessel715b1dc2009-05-11 15:24:07 -0500388 unsigned long flags;
Ming Leicdc97792008-02-24 18:41:47 +0800389 struct usb_serial_port *port = urb->context;
Greg Kroah-Hartmanfbd272252007-06-15 15:44:13 -0700390 int status = urb->status;
Johan Hovold27c7acf2010-05-05 23:57:37 +0200391 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200393 for (i = 0; i < ARRAY_SIZE(port->write_urbs); ++i)
394 if (port->write_urbs[i] == urb)
395 break;
396
397 spin_lock_irqsave(&port->lock, flags);
398 port->tx_bytes -= urb->transfer_buffer_length;
399 set_bit(i, &port->write_urbs_free);
400 spin_unlock_irqrestore(&port->lock, flags);
401
402 if (status) {
403 dbg("%s - non-zero urb status: %d", __func__, status);
Johan Hovold25915302010-01-06 15:48:42 -0800404
Jason Wessel715b1dc2009-05-11 15:24:07 -0500405 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200406 kfifo_reset_out(&port->write_fifo);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500407 spin_unlock_irqrestore(&port->lock, flags);
408 } else {
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200409 usb_serial_generic_write_start(port);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500410 }
411
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700412 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
Greg Kroah-Hartmanbb833982005-11-17 09:48:18 -0800414EXPORT_SYMBOL_GPL(usb_serial_generic_write_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Alan Cox95da3102008-07-22 11:09:07 +0100416void usb_serial_generic_throttle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100417{
Alan Cox95da3102008-07-22 11:09:07 +0100418 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100419 unsigned long flags;
420
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100421 /* Set the throttle request flag. It will be picked up
422 * by usb_serial_generic_read_bulk_callback(). */
423 spin_lock_irqsave(&port->lock, flags);
424 port->throttle_req = 1;
425 spin_unlock_irqrestore(&port->lock, flags);
426}
Johan Hovoldf1e949a2010-03-17 23:05:59 +0100427EXPORT_SYMBOL_GPL(usb_serial_generic_throttle);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100428
Alan Cox95da3102008-07-22 11:09:07 +0100429void usb_serial_generic_unthrottle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100430{
Alan Cox95da3102008-07-22 11:09:07 +0100431 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100432 int was_throttled;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100433
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100434 /* Clear the throttle flags */
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100435 spin_lock_irq(&port->lock);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100436 was_throttled = port->throttled;
437 port->throttled = port->throttle_req = 0;
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100438 spin_unlock_irq(&port->lock);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100439
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100440 if (was_throttled)
Johan Hovoldd83b4052011-11-06 19:06:37 +0100441 usb_serial_generic_submit_read_urbs(port, GFP_KERNEL);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100442}
Johan Hovoldf1e949a2010-03-17 23:05:59 +0100443EXPORT_SYMBOL_GPL(usb_serial_generic_unthrottle);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100444
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700445#ifdef CONFIG_MAGIC_SYSRQ
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700446int usb_serial_handle_sysrq_char(struct usb_serial_port *port, unsigned int ch)
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500447{
Jason Wesselbd5afa92010-03-08 21:50:12 -0600448 if (port->sysrq && port->port.console) {
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500449 if (ch && time_before(jiffies, port->sysrq)) {
Dmitry Torokhovf3353972010-08-17 21:15:47 -0700450 handle_sysrq(ch);
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500451 port->sysrq = 0;
452 return 1;
453 }
454 port->sysrq = 0;
455 }
456 return 0;
457}
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700458#else
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700459int usb_serial_handle_sysrq_char(struct usb_serial_port *port, unsigned int ch)
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700460{
461 return 0;
462}
463#endif
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500464EXPORT_SYMBOL_GPL(usb_serial_handle_sysrq_char);
465
466int usb_serial_handle_break(struct usb_serial_port *port)
467{
468 if (!port->sysrq) {
469 port->sysrq = jiffies + HZ*5;
470 return 1;
471 }
472 port->sysrq = 0;
473 return 0;
474}
475EXPORT_SYMBOL_GPL(usb_serial_handle_break);
476
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100477/**
478 * usb_serial_handle_dcd_change - handle a change of carrier detect state
479 * @port: usb_serial_port structure for the open port
480 * @tty: tty_struct structure for the port
481 * @status: new carrier detect status, nonzero if active
482 */
483void usb_serial_handle_dcd_change(struct usb_serial_port *usb_port,
484 struct tty_struct *tty, unsigned int status)
485{
486 struct tty_port *port = &usb_port->port;
487
488 dbg("%s - port %d, status %d", __func__, usb_port->number, status);
489
490 if (status)
491 wake_up_interruptible(&port->open_wait);
492 else if (tty && !C_CLOCAL(tty))
493 tty_hangup(tty);
494}
495EXPORT_SYMBOL_GPL(usb_serial_handle_dcd_change);
496
David VomLehn8e8dce02009-08-28 12:54:27 -0700497int usb_serial_generic_resume(struct usb_serial *serial)
498{
499 struct usb_serial_port *port;
500 int i, c = 0, r;
501
502 for (i = 0; i < serial->num_ports; i++) {
503 port = serial->port[i];
Alan Stern1f871582010-02-17 10:05:47 -0500504 if (!test_bit(ASYNCB_INITIALIZED, &port->port.flags))
David VomLehn8e8dce02009-08-28 12:54:27 -0700505 continue;
506
Johan Hovoldd83b4052011-11-06 19:06:37 +0100507 if (port->bulk_in_size) {
508 r = usb_serial_generic_submit_read_urbs(port,
509 GFP_NOIO);
David VomLehn8e8dce02009-08-28 12:54:27 -0700510 if (r < 0)
511 c++;
512 }
513
Johan Hovold27c7acf2010-05-05 23:57:37 +0200514 if (port->bulk_out_size) {
David VomLehn8e8dce02009-08-28 12:54:27 -0700515 r = usb_serial_generic_write_start(port);
516 if (r < 0)
517 c++;
518 }
519 }
520
521 return c ? -EIO : 0;
522}
523EXPORT_SYMBOL_GPL(usb_serial_generic_resume);
524
Alan Sternf9c99bb2009-06-02 11:53:55 -0400525void usb_serial_generic_disconnect(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
527 int i;
528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 /* stop reads and writes on all ports */
Alan Coxae643872008-07-22 11:11:55 +0100530 for (i = 0; i < serial->num_ports; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 generic_cleanup(serial->port[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532}
Bill Pemberton5c7efeb2010-08-05 17:01:10 -0400533EXPORT_SYMBOL_GPL(usb_serial_generic_disconnect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Alan Sternf9c99bb2009-06-02 11:53:55 -0400535void usb_serial_generic_release(struct usb_serial *serial)
536{
Alan Sternf9c99bb2009-06-02 11:53:55 -0400537}