blob: c148544953b37df33a00fc9873377a31168de993 [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)
Alan Coxdee0a7c2008-07-22 11:14:10 +010023 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * (21/05/2004) tw
25 * Fix bug with P'n'P readers
26 *
27 * (28/05/2003) tw
28 * Add support for KAAN SIM
29 *
30 * (12/09/2002) tw
31 * Adapted to 2.5.
32 *
33 * (11/08/2002) tw
34 * Initial version.
35 */
36
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/kernel.h>
39#include <linux/errno.h>
40#include <linux/init.h>
41#include <linux/slab.h>
42#include <linux/tty.h>
43#include <linux/tty_driver.h>
44#include <linux/tty_flip.h>
45#include <linux/module.h>
46#include <linux/spinlock.h>
Alan Coxdee0a7c2008-07-22 11:14:10 +010047#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070049#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/ioctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include "kobil_sct.h"
52
53static int debug;
54
55/* Version Information */
56#define DRIVER_VERSION "21/05/2004"
57#define DRIVER_AUTHOR "KOBIL Systems GmbH - http://www.kobil.com"
58#define DRIVER_DESC "KOBIL USB Smart Card Terminal Driver (experimental)"
59
60#define KOBIL_VENDOR_ID 0x0D46
61#define KOBIL_ADAPTER_B_PRODUCT_ID 0x2011
62#define KOBIL_ADAPTER_K_PRODUCT_ID 0x2012
63#define KOBIL_USBTWIN_PRODUCT_ID 0x0078
64#define KOBIL_KAAN_SIM_PRODUCT_ID 0x0081
65
66#define KOBIL_TIMEOUT 500
67#define KOBIL_BUF_LENGTH 300
68
69
70/* Function prototypes */
Alan Coxdee0a7c2008-07-22 11:14:10 +010071static int kobil_startup(struct usb_serial *serial);
72static void kobil_shutdown(struct usb_serial *serial);
73static int kobil_open(struct tty_struct *tty,
Alan Cox95da3102008-07-22 11:09:07 +010074 struct usb_serial_port *port, struct file *filp);
Alan Coxdee0a7c2008-07-22 11:14:10 +010075static void kobil_close(struct tty_struct *tty, struct usb_serial_port *port,
Alan Cox95da3102008-07-22 11:09:07 +010076 struct file *filp);
Alan Coxdee0a7c2008-07-22 11:14:10 +010077static int kobil_write(struct tty_struct *tty, struct usb_serial_port *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 const unsigned char *buf, int count);
Alan Cox95da3102008-07-22 11:09:07 +010079static int kobil_write_room(struct tty_struct *tty);
80static int kobil_ioctl(struct tty_struct *tty, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 unsigned int cmd, unsigned long arg);
Alan Cox95da3102008-07-22 11:09:07 +010082static int kobil_tiocmget(struct tty_struct *tty, struct file *file);
83static int kobil_tiocmset(struct tty_struct *tty, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 unsigned int set, unsigned int clear);
Alan Coxdee0a7c2008-07-22 11:14:10 +010085static void kobil_read_int_callback(struct urb *urb);
86static void kobil_write_callback(struct urb *purb);
87static void kobil_set_termios(struct tty_struct *tty,
Alan Cox95da3102008-07-22 11:09:07 +010088 struct usb_serial_port *port, struct ktermios *old);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90
91static struct usb_device_id id_table [] = {
92 { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_ADAPTER_B_PRODUCT_ID) },
93 { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_ADAPTER_K_PRODUCT_ID) },
94 { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_USBTWIN_PRODUCT_ID) },
95 { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_KAAN_SIM_PRODUCT_ID) },
96 { } /* Terminating entry */
97};
98
99
Alan Coxdee0a7c2008-07-22 11:14:10 +0100100MODULE_DEVICE_TABLE(usb, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102static struct usb_driver kobil_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 .name = "kobil",
104 .probe = usb_serial_probe,
105 .disconnect = usb_serial_disconnect,
106 .id_table = id_table,
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800107 .no_dynamic_id = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108};
109
110
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700111static struct usb_serial_driver kobil_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700112 .driver = {
113 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700114 .name = "kobil",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700115 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700116 .description = "KOBIL USB smart card terminal",
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100117 .usb_driver = &kobil_driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 .id_table = id_table,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 .num_ports = 1,
120 .attach = kobil_startup,
121 .shutdown = kobil_shutdown,
122 .ioctl = kobil_ioctl,
Alan Cox94d0f7e2007-08-22 23:09:16 +0100123 .set_termios = kobil_set_termios,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 .tiocmget = kobil_tiocmget,
125 .tiocmset = kobil_tiocmset,
126 .open = kobil_open,
127 .close = kobil_close,
128 .write = kobil_write,
129 .write_room = kobil_write_room,
130 .read_int_callback = kobil_read_int_callback,
131};
132
133
134struct kobil_private {
135 int write_int_endpoint_address;
136 int read_int_endpoint_address;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100137 unsigned char buf[KOBIL_BUF_LENGTH]; /* buffer for the APDU to send */
138 int filled; /* index of the last char in buf */
139 int cur_pos; /* index of the next char to send in buf */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 __u16 device_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141};
142
143
Alan Coxdee0a7c2008-07-22 11:14:10 +0100144static int kobil_startup(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
146 int i;
147 struct kobil_private *priv;
148 struct usb_device *pdev;
149 struct usb_host_config *actconfig;
150 struct usb_interface *interface;
151 struct usb_host_interface *altsetting;
152 struct usb_host_endpoint *endpoint;
153
154 priv = kmalloc(sizeof(struct kobil_private), GFP_KERNEL);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100155 if (!priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 priv->filled = 0;
159 priv->cur_pos = 0;
160 priv->device_type = le16_to_cpu(serial->dev->descriptor.idProduct);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Alan Coxdee0a7c2008-07-22 11:14:10 +0100162 switch (priv->device_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 case KOBIL_ADAPTER_B_PRODUCT_ID:
164 printk(KERN_DEBUG "KOBIL B1 PRO / KAAN PRO detected\n");
165 break;
166 case KOBIL_ADAPTER_K_PRODUCT_ID:
Alan Coxdee0a7c2008-07-22 11:14:10 +0100167 printk(KERN_DEBUG
168 "KOBIL KAAN Standard Plus / SecOVID Reader Plus detected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 break;
170 case KOBIL_USBTWIN_PRODUCT_ID:
171 printk(KERN_DEBUG "KOBIL USBTWIN detected\n");
172 break;
173 case KOBIL_KAAN_SIM_PRODUCT_ID:
174 printk(KERN_DEBUG "KOBIL KAAN SIM detected\n");
175 break;
176 }
177 usb_set_serial_port_data(serial->port[0], priv);
178
Alan Coxdee0a7c2008-07-22 11:14:10 +0100179 /* search for the necessary endpoints */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 pdev = serial->dev;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100181 actconfig = pdev->actconfig;
182 interface = actconfig->interface[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 altsetting = interface->cur_altsetting;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100184 endpoint = altsetting->endpoint;
185
186 for (i = 0; i < altsetting->desc.bNumEndpoints; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 endpoint = &altsetting->endpoint[i];
Luiz Fernando N. Capitulino4f1f1dd2006-10-26 13:02:53 -0300188 if (usb_endpoint_is_int_out(&endpoint->desc)) {
Alan Coxdee0a7c2008-07-22 11:14:10 +0100189 dbg("%s Found interrupt out endpoint. Address: %d",
190 __func__, endpoint->desc.bEndpointAddress);
191 priv->write_int_endpoint_address =
192 endpoint->desc.bEndpointAddress;
193 }
Luiz Fernando N. Capitulino4f1f1dd2006-10-26 13:02:53 -0300194 if (usb_endpoint_is_int_in(&endpoint->desc)) {
Alan Coxdee0a7c2008-07-22 11:14:10 +0100195 dbg("%s Found interrupt in endpoint. Address: %d",
196 __func__, endpoint->desc.bEndpointAddress);
197 priv->read_int_endpoint_address =
198 endpoint->desc.bEndpointAddress;
199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
201 return 0;
202}
203
204
Alan Coxdee0a7c2008-07-22 11:14:10 +0100205static void kobil_shutdown(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
207 int i;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800208 dbg("%s - port %d", __func__, serial->port[0]->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Alan Coxdee0a7c2008-07-22 11:14:10 +0100210 for (i = 0; i < serial->num_ports; ++i) {
211 while (serial->port[i]->port.count > 0)
212 kobil_close(NULL, serial->port[i], NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 kfree(usb_get_serial_port_data(serial->port[i]));
214 usb_set_serial_port_data(serial->port[i], NULL);
215 }
216}
217
218
Alan Cox95da3102008-07-22 11:09:07 +0100219static int kobil_open(struct tty_struct *tty,
220 struct usb_serial_port *port, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
Alan Cox94d0f7e2007-08-22 23:09:16 +0100222 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 struct kobil_private *priv;
224 unsigned char *transfer_buffer;
225 int transfer_buffer_length = 8;
226 int write_urb_transfer_buffer_length = 8;
227
Harvey Harrison441b62c2008-03-03 16:08:34 -0800228 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Alan Coxdee0a7c2008-07-22 11:14:10 +0100231 /* someone sets the dev to 0 if the close method has been called */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 port->interrupt_in_urb->dev = port->serial->dev;
233
Alan Cox95da3102008-07-22 11:09:07 +0100234 if (tty) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Alan Cox95da3102008-07-22 11:09:07 +0100236 /* Default to echo off and other sane device settings */
237 tty->termios->c_lflag = 0;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100238 tty->termios->c_lflag &= ~(ISIG | ICANON | ECHO | IEXTEN |
239 XCASE);
Alan Cox95da3102008-07-22 11:09:07 +0100240 tty->termios->c_iflag = IGNBRK | IGNPAR | IXOFF;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100241 /* do NOT translate CR to CR-NL (0x0A -> 0x0A 0x0D) */
242 tty->termios->c_oflag &= ~ONLCR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
Alan Coxdee0a7c2008-07-22 11:14:10 +0100244 /* allocate memory for transfer buffer */
245 transfer_buffer = kzalloc(transfer_buffer_length, GFP_KERNEL);
246 if (!transfer_buffer)
247 return -ENOMEM;
248
249 /* allocate write_urb */
250 if (!port->write_urb) {
251 dbg("%s - port %d Allocating port->write_urb",
252 __func__, port->number);
253 port->write_urb = usb_alloc_urb(0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 if (!port->write_urb) {
Alan Coxdee0a7c2008-07-22 11:14:10 +0100255 dbg("%s - port %d usb_alloc_urb failed",
256 __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 kfree(transfer_buffer);
258 return -ENOMEM;
259 }
260 }
261
Alan Coxdee0a7c2008-07-22 11:14:10 +0100262 /* allocate memory for write_urb transfer buffer */
263 port->write_urb->transfer_buffer =
264 kmalloc(write_urb_transfer_buffer_length, GFP_KERNEL);
265 if (!port->write_urb->transfer_buffer) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 kfree(transfer_buffer);
267 usb_free_urb(port->write_urb);
268 port->write_urb = NULL;
269 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 }
Alan Coxdee0a7c2008-07-22 11:14:10 +0100271
272 /* get hardware version */
273 result = usb_control_msg(port->serial->dev,
274 usb_rcvctrlpipe(port->serial->dev, 0),
275 SUSBCRequest_GetMisc,
276 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_IN,
277 SUSBCR_MSC_GetHWVersion,
278 0,
279 transfer_buffer,
280 transfer_buffer_length,
281 KOBIL_TIMEOUT
282 );
283 dbg("%s - port %d Send get_HW_version URB returns: %i",
284 __func__, port->number, result);
285 dbg("Harware version: %i.%i.%i",
286 transfer_buffer[0], transfer_buffer[1], transfer_buffer[2]);
287
288 /* get firmware version */
289 result = usb_control_msg(port->serial->dev,
290 usb_rcvctrlpipe(port->serial->dev, 0),
291 SUSBCRequest_GetMisc,
292 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_IN,
293 SUSBCR_MSC_GetFWVersion,
294 0,
295 transfer_buffer,
296 transfer_buffer_length,
297 KOBIL_TIMEOUT
298 );
299 dbg("%s - port %d Send get_FW_version URB returns: %i",
300 __func__, port->number, result);
301 dbg("Firmware version: %i.%i.%i",
302 transfer_buffer[0], transfer_buffer[1], transfer_buffer[2]);
303
304 if (priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID ||
305 priv->device_type == KOBIL_ADAPTER_K_PRODUCT_ID) {
306 /* Setting Baudrate, Parity and Stopbits */
307 result = usb_control_msg(port->serial->dev,
308 usb_rcvctrlpipe(port->serial->dev, 0),
309 SUSBCRequest_SetBaudRateParityAndStopBits,
310 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
311 SUSBCR_SBR_9600 | SUSBCR_SPASB_EvenParity |
312 SUSBCR_SPASB_1StopBit,
313 0,
314 transfer_buffer,
315 0,
316 KOBIL_TIMEOUT
317 );
318 dbg("%s - port %d Send set_baudrate URB returns: %i",
319 __func__, port->number, result);
320
321 /* reset all queues */
322 result = usb_control_msg(port->serial->dev,
323 usb_rcvctrlpipe(port->serial->dev, 0),
324 SUSBCRequest_Misc,
325 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
326 SUSBCR_MSC_ResetAllQueues,
327 0,
328 transfer_buffer,
329 0,
330 KOBIL_TIMEOUT
331 );
332 dbg("%s - port %d Send reset_all_queues URB returns: %i",
333 __func__, port->number, result);
334 }
335 if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID ||
336 priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) {
Alan Coxdee0a7c2008-07-22 11:14:10 +0100338 /* start reading (Adapter B 'cause PNP string) */
339 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
340 dbg("%s - port %d Send read URB returns: %i",
341 __func__, port->number, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
343
344 kfree(transfer_buffer);
345 return 0;
346}
347
348
Alan Cox95da3102008-07-22 11:09:07 +0100349static void kobil_close(struct tty_struct *tty,
350 struct usb_serial_port *port, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
Harvey Harrison441b62c2008-03-03 16:08:34 -0800352 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354 if (port->write_urb) {
355 usb_kill_urb(port->write_urb);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100356 usb_free_urb(port->write_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 port->write_urb = NULL;
358 }
Mariusz Kozlowski5505c222006-11-08 15:36:38 +0100359 usb_kill_urb(port->interrupt_in_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360}
361
362
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700363static void kobil_read_int_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 int result;
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700366 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 struct tty_struct *tty;
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700368 unsigned char *data = urb->transfer_buffer;
369 int status = urb->status;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100370/* char *dbg_data; */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Harvey Harrison441b62c2008-03-03 16:08:34 -0800372 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700374 if (status) {
375 dbg("%s - port %d Read int status not zero: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800376 __func__, port->number, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 return;
378 }
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700379
Alan Cox4a90f092008-10-13 10:39:46 +0100380 tty = tty_port_tty_get(&port->port);
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700381 if (urb->actual_length) {
382
Alan Coxdee0a7c2008-07-22 11:14:10 +0100383 /* BEGIN DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 /*
Alan Coxdee0a7c2008-07-22 11:14:10 +0100385 dbg_data = kzalloc((3 * purb->actual_length + 10)
386 * sizeof(char), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (! dbg_data) {
Alan Coxdee0a7c2008-07-22 11:14:10 +0100388 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
Alan Coxdee0a7c2008-07-22 11:14:10 +0100390 for (i = 0; i < purb->actual_length; i++) {
391 sprintf(dbg_data +3*i, "%02X ", data[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 }
Alan Coxdee0a7c2008-07-22 11:14:10 +0100393 dbg(" <-- %s", dbg_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 kfree(dbg_data);
395 */
Alan Coxdee0a7c2008-07-22 11:14:10 +0100396 /* END DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700398 tty_buffer_request_room(tty, urb->actual_length);
399 tty_insert_flip_string(tty, data, urb->actual_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 tty_flip_buffer_push(tty);
401 }
Alan Cox4a90f092008-10-13 10:39:46 +0100402 tty_kref_put(tty);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100403 /* someone sets the dev to 0 if the close method has been called */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 port->interrupt_in_urb->dev = port->serial->dev;
405
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700406 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100407 dbg("%s - port %d Send read URB returns: %i",
408 __func__, port->number, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
411
Alan Coxdee0a7c2008-07-22 11:14:10 +0100412static void kobil_write_callback(struct urb *purb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
414}
415
416
Alan Coxdee0a7c2008-07-22 11:14:10 +0100417static int kobil_write(struct tty_struct *tty, struct usb_serial_port *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 const unsigned char *buf, int count)
419{
420 int length = 0;
421 int result = 0;
422 int todo = 0;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100423 struct kobil_private *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
425 if (count == 0) {
Alan Coxdee0a7c2008-07-22 11:14:10 +0100426 dbg("%s - port %d write request of 0 bytes",
427 __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 return 0;
429 }
430
431 priv = usb_get_serial_port_data(port);
432
433 if (count > (KOBIL_BUF_LENGTH - priv->filled)) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800434 dbg("%s - port %d Error: write request bigger than buffer size", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 return -ENOMEM;
436 }
437
Alan Coxdee0a7c2008-07-22 11:14:10 +0100438 /* Copy data to buffer */
439 memcpy(priv->buf + priv->filled, buf, count);
440 usb_serial_debug_data(debug, &port->dev, __func__, count,
441 priv->buf + priv->filled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 priv->filled = priv->filled + count;
443
Alan Coxdee0a7c2008-07-22 11:14:10 +0100444 /* only send complete block. TWIN, KAAN SIM and adapter K
445 use the same protocol. */
446 if (((priv->device_type != KOBIL_ADAPTER_B_PRODUCT_ID) && (priv->filled > 2) && (priv->filled >= (priv->buf[1] + 3))) ||
447 ((priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID) && (priv->filled > 3) && (priv->filled >= (priv->buf[2] + 4)))) {
448 /* stop reading (except TWIN and KAAN SIM) */
449 if ((priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID)
450 || (priv->device_type == KOBIL_ADAPTER_K_PRODUCT_ID))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 usb_kill_urb(port->interrupt_in_urb);
452
453 todo = priv->filled - priv->cur_pos;
454
Alan Coxdee0a7c2008-07-22 11:14:10 +0100455 while (todo > 0) {
456 /* max 8 byte in one urb (endpoint size) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 length = (todo < 8) ? todo : 8;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100458 /* copy data to transfer buffer */
459 memcpy(port->write_urb->transfer_buffer,
460 priv->buf + priv->cur_pos, length);
461 usb_fill_int_urb(port->write_urb,
462 port->serial->dev,
463 usb_sndintpipe(port->serial->dev,
464 priv->write_int_endpoint_address),
465 port->write_urb->transfer_buffer,
466 length,
467 kobil_write_callback,
468 port,
469 8
470 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
472 priv->cur_pos = priv->cur_pos + length;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100473 result = usb_submit_urb(port->write_urb, GFP_NOIO);
474 dbg("%s - port %d Send write URB returns: %i",
475 __func__, port->number, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 todo = priv->filled - priv->cur_pos;
477
Alan Coxdee0a7c2008-07-22 11:14:10 +0100478 if (todo > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 msleep(24);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100480 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 priv->filled = 0;
483 priv->cur_pos = 0;
484
Alan Coxdee0a7c2008-07-22 11:14:10 +0100485 /* someone sets the dev to 0 if the close method
486 has been called */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 port->interrupt_in_urb->dev = port->serial->dev;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100488
489 /* start reading (except TWIN and KAAN SIM) */
490 if (priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID ||
491 priv->device_type == KOBIL_ADAPTER_K_PRODUCT_ID) {
492 /* someone sets the dev to 0 if the close method has
493 been called */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 port->interrupt_in_urb->dev = port->serial->dev;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100495
496 result = usb_submit_urb(port->interrupt_in_urb,
497 GFP_NOIO);
498 dbg("%s - port %d Send read URB returns: %i",
499 __func__, port->number, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 }
501 }
502 return count;
503}
504
505
Alan Coxdee0a7c2008-07-22 11:14:10 +0100506static int kobil_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
Alan Coxdee0a7c2008-07-22 11:14:10 +0100508 /* dbg("%s - port %d", __func__, port->number); */
Alan Cox95da3102008-07-22 11:09:07 +0100509 /* FIXME */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 return 8;
511}
512
513
Alan Cox95da3102008-07-22 11:09:07 +0100514static int kobil_tiocmget(struct tty_struct *tty, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
Alan Cox95da3102008-07-22 11:09:07 +0100516 struct usb_serial_port *port = tty->driver_data;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100517 struct kobil_private *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 int result;
519 unsigned char *transfer_buffer;
520 int transfer_buffer_length = 8;
521
522 priv = usb_get_serial_port_data(port);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100523 if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID
524 || priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) {
525 /* This device doesn't support ioctl calls */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 return -EINVAL;
527 }
528
Alan Coxdee0a7c2008-07-22 11:14:10 +0100529 /* allocate memory for transfer buffer */
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100530 transfer_buffer = kzalloc(transfer_buffer_length, GFP_KERNEL);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100531 if (!transfer_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Alan Coxdee0a7c2008-07-22 11:14:10 +0100534 result = usb_control_msg(port->serial->dev,
535 usb_rcvctrlpipe(port->serial->dev, 0),
536 SUSBCRequest_GetStatusLineState,
537 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_IN,
538 0,
539 0,
540 transfer_buffer,
541 transfer_buffer_length,
542 KOBIL_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Alan Coxdee0a7c2008-07-22 11:14:10 +0100544 dbg("%s - port %d Send get_status_line_state URB returns: %i. Statusline: %02x",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800545 __func__, port->number, result, transfer_buffer[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Alan Coxa40d8542008-02-20 21:40:34 +0000547 result = 0;
548 if ((transfer_buffer[0] & SUSBCR_GSL_DSR) != 0)
549 result = TIOCM_DSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 kfree(transfer_buffer);
Alan Coxa40d8542008-02-20 21:40:34 +0000551 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
Alan Cox95da3102008-07-22 11:09:07 +0100554static int kobil_tiocmset(struct tty_struct *tty, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 unsigned int set, unsigned int clear)
556{
Alan Cox95da3102008-07-22 11:09:07 +0100557 struct usb_serial_port *port = tty->driver_data;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100558 struct kobil_private *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 int result;
560 int dtr = 0;
561 int rts = 0;
562 unsigned char *transfer_buffer;
563 int transfer_buffer_length = 8;
564
Alan Coxa40d8542008-02-20 21:40:34 +0000565 /* FIXME: locking ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 priv = usb_get_serial_port_data(port);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100567 if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID
568 || priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) {
569 /* This device doesn't support ioctl calls */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 return -EINVAL;
571 }
572
Alan Coxdee0a7c2008-07-22 11:14:10 +0100573 /* allocate memory for transfer buffer */
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100574 transfer_buffer = kzalloc(transfer_buffer_length, GFP_KERNEL);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100575 if (!transfer_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578 if (set & TIOCM_RTS)
579 rts = 1;
580 if (set & TIOCM_DTR)
581 dtr = 1;
582 if (clear & TIOCM_RTS)
583 rts = 0;
584 if (clear & TIOCM_DTR)
585 dtr = 0;
586
587 if (priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID) {
588 if (dtr != 0)
Alan Coxdee0a7c2008-07-22 11:14:10 +0100589 dbg("%s - port %d Setting DTR",
590 __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 else
Alan Coxdee0a7c2008-07-22 11:14:10 +0100592 dbg("%s - port %d Clearing DTR",
593 __func__, port->number);
594 result = usb_control_msg(port->serial->dev,
595 usb_rcvctrlpipe(port->serial->dev, 0),
596 SUSBCRequest_SetStatusLinesOrQueues,
597 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
598 ((dtr != 0) ? SUSBCR_SSL_SETDTR : SUSBCR_SSL_CLRDTR),
599 0,
600 transfer_buffer,
601 0,
602 KOBIL_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 } else {
604 if (rts != 0)
Alan Coxdee0a7c2008-07-22 11:14:10 +0100605 dbg("%s - port %d Setting RTS",
606 __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 else
Alan Coxdee0a7c2008-07-22 11:14:10 +0100608 dbg("%s - port %d Clearing RTS",
609 __func__, port->number);
610 result = usb_control_msg(port->serial->dev,
611 usb_rcvctrlpipe(port->serial->dev, 0),
612 SUSBCRequest_SetStatusLinesOrQueues,
613 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
614 ((rts != 0) ? SUSBCR_SSL_SETRTS : SUSBCR_SSL_CLRRTS),
615 0,
616 transfer_buffer,
617 0,
618 KOBIL_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 }
Alan Coxdee0a7c2008-07-22 11:14:10 +0100620 dbg("%s - port %d Send set_status_line URB returns: %i",
621 __func__, port->number, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 kfree(transfer_buffer);
623 return (result < 0) ? result : 0;
624}
625
Alan Cox95da3102008-07-22 11:09:07 +0100626static void kobil_set_termios(struct tty_struct *tty,
627 struct usb_serial_port *port, struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
Alan Coxdee0a7c2008-07-22 11:14:10 +0100629 struct kobil_private *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 int result;
631 unsigned short urb_val = 0;
Alan Cox95da3102008-07-22 11:09:07 +0100632 int c_cflag = tty->termios->c_cflag;
Alan Cox94d0f7e2007-08-22 23:09:16 +0100633 speed_t speed;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100634 void *settings;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
636 priv = usb_get_serial_port_data(port);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100637 if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID ||
Alan Coxb31f6582008-07-22 11:14:22 +0100638 priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) {
Alan Coxdee0a7c2008-07-22 11:14:10 +0100639 /* This device doesn't support ioctl calls */
Alan Coxb31f6582008-07-22 11:14:22 +0100640 *tty->termios = *old;
Alan Cox94d0f7e2007-08-22 23:09:16 +0100641 return;
Alan Coxb31f6582008-07-22 11:14:22 +0100642 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Alan Coxdee0a7c2008-07-22 11:14:10 +0100644 speed = tty_get_baud_rate(tty);
645 switch (speed) {
646 case 1200:
647 urb_val = SUSBCR_SBR_1200;
648 break;
649 default:
650 speed = 9600;
651 case 9600:
652 urb_val = SUSBCR_SBR_9600;
653 break;
Alan Cox94d0f7e2007-08-22 23:09:16 +0100654 }
Alan Coxdee0a7c2008-07-22 11:14:10 +0100655 urb_val |= (c_cflag & CSTOPB) ? SUSBCR_SPASB_2StopBits :
656 SUSBCR_SPASB_1StopBit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Alan Cox94d0f7e2007-08-22 23:09:16 +0100658 settings = kzalloc(50, GFP_KERNEL);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100659 if (!settings)
Alan Cox94d0f7e2007-08-22 23:09:16 +0100660 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Alan Cox94d0f7e2007-08-22 23:09:16 +0100662 sprintf(settings, "%d ", speed);
663
664 if (c_cflag & PARENB) {
665 if (c_cflag & PARODD) {
666 urb_val |= SUSBCR_SPASB_OddParity;
667 strcat(settings, "Odd Parity");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 } else {
Alan Cox94d0f7e2007-08-22 23:09:16 +0100669 urb_val |= SUSBCR_SPASB_EvenParity;
670 strcat(settings, "Even Parity");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 }
Alan Cox94d0f7e2007-08-22 23:09:16 +0100672 } else {
673 urb_val |= SUSBCR_SPASB_NoParity;
674 strcat(settings, "No Parity");
675 }
Alan Cox95da3102008-07-22 11:09:07 +0100676 tty->termios->c_cflag &= ~CMSPAR;
677 tty_encode_baud_rate(tty, speed, speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Alan Coxdee0a7c2008-07-22 11:14:10 +0100679 result = usb_control_msg(port->serial->dev,
680 usb_rcvctrlpipe(port->serial->dev, 0),
681 SUSBCRequest_SetBaudRateParityAndStopBits,
682 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
683 urb_val,
684 0,
685 settings,
686 0,
687 KOBIL_TIMEOUT
Alan Cox94d0f7e2007-08-22 23:09:16 +0100688 );
689 kfree(settings);
690}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Alan Coxdee0a7c2008-07-22 11:14:10 +0100692static int kobil_ioctl(struct tty_struct *tty, struct file *file,
693 unsigned int cmd, unsigned long arg)
Alan Cox94d0f7e2007-08-22 23:09:16 +0100694{
Alan Cox95da3102008-07-22 11:09:07 +0100695 struct usb_serial_port *port = tty->driver_data;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100696 struct kobil_private *priv = usb_get_serial_port_data(port);
Alan Cox94d0f7e2007-08-22 23:09:16 +0100697 unsigned char *transfer_buffer;
698 int transfer_buffer_length = 8;
699 int result;
700
Alan Coxdee0a7c2008-07-22 11:14:10 +0100701 if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID ||
702 priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID)
703 /* This device doesn't support ioctl calls */
Alan Coxb31f6582008-07-22 11:14:22 +0100704 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Alan Cox94d0f7e2007-08-22 23:09:16 +0100706 switch (cmd) {
Alan Cox95da3102008-07-22 11:09:07 +0100707 case TCFLSH:
Robert P. J. Day5cbded52006-12-13 00:35:56 -0800708 transfer_buffer = kmalloc(transfer_buffer_length, GFP_KERNEL);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100709 if (!transfer_buffer)
710 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Alan Coxdee0a7c2008-07-22 11:14:10 +0100712 result = usb_control_msg(port->serial->dev,
713 usb_rcvctrlpipe(port->serial->dev, 0),
714 SUSBCRequest_Misc,
715 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
716 SUSBCR_MSC_ResetAllQueues,
717 0,
718 NULL, /* transfer_buffer, */
719 0,
720 KOBIL_TIMEOUT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 );
Alan Coxdee0a7c2008-07-22 11:14:10 +0100722
Harvey Harrison441b62c2008-03-03 16:08:34 -0800723 dbg("%s - port %d Send reset_all_queues (FLUSH) URB returns: %i", __func__, port->number, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 kfree(transfer_buffer);
Alan Cox95da3102008-07-22 11:09:07 +0100725 return (result < 0) ? -EIO: 0;
Alan Cox94d0f7e2007-08-22 23:09:16 +0100726 default:
727 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729}
730
Alan Coxdee0a7c2008-07-22 11:14:10 +0100731static int __init kobil_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732{
733 int retval;
734 retval = usb_serial_register(&kobil_device);
735 if (retval)
736 goto failed_usb_serial_register;
737 retval = usb_register(&kobil_driver);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100738 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 goto failed_usb_register;
740
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -0700741 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
742 DRIVER_DESC "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
744 return 0;
745failed_usb_register:
746 usb_serial_deregister(&kobil_device);
747failed_usb_serial_register:
748 return retval;
749}
750
751
Alan Coxdee0a7c2008-07-22 11:14:10 +0100752static void __exit kobil_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753{
Alan Coxdee0a7c2008-07-22 11:14:10 +0100754 usb_deregister(&kobil_driver);
755 usb_serial_deregister(&kobil_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756}
757
758module_init(kobil_init);
759module_exit(kobil_exit);
760
Alan Coxdee0a7c2008-07-22 11:14:10 +0100761MODULE_AUTHOR(DRIVER_AUTHOR);
762MODULE_DESCRIPTION(DRIVER_DESC);
763MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
765module_param(debug, bool, S_IRUGO | S_IWUSR);
766MODULE_PARM_DESC(debug, "Debug enabled or not");