kobil_sct.c 15.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
/*
 *  KOBIL USB Smart Card Terminal Driver
 *
A
Alan Cox 已提交
4
 *  Copyright (C) 2002  KOBIL Systems GmbH
L
Linus Torvalds 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
 *  Author: Thomas Wahrenbruch
 *
 *  Contact: linuxusb@kobil.de
 *
 *  This program is largely derived from work by the linux-usb group
 *  and associated source files.  Please see the usb/serial files for
 *  individual credits and copyrights.
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  Thanks to Greg Kroah-Hartman (greg@kroah.com) for his help and
 *  patience.
 *
 * Supported readers: USB TWIN, KAAN Standard Plus and SecOVID Reader Plus
 * (Adapter K), B1 Professional and KAAN Professional (Adapter B)
 */


#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/slab.h>
#include <linux/tty.h>
#include <linux/tty_driver.h>
#include <linux/tty_flip.h>
#include <linux/module.h>
#include <linux/spinlock.h>
A
Alan Cox 已提交
34
#include <linux/uaccess.h>
L
Linus Torvalds 已提交
35
#include <linux/usb.h>
36
#include <linux/usb/serial.h>
L
Linus Torvalds 已提交
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
#include <linux/ioctl.h>
#include "kobil_sct.h"

#define DRIVER_AUTHOR "KOBIL Systems GmbH - http://www.kobil.com"
#define DRIVER_DESC "KOBIL USB Smart Card Terminal Driver (experimental)"

#define KOBIL_VENDOR_ID			0x0D46
#define KOBIL_ADAPTER_B_PRODUCT_ID	0x2011
#define KOBIL_ADAPTER_K_PRODUCT_ID	0x2012
#define KOBIL_USBTWIN_PRODUCT_ID	0x0078
#define KOBIL_KAAN_SIM_PRODUCT_ID       0x0081

#define KOBIL_TIMEOUT		500
#define KOBIL_BUF_LENGTH	300


/* Function prototypes */
54 55
static int kobil_port_probe(struct usb_serial_port *probe);
static int kobil_port_remove(struct usb_serial_port *probe);
56
static int  kobil_open(struct tty_struct *tty, struct usb_serial_port *port);
57
static void kobil_close(struct usb_serial_port *port);
A
Alan Cox 已提交
58
static int  kobil_write(struct tty_struct *tty, struct usb_serial_port *port,
L
Linus Torvalds 已提交
59
			 const unsigned char *buf, int count);
A
Alan Cox 已提交
60
static int  kobil_write_room(struct tty_struct *tty);
61
static int  kobil_ioctl(struct tty_struct *tty,
L
Linus Torvalds 已提交
62
			unsigned int cmd, unsigned long arg);
63
static int  kobil_tiocmget(struct tty_struct *tty);
64
static int  kobil_tiocmset(struct tty_struct *tty,
L
Linus Torvalds 已提交
65
			   unsigned int set, unsigned int clear);
A
Alan Cox 已提交
66
static void kobil_read_int_callback(struct urb *urb);
67
static void kobil_write_int_callback(struct urb *urb);
A
Alan Cox 已提交
68
static void kobil_set_termios(struct tty_struct *tty,
A
Alan Cox 已提交
69
			struct usb_serial_port *port, struct ktermios *old);
A
Alan Cox 已提交
70
static void kobil_init_termios(struct tty_struct *tty);
L
Linus Torvalds 已提交
71

72
static const struct usb_device_id id_table[] = {
L
Linus Torvalds 已提交
73 74 75 76 77 78
	{ USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_ADAPTER_B_PRODUCT_ID) },
	{ USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_ADAPTER_K_PRODUCT_ID) },
	{ USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_USBTWIN_PRODUCT_ID) },
	{ USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_KAAN_SIM_PRODUCT_ID) },
	{ }			/* Terminating entry */
};
A
Alan Cox 已提交
79
MODULE_DEVICE_TABLE(usb, id_table);
L
Linus Torvalds 已提交
80

