2 * Opticon USB barcode to serial driver
4 * Copyright (C) 2008 - 2009 Greg Kroah-Hartman <gregkh@suse.de>
5 * Copyright (C) 2008 - 2009 Novell Inc.
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.
12 #include <linux/kernel.h>
13 #include <linux/init.h>
14 #include <linux/tty.h>
15 #include <linux/tty_driver.h>
16 #include <linux/slab.h>
17 #include <linux/tty_flip.h>
18 #include <linux/serial.h>
19 #include <linux/module.h>
20 #include <linux/usb.h>
21 #include <linux/usb/serial.h>
22 #include <linux/uaccess.h>
26 static const struct usb_device_id id_table
[] = {
27 { USB_DEVICE(0x065a, 0x0009) },
30 MODULE_DEVICE_TABLE(usb
, id_table
);
32 /* This structure holds all of the individual device information */
33 struct opticon_private
{
34 struct usb_device
*udev
;
35 struct usb_serial
*serial
;
36 struct usb_serial_port
*port
;
37 unsigned char *bulk_in_buffer
;
38 struct urb
*bulk_read_urb
;
41 spinlock_t lock
; /* protects the following flags */
43 bool actually_throttled
;
48 /* max number of write urbs in flight */
49 #define URB_UPPER_LIMIT 4
51 static void opticon_bulk_callback(struct urb
*urb
)
53 struct opticon_private
*priv
= urb
->context
;
54 unsigned char *data
= urb
->transfer_buffer
;
55 struct usb_serial_port
*port
= priv
->port
;
56 int status
= urb
->status
;
57 struct tty_struct
*tty
;
61 dbg("%s - port %d", __func__
, port
->number
);
70 /* this urb is terminated, clean up */
71 dbg("%s - urb shutting down with status: %d",
75 dbg("%s - nonzero urb status received: %d",
80 usb_serial_debug_data(debug
, &port
->dev
, __func__
, urb
->actual_length
,
83 if (urb
->actual_length
> 2) {
84 data_length
= urb
->actual_length
- 2;
87 * Data from the device comes with a 2 byte header:
90 * This is real data to be sent to the tty layer
92 * This is a RTS level change, the third byte is the RTS
93 * value (0 for low, 1 for high).
95 if ((data
[0] == 0x00) && (data
[1] == 0x00)) {
96 /* real data, send it to the tty layer */
97 tty
= tty_port_tty_get(&port
->port
);
99 tty_insert_flip_string(tty
, data
,
101 tty_flip_buffer_push(tty
);
105 if ((data
[0] == 0x00) && (data
[1] == 0x01)) {
111 dev_dbg(&priv
->udev
->dev
,
112 "Unknown data packet received from the device:"
118 dev_dbg(&priv
->udev
->dev
,
119 "Improper amount of data received from the device, "
120 "%d bytes", urb
->actual_length
);
124 spin_lock(&priv
->lock
);
126 /* Continue trying to always read if we should */
127 if (!priv
->throttled
) {
128 usb_fill_bulk_urb(priv
->bulk_read_urb
, priv
->udev
,
129 usb_rcvbulkpipe(priv
->udev
,
131 priv
->bulk_in_buffer
, priv
->buffer_size
,
132 opticon_bulk_callback
, priv
);
133 result
= usb_submit_urb(port
->read_urb
, GFP_ATOMIC
);
136 "%s - failed resubmitting read urb, error %d\n",
139 priv
->actually_throttled
= true;
140 spin_unlock(&priv
->lock
);
143 static int opticon_open(struct tty_struct
*tty
, struct usb_serial_port
*port
)
145 struct opticon_private
*priv
= usb_get_serial_data(port
->serial
);
149 dbg("%s - port %d", __func__
, port
->number
);
151 spin_lock_irqsave(&priv
->lock
, flags
);
152 priv
->throttled
= false;
153 priv
->actually_throttled
= false;
155 spin_unlock_irqrestore(&priv
->lock
, flags
);
157 /* Start reading from the device */
158 usb_fill_bulk_urb(priv
->bulk_read_urb
, priv
->udev
,
159 usb_rcvbulkpipe(priv
->udev
,
161 priv
->bulk_in_buffer
, priv
->buffer_size
,
162 opticon_bulk_callback
, priv
);
163 result
= usb_submit_urb(priv
->bulk_read_urb
, GFP_KERNEL
);
166 "%s - failed resubmitting read urb, error %d\n",
171 static void opticon_close(struct usb_serial_port
*port
)
173 struct opticon_private
*priv
= usb_get_serial_data(port
->serial
);
175 dbg("%s - port %d", __func__
, port
->number
);
177 /* shutdown our urbs */
178 usb_kill_urb(priv
->bulk_read_urb
);
181 static void opticon_write_bulk_callback(struct urb
*urb
)
183 struct opticon_private
*priv
= urb
->context
;
184 int status
= urb
->status
;
187 /* free up the transfer buffer, as usb_free_urb() does not do this */
188 kfree(urb
->transfer_buffer
);
191 dbg("%s - nonzero write bulk status received: %d",
194 spin_lock_irqsave(&priv
->lock
, flags
);
195 --priv
->outstanding_urbs
;
196 spin_unlock_irqrestore(&priv
->lock
, flags
);
198 usb_serial_port_softint(priv
->port
);
201 static int opticon_write(struct tty_struct
*tty
, struct usb_serial_port
*port
,
202 const unsigned char *buf
, int count
)
204 struct opticon_private
*priv
= usb_get_serial_data(port
->serial
);
205 struct usb_serial
*serial
= port
->serial
;
207 unsigned char *buffer
;
211 dbg("%s - port %d", __func__
, port
->number
);
213 spin_lock_irqsave(&priv
->lock
, flags
);
214 if (priv
->outstanding_urbs
> URB_UPPER_LIMIT
) {
215 spin_unlock_irqrestore(&priv
->lock
, flags
);
216 dbg("%s - write limit hit", __func__
);
219 priv
->outstanding_urbs
++;
220 spin_unlock_irqrestore(&priv
->lock
, flags
);
222 buffer
= kmalloc(count
, GFP_ATOMIC
);
224 dev_err(&port
->dev
, "out of memory\n");
226 goto error_no_buffer
;
229 urb
= usb_alloc_urb(0, GFP_ATOMIC
);
231 dev_err(&port
->dev
, "no more free urbs\n");
236 memcpy(buffer
, buf
, count
);
238 usb_serial_debug_data(debug
, &port
->dev
, __func__
, count
, buffer
);
240 usb_fill_bulk_urb(urb
, serial
->dev
,
241 usb_sndbulkpipe(serial
->dev
,
242 port
->bulk_out_endpointAddress
),
243 buffer
, count
, opticon_write_bulk_callback
, priv
);
245 /* send it down the pipe */
246 status
= usb_submit_urb(urb
, GFP_ATOMIC
);
249 "%s - usb_submit_urb(write bulk) failed with status = %d\n",
255 /* we are done with this urb, so let the host driver
256 * really free it when it is finished with it */
265 spin_lock_irqsave(&priv
->lock
, flags
);
266 --priv
->outstanding_urbs
;
267 spin_unlock_irqrestore(&priv
->lock
, flags
);
271 static int opticon_write_room(struct tty_struct
*tty
)
273 struct usb_serial_port
*port
= tty
->driver_data
;
274 struct opticon_private
*priv
= usb_get_serial_data(port
->serial
);
277 dbg("%s - port %d", __func__
, port
->number
);
280 * We really can take almost anything the user throws at us
281 * but let's pick a nice big number to tell the tty
282 * layer that we have lots of free space, unless we don't.
284 spin_lock_irqsave(&priv
->lock
, flags
);
285 if (priv
->outstanding_urbs
> URB_UPPER_LIMIT
* 2 / 3) {
286 spin_unlock_irqrestore(&priv
->lock
, flags
);
287 dbg("%s - write limit hit", __func__
);
290 spin_unlock_irqrestore(&priv
->lock
, flags
);
295 static void opticon_throttle(struct tty_struct
*tty
)
297 struct usb_serial_port
*port
= tty
->driver_data
;
298 struct opticon_private
*priv
= usb_get_serial_data(port
->serial
);
301 dbg("%s - port %d", __func__
, port
->number
);
302 spin_lock_irqsave(&priv
->lock
, flags
);
303 priv
->throttled
= true;
304 spin_unlock_irqrestore(&priv
->lock
, flags
);
308 static void opticon_unthrottle(struct tty_struct
*tty
)
310 struct usb_serial_port
*port
= tty
->driver_data
;
311 struct opticon_private
*priv
= usb_get_serial_data(port
->serial
);
313 int result
, was_throttled
;
315 dbg("%s - port %d", __func__
, port
->number
);
317 spin_lock_irqsave(&priv
->lock
, flags
);
318 priv
->throttled
= false;
319 was_throttled
= priv
->actually_throttled
;
320 priv
->actually_throttled
= false;
321 spin_unlock_irqrestore(&priv
->lock
, flags
);
323 priv
->bulk_read_urb
->dev
= port
->serial
->dev
;
325 result
= usb_submit_urb(priv
->bulk_read_urb
, GFP_ATOMIC
);
328 "%s - failed submitting read urb, error %d\n",
333 static int opticon_tiocmget(struct tty_struct
*tty
, struct file
*file
)
335 struct usb_serial_port
*port
= tty
->driver_data
;
336 struct opticon_private
*priv
= usb_get_serial_data(port
->serial
);
340 dbg("%s - port %d", __func__
, port
->number
);
342 spin_lock_irqsave(&priv
->lock
, flags
);
345 spin_unlock_irqrestore(&priv
->lock
, flags
);
347 dbg("%s - %x", __func__
, result
);
351 static int get_serial_info(struct opticon_private
*priv
,
352 struct serial_struct __user
*serial
)
354 struct serial_struct tmp
;
359 memset(&tmp
, 0x00, sizeof(tmp
));
361 /* fake emulate a 16550 uart to make userspace code happy */
362 tmp
.type
= PORT_16550A
;
363 tmp
.line
= priv
->serial
->minor
;
366 tmp
.flags
= ASYNC_SKIP_TEST
| ASYNC_AUTO_IRQ
;
367 tmp
.xmit_fifo_size
= 1024;
368 tmp
.baud_base
= 9600;
369 tmp
.close_delay
= 5*HZ
;
370 tmp
.closing_wait
= 30*HZ
;
372 if (copy_to_user(serial
, &tmp
, sizeof(*serial
)))
377 static int opticon_ioctl(struct tty_struct
*tty
, struct file
*file
,
378 unsigned int cmd
, unsigned long arg
)
380 struct usb_serial_port
*port
= tty
->driver_data
;
381 struct opticon_private
*priv
= usb_get_serial_data(port
->serial
);
383 dbg("%s - port %d, cmd = 0x%x", __func__
, port
->number
, cmd
);
387 return get_serial_info(priv
,
388 (struct serial_struct __user
*)arg
);
394 static int opticon_startup(struct usb_serial
*serial
)
396 struct opticon_private
*priv
;
397 struct usb_host_interface
*intf
;
399 int retval
= -ENOMEM
;
400 bool bulk_in_found
= false;
402 /* create our private serial structure */
403 priv
= kzalloc(sizeof(*priv
), GFP_KERNEL
);
405 dev_err(&serial
->dev
->dev
, "%s - Out of memory\n", __func__
);
408 spin_lock_init(&priv
->lock
);
409 priv
->serial
= serial
;
410 priv
->port
= serial
->port
[0];
411 priv
->udev
= serial
->dev
;
413 /* find our bulk endpoint */
414 intf
= serial
->interface
->altsetting
;
415 for (i
= 0; i
< intf
->desc
.bNumEndpoints
; ++i
) {
416 struct usb_endpoint_descriptor
*endpoint
;
418 endpoint
= &intf
->endpoint
[i
].desc
;
419 if (!usb_endpoint_is_bulk_in(endpoint
))
422 priv
->bulk_read_urb
= usb_alloc_urb(0, GFP_KERNEL
);
423 if (!priv
->bulk_read_urb
) {
424 dev_err(&priv
->udev
->dev
, "out of memory\n");
428 priv
->buffer_size
= le16_to_cpu(endpoint
->wMaxPacketSize
) * 2;
429 priv
->bulk_in_buffer
= kmalloc(priv
->buffer_size
, GFP_KERNEL
);
430 if (!priv
->bulk_in_buffer
) {
431 dev_err(&priv
->udev
->dev
, "out of memory\n");
435 priv
->bulk_address
= endpoint
->bEndpointAddress
;
437 /* set up our bulk urb */
438 usb_fill_bulk_urb(priv
->bulk_read_urb
, priv
->udev
,
439 usb_rcvbulkpipe(priv
->udev
,
440 endpoint
->bEndpointAddress
),
441 priv
->bulk_in_buffer
, priv
->buffer_size
,
442 opticon_bulk_callback
, priv
);
444 bulk_in_found
= true;
448 if (!bulk_in_found
) {
449 dev_err(&priv
->udev
->dev
,
450 "Error - the proper endpoints were not found!\n");
454 usb_set_serial_data(serial
, priv
);
458 usb_free_urb(priv
->bulk_read_urb
);
459 kfree(priv
->bulk_in_buffer
);
464 static void opticon_disconnect(struct usb_serial
*serial
)
466 struct opticon_private
*priv
= usb_get_serial_data(serial
);
470 usb_kill_urb(priv
->bulk_read_urb
);
471 usb_free_urb(priv
->bulk_read_urb
);
474 static void opticon_release(struct usb_serial
*serial
)
476 struct opticon_private
*priv
= usb_get_serial_data(serial
);
480 kfree(priv
->bulk_in_buffer
);
484 static int opticon_suspend(struct usb_interface
*intf
, pm_message_t message
)
486 struct usb_serial
*serial
= usb_get_intfdata(intf
);
487 struct opticon_private
*priv
= usb_get_serial_data(serial
);
489 usb_kill_urb(priv
->bulk_read_urb
);
493 static int opticon_resume(struct usb_interface
*intf
)
495 struct usb_serial
*serial
= usb_get_intfdata(intf
);
496 struct opticon_private
*priv
= usb_get_serial_data(serial
);
497 struct usb_serial_port
*port
= serial
->port
[0];
500 mutex_lock(&port
->port
.mutex
);
501 /* This is protected by the port mutex against close/open */
502 if (test_bit(ASYNCB_INITIALIZED
, &port
->port
.flags
))
503 result
= usb_submit_urb(priv
->bulk_read_urb
, GFP_NOIO
);
506 mutex_unlock(&port
->port
.mutex
);
510 static struct usb_driver opticon_driver
= {
512 .probe
= usb_serial_probe
,
513 .disconnect
= usb_serial_disconnect
,
514 .suspend
= opticon_suspend
,
515 .resume
= opticon_resume
,
516 .id_table
= id_table
,
520 static struct usb_serial_driver opticon_device
= {
522 .owner
= THIS_MODULE
,
525 .id_table
= id_table
,
526 .usb_driver
= &opticon_driver
,
528 .attach
= opticon_startup
,
529 .open
= opticon_open
,
530 .close
= opticon_close
,
531 .write
= opticon_write
,
532 .write_room
= opticon_write_room
,
533 .disconnect
= opticon_disconnect
,
534 .release
= opticon_release
,
535 .throttle
= opticon_throttle
,
536 .unthrottle
= opticon_unthrottle
,
537 .ioctl
= opticon_ioctl
,
538 .tiocmget
= opticon_tiocmget
,
541 static int __init
opticon_init(void)
545 retval
= usb_serial_register(&opticon_device
);
548 retval
= usb_register(&opticon_driver
);
550 usb_serial_deregister(&opticon_device
);
554 static void __exit
opticon_exit(void)
556 usb_deregister(&opticon_driver
);
557 usb_serial_deregister(&opticon_device
);
560 module_init(opticon_init
);
561 module_exit(opticon_exit
);
562 MODULE_LICENSE("GPL");
564 module_param(debug
, bool, S_IRUGO
| S_IWUSR
);
565 MODULE_PARM_DESC(debug
, "Debug enabled or not");