blob: f804acb138ec508f85fe63481b9b6622e084ace1 [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 */
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100133 if (port->bulk_in_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 /* 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) {
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100162 /* shutdown any bulk transfers that might be going on */
163 if (port->bulk_out_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 usb_kill_urb(port->write_urb);
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100165 if (port->bulk_in_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 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
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100336 /* only do something if we have a bulk out endpoint */
337 if (!port->bulk_out_size)
338 return -ENODEV;
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 if (count == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800341 dbg("%s - write request of 0 bytes", __func__);
Alan Coxae643872008-07-22 11:11:55 +0100342 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
344
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);
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100367
368 if (!port->bulk_out_size)
369 return 0;
370
Jason Wessel715b1dc2009-05-11 15:24:07 -0500371 spin_lock_irqsave(&port->lock, flags);
372 if (serial->type->max_in_flight_urbs) {
373 if (port->urbs_in_flight < serial->type->max_in_flight_urbs)
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500374 room = port->bulk_out_size *
375 (serial->type->max_in_flight_urbs -
376 port->urbs_in_flight);
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100377 } else {
Stefani Seibold119eecc2009-12-23 09:10:48 +0100378 room = kfifo_avail(&port->write_fifo);
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100379 }
Jason Wessel715b1dc2009-05-11 15:24:07 -0500380 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Harvey Harrison441b62c2008-03-03 16:08:34 -0800382 dbg("%s - returns %d", __func__, room);
Alan Coxa5b6f602008-04-08 17:16:06 +0100383 return room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384}
385
Alan Cox95da3102008-07-22 11:09:07 +0100386int usb_serial_generic_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
Alan Cox95da3102008-07-22 11:09:07 +0100388 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 struct usb_serial *serial = port->serial;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500390 unsigned long flags;
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100391 int chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Harvey Harrison441b62c2008-03-03 16:08:34 -0800393 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100395 if (!port->bulk_out_size)
396 return 0;
397
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100398 spin_lock_irqsave(&port->lock, flags);
399 if (serial->type->max_in_flight_urbs)
Jason Wessel715b1dc2009-05-11 15:24:07 -0500400 chars = port->tx_bytes_flight;
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100401 else
Stefani Seibold119eecc2009-12-23 09:10:48 +0100402 chars = kfifo_len(&port->write_fifo);
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100403 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Harvey Harrison441b62c2008-03-03 16:08:34 -0800405 dbg("%s - returns %d", __func__, chars);
Alan Cox95da3102008-07-22 11:09:07 +0100406 return chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407}
408
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200409
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500410void usb_serial_generic_resubmit_read_urb(struct usb_serial_port *port,
411 gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100413 struct urb *urb = port->read_urb;
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200414 struct usb_serial *serial = port->serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 int result;
416
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100417 /* Continue reading from device */
Alan Coxae643872008-07-22 11:11:55 +0100418 usb_fill_bulk_urb(urb, serial->dev,
419 usb_rcvbulkpipe(serial->dev,
420 port->bulk_in_endpointAddress),
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200421 urb->transfer_buffer,
422 urb->transfer_buffer_length,
Alan Coxae643872008-07-22 11:11:55 +0100423 ((serial->type->read_bulk_callback) ?
424 serial->type->read_bulk_callback :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 usb_serial_generic_read_bulk_callback), port);
Johan Hovold0ae14742010-02-27 14:05:46 +0100426
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200427 result = usb_submit_urb(urb, mem_flags);
Johan Hovold0ae14742010-02-27 14:05:46 +0100428 if (result && result != -EPERM) {
Alan Coxae643872008-07-22 11:11:55 +0100429 dev_err(&port->dev,
430 "%s - failed resubmitting read urb, error %d\n",
431 __func__, result);
Johan Hovold0ae14742010-02-27 14:05:46 +0100432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500434EXPORT_SYMBOL_GPL(usb_serial_generic_resubmit_read_urb);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100435
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200436/* Push data to tty layer and resubmit the bulk read URB */
Alan Cox95da3102008-07-22 11:09:07 +0100437static void flush_and_resubmit_read_urb(struct usb_serial_port *port)
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200438{
439 struct urb *urb = port->read_urb;
Alan Cox4a90f092008-10-13 10:39:46 +0100440 struct tty_struct *tty = tty_port_tty_get(&port->port);
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500441 char *ch = (char *)urb->transfer_buffer;
442 int i;
443
444 if (!tty)
445 goto done;
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200446
Alan Cox4cd1de02009-07-09 13:35:52 +0100447 /* The per character mucking around with sysrq path it too slow for
448 stuff like 3G modems, so shortcircuit it in the 99.9999999% of cases
449 where the USB serial is not a console anyway */
450 if (!port->console || !port->sysrq)
451 tty_insert_flip_string(tty, ch, urb->actual_length);
452 else {
453 /* Push data to tty */
454 for (i = 0; i < urb->actual_length; i++, ch++) {
Alan Cox24a15a62009-07-09 13:36:22 +0100455 if (!usb_serial_handle_sysrq_char(tty, port, *ch))
Alan Cox4cd1de02009-07-09 13:35:52 +0100456 tty_insert_flip_char(tty, *ch, TTY_NORMAL);
457 }
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200458 }
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500459 tty_flip_buffer_push(tty);
Alan Cox4a90f092008-10-13 10:39:46 +0100460 tty_kref_put(tty);
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500461done:
462 usb_serial_generic_resubmit_read_urb(port, GFP_ATOMIC);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200463}
464
Alan Cox95da3102008-07-22 11:09:07 +0100465void usb_serial_generic_read_bulk_callback(struct urb *urb)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100466{
Ming Leicdc97792008-02-24 18:41:47 +0800467 struct usb_serial_port *port = urb->context;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100468 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartmanfbd272252007-06-15 15:44:13 -0700469 int status = urb->status;
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100470 unsigned long flags;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100471
Harvey Harrison441b62c2008-03-03 16:08:34 -0800472 dbg("%s - port %d", __func__, port->number);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100473
Greg Kroah-Hartmanfbd272252007-06-15 15:44:13 -0700474 if (unlikely(status != 0)) {
475 dbg("%s - nonzero read bulk status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800476 __func__, status);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100477 return;
478 }
479
Alan Coxae643872008-07-22 11:11:55 +0100480 usb_serial_debug_data(debug, &port->dev, __func__,
481 urb->actual_length, data);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100482
483 /* Throttle the device if requested by tty */
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100484 spin_lock_irqsave(&port->lock, flags);
Alan Coxae643872008-07-22 11:11:55 +0100485 port->throttled = port->throttle_req;
486 if (!port->throttled) {
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800487 spin_unlock_irqrestore(&port->lock, flags);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200488 flush_and_resubmit_read_urb(port);
Alan Coxae643872008-07-22 11:11:55 +0100489 } else
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800490 spin_unlock_irqrestore(&port->lock, flags);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100491}
Luiz Fernando N. Capitulino166ffcc2006-07-11 14:19:25 -0300492EXPORT_SYMBOL_GPL(usb_serial_generic_read_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Alan Cox95da3102008-07-22 11:09:07 +0100494void usb_serial_generic_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
Jason Wessel715b1dc2009-05-11 15:24:07 -0500496 unsigned long flags;
Ming Leicdc97792008-02-24 18:41:47 +0800497 struct usb_serial_port *port = urb->context;
Greg Kroah-Hartmanfbd272252007-06-15 15:44:13 -0700498 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Harvey Harrison441b62c2008-03-03 16:08:34 -0800500 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Jason Wessel715b1dc2009-05-11 15:24:07 -0500502 if (port->serial->type->max_in_flight_urbs) {
Johan Hovold25915302010-01-06 15:48:42 -0800503 kfree(urb->transfer_buffer);
504
Jason Wessel715b1dc2009-05-11 15:24:07 -0500505 spin_lock_irqsave(&port->lock, flags);
506 --port->urbs_in_flight;
507 port->tx_bytes_flight -= urb->transfer_buffer_length;
508 if (port->urbs_in_flight < 0)
509 port->urbs_in_flight = 0;
510 spin_unlock_irqrestore(&port->lock, flags);
511 } else {
Jason Wessel715b1dc2009-05-11 15:24:07 -0500512 port->write_urb_busy = 0;
David VomLehn8e8dce02009-08-28 12:54:27 -0700513
Johan Hovold63136202010-02-27 14:06:07 +0100514 if (status)
Stefani Seibold119eecc2009-12-23 09:10:48 +0100515 kfifo_reset_out(&port->write_fifo);
Johan Hovold63136202010-02-27 14:06:07 +0100516 else
David VomLehn8e8dce02009-08-28 12:54:27 -0700517 usb_serial_generic_write_start(port);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500518 }
519
Johan Hovold63136202010-02-27 14:06:07 +0100520 if (status)
521 dbg("%s - non-zero urb status: %d", __func__, status);
522
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700523 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524}
Greg Kroah-Hartmanbb833982005-11-17 09:48:18 -0800525EXPORT_SYMBOL_GPL(usb_serial_generic_write_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Alan Cox95da3102008-07-22 11:09:07 +0100527void usb_serial_generic_throttle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100528{
Alan Cox95da3102008-07-22 11:09:07 +0100529 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100530 unsigned long flags;
531
Harvey Harrison441b62c2008-03-03 16:08:34 -0800532 dbg("%s - port %d", __func__, port->number);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100533
534 /* Set the throttle request flag. It will be picked up
535 * by usb_serial_generic_read_bulk_callback(). */
536 spin_lock_irqsave(&port->lock, flags);
537 port->throttle_req = 1;
538 spin_unlock_irqrestore(&port->lock, flags);
539}
540
Alan Cox95da3102008-07-22 11:09:07 +0100541void usb_serial_generic_unthrottle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100542{
Alan Cox95da3102008-07-22 11:09:07 +0100543 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100544 int was_throttled;
545 unsigned long flags;
546
Harvey Harrison441b62c2008-03-03 16:08:34 -0800547 dbg("%s - port %d", __func__, port->number);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100548
549 /* Clear the throttle flags */
550 spin_lock_irqsave(&port->lock, flags);
551 was_throttled = port->throttled;
552 port->throttled = port->throttle_req = 0;
553 spin_unlock_irqrestore(&port->lock, flags);
554
555 if (was_throttled) {
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200556 /* Resume reading from device */
Joris van Rantwijk63a96092009-09-24 20:20:20 +0200557 flush_and_resubmit_read_urb(port);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100558 }
559}
560
Alan Cox24a15a62009-07-09 13:36:22 +0100561int usb_serial_handle_sysrq_char(struct tty_struct *tty,
562 struct usb_serial_port *port, unsigned int ch)
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500563{
Jason Wessel568d4222009-05-29 13:34:17 -0500564 if (port->sysrq && port->console) {
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500565 if (ch && time_before(jiffies, port->sysrq)) {
Alan Cox24a15a62009-07-09 13:36:22 +0100566 handle_sysrq(ch, tty);
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500567 port->sysrq = 0;
568 return 1;
569 }
570 port->sysrq = 0;
571 }
572 return 0;
573}
574EXPORT_SYMBOL_GPL(usb_serial_handle_sysrq_char);
575
576int usb_serial_handle_break(struct usb_serial_port *port)
577{
578 if (!port->sysrq) {
579 port->sysrq = jiffies + HZ*5;
580 return 1;
581 }
582 port->sysrq = 0;
583 return 0;
584}
585EXPORT_SYMBOL_GPL(usb_serial_handle_break);
586
David VomLehn8e8dce02009-08-28 12:54:27 -0700587int usb_serial_generic_resume(struct usb_serial *serial)
588{
589 struct usb_serial_port *port;
590 int i, c = 0, r;
591
592 for (i = 0; i < serial->num_ports; i++) {
593 port = serial->port[i];
Alan Stern1f871582010-02-17 10:05:47 -0500594 if (!test_bit(ASYNCB_INITIALIZED, &port->port.flags))
David VomLehn8e8dce02009-08-28 12:54:27 -0700595 continue;
596
597 if (port->read_urb) {
598 r = usb_submit_urb(port->read_urb, GFP_NOIO);
599 if (r < 0)
600 c++;
601 }
602
603 if (port->write_urb) {
604 r = usb_serial_generic_write_start(port);
605 if (r < 0)
606 c++;
607 }
608 }
609
610 return c ? -EIO : 0;
611}
612EXPORT_SYMBOL_GPL(usb_serial_generic_resume);
613
Alan Sternf9c99bb2009-06-02 11:53:55 -0400614void usb_serial_generic_disconnect(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
616 int i;
617
Harvey Harrison441b62c2008-03-03 16:08:34 -0800618 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620 /* stop reads and writes on all ports */
Alan Coxae643872008-07-22 11:11:55 +0100621 for (i = 0; i < serial->num_ports; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 generic_cleanup(serial->port[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
624
Alan Sternf9c99bb2009-06-02 11:53:55 -0400625void usb_serial_generic_release(struct usb_serial *serial)
626{
627 dbg("%s", __func__);
628}