blob: ae8c0365abd6a8c46cbac05943574751360ca175 [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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/kernel.h>
13#include <linux/errno.h>
14#include <linux/slab.h>
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -070015#include <linux/sysrq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/tty.h>
17#include <linux/tty_flip.h>
18#include <linux/module.h>
19#include <linux/moduleparam.h>
20#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070021#include <linux/usb/serial.h>
Alan Coxae643872008-07-22 11:11:55 +010022#include <linux/uaccess.h>
David VomLehn8e8dce02009-08-28 12:54:27 -070023#include <linux/kfifo.h>
Alan Stern1f871582010-02-17 10:05:47 -050024#include <linux/serial.h>
Johannes Hölzld9b1b782006-12-17 21:50:24 +010025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#ifdef CONFIG_USB_SERIAL_GENERIC
David Brownellb46d60f2007-03-23 12:51:55 -070027
Linus Torvalds1da177e2005-04-16 15:20:36 -070028static __u16 vendor = 0x05f9;
29static __u16 product = 0xffff;
30
31module_param(vendor, ushort, 0);
32MODULE_PARM_DESC(vendor, "User specified USB idVendor");
33
34module_param(product, ushort, 0);
35MODULE_PARM_DESC(product, "User specified USB idProduct");
36
37static struct usb_device_id generic_device_ids[2]; /* Initially all zeroes. */
38
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -070039struct usb_serial_driver usb_serial_generic_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070040 .driver = {
41 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070042 .name = "generic",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070043 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 .id_table = generic_device_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 .num_ports = 1,
Joris van Rantwijk253ca922007-02-01 20:08:18 +010046 .throttle = usb_serial_generic_throttle,
47 .unthrottle = usb_serial_generic_unthrottle,
Oliver Neukumec225592007-04-27 20:54:57 +020048 .resume = usb_serial_generic_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -070049};
50
Alan Stern765e0ba2012-02-23 14:55:59 -050051static struct usb_serial_driver * const serial_drivers[] = {
52 &usb_serial_generic_device, NULL
53};
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#endif
56
Greg Kroah-Hartman3033bc82012-09-18 16:05:17 +010057int usb_serial_generic_register(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
59 int retval = 0;
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#ifdef CONFIG_USB_SERIAL_GENERIC
62 generic_device_ids[0].idVendor = vendor;
63 generic_device_ids[0].idProduct = product;
Alan Coxae643872008-07-22 11:11:55 +010064 generic_device_ids[0].match_flags =
65 USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_PRODUCT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Alan Stern0b847042012-05-31 17:03:52 -040067 retval = usb_serial_register_drivers(serial_drivers,
68 "usbserial_generic", generic_device_ids);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#endif
70 return retval;
71}
72
Alan Coxae643872008-07-22 11:11:55 +010073void usb_serial_generic_deregister(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
75#ifdef CONFIG_USB_SERIAL_GENERIC
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -070076 usb_serial_deregister_drivers(serial_drivers);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#endif
78}
79
Alan Coxa509a7e2009-09-19 13:13:26 -070080int usb_serial_generic_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 int result = 0;
Joris van Rantwijk253ca922007-02-01 20:08:18 +010083 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Joris van Rantwijk253ca922007-02-01 20:08:18 +010085 spin_lock_irqsave(&port->lock, flags);
86 port->throttled = 0;
87 port->throttle_req = 0;
88 spin_unlock_irqrestore(&port->lock, flags);
89
Johan Hovold41bd72f2010-03-17 23:05:53 +010090 if (port->bulk_in_size)
Johan Hovoldd83b4052011-11-06 19:06:37 +010091 result = usb_serial_generic_submit_read_urbs(port, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 return result;
94}
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -070095EXPORT_SYMBOL_GPL(usb_serial_generic_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Johan Hovoldf8f0ad82013-03-21 12:36:41 +010097void usb_serial_generic_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
Johan Hovoldec3ee502010-03-17 23:00:44 +010099 unsigned long flags;
Johan Hovold27c7acf2010-05-05 23:57:37 +0200100 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Johan Hovold19c61852013-03-21 12:36:38 +0100102 if (port->bulk_out_size) {
103 for (i = 0; i < ARRAY_SIZE(port->write_urbs); ++i)
104 usb_kill_urb(port->write_urbs[i]);
Johan Hovoldec3ee502010-03-17 23:00:44 +0100105
Johan Hovold19c61852013-03-21 12:36:38 +0100106 spin_lock_irqsave(&port->lock, flags);
107 kfifo_reset_out(&port->write_fifo);
108 spin_unlock_irqrestore(&port->lock, flags);
109 }
110 if (port->bulk_in_size) {
111 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i)
112 usb_kill_urb(port->read_urbs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 }
114}
Johan Hovoldf26788d2010-03-17 23:00:45 +0100115EXPORT_SYMBOL_GPL(usb_serial_generic_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Johan Hovoldeaa3bcb2010-03-17 23:06:08 +0100117int usb_serial_generic_prepare_write_buffer(struct usb_serial_port *port,
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200118 void *dest, size_t size)
Johan Hovoldeaa3bcb2010-03-17 23:06:08 +0100119{
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200120 return kfifo_out_locked(&port->write_fifo, dest, size, &port->lock);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500121}
122
David VomLehn8e8dce02009-08-28 12:54:27 -0700123/**
Johan Hovold92ad2472013-10-09 17:01:10 +0200124 * usb_serial_generic_write_start - start writing buffered data
125 * @port: usb-serial port
Johan Hovold818f6032013-10-09 17:01:11 +0200126 * @mem_flags: flags to use for memory allocations
David VomLehn8e8dce02009-08-28 12:54:27 -0700127 *
Johan Hovold92ad2472013-10-09 17:01:10 +0200128 * Serialised using USB_SERIAL_WRITE_BUSY flag.
129 *
130 * Return: Zero on success or if busy, otherwise a negative errno value.
David VomLehn8e8dce02009-08-28 12:54:27 -0700131 */
Johan Hovold706cd172013-10-09 17:01:12 +0200132int usb_serial_generic_write_start(struct usb_serial_port *port,
Johan Hovold818f6032013-10-09 17:01:11 +0200133 gfp_t mem_flags)
David VomLehn8e8dce02009-08-28 12:54:27 -0700134{
Johan Hovold27c7acf2010-05-05 23:57:37 +0200135 struct urb *urb;
136 int count, result;
David VomLehn8e8dce02009-08-28 12:54:27 -0700137 unsigned long flags;
Johan Hovold27c7acf2010-05-05 23:57:37 +0200138 int i;
David VomLehn8e8dce02009-08-28 12:54:27 -0700139
Johan Hovold27c7acf2010-05-05 23:57:37 +0200140 if (test_and_set_bit_lock(USB_SERIAL_WRITE_BUSY, &port->flags))
141 return 0;
142retry:
David VomLehn8e8dce02009-08-28 12:54:27 -0700143 spin_lock_irqsave(&port->lock, flags);
Johan Hovold27c7acf2010-05-05 23:57:37 +0200144 if (!port->write_urbs_free || !kfifo_len(&port->write_fifo)) {
145 clear_bit_unlock(USB_SERIAL_WRITE_BUSY, &port->flags);
Johan Hovold50a5f702010-03-17 23:06:02 +0100146 spin_unlock_irqrestore(&port->lock, flags);
David VomLehn8e8dce02009-08-28 12:54:27 -0700147 return 0;
Johan Hovold50a5f702010-03-17 23:06:02 +0100148 }
Johan Hovold27c7acf2010-05-05 23:57:37 +0200149 i = (int)find_first_bit(&port->write_urbs_free,
150 ARRAY_SIZE(port->write_urbs));
Johan Hovold50a5f702010-03-17 23:06:02 +0100151 spin_unlock_irqrestore(&port->lock, flags);
David VomLehn8e8dce02009-08-28 12:54:27 -0700152
Johan Hovold27c7acf2010-05-05 23:57:37 +0200153 urb = port->write_urbs[i];
Johan Hovoldeaa3bcb2010-03-17 23:06:08 +0100154 count = port->serial->type->prepare_write_buffer(port,
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200155 urb->transfer_buffer,
156 port->bulk_out_size);
Johan Hovold27c7acf2010-05-05 23:57:37 +0200157 urb->transfer_buffer_length = count;
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100158 usb_serial_debug_data(&port->dev, __func__, count, urb->transfer_buffer);
Johan Hovoldb58af402010-08-04 15:45:57 +0200159 spin_lock_irqsave(&port->lock, flags);
160 port->tx_bytes += count;
161 spin_unlock_irqrestore(&port->lock, flags);
162
163 clear_bit(i, &port->write_urbs_free);
Johan Hovold818f6032013-10-09 17:01:11 +0200164 result = usb_submit_urb(urb, mem_flags);
David VomLehn8e8dce02009-08-28 12:54:27 -0700165 if (result) {
Johan Hovoldf1475a02012-02-10 13:20:50 +0100166 dev_err_console(port, "%s - error submitting urb: %d\n",
David VomLehn8e8dce02009-08-28 12:54:27 -0700167 __func__, result);
Johan Hovoldb58af402010-08-04 15:45:57 +0200168 set_bit(i, &port->write_urbs_free);
169 spin_lock_irqsave(&port->lock, flags);
170 port->tx_bytes -= count;
171 spin_unlock_irqrestore(&port->lock, flags);
172
Johan Hovold27c7acf2010-05-05 23:57:37 +0200173 clear_bit_unlock(USB_SERIAL_WRITE_BUSY, &port->flags);
Johan Hovold30af7fb2010-03-17 23:00:42 +0100174 return result;
175 }
Johan Hovold27c7acf2010-05-05 23:57:37 +0200176
Johan Hovold6f648542013-11-09 12:38:09 +0100177 goto retry; /* try sending off another urb */
David VomLehn8e8dce02009-08-28 12:54:27 -0700178}
Johan Hovold706cd172013-10-09 17:01:12 +0200179EXPORT_SYMBOL_GPL(usb_serial_generic_write_start);
David VomLehn8e8dce02009-08-28 12:54:27 -0700180
181/**
Johan Hovold92ad2472013-10-09 17:01:10 +0200182 * usb_serial_generic_write - generic write function
183 * @tty: tty for the port
184 * @port: usb-serial port
185 * @buf: data to write
186 * @count: number of bytes to write
David VomLehn8e8dce02009-08-28 12:54:27 -0700187 *
Johan Hovold92ad2472013-10-09 17:01:10 +0200188 * Return: The number of characters buffered, which may be anything from
189 * zero to @count, or a negative errno value.
David VomLehn8e8dce02009-08-28 12:54:27 -0700190 */
Alan Cox95da3102008-07-22 11:09:07 +0100191int usb_serial_generic_write(struct tty_struct *tty,
192 struct usb_serial_port *port, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100196 if (!port->bulk_out_size)
197 return -ENODEV;
198
Johan Hovold1a1405e2010-03-17 23:06:01 +0100199 if (!count)
Alan Coxae643872008-07-22 11:11:55 +0100200 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Stefani Seibold119eecc2009-12-23 09:10:48 +0100202 count = kfifo_in_locked(&port->write_fifo, buf, count, &port->lock);
Johan Hovold043e3f82013-11-09 12:38:10 +0100203 result = usb_serial_generic_write_start(port, GFP_ATOMIC);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200204 if (result)
205 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200207 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208}
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500209EXPORT_SYMBOL_GPL(usb_serial_generic_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Alan Coxae643872008-07-22 11:11:55 +0100211int usb_serial_generic_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
Alan Cox95da3102008-07-22 11:09:07 +0100213 struct usb_serial_port *port = tty->driver_data;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500214 unsigned long flags;
Johan Hovold25d514c2010-03-17 23:06:07 +0100215 int room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100217 if (!port->bulk_out_size)
218 return 0;
219
Jason Wessel715b1dc2009-05-11 15:24:07 -0500220 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200221 room = kfifo_avail(&port->write_fifo);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500222 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700224 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room);
Alan Coxa5b6f602008-04-08 17:16:06 +0100225 return room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
227
Alan Cox95da3102008-07-22 11:09:07 +0100228int usb_serial_generic_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
Alan Cox95da3102008-07-22 11:09:07 +0100230 struct usb_serial_port *port = tty->driver_data;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500231 unsigned long flags;
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100232 int chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100234 if (!port->bulk_out_size)
235 return 0;
236
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100237 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200238 chars = kfifo_len(&port->write_fifo) + port->tx_bytes;
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100239 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700241 dev_dbg(&port->dev, "%s - returns %d\n", __func__, chars);
Alan Cox95da3102008-07-22 11:09:07 +0100242 return chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
Johan Hovold428d9982012-10-29 10:56:25 +0100244EXPORT_SYMBOL_GPL(usb_serial_generic_chars_in_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Johan Hovolddcf01052013-05-08 17:51:43 +0200246void usb_serial_generic_wait_until_sent(struct tty_struct *tty, long timeout)
247{
248 struct usb_serial_port *port = tty->driver_data;
249 unsigned int bps;
250 unsigned long period;
251 unsigned long expire;
252
253 bps = tty_get_baud_rate(tty);
254 if (!bps)
255 bps = 9600; /* B0 */
256 /*
257 * Use a poll-period of roughly the time it takes to send one
258 * character or at least one jiffy.
259 */
260 period = max_t(unsigned long, (10 * HZ / bps), 1);
Johan Hovoldf528bf42015-03-04 10:39:05 +0100261 if (timeout)
262 period = min_t(unsigned long, period, timeout);
Johan Hovolddcf01052013-05-08 17:51:43 +0200263
264 dev_dbg(&port->dev, "%s - timeout = %u ms, period = %u ms\n",
265 __func__, jiffies_to_msecs(timeout),
266 jiffies_to_msecs(period));
267 expire = jiffies + timeout;
268 while (!port->serial->type->tx_empty(port)) {
269 schedule_timeout_interruptible(period);
270 if (signal_pending(current))
271 break;
Johan Hovoldf528bf42015-03-04 10:39:05 +0100272 if (timeout && time_after(jiffies, expire))
Johan Hovolddcf01052013-05-08 17:51:43 +0200273 break;
274 }
275}
276EXPORT_SYMBOL_GPL(usb_serial_generic_wait_until_sent);
277
Johan Hovoldd83b4052011-11-06 19:06:37 +0100278static int usb_serial_generic_submit_read_urb(struct usb_serial_port *port,
279 int index, gfp_t mem_flags)
280{
281 int res;
282
283 if (!test_and_clear_bit(index, &port->read_urbs_free))
284 return 0;
285
Johan Hovold49bd1962013-03-21 12:36:27 +0100286 dev_dbg(&port->dev, "%s - urb %d\n", __func__, index);
Johan Hovoldd83b4052011-11-06 19:06:37 +0100287
288 res = usb_submit_urb(port->read_urbs[index], mem_flags);
289 if (res) {
Jeremiah Mahler04f9c6e2015-01-11 05:42:07 -0800290 if (res != -EPERM && res != -ENODEV) {
Johan Hovoldd83b4052011-11-06 19:06:37 +0100291 dev_err(&port->dev,
292 "%s - usb_submit_urb failed: %d\n",
293 __func__, res);
294 }
295 set_bit(index, &port->read_urbs_free);
296 return res;
297 }
298
299 return 0;
300}
301
302int usb_serial_generic_submit_read_urbs(struct usb_serial_port *port,
Johan Hovold41bd72f2010-03-17 23:05:53 +0100303 gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
Johan Hovoldd83b4052011-11-06 19:06:37 +0100305 int res;
306 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Johan Hovoldd83b4052011-11-06 19:06:37 +0100308 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i) {
309 res = usb_serial_generic_submit_read_urb(port, i, mem_flags);
310 if (res)
311 goto err;
Johan Hovold0ae14742010-02-27 14:05:46 +0100312 }
Johan Hovoldd83b4052011-11-06 19:06:37 +0100313
314 return 0;
315err:
316 for (; i >= 0; --i)
317 usb_kill_urb(port->read_urbs[i]);
318
319 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
Johan Hovoldd83b4052011-11-06 19:06:37 +0100321EXPORT_SYMBOL_GPL(usb_serial_generic_submit_read_urbs);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100322
Johan Hovold23154322010-03-17 23:05:57 +0100323void usb_serial_generic_process_read_urb(struct urb *urb)
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200324{
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100325 struct usb_serial_port *port = urb->context;
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500326 char *ch = (char *)urb->transfer_buffer;
327 int i;
328
Johan Hovold56a1df42010-05-15 17:53:44 +0200329 if (!urb->actual_length)
330 return;
Johan Hovold92ad2472013-10-09 17:01:10 +0200331 /*
332 * The per character mucking around with sysrq path it too slow for
333 * stuff like 3G modems, so shortcircuit it in the 99.9999999% of
334 * cases where the USB serial is not a console anyway.
335 */
Johan Hovoldca0400d2014-03-12 19:09:41 +0100336 if (!port->port.console || !port->sysrq) {
Jiri Slaby05c7cd32013-01-03 15:53:04 +0100337 tty_insert_flip_string(&port->port, ch, urb->actual_length);
Johan Hovoldca0400d2014-03-12 19:09:41 +0100338 } else {
Alan Cox4cd1de0a2009-07-09 13:35:52 +0100339 for (i = 0; i < urb->actual_length; i++, ch++) {
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700340 if (!usb_serial_handle_sysrq_char(port, *ch))
Jiri Slaby92a19f92013-01-03 15:53:03 +0100341 tty_insert_flip_char(&port->port, *ch, TTY_NORMAL);
Alan Cox4cd1de0a2009-07-09 13:35:52 +0100342 }
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200343 }
Jiri Slaby2e124b42013-01-03 15:53:06 +0100344 tty_flip_buffer_push(&port->port);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200345}
Johan Hovold23154322010-03-17 23:05:57 +0100346EXPORT_SYMBOL_GPL(usb_serial_generic_process_read_urb);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200347
Alan Cox95da3102008-07-22 11:09:07 +0100348void usb_serial_generic_read_bulk_callback(struct urb *urb)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100349{
Ming Leicdc97792008-02-24 18:41:47 +0800350 struct usb_serial_port *port = urb->context;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100351 unsigned char *data = urb->transfer_buffer;
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100352 unsigned long flags;
Johan Hovoldd83b4052011-11-06 19:06:37 +0100353 int i;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100354
Johan Hovoldd83b4052011-11-06 19:06:37 +0100355 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i) {
356 if (urb == port->read_urbs[i])
357 break;
358 }
359 set_bit(i, &port->read_urbs_free);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100360
Johan Hovold49bd1962013-03-21 12:36:27 +0100361 dev_dbg(&port->dev, "%s - urb %d, len %d\n", __func__, i,
362 urb->actual_length);
Johan Hovoldfc11efe2014-03-12 19:09:39 +0100363 switch (urb->status) {
364 case 0:
365 break;
366 case -ENOENT:
367 case -ECONNRESET:
368 case -ESHUTDOWN:
369 dev_dbg(&port->dev, "%s - urb stopped: %d\n",
370 __func__, urb->status);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100371 return;
Johan Hovoldfc11efe2014-03-12 19:09:39 +0100372 case -EPIPE:
373 dev_err(&port->dev, "%s - urb stopped: %d\n",
374 __func__, urb->status);
375 return;
376 default:
Jeremiah Mahleraa8e2212015-01-11 05:42:06 -0800377 dev_dbg(&port->dev, "%s - nonzero urb status: %d\n",
Johan Hovoldfc11efe2014-03-12 19:09:39 +0100378 __func__, urb->status);
379 goto resubmit;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100380 }
381
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100382 usb_serial_debug_data(&port->dev, __func__, urb->actual_length, data);
Johan Hovold23154322010-03-17 23:05:57 +0100383 port->serial->type->process_read_urb(urb);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100384
Johan Hovoldfc11efe2014-03-12 19:09:39 +0100385resubmit:
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100386 /* Throttle the device if requested by tty */
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100387 spin_lock_irqsave(&port->lock, flags);
Alan Coxae643872008-07-22 11:11:55 +0100388 port->throttled = port->throttle_req;
389 if (!port->throttled) {
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800390 spin_unlock_irqrestore(&port->lock, flags);
Johan Hovoldd83b4052011-11-06 19:06:37 +0100391 usb_serial_generic_submit_read_urb(port, i, GFP_ATOMIC);
Johan Hovoldca0400d2014-03-12 19:09:41 +0100392 } else {
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800393 spin_unlock_irqrestore(&port->lock, flags);
Johan Hovoldca0400d2014-03-12 19:09:41 +0100394 }
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100395}
Luiz Fernando N. Capitulino166ffcc2006-07-11 14:19:25 -0300396EXPORT_SYMBOL_GPL(usb_serial_generic_read_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Alan Cox95da3102008-07-22 11:09:07 +0100398void usb_serial_generic_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
Jason Wessel715b1dc2009-05-11 15:24:07 -0500400 unsigned long flags;
Ming Leicdc97792008-02-24 18:41:47 +0800401 struct usb_serial_port *port = urb->context;
Johan Hovold27c7acf2010-05-05 23:57:37 +0200402 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Johan Hovoldca0400d2014-03-12 19:09:41 +0100404 for (i = 0; i < ARRAY_SIZE(port->write_urbs); ++i) {
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200405 if (port->write_urbs[i] == urb)
406 break;
Johan Hovoldca0400d2014-03-12 19:09:41 +0100407 }
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200408 spin_lock_irqsave(&port->lock, flags);
409 port->tx_bytes -= urb->transfer_buffer_length;
410 set_bit(i, &port->write_urbs_free);
411 spin_unlock_irqrestore(&port->lock, flags);
412
Johan Hovoldbd58c7b2014-03-12 19:09:40 +0100413 switch (urb->status) {
414 case 0:
415 break;
416 case -ENOENT:
417 case -ECONNRESET:
418 case -ESHUTDOWN:
419 dev_dbg(&port->dev, "%s - urb stopped: %d\n",
420 __func__, urb->status);
421 return;
422 case -EPIPE:
423 dev_err_console(port, "%s - urb stopped: %d\n",
424 __func__, urb->status);
425 return;
426 default:
427 dev_err_console(port, "%s - nonzero urb status: %d\n",
428 __func__, urb->status);
429 goto resubmit;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500430 }
431
Johan Hovoldbd58c7b2014-03-12 19:09:40 +0100432resubmit:
433 usb_serial_generic_write_start(port, GFP_ATOMIC);
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700434 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435}
Greg Kroah-Hartmanbb833982005-11-17 09:48:18 -0800436EXPORT_SYMBOL_GPL(usb_serial_generic_write_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Alan Cox95da3102008-07-22 11:09:07 +0100438void usb_serial_generic_throttle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100439{
Alan Cox95da3102008-07-22 11:09:07 +0100440 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100441 unsigned long flags;
442
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100443 spin_lock_irqsave(&port->lock, flags);
444 port->throttle_req = 1;
445 spin_unlock_irqrestore(&port->lock, flags);
446}
Johan Hovoldf1e949a2010-03-17 23:05:59 +0100447EXPORT_SYMBOL_GPL(usb_serial_generic_throttle);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100448
Alan Cox95da3102008-07-22 11:09:07 +0100449void usb_serial_generic_unthrottle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100450{
Alan Cox95da3102008-07-22 11:09:07 +0100451 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100452 int was_throttled;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100453
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100454 spin_lock_irq(&port->lock);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100455 was_throttled = port->throttled;
456 port->throttled = port->throttle_req = 0;
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100457 spin_unlock_irq(&port->lock);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100458
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100459 if (was_throttled)
Johan Hovoldd83b4052011-11-06 19:06:37 +0100460 usb_serial_generic_submit_read_urbs(port, GFP_KERNEL);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100461}
Johan Hovoldf1e949a2010-03-17 23:05:59 +0100462EXPORT_SYMBOL_GPL(usb_serial_generic_unthrottle);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100463
Johan Hovold980373b2013-03-21 12:36:52 +0100464static bool usb_serial_generic_msr_changed(struct tty_struct *tty,
465 unsigned long arg, struct async_icount *cprev)
466{
467 struct usb_serial_port *port = tty->driver_data;
468 struct async_icount cnow;
469 unsigned long flags;
470 bool ret;
471
472 /*
473 * Use tty-port initialised flag to detect all hangups including the
474 * one generated at USB-device disconnect.
Johan Hovold980373b2013-03-21 12:36:52 +0100475 */
Peter Hurleyd41861c2016-04-09 17:53:25 -0700476 if (!tty_port_initialized(&port->port))
Johan Hovold980373b2013-03-21 12:36:52 +0100477 return true;
478
479 spin_lock_irqsave(&port->lock, flags);
480 cnow = port->icount; /* atomic copy*/
481 spin_unlock_irqrestore(&port->lock, flags);
482
483 ret = ((arg & TIOCM_RNG) && (cnow.rng != cprev->rng)) ||
484 ((arg & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) ||
485 ((arg & TIOCM_CD) && (cnow.dcd != cprev->dcd)) ||
486 ((arg & TIOCM_CTS) && (cnow.cts != cprev->cts));
487
488 *cprev = cnow;
489
490 return ret;
491}
492
493int usb_serial_generic_tiocmiwait(struct tty_struct *tty, unsigned long arg)
494{
495 struct usb_serial_port *port = tty->driver_data;
496 struct async_icount cnow;
497 unsigned long flags;
498 int ret;
499
500 spin_lock_irqsave(&port->lock, flags);
501 cnow = port->icount; /* atomic copy */
502 spin_unlock_irqrestore(&port->lock, flags);
503
504 ret = wait_event_interruptible(port->port.delta_msr_wait,
505 usb_serial_generic_msr_changed(tty, arg, &cnow));
Peter Hurleyd41861c2016-04-09 17:53:25 -0700506 if (!ret && !tty_port_initialized(&port->port))
Johan Hovold91c42112013-06-26 16:47:21 +0200507 ret = -EIO;
Johan Hovold980373b2013-03-21 12:36:52 +0100508
509 return ret;
510}
511EXPORT_SYMBOL_GPL(usb_serial_generic_tiocmiwait);
512
Johan Hovoldbefefcd2013-03-21 12:36:54 +0100513int usb_serial_generic_get_icount(struct tty_struct *tty,
514 struct serial_icounter_struct *icount)
515{
516 struct usb_serial_port *port = tty->driver_data;
517 struct async_icount cnow;
518 unsigned long flags;
519
520 spin_lock_irqsave(&port->lock, flags);
521 cnow = port->icount; /* atomic copy */
522 spin_unlock_irqrestore(&port->lock, flags);
523
524 icount->cts = cnow.cts;
525 icount->dsr = cnow.dsr;
526 icount->rng = cnow.rng;
527 icount->dcd = cnow.dcd;
528 icount->tx = cnow.tx;
529 icount->rx = cnow.rx;
530 icount->frame = cnow.frame;
531 icount->parity = cnow.parity;
532 icount->overrun = cnow.overrun;
533 icount->brk = cnow.brk;
534 icount->buf_overrun = cnow.buf_overrun;
535
536 return 0;
537}
538EXPORT_SYMBOL_GPL(usb_serial_generic_get_icount);
539
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700540#ifdef CONFIG_MAGIC_SYSRQ
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700541int usb_serial_handle_sysrq_char(struct usb_serial_port *port, unsigned int ch)
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500542{
Jason Wesselbd5afa92010-03-08 21:50:12 -0600543 if (port->sysrq && port->port.console) {
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500544 if (ch && time_before(jiffies, port->sysrq)) {
Dmitry Torokhovf3353972010-08-17 21:15:47 -0700545 handle_sysrq(ch);
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500546 port->sysrq = 0;
547 return 1;
548 }
549 port->sysrq = 0;
550 }
551 return 0;
552}
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700553#else
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700554int usb_serial_handle_sysrq_char(struct usb_serial_port *port, unsigned int ch)
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700555{
556 return 0;
557}
558#endif
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500559EXPORT_SYMBOL_GPL(usb_serial_handle_sysrq_char);
560
561int usb_serial_handle_break(struct usb_serial_port *port)
562{
563 if (!port->sysrq) {
564 port->sysrq = jiffies + HZ*5;
565 return 1;
566 }
567 port->sysrq = 0;
568 return 0;
569}
570EXPORT_SYMBOL_GPL(usb_serial_handle_break);
571
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100572/**
Johan Hovold92ad2472013-10-09 17:01:10 +0200573 * usb_serial_handle_dcd_change - handle a change of carrier detect state
574 * @port: usb-serial port
575 * @tty: tty for the port
576 * @status: new carrier detect status, nonzero if active
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100577 */
578void usb_serial_handle_dcd_change(struct usb_serial_port *usb_port,
579 struct tty_struct *tty, unsigned int status)
580{
581 struct tty_port *port = &usb_port->port;
582
Johan Hovold49bd1962013-03-21 12:36:27 +0100583 dev_dbg(&usb_port->dev, "%s - status %d\n", __func__, status);
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100584
Paul Chavent833efc02013-09-16 08:41:00 +0200585 if (tty) {
586 struct tty_ldisc *ld = tty_ldisc_ref(tty);
587
588 if (ld) {
589 if (ld->ops->dcd_change)
590 ld->ops->dcd_change(tty, status);
591 tty_ldisc_deref(ld);
592 }
593 }
594
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100595 if (status)
596 wake_up_interruptible(&port->open_wait);
597 else if (tty && !C_CLOCAL(tty))
598 tty_hangup(tty);
599}
600EXPORT_SYMBOL_GPL(usb_serial_handle_dcd_change);
601
David VomLehn8e8dce02009-08-28 12:54:27 -0700602int usb_serial_generic_resume(struct usb_serial *serial)
603{
604 struct usb_serial_port *port;
605 int i, c = 0, r;
606
607 for (i = 0; i < serial->num_ports; i++) {
608 port = serial->port[i];
Peter Hurleyd41861c2016-04-09 17:53:25 -0700609 if (!tty_port_initialized(&port->port))
David VomLehn8e8dce02009-08-28 12:54:27 -0700610 continue;
611
Johan Hovoldd83b4052011-11-06 19:06:37 +0100612 if (port->bulk_in_size) {
613 r = usb_serial_generic_submit_read_urbs(port,
614 GFP_NOIO);
David VomLehn8e8dce02009-08-28 12:54:27 -0700615 if (r < 0)
616 c++;
617 }
618
Johan Hovold27c7acf2010-05-05 23:57:37 +0200619 if (port->bulk_out_size) {
Johan Hovold818f6032013-10-09 17:01:11 +0200620 r = usb_serial_generic_write_start(port, GFP_NOIO);
David VomLehn8e8dce02009-08-28 12:54:27 -0700621 if (r < 0)
622 c++;
623 }
624 }
625
626 return c ? -EIO : 0;
627}
628EXPORT_SYMBOL_GPL(usb_serial_generic_resume);