blob: a2f72308050bf8506d10e06624e0bc6469c13dac [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * KOBIL USB Smart Card Terminal Driver
3 *
Alan Coxdee0a7c2008-07-22 11:14:10 +01004 * Copyright (C) 2002 KOBIL Systems GmbH
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Author: Thomas Wahrenbruch
6 *
7 * Contact: linuxusb@kobil.de
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 * Supported readers: USB TWIN, KAAN Standard Plus and SecOVID Reader Plus
22 * (Adapter K), B1 Professional and KAAN Professional (Adapter B)
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 */
24
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/kernel.h>
27#include <linux/errno.h>
28#include <linux/init.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>
Alan Coxdee0a7c2008-07-22 11:14:10 +010035#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070037#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/ioctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "kobil_sct.h"
40
Felipe Balbi3297f862012-01-24 10:18:10 +020041static bool debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43/* Version Information */
44#define DRIVER_VERSION "21/05/2004"
45#define DRIVER_AUTHOR "KOBIL Systems GmbH - http://www.kobil.com"
46#define DRIVER_DESC "KOBIL USB Smart Card Terminal Driver (experimental)"
47
48#define KOBIL_VENDOR_ID 0x0D46
49#define KOBIL_ADAPTER_B_PRODUCT_ID 0x2011
50#define KOBIL_ADAPTER_K_PRODUCT_ID 0x2012
51#define KOBIL_USBTWIN_PRODUCT_ID 0x0078
52#define KOBIL_KAAN_SIM_PRODUCT_ID 0x0081
53
54#define KOBIL_TIMEOUT 500
55#define KOBIL_BUF_LENGTH 300
56
57
58/* Function prototypes */
Alan Coxdee0a7c2008-07-22 11:14:10 +010059static int kobil_startup(struct usb_serial *serial);
Alan Sternf9c99bb2009-06-02 11:53:55 -040060static void kobil_release(struct usb_serial *serial);
Alan Coxa509a7e2009-09-19 13:13:26 -070061static int kobil_open(struct tty_struct *tty, struct usb_serial_port *port);
Alan Cox335f8512009-06-11 12:26:29 +010062static void kobil_close(struct usb_serial_port *port);
Alan Coxdee0a7c2008-07-22 11:14:10 +010063static int kobil_write(struct tty_struct *tty, struct usb_serial_port *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 const unsigned char *buf, int count);
Alan Cox95da3102008-07-22 11:09:07 +010065static int kobil_write_room(struct tty_struct *tty);
Alan Cox00a0d0d2011-02-14 16:27:06 +000066static int kobil_ioctl(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 unsigned int cmd, unsigned long arg);
Alan Cox60b33c12011-02-14 16:26:14 +000068static int kobil_tiocmget(struct tty_struct *tty);
Alan Cox20b9d172011-02-14 16:26:50 +000069static int kobil_tiocmset(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 unsigned int set, unsigned int clear);
Alan Coxdee0a7c2008-07-22 11:14:10 +010071static void kobil_read_int_callback(struct urb *urb);
72static void kobil_write_callback(struct urb *purb);
73static void kobil_set_termios(struct tty_struct *tty,
Alan Cox95da3102008-07-22 11:09:07 +010074 struct usb_serial_port *port, struct ktermios *old);
Alan Coxfe1ae7f2009-09-19 13:13:33 -070075static void kobil_init_termios(struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Németh Márton7d40d7e2010-01-10 15:34:24 +010077static const struct usb_device_id id_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_ADAPTER_B_PRODUCT_ID) },
79 { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_ADAPTER_K_PRODUCT_ID) },
80 { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_USBTWIN_PRODUCT_ID) },
81 { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_KAAN_SIM_PRODUCT_ID) },
82 { } /* Terminating entry */
83};
Alan Coxdee0a7c2008-07-22 11:14:10 +010084MODULE_DEVICE_TABLE(usb, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -070086static struct usb_serial_driver kobil_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070087 .driver = {
88 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070089 .name = "kobil",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070090 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070091 .description = "KOBIL USB smart card terminal",
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 .id_table = id_table,
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 .num_ports = 1,
94 .attach = kobil_startup,
Alan Sternf9c99bb2009-06-02 11:53:55 -040095 .release = kobil_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 .ioctl = kobil_ioctl,
Alan Cox94d0f7e2007-08-22 23:09:16 +010097 .set_termios = kobil_set_termios,
Alan Coxfe1ae7f2009-09-19 13:13:33 -070098 .init_termios = kobil_init_termios,
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 .tiocmget = kobil_tiocmget,
100 .tiocmset = kobil_tiocmset,
101 .open = kobil_open,
102 .close = kobil_close,
103 .write = kobil_write,
104 .write_room = kobil_write_room,
105 .read_int_callback = kobil_read_int_callback,
106};
107
Alan Stern4d2a7af2012-02-23 14:57:09 -0500108static struct usb_serial_driver * const serial_drivers[] = {
109 &kobil_device, NULL
110};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112struct kobil_private {
113 int write_int_endpoint_address;
114 int read_int_endpoint_address;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100115 unsigned char buf[KOBIL_BUF_LENGTH]; /* buffer for the APDU to send */
116 int filled; /* index of the last char in buf */
117 int cur_pos; /* index of the next char to send in buf */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 __u16 device_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119};
120
121
Alan Coxdee0a7c2008-07-22 11:14:10 +0100122static int kobil_startup(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
124 int i;
125 struct kobil_private *priv;
126 struct usb_device *pdev;
127 struct usb_host_config *actconfig;
128 struct usb_interface *interface;
129 struct usb_host_interface *altsetting;
130 struct usb_host_endpoint *endpoint;
131
132 priv = kmalloc(sizeof(struct kobil_private), GFP_KERNEL);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100133 if (!priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136 priv->filled = 0;
137 priv->cur_pos = 0;
138 priv->device_type = le16_to_cpu(serial->dev->descriptor.idProduct);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Alan Coxdee0a7c2008-07-22 11:14:10 +0100140 switch (priv->device_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 case KOBIL_ADAPTER_B_PRODUCT_ID:
142 printk(KERN_DEBUG "KOBIL B1 PRO / KAAN PRO detected\n");
143 break;
144 case KOBIL_ADAPTER_K_PRODUCT_ID:
Alan Coxdee0a7c2008-07-22 11:14:10 +0100145 printk(KERN_DEBUG
146 "KOBIL KAAN Standard Plus / SecOVID Reader Plus detected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 break;
148 case KOBIL_USBTWIN_PRODUCT_ID:
149 printk(KERN_DEBUG "KOBIL USBTWIN detected\n");
150 break;
151 case KOBIL_KAAN_SIM_PRODUCT_ID:
152 printk(KERN_DEBUG "KOBIL KAAN SIM detected\n");
153 break;
154 }
155 usb_set_serial_port_data(serial->port[0], priv);
156
Alan Coxdee0a7c2008-07-22 11:14:10 +0100157 /* search for the necessary endpoints */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 pdev = serial->dev;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100159 actconfig = pdev->actconfig;
160 interface = actconfig->interface[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 altsetting = interface->cur_altsetting;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100162 endpoint = altsetting->endpoint;
163
164 for (i = 0; i < altsetting->desc.bNumEndpoints; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 endpoint = &altsetting->endpoint[i];
Luiz Fernando N. Capitulino4f1f1dd2006-10-26 13:02:53 -0300166 if (usb_endpoint_is_int_out(&endpoint->desc)) {
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700167 dev_dbg(&serial->dev->dev,
168 "%s Found interrupt out endpoint. Address: %d\n",
Alan Coxdee0a7c2008-07-22 11:14:10 +0100169 __func__, endpoint->desc.bEndpointAddress);
170 priv->write_int_endpoint_address =
171 endpoint->desc.bEndpointAddress;
172 }
Luiz Fernando N. Capitulino4f1f1dd2006-10-26 13:02:53 -0300173 if (usb_endpoint_is_int_in(&endpoint->desc)) {
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700174 dev_dbg(&serial->dev->dev,
175 "%s Found interrupt in endpoint. Address: %d\n",
Alan Coxdee0a7c2008-07-22 11:14:10 +0100176 __func__, endpoint->desc.bEndpointAddress);
177 priv->read_int_endpoint_address =
178 endpoint->desc.bEndpointAddress;
179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 }
181 return 0;
182}
183
184
Alan Sternf9c99bb2009-06-02 11:53:55 -0400185static void kobil_release(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
187 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Alan Sternf9c99bb2009-06-02 11:53:55 -0400189 for (i = 0; i < serial->num_ports; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 kfree(usb_get_serial_port_data(serial->port[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191}
192
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700193static void kobil_init_termios(struct tty_struct *tty)
194{
195 /* Default to echo off and other sane device settings */
196 tty->termios->c_lflag = 0;
197 tty->termios->c_lflag &= ~(ISIG | ICANON | ECHO | IEXTEN | XCASE);
198 tty->termios->c_iflag = IGNBRK | IGNPAR | IXOFF;
199 /* do NOT translate CR to CR-NL (0x0A -> 0x0A 0x0D) */
200 tty->termios->c_oflag &= ~ONLCR;
201}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Alan Coxa509a7e2009-09-19 13:13:26 -0700203static int kobil_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700205 struct device *dev = &port->dev;
Alan Cox94d0f7e2007-08-22 23:09:16 +0100206 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 struct kobil_private *priv;
208 unsigned char *transfer_buffer;
209 int transfer_buffer_length = 8;
210 int write_urb_transfer_buffer_length = 8;
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Alan Coxdee0a7c2008-07-22 11:14:10 +0100214 /* allocate memory for transfer buffer */
215 transfer_buffer = kzalloc(transfer_buffer_length, GFP_KERNEL);
216 if (!transfer_buffer)
217 return -ENOMEM;
218
219 /* allocate write_urb */
220 if (!port->write_urb) {
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700221 dev_dbg(dev, "%s - Allocating port->write_urb\n", __func__);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100222 port->write_urb = usb_alloc_urb(0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if (!port->write_urb) {
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700224 dev_dbg(dev, "%s - usb_alloc_urb failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 kfree(transfer_buffer);
226 return -ENOMEM;
227 }
228 }
229
Alan Coxdee0a7c2008-07-22 11:14:10 +0100230 /* allocate memory for write_urb transfer buffer */
231 port->write_urb->transfer_buffer =
232 kmalloc(write_urb_transfer_buffer_length, GFP_KERNEL);
233 if (!port->write_urb->transfer_buffer) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 kfree(transfer_buffer);
235 usb_free_urb(port->write_urb);
236 port->write_urb = NULL;
237 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 }
Alan Coxdee0a7c2008-07-22 11:14:10 +0100239
240 /* get hardware version */
241 result = usb_control_msg(port->serial->dev,
242 usb_rcvctrlpipe(port->serial->dev, 0),
243 SUSBCRequest_GetMisc,
244 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_IN,
245 SUSBCR_MSC_GetHWVersion,
246 0,
247 transfer_buffer,
248 transfer_buffer_length,
249 KOBIL_TIMEOUT
250 );
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700251 dev_dbg(dev, "%s - Send get_HW_version URB returns: %i\n", __func__, result);
252 dev_dbg(dev, "Harware version: %i.%i.%i\n", transfer_buffer[0],
253 transfer_buffer[1], transfer_buffer[2]);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100254
255 /* get firmware version */
256 result = usb_control_msg(port->serial->dev,
257 usb_rcvctrlpipe(port->serial->dev, 0),
258 SUSBCRequest_GetMisc,
259 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_IN,
260 SUSBCR_MSC_GetFWVersion,
261 0,
262 transfer_buffer,
263 transfer_buffer_length,
264 KOBIL_TIMEOUT
265 );
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700266 dev_dbg(dev, "%s - Send get_FW_version URB returns: %i\n", __func__, result);
267 dev_dbg(dev, "Firmware version: %i.%i.%i\n", transfer_buffer[0],
268 transfer_buffer[1], transfer_buffer[2]);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100269
270 if (priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID ||
271 priv->device_type == KOBIL_ADAPTER_K_PRODUCT_ID) {
272 /* Setting Baudrate, Parity and Stopbits */
273 result = usb_control_msg(port->serial->dev,
274 usb_rcvctrlpipe(port->serial->dev, 0),
275 SUSBCRequest_SetBaudRateParityAndStopBits,
276 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
277 SUSBCR_SBR_9600 | SUSBCR_SPASB_EvenParity |
278 SUSBCR_SPASB_1StopBit,
279 0,
280 transfer_buffer,
281 0,
282 KOBIL_TIMEOUT
283 );
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700284 dev_dbg(dev, "%s - Send set_baudrate URB returns: %i\n", __func__, result);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100285
286 /* reset all queues */
287 result = usb_control_msg(port->serial->dev,
288 usb_rcvctrlpipe(port->serial->dev, 0),
289 SUSBCRequest_Misc,
290 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
291 SUSBCR_MSC_ResetAllQueues,
292 0,
293 transfer_buffer,
294 0,
295 KOBIL_TIMEOUT
296 );
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700297 dev_dbg(dev, "%s - Send reset_all_queues URB returns: %i\n", __func__, result);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100298 }
299 if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID ||
300 priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) {
Alan Coxdee0a7c2008-07-22 11:14:10 +0100302 /* start reading (Adapter B 'cause PNP string) */
303 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700304 dev_dbg(dev, "%s - Send read URB returns: %i\n", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 }
306
307 kfree(transfer_buffer);
308 return 0;
309}
310
311
Alan Cox335f8512009-06-11 12:26:29 +0100312static void kobil_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Alan Cox335f8512009-06-11 12:26:29 +0100314 /* FIXME: Add rts/dtr methods */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 if (port->write_urb) {
Johan Hovoldc0f631d2010-05-15 17:53:43 +0200316 usb_poison_urb(port->write_urb);
317 kfree(port->write_urb->transfer_buffer);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100318 usb_free_urb(port->write_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 port->write_urb = NULL;
320 }
Mariusz Kozlowski5505c222006-11-08 15:36:38 +0100321 usb_kill_urb(port->interrupt_in_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323
324
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700325static void kobil_read_int_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 int result;
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700328 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 struct tty_struct *tty;
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700330 unsigned char *data = urb->transfer_buffer;
331 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700333 if (status) {
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700334 dev_dbg(&port->dev, "%s - Read int status not zero: %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 return;
336 }
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700337
Alan Cox4a90f092008-10-13 10:39:46 +0100338 tty = tty_port_tty_get(&port->port);
Jiri Slaby6960f402011-02-28 10:34:06 +0100339 if (tty && urb->actual_length) {
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700340
Alan Coxdee0a7c2008-07-22 11:14:10 +0100341 /* BEGIN DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 /*
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700343 char *dbg_data;
344
Alan Coxdee0a7c2008-07-22 11:14:10 +0100345 dbg_data = kzalloc((3 * purb->actual_length + 10)
346 * sizeof(char), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 if (! dbg_data) {
Alan Coxdee0a7c2008-07-22 11:14:10 +0100348 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 }
Alan Coxdee0a7c2008-07-22 11:14:10 +0100350 for (i = 0; i < purb->actual_length; i++) {
351 sprintf(dbg_data +3*i, "%02X ", data[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 }
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700353 dev_dbg(&port->dev, " <-- %s\n", dbg_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 kfree(dbg_data);
355 */
Alan Coxdee0a7c2008-07-22 11:14:10 +0100356 /* END DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700358 tty_insert_flip_string(tty, data, urb->actual_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 tty_flip_buffer_push(tty);
360 }
Alan Cox4a90f092008-10-13 10:39:46 +0100361 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700363 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700364 dev_dbg(&port->dev, "%s - Send read URB returns: %i\n", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365}
366
367
Alan Coxdee0a7c2008-07-22 11:14:10 +0100368static void kobil_write_callback(struct urb *purb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
370}
371
372
Alan Coxdee0a7c2008-07-22 11:14:10 +0100373static int kobil_write(struct tty_struct *tty, struct usb_serial_port *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 const unsigned char *buf, int count)
375{
376 int length = 0;
377 int result = 0;
378 int todo = 0;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100379 struct kobil_private *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381 if (count == 0) {
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700382 dev_dbg(&port->dev, "%s - write request of 0 bytes\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 return 0;
384 }
385
386 priv = usb_get_serial_port_data(port);
387
388 if (count > (KOBIL_BUF_LENGTH - priv->filled)) {
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700389 dev_dbg(&port->dev, "%s - Error: write request bigger than buffer size\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 return -ENOMEM;
391 }
392
Alan Coxdee0a7c2008-07-22 11:14:10 +0100393 /* Copy data to buffer */
394 memcpy(priv->buf + priv->filled, buf, count);
395 usb_serial_debug_data(debug, &port->dev, __func__, count,
396 priv->buf + priv->filled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 priv->filled = priv->filled + count;
398
Alan Coxdee0a7c2008-07-22 11:14:10 +0100399 /* only send complete block. TWIN, KAAN SIM and adapter K
400 use the same protocol. */
401 if (((priv->device_type != KOBIL_ADAPTER_B_PRODUCT_ID) && (priv->filled > 2) && (priv->filled >= (priv->buf[1] + 3))) ||
402 ((priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID) && (priv->filled > 3) && (priv->filled >= (priv->buf[2] + 4)))) {
403 /* stop reading (except TWIN and KAAN SIM) */
404 if ((priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID)
405 || (priv->device_type == KOBIL_ADAPTER_K_PRODUCT_ID))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 usb_kill_urb(port->interrupt_in_urb);
407
408 todo = priv->filled - priv->cur_pos;
409
Alan Coxdee0a7c2008-07-22 11:14:10 +0100410 while (todo > 0) {
411 /* max 8 byte in one urb (endpoint size) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 length = (todo < 8) ? todo : 8;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100413 /* copy data to transfer buffer */
414 memcpy(port->write_urb->transfer_buffer,
415 priv->buf + priv->cur_pos, length);
416 usb_fill_int_urb(port->write_urb,
417 port->serial->dev,
418 usb_sndintpipe(port->serial->dev,
419 priv->write_int_endpoint_address),
420 port->write_urb->transfer_buffer,
421 length,
422 kobil_write_callback,
423 port,
424 8
425 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 priv->cur_pos = priv->cur_pos + length;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100428 result = usb_submit_urb(port->write_urb, GFP_NOIO);
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700429 dev_dbg(&port->dev, "%s - Send write URB returns: %i\n", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 todo = priv->filled - priv->cur_pos;
431
Alan Coxdee0a7c2008-07-22 11:14:10 +0100432 if (todo > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 msleep(24);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 priv->filled = 0;
437 priv->cur_pos = 0;
438
Alan Coxdee0a7c2008-07-22 11:14:10 +0100439 /* start reading (except TWIN and KAAN SIM) */
440 if (priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID ||
441 priv->device_type == KOBIL_ADAPTER_K_PRODUCT_ID) {
Alan Coxdee0a7c2008-07-22 11:14:10 +0100442 result = usb_submit_urb(port->interrupt_in_urb,
443 GFP_NOIO);
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700444 dev_dbg(&port->dev, "%s - Send read URB returns: %i\n", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 }
446 }
447 return count;
448}
449
450
Alan Coxdee0a7c2008-07-22 11:14:10 +0100451static int kobil_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
Alan Cox95da3102008-07-22 11:09:07 +0100453 /* FIXME */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 return 8;
455}
456
457
Alan Cox60b33c12011-02-14 16:26:14 +0000458static int kobil_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
Alan Cox95da3102008-07-22 11:09:07 +0100460 struct usb_serial_port *port = tty->driver_data;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100461 struct kobil_private *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 int result;
463 unsigned char *transfer_buffer;
464 int transfer_buffer_length = 8;
465
466 priv = usb_get_serial_port_data(port);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100467 if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID
468 || priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) {
469 /* This device doesn't support ioctl calls */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 return -EINVAL;
471 }
472
Alan Coxdee0a7c2008-07-22 11:14:10 +0100473 /* allocate memory for transfer buffer */
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100474 transfer_buffer = kzalloc(transfer_buffer_length, GFP_KERNEL);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100475 if (!transfer_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Alan Coxdee0a7c2008-07-22 11:14:10 +0100478 result = usb_control_msg(port->serial->dev,
479 usb_rcvctrlpipe(port->serial->dev, 0),
480 SUSBCRequest_GetStatusLineState,
481 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_IN,
482 0,
483 0,
484 transfer_buffer,
485 transfer_buffer_length,
486 KOBIL_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700488 dev_dbg(&port->dev, "%s - Send get_status_line_state URB returns: %i. Statusline: %02x\n",
489 __func__, result, transfer_buffer[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Alan Coxa40d8542008-02-20 21:40:34 +0000491 result = 0;
492 if ((transfer_buffer[0] & SUSBCR_GSL_DSR) != 0)
493 result = TIOCM_DSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 kfree(transfer_buffer);
Alan Coxa40d8542008-02-20 21:40:34 +0000495 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
497
Alan Cox20b9d172011-02-14 16:26:50 +0000498static int kobil_tiocmset(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 unsigned int set, unsigned int clear)
500{
Alan Cox95da3102008-07-22 11:09:07 +0100501 struct usb_serial_port *port = tty->driver_data;
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700502 struct device *dev = &port->dev;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100503 struct kobil_private *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 int result;
505 int dtr = 0;
506 int rts = 0;
507 unsigned char *transfer_buffer;
508 int transfer_buffer_length = 8;
509
Alan Coxa40d8542008-02-20 21:40:34 +0000510 /* FIXME: locking ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 priv = usb_get_serial_port_data(port);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100512 if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID
513 || priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) {
514 /* This device doesn't support ioctl calls */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 return -EINVAL;
516 }
517
Alan Coxdee0a7c2008-07-22 11:14:10 +0100518 /* allocate memory for transfer buffer */
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100519 transfer_buffer = kzalloc(transfer_buffer_length, GFP_KERNEL);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100520 if (!transfer_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523 if (set & TIOCM_RTS)
524 rts = 1;
525 if (set & TIOCM_DTR)
526 dtr = 1;
527 if (clear & TIOCM_RTS)
528 rts = 0;
529 if (clear & TIOCM_DTR)
530 dtr = 0;
531
532 if (priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID) {
533 if (dtr != 0)
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700534 dev_dbg(dev, "%s - Setting DTR\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 else
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700536 dev_dbg(dev, "%s - Clearing DTR\n", __func__);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100537 result = usb_control_msg(port->serial->dev,
538 usb_rcvctrlpipe(port->serial->dev, 0),
539 SUSBCRequest_SetStatusLinesOrQueues,
540 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
541 ((dtr != 0) ? SUSBCR_SSL_SETDTR : SUSBCR_SSL_CLRDTR),
542 0,
543 transfer_buffer,
544 0,
545 KOBIL_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 } else {
547 if (rts != 0)
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700548 dev_dbg(dev, "%s - Setting RTS\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 else
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700550 dev_dbg(dev, "%s - Clearing RTS\n", __func__);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100551 result = usb_control_msg(port->serial->dev,
552 usb_rcvctrlpipe(port->serial->dev, 0),
553 SUSBCRequest_SetStatusLinesOrQueues,
554 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
555 ((rts != 0) ? SUSBCR_SSL_SETRTS : SUSBCR_SSL_CLRRTS),
556 0,
557 transfer_buffer,
558 0,
559 KOBIL_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 }
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700561 dev_dbg(dev, "%s - Send set_status_line URB returns: %i\n", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 kfree(transfer_buffer);
563 return (result < 0) ? result : 0;
564}
565
Alan Cox95da3102008-07-22 11:09:07 +0100566static void kobil_set_termios(struct tty_struct *tty,
567 struct usb_serial_port *port, struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
Alan Coxdee0a7c2008-07-22 11:14:10 +0100569 struct kobil_private *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 int result;
571 unsigned short urb_val = 0;
Alan Cox95da3102008-07-22 11:09:07 +0100572 int c_cflag = tty->termios->c_cflag;
Alan Cox94d0f7e2007-08-22 23:09:16 +0100573 speed_t speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 priv = usb_get_serial_port_data(port);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100576 if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID ||
Alan Coxb31f6582008-07-22 11:14:22 +0100577 priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) {
Alan Coxdee0a7c2008-07-22 11:14:10 +0100578 /* This device doesn't support ioctl calls */
Alan Coxb31f6582008-07-22 11:14:22 +0100579 *tty->termios = *old;
Alan Cox94d0f7e2007-08-22 23:09:16 +0100580 return;
Alan Coxb31f6582008-07-22 11:14:22 +0100581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Alan Coxdee0a7c2008-07-22 11:14:10 +0100583 speed = tty_get_baud_rate(tty);
584 switch (speed) {
585 case 1200:
586 urb_val = SUSBCR_SBR_1200;
587 break;
588 default:
589 speed = 9600;
590 case 9600:
591 urb_val = SUSBCR_SBR_9600;
592 break;
Alan Cox94d0f7e2007-08-22 23:09:16 +0100593 }
Alan Coxdee0a7c2008-07-22 11:14:10 +0100594 urb_val |= (c_cflag & CSTOPB) ? SUSBCR_SPASB_2StopBits :
595 SUSBCR_SPASB_1StopBit;
Alan Cox94d0f7e2007-08-22 23:09:16 +0100596 if (c_cflag & PARENB) {
Johan Hovold96679f62009-12-28 23:01:58 +0100597 if (c_cflag & PARODD)
Alan Cox94d0f7e2007-08-22 23:09:16 +0100598 urb_val |= SUSBCR_SPASB_OddParity;
Johan Hovold96679f62009-12-28 23:01:58 +0100599 else
Alan Cox94d0f7e2007-08-22 23:09:16 +0100600 urb_val |= SUSBCR_SPASB_EvenParity;
Johan Hovold96679f62009-12-28 23:01:58 +0100601 } else
Alan Cox94d0f7e2007-08-22 23:09:16 +0100602 urb_val |= SUSBCR_SPASB_NoParity;
Alan Cox95da3102008-07-22 11:09:07 +0100603 tty->termios->c_cflag &= ~CMSPAR;
604 tty_encode_baud_rate(tty, speed, speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Alan Coxdee0a7c2008-07-22 11:14:10 +0100606 result = usb_control_msg(port->serial->dev,
607 usb_rcvctrlpipe(port->serial->dev, 0),
608 SUSBCRequest_SetBaudRateParityAndStopBits,
609 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
610 urb_val,
611 0,
Johan Hovold96679f62009-12-28 23:01:58 +0100612 NULL,
Alan Coxdee0a7c2008-07-22 11:14:10 +0100613 0,
614 KOBIL_TIMEOUT
Alan Cox94d0f7e2007-08-22 23:09:16 +0100615 );
Alan Cox94d0f7e2007-08-22 23:09:16 +0100616}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Alan Cox00a0d0d2011-02-14 16:27:06 +0000618static int kobil_ioctl(struct tty_struct *tty,
Alan Coxdee0a7c2008-07-22 11:14:10 +0100619 unsigned int cmd, unsigned long arg)
Alan Cox94d0f7e2007-08-22 23:09:16 +0100620{
Alan Cox95da3102008-07-22 11:09:07 +0100621 struct usb_serial_port *port = tty->driver_data;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100622 struct kobil_private *priv = usb_get_serial_port_data(port);
Alan Cox94d0f7e2007-08-22 23:09:16 +0100623 unsigned char *transfer_buffer;
624 int transfer_buffer_length = 8;
625 int result;
626
Alan Coxdee0a7c2008-07-22 11:14:10 +0100627 if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID ||
628 priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID)
629 /* This device doesn't support ioctl calls */
Alan Coxb31f6582008-07-22 11:14:22 +0100630 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Alan Cox94d0f7e2007-08-22 23:09:16 +0100632 switch (cmd) {
Alan Cox95da3102008-07-22 11:09:07 +0100633 case TCFLSH:
Robert P. J. Day5cbded52006-12-13 00:35:56 -0800634 transfer_buffer = kmalloc(transfer_buffer_length, GFP_KERNEL);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100635 if (!transfer_buffer)
636 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Alan Coxdee0a7c2008-07-22 11:14:10 +0100638 result = usb_control_msg(port->serial->dev,
639 usb_rcvctrlpipe(port->serial->dev, 0),
640 SUSBCRequest_Misc,
641 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
642 SUSBCR_MSC_ResetAllQueues,
643 0,
644 NULL, /* transfer_buffer, */
645 0,
646 KOBIL_TIMEOUT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 );
Alan Coxdee0a7c2008-07-22 11:14:10 +0100648
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700649 dev_dbg(&port->dev,
650 "%s - Send reset_all_queues (FLUSH) URB returns: %i", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 kfree(transfer_buffer);
Alan Cox95da3102008-07-22 11:09:07 +0100652 return (result < 0) ? -EIO: 0;
Alan Cox94d0f7e2007-08-22 23:09:16 +0100653 default:
654 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656}
657
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700658module_usb_serial_driver(serial_drivers, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Alan Coxdee0a7c2008-07-22 11:14:10 +0100660MODULE_AUTHOR(DRIVER_AUTHOR);
661MODULE_DESCRIPTION(DRIVER_DESC);
662MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664module_param(debug, bool, S_IRUGO | S_IWUSR);
665MODULE_PARM_DESC(debug, "Debug enabled or not");