blob: 1a71363b95bd648f71ec9115bbb5ca3648a4050c [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#define DRIVER_AUTHOR "Matthias Bruestle"
47#define DRIVER_DESC "REINER SCT cyberJack pinpad/e-com USB Chipcard Reader Driver"
48
49
50#define CYBERJACK_VENDOR_ID 0x0C4B
51#define CYBERJACK_PRODUCT_ID 0x0100
52
53/* Function prototypes */
Johan Hovolda9556042012-10-15 18:20:54 +020054static int cyberjack_port_probe(struct usb_serial_port *port);
55static int cyberjack_port_remove(struct usb_serial_port *port);
Alan Cox95da3102008-07-22 11:09:07 +010056static int cyberjack_open(struct tty_struct *tty,
Alan Coxa509a7e2009-09-19 13:13:26 -070057 struct usb_serial_port *port);
Alan Cox335f8512009-06-11 12:26:29 +010058static void cyberjack_close(struct usb_serial_port *port);
Alan Cox95da3102008-07-22 11:09:07 +010059static int cyberjack_write(struct tty_struct *tty,
60 struct usb_serial_port *port, const unsigned char *buf, int count);
Alan Coxb9c52f12008-07-22 11:10:27 +010061static int cyberjack_write_room(struct tty_struct *tty);
Alan Cox95da3102008-07-22 11:09:07 +010062static void cyberjack_read_int_callback(struct urb *urb);
63static void cyberjack_read_bulk_callback(struct urb *urb);
64static void cyberjack_write_bulk_callback(struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Németh Márton7d40d7e2010-01-10 15:34:24 +010066static const struct usb_device_id id_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 { USB_DEVICE(CYBERJACK_VENDOR_ID, CYBERJACK_PRODUCT_ID) },
68 { } /* Terminating entry */
69};
70
Alan Coxb9c52f12008-07-22 11:10:27 +010071MODULE_DEVICE_TABLE(usb, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -070073static struct usb_serial_driver cyberjack_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070074 .driver = {
75 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070076 .name = "cyberjack",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070077 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070078 .description = "Reiner SCT Cyberjack USB card reader",
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 .id_table = id_table,
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 .num_ports = 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;
144 int result = 0;
145
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700146 dev_dbg(&port->dev, "%s - usb_clear_halt\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 usb_clear_halt(port->serial->dev, port->write_urb->pipe);
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 priv = usb_get_serial_port_data(port);
150 spin_lock_irqsave(&priv->lock, flags);
151 priv->rdtodo = 0;
152 priv->wrfilled = 0;
153 priv->wrsent = 0;
154 spin_unlock_irqrestore(&priv->lock, flags);
155
156 return result;
157}
158
Alan Cox335f8512009-06-11 12:26:29 +0100159static void cyberjack_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Johan Hovold1bc77f42013-03-21 12:36:29 +0100161 usb_kill_urb(port->write_urb);
162 usb_kill_urb(port->read_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163}
164
Alan Cox95da3102008-07-22 11:09:07 +0100165static int cyberjack_write(struct tty_struct *tty,
166 struct usb_serial_port *port, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700168 struct device *dev = &port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 struct cyberjack_private *priv = usb_get_serial_port_data(port);
170 unsigned long flags;
171 int result;
172 int wrexpected;
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 if (count == 0) {
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700175 dev_dbg(dev, "%s - write request of 0 bytes\n", __func__);
Alan Coxa5b6f602008-04-08 17:16:06 +0100176 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 }
178
Johan Hovoldc1cac102011-11-06 19:06:23 +0100179 if (!test_and_clear_bit(0, &port->write_urbs_free)) {
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700180 dev_dbg(dev, "%s - already writing\n", __func__);
Greg Kroah-Hartman507ca9b2005-04-23 12:49:16 -0700181 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 }
183
184 spin_lock_irqsave(&priv->lock, flags);
185
Alan Coxb9c52f12008-07-22 11:10:27 +0100186 if (count+priv->wrfilled > sizeof(priv->wrbuf)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 /* To much data for buffer. Reset buffer. */
Alan Coxa5b6f602008-04-08 17:16:06 +0100188 priv->wrfilled = 0;
Alan Coxa5b6f602008-04-08 17:16:06 +0100189 spin_unlock_irqrestore(&priv->lock, flags);
Johan Hovoldc1cac102011-11-06 19:06:23 +0100190 set_bit(0, &port->write_urbs_free);
Alan Coxa5b6f602008-04-08 17:16:06 +0100191 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 }
193
194 /* Copy data */
Alan Coxb9c52f12008-07-22 11:10:27 +0100195 memcpy(priv->wrbuf + priv->wrfilled, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100197 usb_serial_debug_data(dev, __func__, count, priv->wrbuf + priv->wrfilled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 priv->wrfilled += count;
199
Alan Coxb9c52f12008-07-22 11:10:27 +0100200 if (priv->wrfilled >= 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 wrexpected = ((int)priv->wrbuf[2]<<8)+priv->wrbuf[1]+3;
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700202 dev_dbg(dev, "%s - expected data: %d\n", __func__, wrexpected);
Alan Coxb9c52f12008-07-22 11:10:27 +0100203 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 wrexpected = sizeof(priv->wrbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Alan Coxb9c52f12008-07-22 11:10:27 +0100206 if (priv->wrfilled >= wrexpected) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 /* We have enough data to begin transmission */
208 int length;
209
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700210 dev_dbg(dev, "%s - transmitting data (frame 1)\n", __func__);
Alan Coxb9c52f12008-07-22 11:10:27 +0100211 length = (wrexpected > port->bulk_out_size) ?
212 port->bulk_out_size : wrexpected;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Alan Coxb9c52f12008-07-22 11:10:27 +0100214 memcpy(port->write_urb->transfer_buffer, priv->wrbuf, length);
215 priv->wrsent = length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 /* set up our urb */
Johan Hovoldfd119612011-11-06 19:06:30 +0100218 port->write_urb->transfer_buffer_length = length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 /* send the data out the bulk port */
221 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
222 if (result) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700223 dev_err(&port->dev,
224 "%s - failed submitting write urb, error %d",
225 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 /* Throw away data. No better idea what to do with it. */
Alan Coxa5b6f602008-04-08 17:16:06 +0100227 priv->wrfilled = 0;
228 priv->wrsent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 spin_unlock_irqrestore(&priv->lock, flags);
Johan Hovoldc1cac102011-11-06 19:06:23 +0100230 set_bit(0, &port->write_urbs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 return 0;
232 }
233
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700234 dev_dbg(dev, "%s - priv->wrsent=%d\n", __func__, priv->wrsent);
235 dev_dbg(dev, "%s - priv->wrfilled=%d\n", __func__, priv->wrfilled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Alan Coxb9c52f12008-07-22 11:10:27 +0100237 if (priv->wrsent >= priv->wrfilled) {
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700238 dev_dbg(dev, "%s - buffer cleaned\n", __func__);
Alan Coxb9c52f12008-07-22 11:10:27 +0100239 memset(priv->wrbuf, 0, sizeof(priv->wrbuf));
Alan Coxa5b6f602008-04-08 17:16:06 +0100240 priv->wrfilled = 0;
241 priv->wrsent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 }
243 }
244
245 spin_unlock_irqrestore(&priv->lock, flags);
246
Alan Coxb9c52f12008-07-22 11:10:27 +0100247 return count;
248}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Alan Cox95da3102008-07-22 11:09:07 +0100250static int cyberjack_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
Alan Coxa5b6f602008-04-08 17:16:06 +0100252 /* FIXME: .... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 return CYBERJACK_LOCAL_BUF_SIZE;
254}
255
Alan Cox95da3102008-07-22 11:09:07 +0100256static void cyberjack_read_int_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
Ming Leicdc97792008-02-24 18:41:47 +0800258 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 struct cyberjack_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700260 struct device *dev = &port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700262 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 int result;
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 /* the urb might have been killed. */
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700266 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return;
268
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100269 usb_serial_debug_data(dev, __func__, urb->actual_length, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 /* React only to interrupts signaling a bulk_in transfer */
Alan Coxb9c52f12008-07-22 11:10:27 +0100272 if (urb->actual_length == 4 && data[0] == 0x01) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 short old_rdtodo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 /* This is a announcement of coming bulk_ins. */
276 unsigned short size = ((unsigned short)data[3]<<8)+data[2]+3;
277
278 spin_lock(&priv->lock);
279
280 old_rdtodo = priv->rdtodo;
281
Dan Carpenter5287bf72013-10-06 03:32:53 +0300282 if (old_rdtodo > SHRT_MAX - size) {
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700283 dev_dbg(dev, "To many bulk_in urbs to do.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 spin_unlock(&priv->lock);
285 goto resubmit;
286 }
287
Rahul Bedarkarcd8c5052014-01-02 19:29:24 +0530288 /* "+=" is probably more fault tolerant than "=" */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 priv->rdtodo += size;
290
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700291 dev_dbg(dev, "%s - rdtodo: %d\n", __func__, priv->rdtodo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 spin_unlock(&priv->lock);
294
Alan Coxb9c52f12008-07-22 11:10:27 +0100295 if (!old_rdtodo) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
Alan Coxb9c52f12008-07-22 11:10:27 +0100297 if (result)
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700298 dev_err(dev, "%s - failed resubmitting read urb, error %d\n",
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700299 __func__, result);
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700300 dev_dbg(dev, "%s - usb_submit_urb(read urb)\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
302 }
303
304resubmit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
306 if (result)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700307 dev_err(&port->dev, "usb_submit_urb(read int) failed\n");
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700308 dev_dbg(dev, "%s - usb_submit_urb(int urb)\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309}
310
Alan Cox95da3102008-07-22 11:09:07 +0100311static void cyberjack_read_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
Ming Leicdc97792008-02-24 18:41:47 +0800313 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 struct cyberjack_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700315 struct device *dev = &port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 unsigned char *data = urb->transfer_buffer;
317 short todo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 int result;
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700319 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100321 usb_serial_debug_data(dev, __func__, urb->actual_length, data);
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700322 if (status) {
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700323 dev_dbg(dev, "%s - nonzero read bulk status received: %d\n",
324 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 return;
326 }
327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 if (urb->actual_length) {
Jiri Slaby05c7cd32013-01-03 15:53:04 +0100329 tty_insert_flip_string(&port->port, data, urb->actual_length);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100330 tty_flip_buffer_push(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 }
332
333 spin_lock(&priv->lock);
334
335 /* Reduce urbs to do by one. */
Alan Coxb9c52f12008-07-22 11:10:27 +0100336 priv->rdtodo -= urb->actual_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 /* Just to be sure */
Alan Coxb9c52f12008-07-22 11:10:27 +0100338 if (priv->rdtodo < 0)
339 priv->rdtodo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 todo = priv->rdtodo;
341
342 spin_unlock(&priv->lock);
343
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700344 dev_dbg(dev, "%s - rdtodo: %d\n", __func__, todo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346 /* Continue to read if we have still urbs to do. */
Alan Coxb9c52f12008-07-22 11:10:27 +0100347 if (todo /* || (urb->actual_length==port->bulk_in_endpointAddress)*/) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
349 if (result)
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700350 dev_err(dev, "%s - failed resubmitting read urb, error %d\n",
351 __func__, result);
352 dev_dbg(dev, "%s - usb_submit_urb(read urb)\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 }
354}
355
Alan Cox95da3102008-07-22 11:09:07 +0100356static void cyberjack_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
Ming Leicdc97792008-02-24 18:41:47 +0800358 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 struct cyberjack_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700360 struct device *dev = &port->dev;
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700361 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Johan Hovoldc1cac102011-11-06 19:06:23 +0100363 set_bit(0, &port->write_urbs_free);
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700364 if (status) {
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700365 dev_dbg(dev, "%s - nonzero write bulk status received: %d\n",
366 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return;
368 }
369
370 spin_lock(&priv->lock);
371
372 /* only do something if we have more data to send */
Alan Coxb9c52f12008-07-22 11:10:27 +0100373 if (priv->wrfilled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 int length, blksize, result;
375
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700376 dev_dbg(dev, "%s - transmitting data (frame n)\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378 length = ((priv->wrfilled - priv->wrsent) > port->bulk_out_size) ?
379 port->bulk_out_size : (priv->wrfilled - priv->wrsent);
380
Alan Coxb9c52f12008-07-22 11:10:27 +0100381 memcpy(port->write_urb->transfer_buffer,
382 priv->wrbuf + priv->wrsent, length);
383 priv->wrsent += length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 /* set up our urb */
Johan Hovoldfd119612011-11-06 19:06:30 +0100386 port->write_urb->transfer_buffer_length = length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 /* send the data out the bulk port */
389 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
390 if (result) {
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700391 dev_err(dev, "%s - failed submitting write urb, error %d\n",
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700392 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 /* Throw away data. No better idea what to do with it. */
Alan Coxa5b6f602008-04-08 17:16:06 +0100394 priv->wrfilled = 0;
395 priv->wrsent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 goto exit;
397 }
398
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700399 dev_dbg(dev, "%s - priv->wrsent=%d\n", __func__, priv->wrsent);
400 dev_dbg(dev, "%s - priv->wrfilled=%d\n", __func__, priv->wrfilled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 blksize = ((int)priv->wrbuf[2]<<8)+priv->wrbuf[1]+3;
403
Alan Coxb9c52f12008-07-22 11:10:27 +0100404 if (priv->wrsent >= priv->wrfilled ||
405 priv->wrsent >= blksize) {
Greg Kroah-Hartman96fc8e82012-09-13 17:18:14 -0700406 dev_dbg(dev, "%s - buffer cleaned\n", __func__);
Alan Coxb9c52f12008-07-22 11:10:27 +0100407 memset(priv->wrbuf, 0, sizeof(priv->wrbuf));
Alan Coxa5b6f602008-04-08 17:16:06 +0100408 priv->wrfilled = 0;
409 priv->wrsent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 }
411 }
412
413exit:
414 spin_unlock(&priv->lock);
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700415 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
417
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700418module_usb_serial_driver(serial_drivers, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Alan Coxb9c52f12008-07-22 11:10:27 +0100420MODULE_AUTHOR(DRIVER_AUTHOR);
421MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422MODULE_LICENSE("GPL");