blob: 47fbd9f0c0c7a8508f23b562f4a220dbd19bc33f [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/slab.h>
34#include <linux/tty.h>
35#include <linux/tty_driver.h>
36#include <linux/tty_flip.h>
37#include <linux/module.h>
38#include <linux/spinlock.h>
Alan Coxb9c52f12008-07-22 11:10:27 +010039#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070041#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#define CYBERJACK_LOCAL_BUF_SIZE 32
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#define DRIVER_AUTHOR "Matthias Bruestle"
46#define DRIVER_DESC "REINER SCT cyberJack pinpad/e-com USB Chipcard Reader Driver"
47
48
49#define CYBERJACK_VENDOR_ID 0x0C4B
50#define CYBERJACK_PRODUCT_ID 0x0100
51
52/* Function prototypes */
Johan Hovolda9556042012-10-15 18:20:54 +020053static int cyberjack_port_probe(struct usb_serial_port *port);
54static int cyberjack_port_remove(struct usb_serial_port *port);
Alan Cox95da3102008-07-22 11:09:07 +010055static int cyberjack_open(struct tty_struct *tty,
Alan Coxa509a7e2009-09-19 13:13:26 -070056 struct usb_serial_port *port);
Alan Cox335f8512009-06-11 12:26:29 +010057static void cyberjack_close(struct usb_serial_port *port);
Alan Cox95da3102008-07-22 11:09:07 +010058static int cyberjack_write(struct tty_struct *tty,
59 struct usb_serial_port *port, const unsigned char *buf, int count);
Alan Coxb9c52f12008-07-22 11:10:27 +010060static int cyberjack_write_room(struct tty_struct *tty);
Alan Cox95da3102008-07-22 11:09:07 +010061static void cyberjack_read_int_callback(struct urb *urb);
62static void cyberjack_read_bulk_callback(struct urb *urb);
63static void cyberjack_write_bulk_callback(struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Németh Márton7d40d7e2010-01-10 15:34:24 +010065static const struct usb_device_id id_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 { USB_DEVICE(CYBERJACK_VENDOR_ID, CYBERJACK_PRODUCT_ID) },
67 { } /* Terminating entry */
68};
69
Alan Coxb9c52f12008-07-22 11:10:27 +010070MODULE_DEVICE_TABLE(usb, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -070072static struct usb_serial_driver cyberjack_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070073 .driver = {
74 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070075 .name = "cyberjack",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070076 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070077 .description = "Reiner SCT Cyberjack USB card reader",
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 .id_table = id_table,
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 .num_ports = 1,
Johan Hovoldd183b9b42017-03-02 12:51:21 +010080 .num_bulk_out = 1,
Johan Hovolda9556042012-10-15 18:20:54 +020081 .port_probe = cyberjack_port_probe,
82 .port_remove = cyberjack_port_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 .open = cyberjack_open,
84 .close = cyberjack_close,
85 .write = cyberjack_write,
Johannes Hölzld9b1b782006-12-17 21:50:24 +010086 .write_room = cyberjack_write_room,
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 .read_int_callback = cyberjack_read_int_callback,
88 .read_bulk_callback = cyberjack_read_bulk_callback,
89 .write_bulk_callback = cyberjack_write_bulk_callback,
90};
91
Alan Stern08a4f6b2012-02-23 14:56:17 -050092static struct usb_serial_driver * const serial_drivers[] = {
93 &cyberjack_device, NULL
94};
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096struct cyberjack_private {
97 spinlock_t lock; /* Lock for SMP */
98 short rdtodo; /* Bytes still to read */
99 unsigned char wrbuf[5*64]; /* Buffer for collecting data to write */
100 short wrfilled; /* Overall data size we already got */
101 short wrsent; /* Data already sent */
102};
103
Johan Hovolda9556042012-10-15 18:20:54 +0200104static int cyberjack_port_probe(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
106 struct cyberjack_private *priv;
Johan Hovolda9556042012-10-15 18:20:54 +0200107 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 priv = kmalloc(sizeof(struct cyberjack_private), GFP_KERNEL);
110 if (!priv)
111 return -ENOMEM;
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 spin_lock_init(&priv->lock);
114 priv->rdtodo = 0;
115 priv->wrfilled = 0;
116 priv->wrsent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Johan Hovolda9556042012-10-15 18:20:54 +0200118 usb_set_serial_port_data(port, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Johan Hovolda9556042012-10-15 18:20:54 +0200120 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
121 if (result)
122 dev_err(&port->dev, "usb_submit_urb(read int) failed\n");
123
124 return 0;
125}
126
127static int cyberjack_port_remove(struct usb_serial_port *port)
128{
129 struct cyberjack_private *priv;
130
Johan Hovold30d9d422013-03-21 12:36:45 +0100131 usb_kill_urb(port->interrupt_in_urb);
132
Johan Hovolda9556042012-10-15 18:20:54 +0200133 priv = usb_get_serial_port_data(port);
134 kfree(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Alan Coxb9c52f12008-07-22 11:10:27 +0100136 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
Alan Cox95da3102008-07-22 11:09:07 +0100139static int cyberjack_open(struct tty_struct *tty,
Alan Coxa509a7e2009-09-19 13:13:26 -0700140 struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
142 struct cyberjack_private *priv;
143 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700145 dev_dbg(&port->dev, "%s - usb_clear_halt\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 usb_clear_halt(port->serial->dev, port->write_urb->pipe);
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 priv = usb_get_serial_port_data(port);
149 spin_lock_irqsave(&priv->lock, flags);
150 priv->rdtodo = 0;
151 priv->wrfilled = 0;
152 priv->wrsent = 0;
153 spin_unlock_irqrestore(&priv->lock, flags);
154
Mathieu OTHACEHE0f3083a2016-02-04 19:01:28 +0100155 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
Alan Cox335f8512009-06-11 12:26:29 +0100158static void cyberjack_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
Johan Hovold1bc77f42013-03-21 12:36:29 +0100160 usb_kill_urb(port->write_urb);
161 usb_kill_urb(port->read_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162}
163
Alan Cox95da3102008-07-22 11:09:07 +0100164static int cyberjack_write(struct tty_struct *tty,
165 struct usb_serial_port *port, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700167 struct device *dev = &port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 struct cyberjack_private *priv = usb_get_serial_port_data(port);
169 unsigned long flags;
170 int result;
171 int wrexpected;
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 if (count == 0) {
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700174 dev_dbg(dev, "%s - write request of 0 bytes\n", __func__);
Alan Coxa5b6f602008-04-08 17:16:06 +0100175 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 }
177
Johan Hovoldc1cac102011-11-06 19:06:23 +0100178 if (!test_and_clear_bit(0, &port->write_urbs_free)) {
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700179 dev_dbg(dev, "%s - already writing\n", __func__);
Greg Kroah-Hartman507ca9b2005-04-23 12:49:16 -0700180 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 }
182
183 spin_lock_irqsave(&priv->lock, flags);
184
Alan Coxb9c52f12008-07-22 11:10:27 +0100185 if (count+priv->wrfilled > sizeof(priv->wrbuf)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 /* To much data for buffer. Reset buffer. */
Alan Coxa5b6f602008-04-08 17:16:06 +0100187 priv->wrfilled = 0;
Alan Coxa5b6f602008-04-08 17:16:06 +0100188 spin_unlock_irqrestore(&priv->lock, flags);
Johan Hovoldc1cac102011-11-06 19:06:23 +0100189 set_bit(0, &port->write_urbs_free);
Alan Coxa5b6f602008-04-08 17:16:06 +0100190 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 }
192
193 /* Copy data */
Alan Coxb9c52f12008-07-22 11:10:27 +0100194 memcpy(priv->wrbuf + priv->wrfilled, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100196 usb_serial_debug_data(dev, __func__, count, priv->wrbuf + priv->wrfilled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 priv->wrfilled += count;
198
Alan Coxb9c52f12008-07-22 11:10:27 +0100199 if (priv->wrfilled >= 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 wrexpected = ((int)priv->wrbuf[2]<<8)+priv->wrbuf[1]+3;
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700201 dev_dbg(dev, "%s - expected data: %d\n", __func__, wrexpected);
Alan Coxb9c52f12008-07-22 11:10:27 +0100202 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 wrexpected = sizeof(priv->wrbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Alan Coxb9c52f12008-07-22 11:10:27 +0100205 if (priv->wrfilled >= wrexpected) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 /* We have enough data to begin transmission */
207 int length;
208
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700209 dev_dbg(dev, "%s - transmitting data (frame 1)\n", __func__);
Alan Coxb9c52f12008-07-22 11:10:27 +0100210 length = (wrexpected > port->bulk_out_size) ?
211 port->bulk_out_size : wrexpected;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Alan Coxb9c52f12008-07-22 11:10:27 +0100213 memcpy(port->write_urb->transfer_buffer, priv->wrbuf, length);
214 priv->wrsent = length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216 /* set up our urb */
Johan Hovoldfd119612011-11-06 19:06:30 +0100217 port->write_urb->transfer_buffer_length = length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 /* send the data out the bulk port */
220 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
221 if (result) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700222 dev_err(&port->dev,
Johan Hovoldd9a38a82014-03-12 19:09:42 +0100223 "%s - failed submitting write urb, error %d\n",
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700224 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 /* Throw away data. No better idea what to do with it. */
Alan Coxa5b6f602008-04-08 17:16:06 +0100226 priv->wrfilled = 0;
227 priv->wrsent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 spin_unlock_irqrestore(&priv->lock, flags);
Johan Hovoldc1cac102011-11-06 19:06:23 +0100229 set_bit(0, &port->write_urbs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return 0;
231 }
232
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700233 dev_dbg(dev, "%s - priv->wrsent=%d\n", __func__, priv->wrsent);
234 dev_dbg(dev, "%s - priv->wrfilled=%d\n", __func__, priv->wrfilled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Alan Coxb9c52f12008-07-22 11:10:27 +0100236 if (priv->wrsent >= priv->wrfilled) {
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700237 dev_dbg(dev, "%s - buffer cleaned\n", __func__);
Alan Coxb9c52f12008-07-22 11:10:27 +0100238 memset(priv->wrbuf, 0, sizeof(priv->wrbuf));
Alan Coxa5b6f602008-04-08 17:16:06 +0100239 priv->wrfilled = 0;
240 priv->wrsent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
242 }
243
244 spin_unlock_irqrestore(&priv->lock, flags);
245
Alan Coxb9c52f12008-07-22 11:10:27 +0100246 return count;
247}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Alan Cox95da3102008-07-22 11:09:07 +0100249static int cyberjack_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
Alan Coxa5b6f602008-04-08 17:16:06 +0100251 /* FIXME: .... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 return CYBERJACK_LOCAL_BUF_SIZE;
253}
254
Alan Cox95da3102008-07-22 11:09:07 +0100255static void cyberjack_read_int_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
Ming Leicdc97792008-02-24 18:41:47 +0800257 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 struct cyberjack_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700259 struct device *dev = &port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700261 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 int result;
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 /* the urb might have been killed. */
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700265 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 return;
267
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100268 usb_serial_debug_data(dev, __func__, urb->actual_length, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 /* React only to interrupts signaling a bulk_in transfer */
Alan Coxb9c52f12008-07-22 11:10:27 +0100271 if (urb->actual_length == 4 && data[0] == 0x01) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 short old_rdtodo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 /* This is a announcement of coming bulk_ins. */
275 unsigned short size = ((unsigned short)data[3]<<8)+data[2]+3;
276
277 spin_lock(&priv->lock);
278
279 old_rdtodo = priv->rdtodo;
280
Dan Carpenter5287bf72013-10-06 03:32:53 +0300281 if (old_rdtodo > SHRT_MAX - size) {
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700282 dev_dbg(dev, "To many bulk_in urbs to do.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 spin_unlock(&priv->lock);
284 goto resubmit;
285 }
286
Rahul Bedarkarcd8c5052014-01-02 19:29:24 +0530287 /* "+=" is probably more fault tolerant than "=" */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 priv->rdtodo += size;
289
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700290 dev_dbg(dev, "%s - rdtodo: %d\n", __func__, priv->rdtodo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 spin_unlock(&priv->lock);
293
Alan Coxb9c52f12008-07-22 11:10:27 +0100294 if (!old_rdtodo) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
Alan Coxb9c52f12008-07-22 11:10:27 +0100296 if (result)
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700297 dev_err(dev, "%s - failed resubmitting read urb, error %d\n",
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700298 __func__, result);
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700299 dev_dbg(dev, "%s - usb_submit_urb(read urb)\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 }
301 }
302
303resubmit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
305 if (result)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700306 dev_err(&port->dev, "usb_submit_urb(read int) failed\n");
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700307 dev_dbg(dev, "%s - usb_submit_urb(int urb)\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308}
309
Alan Cox95da3102008-07-22 11:09:07 +0100310static void cyberjack_read_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
Ming Leicdc97792008-02-24 18:41:47 +0800312 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 struct cyberjack_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700314 struct device *dev = &port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 unsigned char *data = urb->transfer_buffer;
316 short todo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 int result;
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700318 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100320 usb_serial_debug_data(dev, __func__, urb->actual_length, data);
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700321 if (status) {
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700322 dev_dbg(dev, "%s - nonzero read bulk status received: %d\n",
323 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 return;
325 }
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 if (urb->actual_length) {
Jiri Slaby05c7cd32013-01-03 15:53:04 +0100328 tty_insert_flip_string(&port->port, data, urb->actual_length);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100329 tty_flip_buffer_push(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
331
332 spin_lock(&priv->lock);
333
334 /* Reduce urbs to do by one. */
Alan Coxb9c52f12008-07-22 11:10:27 +0100335 priv->rdtodo -= urb->actual_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 /* Just to be sure */
Alan Coxb9c52f12008-07-22 11:10:27 +0100337 if (priv->rdtodo < 0)
338 priv->rdtodo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 todo = priv->rdtodo;
340
341 spin_unlock(&priv->lock);
342
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700343 dev_dbg(dev, "%s - rdtodo: %d\n", __func__, todo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345 /* Continue to read if we have still urbs to do. */
Alan Coxb9c52f12008-07-22 11:10:27 +0100346 if (todo /* || (urb->actual_length==port->bulk_in_endpointAddress)*/) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
348 if (result)
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700349 dev_err(dev, "%s - failed resubmitting read urb, error %d\n",
350 __func__, result);
351 dev_dbg(dev, "%s - usb_submit_urb(read urb)\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 }
353}
354
Alan Cox95da3102008-07-22 11:09:07 +0100355static void cyberjack_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
Ming Leicdc97792008-02-24 18:41:47 +0800357 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 struct cyberjack_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700359 struct device *dev = &port->dev;
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700360 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Johan Hovoldc1cac102011-11-06 19:06:23 +0100362 set_bit(0, &port->write_urbs_free);
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700363 if (status) {
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700364 dev_dbg(dev, "%s - nonzero write bulk status received: %d\n",
365 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 return;
367 }
368
369 spin_lock(&priv->lock);
370
371 /* only do something if we have more data to send */
Alan Coxb9c52f12008-07-22 11:10:27 +0100372 if (priv->wrfilled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 int length, blksize, result;
374
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700375 dev_dbg(dev, "%s - transmitting data (frame n)\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377 length = ((priv->wrfilled - priv->wrsent) > port->bulk_out_size) ?
378 port->bulk_out_size : (priv->wrfilled - priv->wrsent);
379
Alan Coxb9c52f12008-07-22 11:10:27 +0100380 memcpy(port->write_urb->transfer_buffer,
381 priv->wrbuf + priv->wrsent, length);
382 priv->wrsent += length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 /* set up our urb */
Johan Hovoldfd119612011-11-06 19:06:30 +0100385 port->write_urb->transfer_buffer_length = length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 /* send the data out the bulk port */
388 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
389 if (result) {
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700390 dev_err(dev, "%s - failed submitting write urb, error %d\n",
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700391 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 /* Throw away data. No better idea what to do with it. */
Alan Coxa5b6f602008-04-08 17:16:06 +0100393 priv->wrfilled = 0;
394 priv->wrsent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 goto exit;
396 }
397
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700398 dev_dbg(dev, "%s - priv->wrsent=%d\n", __func__, priv->wrsent);
399 dev_dbg(dev, "%s - priv->wrfilled=%d\n", __func__, priv->wrfilled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 blksize = ((int)priv->wrbuf[2]<<8)+priv->wrbuf[1]+3;
402
Alan Coxb9c52f12008-07-22 11:10:27 +0100403 if (priv->wrsent >= priv->wrfilled ||
404 priv->wrsent >= blksize) {
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700405 dev_dbg(dev, "%s - buffer cleaned\n", __func__);
Alan Coxb9c52f12008-07-22 11:10:27 +0100406 memset(priv->wrbuf, 0, sizeof(priv->wrbuf));
Alan Coxa5b6f602008-04-08 17:16:06 +0100407 priv->wrfilled = 0;
408 priv->wrsent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 }
410 }
411
412exit:
413 spin_unlock(&priv->lock);
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700414 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415}
416
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700417module_usb_serial_driver(serial_drivers, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Alan Coxb9c52f12008-07-22 11:10:27 +0100419MODULE_AUTHOR(DRIVER_AUTHOR);
420MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421MODULE_LICENSE("GPL");