2 * KLSI KL5KUSB105 chip RS232 converter driver
4 * Copyright (C) 2001 Utz-Uwe Haus <haus@uuhaus.de>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * All information about the device was acquired using SniffUSB ans snoopUSB
13 * It was written out of frustration with the PalmConnect USB Serial adapter
15 * Neither Palm, nor their contractor (MCCI) or their supplier (KLSI) provided
16 * information that was not already available.
18 * It seems that KLSI bought some silicon-design information from ScanLogic,
19 * whose SL11R processor is at the core of the KL5KUSB chipset from KLSI.
20 * KLSI has firmware available for their devices; it is probable that the
21 * firmware differs from that used by KLSI in their products. If you have an
22 * original KLSI device and can provide some information on it, I would be
23 * most interested in adding support for it here. If you have any information
24 * on the protocol used (or find errors in my reverse-engineered stuff), please
27 * The code was only tested with a PalmConnect USB adapter; if you
28 * are adventurous, try it with any KLSI-based device and let me know how it
29 * breaks so that I can fix it!
33 * check modem line signals
34 * implement handshaking or decide that we do not support it
38 * 0.3a - implemented pools of write URBs
39 * 0.3 - alpha version for public testing
40 * 0.2 - TIOCMGET works, so autopilot(1) can be used!
41 * 0.1 - can be used to to pilot-xfer -p /dev/ttyUSB0 -l
43 * The driver skeleton is mainly based on mct_u232.c and various other
44 * pieces of code shamelessly copied from the drivers/usb/serial/ directory.
48 #include <linux/kernel.h>
49 #include <linux/errno.h>
50 #include <linux/init.h>
51 #include <linux/slab.h>
52 #include <linux/tty.h>
53 #include <linux/tty_driver.h>
54 #include <linux/tty_flip.h>
55 #include <linux/module.h>
56 #include <linux/uaccess.h>
57 #include <asm/unaligned.h>
58 #include <linux/usb.h>
59 #include <linux/usb/serial.h>
60 #include "kl5kusb105.h"
67 #define DRIVER_VERSION "v0.3a"
68 #define DRIVER_AUTHOR "Utz-Uwe Haus <haus@uuhaus.de>"
69 #define DRIVER_DESC "KLSI KL5KUSB105 chipset USB->Serial Converter driver"
75 static int klsi_105_startup(struct usb_serial *serial);
76 static void klsi_105_shutdown(struct usb_serial *serial);
77 static int klsi_105_open(struct tty_struct *tty,
78 struct usb_serial_port *port, struct file *filp);
79 static void klsi_105_close(struct tty_struct *tty,
80 struct usb_serial_port *port, struct file *filp);
81 static int klsi_105_write(struct tty_struct *tty,
82 struct usb_serial_port *port, const unsigned char *buf, int count);
83 static void klsi_105_write_bulk_callback(struct urb *urb);
84 static int klsi_105_chars_in_buffer(struct tty_struct *tty);
85 static int klsi_105_write_room(struct tty_struct *tty);
86 static void klsi_105_read_bulk_callback(struct urb *urb);
87 static void klsi_105_set_termios(struct tty_struct *tty,
88 struct usb_serial_port *port, struct ktermios *old);
89 static void klsi_105_throttle(struct tty_struct *tty);
90 static void klsi_105_unthrottle(struct tty_struct *tty);
91 static int klsi_105_tiocmget(struct tty_struct *tty, struct file *file);
92 static int klsi_105_tiocmset(struct tty_struct *tty, struct file *file,
93 unsigned int set, unsigned int clear);
96 * All of the device info needed for the KLSI converters.
98 static struct usb_device_id id_table [] = {
99 { USB_DEVICE(PALMCONNECT_VID, PALMCONNECT_PID) },
100 { USB_DEVICE(KLSI_VID, KLSI_KL5KUSB105D_PID) },
101 { } /* Terminating entry */
104 MODULE_DEVICE_TABLE(usb, id_table);
106 static struct usb_driver kl5kusb105d_driver = {
107 .name = "kl5kusb105d",
108 .probe = usb_serial_probe,
109 .disconnect = usb_serial_disconnect,
110 .id_table = id_table,
114 static struct usb_serial_driver kl5kusb105d_device = {
116 .owner = THIS_MODULE,
117 .name = "kl5kusb105d",
119 .description = "KL5KUSB105D / PalmConnect",
120 .usb_driver = &kl5kusb105d_driver,
121 .id_table = id_table,
123 .open = klsi_105_open,
124 .close = klsi_105_close,
125 .write = klsi_105_write,
126 .write_bulk_callback = klsi_105_write_bulk_callback,
127 .chars_in_buffer = klsi_105_chars_in_buffer,
128 .write_room = klsi_105_write_room,
129 .read_bulk_callback = klsi_105_read_bulk_callback,
130 .set_termios = klsi_105_set_termios,
131 /*.break_ctl = klsi_105_break_ctl,*/
132 .tiocmget = klsi_105_tiocmget,
133 .tiocmset = klsi_105_tiocmset,
134 .attach = klsi_105_startup,
135 .shutdown = klsi_105_shutdown,
136 .throttle = klsi_105_throttle,
137 .unthrottle = klsi_105_unthrottle,
140 struct klsi_105_port_settings {
141 __u8 pktlen; /* always 5, it seems */
146 } __attribute__ ((packed));
148 /* we implement a pool of NUM_URBS urbs per usb_serial */
150 #define URB_TRANSFER_BUFFER_SIZE 64
151 struct klsi_105_private {
152 struct klsi_105_port_settings cfg;
153 struct ktermios termios;
154 unsigned long line_state; /* modem line settings */
156 struct urb *write_urb_pool[NUM_URBS];
158 unsigned long bytes_in;
159 unsigned long bytes_out;
164 * Handle vendor specific USB requests
168 #define KLSI_TIMEOUT 5000 /* default urb timeout */
170 static int klsi_105_chg_port_settings(struct usb_serial_port *port,
171 struct klsi_105_port_settings *settings)
175 rc = usb_control_msg(port->serial->dev,
176 usb_sndctrlpipe(port->serial->dev, 0),
177 KL5KUSB105A_SIO_SET_DATA,
178 USB_TYPE_VENDOR | USB_DIR_OUT | USB_RECIP_INTERFACE,
182 sizeof(struct klsi_105_port_settings),
186 "Change port settings failed (error = %d)\n", rc);
187 dev_info(&port->serial->dev->dev,
188 "%d byte block, baudrate %x, databits %d, u1 %d, u2 %d\n",
189 settings->pktlen, settings->baudrate, settings->databits,
190 settings->unknown1, settings->unknown2);
192 } /* klsi_105_chg_port_settings */
194 /* translate a 16-bit status value from the device to linux's TIO bits */
195 static unsigned long klsi_105_status2linestate(const __u16 status)
197 unsigned long res = 0;
199 res = ((status & KL5KUSB105A_DSR) ? TIOCM_DSR : 0)
200 | ((status & KL5KUSB105A_CTS) ? TIOCM_CTS : 0)
206 * Read line control via vendor command and return result through
209 /* It seems that the status buffer has always only 2 bytes length */
210 #define KLSI_STATUSBUF_LEN 2
211 static int klsi_105_get_line_state(struct usb_serial_port *port,
212 unsigned long *line_state_p)
215 __u8 status_buf[KLSI_STATUSBUF_LEN] = { -1, -1};
218 dev_info(&port->serial->dev->dev, "sending SIO Poll request\n");
219 rc = usb_control_msg(port->serial->dev,
220 usb_rcvctrlpipe(port->serial->dev, 0),
221 KL5KUSB105A_SIO_POLL,
222 USB_TYPE_VENDOR | USB_DIR_IN,
225 status_buf, KLSI_STATUSBUF_LEN,
229 dev_err(&port->dev, "Reading line status failed (error = %d)\n",
232 status = get_unaligned_le16(status_buf);
234 dev_info(&port->serial->dev->dev, "read status %x %x",
235 status_buf[0], status_buf[1]);
237 *line_state_p = klsi_105_status2linestate(status);
244 * Driver's tty interface functions
247 static int klsi_105_startup(struct usb_serial *serial)
249 struct klsi_105_private *priv;
252 /* check if we support the product id (see keyspan.c)
256 /* allocate the private data structure */
257 for (i = 0; i < serial->num_ports; i++) {
258 priv = kmalloc(sizeof(struct klsi_105_private),
261 dbg("%skmalloc for klsi_105_private failed.", __func__);
265 /* set initial values for control structures */
266 priv->cfg.pktlen = 5;
267 priv->cfg.baudrate = kl5kusb105a_sio_b9600;
268 priv->cfg.databits = kl5kusb105a_dtb_8;
269 priv->cfg.unknown1 = 0;
270 priv->cfg.unknown2 = 1;
272 priv->line_state = 0;
276 usb_set_serial_port_data(serial->port[i], priv);
278 spin_lock_init(&priv->lock);
279 for (j = 0; j < NUM_URBS; j++) {
280 struct urb *urb = usb_alloc_urb(0, GFP_KERNEL);
282 priv->write_urb_pool[j] = urb;
284 dev_err(&serial->dev->dev, "No more urbs???\n");
288 urb->transfer_buffer =
289 kmalloc(URB_TRANSFER_BUFFER_SIZE, GFP_KERNEL);
290 if (!urb->transfer_buffer) {
291 dev_err(&serial->dev->dev,
292 "%s - out of memory for urb buffers.\n",
298 /* priv->termios is left uninitalized until port opening */
299 init_waitqueue_head(&serial->port[i]->write_wait);
305 for (; i >= 0; i--) {
306 priv = usb_get_serial_port_data(serial->port[i]);
307 for (j = 0; j < NUM_URBS; j++) {
308 if (priv->write_urb_pool[j]) {
309 kfree(priv->write_urb_pool[j]->transfer_buffer);
310 usb_free_urb(priv->write_urb_pool[j]);
313 usb_set_serial_port_data(serial->port[i], NULL);
316 } /* klsi_105_startup */
319 static void klsi_105_shutdown(struct usb_serial *serial)
325 /* stop reads and writes on all ports */
326 for (i = 0; i < serial->num_ports; ++i) {
327 struct klsi_105_private *priv =
328 usb_get_serial_port_data(serial->port[i]);
332 /* kill our write urb pool */
334 struct urb **write_urbs = priv->write_urb_pool;
335 spin_lock_irqsave(&priv->lock, flags);
337 for (j = 0; j < NUM_URBS; j++) {
339 /* FIXME - uncomment the following
340 * usb_kill_urb call when the host
341 * controllers get fixed to set
342 * urb->dev = NULL after the urb is
343 * finished. Otherwise this call
345 /* usb_kill_urb(write_urbs[j]); */
346 kfree(write_urbs[j]->transfer_buffer);
347 usb_free_urb(write_urbs[j]);
350 spin_unlock_irqrestore(&priv->lock, flags);
352 usb_set_serial_port_data(serial->port[i], NULL);
355 } /* klsi_105_shutdown */
357 static int klsi_105_open(struct tty_struct *tty,
358 struct usb_serial_port *port, struct file *filp)
360 struct klsi_105_private *priv = usb_get_serial_port_data(port);
364 unsigned long line_state;
365 struct klsi_105_port_settings cfg;
368 dbg("%s port %d", __func__, port->number);
370 /* force low_latency on so that our tty_push actually forces
372 * tty->low_latency = 1; */
374 /* Do a defined restart:
375 * Set up sane default baud rate and send the 'READ_ON'
377 * FIXME: set modem line control (how?)
378 * Then read the modem line control and store values in
382 cfg.baudrate = kl5kusb105a_sio_b9600;
383 cfg.databits = kl5kusb105a_dtb_8;
386 klsi_105_chg_port_settings(port, &cfg);
388 /* set up termios structure */
389 spin_lock_irqsave(&priv->lock, flags);
390 priv->termios.c_iflag = tty->termios->c_iflag;
391 priv->termios.c_oflag = tty->termios->c_oflag;
392 priv->termios.c_cflag = tty->termios->c_cflag;
393 priv->termios.c_lflag = tty->termios->c_lflag;
394 for (i = 0; i < NCCS; i++)
395 priv->termios.c_cc[i] = tty->termios->c_cc[i];
396 priv->cfg.pktlen = cfg.pktlen;
397 priv->cfg.baudrate = cfg.baudrate;
398 priv->cfg.databits = cfg.databits;
399 priv->cfg.unknown1 = cfg.unknown1;
400 priv->cfg.unknown2 = cfg.unknown2;
401 spin_unlock_irqrestore(&priv->lock, flags);
403 /* READ_ON and urb submission */
404 usb_fill_bulk_urb(port->read_urb, port->serial->dev,
405 usb_rcvbulkpipe(port->serial->dev,
406 port->bulk_in_endpointAddress),
407 port->read_urb->transfer_buffer,
408 port->read_urb->transfer_buffer_length,
409 klsi_105_read_bulk_callback,
412 rc = usb_submit_urb(port->read_urb, GFP_KERNEL);
414 dev_err(&port->dev, "%s - failed submitting read urb, "
415 "error %d\n", __func__, rc);
420 rc = usb_control_msg(port->serial->dev,
421 usb_sndctrlpipe(port->serial->dev, 0),
422 KL5KUSB105A_SIO_CONFIGURE,
423 USB_TYPE_VENDOR|USB_DIR_OUT|USB_RECIP_INTERFACE,
424 KL5KUSB105A_SIO_CONFIGURE_READ_ON,
430 dev_err(&port->dev, "Enabling read failed (error = %d)\n", rc);
433 dbg("%s - enabled reading", __func__);
435 rc = klsi_105_get_line_state(port, &line_state);
437 spin_lock_irqsave(&priv->lock, flags);
438 priv->line_state = line_state;
439 spin_unlock_irqrestore(&priv->lock, flags);
440 dbg("%s - read line state 0x%lx", __func__, line_state);
447 } /* klsi_105_open */
450 static void klsi_105_close(struct tty_struct *tty,
451 struct usb_serial_port *port, struct file *filp)
453 struct klsi_105_private *priv = usb_get_serial_port_data(port);
456 dbg("%s port %d", __func__, port->number);
458 mutex_lock(&port->serial->disc_mutex);
459 if (!port->serial->disconnected) {
461 rc = usb_control_msg(port->serial->dev,
462 usb_sndctrlpipe(port->serial->dev, 0),
463 KL5KUSB105A_SIO_CONFIGURE,
464 USB_TYPE_VENDOR | USB_DIR_OUT,
465 KL5KUSB105A_SIO_CONFIGURE_READ_OFF,
471 "Disabling read failed (error = %d)\n", rc);
473 mutex_unlock(&port->serial->disc_mutex);
475 /* shutdown our bulk reads and writes */
476 usb_kill_urb(port->write_urb);
477 usb_kill_urb(port->read_urb);
478 /* unlink our write pool */
480 /* wgg - do I need this? I think so. */
481 usb_kill_urb(port->interrupt_in_urb);
482 dev_info(&port->serial->dev->dev,
483 "port stats: %ld bytes in, %ld bytes out\n",
484 priv->bytes_in, priv->bytes_out);
485 } /* klsi_105_close */
488 /* We need to write a complete 64-byte data block and encode the
489 * number actually sent in the first double-byte, LSB-order. That
490 * leaves at most 62 bytes of payload.
492 #define KLSI_105_DATA_OFFSET 2 /* in the bulk urb data block */
495 static int klsi_105_write(struct tty_struct *tty,
496 struct usb_serial_port *port, const unsigned char *buf, int count)
498 struct klsi_105_private *priv = usb_get_serial_port_data(port);
502 dbg("%s - port %d", __func__, port->number);
505 /* try to find a free urb (write 0 bytes if none) */
506 struct urb *urb = NULL;
509 /* since the pool is per-port we might not need
511 spin_lock_irqsave(&priv->lock, flags);
512 for (i = 0; i < NUM_URBS; i++) {
513 if (priv->write_urb_pool[i]->status != -EINPROGRESS) {
514 urb = priv->write_urb_pool[i];
515 dbg("%s - using pool URB %d", __func__, i);
519 spin_unlock_irqrestore(&priv->lock, flags);
522 dbg("%s - no more free urbs", __func__);
526 if (urb->transfer_buffer == NULL) {
527 urb->transfer_buffer =
528 kmalloc(URB_TRANSFER_BUFFER_SIZE, GFP_ATOMIC);
529 if (urb->transfer_buffer == NULL) {
531 "%s - no more kernel memory...\n",
537 size = min(count, port->bulk_out_size - KLSI_105_DATA_OFFSET);
538 size = min(size, URB_TRANSFER_BUFFER_SIZE -
539 KLSI_105_DATA_OFFSET);
541 memcpy(urb->transfer_buffer + KLSI_105_DATA_OFFSET, buf, size);
543 /* write payload size into transfer buffer */
544 ((__u8 *)urb->transfer_buffer)[0] = (__u8) (size & 0xFF);
545 ((__u8 *)urb->transfer_buffer)[1] = (__u8) ((size & 0xFF00)>>8);
548 usb_fill_bulk_urb(urb, port->serial->dev,
549 usb_sndbulkpipe(port->serial->dev,
550 port->bulk_out_endpointAddress),
551 urb->transfer_buffer,
552 URB_TRANSFER_BUFFER_SIZE,
553 klsi_105_write_bulk_callback,
556 /* send the data out the bulk port */
557 result = usb_submit_urb(urb, GFP_ATOMIC);
560 "%s - failed submitting write urb, error %d\n",
569 /* lockless, but it's for debug info only... */
570 priv->bytes_out += bytes_sent;
572 return bytes_sent; /* that's how much we wrote */
573 } /* klsi_105_write */
575 static void klsi_105_write_bulk_callback(struct urb *urb)
577 struct usb_serial_port *port = urb->context;
578 int status = urb->status;
580 dbg("%s - port %d", __func__, port->number);
583 dbg("%s - nonzero write bulk status received: %d", __func__,
588 usb_serial_port_softint(port);
589 } /* klsi_105_write_bulk_completion_callback */
592 /* return number of characters currently in the writing process */
593 static int klsi_105_chars_in_buffer(struct tty_struct *tty)
595 struct usb_serial_port *port = tty->driver_data;
599 struct klsi_105_private *priv = usb_get_serial_port_data(port);
601 spin_lock_irqsave(&priv->lock, flags);
603 for (i = 0; i < NUM_URBS; ++i) {
604 if (priv->write_urb_pool[i]->status == -EINPROGRESS)
605 chars += URB_TRANSFER_BUFFER_SIZE;
608 spin_unlock_irqrestore(&priv->lock, flags);
610 dbg("%s - returns %d", __func__, chars);
614 static int klsi_105_write_room(struct tty_struct *tty)
616 struct usb_serial_port *port = tty->driver_data;
620 struct klsi_105_private *priv = usb_get_serial_port_data(port);
622 spin_lock_irqsave(&priv->lock, flags);
623 for (i = 0; i < NUM_URBS; ++i) {
624 if (priv->write_urb_pool[i]->status != -EINPROGRESS)
625 room += URB_TRANSFER_BUFFER_SIZE;
628 spin_unlock_irqrestore(&priv->lock, flags);
630 dbg("%s - returns %d", __func__, room);
636 static void klsi_105_read_bulk_callback(struct urb *urb)
638 struct usb_serial_port *port = urb->context;
639 struct klsi_105_private *priv = usb_get_serial_port_data(port);
640 struct tty_struct *tty;
641 unsigned char *data = urb->transfer_buffer;
643 int status = urb->status;
645 dbg("%s - port %d", __func__, port->number);
647 /* The urb might have been killed. */
649 dbg("%s - nonzero read bulk status received: %d", __func__,
654 /* The data received is again preceded by a length double-byte in LSB-
655 * first order (see klsi_105_write() )
657 if (urb->actual_length == 0) {
658 /* empty urbs seem to happen, we ignore them */
659 /* dbg("%s - emtpy URB", __func__); */
661 } else if (urb->actual_length <= 2) {
662 dbg("%s - size %d URB not understood", __func__,
664 usb_serial_debug_data(debug, &port->dev, __func__,
665 urb->actual_length, data);
667 int bytes_sent = ((__u8 *) data)[0] +
668 ((unsigned int) ((__u8 *) data)[1] << 8);
669 tty = tty_port_tty_get(&port->port);
670 /* we should immediately resubmit the URB, before attempting
671 * to pass the data on to the tty layer. But that needs locking
672 * against re-entry an then mixed-up data because of
673 * intermixed tty_flip_buffer_push()s
676 usb_serial_debug_data(debug, &port->dev, __func__,
677 urb->actual_length, data);
679 if (bytes_sent + 2 > urb->actual_length) {
680 dbg("%s - trying to read more data than available"
681 " (%d vs. %d)", __func__,
682 bytes_sent+2, urb->actual_length);
683 /* cap at implied limit */
684 bytes_sent = urb->actual_length - 2;
687 tty_buffer_request_room(tty, bytes_sent);
688 tty_insert_flip_string(tty, data + 2, bytes_sent);
689 tty_flip_buffer_push(tty);
692 /* again lockless, but debug info only */
693 priv->bytes_in += bytes_sent;
695 /* Continue trying to always read */
696 usb_fill_bulk_urb(port->read_urb, port->serial->dev,
697 usb_rcvbulkpipe(port->serial->dev,
698 port->bulk_in_endpointAddress),
699 port->read_urb->transfer_buffer,
700 port->read_urb->transfer_buffer_length,
701 klsi_105_read_bulk_callback,
703 rc = usb_submit_urb(port->read_urb, GFP_ATOMIC);
706 "%s - failed resubmitting read urb, error %d\n",
708 } /* klsi_105_read_bulk_callback */
711 static void klsi_105_set_termios(struct tty_struct *tty,
712 struct usb_serial_port *port,
713 struct ktermios *old_termios)
715 struct klsi_105_private *priv = usb_get_serial_port_data(port);
716 unsigned int iflag = tty->termios->c_iflag;
717 unsigned int old_iflag = old_termios->c_iflag;
718 unsigned int cflag = tty->termios->c_cflag;
719 unsigned int old_cflag = old_termios->c_cflag;
720 struct klsi_105_port_settings cfg;
724 /* lock while we are modifying the settings */
725 spin_lock_irqsave(&priv->lock, flags);
730 baud = tty_get_baud_rate(tty);
732 if ((cflag & CBAUD) != (old_cflag & CBAUD)) {
733 /* reassert DTR and (maybe) RTS on transition from B0 */
734 if ((old_cflag & CBAUD) == B0) {
735 dbg("%s: baud was B0", __func__);
737 priv->control_state |= TIOCM_DTR;
738 /* don't set RTS if using hardware flow control */
739 if (!(old_cflag & CRTSCTS))
740 priv->control_state |= TIOCM_RTS;
741 mct_u232_set_modem_ctrl(serial, priv->control_state);
746 case 0: /* handled below */
749 priv->cfg.baudrate = kl5kusb105a_sio_b1200;
752 priv->cfg.baudrate = kl5kusb105a_sio_b2400;
755 priv->cfg.baudrate = kl5kusb105a_sio_b4800;
758 priv->cfg.baudrate = kl5kusb105a_sio_b9600;
761 priv->cfg.baudrate = kl5kusb105a_sio_b19200;
764 priv->cfg.baudrate = kl5kusb105a_sio_b38400;
767 priv->cfg.baudrate = kl5kusb105a_sio_b57600;
770 priv->cfg.baudrate = kl5kusb105a_sio_b115200;
773 dbg("KLSI USB->Serial converter:"
774 " unsupported baudrate request, using default of 9600");
775 priv->cfg.baudrate = kl5kusb105a_sio_b9600;
779 if ((cflag & CBAUD) == B0) {
780 dbg("%s: baud is B0", __func__);
781 /* Drop RTS and DTR */
782 /* maybe this should be simulated by sending read
783 * disable and read enable messages?
787 priv->control_state &= ~(TIOCM_DTR | TIOCM_RTS);
788 mct_u232_set_modem_ctrl(serial, priv->control_state);
791 tty_encode_baud_rate(tty, baud, baud);
793 if ((cflag & CSIZE) != (old_cflag & CSIZE)) {
794 /* set the number of data bits */
795 switch (cflag & CSIZE) {
797 dbg("%s - 5 bits/byte not supported", __func__);
798 spin_unlock_irqrestore(&priv->lock, flags);
801 dbg("%s - 6 bits/byte not supported", __func__);
802 spin_unlock_irqrestore(&priv->lock, flags);
805 priv->cfg.databits = kl5kusb105a_dtb_7;
808 priv->cfg.databits = kl5kusb105a_dtb_8;
812 "CSIZE was not CS5-CS8, using default of 8\n");
813 priv->cfg.databits = kl5kusb105a_dtb_8;
819 * Update line control register (LCR)
821 if ((cflag & (PARENB|PARODD)) != (old_cflag & (PARENB|PARODD))
822 || (cflag & CSTOPB) != (old_cflag & CSTOPB)) {
823 /* Not currently supported */
824 tty->termios->c_cflag &= ~(PARENB|PARODD|CSTOPB);
830 priv->last_lcr |= (cflag & PARODD) ?
831 MCT_U232_PARITY_ODD : MCT_U232_PARITY_EVEN;
833 priv->last_lcr |= MCT_U232_PARITY_NONE;
835 /* set the number of stop bits */
836 priv->last_lcr |= (cflag & CSTOPB) ?
837 MCT_U232_STOP_BITS_2 : MCT_U232_STOP_BITS_1;
839 mct_u232_set_line_ctrl(serial, priv->last_lcr);
844 * Set flow control: well, I do not really now how to handle DTR/RTS.
845 * Just do what we have seen with SniffUSB on Win98.
847 if ((iflag & IXOFF) != (old_iflag & IXOFF)
848 || (iflag & IXON) != (old_iflag & IXON)
849 || (cflag & CRTSCTS) != (old_cflag & CRTSCTS)) {
850 /* Not currently supported */
851 tty->termios->c_cflag &= ~CRTSCTS;
852 /* Drop DTR/RTS if no flow control otherwise assert */
854 if ((iflag & IXOFF) || (iflag & IXON) || (cflag & CRTSCTS))
855 priv->control_state |= TIOCM_DTR | TIOCM_RTS;
857 priv->control_state &= ~(TIOCM_DTR | TIOCM_RTS);
858 mct_u232_set_modem_ctrl(serial, priv->control_state);
862 memcpy(&cfg, &priv->cfg, sizeof(cfg));
863 spin_unlock_irqrestore(&priv->lock, flags);
865 /* now commit changes to device */
866 klsi_105_chg_port_settings(port, &cfg);
867 } /* klsi_105_set_termios */
871 static void mct_u232_break_ctl(struct tty_struct *tty, int break_state)
873 struct usb_serial_port *port = tty->driver_data;
874 struct usb_serial *serial = port->serial;
875 struct mct_u232_private *priv =
876 (struct mct_u232_private *)port->private;
877 unsigned char lcr = priv->last_lcr;
879 dbg("%sstate=%d", __func__, break_state);
882 lcr |= MCT_U232_SET_BREAK;
884 mct_u232_set_line_ctrl(serial, lcr);
885 } /* mct_u232_break_ctl */
888 static int klsi_105_tiocmget(struct tty_struct *tty, struct file *file)
890 struct usb_serial_port *port = tty->driver_data;
891 struct klsi_105_private *priv = usb_get_serial_port_data(port);
894 unsigned long line_state;
895 dbg("%s - request, just guessing", __func__);
897 rc = klsi_105_get_line_state(port, &line_state);
900 "Reading line control failed (error = %d)\n", rc);
901 /* better return value? EAGAIN? */
905 spin_lock_irqsave(&priv->lock, flags);
906 priv->line_state = line_state;
907 spin_unlock_irqrestore(&priv->lock, flags);
908 dbg("%s - read line state 0x%lx", __func__, line_state);
909 return (int)line_state;
912 static int klsi_105_tiocmset(struct tty_struct *tty, struct file *file,
913 unsigned int set, unsigned int clear)
915 int retval = -EINVAL;
919 /* if this ever gets implemented, it should be done something like this:
920 struct usb_serial *serial = port->serial;
921 struct klsi_105_private *priv = usb_get_serial_port_data(port);
925 spin_lock_irqsave (&priv->lock, flags);
927 priv->control_state |= TIOCM_RTS;
929 priv->control_state |= TIOCM_DTR;
930 if (clear & TIOCM_RTS)
931 priv->control_state &= ~TIOCM_RTS;
932 if (clear & TIOCM_DTR)
933 priv->control_state &= ~TIOCM_DTR;
934 control = priv->control_state;
935 spin_unlock_irqrestore (&priv->lock, flags);
936 retval = mct_u232_set_modem_ctrl(serial, control);
941 static void klsi_105_throttle(struct tty_struct *tty)
943 struct usb_serial_port *port = tty->driver_data;
944 dbg("%s - port %d", __func__, port->number);
945 usb_kill_urb(port->read_urb);
948 static void klsi_105_unthrottle(struct tty_struct *tty)
950 struct usb_serial_port *port = tty->driver_data;
953 dbg("%s - port %d", __func__, port->number);
955 port->read_urb->dev = port->serial->dev;
956 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
959 "%s - failed submitting read urb, error %d\n",
965 static int __init klsi_105_init(void)
968 retval = usb_serial_register(&kl5kusb105d_device);
970 goto failed_usb_serial_register;
971 retval = usb_register(&kl5kusb105d_driver);
973 goto failed_usb_register;
975 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
979 usb_serial_deregister(&kl5kusb105d_device);
980 failed_usb_serial_register:
985 static void __exit klsi_105_exit(void)
987 usb_deregister(&kl5kusb105d_driver);
988 usb_serial_deregister(&kl5kusb105d_device);
992 module_init(klsi_105_init);
993 module_exit(klsi_105_exit);
995 MODULE_AUTHOR(DRIVER_AUTHOR);
996 MODULE_DESCRIPTION(DRIVER_DESC);
997 MODULE_LICENSE("GPL");
1000 module_param(debug, bool, S_IRUGO | S_IWUSR);
1001 MODULE_PARM_DESC(debug, "enable extensive debugging messages");
1003 /* vim: set sts=8 ts=8 sw=8: */