blob: 214bf25bc3b5c815665c497ecc2ed78532f2a841 [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>
15#include <linux/tty.h>
16#include <linux/tty_flip.h>
17#include <linux/module.h>
18#include <linux/moduleparam.h>
19#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070020#include <linux/usb/serial.h>
Alan Coxae643872008-07-22 11:11:55 +010021#include <linux/uaccess.h>
David VomLehn8e8dce02009-08-28 12:54:27 -070022#include <linux/kfifo.h>
Alan Stern1f871582010-02-17 10:05:47 -050023#include <linux/serial.h>
Johannes Hölzld9b1b782006-12-17 21:50:24 +010024
Linus Torvalds1da177e2005-04-16 15:20:36 -070025static int debug;
26
27#ifdef CONFIG_USB_SERIAL_GENERIC
David Brownellb46d60f2007-03-23 12:51:55 -070028
29static int generic_probe(struct usb_interface *interface,
30 const struct usb_device_id *id);
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032static __u16 vendor = 0x05f9;
33static __u16 product = 0xffff;
34
35module_param(vendor, ushort, 0);
36MODULE_PARM_DESC(vendor, "User specified USB idVendor");
37
38module_param(product, ushort, 0);
39MODULE_PARM_DESC(product, "User specified USB idProduct");
40
41static struct usb_device_id generic_device_ids[2]; /* Initially all zeroes. */
42
Johannes Hölzld9b1b782006-12-17 21:50:24 +010043/* we want to look at all devices, as the vendor/product id can change
44 * depending on the command line argument */
Németh Márton7d40d7e2010-01-10 15:34:24 +010045static const struct usb_device_id generic_serial_ids[] = {
Johannes Hölzld9b1b782006-12-17 21:50:24 +010046 {.driver_info = 42},
47 {}
48};
49
50static struct usb_driver generic_driver = {
51 .name = "usbserial_generic",
52 .probe = generic_probe,
53 .disconnect = usb_serial_disconnect,
54 .id_table = generic_serial_ids,
55 .no_dynamic_id = 1,
56};
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058/* All of the device info needed for the Generic Serial Converter */
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -070059struct usb_serial_driver usb_serial_generic_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070060 .driver = {
61 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070062 .name = "generic",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070063 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 .id_table = generic_device_ids,
Johannes Hölzld9b1b782006-12-17 21:50:24 +010065 .usb_driver = &generic_driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 .num_ports = 1,
Alan Sternf9c99bb2009-06-02 11:53:55 -040067 .disconnect = usb_serial_generic_disconnect,
68 .release = usb_serial_generic_release,
Joris van Rantwijk253ca922007-02-01 20:08:18 +010069 .throttle = usb_serial_generic_throttle,
70 .unthrottle = usb_serial_generic_unthrottle,
Oliver Neukumec225592007-04-27 20:54:57 +020071 .resume = usb_serial_generic_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -070072};
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074static int generic_probe(struct usb_interface *interface,
75 const struct usb_device_id *id)
76{
77 const struct usb_device_id *id_pattern;
78
79 id_pattern = usb_match_id(interface, generic_device_ids);
80 if (id_pattern != NULL)
81 return usb_serial_probe(interface, id);
82 return -ENODEV;
83}
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#endif
85
Alan Coxae643872008-07-22 11:11:55 +010086int usb_serial_generic_register(int _debug)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
88 int retval = 0;
89
90 debug = _debug;
91#ifdef CONFIG_USB_SERIAL_GENERIC
92 generic_device_ids[0].idVendor = vendor;
93 generic_device_ids[0].idProduct = product;
Alan Coxae643872008-07-22 11:11:55 +010094 generic_device_ids[0].match_flags =
95 USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_PRODUCT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97 /* register our generic driver with ourselves */
Alan Coxae643872008-07-22 11:11:55 +010098 retval = usb_serial_register(&usb_serial_generic_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 if (retval)
100 goto exit;
101 retval = usb_register(&generic_driver);
102 if (retval)
103 usb_serial_deregister(&usb_serial_generic_device);
104exit:
105#endif
106 return retval;
107}
108
Alan Coxae643872008-07-22 11:11:55 +0100109void usb_serial_generic_deregister(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
111#ifdef CONFIG_USB_SERIAL_GENERIC
112 /* remove our generic driver */
113 usb_deregister(&generic_driver);
Alan Coxae643872008-07-22 11:11:55 +0100114 usb_serial_deregister(&usb_serial_generic_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#endif
116}
117
Alan Coxa509a7e2009-09-19 13:13:26 -0700118int usb_serial_generic_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
120 struct usb_serial *serial = port->serial;
121 int result = 0;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100122 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Harvey Harrison441b62c2008-03-03 16:08:34 -0800124 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100126 /* clear the throttle flags */
127 spin_lock_irqsave(&port->lock, flags);
128 port->throttled = 0;
129 port->throttle_req = 0;
130 spin_unlock_irqrestore(&port->lock, flags);
131
132 /* if we have a bulk endpoint, start reading from it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 if (serial->num_bulk_in) {
134 /* Start reading from the device */
Alan Coxae643872008-07-22 11:11:55 +0100135 usb_fill_bulk_urb(port->read_urb, serial->dev,
136 usb_rcvbulkpipe(serial->dev,
137 port->bulk_in_endpointAddress),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 port->read_urb->transfer_buffer,
139 port->read_urb->transfer_buffer_length,
140 ((serial->type->read_bulk_callback) ?
141 serial->type->read_bulk_callback :
142 usb_serial_generic_read_bulk_callback),
143 port);
144 result = usb_submit_urb(port->read_urb, GFP_KERNEL);
145 if (result)
Alan Coxae643872008-07-22 11:11:55 +0100146 dev_err(&port->dev,
147 "%s - failed resubmitting read urb, error %d\n",
148 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 }
150
151 return result;
152}
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700153EXPORT_SYMBOL_GPL(usb_serial_generic_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Alan Cox95da3102008-07-22 11:09:07 +0100155static void generic_cleanup(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
157 struct usb_serial *serial = port->serial;
158
Harvey Harrison441b62c2008-03-03 16:08:34 -0800159 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 if (serial->dev) {
162 /* shutdown any bulk reads that might be going on */
163 if (serial->num_bulk_out)
164 usb_kill_urb(port->write_urb);
165 if (serial->num_bulk_in)
166 usb_kill_urb(port->read_urb);
167 }
168}
169
Alan Cox335f8512009-06-11 12:26:29 +0100170void usb_serial_generic_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
Harvey Harrison441b62c2008-03-03 16:08:34 -0800172 dbg("%s - port %d", __func__, port->number);
Alan Coxae643872008-07-22 11:11:55 +0100173 generic_cleanup(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
Jason Wessel715b1dc2009-05-11 15:24:07 -0500176static int usb_serial_multi_urb_write(struct tty_struct *tty,
177 struct usb_serial_port *port, const unsigned char *buf, int count)
178{
179 unsigned long flags;
180 struct urb *urb;
181 unsigned char *buffer;
182 int status;
183 int towrite;
184 int bwrite = 0;
185
186 dbg("%s - port %d", __func__, port->number);
187
188 if (count == 0)
189 dbg("%s - write request of 0 bytes", __func__);
190
191 while (count > 0) {
192 towrite = (count > port->bulk_out_size) ?
193 port->bulk_out_size : count;
194 spin_lock_irqsave(&port->lock, flags);
195 if (port->urbs_in_flight >
196 port->serial->type->max_in_flight_urbs) {
197 spin_unlock_irqrestore(&port->lock, flags);
Joe Perches759f3632010-02-05 16:50:08 -0800198 dbg("%s - write limit hit", __func__);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500199 return bwrite;
200 }
201 port->tx_bytes_flight += towrite;
202 port->urbs_in_flight++;
203 spin_unlock_irqrestore(&port->lock, flags);
204
205 buffer = kmalloc(towrite, GFP_ATOMIC);
206 if (!buffer) {
207 dev_err(&port->dev,
208 "%s ran out of kernel memory for urb ...\n", __func__);
209 goto error_no_buffer;
210 }
211
212 urb = usb_alloc_urb(0, GFP_ATOMIC);
213 if (!urb) {
214 dev_err(&port->dev, "%s - no more free urbs\n",
215 __func__);
216 goto error_no_urb;
217 }
218
219 /* Copy data */
220 memcpy(buffer, buf + bwrite, towrite);
221 usb_serial_debug_data(debug, &port->dev, __func__,
222 towrite, buffer);
223 /* fill the buffer and send it */
224 usb_fill_bulk_urb(urb, port->serial->dev,
225 usb_sndbulkpipe(port->serial->dev,
226 port->bulk_out_endpointAddress),
227 buffer, towrite,
228 usb_serial_generic_write_bulk_callback, port);
229
230 status = usb_submit_urb(urb, GFP_ATOMIC);
231 if (status) {
232 dev_err(&port->dev,
233 "%s - failed submitting write urb, error %d\n",
234 __func__, status);
235 goto error;
236 }
237
238 /* This urb is the responsibility of the host driver now */
239 usb_free_urb(urb);
240 dbg("%s write: %d", __func__, towrite);
241 count -= towrite;
242 bwrite += towrite;
243 }
244 return bwrite;
245
246error:
247 usb_free_urb(urb);
248error_no_urb:
249 kfree(buffer);
250error_no_buffer:
251 spin_lock_irqsave(&port->lock, flags);
252 port->urbs_in_flight--;
253 port->tx_bytes_flight -= towrite;
254 spin_unlock_irqrestore(&port->lock, flags);
255 return bwrite;
256}
257
David VomLehn8e8dce02009-08-28 12:54:27 -0700258/**
259 * usb_serial_generic_write_start - kick off an URB write
260 * @port: Pointer to the &struct usb_serial_port data
261 *
262 * Returns the number of bytes queued on success. This will be zero if there
263 * was nothing to send. Otherwise, it returns a negative errno value
264 */
265static int usb_serial_generic_write_start(struct usb_serial_port *port)
266{
267 struct usb_serial *serial = port->serial;
268 unsigned char *data;
269 int result;
270 int count;
271 unsigned long flags;
272 bool start_io;
273
274 /* Atomically determine whether we can and need to start a USB
275 * operation. */
276 spin_lock_irqsave(&port->lock, flags);
277 if (port->write_urb_busy)
278 start_io = false;
279 else {
Stefani Seibold119eecc2009-12-23 09:10:48 +0100280 start_io = (kfifo_len(&port->write_fifo) != 0);
David VomLehn8e8dce02009-08-28 12:54:27 -0700281 port->write_urb_busy = start_io;
282 }
283 spin_unlock_irqrestore(&port->lock, flags);
284
285 if (!start_io)
286 return 0;
287
288 data = port->write_urb->transfer_buffer;
Stefani Seibold119eecc2009-12-23 09:10:48 +0100289 count = kfifo_out_locked(&port->write_fifo, data, port->bulk_out_size, &port->lock);
David VomLehn8e8dce02009-08-28 12:54:27 -0700290 usb_serial_debug_data(debug, &port->dev, __func__, count, data);
291
292 /* set up our urb */
293 usb_fill_bulk_urb(port->write_urb, serial->dev,
294 usb_sndbulkpipe(serial->dev,
295 port->bulk_out_endpointAddress),
296 port->write_urb->transfer_buffer, count,
297 ((serial->type->write_bulk_callback) ?
298 serial->type->write_bulk_callback :
299 usb_serial_generic_write_bulk_callback),
300 port);
301
302 /* send the data out the bulk port */
303 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
304 if (result) {
305 dev_err(&port->dev,
306 "%s - failed submitting write urb, error %d\n",
307 __func__, result);
308 /* don't have to grab the lock here, as we will
309 retry if != 0 */
310 port->write_urb_busy = 0;
311 } else
312 result = count;
313
314 return result;
315}
316
317/**
318 * usb_serial_generic_write - generic write function for serial USB devices
319 * @tty: Pointer to &struct tty_struct for the device
320 * @port: Pointer to the &usb_serial_port structure for the device
321 * @buf: Pointer to the data to write
322 * @count: Number of bytes to write
323 *
324 * Returns the number of characters actually written, which may be anything
325 * from zero to @count. If an error occurs, it returns the negative errno
326 * value.
327 */
Alan Cox95da3102008-07-22 11:09:07 +0100328int usb_serial_generic_write(struct tty_struct *tty,
329 struct usb_serial_port *port, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
331 struct usb_serial *serial = port->serial;
332 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Harvey Harrison441b62c2008-03-03 16:08:34 -0800334 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 if (count == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800337 dbg("%s - write request of 0 bytes", __func__);
Alan Coxae643872008-07-22 11:11:55 +0100338 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 }
340
341 /* only do something if we have a bulk out endpoint */
David VomLehn8e8dce02009-08-28 12:54:27 -0700342 if (!serial->num_bulk_out)
343 return 0;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500344
David VomLehn8e8dce02009-08-28 12:54:27 -0700345 if (serial->type->max_in_flight_urbs)
346 return usb_serial_multi_urb_write(tty, port,
347 buf, count);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500348
Stefani Seibold119eecc2009-12-23 09:10:48 +0100349 count = kfifo_in_locked(&port->write_fifo, buf, count, &port->lock);
David VomLehn8e8dce02009-08-28 12:54:27 -0700350 result = usb_serial_generic_write_start(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
David VomLehn8e8dce02009-08-28 12:54:27 -0700352 if (result >= 0)
353 result = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
David VomLehn8e8dce02009-08-28 12:54:27 -0700355 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356}
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500357EXPORT_SYMBOL_GPL(usb_serial_generic_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Alan Coxae643872008-07-22 11:11:55 +0100359int usb_serial_generic_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
Alan Cox95da3102008-07-22 11:09:07 +0100361 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 struct usb_serial *serial = port->serial;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500363 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 int room = 0;
365
Harvey Harrison441b62c2008-03-03 16:08:34 -0800366 dbg("%s - port %d", __func__, port->number);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500367 spin_lock_irqsave(&port->lock, flags);
368 if (serial->type->max_in_flight_urbs) {
369 if (port->urbs_in_flight < serial->type->max_in_flight_urbs)
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500370 room = port->bulk_out_size *
371 (serial->type->max_in_flight_urbs -
372 port->urbs_in_flight);
David VomLehn8e8dce02009-08-28 12:54:27 -0700373 } else if (serial->num_bulk_out)
Stefani Seibold119eecc2009-12-23 09:10:48 +0100374 room = kfifo_avail(&port->write_fifo);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500375 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Harvey Harrison441b62c2008-03-03 16:08:34 -0800377 dbg("%s - returns %d", __func__, room);
Alan Coxa5b6f602008-04-08 17:16:06 +0100378 return room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380
Alan Cox95da3102008-07-22 11:09:07 +0100381int usb_serial_generic_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Alan Cox95da3102008-07-22 11:09:07 +0100383 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 struct usb_serial *serial = port->serial;
385 int chars = 0;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500386 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Harvey Harrison441b62c2008-03-03 16:08:34 -0800388 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100390 spin_lock_irqsave(&port->lock, flags);
391 if (serial->type->max_in_flight_urbs)
Jason Wessel715b1dc2009-05-11 15:24:07 -0500392 chars = port->tx_bytes_flight;
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100393 else if (serial->num_bulk_out)
Stefani Seibold119eecc2009-12-23 09:10:48 +0100394 chars = kfifo_len(&port->write_fifo);
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100395 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Harvey Harrison441b62c2008-03-03 16:08:34 -0800397 dbg("%s - returns %d", __func__, chars);
Alan Cox95da3102008-07-22 11:09:07 +0100398 return chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
400
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200401
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500402void usb_serial_generic_resubmit_read_urb(struct usb_serial_port *port,
403 gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100405 struct urb *urb = port->read_urb;
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200406 struct usb_serial *serial = port->serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 int result;
408
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100409 /* Continue reading from device */
Alan Coxae643872008-07-22 11:11:55 +0100410 usb_fill_bulk_urb(urb, serial->dev,
411 usb_rcvbulkpipe(serial->dev,
412 port->bulk_in_endpointAddress),
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200413 urb->transfer_buffer,
414 urb->transfer_buffer_length,
Alan Coxae643872008-07-22 11:11:55 +0100415 ((serial->type->read_bulk_callback) ?
416 serial->type->read_bulk_callback :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 usb_serial_generic_read_bulk_callback), port);
Johan Hovold0ae14742010-02-27 14:05:46 +0100418
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200419 result = usb_submit_urb(urb, mem_flags);
Johan Hovold0ae14742010-02-27 14:05:46 +0100420 if (result && result != -EPERM) {
Alan Coxae643872008-07-22 11:11:55 +0100421 dev_err(&port->dev,
422 "%s - failed resubmitting read urb, error %d\n",
423 __func__, result);
Johan Hovold0ae14742010-02-27 14:05:46 +0100424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425}
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500426EXPORT_SYMBOL_GPL(usb_serial_generic_resubmit_read_urb);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100427
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200428/* Push data to tty layer and resubmit the bulk read URB */
Alan Cox95da3102008-07-22 11:09:07 +0100429static void flush_and_resubmit_read_urb(struct usb_serial_port *port)
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200430{
431 struct urb *urb = port->read_urb;
Alan Cox4a90f092008-10-13 10:39:46 +0100432 struct tty_struct *tty = tty_port_tty_get(&port->port);
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500433 char *ch = (char *)urb->transfer_buffer;
434 int i;
435
436 if (!tty)
437 goto done;
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200438
Alan Cox4cd1de02009-07-09 13:35:52 +0100439 /* The per character mucking around with sysrq path it too slow for
440 stuff like 3G modems, so shortcircuit it in the 99.9999999% of cases
441 where the USB serial is not a console anyway */
442 if (!port->console || !port->sysrq)
443 tty_insert_flip_string(tty, ch, urb->actual_length);
444 else {
445 /* Push data to tty */
446 for (i = 0; i < urb->actual_length; i++, ch++) {
Alan Cox24a15a62009-07-09 13:36:22 +0100447 if (!usb_serial_handle_sysrq_char(tty, port, *ch))
Alan Cox4cd1de02009-07-09 13:35:52 +0100448 tty_insert_flip_char(tty, *ch, TTY_NORMAL);
449 }
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200450 }
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500451 tty_flip_buffer_push(tty);
Alan Cox4a90f092008-10-13 10:39:46 +0100452 tty_kref_put(tty);
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500453done:
454 usb_serial_generic_resubmit_read_urb(port, GFP_ATOMIC);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200455}
456
Alan Cox95da3102008-07-22 11:09:07 +0100457void usb_serial_generic_read_bulk_callback(struct urb *urb)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100458{
Ming Leicdc97792008-02-24 18:41:47 +0800459 struct usb_serial_port *port = urb->context;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100460 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartmanfbd272252007-06-15 15:44:13 -0700461 int status = urb->status;
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100462 unsigned long flags;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100463
Harvey Harrison441b62c2008-03-03 16:08:34 -0800464 dbg("%s - port %d", __func__, port->number);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100465
Greg Kroah-Hartmanfbd272252007-06-15 15:44:13 -0700466 if (unlikely(status != 0)) {
467 dbg("%s - nonzero read bulk status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800468 __func__, status);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100469 return;
470 }
471
Alan Coxae643872008-07-22 11:11:55 +0100472 usb_serial_debug_data(debug, &port->dev, __func__,
473 urb->actual_length, data);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100474
475 /* Throttle the device if requested by tty */
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100476 spin_lock_irqsave(&port->lock, flags);
Alan Coxae643872008-07-22 11:11:55 +0100477 port->throttled = port->throttle_req;
478 if (!port->throttled) {
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800479 spin_unlock_irqrestore(&port->lock, flags);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200480 flush_and_resubmit_read_urb(port);
Alan Coxae643872008-07-22 11:11:55 +0100481 } else
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800482 spin_unlock_irqrestore(&port->lock, flags);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100483}
Luiz Fernando N. Capitulino166ffcc2006-07-11 14:19:25 -0300484EXPORT_SYMBOL_GPL(usb_serial_generic_read_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Alan Cox95da3102008-07-22 11:09:07 +0100486void usb_serial_generic_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
Jason Wessel715b1dc2009-05-11 15:24:07 -0500488 unsigned long flags;
Ming Leicdc97792008-02-24 18:41:47 +0800489 struct usb_serial_port *port = urb->context;
Greg Kroah-Hartmanfbd272252007-06-15 15:44:13 -0700490 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Harvey Harrison441b62c2008-03-03 16:08:34 -0800492 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Jason Wessel715b1dc2009-05-11 15:24:07 -0500494 if (port->serial->type->max_in_flight_urbs) {
Johan Hovold25915302010-01-06 15:48:42 -0800495 kfree(urb->transfer_buffer);
496
Jason Wessel715b1dc2009-05-11 15:24:07 -0500497 spin_lock_irqsave(&port->lock, flags);
498 --port->urbs_in_flight;
499 port->tx_bytes_flight -= urb->transfer_buffer_length;
500 if (port->urbs_in_flight < 0)
501 port->urbs_in_flight = 0;
502 spin_unlock_irqrestore(&port->lock, flags);
503 } else {
Jason Wessel715b1dc2009-05-11 15:24:07 -0500504 port->write_urb_busy = 0;
David VomLehn8e8dce02009-08-28 12:54:27 -0700505
Johan Hovold63136202010-02-27 14:06:07 +0100506 if (status)
Stefani Seibold119eecc2009-12-23 09:10:48 +0100507 kfifo_reset_out(&port->write_fifo);
Johan Hovold63136202010-02-27 14:06:07 +0100508 else
David VomLehn8e8dce02009-08-28 12:54:27 -0700509 usb_serial_generic_write_start(port);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500510 }
511
Johan Hovold63136202010-02-27 14:06:07 +0100512 if (status)
513 dbg("%s - non-zero urb status: %d", __func__, status);
514
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700515 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516}
Greg Kroah-Hartmanbb833982005-11-17 09:48:18 -0800517EXPORT_SYMBOL_GPL(usb_serial_generic_write_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Alan Cox95da3102008-07-22 11:09:07 +0100519void usb_serial_generic_throttle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100520{
Alan Cox95da3102008-07-22 11:09:07 +0100521 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100522 unsigned long flags;
523
Harvey Harrison441b62c2008-03-03 16:08:34 -0800524 dbg("%s - port %d", __func__, port->number);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100525
526 /* Set the throttle request flag. It will be picked up
527 * by usb_serial_generic_read_bulk_callback(). */
528 spin_lock_irqsave(&port->lock, flags);
529 port->throttle_req = 1;
530 spin_unlock_irqrestore(&port->lock, flags);
531}
532
Alan Cox95da3102008-07-22 11:09:07 +0100533void usb_serial_generic_unthrottle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100534{
Alan Cox95da3102008-07-22 11:09:07 +0100535 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100536 int was_throttled;
537 unsigned long flags;
538
Harvey Harrison441b62c2008-03-03 16:08:34 -0800539 dbg("%s - port %d", __func__, port->number);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100540
541 /* Clear the throttle flags */
542 spin_lock_irqsave(&port->lock, flags);
543 was_throttled = port->throttled;
544 port->throttled = port->throttle_req = 0;
545 spin_unlock_irqrestore(&port->lock, flags);
546
547 if (was_throttled) {
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200548 /* Resume reading from device */
Joris van Rantwijk63a96092009-09-24 20:20:20 +0200549 flush_and_resubmit_read_urb(port);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100550 }
551}
552
Alan Cox24a15a62009-07-09 13:36:22 +0100553int usb_serial_handle_sysrq_char(struct tty_struct *tty,
554 struct usb_serial_port *port, unsigned int ch)
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500555{
Jason Wessel568d4222009-05-29 13:34:17 -0500556 if (port->sysrq && port->console) {
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500557 if (ch && time_before(jiffies, port->sysrq)) {
Alan Cox24a15a62009-07-09 13:36:22 +0100558 handle_sysrq(ch, tty);
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500559 port->sysrq = 0;
560 return 1;
561 }
562 port->sysrq = 0;
563 }
564 return 0;
565}
566EXPORT_SYMBOL_GPL(usb_serial_handle_sysrq_char);
567
568int usb_serial_handle_break(struct usb_serial_port *port)
569{
570 if (!port->sysrq) {
571 port->sysrq = jiffies + HZ*5;
572 return 1;
573 }
574 port->sysrq = 0;
575 return 0;
576}
577EXPORT_SYMBOL_GPL(usb_serial_handle_break);
578
David VomLehn8e8dce02009-08-28 12:54:27 -0700579int usb_serial_generic_resume(struct usb_serial *serial)
580{
581 struct usb_serial_port *port;
582 int i, c = 0, r;
583
584 for (i = 0; i < serial->num_ports; i++) {
585 port = serial->port[i];
Alan Stern1f871582010-02-17 10:05:47 -0500586 if (!test_bit(ASYNCB_INITIALIZED, &port->port.flags))
David VomLehn8e8dce02009-08-28 12:54:27 -0700587 continue;
588
589 if (port->read_urb) {
590 r = usb_submit_urb(port->read_urb, GFP_NOIO);
591 if (r < 0)
592 c++;
593 }
594
595 if (port->write_urb) {
596 r = usb_serial_generic_write_start(port);
597 if (r < 0)
598 c++;
599 }
600 }
601
602 return c ? -EIO : 0;
603}
604EXPORT_SYMBOL_GPL(usb_serial_generic_resume);
605
Alan Sternf9c99bb2009-06-02 11:53:55 -0400606void usb_serial_generic_disconnect(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607{
608 int i;
609
Harvey Harrison441b62c2008-03-03 16:08:34 -0800610 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
612 /* stop reads and writes on all ports */
Alan Coxae643872008-07-22 11:11:55 +0100613 for (i = 0; i < serial->num_ports; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 generic_cleanup(serial->port[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615}
616
Alan Sternf9c99bb2009-06-02 11:53:55 -0400617void usb_serial_generic_release(struct usb_serial *serial)
618{
619 dbg("%s", __func__);
620}