blob: 5cdf180cda23e90ff8b8c3456022d4491221fde3 [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * USB Serial Converter Generic functions
4 *
Johan Hovold659597b72013-03-21 12:37:51 +01005 * Copyright (C) 2010 - 2013 Johan Hovold (jhovold@gmail.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Copyright (C) 1999 - 2002 Greg Kroah-Hartman (greg@kroah.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/kernel.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010010#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/errno.h>
12#include <linux/slab.h>
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -070013#include <linux/sysrq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/tty.h>
15#include <linux/tty_flip.h>
16#include <linux/module.h>
17#include <linux/moduleparam.h>
18#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070019#include <linux/usb/serial.h>
Alan Coxae643872008-07-22 11:11:55 +010020#include <linux/uaccess.h>
David VomLehn8e8dce02009-08-28 12:54:27 -070021#include <linux/kfifo.h>
Alan Stern1f871582010-02-17 10:05:47 -050022#include <linux/serial.h>
Johannes Hölzld9b1b782006-12-17 21:50:24 +010023
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#ifdef CONFIG_USB_SERIAL_GENERIC
David Brownellb46d60f2007-03-23 12:51:55 -070025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026static __u16 vendor = 0x05f9;
27static __u16 product = 0xffff;
28
29module_param(vendor, ushort, 0);
30MODULE_PARM_DESC(vendor, "User specified USB idVendor");
31
32module_param(product, ushort, 0);
33MODULE_PARM_DESC(product, "User specified USB idProduct");
34
35static struct usb_device_id generic_device_ids[2]; /* Initially all zeroes. */
36
Johan Hovold415d7b32017-03-16 17:13:31 +010037static int usb_serial_generic_probe(struct usb_serial *serial,
38 const struct usb_device_id *id)
39{
40 struct device *dev = &serial->interface->dev;
41
42 dev_info(dev, "The \"generic\" usb-serial driver is only for testing and one-off prototypes.\n");
43 dev_info(dev, "Tell linux-usb@vger.kernel.org to add your device to a proper driver.\n");
44
45 return 0;
46}
47
Johan Hovolda7944992017-03-16 17:13:32 +010048static int usb_serial_generic_calc_num_ports(struct usb_serial *serial,
49 struct usb_serial_endpoints *epds)
50{
51 struct device *dev = &serial->interface->dev;
Johan Hovold65388082017-03-16 17:13:33 +010052 int num_ports;
53
54 num_ports = max(epds->num_bulk_in, epds->num_bulk_out);
Johan Hovolda7944992017-03-16 17:13:32 +010055
56 if (num_ports == 0) {
Johan Hovold65388082017-03-16 17:13:33 +010057 dev_err(dev, "device has no bulk endpoints\n");
Johan Hovolda7944992017-03-16 17:13:32 +010058 return -ENODEV;
59 }
60
61 return num_ports;
62}
63
64static struct usb_serial_driver usb_serial_generic_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070065 .driver = {
66 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070067 .name = "generic",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070068 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 .id_table = generic_device_ids,
Johan Hovold415d7b32017-03-16 17:13:31 +010070 .probe = usb_serial_generic_probe,
Johan Hovolda7944992017-03-16 17:13:32 +010071 .calc_num_ports = usb_serial_generic_calc_num_ports,
Joris van Rantwijk253ca922007-02-01 20:08:18 +010072 .throttle = usb_serial_generic_throttle,
73 .unthrottle = usb_serial_generic_unthrottle,
Oliver Neukumec225592007-04-27 20:54:57 +020074 .resume = usb_serial_generic_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -070075};
76
Alan Stern765e0ba2012-02-23 14:55:59 -050077static struct usb_serial_driver * const serial_drivers[] = {
78 &usb_serial_generic_device, NULL
79};
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#endif
82
Greg Kroah-Hartman3033bc82012-09-18 16:05:17 +010083int usb_serial_generic_register(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
85 int retval = 0;
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#ifdef CONFIG_USB_SERIAL_GENERIC
88 generic_device_ids[0].idVendor = vendor;
89 generic_device_ids[0].idProduct = product;
Alan Coxae643872008-07-22 11:11:55 +010090 generic_device_ids[0].match_flags =
91 USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_PRODUCT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Alan Stern0b847042012-05-31 17:03:52 -040093 retval = usb_serial_register_drivers(serial_drivers,
94 "usbserial_generic", generic_device_ids);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#endif
96 return retval;
97}
98
Alan Coxae643872008-07-22 11:11:55 +010099void usb_serial_generic_deregister(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
101#ifdef CONFIG_USB_SERIAL_GENERIC
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700102 usb_serial_deregister_drivers(serial_drivers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#endif
104}
105
Alan Coxa509a7e2009-09-19 13:13:26 -0700106int usb_serial_generic_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 int result = 0;
109
Johan Hovolda8d78d92019-04-25 18:05:37 +0200110 clear_bit(USB_SERIAL_THROTTLED, &port->flags);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100111
Johan Hovold41bd72f2010-03-17 23:05:53 +0100112 if (port->bulk_in_size)
Johan Hovoldd83b4052011-11-06 19:06:37 +0100113 result = usb_serial_generic_submit_read_urbs(port, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115 return result;
116}
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700117EXPORT_SYMBOL_GPL(usb_serial_generic_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Johan Hovoldf8f0ad82013-03-21 12:36:41 +0100119void usb_serial_generic_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
Johan Hovoldec3ee502010-03-17 23:00:44 +0100121 unsigned long flags;
Johan Hovold27c7acf2010-05-05 23:57:37 +0200122 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Johan Hovold19c61852013-03-21 12:36:38 +0100124 if (port->bulk_out_size) {
125 for (i = 0; i < ARRAY_SIZE(port->write_urbs); ++i)
126 usb_kill_urb(port->write_urbs[i]);
Johan Hovoldec3ee502010-03-17 23:00:44 +0100127
Johan Hovold19c61852013-03-21 12:36:38 +0100128 spin_lock_irqsave(&port->lock, flags);
129 kfifo_reset_out(&port->write_fifo);
130 spin_unlock_irqrestore(&port->lock, flags);
131 }
132 if (port->bulk_in_size) {
133 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i)
134 usb_kill_urb(port->read_urbs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
136}
Johan Hovoldf26788d2010-03-17 23:00:45 +0100137EXPORT_SYMBOL_GPL(usb_serial_generic_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Johan Hovoldeaa3bcb2010-03-17 23:06:08 +0100139int usb_serial_generic_prepare_write_buffer(struct usb_serial_port *port,
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200140 void *dest, size_t size)
Johan Hovoldeaa3bcb2010-03-17 23:06:08 +0100141{
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200142 return kfifo_out_locked(&port->write_fifo, dest, size, &port->lock);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500143}
144
David VomLehn8e8dce02009-08-28 12:54:27 -0700145/**
Johan Hovold92ad2472013-10-09 17:01:10 +0200146 * usb_serial_generic_write_start - start writing buffered data
147 * @port: usb-serial port
Johan Hovold818f6032013-10-09 17:01:11 +0200148 * @mem_flags: flags to use for memory allocations
David VomLehn8e8dce02009-08-28 12:54:27 -0700149 *
Johan Hovold92ad2472013-10-09 17:01:10 +0200150 * Serialised using USB_SERIAL_WRITE_BUSY flag.
151 *
152 * Return: Zero on success or if busy, otherwise a negative errno value.
David VomLehn8e8dce02009-08-28 12:54:27 -0700153 */
Johan Hovold706cd172013-10-09 17:01:12 +0200154int usb_serial_generic_write_start(struct usb_serial_port *port,
Johan Hovold818f6032013-10-09 17:01:11 +0200155 gfp_t mem_flags)
David VomLehn8e8dce02009-08-28 12:54:27 -0700156{
Johan Hovold27c7acf2010-05-05 23:57:37 +0200157 struct urb *urb;
158 int count, result;
David VomLehn8e8dce02009-08-28 12:54:27 -0700159 unsigned long flags;
Johan Hovold27c7acf2010-05-05 23:57:37 +0200160 int i;
David VomLehn8e8dce02009-08-28 12:54:27 -0700161
Johan Hovold27c7acf2010-05-05 23:57:37 +0200162 if (test_and_set_bit_lock(USB_SERIAL_WRITE_BUSY, &port->flags))
163 return 0;
164retry:
David VomLehn8e8dce02009-08-28 12:54:27 -0700165 spin_lock_irqsave(&port->lock, flags);
Johan Hovold27c7acf2010-05-05 23:57:37 +0200166 if (!port->write_urbs_free || !kfifo_len(&port->write_fifo)) {
167 clear_bit_unlock(USB_SERIAL_WRITE_BUSY, &port->flags);
Johan Hovold50a5f702010-03-17 23:06:02 +0100168 spin_unlock_irqrestore(&port->lock, flags);
David VomLehn8e8dce02009-08-28 12:54:27 -0700169 return 0;
Johan Hovold50a5f702010-03-17 23:06:02 +0100170 }
Johan Hovold27c7acf2010-05-05 23:57:37 +0200171 i = (int)find_first_bit(&port->write_urbs_free,
172 ARRAY_SIZE(port->write_urbs));
Johan Hovold50a5f702010-03-17 23:06:02 +0100173 spin_unlock_irqrestore(&port->lock, flags);
David VomLehn8e8dce02009-08-28 12:54:27 -0700174
Johan Hovold27c7acf2010-05-05 23:57:37 +0200175 urb = port->write_urbs[i];
Johan Hovoldeaa3bcb2010-03-17 23:06:08 +0100176 count = port->serial->type->prepare_write_buffer(port,
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200177 urb->transfer_buffer,
178 port->bulk_out_size);
Johan Hovold27c7acf2010-05-05 23:57:37 +0200179 urb->transfer_buffer_length = count;
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100180 usb_serial_debug_data(&port->dev, __func__, count, urb->transfer_buffer);
Johan Hovoldb58af402010-08-04 15:45:57 +0200181 spin_lock_irqsave(&port->lock, flags);
182 port->tx_bytes += count;
183 spin_unlock_irqrestore(&port->lock, flags);
184
185 clear_bit(i, &port->write_urbs_free);
Johan Hovold818f6032013-10-09 17:01:11 +0200186 result = usb_submit_urb(urb, mem_flags);
David VomLehn8e8dce02009-08-28 12:54:27 -0700187 if (result) {
Johan Hovoldf1475a02012-02-10 13:20:50 +0100188 dev_err_console(port, "%s - error submitting urb: %d\n",
David VomLehn8e8dce02009-08-28 12:54:27 -0700189 __func__, result);
Johan Hovoldb58af402010-08-04 15:45:57 +0200190 set_bit(i, &port->write_urbs_free);
191 spin_lock_irqsave(&port->lock, flags);
192 port->tx_bytes -= count;
193 spin_unlock_irqrestore(&port->lock, flags);
194
Johan Hovold27c7acf2010-05-05 23:57:37 +0200195 clear_bit_unlock(USB_SERIAL_WRITE_BUSY, &port->flags);
Johan Hovold30af7fb2010-03-17 23:00:42 +0100196 return result;
197 }
Johan Hovold27c7acf2010-05-05 23:57:37 +0200198
Johan Hovold6f648542013-11-09 12:38:09 +0100199 goto retry; /* try sending off another urb */
David VomLehn8e8dce02009-08-28 12:54:27 -0700200}
Johan Hovold706cd172013-10-09 17:01:12 +0200201EXPORT_SYMBOL_GPL(usb_serial_generic_write_start);
David VomLehn8e8dce02009-08-28 12:54:27 -0700202
203/**
Johan Hovold92ad2472013-10-09 17:01:10 +0200204 * usb_serial_generic_write - generic write function
205 * @tty: tty for the port
206 * @port: usb-serial port
207 * @buf: data to write
208 * @count: number of bytes to write
David VomLehn8e8dce02009-08-28 12:54:27 -0700209 *
Johan Hovold92ad2472013-10-09 17:01:10 +0200210 * Return: The number of characters buffered, which may be anything from
211 * zero to @count, or a negative errno value.
David VomLehn8e8dce02009-08-28 12:54:27 -0700212 */
Alan Cox95da3102008-07-22 11:09:07 +0100213int usb_serial_generic_write(struct tty_struct *tty,
214 struct usb_serial_port *port, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100218 if (!port->bulk_out_size)
219 return -ENODEV;
220
Johan Hovold1a1405e2010-03-17 23:06:01 +0100221 if (!count)
Alan Coxae643872008-07-22 11:11:55 +0100222 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Stefani Seibold119eecc2009-12-23 09:10:48 +0100224 count = kfifo_in_locked(&port->write_fifo, buf, count, &port->lock);
Johan Hovold043e3f82013-11-09 12:38:10 +0100225 result = usb_serial_generic_write_start(port, GFP_ATOMIC);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200226 if (result)
227 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200229 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230}
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500231EXPORT_SYMBOL_GPL(usb_serial_generic_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Alan Coxae643872008-07-22 11:11:55 +0100233int usb_serial_generic_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
Alan Cox95da3102008-07-22 11:09:07 +0100235 struct usb_serial_port *port = tty->driver_data;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500236 unsigned long flags;
Johan Hovold25d514c2010-03-17 23:06:07 +0100237 int room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100239 if (!port->bulk_out_size)
240 return 0;
241
Jason Wessel715b1dc2009-05-11 15:24:07 -0500242 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200243 room = kfifo_avail(&port->write_fifo);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500244 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700246 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room);
Alan Coxa5b6f602008-04-08 17:16:06 +0100247 return room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
249
Alan Cox95da3102008-07-22 11:09:07 +0100250int usb_serial_generic_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
Alan Cox95da3102008-07-22 11:09:07 +0100252 struct usb_serial_port *port = tty->driver_data;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500253 unsigned long flags;
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100254 int chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100256 if (!port->bulk_out_size)
257 return 0;
258
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100259 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200260 chars = kfifo_len(&port->write_fifo) + port->tx_bytes;
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100261 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700263 dev_dbg(&port->dev, "%s - returns %d\n", __func__, chars);
Alan Cox95da3102008-07-22 11:09:07 +0100264 return chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
Johan Hovold428d9982012-10-29 10:56:25 +0100266EXPORT_SYMBOL_GPL(usb_serial_generic_chars_in_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Johan Hovolddcf01052013-05-08 17:51:43 +0200268void usb_serial_generic_wait_until_sent(struct tty_struct *tty, long timeout)
269{
270 struct usb_serial_port *port = tty->driver_data;
271 unsigned int bps;
272 unsigned long period;
273 unsigned long expire;
274
275 bps = tty_get_baud_rate(tty);
276 if (!bps)
277 bps = 9600; /* B0 */
278 /*
279 * Use a poll-period of roughly the time it takes to send one
280 * character or at least one jiffy.
281 */
282 period = max_t(unsigned long, (10 * HZ / bps), 1);
Johan Hovoldf528bf42015-03-04 10:39:05 +0100283 if (timeout)
284 period = min_t(unsigned long, period, timeout);
Johan Hovolddcf01052013-05-08 17:51:43 +0200285
286 dev_dbg(&port->dev, "%s - timeout = %u ms, period = %u ms\n",
287 __func__, jiffies_to_msecs(timeout),
288 jiffies_to_msecs(period));
289 expire = jiffies + timeout;
290 while (!port->serial->type->tx_empty(port)) {
291 schedule_timeout_interruptible(period);
292 if (signal_pending(current))
293 break;
Johan Hovoldf528bf42015-03-04 10:39:05 +0100294 if (timeout && time_after(jiffies, expire))
Johan Hovolddcf01052013-05-08 17:51:43 +0200295 break;
296 }
297}
298EXPORT_SYMBOL_GPL(usb_serial_generic_wait_until_sent);
299
Johan Hovoldd83b4052011-11-06 19:06:37 +0100300static int usb_serial_generic_submit_read_urb(struct usb_serial_port *port,
301 int index, gfp_t mem_flags)
302{
303 int res;
304
305 if (!test_and_clear_bit(index, &port->read_urbs_free))
306 return 0;
307
Johan Hovold49bd1962013-03-21 12:36:27 +0100308 dev_dbg(&port->dev, "%s - urb %d\n", __func__, index);
Johan Hovoldd83b4052011-11-06 19:06:37 +0100309
310 res = usb_submit_urb(port->read_urbs[index], mem_flags);
311 if (res) {
Jeremiah Mahler04f9c6e2015-01-11 05:42:07 -0800312 if (res != -EPERM && res != -ENODEV) {
Johan Hovoldd83b4052011-11-06 19:06:37 +0100313 dev_err(&port->dev,
314 "%s - usb_submit_urb failed: %d\n",
315 __func__, res);
316 }
317 set_bit(index, &port->read_urbs_free);
318 return res;
319 }
320
321 return 0;
322}
323
324int usb_serial_generic_submit_read_urbs(struct usb_serial_port *port,
Johan Hovold41bd72f2010-03-17 23:05:53 +0100325 gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
Johan Hovoldd83b4052011-11-06 19:06:37 +0100327 int res;
328 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Johan Hovoldd83b4052011-11-06 19:06:37 +0100330 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i) {
331 res = usb_serial_generic_submit_read_urb(port, i, mem_flags);
332 if (res)
333 goto err;
Johan Hovold0ae14742010-02-27 14:05:46 +0100334 }
Johan Hovoldd83b4052011-11-06 19:06:37 +0100335
336 return 0;
337err:
338 for (; i >= 0; --i)
339 usb_kill_urb(port->read_urbs[i]);
340
341 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
Johan Hovoldd83b4052011-11-06 19:06:37 +0100343EXPORT_SYMBOL_GPL(usb_serial_generic_submit_read_urbs);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100344
Johan Hovold23154322010-03-17 23:05:57 +0100345void usb_serial_generic_process_read_urb(struct urb *urb)
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200346{
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100347 struct usb_serial_port *port = urb->context;
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500348 char *ch = (char *)urb->transfer_buffer;
349 int i;
350
Johan Hovold56a1df42010-05-15 17:53:44 +0200351 if (!urb->actual_length)
352 return;
Johan Hovold92ad2472013-10-09 17:01:10 +0200353 /*
354 * The per character mucking around with sysrq path it too slow for
355 * stuff like 3G modems, so shortcircuit it in the 99.9999999% of
356 * cases where the USB serial is not a console anyway.
357 */
Johan Hovoldca0400d2014-03-12 19:09:41 +0100358 if (!port->port.console || !port->sysrq) {
Jiri Slaby05c7cd32013-01-03 15:53:04 +0100359 tty_insert_flip_string(&port->port, ch, urb->actual_length);
Johan Hovoldca0400d2014-03-12 19:09:41 +0100360 } else {
Alan Cox4cd1de02009-07-09 13:35:52 +0100361 for (i = 0; i < urb->actual_length; i++, ch++) {
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700362 if (!usb_serial_handle_sysrq_char(port, *ch))
Jiri Slaby92a19f92013-01-03 15:53:03 +0100363 tty_insert_flip_char(&port->port, *ch, TTY_NORMAL);
Alan Cox4cd1de02009-07-09 13:35:52 +0100364 }
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200365 }
Jiri Slaby2e124b42013-01-03 15:53:06 +0100366 tty_flip_buffer_push(&port->port);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200367}
Johan Hovold23154322010-03-17 23:05:57 +0100368EXPORT_SYMBOL_GPL(usb_serial_generic_process_read_urb);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200369
Alan Cox95da3102008-07-22 11:09:07 +0100370void usb_serial_generic_read_bulk_callback(struct urb *urb)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100371{
Ming Leicdc97792008-02-24 18:41:47 +0800372 struct usb_serial_port *port = urb->context;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100373 unsigned char *data = urb->transfer_buffer;
Johan Hovold3f5edd52019-04-25 18:05:36 +0200374 bool stopped = false;
Oliver Neukum3161da92016-07-14 15:01:40 +0200375 int status = urb->status;
Johan Hovoldd83b4052011-11-06 19:06:37 +0100376 int i;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100377
Johan Hovoldd83b4052011-11-06 19:06:37 +0100378 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i) {
379 if (urb == port->read_urbs[i])
380 break;
381 }
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100382
Johan Hovold49bd1962013-03-21 12:36:27 +0100383 dev_dbg(&port->dev, "%s - urb %d, len %d\n", __func__, i,
384 urb->actual_length);
Oliver Neukum3161da92016-07-14 15:01:40 +0200385 switch (status) {
Johan Hovoldfc11efe2014-03-12 19:09:39 +0100386 case 0:
Johan Hovold3f5edd52019-04-25 18:05:36 +0200387 usb_serial_debug_data(&port->dev, __func__, urb->actual_length,
388 data);
389 port->serial->type->process_read_urb(urb);
Johan Hovoldfc11efe2014-03-12 19:09:39 +0100390 break;
391 case -ENOENT:
392 case -ECONNRESET:
393 case -ESHUTDOWN:
394 dev_dbg(&port->dev, "%s - urb stopped: %d\n",
Oliver Neukum3161da92016-07-14 15:01:40 +0200395 __func__, status);
Johan Hovold3f5edd52019-04-25 18:05:36 +0200396 stopped = true;
397 break;
Johan Hovoldfc11efe2014-03-12 19:09:39 +0100398 case -EPIPE:
399 dev_err(&port->dev, "%s - urb stopped: %d\n",
Oliver Neukum3161da92016-07-14 15:01:40 +0200400 __func__, status);
Johan Hovold3f5edd52019-04-25 18:05:36 +0200401 stopped = true;
402 break;
Johan Hovoldfc11efe2014-03-12 19:09:39 +0100403 default:
Jeremiah Mahleraa8e2212015-01-11 05:42:06 -0800404 dev_dbg(&port->dev, "%s - nonzero urb status: %d\n",
Oliver Neukum3161da92016-07-14 15:01:40 +0200405 __func__, status);
Johan Hovold3f5edd52019-04-25 18:05:36 +0200406 break;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100407 }
408
Johan Hovold3f5edd52019-04-25 18:05:36 +0200409 /*
410 * Make sure URB processing is done before marking as free to avoid
411 * racing with unthrottle() on another CPU. Matches the barriers
412 * implied by the test_and_clear_bit() in
413 * usb_serial_generic_submit_read_urb().
414 */
415 smp_mb__before_atomic();
416 set_bit(i, &port->read_urbs_free);
417 /*
418 * Make sure URB is marked as free before checking the throttled flag
419 * to avoid racing with unthrottle() on another CPU. Matches the
Johan Hovold32553442020-01-30 11:06:58 +0100420 * smp_mb__after_atomic() in unthrottle().
Johan Hovold3f5edd52019-04-25 18:05:36 +0200421 */
422 smp_mb__after_atomic();
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100423
Johan Hovold3f5edd52019-04-25 18:05:36 +0200424 if (stopped)
425 return;
426
Johan Hovolda8d78d92019-04-25 18:05:37 +0200427 if (test_bit(USB_SERIAL_THROTTLED, &port->flags))
428 return;
429
430 usb_serial_generic_submit_read_urb(port, i, GFP_ATOMIC);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100431}
Luiz Fernando N. Capitulino166ffcc2006-07-11 14:19:25 -0300432EXPORT_SYMBOL_GPL(usb_serial_generic_read_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Alan Cox95da3102008-07-22 11:09:07 +0100434void usb_serial_generic_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
Jason Wessel715b1dc2009-05-11 15:24:07 -0500436 unsigned long flags;
Ming Leicdc97792008-02-24 18:41:47 +0800437 struct usb_serial_port *port = urb->context;
Oliver Neukum3161da92016-07-14 15:01:40 +0200438 int status = urb->status;
Johan Hovold27c7acf2010-05-05 23:57:37 +0200439 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Johan Hovoldca0400d2014-03-12 19:09:41 +0100441 for (i = 0; i < ARRAY_SIZE(port->write_urbs); ++i) {
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200442 if (port->write_urbs[i] == urb)
443 break;
Johan Hovoldca0400d2014-03-12 19:09:41 +0100444 }
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200445 spin_lock_irqsave(&port->lock, flags);
446 port->tx_bytes -= urb->transfer_buffer_length;
447 set_bit(i, &port->write_urbs_free);
448 spin_unlock_irqrestore(&port->lock, flags);
449
Oliver Neukum3161da92016-07-14 15:01:40 +0200450 switch (status) {
Johan Hovoldbd58c7b2014-03-12 19:09:40 +0100451 case 0:
452 break;
453 case -ENOENT:
454 case -ECONNRESET:
455 case -ESHUTDOWN:
456 dev_dbg(&port->dev, "%s - urb stopped: %d\n",
Oliver Neukum3161da92016-07-14 15:01:40 +0200457 __func__, status);
Johan Hovoldbd58c7b2014-03-12 19:09:40 +0100458 return;
459 case -EPIPE:
460 dev_err_console(port, "%s - urb stopped: %d\n",
Oliver Neukum3161da92016-07-14 15:01:40 +0200461 __func__, status);
Johan Hovoldbd58c7b2014-03-12 19:09:40 +0100462 return;
463 default:
464 dev_err_console(port, "%s - nonzero urb status: %d\n",
Oliver Neukum3161da92016-07-14 15:01:40 +0200465 __func__, status);
Johan Hovold5b67b102019-04-25 18:05:38 +0200466 break;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500467 }
468
Johan Hovoldbd58c7b2014-03-12 19:09:40 +0100469 usb_serial_generic_write_start(port, GFP_ATOMIC);
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700470 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
Greg Kroah-Hartmanbb833982005-11-17 09:48:18 -0800472EXPORT_SYMBOL_GPL(usb_serial_generic_write_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Alan Cox95da3102008-07-22 11:09:07 +0100474void usb_serial_generic_throttle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100475{
Alan Cox95da3102008-07-22 11:09:07 +0100476 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100477
Johan Hovolda8d78d92019-04-25 18:05:37 +0200478 set_bit(USB_SERIAL_THROTTLED, &port->flags);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100479}
Johan Hovoldf1e949a2010-03-17 23:05:59 +0100480EXPORT_SYMBOL_GPL(usb_serial_generic_throttle);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100481
Alan Cox95da3102008-07-22 11:09:07 +0100482void usb_serial_generic_unthrottle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100483{
Alan Cox95da3102008-07-22 11:09:07 +0100484 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100485
Johan Hovolda8d78d92019-04-25 18:05:37 +0200486 clear_bit(USB_SERIAL_THROTTLED, &port->flags);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100487
Johan Hovold3f5edd52019-04-25 18:05:36 +0200488 /*
489 * Matches the smp_mb__after_atomic() in
490 * usb_serial_generic_read_bulk_callback().
491 */
Johan Hovold32553442020-01-30 11:06:58 +0100492 smp_mb__after_atomic();
Johan Hovold3f5edd52019-04-25 18:05:36 +0200493
Johan Hovolda8d78d92019-04-25 18:05:37 +0200494 usb_serial_generic_submit_read_urbs(port, GFP_KERNEL);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100495}
Johan Hovoldf1e949a2010-03-17 23:05:59 +0100496EXPORT_SYMBOL_GPL(usb_serial_generic_unthrottle);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100497
Johan Hovold980373b2013-03-21 12:36:52 +0100498static bool usb_serial_generic_msr_changed(struct tty_struct *tty,
499 unsigned long arg, struct async_icount *cprev)
500{
501 struct usb_serial_port *port = tty->driver_data;
502 struct async_icount cnow;
503 unsigned long flags;
504 bool ret;
505
506 /*
507 * Use tty-port initialised flag to detect all hangups including the
508 * one generated at USB-device disconnect.
Johan Hovold980373b2013-03-21 12:36:52 +0100509 */
Peter Hurleyd41861c2016-04-09 17:53:25 -0700510 if (!tty_port_initialized(&port->port))
Johan Hovold980373b2013-03-21 12:36:52 +0100511 return true;
512
513 spin_lock_irqsave(&port->lock, flags);
514 cnow = port->icount; /* atomic copy*/
515 spin_unlock_irqrestore(&port->lock, flags);
516
517 ret = ((arg & TIOCM_RNG) && (cnow.rng != cprev->rng)) ||
518 ((arg & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) ||
519 ((arg & TIOCM_CD) && (cnow.dcd != cprev->dcd)) ||
520 ((arg & TIOCM_CTS) && (cnow.cts != cprev->cts));
521
522 *cprev = cnow;
523
524 return ret;
525}
526
527int usb_serial_generic_tiocmiwait(struct tty_struct *tty, unsigned long arg)
528{
529 struct usb_serial_port *port = tty->driver_data;
530 struct async_icount cnow;
531 unsigned long flags;
532 int ret;
533
534 spin_lock_irqsave(&port->lock, flags);
535 cnow = port->icount; /* atomic copy */
536 spin_unlock_irqrestore(&port->lock, flags);
537
538 ret = wait_event_interruptible(port->port.delta_msr_wait,
539 usb_serial_generic_msr_changed(tty, arg, &cnow));
Peter Hurleyd41861c2016-04-09 17:53:25 -0700540 if (!ret && !tty_port_initialized(&port->port))
Johan Hovold91c42112013-06-26 16:47:21 +0200541 ret = -EIO;
Johan Hovold980373b2013-03-21 12:36:52 +0100542
543 return ret;
544}
545EXPORT_SYMBOL_GPL(usb_serial_generic_tiocmiwait);
546
Johan Hovoldbefefcd2013-03-21 12:36:54 +0100547int usb_serial_generic_get_icount(struct tty_struct *tty,
548 struct serial_icounter_struct *icount)
549{
550 struct usb_serial_port *port = tty->driver_data;
551 struct async_icount cnow;
552 unsigned long flags;
553
554 spin_lock_irqsave(&port->lock, flags);
555 cnow = port->icount; /* atomic copy */
556 spin_unlock_irqrestore(&port->lock, flags);
557
558 icount->cts = cnow.cts;
559 icount->dsr = cnow.dsr;
560 icount->rng = cnow.rng;
561 icount->dcd = cnow.dcd;
562 icount->tx = cnow.tx;
563 icount->rx = cnow.rx;
564 icount->frame = cnow.frame;
565 icount->parity = cnow.parity;
566 icount->overrun = cnow.overrun;
567 icount->brk = cnow.brk;
568 icount->buf_overrun = cnow.buf_overrun;
569
570 return 0;
571}
572EXPORT_SYMBOL_GPL(usb_serial_generic_get_icount);
573
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700574#ifdef CONFIG_MAGIC_SYSRQ
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700575int usb_serial_handle_sysrq_char(struct usb_serial_port *port, unsigned int ch)
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500576{
Jason Wesselbd5afa92010-03-08 21:50:12 -0600577 if (port->sysrq && port->port.console) {
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500578 if (ch && time_before(jiffies, port->sysrq)) {
Dmitry Torokhovf3353972010-08-17 21:15:47 -0700579 handle_sysrq(ch);
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500580 port->sysrq = 0;
581 return 1;
582 }
583 port->sysrq = 0;
584 }
585 return 0;
586}
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700587#else
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700588int usb_serial_handle_sysrq_char(struct usb_serial_port *port, unsigned int ch)
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700589{
590 return 0;
591}
592#endif
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500593EXPORT_SYMBOL_GPL(usb_serial_handle_sysrq_char);
594
595int usb_serial_handle_break(struct usb_serial_port *port)
596{
597 if (!port->sysrq) {
598 port->sysrq = jiffies + HZ*5;
599 return 1;
600 }
601 port->sysrq = 0;
602 return 0;
603}
604EXPORT_SYMBOL_GPL(usb_serial_handle_break);
605
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100606/**
Johan Hovold92ad2472013-10-09 17:01:10 +0200607 * usb_serial_handle_dcd_change - handle a change of carrier detect state
608 * @port: usb-serial port
609 * @tty: tty for the port
610 * @status: new carrier detect status, nonzero if active
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100611 */
Johan Hovold5e95dbb2020-02-25 11:24:20 +0100612void usb_serial_handle_dcd_change(struct usb_serial_port *port,
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100613 struct tty_struct *tty, unsigned int status)
614{
Johan Hovold5e95dbb2020-02-25 11:24:20 +0100615 dev_dbg(&port->dev, "%s - status %d\n", __func__, status);
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100616
Paul Chavent833efc02013-09-16 08:41:00 +0200617 if (tty) {
618 struct tty_ldisc *ld = tty_ldisc_ref(tty);
619
620 if (ld) {
621 if (ld->ops->dcd_change)
622 ld->ops->dcd_change(tty, status);
623 tty_ldisc_deref(ld);
624 }
625 }
626
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100627 if (status)
Johan Hovold5e95dbb2020-02-25 11:24:20 +0100628 wake_up_interruptible(&port->port.open_wait);
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100629 else if (tty && !C_CLOCAL(tty))
630 tty_hangup(tty);
631}
632EXPORT_SYMBOL_GPL(usb_serial_handle_dcd_change);
633
David VomLehn8e8dce02009-08-28 12:54:27 -0700634int usb_serial_generic_resume(struct usb_serial *serial)
635{
636 struct usb_serial_port *port;
637 int i, c = 0, r;
638
639 for (i = 0; i < serial->num_ports; i++) {
640 port = serial->port[i];
Peter Hurleyd41861c2016-04-09 17:53:25 -0700641 if (!tty_port_initialized(&port->port))
David VomLehn8e8dce02009-08-28 12:54:27 -0700642 continue;
643
Johan Hovoldd83b4052011-11-06 19:06:37 +0100644 if (port->bulk_in_size) {
645 r = usb_serial_generic_submit_read_urbs(port,
646 GFP_NOIO);
David VomLehn8e8dce02009-08-28 12:54:27 -0700647 if (r < 0)
648 c++;
649 }
650
Johan Hovold27c7acf2010-05-05 23:57:37 +0200651 if (port->bulk_out_size) {
Johan Hovold818f6032013-10-09 17:01:11 +0200652 r = usb_serial_generic_write_start(port, GFP_NOIO);
David VomLehn8e8dce02009-08-28 12:54:27 -0700653 if (r < 0)
654 c++;
655 }
656 }
657
658 return c ? -EIO : 0;
659}
660EXPORT_SYMBOL_GPL(usb_serial_generic_resume);