blob: fce374657ea2662b821e22681edc2c124e155ea3 [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
David VomLehn8e8dce02009-08-28 12:54:27 -0700126 *
Johan Hovold92ad2472013-10-09 17:01:10 +0200127 * Serialised using USB_SERIAL_WRITE_BUSY flag.
128 *
129 * Return: Zero on success or if busy, otherwise a negative errno value.
David VomLehn8e8dce02009-08-28 12:54:27 -0700130 */
131static int usb_serial_generic_write_start(struct usb_serial_port *port)
132{
Johan Hovold27c7acf2010-05-05 23:57:37 +0200133 struct urb *urb;
134 int count, result;
David VomLehn8e8dce02009-08-28 12:54:27 -0700135 unsigned long flags;
Johan Hovold27c7acf2010-05-05 23:57:37 +0200136 int i;
David VomLehn8e8dce02009-08-28 12:54:27 -0700137
Johan Hovold27c7acf2010-05-05 23:57:37 +0200138 if (test_and_set_bit_lock(USB_SERIAL_WRITE_BUSY, &port->flags))
139 return 0;
140retry:
David VomLehn8e8dce02009-08-28 12:54:27 -0700141 spin_lock_irqsave(&port->lock, flags);
Johan Hovold27c7acf2010-05-05 23:57:37 +0200142 if (!port->write_urbs_free || !kfifo_len(&port->write_fifo)) {
143 clear_bit_unlock(USB_SERIAL_WRITE_BUSY, &port->flags);
Johan Hovold50a5f702010-03-17 23:06:02 +0100144 spin_unlock_irqrestore(&port->lock, flags);
David VomLehn8e8dce02009-08-28 12:54:27 -0700145 return 0;
Johan Hovold50a5f702010-03-17 23:06:02 +0100146 }
Johan Hovold27c7acf2010-05-05 23:57:37 +0200147 i = (int)find_first_bit(&port->write_urbs_free,
148 ARRAY_SIZE(port->write_urbs));
Johan Hovold50a5f702010-03-17 23:06:02 +0100149 spin_unlock_irqrestore(&port->lock, flags);
David VomLehn8e8dce02009-08-28 12:54:27 -0700150
Johan Hovold27c7acf2010-05-05 23:57:37 +0200151 urb = port->write_urbs[i];
Johan Hovoldeaa3bcb2010-03-17 23:06:08 +0100152 count = port->serial->type->prepare_write_buffer(port,
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200153 urb->transfer_buffer,
154 port->bulk_out_size);
Johan Hovold27c7acf2010-05-05 23:57:37 +0200155 urb->transfer_buffer_length = count;
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100156 usb_serial_debug_data(&port->dev, __func__, count, urb->transfer_buffer);
Johan Hovoldb58af402010-08-04 15:45:57 +0200157 spin_lock_irqsave(&port->lock, flags);
158 port->tx_bytes += count;
159 spin_unlock_irqrestore(&port->lock, flags);
160
161 clear_bit(i, &port->write_urbs_free);
Johan Hovold27c7acf2010-05-05 23:57:37 +0200162 result = usb_submit_urb(urb, GFP_ATOMIC);
David VomLehn8e8dce02009-08-28 12:54:27 -0700163 if (result) {
Johan Hovoldf1475a02012-02-10 13:20:50 +0100164 dev_err_console(port, "%s - error submitting urb: %d\n",
David VomLehn8e8dce02009-08-28 12:54:27 -0700165 __func__, result);
Johan Hovoldb58af402010-08-04 15:45:57 +0200166 set_bit(i, &port->write_urbs_free);
167 spin_lock_irqsave(&port->lock, flags);
168 port->tx_bytes -= count;
169 spin_unlock_irqrestore(&port->lock, flags);
170
Johan Hovold27c7acf2010-05-05 23:57:37 +0200171 clear_bit_unlock(USB_SERIAL_WRITE_BUSY, &port->flags);
Johan Hovold30af7fb2010-03-17 23:00:42 +0100172 return result;
173 }
Johan Hovold92ad2472013-10-09 17:01:10 +0200174 /*
175 * Try sending off another urb, unless in irq context (in which case
176 * there will be no free urb).
177 */
Johan Hovold27c7acf2010-05-05 23:57:37 +0200178 if (!in_irq())
179 goto retry;
180
181 clear_bit_unlock(USB_SERIAL_WRITE_BUSY, &port->flags);
182
183 return 0;
David VomLehn8e8dce02009-08-28 12:54:27 -0700184}
185
186/**
Johan Hovold92ad2472013-10-09 17:01:10 +0200187 * usb_serial_generic_write - generic write function
188 * @tty: tty for the port
189 * @port: usb-serial port
190 * @buf: data to write
191 * @count: number of bytes to write
David VomLehn8e8dce02009-08-28 12:54:27 -0700192 *
Johan Hovold92ad2472013-10-09 17:01:10 +0200193 * Return: The number of characters buffered, which may be anything from
194 * zero to @count, or a negative errno value.
David VomLehn8e8dce02009-08-28 12:54:27 -0700195 */
Alan Cox95da3102008-07-22 11:09:07 +0100196int usb_serial_generic_write(struct tty_struct *tty,
197 struct usb_serial_port *port, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100201 if (!port->bulk_out_size)
202 return -ENODEV;
203
Johan Hovold1a1405e2010-03-17 23:06:01 +0100204 if (!count)
Alan Coxae643872008-07-22 11:11:55 +0100205 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Stefani Seibold119eecc2009-12-23 09:10:48 +0100207 count = kfifo_in_locked(&port->write_fifo, buf, count, &port->lock);
David VomLehn8e8dce02009-08-28 12:54:27 -0700208 result = usb_serial_generic_write_start(port);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200209 if (result)
210 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200212 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213}
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500214EXPORT_SYMBOL_GPL(usb_serial_generic_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Alan Coxae643872008-07-22 11:11:55 +0100216int usb_serial_generic_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
Alan Cox95da3102008-07-22 11:09:07 +0100218 struct usb_serial_port *port = tty->driver_data;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500219 unsigned long flags;
Johan Hovold25d514c2010-03-17 23:06:07 +0100220 int room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100222 if (!port->bulk_out_size)
223 return 0;
224
Jason Wessel715b1dc2009-05-11 15:24:07 -0500225 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200226 room = kfifo_avail(&port->write_fifo);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500227 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700229 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room);
Alan Coxa5b6f602008-04-08 17:16:06 +0100230 return room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231}
232
Alan Cox95da3102008-07-22 11:09:07 +0100233int usb_serial_generic_chars_in_buffer(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 Hovoldeb8878a2010-02-27 16:24:49 +0100237 int chars;
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
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100242 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200243 chars = kfifo_len(&port->write_fifo) + port->tx_bytes;
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100244 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__, chars);
Alan Cox95da3102008-07-22 11:09:07 +0100247 return chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
Johan Hovold428d9982012-10-29 10:56:25 +0100249EXPORT_SYMBOL_GPL(usb_serial_generic_chars_in_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Johan Hovolddcf01052013-05-08 17:51:43 +0200251void usb_serial_generic_wait_until_sent(struct tty_struct *tty, long timeout)
252{
253 struct usb_serial_port *port = tty->driver_data;
254 unsigned int bps;
255 unsigned long period;
256 unsigned long expire;
257
258 bps = tty_get_baud_rate(tty);
259 if (!bps)
260 bps = 9600; /* B0 */
261 /*
262 * Use a poll-period of roughly the time it takes to send one
263 * character or at least one jiffy.
264 */
265 period = max_t(unsigned long, (10 * HZ / bps), 1);
266 period = min_t(unsigned long, period, timeout);
267
268 dev_dbg(&port->dev, "%s - timeout = %u ms, period = %u ms\n",
269 __func__, jiffies_to_msecs(timeout),
270 jiffies_to_msecs(period));
271 expire = jiffies + timeout;
272 while (!port->serial->type->tx_empty(port)) {
273 schedule_timeout_interruptible(period);
274 if (signal_pending(current))
275 break;
276 if (time_after(jiffies, expire))
277 break;
278 }
279}
280EXPORT_SYMBOL_GPL(usb_serial_generic_wait_until_sent);
281
Johan Hovoldd83b4052011-11-06 19:06:37 +0100282static int usb_serial_generic_submit_read_urb(struct usb_serial_port *port,
283 int index, gfp_t mem_flags)
284{
285 int res;
286
287 if (!test_and_clear_bit(index, &port->read_urbs_free))
288 return 0;
289
Johan Hovold49bd1962013-03-21 12:36:27 +0100290 dev_dbg(&port->dev, "%s - urb %d\n", __func__, index);
Johan Hovoldd83b4052011-11-06 19:06:37 +0100291
292 res = usb_submit_urb(port->read_urbs[index], mem_flags);
293 if (res) {
294 if (res != -EPERM) {
295 dev_err(&port->dev,
296 "%s - usb_submit_urb failed: %d\n",
297 __func__, res);
298 }
299 set_bit(index, &port->read_urbs_free);
300 return res;
301 }
302
303 return 0;
304}
305
306int usb_serial_generic_submit_read_urbs(struct usb_serial_port *port,
Johan Hovold41bd72f2010-03-17 23:05:53 +0100307 gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Johan Hovoldd83b4052011-11-06 19:06:37 +0100309 int res;
310 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Johan Hovoldd83b4052011-11-06 19:06:37 +0100312 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i) {
313 res = usb_serial_generic_submit_read_urb(port, i, mem_flags);
314 if (res)
315 goto err;
Johan Hovold0ae14742010-02-27 14:05:46 +0100316 }
Johan Hovoldd83b4052011-11-06 19:06:37 +0100317
318 return 0;
319err:
320 for (; i >= 0; --i)
321 usb_kill_urb(port->read_urbs[i]);
322
323 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
Johan Hovoldd83b4052011-11-06 19:06:37 +0100325EXPORT_SYMBOL_GPL(usb_serial_generic_submit_read_urbs);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100326
Johan Hovold23154322010-03-17 23:05:57 +0100327void usb_serial_generic_process_read_urb(struct urb *urb)
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200328{
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100329 struct usb_serial_port *port = urb->context;
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500330 char *ch = (char *)urb->transfer_buffer;
331 int i;
332
Johan Hovold56a1df42010-05-15 17:53:44 +0200333 if (!urb->actual_length)
334 return;
Johan Hovold92ad2472013-10-09 17:01:10 +0200335 /*
336 * The per character mucking around with sysrq path it too slow for
337 * stuff like 3G modems, so shortcircuit it in the 99.9999999% of
338 * cases where the USB serial is not a console anyway.
339 */
Jason Wesselbd5afa92010-03-08 21:50:12 -0600340 if (!port->port.console || !port->sysrq)
Jiri Slaby05c7cd32013-01-03 15:53:04 +0100341 tty_insert_flip_string(&port->port, ch, urb->actual_length);
Alan Cox4cd1de02009-07-09 13:35:52 +0100342 else {
Alan Cox4cd1de02009-07-09 13:35:52 +0100343 for (i = 0; i < urb->actual_length; i++, ch++) {
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700344 if (!usb_serial_handle_sysrq_char(port, *ch))
Jiri Slaby92a19f92013-01-03 15:53:03 +0100345 tty_insert_flip_char(&port->port, *ch, TTY_NORMAL);
Alan Cox4cd1de02009-07-09 13:35:52 +0100346 }
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200347 }
Jiri Slaby2e124b42013-01-03 15:53:06 +0100348 tty_flip_buffer_push(&port->port);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200349}
Johan Hovold23154322010-03-17 23:05:57 +0100350EXPORT_SYMBOL_GPL(usb_serial_generic_process_read_urb);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200351
Alan Cox95da3102008-07-22 11:09:07 +0100352void usb_serial_generic_read_bulk_callback(struct urb *urb)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100353{
Ming Leicdc97792008-02-24 18:41:47 +0800354 struct usb_serial_port *port = urb->context;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100355 unsigned char *data = urb->transfer_buffer;
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100356 unsigned long flags;
Johan Hovoldd83b4052011-11-06 19:06:37 +0100357 int i;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100358
Johan Hovoldd83b4052011-11-06 19:06:37 +0100359 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i) {
360 if (urb == port->read_urbs[i])
361 break;
362 }
363 set_bit(i, &port->read_urbs_free);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100364
Johan Hovold49bd1962013-03-21 12:36:27 +0100365 dev_dbg(&port->dev, "%s - urb %d, len %d\n", __func__, i,
366 urb->actual_length);
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700367
Johan Hovoldd83b4052011-11-06 19:06:37 +0100368 if (urb->status) {
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700369 dev_dbg(&port->dev, "%s - non-zero urb status: %d\n",
370 __func__, urb->status);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100371 return;
372 }
373
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100374 usb_serial_debug_data(&port->dev, __func__, urb->actual_length, data);
Johan Hovold23154322010-03-17 23:05:57 +0100375 port->serial->type->process_read_urb(urb);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100376
377 /* Throttle the device if requested by tty */
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100378 spin_lock_irqsave(&port->lock, flags);
Alan Coxae643872008-07-22 11:11:55 +0100379 port->throttled = port->throttle_req;
380 if (!port->throttled) {
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800381 spin_unlock_irqrestore(&port->lock, flags);
Johan Hovoldd83b4052011-11-06 19:06:37 +0100382 usb_serial_generic_submit_read_urb(port, i, GFP_ATOMIC);
Alan Coxae643872008-07-22 11:11:55 +0100383 } else
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800384 spin_unlock_irqrestore(&port->lock, flags);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100385}
Luiz Fernando N. Capitulino166ffcc2006-07-11 14:19:25 -0300386EXPORT_SYMBOL_GPL(usb_serial_generic_read_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Alan Cox95da3102008-07-22 11:09:07 +0100388void usb_serial_generic_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
Jason Wessel715b1dc2009-05-11 15:24:07 -0500390 unsigned long flags;
Ming Leicdc97792008-02-24 18:41:47 +0800391 struct usb_serial_port *port = urb->context;
Greg Kroah-Hartmanfbd272252007-06-15 15:44:13 -0700392 int status = urb->status;
Johan Hovold27c7acf2010-05-05 23:57:37 +0200393 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200395 for (i = 0; i < ARRAY_SIZE(port->write_urbs); ++i)
396 if (port->write_urbs[i] == urb)
397 break;
398
399 spin_lock_irqsave(&port->lock, flags);
400 port->tx_bytes -= urb->transfer_buffer_length;
401 set_bit(i, &port->write_urbs_free);
402 spin_unlock_irqrestore(&port->lock, flags);
403
404 if (status) {
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700405 dev_dbg(&port->dev, "%s - non-zero urb status: %d\n",
406 __func__, status);
Johan Hovold25915302010-01-06 15:48:42 -0800407
Jason Wessel715b1dc2009-05-11 15:24:07 -0500408 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200409 kfifo_reset_out(&port->write_fifo);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500410 spin_unlock_irqrestore(&port->lock, flags);
411 } else {
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200412 usb_serial_generic_write_start(port);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500413 }
414
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700415 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
Greg Kroah-Hartmanbb833982005-11-17 09:48:18 -0800417EXPORT_SYMBOL_GPL(usb_serial_generic_write_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Alan Cox95da3102008-07-22 11:09:07 +0100419void usb_serial_generic_throttle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100420{
Alan Cox95da3102008-07-22 11:09:07 +0100421 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100422 unsigned long flags;
423
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100424 spin_lock_irqsave(&port->lock, flags);
425 port->throttle_req = 1;
426 spin_unlock_irqrestore(&port->lock, flags);
427}
Johan Hovoldf1e949a2010-03-17 23:05:59 +0100428EXPORT_SYMBOL_GPL(usb_serial_generic_throttle);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100429
Alan Cox95da3102008-07-22 11:09:07 +0100430void usb_serial_generic_unthrottle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100431{
Alan Cox95da3102008-07-22 11:09:07 +0100432 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100433 int was_throttled;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100434
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100435 spin_lock_irq(&port->lock);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100436 was_throttled = port->throttled;
437 port->throttled = port->throttle_req = 0;
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100438 spin_unlock_irq(&port->lock);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100439
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100440 if (was_throttled)
Johan Hovoldd83b4052011-11-06 19:06:37 +0100441 usb_serial_generic_submit_read_urbs(port, GFP_KERNEL);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100442}
Johan Hovoldf1e949a2010-03-17 23:05:59 +0100443EXPORT_SYMBOL_GPL(usb_serial_generic_unthrottle);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100444
Johan Hovold980373b2013-03-21 12:36:52 +0100445static bool usb_serial_generic_msr_changed(struct tty_struct *tty,
446 unsigned long arg, struct async_icount *cprev)
447{
448 struct usb_serial_port *port = tty->driver_data;
449 struct async_icount cnow;
450 unsigned long flags;
451 bool ret;
452
453 /*
454 * Use tty-port initialised flag to detect all hangups including the
455 * one generated at USB-device disconnect.
Johan Hovold980373b2013-03-21 12:36:52 +0100456 */
Johan Hovold980373b2013-03-21 12:36:52 +0100457 if (!test_bit(ASYNCB_INITIALIZED, &port->port.flags))
458 return true;
459
460 spin_lock_irqsave(&port->lock, flags);
461 cnow = port->icount; /* atomic copy*/
462 spin_unlock_irqrestore(&port->lock, flags);
463
464 ret = ((arg & TIOCM_RNG) && (cnow.rng != cprev->rng)) ||
465 ((arg & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) ||
466 ((arg & TIOCM_CD) && (cnow.dcd != cprev->dcd)) ||
467 ((arg & TIOCM_CTS) && (cnow.cts != cprev->cts));
468
469 *cprev = cnow;
470
471 return ret;
472}
473
474int usb_serial_generic_tiocmiwait(struct tty_struct *tty, unsigned long arg)
475{
476 struct usb_serial_port *port = tty->driver_data;
477 struct async_icount cnow;
478 unsigned long flags;
479 int ret;
480
481 spin_lock_irqsave(&port->lock, flags);
482 cnow = port->icount; /* atomic copy */
483 spin_unlock_irqrestore(&port->lock, flags);
484
485 ret = wait_event_interruptible(port->port.delta_msr_wait,
486 usb_serial_generic_msr_changed(tty, arg, &cnow));
Johan Hovold91c42112013-06-26 16:47:21 +0200487 if (!ret && !test_bit(ASYNCB_INITIALIZED, &port->port.flags))
488 ret = -EIO;
Johan Hovold980373b2013-03-21 12:36:52 +0100489
490 return ret;
491}
492EXPORT_SYMBOL_GPL(usb_serial_generic_tiocmiwait);
493
Johan Hovoldbefefcd2013-03-21 12:36:54 +0100494int usb_serial_generic_get_icount(struct tty_struct *tty,
495 struct serial_icounter_struct *icount)
496{
497 struct usb_serial_port *port = tty->driver_data;
498 struct async_icount cnow;
499 unsigned long flags;
500
501 spin_lock_irqsave(&port->lock, flags);
502 cnow = port->icount; /* atomic copy */
503 spin_unlock_irqrestore(&port->lock, flags);
504
505 icount->cts = cnow.cts;
506 icount->dsr = cnow.dsr;
507 icount->rng = cnow.rng;
508 icount->dcd = cnow.dcd;
509 icount->tx = cnow.tx;
510 icount->rx = cnow.rx;
511 icount->frame = cnow.frame;
512 icount->parity = cnow.parity;
513 icount->overrun = cnow.overrun;
514 icount->brk = cnow.brk;
515 icount->buf_overrun = cnow.buf_overrun;
516
517 return 0;
518}
519EXPORT_SYMBOL_GPL(usb_serial_generic_get_icount);
520
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700521#ifdef CONFIG_MAGIC_SYSRQ
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700522int usb_serial_handle_sysrq_char(struct usb_serial_port *port, unsigned int ch)
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500523{
Jason Wesselbd5afa92010-03-08 21:50:12 -0600524 if (port->sysrq && port->port.console) {
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500525 if (ch && time_before(jiffies, port->sysrq)) {
Dmitry Torokhovf3353972010-08-17 21:15:47 -0700526 handle_sysrq(ch);
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500527 port->sysrq = 0;
528 return 1;
529 }
530 port->sysrq = 0;
531 }
532 return 0;
533}
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700534#else
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700535int usb_serial_handle_sysrq_char(struct usb_serial_port *port, unsigned int ch)
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700536{
537 return 0;
538}
539#endif
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500540EXPORT_SYMBOL_GPL(usb_serial_handle_sysrq_char);
541
542int usb_serial_handle_break(struct usb_serial_port *port)
543{
544 if (!port->sysrq) {
545 port->sysrq = jiffies + HZ*5;
546 return 1;
547 }
548 port->sysrq = 0;
549 return 0;
550}
551EXPORT_SYMBOL_GPL(usb_serial_handle_break);
552
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100553/**
Johan Hovold92ad2472013-10-09 17:01:10 +0200554 * usb_serial_handle_dcd_change - handle a change of carrier detect state
555 * @port: usb-serial port
556 * @tty: tty for the port
557 * @status: new carrier detect status, nonzero if active
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100558 */
559void usb_serial_handle_dcd_change(struct usb_serial_port *usb_port,
560 struct tty_struct *tty, unsigned int status)
561{
562 struct tty_port *port = &usb_port->port;
563
Johan Hovold49bd1962013-03-21 12:36:27 +0100564 dev_dbg(&usb_port->dev, "%s - status %d\n", __func__, status);
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100565
Paul Chavent833efc02013-09-16 08:41:00 +0200566 if (tty) {
567 struct tty_ldisc *ld = tty_ldisc_ref(tty);
568
569 if (ld) {
570 if (ld->ops->dcd_change)
571 ld->ops->dcd_change(tty, status);
572 tty_ldisc_deref(ld);
573 }
574 }
575
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100576 if (status)
577 wake_up_interruptible(&port->open_wait);
578 else if (tty && !C_CLOCAL(tty))
579 tty_hangup(tty);
580}
581EXPORT_SYMBOL_GPL(usb_serial_handle_dcd_change);
582
David VomLehn8e8dce02009-08-28 12:54:27 -0700583int usb_serial_generic_resume(struct usb_serial *serial)
584{
585 struct usb_serial_port *port;
586 int i, c = 0, r;
587
588 for (i = 0; i < serial->num_ports; i++) {
589 port = serial->port[i];
Alan Stern1f871582010-02-17 10:05:47 -0500590 if (!test_bit(ASYNCB_INITIALIZED, &port->port.flags))
David VomLehn8e8dce02009-08-28 12:54:27 -0700591 continue;
592
Johan Hovoldd83b4052011-11-06 19:06:37 +0100593 if (port->bulk_in_size) {
594 r = usb_serial_generic_submit_read_urbs(port,
595 GFP_NOIO);
David VomLehn8e8dce02009-08-28 12:54:27 -0700596 if (r < 0)
597 c++;
598 }
599
Johan Hovold27c7acf2010-05-05 23:57:37 +0200600 if (port->bulk_out_size) {
David VomLehn8e8dce02009-08-28 12:54:27 -0700601 r = usb_serial_generic_write_start(port);
602 if (r < 0)
603 c++;
604 }
605 }
606
607 return c ? -EIO : 0;
608}
609EXPORT_SYMBOL_GPL(usb_serial_generic_resume);