blob: 37fb911c1cc06f427863af63be14baff83d7f823 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * REINER SCT cyberJack pinpad/e-com USB Chipcard Reader Driver
3 *
4 * Copyright (C) 2001 REINER SCT
5 * Author: Matthias Bruestle
6 *
7 * Contact: support@reiner-sct.com (see MAINTAINERS)
8 *
9 * This program is largely derived from work by the linux-usb group
10 * and associated source files. Please see the usb/serial files for
11 * individual credits and copyrights.
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * Thanks to Greg Kroah-Hartman (greg@kroah.com) for his help and
19 * patience.
20 *
21 * In case of problems, please write to the contact e-mail address
22 * mentioned above.
23 *
24 * Please note that later models of the cyberjack reader family are
25 * supported by a libusb-based userspace device driver.
26 *
27 * Homepage: http://www.reiner-sct.de/support/treiber_cyberjack.php#linux
28 */
29
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/kernel.h>
32#include <linux/errno.h>
33#include <linux/init.h>
34#include <linux/slab.h>
35#include <linux/tty.h>
36#include <linux/tty_driver.h>
37#include <linux/tty_flip.h>
38#include <linux/module.h>
39#include <linux/spinlock.h>
Alan Coxb9c52f12008-07-22 11:10:27 +010040#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070042#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#define CYBERJACK_LOCAL_BUF_SIZE 32
45
Rusty Russell90ab5ee2012-01-13 09:32:20 +103046static bool debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48/*
49 * Version Information
50 */
51#define DRIVER_VERSION "v1.01"
52#define DRIVER_AUTHOR "Matthias Bruestle"
53#define DRIVER_DESC "REINER SCT cyberJack pinpad/e-com USB Chipcard Reader Driver"
54
55
56#define CYBERJACK_VENDOR_ID 0x0C4B
57#define CYBERJACK_PRODUCT_ID 0x0100
58
59/* Function prototypes */
Alan Cox95da3102008-07-22 11:09:07 +010060static int cyberjack_startup(struct usb_serial *serial);
Alan Sternf9c99bb2009-06-02 11:53:55 -040061static void cyberjack_disconnect(struct usb_serial *serial);
62static void cyberjack_release(struct usb_serial *serial);
Alan Cox95da3102008-07-22 11:09:07 +010063static int cyberjack_open(struct tty_struct *tty,
Alan Coxa509a7e2009-09-19 13:13:26 -070064 struct usb_serial_port *port);
Alan Cox335f8512009-06-11 12:26:29 +010065static void cyberjack_close(struct usb_serial_port *port);
Alan Cox95da3102008-07-22 11:09:07 +010066static int cyberjack_write(struct tty_struct *tty,
67 struct usb_serial_port *port, const unsigned char *buf, int count);
Alan Coxb9c52f12008-07-22 11:10:27 +010068static int cyberjack_write_room(struct tty_struct *tty);
Alan Cox95da3102008-07-22 11:09:07 +010069static void cyberjack_read_int_callback(struct urb *urb);
70static void cyberjack_read_bulk_callback(struct urb *urb);
71static void cyberjack_write_bulk_callback(struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Németh Márton7d40d7e2010-01-10 15:34:24 +010073static const struct usb_device_id id_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 { USB_DEVICE(CYBERJACK_VENDOR_ID, CYBERJACK_PRODUCT_ID) },
75 { } /* Terminating entry */
76};
77
Alan Coxb9c52f12008-07-22 11:10:27 +010078MODULE_DEVICE_TABLE(usb, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80static struct usb_driver cyberjack_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 .name = "cyberjack",
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 .id_table = id_table,
83};
84
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -070085static struct usb_serial_driver cyberjack_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070086 .driver = {
87 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070088 .name = "cyberjack",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070089 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070090 .description = "Reiner SCT Cyberjack USB card reader",
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 .id_table = id_table,
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 .num_ports = 1,
93 .attach = cyberjack_startup,
Alan Sternf9c99bb2009-06-02 11:53:55 -040094 .disconnect = cyberjack_disconnect,
95 .release = cyberjack_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 .open = cyberjack_open,
97 .close = cyberjack_close,
98 .write = cyberjack_write,
Johannes Hölzld9b1b782006-12-17 21:50:24 +010099 .write_room = cyberjack_write_room,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 .read_int_callback = cyberjack_read_int_callback,
101 .read_bulk_callback = cyberjack_read_bulk_callback,
102 .write_bulk_callback = cyberjack_write_bulk_callback,
103};
104
Alan Stern08a4f6b2012-02-23 14:56:17 -0500105static struct usb_serial_driver * const serial_drivers[] = {
106 &cyberjack_device, NULL
107};
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109struct cyberjack_private {
110 spinlock_t lock; /* Lock for SMP */
111 short rdtodo; /* Bytes still to read */
112 unsigned char wrbuf[5*64]; /* Buffer for collecting data to write */
113 short wrfilled; /* Overall data size we already got */
114 short wrsent; /* Data already sent */
115};
116
117/* do some startup allocations not currently performed by usb_serial_probe() */
Alan Cox95da3102008-07-22 11:09:07 +0100118static int cyberjack_startup(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
120 struct cyberjack_private *priv;
121 int i;
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 /* allocate the private data structure */
124 priv = kmalloc(sizeof(struct cyberjack_private), GFP_KERNEL);
125 if (!priv)
126 return -ENOMEM;
127
128 /* set initial values */
129 spin_lock_init(&priv->lock);
130 priv->rdtodo = 0;
131 priv->wrfilled = 0;
132 priv->wrsent = 0;
133 usb_set_serial_port_data(serial->port[0], priv);
134
135 init_waitqueue_head(&serial->port[0]->write_wait);
136
137 for (i = 0; i < serial->num_ports; ++i) {
138 int result;
Alan Coxb9c52f12008-07-22 11:10:27 +0100139 result = usb_submit_urb(serial->port[i]->interrupt_in_urb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 GFP_KERNEL);
141 if (result)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700142 dev_err(&serial->dev->dev,
143 "usb_submit_urb(read int) failed\n");
Harvey Harrison441b62c2008-03-03 16:08:34 -0800144 dbg("%s - usb_submit_urb(int urb)", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 }
146
Alan Coxb9c52f12008-07-22 11:10:27 +0100147 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
Alan Sternf9c99bb2009-06-02 11:53:55 -0400150static void cyberjack_disconnect(struct usb_serial *serial)
151{
152 int i;
153
Alan Sternf9c99bb2009-06-02 11:53:55 -0400154 for (i = 0; i < serial->num_ports; ++i)
155 usb_kill_urb(serial->port[i]->interrupt_in_urb);
156}
157
158static void cyberjack_release(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
160 int i;
Alan Coxb9c52f12008-07-22 11:10:27 +0100161
Alan Coxa5b6f602008-04-08 17:16:06 +0100162 for (i = 0; i < serial->num_ports; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 /* My special items, the standard routines free my urbs */
164 kfree(usb_get_serial_port_data(serial->port[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 }
166}
Alan Coxb9c52f12008-07-22 11:10:27 +0100167
Alan Cox95da3102008-07-22 11:09:07 +0100168static int cyberjack_open(struct tty_struct *tty,
Alan Coxa509a7e2009-09-19 13:13:26 -0700169 struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
171 struct cyberjack_private *priv;
172 unsigned long flags;
173 int result = 0;
174
Alan Coxb9c52f12008-07-22 11:10:27 +0100175 dbg("%s - usb_clear_halt", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 usb_clear_halt(port->serial->dev, port->write_urb->pipe);
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 priv = usb_get_serial_port_data(port);
179 spin_lock_irqsave(&priv->lock, flags);
180 priv->rdtodo = 0;
181 priv->wrfilled = 0;
182 priv->wrsent = 0;
183 spin_unlock_irqrestore(&priv->lock, flags);
184
185 return result;
186}
187
Alan Cox335f8512009-06-11 12:26:29 +0100188static void cyberjack_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 if (port->serial->dev) {
191 /* shutdown any bulk reads that might be going on */
192 usb_kill_urb(port->write_urb);
193 usb_kill_urb(port->read_urb);
194 }
195}
196
Alan Cox95da3102008-07-22 11:09:07 +0100197static int cyberjack_write(struct tty_struct *tty,
198 struct usb_serial_port *port, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 struct cyberjack_private *priv = usb_get_serial_port_data(port);
201 unsigned long flags;
202 int result;
203 int wrexpected;
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (count == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800206 dbg("%s - write request of 0 bytes", __func__);
Alan Coxa5b6f602008-04-08 17:16:06 +0100207 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
209
Johan Hovoldc1cac102011-11-06 19:06:23 +0100210 if (!test_and_clear_bit(0, &port->write_urbs_free)) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800211 dbg("%s - already writing", __func__);
Greg Kroah-Hartman507ca9b2005-04-23 12:49:16 -0700212 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 }
214
215 spin_lock_irqsave(&priv->lock, flags);
216
Alan Coxb9c52f12008-07-22 11:10:27 +0100217 if (count+priv->wrfilled > sizeof(priv->wrbuf)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 /* To much data for buffer. Reset buffer. */
Alan Coxa5b6f602008-04-08 17:16:06 +0100219 priv->wrfilled = 0;
Alan Coxa5b6f602008-04-08 17:16:06 +0100220 spin_unlock_irqrestore(&priv->lock, flags);
Johan Hovoldc1cac102011-11-06 19:06:23 +0100221 set_bit(0, &port->write_urbs_free);
Alan Coxa5b6f602008-04-08 17:16:06 +0100222 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
224
225 /* Copy data */
Alan Coxb9c52f12008-07-22 11:10:27 +0100226 memcpy(priv->wrbuf + priv->wrfilled, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Harvey Harrison441b62c2008-03-03 16:08:34 -0800228 usb_serial_debug_data(debug, &port->dev, __func__, count,
Alan Coxb9c52f12008-07-22 11:10:27 +0100229 priv->wrbuf + priv->wrfilled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 priv->wrfilled += count;
231
Alan Coxb9c52f12008-07-22 11:10:27 +0100232 if (priv->wrfilled >= 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 wrexpected = ((int)priv->wrbuf[2]<<8)+priv->wrbuf[1]+3;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800234 dbg("%s - expected data: %d", __func__, wrexpected);
Alan Coxb9c52f12008-07-22 11:10:27 +0100235 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 wrexpected = sizeof(priv->wrbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Alan Coxb9c52f12008-07-22 11:10:27 +0100238 if (priv->wrfilled >= wrexpected) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 /* We have enough data to begin transmission */
240 int length;
241
Harvey Harrison441b62c2008-03-03 16:08:34 -0800242 dbg("%s - transmitting data (frame 1)", __func__);
Alan Coxb9c52f12008-07-22 11:10:27 +0100243 length = (wrexpected > port->bulk_out_size) ?
244 port->bulk_out_size : wrexpected;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Alan Coxb9c52f12008-07-22 11:10:27 +0100246 memcpy(port->write_urb->transfer_buffer, priv->wrbuf, length);
247 priv->wrsent = length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 /* set up our urb */
Johan Hovoldfd119612011-11-06 19:06:30 +0100250 port->write_urb->transfer_buffer_length = length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 /* send the data out the bulk port */
253 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
254 if (result) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700255 dev_err(&port->dev,
256 "%s - failed submitting write urb, error %d",
257 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 /* Throw away data. No better idea what to do with it. */
Alan Coxa5b6f602008-04-08 17:16:06 +0100259 priv->wrfilled = 0;
260 priv->wrsent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 spin_unlock_irqrestore(&priv->lock, flags);
Johan Hovoldc1cac102011-11-06 19:06:23 +0100262 set_bit(0, &port->write_urbs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 return 0;
264 }
265
Alan Coxb9c52f12008-07-22 11:10:27 +0100266 dbg("%s - priv->wrsent=%d", __func__, priv->wrsent);
267 dbg("%s - priv->wrfilled=%d", __func__, priv->wrfilled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Alan Coxb9c52f12008-07-22 11:10:27 +0100269 if (priv->wrsent >= priv->wrfilled) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800270 dbg("%s - buffer cleaned", __func__);
Alan Coxb9c52f12008-07-22 11:10:27 +0100271 memset(priv->wrbuf, 0, sizeof(priv->wrbuf));
Alan Coxa5b6f602008-04-08 17:16:06 +0100272 priv->wrfilled = 0;
273 priv->wrsent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 }
275 }
276
277 spin_unlock_irqrestore(&priv->lock, flags);
278
Alan Coxb9c52f12008-07-22 11:10:27 +0100279 return count;
280}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Alan Cox95da3102008-07-22 11:09:07 +0100282static int cyberjack_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
Alan Coxa5b6f602008-04-08 17:16:06 +0100284 /* FIXME: .... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 return CYBERJACK_LOCAL_BUF_SIZE;
286}
287
Alan Cox95da3102008-07-22 11:09:07 +0100288static void cyberjack_read_int_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
Ming Leicdc97792008-02-24 18:41:47 +0800290 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 struct cyberjack_private *priv = usb_get_serial_port_data(port);
292 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700293 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 int result;
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 /* the urb might have been killed. */
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700297 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 return;
299
Alan Coxb9c52f12008-07-22 11:10:27 +0100300 usb_serial_debug_data(debug, &port->dev, __func__,
301 urb->actual_length, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 /* React only to interrupts signaling a bulk_in transfer */
Alan Coxb9c52f12008-07-22 11:10:27 +0100304 if (urb->actual_length == 4 && data[0] == 0x01) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 short old_rdtodo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307 /* This is a announcement of coming bulk_ins. */
308 unsigned short size = ((unsigned short)data[3]<<8)+data[2]+3;
309
310 spin_lock(&priv->lock);
311
312 old_rdtodo = priv->rdtodo;
313
Alan Coxb9c52f12008-07-22 11:10:27 +0100314 if (old_rdtodo + size < old_rdtodo) {
315 dbg("To many bulk_in urbs to do.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 spin_unlock(&priv->lock);
317 goto resubmit;
318 }
319
320 /* "+=" is probably more fault tollerant than "=" */
321 priv->rdtodo += size;
322
Harvey Harrison441b62c2008-03-03 16:08:34 -0800323 dbg("%s - rdtodo: %d", __func__, priv->rdtodo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325 spin_unlock(&priv->lock);
326
Alan Coxb9c52f12008-07-22 11:10:27 +0100327 if (!old_rdtodo) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
Alan Coxb9c52f12008-07-22 11:10:27 +0100329 if (result)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700330 dev_err(&port->dev, "%s - failed resubmitting "
331 "read urb, error %d\n",
332 __func__, result);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800333 dbg("%s - usb_submit_urb(read urb)", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 }
335 }
336
337resubmit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
339 if (result)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700340 dev_err(&port->dev, "usb_submit_urb(read int) failed\n");
Harvey Harrison441b62c2008-03-03 16:08:34 -0800341 dbg("%s - usb_submit_urb(int urb)", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
Alan Cox95da3102008-07-22 11:09:07 +0100344static void cyberjack_read_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Ming Leicdc97792008-02-24 18:41:47 +0800346 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 struct cyberjack_private *priv = usb_get_serial_port_data(port);
348 struct tty_struct *tty;
349 unsigned char *data = urb->transfer_buffer;
350 short todo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 int result;
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700352 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Alan Coxb9c52f12008-07-22 11:10:27 +0100354 usb_serial_debug_data(debug, &port->dev, __func__,
355 urb->actual_length, data);
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700356 if (status) {
357 dbg("%s - nonzero read bulk status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800358 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return;
360 }
361
Alan Cox4a90f092008-10-13 10:39:46 +0100362 tty = tty_port_tty_get(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 if (!tty) {
Joe Perches759f3632010-02-05 16:50:08 -0800364 dbg("%s - ignoring since device not open", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 return;
366 }
367 if (urb->actual_length) {
Alan Cox33f0f882006-01-09 20:54:13 -0800368 tty_insert_flip_string(tty, data, urb->actual_length);
Alan Coxb9c52f12008-07-22 11:10:27 +0100369 tty_flip_buffer_push(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
Alan Cox4a90f092008-10-13 10:39:46 +0100371 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373 spin_lock(&priv->lock);
374
375 /* Reduce urbs to do by one. */
Alan Coxb9c52f12008-07-22 11:10:27 +0100376 priv->rdtodo -= urb->actual_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 /* Just to be sure */
Alan Coxb9c52f12008-07-22 11:10:27 +0100378 if (priv->rdtodo < 0)
379 priv->rdtodo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 todo = priv->rdtodo;
381
382 spin_unlock(&priv->lock);
383
Harvey Harrison441b62c2008-03-03 16:08:34 -0800384 dbg("%s - rdtodo: %d", __func__, todo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386 /* Continue to read if we have still urbs to do. */
Alan Coxb9c52f12008-07-22 11:10:27 +0100387 if (todo /* || (urb->actual_length==port->bulk_in_endpointAddress)*/) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
389 if (result)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700390 dev_err(&port->dev, "%s - failed resubmitting read "
391 "urb, error %d\n", __func__, result);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800392 dbg("%s - usb_submit_urb(read urb)", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 }
394}
395
Alan Cox95da3102008-07-22 11:09:07 +0100396static void cyberjack_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
Ming Leicdc97792008-02-24 18:41:47 +0800398 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 struct cyberjack_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700400 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Johan Hovoldc1cac102011-11-06 19:06:23 +0100402 set_bit(0, &port->write_urbs_free);
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700403 if (status) {
404 dbg("%s - nonzero write bulk status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800405 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 return;
407 }
408
409 spin_lock(&priv->lock);
410
411 /* only do something if we have more data to send */
Alan Coxb9c52f12008-07-22 11:10:27 +0100412 if (priv->wrfilled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 int length, blksize, result;
414
Harvey Harrison441b62c2008-03-03 16:08:34 -0800415 dbg("%s - transmitting data (frame n)", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417 length = ((priv->wrfilled - priv->wrsent) > port->bulk_out_size) ?
418 port->bulk_out_size : (priv->wrfilled - priv->wrsent);
419
Alan Coxb9c52f12008-07-22 11:10:27 +0100420 memcpy(port->write_urb->transfer_buffer,
421 priv->wrbuf + priv->wrsent, length);
422 priv->wrsent += length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 /* set up our urb */
Johan Hovoldfd119612011-11-06 19:06:30 +0100425 port->write_urb->transfer_buffer_length = length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 /* send the data out the bulk port */
428 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
429 if (result) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700430 dev_err(&port->dev,
431 "%s - failed submitting write urb, error %d\n",
432 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 /* Throw away data. No better idea what to do with it. */
Alan Coxa5b6f602008-04-08 17:16:06 +0100434 priv->wrfilled = 0;
435 priv->wrsent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 goto exit;
437 }
438
Alan Coxb9c52f12008-07-22 11:10:27 +0100439 dbg("%s - priv->wrsent=%d", __func__, priv->wrsent);
440 dbg("%s - priv->wrfilled=%d", __func__, priv->wrfilled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 blksize = ((int)priv->wrbuf[2]<<8)+priv->wrbuf[1]+3;
443
Alan Coxb9c52f12008-07-22 11:10:27 +0100444 if (priv->wrsent >= priv->wrfilled ||
445 priv->wrsent >= blksize) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800446 dbg("%s - buffer cleaned", __func__);
Alan Coxb9c52f12008-07-22 11:10:27 +0100447 memset(priv->wrbuf, 0, sizeof(priv->wrbuf));
Alan Coxa5b6f602008-04-08 17:16:06 +0100448 priv->wrfilled = 0;
449 priv->wrsent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 }
451 }
452
453exit:
454 spin_unlock(&priv->lock);
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700455 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456}
457
Greg Kroah-Hartman5671df52012-02-28 13:11:40 -0800458module_usb_serial_driver(cyberjack_driver, serial_drivers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Alan Coxb9c52f12008-07-22 11:10:27 +0100460MODULE_AUTHOR(DRIVER_AUTHOR);
461MODULE_DESCRIPTION(DRIVER_DESC);
462MODULE_VERSION(DRIVER_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463MODULE_LICENSE("GPL");
464
465module_param(debug, bool, S_IRUGO | S_IWUSR);
466MODULE_PARM_DESC(debug, "Debug enabled or not");