blob: 135c8b4b26f74f277885af3f2fd2def295a3eda5 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#define DRIVER_AUTHOR "KOBIL Systems GmbH - http://www.kobil.com"
42#define DRIVER_DESC "KOBIL USB Smart Card Terminal Driver (experimental)"
43
44#define KOBIL_VENDOR_ID 0x0D46
45#define KOBIL_ADAPTER_B_PRODUCT_ID 0x2011
46#define KOBIL_ADAPTER_K_PRODUCT_ID 0x2012
47#define KOBIL_USBTWIN_PRODUCT_ID 0x0078
48#define KOBIL_KAAN_SIM_PRODUCT_ID 0x0081
49
50#define KOBIL_TIMEOUT 500
51#define KOBIL_BUF_LENGTH 300
52
53
54/* Function prototypes */
Johan Hovold95940a02012-10-17 13:35:02 +020055static int kobil_port_probe(struct usb_serial_port *probe);
56static int kobil_port_remove(struct usb_serial_port *probe);
Alan Coxa509a7e2009-09-19 13:13:26 -070057static int kobil_open(struct tty_struct *tty, struct usb_serial_port *port);
Alan Cox335f8512009-06-11 12:26:29 +010058static void kobil_close(struct usb_serial_port *port);
Alan Coxdee0a7c2008-07-22 11:14:10 +010059static int kobil_write(struct tty_struct *tty, struct usb_serial_port *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 const unsigned char *buf, int count);
Alan Cox95da3102008-07-22 11:09:07 +010061static int kobil_write_room(struct tty_struct *tty);
Alan Cox00a0d0d2011-02-14 16:27:06 +000062static int kobil_ioctl(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 unsigned int cmd, unsigned long arg);
Alan Cox60b33c12011-02-14 16:26:14 +000064static int kobil_tiocmget(struct tty_struct *tty);
Alan Cox20b9d172011-02-14 16:26:50 +000065static int kobil_tiocmset(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 unsigned int set, unsigned int clear);
Alan Coxdee0a7c2008-07-22 11:14:10 +010067static void kobil_read_int_callback(struct urb *urb);
68static void kobil_write_callback(struct urb *purb);
69static void kobil_set_termios(struct tty_struct *tty,
Alan Cox95da3102008-07-22 11:09:07 +010070 struct usb_serial_port *port, struct ktermios *old);
Alan Coxfe1ae7f2009-09-19 13:13:33 -070071static void kobil_init_termios(struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Németh Márton7d40d7e2010-01-10 15:34:24 +010073static const struct usb_device_id id_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_ADAPTER_B_PRODUCT_ID) },
75 { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_ADAPTER_K_PRODUCT_ID) },
76 { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_USBTWIN_PRODUCT_ID) },
77 { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_KAAN_SIM_PRODUCT_ID) },
78 { } /* Terminating entry */
79};
Alan Coxdee0a7c2008-07-22 11:14:10 +010080MODULE_DEVICE_TABLE(usb, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -070082static struct usb_serial_driver kobil_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070083 .driver = {
84 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070085 .name = "kobil",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070086 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070087 .description = "KOBIL USB smart card terminal",
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 .id_table = id_table,
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 .num_ports = 1,
Johan Hovold95940a02012-10-17 13:35:02 +020090 .port_probe = kobil_port_probe,
91 .port_remove = kobil_port_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 .ioctl = kobil_ioctl,
Alan Cox94d0f7e2007-08-22 23:09:16 +010093 .set_termios = kobil_set_termios,
Alan Coxfe1ae7f2009-09-19 13:13:33 -070094 .init_termios = kobil_init_termios,
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 .tiocmget = kobil_tiocmget,
96 .tiocmset = kobil_tiocmset,
97 .open = kobil_open,
98 .close = kobil_close,
99 .write = kobil_write,
100 .write_room = kobil_write_room,
101 .read_int_callback = kobil_read_int_callback,
102};
103
Alan Stern4d2a7af2012-02-23 14:57:09 -0500104static struct usb_serial_driver * const serial_drivers[] = {
105 &kobil_device, NULL
106};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108struct kobil_private {
109 int write_int_endpoint_address;
110 int read_int_endpoint_address;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100111 unsigned char buf[KOBIL_BUF_LENGTH]; /* buffer for the APDU to send */
112 int filled; /* index of the last char in buf */
113 int cur_pos; /* index of the next char to send in buf */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 __u16 device_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115};
116
117
Johan Hovold95940a02012-10-17 13:35:02 +0200118static int kobil_port_probe(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
120 int i;
Johan Hovold95940a02012-10-17 13:35:02 +0200121 struct usb_serial *serial = port->serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 struct kobil_private *priv;
123 struct usb_device *pdev;
124 struct usb_host_config *actconfig;
125 struct usb_interface *interface;
126 struct usb_host_interface *altsetting;
127 struct usb_host_endpoint *endpoint;
128
129 priv = kmalloc(sizeof(struct kobil_private), GFP_KERNEL);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100130 if (!priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 priv->filled = 0;
134 priv->cur_pos = 0;
135 priv->device_type = le16_to_cpu(serial->dev->descriptor.idProduct);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Alan Coxdee0a7c2008-07-22 11:14:10 +0100137 switch (priv->device_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 case KOBIL_ADAPTER_B_PRODUCT_ID:
Greg Kroah-Hartman6c27ad82012-09-18 17:03:31 +0100139 dev_dbg(&serial->dev->dev, "KOBIL B1 PRO / KAAN PRO detected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 break;
141 case KOBIL_ADAPTER_K_PRODUCT_ID:
Greg Kroah-Hartman6c27ad82012-09-18 17:03:31 +0100142 dev_dbg(&serial->dev->dev, "KOBIL KAAN Standard Plus / SecOVID Reader Plus detected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 break;
144 case KOBIL_USBTWIN_PRODUCT_ID:
Greg Kroah-Hartman6c27ad82012-09-18 17:03:31 +0100145 dev_dbg(&serial->dev->dev, "KOBIL USBTWIN detected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 break;
147 case KOBIL_KAAN_SIM_PRODUCT_ID:
Greg Kroah-Hartman6c27ad82012-09-18 17:03:31 +0100148 dev_dbg(&serial->dev->dev, "KOBIL KAAN SIM detected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 break;
150 }
Johan Hovold95940a02012-10-17 13:35:02 +0200151 usb_set_serial_port_data(port, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Alan Coxdee0a7c2008-07-22 11:14:10 +0100153 /* search for the necessary endpoints */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 pdev = serial->dev;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100155 actconfig = pdev->actconfig;
156 interface = actconfig->interface[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 altsetting = interface->cur_altsetting;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100158 endpoint = altsetting->endpoint;
159
160 for (i = 0; i < altsetting->desc.bNumEndpoints; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 endpoint = &altsetting->endpoint[i];
Luiz Fernando N. Capitulino4f1f1dd2006-10-26 13:02:53 -0300162 if (usb_endpoint_is_int_out(&endpoint->desc)) {
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700163 dev_dbg(&serial->dev->dev,
164 "%s Found interrupt out endpoint. Address: %d\n",
Alan Coxdee0a7c2008-07-22 11:14:10 +0100165 __func__, endpoint->desc.bEndpointAddress);
166 priv->write_int_endpoint_address =
167 endpoint->desc.bEndpointAddress;
168 }
Luiz Fernando N. Capitulino4f1f1dd2006-10-26 13:02:53 -0300169 if (usb_endpoint_is_int_in(&endpoint->desc)) {
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700170 dev_dbg(&serial->dev->dev,
171 "%s Found interrupt in endpoint. Address: %d\n",
Alan Coxdee0a7c2008-07-22 11:14:10 +0100172 __func__, endpoint->desc.bEndpointAddress);
173 priv->read_int_endpoint_address =
174 endpoint->desc.bEndpointAddress;
175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 }
177 return 0;
178}
179
180
Johan Hovold95940a02012-10-17 13:35:02 +0200181static int kobil_port_remove(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Johan Hovold95940a02012-10-17 13:35:02 +0200183 struct kobil_private *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Johan Hovold95940a02012-10-17 13:35:02 +0200185 priv = usb_get_serial_port_data(port);
186 kfree(priv);
187
188 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189}
190
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700191static void kobil_init_termios(struct tty_struct *tty)
192{
193 /* Default to echo off and other sane device settings */
Alan Coxadc8d742012-07-14 15:31:47 +0100194 tty->termios.c_lflag = 0;
Alan Cox6a6c8b32012-07-14 15:32:50 +0100195 tty->termios.c_iflag &= ~(ISIG | ICANON | ECHO | IEXTEN | XCASE);
196 tty->termios.c_iflag |= IGNBRK | IGNPAR | IXOFF;
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700197 /* do NOT translate CR to CR-NL (0x0A -> 0x0A 0x0D) */
Alan Coxadc8d742012-07-14 15:31:47 +0100198 tty->termios.c_oflag &= ~ONLCR;
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700199}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Alan Coxa509a7e2009-09-19 13:13:26 -0700201static int kobil_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700203 struct device *dev = &port->dev;
Alan Cox94d0f7e2007-08-22 23:09:16 +0100204 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 struct kobil_private *priv;
206 unsigned char *transfer_buffer;
207 int transfer_buffer_length = 8;
208 int write_urb_transfer_buffer_length = 8;
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Alan Coxdee0a7c2008-07-22 11:14:10 +0100212 /* allocate memory for transfer buffer */
213 transfer_buffer = kzalloc(transfer_buffer_length, GFP_KERNEL);
214 if (!transfer_buffer)
215 return -ENOMEM;
216
217 /* allocate write_urb */
218 if (!port->write_urb) {
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700219 dev_dbg(dev, "%s - Allocating port->write_urb\n", __func__);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100220 port->write_urb = usb_alloc_urb(0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 if (!port->write_urb) {
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700222 dev_dbg(dev, "%s - usb_alloc_urb failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 kfree(transfer_buffer);
224 return -ENOMEM;
225 }
226 }
227
Alan Coxdee0a7c2008-07-22 11:14:10 +0100228 /* allocate memory for write_urb transfer buffer */
229 port->write_urb->transfer_buffer =
230 kmalloc(write_urb_transfer_buffer_length, GFP_KERNEL);
231 if (!port->write_urb->transfer_buffer) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 kfree(transfer_buffer);
233 usb_free_urb(port->write_urb);
234 port->write_urb = NULL;
235 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
Alan Coxdee0a7c2008-07-22 11:14:10 +0100237
238 /* get hardware version */
239 result = usb_control_msg(port->serial->dev,
240 usb_rcvctrlpipe(port->serial->dev, 0),
241 SUSBCRequest_GetMisc,
242 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_IN,
243 SUSBCR_MSC_GetHWVersion,
244 0,
245 transfer_buffer,
246 transfer_buffer_length,
247 KOBIL_TIMEOUT
248 );
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700249 dev_dbg(dev, "%s - Send get_HW_version URB returns: %i\n", __func__, result);
250 dev_dbg(dev, "Harware version: %i.%i.%i\n", transfer_buffer[0],
251 transfer_buffer[1], transfer_buffer[2]);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100252
253 /* get firmware version */
254 result = usb_control_msg(port->serial->dev,
255 usb_rcvctrlpipe(port->serial->dev, 0),
256 SUSBCRequest_GetMisc,
257 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_IN,
258 SUSBCR_MSC_GetFWVersion,
259 0,
260 transfer_buffer,
261 transfer_buffer_length,
262 KOBIL_TIMEOUT
263 );
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700264 dev_dbg(dev, "%s - Send get_FW_version URB returns: %i\n", __func__, result);
265 dev_dbg(dev, "Firmware version: %i.%i.%i\n", transfer_buffer[0],
266 transfer_buffer[1], transfer_buffer[2]);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100267
268 if (priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID ||
269 priv->device_type == KOBIL_ADAPTER_K_PRODUCT_ID) {
270 /* Setting Baudrate, Parity and Stopbits */
271 result = usb_control_msg(port->serial->dev,
272 usb_rcvctrlpipe(port->serial->dev, 0),
273 SUSBCRequest_SetBaudRateParityAndStopBits,
274 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
275 SUSBCR_SBR_9600 | SUSBCR_SPASB_EvenParity |
276 SUSBCR_SPASB_1StopBit,
277 0,
278 transfer_buffer,
279 0,
280 KOBIL_TIMEOUT
281 );
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700282 dev_dbg(dev, "%s - Send set_baudrate URB returns: %i\n", __func__, result);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100283
284 /* reset all queues */
285 result = usb_control_msg(port->serial->dev,
286 usb_rcvctrlpipe(port->serial->dev, 0),
287 SUSBCRequest_Misc,
288 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
289 SUSBCR_MSC_ResetAllQueues,
290 0,
291 transfer_buffer,
292 0,
293 KOBIL_TIMEOUT
294 );
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700295 dev_dbg(dev, "%s - Send reset_all_queues URB returns: %i\n", __func__, result);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100296 }
297 if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID ||
298 priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) {
Alan Coxdee0a7c2008-07-22 11:14:10 +0100300 /* start reading (Adapter B 'cause PNP string) */
301 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700302 dev_dbg(dev, "%s - Send read URB returns: %i\n", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
304
305 kfree(transfer_buffer);
306 return 0;
307}
308
309
Alan Cox335f8512009-06-11 12:26:29 +0100310static void kobil_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
Alan Cox335f8512009-06-11 12:26:29 +0100312 /* FIXME: Add rts/dtr methods */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 if (port->write_urb) {
Johan Hovoldc0f631d2010-05-15 17:53:43 +0200314 usb_poison_urb(port->write_urb);
315 kfree(port->write_urb->transfer_buffer);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100316 usb_free_urb(port->write_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 port->write_urb = NULL;
318 }
Mariusz Kozlowski5505c222006-11-08 15:36:38 +0100319 usb_kill_urb(port->interrupt_in_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321
322
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700323static void kobil_read_int_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 int result;
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700326 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 struct tty_struct *tty;
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700328 unsigned char *data = urb->transfer_buffer;
329 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700331 if (status) {
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700332 dev_dbg(&port->dev, "%s - Read int status not zero: %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 return;
334 }
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700335
Alan Cox4a90f092008-10-13 10:39:46 +0100336 tty = tty_port_tty_get(&port->port);
Jiri Slaby6960f402011-02-28 10:34:06 +0100337 if (tty && urb->actual_length) {
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700338
Alan Coxdee0a7c2008-07-22 11:14:10 +0100339 /* BEGIN DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 /*
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700341 char *dbg_data;
342
Alan Coxdee0a7c2008-07-22 11:14:10 +0100343 dbg_data = kzalloc((3 * purb->actual_length + 10)
344 * sizeof(char), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 if (! dbg_data) {
Alan Coxdee0a7c2008-07-22 11:14:10 +0100346 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 }
Alan Coxdee0a7c2008-07-22 11:14:10 +0100348 for (i = 0; i < purb->actual_length; i++) {
349 sprintf(dbg_data +3*i, "%02X ", data[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700351 dev_dbg(&port->dev, " <-- %s\n", dbg_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 kfree(dbg_data);
353 */
Alan Coxdee0a7c2008-07-22 11:14:10 +0100354 /* END DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Jiri Slaby05c7cd32013-01-03 15:53:04 +0100356 tty_insert_flip_string(&port->port, data, urb->actual_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 tty_flip_buffer_push(tty);
358 }
Alan Cox4a90f092008-10-13 10:39:46 +0100359 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700361 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700362 dev_dbg(&port->dev, "%s - Send read URB returns: %i\n", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
364
365
Alan Coxdee0a7c2008-07-22 11:14:10 +0100366static void kobil_write_callback(struct urb *purb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
368}
369
370
Alan Coxdee0a7c2008-07-22 11:14:10 +0100371static int kobil_write(struct tty_struct *tty, struct usb_serial_port *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 const unsigned char *buf, int count)
373{
374 int length = 0;
375 int result = 0;
376 int todo = 0;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100377 struct kobil_private *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379 if (count == 0) {
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700380 dev_dbg(&port->dev, "%s - write request of 0 bytes\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 return 0;
382 }
383
384 priv = usb_get_serial_port_data(port);
385
386 if (count > (KOBIL_BUF_LENGTH - priv->filled)) {
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700387 dev_dbg(&port->dev, "%s - Error: write request bigger than buffer size\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 return -ENOMEM;
389 }
390
Alan Coxdee0a7c2008-07-22 11:14:10 +0100391 /* Copy data to buffer */
392 memcpy(priv->buf + priv->filled, buf, count);
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100393 usb_serial_debug_data(&port->dev, __func__, count, priv->buf + priv->filled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 priv->filled = priv->filled + count;
395
Alan Coxdee0a7c2008-07-22 11:14:10 +0100396 /* only send complete block. TWIN, KAAN SIM and adapter K
397 use the same protocol. */
398 if (((priv->device_type != KOBIL_ADAPTER_B_PRODUCT_ID) && (priv->filled > 2) && (priv->filled >= (priv->buf[1] + 3))) ||
399 ((priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID) && (priv->filled > 3) && (priv->filled >= (priv->buf[2] + 4)))) {
400 /* stop reading (except TWIN and KAAN SIM) */
401 if ((priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID)
402 || (priv->device_type == KOBIL_ADAPTER_K_PRODUCT_ID))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 usb_kill_urb(port->interrupt_in_urb);
404
405 todo = priv->filled - priv->cur_pos;
406
Alan Coxdee0a7c2008-07-22 11:14:10 +0100407 while (todo > 0) {
408 /* max 8 byte in one urb (endpoint size) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 length = (todo < 8) ? todo : 8;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100410 /* copy data to transfer buffer */
411 memcpy(port->write_urb->transfer_buffer,
412 priv->buf + priv->cur_pos, length);
413 usb_fill_int_urb(port->write_urb,
414 port->serial->dev,
415 usb_sndintpipe(port->serial->dev,
416 priv->write_int_endpoint_address),
417 port->write_urb->transfer_buffer,
418 length,
419 kobil_write_callback,
420 port,
421 8
422 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 priv->cur_pos = priv->cur_pos + length;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100425 result = usb_submit_urb(port->write_urb, GFP_NOIO);
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700426 dev_dbg(&port->dev, "%s - Send write URB returns: %i\n", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 todo = priv->filled - priv->cur_pos;
428
Alan Coxdee0a7c2008-07-22 11:14:10 +0100429 if (todo > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 msleep(24);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 priv->filled = 0;
434 priv->cur_pos = 0;
435
Alan Coxdee0a7c2008-07-22 11:14:10 +0100436 /* start reading (except TWIN and KAAN SIM) */
437 if (priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID ||
438 priv->device_type == KOBIL_ADAPTER_K_PRODUCT_ID) {
Alan Coxdee0a7c2008-07-22 11:14:10 +0100439 result = usb_submit_urb(port->interrupt_in_urb,
440 GFP_NOIO);
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700441 dev_dbg(&port->dev, "%s - Send read URB returns: %i\n", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 }
443 }
444 return count;
445}
446
447
Alan Coxdee0a7c2008-07-22 11:14:10 +0100448static int kobil_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449{
Alan Cox95da3102008-07-22 11:09:07 +0100450 /* FIXME */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 return 8;
452}
453
454
Alan Cox60b33c12011-02-14 16:26:14 +0000455static int kobil_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
Alan Cox95da3102008-07-22 11:09:07 +0100457 struct usb_serial_port *port = tty->driver_data;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100458 struct kobil_private *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 int result;
460 unsigned char *transfer_buffer;
461 int transfer_buffer_length = 8;
462
463 priv = usb_get_serial_port_data(port);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100464 if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID
465 || priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) {
466 /* This device doesn't support ioctl calls */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 return -EINVAL;
468 }
469
Alan Coxdee0a7c2008-07-22 11:14:10 +0100470 /* allocate memory for transfer buffer */
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100471 transfer_buffer = kzalloc(transfer_buffer_length, GFP_KERNEL);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100472 if (!transfer_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Alan Coxdee0a7c2008-07-22 11:14:10 +0100475 result = usb_control_msg(port->serial->dev,
476 usb_rcvctrlpipe(port->serial->dev, 0),
477 SUSBCRequest_GetStatusLineState,
478 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_IN,
479 0,
480 0,
481 transfer_buffer,
482 transfer_buffer_length,
483 KOBIL_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700485 dev_dbg(&port->dev, "%s - Send get_status_line_state URB returns: %i. Statusline: %02x\n",
486 __func__, result, transfer_buffer[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Alan Coxa40d8542008-02-20 21:40:34 +0000488 result = 0;
489 if ((transfer_buffer[0] & SUSBCR_GSL_DSR) != 0)
490 result = TIOCM_DSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 kfree(transfer_buffer);
Alan Coxa40d8542008-02-20 21:40:34 +0000492 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494
Alan Cox20b9d172011-02-14 16:26:50 +0000495static int kobil_tiocmset(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 unsigned int set, unsigned int clear)
497{
Alan Cox95da3102008-07-22 11:09:07 +0100498 struct usb_serial_port *port = tty->driver_data;
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700499 struct device *dev = &port->dev;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100500 struct kobil_private *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 int result;
502 int dtr = 0;
503 int rts = 0;
504 unsigned char *transfer_buffer;
505 int transfer_buffer_length = 8;
506
Alan Coxa40d8542008-02-20 21:40:34 +0000507 /* FIXME: locking ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 priv = usb_get_serial_port_data(port);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100509 if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID
510 || priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) {
511 /* This device doesn't support ioctl calls */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 return -EINVAL;
513 }
514
Alan Coxdee0a7c2008-07-22 11:14:10 +0100515 /* allocate memory for transfer buffer */
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100516 transfer_buffer = kzalloc(transfer_buffer_length, GFP_KERNEL);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100517 if (!transfer_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 if (set & TIOCM_RTS)
521 rts = 1;
522 if (set & TIOCM_DTR)
523 dtr = 1;
524 if (clear & TIOCM_RTS)
525 rts = 0;
526 if (clear & TIOCM_DTR)
527 dtr = 0;
528
529 if (priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID) {
530 if (dtr != 0)
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700531 dev_dbg(dev, "%s - Setting DTR\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 else
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700533 dev_dbg(dev, "%s - Clearing DTR\n", __func__);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100534 result = usb_control_msg(port->serial->dev,
535 usb_rcvctrlpipe(port->serial->dev, 0),
536 SUSBCRequest_SetStatusLinesOrQueues,
537 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
538 ((dtr != 0) ? SUSBCR_SSL_SETDTR : SUSBCR_SSL_CLRDTR),
539 0,
540 transfer_buffer,
541 0,
542 KOBIL_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 } else {
544 if (rts != 0)
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700545 dev_dbg(dev, "%s - Setting RTS\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 else
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700547 dev_dbg(dev, "%s - Clearing RTS\n", __func__);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100548 result = usb_control_msg(port->serial->dev,
549 usb_rcvctrlpipe(port->serial->dev, 0),
550 SUSBCRequest_SetStatusLinesOrQueues,
551 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
552 ((rts != 0) ? SUSBCR_SSL_SETRTS : SUSBCR_SSL_CLRRTS),
553 0,
554 transfer_buffer,
555 0,
556 KOBIL_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700558 dev_dbg(dev, "%s - Send set_status_line URB returns: %i\n", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 kfree(transfer_buffer);
560 return (result < 0) ? result : 0;
561}
562
Alan Cox95da3102008-07-22 11:09:07 +0100563static void kobil_set_termios(struct tty_struct *tty,
564 struct usb_serial_port *port, struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
Alan Coxdee0a7c2008-07-22 11:14:10 +0100566 struct kobil_private *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 int result;
568 unsigned short urb_val = 0;
Alan Coxadc8d742012-07-14 15:31:47 +0100569 int c_cflag = tty->termios.c_cflag;
Alan Cox94d0f7e2007-08-22 23:09:16 +0100570 speed_t speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 priv = usb_get_serial_port_data(port);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100573 if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID ||
Alan Coxb31f6582008-07-22 11:14:22 +0100574 priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) {
Alan Coxdee0a7c2008-07-22 11:14:10 +0100575 /* This device doesn't support ioctl calls */
Alan Cox6a6c8b32012-07-14 15:32:50 +0100576 tty_termios_copy_hw(&tty->termios, old);
Alan Cox94d0f7e2007-08-22 23:09:16 +0100577 return;
Alan Coxb31f6582008-07-22 11:14:22 +0100578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Alan Coxdee0a7c2008-07-22 11:14:10 +0100580 speed = tty_get_baud_rate(tty);
581 switch (speed) {
582 case 1200:
583 urb_val = SUSBCR_SBR_1200;
584 break;
585 default:
586 speed = 9600;
587 case 9600:
588 urb_val = SUSBCR_SBR_9600;
589 break;
Alan Cox94d0f7e2007-08-22 23:09:16 +0100590 }
Alan Coxdee0a7c2008-07-22 11:14:10 +0100591 urb_val |= (c_cflag & CSTOPB) ? SUSBCR_SPASB_2StopBits :
592 SUSBCR_SPASB_1StopBit;
Alan Cox94d0f7e2007-08-22 23:09:16 +0100593 if (c_cflag & PARENB) {
Johan Hovold96679f62009-12-28 23:01:58 +0100594 if (c_cflag & PARODD)
Alan Cox94d0f7e2007-08-22 23:09:16 +0100595 urb_val |= SUSBCR_SPASB_OddParity;
Johan Hovold96679f62009-12-28 23:01:58 +0100596 else
Alan Cox94d0f7e2007-08-22 23:09:16 +0100597 urb_val |= SUSBCR_SPASB_EvenParity;
Johan Hovold96679f62009-12-28 23:01:58 +0100598 } else
Alan Cox94d0f7e2007-08-22 23:09:16 +0100599 urb_val |= SUSBCR_SPASB_NoParity;
Alan Coxadc8d742012-07-14 15:31:47 +0100600 tty->termios.c_cflag &= ~CMSPAR;
Alan Cox95da3102008-07-22 11:09:07 +0100601 tty_encode_baud_rate(tty, speed, speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Alan Coxdee0a7c2008-07-22 11:14:10 +0100603 result = usb_control_msg(port->serial->dev,
604 usb_rcvctrlpipe(port->serial->dev, 0),
605 SUSBCRequest_SetBaudRateParityAndStopBits,
606 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
607 urb_val,
608 0,
Johan Hovold96679f62009-12-28 23:01:58 +0100609 NULL,
Alan Coxdee0a7c2008-07-22 11:14:10 +0100610 0,
611 KOBIL_TIMEOUT
Alan Cox94d0f7e2007-08-22 23:09:16 +0100612 );
Alan Cox94d0f7e2007-08-22 23:09:16 +0100613}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Alan Cox00a0d0d2011-02-14 16:27:06 +0000615static int kobil_ioctl(struct tty_struct *tty,
Alan Coxdee0a7c2008-07-22 11:14:10 +0100616 unsigned int cmd, unsigned long arg)
Alan Cox94d0f7e2007-08-22 23:09:16 +0100617{
Alan Cox95da3102008-07-22 11:09:07 +0100618 struct usb_serial_port *port = tty->driver_data;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100619 struct kobil_private *priv = usb_get_serial_port_data(port);
Alan Cox94d0f7e2007-08-22 23:09:16 +0100620 unsigned char *transfer_buffer;
621 int transfer_buffer_length = 8;
622 int result;
623
Alan Coxdee0a7c2008-07-22 11:14:10 +0100624 if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID ||
625 priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID)
626 /* This device doesn't support ioctl calls */
Alan Coxb31f6582008-07-22 11:14:22 +0100627 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Alan Cox94d0f7e2007-08-22 23:09:16 +0100629 switch (cmd) {
Alan Cox95da3102008-07-22 11:09:07 +0100630 case TCFLSH:
Robert P. J. Day5cbded52006-12-13 00:35:56 -0800631 transfer_buffer = kmalloc(transfer_buffer_length, GFP_KERNEL);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100632 if (!transfer_buffer)
633 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Alan Coxdee0a7c2008-07-22 11:14:10 +0100635 result = usb_control_msg(port->serial->dev,
636 usb_rcvctrlpipe(port->serial->dev, 0),
637 SUSBCRequest_Misc,
638 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
639 SUSBCR_MSC_ResetAllQueues,
640 0,
641 NULL, /* transfer_buffer, */
642 0,
643 KOBIL_TIMEOUT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 );
Alan Coxdee0a7c2008-07-22 11:14:10 +0100645
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700646 dev_dbg(&port->dev,
647 "%s - Send reset_all_queues (FLUSH) URB returns: %i", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 kfree(transfer_buffer);
Alan Cox95da3102008-07-22 11:09:07 +0100649 return (result < 0) ? -EIO: 0;
Alan Cox94d0f7e2007-08-22 23:09:16 +0100650 default:
651 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653}
654
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700655module_usb_serial_driver(serial_drivers, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Alan Coxdee0a7c2008-07-22 11:14:10 +0100657MODULE_AUTHOR(DRIVER_AUTHOR);
658MODULE_DESCRIPTION(DRIVER_DESC);
659MODULE_LICENSE("GPL");