blob: e13e1a4d3e1e0901d09195280ae6f7fd4cf386fc [file] [log] [blame]
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -08001/*
2 * Opticon USB barcode to serial driver
3 *
Johan Hovold7a6ee2b2012-11-18 13:23:36 +01004 * Copyright (C) 2011 - 2012 Johan Hovold <jhovold@gmail.com>
Martin Jansen309a0572011-02-24 14:50:16 +01005 * Copyright (C) 2011 Martin Jansen <martin.jansen@opticon.com>
Greg Kroah-Hartman648d4e12009-02-06 18:30:56 -08006 * Copyright (C) 2008 - 2009 Greg Kroah-Hartman <gregkh@suse.de>
7 * Copyright (C) 2008 - 2009 Novell Inc.
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -08008 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License version
11 * 2 as published by the Free Software Foundation.
12 */
13
14#include <linux/kernel.h>
15#include <linux/init.h>
16#include <linux/tty.h>
17#include <linux/tty_driver.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -080019#include <linux/tty_flip.h>
Greg Kroah-Hartmanfaac64a2009-02-06 18:31:46 -080020#include <linux/serial.h>
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -080021#include <linux/module.h>
22#include <linux/usb.h>
23#include <linux/usb/serial.h>
24#include <linux/uaccess.h>
25
Martin Jansen309a0572011-02-24 14:50:16 +010026#define CONTROL_RTS 0x02
27#define RESEND_CTS_STATE 0x03
28
29/* max number of write urbs in flight */
30#define URB_UPPER_LIMIT 8
31
32/* This driver works for the Opticon 1D barcode reader
33 * an examples of 1D barcode types are EAN, UPC, Code39, IATA etc.. */
34#define DRIVER_DESC "Opticon USB barcode to serial driver (1D)"
35
Németh Márton7d40d7e2010-01-10 15:34:24 +010036static const struct usb_device_id id_table[] = {
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -080037 { USB_DEVICE(0x065a, 0x0009) },
38 { },
39};
40MODULE_DEVICE_TABLE(usb, id_table);
41
42/* This structure holds all of the individual device information */
43struct opticon_private {
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -080044 spinlock_t lock; /* protects the following flags */
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -080045 bool rts;
Martin Jansen309a0572011-02-24 14:50:16 +010046 bool cts;
Greg Kroah-Hartman648d4e12009-02-06 18:30:56 -080047 int outstanding_urbs;
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -080048};
49
Greg Kroah-Hartman648d4e12009-02-06 18:30:56 -080050
Johan Hovold32802072012-11-18 13:23:35 +010051static void opticon_process_data_packet(struct usb_serial_port *port,
52 const unsigned char *buf, size_t len)
53{
Jiri Slaby05c7cd32013-01-03 15:53:04 +010054 tty_insert_flip_string(&port->port, buf, len);
Jiri Slaby2e124b42013-01-03 15:53:06 +010055 tty_flip_buffer_push(&port->port);
Johan Hovold32802072012-11-18 13:23:35 +010056}
57
58static void opticon_process_status_packet(struct usb_serial_port *port,
59 const unsigned char *buf, size_t len)
60{
61 struct opticon_private *priv = usb_get_serial_port_data(port);
62 unsigned long flags;
63
64 spin_lock_irqsave(&priv->lock, flags);
65 if (buf[0] == 0x00)
66 priv->cts = false;
67 else
68 priv->cts = true;
69 spin_unlock_irqrestore(&priv->lock, flags);
70}
71
72static void opticon_process_read_urb(struct urb *urb)
73{
74 struct usb_serial_port *port = urb->context;
75 const unsigned char *hdr = urb->transfer_buffer;
76 const unsigned char *data = hdr + 2;
77 size_t data_len = urb->actual_length - 2;
78
79 if (urb->actual_length <= 2) {
80 dev_dbg(&port->dev, "malformed packet received: %d bytes\n",
81 urb->actual_length);
82 return;
83 }
84 /*
85 * Data from the device comes with a 2 byte header:
86 *
87 * <0x00><0x00>data...
88 * This is real data to be sent to the tty layer
89 * <0x00><0x01>level
90 * This is a CTS level change, the third byte is the CTS
91 * value (0 for low, 1 for high).
92 */
93 if ((hdr[0] == 0x00) && (hdr[1] == 0x00)) {
94 opticon_process_data_packet(port, data, data_len);
95 } else if ((hdr[0] == 0x00) && (hdr[1] == 0x01)) {
96 opticon_process_status_packet(port, data, data_len);
97 } else {
98 dev_dbg(&port->dev, "unknown packet received: %02x %02x\n",
99 hdr[0], hdr[1]);
100 }
101}
Martin Jansen309a0572011-02-24 14:50:16 +0100102
Martin Jansen309a0572011-02-24 14:50:16 +0100103static int send_control_msg(struct usb_serial_port *port, u8 requesttype,
104 u8 val)
105{
106 struct usb_serial *serial = port->serial;
107 int retval;
Johan Hovoldea0dbeb2012-10-25 10:29:11 +0200108 u8 *buffer;
109
110 buffer = kzalloc(1, GFP_KERNEL);
111 if (!buffer)
112 return -ENOMEM;
Martin Jansen309a0572011-02-24 14:50:16 +0100113
114 buffer[0] = val;
115 /* Send the message to the vendor control endpoint
116 * of the connected device */
117 retval = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
118 requesttype,
119 USB_DIR_OUT|USB_TYPE_VENDOR|USB_RECIP_INTERFACE,
120 0, 0, buffer, 1, 0);
Johan Hovoldea0dbeb2012-10-25 10:29:11 +0200121 kfree(buffer);
Martin Jansen309a0572011-02-24 14:50:16 +0100122
123 return retval;
124}
125
Alan Coxa509a7e2009-09-19 13:13:26 -0700126static int opticon_open(struct tty_struct *tty, struct usb_serial_port *port)
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -0800127{
Johan Hovold70d25ee2012-11-18 13:23:30 +0100128 struct opticon_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -0800129 unsigned long flags;
Johan Hovold7a6ee2b2012-11-18 13:23:36 +0100130 int res;
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -0800131
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -0800132 spin_lock_irqsave(&priv->lock, flags);
Martin Jansen309a0572011-02-24 14:50:16 +0100133 priv->rts = false;
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -0800134 spin_unlock_irqrestore(&priv->lock, flags);
135
Martin Jansen309a0572011-02-24 14:50:16 +0100136 /* Clear RTS line */
137 send_control_msg(port, CONTROL_RTS, 0);
138
Martin Jansen309a0572011-02-24 14:50:16 +0100139 /* clear the halt status of the enpoint */
Johan Hovold7a6ee2b2012-11-18 13:23:36 +0100140 usb_clear_halt(port->serial->dev, port->read_urb->pipe);
Martin Jansen309a0572011-02-24 14:50:16 +0100141
Johan Hovold7a6ee2b2012-11-18 13:23:36 +0100142 res = usb_serial_generic_open(tty, port);
143 if (!res)
144 return res;
145
Martin Jansen309a0572011-02-24 14:50:16 +0100146 /* Request CTS line state, sometimes during opening the current
147 * CTS state can be missed. */
148 send_control_msg(port, RESEND_CTS_STATE, 1);
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -0800149
Johan Hovold7a6ee2b2012-11-18 13:23:36 +0100150 return res;
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -0800151}
152
Martin Jansen309a0572011-02-24 14:50:16 +0100153static void opticon_write_control_callback(struct urb *urb)
Greg Kroah-Hartman648d4e12009-02-06 18:30:56 -0800154{
Johan Hovolde32d82bc2012-11-18 13:23:32 +0100155 struct usb_serial_port *port = urb->context;
156 struct opticon_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartman648d4e12009-02-06 18:30:56 -0800157 int status = urb->status;
158 unsigned long flags;
159
160 /* free up the transfer buffer, as usb_free_urb() does not do this */
161 kfree(urb->transfer_buffer);
162
Alon Ziv0d930e52010-10-10 08:32:19 +0200163 /* setup packet may be set if we're using it for writing */
164 kfree(urb->setup_packet);
165
Greg Kroah-Hartman648d4e12009-02-06 18:30:56 -0800166 if (status)
Johan Hovolde32d82bc2012-11-18 13:23:32 +0100167 dev_dbg(&port->dev,
Johan Hovolde29a7732012-11-18 13:23:23 +0100168 "%s - non-zero urb status received: %d\n",
Greg Kroah-Hartmand44d9ab2012-09-13 17:18:19 -0700169 __func__, status);
Greg Kroah-Hartman648d4e12009-02-06 18:30:56 -0800170
171 spin_lock_irqsave(&priv->lock, flags);
172 --priv->outstanding_urbs;
173 spin_unlock_irqrestore(&priv->lock, flags);
174
Johan Hovolde32d82bc2012-11-18 13:23:32 +0100175 usb_serial_port_softint(port);
Greg Kroah-Hartman648d4e12009-02-06 18:30:56 -0800176}
177
178static int opticon_write(struct tty_struct *tty, struct usb_serial_port *port,
179 const unsigned char *buf, int count)
180{
Johan Hovold70d25ee2012-11-18 13:23:30 +0100181 struct opticon_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartman648d4e12009-02-06 18:30:56 -0800182 struct usb_serial *serial = port->serial;
183 struct urb *urb;
184 unsigned char *buffer;
185 unsigned long flags;
186 int status;
Martin Jansen309a0572011-02-24 14:50:16 +0100187 struct usb_ctrlrequest *dr;
Greg Kroah-Hartman648d4e12009-02-06 18:30:56 -0800188
Greg Kroah-Hartman648d4e12009-02-06 18:30:56 -0800189 spin_lock_irqsave(&priv->lock, flags);
190 if (priv->outstanding_urbs > URB_UPPER_LIMIT) {
191 spin_unlock_irqrestore(&priv->lock, flags);
Greg Kroah-Hartmand44d9ab2012-09-13 17:18:19 -0700192 dev_dbg(&port->dev, "%s - write limit hit\n", __func__);
Greg Kroah-Hartman648d4e12009-02-06 18:30:56 -0800193 return 0;
194 }
195 priv->outstanding_urbs++;
196 spin_unlock_irqrestore(&priv->lock, flags);
197
198 buffer = kmalloc(count, GFP_ATOMIC);
199 if (!buffer) {
200 dev_err(&port->dev, "out of memory\n");
201 count = -ENOMEM;
Martin Jansen309a0572011-02-24 14:50:16 +0100202
Greg Kroah-Hartman648d4e12009-02-06 18:30:56 -0800203 goto error_no_buffer;
204 }
205
206 urb = usb_alloc_urb(0, GFP_ATOMIC);
207 if (!urb) {
208 dev_err(&port->dev, "no more free urbs\n");
209 count = -ENOMEM;
210 goto error_no_urb;
211 }
212
213 memcpy(buffer, buf, count);
214
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100215 usb_serial_debug_data(&port->dev, __func__, count, buffer);
Greg Kroah-Hartman648d4e12009-02-06 18:30:56 -0800216
Martin Jansen309a0572011-02-24 14:50:16 +0100217 /* The conncected devices do not have a bulk write endpoint,
218 * to transmit data to de barcode device the control endpoint is used */
219 dr = kmalloc(sizeof(struct usb_ctrlrequest), GFP_NOIO);
Julia Lawallb0795bb2011-05-13 17:30:46 +0200220 if (!dr) {
221 dev_err(&port->dev, "out of memory\n");
222 count = -ENOMEM;
Johan Hovoldacbf0e52012-10-25 10:29:12 +0200223 goto error_no_dr;
Julia Lawallb0795bb2011-05-13 17:30:46 +0200224 }
Alon Ziv0d930e52010-10-10 08:32:19 +0200225
Martin Jansen309a0572011-02-24 14:50:16 +0100226 dr->bRequestType = USB_TYPE_VENDOR | USB_RECIP_INTERFACE | USB_DIR_OUT;
227 dr->bRequest = 0x01;
228 dr->wValue = 0;
229 dr->wIndex = 0;
230 dr->wLength = cpu_to_le16(count);
Alon Ziv0d930e52010-10-10 08:32:19 +0200231
Martin Jansen309a0572011-02-24 14:50:16 +0100232 usb_fill_control_urb(urb, serial->dev,
233 usb_sndctrlpipe(serial->dev, 0),
234 (unsigned char *)dr, buffer, count,
Johan Hovolde32d82bc2012-11-18 13:23:32 +0100235 opticon_write_control_callback, port);
Greg Kroah-Hartman648d4e12009-02-06 18:30:56 -0800236
237 /* send it down the pipe */
238 status = usb_submit_urb(urb, GFP_ATOMIC);
239 if (status) {
240 dev_err(&port->dev,
Martin Jansen309a0572011-02-24 14:50:16 +0100241 "%s - usb_submit_urb(write endpoint) failed status = %d\n",
Greg Kroah-Hartman648d4e12009-02-06 18:30:56 -0800242 __func__, status);
243 count = status;
244 goto error;
245 }
246
247 /* we are done with this urb, so let the host driver
248 * really free it when it is finished with it */
249 usb_free_urb(urb);
250
251 return count;
252error:
Johan Hovoldacbf0e52012-10-25 10:29:12 +0200253 kfree(dr);
254error_no_dr:
Greg Kroah-Hartman648d4e12009-02-06 18:30:56 -0800255 usb_free_urb(urb);
256error_no_urb:
257 kfree(buffer);
258error_no_buffer:
259 spin_lock_irqsave(&priv->lock, flags);
260 --priv->outstanding_urbs;
261 spin_unlock_irqrestore(&priv->lock, flags);
262 return count;
263}
264
265static int opticon_write_room(struct tty_struct *tty)
266{
267 struct usb_serial_port *port = tty->driver_data;
Johan Hovold70d25ee2012-11-18 13:23:30 +0100268 struct opticon_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartman648d4e12009-02-06 18:30:56 -0800269 unsigned long flags;
270
Greg Kroah-Hartman648d4e12009-02-06 18:30:56 -0800271 /*
272 * We really can take almost anything the user throws at us
273 * but let's pick a nice big number to tell the tty
274 * layer that we have lots of free space, unless we don't.
275 */
276 spin_lock_irqsave(&priv->lock, flags);
277 if (priv->outstanding_urbs > URB_UPPER_LIMIT * 2 / 3) {
278 spin_unlock_irqrestore(&priv->lock, flags);
Greg Kroah-Hartmand44d9ab2012-09-13 17:18:19 -0700279 dev_dbg(&port->dev, "%s - write limit hit\n", __func__);
Greg Kroah-Hartman648d4e12009-02-06 18:30:56 -0800280 return 0;
281 }
282 spin_unlock_irqrestore(&priv->lock, flags);
283
284 return 2048;
285}
286
Alan Cox60b33c12011-02-14 16:26:14 +0000287static int opticon_tiocmget(struct tty_struct *tty)
Greg Kroah-Hartmanfaac64a2009-02-06 18:31:46 -0800288{
289 struct usb_serial_port *port = tty->driver_data;
Johan Hovold70d25ee2012-11-18 13:23:30 +0100290 struct opticon_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartmanfaac64a2009-02-06 18:31:46 -0800291 unsigned long flags;
292 int result = 0;
293
Greg Kroah-Hartmanfaac64a2009-02-06 18:31:46 -0800294 spin_lock_irqsave(&priv->lock, flags);
295 if (priv->rts)
Martin Jansen309a0572011-02-24 14:50:16 +0100296 result |= TIOCM_RTS;
297 if (priv->cts)
298 result |= TIOCM_CTS;
Greg Kroah-Hartmanfaac64a2009-02-06 18:31:46 -0800299 spin_unlock_irqrestore(&priv->lock, flags);
300
Greg Kroah-Hartmand44d9ab2012-09-13 17:18:19 -0700301 dev_dbg(&port->dev, "%s - %x\n", __func__, result);
Greg Kroah-Hartmanfaac64a2009-02-06 18:31:46 -0800302 return result;
303}
304
Randy Dunlap4acfaf82011-04-03 11:42:00 -0700305static int opticon_tiocmset(struct tty_struct *tty,
Martin Jansen309a0572011-02-24 14:50:16 +0100306 unsigned int set, unsigned int clear)
307{
308 struct usb_serial_port *port = tty->driver_data;
Johan Hovold81d5a672012-04-25 15:56:29 +0200309 struct usb_serial *serial = port->serial;
Johan Hovold70d25ee2012-11-18 13:23:30 +0100310 struct opticon_private *priv = usb_get_serial_port_data(port);
Martin Jansen309a0572011-02-24 14:50:16 +0100311 unsigned long flags;
312 bool rts;
313 bool changed = false;
Johan Hovold81d5a672012-04-25 15:56:29 +0200314 int ret;
Martin Jansen309a0572011-02-24 14:50:16 +0100315
Martin Jansen309a0572011-02-24 14:50:16 +0100316 /* We only support RTS so we only handle that */
317 spin_lock_irqsave(&priv->lock, flags);
318
319 rts = priv->rts;
320 if (set & TIOCM_RTS)
321 priv->rts = true;
322 if (clear & TIOCM_RTS)
323 priv->rts = false;
324 changed = rts ^ priv->rts;
325 spin_unlock_irqrestore(&priv->lock, flags);
326
327 if (!changed)
328 return 0;
329
330 /* Send the new RTS state to the connected device */
Johan Hovold81d5a672012-04-25 15:56:29 +0200331 mutex_lock(&serial->disc_mutex);
332 if (!serial->disconnected)
333 ret = send_control_msg(port, CONTROL_RTS, !rts);
334 else
335 ret = -ENODEV;
336 mutex_unlock(&serial->disc_mutex);
337
338 return ret;
Martin Jansen309a0572011-02-24 14:50:16 +0100339}
340
Johan Hovold56be1a12012-11-18 13:23:31 +0100341static int get_serial_info(struct usb_serial_port *port,
Greg Kroah-Hartmanfaac64a2009-02-06 18:31:46 -0800342 struct serial_struct __user *serial)
343{
344 struct serial_struct tmp;
345
346 if (!serial)
347 return -EFAULT;
348
349 memset(&tmp, 0x00, sizeof(tmp));
350
351 /* fake emulate a 16550 uart to make userspace code happy */
352 tmp.type = PORT_16550A;
Johan Hovold56be1a12012-11-18 13:23:31 +0100353 tmp.line = port->serial->minor;
Greg Kroah-Hartmanfaac64a2009-02-06 18:31:46 -0800354 tmp.port = 0;
355 tmp.irq = 0;
356 tmp.flags = ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ;
357 tmp.xmit_fifo_size = 1024;
358 tmp.baud_base = 9600;
359 tmp.close_delay = 5*HZ;
360 tmp.closing_wait = 30*HZ;
361
362 if (copy_to_user(serial, &tmp, sizeof(*serial)))
363 return -EFAULT;
364 return 0;
365}
366
Alan Cox00a0d0d2011-02-14 16:27:06 +0000367static int opticon_ioctl(struct tty_struct *tty,
Greg Kroah-Hartmanfaac64a2009-02-06 18:31:46 -0800368 unsigned int cmd, unsigned long arg)
369{
370 struct usb_serial_port *port = tty->driver_data;
Greg Kroah-Hartmanfaac64a2009-02-06 18:31:46 -0800371
Greg Kroah-Hartmand44d9ab2012-09-13 17:18:19 -0700372 dev_dbg(&port->dev, "%s - port %d, cmd = 0x%x\n", __func__, port->number, cmd);
Greg Kroah-Hartmanfaac64a2009-02-06 18:31:46 -0800373
374 switch (cmd) {
375 case TIOCGSERIAL:
Johan Hovold56be1a12012-11-18 13:23:31 +0100376 return get_serial_info(port,
Greg Kroah-Hartmanfaac64a2009-02-06 18:31:46 -0800377 (struct serial_struct __user *)arg);
378 }
379
380 return -ENOIOCTLCMD;
381}
382
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -0800383static int opticon_startup(struct usb_serial *serial)
384{
Johan Hovolda0a5fd92012-11-18 13:23:27 +0100385 if (!serial->num_bulk_in) {
386 dev_err(&serial->dev->dev, "no bulk in endpoint\n");
387 return -ENODEV;
388 }
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -0800389
Johan Hovold70d25ee2012-11-18 13:23:30 +0100390 return 0;
391}
392
393static int opticon_port_probe(struct usb_serial_port *port)
394{
Johan Hovold70d25ee2012-11-18 13:23:30 +0100395 struct opticon_private *priv;
Johan Hovold70d25ee2012-11-18 13:23:30 +0100396
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -0800397 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
Johan Hovold70d25ee2012-11-18 13:23:30 +0100398 if (!priv)
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -0800399 return -ENOMEM;
Johan Hovold70d25ee2012-11-18 13:23:30 +0100400
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -0800401 spin_lock_init(&priv->lock);
Johan Hovold0b8718a2012-11-18 13:23:22 +0100402
Johan Hovold70d25ee2012-11-18 13:23:30 +0100403 usb_set_serial_port_data(port, priv);
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -0800404
Johan Hovold70d25ee2012-11-18 13:23:30 +0100405 return 0;
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -0800406}
407
Johan Hovold70d25ee2012-11-18 13:23:30 +0100408static int opticon_port_remove(struct usb_serial_port *port)
Alan Sternf9c99bb2009-06-02 11:53:55 -0400409{
Johan Hovold70d25ee2012-11-18 13:23:30 +0100410 struct opticon_private *priv = usb_get_serial_port_data(port);
Alan Sternf9c99bb2009-06-02 11:53:55 -0400411
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -0800412 kfree(priv);
Johan Hovold70d25ee2012-11-18 13:23:30 +0100413
414 return 0;
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -0800415}
416
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -0800417static struct usb_serial_driver opticon_device = {
418 .driver = {
419 .owner = THIS_MODULE,
420 .name = "opticon",
421 },
422 .id_table = id_table,
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -0800423 .num_ports = 1,
Johan Hovold333396f2012-11-18 13:23:33 +0100424 .bulk_in_size = 256,
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -0800425 .attach = opticon_startup,
Johan Hovold70d25ee2012-11-18 13:23:30 +0100426 .port_probe = opticon_port_probe,
427 .port_remove = opticon_port_remove,
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -0800428 .open = opticon_open,
Greg Kroah-Hartman648d4e12009-02-06 18:30:56 -0800429 .write = opticon_write,
430 .write_room = opticon_write_room,
Johan Hovold7a6ee2b2012-11-18 13:23:36 +0100431 .throttle = usb_serial_generic_throttle,
432 .unthrottle = usb_serial_generic_unthrottle,
Greg Kroah-Hartmanfaac64a2009-02-06 18:31:46 -0800433 .ioctl = opticon_ioctl,
434 .tiocmget = opticon_tiocmget,
Martin Jansen309a0572011-02-24 14:50:16 +0100435 .tiocmset = opticon_tiocmset,
Johan Hovold7a6ee2b2012-11-18 13:23:36 +0100436 .process_read_urb = opticon_process_read_urb,
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -0800437};
438
Alan Sternf667dda2012-02-23 14:57:18 -0500439static struct usb_serial_driver * const serial_drivers[] = {
440 &opticon_device, NULL
441};
442
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700443module_usb_serial_driver(serial_drivers, id_table);
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -0800444
Martin Jansen309a0572011-02-24 14:50:16 +0100445MODULE_DESCRIPTION(DRIVER_DESC);
Greg Kroah-Hartman57262b82008-11-03 13:27:03 -0800446MODULE_LICENSE("GPL");