81
static struct usb_serial_driver kobil_device = {
82 83
	.driver = {
		.owner =	THIS_MODULE,
84
		.name =		"kobil",
85
	},
86
	.description =		"KOBIL USB smart card terminal",
L
Linus Torvalds 已提交
87 88
	.id_table =		id_table,
	.num_ports =		1,
89 90
	.port_probe =		kobil_port_probe,
	.port_remove =		kobil_port_remove,
L
Linus Torvalds 已提交
91
	.ioctl =		kobil_ioctl,
A
Alan Cox 已提交
92
	.set_termios =		kobil_set_termios,
A
Alan Cox 已提交
93
	.init_termios =		kobil_init_termios,
L
Linus Torvalds 已提交
94 95 96 97 98 99 100
	.tiocmget =		kobil_tiocmget,
	.tiocmset =		kobil_tiocmset,
	.open =			kobil_open,
	.close =		kobil_close,
	.write =		kobil_write,
	.write_room =		kobil_write_room,
	.read_int_callback =	kobil_read_int_callback,
101
	.write_int_callback =	kobil_write_int_callback,
L
Linus Torvalds 已提交
102 103
};

104 105 106
static struct usb_serial_driver * const serial_drivers[] = {
	&kobil_device, NULL
};
L
Linus Torvalds 已提交
107 108

struct kobil_private {
A
Alan Cox 已提交
109 110 111
	unsigned char buf[KOBIL_BUF_LENGTH]; /* buffer for the APDU to send */
	int filled;  /* index of the last char in buf */
	int cur_pos; /* index of the next char to send in buf */
L
Linus Torvalds 已提交
112 113 114 115
	__u16 device_type;
};


116
static int kobil_port_probe(struct usb_serial_port *port)
L
Linus Torvalds 已提交
117
{
118
	struct usb_serial *serial = port->serial;
L
Linus Torvalds 已提交
119 120 121
	struct kobil_private *priv;

	priv = kmalloc(sizeof(struct kobil_private), GFP_KERNEL);
A
Alan Cox 已提交
122
	if (!priv)
L
Linus Torvalds 已提交
123 124 125 126 127 128
		return -ENOMEM;

	priv->filled = 0;
	priv->cur_pos = 0;
	priv->device_type = le16_to_cpu(serial->dev->descriptor.idProduct);

A
Alan Cox 已提交
129
	switch (priv->device_type) {
L
Linus Torvalds 已提交
130
	case KOBIL_ADAPTER_B_PRODUCT_ID:
131
		dev_dbg(&serial->dev->dev, "KOBIL B1 PRO / KAAN PRO detected\n");
L
Linus Torvalds 已提交
132 133
		break;
	case KOBIL_ADAPTER_K_PRODUCT_ID:
134
		dev_dbg(&serial->dev->dev, "KOBIL KAAN Standard Plus / SecOVID Reader Plus detected\n");
L
Linus Torvalds 已提交
135 136
		break;
	case KOBIL_USBTWIN_PRODUCT_ID:
137
		dev_dbg(&serial->dev->dev, "KOBIL USBTWIN detected\n");
L
Linus Torvalds 已提交
138 139
		break;
	case KOBIL_KAAN_SIM_PRODUCT_ID:
140
		dev_dbg(&serial->dev->dev, "KOBIL KAAN SIM detected\n");
L
Linus Torvalds 已提交
141 142
		break;
	}
143
	usb_set_serial_port_data(port, priv);
L
Linus Torvalds 已提交
144 145 146 147 148

	return 0;
}


149
static int kobil_port_remove(struct usb_serial_port *port)
L
Linus Torvalds 已提交
150
{
151
	struct kobil_private *priv;
L
Linus Torvalds 已提交
152

153 154 155 156
	priv = usb_get_serial_port_data(port);
	kfree(priv);

	return 0;
L
Linus Torvalds 已提交
157 158
}

