blob: 8335b484f14e3c824a4969d57e6f52ee09b0e7c4 [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);
264 period = min_t(unsigned long, period, timeout);
265
266 dev_dbg(&port->dev, "%s - timeout = %u ms, period = %u ms\n",
267 __func__, jiffies_to_msecs(timeout),
268 jiffies_to_msecs(period));
269 expire = jiffies + timeout;
270 while (!port->serial->type->tx_empty(port)) {
271 schedule_timeout_interruptible(period);
272 if (signal_pending(current))
273 break;
274 if (time_after(jiffies, expire))
275 break;
276 }
277}
278EXPORT_SYMBOL_GPL(usb_serial_generic_wait_until_sent);
279
Johan Hovoldd83b4052011-11-06 19:06:37 +0100280static int usb_serial_generic_submit_read_urb(struct usb_serial_port *port,
281 int index, gfp_t mem_flags)
282{
283 int res;
284
285 if (!test_and_clear_bit(index, &port->read_urbs_free))
286 return 0;
287
Johan Hovold49bd1962013-03-21 12:36:27 +0100288 dev_dbg(&port->dev, "%s - urb %d\n", __func__, index);
Johan Hovoldd83b4052011-11-06 19:06:37 +0100289
290 res = usb_submit_urb(port->read_urbs[index], mem_flags);
291 if (res) {
292 if (res != -EPERM) {
293 dev_err(&port->dev,
294 "%s - usb_submit_urb failed: %d\n",
295 __func__, res);
296 }
297 set_bit(index, &port->read_urbs_free);
298 return res;
299 }
300
301 return 0;
302}
303
304int usb_serial_generic_submit_read_urbs(struct usb_serial_port *port,
Johan Hovold41bd72f2010-03-17 23:05:53 +0100305 gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
Johan Hovoldd83b4052011-11-06 19:06:37 +0100307 int res;
308 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Johan Hovoldd83b4052011-11-06 19:06:37 +0100310 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i) {
311 res = usb_serial_generic_submit_read_urb(port, i, mem_flags);
312 if (res)
313 goto err;
Johan Hovold0ae14742010-02-27 14:05:46 +0100314 }
Johan Hovoldd83b4052011-11-06 19:06:37 +0100315
316 return 0;
317err:
318 for (; i >= 0; --i)
319 usb_kill_urb(port->read_urbs[i]);
320
321 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
Johan Hovoldd83b4052011-11-06 19:06:37 +0100323EXPORT_SYMBOL_GPL(usb_serial_generic_submit_read_urbs);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100324
Johan Hovold23154322010-03-17 23:05:57 +0100325void usb_serial_generic_process_read_urb(struct urb *urb)
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200326{
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100327 struct usb_serial_port *port = urb->context;
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500328 char *ch = (char *)urb->transfer_buffer;
329 int i;
330
Johan Hovold56a1df42010-05-15 17:53:44 +0200331 if (!urb->actual_length)
332 return;
333
Alan Cox4cd1de02009-07-09 13:35:52 +0100334 /* The per character mucking around with sysrq path it too slow for
335 stuff like 3G modems, so shortcircuit it in the 99.9999999% of cases
336 where the USB serial is not a console anyway */
Jason Wesselbd5afa92010-03-08 21:50:12 -0600337 if (!port->port.console || !port->sysrq)
Jiri Slaby05c7cd32013-01-03 15:53:04 +0100338 tty_insert_flip_string(&port->port, ch, urb->actual_length);
Alan Cox4cd1de02009-07-09 13:35:52 +0100339 else {
Alan Cox4cd1de02009-07-09 13:35:52 +0100340 for (i = 0; i < urb->actual_length; i++, ch++) {
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700341 if (!usb_serial_handle_sysrq_char(port, *ch))
Jiri Slaby92a19f92013-01-03 15:53:03 +0100342 tty_insert_flip_char(&port->port, *ch, TTY_NORMAL);
Alan Cox4cd1de02009-07-09 13:35:52 +0100343 }
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200344 }
Jiri Slaby2e124b42013-01-03 15:53:06 +0100345 tty_flip_buffer_push(&port->port);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200346}
Johan Hovold23154322010-03-17 23:05:57 +0100347EXPORT_SYMBOL_GPL(usb_serial_generic_process_read_urb);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200348
Alan Cox95da3102008-07-22 11:09:07 +0100349void usb_serial_generic_read_bulk_callback(struct urb *urb)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100350{
Ming Leicdc97792008-02-24 18:41:47 +0800351 struct usb_serial_port *port = urb->context;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100352 unsigned char *data = urb->transfer_buffer;
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100353 unsigned long flags;
Johan Hovoldd83b4052011-11-06 19:06:37 +0100354 int i;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100355
Johan Hovoldd83b4052011-11-06 19:06:37 +0100356 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i) {
357 if (urb == port->read_urbs[i])
358 break;
359 }
360 set_bit(i, &port->read_urbs_free);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100361
Johan Hovold49bd1962013-03-21 12:36:27 +0100362 dev_dbg(&port->dev, "%s - urb %d, len %d\n", __func__, i,
363 urb->actual_length);
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700364
Johan Hovoldd83b4052011-11-06 19:06:37 +0100365 if (urb->status) {
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700366 dev_dbg(&port->dev, "%s - non-zero urb status: %d\n",
367 __func__, urb->status);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100368 return;
369 }
370
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100371 usb_serial_debug_data(&port->dev, __func__, urb->actual_length, data);
Johan Hovold23154322010-03-17 23:05:57 +0100372 port->serial->type->process_read_urb(urb);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100373
374 /* Throttle the device if requested by tty */
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100375 spin_lock_irqsave(&port->lock, flags);
Alan Coxae643872008-07-22 11:11:55 +0100376 port->throttled = port->throttle_req;
377 if (!port->throttled) {
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800378 spin_unlock_irqrestore(&port->lock, flags);
Johan Hovoldd83b4052011-11-06 19:06:37 +0100379 usb_serial_generic_submit_read_urb(port, i, GFP_ATOMIC);
Alan Coxae643872008-07-22 11:11:55 +0100380 } else
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800381 spin_unlock_irqrestore(&port->lock, flags);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100382}
Luiz Fernando N. Capitulino166ffcc2006-07-11 14:19:25 -0300383EXPORT_SYMBOL_GPL(usb_serial_generic_read_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Alan Cox95da3102008-07-22 11:09:07 +0100385void usb_serial_generic_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386{
Jason Wessel715b1dc2009-05-11 15:24:07 -0500387 unsigned long flags;
Ming Leicdc97792008-02-24 18:41:47 +0800388 struct usb_serial_port *port = urb->context;
Greg Kroah-Hartmanfbd272252007-06-15 15:44:13 -0700389 int status = urb->status;
Johan Hovold27c7acf2010-05-05 23:57:37 +0200390 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200392 for (i = 0; i < ARRAY_SIZE(port->write_urbs); ++i)
393 if (port->write_urbs[i] == urb)
394 break;
395
396 spin_lock_irqsave(&port->lock, flags);
397 port->tx_bytes -= urb->transfer_buffer_length;
398 set_bit(i, &port->write_urbs_free);
399 spin_unlock_irqrestore(&port->lock, flags);
400
401 if (status) {
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700402 dev_dbg(&port->dev, "%s - non-zero urb status: %d\n",
403 __func__, status);
Johan Hovold25915302010-01-06 15:48:42 -0800404
Jason Wessel715b1dc2009-05-11 15:24:07 -0500405 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200406 kfifo_reset_out(&port->write_fifo);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500407 spin_unlock_irqrestore(&port->lock, flags);
408 } else {
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200409 usb_serial_generic_write_start(port);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500410 }
411
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700412 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
Greg Kroah-Hartmanbb833982005-11-17 09:48:18 -0800414EXPORT_SYMBOL_GPL(usb_serial_generic_write_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Alan Cox95da3102008-07-22 11:09:07 +0100416void usb_serial_generic_throttle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100417{
Alan Cox95da3102008-07-22 11:09:07 +0100418 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100419 unsigned long flags;
420
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100421 /* Set the throttle request flag. It will be picked up
422 * by usb_serial_generic_read_bulk_callback(). */
423 spin_lock_irqsave(&port->lock, flags);
424 port->throttle_req = 1;
425 spin_unlock_irqrestore(&port->lock, flags);
426}
Johan Hovoldf1e949a2010-03-17 23:05:59 +0100427EXPORT_SYMBOL_GPL(usb_serial_generic_throttle);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100428
Alan Cox95da3102008-07-22 11:09:07 +0100429void usb_serial_generic_unthrottle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100430{
Alan Cox95da3102008-07-22 11:09:07 +0100431 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100432 int was_throttled;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100433
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100434 /* Clear the throttle flags */
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100435 spin_lock_irq(&port->lock);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100436 was_throttled = port->throttled;
437 port->throttled = port->throttle_req = 0;
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100438 spin_unlock_irq(&port->lock);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100439
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100440 if (was_throttled)
Johan Hovoldd83b4052011-11-06 19:06:37 +0100441 usb_serial_generic_submit_read_urbs(port, GFP_KERNEL);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100442}
Johan Hovoldf1e949a2010-03-17 23:05:59 +0100443EXPORT_SYMBOL_GPL(usb_serial_generic_unthrottle);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100444
Johan Hovold980373b2013-03-21 12:36:52 +0100445static bool usb_serial_generic_msr_changed(struct tty_struct *tty,
446 unsigned long arg, struct async_icount *cprev)
447{
448 struct usb_serial_port *port = tty->driver_data;
449 struct async_icount cnow;
450 unsigned long flags;
451 bool ret;
452
453 /*
454 * Use tty-port initialised flag to detect all hangups including the
455 * one generated at USB-device disconnect.
456 *
457 * FIXME: Remove hupping check once tty_port_hangup calls shutdown
458 * (which clears the initialised flag) before wake up.
459 */
460 if (test_bit(TTY_HUPPING, &tty->flags))
461 return true;
462 if (!test_bit(ASYNCB_INITIALIZED, &port->port.flags))
463 return true;
464
465 spin_lock_irqsave(&port->lock, flags);
466 cnow = port->icount; /* atomic copy*/
467 spin_unlock_irqrestore(&port->lock, flags);
468
469 ret = ((arg & TIOCM_RNG) && (cnow.rng != cprev->rng)) ||
470 ((arg & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) ||
471 ((arg & TIOCM_CD) && (cnow.dcd != cprev->dcd)) ||
472 ((arg & TIOCM_CTS) && (cnow.cts != cprev->cts));
473
474 *cprev = cnow;
475
476 return ret;
477}
478
479int usb_serial_generic_tiocmiwait(struct tty_struct *tty, unsigned long arg)
480{
481 struct usb_serial_port *port = tty->driver_data;
482 struct async_icount cnow;
483 unsigned long flags;
484 int ret;
485
486 spin_lock_irqsave(&port->lock, flags);
487 cnow = port->icount; /* atomic copy */
488 spin_unlock_irqrestore(&port->lock, flags);
489
490 ret = wait_event_interruptible(port->port.delta_msr_wait,
491 usb_serial_generic_msr_changed(tty, arg, &cnow));
492 if (!ret) {
493 if (test_bit(TTY_HUPPING, &tty->flags))
494 ret = -EIO;
495 if (!test_bit(ASYNCB_INITIALIZED, &port->port.flags))
496 ret = -EIO;
497 }
498
499 return ret;
500}
501EXPORT_SYMBOL_GPL(usb_serial_generic_tiocmiwait);
502
Johan Hovoldbefefcd2013-03-21 12:36:54 +0100503int usb_serial_generic_get_icount(struct tty_struct *tty,
504 struct serial_icounter_struct *icount)
505{
506 struct usb_serial_port *port = tty->driver_data;
507 struct async_icount cnow;
508 unsigned long flags;
509
510 spin_lock_irqsave(&port->lock, flags);
511 cnow = port->icount; /* atomic copy */
512 spin_unlock_irqrestore(&port->lock, flags);
513
514 icount->cts = cnow.cts;
515 icount->dsr = cnow.dsr;
516 icount->rng = cnow.rng;
517 icount->dcd = cnow.dcd;
518 icount->tx = cnow.tx;
519 icount->rx = cnow.rx;
520 icount->frame = cnow.frame;
521 icount->parity = cnow.parity;
522 icount->overrun = cnow.overrun;
523 icount->brk = cnow.brk;
524 icount->buf_overrun = cnow.buf_overrun;
525
526 return 0;
527}
528EXPORT_SYMBOL_GPL(usb_serial_generic_get_icount);
529
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700530#ifdef CONFIG_MAGIC_SYSRQ
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700531int usb_serial_handle_sysrq_char(struct usb_serial_port *port, unsigned int ch)
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500532{
Jason Wesselbd5afa92010-03-08 21:50:12 -0600533 if (port->sysrq && port->port.console) {
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500534 if (ch && time_before(jiffies, port->sysrq)) {
Dmitry Torokhovf3353972010-08-17 21:15:47 -0700535 handle_sysrq(ch);
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500536 port->sysrq = 0;
537 return 1;
538 }
539 port->sysrq = 0;
540 }
541 return 0;
542}
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700543#else
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700544int usb_serial_handle_sysrq_char(struct usb_serial_port *port, unsigned int ch)
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700545{
546 return 0;
547}
548#endif
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500549EXPORT_SYMBOL_GPL(usb_serial_handle_sysrq_char);
550
551int usb_serial_handle_break(struct usb_serial_port *port)
552{
553 if (!port->sysrq) {
554 port->sysrq = jiffies + HZ*5;
555 return 1;
556 }
557 port->sysrq = 0;
558 return 0;
559}
560EXPORT_SYMBOL_GPL(usb_serial_handle_break);
561
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100562/**
563 * usb_serial_handle_dcd_change - handle a change of carrier detect state
564 * @port: usb_serial_port structure for the open port
565 * @tty: tty_struct structure for the port
566 * @status: new carrier detect status, nonzero if active
567 */
568void usb_serial_handle_dcd_change(struct usb_serial_port *usb_port,
569 struct tty_struct *tty, unsigned int status)
570{
571 struct tty_port *port = &usb_port->port;
572
Johan Hovold49bd1962013-03-21 12:36:27 +0100573 dev_dbg(&usb_port->dev, "%s - status %d\n", __func__, status);
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100574
575 if (status)
576 wake_up_interruptible(&port->open_wait);
577 else if (tty && !C_CLOCAL(tty))
578 tty_hangup(tty);
579}
580EXPORT_SYMBOL_GPL(usb_serial_handle_dcd_change);
581
David VomLehn8e8dce02009-08-28 12:54:27 -0700582int usb_serial_generic_resume(struct usb_serial *serial)
583{
584 struct usb_serial_port *port;
585 int i, c = 0, r;
586
587 for (i = 0; i < serial->num_ports; i++) {
588 port = serial->port[i];
Alan Stern1f871582010-02-17 10:05:47 -0500589 if (!test_bit(ASYNCB_INITIALIZED, &port->port.flags))
David VomLehn8e8dce02009-08-28 12:54:27 -0700590 continue;
591
Johan Hovoldd83b4052011-11-06 19:06:37 +0100592 if (port->bulk_in_size) {
593 r = usb_serial_generic_submit_read_urbs(port,
594 GFP_NOIO);
David VomLehn8e8dce02009-08-28 12:54:27 -0700595 if (r < 0)
596 c++;
597 }
598
Johan Hovold27c7acf2010-05-05 23:57:37 +0200599 if (port->bulk_out_size) {
David VomLehn8e8dce02009-08-28 12:54:27 -0700600 r = usb_serial_generic_write_start(port);
601 if (r < 0)
602 c++;
603 }
604 }
605
606 return c ? -EIO : 0;
607}
608EXPORT_SYMBOL_GPL(usb_serial_generic_resume);