blob: 31f78290c0e4bcbf143b14428c70b04273f32583 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * USB Serial Converter Generic functions
3 *
Johan Hovold659597b72013-03-21 12:37:51 +01004 * Copyright (C) 2010 - 2013 Johan Hovold (jhovold@gmail.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Copyright (C) 1999 - 2002 Greg Kroah-Hartman (greg@kroah.com)
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License version
9 * 2 as published by the Free Software Foundation.
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 Hovold818f6032013-10-09 17:01:11 +0200132static int usb_serial_generic_write_start(struct usb_serial_port *port,
133 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 Hovold92ad2472013-10-09 17:01:10 +0200176 /*
Johan Hovold818f6032013-10-09 17:01:11 +0200177 * Try sending off another urb, unless called from completion handler
178 * (in which case there will be no free urb or no data).
Johan Hovold92ad2472013-10-09 17:01:10 +0200179 */
Johan Hovold818f6032013-10-09 17:01:11 +0200180 if (mem_flags != GFP_ATOMIC)
Johan Hovold27c7acf2010-05-05 23:57:37 +0200181 goto retry;
182
183 clear_bit_unlock(USB_SERIAL_WRITE_BUSY, &port->flags);
184
185 return 0;
David VomLehn8e8dce02009-08-28 12:54:27 -0700186}
187
188/**
Johan Hovold92ad2472013-10-09 17:01:10 +0200189 * usb_serial_generic_write - generic write function
190 * @tty: tty for the port
191 * @port: usb-serial port
192 * @buf: data to write
193 * @count: number of bytes to write
David VomLehn8e8dce02009-08-28 12:54:27 -0700194 *
Johan Hovold92ad2472013-10-09 17:01:10 +0200195 * Return: The number of characters buffered, which may be anything from
196 * zero to @count, or a negative errno value.
David VomLehn8e8dce02009-08-28 12:54:27 -0700197 */
Alan Cox95da3102008-07-22 11:09:07 +0100198int usb_serial_generic_write(struct tty_struct *tty,
199 struct usb_serial_port *port, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100203 if (!port->bulk_out_size)
204 return -ENODEV;
205
Johan Hovold1a1405e2010-03-17 23:06:01 +0100206 if (!count)
Alan Coxae643872008-07-22 11:11:55 +0100207 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Stefani Seibold119eecc2009-12-23 09:10:48 +0100209 count = kfifo_in_locked(&port->write_fifo, buf, count, &port->lock);
Johan Hovold818f6032013-10-09 17:01:11 +0200210 result = usb_serial_generic_write_start(port, GFP_KERNEL);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200211 if (result)
212 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200214 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500216EXPORT_SYMBOL_GPL(usb_serial_generic_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Alan Coxae643872008-07-22 11:11:55 +0100218int usb_serial_generic_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
Alan Cox95da3102008-07-22 11:09:07 +0100220 struct usb_serial_port *port = tty->driver_data;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500221 unsigned long flags;
Johan Hovold25d514c2010-03-17 23:06:07 +0100222 int room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100224 if (!port->bulk_out_size)
225 return 0;
226
Jason Wessel715b1dc2009-05-11 15:24:07 -0500227 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200228 room = kfifo_avail(&port->write_fifo);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500229 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700231 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room);
Alan Coxa5b6f602008-04-08 17:16:06 +0100232 return room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
Alan Cox95da3102008-07-22 11:09:07 +0100235int usb_serial_generic_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
Alan Cox95da3102008-07-22 11:09:07 +0100237 struct usb_serial_port *port = tty->driver_data;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500238 unsigned long flags;
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100239 int chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100241 if (!port->bulk_out_size)
242 return 0;
243
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100244 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200245 chars = kfifo_len(&port->write_fifo) + port->tx_bytes;
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100246 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700248 dev_dbg(&port->dev, "%s - returns %d\n", __func__, chars);
Alan Cox95da3102008-07-22 11:09:07 +0100249 return chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
Johan Hovold428d9982012-10-29 10:56:25 +0100251EXPORT_SYMBOL_GPL(usb_serial_generic_chars_in_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Johan Hovolddcf01052013-05-08 17:51:43 +0200253void usb_serial_generic_wait_until_sent(struct tty_struct *tty, long timeout)
254{
255 struct usb_serial_port *port = tty->driver_data;
256 unsigned int bps;
257 unsigned long period;
258 unsigned long expire;
259
260 bps = tty_get_baud_rate(tty);
261 if (!bps)
262 bps = 9600; /* B0 */
263 /*
264 * Use a poll-period of roughly the time it takes to send one
265 * character or at least one jiffy.
266 */
267 period = max_t(unsigned long, (10 * HZ / bps), 1);
268 period = min_t(unsigned long, period, timeout);
269
270 dev_dbg(&port->dev, "%s - timeout = %u ms, period = %u ms\n",
271 __func__, jiffies_to_msecs(timeout),
272 jiffies_to_msecs(period));
273 expire = jiffies + timeout;
274 while (!port->serial->type->tx_empty(port)) {
275 schedule_timeout_interruptible(period);
276 if (signal_pending(current))
277 break;
278 if (time_after(jiffies, expire))
279 break;
280 }
281}
282EXPORT_SYMBOL_GPL(usb_serial_generic_wait_until_sent);
283
Johan Hovoldd83b4052011-11-06 19:06:37 +0100284static int usb_serial_generic_submit_read_urb(struct usb_serial_port *port,
285 int index, gfp_t mem_flags)
286{
287 int res;
288
289 if (!test_and_clear_bit(index, &port->read_urbs_free))
290 return 0;
291
Johan Hovold49bd1962013-03-21 12:36:27 +0100292 dev_dbg(&port->dev, "%s - urb %d\n", __func__, index);
Johan Hovoldd83b4052011-11-06 19:06:37 +0100293
294 res = usb_submit_urb(port->read_urbs[index], mem_flags);
295 if (res) {
296 if (res != -EPERM) {
297 dev_err(&port->dev,
298 "%s - usb_submit_urb failed: %d\n",
299 __func__, res);
300 }
301 set_bit(index, &port->read_urbs_free);
302 return res;
303 }
304
305 return 0;
306}
307
308int usb_serial_generic_submit_read_urbs(struct usb_serial_port *port,
Johan Hovold41bd72f2010-03-17 23:05:53 +0100309 gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Johan Hovoldd83b4052011-11-06 19:06:37 +0100311 int res;
312 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Johan Hovoldd83b4052011-11-06 19:06:37 +0100314 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i) {
315 res = usb_serial_generic_submit_read_urb(port, i, mem_flags);
316 if (res)
317 goto err;
Johan Hovold0ae14742010-02-27 14:05:46 +0100318 }
Johan Hovoldd83b4052011-11-06 19:06:37 +0100319
320 return 0;
321err:
322 for (; i >= 0; --i)
323 usb_kill_urb(port->read_urbs[i]);
324
325 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
Johan Hovoldd83b4052011-11-06 19:06:37 +0100327EXPORT_SYMBOL_GPL(usb_serial_generic_submit_read_urbs);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100328
Johan Hovold23154322010-03-17 23:05:57 +0100329void usb_serial_generic_process_read_urb(struct urb *urb)
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200330{
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100331 struct usb_serial_port *port = urb->context;
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500332 char *ch = (char *)urb->transfer_buffer;
333 int i;
334
Johan Hovold56a1df42010-05-15 17:53:44 +0200335 if (!urb->actual_length)
336 return;
Johan Hovold92ad2472013-10-09 17:01:10 +0200337 /*
338 * The per character mucking around with sysrq path it too slow for
339 * stuff like 3G modems, so shortcircuit it in the 99.9999999% of
340 * cases where the USB serial is not a console anyway.
341 */
Jason Wesselbd5afa92010-03-08 21:50:12 -0600342 if (!port->port.console || !port->sysrq)
Jiri Slaby05c7cd32013-01-03 15:53:04 +0100343 tty_insert_flip_string(&port->port, ch, urb->actual_length);
Alan Cox4cd1de02009-07-09 13:35:52 +0100344 else {
Alan Cox4cd1de02009-07-09 13:35:52 +0100345 for (i = 0; i < urb->actual_length; i++, ch++) {
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700346 if (!usb_serial_handle_sysrq_char(port, *ch))
Jiri Slaby92a19f92013-01-03 15:53:03 +0100347 tty_insert_flip_char(&port->port, *ch, TTY_NORMAL);
Alan Cox4cd1de02009-07-09 13:35:52 +0100348 }
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200349 }
Jiri Slaby2e124b42013-01-03 15:53:06 +0100350 tty_flip_buffer_push(&port->port);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200351}
Johan Hovold23154322010-03-17 23:05:57 +0100352EXPORT_SYMBOL_GPL(usb_serial_generic_process_read_urb);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200353
Alan Cox95da3102008-07-22 11:09:07 +0100354void usb_serial_generic_read_bulk_callback(struct urb *urb)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100355{
Ming Leicdc97792008-02-24 18:41:47 +0800356 struct usb_serial_port *port = urb->context;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100357 unsigned char *data = urb->transfer_buffer;
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100358 unsigned long flags;
Johan Hovoldd83b4052011-11-06 19:06:37 +0100359 int i;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100360
Johan Hovoldd83b4052011-11-06 19:06:37 +0100361 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i) {
362 if (urb == port->read_urbs[i])
363 break;
364 }
365 set_bit(i, &port->read_urbs_free);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100366
Johan Hovold49bd1962013-03-21 12:36:27 +0100367 dev_dbg(&port->dev, "%s - urb %d, len %d\n", __func__, i,
368 urb->actual_length);
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700369
Johan Hovoldd83b4052011-11-06 19:06:37 +0100370 if (urb->status) {
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700371 dev_dbg(&port->dev, "%s - non-zero urb status: %d\n",
372 __func__, urb->status);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100373 return;
374 }
375
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100376 usb_serial_debug_data(&port->dev, __func__, urb->actual_length, data);
Johan Hovold23154322010-03-17 23:05:57 +0100377 port->serial->type->process_read_urb(urb);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100378
379 /* Throttle the device if requested by tty */
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100380 spin_lock_irqsave(&port->lock, flags);
Alan Coxae643872008-07-22 11:11:55 +0100381 port->throttled = port->throttle_req;
382 if (!port->throttled) {
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800383 spin_unlock_irqrestore(&port->lock, flags);
Johan Hovoldd83b4052011-11-06 19:06:37 +0100384 usb_serial_generic_submit_read_urb(port, i, GFP_ATOMIC);
Alan Coxae643872008-07-22 11:11:55 +0100385 } else
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800386 spin_unlock_irqrestore(&port->lock, flags);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100387}
Luiz Fernando N. Capitulino166ffcc2006-07-11 14:19:25 -0300388EXPORT_SYMBOL_GPL(usb_serial_generic_read_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Alan Cox95da3102008-07-22 11:09:07 +0100390void usb_serial_generic_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
Jason Wessel715b1dc2009-05-11 15:24:07 -0500392 unsigned long flags;
Ming Leicdc97792008-02-24 18:41:47 +0800393 struct usb_serial_port *port = urb->context;
Greg Kroah-Hartmanfbd272252007-06-15 15:44:13 -0700394 int status = urb->status;
Johan Hovold27c7acf2010-05-05 23:57:37 +0200395 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200397 for (i = 0; i < ARRAY_SIZE(port->write_urbs); ++i)
398 if (port->write_urbs[i] == urb)
399 break;
400
401 spin_lock_irqsave(&port->lock, flags);
402 port->tx_bytes -= urb->transfer_buffer_length;
403 set_bit(i, &port->write_urbs_free);
404 spin_unlock_irqrestore(&port->lock, flags);
405
406 if (status) {
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700407 dev_dbg(&port->dev, "%s - non-zero urb status: %d\n",
408 __func__, status);
Johan Hovold25915302010-01-06 15:48:42 -0800409
Jason Wessel715b1dc2009-05-11 15:24:07 -0500410 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200411 kfifo_reset_out(&port->write_fifo);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500412 spin_unlock_irqrestore(&port->lock, flags);
413 } else {
Johan Hovold818f6032013-10-09 17:01:11 +0200414 usb_serial_generic_write_start(port, GFP_ATOMIC);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500415 }
416
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700417 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
Greg Kroah-Hartmanbb833982005-11-17 09:48:18 -0800419EXPORT_SYMBOL_GPL(usb_serial_generic_write_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Alan Cox95da3102008-07-22 11:09:07 +0100421void usb_serial_generic_throttle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100422{
Alan Cox95da3102008-07-22 11:09:07 +0100423 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100424 unsigned long flags;
425
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100426 spin_lock_irqsave(&port->lock, flags);
427 port->throttle_req = 1;
428 spin_unlock_irqrestore(&port->lock, flags);
429}
Johan Hovoldf1e949a2010-03-17 23:05:59 +0100430EXPORT_SYMBOL_GPL(usb_serial_generic_throttle);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100431
Alan Cox95da3102008-07-22 11:09:07 +0100432void usb_serial_generic_unthrottle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100433{
Alan Cox95da3102008-07-22 11:09:07 +0100434 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100435 int was_throttled;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100436
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100437 spin_lock_irq(&port->lock);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100438 was_throttled = port->throttled;
439 port->throttled = port->throttle_req = 0;
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100440 spin_unlock_irq(&port->lock);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100441
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100442 if (was_throttled)
Johan Hovoldd83b4052011-11-06 19:06:37 +0100443 usb_serial_generic_submit_read_urbs(port, GFP_KERNEL);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100444}
Johan Hovoldf1e949a2010-03-17 23:05:59 +0100445EXPORT_SYMBOL_GPL(usb_serial_generic_unthrottle);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100446
Johan Hovold980373b2013-03-21 12:36:52 +0100447static bool usb_serial_generic_msr_changed(struct tty_struct *tty,
448 unsigned long arg, struct async_icount *cprev)
449{
450 struct usb_serial_port *port = tty->driver_data;
451 struct async_icount cnow;
452 unsigned long flags;
453 bool ret;
454
455 /*
456 * Use tty-port initialised flag to detect all hangups including the
457 * one generated at USB-device disconnect.
Johan Hovold980373b2013-03-21 12:36:52 +0100458 */
Johan Hovold980373b2013-03-21 12:36:52 +0100459 if (!test_bit(ASYNCB_INITIALIZED, &port->port.flags))
460 return true;
461
462 spin_lock_irqsave(&port->lock, flags);
463 cnow = port->icount; /* atomic copy*/
464 spin_unlock_irqrestore(&port->lock, flags);
465
466 ret = ((arg & TIOCM_RNG) && (cnow.rng != cprev->rng)) ||
467 ((arg & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) ||
468 ((arg & TIOCM_CD) && (cnow.dcd != cprev->dcd)) ||
469 ((arg & TIOCM_CTS) && (cnow.cts != cprev->cts));
470
471 *cprev = cnow;
472
473 return ret;
474}
475
476int usb_serial_generic_tiocmiwait(struct tty_struct *tty, unsigned long arg)
477{
478 struct usb_serial_port *port = tty->driver_data;
479 struct async_icount cnow;
480 unsigned long flags;
481 int ret;
482
483 spin_lock_irqsave(&port->lock, flags);
484 cnow = port->icount; /* atomic copy */
485 spin_unlock_irqrestore(&port->lock, flags);
486
487 ret = wait_event_interruptible(port->port.delta_msr_wait,
488 usb_serial_generic_msr_changed(tty, arg, &cnow));
Johan Hovold91c42112013-06-26 16:47:21 +0200489 if (!ret && !test_bit(ASYNCB_INITIALIZED, &port->port.flags))
490 ret = -EIO;
Johan Hovold980373b2013-03-21 12:36:52 +0100491
492 return ret;
493}
494EXPORT_SYMBOL_GPL(usb_serial_generic_tiocmiwait);
495
Johan Hovoldbefefcd2013-03-21 12:36:54 +0100496int usb_serial_generic_get_icount(struct tty_struct *tty,
497 struct serial_icounter_struct *icount)
498{
499 struct usb_serial_port *port = tty->driver_data;
500 struct async_icount cnow;
501 unsigned long flags;
502
503 spin_lock_irqsave(&port->lock, flags);
504 cnow = port->icount; /* atomic copy */
505 spin_unlock_irqrestore(&port->lock, flags);
506
507 icount->cts = cnow.cts;
508 icount->dsr = cnow.dsr;
509 icount->rng = cnow.rng;
510 icount->dcd = cnow.dcd;
511 icount->tx = cnow.tx;
512 icount->rx = cnow.rx;
513 icount->frame = cnow.frame;
514 icount->parity = cnow.parity;
515 icount->overrun = cnow.overrun;
516 icount->brk = cnow.brk;
517 icount->buf_overrun = cnow.buf_overrun;
518
519 return 0;
520}
521EXPORT_SYMBOL_GPL(usb_serial_generic_get_icount);
522
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700523#ifdef CONFIG_MAGIC_SYSRQ
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700524int usb_serial_handle_sysrq_char(struct usb_serial_port *port, unsigned int ch)
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500525{
Jason Wesselbd5afa92010-03-08 21:50:12 -0600526 if (port->sysrq && port->port.console) {
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500527 if (ch && time_before(jiffies, port->sysrq)) {
Dmitry Torokhovf3353972010-08-17 21:15:47 -0700528 handle_sysrq(ch);
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500529 port->sysrq = 0;
530 return 1;
531 }
532 port->sysrq = 0;
533 }
534 return 0;
535}
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700536#else
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700537int usb_serial_handle_sysrq_char(struct usb_serial_port *port, unsigned int ch)
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700538{
539 return 0;
540}
541#endif
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500542EXPORT_SYMBOL_GPL(usb_serial_handle_sysrq_char);
543
544int usb_serial_handle_break(struct usb_serial_port *port)
545{
546 if (!port->sysrq) {
547 port->sysrq = jiffies + HZ*5;
548 return 1;
549 }
550 port->sysrq = 0;
551 return 0;
552}
553EXPORT_SYMBOL_GPL(usb_serial_handle_break);
554
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100555/**
Johan Hovold92ad2472013-10-09 17:01:10 +0200556 * usb_serial_handle_dcd_change - handle a change of carrier detect state
557 * @port: usb-serial port
558 * @tty: tty for the port
559 * @status: new carrier detect status, nonzero if active
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100560 */
561void usb_serial_handle_dcd_change(struct usb_serial_port *usb_port,
562 struct tty_struct *tty, unsigned int status)
563{
564 struct tty_port *port = &usb_port->port;
565
Johan Hovold49bd1962013-03-21 12:36:27 +0100566 dev_dbg(&usb_port->dev, "%s - status %d\n", __func__, status);
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100567
Paul Chavent833efc02013-09-16 08:41:00 +0200568 if (tty) {
569 struct tty_ldisc *ld = tty_ldisc_ref(tty);
570
571 if (ld) {
572 if (ld->ops->dcd_change)
573 ld->ops->dcd_change(tty, status);
574 tty_ldisc_deref(ld);
575 }
576 }
577
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100578 if (status)
579 wake_up_interruptible(&port->open_wait);
580 else if (tty && !C_CLOCAL(tty))
581 tty_hangup(tty);
582}
583EXPORT_SYMBOL_GPL(usb_serial_handle_dcd_change);
584
David VomLehn8e8dce02009-08-28 12:54:27 -0700585int usb_serial_generic_resume(struct usb_serial *serial)
586{
587 struct usb_serial_port *port;
588 int i, c = 0, r;
589
590 for (i = 0; i < serial->num_ports; i++) {
591 port = serial->port[i];
Alan Stern1f871582010-02-17 10:05:47 -0500592 if (!test_bit(ASYNCB_INITIALIZED, &port->port.flags))
David VomLehn8e8dce02009-08-28 12:54:27 -0700593 continue;
594
Johan Hovoldd83b4052011-11-06 19:06:37 +0100595 if (port->bulk_in_size) {
596 r = usb_serial_generic_submit_read_urbs(port,
597 GFP_NOIO);
David VomLehn8e8dce02009-08-28 12:54:27 -0700598 if (r < 0)
599 c++;
600 }
601
Johan Hovold27c7acf2010-05-05 23:57:37 +0200602 if (port->bulk_out_size) {
Johan Hovold818f6032013-10-09 17:01:11 +0200603 r = usb_serial_generic_write_start(port, GFP_NOIO);
David VomLehn8e8dce02009-08-28 12:54:27 -0700604 if (r < 0)
605 c++;
606 }
607 }
608
609 return c ? -EIO : 0;
610}
611EXPORT_SYMBOL_GPL(usb_serial_generic_resume);