A
Alan Cox 已提交
159 160 161
static void kobil_init_termios(struct tty_struct *tty)
{
	/* Default to echo off and other sane device settings */
162
	tty->termios.c_lflag = 0;
163 164
	tty->termios.c_iflag &= ~(ISIG | ICANON | ECHO | IEXTEN | XCASE);
	tty->termios.c_iflag |= IGNBRK | IGNPAR | IXOFF;
A
Alan Cox 已提交
165
	/* do NOT translate CR to CR-NL (0x0A -> 0x0A 0x0D) */
166
	tty->termios.c_oflag &= ~ONLCR;
A
Alan Cox 已提交
167
}
L
Linus Torvalds 已提交
168

169
static int kobil_open(struct tty_struct *tty, struct usb_serial_port *port)
L
Linus Torvalds 已提交
170
{
171
	struct device *dev = &port->dev;
A
Alan Cox 已提交
172
	int result = 0;
L
Linus Torvalds 已提交
173 174 175 176 177 178
	struct kobil_private *priv;
	unsigned char *transfer_buffer;
	int transfer_buffer_length = 8;

	priv = usb_get_serial_port_data(port);

A
Alan Cox 已提交
179
	/* allocate memory for transfer buffer */
180
	transfer_buffer = kzalloc(transfer_buffer_length, GFP_KERNEL);
A
Alan Cox 已提交
181
	if (!transfer_buffer)
L
Linus Torvalds 已提交
182
		return -ENOMEM;
A
Alan Cox 已提交
183 184 185 186 187 188 189 190 191 192 193 194

	/* get hardware version */
	result = usb_control_msg(port->serial->dev,
			  usb_rcvctrlpipe(port->serial->dev, 0),
			  SUSBCRequest_GetMisc,
			  USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_IN,
			  SUSBCR_MSC_GetHWVersion,
			  0,
			  transfer_buffer,
			  transfer_buffer_length,
			  KOBIL_TIMEOUT
	);
195
	dev_dbg(dev, "%s - Send get_HW_version URB returns: %i\n", __func__, result);
196
	dev_dbg(dev, "Hardware version: %i.%i.%i\n", transfer_buffer[0],
197
		transfer_buffer[1], transfer_buffer[2]);
A
Alan Cox 已提交
198 199 200 201 202 203 204 205 206 207 208 209

	/* get firmware version */
	result = usb_control_msg(port->serial->dev,
			  usb_rcvctrlpipe(port->serial->dev, 0),
			  SUSBCRequest_GetMisc,
			  USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_IN,
			  SUSBCR_MSC_GetFWVersion,
			  0,
			  transfer_buffer,
			  transfer_buffer_length,
			  KOBIL_TIMEOUT
	);
210 211 212
	dev_dbg(dev, "%s - Send get_FW_version URB returns: %i\n", __func__, result);
	dev_dbg(dev, "Firmware version: %i.%i.%i\n", transfer_buffer[0],
		transfer_buffer[1], transfer_buffer[2]);
A
Alan Cox 已提交
213 214 215 216 217

	if (priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID ||
			priv->device_type == KOBIL_ADAPTER_K_PRODUCT_ID) {
		/* Setting Baudrate, Parity and Stopbits */
		result = usb_control_msg(port->serial->dev,
218
			  usb_sndctrlpipe(port->serial->dev, 0),
A
Alan Cox 已提交
219 220 221 222 223
			  SUSBCRequest_SetBaudRateParityAndStopBits,
			  USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
			  SUSBCR_SBR_9600 | SUSBCR_SPASB_EvenParity |
							SUSBCR_SPASB_1StopBit,
			  0,
224
			  NULL,
A
Alan Cox 已提交
225 226
			  0,
			  KOBIL_TIMEOUT
L
Linus Torvalds 已提交
227
		);
228
		dev_dbg(dev, "%s - Send set_baudrate URB returns: %i\n", __func__, result);
A
Alan Cox 已提交
229 230 231

		/* reset all queues */
		result = usb_control_msg(port->serial->dev,
232
			  usb_sndctrlpipe(port->serial->dev, 0),
A
Alan Cox 已提交
233 234 235 236
			  SUSBCRequest_Misc,
			  USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
			  SUSBCR_MSC_ResetAllQueues,
			  0,
237
			  NULL,
A
Alan Cox 已提交
238 239
			  0,
			  KOBIL_TIMEOUT
L
Linus Torvalds 已提交
240
		);
241
		dev_dbg(dev, "%s - Send reset_all_queues URB returns: %i\n", __func__, result);
L
Linus Torvalds 已提交
242
	}
A
Alan Cox 已提交
243 244
	if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID ||
	    priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID ||
L
Linus Torvalds 已提交
245
	    priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) {
A
Alan Cox 已提交
246 247
		/* start reading (Adapter B 'cause PNP string) */
		result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
248
		dev_dbg(dev, "%s - Send read URB returns: %i\n", __func__, result);
L
Linus Torvalds 已提交
249 250 251 252 253 254 255
	}

	kfree(transfer_buffer);
	return 0;
}


