blob: 8dd2afa2fca843d02bca7cb92fe3567934a592e6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * KOBIL USB Smart Card Terminal Driver
3 *
4 * Copyright (C) 2002 KOBIL Systems GmbH
5 * 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)
23 *
24 * (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>
47#include <asm/uaccess.h>
48#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 */
71static int kobil_startup (struct usb_serial *serial);
72static void kobil_shutdown (struct usb_serial *serial);
73static int kobil_open (struct usb_serial_port *port, struct file *filp);
74static void kobil_close (struct usb_serial_port *port, struct file *filp);
75static int kobil_write (struct usb_serial_port *port,
76 const unsigned char *buf, int count);
77static int kobil_write_room(struct usb_serial_port *port);
78static int kobil_ioctl(struct usb_serial_port *port, struct file *file,
79 unsigned int cmd, unsigned long arg);
80static int kobil_tiocmget(struct usb_serial_port *port, struct file *file);
81static int kobil_tiocmset(struct usb_serial_port *port, struct file *file,
82 unsigned int set, unsigned int clear);
David Howells7d12e782006-10-05 14:55:46 +010083static void kobil_read_int_callback( struct urb *urb );
84static void kobil_write_callback( struct urb *purb );
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86
87static struct usb_device_id id_table [] = {
88 { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_ADAPTER_B_PRODUCT_ID) },
89 { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_ADAPTER_K_PRODUCT_ID) },
90 { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_USBTWIN_PRODUCT_ID) },
91 { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_KAAN_SIM_PRODUCT_ID) },
92 { } /* Terminating entry */
93};
94
95
96MODULE_DEVICE_TABLE (usb, id_table);
97
98static struct usb_driver kobil_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 .name = "kobil",
100 .probe = usb_serial_probe,
101 .disconnect = usb_serial_disconnect,
102 .id_table = id_table,
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800103 .no_dynamic_id = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104};
105
106
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700107static struct usb_serial_driver kobil_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700108 .driver = {
109 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700110 .name = "kobil",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700111 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700112 .description = "KOBIL USB smart card terminal",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 .id_table = id_table,
114 .num_interrupt_in = NUM_DONT_CARE,
115 .num_bulk_in = 0,
116 .num_bulk_out = 0,
117 .num_ports = 1,
118 .attach = kobil_startup,
119 .shutdown = kobil_shutdown,
120 .ioctl = kobil_ioctl,
121 .tiocmget = kobil_tiocmget,
122 .tiocmset = kobil_tiocmset,
123 .open = kobil_open,
124 .close = kobil_close,
125 .write = kobil_write,
126 .write_room = kobil_write_room,
127 .read_int_callback = kobil_read_int_callback,
128};
129
130
131struct kobil_private {
132 int write_int_endpoint_address;
133 int read_int_endpoint_address;
134 unsigned char buf[KOBIL_BUF_LENGTH]; // buffer for the APDU to send
135 int filled; // index of the last char in buf
136 int cur_pos; // index of the next char to send in buf
137 __u16 device_type;
138 int line_state;
139 struct termios internal_termios;
140};
141
142
143static int kobil_startup (struct usb_serial *serial)
144{
145 int i;
146 struct kobil_private *priv;
147 struct usb_device *pdev;
148 struct usb_host_config *actconfig;
149 struct usb_interface *interface;
150 struct usb_host_interface *altsetting;
151 struct usb_host_endpoint *endpoint;
152
153 priv = kmalloc(sizeof(struct kobil_private), GFP_KERNEL);
154 if (!priv){
155 return -ENOMEM;
156 }
157
158 priv->filled = 0;
159 priv->cur_pos = 0;
160 priv->device_type = le16_to_cpu(serial->dev->descriptor.idProduct);
161 priv->line_state = 0;
162
163 switch (priv->device_type){
164 case KOBIL_ADAPTER_B_PRODUCT_ID:
165 printk(KERN_DEBUG "KOBIL B1 PRO / KAAN PRO detected\n");
166 break;
167 case KOBIL_ADAPTER_K_PRODUCT_ID:
168 printk(KERN_DEBUG "KOBIL KAAN Standard Plus / SecOVID Reader Plus detected\n");
169 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
179 // search for the necessary endpoints
180 pdev = serial->dev;
181 actconfig = pdev->actconfig;
182 interface = actconfig->interface[0];
183 altsetting = interface->cur_altsetting;
184 endpoint = altsetting->endpoint;
185
186 for (i = 0; i < altsetting->desc.bNumEndpoints; i++) {
187 endpoint = &altsetting->endpoint[i];
Luiz Fernando N. Capitulino4f1f1dd2006-10-26 13:02:53 -0300188 if (usb_endpoint_is_int_out(&endpoint->desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 dbg("%s Found interrupt out endpoint. Address: %d", __FUNCTION__, endpoint->desc.bEndpointAddress);
190 priv->write_int_endpoint_address = endpoint->desc.bEndpointAddress;
191 }
Luiz Fernando N. Capitulino4f1f1dd2006-10-26 13:02:53 -0300192 if (usb_endpoint_is_int_in(&endpoint->desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 dbg("%s Found interrupt in endpoint. Address: %d", __FUNCTION__, endpoint->desc.bEndpointAddress);
194 priv->read_int_endpoint_address = endpoint->desc.bEndpointAddress;
195 }
196 }
197 return 0;
198}
199
200
201static void kobil_shutdown (struct usb_serial *serial)
202{
203 int i;
204 dbg("%s - port %d", __FUNCTION__, serial->port[0]->number);
205
206 for (i=0; i < serial->num_ports; ++i) {
207 while (serial->port[i]->open_count > 0) {
208 kobil_close (serial->port[i], NULL);
209 }
210 kfree(usb_get_serial_port_data(serial->port[i]));
211 usb_set_serial_port_data(serial->port[i], NULL);
212 }
213}
214
215
216static int kobil_open (struct usb_serial_port *port, struct file *filp)
217{
218 int i, result = 0;
219 struct kobil_private *priv;
220 unsigned char *transfer_buffer;
221 int transfer_buffer_length = 8;
222 int write_urb_transfer_buffer_length = 8;
223
224 dbg("%s - port %d", __FUNCTION__, port->number);
225 priv = usb_get_serial_port_data(port);
226 priv->line_state = 0;
227
228 // someone sets the dev to 0 if the close method has been called
229 port->interrupt_in_urb->dev = port->serial->dev;
230
231
232 /* force low_latency on so that our tty_push actually forces
233 * the data through, otherwise it is scheduled, and with high
234 * data rates (like with OHCI) data can get lost.
235 */
236 port->tty->low_latency = 1;
237
238 // without this, every push_tty_char is echoed :-(
239 port->tty->termios->c_lflag = 0;
240 port->tty->termios->c_lflag &= ~(ISIG | ICANON | ECHO | IEXTEN | XCASE);
241 port->tty->termios->c_iflag = IGNBRK | IGNPAR | IXOFF;
242 port->tty->termios->c_oflag &= ~ONLCR; // do NOT translate CR to CR-NL (0x0A -> 0x0A 0x0D)
243
244 // set up internal termios structure
245 priv->internal_termios.c_iflag = port->tty->termios->c_iflag;
246 priv->internal_termios.c_oflag = port->tty->termios->c_oflag;
247 priv->internal_termios.c_cflag = port->tty->termios->c_cflag;
248 priv->internal_termios.c_lflag = port->tty->termios->c_lflag;
249
250 for (i=0; i<NCCS; i++) {
251 priv->internal_termios.c_cc[i] = port->tty->termios->c_cc[i];
252 }
253
254 // allocate memory for transfer buffer
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100255 transfer_buffer = kzalloc(transfer_buffer_length, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 if (! transfer_buffer) {
257 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 }
259
260 // allocate write_urb
261 if (!port->write_urb) {
262 dbg("%s - port %d Allocating port->write_urb", __FUNCTION__, port->number);
263 port->write_urb = usb_alloc_urb(0, GFP_KERNEL);
264 if (!port->write_urb) {
265 dbg("%s - port %d usb_alloc_urb failed", __FUNCTION__, port->number);
266 kfree(transfer_buffer);
267 return -ENOMEM;
268 }
269 }
270
271 // allocate memory for write_urb transfer buffer
272 port->write_urb->transfer_buffer = (unsigned char *) kmalloc(write_urb_transfer_buffer_length, GFP_KERNEL);
273 if (! port->write_urb->transfer_buffer) {
274 kfree(transfer_buffer);
275 usb_free_urb(port->write_urb);
276 port->write_urb = NULL;
277 return -ENOMEM;
278 }
279
280 // get hardware version
281 result = usb_control_msg( port->serial->dev,
282 usb_rcvctrlpipe(port->serial->dev, 0 ),
283 SUSBCRequest_GetMisc,
284 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_IN,
285 SUSBCR_MSC_GetHWVersion,
286 0,
287 transfer_buffer,
288 transfer_buffer_length,
289 KOBIL_TIMEOUT
290 );
291 dbg("%s - port %d Send get_HW_version URB returns: %i", __FUNCTION__, port->number, result);
292 dbg("Harware version: %i.%i.%i", transfer_buffer[0], transfer_buffer[1], transfer_buffer[2] );
293
294 // get firmware version
295 result = usb_control_msg( port->serial->dev,
296 usb_rcvctrlpipe(port->serial->dev, 0 ),
297 SUSBCRequest_GetMisc,
298 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_IN,
299 SUSBCR_MSC_GetFWVersion,
300 0,
301 transfer_buffer,
302 transfer_buffer_length,
303 KOBIL_TIMEOUT
304 );
305 dbg("%s - port %d Send get_FW_version URB returns: %i", __FUNCTION__, port->number, result);
306 dbg("Firmware version: %i.%i.%i", transfer_buffer[0], transfer_buffer[1], transfer_buffer[2] );
307
308 if (priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID || priv->device_type == KOBIL_ADAPTER_K_PRODUCT_ID) {
309 // Setting Baudrate, Parity and Stopbits
310 result = usb_control_msg( port->serial->dev,
311 usb_rcvctrlpipe(port->serial->dev, 0 ),
312 SUSBCRequest_SetBaudRateParityAndStopBits,
313 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
314 SUSBCR_SBR_9600 | SUSBCR_SPASB_EvenParity | SUSBCR_SPASB_1StopBit,
315 0,
316 transfer_buffer,
317 0,
318 KOBIL_TIMEOUT
319 );
320 dbg("%s - port %d Send set_baudrate URB returns: %i", __FUNCTION__, port->number, result);
321
322 // reset all queues
323 result = usb_control_msg( port->serial->dev,
324 usb_rcvctrlpipe(port->serial->dev, 0 ),
325 SUSBCRequest_Misc,
326 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
327 SUSBCR_MSC_ResetAllQueues,
328 0,
329 transfer_buffer,
330 0,
331 KOBIL_TIMEOUT
332 );
333 dbg("%s - port %d Send reset_all_queues URB returns: %i", __FUNCTION__, port->number, result);
334 }
335 if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID || priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID ||
336 priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) {
337 // start reading (Adapter B 'cause PNP string)
338 result = usb_submit_urb( port->interrupt_in_urb, GFP_ATOMIC );
339 dbg("%s - port %d Send read URB returns: %i", __FUNCTION__, port->number, result);
340 }
341
342 kfree(transfer_buffer);
343 return 0;
344}
345
346
347static void kobil_close (struct usb_serial_port *port, struct file *filp)
348{
349 dbg("%s - port %d", __FUNCTION__, port->number);
350
351 if (port->write_urb) {
352 usb_kill_urb(port->write_urb);
353 usb_free_urb( port->write_urb );
354 port->write_urb = NULL;
355 }
356 if (port->interrupt_in_urb)
357 usb_kill_urb(port->interrupt_in_urb);
358}
359
360
David Howells7d12e782006-10-05 14:55:46 +0100361static void kobil_read_int_callback( struct urb *purb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 int result;
364 struct usb_serial_port *port = (struct usb_serial_port *) purb->context;
365 struct tty_struct *tty;
366 unsigned char *data = purb->transfer_buffer;
367// char *dbg_data;
368
369 dbg("%s - port %d", __FUNCTION__, port->number);
370
371 if (purb->status) {
372 dbg("%s - port %d Read int status not zero: %d", __FUNCTION__, port->number, purb->status);
373 return;
374 }
375
376 tty = port->tty;
377 if (purb->actual_length) {
378
379 // BEGIN DEBUG
380 /*
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100381 dbg_data = kzalloc((3 * purb->actual_length + 10) * sizeof(char), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 if (! dbg_data) {
383 return;
384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 for (i = 0; i < purb->actual_length; i++) {
386 sprintf(dbg_data +3*i, "%02X ", data[i]);
387 }
388 dbg(" <-- %s", dbg_data );
389 kfree(dbg_data);
390 */
391 // END DEBUG
392
Alan Cox33f0f882006-01-09 20:54:13 -0800393 tty_buffer_request_room(tty, purb->actual_length);
394 tty_insert_flip_string(tty, data, purb->actual_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 tty_flip_buffer_push(tty);
396 }
397
398 // someone sets the dev to 0 if the close method has been called
399 port->interrupt_in_urb->dev = port->serial->dev;
400
401 result = usb_submit_urb( port->interrupt_in_urb, GFP_ATOMIC );
402 dbg("%s - port %d Send read URB returns: %i", __FUNCTION__, port->number, result);
403}
404
405
David Howells7d12e782006-10-05 14:55:46 +0100406static void kobil_write_callback( struct urb *purb )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
408}
409
410
411static int kobil_write (struct usb_serial_port *port,
412 const unsigned char *buf, int count)
413{
414 int length = 0;
415 int result = 0;
416 int todo = 0;
417 struct kobil_private * priv;
418
419 if (count == 0) {
420 dbg("%s - port %d write request of 0 bytes", __FUNCTION__, port->number);
421 return 0;
422 }
423
424 priv = usb_get_serial_port_data(port);
425
426 if (count > (KOBIL_BUF_LENGTH - priv->filled)) {
427 dbg("%s - port %d Error: write request bigger than buffer size", __FUNCTION__, port->number);
428 return -ENOMEM;
429 }
430
431 // Copy data to buffer
432 memcpy (priv->buf + priv->filled, buf, count);
433
434 usb_serial_debug_data(debug, &port->dev, __FUNCTION__, count, priv->buf + priv->filled);
435
436 priv->filled = priv->filled + count;
437
438
439 // only send complete block. TWIN, KAAN SIM and adapter K use the same protocol.
440 if ( ((priv->device_type != KOBIL_ADAPTER_B_PRODUCT_ID) && (priv->filled > 2) && (priv->filled >= (priv->buf[1] + 3))) ||
441 ((priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID) && (priv->filled > 3) && (priv->filled >= (priv->buf[2] + 4))) ) {
442
443 // stop reading (except TWIN and KAAN SIM)
444 if ( (priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID) || (priv->device_type == KOBIL_ADAPTER_K_PRODUCT_ID) )
445 usb_kill_urb(port->interrupt_in_urb);
446
447 todo = priv->filled - priv->cur_pos;
448
449 while(todo > 0) {
450 // max 8 byte in one urb (endpoint size)
451 length = (todo < 8) ? todo : 8;
452 // copy data to transfer buffer
453 memcpy(port->write_urb->transfer_buffer, priv->buf + priv->cur_pos, length );
454 usb_fill_int_urb( port->write_urb,
455 port->serial->dev,
456 usb_sndintpipe(port->serial->dev, priv->write_int_endpoint_address),
457 port->write_urb->transfer_buffer,
458 length,
459 kobil_write_callback,
460 port,
461 8
462 );
463
464 priv->cur_pos = priv->cur_pos + length;
465 result = usb_submit_urb( port->write_urb, GFP_NOIO );
466 dbg("%s - port %d Send write URB returns: %i", __FUNCTION__, port->number, result);
467 todo = priv->filled - priv->cur_pos;
468
469 if (todo > 0) {
470 msleep(24);
471 }
472
473 } // end while
474
475 priv->filled = 0;
476 priv->cur_pos = 0;
477
478 // someone sets the dev to 0 if the close method has been called
479 port->interrupt_in_urb->dev = port->serial->dev;
480
481 // start reading (except TWIN and KAAN SIM)
482 if ( (priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID) || (priv->device_type == KOBIL_ADAPTER_K_PRODUCT_ID) ) {
483 // someone sets the dev to 0 if the close method has been called
484 port->interrupt_in_urb->dev = port->serial->dev;
485
486 result = usb_submit_urb( port->interrupt_in_urb, GFP_NOIO );
487 dbg("%s - port %d Send read URB returns: %i", __FUNCTION__, port->number, result);
488 }
489 }
490 return count;
491}
492
493
494static int kobil_write_room (struct usb_serial_port *port)
495{
496 //dbg("%s - port %d", __FUNCTION__, port->number);
497 return 8;
498}
499
500
501static int kobil_tiocmget(struct usb_serial_port *port, struct file *file)
502{
503 struct kobil_private * priv;
504 int result;
505 unsigned char *transfer_buffer;
506 int transfer_buffer_length = 8;
507
508 priv = usb_get_serial_port_data(port);
509 if ((priv->device_type == KOBIL_USBTWIN_PRODUCT_ID) || (priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID)) {
510 // This device doesn't support ioctl calls
511 return -EINVAL;
512 }
513
514 // allocate memory for transfer buffer
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100515 transfer_buffer = kzalloc(transfer_buffer_length, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 if (!transfer_buffer) {
517 return -ENOMEM;
518 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 result = usb_control_msg( port->serial->dev,
521 usb_rcvctrlpipe(port->serial->dev, 0 ),
522 SUSBCRequest_GetStatusLineState,
523 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_IN,
524 0,
525 0,
526 transfer_buffer,
527 transfer_buffer_length,
528 KOBIL_TIMEOUT);
529
530 dbg("%s - port %d Send get_status_line_state URB returns: %i. Statusline: %02x",
531 __FUNCTION__, port->number, result, transfer_buffer[0]);
532
533 if ((transfer_buffer[0] & SUSBCR_GSL_DSR) != 0) {
534 priv->line_state |= TIOCM_DSR;
535 } else {
536 priv->line_state &= ~TIOCM_DSR;
537 }
538
539 kfree(transfer_buffer);
540 return priv->line_state;
541}
542
543static int kobil_tiocmset(struct usb_serial_port *port, struct file *file,
544 unsigned int set, unsigned int clear)
545{
546 struct kobil_private * priv;
547 int result;
548 int dtr = 0;
549 int rts = 0;
550 unsigned char *transfer_buffer;
551 int transfer_buffer_length = 8;
552
553 priv = usb_get_serial_port_data(port);
554 if ((priv->device_type == KOBIL_USBTWIN_PRODUCT_ID) || (priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID)) {
555 // This device doesn't support ioctl calls
556 return -EINVAL;
557 }
558
559 // allocate memory for transfer buffer
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100560 transfer_buffer = kzalloc(transfer_buffer_length, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 if (! transfer_buffer) {
562 return -ENOMEM;
563 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 if (set & TIOCM_RTS)
566 rts = 1;
567 if (set & TIOCM_DTR)
568 dtr = 1;
569 if (clear & TIOCM_RTS)
570 rts = 0;
571 if (clear & TIOCM_DTR)
572 dtr = 0;
573
574 if (priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID) {
575 if (dtr != 0)
576 dbg("%s - port %d Setting DTR", __FUNCTION__, port->number);
577 else
578 dbg("%s - port %d Clearing DTR", __FUNCTION__, port->number);
579 result = usb_control_msg( port->serial->dev,
580 usb_rcvctrlpipe(port->serial->dev, 0 ),
581 SUSBCRequest_SetStatusLinesOrQueues,
582 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
583 ((dtr != 0) ? SUSBCR_SSL_SETDTR : SUSBCR_SSL_CLRDTR),
584 0,
585 transfer_buffer,
586 0,
587 KOBIL_TIMEOUT);
588 } else {
589 if (rts != 0)
590 dbg("%s - port %d Setting RTS", __FUNCTION__, port->number);
591 else
592 dbg("%s - port %d Clearing RTS", __FUNCTION__, port->number);
593 result = usb_control_msg( port->serial->dev,
594 usb_rcvctrlpipe(port->serial->dev, 0 ),
595 SUSBCRequest_SetStatusLinesOrQueues,
596 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
597 ((rts != 0) ? SUSBCR_SSL_SETRTS : SUSBCR_SSL_CLRRTS),
598 0,
599 transfer_buffer,
600 0,
601 KOBIL_TIMEOUT);
602 }
603 dbg("%s - port %d Send set_status_line URB returns: %i", __FUNCTION__, port->number, result);
604 kfree(transfer_buffer);
605 return (result < 0) ? result : 0;
606}
607
608
609static int kobil_ioctl(struct usb_serial_port *port, struct file *file,
610 unsigned int cmd, unsigned long arg)
611{
612 struct kobil_private * priv;
613 int result;
614 unsigned short urb_val = 0;
615 unsigned char *transfer_buffer;
616 int transfer_buffer_length = 8;
617 char *settings;
618 void __user *user_arg = (void __user *)arg;
619
620 priv = usb_get_serial_port_data(port);
621 if ((priv->device_type == KOBIL_USBTWIN_PRODUCT_ID) || (priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID)) {
622 // This device doesn't support ioctl calls
623 return 0;
624 }
625
626 switch (cmd) {
627 case TCGETS: // 0x5401
628 if (!access_ok(VERIFY_WRITE, user_arg, sizeof(struct termios))) {
629 dbg("%s - port %d Error in access_ok", __FUNCTION__, port->number);
630 return -EFAULT;
631 }
632 if (kernel_termios_to_user_termios((struct termios __user *)arg,
633 &priv->internal_termios))
634 return -EFAULT;
635 return 0;
636
637 case TCSETS: // 0x5402
638 if (!(port->tty->termios)) {
639 dbg("%s - port %d Error: port->tty->termios is NULL", __FUNCTION__, port->number);
640 return -ENOTTY;
641 }
642 if (!access_ok(VERIFY_READ, user_arg, sizeof(struct termios))) {
643 dbg("%s - port %d Error in access_ok", __FUNCTION__, port->number);
644 return -EFAULT;
645 }
646 if (user_termios_to_kernel_termios(&priv->internal_termios,
647 (struct termios __user *)arg))
648 return -EFAULT;
649
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100650 settings = kzalloc(50, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 if (! settings) {
652 return -ENOBUFS;
653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655 switch (priv->internal_termios.c_cflag & CBAUD) {
656 case B1200:
657 urb_val = SUSBCR_SBR_1200;
658 strcat(settings, "1200 ");
659 break;
660 case B9600:
661 default:
662 urb_val = SUSBCR_SBR_9600;
663 strcat(settings, "9600 ");
664 break;
665 }
666
667 urb_val |= (priv->internal_termios.c_cflag & CSTOPB) ? SUSBCR_SPASB_2StopBits : SUSBCR_SPASB_1StopBit;
668 strcat(settings, (priv->internal_termios.c_cflag & CSTOPB) ? "2 StopBits " : "1 StopBit ");
669
670 if (priv->internal_termios.c_cflag & PARENB) {
671 if (priv->internal_termios.c_cflag & PARODD) {
672 urb_val |= SUSBCR_SPASB_OddParity;
673 strcat(settings, "Odd Parity");
674 } else {
675 urb_val |= SUSBCR_SPASB_EvenParity;
676 strcat(settings, "Even Parity");
677 }
678 } else {
679 urb_val |= SUSBCR_SPASB_NoParity;
680 strcat(settings, "No Parity");
681 }
682 dbg("%s - port %d setting port to: %s", __FUNCTION__, port->number, settings );
683
684 result = usb_control_msg( port->serial->dev,
685 usb_rcvctrlpipe(port->serial->dev, 0 ),
686 SUSBCRequest_SetBaudRateParityAndStopBits,
687 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
688 urb_val,
689 0,
690 settings,
691 0,
692 KOBIL_TIMEOUT
693 );
694
695 dbg("%s - port %d Send set_baudrate URB returns: %i", __FUNCTION__, port->number, result);
696 kfree(settings);
697 return 0;
698
699 case TCFLSH: // 0x540B
700 transfer_buffer = (unsigned char *) kmalloc(transfer_buffer_length, GFP_KERNEL);
701 if (! transfer_buffer) {
702 return -ENOBUFS;
703 }
704
705 result = usb_control_msg( port->serial->dev,
706 usb_rcvctrlpipe(port->serial->dev, 0 ),
707 SUSBCRequest_Misc,
708 USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT,
709 SUSBCR_MSC_ResetAllQueues,
710 0,
711 NULL,//transfer_buffer,
712 0,
713 KOBIL_TIMEOUT
714 );
715
716 dbg("%s - port %d Send reset_all_queues (FLUSH) URB returns: %i", __FUNCTION__, port->number, result);
717
718 kfree(transfer_buffer);
719 return ((result < 0) ? -EFAULT : 0);
720
721 }
722 return -ENOIOCTLCMD;
723}
724
725
726static int __init kobil_init (void)
727{
728 int retval;
729 retval = usb_serial_register(&kobil_device);
730 if (retval)
731 goto failed_usb_serial_register;
732 retval = usb_register(&kobil_driver);
733 if (retval)
734 goto failed_usb_register;
735
736 info(DRIVER_VERSION " " DRIVER_AUTHOR);
737 info(DRIVER_DESC);
738
739 return 0;
740failed_usb_register:
741 usb_serial_deregister(&kobil_device);
742failed_usb_serial_register:
743 return retval;
744}
745
746
747static void __exit kobil_exit (void)
748{
749 usb_deregister (&kobil_driver);
750 usb_serial_deregister (&kobil_device);
751}
752
753module_init(kobil_init);
754module_exit(kobil_exit);
755
756MODULE_AUTHOR( DRIVER_AUTHOR );
757MODULE_DESCRIPTION( DRIVER_DESC );
758MODULE_LICENSE( "GPL" );
759
760module_param(debug, bool, S_IRUGO | S_IWUSR);
761MODULE_PARM_DESC(debug, "Debug enabled or not");