blob: bbe005cefcfbee6fc27d139541146c7174999468 [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>
Johannes Hölzld9b1b782006-12-17 21:50:24 +010023
Linus Torvalds1da177e2005-04-16 15:20:36 -070024static int debug;
25
26#ifdef CONFIG_USB_SERIAL_GENERIC
David Brownellb46d60f2007-03-23 12:51:55 -070027
28static int generic_probe(struct usb_interface *interface,
29 const struct usb_device_id *id);
30
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 */
44static struct usb_device_id generic_serial_ids[] = {
45 {.driver_info = 42},
46 {}
47};
48
49static struct usb_driver generic_driver = {
50 .name = "usbserial_generic",
51 .probe = generic_probe,
52 .disconnect = usb_serial_disconnect,
53 .id_table = generic_serial_ids,
54 .no_dynamic_id = 1,
55};
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057/* All of the device info needed for the Generic Serial Converter */
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -070058struct usb_serial_driver usb_serial_generic_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070059 .driver = {
60 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070061 .name = "generic",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070062 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 .id_table = generic_device_ids,
Johannes Hölzld9b1b782006-12-17 21:50:24 +010064 .usb_driver = &generic_driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 .num_ports = 1,
Alan Sternf9c99bb2009-06-02 11:53:55 -040066 .disconnect = usb_serial_generic_disconnect,
67 .release = usb_serial_generic_release,
Joris van Rantwijk253ca922007-02-01 20:08:18 +010068 .throttle = usb_serial_generic_throttle,
69 .unthrottle = usb_serial_generic_unthrottle,
Oliver Neukumec225592007-04-27 20:54:57 +020070 .resume = usb_serial_generic_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -070071};
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073static int generic_probe(struct usb_interface *interface,
74 const struct usb_device_id *id)
75{
76 const struct usb_device_id *id_pattern;
77
78 id_pattern = usb_match_id(interface, generic_device_ids);
79 if (id_pattern != NULL)
80 return usb_serial_probe(interface, id);
81 return -ENODEV;
82}
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#endif
84
Alan Coxae643872008-07-22 11:11:55 +010085int usb_serial_generic_register(int _debug)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
87 int retval = 0;
88
89 debug = _debug;
90#ifdef CONFIG_USB_SERIAL_GENERIC
91 generic_device_ids[0].idVendor = vendor;
92 generic_device_ids[0].idProduct = product;
Alan Coxae643872008-07-22 11:11:55 +010093 generic_device_ids[0].match_flags =
94 USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_PRODUCT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96 /* register our generic driver with ourselves */
Alan Coxae643872008-07-22 11:11:55 +010097 retval = usb_serial_register(&usb_serial_generic_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 if (retval)
99 goto exit;
100 retval = usb_register(&generic_driver);
101 if (retval)
102 usb_serial_deregister(&usb_serial_generic_device);
103exit:
104#endif
105 return retval;
106}
107
Alan Coxae643872008-07-22 11:11:55 +0100108void usb_serial_generic_deregister(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
110#ifdef CONFIG_USB_SERIAL_GENERIC
111 /* remove our generic driver */
112 usb_deregister(&generic_driver);
Alan Coxae643872008-07-22 11:11:55 +0100113 usb_serial_deregister(&usb_serial_generic_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#endif
115}
116
Alan Coxa509a7e2009-09-19 13:13:26 -0700117int usb_serial_generic_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
119 struct usb_serial *serial = port->serial;
120 int result = 0;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100121 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Harvey Harrison441b62c2008-03-03 16:08:34 -0800123 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100125 /* clear the throttle flags */
126 spin_lock_irqsave(&port->lock, flags);
127 port->throttled = 0;
128 port->throttle_req = 0;
129 spin_unlock_irqrestore(&port->lock, flags);
130
131 /* if we have a bulk endpoint, start reading from it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 if (serial->num_bulk_in) {
133 /* Start reading from the device */
Alan Coxae643872008-07-22 11:11:55 +0100134 usb_fill_bulk_urb(port->read_urb, serial->dev,
135 usb_rcvbulkpipe(serial->dev,
136 port->bulk_in_endpointAddress),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 port->read_urb->transfer_buffer,
138 port->read_urb->transfer_buffer_length,
139 ((serial->type->read_bulk_callback) ?
140 serial->type->read_bulk_callback :
141 usb_serial_generic_read_bulk_callback),
142 port);
143 result = usb_submit_urb(port->read_urb, GFP_KERNEL);
144 if (result)
Alan Coxae643872008-07-22 11:11:55 +0100145 dev_err(&port->dev,
146 "%s - failed resubmitting read urb, error %d\n",
147 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 }
149
150 return result;
151}
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700152EXPORT_SYMBOL_GPL(usb_serial_generic_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Alan Cox95da3102008-07-22 11:09:07 +0100154static void generic_cleanup(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
156 struct usb_serial *serial = port->serial;
157
Harvey Harrison441b62c2008-03-03 16:08:34 -0800158 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 if (serial->dev) {
161 /* shutdown any bulk reads that might be going on */
162 if (serial->num_bulk_out)
163 usb_kill_urb(port->write_urb);
164 if (serial->num_bulk_in)
165 usb_kill_urb(port->read_urb);
166 }
167}
168
Alan Cox335f8512009-06-11 12:26:29 +0100169void usb_serial_generic_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
Harvey Harrison441b62c2008-03-03 16:08:34 -0800171 dbg("%s - port %d", __func__, port->number);
Alan Coxae643872008-07-22 11:11:55 +0100172 generic_cleanup(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
Jason Wessel715b1dc2009-05-11 15:24:07 -0500175static int usb_serial_multi_urb_write(struct tty_struct *tty,
176 struct usb_serial_port *port, const unsigned char *buf, int count)
177{
178 unsigned long flags;
179 struct urb *urb;
180 unsigned char *buffer;
181 int status;
182 int towrite;
183 int bwrite = 0;
184
185 dbg("%s - port %d", __func__, port->number);
186
187 if (count == 0)
188 dbg("%s - write request of 0 bytes", __func__);
189
190 while (count > 0) {
191 towrite = (count > port->bulk_out_size) ?
192 port->bulk_out_size : count;
193 spin_lock_irqsave(&port->lock, flags);
194 if (port->urbs_in_flight >
195 port->serial->type->max_in_flight_urbs) {
196 spin_unlock_irqrestore(&port->lock, flags);
197 dbg("%s - write limit hit\n", __func__);
198 return bwrite;
199 }
200 port->tx_bytes_flight += towrite;
201 port->urbs_in_flight++;
202 spin_unlock_irqrestore(&port->lock, flags);
203
204 buffer = kmalloc(towrite, GFP_ATOMIC);
205 if (!buffer) {
206 dev_err(&port->dev,
207 "%s ran out of kernel memory for urb ...\n", __func__);
208 goto error_no_buffer;
209 }
210
211 urb = usb_alloc_urb(0, GFP_ATOMIC);
212 if (!urb) {
213 dev_err(&port->dev, "%s - no more free urbs\n",
214 __func__);
215 goto error_no_urb;
216 }
217
218 /* Copy data */
219 memcpy(buffer, buf + bwrite, towrite);
220 usb_serial_debug_data(debug, &port->dev, __func__,
221 towrite, buffer);
222 /* fill the buffer and send it */
223 usb_fill_bulk_urb(urb, port->serial->dev,
224 usb_sndbulkpipe(port->serial->dev,
225 port->bulk_out_endpointAddress),
226 buffer, towrite,
227 usb_serial_generic_write_bulk_callback, port);
228
229 status = usb_submit_urb(urb, GFP_ATOMIC);
230 if (status) {
231 dev_err(&port->dev,
232 "%s - failed submitting write urb, error %d\n",
233 __func__, status);
234 goto error;
235 }
236
237 /* This urb is the responsibility of the host driver now */
238 usb_free_urb(urb);
239 dbg("%s write: %d", __func__, towrite);
240 count -= towrite;
241 bwrite += towrite;
242 }
243 return bwrite;
244
245error:
246 usb_free_urb(urb);
247error_no_urb:
248 kfree(buffer);
249error_no_buffer:
250 spin_lock_irqsave(&port->lock, flags);
251 port->urbs_in_flight--;
252 port->tx_bytes_flight -= towrite;
253 spin_unlock_irqrestore(&port->lock, flags);
254 return bwrite;
255}
256
David VomLehn8e8dce02009-08-28 12:54:27 -0700257/**
258 * usb_serial_generic_write_start - kick off an URB write
259 * @port: Pointer to the &struct usb_serial_port data
260 *
261 * Returns the number of bytes queued on success. This will be zero if there
262 * was nothing to send. Otherwise, it returns a negative errno value
263 */
264static int usb_serial_generic_write_start(struct usb_serial_port *port)
265{
266 struct usb_serial *serial = port->serial;
267 unsigned char *data;
268 int result;
269 int count;
270 unsigned long flags;
271 bool start_io;
272
273 /* Atomically determine whether we can and need to start a USB
274 * operation. */
275 spin_lock_irqsave(&port->lock, flags);
276 if (port->write_urb_busy)
277 start_io = false;
278 else {
279 start_io = (__kfifo_len(port->write_fifo) != 0);
280 port->write_urb_busy = start_io;
281 }
282 spin_unlock_irqrestore(&port->lock, flags);
283
284 if (!start_io)
285 return 0;
286
287 data = port->write_urb->transfer_buffer;
288 count = kfifo_get(port->write_fifo, data, port->bulk_out_size);
289 usb_serial_debug_data(debug, &port->dev, __func__, count, data);
290
291 /* set up our urb */
292 usb_fill_bulk_urb(port->write_urb, serial->dev,
293 usb_sndbulkpipe(serial->dev,
294 port->bulk_out_endpointAddress),
295 port->write_urb->transfer_buffer, count,
296 ((serial->type->write_bulk_callback) ?
297 serial->type->write_bulk_callback :
298 usb_serial_generic_write_bulk_callback),
299 port);
300
301 /* send the data out the bulk port */
302 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
303 if (result) {
304 dev_err(&port->dev,
305 "%s - failed submitting write urb, error %d\n",
306 __func__, result);
307 /* don't have to grab the lock here, as we will
308 retry if != 0 */
309 port->write_urb_busy = 0;
310 } else
311 result = count;
312
313 return result;
314}
315
316/**
317 * usb_serial_generic_write - generic write function for serial USB devices
318 * @tty: Pointer to &struct tty_struct for the device
319 * @port: Pointer to the &usb_serial_port structure for the device
320 * @buf: Pointer to the data to write
321 * @count: Number of bytes to write
322 *
323 * Returns the number of characters actually written, which may be anything
324 * from zero to @count. If an error occurs, it returns the negative errno
325 * value.
326 */
Alan Cox95da3102008-07-22 11:09:07 +0100327int usb_serial_generic_write(struct tty_struct *tty,
328 struct usb_serial_port *port, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
330 struct usb_serial *serial = port->serial;
331 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Harvey Harrison441b62c2008-03-03 16:08:34 -0800333 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 if (count == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800336 dbg("%s - write request of 0 bytes", __func__);
Alan Coxae643872008-07-22 11:11:55 +0100337 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 }
339
340 /* only do something if we have a bulk out endpoint */
David VomLehn8e8dce02009-08-28 12:54:27 -0700341 if (!serial->num_bulk_out)
342 return 0;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500343
David VomLehn8e8dce02009-08-28 12:54:27 -0700344 if (serial->type->max_in_flight_urbs)
345 return usb_serial_multi_urb_write(tty, port,
346 buf, count);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500347
David VomLehn8e8dce02009-08-28 12:54:27 -0700348 count = kfifo_put(port->write_fifo, buf, count);
349 result = usb_serial_generic_write_start(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
David VomLehn8e8dce02009-08-28 12:54:27 -0700351 if (result >= 0)
352 result = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
David VomLehn8e8dce02009-08-28 12:54:27 -0700354 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500356EXPORT_SYMBOL_GPL(usb_serial_generic_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Alan Coxae643872008-07-22 11:11:55 +0100358int usb_serial_generic_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
Alan Cox95da3102008-07-22 11:09:07 +0100360 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 struct usb_serial *serial = port->serial;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500362 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 int room = 0;
364
Harvey Harrison441b62c2008-03-03 16:08:34 -0800365 dbg("%s - port %d", __func__, port->number);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500366 spin_lock_irqsave(&port->lock, flags);
367 if (serial->type->max_in_flight_urbs) {
368 if (port->urbs_in_flight < serial->type->max_in_flight_urbs)
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500369 room = port->bulk_out_size *
370 (serial->type->max_in_flight_urbs -
371 port->urbs_in_flight);
David VomLehn8e8dce02009-08-28 12:54:27 -0700372 } else if (serial->num_bulk_out)
373 room = port->write_fifo->size - __kfifo_len(port->write_fifo);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500374 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Harvey Harrison441b62c2008-03-03 16:08:34 -0800376 dbg("%s - returns %d", __func__, room);
Alan Coxa5b6f602008-04-08 17:16:06 +0100377 return room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378}
379
Alan Cox95da3102008-07-22 11:09:07 +0100380int usb_serial_generic_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Alan Cox95da3102008-07-22 11:09:07 +0100382 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 struct usb_serial *serial = port->serial;
384 int chars = 0;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500385 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Harvey Harrison441b62c2008-03-03 16:08:34 -0800387 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Jason Wessel715b1dc2009-05-11 15:24:07 -0500389 if (serial->type->max_in_flight_urbs) {
390 spin_lock_irqsave(&port->lock, flags);
391 chars = port->tx_bytes_flight;
392 spin_unlock_irqrestore(&port->lock, flags);
David VomLehn8e8dce02009-08-28 12:54:27 -0700393 } else if (serial->num_bulk_out)
394 chars = kfifo_len(port->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Harvey Harrison441b62c2008-03-03 16:08:34 -0800396 dbg("%s - returns %d", __func__, chars);
Alan Cox95da3102008-07-22 11:09:07 +0100397 return chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398}
399
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200400
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500401void usb_serial_generic_resubmit_read_urb(struct usb_serial_port *port,
402 gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100404 struct urb *urb = port->read_urb;
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200405 struct usb_serial *serial = port->serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 int result;
407
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100408 /* Continue reading from device */
Alan Coxae643872008-07-22 11:11:55 +0100409 usb_fill_bulk_urb(urb, serial->dev,
410 usb_rcvbulkpipe(serial->dev,
411 port->bulk_in_endpointAddress),
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200412 urb->transfer_buffer,
413 urb->transfer_buffer_length,
Alan Coxae643872008-07-22 11:11:55 +0100414 ((serial->type->read_bulk_callback) ?
415 serial->type->read_bulk_callback :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 usb_serial_generic_read_bulk_callback), port);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200417 result = usb_submit_urb(urb, mem_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 if (result)
Alan Coxae643872008-07-22 11:11:55 +0100419 dev_err(&port->dev,
420 "%s - failed resubmitting read urb, error %d\n",
421 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500423EXPORT_SYMBOL_GPL(usb_serial_generic_resubmit_read_urb);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100424
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200425/* Push data to tty layer and resubmit the bulk read URB */
Alan Cox95da3102008-07-22 11:09:07 +0100426static void flush_and_resubmit_read_urb(struct usb_serial_port *port)
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200427{
428 struct urb *urb = port->read_urb;
Alan Cox4a90f092008-10-13 10:39:46 +0100429 struct tty_struct *tty = tty_port_tty_get(&port->port);
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500430 char *ch = (char *)urb->transfer_buffer;
431 int i;
432
433 if (!tty)
434 goto done;
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200435
Alan Cox4cd1de02009-07-09 13:35:52 +0100436 /* The per character mucking around with sysrq path it too slow for
437 stuff like 3G modems, so shortcircuit it in the 99.9999999% of cases
438 where the USB serial is not a console anyway */
439 if (!port->console || !port->sysrq)
440 tty_insert_flip_string(tty, ch, urb->actual_length);
441 else {
442 /* Push data to tty */
443 for (i = 0; i < urb->actual_length; i++, ch++) {
Alan Cox24a15a62009-07-09 13:36:22 +0100444 if (!usb_serial_handle_sysrq_char(tty, port, *ch))
Alan Cox4cd1de02009-07-09 13:35:52 +0100445 tty_insert_flip_char(tty, *ch, TTY_NORMAL);
446 }
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200447 }
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500448 tty_flip_buffer_push(tty);
Alan Cox4a90f092008-10-13 10:39:46 +0100449 tty_kref_put(tty);
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500450done:
451 usb_serial_generic_resubmit_read_urb(port, GFP_ATOMIC);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200452}
453
Alan Cox95da3102008-07-22 11:09:07 +0100454void usb_serial_generic_read_bulk_callback(struct urb *urb)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100455{
Ming Leicdc97792008-02-24 18:41:47 +0800456 struct usb_serial_port *port = urb->context;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100457 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartmanfbd272252007-06-15 15:44:13 -0700458 int status = urb->status;
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100459 unsigned long flags;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100460
Harvey Harrison441b62c2008-03-03 16:08:34 -0800461 dbg("%s - port %d", __func__, port->number);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100462
Greg Kroah-Hartmanfbd272252007-06-15 15:44:13 -0700463 if (unlikely(status != 0)) {
464 dbg("%s - nonzero read bulk status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800465 __func__, status);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100466 return;
467 }
468
Alan Coxae643872008-07-22 11:11:55 +0100469 usb_serial_debug_data(debug, &port->dev, __func__,
470 urb->actual_length, data);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100471
472 /* Throttle the device if requested by tty */
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100473 spin_lock_irqsave(&port->lock, flags);
Alan Coxae643872008-07-22 11:11:55 +0100474 port->throttled = port->throttle_req;
475 if (!port->throttled) {
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800476 spin_unlock_irqrestore(&port->lock, flags);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200477 flush_and_resubmit_read_urb(port);
Alan Coxae643872008-07-22 11:11:55 +0100478 } else
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800479 spin_unlock_irqrestore(&port->lock, flags);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100480}
Luiz Fernando N. Capitulino166ffcc2006-07-11 14:19:25 -0300481EXPORT_SYMBOL_GPL(usb_serial_generic_read_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Alan Cox95da3102008-07-22 11:09:07 +0100483void usb_serial_generic_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
Jason Wessel715b1dc2009-05-11 15:24:07 -0500485 unsigned long flags;
Ming Leicdc97792008-02-24 18:41:47 +0800486 struct usb_serial_port *port = urb->context;
Greg Kroah-Hartmanfbd272252007-06-15 15:44:13 -0700487 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Harvey Harrison441b62c2008-03-03 16:08:34 -0800489 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Jason Wessel715b1dc2009-05-11 15:24:07 -0500491 if (port->serial->type->max_in_flight_urbs) {
492 spin_lock_irqsave(&port->lock, flags);
493 --port->urbs_in_flight;
494 port->tx_bytes_flight -= urb->transfer_buffer_length;
495 if (port->urbs_in_flight < 0)
496 port->urbs_in_flight = 0;
497 spin_unlock_irqrestore(&port->lock, flags);
David VomLehn8e8dce02009-08-28 12:54:27 -0700498
499 if (status) {
500 dbg("%s - nonzero multi-urb write bulk status "
501 "received: %d", __func__, status);
502 return;
503 }
Jason Wessel715b1dc2009-05-11 15:24:07 -0500504 } else {
Jason Wessel715b1dc2009-05-11 15:24:07 -0500505 port->write_urb_busy = 0;
David VomLehn8e8dce02009-08-28 12:54:27 -0700506
507 if (status) {
508 dbg("%s - nonzero multi-urb write bulk status "
509 "received: %d", __func__, status);
510 kfifo_reset(port->write_fifo);
511 } else
512 usb_serial_generic_write_start(port);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500513 }
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];
586 if (!port->port.count)
587 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}