blob: d0f1c21dd91c09e6a173c1a957c9616064c77419 [file] [log] [blame]
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -08001/*
2 * Symbol USB barcode to serial driver
3 *
4 * Copyright (C) 2009 Greg Kroah-Hartman <gregkh@suse.de>
5 * Copyright (C) 2009 Novell Inc.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License version
9 * 2 as published by the Free Software Foundation.
10 */
11
12#include <linux/kernel.h>
13#include <linux/init.h>
14#include <linux/tty.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -080016#include <linux/tty_driver.h>
17#include <linux/tty_flip.h>
18#include <linux/module.h>
19#include <linux/usb.h>
20#include <linux/usb/serial.h>
21#include <linux/uaccess.h>
22
Rusty Russell90ab5ee2012-01-13 09:32:20 +103023static bool debug;
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -080024
Németh Márton7d40d7e2010-01-10 15:34:24 +010025static const struct usb_device_id id_table[] = {
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -080026 { USB_DEVICE(0x05e0, 0x0600) },
27 { },
28};
29MODULE_DEVICE_TABLE(usb, id_table);
30
31/* This structure holds all of the individual device information */
32struct symbol_private {
33 struct usb_device *udev;
34 struct usb_serial *serial;
35 struct usb_serial_port *port;
36 unsigned char *int_buffer;
37 struct urb *int_urb;
38 int buffer_size;
39 u8 bInterval;
40 u8 int_address;
41 spinlock_t lock; /* protects the following flags */
42 bool throttled;
43 bool actually_throttled;
44 bool rts;
45};
46
47static void symbol_int_callback(struct urb *urb)
48{
49 struct symbol_private *priv = urb->context;
50 unsigned char *data = urb->transfer_buffer;
51 struct usb_serial_port *port = priv->port;
52 int status = urb->status;
53 struct tty_struct *tty;
54 int result;
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -080055 int data_length;
56
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -080057 switch (status) {
58 case 0:
59 /* success */
60 break;
61 case -ECONNRESET:
62 case -ENOENT:
63 case -ESHUTDOWN:
64 /* this urb is terminated, clean up */
Greg Kroah-Hartmane4083ea2012-05-15 16:27:32 -070065 dev_dbg(&port->dev, "%s - urb shutting down with status: %d\n",
66 __func__, status);
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -080067 return;
68 default:
Greg Kroah-Hartmane4083ea2012-05-15 16:27:32 -070069 dev_dbg(&port->dev, "%s - nonzero urb status received: %d\n",
70 __func__, status);
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -080071 goto exit;
72 }
73
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +010074 usb_serial_debug_data(&port->dev, __func__, urb->actual_length, data);
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -080075
76 if (urb->actual_length > 1) {
77 data_length = urb->actual_length - 1;
78
79 /*
80 * Data from the device comes with a 1 byte header:
81 *
82 * <size of data>data...
83 * This is real data to be sent to the tty layer
84 * we pretty much just ignore the size and send everything
85 * else to the tty layer.
86 */
87 tty = tty_port_tty_get(&port->port);
88 if (tty) {
Alan Coxa108bfc2010-02-18 16:44:01 +000089 tty_insert_flip_string(tty, &data[1], data_length);
90 tty_flip_buffer_push(tty);
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -080091 tty_kref_put(tty);
92 }
93 } else {
94 dev_dbg(&priv->udev->dev,
Uwe Kleine-König9ddc5b62010-01-20 17:02:24 +010095 "Improper amount of data received from the device, "
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -080096 "%d bytes", urb->actual_length);
97 }
98
99exit:
100 spin_lock(&priv->lock);
101
102 /* Continue trying to always read if we should */
103 if (!priv->throttled) {
104 usb_fill_int_urb(priv->int_urb, priv->udev,
105 usb_rcvintpipe(priv->udev,
106 priv->int_address),
107 priv->int_buffer, priv->buffer_size,
108 symbol_int_callback, priv, priv->bInterval);
109 result = usb_submit_urb(priv->int_urb, GFP_ATOMIC);
110 if (result)
111 dev_err(&port->dev,
112 "%s - failed resubmitting read urb, error %d\n",
113 __func__, result);
114 } else
115 priv->actually_throttled = true;
116 spin_unlock(&priv->lock);
117}
118
Alan Coxa509a7e2009-09-19 13:13:26 -0700119static int symbol_open(struct tty_struct *tty, struct usb_serial_port *port)
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -0800120{
121 struct symbol_private *priv = usb_get_serial_data(port->serial);
122 unsigned long flags;
123 int result = 0;
124
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -0800125 spin_lock_irqsave(&priv->lock, flags);
126 priv->throttled = false;
127 priv->actually_throttled = false;
128 priv->port = port;
129 spin_unlock_irqrestore(&priv->lock, flags);
130
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -0800131 /* Start reading from the device */
132 usb_fill_int_urb(priv->int_urb, priv->udev,
133 usb_rcvintpipe(priv->udev, priv->int_address),
134 priv->int_buffer, priv->buffer_size,
135 symbol_int_callback, priv, priv->bInterval);
136 result = usb_submit_urb(priv->int_urb, GFP_KERNEL);
137 if (result)
138 dev_err(&port->dev,
139 "%s - failed resubmitting read urb, error %d\n",
140 __func__, result);
141 return result;
142}
143
Alan Cox335f8512009-06-11 12:26:29 +0100144static void symbol_close(struct usb_serial_port *port)
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -0800145{
146 struct symbol_private *priv = usb_get_serial_data(port->serial);
147
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -0800148 /* shutdown our urbs */
149 usb_kill_urb(priv->int_urb);
150}
151
152static void symbol_throttle(struct tty_struct *tty)
153{
154 struct usb_serial_port *port = tty->driver_data;
155 struct symbol_private *priv = usb_get_serial_data(port->serial);
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -0800156
Oliver Neukum63832512009-10-07 10:50:23 +0200157 spin_lock_irq(&priv->lock);
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -0800158 priv->throttled = true;
Oliver Neukum63832512009-10-07 10:50:23 +0200159 spin_unlock_irq(&priv->lock);
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -0800160}
161
162static void symbol_unthrottle(struct tty_struct *tty)
163{
164 struct usb_serial_port *port = tty->driver_data;
165 struct symbol_private *priv = usb_get_serial_data(port->serial);
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -0800166 int result;
Oliver Neukumb2a5cf12009-10-07 09:30:49 +0200167 bool was_throttled;
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -0800168
Oliver Neukum63832512009-10-07 10:50:23 +0200169 spin_lock_irq(&priv->lock);
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -0800170 priv->throttled = false;
Oliver Neukumb2a5cf12009-10-07 09:30:49 +0200171 was_throttled = priv->actually_throttled;
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -0800172 priv->actually_throttled = false;
Oliver Neukum63832512009-10-07 10:50:23 +0200173 spin_unlock_irq(&priv->lock);
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -0800174
Oliver Neukumb2a5cf12009-10-07 09:30:49 +0200175 if (was_throttled) {
Oliver Neukum63832512009-10-07 10:50:23 +0200176 result = usb_submit_urb(priv->int_urb, GFP_KERNEL);
Oliver Neukumb2a5cf12009-10-07 09:30:49 +0200177 if (result)
178 dev_err(&port->dev,
179 "%s - failed submitting read urb, error %d\n",
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -0800180 __func__, result);
Oliver Neukumb2a5cf12009-10-07 09:30:49 +0200181 }
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -0800182}
183
184static int symbol_startup(struct usb_serial *serial)
185{
186 struct symbol_private *priv;
187 struct usb_host_interface *intf;
188 int i;
189 int retval = -ENOMEM;
190 bool int_in_found = false;
191
192 /* create our private serial structure */
193 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
194 if (priv == NULL) {
195 dev_err(&serial->dev->dev, "%s - Out of memory\n", __func__);
196 return -ENOMEM;
197 }
198 spin_lock_init(&priv->lock);
199 priv->serial = serial;
200 priv->port = serial->port[0];
201 priv->udev = serial->dev;
202
203 /* find our interrupt endpoint */
204 intf = serial->interface->altsetting;
205 for (i = 0; i < intf->desc.bNumEndpoints; ++i) {
206 struct usb_endpoint_descriptor *endpoint;
207
208 endpoint = &intf->endpoint[i].desc;
209 if (!usb_endpoint_is_int_in(endpoint))
210 continue;
211
212 priv->int_urb = usb_alloc_urb(0, GFP_KERNEL);
213 if (!priv->int_urb) {
214 dev_err(&priv->udev->dev, "out of memory\n");
215 goto error;
216 }
217
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700218 priv->buffer_size = usb_endpoint_maxp(endpoint) * 2;
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -0800219 priv->int_buffer = kmalloc(priv->buffer_size, GFP_KERNEL);
220 if (!priv->int_buffer) {
221 dev_err(&priv->udev->dev, "out of memory\n");
222 goto error;
223 }
224
225 priv->int_address = endpoint->bEndpointAddress;
226 priv->bInterval = endpoint->bInterval;
227
228 /* set up our int urb */
229 usb_fill_int_urb(priv->int_urb, priv->udev,
230 usb_rcvintpipe(priv->udev,
231 endpoint->bEndpointAddress),
232 priv->int_buffer, priv->buffer_size,
233 symbol_int_callback, priv, priv->bInterval);
234
235 int_in_found = true;
236 break;
237 }
238
239 if (!int_in_found) {
240 dev_err(&priv->udev->dev,
241 "Error - the proper endpoints were not found!\n");
242 goto error;
243 }
244
245 usb_set_serial_data(serial, priv);
246 return 0;
247
248error:
249 usb_free_urb(priv->int_urb);
250 kfree(priv->int_buffer);
251 kfree(priv);
252 return retval;
253}
254
Alan Sternf9c99bb2009-06-02 11:53:55 -0400255static void symbol_disconnect(struct usb_serial *serial)
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -0800256{
257 struct symbol_private *priv = usb_get_serial_data(serial);
258
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -0800259 usb_kill_urb(priv->int_urb);
260 usb_free_urb(priv->int_urb);
Alan Sternf9c99bb2009-06-02 11:53:55 -0400261}
262
263static void symbol_release(struct usb_serial *serial)
264{
265 struct symbol_private *priv = usb_get_serial_data(serial);
266
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -0800267 kfree(priv->int_buffer);
268 kfree(priv);
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -0800269}
270
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -0800271static struct usb_serial_driver symbol_device = {
272 .driver = {
273 .owner = THIS_MODULE,
274 .name = "symbol",
275 },
276 .id_table = id_table,
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -0800277 .num_ports = 1,
278 .attach = symbol_startup,
279 .open = symbol_open,
280 .close = symbol_close,
Alan Sternf9c99bb2009-06-02 11:53:55 -0400281 .disconnect = symbol_disconnect,
282 .release = symbol_release,
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -0800283 .throttle = symbol_throttle,
284 .unthrottle = symbol_unthrottle,
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -0800285};
286
Alan Sternd8603222012-02-23 14:57:25 -0500287static struct usb_serial_driver * const serial_drivers[] = {
288 &symbol_device, NULL
289};
290
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700291module_usb_serial_driver(serial_drivers, id_table);
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -0800292
Greg Kroah-Hartman68b44ea2009-02-13 17:25:46 -0800293MODULE_LICENSE("GPL");
294
295module_param(debug, bool, S_IRUGO | S_IWUSR);
296MODULE_PARM_DESC(debug, "Debug enabled or not");