256
static void kobil_close(struct usb_serial_port *port)
L
Linus Torvalds 已提交
257
{
258
	/* FIXME: Add rts/dtr methods */
259
	usb_kill_urb(port->interrupt_out_urb);
260
	usb_kill_urb(port->interrupt_in_urb);
L
Linus Torvalds 已提交
261 262 263
}


264
static void kobil_read_int_callback(struct urb *urb)
L
Linus Torvalds 已提交
265 266
{
	int result;
267 268 269
	struct usb_serial_port *port = urb->context;
	unsigned char *data = urb->transfer_buffer;
	int status = urb->status;
L
Linus Torvalds 已提交
270

271
	if (status) {
272
		dev_dbg(&port->dev, "%s - Read int status not zero: %d\n", __func__, status);
L
Linus Torvalds 已提交
273 274
		return;
	}
275

J
Jiri Slaby 已提交
276
	if (urb->actual_length) {
277 278
		usb_serial_debug_data(&port->dev, __func__, urb->actual_length,
									data);
J
Jiri Slaby 已提交
279
		tty_insert_flip_string(&port->port, data, urb->actual_length);
J
Jiri Slaby 已提交
280
		tty_flip_buffer_push(&port->port);
L
Linus Torvalds 已提交
281 282
	}

283
	result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
284
	dev_dbg(&port->dev, "%s - Send read URB returns: %i\n", __func__, result);
L
Linus Torvalds 已提交
285 286 287
}


288
static void kobil_write_int_callback(struct urb *urb)
L
Linus Torvalds 已提交
289 290 291 292
{
}


