2 * REINER SCT cyberJack pinpad/e-com USB Chipcard Reader Driver
4 * Copyright (C) 2001 REINER SCT
5 * Author: Matthias Bruestle
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.
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.
21 * In case of problems, please write to the contact e-mail address
24 * Please note that later models of the cyberjack reader family are
25 * supported by a libusb-based userspace device driver.
27 * Homepage: http://www.reiner-sct.de/support/treiber_cyberjack.php#linux
31 #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>
40 #include <linux/uaccess.h>
41 #include <linux/usb.h>
42 #include <linux/usb/serial.h>
44 #define CYBERJACK_LOCAL_BUF_SIZE 32
46 #define DRIVER_AUTHOR "Matthias Bruestle"
47 #define DRIVER_DESC "REINER SCT cyberJack pinpad/e-com USB Chipcard Reader Driver"
50 #define CYBERJACK_VENDOR_ID 0x0C4B
51 #define CYBERJACK_PRODUCT_ID 0x0100
53 /* Function prototypes */
54 static int cyberjack_port_probe(struct usb_serial_port *port);
55 static int cyberjack_port_remove(struct usb_serial_port *port);
56 static int cyberjack_open(struct tty_struct *tty,
57 struct usb_serial_port *port);
58 static void cyberjack_close(struct usb_serial_port *port);
59 static int cyberjack_write(struct tty_struct *tty,
60 struct usb_serial_port *port, const unsigned char *buf, int count);
61 static int cyberjack_write_room(struct tty_struct *tty);
62 static void cyberjack_read_int_callback(struct urb *urb);
63 static void cyberjack_read_bulk_callback(struct urb *urb);
64 static void cyberjack_write_bulk_callback(struct urb *urb);
66 static const struct usb_device_id id_table[] = {
67 { USB_DEVICE(CYBERJACK_VENDOR_ID, CYBERJACK_PRODUCT_ID) },
68 { } /* Terminating entry */
71 MODULE_DEVICE_TABLE(usb, id_table);
73 static struct usb_serial_driver cyberjack_device = {
78 .description = "Reiner SCT Cyberjack USB card reader",
81 .port_probe = cyberjack_port_probe,
82 .port_remove = cyberjack_port_remove,
83 .open = cyberjack_open,
84 .close = cyberjack_close,
85 .write = cyberjack_write,
86 .write_room = cyberjack_write_room,
87 .read_int_callback = cyberjack_read_int_callback,
88 .read_bulk_callback = cyberjack_read_bulk_callback,
89 .write_bulk_callback = cyberjack_write_bulk_callback,
92 static struct usb_serial_driver * const serial_drivers[] = {
93 &cyberjack_device, NULL
96 struct 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 */
104 static int cyberjack_port_probe(struct usb_serial_port *port)
106 struct cyberjack_private *priv;
109 priv = kmalloc(sizeof(struct cyberjack_private), GFP_KERNEL);
113 spin_lock_init(&priv->lock);
118 usb_set_serial_port_data(port, priv);
120 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
122 dev_err(&port->dev, "usb_submit_urb(read int) failed\n");
127 static int cyberjack_port_remove(struct usb_serial_port *port)
129 struct cyberjack_private *priv;
131 usb_kill_urb(port->interrupt_in_urb);
133 priv = usb_get_serial_port_data(port);
139 static int cyberjack_open(struct tty_struct *tty,
140 struct usb_serial_port *port)
142 struct cyberjack_private *priv;
146 dev_dbg(&port->dev, "%s - usb_clear_halt\n", __func__);
147 usb_clear_halt(port->serial->dev, port->write_urb->pipe);
149 priv = usb_get_serial_port_data(port);
150 spin_lock_irqsave(&priv->lock, flags);
154 spin_unlock_irqrestore(&priv->lock, flags);
159 static void cyberjack_close(struct usb_serial_port *port)
161 usb_kill_urb(port->write_urb);
162 usb_kill_urb(port->read_urb);
165 static int cyberjack_write(struct tty_struct *tty,
166 struct usb_serial_port *port, const unsigned char *buf, int count)
168 struct device *dev = &port->dev;
169 struct cyberjack_private *priv = usb_get_serial_port_data(port);
175 dev_dbg(dev, "%s - write request of 0 bytes\n", __func__);
179 if (!test_and_clear_bit(0, &port->write_urbs_free)) {
180 dev_dbg(dev, "%s - already writing\n", __func__);
184 spin_lock_irqsave(&priv->lock, flags);
186 if (count+priv->wrfilled > sizeof(priv->wrbuf)) {
187 /* To much data for buffer. Reset buffer. */
189 spin_unlock_irqrestore(&priv->lock, flags);
190 set_bit(0, &port->write_urbs_free);
195 memcpy(priv->wrbuf + priv->wrfilled, buf, count);
197 usb_serial_debug_data(dev, __func__, count, priv->wrbuf + priv->wrfilled);
198 priv->wrfilled += count;
200 if (priv->wrfilled >= 3) {
201 wrexpected = ((int)priv->wrbuf[2]<<8)+priv->wrbuf[1]+3;
202 dev_dbg(dev, "%s - expected data: %d\n", __func__, wrexpected);
204 wrexpected = sizeof(priv->wrbuf);
206 if (priv->wrfilled >= wrexpected) {
207 /* We have enough data to begin transmission */
210 dev_dbg(dev, "%s - transmitting data (frame 1)\n", __func__);
211 length = (wrexpected > port->bulk_out_size) ?
212 port->bulk_out_size : wrexpected;
214 memcpy(port->write_urb->transfer_buffer, priv->wrbuf, length);
215 priv->wrsent = length;
218 port->write_urb->transfer_buffer_length = length;
220 /* send the data out the bulk port */
221 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
224 "%s - failed submitting write urb, error %d",
226 /* Throw away data. No better idea what to do with it. */
229 spin_unlock_irqrestore(&priv->lock, flags);
230 set_bit(0, &port->write_urbs_free);
234 dev_dbg(dev, "%s - priv->wrsent=%d\n", __func__, priv->wrsent);
235 dev_dbg(dev, "%s - priv->wrfilled=%d\n", __func__, priv->wrfilled);
237 if (priv->wrsent >= priv->wrfilled) {
238 dev_dbg(dev, "%s - buffer cleaned\n", __func__);
239 memset(priv->wrbuf, 0, sizeof(priv->wrbuf));
245 spin_unlock_irqrestore(&priv->lock, flags);
250 static int cyberjack_write_room(struct tty_struct *tty)
253 return CYBERJACK_LOCAL_BUF_SIZE;
256 static void cyberjack_read_int_callback(struct urb *urb)
258 struct usb_serial_port *port = urb->context;
259 struct cyberjack_private *priv = usb_get_serial_port_data(port);
260 struct device *dev = &port->dev;
261 unsigned char *data = urb->transfer_buffer;
262 int status = urb->status;
265 /* the urb might have been killed. */
269 usb_serial_debug_data(dev, __func__, urb->actual_length, data);
271 /* React only to interrupts signaling a bulk_in transfer */
272 if (urb->actual_length == 4 && data[0] == 0x01) {
275 /* This is a announcement of coming bulk_ins. */
276 unsigned short size = ((unsigned short)data[3]<<8)+data[2]+3;
278 spin_lock(&priv->lock);
280 old_rdtodo = priv->rdtodo;
282 if (old_rdtodo > SHRT_MAX - size) {
283 dev_dbg(dev, "To many bulk_in urbs to do.\n");
284 spin_unlock(&priv->lock);
288 /* "+=" is probably more fault tollerant than "=" */
289 priv->rdtodo += size;
291 dev_dbg(dev, "%s - rdtodo: %d\n", __func__, priv->rdtodo);
293 spin_unlock(&priv->lock);
296 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
298 dev_err(dev, "%s - failed resubmitting read urb, error %d\n",
300 dev_dbg(dev, "%s - usb_submit_urb(read urb)\n", __func__);
305 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
307 dev_err(&port->dev, "usb_submit_urb(read int) failed\n");
308 dev_dbg(dev, "%s - usb_submit_urb(int urb)\n", __func__);
311 static void cyberjack_read_bulk_callback(struct urb *urb)
313 struct usb_serial_port *port = urb->context;
314 struct cyberjack_private *priv = usb_get_serial_port_data(port);
315 struct device *dev = &port->dev;
316 unsigned char *data = urb->transfer_buffer;
319 int status = urb->status;
321 usb_serial_debug_data(dev, __func__, urb->actual_length, data);
323 dev_dbg(dev, "%s - nonzero read bulk status received: %d\n",
328 if (urb->actual_length) {
329 tty_insert_flip_string(&port->port, data, urb->actual_length);
330 tty_flip_buffer_push(&port->port);
333 spin_lock(&priv->lock);
335 /* Reduce urbs to do by one. */
336 priv->rdtodo -= urb->actual_length;
337 /* Just to be sure */
338 if (priv->rdtodo < 0)
342 spin_unlock(&priv->lock);
344 dev_dbg(dev, "%s - rdtodo: %d\n", __func__, todo);
346 /* Continue to read if we have still urbs to do. */
347 if (todo /* || (urb->actual_length==port->bulk_in_endpointAddress)*/) {
348 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
350 dev_err(dev, "%s - failed resubmitting read urb, error %d\n",
352 dev_dbg(dev, "%s - usb_submit_urb(read urb)\n", __func__);
356 static void cyberjack_write_bulk_callback(struct urb *urb)
358 struct usb_serial_port *port = urb->context;
359 struct cyberjack_private *priv = usb_get_serial_port_data(port);
360 struct device *dev = &port->dev;
361 int status = urb->status;
363 set_bit(0, &port->write_urbs_free);
365 dev_dbg(dev, "%s - nonzero write bulk status received: %d\n",
370 spin_lock(&priv->lock);
372 /* only do something if we have more data to send */
373 if (priv->wrfilled) {
374 int length, blksize, result;
376 dev_dbg(dev, "%s - transmitting data (frame n)\n", __func__);
378 length = ((priv->wrfilled - priv->wrsent) > port->bulk_out_size) ?
379 port->bulk_out_size : (priv->wrfilled - priv->wrsent);
381 memcpy(port->write_urb->transfer_buffer,
382 priv->wrbuf + priv->wrsent, length);
383 priv->wrsent += length;
386 port->write_urb->transfer_buffer_length = length;
388 /* send the data out the bulk port */
389 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
391 dev_err(dev, "%s - failed submitting write urb, error %d\n",
393 /* Throw away data. No better idea what to do with it. */
399 dev_dbg(dev, "%s - priv->wrsent=%d\n", __func__, priv->wrsent);
400 dev_dbg(dev, "%s - priv->wrfilled=%d\n", __func__, priv->wrfilled);
402 blksize = ((int)priv->wrbuf[2]<<8)+priv->wrbuf[1]+3;
404 if (priv->wrsent >= priv->wrfilled ||
405 priv->wrsent >= blksize) {
406 dev_dbg(dev, "%s - buffer cleaned\n", __func__);
407 memset(priv->wrbuf, 0, sizeof(priv->wrbuf));
414 spin_unlock(&priv->lock);
415 usb_serial_port_softint(port);
418 module_usb_serial_driver(serial_drivers, id_table);
420 MODULE_AUTHOR(DRIVER_AUTHOR);
421 MODULE_DESCRIPTION(DRIVER_DESC);
422 MODULE_LICENSE("GPL");