blob: a10648d2596bd95c9e917f04e970afab65b61e9f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * USB Serial Converter Generic functions
3 *
Johan Hovold659597b72013-03-21 12:37:51 +01004 * Copyright (C) 2010 - 2013 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,
Joris van Rantwijk253ca922007-02-01 20:08:18 +010048 .throttle = usb_serial_generic_throttle,
49 .unthrottle = usb_serial_generic_unthrottle,
Oliver Neukumec225592007-04-27 20:54:57 +020050 .resume = usb_serial_generic_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -070051};
52
Alan Stern765e0ba2012-02-23 14:55:59 -050053static struct usb_serial_driver * const serial_drivers[] = {
54 &usb_serial_generic_device, NULL
55};
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#endif
58
Greg Kroah-Hartman3033bc82012-09-18 16:05:17 +010059int usb_serial_generic_register(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
61 int retval = 0;
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#ifdef CONFIG_USB_SERIAL_GENERIC
64 generic_device_ids[0].idVendor = vendor;
65 generic_device_ids[0].idProduct = product;
Alan Coxae643872008-07-22 11:11:55 +010066 generic_device_ids[0].match_flags =
67 USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_PRODUCT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69 /* register our generic driver with ourselves */
Alan Stern0b847042012-05-31 17:03:52 -040070 retval = usb_serial_register_drivers(serial_drivers,
71 "usbserial_generic", generic_device_ids);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#endif
73 return retval;
74}
75
Alan Coxae643872008-07-22 11:11:55 +010076void usb_serial_generic_deregister(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
78#ifdef CONFIG_USB_SERIAL_GENERIC
79 /* remove our generic driver */
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -070080 usb_serial_deregister_drivers(serial_drivers);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#endif
82}
83
Alan Coxa509a7e2009-09-19 13:13:26 -070084int usb_serial_generic_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 int result = 0;
Joris van Rantwijk253ca922007-02-01 20:08:18 +010087 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Joris van Rantwijk253ca922007-02-01 20:08:18 +010089 /* clear the throttle flags */
90 spin_lock_irqsave(&port->lock, flags);
91 port->throttled = 0;
92 port->throttle_req = 0;
93 spin_unlock_irqrestore(&port->lock, flags);
94
95 /* if we have a bulk endpoint, start reading from it */
Johan Hovold41bd72f2010-03-17 23:05:53 +010096 if (port->bulk_in_size)
Johan Hovoldd83b4052011-11-06 19:06:37 +010097 result = usb_serial_generic_submit_read_urbs(port, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99 return result;
100}
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700101EXPORT_SYMBOL_GPL(usb_serial_generic_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Johan Hovoldf8f0ad82013-03-21 12:36:41 +0100103void usb_serial_generic_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Johan Hovoldec3ee502010-03-17 23:00:44 +0100105 unsigned long flags;
Johan Hovold27c7acf2010-05-05 23:57:37 +0200106 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Johan Hovold19c61852013-03-21 12:36:38 +0100108 if (port->bulk_out_size) {
109 for (i = 0; i < ARRAY_SIZE(port->write_urbs); ++i)
110 usb_kill_urb(port->write_urbs[i]);
Johan Hovoldec3ee502010-03-17 23:00:44 +0100111
Johan Hovold19c61852013-03-21 12:36:38 +0100112 spin_lock_irqsave(&port->lock, flags);
113 kfifo_reset_out(&port->write_fifo);
114 spin_unlock_irqrestore(&port->lock, flags);
115 }
116 if (port->bulk_in_size) {
117 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i)
118 usb_kill_urb(port->read_urbs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 }
120}
Johan Hovoldf26788d2010-03-17 23:00:45 +0100121EXPORT_SYMBOL_GPL(usb_serial_generic_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Johan Hovoldeaa3bcb2010-03-17 23:06:08 +0100123int usb_serial_generic_prepare_write_buffer(struct usb_serial_port *port,
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200124 void *dest, size_t size)
Johan Hovoldeaa3bcb2010-03-17 23:06:08 +0100125{
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200126 return kfifo_out_locked(&port->write_fifo, dest, size, &port->lock);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500127}
128
David VomLehn8e8dce02009-08-28 12:54:27 -0700129/**
130 * usb_serial_generic_write_start - kick off an URB write
131 * @port: Pointer to the &struct usb_serial_port data
132 *
Johan Hovold27c7acf2010-05-05 23:57:37 +0200133 * Returns zero on success, or a negative errno value
David VomLehn8e8dce02009-08-28 12:54:27 -0700134 */
135static int usb_serial_generic_write_start(struct usb_serial_port *port)
136{
Johan Hovold27c7acf2010-05-05 23:57:37 +0200137 struct urb *urb;
138 int count, result;
David VomLehn8e8dce02009-08-28 12:54:27 -0700139 unsigned long flags;
Johan Hovold27c7acf2010-05-05 23:57:37 +0200140 int i;
David VomLehn8e8dce02009-08-28 12:54:27 -0700141
Johan Hovold27c7acf2010-05-05 23:57:37 +0200142 if (test_and_set_bit_lock(USB_SERIAL_WRITE_BUSY, &port->flags))
143 return 0;
144retry:
David VomLehn8e8dce02009-08-28 12:54:27 -0700145 spin_lock_irqsave(&port->lock, flags);
Johan Hovold27c7acf2010-05-05 23:57:37 +0200146 if (!port->write_urbs_free || !kfifo_len(&port->write_fifo)) {
147 clear_bit_unlock(USB_SERIAL_WRITE_BUSY, &port->flags);
Johan Hovold50a5f702010-03-17 23:06:02 +0100148 spin_unlock_irqrestore(&port->lock, flags);
David VomLehn8e8dce02009-08-28 12:54:27 -0700149 return 0;
Johan Hovold50a5f702010-03-17 23:06:02 +0100150 }
Johan Hovold27c7acf2010-05-05 23:57:37 +0200151 i = (int)find_first_bit(&port->write_urbs_free,
152 ARRAY_SIZE(port->write_urbs));
Johan Hovold50a5f702010-03-17 23:06:02 +0100153 spin_unlock_irqrestore(&port->lock, flags);
David VomLehn8e8dce02009-08-28 12:54:27 -0700154
Johan Hovold27c7acf2010-05-05 23:57:37 +0200155 urb = port->write_urbs[i];
Johan Hovoldeaa3bcb2010-03-17 23:06:08 +0100156 count = port->serial->type->prepare_write_buffer(port,
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200157 urb->transfer_buffer,
158 port->bulk_out_size);
Johan Hovold27c7acf2010-05-05 23:57:37 +0200159 urb->transfer_buffer_length = count;
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100160 usb_serial_debug_data(&port->dev, __func__, count, urb->transfer_buffer);
Johan Hovoldb58af402010-08-04 15:45:57 +0200161 spin_lock_irqsave(&port->lock, flags);
162 port->tx_bytes += count;
163 spin_unlock_irqrestore(&port->lock, flags);
164
165 clear_bit(i, &port->write_urbs_free);
Johan Hovold27c7acf2010-05-05 23:57:37 +0200166 result = usb_submit_urb(urb, GFP_ATOMIC);
David VomLehn8e8dce02009-08-28 12:54:27 -0700167 if (result) {
Johan Hovoldf1475a02012-02-10 13:20:50 +0100168 dev_err_console(port, "%s - error submitting urb: %d\n",
David VomLehn8e8dce02009-08-28 12:54:27 -0700169 __func__, result);
Johan Hovoldb58af402010-08-04 15:45:57 +0200170 set_bit(i, &port->write_urbs_free);
171 spin_lock_irqsave(&port->lock, flags);
172 port->tx_bytes -= count;
173 spin_unlock_irqrestore(&port->lock, flags);
174
Johan Hovold27c7acf2010-05-05 23:57:37 +0200175 clear_bit_unlock(USB_SERIAL_WRITE_BUSY, &port->flags);
Johan Hovold30af7fb2010-03-17 23:00:42 +0100176 return result;
177 }
Johan Hovold30af7fb2010-03-17 23:00:42 +0100178
Johan Hovoldd07732a2013-11-09 12:38:09 +0100179 goto retry; /* try sending off another urb */
David VomLehn8e8dce02009-08-28 12:54:27 -0700180}
181
182/**
183 * usb_serial_generic_write - generic write function for serial USB devices
184 * @tty: Pointer to &struct tty_struct for the device
185 * @port: Pointer to the &usb_serial_port structure for the device
186 * @buf: Pointer to the data to write
187 * @count: Number of bytes to write
188 *
189 * Returns the number of characters actually written, which may be anything
190 * from zero to @count. If an error occurs, it returns the negative errno
191 * value.
192 */
Alan Cox95da3102008-07-22 11:09:07 +0100193int usb_serial_generic_write(struct tty_struct *tty,
194 struct usb_serial_port *port, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100198 /* only do something if we have a bulk out endpoint */
199 if (!port->bulk_out_size)
200 return -ENODEV;
201
Johan Hovold1a1405e2010-03-17 23:06:01 +0100202 if (!count)
Alan Coxae643872008-07-22 11:11:55 +0100203 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Stefani Seibold119eecc2009-12-23 09:10:48 +0100205 count = kfifo_in_locked(&port->write_fifo, buf, count, &port->lock);
David VomLehn8e8dce02009-08-28 12:54:27 -0700206 result = usb_serial_generic_write_start(port);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200207 if (result)
208 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200210 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500212EXPORT_SYMBOL_GPL(usb_serial_generic_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Alan Coxae643872008-07-22 11:11:55 +0100214int usb_serial_generic_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
Alan Cox95da3102008-07-22 11:09:07 +0100216 struct usb_serial_port *port = tty->driver_data;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500217 unsigned long flags;
Johan Hovold25d514c2010-03-17 23:06:07 +0100218 int room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100220 if (!port->bulk_out_size)
221 return 0;
222
Jason Wessel715b1dc2009-05-11 15:24:07 -0500223 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200224 room = kfifo_avail(&port->write_fifo);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500225 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700227 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room);
Alan Coxa5b6f602008-04-08 17:16:06 +0100228 return room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
Alan Cox95da3102008-07-22 11:09:07 +0100231int usb_serial_generic_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
Alan Cox95da3102008-07-22 11:09:07 +0100233 struct usb_serial_port *port = tty->driver_data;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500234 unsigned long flags;
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100235 int chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100237 if (!port->bulk_out_size)
238 return 0;
239
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100240 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200241 chars = kfifo_len(&port->write_fifo) + port->tx_bytes;
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100242 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700244 dev_dbg(&port->dev, "%s - returns %d\n", __func__, chars);
Alan Cox95da3102008-07-22 11:09:07 +0100245 return chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246}
Johan Hovold428d9982012-10-29 10:56:25 +0100247EXPORT_SYMBOL_GPL(usb_serial_generic_chars_in_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Johan Hovolddcf01052013-05-08 17:51:43 +0200249void usb_serial_generic_wait_until_sent(struct tty_struct *tty, long timeout)
250{
251 struct usb_serial_port *port = tty->driver_data;
252 unsigned int bps;
253 unsigned long period;
254 unsigned long expire;
255
256 bps = tty_get_baud_rate(tty);
257 if (!bps)
258 bps = 9600; /* B0 */
259 /*
260 * Use a poll-period of roughly the time it takes to send one
261 * character or at least one jiffy.
262 */
263 period = max_t(unsigned long, (10 * HZ / bps), 1);
Johan Hovoldda90e1a2015-03-04 10:39:05 +0100264 if (timeout)
265 period = min_t(unsigned long, period, timeout);
Johan Hovolddcf01052013-05-08 17:51:43 +0200266
267 dev_dbg(&port->dev, "%s - timeout = %u ms, period = %u ms\n",
268 __func__, jiffies_to_msecs(timeout),
269 jiffies_to_msecs(period));
270 expire = jiffies + timeout;
271 while (!port->serial->type->tx_empty(port)) {
272 schedule_timeout_interruptible(period);
273 if (signal_pending(current))
274 break;
Johan Hovoldda90e1a2015-03-04 10:39:05 +0100275 if (timeout && time_after(jiffies, expire))
Johan Hovolddcf01052013-05-08 17:51:43 +0200276 break;
277 }
278}
279EXPORT_SYMBOL_GPL(usb_serial_generic_wait_until_sent);
280
Johan Hovoldd83b4052011-11-06 19:06:37 +0100281static int usb_serial_generic_submit_read_urb(struct usb_serial_port *port,
282 int index, gfp_t mem_flags)
283{
284 int res;
285
286 if (!test_and_clear_bit(index, &port->read_urbs_free))
287 return 0;
288
Johan Hovold49bd1962013-03-21 12:36:27 +0100289 dev_dbg(&port->dev, "%s - urb %d\n", __func__, index);
Johan Hovoldd83b4052011-11-06 19:06:37 +0100290
291 res = usb_submit_urb(port->read_urbs[index], mem_flags);
292 if (res) {
293 if (res != -EPERM) {
294 dev_err(&port->dev,
295 "%s - usb_submit_urb failed: %d\n",
296 __func__, res);
297 }
298 set_bit(index, &port->read_urbs_free);
299 return res;
300 }
301
302 return 0;
303}
304
305int usb_serial_generic_submit_read_urbs(struct usb_serial_port *port,
Johan Hovold41bd72f2010-03-17 23:05:53 +0100306 gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
Johan Hovoldd83b4052011-11-06 19:06:37 +0100308 int res;
309 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Johan Hovoldd83b4052011-11-06 19:06:37 +0100311 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i) {
312 res = usb_serial_generic_submit_read_urb(port, i, mem_flags);
313 if (res)
314 goto err;
Johan Hovold0ae14742010-02-27 14:05:46 +0100315 }
Johan Hovoldd83b4052011-11-06 19:06:37 +0100316
317 return 0;
318err:
319 for (; i >= 0; --i)
320 usb_kill_urb(port->read_urbs[i]);
321
322 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
Johan Hovoldd83b4052011-11-06 19:06:37 +0100324EXPORT_SYMBOL_GPL(usb_serial_generic_submit_read_urbs);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100325
Johan Hovold23154322010-03-17 23:05:57 +0100326void usb_serial_generic_process_read_urb(struct urb *urb)
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200327{
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100328 struct usb_serial_port *port = urb->context;
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500329 char *ch = (char *)urb->transfer_buffer;
330 int i;
331
Johan Hovold56a1df42010-05-15 17:53:44 +0200332 if (!urb->actual_length)
333 return;
334
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)
Jiri Slaby05c7cd32013-01-03 15:53:04 +0100339 tty_insert_flip_string(&port->port, ch, urb->actual_length);
Alan Cox4cd1de02009-07-09 13:35:52 +0100340 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))
Jiri Slaby92a19f92013-01-03 15:53:03 +0100343 tty_insert_flip_char(&port->port, *ch, TTY_NORMAL);
Alan Cox4cd1de02009-07-09 13:35:52 +0100344 }
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200345 }
Jiri Slaby2e124b42013-01-03 15:53:06 +0100346 tty_flip_buffer_push(&port->port);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200347}
Johan Hovold23154322010-03-17 23:05:57 +0100348EXPORT_SYMBOL_GPL(usb_serial_generic_process_read_urb);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200349
Alan Cox95da3102008-07-22 11:09:07 +0100350void usb_serial_generic_read_bulk_callback(struct urb *urb)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100351{
Ming Leicdc97792008-02-24 18:41:47 +0800352 struct usb_serial_port *port = urb->context;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100353 unsigned char *data = urb->transfer_buffer;
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100354 unsigned long flags;
Johan Hovoldd83b4052011-11-06 19:06:37 +0100355 int i;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100356
Johan Hovoldd83b4052011-11-06 19:06:37 +0100357 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i) {
358 if (urb == port->read_urbs[i])
359 break;
360 }
361 set_bit(i, &port->read_urbs_free);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100362
Johan Hovold49bd1962013-03-21 12:36:27 +0100363 dev_dbg(&port->dev, "%s - urb %d, len %d\n", __func__, i,
364 urb->actual_length);
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700365
Johan Hovoldd83b4052011-11-06 19:06:37 +0100366 if (urb->status) {
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700367 dev_dbg(&port->dev, "%s - non-zero urb status: %d\n",
368 __func__, urb->status);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100369 return;
370 }
371
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100372 usb_serial_debug_data(&port->dev, __func__, 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) {
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700403 dev_dbg(&port->dev, "%s - non-zero urb status: %d\n",
404 __func__, status);
Johan Hovold25915302010-01-06 15:48:42 -0800405
Jason Wessel715b1dc2009-05-11 15:24:07 -0500406 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200407 kfifo_reset_out(&port->write_fifo);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500408 spin_unlock_irqrestore(&port->lock, flags);
409 } else {
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200410 usb_serial_generic_write_start(port);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500411 }
412
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700413 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
Greg Kroah-Hartmanbb833982005-11-17 09:48:18 -0800415EXPORT_SYMBOL_GPL(usb_serial_generic_write_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Alan Cox95da3102008-07-22 11:09:07 +0100417void usb_serial_generic_throttle(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 unsigned long flags;
421
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100422 /* Set the throttle request flag. It will be picked up
423 * by usb_serial_generic_read_bulk_callback(). */
424 spin_lock_irqsave(&port->lock, flags);
425 port->throttle_req = 1;
426 spin_unlock_irqrestore(&port->lock, flags);
427}
Johan Hovoldf1e949a2010-03-17 23:05:59 +0100428EXPORT_SYMBOL_GPL(usb_serial_generic_throttle);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100429
Alan Cox95da3102008-07-22 11:09:07 +0100430void usb_serial_generic_unthrottle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100431{
Alan Cox95da3102008-07-22 11:09:07 +0100432 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100433 int was_throttled;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100434
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100435 /* Clear the throttle flags */
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100436 spin_lock_irq(&port->lock);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100437 was_throttled = port->throttled;
438 port->throttled = port->throttle_req = 0;
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100439 spin_unlock_irq(&port->lock);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100440
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100441 if (was_throttled)
Johan Hovoldd83b4052011-11-06 19:06:37 +0100442 usb_serial_generic_submit_read_urbs(port, GFP_KERNEL);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100443}
Johan Hovoldf1e949a2010-03-17 23:05:59 +0100444EXPORT_SYMBOL_GPL(usb_serial_generic_unthrottle);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100445
Johan Hovold980373b2013-03-21 12:36:52 +0100446static bool usb_serial_generic_msr_changed(struct tty_struct *tty,
447 unsigned long arg, struct async_icount *cprev)
448{
449 struct usb_serial_port *port = tty->driver_data;
450 struct async_icount cnow;
451 unsigned long flags;
452 bool ret;
453
454 /*
455 * Use tty-port initialised flag to detect all hangups including the
456 * one generated at USB-device disconnect.
457 *
458 * FIXME: Remove hupping check once tty_port_hangup calls shutdown
459 * (which clears the initialised flag) before wake up.
460 */
461 if (test_bit(TTY_HUPPING, &tty->flags))
462 return true;
463 if (!test_bit(ASYNCB_INITIALIZED, &port->port.flags))
464 return true;
465
466 spin_lock_irqsave(&port->lock, flags);
467 cnow = port->icount; /* atomic copy*/
468 spin_unlock_irqrestore(&port->lock, flags);
469
470 ret = ((arg & TIOCM_RNG) && (cnow.rng != cprev->rng)) ||
471 ((arg & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) ||
472 ((arg & TIOCM_CD) && (cnow.dcd != cprev->dcd)) ||
473 ((arg & TIOCM_CTS) && (cnow.cts != cprev->cts));
474
475 *cprev = cnow;
476
477 return ret;
478}
479
480int usb_serial_generic_tiocmiwait(struct tty_struct *tty, unsigned long arg)
481{
482 struct usb_serial_port *port = tty->driver_data;
483 struct async_icount cnow;
484 unsigned long flags;
485 int ret;
486
487 spin_lock_irqsave(&port->lock, flags);
488 cnow = port->icount; /* atomic copy */
489 spin_unlock_irqrestore(&port->lock, flags);
490
491 ret = wait_event_interruptible(port->port.delta_msr_wait,
492 usb_serial_generic_msr_changed(tty, arg, &cnow));
493 if (!ret) {
494 if (test_bit(TTY_HUPPING, &tty->flags))
495 ret = -EIO;
496 if (!test_bit(ASYNCB_INITIALIZED, &port->port.flags))
497 ret = -EIO;
498 }
499
500 return ret;
501}
502EXPORT_SYMBOL_GPL(usb_serial_generic_tiocmiwait);
503
Johan Hovoldbefefcd2013-03-21 12:36:54 +0100504int usb_serial_generic_get_icount(struct tty_struct *tty,
505 struct serial_icounter_struct *icount)
506{
507 struct usb_serial_port *port = tty->driver_data;
508 struct async_icount cnow;
509 unsigned long flags;
510
511 spin_lock_irqsave(&port->lock, flags);
512 cnow = port->icount; /* atomic copy */
513 spin_unlock_irqrestore(&port->lock, flags);
514
515 icount->cts = cnow.cts;
516 icount->dsr = cnow.dsr;
517 icount->rng = cnow.rng;
518 icount->dcd = cnow.dcd;
519 icount->tx = cnow.tx;
520 icount->rx = cnow.rx;
521 icount->frame = cnow.frame;
522 icount->parity = cnow.parity;
523 icount->overrun = cnow.overrun;
524 icount->brk = cnow.brk;
525 icount->buf_overrun = cnow.buf_overrun;
526
527 return 0;
528}
529EXPORT_SYMBOL_GPL(usb_serial_generic_get_icount);
530
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700531#ifdef CONFIG_MAGIC_SYSRQ
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700532int usb_serial_handle_sysrq_char(struct usb_serial_port *port, unsigned int ch)
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500533{
Jason Wesselbd5afa92010-03-08 21:50:12 -0600534 if (port->sysrq && port->port.console) {
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500535 if (ch && time_before(jiffies, port->sysrq)) {
Dmitry Torokhovf3353972010-08-17 21:15:47 -0700536 handle_sysrq(ch);
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500537 port->sysrq = 0;
538 return 1;
539 }
540 port->sysrq = 0;
541 }
542 return 0;
543}
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700544#else
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700545int usb_serial_handle_sysrq_char(struct usb_serial_port *port, unsigned int ch)
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700546{
547 return 0;
548}
549#endif
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500550EXPORT_SYMBOL_GPL(usb_serial_handle_sysrq_char);
551
552int usb_serial_handle_break(struct usb_serial_port *port)
553{
554 if (!port->sysrq) {
555 port->sysrq = jiffies + HZ*5;
556 return 1;
557 }
558 port->sysrq = 0;
559 return 0;
560}
561EXPORT_SYMBOL_GPL(usb_serial_handle_break);
562
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100563/**
564 * usb_serial_handle_dcd_change - handle a change of carrier detect state
565 * @port: usb_serial_port structure for the open port
566 * @tty: tty_struct structure for the port
567 * @status: new carrier detect status, nonzero if active
568 */
569void usb_serial_handle_dcd_change(struct usb_serial_port *usb_port,
570 struct tty_struct *tty, unsigned int status)
571{
572 struct tty_port *port = &usb_port->port;
573
Johan Hovold49bd1962013-03-21 12:36:27 +0100574 dev_dbg(&usb_port->dev, "%s - status %d\n", __func__, status);
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100575
576 if (status)
577 wake_up_interruptible(&port->open_wait);
578 else if (tty && !C_CLOCAL(tty))
579 tty_hangup(tty);
580}
581EXPORT_SYMBOL_GPL(usb_serial_handle_dcd_change);
582
David VomLehn8e8dce02009-08-28 12:54:27 -0700583int usb_serial_generic_resume(struct usb_serial *serial)
584{
585 struct usb_serial_port *port;
586 int i, c = 0, r;
587
588 for (i = 0; i < serial->num_ports; i++) {
589 port = serial->port[i];
Alan Stern1f871582010-02-17 10:05:47 -0500590 if (!test_bit(ASYNCB_INITIALIZED, &port->port.flags))
David VomLehn8e8dce02009-08-28 12:54:27 -0700591 continue;
592
Johan Hovoldd83b4052011-11-06 19:06:37 +0100593 if (port->bulk_in_size) {
594 r = usb_serial_generic_submit_read_urbs(port,
595 GFP_NOIO);
David VomLehn8e8dce02009-08-28 12:54:27 -0700596 if (r < 0)
597 c++;
598 }
599
Johan Hovold27c7acf2010-05-05 23:57:37 +0200600 if (port->bulk_out_size) {
David VomLehn8e8dce02009-08-28 12:54:27 -0700601 r = usb_serial_generic_write_start(port);
602 if (r < 0)
603 c++;
604 }
605 }
606
607 return c ? -EIO : 0;
608}
609EXPORT_SYMBOL_GPL(usb_serial_generic_resume);