blob: 3a5dac879094a831a349f536b28e6f63d21903db [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * USB Serial Converter Generic functions
3 *
Johan Hovold659597b2013-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 Hovold27c7acf2010-05-05 23:57:37 +0200179 /* Try sending off another urb, unless in irq context (in which case
180 * there will be no free urb). */
181 if (!in_irq())
182 goto retry;
183
184 clear_bit_unlock(USB_SERIAL_WRITE_BUSY, &port->flags);
185
186 return 0;
David VomLehn8e8dce02009-08-28 12:54:27 -0700187}
188
189/**
190 * usb_serial_generic_write - generic write function for serial USB devices
191 * @tty: Pointer to &struct tty_struct for the device
192 * @port: Pointer to the &usb_serial_port structure for the device
193 * @buf: Pointer to the data to write
194 * @count: Number of bytes to write
195 *
196 * Returns the number of characters actually written, which may be anything
197 * from zero to @count. If an error occurs, it returns the negative errno
198 * value.
199 */
Alan Cox95da3102008-07-22 11:09:07 +0100200int usb_serial_generic_write(struct tty_struct *tty,
201 struct usb_serial_port *port, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100205 /* only do something if we have a bulk out endpoint */
206 if (!port->bulk_out_size)
207 return -ENODEV;
208
Johan Hovold1a1405e2010-03-17 23:06:01 +0100209 if (!count)
Alan Coxae643872008-07-22 11:11:55 +0100210 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Stefani Seibold119eecc2009-12-23 09:10:48 +0100212 count = kfifo_in_locked(&port->write_fifo, buf, count, &port->lock);
David VomLehn8e8dce02009-08-28 12:54:27 -0700213 result = usb_serial_generic_write_start(port);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200214 if (result)
215 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200217 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500219EXPORT_SYMBOL_GPL(usb_serial_generic_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Alan Coxae643872008-07-22 11:11:55 +0100221int usb_serial_generic_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
Alan Cox95da3102008-07-22 11:09:07 +0100223 struct usb_serial_port *port = tty->driver_data;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500224 unsigned long flags;
Johan Hovold25d514c2010-03-17 23:06:07 +0100225 int room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100227 if (!port->bulk_out_size)
228 return 0;
229
Jason Wessel715b1dc2009-05-11 15:24:07 -0500230 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200231 room = kfifo_avail(&port->write_fifo);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500232 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700234 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room);
Alan Coxa5b6f602008-04-08 17:16:06 +0100235 return room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236}
237
Alan Cox95da3102008-07-22 11:09:07 +0100238int usb_serial_generic_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
Alan Cox95da3102008-07-22 11:09:07 +0100240 struct usb_serial_port *port = tty->driver_data;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500241 unsigned long flags;
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100242 int chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100244 if (!port->bulk_out_size)
245 return 0;
246
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100247 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200248 chars = kfifo_len(&port->write_fifo) + port->tx_bytes;
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100249 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700251 dev_dbg(&port->dev, "%s - returns %d\n", __func__, chars);
Alan Cox95da3102008-07-22 11:09:07 +0100252 return chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
Johan Hovold428d9982012-10-29 10:56:25 +0100254EXPORT_SYMBOL_GPL(usb_serial_generic_chars_in_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Johan Hovolddcf01052013-05-08 17:51:43 +0200256void usb_serial_generic_wait_until_sent(struct tty_struct *tty, long timeout)
257{
258 struct usb_serial_port *port = tty->driver_data;
259 unsigned int bps;
260 unsigned long period;
261 unsigned long expire;
262
263 bps = tty_get_baud_rate(tty);
264 if (!bps)
265 bps = 9600; /* B0 */
266 /*
267 * Use a poll-period of roughly the time it takes to send one
268 * character or at least one jiffy.
269 */
270 period = max_t(unsigned long, (10 * HZ / bps), 1);
271 period = min_t(unsigned long, period, timeout);
272
273 dev_dbg(&port->dev, "%s - timeout = %u ms, period = %u ms\n",
274 __func__, jiffies_to_msecs(timeout),
275 jiffies_to_msecs(period));
276 expire = jiffies + timeout;
277 while (!port->serial->type->tx_empty(port)) {
278 schedule_timeout_interruptible(period);
279 if (signal_pending(current))
280 break;
281 if (time_after(jiffies, expire))
282 break;
283 }
284}
285EXPORT_SYMBOL_GPL(usb_serial_generic_wait_until_sent);
286
Johan Hovoldd83b4052011-11-06 19:06:37 +0100287static int usb_serial_generic_submit_read_urb(struct usb_serial_port *port,
288 int index, gfp_t mem_flags)
289{
290 int res;
291
292 if (!test_and_clear_bit(index, &port->read_urbs_free))
293 return 0;
294
Johan Hovold49bd1962013-03-21 12:36:27 +0100295 dev_dbg(&port->dev, "%s - urb %d\n", __func__, index);
Johan Hovoldd83b4052011-11-06 19:06:37 +0100296
297 res = usb_submit_urb(port->read_urbs[index], mem_flags);
298 if (res) {
299 if (res != -EPERM) {
300 dev_err(&port->dev,
301 "%s - usb_submit_urb failed: %d\n",
302 __func__, res);
303 }
304 set_bit(index, &port->read_urbs_free);
305 return res;
306 }
307
308 return 0;
309}
310
311int usb_serial_generic_submit_read_urbs(struct usb_serial_port *port,
Johan Hovold41bd72f2010-03-17 23:05:53 +0100312 gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Johan Hovoldd83b4052011-11-06 19:06:37 +0100314 int res;
315 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Johan Hovoldd83b4052011-11-06 19:06:37 +0100317 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i) {
318 res = usb_serial_generic_submit_read_urb(port, i, mem_flags);
319 if (res)
320 goto err;
Johan Hovold0ae14742010-02-27 14:05:46 +0100321 }
Johan Hovoldd83b4052011-11-06 19:06:37 +0100322
323 return 0;
324err:
325 for (; i >= 0; --i)
326 usb_kill_urb(port->read_urbs[i]);
327
328 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
Johan Hovoldd83b4052011-11-06 19:06:37 +0100330EXPORT_SYMBOL_GPL(usb_serial_generic_submit_read_urbs);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100331
Johan Hovold23154322010-03-17 23:05:57 +0100332void usb_serial_generic_process_read_urb(struct urb *urb)
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200333{
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100334 struct usb_serial_port *port = urb->context;
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500335 char *ch = (char *)urb->transfer_buffer;
336 int i;
337
Johan Hovold56a1df42010-05-15 17:53:44 +0200338 if (!urb->actual_length)
339 return;
340
Alan Cox4cd1de0a2009-07-09 13:35:52 +0100341 /* The per character mucking around with sysrq path it too slow for
342 stuff like 3G modems, so shortcircuit it in the 99.9999999% of cases
343 where the USB serial is not a console anyway */
Jason Wesselbd5afa92010-03-08 21:50:12 -0600344 if (!port->port.console || !port->sysrq)
Jiri Slaby05c7cd32013-01-03 15:53:04 +0100345 tty_insert_flip_string(&port->port, ch, urb->actual_length);
Alan Cox4cd1de0a2009-07-09 13:35:52 +0100346 else {
Alan Cox4cd1de0a2009-07-09 13:35:52 +0100347 for (i = 0; i < urb->actual_length; i++, ch++) {
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700348 if (!usb_serial_handle_sysrq_char(port, *ch))
Jiri Slaby92a19f92013-01-03 15:53:03 +0100349 tty_insert_flip_char(&port->port, *ch, TTY_NORMAL);
Alan Cox4cd1de0a2009-07-09 13:35:52 +0100350 }
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200351 }
Jiri Slaby2e124b42013-01-03 15:53:06 +0100352 tty_flip_buffer_push(&port->port);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200353}
Johan Hovold23154322010-03-17 23:05:57 +0100354EXPORT_SYMBOL_GPL(usb_serial_generic_process_read_urb);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200355
Alan Cox95da3102008-07-22 11:09:07 +0100356void usb_serial_generic_read_bulk_callback(struct urb *urb)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100357{
Ming Leicdc97792008-02-24 18:41:47 +0800358 struct usb_serial_port *port = urb->context;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100359 unsigned char *data = urb->transfer_buffer;
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100360 unsigned long flags;
Johan Hovoldd83b4052011-11-06 19:06:37 +0100361 int i;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100362
Johan Hovoldd83b4052011-11-06 19:06:37 +0100363 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i) {
364 if (urb == port->read_urbs[i])
365 break;
366 }
367 set_bit(i, &port->read_urbs_free);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100368
Johan Hovold49bd1962013-03-21 12:36:27 +0100369 dev_dbg(&port->dev, "%s - urb %d, len %d\n", __func__, i,
370 urb->actual_length);
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700371
Johan Hovoldd83b4052011-11-06 19:06:37 +0100372 if (urb->status) {
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700373 dev_dbg(&port->dev, "%s - non-zero urb status: %d\n",
374 __func__, urb->status);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100375 return;
376 }
377
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100378 usb_serial_debug_data(&port->dev, __func__, urb->actual_length, data);
Johan Hovold23154322010-03-17 23:05:57 +0100379 port->serial->type->process_read_urb(urb);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100380
381 /* Throttle the device if requested by tty */
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100382 spin_lock_irqsave(&port->lock, flags);
Alan Coxae643872008-07-22 11:11:55 +0100383 port->throttled = port->throttle_req;
384 if (!port->throttled) {
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800385 spin_unlock_irqrestore(&port->lock, flags);
Johan Hovoldd83b4052011-11-06 19:06:37 +0100386 usb_serial_generic_submit_read_urb(port, i, GFP_ATOMIC);
Alan Coxae643872008-07-22 11:11:55 +0100387 } else
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800388 spin_unlock_irqrestore(&port->lock, flags);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100389}
Luiz Fernando N. Capitulino166ffcc2006-07-11 14:19:25 -0300390EXPORT_SYMBOL_GPL(usb_serial_generic_read_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Alan Cox95da3102008-07-22 11:09:07 +0100392void usb_serial_generic_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
Jason Wessel715b1dc2009-05-11 15:24:07 -0500394 unsigned long flags;
Ming Leicdc97792008-02-24 18:41:47 +0800395 struct usb_serial_port *port = urb->context;
Greg Kroah-Hartmanfbd272252007-06-15 15:44:13 -0700396 int status = urb->status;
Johan Hovold27c7acf2010-05-05 23:57:37 +0200397 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200399 for (i = 0; i < ARRAY_SIZE(port->write_urbs); ++i)
400 if (port->write_urbs[i] == urb)
401 break;
402
403 spin_lock_irqsave(&port->lock, flags);
404 port->tx_bytes -= urb->transfer_buffer_length;
405 set_bit(i, &port->write_urbs_free);
406 spin_unlock_irqrestore(&port->lock, flags);
407
408 if (status) {
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700409 dev_dbg(&port->dev, "%s - non-zero urb status: %d\n",
410 __func__, status);
Johan Hovold25915302010-01-06 15:48:42 -0800411
Jason Wessel715b1dc2009-05-11 15:24:07 -0500412 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200413 kfifo_reset_out(&port->write_fifo);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500414 spin_unlock_irqrestore(&port->lock, flags);
415 } else {
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200416 usb_serial_generic_write_start(port);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500417 }
418
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700419 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
Greg Kroah-Hartmanbb833982005-11-17 09:48:18 -0800421EXPORT_SYMBOL_GPL(usb_serial_generic_write_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Alan Cox95da3102008-07-22 11:09:07 +0100423void usb_serial_generic_throttle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100424{
Alan Cox95da3102008-07-22 11:09:07 +0100425 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100426 unsigned long flags;
427
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100428 /* Set the throttle request flag. It will be picked up
429 * by usb_serial_generic_read_bulk_callback(). */
430 spin_lock_irqsave(&port->lock, flags);
431 port->throttle_req = 1;
432 spin_unlock_irqrestore(&port->lock, flags);
433}
Johan Hovoldf1e949a2010-03-17 23:05:59 +0100434EXPORT_SYMBOL_GPL(usb_serial_generic_throttle);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100435
Alan Cox95da3102008-07-22 11:09:07 +0100436void usb_serial_generic_unthrottle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100437{
Alan Cox95da3102008-07-22 11:09:07 +0100438 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100439 int was_throttled;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100440
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100441 /* Clear the throttle flags */
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100442 spin_lock_irq(&port->lock);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100443 was_throttled = port->throttled;
444 port->throttled = port->throttle_req = 0;
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100445 spin_unlock_irq(&port->lock);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100446
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100447 if (was_throttled)
Johan Hovoldd83b4052011-11-06 19:06:37 +0100448 usb_serial_generic_submit_read_urbs(port, GFP_KERNEL);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100449}
Johan Hovoldf1e949a2010-03-17 23:05:59 +0100450EXPORT_SYMBOL_GPL(usb_serial_generic_unthrottle);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100451
Johan Hovold980373b2013-03-21 12:36:52 +0100452static bool usb_serial_generic_msr_changed(struct tty_struct *tty,
453 unsigned long arg, struct async_icount *cprev)
454{
455 struct usb_serial_port *port = tty->driver_data;
456 struct async_icount cnow;
457 unsigned long flags;
458 bool ret;
459
460 /*
461 * Use tty-port initialised flag to detect all hangups including the
462 * one generated at USB-device disconnect.
Johan Hovold980373b2013-03-21 12:36:52 +0100463 */
Johan Hovold980373b2013-03-21 12:36:52 +0100464 if (!test_bit(ASYNCB_INITIALIZED, &port->port.flags))
465 return true;
466
467 spin_lock_irqsave(&port->lock, flags);
468 cnow = port->icount; /* atomic copy*/
469 spin_unlock_irqrestore(&port->lock, flags);
470
471 ret = ((arg & TIOCM_RNG) && (cnow.rng != cprev->rng)) ||
472 ((arg & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) ||
473 ((arg & TIOCM_CD) && (cnow.dcd != cprev->dcd)) ||
474 ((arg & TIOCM_CTS) && (cnow.cts != cprev->cts));
475
476 *cprev = cnow;
477
478 return ret;
479}
480
481int usb_serial_generic_tiocmiwait(struct tty_struct *tty, unsigned long arg)
482{
483 struct usb_serial_port *port = tty->driver_data;
484 struct async_icount cnow;
485 unsigned long flags;
486 int ret;
487
488 spin_lock_irqsave(&port->lock, flags);
489 cnow = port->icount; /* atomic copy */
490 spin_unlock_irqrestore(&port->lock, flags);
491
492 ret = wait_event_interruptible(port->port.delta_msr_wait,
493 usb_serial_generic_msr_changed(tty, arg, &cnow));
Johan Hovold91c42112013-06-26 16:47:21 +0200494 if (!ret && !test_bit(ASYNCB_INITIALIZED, &port->port.flags))
495 ret = -EIO;
Johan Hovold980373b2013-03-21 12:36:52 +0100496
497 return ret;
498}
499EXPORT_SYMBOL_GPL(usb_serial_generic_tiocmiwait);
500
Johan Hovoldbefefcd2013-03-21 12:36:54 +0100501int usb_serial_generic_get_icount(struct tty_struct *tty,
502 struct serial_icounter_struct *icount)
503{
504 struct usb_serial_port *port = tty->driver_data;
505 struct async_icount cnow;
506 unsigned long flags;
507
508 spin_lock_irqsave(&port->lock, flags);
509 cnow = port->icount; /* atomic copy */
510 spin_unlock_irqrestore(&port->lock, flags);
511
512 icount->cts = cnow.cts;
513 icount->dsr = cnow.dsr;
514 icount->rng = cnow.rng;
515 icount->dcd = cnow.dcd;
516 icount->tx = cnow.tx;
517 icount->rx = cnow.rx;
518 icount->frame = cnow.frame;
519 icount->parity = cnow.parity;
520 icount->overrun = cnow.overrun;
521 icount->brk = cnow.brk;
522 icount->buf_overrun = cnow.buf_overrun;
523
524 return 0;
525}
526EXPORT_SYMBOL_GPL(usb_serial_generic_get_icount);
527
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700528#ifdef CONFIG_MAGIC_SYSRQ
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700529int usb_serial_handle_sysrq_char(struct usb_serial_port *port, unsigned int ch)
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500530{
Jason Wesselbd5afa92010-03-08 21:50:12 -0600531 if (port->sysrq && port->port.console) {
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500532 if (ch && time_before(jiffies, port->sysrq)) {
Dmitry Torokhovf3353972010-08-17 21:15:47 -0700533 handle_sysrq(ch);
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500534 port->sysrq = 0;
535 return 1;
536 }
537 port->sysrq = 0;
538 }
539 return 0;
540}
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700541#else
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700542int usb_serial_handle_sysrq_char(struct usb_serial_port *port, unsigned int ch)
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700543{
544 return 0;
545}
546#endif
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500547EXPORT_SYMBOL_GPL(usb_serial_handle_sysrq_char);
548
549int usb_serial_handle_break(struct usb_serial_port *port)
550{
551 if (!port->sysrq) {
552 port->sysrq = jiffies + HZ*5;
553 return 1;
554 }
555 port->sysrq = 0;
556 return 0;
557}
558EXPORT_SYMBOL_GPL(usb_serial_handle_break);
559
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100560/**
561 * usb_serial_handle_dcd_change - handle a change of carrier detect state
562 * @port: usb_serial_port structure for the open port
563 * @tty: tty_struct structure for the port
564 * @status: new carrier detect status, nonzero if active
565 */
566void usb_serial_handle_dcd_change(struct usb_serial_port *usb_port,
567 struct tty_struct *tty, unsigned int status)
568{
569 struct tty_port *port = &usb_port->port;
570
Johan Hovold49bd1962013-03-21 12:36:27 +0100571 dev_dbg(&usb_port->dev, "%s - status %d\n", __func__, status);
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100572
Paul Chavent833efc02013-09-16 08:41:00 +0200573 if (tty) {
574 struct tty_ldisc *ld = tty_ldisc_ref(tty);
575
576 if (ld) {
577 if (ld->ops->dcd_change)
578 ld->ops->dcd_change(tty, status);
579 tty_ldisc_deref(ld);
580 }
581 }
582
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100583 if (status)
584 wake_up_interruptible(&port->open_wait);
585 else if (tty && !C_CLOCAL(tty))
586 tty_hangup(tty);
587}
588EXPORT_SYMBOL_GPL(usb_serial_handle_dcd_change);
589
David VomLehn8e8dce02009-08-28 12:54:27 -0700590int usb_serial_generic_resume(struct usb_serial *serial)
591{
592 struct usb_serial_port *port;
593 int i, c = 0, r;
594
595 for (i = 0; i < serial->num_ports; i++) {
596 port = serial->port[i];
Alan Stern1f871582010-02-17 10:05:47 -0500597 if (!test_bit(ASYNCB_INITIALIZED, &port->port.flags))
David VomLehn8e8dce02009-08-28 12:54:27 -0700598 continue;
599
Johan Hovoldd83b4052011-11-06 19:06:37 +0100600 if (port->bulk_in_size) {
601 r = usb_serial_generic_submit_read_urbs(port,
602 GFP_NOIO);
David VomLehn8e8dce02009-08-28 12:54:27 -0700603 if (r < 0)
604 c++;
605 }
606
Johan Hovold27c7acf2010-05-05 23:57:37 +0200607 if (port->bulk_out_size) {
David VomLehn8e8dce02009-08-28 12:54:27 -0700608 r = usb_serial_generic_write_start(port);
609 if (r < 0)
610 c++;
611 }
612 }
613
614 return c ? -EIO : 0;
615}
616EXPORT_SYMBOL_GPL(usb_serial_generic_resume);