blob: 131d6cbeefee220ba0b8efd4b6c4a09dbfbf06d1 [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{
Johan Hovoldec3ee502010-03-17 23:00:44 +0100107 unsigned long flags;
Johan Hovold27c7acf2010-05-05 23:57:37 +0200108 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Johan Hovold19c61852013-03-21 12:36:38 +0100110 if (port->bulk_out_size) {
111 for (i = 0; i < ARRAY_SIZE(port->write_urbs); ++i)
112 usb_kill_urb(port->write_urbs[i]);
Johan Hovoldec3ee502010-03-17 23:00:44 +0100113
Johan Hovold19c61852013-03-21 12:36:38 +0100114 spin_lock_irqsave(&port->lock, flags);
115 kfifo_reset_out(&port->write_fifo);
116 spin_unlock_irqrestore(&port->lock, flags);
117 }
118 if (port->bulk_in_size) {
119 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i)
120 usb_kill_urb(port->read_urbs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 }
122}
123
Alan Cox335f8512009-06-11 12:26:29 +0100124void usb_serial_generic_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
Alan Coxae643872008-07-22 11:11:55 +0100126 generic_cleanup(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
Johan Hovoldf26788d2010-03-17 23:00:45 +0100128EXPORT_SYMBOL_GPL(usb_serial_generic_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Johan Hovoldeaa3bcb2010-03-17 23:06:08 +0100130int usb_serial_generic_prepare_write_buffer(struct usb_serial_port *port,
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200131 void *dest, size_t size)
Johan Hovoldeaa3bcb2010-03-17 23:06:08 +0100132{
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200133 return kfifo_out_locked(&port->write_fifo, dest, size, &port->lock);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500134}
135
David VomLehn8e8dce02009-08-28 12:54:27 -0700136/**
137 * usb_serial_generic_write_start - kick off an URB write
138 * @port: Pointer to the &struct usb_serial_port data
139 *
Johan Hovold27c7acf2010-05-05 23:57:37 +0200140 * Returns zero on success, or a negative errno value
David VomLehn8e8dce02009-08-28 12:54:27 -0700141 */
142static int usb_serial_generic_write_start(struct usb_serial_port *port)
143{
Johan Hovold27c7acf2010-05-05 23:57:37 +0200144 struct urb *urb;
145 int count, result;
David VomLehn8e8dce02009-08-28 12:54:27 -0700146 unsigned long flags;
Johan Hovold27c7acf2010-05-05 23:57:37 +0200147 int i;
David VomLehn8e8dce02009-08-28 12:54:27 -0700148
Johan Hovold27c7acf2010-05-05 23:57:37 +0200149 if (test_and_set_bit_lock(USB_SERIAL_WRITE_BUSY, &port->flags))
150 return 0;
151retry:
David VomLehn8e8dce02009-08-28 12:54:27 -0700152 spin_lock_irqsave(&port->lock, flags);
Johan Hovold27c7acf2010-05-05 23:57:37 +0200153 if (!port->write_urbs_free || !kfifo_len(&port->write_fifo)) {
154 clear_bit_unlock(USB_SERIAL_WRITE_BUSY, &port->flags);
Johan Hovold50a5f702010-03-17 23:06:02 +0100155 spin_unlock_irqrestore(&port->lock, flags);
David VomLehn8e8dce02009-08-28 12:54:27 -0700156 return 0;
Johan Hovold50a5f702010-03-17 23:06:02 +0100157 }
Johan Hovold27c7acf2010-05-05 23:57:37 +0200158 i = (int)find_first_bit(&port->write_urbs_free,
159 ARRAY_SIZE(port->write_urbs));
Johan Hovold50a5f702010-03-17 23:06:02 +0100160 spin_unlock_irqrestore(&port->lock, flags);
David VomLehn8e8dce02009-08-28 12:54:27 -0700161
Johan Hovold27c7acf2010-05-05 23:57:37 +0200162 urb = port->write_urbs[i];
Johan Hovoldeaa3bcb2010-03-17 23:06:08 +0100163 count = port->serial->type->prepare_write_buffer(port,
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200164 urb->transfer_buffer,
165 port->bulk_out_size);
Johan Hovold27c7acf2010-05-05 23:57:37 +0200166 urb->transfer_buffer_length = count;
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100167 usb_serial_debug_data(&port->dev, __func__, count, urb->transfer_buffer);
Johan Hovoldb58af402010-08-04 15:45:57 +0200168 spin_lock_irqsave(&port->lock, flags);
169 port->tx_bytes += count;
170 spin_unlock_irqrestore(&port->lock, flags);
171
172 clear_bit(i, &port->write_urbs_free);
Johan Hovold27c7acf2010-05-05 23:57:37 +0200173 result = usb_submit_urb(urb, GFP_ATOMIC);
David VomLehn8e8dce02009-08-28 12:54:27 -0700174 if (result) {
Johan Hovoldf1475a02012-02-10 13:20:50 +0100175 dev_err_console(port, "%s - error submitting urb: %d\n",
David VomLehn8e8dce02009-08-28 12:54:27 -0700176 __func__, result);
Johan Hovoldb58af402010-08-04 15:45:57 +0200177 set_bit(i, &port->write_urbs_free);
178 spin_lock_irqsave(&port->lock, flags);
179 port->tx_bytes -= count;
180 spin_unlock_irqrestore(&port->lock, flags);
181
Johan Hovold27c7acf2010-05-05 23:57:37 +0200182 clear_bit_unlock(USB_SERIAL_WRITE_BUSY, &port->flags);
Johan Hovold30af7fb2010-03-17 23:00:42 +0100183 return result;
184 }
Johan Hovold30af7fb2010-03-17 23:00:42 +0100185
Johan Hovold27c7acf2010-05-05 23:57:37 +0200186 /* Try sending off another urb, unless in irq context (in which case
187 * there will be no free urb). */
188 if (!in_irq())
189 goto retry;
190
191 clear_bit_unlock(USB_SERIAL_WRITE_BUSY, &port->flags);
192
193 return 0;
David VomLehn8e8dce02009-08-28 12:54:27 -0700194}
195
196/**
197 * usb_serial_generic_write - generic write function for serial USB devices
198 * @tty: Pointer to &struct tty_struct for the device
199 * @port: Pointer to the &usb_serial_port structure for the device
200 * @buf: Pointer to the data to write
201 * @count: Number of bytes to write
202 *
203 * Returns the number of characters actually written, which may be anything
204 * from zero to @count. If an error occurs, it returns the negative errno
205 * value.
206 */
Alan Cox95da3102008-07-22 11:09:07 +0100207int usb_serial_generic_write(struct tty_struct *tty,
208 struct usb_serial_port *port, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100212 /* only do something if we have a bulk out endpoint */
213 if (!port->bulk_out_size)
214 return -ENODEV;
215
Johan Hovold1a1405e2010-03-17 23:06:01 +0100216 if (!count)
Alan Coxae643872008-07-22 11:11:55 +0100217 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Stefani Seibold119eecc2009-12-23 09:10:48 +0100219 count = kfifo_in_locked(&port->write_fifo, buf, count, &port->lock);
David VomLehn8e8dce02009-08-28 12:54:27 -0700220 result = usb_serial_generic_write_start(port);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200221 if (result)
222 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200224 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225}
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500226EXPORT_SYMBOL_GPL(usb_serial_generic_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Alan Coxae643872008-07-22 11:11:55 +0100228int usb_serial_generic_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
Alan Cox95da3102008-07-22 11:09:07 +0100230 struct usb_serial_port *port = tty->driver_data;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500231 unsigned long flags;
Johan Hovold25d514c2010-03-17 23:06:07 +0100232 int room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100234 if (!port->bulk_out_size)
235 return 0;
236
Jason Wessel715b1dc2009-05-11 15:24:07 -0500237 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200238 room = kfifo_avail(&port->write_fifo);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500239 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700241 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room);
Alan Coxa5b6f602008-04-08 17:16:06 +0100242 return room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
Alan Cox95da3102008-07-22 11:09:07 +0100245int usb_serial_generic_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
Alan Cox95da3102008-07-22 11:09:07 +0100247 struct usb_serial_port *port = tty->driver_data;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500248 unsigned long flags;
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100249 int chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100251 if (!port->bulk_out_size)
252 return 0;
253
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100254 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200255 chars = kfifo_len(&port->write_fifo) + port->tx_bytes;
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100256 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700258 dev_dbg(&port->dev, "%s - returns %d\n", __func__, chars);
Alan Cox95da3102008-07-22 11:09:07 +0100259 return chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
Johan Hovold428d9982012-10-29 10:56:25 +0100261EXPORT_SYMBOL_GPL(usb_serial_generic_chars_in_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Johan Hovoldd83b4052011-11-06 19:06:37 +0100263static int usb_serial_generic_submit_read_urb(struct usb_serial_port *port,
264 int index, gfp_t mem_flags)
265{
266 int res;
267
268 if (!test_and_clear_bit(index, &port->read_urbs_free))
269 return 0;
270
Johan Hovold49bd1962013-03-21 12:36:27 +0100271 dev_dbg(&port->dev, "%s - urb %d\n", __func__, index);
Johan Hovoldd83b4052011-11-06 19:06:37 +0100272
273 res = usb_submit_urb(port->read_urbs[index], mem_flags);
274 if (res) {
275 if (res != -EPERM) {
276 dev_err(&port->dev,
277 "%s - usb_submit_urb failed: %d\n",
278 __func__, res);
279 }
280 set_bit(index, &port->read_urbs_free);
281 return res;
282 }
283
284 return 0;
285}
286
287int usb_serial_generic_submit_read_urbs(struct usb_serial_port *port,
Johan Hovold41bd72f2010-03-17 23:05:53 +0100288 gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
Johan Hovoldd83b4052011-11-06 19:06:37 +0100290 int res;
291 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Johan Hovoldd83b4052011-11-06 19:06:37 +0100293 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i) {
294 res = usb_serial_generic_submit_read_urb(port, i, mem_flags);
295 if (res)
296 goto err;
Johan Hovold0ae14742010-02-27 14:05:46 +0100297 }
Johan Hovoldd83b4052011-11-06 19:06:37 +0100298
299 return 0;
300err:
301 for (; i >= 0; --i)
302 usb_kill_urb(port->read_urbs[i]);
303
304 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
Johan Hovoldd83b4052011-11-06 19:06:37 +0100306EXPORT_SYMBOL_GPL(usb_serial_generic_submit_read_urbs);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100307
Johan Hovold23154322010-03-17 23:05:57 +0100308void usb_serial_generic_process_read_urb(struct urb *urb)
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200309{
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100310 struct usb_serial_port *port = urb->context;
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500311 char *ch = (char *)urb->transfer_buffer;
312 int i;
313
Johan Hovold56a1df42010-05-15 17:53:44 +0200314 if (!urb->actual_length)
315 return;
316
Alan Cox4cd1de0a2009-07-09 13:35:52 +0100317 /* The per character mucking around with sysrq path it too slow for
318 stuff like 3G modems, so shortcircuit it in the 99.9999999% of cases
319 where the USB serial is not a console anyway */
Jason Wesselbd5afa92010-03-08 21:50:12 -0600320 if (!port->port.console || !port->sysrq)
Jiri Slaby05c7cd32013-01-03 15:53:04 +0100321 tty_insert_flip_string(&port->port, ch, urb->actual_length);
Alan Cox4cd1de0a2009-07-09 13:35:52 +0100322 else {
Alan Cox4cd1de0a2009-07-09 13:35:52 +0100323 for (i = 0; i < urb->actual_length; i++, ch++) {
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700324 if (!usb_serial_handle_sysrq_char(port, *ch))
Jiri Slaby92a19f92013-01-03 15:53:03 +0100325 tty_insert_flip_char(&port->port, *ch, TTY_NORMAL);
Alan Cox4cd1de0a2009-07-09 13:35:52 +0100326 }
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200327 }
Jiri Slaby2e124b42013-01-03 15:53:06 +0100328 tty_flip_buffer_push(&port->port);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200329}
Johan Hovold23154322010-03-17 23:05:57 +0100330EXPORT_SYMBOL_GPL(usb_serial_generic_process_read_urb);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200331
Alan Cox95da3102008-07-22 11:09:07 +0100332void usb_serial_generic_read_bulk_callback(struct urb *urb)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100333{
Ming Leicdc97792008-02-24 18:41:47 +0800334 struct usb_serial_port *port = urb->context;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100335 unsigned char *data = urb->transfer_buffer;
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100336 unsigned long flags;
Johan Hovoldd83b4052011-11-06 19:06:37 +0100337 int i;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100338
Johan Hovoldd83b4052011-11-06 19:06:37 +0100339 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i) {
340 if (urb == port->read_urbs[i])
341 break;
342 }
343 set_bit(i, &port->read_urbs_free);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100344
Johan Hovold49bd1962013-03-21 12:36:27 +0100345 dev_dbg(&port->dev, "%s - urb %d, len %d\n", __func__, i,
346 urb->actual_length);
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700347
Johan Hovoldd83b4052011-11-06 19:06:37 +0100348 if (urb->status) {
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700349 dev_dbg(&port->dev, "%s - non-zero urb status: %d\n",
350 __func__, urb->status);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100351 return;
352 }
353
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100354 usb_serial_debug_data(&port->dev, __func__, urb->actual_length, data);
Johan Hovold23154322010-03-17 23:05:57 +0100355 port->serial->type->process_read_urb(urb);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100356
357 /* Throttle the device if requested by tty */
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100358 spin_lock_irqsave(&port->lock, flags);
Alan Coxae643872008-07-22 11:11:55 +0100359 port->throttled = port->throttle_req;
360 if (!port->throttled) {
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800361 spin_unlock_irqrestore(&port->lock, flags);
Johan Hovoldd83b4052011-11-06 19:06:37 +0100362 usb_serial_generic_submit_read_urb(port, i, GFP_ATOMIC);
Alan Coxae643872008-07-22 11:11:55 +0100363 } else
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800364 spin_unlock_irqrestore(&port->lock, flags);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100365}
Luiz Fernando N. Capitulino166ffcc2006-07-11 14:19:25 -0300366EXPORT_SYMBOL_GPL(usb_serial_generic_read_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Alan Cox95da3102008-07-22 11:09:07 +0100368void usb_serial_generic_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
Jason Wessel715b1dc2009-05-11 15:24:07 -0500370 unsigned long flags;
Ming Leicdc97792008-02-24 18:41:47 +0800371 struct usb_serial_port *port = urb->context;
Greg Kroah-Hartmanfbd272252007-06-15 15:44:13 -0700372 int status = urb->status;
Johan Hovold27c7acf2010-05-05 23:57:37 +0200373 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200375 for (i = 0; i < ARRAY_SIZE(port->write_urbs); ++i)
376 if (port->write_urbs[i] == urb)
377 break;
378
379 spin_lock_irqsave(&port->lock, flags);
380 port->tx_bytes -= urb->transfer_buffer_length;
381 set_bit(i, &port->write_urbs_free);
382 spin_unlock_irqrestore(&port->lock, flags);
383
384 if (status) {
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700385 dev_dbg(&port->dev, "%s - non-zero urb status: %d\n",
386 __func__, status);
Johan Hovold25915302010-01-06 15:48:42 -0800387
Jason Wessel715b1dc2009-05-11 15:24:07 -0500388 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200389 kfifo_reset_out(&port->write_fifo);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500390 spin_unlock_irqrestore(&port->lock, flags);
391 } else {
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200392 usb_serial_generic_write_start(port);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500393 }
394
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700395 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
Greg Kroah-Hartmanbb833982005-11-17 09:48:18 -0800397EXPORT_SYMBOL_GPL(usb_serial_generic_write_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Alan Cox95da3102008-07-22 11:09:07 +0100399void usb_serial_generic_throttle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100400{
Alan Cox95da3102008-07-22 11:09:07 +0100401 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100402 unsigned long flags;
403
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100404 /* Set the throttle request flag. It will be picked up
405 * by usb_serial_generic_read_bulk_callback(). */
406 spin_lock_irqsave(&port->lock, flags);
407 port->throttle_req = 1;
408 spin_unlock_irqrestore(&port->lock, flags);
409}
Johan Hovoldf1e949a2010-03-17 23:05:59 +0100410EXPORT_SYMBOL_GPL(usb_serial_generic_throttle);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100411
Alan Cox95da3102008-07-22 11:09:07 +0100412void usb_serial_generic_unthrottle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100413{
Alan Cox95da3102008-07-22 11:09:07 +0100414 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100415 int was_throttled;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100416
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100417 /* Clear the throttle flags */
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100418 spin_lock_irq(&port->lock);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100419 was_throttled = port->throttled;
420 port->throttled = port->throttle_req = 0;
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100421 spin_unlock_irq(&port->lock);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100422
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100423 if (was_throttled)
Johan Hovoldd83b4052011-11-06 19:06:37 +0100424 usb_serial_generic_submit_read_urbs(port, GFP_KERNEL);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100425}
Johan Hovoldf1e949a2010-03-17 23:05:59 +0100426EXPORT_SYMBOL_GPL(usb_serial_generic_unthrottle);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100427
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700428#ifdef CONFIG_MAGIC_SYSRQ
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700429int usb_serial_handle_sysrq_char(struct usb_serial_port *port, unsigned int ch)
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500430{
Jason Wesselbd5afa92010-03-08 21:50:12 -0600431 if (port->sysrq && port->port.console) {
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500432 if (ch && time_before(jiffies, port->sysrq)) {
Dmitry Torokhovf3353972010-08-17 21:15:47 -0700433 handle_sysrq(ch);
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500434 port->sysrq = 0;
435 return 1;
436 }
437 port->sysrq = 0;
438 }
439 return 0;
440}
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700441#else
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700442int usb_serial_handle_sysrq_char(struct usb_serial_port *port, unsigned int ch)
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700443{
444 return 0;
445}
446#endif
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500447EXPORT_SYMBOL_GPL(usb_serial_handle_sysrq_char);
448
449int usb_serial_handle_break(struct usb_serial_port *port)
450{
451 if (!port->sysrq) {
452 port->sysrq = jiffies + HZ*5;
453 return 1;
454 }
455 port->sysrq = 0;
456 return 0;
457}
458EXPORT_SYMBOL_GPL(usb_serial_handle_break);
459
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100460/**
461 * usb_serial_handle_dcd_change - handle a change of carrier detect state
462 * @port: usb_serial_port structure for the open port
463 * @tty: tty_struct structure for the port
464 * @status: new carrier detect status, nonzero if active
465 */
466void usb_serial_handle_dcd_change(struct usb_serial_port *usb_port,
467 struct tty_struct *tty, unsigned int status)
468{
469 struct tty_port *port = &usb_port->port;
470
Johan Hovold49bd1962013-03-21 12:36:27 +0100471 dev_dbg(&usb_port->dev, "%s - status %d\n", __func__, status);
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100472
473 if (status)
474 wake_up_interruptible(&port->open_wait);
475 else if (tty && !C_CLOCAL(tty))
476 tty_hangup(tty);
477}
478EXPORT_SYMBOL_GPL(usb_serial_handle_dcd_change);
479
David VomLehn8e8dce02009-08-28 12:54:27 -0700480int usb_serial_generic_resume(struct usb_serial *serial)
481{
482 struct usb_serial_port *port;
483 int i, c = 0, r;
484
485 for (i = 0; i < serial->num_ports; i++) {
486 port = serial->port[i];
Alan Stern1f871582010-02-17 10:05:47 -0500487 if (!test_bit(ASYNCB_INITIALIZED, &port->port.flags))
David VomLehn8e8dce02009-08-28 12:54:27 -0700488 continue;
489
Johan Hovoldd83b4052011-11-06 19:06:37 +0100490 if (port->bulk_in_size) {
491 r = usb_serial_generic_submit_read_urbs(port,
492 GFP_NOIO);
David VomLehn8e8dce02009-08-28 12:54:27 -0700493 if (r < 0)
494 c++;
495 }
496
Johan Hovold27c7acf2010-05-05 23:57:37 +0200497 if (port->bulk_out_size) {
David VomLehn8e8dce02009-08-28 12:54:27 -0700498 r = usb_serial_generic_write_start(port);
499 if (r < 0)
500 c++;
501 }
502 }
503
504 return c ? -EIO : 0;
505}
506EXPORT_SYMBOL_GPL(usb_serial_generic_resume);
507
Alan Sternf9c99bb2009-06-02 11:53:55 -0400508void usb_serial_generic_disconnect(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
510 int i;
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 /* stop reads and writes on all ports */
Alan Coxae643872008-07-22 11:11:55 +0100513 for (i = 0; i < serial->num_ports; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 generic_cleanup(serial->port[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515}
Bill Pemberton5c7efeb2010-08-05 17:01:10 -0400516EXPORT_SYMBOL_GPL(usb_serial_generic_disconnect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Alan Sternf9c99bb2009-06-02 11:53:55 -0400518void usb_serial_generic_release(struct usb_serial *serial)
519{
Alan Sternf9c99bb2009-06-02 11:53:55 -0400520}