A
Alan Cox 已提交
293
static int kobil_write(struct tty_struct *tty, struct usb_serial_port *port,
L
Linus Torvalds 已提交
294 295 296 297 298
			const unsigned char *buf, int count)
{
	int length = 0;
	int result = 0;
	int todo = 0;
A
Alan Cox 已提交
299
	struct kobil_private *priv;
L
Linus Torvalds 已提交
300 301

	if (count == 0) {
302
		dev_dbg(&port->dev, "%s - write request of 0 bytes\n", __func__);
L
Linus Torvalds 已提交
303 304 305 306 307 308
		return 0;
	}

	priv = usb_get_serial_port_data(port);

	if (count > (KOBIL_BUF_LENGTH - priv->filled)) {
309
		dev_dbg(&port->dev, "%s - Error: write request bigger than buffer size\n", __func__);
L
Linus Torvalds 已提交
310 311 312
		return -ENOMEM;
	}

A
Alan Cox 已提交
313 314
	/* Copy data to buffer */
	memcpy(priv->buf + priv->filled, buf, count);
315
	usb_serial_debug_data(&port->dev, __func__, count, priv->buf + priv->filled);
L
Linus Torvalds 已提交
316 317
	priv->filled = priv->filled + count;

A
Alan Cox 已提交
318 319 320 321 322 323 324
	/* only send complete block. TWIN, KAAN SIM and adapter K
	   use the same protocol. */
	if (((priv->device_type != KOBIL_ADAPTER_B_PRODUCT_ID) && (priv->filled > 2) && (priv->filled >= (priv->buf[1] + 3))) ||
	     ((priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID) && (priv->filled > 3) && (priv->filled >= (priv->buf[2] + 4)))) {
		/* stop reading (except TWIN and KAAN SIM) */
		if ((priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID)
			|| (priv->device_type == KOBIL_ADAPTER_K_PRODUCT_ID))
L
Linus Torvalds 已提交
325 326 327 328
			usb_kill_urb(port->interrupt_in_urb);

		todo = priv->filled - priv->cur_pos;

A
Alan Cox 已提交
329 330
		while (todo > 0) {
			/* max 8 byte in one urb (endpoint size) */
331
			length = min(todo, port->interrupt_out_size);
A
Alan Cox 已提交
332
			/* copy data to transfer buffer */
333
			memcpy(port->interrupt_out_buffer,
A
Alan Cox 已提交
334
					priv->buf + priv->cur_pos, length);
335
			port->interrupt_out_urb->transfer_buffer_length = length;
L
Linus Torvalds 已提交
336 337

			priv->cur_pos = priv->cur_pos + length;
338 339
			result = usb_submit_urb(port->interrupt_out_urb,
					GFP_ATOMIC);
340
			dev_dbg(&port->dev, "%s - Send write URB returns: %i\n", __func__, result);
L
Linus Torvalds 已提交
341 342
			todo = priv->filled - priv->cur_pos;

A
Alan Cox 已提交
343
			if (todo > 0)
L
Linus Torvalds 已提交
344
				msleep(24);
A
Alan Cox 已提交
345
		}
L
Linus Torvalds 已提交
346 347 348 349

		priv->filled = 0;
		priv->cur_pos = 0;

A
Alan Cox 已提交
350 351 352 353
		/* start reading (except TWIN and KAAN SIM) */
		if (priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID ||
			priv->device_type == KOBIL_ADAPTER_K_PRODUCT_ID) {
			result = usb_submit_urb(port->interrupt_in_urb,
354
					GFP_ATOMIC);
355
			dev_dbg(&port->dev, "%s - Send read URB returns: %i\n", __func__, result);
L
Linus Torvalds 已提交
356 357 358 359 360 361
		}
	}
	return count;
}


A
Alan Cox 已提交
362
static int kobil_write_room(struct tty_struct *tty)
L
Linus Torvalds 已提交
363
{
A
Alan Cox 已提交
364
	/* FIXME */
L
Linus Torvalds 已提交
365 366 367 368
	return 8;
}


369
static int kobil_tiocmget(struct tty_struct *tty)
L
Linus Torvalds 已提交
370
{
A
Alan Cox 已提交
371
	struct usb_serial_port *port = tty->driver_data;
A
Alan Cox 已提交
372
	struct kobil_private *priv;
L
Linus Torvalds 已提交
373 374 375 376 377
	int result;
	unsigned char *transfer_buffer;
	int transfer_buffer_length = 8;

	priv = usb_get_serial_port_data(port);
A
Alan Cox 已提交
378 379 380
	if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID
			|| priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) {
		/* This device doesn't support ioctl calls */
L
Linus Torvalds 已提交
381 382 383
		return -EINVAL;
	}

A
Alan Cox 已提交
384
	/* allocate memory for transfer buffer */
385
	transfer_buffer = kzalloc(transfer_buffer_length, GFP_KERNEL);
A
Alan Cox 已提交
386
	if (!transfer_buffer)
L
Linus Torvalds 已提交
387 388
		return -ENOMEM;

A
Alan Cox 已提交
389 390 391 392 393 394 395 396 397 398
	result = usb_control_msg(port->serial->dev,
			  usb_rcvctrlpipe(port->serial->dev, 0),
			  SUSBCRequest_GetStatusLineState,
			  USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_IN,
			  0,
			  0,
			  transfer_buffer,
			  transfer_buffer_length,
			  KOBIL_TIMEOUT);

399 400
	dev_dbg(&port->dev, "%s - Send get_status_line_state URB returns: %i. Statusline: %02x\n",
		__func__, result, transfer_buffer[0]);
