blob: 1a134f9c64f302528a475406ecf3e7a9907d3c66 [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
Johan Hovold25d514c2010-03-17 23:06:07 +010028#define MAX_TX_URBS 40
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#ifdef CONFIG_USB_SERIAL_GENERIC
David Brownellb46d60f2007-03-23 12:51:55 -070031
32static int generic_probe(struct usb_interface *interface,
33 const struct usb_device_id *id);
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035static __u16 vendor = 0x05f9;
36static __u16 product = 0xffff;
37
38module_param(vendor, ushort, 0);
39MODULE_PARM_DESC(vendor, "User specified USB idVendor");
40
41module_param(product, ushort, 0);
42MODULE_PARM_DESC(product, "User specified USB idProduct");
43
44static struct usb_device_id generic_device_ids[2]; /* Initially all zeroes. */
45
Johannes Hölzld9b1b782006-12-17 21:50:24 +010046/* we want to look at all devices, as the vendor/product id can change
47 * depending on the command line argument */
Németh Márton7d40d7e2010-01-10 15:34:24 +010048static const struct usb_device_id generic_serial_ids[] = {
Johannes Hölzld9b1b782006-12-17 21:50:24 +010049 {.driver_info = 42},
50 {}
51};
52
53static struct usb_driver generic_driver = {
54 .name = "usbserial_generic",
55 .probe = generic_probe,
56 .disconnect = usb_serial_disconnect,
57 .id_table = generic_serial_ids,
58 .no_dynamic_id = 1,
59};
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061/* All of the device info needed for the Generic Serial Converter */
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -070062struct usb_serial_driver usb_serial_generic_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070063 .driver = {
64 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070065 .name = "generic",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070066 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 .id_table = generic_device_ids,
Johannes Hölzld9b1b782006-12-17 21:50:24 +010068 .usb_driver = &generic_driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 .num_ports = 1,
Alan Sternf9c99bb2009-06-02 11:53:55 -040070 .disconnect = usb_serial_generic_disconnect,
71 .release = usb_serial_generic_release,
Joris van Rantwijk253ca922007-02-01 20:08:18 +010072 .throttle = usb_serial_generic_throttle,
73 .unthrottle = usb_serial_generic_unthrottle,
Oliver Neukumec225592007-04-27 20:54:57 +020074 .resume = usb_serial_generic_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -070075};
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077static int generic_probe(struct usb_interface *interface,
78 const struct usb_device_id *id)
79{
80 const struct usb_device_id *id_pattern;
81
82 id_pattern = usb_match_id(interface, generic_device_ids);
83 if (id_pattern != NULL)
84 return usb_serial_probe(interface, id);
85 return -ENODEV;
86}
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#endif
88
Alan Coxae643872008-07-22 11:11:55 +010089int usb_serial_generic_register(int _debug)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
91 int retval = 0;
92
93 debug = _debug;
94#ifdef CONFIG_USB_SERIAL_GENERIC
95 generic_device_ids[0].idVendor = vendor;
96 generic_device_ids[0].idProduct = product;
Alan Coxae643872008-07-22 11:11:55 +010097 generic_device_ids[0].match_flags =
98 USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_PRODUCT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 /* register our generic driver with ourselves */
Alan Coxae643872008-07-22 11:11:55 +0100101 retval = usb_serial_register(&usb_serial_generic_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 if (retval)
103 goto exit;
104 retval = usb_register(&generic_driver);
105 if (retval)
106 usb_serial_deregister(&usb_serial_generic_device);
107exit:
108#endif
109 return retval;
110}
111
Alan Coxae643872008-07-22 11:11:55 +0100112void usb_serial_generic_deregister(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
114#ifdef CONFIG_USB_SERIAL_GENERIC
115 /* remove our generic driver */
116 usb_deregister(&generic_driver);
Alan Coxae643872008-07-22 11:11:55 +0100117 usb_serial_deregister(&usb_serial_generic_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118#endif
119}
120
Alan Coxa509a7e2009-09-19 13:13:26 -0700121int usb_serial_generic_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 int result = 0;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100124 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Harvey Harrison441b62c2008-03-03 16:08:34 -0800126 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100128 /* clear the throttle flags */
129 spin_lock_irqsave(&port->lock, flags);
130 port->throttled = 0;
131 port->throttle_req = 0;
132 spin_unlock_irqrestore(&port->lock, flags);
133
134 /* if we have a bulk endpoint, start reading from it */
Johan Hovold41bd72f2010-03-17 23:05:53 +0100135 if (port->bulk_in_size)
136 result = usb_serial_generic_submit_read_urb(port, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 return result;
139}
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700140EXPORT_SYMBOL_GPL(usb_serial_generic_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Alan Cox95da3102008-07-22 11:09:07 +0100142static void generic_cleanup(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
144 struct usb_serial *serial = port->serial;
Johan Hovoldec3ee502010-03-17 23:00:44 +0100145 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Harvey Harrison441b62c2008-03-03 16:08:34 -0800147 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 if (serial->dev) {
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100150 /* shutdown any bulk transfers that might be going on */
Johan Hovoldec3ee502010-03-17 23:00:44 +0100151 if (port->bulk_out_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 usb_kill_urb(port->write_urb);
Johan Hovoldec3ee502010-03-17 23:00:44 +0100153
154 spin_lock_irqsave(&port->lock, flags);
155 kfifo_reset_out(&port->write_fifo);
156 spin_unlock_irqrestore(&port->lock, flags);
157 }
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100158 if (port->bulk_in_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 usb_kill_urb(port->read_urb);
160 }
161}
162
Alan Cox335f8512009-06-11 12:26:29 +0100163void usb_serial_generic_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Harvey Harrison441b62c2008-03-03 16:08:34 -0800165 dbg("%s - port %d", __func__, port->number);
Alan Coxae643872008-07-22 11:11:55 +0100166 generic_cleanup(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
Johan Hovoldf26788d2010-03-17 23:00:45 +0100168EXPORT_SYMBOL_GPL(usb_serial_generic_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Johan Hovoldeaa3bcb2010-03-17 23:06:08 +0100170int usb_serial_generic_prepare_write_buffer(struct usb_serial_port *port,
171 void **dest, size_t size, const void *src, size_t count)
172{
173 if (!*dest) {
174 size = count;
175 *dest = kmalloc(count, GFP_ATOMIC);
176 if (!*dest) {
177 dev_err(&port->dev, "%s - could not allocate buffer\n",
178 __func__);
179 return -ENOMEM;
180 }
181 }
182 if (src) {
183 count = size;
184 memcpy(*dest, src, size);
185 } else {
186 count = kfifo_out_locked(&port->write_fifo, *dest, size,
187 &port->lock);
188 }
189 return count;
190}
191EXPORT_SYMBOL_GPL(usb_serial_generic_prepare_write_buffer);
192
Jason Wessel715b1dc2009-05-11 15:24:07 -0500193static int usb_serial_multi_urb_write(struct tty_struct *tty,
194 struct usb_serial_port *port, const unsigned char *buf, int count)
195{
196 unsigned long flags;
197 struct urb *urb;
Johan Hovoldeaa3bcb2010-03-17 23:06:08 +0100198 void *buffer;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500199 int status;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500200
Johan Hovold25d514c2010-03-17 23:06:07 +0100201 spin_lock_irqsave(&port->lock, flags);
202 if (port->tx_urbs == MAX_TX_URBS) {
Jason Wessel715b1dc2009-05-11 15:24:07 -0500203 spin_unlock_irqrestore(&port->lock, flags);
Johan Hovold25d514c2010-03-17 23:06:07 +0100204 dbg("%s - write limit hit", __func__);
205 return 0;
206 }
207 port->tx_urbs++;
208 spin_unlock_irqrestore(&port->lock, flags);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500209
Johan Hovold25d514c2010-03-17 23:06:07 +0100210 urb = usb_alloc_urb(0, GFP_ATOMIC);
211 if (!urb) {
212 dev_err(&port->dev, "%s - no free urbs available\n", __func__);
213 status = -ENOMEM;
214 goto err_urb;
215 }
Jason Wessel715b1dc2009-05-11 15:24:07 -0500216
Johan Hovoldeaa3bcb2010-03-17 23:06:08 +0100217 buffer = NULL;
Johan Hovold25d514c2010-03-17 23:06:07 +0100218 count = min_t(int, count, PAGE_SIZE);
Johan Hovoldeaa3bcb2010-03-17 23:06:08 +0100219 count = port->serial->type->prepare_write_buffer(port, &buffer, 0,
220 buf, count);
221 if (count < 0) {
222 status = count;
Johan Hovold25d514c2010-03-17 23:06:07 +0100223 goto err_buf;
224 }
Johan Hovold25d514c2010-03-17 23:06:07 +0100225 usb_serial_debug_data(debug, &port->dev, __func__, count, buffer);
226 usb_fill_bulk_urb(urb, port->serial->dev,
Jason Wessel715b1dc2009-05-11 15:24:07 -0500227 usb_sndbulkpipe(port->serial->dev,
228 port->bulk_out_endpointAddress),
Johan Hovold25d514c2010-03-17 23:06:07 +0100229 buffer, count,
Johan Hovold40f92f02010-03-17 23:06:06 +0100230 port->serial->type->write_bulk_callback, port);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500231
Johan Hovold25d514c2010-03-17 23:06:07 +0100232 status = usb_submit_urb(urb, GFP_ATOMIC);
233 if (status) {
234 dev_err(&port->dev, "%s - error submitting urb: %d\n",
Jason Wessel715b1dc2009-05-11 15:24:07 -0500235 __func__, status);
Johan Hovold25d514c2010-03-17 23:06:07 +0100236 goto err;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500237 }
Jason Wessel715b1dc2009-05-11 15:24:07 -0500238 spin_lock_irqsave(&port->lock, flags);
Johan Hovold25d514c2010-03-17 23:06:07 +0100239 port->tx_bytes += urb->transfer_buffer_length;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500240 spin_unlock_irqrestore(&port->lock, flags);
Johan Hovold25d514c2010-03-17 23:06:07 +0100241
242 usb_free_urb(urb);
243
244 return count;
245err:
246 kfree(buffer);
247err_buf:
248 usb_free_urb(urb);
249err_urb:
250 spin_lock_irqsave(&port->lock, flags);
251 port->tx_urbs--;
252 spin_unlock_irqrestore(&port->lock, flags);
253
254 return status;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500255}
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{
David VomLehn8e8dce02009-08-28 12:54:27 -0700266 int result;
267 int count;
268 unsigned long flags;
David VomLehn8e8dce02009-08-28 12:54:27 -0700269
David VomLehn8e8dce02009-08-28 12:54:27 -0700270 spin_lock_irqsave(&port->lock, flags);
Johan Hovold50a5f702010-03-17 23:06:02 +0100271 if (port->write_urb_busy || !kfifo_len(&port->write_fifo)) {
272 spin_unlock_irqrestore(&port->lock, flags);
David VomLehn8e8dce02009-08-28 12:54:27 -0700273 return 0;
Johan Hovold50a5f702010-03-17 23:06:02 +0100274 }
275 port->write_urb_busy = 1;
276 spin_unlock_irqrestore(&port->lock, flags);
David VomLehn8e8dce02009-08-28 12:54:27 -0700277
Johan Hovoldeaa3bcb2010-03-17 23:06:08 +0100278 count = port->serial->type->prepare_write_buffer(port,
279 &port->write_urb->transfer_buffer,
280 port->bulk_out_size, NULL, 0);
281 usb_serial_debug_data(debug, &port->dev, __func__,
282 count, port->write_urb->transfer_buffer);
Johan Hovold056afc02010-03-17 23:05:54 +0100283 port->write_urb->transfer_buffer_length = count;
David VomLehn8e8dce02009-08-28 12:54:27 -0700284
285 /* send the data out the bulk port */
286 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
287 if (result) {
Johan Hovold1a1405e2010-03-17 23:06:01 +0100288 dev_err(&port->dev, "%s - error submitting urb: %d\n",
David VomLehn8e8dce02009-08-28 12:54:27 -0700289 __func__, result);
290 /* don't have to grab the lock here, as we will
291 retry if != 0 */
292 port->write_urb_busy = 0;
Johan Hovold30af7fb2010-03-17 23:00:42 +0100293 return result;
294 }
David VomLehn8e8dce02009-08-28 12:54:27 -0700295
Johan Hovold30af7fb2010-03-17 23:00:42 +0100296 spin_lock_irqsave(&port->lock, flags);
Johan Hovold25d514c2010-03-17 23:06:07 +0100297 port->tx_bytes += count;
Johan Hovold30af7fb2010-03-17 23:00:42 +0100298 spin_unlock_irqrestore(&port->lock, flags);
299
300 return count;
David VomLehn8e8dce02009-08-28 12:54:27 -0700301}
302
303/**
304 * usb_serial_generic_write - generic write function for serial USB devices
305 * @tty: Pointer to &struct tty_struct for the device
306 * @port: Pointer to the &usb_serial_port structure for the device
307 * @buf: Pointer to the data to write
308 * @count: Number of bytes to write
309 *
310 * Returns the number of characters actually written, which may be anything
311 * from zero to @count. If an error occurs, it returns the negative errno
312 * value.
313 */
Alan Cox95da3102008-07-22 11:09:07 +0100314int usb_serial_generic_write(struct tty_struct *tty,
315 struct usb_serial_port *port, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
317 struct usb_serial *serial = port->serial;
318 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Harvey Harrison441b62c2008-03-03 16:08:34 -0800320 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100322 /* only do something if we have a bulk out endpoint */
323 if (!port->bulk_out_size)
324 return -ENODEV;
325
Johan Hovold1a1405e2010-03-17 23:06:01 +0100326 if (!count)
Alan Coxae643872008-07-22 11:11:55 +0100327 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Johan Hovold25d514c2010-03-17 23:06:07 +0100329 if (serial->type->multi_urb_write)
330 return usb_serial_multi_urb_write(tty, port, buf, count);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500331
Stefani Seibold119eecc2009-12-23 09:10:48 +0100332 count = kfifo_in_locked(&port->write_fifo, buf, count, &port->lock);
David VomLehn8e8dce02009-08-28 12:54:27 -0700333 result = usb_serial_generic_write_start(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
David VomLehn8e8dce02009-08-28 12:54:27 -0700335 if (result >= 0)
336 result = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
David VomLehn8e8dce02009-08-28 12:54:27 -0700338 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339}
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500340EXPORT_SYMBOL_GPL(usb_serial_generic_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Alan Coxae643872008-07-22 11:11:55 +0100342int usb_serial_generic_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
Alan Cox95da3102008-07-22 11:09:07 +0100344 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 struct usb_serial *serial = port->serial;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500346 unsigned long flags;
Johan Hovold25d514c2010-03-17 23:06:07 +0100347 int room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Harvey Harrison441b62c2008-03-03 16:08:34 -0800349 dbg("%s - port %d", __func__, port->number);
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100350
351 if (!port->bulk_out_size)
352 return 0;
353
Jason Wessel715b1dc2009-05-11 15:24:07 -0500354 spin_lock_irqsave(&port->lock, flags);
Johan Hovold25d514c2010-03-17 23:06:07 +0100355 if (serial->type->multi_urb_write)
356 room = (MAX_TX_URBS - port->tx_urbs) * PAGE_SIZE;
357 else
Stefani Seibold119eecc2009-12-23 09:10:48 +0100358 room = kfifo_avail(&port->write_fifo);
Jason Wessel715b1dc2009-05-11 15:24:07 -0500359 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Harvey Harrison441b62c2008-03-03 16:08:34 -0800361 dbg("%s - returns %d", __func__, room);
Alan Coxa5b6f602008-04-08 17:16:06 +0100362 return room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
364
Alan Cox95da3102008-07-22 11:09:07 +0100365int usb_serial_generic_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
Alan Cox95da3102008-07-22 11:09:07 +0100367 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 struct usb_serial *serial = port->serial;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500369 unsigned long flags;
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100370 int chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Harvey Harrison441b62c2008-03-03 16:08:34 -0800372 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100374 if (!port->bulk_out_size)
375 return 0;
376
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100377 spin_lock_irqsave(&port->lock, flags);
Johan Hovold25d514c2010-03-17 23:06:07 +0100378 if (serial->type->multi_urb_write)
379 chars = port->tx_bytes;
Johan Hovoldeb8878a2010-02-27 16:24:49 +0100380 else
Johan Hovold25d514c2010-03-17 23:06:07 +0100381 chars = kfifo_len(&port->write_fifo) + port->tx_bytes;
Stefani Seibold25719e6b2010-01-05 14:30:31 +0100382 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Harvey Harrison441b62c2008-03-03 16:08:34 -0800384 dbg("%s - returns %d", __func__, chars);
Alan Cox95da3102008-07-22 11:09:07 +0100385 return chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
387
Johan Hovold41bd72f2010-03-17 23:05:53 +0100388int usb_serial_generic_submit_read_urb(struct usb_serial_port *port,
389 gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 int result;
392
Johan Hovold056afc02010-03-17 23:05:54 +0100393 result = usb_submit_urb(port->read_urb, mem_flags);
Johan Hovold0ae14742010-02-27 14:05:46 +0100394 if (result && result != -EPERM) {
Johan Hovold1a1405e2010-03-17 23:06:01 +0100395 dev_err(&port->dev, "%s - error submitting urb: %d\n",
Alan Coxae643872008-07-22 11:11:55 +0100396 __func__, result);
Johan Hovold0ae14742010-02-27 14:05:46 +0100397 }
Johan Hovold41bd72f2010-03-17 23:05:53 +0100398 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
Johan Hovold41bd72f2010-03-17 23:05:53 +0100400EXPORT_SYMBOL_GPL(usb_serial_generic_submit_read_urb);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100401
Johan Hovold23154322010-03-17 23:05:57 +0100402void usb_serial_generic_process_read_urb(struct urb *urb)
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200403{
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100404 struct usb_serial_port *port = urb->context;
405 struct tty_struct *tty;
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500406 char *ch = (char *)urb->transfer_buffer;
407 int i;
408
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100409 tty = tty_port_tty_get(&port->port);
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500410 if (!tty)
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100411 return;
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200412
Alan Cox4cd1de02009-07-09 13:35:52 +0100413 /* The per character mucking around with sysrq path it too slow for
414 stuff like 3G modems, so shortcircuit it in the 99.9999999% of cases
415 where the USB serial is not a console anyway */
Jason Wesselbd5afa92010-03-08 21:50:12 -0600416 if (!port->port.console || !port->sysrq)
Alan Cox4cd1de02009-07-09 13:35:52 +0100417 tty_insert_flip_string(tty, ch, urb->actual_length);
418 else {
Alan Cox4cd1de02009-07-09 13:35:52 +0100419 for (i = 0; i < urb->actual_length; i++, ch++) {
Alan Cox24a15a62009-07-09 13:36:22 +0100420 if (!usb_serial_handle_sysrq_char(tty, port, *ch))
Alan Cox4cd1de02009-07-09 13:35:52 +0100421 tty_insert_flip_char(tty, *ch, TTY_NORMAL);
422 }
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200423 }
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500424 tty_flip_buffer_push(tty);
Alan Cox4a90f092008-10-13 10:39:46 +0100425 tty_kref_put(tty);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200426}
Johan Hovold23154322010-03-17 23:05:57 +0100427EXPORT_SYMBOL_GPL(usb_serial_generic_process_read_urb);
Oliver Neukum1abdeeb2007-05-07 12:09:33 +0200428
Alan Cox95da3102008-07-22 11:09:07 +0100429void usb_serial_generic_read_bulk_callback(struct urb *urb)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100430{
Ming Leicdc97792008-02-24 18:41:47 +0800431 struct usb_serial_port *port = urb->context;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100432 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartmanfbd272252007-06-15 15:44:13 -0700433 int status = urb->status;
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100434 unsigned long flags;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100435
Harvey Harrison441b62c2008-03-03 16:08:34 -0800436 dbg("%s - port %d", __func__, port->number);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100437
Greg Kroah-Hartmanfbd272252007-06-15 15:44:13 -0700438 if (unlikely(status != 0)) {
439 dbg("%s - nonzero read bulk status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800440 __func__, status);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100441 return;
442 }
443
Alan Coxae643872008-07-22 11:11:55 +0100444 usb_serial_debug_data(debug, &port->dev, __func__,
445 urb->actual_length, data);
Johan Hovold23154322010-03-17 23:05:57 +0100446 port->serial->type->process_read_urb(urb);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100447
448 /* Throttle the device if requested by tty */
Borislav Petkovbfaeafc2007-10-28 13:24:16 +0100449 spin_lock_irqsave(&port->lock, flags);
Alan Coxae643872008-07-22 11:11:55 +0100450 port->throttled = port->throttle_req;
451 if (!port->throttled) {
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800452 spin_unlock_irqrestore(&port->lock, flags);
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100453 usb_serial_generic_submit_read_urb(port, GFP_ATOMIC);
Alan Coxae643872008-07-22 11:11:55 +0100454 } else
Pete Zaitcevb507cc92008-03-04 23:28:42 -0800455 spin_unlock_irqrestore(&port->lock, flags);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100456}
Luiz Fernando N. Capitulino166ffcc2006-07-11 14:19:25 -0300457EXPORT_SYMBOL_GPL(usb_serial_generic_read_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Alan Cox95da3102008-07-22 11:09:07 +0100459void usb_serial_generic_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
Jason Wessel715b1dc2009-05-11 15:24:07 -0500461 unsigned long flags;
Ming Leicdc97792008-02-24 18:41:47 +0800462 struct usb_serial_port *port = urb->context;
Greg Kroah-Hartmanfbd272252007-06-15 15:44:13 -0700463 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Harvey Harrison441b62c2008-03-03 16:08:34 -0800465 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Johan Hovold25d514c2010-03-17 23:06:07 +0100467 if (port->serial->type->multi_urb_write) {
Johan Hovold25915302010-01-06 15:48:42 -0800468 kfree(urb->transfer_buffer);
469
Jason Wessel715b1dc2009-05-11 15:24:07 -0500470 spin_lock_irqsave(&port->lock, flags);
Johan Hovold25d514c2010-03-17 23:06:07 +0100471 port->tx_bytes -= urb->transfer_buffer_length;
472 port->tx_urbs--;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500473 spin_unlock_irqrestore(&port->lock, flags);
474 } else {
Johan Hovold30af7fb2010-03-17 23:00:42 +0100475 spin_lock_irqsave(&port->lock, flags);
Johan Hovold25d514c2010-03-17 23:06:07 +0100476 port->tx_bytes -= urb->transfer_buffer_length;
Jason Wessel715b1dc2009-05-11 15:24:07 -0500477 port->write_urb_busy = 0;
Johan Hovold30af7fb2010-03-17 23:00:42 +0100478 spin_unlock_irqrestore(&port->lock, flags);
David VomLehn8e8dce02009-08-28 12:54:27 -0700479
Johan Hovold50dbb852010-03-17 23:00:43 +0100480 if (status) {
481 spin_lock_irqsave(&port->lock, flags);
Stefani Seibold119eecc2009-12-23 09:10:48 +0100482 kfifo_reset_out(&port->write_fifo);
Johan Hovold50dbb852010-03-17 23:00:43 +0100483 spin_unlock_irqrestore(&port->lock, flags);
484 } else {
David VomLehn8e8dce02009-08-28 12:54:27 -0700485 usb_serial_generic_write_start(port);
Johan Hovold50dbb852010-03-17 23:00:43 +0100486 }
Jason Wessel715b1dc2009-05-11 15:24:07 -0500487 }
488
Johan Hovold63136202010-02-27 14:06:07 +0100489 if (status)
490 dbg("%s - non-zero urb status: %d", __func__, status);
491
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700492 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
Greg Kroah-Hartmanbb833982005-11-17 09:48:18 -0800494EXPORT_SYMBOL_GPL(usb_serial_generic_write_bulk_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Alan Cox95da3102008-07-22 11:09:07 +0100496void usb_serial_generic_throttle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100497{
Alan Cox95da3102008-07-22 11:09:07 +0100498 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100499 unsigned long flags;
500
Harvey Harrison441b62c2008-03-03 16:08:34 -0800501 dbg("%s - port %d", __func__, port->number);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100502
503 /* Set the throttle request flag. It will be picked up
504 * by usb_serial_generic_read_bulk_callback(). */
505 spin_lock_irqsave(&port->lock, flags);
506 port->throttle_req = 1;
507 spin_unlock_irqrestore(&port->lock, flags);
508}
Johan Hovoldf1e949a2010-03-17 23:05:59 +0100509EXPORT_SYMBOL_GPL(usb_serial_generic_throttle);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100510
Alan Cox95da3102008-07-22 11:09:07 +0100511void usb_serial_generic_unthrottle(struct tty_struct *tty)
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100512{
Alan Cox95da3102008-07-22 11:09:07 +0100513 struct usb_serial_port *port = tty->driver_data;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100514 int was_throttled;
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100515
Harvey Harrison441b62c2008-03-03 16:08:34 -0800516 dbg("%s - port %d", __func__, port->number);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100517
518 /* Clear the throttle flags */
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100519 spin_lock_irq(&port->lock);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100520 was_throttled = port->throttled;
521 port->throttled = port->throttle_req = 0;
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100522 spin_unlock_irq(&port->lock);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100523
Johan Hovold0f3d5ba2010-03-17 23:05:56 +0100524 if (was_throttled)
525 usb_serial_generic_submit_read_urb(port, GFP_KERNEL);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100526}
Johan Hovoldf1e949a2010-03-17 23:05:59 +0100527EXPORT_SYMBOL_GPL(usb_serial_generic_unthrottle);
Joris van Rantwijk253ca922007-02-01 20:08:18 +0100528
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700529#ifdef CONFIG_MAGIC_SYSRQ
Alan Cox24a15a62009-07-09 13:36:22 +0100530int usb_serial_handle_sysrq_char(struct tty_struct *tty,
531 struct usb_serial_port *port, unsigned int ch)
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500532{
Jason Wesselbd5afa92010-03-08 21:50:12 -0600533 if (port->sysrq && port->port.console) {
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500534 if (ch && time_before(jiffies, port->sysrq)) {
Alan Cox24a15a62009-07-09 13:36:22 +0100535 handle_sysrq(ch, tty);
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500536 port->sysrq = 0;
537 return 1;
538 }
539 port->sysrq = 0;
540 }
541 return 0;
542}
Randy Dunlap7f0ae3a2010-03-25 11:29:16 -0700543#else
544int usb_serial_handle_sysrq_char(struct tty_struct *tty,
545 struct usb_serial_port *port, unsigned int ch)
546{
547 return 0;
548}
549#endif
Jason Wessel98fcb5f2009-05-11 15:24:09 -0500550EXPORT_SYMBOL_GPL(usb_serial_handle_sysrq_char);
551
552int usb_serial_handle_break(struct usb_serial_port *port)
553{
554 if (!port->sysrq) {
555 port->sysrq = jiffies + HZ*5;
556 return 1;
557 }
558 port->sysrq = 0;
559 return 0;
560}
561EXPORT_SYMBOL_GPL(usb_serial_handle_break);
562
David VomLehn8e8dce02009-08-28 12:54:27 -0700563int usb_serial_generic_resume(struct usb_serial *serial)
564{
565 struct usb_serial_port *port;
566 int i, c = 0, r;
567
568 for (i = 0; i < serial->num_ports; i++) {
569 port = serial->port[i];
Alan Stern1f871582010-02-17 10:05:47 -0500570 if (!test_bit(ASYNCB_INITIALIZED, &port->port.flags))
David VomLehn8e8dce02009-08-28 12:54:27 -0700571 continue;
572
573 if (port->read_urb) {
574 r = usb_submit_urb(port->read_urb, GFP_NOIO);
575 if (r < 0)
576 c++;
577 }
578
579 if (port->write_urb) {
580 r = usb_serial_generic_write_start(port);
581 if (r < 0)
582 c++;
583 }
584 }
585
586 return c ? -EIO : 0;
587}
588EXPORT_SYMBOL_GPL(usb_serial_generic_resume);
589
Alan Sternf9c99bb2009-06-02 11:53:55 -0400590void usb_serial_generic_disconnect(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
592 int i;
593
Harvey Harrison441b62c2008-03-03 16:08:34 -0800594 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596 /* stop reads and writes on all ports */
Alan Coxae643872008-07-22 11:11:55 +0100597 for (i = 0; i < serial->num_ports; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 generic_cleanup(serial->port[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}
600
Alan Sternf9c99bb2009-06-02 11:53:55 -0400601void usb_serial_generic_release(struct usb_serial *serial)
602{
603 dbg("%s", __func__);
604}