blob: 2363654cafc9b79de61a30bcc00b7f875c470b60 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/slab.h>
29#include <linux/tty.h>
30#include <linux/tty_driver.h>
31#include <linux/tty_flip.h>
32#include <linux/module.h>
33#include <linux/spinlock.h>
Alan Coxdee0a7c2008-07-22 11:14:10 +010034#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070036#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/ioctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "kobil_sct.h"
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#define DRIVER_AUTHOR "KOBIL Systems GmbH - http://www.kobil.com"
41#define DRIVER_DESC "KOBIL USB Smart Card Terminal Driver (experimental)"
42
43#define KOBIL_VENDOR_ID 0x0D46
44#define KOBIL_ADAPTER_B_PRODUCT_ID 0x2011
45#define KOBIL_ADAPTER_K_PRODUCT_ID 0x2012
46#define KOBIL_USBTWIN_PRODUCT_ID 0x0078
47#define KOBIL_KAAN_SIM_PRODUCT_ID 0x0081
48
49#define KOBIL_TIMEOUT 500
50#define KOBIL_BUF_LENGTH 300
51
52
53/* Function prototypes */
Johan Hovold95940a02012-10-17 13:35:02 +020054static int kobil_port_probe(struct usb_serial_port *probe);
55static int kobil_port_remove(struct usb_serial_port *probe);
Alan Coxa509a7e2009-09-19 13:13:26 -070056static int kobil_open(struct tty_struct *tty, struct usb_serial_port *port);
Alan Cox335f8512009-06-11 12:26:29 +010057static void kobil_close(struct usb_serial_port *port);
Alan Coxdee0a7c2008-07-22 11:14:10 +010058static int kobil_write(struct tty_struct *tty, struct usb_serial_port *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 const unsigned char *buf, int count);
Alan Cox95da3102008-07-22 11:09:07 +010060static int kobil_write_room(struct tty_struct *tty);
Alan Cox00a0d0d2011-02-14 16:27:06 +000061static int kobil_ioctl(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 unsigned int cmd, unsigned long arg);
Alan Cox60b33c12011-02-14 16:26:14 +000063static int kobil_tiocmget(struct tty_struct *tty);
Alan Cox20b9d172011-02-14 16:26:50 +000064static int kobil_tiocmset(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 unsigned int set, unsigned int clear);
Alan Coxdee0a7c2008-07-22 11:14:10 +010066static void kobil_read_int_callback(struct urb *urb);
Johan Hovoldfeb0a362013-04-16 18:01:26 +020067static void kobil_write_int_callback(struct urb *urb);
Alan Coxdee0a7c2008-07-22 11:14:10 +010068static void kobil_set_termios(struct tty_struct *tty,
Alan Cox95da3102008-07-22 11:09:07 +010069 struct usb_serial_port *port, struct ktermios *old);
Alan Coxfe1ae7f2009-09-19 13:13:33 -070070static void kobil_init_termios(struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Németh Márton7d40d7e2010-01-10 15:34:24 +010072static const struct usb_device_id id_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_ADAPTER_B_PRODUCT_ID) },
74 { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_ADAPTER_K_PRODUCT_ID) },
75 { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_USBTWIN_PRODUCT_ID) },
76 { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_KAAN_SIM_PRODUCT_ID) },
77 { } /* Terminating entry */
78};
Alan Coxdee0a7c2008-07-22 11:14:10 +010079MODULE_DEVICE_TABLE(usb, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -070081static struct usb_serial_driver kobil_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070082 .driver = {
83 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070084 .name = "kobil",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070085 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -070086 .description = "KOBIL USB smart card terminal",
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 .id_table = id_table,
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 .num_ports = 1,
Johan Hovold95940a02012-10-17 13:35:02 +020089 .port_probe = kobil_port_probe,
90 .port_remove = kobil_port_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 .ioctl = kobil_ioctl,
Alan Cox94d0f7e2007-08-22 23:09:16 +010092 .set_termios = kobil_set_termios,
Alan Coxfe1ae7f2009-09-19 13:13:33 -070093 .init_termios = kobil_init_termios,
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 .tiocmget = kobil_tiocmget,
95 .tiocmset = kobil_tiocmset,
96 .open = kobil_open,
97 .close = kobil_close,
98 .write = kobil_write,
99 .write_room = kobil_write_room,
100 .read_int_callback = kobil_read_int_callback,
Johan Hovoldfeb0a362013-04-16 18:01:26 +0200101 .write_int_callback = kobil_write_int_callback,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102};
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 {
Alan Coxdee0a7c2008-07-22 11:14:10 +0100109 unsigned char buf[KOBIL_BUF_LENGTH]; /* buffer for the APDU to send */
110 int filled; /* index of the last char in buf */
111 int cur_pos; /* index of the next char to send in buf */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 __u16 device_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113};
114
115
Johan Hovold95940a02012-10-17 13:35:02 +0200116static int kobil_port_probe(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
Johan Hovold95940a02012-10-17 13:35:02 +0200118 struct usb_serial *serial = port->serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 struct kobil_private *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121 priv = kmalloc(sizeof(struct kobil_private), GFP_KERNEL);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100122 if (!priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 priv->filled = 0;
126 priv->cur_pos = 0;
127 priv->device_type = le16_to_cpu(serial->dev->descriptor.idProduct);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Alan Coxdee0a7c2008-07-22 11:14:10 +0100129 switch (priv->device_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 case KOBIL_ADAPTER_B_PRODUCT_ID:
Greg Kroah-Hartman6c27ad82012-09-18 17:03:31 +0100131 dev_dbg(&serial->dev->dev, "KOBIL B1 PRO / KAAN PRO detected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 break;
133 case KOBIL_ADAPTER_K_PRODUCT_ID:
Greg Kroah-Hartman6c27ad82012-09-18 17:03:31 +0100134 dev_dbg(&serial->dev->dev, "KOBIL KAAN Standard Plus / SecOVID Reader Plus detected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 break;
136 case KOBIL_USBTWIN_PRODUCT_ID:
Greg Kroah-Hartman6c27ad82012-09-18 17:03:31 +0100137 dev_dbg(&serial->dev->dev, "KOBIL USBTWIN detected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 break;
139 case KOBIL_KAAN_SIM_PRODUCT_ID:
Greg Kroah-Hartman6c27ad82012-09-18 17:03:31 +0100140 dev_dbg(&serial->dev->dev, "KOBIL KAAN SIM detected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 break;
142 }
Johan Hovold95940a02012-10-17 13:35:02 +0200143 usb_set_serial_port_data(port, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 return 0;
146}
147
148
Johan Hovold95940a02012-10-17 13:35:02 +0200149static int kobil_port_remove(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
Johan Hovold95940a02012-10-17 13:35:02 +0200151 struct kobil_private *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Johan Hovold95940a02012-10-17 13:35:02 +0200153 priv = usb_get_serial_port_data(port);
154 kfree(priv);
155
156 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700159static void kobil_init_termios(struct tty_struct *tty)
160{
161 /* Default to echo off and other sane device settings */
Alan Coxadc8d742012-07-14 15:31:47 +0100162 tty->termios.c_lflag = 0;
Alan Cox6a6c8b32012-07-14 15:32:50 +0100163 tty->termios.c_iflag &= ~(ISIG | ICANON | ECHO | IEXTEN | XCASE);
164 tty->termios.c_iflag |= IGNBRK | IGNPAR | IXOFF;
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700165 /* do NOT translate CR to CR-NL (0x0A -> 0x0A 0x0D) */
Alan Coxadc8d742012-07-14 15:31:47 +0100166 tty->termios.c_oflag &= ~ONLCR;
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700167}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Alan Coxa509a7e2009-09-19 13:13:26 -0700169static int kobil_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700171 struct device *dev = &port->dev;
Alan Cox94d0f7e2007-08-22 23:09:16 +0100172 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 struct kobil_private *priv;
174 unsigned char *transfer_buffer;
175 int transfer_buffer_length = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 priv = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Alan Coxdee0a7c2008-07-22 11:14:10 +0100179 /* allocate memory for transfer buffer */
180 transfer_buffer = kzalloc(transfer_buffer_length, GFP_KERNEL);
181 if (!transfer_buffer)
182 return -ENOMEM;
183
Alan Coxdee0a7c2008-07-22 11:14:10 +0100184 /* get hardware version */
185 result = usb_control_msg(port->serial->dev,
186 usb_rcvctrlpipe(port->serial->dev, 0),
187 SUSBCRequest_GetMisc,
188 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_IN,
189 SUSBCR_MSC_GetHWVersion,
190 0,
191 transfer_buffer,
192 transfer_buffer_length,
193 KOBIL_TIMEOUT
194 );
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700195 dev_dbg(dev, "%s - Send get_HW_version URB returns: %i\n", __func__, result);
Masanari Iida8faaaea2014-01-07 21:58:06 +0900196 dev_dbg(dev, "Hardware version: %i.%i.%i\n", transfer_buffer[0],
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700197 transfer_buffer[1], transfer_buffer[2]);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100198
199 /* get firmware version */
200 result = usb_control_msg(port->serial->dev,
201 usb_rcvctrlpipe(port->serial->dev, 0),
202 SUSBCRequest_GetMisc,
203 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_IN,
204 SUSBCR_MSC_GetFWVersion,
205 0,
206 transfer_buffer,
207 transfer_buffer_length,
208 KOBIL_TIMEOUT
209 );
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700210 dev_dbg(dev, "%s - Send get_FW_version URB returns: %i\n", __func__, result);
211 dev_dbg(dev, "Firmware version: %i.%i.%i\n", transfer_buffer[0],
212 transfer_buffer[1], transfer_buffer[2]);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100213
214 if (priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID ||
215 priv->device_type == KOBIL_ADAPTER_K_PRODUCT_ID) {
216 /* Setting Baudrate, Parity and Stopbits */
217 result = usb_control_msg(port->serial->dev,
Johan Hovold90419cf2014-05-26 19:23:35 +0200218 usb_sndctrlpipe(port->serial->dev, 0),
Alan Coxdee0a7c2008-07-22 11:14:10 +0100219 SUSBCRequest_SetBaudRateParityAndStopBits,
220 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
221 SUSBCR_SBR_9600 | SUSBCR_SPASB_EvenParity |
222 SUSBCR_SPASB_1StopBit,
223 0,
Johan Hovold90419cf2014-05-26 19:23:35 +0200224 NULL,
Alan Coxdee0a7c2008-07-22 11:14:10 +0100225 0,
226 KOBIL_TIMEOUT
227 );
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700228 dev_dbg(dev, "%s - Send set_baudrate URB returns: %i\n", __func__, result);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100229
230 /* reset all queues */
231 result = usb_control_msg(port->serial->dev,
Johan Hovold90419cf2014-05-26 19:23:35 +0200232 usb_sndctrlpipe(port->serial->dev, 0),
Alan Coxdee0a7c2008-07-22 11:14:10 +0100233 SUSBCRequest_Misc,
234 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
235 SUSBCR_MSC_ResetAllQueues,
236 0,
Johan Hovold90419cf2014-05-26 19:23:35 +0200237 NULL,
Alan Coxdee0a7c2008-07-22 11:14:10 +0100238 0,
239 KOBIL_TIMEOUT
240 );
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700241 dev_dbg(dev, "%s - Send reset_all_queues URB returns: %i\n", __func__, result);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100242 }
243 if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID ||
244 priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) {
Alan Coxdee0a7c2008-07-22 11:14:10 +0100246 /* start reading (Adapter B 'cause PNP string) */
Johan Hovold811c3702014-10-29 09:07:32 +0100247 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700248 dev_dbg(dev, "%s - Send read URB returns: %i\n", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 }
250
251 kfree(transfer_buffer);
252 return 0;
253}
254
255
Alan Cox335f8512009-06-11 12:26:29 +0100256static void kobil_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
Alan Cox335f8512009-06-11 12:26:29 +0100258 /* FIXME: Add rts/dtr methods */
Johan Hovoldfeb0a362013-04-16 18:01:26 +0200259 usb_kill_urb(port->interrupt_out_urb);
Mariusz Kozlowski5505c222006-11-08 15:36:38 +0100260 usb_kill_urb(port->interrupt_in_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261}
262
263
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700264static void kobil_read_int_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 int result;
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700267 struct usb_serial_port *port = urb->context;
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700268 unsigned char *data = urb->transfer_buffer;
269 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700271 if (status) {
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700272 dev_dbg(&port->dev, "%s - Read int status not zero: %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 return;
274 }
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700275
Jiri Slaby2e124b42013-01-03 15:53:06 +0100276 if (urb->actual_length) {
Johan Hovold8e34c6c2013-04-16 18:01:24 +0200277 usb_serial_debug_data(&port->dev, __func__, urb->actual_length,
278 data);
Jiri Slaby05c7cd32013-01-03 15:53:04 +0100279 tty_insert_flip_string(&port->port, data, urb->actual_length);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100280 tty_flip_buffer_push(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Greg Kroah-Hartman6fcdcf02007-06-15 15:44:13 -0700283 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700284 dev_dbg(&port->dev, "%s - Send read URB returns: %i\n", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
286
287
Johan Hovoldfeb0a362013-04-16 18:01:26 +0200288static void kobil_write_int_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
290}
291
292
Alan Coxdee0a7c2008-07-22 11:14:10 +0100293static int kobil_write(struct tty_struct *tty, struct usb_serial_port *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 const unsigned char *buf, int count)
295{
296 int length = 0;
297 int result = 0;
298 int todo = 0;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100299 struct kobil_private *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 if (count == 0) {
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700302 dev_dbg(&port->dev, "%s - write request of 0 bytes\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 return 0;
304 }
305
306 priv = usb_get_serial_port_data(port);
307
308 if (count > (KOBIL_BUF_LENGTH - priv->filled)) {
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700309 dev_dbg(&port->dev, "%s - Error: write request bigger than buffer size\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 return -ENOMEM;
311 }
312
Alan Coxdee0a7c2008-07-22 11:14:10 +0100313 /* Copy data to buffer */
314 memcpy(priv->buf + priv->filled, buf, count);
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100315 usb_serial_debug_data(&port->dev, __func__, count, priv->buf + priv->filled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 priv->filled = priv->filled + count;
317
Alan Coxdee0a7c2008-07-22 11:14:10 +0100318 /* only send complete block. TWIN, KAAN SIM and adapter K
319 use the same protocol. */
320 if (((priv->device_type != KOBIL_ADAPTER_B_PRODUCT_ID) && (priv->filled > 2) && (priv->filled >= (priv->buf[1] + 3))) ||
321 ((priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID) && (priv->filled > 3) && (priv->filled >= (priv->buf[2] + 4)))) {
322 /* stop reading (except TWIN and KAAN SIM) */
323 if ((priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID)
324 || (priv->device_type == KOBIL_ADAPTER_K_PRODUCT_ID))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 usb_kill_urb(port->interrupt_in_urb);
326
327 todo = priv->filled - priv->cur_pos;
328
Alan Coxdee0a7c2008-07-22 11:14:10 +0100329 while (todo > 0) {
330 /* max 8 byte in one urb (endpoint size) */
Johan Hovoldfeb0a362013-04-16 18:01:26 +0200331 length = min(todo, port->interrupt_out_size);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100332 /* copy data to transfer buffer */
Johan Hovoldfeb0a362013-04-16 18:01:26 +0200333 memcpy(port->interrupt_out_buffer,
Alan Coxdee0a7c2008-07-22 11:14:10 +0100334 priv->buf + priv->cur_pos, length);
Johan Hovoldfeb0a362013-04-16 18:01:26 +0200335 port->interrupt_out_urb->transfer_buffer_length = length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337 priv->cur_pos = priv->cur_pos + length;
Johan Hovold19125282014-10-29 09:07:30 +0100338 result = usb_submit_urb(port->interrupt_out_urb,
339 GFP_ATOMIC);
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700340 dev_dbg(&port->dev, "%s - Send write URB returns: %i\n", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 todo = priv->filled - priv->cur_pos;
342
Alan Coxdee0a7c2008-07-22 11:14:10 +0100343 if (todo > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 msleep(24);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 priv->filled = 0;
348 priv->cur_pos = 0;
349
Alan Coxdee0a7c2008-07-22 11:14:10 +0100350 /* start reading (except TWIN and KAAN SIM) */
351 if (priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID ||
352 priv->device_type == KOBIL_ADAPTER_K_PRODUCT_ID) {
Alan Coxdee0a7c2008-07-22 11:14:10 +0100353 result = usb_submit_urb(port->interrupt_in_urb,
Johan Hovold19125282014-10-29 09:07:30 +0100354 GFP_ATOMIC);
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700355 dev_dbg(&port->dev, "%s - Send read URB returns: %i\n", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 }
357 }
358 return count;
359}
360
361
Alan Coxdee0a7c2008-07-22 11:14:10 +0100362static int kobil_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Alan Cox95da3102008-07-22 11:09:07 +0100364 /* FIXME */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 return 8;
366}
367
368
Alan Cox60b33c12011-02-14 16:26:14 +0000369static int kobil_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
Alan Cox95da3102008-07-22 11:09:07 +0100371 struct usb_serial_port *port = tty->driver_data;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100372 struct kobil_private *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 int result;
374 unsigned char *transfer_buffer;
375 int transfer_buffer_length = 8;
376
377 priv = usb_get_serial_port_data(port);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100378 if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID
379 || priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) {
380 /* This device doesn't support ioctl calls */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 return -EINVAL;
382 }
383
Alan Coxdee0a7c2008-07-22 11:14:10 +0100384 /* allocate memory for transfer buffer */
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100385 transfer_buffer = kzalloc(transfer_buffer_length, GFP_KERNEL);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100386 if (!transfer_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Alan Coxdee0a7c2008-07-22 11:14:10 +0100389 result = usb_control_msg(port->serial->dev,
390 usb_rcvctrlpipe(port->serial->dev, 0),
391 SUSBCRequest_GetStatusLineState,
392 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_IN,
393 0,
394 0,
395 transfer_buffer,
396 transfer_buffer_length,
397 KOBIL_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700399 dev_dbg(&port->dev, "%s - Send get_status_line_state URB returns: %i. Statusline: %02x\n",
400 __func__, result, transfer_buffer[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Alan Coxa40d8542008-02-20 21:40:34 +0000402 result = 0;
403 if ((transfer_buffer[0] & SUSBCR_GSL_DSR) != 0)
404 result = TIOCM_DSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 kfree(transfer_buffer);
Alan Coxa40d8542008-02-20 21:40:34 +0000406 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407}
408
Alan Cox20b9d172011-02-14 16:26:50 +0000409static int kobil_tiocmset(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 unsigned int set, unsigned int clear)
411{
Alan Cox95da3102008-07-22 11:09:07 +0100412 struct usb_serial_port *port = tty->driver_data;
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700413 struct device *dev = &port->dev;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100414 struct kobil_private *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 int result;
416 int dtr = 0;
417 int rts = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Alan Coxa40d8542008-02-20 21:40:34 +0000419 /* FIXME: locking ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 priv = usb_get_serial_port_data(port);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100421 if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID
422 || priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) {
423 /* This device doesn't support ioctl calls */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return -EINVAL;
425 }
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 if (set & TIOCM_RTS)
428 rts = 1;
429 if (set & TIOCM_DTR)
430 dtr = 1;
431 if (clear & TIOCM_RTS)
432 rts = 0;
433 if (clear & TIOCM_DTR)
434 dtr = 0;
435
436 if (priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID) {
437 if (dtr != 0)
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700438 dev_dbg(dev, "%s - Setting DTR\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 else
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700440 dev_dbg(dev, "%s - Clearing DTR\n", __func__);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100441 result = usb_control_msg(port->serial->dev,
Johan Hovold90419cf2014-05-26 19:23:35 +0200442 usb_sndctrlpipe(port->serial->dev, 0),
Alan Coxdee0a7c2008-07-22 11:14:10 +0100443 SUSBCRequest_SetStatusLinesOrQueues,
444 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
445 ((dtr != 0) ? SUSBCR_SSL_SETDTR : SUSBCR_SSL_CLRDTR),
446 0,
Johan Hovold90419cf2014-05-26 19:23:35 +0200447 NULL,
Alan Coxdee0a7c2008-07-22 11:14:10 +0100448 0,
449 KOBIL_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 } else {
451 if (rts != 0)
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700452 dev_dbg(dev, "%s - Setting RTS\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 else
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700454 dev_dbg(dev, "%s - Clearing RTS\n", __func__);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100455 result = usb_control_msg(port->serial->dev,
Johan Hovold90419cf2014-05-26 19:23:35 +0200456 usb_sndctrlpipe(port->serial->dev, 0),
Alan Coxdee0a7c2008-07-22 11:14:10 +0100457 SUSBCRequest_SetStatusLinesOrQueues,
458 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
459 ((rts != 0) ? SUSBCR_SSL_SETRTS : SUSBCR_SSL_CLRRTS),
460 0,
Johan Hovold90419cf2014-05-26 19:23:35 +0200461 NULL,
Alan Coxdee0a7c2008-07-22 11:14:10 +0100462 0,
463 KOBIL_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 }
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700465 dev_dbg(dev, "%s - Send set_status_line URB returns: %i\n", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 return (result < 0) ? result : 0;
467}
468
Alan Cox95da3102008-07-22 11:09:07 +0100469static void kobil_set_termios(struct tty_struct *tty,
470 struct usb_serial_port *port, struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
Alan Coxdee0a7c2008-07-22 11:14:10 +0100472 struct kobil_private *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 int result;
474 unsigned short urb_val = 0;
Alan Coxadc8d742012-07-14 15:31:47 +0100475 int c_cflag = tty->termios.c_cflag;
Alan Cox94d0f7e2007-08-22 23:09:16 +0100476 speed_t speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 priv = usb_get_serial_port_data(port);
Alan Coxdee0a7c2008-07-22 11:14:10 +0100479 if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID ||
Alan Coxb31f6582008-07-22 11:14:22 +0100480 priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) {
Alan Coxdee0a7c2008-07-22 11:14:10 +0100481 /* This device doesn't support ioctl calls */
Alan Cox6a6c8b32012-07-14 15:32:50 +0100482 tty_termios_copy_hw(&tty->termios, old);
Alan Cox94d0f7e2007-08-22 23:09:16 +0100483 return;
Alan Coxb31f6582008-07-22 11:14:22 +0100484 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Alan Coxdee0a7c2008-07-22 11:14:10 +0100486 speed = tty_get_baud_rate(tty);
487 switch (speed) {
488 case 1200:
489 urb_val = SUSBCR_SBR_1200;
490 break;
491 default:
492 speed = 9600;
493 case 9600:
494 urb_val = SUSBCR_SBR_9600;
495 break;
Alan Cox94d0f7e2007-08-22 23:09:16 +0100496 }
Alan Coxdee0a7c2008-07-22 11:14:10 +0100497 urb_val |= (c_cflag & CSTOPB) ? SUSBCR_SPASB_2StopBits :
498 SUSBCR_SPASB_1StopBit;
Alan Cox94d0f7e2007-08-22 23:09:16 +0100499 if (c_cflag & PARENB) {
Johan Hovold96679f62009-12-28 23:01:58 +0100500 if (c_cflag & PARODD)
Alan Cox94d0f7e2007-08-22 23:09:16 +0100501 urb_val |= SUSBCR_SPASB_OddParity;
Johan Hovold96679f62009-12-28 23:01:58 +0100502 else
Alan Cox94d0f7e2007-08-22 23:09:16 +0100503 urb_val |= SUSBCR_SPASB_EvenParity;
Johan Hovold96679f62009-12-28 23:01:58 +0100504 } else
Alan Cox94d0f7e2007-08-22 23:09:16 +0100505 urb_val |= SUSBCR_SPASB_NoParity;
Alan Coxadc8d742012-07-14 15:31:47 +0100506 tty->termios.c_cflag &= ~CMSPAR;
Alan Cox95da3102008-07-22 11:09:07 +0100507 tty_encode_baud_rate(tty, speed, speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Alan Coxdee0a7c2008-07-22 11:14:10 +0100509 result = usb_control_msg(port->serial->dev,
Johan Hovold90419cf2014-05-26 19:23:35 +0200510 usb_sndctrlpipe(port->serial->dev, 0),
Alan Coxdee0a7c2008-07-22 11:14:10 +0100511 SUSBCRequest_SetBaudRateParityAndStopBits,
512 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
513 urb_val,
514 0,
Johan Hovold96679f62009-12-28 23:01:58 +0100515 NULL,
Alan Coxdee0a7c2008-07-22 11:14:10 +0100516 0,
517 KOBIL_TIMEOUT
Alan Cox94d0f7e2007-08-22 23:09:16 +0100518 );
Alan Cox94d0f7e2007-08-22 23:09:16 +0100519}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Alan Cox00a0d0d2011-02-14 16:27:06 +0000521static int kobil_ioctl(struct tty_struct *tty,
Alan Coxdee0a7c2008-07-22 11:14:10 +0100522 unsigned int cmd, unsigned long arg)
Alan Cox94d0f7e2007-08-22 23:09:16 +0100523{
Alan Cox95da3102008-07-22 11:09:07 +0100524 struct usb_serial_port *port = tty->driver_data;
Alan Coxdee0a7c2008-07-22 11:14:10 +0100525 struct kobil_private *priv = usb_get_serial_port_data(port);
Alan Cox94d0f7e2007-08-22 23:09:16 +0100526 int result;
527
Alan Coxdee0a7c2008-07-22 11:14:10 +0100528 if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID ||
529 priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID)
530 /* This device doesn't support ioctl calls */
Alan Coxb31f6582008-07-22 11:14:22 +0100531 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Alan Cox94d0f7e2007-08-22 23:09:16 +0100533 switch (cmd) {
Alan Cox95da3102008-07-22 11:09:07 +0100534 case TCFLSH:
Alan Coxdee0a7c2008-07-22 11:14:10 +0100535 result = usb_control_msg(port->serial->dev,
Johan Hovold90419cf2014-05-26 19:23:35 +0200536 usb_sndctrlpipe(port->serial->dev, 0),
Alan Coxdee0a7c2008-07-22 11:14:10 +0100537 SUSBCRequest_Misc,
538 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
539 SUSBCR_MSC_ResetAllQueues,
540 0,
Johan Hovold90419cf2014-05-26 19:23:35 +0200541 NULL,
Alan Coxdee0a7c2008-07-22 11:14:10 +0100542 0,
543 KOBIL_TIMEOUT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 );
Alan Coxdee0a7c2008-07-22 11:14:10 +0100545
Greg Kroah-Hartmanb12f7a12012-09-14 12:06:55 -0700546 dev_dbg(&port->dev,
Johan Hovoldd9a38a82014-03-12 19:09:42 +0100547 "%s - Send reset_all_queues (FLUSH) URB returns: %i\n",
548 __func__, result);
Alan Cox95da3102008-07-22 11:09:07 +0100549 return (result < 0) ? -EIO: 0;
Alan Cox94d0f7e2007-08-22 23:09:16 +0100550 default:
551 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
554
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700555module_usb_serial_driver(serial_drivers, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Alan Coxdee0a7c2008-07-22 11:14:10 +0100557MODULE_AUTHOR(DRIVER_AUTHOR);
558MODULE_DESCRIPTION(DRIVER_DESC);
559MODULE_LICENSE("GPL");