blob: 8f78d7b8e888b2ded9240080a323bcf74494e1ae [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * USB Serial Converter Generic functions
3 *
4 * Copyright (C) 1999 - 2002 Greg Kroah-Hartman (greg@kroah.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License version
8 * 2 as published by the Free Software Foundation.
9 *
10 */
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 -070026static int debug;
27
28#ifdef CONFIG_USB_SERIAL_GENERIC
David Brownellb46d60f2007-03-23 12:51:55 -070029
30static int generic_probe(struct usb_interface *interface,
31 const struct usb_device_id *id);
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033static __u16 vendor = 0x05f9;
34static __u16 product = 0xffff;
35
36module_param(vendor, ushort, 0);
37MODULE_PARM_DESC(vendor, "User specified USB idVendor");
38
39module_param(product, ushort, 0);
40MODULE_PARM_DESC(product, "User specified USB idProduct");
41
42static struct usb_device_id generic_device_ids[2]; /* Initially all zeroes. */
43
Johannes Hölzld9b1b782006-12-17 21:50:24 +010044/* we want to look at all devices, as the vendor/product id can change
45 * depending on the command line argument */
Németh Márton7d40d7e2010-01-10 15:34:24 +010046static const struct usb_device_id generic_serial_ids[] = {
Johannes Hölzld9b1b782006-12-17 21:50:24 +010047 {.driver_info = 42},
48 {}
49};
50
51static struct usb_driver generic_driver = {
52 .name = "usbserial_generic",
53 .probe = generic_probe,
54 .disconnect = usb_serial_disconnect,
55 .id_table = generic_serial_ids,
56 .no_dynamic_id = 1,
57};
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059/* All of the device info needed for the Generic Serial Converter */
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -070060struct usb_serial_driver usb_serial_generic_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070061 .driver = {
62 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070063 .name = "generic",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070064 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 .id_table = generic_device_ids,
Johannes Hölzld9b1b782006-12-17 21:50:24 +010066 .usb_driver = &generic_driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 .num_ports = 1,
Alan Sternf9c99bb2009-06-02 11:53:55 -040068 .disconnect = usb_serial_generic_disconnect,
69 .release = usb_serial_generic_release,
Joris van Rantwijk253ca922007-02-01 20:08:18 +010070 .throttle = usb_serial_generic_throttle,
71 .unthrottle = usb_serial_generic_unthrottle,
Oliver Neukumec225592007-04-27 20:54:57 +020072 .resume = usb_serial_generic_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -070073};
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075static int generic_probe(struct usb_interface *interface,
76 const struct usb_device_id *id)
77{
78 const struct usb_device_id *id_pattern;
79
80 id_pattern = usb_match_id(interface, generic_device_ids);
81 if (id_pattern != NULL)
82 return usb_serial_probe(interface, id);
83 return -ENODEV;
84}
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#endif
86
Alan Coxae643872008-07-22 11:11:55 +010087int usb_serial_generic_register(int _debug)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
89 int retval = 0;
90
91 debug = _debug;
92#ifdef CONFIG_USB_SERIAL_GENERIC
93 generic_device_ids[0].idVendor = vendor;
94 generic_device_ids[0].idProduct = product;
Alan Coxae643872008-07-22 11:11:55 +010095 generic_device_ids[0].match_flags =
96 USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_PRODUCT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98 /* register our generic driver with ourselves */
Alan Coxae643872008-07-22 11:11:55 +010099 retval = usb_serial_register(&usb_serial_generic_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 if (retval)
101 goto exit;
102 retval = usb_register(&generic_driver);
103 if (retval)
104 usb_serial_deregister(&usb_serial_generic_device);
105exit:
106#endif
107 return retval;
108}
109
Alan Coxae643872008-07-22 11:11:55 +0100110void usb_serial_generic_deregister(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
112#ifdef CONFIG_USB_SERIAL_GENERIC
113 /* remove our generic driver */
114 usb_deregister(&generic_driver);
Alan Coxae643872008-07-22 11:11:55 +0100115 usb_serial_deregister(&usb_serial_generic_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#endif
117}
118
Alan Coxa509a7e2009-09-19 13:13:26 -0700119int usb_serial_generic_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
121 struct usb_serial *serial = port->serial;
122 int result = 0;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100123 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Harvey Harrison441b62c2008-03-03 16:08:34 -0800125 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100127 /* clear the throttle flags */
128 spin_lock_irqsave(&port->lock, flags);
129 port->throttled = 0;
130 port->throttle_req = 0;
131 spin_unlock_irqrestore(&port->lock, flags);
132
133 /* if we have a bulk endpoint, start reading from it */
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100134 if (port->bulk_in_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 /* Start reading from the device */
Alan Coxae643872008-07-22 11:11:55 +0100136 usb_fill_bulk_urb(port->read_urb, serial->dev,
137 usb_rcvbulkpipe(serial->dev,
138 port->bulk_in_endpointAddress),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 port->read_urb->transfer_buffer,
140 port->read_urb->transfer_buffer_length,
141 ((serial->type->read_bulk_callback) ?
142 serial->type->read_bulk_callback :
143 usb_serial_generic_read_bulk_callback),
144 port);
145 result = usb_submit_urb(port->read_urb, GFP_KERNEL);
146 if (result)
Alan Coxae643872008-07-22 11:11:55 +0100147 dev_err(&port->dev,
148 "%s - failed resubmitting read urb, error %d\n",
149 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 }
151
152 return result;
153}
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700154EXPORT_SYMBOL_GPL(usb_serial_generic_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Alan Cox95da3102008-07-22 11:09:07 +0100156static void generic_cleanup(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
158 struct usb_serial *serial = port->serial;
159
Harvey Harrison441b62c2008-03-03 16:08:34 -0800160 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 if (serial->dev) {
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100163 /* shutdown any bulk transfers that might be going on */
164 if (port->bulk_out_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 usb_kill_urb(port->write_urb);
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100166 if (port->bulk_in_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 usb_kill_urb(port->read_urb);
168 }
169}
170
Alan Cox335f8512009-06-11 12:26:29 +0100171void usb_serial_generic_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Harvey Harrison441b62c2008-03-03 16:08:34 -0800173 dbg("%s - port %d", __func__, port->number);
Alan Coxae643872008-07-22 11:11:55 +0100174 generic_cleanup(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
176
Jason Wessel715b1dc2009-05-11 15:24:07 -0500177static int usb_serial_multi_urb_write(struct tty_struct *tty,
178 struct usb_serial_port *port, const unsigned char *buf, int count)
179{
180 unsigned long flags;
181 struct urb *urb;
182 unsigned char *buffer;
183 int status;
184 int towrite;
185 int bwrite = 0;
186
187 dbg("%s - port %d", __func__, port->number);
188
189 if (count == 0)
190 dbg("%s - write request of 0 bytes", __func__);
191
192 while (count > 0) {
193 towrite = (count > port->bulk_out_size) ?
194 port->bulk_out_size : count;
195 spin_lock_irqsave(&port->lock, flags);
196 if (port->urbs_in_flight >
197 port->serial->type->max_in_flight_urbs) {
198 spin_unlock_irqrestore(&port->lock, flags);
Joe Perches759f3632010-02-05 16:50:08 -0800199 dbg("%s - write limit hit", __func__);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500200 return bwrite;
201 }
202 port->tx_bytes_flight += towrite;
203 port->urbs_in_flight++;
204 spin_unlock_irqrestore(&port->lock, flags);
205
206 buffer = kmalloc(towrite, GFP_ATOMIC);
207 if (!buffer) {
208 dev_err(&port->dev,
209 "%s ran out of kernel memory for urb ...\n", __func__);
210 goto error_no_buffer;
211 }
212
213 urb = usb_alloc_urb(0, GFP_ATOMIC);
214 if (!urb) {
215 dev_err(&port->dev, "%s - no more free urbs\n",
216 __func__);
217 goto error_no_urb;
218 }
219
220 /* Copy data */
221 memcpy(buffer, buf + bwrite, towrite);
222 usb_serial_debug_data(debug, &port->dev, __func__,
223 towrite, buffer);
224 /* fill the buffer and send it */
225 usb_fill_bulk_urb(urb, port->serial->dev,
226 usb_sndbulkpipe(port->serial->dev,
227 port->bulk_out_endpointAddress),
228 buffer, towrite,
229 usb_serial_generic_write_bulk_callback, port);
230
231 status = usb_submit_urb(urb, GFP_ATOMIC);
232 if (status) {
233 dev_err(&port->dev,
234 "%s - failed submitting write urb, error %d\n",
235 __func__, status);
236 goto error;
237 }
238
239 /* This urb is the responsibility of the host driver now */
240 usb_free_urb(urb);
241 dbg("%s write: %d", __func__, towrite);
242 count -= towrite;
243 bwrite += towrite;
244 }
245 return bwrite;
246
247error:
248 usb_free_urb(urb);
249error_no_urb:
250 kfree(buffer);
251error_no_buffer:
252 spin_lock_irqsave(&port->lock, flags);
253 port->urbs_in_flight--;
254 port->tx_bytes_flight -= towrite;
255 spin_unlock_irqrestore(&port->lock, flags);
256 return bwrite;
257}
258
David VomLehn8e8dce02009-08-28 12:54:27 -0700259/**
260 * usb_serial_generic_write_start - kick off an URB write
261 * @port: Pointer to the &struct usb_serial_port data
262 *
263 * Returns the number of bytes queued on success. This will be zero if there
264 * was nothing to send. Otherwise, it returns a negative errno value
265 */
266static int usb_serial_generic_write_start(struct usb_serial_port *port)
267{
268 struct usb_serial *serial = port->serial;
269 unsigned char *data;
270 int result;
271 int count;
272 unsigned long flags;
273 bool start_io;
274
275 /* Atomically determine whether we can and need to start a USB
276 * operation. */
277 spin_lock_irqsave(&port->lock, flags);
278 if (port->write_urb_busy)
279 start_io = false;
280 else {
Stefani Seibold119eecc2009-12-23 09:10:48 +0100281 start_io = (kfifo_len(&port->write_fifo) != 0);
David VomLehn8e8dce02009-08-28 12:54:27 -0700282 port->write_urb_busy = start_io;
283 }
284 spin_unlock_irqrestore(&port->lock, flags);
285
286 if (!start_io)
287 return 0;
288
289 data = port->write_urb->transfer_buffer;
Stefani Seibold119eecc2009-12-23 09:10:48 +0100290 count = kfifo_out_locked(&port->write_fifo, data, port->bulk_out_size, &port->lock);
David VomLehn8e8dce02009-08-28 12:54:27 -0700291 usb_serial_debug_data(debug, &port->dev, __func__, count, data);
292
293 /* set up our urb */
294 usb_fill_bulk_urb(port->write_urb, serial->dev,
295 usb_sndbulkpipe(serial->dev,
296 port->bulk_out_endpointAddress),
297 port->write_urb->transfer_buffer, count,
298 ((serial->type->write_bulk_callback) ?
299 serial->type->write_bulk_callback :
300 usb_serial_generic_write_bulk_callback),
301 port);
302
303 /* send the data out the bulk port */
304 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
305 if (result) {
306 dev_err(&port->dev,
307 "%s - failed submitting write urb, error %d\n",
308 __func__, result);
309 /* don't have to grab the lock here, as we will
310 retry if != 0 */
311 port->write_urb_busy = 0;
Johan Hovold30af7fb2010-03-17 23:00:42 +0100312 return result;
313 }
David VomLehn8e8dce02009-08-28 12:54:27 -0700314
Johan Hovold30af7fb2010-03-17 23:00:42 +0100315 spin_lock_irqsave(&port->lock, flags);
316 port->tx_bytes_flight += count;
317 spin_unlock_irqrestore(&port->lock, flags);
318
319 return count;
David VomLehn8e8dce02009-08-28 12:54:27 -0700320}
321
322/**
323 * usb_serial_generic_write - generic write function for serial USB devices
324 * @tty: Pointer to &struct tty_struct for the device
325 * @port: Pointer to the &usb_serial_port structure for the device
326 * @buf: Pointer to the data to write
327 * @count: Number of bytes to write
328 *
329 * Returns the number of characters actually written, which may be anything
330 * from zero to @count. If an error occurs, it returns the negative errno
331 * value.
332 */
Alan Cox95da3102008-07-22 11:09:07 +0100333int usb_serial_generic_write(struct tty_struct *tty,
334 struct usb_serial_port *port, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
336 struct usb_serial *serial = port->serial;
337 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Harvey Harrison441b62c2008-03-03 16:08:34 -0800339 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100341 /* only do something if we have a bulk out endpoint */
342 if (!port->bulk_out_size)
343 return -ENODEV;
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 if (count == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800346 dbg("%s - write request of 0 bytes", __func__);
Alan Coxae643872008-07-22 11:11:55 +0100347 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 }
349
David VomLehn8e8dce02009-08-28 12:54:27 -0700350 if (serial->type->max_in_flight_urbs)
351 return usb_serial_multi_urb_write(tty, port,
352 buf, count);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500353
Stefani Seibold119eecc2009-12-23 09:10:48 +0100354 count = kfifo_in_locked(&port->write_fifo, buf, count, &port->lock);
David VomLehn8e8dce02009-08-28 12:54:27 -0700355 result = usb_serial_generic_write_start(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
David VomLehn8e8dce02009-08-28 12:54:27 -0700357 if (result >= 0)
358 result = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
David VomLehn8e8dce02009-08-28 12:54:27 -0700360 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361}
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500362EXPORT_SYMBOL_GPL(usb_serial_generic_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Alan Coxae643872008-07-22 11:11:55 +0100364int usb_serial_generic_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
Alan Cox95da3102008-07-22 11:09:07 +0100366 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 struct usb_serial *serial = port->serial;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500368 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 int room = 0;
370
Harvey Harrison441b62c2008-03-03 16:08:34 -0800371 dbg("%s - port %d", __func__, port->number);
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100372
373 if (!port->bulk_out_size)
374 return 0;
375
Jason Wessel715b1dc2009-05-11 15:24:07 -0500376 spin_lock_irqsave(&port->lock, flags);
377 if (serial->type->max_in_flight_urbs) {
378 if (port->urbs_in_flight < serial->type->max_in_flight_urbs)
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500379 room = port->bulk_out_size *
380 (serial->type->max_in_flight_urbs -
381 port->urbs_in_flight);
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100382 } else {
Stefani Seibold119eecc2009-12-23 09:10:48 +0100383 room = kfifo_avail(&port->write_fifo);
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100384 }
Jason Wessel715b1dc2009-05-11 15:24:07 -0500385 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Harvey Harrison441b62c2008-03-03 16:08:34 -0800387 dbg("%s - returns %d", __func__, room);
Alan Coxa5b6f602008-04-08 17:16:06 +0100388 return room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389}
390
Alan Cox95da3102008-07-22 11:09:07 +0100391int usb_serial_generic_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
Alan Cox95da3102008-07-22 11:09:07 +0100393 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 struct usb_serial *serial = port->serial;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500395 unsigned long flags;
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100396 int chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Harvey Harrison441b62c2008-03-03 16:08:34 -0800398 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100400 if (!port->bulk_out_size)
401 return 0;
402
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100403 spin_lock_irqsave(&port->lock, flags);
404 if (serial->type->max_in_flight_urbs)
Jason Wessel715b1dc2009-05-11 15:24:07 -0500405 chars = port->tx_bytes_flight;
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100406 else
Johan Hovold30af7fb2010-03-17 23:00:42 +0100407 chars = kfifo_len(&port->write_fifo) + port->tx_bytes_flight;
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100408 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Harvey Harrison441b62c2008-03-03 16:08:34 -0800410 dbg("%s - returns %d", __func__, chars);
Alan Cox95da3102008-07-22 11:09:07 +0100411 return chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}
413
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200414
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500415void usb_serial_generic_resubmit_read_urb(struct usb_serial_port *port,
416 gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100418 struct urb *urb = port->read_urb;
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200419 struct usb_serial *serial = port->serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 int result;
421
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100422 /* Continue reading from device */
Alan Coxae643872008-07-22 11:11:55 +0100423 usb_fill_bulk_urb(urb, serial->dev,
424 usb_rcvbulkpipe(serial->dev,
425 port->bulk_in_endpointAddress),
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200426 urb->transfer_buffer,
427 urb->transfer_buffer_length,
Alan Coxae643872008-07-22 11:11:55 +0100428 ((serial->type->read_bulk_callback) ?
429 serial->type->read_bulk_callback :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 usb_serial_generic_read_bulk_callback), port);
Johan Hovold0ae14742010-02-27 14:05:46 +0100431
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200432 result = usb_submit_urb(urb, mem_flags);
Johan Hovold0ae14742010-02-27 14:05:46 +0100433 if (result && result != -EPERM) {
Alan Coxae643872008-07-22 11:11:55 +0100434 dev_err(&port->dev,
435 "%s - failed resubmitting read urb, error %d\n",
436 __func__, result);
Johan Hovold0ae14742010-02-27 14:05:46 +0100437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500439EXPORT_SYMBOL_GPL(usb_serial_generic_resubmit_read_urb);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100440
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200441/* Push data to tty layer and resubmit the bulk read URB */
Alan Cox95da3102008-07-22 11:09:07 +0100442static void flush_and_resubmit_read_urb(struct usb_serial_port *port)
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200443{
444 struct urb *urb = port->read_urb;
Alan Cox4a90f092008-10-13 10:39:46 +0100445 struct tty_struct *tty = tty_port_tty_get(&port->port);
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500446 char *ch = (char *)urb->transfer_buffer;
447 int i;
448
449 if (!tty)
450 goto done;
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200451
Alan Cox4cd1de02009-07-09 13:35:52 +0100452 /* The per character mucking around with sysrq path it too slow for
453 stuff like 3G modems, so shortcircuit it in the 99.9999999% of cases
454 where the USB serial is not a console anyway */
Jason Wesselbd5afa92010-03-08 21:50:12 -0600455 if (!port->port.console || !port->sysrq)
Alan Cox4cd1de02009-07-09 13:35:52 +0100456 tty_insert_flip_string(tty, ch, urb->actual_length);
457 else {
458 /* Push data to tty */
459 for (i = 0; i < urb->actual_length; i++, ch++) {
Alan Cox24a15a62009-07-09 13:36:22 +0100460 if (!usb_serial_handle_sysrq_char(tty, port, *ch))
Alan Cox4cd1de02009-07-09 13:35:52 +0100461 tty_insert_flip_char(tty, *ch, TTY_NORMAL);
462 }
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200463 }
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500464 tty_flip_buffer_push(tty);
Alan Cox4a90f092008-10-13 10:39:46 +0100465 tty_kref_put(tty);
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500466done:
467 usb_serial_generic_resubmit_read_urb(port, GFP_ATOMIC);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200468}
469
Alan Cox95da3102008-07-22 11:09:07 +0100470void usb_serial_generic_read_bulk_callback(struct urb *urb)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100471{
Ming Leicdc97792008-02-24 18:41:47 +0800472 struct usb_serial_port *port = urb->context;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100473 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartmanfbd272252007-06-15 15:44:13 -0700474 int status = urb->status;
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100475 unsigned long flags;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100476
Harvey Harrison441b62c2008-03-03 16:08:34 -0800477 dbg("%s - port %d", __func__, port->number);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100478
Greg Kroah-Hartmanfbd272252007-06-15 15:44:13 -0700479 if (unlikely(status != 0)) {
480 dbg("%s - nonzero read bulk status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800481 __func__, status);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100482 return;
483 }
484
Alan Coxae643872008-07-22 11:11:55 +0100485 usb_serial_debug_data(debug, &port->dev, __func__,
486 urb->actual_length, data);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100487
488 /* Throttle the device if requested by tty */
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100489 spin_lock_irqsave(&port->lock, flags);
Alan Coxae643872008-07-22 11:11:55 +0100490 port->throttled = port->throttle_req;
491 if (!port->throttled) {
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800492 spin_unlock_irqrestore(&port->lock, flags);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200493 flush_and_resubmit_read_urb(port);
Alan Coxae643872008-07-22 11:11:55 +0100494 } else
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800495 spin_unlock_irqrestore(&port->lock, flags);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100496}
Luiz Fernando N. Capitulino166ffcc2006-07-11 14:19:25 -0300497EXPORT_SYMBOL_GPL(usb_serial_generic_read_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Alan Cox95da3102008-07-22 11:09:07 +0100499void usb_serial_generic_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
Jason Wessel715b1dc2009-05-11 15:24:07 -0500501 unsigned long flags;
Ming Leicdc97792008-02-24 18:41:47 +0800502 struct usb_serial_port *port = urb->context;
Greg Kroah-Hartmanfbd272252007-06-15 15:44:13 -0700503 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Harvey Harrison441b62c2008-03-03 16:08:34 -0800505 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Jason Wessel715b1dc2009-05-11 15:24:07 -0500507 if (port->serial->type->max_in_flight_urbs) {
Johan Hovold25915302010-01-06 15:48:42 -0800508 kfree(urb->transfer_buffer);
509
Jason Wessel715b1dc2009-05-11 15:24:07 -0500510 spin_lock_irqsave(&port->lock, flags);
511 --port->urbs_in_flight;
512 port->tx_bytes_flight -= urb->transfer_buffer_length;
513 if (port->urbs_in_flight < 0)
514 port->urbs_in_flight = 0;
515 spin_unlock_irqrestore(&port->lock, flags);
516 } else {
Johan Hovold30af7fb2010-03-17 23:00:42 +0100517 spin_lock_irqsave(&port->lock, flags);
518 port->tx_bytes_flight -= urb->transfer_buffer_length;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500519 port->write_urb_busy = 0;
Johan Hovold30af7fb2010-03-17 23:00:42 +0100520 spin_unlock_irqrestore(&port->lock, flags);
David VomLehn8e8dce02009-08-28 12:54:27 -0700521
Johan Hovold63136202010-02-27 14:06:07 +0100522 if (status)
Stefani Seibold119eecc2009-12-23 09:10:48 +0100523 kfifo_reset_out(&port->write_fifo);
Johan Hovold63136202010-02-27 14:06:07 +0100524 else
David VomLehn8e8dce02009-08-28 12:54:27 -0700525 usb_serial_generic_write_start(port);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500526 }
527
Johan Hovold63136202010-02-27 14:06:07 +0100528 if (status)
529 dbg("%s - non-zero urb status: %d", __func__, status);
530
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700531 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532}
Greg Kroah-Hartmanbb833982005-11-17 09:48:18 -0800533EXPORT_SYMBOL_GPL(usb_serial_generic_write_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Alan Cox95da3102008-07-22 11:09:07 +0100535void usb_serial_generic_throttle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100536{
Alan Cox95da3102008-07-22 11:09:07 +0100537 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100538 unsigned long flags;
539
Harvey Harrison441b62c2008-03-03 16:08:34 -0800540 dbg("%s - port %d", __func__, port->number);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100541
542 /* Set the throttle request flag. It will be picked up
543 * by usb_serial_generic_read_bulk_callback(). */
544 spin_lock_irqsave(&port->lock, flags);
545 port->throttle_req = 1;
546 spin_unlock_irqrestore(&port->lock, flags);
547}
548
Alan Cox95da3102008-07-22 11:09:07 +0100549void usb_serial_generic_unthrottle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100550{
Alan Cox95da3102008-07-22 11:09:07 +0100551 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100552 int was_throttled;
553 unsigned long flags;
554
Harvey Harrison441b62c2008-03-03 16:08:34 -0800555 dbg("%s - port %d", __func__, port->number);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100556
557 /* Clear the throttle flags */
558 spin_lock_irqsave(&port->lock, flags);
559 was_throttled = port->throttled;
560 port->throttled = port->throttle_req = 0;
561 spin_unlock_irqrestore(&port->lock, flags);
562
563 if (was_throttled) {
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200564 /* Resume reading from device */
Joris van Rantwijk63a96092009-09-24 20:20:20 +0200565 flush_and_resubmit_read_urb(port);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100566 }
567}
568
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700569#ifdef CONFIG_MAGIC_SYSRQ
Alan Cox24a15a62009-07-09 13:36:22 +0100570int usb_serial_handle_sysrq_char(struct tty_struct *tty,
571 struct usb_serial_port *port, unsigned int ch)
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500572{
Jason Wesselbd5afa92010-03-08 21:50:12 -0600573 if (port->sysrq && port->port.console) {
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500574 if (ch && time_before(jiffies, port->sysrq)) {
Alan Cox24a15a62009-07-09 13:36:22 +0100575 handle_sysrq(ch, tty);
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500576 port->sysrq = 0;
577 return 1;
578 }
579 port->sysrq = 0;
580 }
581 return 0;
582}
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700583#else
584int usb_serial_handle_sysrq_char(struct tty_struct *tty,
585 struct usb_serial_port *port, unsigned int ch)
586{
587 return 0;
588}
589#endif
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500590EXPORT_SYMBOL_GPL(usb_serial_handle_sysrq_char);
591
592int usb_serial_handle_break(struct usb_serial_port *port)
593{
594 if (!port->sysrq) {
595 port->sysrq = jiffies + HZ*5;
596 return 1;
597 }
598 port->sysrq = 0;
599 return 0;
600}
601EXPORT_SYMBOL_GPL(usb_serial_handle_break);
602
David VomLehn8e8dce02009-08-28 12:54:27 -0700603int usb_serial_generic_resume(struct usb_serial *serial)
604{
605 struct usb_serial_port *port;
606 int i, c = 0, r;
607
608 for (i = 0; i < serial->num_ports; i++) {
609 port = serial->port[i];
Alan Stern1f871582010-02-17 10:05:47 -0500610 if (!test_bit(ASYNCB_INITIALIZED, &port->port.flags))
David VomLehn8e8dce02009-08-28 12:54:27 -0700611 continue;
612
613 if (port->read_urb) {
614 r = usb_submit_urb(port->read_urb, GFP_NOIO);
615 if (r < 0)
616 c++;
617 }
618
619 if (port->write_urb) {
620 r = usb_serial_generic_write_start(port);
621 if (r < 0)
622 c++;
623 }
624 }
625
626 return c ? -EIO : 0;
627}
628EXPORT_SYMBOL_GPL(usb_serial_generic_resume);
629
Alan Sternf9c99bb2009-06-02 11:53:55 -0400630void usb_serial_generic_disconnect(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
632 int i;
633
Harvey Harrison441b62c2008-03-03 16:08:34 -0800634 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
636 /* stop reads and writes on all ports */
Alan Coxae643872008-07-22 11:11:55 +0100637 for (i = 0; i < serial->num_ports; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 generic_cleanup(serial->port[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
Alan Sternf9c99bb2009-06-02 11:53:55 -0400641void usb_serial_generic_release(struct usb_serial *serial)
642{
643 dbg("%s", __func__);
644}