L
Linus Torvalds 已提交
401

402 403 404
	result = 0;
	if ((transfer_buffer[0] & SUSBCR_GSL_DSR) != 0)
		result = TIOCM_DSR;
L
Linus Torvalds 已提交
405
	kfree(transfer_buffer);
406
	return result;
L
Linus Torvalds 已提交
407 408
}

409
static int kobil_tiocmset(struct tty_struct *tty,
L
Linus Torvalds 已提交
410 411
			   unsigned int set, unsigned int clear)
{
A
Alan Cox 已提交
412
	struct usb_serial_port *port = tty->driver_data;
413
	struct device *dev = &port->dev;
A
Alan Cox 已提交
414
	struct kobil_private *priv;
L
Linus Torvalds 已提交
415 416 417 418
	int result;
	int dtr = 0;
	int rts = 0;

419
	/* FIXME: locking ? */
L
Linus Torvalds 已提交
420
	priv = usb_get_serial_port_data(port);
A
Alan Cox 已提交
421 422 423
	if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID
		|| priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) {
		/* This device doesn't support ioctl calls */
L
Linus Torvalds 已提交
424 425 426 427 428 429 430 431 432 433 434 435 436 437
		return -EINVAL;
	}

	if (set & TIOCM_RTS)
		rts = 1;
	if (set & TIOCM_DTR)
		dtr = 1;
	if (clear & TIOCM_RTS)
		rts = 0;
	if (clear & TIOCM_DTR)
		dtr = 0;

	if (priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID) {
		if (dtr != 0)
438
			dev_dbg(dev, "%s - Setting DTR\n", __func__);
L
Linus Torvalds 已提交
439
		else
440
			dev_dbg(dev, "%s - Clearing DTR\n", __func__);
A
Alan Cox 已提交
441
		result = usb_control_msg(port->serial->dev,
442
			  usb_sndctrlpipe(port->serial->dev, 0),
A
Alan Cox 已提交
443 444 445 446
			  SUSBCRequest_SetStatusLinesOrQueues,
			  USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
			  ((dtr != 0) ? SUSBCR_SSL_SETDTR : SUSBCR_SSL_CLRDTR),
			  0,
447
			  NULL,
A
Alan Cox 已提交
448 449
			  0,
			  KOBIL_TIMEOUT);
L
Linus Torvalds 已提交
450 451
	} else {
		if (rts != 0)
452
			dev_dbg(dev, "%s - Setting RTS\n", __func__);
L
Linus Torvalds 已提交
453
		else
454
			dev_dbg(dev, "%s - Clearing RTS\n", __func__);
A
Alan Cox 已提交
455
		result = usb_control_msg(port->serial->dev,
456
			usb_sndctrlpipe(port->serial->dev, 0),
A
Alan Cox 已提交
457 458 459 460
			SUSBCRequest_SetStatusLinesOrQueues,
			USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
			((rts != 0) ? SUSBCR_SSL_SETRTS : SUSBCR_SSL_CLRRTS),
			0,
461
			NULL,
A
Alan Cox 已提交
462 463
			0,
			KOBIL_TIMEOUT);
L
Linus Torvalds 已提交
464
	}
465
	dev_dbg(dev, "%s - Send set_status_line URB returns: %i\n", __func__, result);
L
Linus Torvalds 已提交
466 467 468
	return (result < 0) ? result : 0;
}

A
Alan Cox 已提交
469 470
static void kobil_set_termios(struct tty_struct *tty,
			struct usb_serial_port *port, struct ktermios *old)
L
Linus Torvalds 已提交
471
{
A
Alan Cox 已提交
472
	struct kobil_private *priv;
L
Linus Torvalds 已提交
473 474
	int result;
	unsigned short urb_val = 0;
475
	int c_cflag = tty->termios.c_cflag;
A
Alan Cox 已提交
476
	speed_t speed;
L
Linus Torvalds 已提交
477 478

	priv = usb_get_serial_port_data(port);
A
Alan Cox 已提交
479
	if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID ||
A
Alan Cox 已提交
480
			priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) {
A
Alan Cox 已提交
481
		/* This device doesn't support ioctl calls */
482
		tty_termios_copy_hw(&tty->termios, old);
A
Alan Cox 已提交
483
		return;
A
Alan Cox 已提交
484
	}
