Merge tag 'vfio-v3.9-rc1' of git://github.com/awilliam/linux-vfio
[cascardo/linux.git] / drivers / usb / serial / cyberjack.c
1 /*
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
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>
43
44 #define CYBERJACK_LOCAL_BUF_SIZE 32
45
46 #define DRIVER_AUTHOR "Matthias Bruestle"
47 #define DRIVER_DESC "REINER SCT cyberJack pinpad/e-com USB Chipcard Reader Driver"
48
49
50 #define CYBERJACK_VENDOR_ID     0x0C4B
51 #define CYBERJACK_PRODUCT_ID    0x0100
52
53 /* Function prototypes */
54 static void cyberjack_disconnect(struct usb_serial *serial);
55 static int cyberjack_port_probe(struct usb_serial_port *port);
56 static int cyberjack_port_remove(struct usb_serial_port *port);
57 static int  cyberjack_open(struct tty_struct *tty,
58         struct usb_serial_port *port);
59 static void cyberjack_close(struct usb_serial_port *port);
60 static int cyberjack_write(struct tty_struct *tty,
61         struct usb_serial_port *port, const unsigned char *buf, int count);
62 static int cyberjack_write_room(struct tty_struct *tty);
63 static void cyberjack_read_int_callback(struct urb *urb);
64 static void cyberjack_read_bulk_callback(struct urb *urb);
65 static void cyberjack_write_bulk_callback(struct urb *urb);
66
67 static const struct usb_device_id id_table[] = {
68         { USB_DEVICE(CYBERJACK_VENDOR_ID, CYBERJACK_PRODUCT_ID) },
69         { }                     /* Terminating entry */
70 };
71
72 MODULE_DEVICE_TABLE(usb, id_table);
73
74 static struct usb_serial_driver cyberjack_device = {
75         .driver = {
76                 .owner =        THIS_MODULE,
77                 .name =         "cyberjack",
78         },
79         .description =          "Reiner SCT Cyberjack USB card reader",
80         .id_table =             id_table,
81         .num_ports =            1,
82         .disconnect =           cyberjack_disconnect,
83         .port_probe =           cyberjack_port_probe,
84         .port_remove =          cyberjack_port_remove,
85         .open =                 cyberjack_open,
86         .close =                cyberjack_close,
87         .write =                cyberjack_write,
88         .write_room =           cyberjack_write_room,
89         .read_int_callback =    cyberjack_read_int_callback,
90         .read_bulk_callback =   cyberjack_read_bulk_callback,
91         .write_bulk_callback =  cyberjack_write_bulk_callback,
92 };
93
94 static struct usb_serial_driver * const serial_drivers[] = {
95         &cyberjack_device, NULL
96 };
97
98 struct cyberjack_private {
99         spinlock_t      lock;           /* Lock for SMP */
100         short           rdtodo;         /* Bytes still to read */
101         unsigned char   wrbuf[5*64];    /* Buffer for collecting data to write */
102         short           wrfilled;       /* Overall data size we already got */
103         short           wrsent;         /* Data already sent */
104 };
105
106 static int cyberjack_port_probe(struct usb_serial_port *port)
107 {
108         struct cyberjack_private *priv;
109         int result;
110
111         priv = kmalloc(sizeof(struct cyberjack_private), GFP_KERNEL);
112         if (!priv)
113                 return -ENOMEM;
114
115         spin_lock_init(&priv->lock);
116         priv->rdtodo = 0;
117         priv->wrfilled = 0;
118         priv->wrsent = 0;
119
120         usb_set_serial_port_data(port, priv);
121
122         result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
123         if (result)
124                 dev_err(&port->dev, "usb_submit_urb(read int) failed\n");
125
126         return 0;
127 }
128
129 static int cyberjack_port_remove(struct usb_serial_port *port)
130 {
131         struct cyberjack_private *priv;
132
133         priv = usb_get_serial_port_data(port);
134         kfree(priv);
135
136         return 0;
137 }
138
139 static void cyberjack_disconnect(struct usb_serial *serial)
140 {
141         int i;
142
143         for (i = 0; i < serial->num_ports; ++i)
144                 usb_kill_urb(serial->port[i]->interrupt_in_urb);
145 }
146
147 static int  cyberjack_open(struct tty_struct *tty,
148                                         struct usb_serial_port *port)
149 {
150         struct cyberjack_private *priv;
151         unsigned long flags;
152         int result = 0;
153
154         dev_dbg(&port->dev, "%s - usb_clear_halt\n", __func__);
155         usb_clear_halt(port->serial->dev, port->write_urb->pipe);
156
157         priv = usb_get_serial_port_data(port);
158         spin_lock_irqsave(&priv->lock, flags);
159         priv->rdtodo = 0;
160         priv->wrfilled = 0;
161         priv->wrsent = 0;
162         spin_unlock_irqrestore(&priv->lock, flags);
163
164         return result;
165 }
166
167 static void cyberjack_close(struct usb_serial_port *port)
168 {
169         if (port->serial->dev) {
170                 /* shutdown any bulk reads that might be going on */
171                 usb_kill_urb(port->write_urb);
172                 usb_kill_urb(port->read_urb);
173         }
174 }
175
176 static int cyberjack_write(struct tty_struct *tty,
177         struct usb_serial_port *port, const unsigned char *buf, int count)
178 {
179         struct device *dev = &port->dev;
180         struct cyberjack_private *priv = usb_get_serial_port_data(port);
181         unsigned long flags;
182         int result;
183         int wrexpected;
184
185         if (count == 0) {
186                 dev_dbg(dev, "%s - write request of 0 bytes\n", __func__);
187                 return 0;
188         }
189
190         if (!test_and_clear_bit(0, &port->write_urbs_free)) {
191                 dev_dbg(dev, "%s - already writing\n", __func__);
192                 return 0;
193         }
194
195         spin_lock_irqsave(&priv->lock, flags);
196
197         if (count+priv->wrfilled > sizeof(priv->wrbuf)) {
198                 /* To much data for buffer. Reset buffer. */
199                 priv->wrfilled = 0;
200                 spin_unlock_irqrestore(&priv->lock, flags);
201                 set_bit(0, &port->write_urbs_free);
202                 return 0;
203         }
204
205         /* Copy data */
206         memcpy(priv->wrbuf + priv->wrfilled, buf, count);
207
208         usb_serial_debug_data(dev, __func__, count, priv->wrbuf + priv->wrfilled);
209         priv->wrfilled += count;
210
211         if (priv->wrfilled >= 3) {
212                 wrexpected = ((int)priv->wrbuf[2]<<8)+priv->wrbuf[1]+3;
213                 dev_dbg(dev, "%s - expected data: %d\n", __func__, wrexpected);
214         } else
215                 wrexpected = sizeof(priv->wrbuf);
216
217         if (priv->wrfilled >= wrexpected) {
218                 /* We have enough data to begin transmission */
219                 int length;
220
221                 dev_dbg(dev, "%s - transmitting data (frame 1)\n", __func__);
222                 length = (wrexpected > port->bulk_out_size) ?
223                                         port->bulk_out_size : wrexpected;
224
225                 memcpy(port->write_urb->transfer_buffer, priv->wrbuf, length);
226                 priv->wrsent = length;
227
228                 /* set up our urb */
229                 port->write_urb->transfer_buffer_length = length;
230
231                 /* send the data out the bulk port */
232                 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
233                 if (result) {
234                         dev_err(&port->dev,
235                                 "%s - failed submitting write urb, error %d",
236                                 __func__, result);
237                         /* Throw away data. No better idea what to do with it. */
238                         priv->wrfilled = 0;
239                         priv->wrsent = 0;
240                         spin_unlock_irqrestore(&priv->lock, flags);
241                         set_bit(0, &port->write_urbs_free);
242                         return 0;
243                 }
244
245                 dev_dbg(dev, "%s - priv->wrsent=%d\n", __func__, priv->wrsent);
246                 dev_dbg(dev, "%s - priv->wrfilled=%d\n", __func__, priv->wrfilled);
247
248                 if (priv->wrsent >= priv->wrfilled) {
249                         dev_dbg(dev, "%s - buffer cleaned\n", __func__);
250                         memset(priv->wrbuf, 0, sizeof(priv->wrbuf));
251                         priv->wrfilled = 0;
252                         priv->wrsent = 0;
253                 }
254         }
255
256         spin_unlock_irqrestore(&priv->lock, flags);
257
258         return count;
259 }
260
261 static int cyberjack_write_room(struct tty_struct *tty)
262 {
263         /* FIXME: .... */
264         return CYBERJACK_LOCAL_BUF_SIZE;
265 }
266
267 static void cyberjack_read_int_callback(struct urb *urb)
268 {
269         struct usb_serial_port *port = urb->context;
270         struct cyberjack_private *priv = usb_get_serial_port_data(port);
271         struct device *dev = &port->dev;
272         unsigned char *data = urb->transfer_buffer;
273         int status = urb->status;
274         int result;
275
276         /* the urb might have been killed. */
277         if (status)
278                 return;
279
280         usb_serial_debug_data(dev, __func__, urb->actual_length, data);
281
282         /* React only to interrupts signaling a bulk_in transfer */
283         if (urb->actual_length == 4 && data[0] == 0x01) {
284                 short old_rdtodo;
285
286                 /* This is a announcement of coming bulk_ins. */
287                 unsigned short size = ((unsigned short)data[3]<<8)+data[2]+3;
288
289                 spin_lock(&priv->lock);
290
291                 old_rdtodo = priv->rdtodo;
292
293                 if (old_rdtodo + size < old_rdtodo) {
294                         dev_dbg(dev, "To many bulk_in urbs to do.\n");
295                         spin_unlock(&priv->lock);
296                         goto resubmit;
297                 }
298
299                 /* "+=" is probably more fault tollerant than "=" */
300                 priv->rdtodo += size;
301
302                 dev_dbg(dev, "%s - rdtodo: %d\n", __func__, priv->rdtodo);
303
304                 spin_unlock(&priv->lock);
305
306                 if (!old_rdtodo) {
307                         result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
308                         if (result)
309                                 dev_err(dev, "%s - failed resubmitting read urb, error %d\n",
310                                         __func__, result);
311                         dev_dbg(dev, "%s - usb_submit_urb(read urb)\n", __func__);
312                 }
313         }
314
315 resubmit:
316         result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
317         if (result)
318                 dev_err(&port->dev, "usb_submit_urb(read int) failed\n");
319         dev_dbg(dev, "%s - usb_submit_urb(int urb)\n", __func__);
320 }
321
322 static void cyberjack_read_bulk_callback(struct urb *urb)
323 {
324         struct usb_serial_port *port = urb->context;
325         struct cyberjack_private *priv = usb_get_serial_port_data(port);
326         struct device *dev = &port->dev;
327         unsigned char *data = urb->transfer_buffer;
328         short todo;
329         int result;
330         int status = urb->status;
331
332         usb_serial_debug_data(dev, __func__, urb->actual_length, data);
333         if (status) {
334                 dev_dbg(dev, "%s - nonzero read bulk status received: %d\n",
335                         __func__, status);
336                 return;
337         }
338
339         if (urb->actual_length) {
340                 tty_insert_flip_string(&port->port, data, urb->actual_length);
341                 tty_flip_buffer_push(&port->port);
342         }
343
344         spin_lock(&priv->lock);
345
346         /* Reduce urbs to do by one. */
347         priv->rdtodo -= urb->actual_length;
348         /* Just to be sure */
349         if (priv->rdtodo < 0)
350                 priv->rdtodo = 0;
351         todo = priv->rdtodo;
352
353         spin_unlock(&priv->lock);
354
355         dev_dbg(dev, "%s - rdtodo: %d\n", __func__, todo);
356
357         /* Continue to read if we have still urbs to do. */
358         if (todo /* || (urb->actual_length==port->bulk_in_endpointAddress)*/) {
359                 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
360                 if (result)
361                         dev_err(dev, "%s - failed resubmitting read urb, error %d\n",
362                                 __func__, result);
363                 dev_dbg(dev, "%s - usb_submit_urb(read urb)\n", __func__);
364         }
365 }
366
367 static void cyberjack_write_bulk_callback(struct urb *urb)
368 {
369         struct usb_serial_port *port = urb->context;
370         struct cyberjack_private *priv = usb_get_serial_port_data(port);
371         struct device *dev = &port->dev;
372         int status = urb->status;
373
374         set_bit(0, &port->write_urbs_free);
375         if (status) {
376                 dev_dbg(dev, "%s - nonzero write bulk status received: %d\n",
377                         __func__, status);
378                 return;
379         }
380
381         spin_lock(&priv->lock);
382
383         /* only do something if we have more data to send */
384         if (priv->wrfilled) {
385                 int length, blksize, result;
386
387                 dev_dbg(dev, "%s - transmitting data (frame n)\n", __func__);
388
389                 length = ((priv->wrfilled - priv->wrsent) > port->bulk_out_size) ?
390                         port->bulk_out_size : (priv->wrfilled - priv->wrsent);
391
392                 memcpy(port->write_urb->transfer_buffer,
393                                         priv->wrbuf + priv->wrsent, length);
394                 priv->wrsent += length;
395
396                 /* set up our urb */
397                 port->write_urb->transfer_buffer_length = length;
398
399                 /* send the data out the bulk port */
400                 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
401                 if (result) {
402                         dev_err(dev, "%s - failed submitting write urb, error %d\n",
403                                 __func__, result);
404                         /* Throw away data. No better idea what to do with it. */
405                         priv->wrfilled = 0;
406                         priv->wrsent = 0;
407                         goto exit;
408                 }
409
410                 dev_dbg(dev, "%s - priv->wrsent=%d\n", __func__, priv->wrsent);
411                 dev_dbg(dev, "%s - priv->wrfilled=%d\n", __func__, priv->wrfilled);
412
413                 blksize = ((int)priv->wrbuf[2]<<8)+priv->wrbuf[1]+3;
414
415                 if (priv->wrsent >= priv->wrfilled ||
416                                         priv->wrsent >= blksize) {
417                         dev_dbg(dev, "%s - buffer cleaned\n", __func__);
418                         memset(priv->wrbuf, 0, sizeof(priv->wrbuf));
419                         priv->wrfilled = 0;
420                         priv->wrsent = 0;
421                 }
422         }
423
424 exit:
425         spin_unlock(&priv->lock);
426         usb_serial_port_softint(port);
427 }
428
429 module_usb_serial_driver(serial_drivers, id_table);
430
431 MODULE_AUTHOR(DRIVER_AUTHOR);
432 MODULE_DESCRIPTION(DRIVER_DESC);
433 MODULE_LICENSE("GPL");