blob: 933ba913e66c5fc21950a3ccc2e5b8229f8c9d63 [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
46static int debug;
47
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);
61static void cyberjack_shutdown(struct usb_serial *serial);
62static int cyberjack_open(struct tty_struct *tty,
63 struct usb_serial_port *port, struct file *filp);
Alan Cox335f8512009-06-11 12:26:29 +010064static void cyberjack_close(struct usb_serial_port *port);
Alan Cox95da3102008-07-22 11:09:07 +010065static int cyberjack_write(struct tty_struct *tty,
66 struct usb_serial_port *port, const unsigned char *buf, int count);
Alan Coxb9c52f12008-07-22 11:10:27 +010067static int cyberjack_write_room(struct tty_struct *tty);
Alan Cox95da3102008-07-22 11:09:07 +010068static void cyberjack_read_int_callback(struct urb *urb);
69static void cyberjack_read_bulk_callback(struct urb *urb);
70static void cyberjack_write_bulk_callback(struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72static struct usb_device_id id_table [] = {
73 { USB_DEVICE(CYBERJACK_VENDOR_ID, CYBERJACK_PRODUCT_ID) },
74 { } /* Terminating entry */
75};
76
Alan Coxb9c52f12008-07-22 11:10:27 +010077MODULE_DEVICE_TABLE(usb, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79static struct usb_driver cyberjack_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 .name = "cyberjack",
81 .probe = usb_serial_probe,
82 .disconnect = usb_serial_disconnect,
83 .id_table = id_table,
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -080084 .no_dynamic_id = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070085};
86
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -070087static struct usb_serial_driver cyberjack_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070088 .driver = {
89 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070090 .name = "cyberjack",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070091 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070092 .description = "Reiner SCT Cyberjack USB card reader",
Johannes Hölzld9b1b782006-12-17 21:50:24 +010093 .usb_driver = &cyberjack_driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 .id_table = id_table,
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 .num_ports = 1,
96 .attach = cyberjack_startup,
97 .shutdown = cyberjack_shutdown,
98 .open = cyberjack_open,
99 .close = cyberjack_close,
100 .write = cyberjack_write,
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100101 .write_room = cyberjack_write_room,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 .read_int_callback = cyberjack_read_int_callback,
103 .read_bulk_callback = cyberjack_read_bulk_callback,
104 .write_bulk_callback = cyberjack_write_bulk_callback,
105};
106
107struct cyberjack_private {
108 spinlock_t lock; /* Lock for SMP */
109 short rdtodo; /* Bytes still to read */
110 unsigned char wrbuf[5*64]; /* Buffer for collecting data to write */
111 short wrfilled; /* Overall data size we already got */
112 short wrsent; /* Data already sent */
113};
114
115/* do some startup allocations not currently performed by usb_serial_probe() */
Alan Cox95da3102008-07-22 11:09:07 +0100116static int cyberjack_startup(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
118 struct cyberjack_private *priv;
119 int i;
120
Harvey Harrison441b62c2008-03-03 16:08:34 -0800121 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 /* 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;
139 serial->port[i]->interrupt_in_urb->dev = serial->dev;
Alan Coxb9c52f12008-07-22 11:10:27 +0100140 result = usb_submit_urb(serial->port[i]->interrupt_in_urb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 GFP_KERNEL);
142 if (result)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700143 dev_err(&serial->dev->dev,
144 "usb_submit_urb(read int) failed\n");
Harvey Harrison441b62c2008-03-03 16:08:34 -0800145 dbg("%s - usb_submit_urb(int urb)", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 }
147
Alan Coxb9c52f12008-07-22 11:10:27 +0100148 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
Alan Cox95da3102008-07-22 11:09:07 +0100151static void cyberjack_shutdown(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
153 int i;
Alan Coxb9c52f12008-07-22 11:10:27 +0100154
Harvey Harrison441b62c2008-03-03 16:08:34 -0800155 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Alan Coxa5b6f602008-04-08 17:16:06 +0100157 for (i = 0; i < serial->num_ports; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 usb_kill_urb(serial->port[i]->interrupt_in_urb);
159 /* My special items, the standard routines free my urbs */
160 kfree(usb_get_serial_port_data(serial->port[i]));
161 usb_set_serial_port_data(serial->port[i], NULL);
162 }
163}
Alan Coxb9c52f12008-07-22 11:10:27 +0100164
Alan Cox95da3102008-07-22 11:09:07 +0100165static int cyberjack_open(struct tty_struct *tty,
166 struct usb_serial_port *port, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
168 struct cyberjack_private *priv;
169 unsigned long flags;
170 int result = 0;
171
Harvey Harrison441b62c2008-03-03 16:08:34 -0800172 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Alan Coxb9c52f12008-07-22 11:10:27 +0100174 dbg("%s - usb_clear_halt", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 usb_clear_halt(port->serial->dev, port->write_urb->pipe);
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 priv = usb_get_serial_port_data(port);
178 spin_lock_irqsave(&priv->lock, flags);
179 priv->rdtodo = 0;
180 priv->wrfilled = 0;
181 priv->wrsent = 0;
182 spin_unlock_irqrestore(&priv->lock, flags);
183
184 return result;
185}
186
Alan Cox335f8512009-06-11 12:26:29 +0100187static void cyberjack_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
Harvey Harrison441b62c2008-03-03 16:08:34 -0800189 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191 if (port->serial->dev) {
192 /* shutdown any bulk reads that might be going on */
193 usb_kill_urb(port->write_urb);
194 usb_kill_urb(port->read_urb);
195 }
196}
197
Alan Cox95da3102008-07-22 11:09:07 +0100198static int cyberjack_write(struct tty_struct *tty,
199 struct usb_serial_port *port, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
201 struct usb_serial *serial = port->serial;
202 struct cyberjack_private *priv = usb_get_serial_port_data(port);
203 unsigned long flags;
204 int result;
205 int wrexpected;
206
Harvey Harrison441b62c2008-03-03 16:08:34 -0800207 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 if (count == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800210 dbg("%s - write request of 0 bytes", __func__);
Alan Coxa5b6f602008-04-08 17:16:06 +0100211 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 }
213
Peter Zijlstrae81ee632006-09-25 12:51:41 +0200214 spin_lock_bh(&port->lock);
Greg Kroah-Hartman507ca9b2005-04-23 12:49:16 -0700215 if (port->write_urb_busy) {
Peter Zijlstrae81ee632006-09-25 12:51:41 +0200216 spin_unlock_bh(&port->lock);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800217 dbg("%s - already writing", __func__);
Greg Kroah-Hartman507ca9b2005-04-23 12:49:16 -0700218 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 }
Greg Kroah-Hartman507ca9b2005-04-23 12:49:16 -0700220 port->write_urb_busy = 1;
Peter Zijlstrae81ee632006-09-25 12:51:41 +0200221 spin_unlock_bh(&port->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223 spin_lock_irqsave(&priv->lock, flags);
224
Alan Coxb9c52f12008-07-22 11:10:27 +0100225 if (count+priv->wrfilled > sizeof(priv->wrbuf)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 /* To much data for buffer. Reset buffer. */
Alan Coxa5b6f602008-04-08 17:16:06 +0100227 priv->wrfilled = 0;
Greg Kroah-Hartman507ca9b2005-04-23 12:49:16 -0700228 port->write_urb_busy = 0;
Alan Coxa5b6f602008-04-08 17:16:06 +0100229 spin_unlock_irqrestore(&priv->lock, flags);
230 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
232
233 /* Copy data */
Alan Coxb9c52f12008-07-22 11:10:27 +0100234 memcpy(priv->wrbuf + priv->wrfilled, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Harvey Harrison441b62c2008-03-03 16:08:34 -0800236 usb_serial_debug_data(debug, &port->dev, __func__, count,
Alan Coxb9c52f12008-07-22 11:10:27 +0100237 priv->wrbuf + priv->wrfilled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 priv->wrfilled += count;
239
Alan Coxb9c52f12008-07-22 11:10:27 +0100240 if (priv->wrfilled >= 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 wrexpected = ((int)priv->wrbuf[2]<<8)+priv->wrbuf[1]+3;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800242 dbg("%s - expected data: %d", __func__, wrexpected);
Alan Coxb9c52f12008-07-22 11:10:27 +0100243 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 wrexpected = sizeof(priv->wrbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Alan Coxb9c52f12008-07-22 11:10:27 +0100246 if (priv->wrfilled >= wrexpected) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 /* We have enough data to begin transmission */
248 int length;
249
Harvey Harrison441b62c2008-03-03 16:08:34 -0800250 dbg("%s - transmitting data (frame 1)", __func__);
Alan Coxb9c52f12008-07-22 11:10:27 +0100251 length = (wrexpected > port->bulk_out_size) ?
252 port->bulk_out_size : wrexpected;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Alan Coxb9c52f12008-07-22 11:10:27 +0100254 memcpy(port->write_urb->transfer_buffer, priv->wrbuf, length);
255 priv->wrsent = length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 /* set up our urb */
Alan Coxb9c52f12008-07-22 11:10:27 +0100258 usb_fill_bulk_urb(port->write_urb, serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 usb_sndbulkpipe(serial->dev, port->bulk_out_endpointAddress),
260 port->write_urb->transfer_buffer, length,
Alan Coxb9c52f12008-07-22 11:10:27 +0100261 ((serial->type->write_bulk_callback) ?
262 serial->type->write_bulk_callback :
263 cyberjack_write_bulk_callback),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 port);
265
266 /* send the data out the bulk port */
267 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
268 if (result) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700269 dev_err(&port->dev,
270 "%s - failed submitting write urb, error %d",
271 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 /* Throw away data. No better idea what to do with it. */
Alan Coxa5b6f602008-04-08 17:16:06 +0100273 priv->wrfilled = 0;
274 priv->wrsent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 spin_unlock_irqrestore(&priv->lock, flags);
Greg Kroah-Hartman507ca9b2005-04-23 12:49:16 -0700276 port->write_urb_busy = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 return 0;
278 }
279
Alan Coxb9c52f12008-07-22 11:10:27 +0100280 dbg("%s - priv->wrsent=%d", __func__, priv->wrsent);
281 dbg("%s - priv->wrfilled=%d", __func__, priv->wrfilled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Alan Coxb9c52f12008-07-22 11:10:27 +0100283 if (priv->wrsent >= priv->wrfilled) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800284 dbg("%s - buffer cleaned", __func__);
Alan Coxb9c52f12008-07-22 11:10:27 +0100285 memset(priv->wrbuf, 0, sizeof(priv->wrbuf));
Alan Coxa5b6f602008-04-08 17:16:06 +0100286 priv->wrfilled = 0;
287 priv->wrsent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 }
289 }
290
291 spin_unlock_irqrestore(&priv->lock, flags);
292
Alan Coxb9c52f12008-07-22 11:10:27 +0100293 return count;
294}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Alan Cox95da3102008-07-22 11:09:07 +0100296static int cyberjack_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
Alan Coxa5b6f602008-04-08 17:16:06 +0100298 /* FIXME: .... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 return CYBERJACK_LOCAL_BUF_SIZE;
300}
301
Alan Cox95da3102008-07-22 11:09:07 +0100302static void cyberjack_read_int_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Ming Leicdc97792008-02-24 18:41:47 +0800304 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 struct cyberjack_private *priv = usb_get_serial_port_data(port);
306 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700307 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 int result;
309
Harvey Harrison441b62c2008-03-03 16:08:34 -0800310 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312 /* the urb might have been killed. */
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700313 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 return;
315
Alan Coxb9c52f12008-07-22 11:10:27 +0100316 usb_serial_debug_data(debug, &port->dev, __func__,
317 urb->actual_length, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 /* React only to interrupts signaling a bulk_in transfer */
Alan Coxb9c52f12008-07-22 11:10:27 +0100320 if (urb->actual_length == 4 && data[0] == 0x01) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 short old_rdtodo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 /* This is a announcement of coming bulk_ins. */
324 unsigned short size = ((unsigned short)data[3]<<8)+data[2]+3;
325
326 spin_lock(&priv->lock);
327
328 old_rdtodo = priv->rdtodo;
329
Alan Coxb9c52f12008-07-22 11:10:27 +0100330 if (old_rdtodo + size < old_rdtodo) {
331 dbg("To many bulk_in urbs to do.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 spin_unlock(&priv->lock);
333 goto resubmit;
334 }
335
336 /* "+=" is probably more fault tollerant than "=" */
337 priv->rdtodo += size;
338
Harvey Harrison441b62c2008-03-03 16:08:34 -0800339 dbg("%s - rdtodo: %d", __func__, priv->rdtodo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 spin_unlock(&priv->lock);
342
Alan Coxb9c52f12008-07-22 11:10:27 +0100343 if (!old_rdtodo) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 port->read_urb->dev = port->serial->dev;
345 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
Alan Coxb9c52f12008-07-22 11:10:27 +0100346 if (result)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700347 dev_err(&port->dev, "%s - failed resubmitting "
348 "read urb, error %d\n",
349 __func__, result);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800350 dbg("%s - usb_submit_urb(read urb)", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 }
352 }
353
354resubmit:
355 port->interrupt_in_urb->dev = port->serial->dev;
356 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
357 if (result)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700358 dev_err(&port->dev, "usb_submit_urb(read int) failed\n");
Harvey Harrison441b62c2008-03-03 16:08:34 -0800359 dbg("%s - usb_submit_urb(int urb)", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360}
361
Alan Cox95da3102008-07-22 11:09:07 +0100362static void cyberjack_read_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Ming Leicdc97792008-02-24 18:41:47 +0800364 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 struct cyberjack_private *priv = usb_get_serial_port_data(port);
366 struct tty_struct *tty;
367 unsigned char *data = urb->transfer_buffer;
368 short todo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 int result;
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700370 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Harvey Harrison441b62c2008-03-03 16:08:34 -0800372 dbg("%s - port %d", __func__, port->number);
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700373
Alan Coxb9c52f12008-07-22 11:10:27 +0100374 usb_serial_debug_data(debug, &port->dev, __func__,
375 urb->actual_length, data);
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700376 if (status) {
377 dbg("%s - nonzero read bulk status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800378 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 return;
380 }
381
Alan Cox4a90f092008-10-13 10:39:46 +0100382 tty = tty_port_tty_get(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 if (!tty) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800384 dbg("%s - ignoring since device not open\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 return;
386 }
387 if (urb->actual_length) {
Alan Cox33f0f882006-01-09 20:54:13 -0800388 tty_buffer_request_room(tty, urb->actual_length);
389 tty_insert_flip_string(tty, data, urb->actual_length);
Alan Coxb9c52f12008-07-22 11:10:27 +0100390 tty_flip_buffer_push(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 }
Alan Cox4a90f092008-10-13 10:39:46 +0100392 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
394 spin_lock(&priv->lock);
395
396 /* Reduce urbs to do by one. */
Alan Coxb9c52f12008-07-22 11:10:27 +0100397 priv->rdtodo -= urb->actual_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 /* Just to be sure */
Alan Coxb9c52f12008-07-22 11:10:27 +0100399 if (priv->rdtodo < 0)
400 priv->rdtodo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 todo = priv->rdtodo;
402
403 spin_unlock(&priv->lock);
404
Harvey Harrison441b62c2008-03-03 16:08:34 -0800405 dbg("%s - rdtodo: %d", __func__, todo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 /* Continue to read if we have still urbs to do. */
Alan Coxb9c52f12008-07-22 11:10:27 +0100408 if (todo /* || (urb->actual_length==port->bulk_in_endpointAddress)*/) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 port->read_urb->dev = port->serial->dev;
410 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
411 if (result)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700412 dev_err(&port->dev, "%s - failed resubmitting read "
413 "urb, error %d\n", __func__, result);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800414 dbg("%s - usb_submit_urb(read urb)", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 }
416}
417
Alan Cox95da3102008-07-22 11:09:07 +0100418static void cyberjack_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
Ming Leicdc97792008-02-24 18:41:47 +0800420 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 struct cyberjack_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700422 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Harvey Harrison441b62c2008-03-03 16:08:34 -0800424 dbg("%s - port %d", __func__, port->number);
Greg Kroah-Hartman507ca9b2005-04-23 12:49:16 -0700425
426 port->write_urb_busy = 0;
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700427 if (status) {
428 dbg("%s - nonzero write bulk status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800429 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 return;
431 }
432
433 spin_lock(&priv->lock);
434
435 /* only do something if we have more data to send */
Alan Coxb9c52f12008-07-22 11:10:27 +0100436 if (priv->wrfilled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 int length, blksize, result;
438
Harvey Harrison441b62c2008-03-03 16:08:34 -0800439 dbg("%s - transmitting data (frame n)", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 length = ((priv->wrfilled - priv->wrsent) > port->bulk_out_size) ?
442 port->bulk_out_size : (priv->wrfilled - priv->wrsent);
443
Alan Coxb9c52f12008-07-22 11:10:27 +0100444 memcpy(port->write_urb->transfer_buffer,
445 priv->wrbuf + priv->wrsent, length);
446 priv->wrsent += length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 /* set up our urb */
Alan Coxb9c52f12008-07-22 11:10:27 +0100449 usb_fill_bulk_urb(port->write_urb, port->serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 usb_sndbulkpipe(port->serial->dev, port->bulk_out_endpointAddress),
451 port->write_urb->transfer_buffer, length,
Alan Coxb9c52f12008-07-22 11:10:27 +0100452 ((port->serial->type->write_bulk_callback) ?
453 port->serial->type->write_bulk_callback :
454 cyberjack_write_bulk_callback),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 port);
456
457 /* send the data out the bulk port */
458 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
459 if (result) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700460 dev_err(&port->dev,
461 "%s - failed submitting write urb, error %d\n",
462 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 /* Throw away data. No better idea what to do with it. */
Alan Coxa5b6f602008-04-08 17:16:06 +0100464 priv->wrfilled = 0;
465 priv->wrsent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 goto exit;
467 }
468
Alan Coxb9c52f12008-07-22 11:10:27 +0100469 dbg("%s - priv->wrsent=%d", __func__, priv->wrsent);
470 dbg("%s - priv->wrfilled=%d", __func__, priv->wrfilled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
472 blksize = ((int)priv->wrbuf[2]<<8)+priv->wrbuf[1]+3;
473
Alan Coxb9c52f12008-07-22 11:10:27 +0100474 if (priv->wrsent >= priv->wrfilled ||
475 priv->wrsent >= blksize) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800476 dbg("%s - buffer cleaned", __func__);
Alan Coxb9c52f12008-07-22 11:10:27 +0100477 memset(priv->wrbuf, 0, sizeof(priv->wrbuf));
Alan Coxa5b6f602008-04-08 17:16:06 +0100478 priv->wrfilled = 0;
479 priv->wrsent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 }
481 }
482
483exit:
484 spin_unlock(&priv->lock);
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700485 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486}
487
Alan Coxb9c52f12008-07-22 11:10:27 +0100488static int __init cyberjack_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
490 int retval;
491 retval = usb_serial_register(&cyberjack_device);
492 if (retval)
493 goto failed_usb_serial_register;
494 retval = usb_register(&cyberjack_driver);
Alan Coxb9c52f12008-07-22 11:10:27 +0100495 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 goto failed_usb_register;
497
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -0700498 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION " "
499 DRIVER_AUTHOR "\n");
500 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_DESC "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502 return 0;
503failed_usb_register:
504 usb_serial_deregister(&cyberjack_device);
505failed_usb_serial_register:
506 return retval;
507}
508
Alan Coxb9c52f12008-07-22 11:10:27 +0100509static void __exit cyberjack_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
Alan Coxb9c52f12008-07-22 11:10:27 +0100511 usb_deregister(&cyberjack_driver);
512 usb_serial_deregister(&cyberjack_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513}
514
515module_init(cyberjack_init);
516module_exit(cyberjack_exit);
517
Alan Coxb9c52f12008-07-22 11:10:27 +0100518MODULE_AUTHOR(DRIVER_AUTHOR);
519MODULE_DESCRIPTION(DRIVER_DESC);
520MODULE_VERSION(DRIVER_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521MODULE_LICENSE("GPL");
522
523module_param(debug, bool, S_IRUGO | S_IWUSR);
524MODULE_PARM_DESC(debug, "Debug enabled or not");