blob: 2ffa6ae3b5edc87909b4177bf398b320b3d96dad [file] [log] [blame]
Greg Kroah-Hartman68b44eae2009-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-Hartman68b44eae2009-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
Németh Márton7d40d7e2010-01-10 15:34:24 +010023static const struct usb_device_id id_table[] = {
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -080024 { USB_DEVICE(0x05e0, 0x0600) },
25 { },
26};
27MODULE_DEVICE_TABLE(usb, id_table);
28
29/* This structure holds all of the individual device information */
30struct symbol_private {
31 struct usb_device *udev;
32 struct usb_serial *serial;
33 struct usb_serial_port *port;
34 unsigned char *int_buffer;
35 struct urb *int_urb;
36 int buffer_size;
37 u8 bInterval;
38 u8 int_address;
39 spinlock_t lock; /* protects the following flags */
40 bool throttled;
41 bool actually_throttled;
42 bool rts;
43};
44
45static void symbol_int_callback(struct urb *urb)
46{
47 struct symbol_private *priv = urb->context;
48 unsigned char *data = urb->transfer_buffer;
49 struct usb_serial_port *port = priv->port;
50 int status = urb->status;
51 struct tty_struct *tty;
52 int result;
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -080053 int data_length;
54
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -080055 switch (status) {
56 case 0:
57 /* success */
58 break;
59 case -ECONNRESET:
60 case -ENOENT:
61 case -ESHUTDOWN:
62 /* this urb is terminated, clean up */
Greg Kroah-Hartmane4083ea2012-05-15 16:27:32 -070063 dev_dbg(&port->dev, "%s - urb shutting down with status: %d\n",
64 __func__, status);
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -080065 return;
66 default:
Greg Kroah-Hartmane4083ea2012-05-15 16:27:32 -070067 dev_dbg(&port->dev, "%s - nonzero urb status received: %d\n",
68 __func__, status);
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -080069 goto exit;
70 }
71
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +010072 usb_serial_debug_data(&port->dev, __func__, urb->actual_length, data);
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -080073
74 if (urb->actual_length > 1) {
75 data_length = urb->actual_length - 1;
76
77 /*
78 * Data from the device comes with a 1 byte header:
79 *
80 * <size of data>data...
81 * This is real data to be sent to the tty layer
82 * we pretty much just ignore the size and send everything
83 * else to the tty layer.
84 */
85 tty = tty_port_tty_get(&port->port);
86 if (tty) {
Jiri Slaby05c7cd32013-01-03 15:53:04 +010087 tty_insert_flip_string(&port->port, &data[1],
88 data_length);
Alan Coxa108bfc2010-02-18 16:44:01 +000089 tty_flip_buffer_push(tty);
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -080090 tty_kref_put(tty);
91 }
92 } else {
93 dev_dbg(&priv->udev->dev,
Uwe Kleine-König9ddc5b62010-01-20 17:02:24 +010094 "Improper amount of data received from the device, "
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -080095 "%d bytes", urb->actual_length);
96 }
97
98exit:
99 spin_lock(&priv->lock);
100
101 /* Continue trying to always read if we should */
102 if (!priv->throttled) {
103 usb_fill_int_urb(priv->int_urb, priv->udev,
104 usb_rcvintpipe(priv->udev,
105 priv->int_address),
106 priv->int_buffer, priv->buffer_size,
107 symbol_int_callback, priv, priv->bInterval);
108 result = usb_submit_urb(priv->int_urb, GFP_ATOMIC);
109 if (result)
110 dev_err(&port->dev,
111 "%s - failed resubmitting read urb, error %d\n",
112 __func__, result);
113 } else
114 priv->actually_throttled = true;
115 spin_unlock(&priv->lock);
116}
117
Alan Coxa509a7e2009-09-19 13:13:26 -0700118static int symbol_open(struct tty_struct *tty, struct usb_serial_port *port)
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -0800119{
120 struct symbol_private *priv = usb_get_serial_data(port->serial);
121 unsigned long flags;
122 int result = 0;
123
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -0800124 spin_lock_irqsave(&priv->lock, flags);
125 priv->throttled = false;
126 priv->actually_throttled = false;
127 priv->port = port;
128 spin_unlock_irqrestore(&priv->lock, flags);
129
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -0800130 /* Start reading from the device */
131 usb_fill_int_urb(priv->int_urb, priv->udev,
132 usb_rcvintpipe(priv->udev, priv->int_address),
133 priv->int_buffer, priv->buffer_size,
134 symbol_int_callback, priv, priv->bInterval);
135 result = usb_submit_urb(priv->int_urb, GFP_KERNEL);
136 if (result)
137 dev_err(&port->dev,
138 "%s - failed resubmitting read urb, error %d\n",
139 __func__, result);
140 return result;
141}
142
Alan Cox335f8512009-06-11 12:26:29 +0100143static void symbol_close(struct usb_serial_port *port)
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -0800144{
145 struct symbol_private *priv = usb_get_serial_data(port->serial);
146
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -0800147 /* shutdown our urbs */
148 usb_kill_urb(priv->int_urb);
149}
150
151static void symbol_throttle(struct tty_struct *tty)
152{
153 struct usb_serial_port *port = tty->driver_data;
154 struct symbol_private *priv = usb_get_serial_data(port->serial);
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -0800155
Oliver Neukum63832512009-10-07 10:50:23 +0200156 spin_lock_irq(&priv->lock);
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -0800157 priv->throttled = true;
Oliver Neukum63832512009-10-07 10:50:23 +0200158 spin_unlock_irq(&priv->lock);
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -0800159}
160
161static void symbol_unthrottle(struct tty_struct *tty)
162{
163 struct usb_serial_port *port = tty->driver_data;
164 struct symbol_private *priv = usb_get_serial_data(port->serial);
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -0800165 int result;
Oliver Neukumb2a5cf12009-10-07 09:30:49 +0200166 bool was_throttled;
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -0800167
Oliver Neukum63832512009-10-07 10:50:23 +0200168 spin_lock_irq(&priv->lock);
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -0800169 priv->throttled = false;
Oliver Neukumb2a5cf12009-10-07 09:30:49 +0200170 was_throttled = priv->actually_throttled;
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -0800171 priv->actually_throttled = false;
Oliver Neukum63832512009-10-07 10:50:23 +0200172 spin_unlock_irq(&priv->lock);
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -0800173
Oliver Neukumb2a5cf12009-10-07 09:30:49 +0200174 if (was_throttled) {
Oliver Neukum63832512009-10-07 10:50:23 +0200175 result = usb_submit_urb(priv->int_urb, GFP_KERNEL);
Oliver Neukumb2a5cf12009-10-07 09:30:49 +0200176 if (result)
177 dev_err(&port->dev,
178 "%s - failed submitting read urb, error %d\n",
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -0800179 __func__, result);
Oliver Neukumb2a5cf12009-10-07 09:30:49 +0200180 }
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -0800181}
182
183static int symbol_startup(struct usb_serial *serial)
184{
185 struct symbol_private *priv;
186 struct usb_host_interface *intf;
187 int i;
188 int retval = -ENOMEM;
189 bool int_in_found = false;
190
191 /* create our private serial structure */
192 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
193 if (priv == NULL) {
194 dev_err(&serial->dev->dev, "%s - Out of memory\n", __func__);
195 return -ENOMEM;
196 }
197 spin_lock_init(&priv->lock);
198 priv->serial = serial;
199 priv->port = serial->port[0];
200 priv->udev = serial->dev;
201
202 /* find our interrupt endpoint */
203 intf = serial->interface->altsetting;
204 for (i = 0; i < intf->desc.bNumEndpoints; ++i) {
205 struct usb_endpoint_descriptor *endpoint;
206
207 endpoint = &intf->endpoint[i].desc;
208 if (!usb_endpoint_is_int_in(endpoint))
209 continue;
210
211 priv->int_urb = usb_alloc_urb(0, GFP_KERNEL);
212 if (!priv->int_urb) {
213 dev_err(&priv->udev->dev, "out of memory\n");
214 goto error;
215 }
216
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700217 priv->buffer_size = usb_endpoint_maxp(endpoint) * 2;
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -0800218 priv->int_buffer = kmalloc(priv->buffer_size, GFP_KERNEL);
219 if (!priv->int_buffer) {
220 dev_err(&priv->udev->dev, "out of memory\n");
221 goto error;
222 }
223
224 priv->int_address = endpoint->bEndpointAddress;
225 priv->bInterval = endpoint->bInterval;
226
227 /* set up our int urb */
228 usb_fill_int_urb(priv->int_urb, priv->udev,
229 usb_rcvintpipe(priv->udev,
230 endpoint->bEndpointAddress),
231 priv->int_buffer, priv->buffer_size,
232 symbol_int_callback, priv, priv->bInterval);
233
234 int_in_found = true;
235 break;
236 }
237
238 if (!int_in_found) {
239 dev_err(&priv->udev->dev,
240 "Error - the proper endpoints were not found!\n");
241 goto error;
242 }
243
244 usb_set_serial_data(serial, priv);
245 return 0;
246
247error:
248 usb_free_urb(priv->int_urb);
249 kfree(priv->int_buffer);
250 kfree(priv);
251 return retval;
252}
253
Alan Sternf9c99bb2009-06-02 11:53:55 -0400254static void symbol_disconnect(struct usb_serial *serial)
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -0800255{
256 struct symbol_private *priv = usb_get_serial_data(serial);
257
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -0800258 usb_kill_urb(priv->int_urb);
259 usb_free_urb(priv->int_urb);
Alan Sternf9c99bb2009-06-02 11:53:55 -0400260}
261
262static void symbol_release(struct usb_serial *serial)
263{
264 struct symbol_private *priv = usb_get_serial_data(serial);
265
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -0800266 kfree(priv->int_buffer);
267 kfree(priv);
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -0800268}
269
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -0800270static struct usb_serial_driver symbol_device = {
271 .driver = {
272 .owner = THIS_MODULE,
273 .name = "symbol",
274 },
275 .id_table = id_table,
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -0800276 .num_ports = 1,
277 .attach = symbol_startup,
278 .open = symbol_open,
279 .close = symbol_close,
Alan Sternf9c99bb2009-06-02 11:53:55 -0400280 .disconnect = symbol_disconnect,
281 .release = symbol_release,
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -0800282 .throttle = symbol_throttle,
283 .unthrottle = symbol_unthrottle,
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -0800284};
285
Alan Sternd8603222012-02-23 14:57:25 -0500286static struct usb_serial_driver * const serial_drivers[] = {
287 &symbol_device, NULL
288};
289
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700290module_usb_serial_driver(serial_drivers, id_table);
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -0800291
Greg Kroah-Hartman68b44eae2009-02-13 17:25:46 -0800292MODULE_LICENSE("GPL");