blob: b0f6402a91ca57423769c16a8e0690896958fafa [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);
Alan Sternf9c99bb2009-06-02 11:53:55 -040061static void cyberjack_disconnect(struct usb_serial *serial);
62static void cyberjack_release(struct usb_serial *serial);
Alan Cox95da3102008-07-22 11:09:07 +010063static int cyberjack_open(struct tty_struct *tty,
Alan Coxa509a7e2009-09-19 13:13:26 -070064 struct usb_serial_port *port);
Alan Cox335f8512009-06-11 12:26:29 +010065static void cyberjack_close(struct usb_serial_port *port);
Alan Cox95da3102008-07-22 11:09:07 +010066static int cyberjack_write(struct tty_struct *tty,
67 struct usb_serial_port *port, const unsigned char *buf, int count);
Alan Coxb9c52f12008-07-22 11:10:27 +010068static int cyberjack_write_room(struct tty_struct *tty);
Alan Cox95da3102008-07-22 11:09:07 +010069static void cyberjack_read_int_callback(struct urb *urb);
70static void cyberjack_read_bulk_callback(struct urb *urb);
71static void cyberjack_write_bulk_callback(struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
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,
Alan Sternf9c99bb2009-06-02 11:53:55 -040098 .disconnect = cyberjack_disconnect,
99 .release = cyberjack_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 .open = cyberjack_open,
101 .close = cyberjack_close,
102 .write = cyberjack_write,
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100103 .write_room = cyberjack_write_room,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 .read_int_callback = cyberjack_read_int_callback,
105 .read_bulk_callback = cyberjack_read_bulk_callback,
106 .write_bulk_callback = cyberjack_write_bulk_callback,
107};
108
109struct cyberjack_private {
110 spinlock_t lock; /* Lock for SMP */
111 short rdtodo; /* Bytes still to read */
112 unsigned char wrbuf[5*64]; /* Buffer for collecting data to write */
113 short wrfilled; /* Overall data size we already got */
114 short wrsent; /* Data already sent */
115};
116
117/* do some startup allocations not currently performed by usb_serial_probe() */
Alan Cox95da3102008-07-22 11:09:07 +0100118static int cyberjack_startup(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
120 struct cyberjack_private *priv;
121 int i;
122
Harvey Harrison441b62c2008-03-03 16:08:34 -0800123 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 /* allocate the private data structure */
126 priv = kmalloc(sizeof(struct cyberjack_private), GFP_KERNEL);
127 if (!priv)
128 return -ENOMEM;
129
130 /* set initial values */
131 spin_lock_init(&priv->lock);
132 priv->rdtodo = 0;
133 priv->wrfilled = 0;
134 priv->wrsent = 0;
135 usb_set_serial_port_data(serial->port[0], priv);
136
137 init_waitqueue_head(&serial->port[0]->write_wait);
138
139 for (i = 0; i < serial->num_ports; ++i) {
140 int result;
141 serial->port[i]->interrupt_in_urb->dev = serial->dev;
Alan Coxb9c52f12008-07-22 11:10:27 +0100142 result = usb_submit_urb(serial->port[i]->interrupt_in_urb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 GFP_KERNEL);
144 if (result)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700145 dev_err(&serial->dev->dev,
146 "usb_submit_urb(read int) failed\n");
Harvey Harrison441b62c2008-03-03 16:08:34 -0800147 dbg("%s - usb_submit_urb(int urb)", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 }
149
Alan Coxb9c52f12008-07-22 11:10:27 +0100150 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
Alan Sternf9c99bb2009-06-02 11:53:55 -0400153static void cyberjack_disconnect(struct usb_serial *serial)
154{
155 int i;
156
157 dbg("%s", __func__);
158
159 for (i = 0; i < serial->num_ports; ++i)
160 usb_kill_urb(serial->port[i]->interrupt_in_urb);
161}
162
163static void cyberjack_release(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
165 int i;
Alan Coxb9c52f12008-07-22 11:10:27 +0100166
Harvey Harrison441b62c2008-03-03 16:08:34 -0800167 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Alan Coxa5b6f602008-04-08 17:16:06 +0100169 for (i = 0; i < serial->num_ports; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 /* My special items, the standard routines free my urbs */
171 kfree(usb_get_serial_port_data(serial->port[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 }
173}
Alan Coxb9c52f12008-07-22 11:10:27 +0100174
Alan Cox95da3102008-07-22 11:09:07 +0100175static int cyberjack_open(struct tty_struct *tty,
Alan Coxa509a7e2009-09-19 13:13:26 -0700176 struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
178 struct cyberjack_private *priv;
179 unsigned long flags;
180 int result = 0;
181
Harvey Harrison441b62c2008-03-03 16:08:34 -0800182 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Alan Coxb9c52f12008-07-22 11:10:27 +0100184 dbg("%s - usb_clear_halt", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 usb_clear_halt(port->serial->dev, port->write_urb->pipe);
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 priv = usb_get_serial_port_data(port);
188 spin_lock_irqsave(&priv->lock, flags);
189 priv->rdtodo = 0;
190 priv->wrfilled = 0;
191 priv->wrsent = 0;
192 spin_unlock_irqrestore(&priv->lock, flags);
193
194 return result;
195}
196
Alan Cox335f8512009-06-11 12:26:29 +0100197static void cyberjack_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Harvey Harrison441b62c2008-03-03 16:08:34 -0800199 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201 if (port->serial->dev) {
202 /* shutdown any bulk reads that might be going on */
203 usb_kill_urb(port->write_urb);
204 usb_kill_urb(port->read_urb);
205 }
206}
207
Alan Cox95da3102008-07-22 11:09:07 +0100208static int cyberjack_write(struct tty_struct *tty,
209 struct usb_serial_port *port, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
211 struct usb_serial *serial = port->serial;
212 struct cyberjack_private *priv = usb_get_serial_port_data(port);
213 unsigned long flags;
214 int result;
215 int wrexpected;
216
Harvey Harrison441b62c2008-03-03 16:08:34 -0800217 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 if (count == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800220 dbg("%s - write request of 0 bytes", __func__);
Alan Coxa5b6f602008-04-08 17:16:06 +0100221 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 }
223
Peter Zijlstrae81ee632006-09-25 12:51:41 +0200224 spin_lock_bh(&port->lock);
Greg Kroah-Hartman507ca9b2005-04-23 12:49:16 -0700225 if (port->write_urb_busy) {
Peter Zijlstrae81ee632006-09-25 12:51:41 +0200226 spin_unlock_bh(&port->lock);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800227 dbg("%s - already writing", __func__);
Greg Kroah-Hartman507ca9b2005-04-23 12:49:16 -0700228 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 }
Greg Kroah-Hartman507ca9b2005-04-23 12:49:16 -0700230 port->write_urb_busy = 1;
Peter Zijlstrae81ee632006-09-25 12:51:41 +0200231 spin_unlock_bh(&port->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233 spin_lock_irqsave(&priv->lock, flags);
234
Alan Coxb9c52f12008-07-22 11:10:27 +0100235 if (count+priv->wrfilled > sizeof(priv->wrbuf)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 /* To much data for buffer. Reset buffer. */
Alan Coxa5b6f602008-04-08 17:16:06 +0100237 priv->wrfilled = 0;
Greg Kroah-Hartman507ca9b2005-04-23 12:49:16 -0700238 port->write_urb_busy = 0;
Alan Coxa5b6f602008-04-08 17:16:06 +0100239 spin_unlock_irqrestore(&priv->lock, flags);
240 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
242
243 /* Copy data */
Alan Coxb9c52f12008-07-22 11:10:27 +0100244 memcpy(priv->wrbuf + priv->wrfilled, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Harvey Harrison441b62c2008-03-03 16:08:34 -0800246 usb_serial_debug_data(debug, &port->dev, __func__, count,
Alan Coxb9c52f12008-07-22 11:10:27 +0100247 priv->wrbuf + priv->wrfilled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 priv->wrfilled += count;
249
Alan Coxb9c52f12008-07-22 11:10:27 +0100250 if (priv->wrfilled >= 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 wrexpected = ((int)priv->wrbuf[2]<<8)+priv->wrbuf[1]+3;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800252 dbg("%s - expected data: %d", __func__, wrexpected);
Alan Coxb9c52f12008-07-22 11:10:27 +0100253 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 wrexpected = sizeof(priv->wrbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Alan Coxb9c52f12008-07-22 11:10:27 +0100256 if (priv->wrfilled >= wrexpected) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 /* We have enough data to begin transmission */
258 int length;
259
Harvey Harrison441b62c2008-03-03 16:08:34 -0800260 dbg("%s - transmitting data (frame 1)", __func__);
Alan Coxb9c52f12008-07-22 11:10:27 +0100261 length = (wrexpected > port->bulk_out_size) ?
262 port->bulk_out_size : wrexpected;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Alan Coxb9c52f12008-07-22 11:10:27 +0100264 memcpy(port->write_urb->transfer_buffer, priv->wrbuf, length);
265 priv->wrsent = length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 /* set up our urb */
Alan Coxb9c52f12008-07-22 11:10:27 +0100268 usb_fill_bulk_urb(port->write_urb, serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 usb_sndbulkpipe(serial->dev, port->bulk_out_endpointAddress),
270 port->write_urb->transfer_buffer, length,
Alan Coxb9c52f12008-07-22 11:10:27 +0100271 ((serial->type->write_bulk_callback) ?
272 serial->type->write_bulk_callback :
273 cyberjack_write_bulk_callback),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 port);
275
276 /* send the data out the bulk port */
277 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
278 if (result) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700279 dev_err(&port->dev,
280 "%s - failed submitting write urb, error %d",
281 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 /* Throw away data. No better idea what to do with it. */
Alan Coxa5b6f602008-04-08 17:16:06 +0100283 priv->wrfilled = 0;
284 priv->wrsent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 spin_unlock_irqrestore(&priv->lock, flags);
Greg Kroah-Hartman507ca9b2005-04-23 12:49:16 -0700286 port->write_urb_busy = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 return 0;
288 }
289
Alan Coxb9c52f12008-07-22 11:10:27 +0100290 dbg("%s - priv->wrsent=%d", __func__, priv->wrsent);
291 dbg("%s - priv->wrfilled=%d", __func__, priv->wrfilled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Alan Coxb9c52f12008-07-22 11:10:27 +0100293 if (priv->wrsent >= priv->wrfilled) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800294 dbg("%s - buffer cleaned", __func__);
Alan Coxb9c52f12008-07-22 11:10:27 +0100295 memset(priv->wrbuf, 0, sizeof(priv->wrbuf));
Alan Coxa5b6f602008-04-08 17:16:06 +0100296 priv->wrfilled = 0;
297 priv->wrsent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 }
299 }
300
301 spin_unlock_irqrestore(&priv->lock, flags);
302
Alan Coxb9c52f12008-07-22 11:10:27 +0100303 return count;
304}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Alan Cox95da3102008-07-22 11:09:07 +0100306static int cyberjack_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
Alan Coxa5b6f602008-04-08 17:16:06 +0100308 /* FIXME: .... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 return CYBERJACK_LOCAL_BUF_SIZE;
310}
311
Alan Cox95da3102008-07-22 11:09:07 +0100312static void cyberjack_read_int_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Ming Leicdc97792008-02-24 18:41:47 +0800314 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 struct cyberjack_private *priv = usb_get_serial_port_data(port);
316 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700317 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 int result;
319
Harvey Harrison441b62c2008-03-03 16:08:34 -0800320 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 /* the urb might have been killed. */
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700323 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 return;
325
Alan Coxb9c52f12008-07-22 11:10:27 +0100326 usb_serial_debug_data(debug, &port->dev, __func__,
327 urb->actual_length, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 /* React only to interrupts signaling a bulk_in transfer */
Alan Coxb9c52f12008-07-22 11:10:27 +0100330 if (urb->actual_length == 4 && data[0] == 0x01) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 short old_rdtodo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
333 /* This is a announcement of coming bulk_ins. */
334 unsigned short size = ((unsigned short)data[3]<<8)+data[2]+3;
335
336 spin_lock(&priv->lock);
337
338 old_rdtodo = priv->rdtodo;
339
Alan Coxb9c52f12008-07-22 11:10:27 +0100340 if (old_rdtodo + size < old_rdtodo) {
341 dbg("To many bulk_in urbs to do.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 spin_unlock(&priv->lock);
343 goto resubmit;
344 }
345
346 /* "+=" is probably more fault tollerant than "=" */
347 priv->rdtodo += size;
348
Harvey Harrison441b62c2008-03-03 16:08:34 -0800349 dbg("%s - rdtodo: %d", __func__, priv->rdtodo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 spin_unlock(&priv->lock);
352
Alan Coxb9c52f12008-07-22 11:10:27 +0100353 if (!old_rdtodo) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 port->read_urb->dev = port->serial->dev;
355 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
Alan Coxb9c52f12008-07-22 11:10:27 +0100356 if (result)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700357 dev_err(&port->dev, "%s - failed resubmitting "
358 "read urb, error %d\n",
359 __func__, result);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800360 dbg("%s - usb_submit_urb(read urb)", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 }
362 }
363
364resubmit:
365 port->interrupt_in_urb->dev = port->serial->dev;
366 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
367 if (result)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700368 dev_err(&port->dev, "usb_submit_urb(read int) failed\n");
Harvey Harrison441b62c2008-03-03 16:08:34 -0800369 dbg("%s - usb_submit_urb(int urb)", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370}
371
Alan Cox95da3102008-07-22 11:09:07 +0100372static void cyberjack_read_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Ming Leicdc97792008-02-24 18:41:47 +0800374 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 struct cyberjack_private *priv = usb_get_serial_port_data(port);
376 struct tty_struct *tty;
377 unsigned char *data = urb->transfer_buffer;
378 short todo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 int result;
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700380 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Harvey Harrison441b62c2008-03-03 16:08:34 -0800382 dbg("%s - port %d", __func__, port->number);
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700383
Alan Coxb9c52f12008-07-22 11:10:27 +0100384 usb_serial_debug_data(debug, &port->dev, __func__,
385 urb->actual_length, data);
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700386 if (status) {
387 dbg("%s - nonzero read bulk status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800388 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 return;
390 }
391
Alan Cox4a90f092008-10-13 10:39:46 +0100392 tty = tty_port_tty_get(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 if (!tty) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800394 dbg("%s - ignoring since device not open\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 return;
396 }
397 if (urb->actual_length) {
Alan Cox33f0f882006-01-09 20:54:13 -0800398 tty_buffer_request_room(tty, urb->actual_length);
399 tty_insert_flip_string(tty, data, urb->actual_length);
Alan Coxb9c52f12008-07-22 11:10:27 +0100400 tty_flip_buffer_push(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
Alan Cox4a90f092008-10-13 10:39:46 +0100402 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 spin_lock(&priv->lock);
405
406 /* Reduce urbs to do by one. */
Alan Coxb9c52f12008-07-22 11:10:27 +0100407 priv->rdtodo -= urb->actual_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 /* Just to be sure */
Alan Coxb9c52f12008-07-22 11:10:27 +0100409 if (priv->rdtodo < 0)
410 priv->rdtodo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 todo = priv->rdtodo;
412
413 spin_unlock(&priv->lock);
414
Harvey Harrison441b62c2008-03-03 16:08:34 -0800415 dbg("%s - rdtodo: %d", __func__, todo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417 /* Continue to read if we have still urbs to do. */
Alan Coxb9c52f12008-07-22 11:10:27 +0100418 if (todo /* || (urb->actual_length==port->bulk_in_endpointAddress)*/) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 port->read_urb->dev = port->serial->dev;
420 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
421 if (result)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700422 dev_err(&port->dev, "%s - failed resubmitting read "
423 "urb, error %d\n", __func__, result);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800424 dbg("%s - usb_submit_urb(read urb)", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 }
426}
427
Alan Cox95da3102008-07-22 11:09:07 +0100428static void cyberjack_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
Ming Leicdc97792008-02-24 18:41:47 +0800430 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 struct cyberjack_private *priv = usb_get_serial_port_data(port);
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700432 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Harvey Harrison441b62c2008-03-03 16:08:34 -0800434 dbg("%s - port %d", __func__, port->number);
Greg Kroah-Hartman507ca9b2005-04-23 12:49:16 -0700435
436 port->write_urb_busy = 0;
Greg Kroah-Hartman7dcc85c2007-06-15 15:44:13 -0700437 if (status) {
438 dbg("%s - nonzero write bulk status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800439 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 return;
441 }
442
443 spin_lock(&priv->lock);
444
445 /* only do something if we have more data to send */
Alan Coxb9c52f12008-07-22 11:10:27 +0100446 if (priv->wrfilled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 int length, blksize, result;
448
Harvey Harrison441b62c2008-03-03 16:08:34 -0800449 dbg("%s - transmitting data (frame n)", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 length = ((priv->wrfilled - priv->wrsent) > port->bulk_out_size) ?
452 port->bulk_out_size : (priv->wrfilled - priv->wrsent);
453
Alan Coxb9c52f12008-07-22 11:10:27 +0100454 memcpy(port->write_urb->transfer_buffer,
455 priv->wrbuf + priv->wrsent, length);
456 priv->wrsent += length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 /* set up our urb */
Alan Coxb9c52f12008-07-22 11:10:27 +0100459 usb_fill_bulk_urb(port->write_urb, port->serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 usb_sndbulkpipe(port->serial->dev, port->bulk_out_endpointAddress),
461 port->write_urb->transfer_buffer, length,
Alan Coxb9c52f12008-07-22 11:10:27 +0100462 ((port->serial->type->write_bulk_callback) ?
463 port->serial->type->write_bulk_callback :
464 cyberjack_write_bulk_callback),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 port);
466
467 /* send the data out the bulk port */
468 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
469 if (result) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700470 dev_err(&port->dev,
471 "%s - failed submitting write urb, error %d\n",
472 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 /* Throw away data. No better idea what to do with it. */
Alan Coxa5b6f602008-04-08 17:16:06 +0100474 priv->wrfilled = 0;
475 priv->wrsent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 goto exit;
477 }
478
Alan Coxb9c52f12008-07-22 11:10:27 +0100479 dbg("%s - priv->wrsent=%d", __func__, priv->wrsent);
480 dbg("%s - priv->wrfilled=%d", __func__, priv->wrfilled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482 blksize = ((int)priv->wrbuf[2]<<8)+priv->wrbuf[1]+3;
483
Alan Coxb9c52f12008-07-22 11:10:27 +0100484 if (priv->wrsent >= priv->wrfilled ||
485 priv->wrsent >= blksize) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800486 dbg("%s - buffer cleaned", __func__);
Alan Coxb9c52f12008-07-22 11:10:27 +0100487 memset(priv->wrbuf, 0, sizeof(priv->wrbuf));
Alan Coxa5b6f602008-04-08 17:16:06 +0100488 priv->wrfilled = 0;
489 priv->wrsent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 }
491 }
492
493exit:
494 spin_unlock(&priv->lock);
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700495 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
497
Alan Coxb9c52f12008-07-22 11:10:27 +0100498static int __init cyberjack_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
500 int retval;
501 retval = usb_serial_register(&cyberjack_device);
502 if (retval)
503 goto failed_usb_serial_register;
504 retval = usb_register(&cyberjack_driver);
Alan Coxb9c52f12008-07-22 11:10:27 +0100505 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 goto failed_usb_register;
507
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -0700508 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION " "
509 DRIVER_AUTHOR "\n");
510 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_DESC "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512 return 0;
513failed_usb_register:
514 usb_serial_deregister(&cyberjack_device);
515failed_usb_serial_register:
516 return retval;
517}
518
Alan Coxb9c52f12008-07-22 11:10:27 +0100519static void __exit cyberjack_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
Alan Coxb9c52f12008-07-22 11:10:27 +0100521 usb_deregister(&cyberjack_driver);
522 usb_serial_deregister(&cyberjack_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523}
524
525module_init(cyberjack_init);
526module_exit(cyberjack_exit);
527
Alan Coxb9c52f12008-07-22 11:10:27 +0100528MODULE_AUTHOR(DRIVER_AUTHOR);
529MODULE_DESCRIPTION(DRIVER_DESC);
530MODULE_VERSION(DRIVER_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531MODULE_LICENSE("GPL");
532
533module_param(debug, bool, S_IRUGO | S_IWUSR);
534MODULE_PARM_DESC(debug, "Debug enabled or not");