dm thin metadata: fix __udivdi3 undefined on 32-bit
[linux/fpc-iii.git] / drivers / usb / serial / cyberjack.c
blob8948f375e75d24c55fbcb7af9c87a04c2f835f7b
1 /*
2 * REINER SCT cyberJack pinpad/e-com USB Chipcard Reader Driver
4 * Copyright (C) 2001 REINER SCT
5 * Author: Matthias Bruestle
7 * Contact: support@reiner-sct.com (see MAINTAINERS)
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.
18 * Thanks to Greg Kroah-Hartman (greg@kroah.com) for his help and
19 * patience.
21 * In case of problems, please write to the contact e-mail address
22 * mentioned above.
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/slab.h>
34 #include <linux/tty.h>
35 #include <linux/tty_driver.h>
36 #include <linux/tty_flip.h>
37 #include <linux/module.h>
38 #include <linux/spinlock.h>
39 #include <linux/uaccess.h>
40 #include <linux/usb.h>
41 #include <linux/usb/serial.h>
43 #define CYBERJACK_LOCAL_BUF_SIZE 32
45 #define DRIVER_AUTHOR "Matthias Bruestle"
46 #define DRIVER_DESC "REINER SCT cyberJack pinpad/e-com USB Chipcard Reader Driver"
49 #define CYBERJACK_VENDOR_ID 0x0C4B
50 #define CYBERJACK_PRODUCT_ID 0x0100
52 /* Function prototypes */
53 static int cyberjack_attach(struct usb_serial *serial);
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 = {
74 .driver = {
75 .owner = THIS_MODULE,
76 .name = "cyberjack",
78 .description = "Reiner SCT Cyberjack USB card reader",
79 .id_table = id_table,
80 .num_ports = 1,
81 .attach = cyberjack_attach,
82 .port_probe = cyberjack_port_probe,
83 .port_remove = cyberjack_port_remove,
84 .open = cyberjack_open,
85 .close = cyberjack_close,
86 .write = cyberjack_write,
87 .write_room = cyberjack_write_room,
88 .read_int_callback = cyberjack_read_int_callback,
89 .read_bulk_callback = cyberjack_read_bulk_callback,
90 .write_bulk_callback = cyberjack_write_bulk_callback,
93 static struct usb_serial_driver * const serial_drivers[] = {
94 &cyberjack_device, NULL
97 struct cyberjack_private {
98 spinlock_t lock; /* Lock for SMP */
99 short rdtodo; /* Bytes still to read */
100 unsigned char wrbuf[5*64]; /* Buffer for collecting data to write */
101 short wrfilled; /* Overall data size we already got */
102 short wrsent; /* Data already sent */
105 static int cyberjack_attach(struct usb_serial *serial)
107 if (serial->num_bulk_out < serial->num_ports)
108 return -ENODEV;
110 return 0;
113 static int cyberjack_port_probe(struct usb_serial_port *port)
115 struct cyberjack_private *priv;
116 int result;
118 priv = kmalloc(sizeof(struct cyberjack_private), GFP_KERNEL);
119 if (!priv)
120 return -ENOMEM;
122 spin_lock_init(&priv->lock);
123 priv->rdtodo = 0;
124 priv->wrfilled = 0;
125 priv->wrsent = 0;
127 usb_set_serial_port_data(port, priv);
129 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
130 if (result)
131 dev_err(&port->dev, "usb_submit_urb(read int) failed\n");
133 return 0;
136 static int cyberjack_port_remove(struct usb_serial_port *port)
138 struct cyberjack_private *priv;
140 usb_kill_urb(port->interrupt_in_urb);
142 priv = usb_get_serial_port_data(port);
143 kfree(priv);
145 return 0;
148 static int cyberjack_open(struct tty_struct *tty,
149 struct usb_serial_port *port)
151 struct cyberjack_private *priv;
152 unsigned long flags;
153 int result = 0;
155 dev_dbg(&port->dev, "%s - usb_clear_halt\n", __func__);
156 usb_clear_halt(port->serial->dev, port->write_urb->pipe);
158 priv = usb_get_serial_port_data(port);
159 spin_lock_irqsave(&priv->lock, flags);
160 priv->rdtodo = 0;
161 priv->wrfilled = 0;
162 priv->wrsent = 0;
163 spin_unlock_irqrestore(&priv->lock, flags);
165 return result;
168 static void cyberjack_close(struct usb_serial_port *port)
170 usb_kill_urb(port->write_urb);
171 usb_kill_urb(port->read_urb);
174 static int cyberjack_write(struct tty_struct *tty,
175 struct usb_serial_port *port, const unsigned char *buf, int count)
177 struct device *dev = &port->dev;
178 struct cyberjack_private *priv = usb_get_serial_port_data(port);
179 unsigned long flags;
180 int result;
181 int wrexpected;
183 if (count == 0) {
184 dev_dbg(dev, "%s - write request of 0 bytes\n", __func__);
185 return 0;
188 if (!test_and_clear_bit(0, &port->write_urbs_free)) {
189 dev_dbg(dev, "%s - already writing\n", __func__);
190 return 0;
193 spin_lock_irqsave(&priv->lock, flags);
195 if (count+priv->wrfilled > sizeof(priv->wrbuf)) {
196 /* To much data for buffer. Reset buffer. */
197 priv->wrfilled = 0;
198 spin_unlock_irqrestore(&priv->lock, flags);
199 set_bit(0, &port->write_urbs_free);
200 return 0;
203 /* Copy data */
204 memcpy(priv->wrbuf + priv->wrfilled, buf, count);
206 usb_serial_debug_data(dev, __func__, count, priv->wrbuf + priv->wrfilled);
207 priv->wrfilled += count;
209 if (priv->wrfilled >= 3) {
210 wrexpected = ((int)priv->wrbuf[2]<<8)+priv->wrbuf[1]+3;
211 dev_dbg(dev, "%s - expected data: %d\n", __func__, wrexpected);
212 } else
213 wrexpected = sizeof(priv->wrbuf);
215 if (priv->wrfilled >= wrexpected) {
216 /* We have enough data to begin transmission */
217 int length;
219 dev_dbg(dev, "%s - transmitting data (frame 1)\n", __func__);
220 length = (wrexpected > port->bulk_out_size) ?
221 port->bulk_out_size : wrexpected;
223 memcpy(port->write_urb->transfer_buffer, priv->wrbuf, length);
224 priv->wrsent = length;
226 /* set up our urb */
227 port->write_urb->transfer_buffer_length = length;
229 /* send the data out the bulk port */
230 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
231 if (result) {
232 dev_err(&port->dev,
233 "%s - failed submitting write urb, error %d\n",
234 __func__, result);
235 /* Throw away data. No better idea what to do with it. */
236 priv->wrfilled = 0;
237 priv->wrsent = 0;
238 spin_unlock_irqrestore(&priv->lock, flags);
239 set_bit(0, &port->write_urbs_free);
240 return 0;
243 dev_dbg(dev, "%s - priv->wrsent=%d\n", __func__, priv->wrsent);
244 dev_dbg(dev, "%s - priv->wrfilled=%d\n", __func__, priv->wrfilled);
246 if (priv->wrsent >= priv->wrfilled) {
247 dev_dbg(dev, "%s - buffer cleaned\n", __func__);
248 memset(priv->wrbuf, 0, sizeof(priv->wrbuf));
249 priv->wrfilled = 0;
250 priv->wrsent = 0;
254 spin_unlock_irqrestore(&priv->lock, flags);
256 return count;
259 static int cyberjack_write_room(struct tty_struct *tty)
261 /* FIXME: .... */
262 return CYBERJACK_LOCAL_BUF_SIZE;
265 static void cyberjack_read_int_callback(struct urb *urb)
267 struct usb_serial_port *port = urb->context;
268 struct cyberjack_private *priv = usb_get_serial_port_data(port);
269 struct device *dev = &port->dev;
270 unsigned char *data = urb->transfer_buffer;
271 int status = urb->status;
272 int result;
274 /* the urb might have been killed. */
275 if (status)
276 return;
278 usb_serial_debug_data(dev, __func__, urb->actual_length, data);
280 /* React only to interrupts signaling a bulk_in transfer */
281 if (urb->actual_length == 4 && data[0] == 0x01) {
282 short old_rdtodo;
284 /* This is a announcement of coming bulk_ins. */
285 unsigned short size = ((unsigned short)data[3]<<8)+data[2]+3;
287 spin_lock(&priv->lock);
289 old_rdtodo = priv->rdtodo;
291 if (old_rdtodo > SHRT_MAX - size) {
292 dev_dbg(dev, "To many bulk_in urbs to do.\n");
293 spin_unlock(&priv->lock);
294 goto resubmit;
297 /* "+=" is probably more fault tolerant than "=" */
298 priv->rdtodo += size;
300 dev_dbg(dev, "%s - rdtodo: %d\n", __func__, priv->rdtodo);
302 spin_unlock(&priv->lock);
304 if (!old_rdtodo) {
305 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
306 if (result)
307 dev_err(dev, "%s - failed resubmitting read urb, error %d\n",
308 __func__, result);
309 dev_dbg(dev, "%s - usb_submit_urb(read urb)\n", __func__);
313 resubmit:
314 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
315 if (result)
316 dev_err(&port->dev, "usb_submit_urb(read int) failed\n");
317 dev_dbg(dev, "%s - usb_submit_urb(int urb)\n", __func__);
320 static void cyberjack_read_bulk_callback(struct urb *urb)
322 struct usb_serial_port *port = urb->context;
323 struct cyberjack_private *priv = usb_get_serial_port_data(port);
324 struct device *dev = &port->dev;
325 unsigned char *data = urb->transfer_buffer;
326 short todo;
327 int result;
328 int status = urb->status;
330 usb_serial_debug_data(dev, __func__, urb->actual_length, data);
331 if (status) {
332 dev_dbg(dev, "%s - nonzero read bulk status received: %d\n",
333 __func__, status);
334 return;
337 if (urb->actual_length) {
338 tty_insert_flip_string(&port->port, data, urb->actual_length);
339 tty_flip_buffer_push(&port->port);
342 spin_lock(&priv->lock);
344 /* Reduce urbs to do by one. */
345 priv->rdtodo -= urb->actual_length;
346 /* Just to be sure */
347 if (priv->rdtodo < 0)
348 priv->rdtodo = 0;
349 todo = priv->rdtodo;
351 spin_unlock(&priv->lock);
353 dev_dbg(dev, "%s - rdtodo: %d\n", __func__, todo);
355 /* Continue to read if we have still urbs to do. */
356 if (todo /* || (urb->actual_length==port->bulk_in_endpointAddress)*/) {
357 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
358 if (result)
359 dev_err(dev, "%s - failed resubmitting read urb, error %d\n",
360 __func__, result);
361 dev_dbg(dev, "%s - usb_submit_urb(read urb)\n", __func__);
365 static void cyberjack_write_bulk_callback(struct urb *urb)
367 struct usb_serial_port *port = urb->context;
368 struct cyberjack_private *priv = usb_get_serial_port_data(port);
369 struct device *dev = &port->dev;
370 int status = urb->status;
372 set_bit(0, &port->write_urbs_free);
373 if (status) {
374 dev_dbg(dev, "%s - nonzero write bulk status received: %d\n",
375 __func__, status);
376 return;
379 spin_lock(&priv->lock);
381 /* only do something if we have more data to send */
382 if (priv->wrfilled) {
383 int length, blksize, result;
385 dev_dbg(dev, "%s - transmitting data (frame n)\n", __func__);
387 length = ((priv->wrfilled - priv->wrsent) > port->bulk_out_size) ?
388 port->bulk_out_size : (priv->wrfilled - priv->wrsent);
390 memcpy(port->write_urb->transfer_buffer,
391 priv->wrbuf + priv->wrsent, length);
392 priv->wrsent += length;
394 /* set up our urb */
395 port->write_urb->transfer_buffer_length = length;
397 /* send the data out the bulk port */
398 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
399 if (result) {
400 dev_err(dev, "%s - failed submitting write urb, error %d\n",
401 __func__, result);
402 /* Throw away data. No better idea what to do with it. */
403 priv->wrfilled = 0;
404 priv->wrsent = 0;
405 goto exit;
408 dev_dbg(dev, "%s - priv->wrsent=%d\n", __func__, priv->wrsent);
409 dev_dbg(dev, "%s - priv->wrfilled=%d\n", __func__, priv->wrfilled);
411 blksize = ((int)priv->wrbuf[2]<<8)+priv->wrbuf[1]+3;
413 if (priv->wrsent >= priv->wrfilled ||
414 priv->wrsent >= blksize) {
415 dev_dbg(dev, "%s - buffer cleaned\n", __func__);
416 memset(priv->wrbuf, 0, sizeof(priv->wrbuf));
417 priv->wrfilled = 0;
418 priv->wrsent = 0;
422 exit:
423 spin_unlock(&priv->lock);
424 usb_serial_port_softint(port);
427 module_usb_serial_driver(serial_drivers, id_table);
429 MODULE_AUTHOR(DRIVER_AUTHOR);
430 MODULE_DESCRIPTION(DRIVER_DESC);
431 MODULE_LICENSE("GPL");