blob: 105a6d898ca4a6595b30f88e09d889b4c5d6d844 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * USB Serial Converter Generic functions
3 *
Johan Hovoldd83b4052011-11-06 19:06:37 +01004 * Copyright (C) 2010 - 2011 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.
10 *
11 */
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/kernel.h>
14#include <linux/errno.h>
15#include <linux/slab.h>
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -070016#include <linux/sysrq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/tty.h>
18#include <linux/tty_flip.h>
19#include <linux/module.h>
20#include <linux/moduleparam.h>
21#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070022#include <linux/usb/serial.h>
Alan Coxae643872008-07-22 11:11:55 +010023#include <linux/uaccess.h>
David VomLehn8e8dce02009-08-28 12:54:27 -070024#include <linux/kfifo.h>
Alan Stern1f871582010-02-17 10:05:47 -050025#include <linux/serial.h>
Johannes Hölzld9b1b782006-12-17 21:50:24 +010026
Linus Torvalds1da177e2005-04-16 15:20:36 -070027static int debug;
28
29#ifdef CONFIG_USB_SERIAL_GENERIC
David Brownellb46d60f2007-03-23 12:51:55 -070030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031static __u16 vendor = 0x05f9;
32static __u16 product = 0xffff;
33
34module_param(vendor, ushort, 0);
35MODULE_PARM_DESC(vendor, "User specified USB idVendor");
36
37module_param(product, ushort, 0);
38MODULE_PARM_DESC(product, "User specified USB idProduct");
39
40static struct usb_device_id generic_device_ids[2]; /* Initially all zeroes. */
41
Johannes Hölzld9b1b782006-12-17 21:50:24 +010042/* we want to look at all devices, as the vendor/product id can change
43 * depending on the command line argument */
Németh Márton7d40d7e2010-01-10 15:34:24 +010044static const struct usb_device_id generic_serial_ids[] = {
Johannes Hölzld9b1b782006-12-17 21:50:24 +010045 {.driver_info = 42},
46 {}
47};
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/* All of the device info needed for the Generic Serial Converter */
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -070050struct usb_serial_driver usb_serial_generic_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070051 .driver = {
52 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070053 .name = "generic",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070054 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 .id_table = generic_device_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 .num_ports = 1,
Alan Sternf9c99bb2009-06-02 11:53:55 -040057 .disconnect = usb_serial_generic_disconnect,
58 .release = usb_serial_generic_release,
Joris van Rantwijk253ca922007-02-01 20:08:18 +010059 .throttle = usb_serial_generic_throttle,
60 .unthrottle = usb_serial_generic_unthrottle,
Oliver Neukumec225592007-04-27 20:54:57 +020061 .resume = usb_serial_generic_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -070062};
63
Alan Stern765e0ba2012-02-23 14:55:59 -050064static struct usb_serial_driver * const serial_drivers[] = {
65 &usb_serial_generic_device, NULL
66};
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#endif
69
Alan Coxae643872008-07-22 11:11:55 +010070int usb_serial_generic_register(int _debug)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
72 int retval = 0;
73
74 debug = _debug;
75#ifdef CONFIG_USB_SERIAL_GENERIC
76 generic_device_ids[0].idVendor = vendor;
77 generic_device_ids[0].idProduct = product;
Alan Coxae643872008-07-22 11:11:55 +010078 generic_device_ids[0].match_flags =
79 USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_PRODUCT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81 /* register our generic driver with ourselves */
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -070082 retval = usb_serial_register_drivers(serial_drivers, "usbserial_generic", generic_serial_ids);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#endif
84 return retval;
85}
86
Alan Coxae643872008-07-22 11:11:55 +010087void usb_serial_generic_deregister(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
89#ifdef CONFIG_USB_SERIAL_GENERIC
90 /* remove our generic driver */
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -070091 usb_serial_deregister_drivers(serial_drivers);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092#endif
93}
94
Alan Coxa509a7e2009-09-19 13:13:26 -070095int usb_serial_generic_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 int result = 0;
Joris van Rantwijk253ca922007-02-01 20:08:18 +010098 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100100 /* clear the throttle flags */
101 spin_lock_irqsave(&port->lock, flags);
102 port->throttled = 0;
103 port->throttle_req = 0;
104 spin_unlock_irqrestore(&port->lock, flags);
105
106 /* if we have a bulk endpoint, start reading from it */
Johan Hovold41bd72f2010-03-17 23:05:53 +0100107 if (port->bulk_in_size)
Johan Hovoldd83b4052011-11-06 19:06:37 +0100108 result = usb_serial_generic_submit_read_urbs(port, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110 return result;
111}
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700112EXPORT_SYMBOL_GPL(usb_serial_generic_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Alan Cox95da3102008-07-22 11:09:07 +0100114static void generic_cleanup(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
116 struct usb_serial *serial = port->serial;
Johan Hovoldec3ee502010-03-17 23:00:44 +0100117 unsigned long flags;
Johan Hovold27c7acf2010-05-05 23:57:37 +0200118 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 if (serial->dev) {
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100121 /* shutdown any bulk transfers that might be going on */
Johan Hovoldec3ee502010-03-17 23:00:44 +0100122 if (port->bulk_out_size) {
Johan Hovold27c7acf2010-05-05 23:57:37 +0200123 for (i = 0; i < ARRAY_SIZE(port->write_urbs); ++i)
124 usb_kill_urb(port->write_urbs[i]);
Johan Hovoldec3ee502010-03-17 23:00:44 +0100125
126 spin_lock_irqsave(&port->lock, flags);
127 kfifo_reset_out(&port->write_fifo);
128 spin_unlock_irqrestore(&port->lock, flags);
129 }
Johan Hovoldd83b4052011-11-06 19:06:37 +0100130 if (port->bulk_in_size) {
131 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i)
132 usb_kill_urb(port->read_urbs[i]);
133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 }
135}
136
Alan Cox335f8512009-06-11 12:26:29 +0100137void usb_serial_generic_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
Alan Coxae643872008-07-22 11:11:55 +0100139 generic_cleanup(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
Johan Hovoldf26788d2010-03-17 23:00:45 +0100141EXPORT_SYMBOL_GPL(usb_serial_generic_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Johan Hovoldeaa3bcb2010-03-17 23:06:08 +0100143int usb_serial_generic_prepare_write_buffer(struct usb_serial_port *port,
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200144 void *dest, size_t size)
Johan Hovoldeaa3bcb2010-03-17 23:06:08 +0100145{
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200146 return kfifo_out_locked(&port->write_fifo, dest, size, &port->lock);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500147}
148
David VomLehn8e8dce02009-08-28 12:54:27 -0700149/**
150 * usb_serial_generic_write_start - kick off an URB write
151 * @port: Pointer to the &struct usb_serial_port data
152 *
Johan Hovold27c7acf2010-05-05 23:57:37 +0200153 * Returns zero on success, or a negative errno value
David VomLehn8e8dce02009-08-28 12:54:27 -0700154 */
155static int usb_serial_generic_write_start(struct usb_serial_port *port)
156{
Johan Hovold27c7acf2010-05-05 23:57:37 +0200157 struct urb *urb;
158 int count, result;
David VomLehn8e8dce02009-08-28 12:54:27 -0700159 unsigned long flags;
Johan Hovold27c7acf2010-05-05 23:57:37 +0200160 int i;
David VomLehn8e8dce02009-08-28 12:54:27 -0700161
Johan Hovold27c7acf2010-05-05 23:57:37 +0200162 if (test_and_set_bit_lock(USB_SERIAL_WRITE_BUSY, &port->flags))
163 return 0;
164retry:
David VomLehn8e8dce02009-08-28 12:54:27 -0700165 spin_lock_irqsave(&port->lock, flags);
Johan Hovold27c7acf2010-05-05 23:57:37 +0200166 if (!port->write_urbs_free || !kfifo_len(&port->write_fifo)) {
167 clear_bit_unlock(USB_SERIAL_WRITE_BUSY, &port->flags);
Johan Hovold50a5f702010-03-17 23:06:02 +0100168 spin_unlock_irqrestore(&port->lock, flags);
David VomLehn8e8dce02009-08-28 12:54:27 -0700169 return 0;
Johan Hovold50a5f702010-03-17 23:06:02 +0100170 }
Johan Hovold27c7acf2010-05-05 23:57:37 +0200171 i = (int)find_first_bit(&port->write_urbs_free,
172 ARRAY_SIZE(port->write_urbs));
Johan Hovold50a5f702010-03-17 23:06:02 +0100173 spin_unlock_irqrestore(&port->lock, flags);
David VomLehn8e8dce02009-08-28 12:54:27 -0700174
Johan Hovold27c7acf2010-05-05 23:57:37 +0200175 urb = port->write_urbs[i];
Johan Hovoldeaa3bcb2010-03-17 23:06:08 +0100176 count = port->serial->type->prepare_write_buffer(port,
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200177 urb->transfer_buffer,
178 port->bulk_out_size);
Johan Hovold27c7acf2010-05-05 23:57:37 +0200179 urb->transfer_buffer_length = count;
180 usb_serial_debug_data(debug, &port->dev, __func__, count,
181 urb->transfer_buffer);
Johan Hovoldb58af402010-08-04 15:45:57 +0200182 spin_lock_irqsave(&port->lock, flags);
183 port->tx_bytes += count;
184 spin_unlock_irqrestore(&port->lock, flags);
185
186 clear_bit(i, &port->write_urbs_free);
Johan Hovold27c7acf2010-05-05 23:57:37 +0200187 result = usb_submit_urb(urb, GFP_ATOMIC);
David VomLehn8e8dce02009-08-28 12:54:27 -0700188 if (result) {
Johan Hovoldf1475a02012-02-10 13:20:50 +0100189 dev_err_console(port, "%s - error submitting urb: %d\n",
David VomLehn8e8dce02009-08-28 12:54:27 -0700190 __func__, result);
Johan Hovoldb58af402010-08-04 15:45:57 +0200191 set_bit(i, &port->write_urbs_free);
192 spin_lock_irqsave(&port->lock, flags);
193 port->tx_bytes -= count;
194 spin_unlock_irqrestore(&port->lock, flags);
195
Johan Hovold27c7acf2010-05-05 23:57:37 +0200196 clear_bit_unlock(USB_SERIAL_WRITE_BUSY, &port->flags);
Johan Hovold30af7fb2010-03-17 23:00:42 +0100197 return result;
198 }
Johan Hovold30af7fb2010-03-17 23:00:42 +0100199
Johan Hovold27c7acf2010-05-05 23:57:37 +0200200 /* Try sending off another urb, unless in irq context (in which case
201 * there will be no free urb). */
202 if (!in_irq())
203 goto retry;
204
205 clear_bit_unlock(USB_SERIAL_WRITE_BUSY, &port->flags);
206
207 return 0;
David VomLehn8e8dce02009-08-28 12:54:27 -0700208}
209
210/**
211 * usb_serial_generic_write - generic write function for serial USB devices
212 * @tty: Pointer to &struct tty_struct for the device
213 * @port: Pointer to the &usb_serial_port structure for the device
214 * @buf: Pointer to the data to write
215 * @count: Number of bytes to write
216 *
217 * Returns the number of characters actually written, which may be anything
218 * from zero to @count. If an error occurs, it returns the negative errno
219 * value.
220 */
Alan Cox95da3102008-07-22 11:09:07 +0100221int usb_serial_generic_write(struct tty_struct *tty,
222 struct usb_serial_port *port, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100226 /* only do something if we have a bulk out endpoint */
227 if (!port->bulk_out_size)
228 return -ENODEV;
229
Johan Hovold1a1405e2010-03-17 23:06:01 +0100230 if (!count)
Alan Coxae643872008-07-22 11:11:55 +0100231 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Stefani Seibold119eecc2009-12-23 09:10:48 +0100233 count = kfifo_in_locked(&port->write_fifo, buf, count, &port->lock);
David VomLehn8e8dce02009-08-28 12:54:27 -0700234 result = usb_serial_generic_write_start(port);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200235 if (result)
236 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200238 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500240EXPORT_SYMBOL_GPL(usb_serial_generic_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Alan Coxae643872008-07-22 11:11:55 +0100242int usb_serial_generic_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
Alan Cox95da3102008-07-22 11:09:07 +0100244 struct usb_serial_port *port = tty->driver_data;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500245 unsigned long flags;
Johan Hovold25d514c2010-03-17 23:06:07 +0100246 int room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100248 if (!port->bulk_out_size)
249 return 0;
250
Jason Wessel715b1dc2009-05-11 15:24:07 -0500251 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200252 room = kfifo_avail(&port->write_fifo);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500253 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700255 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room);
Alan Coxa5b6f602008-04-08 17:16:06 +0100256 return room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
258
Alan Cox95da3102008-07-22 11:09:07 +0100259int usb_serial_generic_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
Alan Cox95da3102008-07-22 11:09:07 +0100261 struct usb_serial_port *port = tty->driver_data;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500262 unsigned long flags;
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100263 int chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100265 if (!port->bulk_out_size)
266 return 0;
267
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100268 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200269 chars = kfifo_len(&port->write_fifo) + port->tx_bytes;
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100270 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700272 dev_dbg(&port->dev, "%s - returns %d\n", __func__, chars);
Alan Cox95da3102008-07-22 11:09:07 +0100273 return chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
275
Johan Hovoldd83b4052011-11-06 19:06:37 +0100276static int usb_serial_generic_submit_read_urb(struct usb_serial_port *port,
277 int index, gfp_t mem_flags)
278{
279 int res;
280
281 if (!test_and_clear_bit(index, &port->read_urbs_free))
282 return 0;
283
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700284 dev_dbg(&port->dev, "%s - port %d, urb %d\n", __func__,
285 port->number, 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;
325 struct tty_struct *tty;
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;
331
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100332 tty = tty_port_tty_get(&port->port);
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500333 if (!tty)
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100334 return;
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200335
Alan Cox4cd1de02009-07-09 13:35:52 +0100336 /* 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 cases
338 where the USB serial is not a console anyway */
Jason Wesselbd5afa92010-03-08 21:50:12 -0600339 if (!port->port.console || !port->sysrq)
Alan Cox4cd1de02009-07-09 13:35:52 +0100340 tty_insert_flip_string(tty, ch, urb->actual_length);
341 else {
Alan Cox4cd1de02009-07-09 13:35:52 +0100342 for (i = 0; i < urb->actual_length; i++, ch++) {
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700343 if (!usb_serial_handle_sysrq_char(port, *ch))
Alan Cox4cd1de02009-07-09 13:35:52 +0100344 tty_insert_flip_char(tty, *ch, TTY_NORMAL);
345 }
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200346 }
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500347 tty_flip_buffer_push(tty);
Alan Cox4a90f092008-10-13 10:39:46 +0100348 tty_kref_put(tty);
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
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700365 dev_dbg(&port->dev, "%s - port %d, urb %d, len %d\n",
366 __func__, port->number, i, urb->actual_length);
367
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
Alan Coxae643872008-07-22 11:11:55 +0100374 usb_serial_debug_data(debug, &port->dev, __func__,
375 urb->actual_length, data);
Johan Hovold23154322010-03-17 23:05:57 +0100376 port->serial->type->process_read_urb(urb);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100377
378 /* Throttle the device if requested by tty */
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100379 spin_lock_irqsave(&port->lock, flags);
Alan Coxae643872008-07-22 11:11:55 +0100380 port->throttled = port->throttle_req;
381 if (!port->throttled) {
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800382 spin_unlock_irqrestore(&port->lock, flags);
Johan Hovoldd83b4052011-11-06 19:06:37 +0100383 usb_serial_generic_submit_read_urb(port, i, GFP_ATOMIC);
Alan Coxae643872008-07-22 11:11:55 +0100384 } else
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800385 spin_unlock_irqrestore(&port->lock, flags);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100386}
Luiz Fernando N. Capitulino166ffcc2006-07-11 14:19:25 -0300387EXPORT_SYMBOL_GPL(usb_serial_generic_read_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Alan Cox95da3102008-07-22 11:09:07 +0100389void usb_serial_generic_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
Jason Wessel715b1dc2009-05-11 15:24:07 -0500391 unsigned long flags;
Ming Leicdc97792008-02-24 18:41:47 +0800392 struct usb_serial_port *port = urb->context;
Greg Kroah-Hartmanfbd272252007-06-15 15:44:13 -0700393 int status = urb->status;
Johan Hovold27c7acf2010-05-05 23:57:37 +0200394 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200396 for (i = 0; i < ARRAY_SIZE(port->write_urbs); ++i)
397 if (port->write_urbs[i] == urb)
398 break;
399
400 spin_lock_irqsave(&port->lock, flags);
401 port->tx_bytes -= urb->transfer_buffer_length;
402 set_bit(i, &port->write_urbs_free);
403 spin_unlock_irqrestore(&port->lock, flags);
404
405 if (status) {
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700406 dev_dbg(&port->dev, "%s - non-zero urb status: %d\n",
407 __func__, status);
Johan Hovold25915302010-01-06 15:48:42 -0800408
Jason Wessel715b1dc2009-05-11 15:24:07 -0500409 spin_lock_irqsave(&port->lock, flags);
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200410 kfifo_reset_out(&port->write_fifo);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500411 spin_unlock_irqrestore(&port->lock, flags);
412 } else {
Johan Hovoldc23e5fc2010-05-05 23:58:13 +0200413 usb_serial_generic_write_start(port);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500414 }
415
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700416 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
Greg Kroah-Hartmanbb833982005-11-17 09:48:18 -0800418EXPORT_SYMBOL_GPL(usb_serial_generic_write_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Alan Cox95da3102008-07-22 11:09:07 +0100420void usb_serial_generic_throttle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100421{
Alan Cox95da3102008-07-22 11:09:07 +0100422 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100423 unsigned long flags;
424
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100425 /* Set the throttle request flag. It will be picked up
426 * by usb_serial_generic_read_bulk_callback(). */
427 spin_lock_irqsave(&port->lock, flags);
428 port->throttle_req = 1;
429 spin_unlock_irqrestore(&port->lock, flags);
430}
Johan Hovoldf1e949a2010-03-17 23:05:59 +0100431EXPORT_SYMBOL_GPL(usb_serial_generic_throttle);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100432
Alan Cox95da3102008-07-22 11:09:07 +0100433void usb_serial_generic_unthrottle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100434{
Alan Cox95da3102008-07-22 11:09:07 +0100435 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100436 int was_throttled;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100437
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100438 /* Clear the throttle flags */
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100439 spin_lock_irq(&port->lock);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100440 was_throttled = port->throttled;
441 port->throttled = port->throttle_req = 0;
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100442 spin_unlock_irq(&port->lock);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100443
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100444 if (was_throttled)
Johan Hovoldd83b4052011-11-06 19:06:37 +0100445 usb_serial_generic_submit_read_urbs(port, GFP_KERNEL);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100446}
Johan Hovoldf1e949a2010-03-17 23:05:59 +0100447EXPORT_SYMBOL_GPL(usb_serial_generic_unthrottle);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100448
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700449#ifdef CONFIG_MAGIC_SYSRQ
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700450int usb_serial_handle_sysrq_char(struct usb_serial_port *port, unsigned int ch)
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500451{
Jason Wesselbd5afa92010-03-08 21:50:12 -0600452 if (port->sysrq && port->port.console) {
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500453 if (ch && time_before(jiffies, port->sysrq)) {
Dmitry Torokhovf3353972010-08-17 21:15:47 -0700454 handle_sysrq(ch);
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500455 port->sysrq = 0;
456 return 1;
457 }
458 port->sysrq = 0;
459 }
460 return 0;
461}
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700462#else
Dmitry Torokhov6ee9f4b2010-08-17 21:15:47 -0700463int usb_serial_handle_sysrq_char(struct usb_serial_port *port, unsigned int ch)
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700464{
465 return 0;
466}
467#endif
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500468EXPORT_SYMBOL_GPL(usb_serial_handle_sysrq_char);
469
470int usb_serial_handle_break(struct usb_serial_port *port)
471{
472 if (!port->sysrq) {
473 port->sysrq = jiffies + HZ*5;
474 return 1;
475 }
476 port->sysrq = 0;
477 return 0;
478}
479EXPORT_SYMBOL_GPL(usb_serial_handle_break);
480
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100481/**
482 * usb_serial_handle_dcd_change - handle a change of carrier detect state
483 * @port: usb_serial_port structure for the open port
484 * @tty: tty_struct structure for the port
485 * @status: new carrier detect status, nonzero if active
486 */
487void usb_serial_handle_dcd_change(struct usb_serial_port *usb_port,
488 struct tty_struct *tty, unsigned int status)
489{
490 struct tty_port *port = &usb_port->port;
491
Greg Kroah-Hartman689c2782012-05-15 16:27:18 -0700492 dev_dbg(&usb_port->dev, "%s - port %d, status %d\n", __func__,
493 usb_port->number, status);
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100494
495 if (status)
496 wake_up_interruptible(&port->open_wait);
497 else if (tty && !C_CLOCAL(tty))
498 tty_hangup(tty);
499}
500EXPORT_SYMBOL_GPL(usb_serial_handle_dcd_change);
501
David VomLehn8e8dce02009-08-28 12:54:27 -0700502int usb_serial_generic_resume(struct usb_serial *serial)
503{
504 struct usb_serial_port *port;
505 int i, c = 0, r;
506
507 for (i = 0; i < serial->num_ports; i++) {
508 port = serial->port[i];
Alan Stern1f871582010-02-17 10:05:47 -0500509 if (!test_bit(ASYNCB_INITIALIZED, &port->port.flags))
David VomLehn8e8dce02009-08-28 12:54:27 -0700510 continue;
511
Johan Hovoldd83b4052011-11-06 19:06:37 +0100512 if (port->bulk_in_size) {
513 r = usb_serial_generic_submit_read_urbs(port,
514 GFP_NOIO);
David VomLehn8e8dce02009-08-28 12:54:27 -0700515 if (r < 0)
516 c++;
517 }
518
Johan Hovold27c7acf2010-05-05 23:57:37 +0200519 if (port->bulk_out_size) {
David VomLehn8e8dce02009-08-28 12:54:27 -0700520 r = usb_serial_generic_write_start(port);
521 if (r < 0)
522 c++;
523 }
524 }
525
526 return c ? -EIO : 0;
527}
528EXPORT_SYMBOL_GPL(usb_serial_generic_resume);
529
Alan Sternf9c99bb2009-06-02 11:53:55 -0400530void usb_serial_generic_disconnect(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
532 int i;
533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 /* stop reads and writes on all ports */
Alan Coxae643872008-07-22 11:11:55 +0100535 for (i = 0; i < serial->num_ports; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 generic_cleanup(serial->port[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537}
Bill Pemberton5c7efeb2010-08-05 17:01:10 -0400538EXPORT_SYMBOL_GPL(usb_serial_generic_disconnect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Alan Sternf9c99bb2009-06-02 11:53:55 -0400540void usb_serial_generic_release(struct usb_serial *serial)
541{
Alan Sternf9c99bb2009-06-02 11:53:55 -0400542}