1 // SPDX-License-Identifier: GPL-2.0+
3 * REINER SCT cyberJack pinpad/e-com USB Chipcard Reader Driver
5 * Copyright (C) 2001 REINER SCT
6 * Author: Matthias Bruestle
10 * This program is largely derived from work by the linux-usb group
11 * and associated source files. Please see the usb/serial files for
12 * individual credits and copyrights.
17 * In case of problems, please write to the contact e-mail address
20 * Please note that later models of the cyberjack reader family are
21 * supported by a libusb-based userspace device driver.
23 * Homepage: http://www.reiner-sct.de/support/treiber_cyberjack.php#linux
27 #include <linux/kernel.h>
28 #include <linux/errno.h>
29 #include <linux/slab.h>
30 #include <linux/tty.h>
31 #include <linux/tty_driver.h>
32 #include <linux/tty_flip.h>
33 #include <linux/module.h>
34 #include <linux/spinlock.h>
35 #include <linux/uaccess.h>
36 #include <linux/usb.h>
37 #include <linux/usb/serial.h>
39 #define CYBERJACK_LOCAL_BUF_SIZE 32
41 #define DRIVER_AUTHOR "Matthias Bruestle"
42 #define DRIVER_DESC "REINER SCT cyberJack pinpad/e-com USB Chipcard Reader Driver"
45 #define CYBERJACK_VENDOR_ID 0x0C4B
46 #define CYBERJACK_PRODUCT_ID 0x0100
48 /* Function prototypes */
49 static int cyberjack_port_probe(struct usb_serial_port *port);
50 static void cyberjack_port_remove(struct usb_serial_port *port);
51 static int cyberjack_open(struct tty_struct *tty,
52 struct usb_serial_port *port);
53 static void cyberjack_close(struct usb_serial_port *port);
54 static int cyberjack_write(struct tty_struct *tty,
55 struct usb_serial_port *port, const unsigned char *buf, int count);
56 static unsigned int cyberjack_write_room(struct tty_struct *tty);
57 static void cyberjack_read_int_callback(struct urb *urb);
58 static void cyberjack_read_bulk_callback(struct urb *urb);
59 static void cyberjack_write_bulk_callback(struct urb *urb);
61 static const struct usb_device_id id_table[] = {
62 { USB_DEVICE(CYBERJACK_VENDOR_ID, CYBERJACK_PRODUCT_ID) },
63 { } /* Terminating entry */
66 MODULE_DEVICE_TABLE(usb, id_table);
68 static struct usb_serial_driver cyberjack_device = {
73 .description = "Reiner SCT Cyberjack USB card reader",
77 .port_probe = cyberjack_port_probe,
78 .port_remove = cyberjack_port_remove,
79 .open = cyberjack_open,
80 .close = cyberjack_close,
81 .write = cyberjack_write,
82 .write_room = cyberjack_write_room,
83 .read_int_callback = cyberjack_read_int_callback,
84 .read_bulk_callback = cyberjack_read_bulk_callback,
85 .write_bulk_callback = cyberjack_write_bulk_callback,
88 static struct usb_serial_driver * const serial_drivers[] = {
89 &cyberjack_device, NULL
92 struct cyberjack_private {
93 spinlock_t lock; /* Lock for SMP */
94 short rdtodo; /* Bytes still to read */
95 unsigned char wrbuf[5*64]; /* Buffer for collecting data to write */
96 short wrfilled; /* Overall data size we already got */
97 short wrsent; /* Data already sent */
100 static int cyberjack_port_probe(struct usb_serial_port *port)
102 struct cyberjack_private *priv;
105 priv = kmalloc(sizeof(struct cyberjack_private), GFP_KERNEL);
109 spin_lock_init(&priv->lock);
114 usb_set_serial_port_data(port, priv);
116 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
118 dev_err(&port->dev, "usb_submit_urb(read int) failed\n");
123 static void cyberjack_port_remove(struct usb_serial_port *port)
125 struct cyberjack_private *priv;
127 usb_kill_urb(port->interrupt_in_urb);
129 priv = usb_get_serial_port_data(port);
133 static int cyberjack_open(struct tty_struct *tty,
134 struct usb_serial_port *port)
136 struct cyberjack_private *priv;
139 dev_dbg(&port->dev, "%s - usb_clear_halt\n", __func__);
140 usb_clear_halt(port->serial->dev, port->write_urb->pipe);
142 priv = usb_get_serial_port_data(port);
143 spin_lock_irqsave(&priv->lock, flags);
147 spin_unlock_irqrestore(&priv->lock, flags);
152 static void cyberjack_close(struct usb_serial_port *port)
154 usb_kill_urb(port->write_urb);
155 usb_kill_urb(port->read_urb);
158 static int cyberjack_write(struct tty_struct *tty,
159 struct usb_serial_port *port, const unsigned char *buf, int count)
161 struct device *dev = &port->dev;
162 struct cyberjack_private *priv = usb_get_serial_port_data(port);
168 dev_dbg(dev, "%s - write request of 0 bytes\n", __func__);
172 if (!test_and_clear_bit(0, &port->write_urbs_free)) {
173 dev_dbg(dev, "%s - already writing\n", __func__);
177 spin_lock_irqsave(&priv->lock, flags);
179 if (count+priv->wrfilled > sizeof(priv->wrbuf)) {
180 /* To much data for buffer. Reset buffer. */
182 spin_unlock_irqrestore(&priv->lock, flags);
183 set_bit(0, &port->write_urbs_free);
188 memcpy(priv->wrbuf + priv->wrfilled, buf, count);
190 usb_serial_debug_data(dev, __func__, count, priv->wrbuf + priv->wrfilled);
191 priv->wrfilled += count;
193 if (priv->wrfilled >= 3) {
194 wrexpected = ((int)priv->wrbuf[2]<<8)+priv->wrbuf[1]+3;
195 dev_dbg(dev, "%s - expected data: %d\n", __func__, wrexpected);
197 wrexpected = sizeof(priv->wrbuf);
199 if (priv->wrfilled >= wrexpected) {
200 /* We have enough data to begin transmission */
203 dev_dbg(dev, "%s - transmitting data (frame 1)\n", __func__);
204 length = (wrexpected > port->bulk_out_size) ?
205 port->bulk_out_size : wrexpected;
207 memcpy(port->write_urb->transfer_buffer, priv->wrbuf, length);
208 priv->wrsent = length;
211 port->write_urb->transfer_buffer_length = length;
213 /* send the data out the bulk port */
214 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
217 "%s - failed submitting write urb, error %d\n",
219 /* Throw away data. No better idea what to do with it. */
222 spin_unlock_irqrestore(&priv->lock, flags);
223 set_bit(0, &port->write_urbs_free);
227 dev_dbg(dev, "%s - priv->wrsent=%d\n", __func__, priv->wrsent);
228 dev_dbg(dev, "%s - priv->wrfilled=%d\n", __func__, priv->wrfilled);
230 if (priv->wrsent >= priv->wrfilled) {
231 dev_dbg(dev, "%s - buffer cleaned\n", __func__);
232 memset(priv->wrbuf, 0, sizeof(priv->wrbuf));
238 spin_unlock_irqrestore(&priv->lock, flags);
243 static unsigned int cyberjack_write_room(struct tty_struct *tty)
246 return CYBERJACK_LOCAL_BUF_SIZE;
249 static void cyberjack_read_int_callback(struct urb *urb)
251 struct usb_serial_port *port = urb->context;
252 struct cyberjack_private *priv = usb_get_serial_port_data(port);
253 struct device *dev = &port->dev;
254 unsigned char *data = urb->transfer_buffer;
255 int status = urb->status;
259 /* the urb might have been killed. */
263 usb_serial_debug_data(dev, __func__, urb->actual_length, data);
265 /* React only to interrupts signaling a bulk_in transfer */
266 if (urb->actual_length == 4 && data[0] == 0x01) {
269 /* This is a announcement of coming bulk_ins. */
270 unsigned short size = ((unsigned short)data[3]<<8)+data[2]+3;
272 spin_lock_irqsave(&priv->lock, flags);
274 old_rdtodo = priv->rdtodo;
276 if (old_rdtodo > SHRT_MAX - size) {
277 dev_dbg(dev, "Too many bulk_in urbs to do.\n");
278 spin_unlock_irqrestore(&priv->lock, flags);
282 /* "+=" is probably more fault tolerant than "=" */
283 priv->rdtodo += size;
285 dev_dbg(dev, "%s - rdtodo: %d\n", __func__, priv->rdtodo);
287 spin_unlock_irqrestore(&priv->lock, flags);
290 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
292 dev_err(dev, "%s - failed resubmitting read urb, error %d\n",
294 dev_dbg(dev, "%s - usb_submit_urb(read urb)\n", __func__);
299 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
301 dev_err(&port->dev, "usb_submit_urb(read int) failed\n");
302 dev_dbg(dev, "%s - usb_submit_urb(int urb)\n", __func__);
305 static void cyberjack_read_bulk_callback(struct urb *urb)
307 struct usb_serial_port *port = urb->context;
308 struct cyberjack_private *priv = usb_get_serial_port_data(port);
309 struct device *dev = &port->dev;
310 unsigned char *data = urb->transfer_buffer;
314 int status = urb->status;
316 usb_serial_debug_data(dev, __func__, urb->actual_length, data);
318 dev_dbg(dev, "%s - nonzero read bulk status received: %d\n",
323 if (urb->actual_length) {
324 tty_insert_flip_string(&port->port, data, urb->actual_length);
325 tty_flip_buffer_push(&port->port);
328 spin_lock_irqsave(&priv->lock, flags);
330 /* Reduce urbs to do by one. */
331 priv->rdtodo -= urb->actual_length;
332 /* Just to be sure */
333 if (priv->rdtodo < 0)
337 spin_unlock_irqrestore(&priv->lock, flags);
339 dev_dbg(dev, "%s - rdtodo: %d\n", __func__, todo);
341 /* Continue to read if we have still urbs to do. */
342 if (todo /* || (urb->actual_length==port->bulk_in_endpointAddress)*/) {
343 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
345 dev_err(dev, "%s - failed resubmitting read urb, error %d\n",
347 dev_dbg(dev, "%s - usb_submit_urb(read urb)\n", __func__);
351 static void cyberjack_write_bulk_callback(struct urb *urb)
353 struct usb_serial_port *port = urb->context;
354 struct cyberjack_private *priv = usb_get_serial_port_data(port);
355 struct device *dev = &port->dev;
356 int status = urb->status;
358 bool resubmitted = false;
361 dev_dbg(dev, "%s - nonzero write bulk status received: %d\n",
363 set_bit(0, &port->write_urbs_free);
367 spin_lock_irqsave(&priv->lock, flags);
369 /* only do something if we have more data to send */
370 if (priv->wrfilled) {
371 int length, blksize, result;
373 dev_dbg(dev, "%s - transmitting data (frame n)\n", __func__);
375 length = ((priv->wrfilled - priv->wrsent) > port->bulk_out_size) ?
376 port->bulk_out_size : (priv->wrfilled - priv->wrsent);
378 memcpy(port->write_urb->transfer_buffer,
379 priv->wrbuf + priv->wrsent, length);
380 priv->wrsent += length;
383 port->write_urb->transfer_buffer_length = length;
385 /* send the data out the bulk port */
386 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
388 dev_err(dev, "%s - failed submitting write urb, error %d\n",
390 /* Throw away data. No better idea what to do with it. */
398 dev_dbg(dev, "%s - priv->wrsent=%d\n", __func__, priv->wrsent);
399 dev_dbg(dev, "%s - priv->wrfilled=%d\n", __func__, priv->wrfilled);
401 blksize = ((int)priv->wrbuf[2]<<8)+priv->wrbuf[1]+3;
403 if (priv->wrsent >= priv->wrfilled ||
404 priv->wrsent >= blksize) {
405 dev_dbg(dev, "%s - buffer cleaned\n", __func__);
406 memset(priv->wrbuf, 0, sizeof(priv->wrbuf));
413 spin_unlock_irqrestore(&priv->lock, flags);
415 set_bit(0, &port->write_urbs_free);
416 usb_serial_port_softint(port);
419 module_usb_serial_driver(serial_drivers, id_table);
421 MODULE_AUTHOR(DRIVER_AUTHOR);
422 MODULE_DESCRIPTION(DRIVER_DESC);
423 MODULE_LICENSE("GPL");