L
Linus Torvalds 已提交
485

A
Alan Cox 已提交
486 487 488 489 490 491 492 493 494 495
	speed = tty_get_baud_rate(tty);
	switch (speed) {
	case 1200:
		urb_val = SUSBCR_SBR_1200;
		break;
	default:
		speed = 9600;
	case 9600:
		urb_val = SUSBCR_SBR_9600;
		break;
A
Alan Cox 已提交
496
	}
A
Alan Cox 已提交
497 498
	urb_val |= (c_cflag & CSTOPB) ? SUSBCR_SPASB_2StopBits :
							SUSBCR_SPASB_1StopBit;
A
Alan Cox 已提交
499
	if (c_cflag & PARENB) {
500
		if  (c_cflag & PARODD)
A
Alan Cox 已提交
501
			urb_val |= SUSBCR_SPASB_OddParity;
502
		else
A
Alan Cox 已提交
503
			urb_val |= SUSBCR_SPASB_EvenParity;
504
	} else
A
Alan Cox 已提交
505
		urb_val |= SUSBCR_SPASB_NoParity;
506
	tty->termios.c_cflag &= ~CMSPAR;
A
Alan Cox 已提交
507
	tty_encode_baud_rate(tty, speed, speed);
L
Linus Torvalds 已提交
508

A
Alan Cox 已提交
509
	result = usb_control_msg(port->serial->dev,
510
		  usb_sndctrlpipe(port->serial->dev, 0),
A
Alan Cox 已提交
511 512 513 514
		  SUSBCRequest_SetBaudRateParityAndStopBits,
		  USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
		  urb_val,
		  0,
515
		  NULL,
A
Alan Cox 已提交
516 517
		  0,
		  KOBIL_TIMEOUT
A
Alan Cox 已提交
518 519
		);
}
L
Linus Torvalds 已提交
520

521
static int kobil_ioctl(struct tty_struct *tty,
A
Alan Cox 已提交
522
					unsigned int cmd, unsigned long arg)
A
Alan Cox 已提交
523
{
A
Alan Cox 已提交
524
	struct usb_serial_port *port = tty->driver_data;
A
Alan Cox 已提交
525
	struct kobil_private *priv = usb_get_serial_port_data(port);
A
Alan Cox 已提交
526 527
	int result;

A
Alan Cox 已提交
528 529 530
	if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID ||
			priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID)
		/* This device doesn't support ioctl calls */
A
Alan Cox 已提交
531
		return -ENOIOCTLCMD;
L
Linus Torvalds 已提交
532

A
Alan Cox 已提交
533
	switch (cmd) {
A
Alan Cox 已提交
534
	case TCFLSH:
A
Alan Cox 已提交
535
		result = usb_control_msg(port->serial->dev,
536
			  usb_sndctrlpipe(port->serial->dev, 0),
A
Alan Cox 已提交
537 538 539 540
			  SUSBCRequest_Misc,
			  USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
			  SUSBCR_MSC_ResetAllQueues,
			  0,
541
			  NULL,
A
Alan Cox 已提交
542 543
			  0,
			  KOBIL_TIMEOUT
L
Linus Torvalds 已提交
544
			);
A
Alan Cox 已提交
545

546
		dev_dbg(&port->dev,
547 548
			"%s - Send reset_all_queues (FLUSH) URB returns: %i\n",
			__func__, result);
A
Alan Cox 已提交
549
		return (result < 0) ? -EIO: 0;
A
Alan Cox 已提交
550 551
	default:
		return -ENOIOCTLCMD;
L
Linus Torvalds 已提交
552 553 554
	}
}

555
module_usb_serial_driver(serial_drivers, id_table);
L
Linus Torvalds 已提交
556

A
Alan Cox 已提交
557 558 559
MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_LICENSE("GPL");