blob: dd501bb63ed6173b2b1f31a35f93d3a7d202db0a [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);
64static void cyberjack_close(struct tty_struct *tty,
65 struct usb_serial_port *port, struct file *filp);
66static 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
73static struct usb_device_id id_table [] = {
74 { 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",
82 .probe = usb_serial_probe,
83 .disconnect = usb_serial_disconnect,
84 .id_table = id_table,
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -080085 .no_dynamic_id = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070086};
87
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -070088static struct usb_serial_driver cyberjack_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070089 .driver = {
90 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070091 .name = "cyberjack",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070092 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070093 .description = "Reiner SCT Cyberjack USB card reader",
Johannes Hölzld9b1b782006-12-17 21:50:24 +010094 .usb_driver = &cyberjack_driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 .id_table = id_table,
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 .num_ports = 1,
97 .attach = cyberjack_startup,
98 .shutdown = cyberjack_shutdown,
99 .open = cyberjack_open,
100 .close = cyberjack_close,
101 .write = cyberjack_write,
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100102 .write_room = cyberjack_write_room,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 .read_int_callback = cyberjack_read_int_callback,
104 .read_bulk_callback = cyberjack_read_bulk_callback,
105 .write_bulk_callback = cyberjack_write_bulk_callback,
106};
107
108struct cyberjack_private {
109 spinlock_t lock; /* Lock for SMP */
110 short rdtodo; /* Bytes still to read */
111 unsigned char wrbuf[5*64]; /* Buffer for collecting data to write */
112 short wrfilled; /* Overall data size we already got */
113 short wrsent; /* Data already sent */
114};
115
116/* do some startup allocations not currently performed by usb_serial_probe() */
Alan Cox95da3102008-07-22 11:09:07 +0100117static int cyberjack_startup(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
119 struct cyberjack_private *priv;
120 int i;
121
Harvey Harrison441b62c2008-03-03 16:08:34 -0800122 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124 /* allocate the private data structure */
125 priv = kmalloc(sizeof(struct cyberjack_private), GFP_KERNEL);
126 if (!priv)
127 return -ENOMEM;
128
129 /* set initial values */
130 spin_lock_init(&priv->lock);
131 priv->rdtodo = 0;
132 priv->wrfilled = 0;
133 priv->wrsent = 0;
134 usb_set_serial_port_data(serial->port[0], priv);
135
136 init_waitqueue_head(&serial->port[0]->write_wait);
137
138 for (i = 0; i < serial->num_ports; ++i) {
139 int result;
140 serial->port[i]->interrupt_in_urb->dev = serial->dev;
Alan Coxb9c52f12008-07-22 11:10:27 +0100141 result = usb_submit_urb(serial->port[i]->interrupt_in_urb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 GFP_KERNEL);
143 if (result)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700144 dev_err(&serial->dev->dev,
145 "usb_submit_urb(read int) failed\n");
Harvey Harrison441b62c2008-03-03 16:08:34 -0800146 dbg("%s - usb_submit_urb(int urb)", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 }
148
Alan Coxb9c52f12008-07-22 11:10:27 +0100149 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
Alan Cox95da3102008-07-22 11:09:07 +0100152static void cyberjack_shutdown(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
154 int i;
Alan Coxb9c52f12008-07-22 11:10:27 +0100155
Harvey Harrison441b62c2008-03-03 16:08:34 -0800156 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Alan Coxa5b6f602008-04-08 17:16:06 +0100158 for (i = 0; i < serial->num_ports; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 usb_kill_urb(serial->port[i]->interrupt_in_urb);
160 /* My special items, the standard routines free my urbs */
161 kfree(usb_get_serial_port_data(serial->port[i]));
162 usb_set_serial_port_data(serial->port[i], NULL);
163 }
164}
Alan Coxb9c52f12008-07-22 11:10:27 +0100165
Alan Cox95da3102008-07-22 11:09:07 +0100166static int cyberjack_open(struct tty_struct *tty,
167 struct usb_serial_port *port, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
169 struct cyberjack_private *priv;
170 unsigned long flags;
171 int result = 0;
172
Harvey Harrison441b62c2008-03-03 16:08:34 -0800173 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
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 Cox95da3102008-07-22 11:09:07 +0100188static void cyberjack_close(struct tty_struct *tty,
189 struct usb_serial_port *port, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Harvey Harrison441b62c2008-03-03 16:08:34 -0800191 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 if (port->serial->dev) {
194 /* shutdown any bulk reads that might be going on */
195 usb_kill_urb(port->write_urb);
196 usb_kill_urb(port->read_urb);
197 }
198}
199
Alan Cox95da3102008-07-22 11:09:07 +0100200static int cyberjack_write(struct tty_struct *tty,
201 struct usb_serial_port *port, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
203 struct usb_serial *serial = port->serial;
204 struct cyberjack_private *priv = usb_get_serial_port_data(port);
205 unsigned long flags;
206 int result;
207 int wrexpected;
208
Harvey Harrison441b62c2008-03-03 16:08:34 -0800209 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 if (count == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800212 dbg("%s - write request of 0 bytes", __func__);
Alan Coxa5b6f602008-04-08 17:16:06 +0100213 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 }
215
Peter Zijlstrae81ee632006-09-25 12:51:41 +0200216 spin_lock_bh(&port->lock);
Greg Kroah-Hartman507ca9b2005-04-23 12:49:16 -0700217 if (port->write_urb_busy) {
Peter Zijlstrae81ee632006-09-25 12:51:41 +0200218 spin_unlock_bh(&port->lock);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800219 dbg("%s - already writing", __func__);
Greg Kroah-Hartman507ca9b2005-04-23 12:49:16 -0700220 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 }
Greg Kroah-Hartman507ca9b2005-04-23 12:49:16 -0700222 port->write_urb_busy = 1;
Peter Zijlstrae81ee632006-09-25 12:51:41 +0200223 spin_unlock_bh(&port->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 spin_lock_irqsave(&priv->lock, flags);
226
Alan Coxb9c52f12008-07-22 11:10:27 +0100227 if (count+priv->wrfilled > sizeof(priv->wrbuf)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 /* To much data for buffer. Reset buffer. */
Alan Coxa5b6f602008-04-08 17:16:06 +0100229 priv->wrfilled = 0;
Greg Kroah-Hartman507ca9b2005-04-23 12:49:16 -0700230 port->write_urb_busy = 0;
Alan Coxa5b6f602008-04-08 17:16:06 +0100231 spin_unlock_irqrestore(&priv->lock, flags);
232 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 }
234
235 /* Copy data */
Alan Coxb9c52f12008-07-22 11:10:27 +0100236 memcpy(priv->wrbuf + priv->wrfilled, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Harvey Harrison441b62c2008-03-03 16:08:34 -0800238 usb_serial_debug_data(debug, &port->dev, __func__, count,
Alan Coxb9c52f12008-07-22 11:10:27 +0100239 priv->wrbuf + priv->wrfilled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 priv->wrfilled += count;
241
Alan Coxb9c52f12008-07-22 11:10:27 +0100242 if (priv->wrfilled >= 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 wrexpected = ((int)priv->wrbuf[2]<<8)+priv->wrbuf[1]+3;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800244 dbg("%s - expected data: %d", __func__, wrexpected);
Alan Coxb9c52f12008-07-22 11:10:27 +0100245 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 wrexpected = sizeof(priv->wrbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Alan Coxb9c52f12008-07-22 11:10:27 +0100248 if (priv->wrfilled >= wrexpected) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 /* We have enough data to begin transmission */
250 int length;
251
Harvey Harrison441b62c2008-03-03 16:08:34 -0800252 dbg("%s - transmitting data (frame 1)", __func__);
Alan Coxb9c52f12008-07-22 11:10:27 +0100253 length = (wrexpected > port->bulk_out_size) ?
254 port->bulk_out_size : wrexpected;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Alan Coxb9c52f12008-07-22 11:10:27 +0100256 memcpy(port->write_urb->transfer_buffer, priv->wrbuf, length);
257 priv->wrsent = length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 /* set up our urb */
Alan Coxb9c52f12008-07-22 11:10:27 +0100260 usb_fill_bulk_urb(port->write_urb, serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 usb_sndbulkpipe(serial->dev, port->bulk_out_endpointAddress),
262 port->write_urb->transfer_buffer, length,
Alan Coxb9c52f12008-07-22 11:10:27 +0100263 ((serial->type->write_bulk_callback) ?
264 serial->type->write_bulk_callback :
265 cyberjack_write_bulk_callback),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 port);
267
268 /* send the data out the bulk port */
269 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
270 if (result) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700271 dev_err(&port->dev,
272 "%s - failed submitting write urb, error %d",
273 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 /* Throw away data. No better idea what to do with it. */
Alan Coxa5b6f602008-04-08 17:16:06 +0100275 priv->wrfilled = 0;
276 priv->wrsent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 spin_unlock_irqrestore(&priv->lock, flags);
Greg Kroah-Hartman507ca9b2005-04-23 12:49:16 -0700278 port->write_urb_busy = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 return 0;
280 }
281
Alan Coxb9c52f12008-07-22 11:10:27 +0100282 dbg("%s - priv->wrsent=%d", __func__, priv->wrsent);
283 dbg("%s - priv->wrfilled=%d", __func__, priv->wrfilled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Alan Coxb9c52f12008-07-22 11:10:27 +0100285 if (priv->wrsent >= priv->wrfilled) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800286 dbg("%s - buffer cleaned", __func__);
Alan Coxb9c52f12008-07-22 11:10:27 +0100287 memset(priv->wrbuf, 0, sizeof(priv->wrbuf));
Alan Coxa5b6f602008-04-08 17:16:06 +0100288 priv->wrfilled = 0;
289 priv->wrsent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 }
291 }
292
293 spin_unlock_irqrestore(&priv->lock, flags);
294
Alan Coxb9c52f12008-07-22 11:10:27 +0100295 return count;
296}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Alan Cox95da3102008-07-22 11:09:07 +0100298static int cyberjack_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Alan Coxa5b6f602008-04-08 17:16:06 +0100300 /* FIXME: .... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 return CYBERJACK_LOCAL_BUF_SIZE;
302}
303
Alan Cox95da3102008-07-22 11:09:07 +0100304static void cyberjack_read_int_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
Ming Leicdc97792008-02-24 18:41:47 +0800306 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 struct cyberjack_private *priv = usb_get_serial_port_data(port);
308 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700309 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 int result;
311
Harvey Harrison441b62c2008-03-03 16:08:34 -0800312 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314 /* the urb might have been killed. */
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700315 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 return;
317
Alan Coxb9c52f12008-07-22 11:10:27 +0100318 usb_serial_debug_data(debug, &port->dev, __func__,
319 urb->actual_length, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 /* React only to interrupts signaling a bulk_in transfer */
Alan Coxb9c52f12008-07-22 11:10:27 +0100322 if (urb->actual_length == 4 && data[0] == 0x01) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 short old_rdtodo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325 /* This is a announcement of coming bulk_ins. */
326 unsigned short size = ((unsigned short)data[3]<<8)+data[2]+3;
327
328 spin_lock(&priv->lock);
329
330 old_rdtodo = priv->rdtodo;
331
Alan Coxb9c52f12008-07-22 11:10:27 +0100332 if (old_rdtodo + size < old_rdtodo) {
333 dbg("To many bulk_in urbs to do.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 spin_unlock(&priv->lock);
335 goto resubmit;
336 }
337
338 /* "+=" is probably more fault tollerant than "=" */
339 priv->rdtodo += size;
340
Harvey Harrison441b62c2008-03-03 16:08:34 -0800341 dbg("%s - rdtodo: %d", __func__, priv->rdtodo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343 spin_unlock(&priv->lock);
344
Alan Coxb9c52f12008-07-22 11:10:27 +0100345 if (!old_rdtodo) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 port->read_urb->dev = port->serial->dev;
347 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
Alan Coxb9c52f12008-07-22 11:10:27 +0100348 if (result)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700349 dev_err(&port->dev, "%s - failed resubmitting "
350 "read urb, error %d\n",
351 __func__, result);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800352 dbg("%s - usb_submit_urb(read urb)", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 }
354 }
355
356resubmit:
357 port->interrupt_in_urb->dev = port->serial->dev;
358 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
359 if (result)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700360 dev_err(&port->dev, "usb_submit_urb(read int) failed\n");
Harvey Harrison441b62c2008-03-03 16:08:34 -0800361 dbg("%s - usb_submit_urb(int urb)", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
363
Alan Cox95da3102008-07-22 11:09:07 +0100364static void cyberjack_read_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
Ming Leicdc97792008-02-24 18:41:47 +0800366 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 struct cyberjack_private *priv = usb_get_serial_port_data(port);
368 struct tty_struct *tty;
369 unsigned char *data = urb->transfer_buffer;
370 short todo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 int result;
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700372 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Harvey Harrison441b62c2008-03-03 16:08:34 -0800374 dbg("%s - port %d", __func__, port->number);
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700375
Alan Coxb9c52f12008-07-22 11:10:27 +0100376 usb_serial_debug_data(debug, &port->dev, __func__,
377 urb->actual_length, data);
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700378 if (status) {
379 dbg("%s - nonzero read bulk status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800380 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 return;
382 }
383
Alan Cox4a90f092008-10-13 10:39:46 +0100384 tty = tty_port_tty_get(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 if (!tty) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800386 dbg("%s - ignoring since device not open\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return;
388 }
389 if (urb->actual_length) {
Alan Cox33f0f882006-01-09 20:54:13 -0800390 tty_buffer_request_room(tty, urb->actual_length);
391 tty_insert_flip_string(tty, data, urb->actual_length);
Alan Coxb9c52f12008-07-22 11:10:27 +0100392 tty_flip_buffer_push(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 }
Alan Cox4a90f092008-10-13 10:39:46 +0100394 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396 spin_lock(&priv->lock);
397
398 /* Reduce urbs to do by one. */
Alan Coxb9c52f12008-07-22 11:10:27 +0100399 priv->rdtodo -= urb->actual_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 /* Just to be sure */
Alan Coxb9c52f12008-07-22 11:10:27 +0100401 if (priv->rdtodo < 0)
402 priv->rdtodo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 todo = priv->rdtodo;
404
405 spin_unlock(&priv->lock);
406
Harvey Harrison441b62c2008-03-03 16:08:34 -0800407 dbg("%s - rdtodo: %d", __func__, todo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 /* Continue to read if we have still urbs to do. */
Alan Coxb9c52f12008-07-22 11:10:27 +0100410 if (todo /* || (urb->actual_length==port->bulk_in_endpointAddress)*/) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 port->read_urb->dev = port->serial->dev;
412 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
413 if (result)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700414 dev_err(&port->dev, "%s - failed resubmitting read "
415 "urb, error %d\n", __func__, result);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800416 dbg("%s - usb_submit_urb(read urb)", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 }
418}
419
Alan Cox95da3102008-07-22 11:09:07 +0100420static void cyberjack_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
Ming Leicdc97792008-02-24 18:41:47 +0800422 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 struct cyberjack_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700424 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Harvey Harrison441b62c2008-03-03 16:08:34 -0800426 dbg("%s - port %d", __func__, port->number);
Greg Kroah-Hartman507ca9b2005-04-23 12:49:16 -0700427
428 port->write_urb_busy = 0;
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700429 if (status) {
430 dbg("%s - nonzero write bulk status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800431 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 return;
433 }
434
435 spin_lock(&priv->lock);
436
437 /* only do something if we have more data to send */
Alan Coxb9c52f12008-07-22 11:10:27 +0100438 if (priv->wrfilled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 int length, blksize, result;
440
Harvey Harrison441b62c2008-03-03 16:08:34 -0800441 dbg("%s - transmitting data (frame n)", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443 length = ((priv->wrfilled - priv->wrsent) > port->bulk_out_size) ?
444 port->bulk_out_size : (priv->wrfilled - priv->wrsent);
445
Alan Coxb9c52f12008-07-22 11:10:27 +0100446 memcpy(port->write_urb->transfer_buffer,
447 priv->wrbuf + priv->wrsent, length);
448 priv->wrsent += length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450 /* set up our urb */
Alan Coxb9c52f12008-07-22 11:10:27 +0100451 usb_fill_bulk_urb(port->write_urb, port->serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 usb_sndbulkpipe(port->serial->dev, port->bulk_out_endpointAddress),
453 port->write_urb->transfer_buffer, length,
Alan Coxb9c52f12008-07-22 11:10:27 +0100454 ((port->serial->type->write_bulk_callback) ?
455 port->serial->type->write_bulk_callback :
456 cyberjack_write_bulk_callback),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 port);
458
459 /* send the data out the bulk port */
460 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
461 if (result) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700462 dev_err(&port->dev,
463 "%s - failed submitting write urb, error %d\n",
464 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 /* Throw away data. No better idea what to do with it. */
Alan Coxa5b6f602008-04-08 17:16:06 +0100466 priv->wrfilled = 0;
467 priv->wrsent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 goto exit;
469 }
470
Alan Coxb9c52f12008-07-22 11:10:27 +0100471 dbg("%s - priv->wrsent=%d", __func__, priv->wrsent);
472 dbg("%s - priv->wrfilled=%d", __func__, priv->wrfilled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
474 blksize = ((int)priv->wrbuf[2]<<8)+priv->wrbuf[1]+3;
475
Alan Coxb9c52f12008-07-22 11:10:27 +0100476 if (priv->wrsent >= priv->wrfilled ||
477 priv->wrsent >= blksize) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800478 dbg("%s - buffer cleaned", __func__);
Alan Coxb9c52f12008-07-22 11:10:27 +0100479 memset(priv->wrbuf, 0, sizeof(priv->wrbuf));
Alan Coxa5b6f602008-04-08 17:16:06 +0100480 priv->wrfilled = 0;
481 priv->wrsent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
483 }
484
485exit:
486 spin_unlock(&priv->lock);
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700487 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
489
Alan Coxb9c52f12008-07-22 11:10:27 +0100490static int __init cyberjack_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
492 int retval;
493 retval = usb_serial_register(&cyberjack_device);
494 if (retval)
495 goto failed_usb_serial_register;
496 retval = usb_register(&cyberjack_driver);
Alan Coxb9c52f12008-07-22 11:10:27 +0100497 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 goto failed_usb_register;
499
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -0700500 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION " "
501 DRIVER_AUTHOR "\n");
502 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_DESC "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 return 0;
505failed_usb_register:
506 usb_serial_deregister(&cyberjack_device);
507failed_usb_serial_register:
508 return retval;
509}
510
Alan Coxb9c52f12008-07-22 11:10:27 +0100511static void __exit cyberjack_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
Alan Coxb9c52f12008-07-22 11:10:27 +0100513 usb_deregister(&cyberjack_driver);
514 usb_serial_deregister(&cyberjack_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515}
516
517module_init(cyberjack_init);
518module_exit(cyberjack_exit);
519
Alan Coxb9c52f12008-07-22 11:10:27 +0100520MODULE_AUTHOR(DRIVER_AUTHOR);
521MODULE_DESCRIPTION(DRIVER_DESC);
522MODULE_VERSION(DRIVER_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523MODULE_LICENSE("GPL");
524
525module_param(debug, bool, S_IRUGO | S_IWUSR);
526MODULE_PARM_DESC(debug, "Debug enabled or not");