blob: 4c5c23f1cae5db8a5ff157cbe0277dfb4bc42e5d [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 -070027#ifdef CONFIG_USB_SERIAL_GENERIC
David Brownellb46d60f2007-03-23 12:51:55 -070028
Linus Torvalds1da177e2005-04-16 15:20:36 -070029static __u16 vendor = 0x05f9;
30static __u16 product = 0xffff;
31
32module_param(vendor, ushort, 0);
33MODULE_PARM_DESC(vendor, "User specified USB idVendor");
34
35module_param(product, ushort, 0);
36MODULE_PARM_DESC(product, "User specified USB idProduct");
37
38static struct usb_device_id generic_device_ids[2]; /* Initially all zeroes. */
39
40/* All of the device info needed for the Generic Serial Converter */
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -070041struct usb_serial_driver usb_serial_generic_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070042 .driver = {
43 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070044 .name = "generic",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070045 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 .id_table = generic_device_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 .num_ports = 1,
Alan Sternf9c99bb2009-06-02 11:53:55 -040048 .disconnect = usb_serial_generic_disconnect,
49 .release = usb_serial_generic_release,
Joris van Rantwijk253ca922007-02-01 20:08:18 +010050 .throttle = usb_serial_generic_throttle,
51 .unthrottle = usb_serial_generic_unthrottle,
Oliver Neukumec225592007-04-27 20:54:57 +020052 .resume = usb_serial_generic_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -070053};
54
Alan Stern765e0ba2012-02-23 14:55:59 -050055static struct usb_serial_driver * const serial_drivers[] = {
56 &usb_serial_generic_device, NULL
57};
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#endif
60
Greg Kroah-Hartman3033bc82012-09-18 16:05:17 +010061int usb_serial_generic_register(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
63 int retval = 0;
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#ifdef CONFIG_USB_SERIAL_GENERIC
66 generic_device_ids[0].idVendor = vendor;
67 generic_device_ids[0].idProduct = product;
Alan Coxae643872008-07-22 11:11:55 +010068 generic_device_ids[0].match_flags =
69 USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_PRODUCT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71 /* register our generic driver with ourselves */
Alan Stern0b847042012-05-31 17:03:52 -040072 retval = usb_serial_register_drivers(serial_drivers,
73 "usbserial_generic", generic_device_ids);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#endif
75 return retval;
76}
77
Alan Coxae643872008-07-22 11:11:55 +010078void usb_serial_generic_deregister(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
80#ifdef CONFIG_USB_SERIAL_GENERIC
81 /* remove our generic driver */
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -070082 usb_serial_deregister_drivers(serial_drivers);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#endif
84}
85
Alan Coxa509a7e2009-09-19 13:13:26 -070086int usb_serial_generic_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 int result = 0;
Joris van Rantwijk253ca922007-02-01 20:08:18 +010089 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Joris van Rantwijk253ca922007-02-01 20:08:18 +010091 /* clear the throttle flags */
92 spin_lock_irqsave(&port->lock, flags);
93 port->throttled = 0;
94 port->throttle_req = 0;
95 spin_unlock_irqrestore(&port->lock, flags);
96
97 /* if we have a bulk endpoint, start reading from it */
Johan Hovold41bd72f2010-03-17 23:05:53 +010098 if (port->bulk_in_size)
Johan Hovoldd83b4052011-11-06 19:06:37 +010099 result = usb_serial_generic_submit_read_urbs(port, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101 return result;
102}
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700103EXPORT_SYMBOL_GPL(usb_serial_generic_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Alan Cox95da3102008-07-22 11:09:07 +0100105static void generic_cleanup(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
107 struct usb_serial *serial = port->serial;
Johan Hovoldec3ee502010-03-17 23:00:44 +0100108 unsigned long flags;
Johan Hovold27c7acf2010-05-05 23:57:37 +0200109 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 if (serial->dev) {
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100112 /* shutdown any bulk transfers that might be going on */
Johan Hovoldec3ee502010-03-17 23:00:44 +0100113 if (port->bulk_out_size) {
Johan Hovold27c7acf2010-05-05 23:57:37 +0200114 for (i = 0; i < ARRAY_SIZE(port->write_urbs); ++i)
115 usb_kill_urb(port->write_urbs[i]);
Johan Hovoldec3ee502010-03-17 23:00:44 +0100116
117 spin_lock_irqsave(&port->lock, flags);
118 kfifo_reset_out(&port->write_fifo);
119 spin_unlock_irqrestore(&port->lock, flags);
120 }
Johan Hovoldd83b4052011-11-06 19:06:37 +0100121 if (port->bulk_in_size) {
122 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i)
123 usb_kill_urb(port->read_urbs[i]);
124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 }
126}
127
Alan Cox335f8512009-06-11 12:26:29 +0100128void usb_serial_generic_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
Alan Coxae643872008-07-22 11:11:55 +0100130 generic_cleanup(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131}
Johan Hovoldf26788d2010-03-17 23:00:45 +0100132EXPORT_SYMBOL_GPL(usb_serial_generic_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Johan Hovoldeaa3bcb2010-03-17 23:06:08 +0100134int usb_serial_generic_prepare_write_buffer(struct usb_serial_port *port,
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200135 void *dest, size_t size)
Johan Hovoldeaa3bcb2010-03-17 23:06:08 +0100136{
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200137 return kfifo_out_locked(&port->write_fifo, dest, size, &port->lock);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500138}
139
David VomLehn8e8dce02009-08-28 12:54:27 -0700140/**
141 * usb_serial_generic_write_start - kick off an URB write
142 * @port: Pointer to the &struct usb_serial_port data
143 *
Johan Hovold27c7acf2010-05-05 23:57:37 +0200144 * Returns zero on success, or a negative errno value
David VomLehn8e8dce02009-08-28 12:54:27 -0700145 */
146static int usb_serial_generic_write_start(struct usb_serial_port *port)
147{
Johan Hovold27c7acf2010-05-05 23:57:37 +0200148 struct urb *urb;
149 int count, result;
David VomLehn8e8dce02009-08-28 12:54:27 -0700150 unsigned long flags;
Johan Hovold27c7acf2010-05-05 23:57:37 +0200151 int i;
David VomLehn8e8dce02009-08-28 12:54:27 -0700152
Johan Hovold27c7acf2010-05-05 23:57:37 +0200153 if (test_and_set_bit_lock(USB_SERIAL_WRITE_BUSY, &port->flags))
154 return 0;
155retry:
David VomLehn8e8dce02009-08-28 12:54:27 -0700156 spin_lock_irqsave(&port->lock, flags);
Johan Hovold27c7acf2010-05-05 23:57:37 +0200157 if (!port->write_urbs_free || !kfifo_len(&port->write_fifo)) {
158 clear_bit_unlock(USB_SERIAL_WRITE_BUSY, &port->flags);
Johan Hovold50a5f702010-03-17 23:06:02 +0100159 spin_unlock_irqrestore(&port->lock, flags);
David VomLehn8e8dce02009-08-28 12:54:27 -0700160 return 0;
Johan Hovold50a5f702010-03-17 23:06:02 +0100161 }
Johan Hovold27c7acf2010-05-05 23:57:37 +0200162 i = (int)find_first_bit(&port->write_urbs_free,
163 ARRAY_SIZE(port->write_urbs));
Johan Hovold50a5f702010-03-17 23:06:02 +0100164 spin_unlock_irqrestore(&port->lock, flags);
David VomLehn8e8dce02009-08-28 12:54:27 -0700165
Johan Hovold27c7acf2010-05-05 23:57:37 +0200166 urb = port->write_urbs[i];
Johan Hovoldeaa3bcb2010-03-17 23:06:08 +0100167 count = port->serial->type->prepare_write_buffer(port,
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200168 urb->transfer_buffer,
169 port->bulk_out_size);
Johan Hovold27c7acf2010-05-05 23:57:37 +0200170 urb->transfer_buffer_length = count;
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100171 usb_serial_debug_data(&port->dev, __func__, count, urb->transfer_buffer);
Johan Hovoldb58af402010-08-04 15:45:57 +0200172 spin_lock_irqsave(&port->lock, flags);
173 port->tx_bytes += count;
174 spin_unlock_irqrestore(&port->lock, flags);
175
176 clear_bit(i, &port->write_urbs_free);
Johan Hovold27c7acf2010-05-05 23:57:37 +0200177 result = usb_submit_urb(urb, GFP_ATOMIC);
David VomLehn8e8dce02009-08-28 12:54:27 -0700178 if (result) {
Johan Hovoldf1475a02012-02-10 13:20:50 +0100179 dev_err_console(port, "%s - error submitting urb: %d\n",
David VomLehn8e8dce02009-08-28 12:54:27 -0700180 __func__, result);
Johan Hovoldb58af402010-08-04 15:45:57 +0200181 set_bit(i, &port->write_urbs_free);
182 spin_lock_irqsave(&port->lock, flags);
183 port->tx_bytes -= count;
184 spin_unlock_irqrestore(&port->lock, flags);
185
Johan Hovold27c7acf2010-05-05 23:57:37 +0200186 clear_bit_unlock(USB_SERIAL_WRITE_BUSY, &port->flags);
Johan Hovold30af7fb2010-03-17 23:00:42 +0100187 return result;
188 }
Johan Hovold30af7fb2010-03-17 23:00:42 +0100189
Johan Hovold27c7acf2010-05-05 23:57:37 +0200190 /* Try sending off another urb, unless in irq context (in which case
191 * there will be no free urb). */
192 if (!in_irq())
193 goto retry;
194
195 clear_bit_unlock(USB_SERIAL_WRITE_BUSY, &port->flags);
196
197 return 0;
David VomLehn8e8dce02009-08-28 12:54:27 -0700198}
199
200/**
201 * usb_serial_generic_write - generic write function for serial USB devices
202 * @tty: Pointer to &struct tty_struct for the device
203 * @port: Pointer to the &usb_serial_port structure for the device
204 * @buf: Pointer to the data to write
205 * @count: Number of bytes to write
206 *
207 * Returns the number of characters actually written, which may be anything
208 * from zero to @count. If an error occurs, it returns the negative errno
209 * value.
210 */
Alan Cox95da3102008-07-22 11:09:07 +0100211int usb_serial_generic_write(struct tty_struct *tty,
212 struct usb_serial_port *port, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100216 /* only do something if we have a bulk out endpoint */
217 if (!port->bulk_out_size)
218 return -ENODEV;
219
Johan Hovold1a1405e2010-03-17 23:06:01 +0100220 if (!count)
Alan Coxae643872008-07-22 11:11:55 +0100221 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Stefani Seibold119eecc2009-12-23 09:10:48 +0100223 count = kfifo_in_locked(&port->write_fifo, buf, count, &port->lock);
David VomLehn8e8dce02009-08-28 12:54:27 -0700224 result = usb_serial_generic_write_start(port);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200225 if (result)
226 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200228 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500230EXPORT_SYMBOL_GPL(usb_serial_generic_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Alan Coxae643872008-07-22 11:11:55 +0100232int usb_serial_generic_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
Alan Cox95da3102008-07-22 11:09:07 +0100234 struct usb_serial_port *port = tty->driver_data;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500235 unsigned long flags;
Johan Hovold25d514c2010-03-17 23:06:07 +0100236 int room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100238 if (!port->bulk_out_size)
239 return 0;
240
Jason Wessel715b1dc2009-05-11 15:24:07 -0500241 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200242 room = kfifo_avail(&port->write_fifo);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500243 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700245 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room);
Alan Coxa5b6f602008-04-08 17:16:06 +0100246 return room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
248
Alan Cox95da3102008-07-22 11:09:07 +0100249int usb_serial_generic_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
Alan Cox95da3102008-07-22 11:09:07 +0100251 struct usb_serial_port *port = tty->driver_data;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500252 unsigned long flags;
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100253 int chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100255 if (!port->bulk_out_size)
256 return 0;
257
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100258 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200259 chars = kfifo_len(&port->write_fifo) + port->tx_bytes;
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100260 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700262 dev_dbg(&port->dev, "%s - returns %d\n", __func__, chars);
Alan Cox95da3102008-07-22 11:09:07 +0100263 return chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
Johan Hovold428d9982012-10-29 10:56:25 +0100265EXPORT_SYMBOL_GPL(usb_serial_generic_chars_in_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Johan Hovoldd83b4052011-11-06 19:06:37 +0100267static int usb_serial_generic_submit_read_urb(struct usb_serial_port *port,
268 int index, gfp_t mem_flags)
269{
270 int res;
271
272 if (!test_and_clear_bit(index, &port->read_urbs_free))
273 return 0;
274
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700275 dev_dbg(&port->dev, "%s - port %d, urb %d\n", __func__,
276 port->number, index);
Johan Hovoldd83b4052011-11-06 19:06:37 +0100277
278 res = usb_submit_urb(port->read_urbs[index], mem_flags);
279 if (res) {
280 if (res != -EPERM) {
281 dev_err(&port->dev,
282 "%s - usb_submit_urb failed: %d\n",
283 __func__, res);
284 }
285 set_bit(index, &port->read_urbs_free);
286 return res;
287 }
288
289 return 0;
290}
291
292int usb_serial_generic_submit_read_urbs(struct usb_serial_port *port,
Johan Hovold41bd72f2010-03-17 23:05:53 +0100293 gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
Johan Hovoldd83b4052011-11-06 19:06:37 +0100295 int res;
296 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Johan Hovoldd83b4052011-11-06 19:06:37 +0100298 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i) {
299 res = usb_serial_generic_submit_read_urb(port, i, mem_flags);
300 if (res)
301 goto err;
Johan Hovold0ae14742010-02-27 14:05:46 +0100302 }
Johan Hovoldd83b4052011-11-06 19:06:37 +0100303
304 return 0;
305err:
306 for (; i >= 0; --i)
307 usb_kill_urb(port->read_urbs[i]);
308
309 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310}
Johan Hovoldd83b4052011-11-06 19:06:37 +0100311EXPORT_SYMBOL_GPL(usb_serial_generic_submit_read_urbs);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100312
Johan Hovold23154322010-03-17 23:05:57 +0100313void usb_serial_generic_process_read_urb(struct urb *urb)
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200314{
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100315 struct usb_serial_port *port = urb->context;
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500316 char *ch = (char *)urb->transfer_buffer;
317 int i;
318
Johan Hovold56a1df42010-05-15 17:53:44 +0200319 if (!urb->actual_length)
320 return;
321
Alan Cox4cd1de0a2009-07-09 13:35:52 +0100322 /* The per character mucking around with sysrq path it too slow for
323 stuff like 3G modems, so shortcircuit it in the 99.9999999% of cases
324 where the USB serial is not a console anyway */
Jason Wesselbd5afa92010-03-08 21:50:12 -0600325 if (!port->port.console || !port->sysrq)
Jiri Slaby05c7cd32013-01-03 15:53:04 +0100326 tty_insert_flip_string(&port->port, ch, urb->actual_length);
Alan Cox4cd1de0a2009-07-09 13:35:52 +0100327 else {
Alan Cox4cd1de0a2009-07-09 13:35:52 +0100328 for (i = 0; i < urb->actual_length; i++, ch++) {
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700329 if (!usb_serial_handle_sysrq_char(port, *ch))
Jiri Slaby92a19f92013-01-03 15:53:03 +0100330 tty_insert_flip_char(&port->port, *ch, TTY_NORMAL);
Alan Cox4cd1de0a2009-07-09 13:35:52 +0100331 }
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200332 }
Jiri Slaby2e124b42013-01-03 15:53:06 +0100333 tty_flip_buffer_push(&port->port);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200334}
Johan Hovold23154322010-03-17 23:05:57 +0100335EXPORT_SYMBOL_GPL(usb_serial_generic_process_read_urb);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200336
Alan Cox95da3102008-07-22 11:09:07 +0100337void usb_serial_generic_read_bulk_callback(struct urb *urb)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100338{
Ming Leicdc97792008-02-24 18:41:47 +0800339 struct usb_serial_port *port = urb->context;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100340 unsigned char *data = urb->transfer_buffer;
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100341 unsigned long flags;
Johan Hovoldd83b4052011-11-06 19:06:37 +0100342 int i;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100343
Johan Hovoldd83b4052011-11-06 19:06:37 +0100344 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i) {
345 if (urb == port->read_urbs[i])
346 break;
347 }
348 set_bit(i, &port->read_urbs_free);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100349
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700350 dev_dbg(&port->dev, "%s - port %d, urb %d, len %d\n",
351 __func__, port->number, i, urb->actual_length);
352
Johan Hovoldd83b4052011-11-06 19:06:37 +0100353 if (urb->status) {
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700354 dev_dbg(&port->dev, "%s - non-zero urb status: %d\n",
355 __func__, urb->status);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100356 return;
357 }
358
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100359 usb_serial_debug_data(&port->dev, __func__, urb->actual_length, data);
Johan Hovold23154322010-03-17 23:05:57 +0100360 port->serial->type->process_read_urb(urb);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100361
362 /* Throttle the device if requested by tty */
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100363 spin_lock_irqsave(&port->lock, flags);
Alan Coxae643872008-07-22 11:11:55 +0100364 port->throttled = port->throttle_req;
365 if (!port->throttled) {
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800366 spin_unlock_irqrestore(&port->lock, flags);
Johan Hovoldd83b4052011-11-06 19:06:37 +0100367 usb_serial_generic_submit_read_urb(port, i, GFP_ATOMIC);
Alan Coxae643872008-07-22 11:11:55 +0100368 } else
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800369 spin_unlock_irqrestore(&port->lock, flags);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100370}
Luiz Fernando N. Capitulino166ffcc2006-07-11 14:19:25 -0300371EXPORT_SYMBOL_GPL(usb_serial_generic_read_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Alan Cox95da3102008-07-22 11:09:07 +0100373void usb_serial_generic_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Jason Wessel715b1dc2009-05-11 15:24:07 -0500375 unsigned long flags;
Ming Leicdc97792008-02-24 18:41:47 +0800376 struct usb_serial_port *port = urb->context;
Greg Kroah-Hartmanfbd272252007-06-15 15:44:13 -0700377 int status = urb->status;
Johan Hovold27c7acf2010-05-05 23:57:37 +0200378 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200380 for (i = 0; i < ARRAY_SIZE(port->write_urbs); ++i)
381 if (port->write_urbs[i] == urb)
382 break;
383
384 spin_lock_irqsave(&port->lock, flags);
385 port->tx_bytes -= urb->transfer_buffer_length;
386 set_bit(i, &port->write_urbs_free);
387 spin_unlock_irqrestore(&port->lock, flags);
388
389 if (status) {
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700390 dev_dbg(&port->dev, "%s - non-zero urb status: %d\n",
391 __func__, status);
Johan Hovold25915302010-01-06 15:48:42 -0800392
Jason Wessel715b1dc2009-05-11 15:24:07 -0500393 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200394 kfifo_reset_out(&port->write_fifo);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500395 spin_unlock_irqrestore(&port->lock, flags);
396 } else {
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200397 usb_serial_generic_write_start(port);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500398 }
399
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700400 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
Greg Kroah-Hartmanbb833982005-11-17 09:48:18 -0800402EXPORT_SYMBOL_GPL(usb_serial_generic_write_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Alan Cox95da3102008-07-22 11:09:07 +0100404void usb_serial_generic_throttle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100405{
Alan Cox95da3102008-07-22 11:09:07 +0100406 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100407 unsigned long flags;
408
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100409 /* Set the throttle request flag. It will be picked up
410 * by usb_serial_generic_read_bulk_callback(). */
411 spin_lock_irqsave(&port->lock, flags);
412 port->throttle_req = 1;
413 spin_unlock_irqrestore(&port->lock, flags);
414}
Johan Hovoldf1e949a2010-03-17 23:05:59 +0100415EXPORT_SYMBOL_GPL(usb_serial_generic_throttle);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100416
Alan Cox95da3102008-07-22 11:09:07 +0100417void usb_serial_generic_unthrottle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100418{
Alan Cox95da3102008-07-22 11:09:07 +0100419 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100420 int was_throttled;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100421
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100422 /* Clear the throttle flags */
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100423 spin_lock_irq(&port->lock);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100424 was_throttled = port->throttled;
425 port->throttled = port->throttle_req = 0;
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100426 spin_unlock_irq(&port->lock);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100427
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100428 if (was_throttled)
Johan Hovoldd83b4052011-11-06 19:06:37 +0100429 usb_serial_generic_submit_read_urbs(port, GFP_KERNEL);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100430}
Johan Hovoldf1e949a2010-03-17 23:05:59 +0100431EXPORT_SYMBOL_GPL(usb_serial_generic_unthrottle);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100432
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700433#ifdef CONFIG_MAGIC_SYSRQ
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700434int usb_serial_handle_sysrq_char(struct usb_serial_port *port, unsigned int ch)
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500435{
Jason Wesselbd5afa92010-03-08 21:50:12 -0600436 if (port->sysrq && port->port.console) {
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500437 if (ch && time_before(jiffies, port->sysrq)) {
Dmitry Torokhovf3353972010-08-17 21:15:47 -0700438 handle_sysrq(ch);
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500439 port->sysrq = 0;
440 return 1;
441 }
442 port->sysrq = 0;
443 }
444 return 0;
445}
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700446#else
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700447int usb_serial_handle_sysrq_char(struct usb_serial_port *port, unsigned int ch)
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700448{
449 return 0;
450}
451#endif
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500452EXPORT_SYMBOL_GPL(usb_serial_handle_sysrq_char);
453
454int usb_serial_handle_break(struct usb_serial_port *port)
455{
456 if (!port->sysrq) {
457 port->sysrq = jiffies + HZ*5;
458 return 1;
459 }
460 port->sysrq = 0;
461 return 0;
462}
463EXPORT_SYMBOL_GPL(usb_serial_handle_break);
464
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100465/**
466 * usb_serial_handle_dcd_change - handle a change of carrier detect state
467 * @port: usb_serial_port structure for the open port
468 * @tty: tty_struct structure for the port
469 * @status: new carrier detect status, nonzero if active
470 */
471void usb_serial_handle_dcd_change(struct usb_serial_port *usb_port,
472 struct tty_struct *tty, unsigned int status)
473{
474 struct tty_port *port = &usb_port->port;
475
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700476 dev_dbg(&usb_port->dev, "%s - port %d, status %d\n", __func__,
477 usb_port->number, status);
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100478
479 if (status)
480 wake_up_interruptible(&port->open_wait);
481 else if (tty && !C_CLOCAL(tty))
482 tty_hangup(tty);
483}
484EXPORT_SYMBOL_GPL(usb_serial_handle_dcd_change);
485
David VomLehn8e8dce02009-08-28 12:54:27 -0700486int usb_serial_generic_resume(struct usb_serial *serial)
487{
488 struct usb_serial_port *port;
489 int i, c = 0, r;
490
491 for (i = 0; i < serial->num_ports; i++) {
492 port = serial->port[i];
Alan Stern1f871582010-02-17 10:05:47 -0500493 if (!test_bit(ASYNCB_INITIALIZED, &port->port.flags))
David VomLehn8e8dce02009-08-28 12:54:27 -0700494 continue;
495
Johan Hovoldd83b4052011-11-06 19:06:37 +0100496 if (port->bulk_in_size) {
497 r = usb_serial_generic_submit_read_urbs(port,
498 GFP_NOIO);
David VomLehn8e8dce02009-08-28 12:54:27 -0700499 if (r < 0)
500 c++;
501 }
502
Johan Hovold27c7acf2010-05-05 23:57:37 +0200503 if (port->bulk_out_size) {
David VomLehn8e8dce02009-08-28 12:54:27 -0700504 r = usb_serial_generic_write_start(port);
505 if (r < 0)
506 c++;
507 }
508 }
509
510 return c ? -EIO : 0;
511}
512EXPORT_SYMBOL_GPL(usb_serial_generic_resume);
513
Alan Sternf9c99bb2009-06-02 11:53:55 -0400514void usb_serial_generic_disconnect(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
516 int i;
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 /* stop reads and writes on all ports */
Alan Coxae643872008-07-22 11:11:55 +0100519 for (i = 0; i < serial->num_ports; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 generic_cleanup(serial->port[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521}
Bill Pemberton5c7efeb2010-08-05 17:01:10 -0400522EXPORT_SYMBOL_GPL(usb_serial_generic_disconnect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Alan Sternf9c99bb2009-06-02 11:53:55 -0400524void usb_serial_generic_release(struct usb_serial *serial)
525{
Alan Sternf9c99bb2009-06-02 11:53:55 -0400526}