Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 40 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #include <linux/usb.h> |
Greg Kroah-Hartman | a969888 | 2006-07-11 21:22:58 -0700 | [diff] [blame] | 42 | #include <linux/usb/serial.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
| 44 | #define CYBERJACK_LOCAL_BUF_SIZE 32 |
| 45 | |
| 46 | static 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 Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 60 | static int cyberjack_startup(struct usb_serial *serial); |
| 61 | static void cyberjack_shutdown(struct usb_serial *serial); |
| 62 | static int cyberjack_open(struct tty_struct *tty, |
| 63 | struct usb_serial_port *port, struct file *filp); |
| 64 | static void cyberjack_close(struct tty_struct *tty, |
| 65 | struct usb_serial_port *port, struct file *filp); |
| 66 | static int cyberjack_write(struct tty_struct *tty, |
| 67 | struct usb_serial_port *port, const unsigned char *buf, int count); |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 68 | static int cyberjack_write_room(struct tty_struct *tty); |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 69 | static void cyberjack_read_int_callback(struct urb *urb); |
| 70 | static void cyberjack_read_bulk_callback(struct urb *urb); |
| 71 | static void cyberjack_write_bulk_callback(struct urb *urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
| 73 | static struct usb_device_id id_table [] = { |
| 74 | { USB_DEVICE(CYBERJACK_VENDOR_ID, CYBERJACK_PRODUCT_ID) }, |
| 75 | { } /* Terminating entry */ |
| 76 | }; |
| 77 | |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 78 | MODULE_DEVICE_TABLE(usb, id_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
| 80 | static struct usb_driver cyberjack_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | .name = "cyberjack", |
| 82 | .probe = usb_serial_probe, |
| 83 | .disconnect = usb_serial_disconnect, |
| 84 | .id_table = id_table, |
Greg Kroah-Hartman | ba9dc65 | 2005-11-16 13:41:28 -0800 | [diff] [blame] | 85 | .no_dynamic_id = 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | }; |
| 87 | |
Greg Kroah-Hartman | ea65370 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 88 | static struct usb_serial_driver cyberjack_device = { |
Greg Kroah-Hartman | 18fcac3 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 89 | .driver = { |
| 90 | .owner = THIS_MODULE, |
Greg Kroah-Hartman | 269bda1 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 91 | .name = "cyberjack", |
Greg Kroah-Hartman | 18fcac3 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 92 | }, |
Greg Kroah-Hartman | 269bda1 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 93 | .description = "Reiner SCT Cyberjack USB card reader", |
Johannes Hölzl | d9b1b78 | 2006-12-17 21:50:24 +0100 | [diff] [blame] | 94 | .usb_driver = &cyberjack_driver, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | .id_table = id_table, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | .num_ports = 1, |
| 97 | .attach = cyberjack_startup, |
| 98 | .shutdown = cyberjack_shutdown, |
| 99 | .open = cyberjack_open, |
| 100 | .close = cyberjack_close, |
| 101 | .write = cyberjack_write, |
Johannes Hölzl | d9b1b78 | 2006-12-17 21:50:24 +0100 | [diff] [blame] | 102 | .write_room = cyberjack_write_room, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | .read_int_callback = cyberjack_read_int_callback, |
| 104 | .read_bulk_callback = cyberjack_read_bulk_callback, |
| 105 | .write_bulk_callback = cyberjack_write_bulk_callback, |
| 106 | }; |
| 107 | |
| 108 | struct cyberjack_private { |
| 109 | spinlock_t lock; /* Lock for SMP */ |
| 110 | short rdtodo; /* Bytes still to read */ |
| 111 | unsigned char wrbuf[5*64]; /* Buffer for collecting data to write */ |
| 112 | short wrfilled; /* Overall data size we already got */ |
| 113 | short wrsent; /* Data already sent */ |
| 114 | }; |
| 115 | |
| 116 | /* do some startup allocations not currently performed by usb_serial_probe() */ |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 117 | static int cyberjack_startup(struct usb_serial *serial) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | { |
| 119 | struct cyberjack_private *priv; |
| 120 | int i; |
| 121 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 122 | dbg("%s", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
| 124 | /* allocate the private data structure */ |
| 125 | priv = kmalloc(sizeof(struct cyberjack_private), GFP_KERNEL); |
| 126 | if (!priv) |
| 127 | return -ENOMEM; |
| 128 | |
| 129 | /* set initial values */ |
| 130 | spin_lock_init(&priv->lock); |
| 131 | priv->rdtodo = 0; |
| 132 | priv->wrfilled = 0; |
| 133 | priv->wrsent = 0; |
| 134 | usb_set_serial_port_data(serial->port[0], priv); |
| 135 | |
| 136 | init_waitqueue_head(&serial->port[0]->write_wait); |
| 137 | |
| 138 | for (i = 0; i < serial->num_ports; ++i) { |
| 139 | int result; |
| 140 | serial->port[i]->interrupt_in_urb->dev = serial->dev; |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 141 | result = usb_submit_urb(serial->port[i]->interrupt_in_urb, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | GFP_KERNEL); |
| 143 | if (result) |
| 144 | err(" usb_submit_urb(read int) failed"); |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 145 | dbg("%s - usb_submit_urb(int urb)", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | } |
| 147 | |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 148 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | } |
| 150 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 151 | static void cyberjack_shutdown(struct usb_serial *serial) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | { |
| 153 | int i; |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 154 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 155 | dbg("%s", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | |
Alan Cox | a5b6f60 | 2008-04-08 17:16:06 +0100 | [diff] [blame] | 157 | for (i = 0; i < serial->num_ports; ++i) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | usb_kill_urb(serial->port[i]->interrupt_in_urb); |
| 159 | /* My special items, the standard routines free my urbs */ |
| 160 | kfree(usb_get_serial_port_data(serial->port[i])); |
| 161 | usb_set_serial_port_data(serial->port[i], NULL); |
| 162 | } |
| 163 | } |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 164 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 165 | static int cyberjack_open(struct tty_struct *tty, |
| 166 | struct usb_serial_port *port, struct file *filp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | { |
| 168 | struct cyberjack_private *priv; |
| 169 | unsigned long flags; |
| 170 | int result = 0; |
| 171 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 172 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 174 | dbg("%s - usb_clear_halt", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | usb_clear_halt(port->serial->dev, port->write_urb->pipe); |
| 176 | |
| 177 | /* force low_latency on so that our tty_push actually forces |
| 178 | * the data through, otherwise it is scheduled, and with high |
| 179 | * data rates (like with OHCI) data can get lost. |
| 180 | */ |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 181 | if (tty) |
| 182 | tty->low_latency = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | |
| 184 | priv = usb_get_serial_port_data(port); |
| 185 | spin_lock_irqsave(&priv->lock, flags); |
| 186 | priv->rdtodo = 0; |
| 187 | priv->wrfilled = 0; |
| 188 | priv->wrsent = 0; |
| 189 | spin_unlock_irqrestore(&priv->lock, flags); |
| 190 | |
| 191 | return result; |
| 192 | } |
| 193 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 194 | static void cyberjack_close(struct tty_struct *tty, |
| 195 | struct usb_serial_port *port, struct file *filp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 197 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | |
| 199 | if (port->serial->dev) { |
| 200 | /* shutdown any bulk reads that might be going on */ |
| 201 | usb_kill_urb(port->write_urb); |
| 202 | usb_kill_urb(port->read_urb); |
| 203 | } |
| 204 | } |
| 205 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 206 | static int cyberjack_write(struct tty_struct *tty, |
| 207 | struct usb_serial_port *port, const unsigned char *buf, int count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | { |
| 209 | struct usb_serial *serial = port->serial; |
| 210 | struct cyberjack_private *priv = usb_get_serial_port_data(port); |
| 211 | unsigned long flags; |
| 212 | int result; |
| 213 | int wrexpected; |
| 214 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 215 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | |
| 217 | if (count == 0) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 218 | dbg("%s - write request of 0 bytes", __func__); |
Alan Cox | a5b6f60 | 2008-04-08 17:16:06 +0100 | [diff] [blame] | 219 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | } |
| 221 | |
Peter Zijlstra | e81ee63 | 2006-09-25 12:51:41 +0200 | [diff] [blame] | 222 | spin_lock_bh(&port->lock); |
Greg Kroah-Hartman | 507ca9b | 2005-04-23 12:49:16 -0700 | [diff] [blame] | 223 | if (port->write_urb_busy) { |
Peter Zijlstra | e81ee63 | 2006-09-25 12:51:41 +0200 | [diff] [blame] | 224 | spin_unlock_bh(&port->lock); |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 225 | dbg("%s - already writing", __func__); |
Greg Kroah-Hartman | 507ca9b | 2005-04-23 12:49:16 -0700 | [diff] [blame] | 226 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | } |
Greg Kroah-Hartman | 507ca9b | 2005-04-23 12:49:16 -0700 | [diff] [blame] | 228 | port->write_urb_busy = 1; |
Peter Zijlstra | e81ee63 | 2006-09-25 12:51:41 +0200 | [diff] [blame] | 229 | spin_unlock_bh(&port->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
| 231 | spin_lock_irqsave(&priv->lock, flags); |
| 232 | |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 233 | if (count+priv->wrfilled > sizeof(priv->wrbuf)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | /* To much data for buffer. Reset buffer. */ |
Alan Cox | a5b6f60 | 2008-04-08 17:16:06 +0100 | [diff] [blame] | 235 | priv->wrfilled = 0; |
Greg Kroah-Hartman | 507ca9b | 2005-04-23 12:49:16 -0700 | [diff] [blame] | 236 | port->write_urb_busy = 0; |
Alan Cox | a5b6f60 | 2008-04-08 17:16:06 +0100 | [diff] [blame] | 237 | spin_unlock_irqrestore(&priv->lock, flags); |
| 238 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | /* Copy data */ |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 242 | memcpy(priv->wrbuf + priv->wrfilled, buf, count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 244 | usb_serial_debug_data(debug, &port->dev, __func__, count, |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 245 | priv->wrbuf + priv->wrfilled); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | priv->wrfilled += count; |
| 247 | |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 248 | if (priv->wrfilled >= 3) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | wrexpected = ((int)priv->wrbuf[2]<<8)+priv->wrbuf[1]+3; |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 250 | dbg("%s - expected data: %d", __func__, wrexpected); |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 251 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | wrexpected = sizeof(priv->wrbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 254 | if (priv->wrfilled >= wrexpected) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | /* We have enough data to begin transmission */ |
| 256 | int length; |
| 257 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 258 | dbg("%s - transmitting data (frame 1)", __func__); |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 259 | length = (wrexpected > port->bulk_out_size) ? |
| 260 | port->bulk_out_size : wrexpected; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 262 | memcpy(port->write_urb->transfer_buffer, priv->wrbuf, length); |
| 263 | priv->wrsent = length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | |
| 265 | /* set up our urb */ |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 266 | usb_fill_bulk_urb(port->write_urb, serial->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | usb_sndbulkpipe(serial->dev, port->bulk_out_endpointAddress), |
| 268 | port->write_urb->transfer_buffer, length, |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 269 | ((serial->type->write_bulk_callback) ? |
| 270 | serial->type->write_bulk_callback : |
| 271 | cyberjack_write_bulk_callback), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | port); |
| 273 | |
| 274 | /* send the data out the bulk port */ |
| 275 | result = usb_submit_urb(port->write_urb, GFP_ATOMIC); |
| 276 | if (result) { |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 277 | err("%s - failed submitting write urb, error %d", |
| 278 | __func__, result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | /* Throw away data. No better idea what to do with it. */ |
Alan Cox | a5b6f60 | 2008-04-08 17:16:06 +0100 | [diff] [blame] | 280 | priv->wrfilled = 0; |
| 281 | priv->wrsent = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | spin_unlock_irqrestore(&priv->lock, flags); |
Greg Kroah-Hartman | 507ca9b | 2005-04-23 12:49:16 -0700 | [diff] [blame] | 283 | port->write_urb_busy = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | return 0; |
| 285 | } |
| 286 | |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 287 | dbg("%s - priv->wrsent=%d", __func__, priv->wrsent); |
| 288 | dbg("%s - priv->wrfilled=%d", __func__, priv->wrfilled); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 290 | if (priv->wrsent >= priv->wrfilled) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 291 | dbg("%s - buffer cleaned", __func__); |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 292 | memset(priv->wrbuf, 0, sizeof(priv->wrbuf)); |
Alan Cox | a5b6f60 | 2008-04-08 17:16:06 +0100 | [diff] [blame] | 293 | priv->wrfilled = 0; |
| 294 | priv->wrsent = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | } |
| 296 | } |
| 297 | |
| 298 | spin_unlock_irqrestore(&priv->lock, flags); |
| 299 | |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 300 | return count; |
| 301 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 303 | static int cyberjack_write_room(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | { |
Alan Cox | a5b6f60 | 2008-04-08 17:16:06 +0100 | [diff] [blame] | 305 | /* FIXME: .... */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | return CYBERJACK_LOCAL_BUF_SIZE; |
| 307 | } |
| 308 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 309 | static void cyberjack_read_int_callback(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | { |
Ming Lei | cdc9779 | 2008-02-24 18:41:47 +0800 | [diff] [blame] | 311 | struct usb_serial_port *port = urb->context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | struct cyberjack_private *priv = usb_get_serial_port_data(port); |
| 313 | unsigned char *data = urb->transfer_buffer; |
Greg Kroah-Hartman | 7dcc85c | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 314 | int status = urb->status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | int result; |
| 316 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 317 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | |
| 319 | /* the urb might have been killed. */ |
Greg Kroah-Hartman | 7dcc85c | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 320 | if (status) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | return; |
| 322 | |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 323 | usb_serial_debug_data(debug, &port->dev, __func__, |
| 324 | urb->actual_length, data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | |
| 326 | /* React only to interrupts signaling a bulk_in transfer */ |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 327 | if (urb->actual_length == 4 && data[0] == 0x01) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | short old_rdtodo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | |
| 330 | /* This is a announcement of coming bulk_ins. */ |
| 331 | unsigned short size = ((unsigned short)data[3]<<8)+data[2]+3; |
| 332 | |
| 333 | spin_lock(&priv->lock); |
| 334 | |
| 335 | old_rdtodo = priv->rdtodo; |
| 336 | |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 337 | if (old_rdtodo + size < old_rdtodo) { |
| 338 | dbg("To many bulk_in urbs to do."); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | spin_unlock(&priv->lock); |
| 340 | goto resubmit; |
| 341 | } |
| 342 | |
| 343 | /* "+=" is probably more fault tollerant than "=" */ |
| 344 | priv->rdtodo += size; |
| 345 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 346 | dbg("%s - rdtodo: %d", __func__, priv->rdtodo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | |
| 348 | spin_unlock(&priv->lock); |
| 349 | |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 350 | if (!old_rdtodo) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | port->read_urb->dev = port->serial->dev; |
| 352 | result = usb_submit_urb(port->read_urb, GFP_ATOMIC); |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 353 | if (result) |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 354 | err("%s - failed resubmitting read urb, error %d", __func__, result); |
| 355 | dbg("%s - usb_submit_urb(read urb)", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | } |
| 357 | } |
| 358 | |
| 359 | resubmit: |
| 360 | port->interrupt_in_urb->dev = port->serial->dev; |
| 361 | result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC); |
| 362 | if (result) |
| 363 | err(" usb_submit_urb(read int) failed"); |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 364 | dbg("%s - usb_submit_urb(int urb)", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | } |
| 366 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 367 | static void cyberjack_read_bulk_callback(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | { |
Ming Lei | cdc9779 | 2008-02-24 18:41:47 +0800 | [diff] [blame] | 369 | struct usb_serial_port *port = urb->context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | struct cyberjack_private *priv = usb_get_serial_port_data(port); |
| 371 | struct tty_struct *tty; |
| 372 | unsigned char *data = urb->transfer_buffer; |
| 373 | short todo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | int result; |
Greg Kroah-Hartman | 7dcc85c | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 375 | int status = urb->status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 377 | dbg("%s - port %d", __func__, port->number); |
Greg Kroah-Hartman | 7dcc85c | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 378 | |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 379 | usb_serial_debug_data(debug, &port->dev, __func__, |
| 380 | urb->actual_length, data); |
Greg Kroah-Hartman | 7dcc85c | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 381 | if (status) { |
| 382 | dbg("%s - nonzero read bulk status received: %d", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 383 | __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | return; |
| 385 | } |
| 386 | |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame^] | 387 | tty = tty_port_tty_get(&port->port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | if (!tty) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 389 | dbg("%s - ignoring since device not open\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | return; |
| 391 | } |
| 392 | if (urb->actual_length) { |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 393 | tty_buffer_request_room(tty, urb->actual_length); |
| 394 | tty_insert_flip_string(tty, data, urb->actual_length); |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 395 | tty_flip_buffer_push(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | } |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame^] | 397 | tty_kref_put(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | |
| 399 | spin_lock(&priv->lock); |
| 400 | |
| 401 | /* Reduce urbs to do by one. */ |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 402 | priv->rdtodo -= urb->actual_length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | /* Just to be sure */ |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 404 | if (priv->rdtodo < 0) |
| 405 | priv->rdtodo = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | todo = priv->rdtodo; |
| 407 | |
| 408 | spin_unlock(&priv->lock); |
| 409 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 410 | dbg("%s - rdtodo: %d", __func__, todo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | |
| 412 | /* Continue to read if we have still urbs to do. */ |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 413 | if (todo /* || (urb->actual_length==port->bulk_in_endpointAddress)*/) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | port->read_urb->dev = port->serial->dev; |
| 415 | result = usb_submit_urb(port->read_urb, GFP_ATOMIC); |
| 416 | if (result) |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 417 | err("%s - failed resubmitting read urb, error %d", |
| 418 | __func__, result); |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 419 | dbg("%s - usb_submit_urb(read urb)", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | } |
| 421 | } |
| 422 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 423 | static void cyberjack_write_bulk_callback(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | { |
Ming Lei | cdc9779 | 2008-02-24 18:41:47 +0800 | [diff] [blame] | 425 | struct usb_serial_port *port = urb->context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | struct cyberjack_private *priv = usb_get_serial_port_data(port); |
Greg Kroah-Hartman | 7dcc85c | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 427 | int status = urb->status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 429 | dbg("%s - port %d", __func__, port->number); |
Greg Kroah-Hartman | 507ca9b | 2005-04-23 12:49:16 -0700 | [diff] [blame] | 430 | |
| 431 | port->write_urb_busy = 0; |
Greg Kroah-Hartman | 7dcc85c | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 432 | if (status) { |
| 433 | dbg("%s - nonzero write bulk status received: %d", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 434 | __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | return; |
| 436 | } |
| 437 | |
| 438 | spin_lock(&priv->lock); |
| 439 | |
| 440 | /* only do something if we have more data to send */ |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 441 | if (priv->wrfilled) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | int length, blksize, result; |
| 443 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 444 | dbg("%s - transmitting data (frame n)", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | |
| 446 | length = ((priv->wrfilled - priv->wrsent) > port->bulk_out_size) ? |
| 447 | port->bulk_out_size : (priv->wrfilled - priv->wrsent); |
| 448 | |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 449 | memcpy(port->write_urb->transfer_buffer, |
| 450 | priv->wrbuf + priv->wrsent, length); |
| 451 | priv->wrsent += length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | |
| 453 | /* set up our urb */ |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 454 | usb_fill_bulk_urb(port->write_urb, port->serial->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | usb_sndbulkpipe(port->serial->dev, port->bulk_out_endpointAddress), |
| 456 | port->write_urb->transfer_buffer, length, |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 457 | ((port->serial->type->write_bulk_callback) ? |
| 458 | port->serial->type->write_bulk_callback : |
| 459 | cyberjack_write_bulk_callback), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | port); |
| 461 | |
| 462 | /* send the data out the bulk port */ |
| 463 | result = usb_submit_urb(port->write_urb, GFP_ATOMIC); |
| 464 | if (result) { |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 465 | err("%s - failed submitting write urb, error %d", |
| 466 | __func__, result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | /* Throw away data. No better idea what to do with it. */ |
Alan Cox | a5b6f60 | 2008-04-08 17:16:06 +0100 | [diff] [blame] | 468 | priv->wrfilled = 0; |
| 469 | priv->wrsent = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | goto exit; |
| 471 | } |
| 472 | |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 473 | dbg("%s - priv->wrsent=%d", __func__, priv->wrsent); |
| 474 | dbg("%s - priv->wrfilled=%d", __func__, priv->wrfilled); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | |
| 476 | blksize = ((int)priv->wrbuf[2]<<8)+priv->wrbuf[1]+3; |
| 477 | |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 478 | if (priv->wrsent >= priv->wrfilled || |
| 479 | priv->wrsent >= blksize) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 480 | dbg("%s - buffer cleaned", __func__); |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 481 | memset(priv->wrbuf, 0, sizeof(priv->wrbuf)); |
Alan Cox | a5b6f60 | 2008-04-08 17:16:06 +0100 | [diff] [blame] | 482 | priv->wrfilled = 0; |
| 483 | priv->wrsent = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | } |
| 485 | } |
| 486 | |
| 487 | exit: |
| 488 | spin_unlock(&priv->lock); |
Pete Zaitcev | cf2c748 | 2006-05-22 21:58:49 -0700 | [diff] [blame] | 489 | usb_serial_port_softint(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | } |
| 491 | |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 492 | static int __init cyberjack_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | { |
| 494 | int retval; |
| 495 | retval = usb_serial_register(&cyberjack_device); |
| 496 | if (retval) |
| 497 | goto failed_usb_serial_register; |
| 498 | retval = usb_register(&cyberjack_driver); |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 499 | if (retval) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | goto failed_usb_register; |
| 501 | |
| 502 | info(DRIVER_VERSION " " DRIVER_AUTHOR); |
| 503 | info(DRIVER_DESC); |
| 504 | |
| 505 | return 0; |
| 506 | failed_usb_register: |
| 507 | usb_serial_deregister(&cyberjack_device); |
| 508 | failed_usb_serial_register: |
| 509 | return retval; |
| 510 | } |
| 511 | |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 512 | static void __exit cyberjack_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | { |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 514 | usb_deregister(&cyberjack_driver); |
| 515 | usb_serial_deregister(&cyberjack_device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | } |
| 517 | |
| 518 | module_init(cyberjack_init); |
| 519 | module_exit(cyberjack_exit); |
| 520 | |
Alan Cox | b9c52f1 | 2008-07-22 11:10:27 +0100 | [diff] [blame] | 521 | MODULE_AUTHOR(DRIVER_AUTHOR); |
| 522 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 523 | MODULE_VERSION(DRIVER_VERSION); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | MODULE_LICENSE("GPL"); |
| 525 | |
| 526 | module_param(debug, bool, S_IRUGO | S_IWUSR); |
| 527 | MODULE_PARM_DESC(debug, "Debug enabled or not"); |