blob: 1bd192290b08df0fb697fa91f2517b6756680012 [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);
261 period = min_t(unsigned long, period, timeout);
262
263 dev_dbg(&port->dev, "%s - timeout = %u ms, period = %u ms\n",
264 __func__, jiffies_to_msecs(timeout),
265 jiffies_to_msecs(period));
266 expire = jiffies + timeout;
267 while (!port->serial->type->tx_empty(port)) {
268 schedule_timeout_interruptible(period);
269 if (signal_pending(current))
270 break;
271 if (time_after(jiffies, expire))
272 break;
273 }
274}
275EXPORT_SYMBOL_GPL(usb_serial_generic_wait_until_sent);
276
Johan Hovoldd83b4052011-11-06 19:06:37 +0100277static int usb_serial_generic_submit_read_urb(struct usb_serial_port *port,
278 int index, gfp_t mem_flags)
279{
280 int res;
281
282 if (!test_and_clear_bit(index, &port->read_urbs_free))
283 return 0;
284
Johan Hovold49bd1962013-03-21 12:36:27 +0100285 dev_dbg(&port->dev, "%s - urb %d\n", __func__, index);
Johan Hovoldd83b4052011-11-06 19:06:37 +0100286
287 res = usb_submit_urb(port->read_urbs[index], mem_flags);
288 if (res) {
289 if (res != -EPERM) {
290 dev_err(&port->dev,
291 "%s - usb_submit_urb failed: %d\n",
292 __func__, res);
293 }
294 set_bit(index, &port->read_urbs_free);
295 return res;
296 }
297
298 return 0;
299}
300
301int usb_serial_generic_submit_read_urbs(struct usb_serial_port *port,
Johan Hovold41bd72f2010-03-17 23:05:53 +0100302 gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Johan Hovoldd83b4052011-11-06 19:06:37 +0100304 int res;
305 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Johan Hovoldd83b4052011-11-06 19:06:37 +0100307 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i) {
308 res = usb_serial_generic_submit_read_urb(port, i, mem_flags);
309 if (res)
310 goto err;
Johan Hovold0ae14742010-02-27 14:05:46 +0100311 }
Johan Hovoldd83b4052011-11-06 19:06:37 +0100312
313 return 0;
314err:
315 for (; i >= 0; --i)
316 usb_kill_urb(port->read_urbs[i]);
317
318 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319}
Johan Hovoldd83b4052011-11-06 19:06:37 +0100320EXPORT_SYMBOL_GPL(usb_serial_generic_submit_read_urbs);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100321
Johan Hovold23154322010-03-17 23:05:57 +0100322void usb_serial_generic_process_read_urb(struct urb *urb)
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200323{
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100324 struct usb_serial_port *port = urb->context;
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500325 char *ch = (char *)urb->transfer_buffer;
326 int i;
327
Johan Hovold56a1df42010-05-15 17:53:44 +0200328 if (!urb->actual_length)
329 return;
Johan Hovold92ad2472013-10-09 17:01:10 +0200330 /*
331 * The per character mucking around with sysrq path it too slow for
332 * stuff like 3G modems, so shortcircuit it in the 99.9999999% of
333 * cases where the USB serial is not a console anyway.
334 */
Johan Hovoldca0400d2014-03-12 19:09:41 +0100335 if (!port->port.console || !port->sysrq) {
Jiri Slaby05c7cd32013-01-03 15:53:04 +0100336 tty_insert_flip_string(&port->port, ch, urb->actual_length);
Johan Hovoldca0400d2014-03-12 19:09:41 +0100337 } else {
Alan Cox4cd1de0a2009-07-09 13:35:52 +0100338 for (i = 0; i < urb->actual_length; i++, ch++) {
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700339 if (!usb_serial_handle_sysrq_char(port, *ch))
Jiri Slaby92a19f92013-01-03 15:53:03 +0100340 tty_insert_flip_char(&port->port, *ch, TTY_NORMAL);
Alan Cox4cd1de0a2009-07-09 13:35:52 +0100341 }
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200342 }
Jiri Slaby2e124b42013-01-03 15:53:06 +0100343 tty_flip_buffer_push(&port->port);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200344}
Johan Hovold23154322010-03-17 23:05:57 +0100345EXPORT_SYMBOL_GPL(usb_serial_generic_process_read_urb);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200346
Alan Cox95da3102008-07-22 11:09:07 +0100347void usb_serial_generic_read_bulk_callback(struct urb *urb)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100348{
Ming Leicdc97792008-02-24 18:41:47 +0800349 struct usb_serial_port *port = urb->context;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100350 unsigned char *data = urb->transfer_buffer;
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100351 unsigned long flags;
Johan Hovoldd83b4052011-11-06 19:06:37 +0100352 int i;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100353
Johan Hovoldd83b4052011-11-06 19:06:37 +0100354 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i) {
355 if (urb == port->read_urbs[i])
356 break;
357 }
358 set_bit(i, &port->read_urbs_free);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100359
Johan Hovold49bd1962013-03-21 12:36:27 +0100360 dev_dbg(&port->dev, "%s - urb %d, len %d\n", __func__, i,
361 urb->actual_length);
Johan Hovoldfc11efe2014-03-12 19:09:39 +0100362 switch (urb->status) {
363 case 0:
364 break;
365 case -ENOENT:
366 case -ECONNRESET:
367 case -ESHUTDOWN:
368 dev_dbg(&port->dev, "%s - urb stopped: %d\n",
369 __func__, urb->status);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100370 return;
Johan Hovoldfc11efe2014-03-12 19:09:39 +0100371 case -EPIPE:
372 dev_err(&port->dev, "%s - urb stopped: %d\n",
373 __func__, urb->status);
374 return;
375 default:
376 dev_err(&port->dev, "%s - nonzero urb status: %d\n",
377 __func__, urb->status);
378 goto resubmit;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100379 }
380
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100381 usb_serial_debug_data(&port->dev, __func__, urb->actual_length, data);
Johan Hovold23154322010-03-17 23:05:57 +0100382 port->serial->type->process_read_urb(urb);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100383
Johan Hovoldfc11efe2014-03-12 19:09:39 +0100384resubmit:
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100385 /* Throttle the device if requested by tty */
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100386 spin_lock_irqsave(&port->lock, flags);
Alan Coxae643872008-07-22 11:11:55 +0100387 port->throttled = port->throttle_req;
388 if (!port->throttled) {
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800389 spin_unlock_irqrestore(&port->lock, flags);
Johan Hovoldd83b4052011-11-06 19:06:37 +0100390 usb_serial_generic_submit_read_urb(port, i, GFP_ATOMIC);
Johan Hovoldca0400d2014-03-12 19:09:41 +0100391 } else {
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800392 spin_unlock_irqrestore(&port->lock, flags);
Johan Hovoldca0400d2014-03-12 19:09:41 +0100393 }
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100394}
Luiz Fernando N. Capitulino166ffcc2006-07-11 14:19:25 -0300395EXPORT_SYMBOL_GPL(usb_serial_generic_read_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Alan Cox95da3102008-07-22 11:09:07 +0100397void usb_serial_generic_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
Jason Wessel715b1dc2009-05-11 15:24:07 -0500399 unsigned long flags;
Ming Leicdc97792008-02-24 18:41:47 +0800400 struct usb_serial_port *port = urb->context;
Johan Hovold27c7acf2010-05-05 23:57:37 +0200401 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Johan Hovoldca0400d2014-03-12 19:09:41 +0100403 for (i = 0; i < ARRAY_SIZE(port->write_urbs); ++i) {
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200404 if (port->write_urbs[i] == urb)
405 break;
Johan Hovoldca0400d2014-03-12 19:09:41 +0100406 }
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200407 spin_lock_irqsave(&port->lock, flags);
408 port->tx_bytes -= urb->transfer_buffer_length;
409 set_bit(i, &port->write_urbs_free);
410 spin_unlock_irqrestore(&port->lock, flags);
411
Johan Hovoldbd58c7b2014-03-12 19:09:40 +0100412 switch (urb->status) {
413 case 0:
414 break;
415 case -ENOENT:
416 case -ECONNRESET:
417 case -ESHUTDOWN:
418 dev_dbg(&port->dev, "%s - urb stopped: %d\n",
419 __func__, urb->status);
420 return;
421 case -EPIPE:
422 dev_err_console(port, "%s - urb stopped: %d\n",
423 __func__, urb->status);
424 return;
425 default:
426 dev_err_console(port, "%s - nonzero urb status: %d\n",
427 __func__, urb->status);
428 goto resubmit;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500429 }
430
Johan Hovoldbd58c7b2014-03-12 19:09:40 +0100431resubmit:
432 usb_serial_generic_write_start(port, GFP_ATOMIC);
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700433 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}
Greg Kroah-Hartmanbb833982005-11-17 09:48:18 -0800435EXPORT_SYMBOL_GPL(usb_serial_generic_write_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Alan Cox95da3102008-07-22 11:09:07 +0100437void usb_serial_generic_throttle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100438{
Alan Cox95da3102008-07-22 11:09:07 +0100439 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100440 unsigned long flags;
441
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100442 spin_lock_irqsave(&port->lock, flags);
443 port->throttle_req = 1;
444 spin_unlock_irqrestore(&port->lock, flags);
445}
Johan Hovoldf1e949a2010-03-17 23:05:59 +0100446EXPORT_SYMBOL_GPL(usb_serial_generic_throttle);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100447
Alan Cox95da3102008-07-22 11:09:07 +0100448void usb_serial_generic_unthrottle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100449{
Alan Cox95da3102008-07-22 11:09:07 +0100450 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100451 int was_throttled;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100452
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100453 spin_lock_irq(&port->lock);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100454 was_throttled = port->throttled;
455 port->throttled = port->throttle_req = 0;
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100456 spin_unlock_irq(&port->lock);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100457
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100458 if (was_throttled)
Johan Hovoldd83b4052011-11-06 19:06:37 +0100459 usb_serial_generic_submit_read_urbs(port, GFP_KERNEL);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100460}
Johan Hovoldf1e949a2010-03-17 23:05:59 +0100461EXPORT_SYMBOL_GPL(usb_serial_generic_unthrottle);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100462
Johan Hovold980373b2013-03-21 12:36:52 +0100463static bool usb_serial_generic_msr_changed(struct tty_struct *tty,
464 unsigned long arg, struct async_icount *cprev)
465{
466 struct usb_serial_port *port = tty->driver_data;
467 struct async_icount cnow;
468 unsigned long flags;
469 bool ret;
470
471 /*
472 * Use tty-port initialised flag to detect all hangups including the
473 * one generated at USB-device disconnect.
Johan Hovold980373b2013-03-21 12:36:52 +0100474 */
Johan Hovold980373b2013-03-21 12:36:52 +0100475 if (!test_bit(ASYNCB_INITIALIZED, &port->port.flags))
476 return true;
477
478 spin_lock_irqsave(&port->lock, flags);
479 cnow = port->icount; /* atomic copy*/
480 spin_unlock_irqrestore(&port->lock, flags);
481
482 ret = ((arg & TIOCM_RNG) && (cnow.rng != cprev->rng)) ||
483 ((arg & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) ||
484 ((arg & TIOCM_CD) && (cnow.dcd != cprev->dcd)) ||
485 ((arg & TIOCM_CTS) && (cnow.cts != cprev->cts));
486
487 *cprev = cnow;
488
489 return ret;
490}
491
492int usb_serial_generic_tiocmiwait(struct tty_struct *tty, unsigned long arg)
493{
494 struct usb_serial_port *port = tty->driver_data;
495 struct async_icount cnow;
496 unsigned long flags;
497 int ret;
498
499 spin_lock_irqsave(&port->lock, flags);
500 cnow = port->icount; /* atomic copy */
501 spin_unlock_irqrestore(&port->lock, flags);
502
503 ret = wait_event_interruptible(port->port.delta_msr_wait,
504 usb_serial_generic_msr_changed(tty, arg, &cnow));
Johan Hovold91c42112013-06-26 16:47:21 +0200505 if (!ret && !test_bit(ASYNCB_INITIALIZED, &port->port.flags))
506 ret = -EIO;
Johan Hovold980373b2013-03-21 12:36:52 +0100507
508 return ret;
509}
510EXPORT_SYMBOL_GPL(usb_serial_generic_tiocmiwait);
511
Johan Hovoldbefefcd2013-03-21 12:36:54 +0100512int usb_serial_generic_get_icount(struct tty_struct *tty,
513 struct serial_icounter_struct *icount)
514{
515 struct usb_serial_port *port = tty->driver_data;
516 struct async_icount cnow;
517 unsigned long flags;
518
519 spin_lock_irqsave(&port->lock, flags);
520 cnow = port->icount; /* atomic copy */
521 spin_unlock_irqrestore(&port->lock, flags);
522
523 icount->cts = cnow.cts;
524 icount->dsr = cnow.dsr;
525 icount->rng = cnow.rng;
526 icount->dcd = cnow.dcd;
527 icount->tx = cnow.tx;
528 icount->rx = cnow.rx;
529 icount->frame = cnow.frame;
530 icount->parity = cnow.parity;
531 icount->overrun = cnow.overrun;
532 icount->brk = cnow.brk;
533 icount->buf_overrun = cnow.buf_overrun;
534
535 return 0;
536}
537EXPORT_SYMBOL_GPL(usb_serial_generic_get_icount);
538
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700539#ifdef CONFIG_MAGIC_SYSRQ
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700540int usb_serial_handle_sysrq_char(struct usb_serial_port *port, unsigned int ch)
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500541{
Jason Wesselbd5afa92010-03-08 21:50:12 -0600542 if (port->sysrq && port->port.console) {
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500543 if (ch && time_before(jiffies, port->sysrq)) {
Dmitry Torokhovf3353972010-08-17 21:15:47 -0700544 handle_sysrq(ch);
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500545 port->sysrq = 0;
546 return 1;
547 }
548 port->sysrq = 0;
549 }
550 return 0;
551}
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700552#else
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700553int usb_serial_handle_sysrq_char(struct usb_serial_port *port, unsigned int ch)
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700554{
555 return 0;
556}
557#endif
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500558EXPORT_SYMBOL_GPL(usb_serial_handle_sysrq_char);
559
560int usb_serial_handle_break(struct usb_serial_port *port)
561{
562 if (!port->sysrq) {
563 port->sysrq = jiffies + HZ*5;
564 return 1;
565 }
566 port->sysrq = 0;
567 return 0;
568}
569EXPORT_SYMBOL_GPL(usb_serial_handle_break);
570
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100571/**
Johan Hovold92ad2472013-10-09 17:01:10 +0200572 * usb_serial_handle_dcd_change - handle a change of carrier detect state
573 * @port: usb-serial port
574 * @tty: tty for the port
575 * @status: new carrier detect status, nonzero if active
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100576 */
577void usb_serial_handle_dcd_change(struct usb_serial_port *usb_port,
578 struct tty_struct *tty, unsigned int status)
579{
580 struct tty_port *port = &usb_port->port;
581
Johan Hovold49bd1962013-03-21 12:36:27 +0100582 dev_dbg(&usb_port->dev, "%s - status %d\n", __func__, status);
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100583
Paul Chavent833efc02013-09-16 08:41:00 +0200584 if (tty) {
585 struct tty_ldisc *ld = tty_ldisc_ref(tty);
586
587 if (ld) {
588 if (ld->ops->dcd_change)
589 ld->ops->dcd_change(tty, status);
590 tty_ldisc_deref(ld);
591 }
592 }
593
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100594 if (status)
595 wake_up_interruptible(&port->open_wait);
596 else if (tty && !C_CLOCAL(tty))
597 tty_hangup(tty);
598}
599EXPORT_SYMBOL_GPL(usb_serial_handle_dcd_change);
600
David VomLehn8e8dce02009-08-28 12:54:27 -0700601int usb_serial_generic_resume(struct usb_serial *serial)
602{
603 struct usb_serial_port *port;
604 int i, c = 0, r;
605
606 for (i = 0; i < serial->num_ports; i++) {
607 port = serial->port[i];
Alan Stern1f871582010-02-17 10:05:47 -0500608 if (!test_bit(ASYNCB_INITIALIZED, &port->port.flags))
David VomLehn8e8dce02009-08-28 12:54:27 -0700609 continue;
610
Johan Hovoldd83b4052011-11-06 19:06:37 +0100611 if (port->bulk_in_size) {
612 r = usb_serial_generic_submit_read_urbs(port,
613 GFP_NOIO);
David VomLehn8e8dce02009-08-28 12:54:27 -0700614 if (r < 0)
615 c++;
616 }
617
Johan Hovold27c7acf2010-05-05 23:57:37 +0200618 if (port->bulk_out_size) {
Johan Hovold818f6032013-10-09 17:01:11 +0200619 r = usb_serial_generic_write_start(port, GFP_NOIO);
David VomLehn8e8dce02009-08-28 12:54:27 -0700620 if (r < 0)
621 c++;
622 }
623 }
624
625 return c ? -EIO : 0;
626}
627EXPORT_SYMBOL_GPL(usb_serial_generic_resume);