kl5kusb105.c 27.4 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * KLSI KL5KUSB105 chip RS232 converter driver
 *
 *   Copyright (C) 2001 Utz-Uwe Haus <haus@uuhaus.de>
 *
 *   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.
 *
 * All information about the device was acquired using SniffUSB ans snoopUSB
 * on Windows98.
 * It was written out of frustration with the PalmConnect USB Serial adapter
 * sold by Palm Inc.
 * Neither Palm, nor their contractor (MCCI) or their supplier (KLSI) provided
 * information that was not already available.
 *
A
Alan Cox 已提交
18
 * It seems that KLSI bought some silicon-design information from ScanLogic,
L
Linus Torvalds 已提交
19 20 21
 * whose SL11R processor is at the core of the KL5KUSB chipset from KLSI.
 * KLSI has firmware available for their devices; it is probable that the
 * firmware differs from that used by KLSI in their products. If you have an
A
Alan Cox 已提交
22 23
 * original KLSI device and can provide some information on it, I would be
 * most interested in adding support for it here. If you have any information
L
Linus Torvalds 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
 * on the protocol used (or find errors in my reverse-engineered stuff), please
 * let me know.
 *
 * The code was only tested with a PalmConnect USB adapter; if you
 * are adventurous, try it with any KLSI-based device and let me know how it
 * breaks so that I can fix it!
 */

/* TODO:
 *	check modem line signals
 *	implement handshaking or decide that we do not support it
 */

/* History:
 *   0.3a - implemented pools of write URBs
 *   0.3  - alpha version for public testing
 *   0.2  - TIOCMGET works, so autopilot(1) can be used!
 *   0.1  - can be used to to pilot-xfer -p /dev/ttyUSB0 -l
 *
A
Alan Cox 已提交
43
 *   The driver skeleton is mainly based on mct_u232.c and various other
L
Linus Torvalds 已提交
44 45 46 47 48 49 50 51 52 53 54 55
 *   pieces of code shamelessly copied from the drivers/usb/serial/ directory.
 */


#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/tty.h>
#include <linux/tty_driver.h>
#include <linux/tty_flip.h>
#include <linux/module.h>
A
Alan Cox 已提交
56
#include <linux/uaccess.h>
A
Al Viro 已提交
57
#include <asm/unaligned.h>
L
Linus Torvalds 已提交
58
#include <linux/usb.h>
59
#include <linux/usb/serial.h>
L
Linus Torvalds 已提交
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
#include "kl5kusb105.h"

static int debug;

/*
 * Version Information
 */
#define DRIVER_VERSION "v0.3a"
#define DRIVER_AUTHOR "Utz-Uwe Haus <haus@uuhaus.de>"
#define DRIVER_DESC "KLSI KL5KUSB105 chipset USB->Serial Converter driver"


/*
 * Function prototypes
 */
A
Alan Cox 已提交
75
static int  klsi_105_startup(struct usb_serial *serial);
76 77
static void klsi_105_disconnect(struct usb_serial *serial);
static void klsi_105_release(struct usb_serial *serial);
A
Alan Cox 已提交
78 79
static int  klsi_105_open(struct tty_struct *tty,
			struct usb_serial_port *port, struct file *filp);
80
static void klsi_105_close(struct usb_serial_port *port);
A
Alan Cox 已提交
81 82 83 84 85 86 87 88 89 90 91 92 93
static int  klsi_105_write(struct tty_struct *tty,
	struct usb_serial_port *port, const unsigned char *buf, int count);
static void klsi_105_write_bulk_callback(struct urb *urb);
static int  klsi_105_chars_in_buffer(struct tty_struct *tty);
static int  klsi_105_write_room(struct tty_struct *tty);
static void klsi_105_read_bulk_callback(struct urb *urb);
static void klsi_105_set_termios(struct tty_struct *tty,
			struct usb_serial_port *port, struct ktermios *old);
static void klsi_105_throttle(struct tty_struct *tty);
static void klsi_105_unthrottle(struct tty_struct *tty);
static int  klsi_105_tiocmget(struct tty_struct *tty, struct file *file);
static int  klsi_105_tiocmset(struct tty_struct *tty, struct file *file,
			unsigned int set, unsigned int clear);
L
Linus Torvalds 已提交
94 95 96 97 98 99 100 101 102 103

/*
 * All of the device info needed for the KLSI converters.
 */
static struct usb_device_id id_table [] = {
	{ USB_DEVICE(PALMCONNECT_VID, PALMCONNECT_PID) },
	{ USB_DEVICE(KLSI_VID, KLSI_KL5KUSB105D_PID) },
	{ }		/* Terminating entry */
};

A
Alan Cox 已提交
104
MODULE_DEVICE_TABLE(usb, id_table);
L
Linus Torvalds 已提交
105 106 107 108 109 110

static struct usb_driver kl5kusb105d_driver = {
	.name =		"kl5kusb105d",
	.probe =	usb_serial_probe,
	.disconnect =	usb_serial_disconnect,
	.id_table =	id_table,
111
	.no_dynamic_id = 	1,
L
Linus Torvalds 已提交
112 113
};

114
static struct usb_serial_driver kl5kusb105d_device = {
115 116
	.driver = {
		.owner =	THIS_MODULE,
117
		.name =		"kl5kusb105d",
118
	},
119
	.description =	     "KL5KUSB105D / PalmConnect",
120
	.usb_driver =	     &kl5kusb105d_driver,
L
Linus Torvalds 已提交
121 122 123 124 125 126 127 128
	.id_table =	     id_table,
	.num_ports =	     1,
	.open =		     klsi_105_open,
	.close =	     klsi_105_close,
	.write =	     klsi_105_write,
	.write_bulk_callback = klsi_105_write_bulk_callback,
	.chars_in_buffer =   klsi_105_chars_in_buffer,
	.write_room =        klsi_105_write_room,
A
Alan Cox 已提交
129
	.read_bulk_callback = klsi_105_read_bulk_callback,
L
Linus Torvalds 已提交
130 131 132 133 134
	.set_termios =	     klsi_105_set_termios,
	/*.break_ctl =	     klsi_105_break_ctl,*/
	.tiocmget =          klsi_105_tiocmget,
	.tiocmset =          klsi_105_tiocmset,
	.attach =	     klsi_105_startup,
135 136
	.disconnect =	     klsi_105_disconnect,
	.release =	     klsi_105_release,
L
Linus Torvalds 已提交
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
	.throttle =	     klsi_105_throttle,
	.unthrottle =	     klsi_105_unthrottle,
};

struct klsi_105_port_settings {
	__u8	pktlen;		/* always 5, it seems */
	__u8	baudrate;
	__u8	databits;
	__u8	unknown1;
	__u8	unknown2;
} __attribute__ ((packed));

/* we implement a pool of NUM_URBS urbs per usb_serial */
#define NUM_URBS			1
#define URB_TRANSFER_BUFFER_SIZE	64
struct klsi_105_private {
	struct klsi_105_port_settings	cfg;
A
Alan Cox 已提交
154
	struct ktermios			termios;
L
Linus Torvalds 已提交
155 156
	unsigned long			line_state; /* modem line settings */
	/* write pool */
A
Alan Cox 已提交
157
	struct urb			*write_urb_pool[NUM_URBS];
L
Linus Torvalds 已提交
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
	spinlock_t			lock;
	unsigned long			bytes_in;
	unsigned long			bytes_out;
};


/*
 * Handle vendor specific USB requests
 */


#define KLSI_TIMEOUT	 5000 /* default urb timeout */

static int klsi_105_chg_port_settings(struct usb_serial_port *port,
				      struct klsi_105_port_settings *settings)
{
	int rc;

A
Alan Cox 已提交
176 177 178 179 180 181 182 183 184
	rc = usb_control_msg(port->serial->dev,
			usb_sndctrlpipe(port->serial->dev, 0),
			KL5KUSB105A_SIO_SET_DATA,
			USB_TYPE_VENDOR | USB_DIR_OUT | USB_RECIP_INTERFACE,
			0, /* value */
			0, /* index */
			settings,
			sizeof(struct klsi_105_port_settings),
			KLSI_TIMEOUT);
L
Linus Torvalds 已提交
185
	if (rc < 0)
186 187
		dev_err(&port->dev,
			"Change port settings failed (error = %d)\n", rc);
188 189 190 191
	dev_info(&port->serial->dev->dev,
		 "%d byte block, baudrate %x, databits %d, u1 %d, u2 %d\n",
		 settings->pktlen, settings->baudrate, settings->databits,
		 settings->unknown1, settings->unknown2);
A
Alan Cox 已提交
192
	return rc;
L
Linus Torvalds 已提交
193 194 195 196 197 198 199 200 201 202 203 204 205
} /* klsi_105_chg_port_settings */

/* translate a 16-bit status value from the device to linux's TIO bits */
static unsigned long klsi_105_status2linestate(const __u16 status)
{
	unsigned long res = 0;

	res =   ((status & KL5KUSB105A_DSR) ? TIOCM_DSR : 0)
	      | ((status & KL5KUSB105A_CTS) ? TIOCM_CTS : 0)
	      ;

	return res;
}
A
Alan Cox 已提交
206
/*
L
Linus Torvalds 已提交
207
 * Read line control via vendor command and return result through
A
Alan Cox 已提交
208
 * *line_state_p
L
Linus Torvalds 已提交
209 210 211 212 213 214 215
 */
/* It seems that the status buffer has always only 2 bytes length */
#define KLSI_STATUSBUF_LEN	2
static int klsi_105_get_line_state(struct usb_serial_port *port,
				   unsigned long *line_state_p)
{
	int rc;
A
Alan Cox 已提交
216
	__u8 status_buf[KLSI_STATUSBUF_LEN] = { -1, -1};
L
Linus Torvalds 已提交
217 218
	__u16 status;

219
	dev_info(&port->serial->dev->dev, "sending SIO Poll request\n");
A
Alan Cox 已提交
220
	rc = usb_control_msg(port->serial->dev,
L
Linus Torvalds 已提交
221 222
			     usb_rcvctrlpipe(port->serial->dev, 0),
			     KL5KUSB105A_SIO_POLL,
A
Alan Cox 已提交
223
			     USB_TYPE_VENDOR | USB_DIR_IN,
L
Linus Torvalds 已提交
224 225 226 227 228 229
			     0, /* value */
			     0, /* index */
			     status_buf, KLSI_STATUSBUF_LEN,
			     10000
			     );
	if (rc < 0)
230 231
		dev_err(&port->dev, "Reading line status failed (error = %d)\n",
			rc);
L
Linus Torvalds 已提交
232
	else {
233
		status = get_unaligned_le16(status_buf);
L
Linus Torvalds 已提交
234

235 236
		dev_info(&port->serial->dev->dev, "read status %x %x",
			 status_buf[0], status_buf[1]);
L
Linus Torvalds 已提交
237 238 239

		*line_state_p = klsi_105_status2linestate(status);
	}
A
Alan Cox 已提交
240
	return rc;
L
Linus Torvalds 已提交
241 242 243 244 245 246 247
}


/*
 * Driver's tty interface functions
 */

A
Alan Cox 已提交
248
static int klsi_105_startup(struct usb_serial *serial)
L
Linus Torvalds 已提交
249 250
{
	struct klsi_105_private *priv;
251
	int i, j;
L
Linus Torvalds 已提交
252 253 254 255 256 257

	/* check if we support the product id (see keyspan.c)
	 * FIXME
	 */

	/* allocate the private data structure */
A
Alan Cox 已提交
258
	for (i = 0; i < serial->num_ports; i++) {
L
Linus Torvalds 已提交
259 260 261
		priv = kmalloc(sizeof(struct klsi_105_private),
						   GFP_KERNEL);
		if (!priv) {
262
			dbg("%skmalloc for klsi_105_private failed.", __func__);
263 264
			i--;
			goto err_cleanup;
L
Linus Torvalds 已提交
265 266 267 268 269 270 271 272 273 274 275 276 277 278
		}
		/* set initial values for control structures */
		priv->cfg.pktlen    = 5;
		priv->cfg.baudrate  = kl5kusb105a_sio_b9600;
		priv->cfg.databits  = kl5kusb105a_dtb_8;
		priv->cfg.unknown1  = 0;
		priv->cfg.unknown2  = 1;

		priv->line_state    = 0;

		priv->bytes_in	    = 0;
		priv->bytes_out	    = 0;
		usb_set_serial_port_data(serial->port[i], priv);

A
Alan Cox 已提交
279 280 281
		spin_lock_init(&priv->lock);
		for (j = 0; j < NUM_URBS; j++) {
			struct urb *urb = usb_alloc_urb(0, GFP_KERNEL);
L
Linus Torvalds 已提交
282 283 284

			priv->write_urb_pool[j] = urb;
			if (urb == NULL) {
285
				dev_err(&serial->dev->dev, "No more urbs???\n");
286
				goto err_cleanup;
L
Linus Torvalds 已提交
287 288
			}

A
Alan Cox 已提交
289 290
			urb->transfer_buffer =
				kmalloc(URB_TRANSFER_BUFFER_SIZE, GFP_KERNEL);
L
Linus Torvalds 已提交
291
			if (!urb->transfer_buffer) {
292 293 294
				dev_err(&serial->dev->dev,
					"%s - out of memory for urb buffers.\n",
					__func__);
295
				goto err_cleanup;
L
Linus Torvalds 已提交
296 297 298 299 300 301
			}
		}

		/* priv->termios is left uninitalized until port opening */
		init_waitqueue_head(&serial->port[i]->write_wait);
	}
A
Alan Cox 已提交
302

303 304 305 306 307
	return 0;

err_cleanup:
	for (; i >= 0; i--) {
		priv = usb_get_serial_port_data(serial->port[i]);
A
Alan Cox 已提交
308
		for (j = 0; j < NUM_URBS; j++) {
309 310 311 312 313 314 315 316
			if (priv->write_urb_pool[j]) {
				kfree(priv->write_urb_pool[j]->transfer_buffer);
				usb_free_urb(priv->write_urb_pool[j]);
			}
		}
		usb_set_serial_port_data(serial->port[i], NULL);
	}
	return -ENOMEM;
L
Linus Torvalds 已提交
317 318 319
} /* klsi_105_startup */


320
static void klsi_105_disconnect(struct usb_serial *serial)
L
Linus Torvalds 已提交
321 322
{
	int i;
A
Alan Cox 已提交
323

324
	dbg("%s", __func__);
L
Linus Torvalds 已提交
325 326

	/* stop reads and writes on all ports */
A
Alan Cox 已提交
327 328 329
	for (i = 0; i < serial->num_ports; ++i) {
		struct klsi_105_private *priv =
				usb_get_serial_port_data(serial->port[i]);
L
Linus Torvalds 已提交
330 331 332 333 334 335 336 337

		if (priv) {
			/* kill our write urb pool */
			int j;
			struct urb **write_urbs = priv->write_urb_pool;

			for (j = 0; j < NUM_URBS; j++) {
				if (write_urbs[j]) {
338
					usb_kill_urb(write_urbs[j]);
A
Alan Cox 已提交
339
					usb_free_urb(write_urbs[j]);
L
Linus Torvalds 已提交
340 341 342 343
				}
			}
		}
	}
344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359
} /* klsi_105_disconnect */


static void klsi_105_release(struct usb_serial *serial)
{
	int i;

	dbg("%s", __func__);

	for (i = 0; i < serial->num_ports; ++i) {
		struct klsi_105_private *priv =
				usb_get_serial_port_data(serial->port[i]);

		kfree(priv);
	}
} /* klsi_105_release */
L
Linus Torvalds 已提交
360

A
Alan Cox 已提交
361 362
static int  klsi_105_open(struct tty_struct *tty,
			struct usb_serial_port *port, struct file *filp)
L
Linus Torvalds 已提交
363 364 365 366 367 368 369 370 371
{
	struct klsi_105_private *priv = usb_get_serial_port_data(port);
	int retval = 0;
	int rc;
	int i;
	unsigned long line_state;
	struct klsi_105_port_settings cfg;
	unsigned long flags;

372
	dbg("%s port %d", __func__, port->number);
L
Linus Torvalds 已提交
373 374 375

	/* force low_latency on so that our tty_push actually forces
	 * the data through
A
Alan Cox 已提交
376
	 * tty->low_latency = 1; */
L
Linus Torvalds 已提交
377 378 379

	/* Do a defined restart:
	 * Set up sane default baud rate and send the 'READ_ON'
A
Alan Cox 已提交
380
	 * vendor command.
L
Linus Torvalds 已提交
381 382 383 384 385 386 387 388 389 390
	 * FIXME: set modem line control (how?)
	 * Then read the modem line control and store values in
	 * priv->line_state.
	 */
	cfg.pktlen   = 5;
	cfg.baudrate = kl5kusb105a_sio_b9600;
	cfg.databits = kl5kusb105a_dtb_8;
	cfg.unknown1 = 0;
	cfg.unknown2 = 1;
	klsi_105_chg_port_settings(port, &cfg);
A
Alan Cox 已提交
391

L
Linus Torvalds 已提交
392
	/* set up termios structure */
A
Alan Cox 已提交
393
	spin_lock_irqsave(&priv->lock, flags);
A
Alan Cox 已提交
394 395 396 397
	priv->termios.c_iflag = tty->termios->c_iflag;
	priv->termios.c_oflag = tty->termios->c_oflag;
	priv->termios.c_cflag = tty->termios->c_cflag;
	priv->termios.c_lflag = tty->termios->c_lflag;
A
Alan Cox 已提交
398
	for (i = 0; i < NCCS; i++)
A
Alan Cox 已提交
399
		priv->termios.c_cc[i] = tty->termios->c_cc[i];
L
Linus Torvalds 已提交
400 401 402 403 404
	priv->cfg.pktlen   = cfg.pktlen;
	priv->cfg.baudrate = cfg.baudrate;
	priv->cfg.databits = cfg.databits;
	priv->cfg.unknown1 = cfg.unknown1;
	priv->cfg.unknown2 = cfg.unknown2;
A
Alan Cox 已提交
405
	spin_unlock_irqrestore(&priv->lock, flags);
L
Linus Torvalds 已提交
406 407

	/* READ_ON and urb submission */
A
Alan Cox 已提交
408
	usb_fill_bulk_urb(port->read_urb, port->serial->dev,
L
Linus Torvalds 已提交
409 410 411 412 413 414 415 416 417
		      usb_rcvbulkpipe(port->serial->dev,
				      port->bulk_in_endpointAddress),
		      port->read_urb->transfer_buffer,
		      port->read_urb->transfer_buffer_length,
		      klsi_105_read_bulk_callback,
		      port);

	rc = usb_submit_urb(port->read_urb, GFP_KERNEL);
	if (rc) {
418 419
		dev_err(&port->dev, "%s - failed submitting read urb, "
			"error %d\n", __func__, rc);
L
Linus Torvalds 已提交
420 421 422 423 424
		retval = rc;
		goto exit;
	}

	rc = usb_control_msg(port->serial->dev,
A
Alan Cox 已提交
425
			     usb_sndctrlpipe(port->serial->dev, 0),
L
Linus Torvalds 已提交
426 427 428 429 430 431 432 433
			     KL5KUSB105A_SIO_CONFIGURE,
			     USB_TYPE_VENDOR|USB_DIR_OUT|USB_RECIP_INTERFACE,
			     KL5KUSB105A_SIO_CONFIGURE_READ_ON,
			     0, /* index */
			     NULL,
			     0,
			     KLSI_TIMEOUT);
	if (rc < 0) {
434
		dev_err(&port->dev, "Enabling read failed (error = %d)\n", rc);
L
Linus Torvalds 已提交
435
		retval = rc;
A
Alan Cox 已提交
436
	} else
437
		dbg("%s - enabled reading", __func__);
L
Linus Torvalds 已提交
438 439 440

	rc = klsi_105_get_line_state(port, &line_state);
	if (rc >= 0) {
A
Alan Cox 已提交
441
		spin_lock_irqsave(&priv->lock, flags);
L
Linus Torvalds 已提交
442
		priv->line_state = line_state;
A
Alan Cox 已提交
443
		spin_unlock_irqrestore(&priv->lock, flags);
444
		dbg("%s - read line state 0x%lx", __func__, line_state);
L
Linus Torvalds 已提交
445 446 447 448 449 450 451 452 453
		retval = 0;
	} else
		retval = rc;

exit:
	return retval;
} /* klsi_105_open */


454
static void klsi_105_close(struct usb_serial_port *port)
L
Linus Torvalds 已提交
455 456 457 458
{
	struct klsi_105_private *priv = usb_get_serial_port_data(port);
	int rc;

459
	dbg("%s port %d", __func__, port->number);
L
Linus Torvalds 已提交
460

461 462 463
	mutex_lock(&port->serial->disc_mutex);
	if (!port->serial->disconnected) {
		/* send READ_OFF */
A
Alan Cox 已提交
464 465 466 467 468 469 470 471
		rc = usb_control_msg(port->serial->dev,
				     usb_sndctrlpipe(port->serial->dev, 0),
				     KL5KUSB105A_SIO_CONFIGURE,
				     USB_TYPE_VENDOR | USB_DIR_OUT,
				     KL5KUSB105A_SIO_CONFIGURE_READ_OFF,
				     0, /* index */
				     NULL, 0,
				     KLSI_TIMEOUT);
472
		if (rc < 0)
473 474
			dev_err(&port->dev,
				"Disabling read failed (error = %d)\n", rc);
475 476
	}
	mutex_unlock(&port->serial->disc_mutex);
L
Linus Torvalds 已提交
477 478 479 480 481 482 483 484

	/* shutdown our bulk reads and writes */
	usb_kill_urb(port->write_urb);
	usb_kill_urb(port->read_urb);
	/* unlink our write pool */
	/* FIXME */
	/* wgg - do I need this? I think so. */
	usb_kill_urb(port->interrupt_in_urb);
485 486 487
	dev_info(&port->serial->dev->dev,
		 "port stats: %ld bytes in, %ld bytes out\n",
		 priv->bytes_in, priv->bytes_out);
L
Linus Torvalds 已提交
488 489 490 491
} /* klsi_105_close */


/* We need to write a complete 64-byte data block and encode the
A
Alan Cox 已提交
492
 * number actually sent in the first double-byte, LSB-order. That
L
Linus Torvalds 已提交
493 494 495 496 497
 * leaves at most 62 bytes of payload.
 */
#define KLSI_105_DATA_OFFSET	2   /* in the bulk urb data block */


A
Alan Cox 已提交
498 499
static int klsi_105_write(struct tty_struct *tty,
	struct usb_serial_port *port, const unsigned char *buf, int count)
L
Linus Torvalds 已提交
500 501 502
{
	struct klsi_105_private *priv = usb_get_serial_port_data(port);
	int result, size;
A
Alan Cox 已提交
503
	int bytes_sent = 0;
L
Linus Torvalds 已提交
504

505
	dbg("%s - port %d", __func__, port->number);
L
Linus Torvalds 已提交
506 507 508 509 510 511

	while (count > 0) {
		/* try to find a free urb (write 0 bytes if none) */
		struct urb *urb = NULL;
		unsigned long flags;
		int i;
A
Alan Cox 已提交
512 513 514 515
		/* since the pool is per-port we might not need
		   the spin lock !? */
		spin_lock_irqsave(&priv->lock, flags);
		for (i = 0; i < NUM_URBS; i++) {
L
Linus Torvalds 已提交
516 517
			if (priv->write_urb_pool[i]->status != -EINPROGRESS) {
				urb = priv->write_urb_pool[i];
518
				dbg("%s - using pool URB %d", __func__, i);
L
Linus Torvalds 已提交
519 520 521
				break;
			}
		}
A
Alan Cox 已提交
522
		spin_unlock_irqrestore(&priv->lock, flags);
L
Linus Torvalds 已提交
523

A
Alan Cox 已提交
524
		if (urb == NULL) {
525
			dbg("%s - no more free urbs", __func__);
L
Linus Torvalds 已提交
526 527 528 529
			goto exit;
		}

		if (urb->transfer_buffer == NULL) {
A
Alan Cox 已提交
530 531
			urb->transfer_buffer =
				kmalloc(URB_TRANSFER_BUFFER_SIZE, GFP_ATOMIC);
L
Linus Torvalds 已提交
532
			if (urb->transfer_buffer == NULL) {
533 534 535
				dev_err(&port->dev,
					"%s - no more kernel memory...\n",
					__func__);
L
Linus Torvalds 已提交
536 537 538 539
				goto exit;
			}
		}

A
Alan Cox 已提交
540 541 542
		size = min(count, port->bulk_out_size - KLSI_105_DATA_OFFSET);
		size = min(size, URB_TRANSFER_BUFFER_SIZE -
							KLSI_105_DATA_OFFSET);
L
Linus Torvalds 已提交
543

A
Alan Cox 已提交
544
		memcpy(urb->transfer_buffer + KLSI_105_DATA_OFFSET, buf, size);
L
Linus Torvalds 已提交
545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561

		/* write payload size into transfer buffer */
		((__u8 *)urb->transfer_buffer)[0] = (__u8) (size & 0xFF);
		((__u8 *)urb->transfer_buffer)[1] = (__u8) ((size & 0xFF00)>>8);

		/* set up our urb */
		usb_fill_bulk_urb(urb, port->serial->dev,
			      usb_sndbulkpipe(port->serial->dev,
					      port->bulk_out_endpointAddress),
			      urb->transfer_buffer,
			      URB_TRANSFER_BUFFER_SIZE,
			      klsi_105_write_bulk_callback,
			      port);

		/* send the data out the bulk port */
		result = usb_submit_urb(urb, GFP_ATOMIC);
		if (result) {
562 563 564
			dev_err(&port->dev,
				"%s - failed submitting write urb, error %d\n",
				__func__, result);
L
Linus Torvalds 已提交
565 566 567 568 569 570 571 572
			goto exit;
		}
		buf += size;
		bytes_sent += size;
		count -= size;
	}
exit:
	/* lockless, but it's for debug info only... */
A
Alan Cox 已提交
573
	priv->bytes_out += bytes_sent;
L
Linus Torvalds 已提交
574 575 576 577

	return bytes_sent;	/* that's how much we wrote */
} /* klsi_105_write */

A
Alan Cox 已提交
578
static void klsi_105_write_bulk_callback(struct urb *urb)
L
Linus Torvalds 已提交
579
{
580
	struct usb_serial_port *port = urb->context;
581
	int status = urb->status;
L
Linus Torvalds 已提交
582

583
	dbg("%s - port %d", __func__, port->number);
584 585

	if (status) {
586
		dbg("%s - nonzero write bulk status received: %d", __func__,
587
		    status);
L
Linus Torvalds 已提交
588 589 590
		return;
	}

591
	usb_serial_port_softint(port);
L
Linus Torvalds 已提交
592 593 594 595
} /* klsi_105_write_bulk_completion_callback */


/* return number of characters currently in the writing process */
A
Alan Cox 已提交
596
static int klsi_105_chars_in_buffer(struct tty_struct *tty)
L
Linus Torvalds 已提交
597
{
A
Alan Cox 已提交
598
	struct usb_serial_port *port = tty->driver_data;
L
Linus Torvalds 已提交
599 600 601 602 603
	int chars = 0;
	int i;
	unsigned long flags;
	struct klsi_105_private *priv = usb_get_serial_port_data(port);

A
Alan Cox 已提交
604
	spin_lock_irqsave(&priv->lock, flags);
L
Linus Torvalds 已提交
605 606

	for (i = 0; i < NUM_URBS; ++i) {
A
Alan Cox 已提交
607
		if (priv->write_urb_pool[i]->status == -EINPROGRESS)
L
Linus Torvalds 已提交
608 609 610
			chars += URB_TRANSFER_BUFFER_SIZE;
	}

A
Alan Cox 已提交
611
	spin_unlock_irqrestore(&priv->lock, flags);
L
Linus Torvalds 已提交
612

613
	dbg("%s - returns %d", __func__, chars);
A
Alan Cox 已提交
614
	return chars;
L
Linus Torvalds 已提交
615 616
}

A
Alan Cox 已提交
617
static int klsi_105_write_room(struct tty_struct *tty)
L
Linus Torvalds 已提交
618
{
A
Alan Cox 已提交
619
	struct usb_serial_port *port = tty->driver_data;
L
Linus Torvalds 已提交
620 621 622 623 624
	unsigned long flags;
	int i;
	int room = 0;
	struct klsi_105_private *priv = usb_get_serial_port_data(port);

A
Alan Cox 已提交
625
	spin_lock_irqsave(&priv->lock, flags);
L
Linus Torvalds 已提交
626
	for (i = 0; i < NUM_URBS; ++i) {
A
Alan Cox 已提交
627
		if (priv->write_urb_pool[i]->status != -EINPROGRESS)
L
Linus Torvalds 已提交
628 629 630
			room += URB_TRANSFER_BUFFER_SIZE;
	}

A
Alan Cox 已提交
631
	spin_unlock_irqrestore(&priv->lock, flags);
L
Linus Torvalds 已提交
632

633
	dbg("%s - returns %d", __func__, room);
A
Alan Cox 已提交
634
	return room;
L
Linus Torvalds 已提交
635 636 637 638
}



A
Alan Cox 已提交
639
static void klsi_105_read_bulk_callback(struct urb *urb)
L
Linus Torvalds 已提交
640
{
641
	struct usb_serial_port *port = urb->context;
L
Linus Torvalds 已提交
642 643 644 645
	struct klsi_105_private *priv = usb_get_serial_port_data(port);
	struct tty_struct *tty;
	unsigned char *data = urb->transfer_buffer;
	int rc;
646
	int status = urb->status;
L
Linus Torvalds 已提交
647

648
	dbg("%s - port %d", __func__, port->number);
L
Linus Torvalds 已提交
649 650

	/* The urb might have been killed. */
651
	if (status) {
652
		dbg("%s - nonzero read bulk status received: %d", __func__,
653 654 655 656
		    status);
		return;
	}

L
Linus Torvalds 已提交
657 658 659 660 661
	/* The data received is again preceded by a length double-byte in LSB-
	 * first order (see klsi_105_write() )
	 */
	if (urb->actual_length == 0) {
		/* empty urbs seem to happen, we ignore them */
662
		/* dbg("%s - emtpy URB", __func__); */
L
Linus Torvalds 已提交
663 664
	       ;
	} else if (urb->actual_length <= 2) {
665
		dbg("%s - size %d URB not understood", __func__,
L
Linus Torvalds 已提交
666
		    urb->actual_length);
667
		usb_serial_debug_data(debug, &port->dev, __func__,
L
Linus Torvalds 已提交
668 669 670 671
				      urb->actual_length, data);
	} else {
		int bytes_sent = ((__u8 *) data)[0] +
				 ((unsigned int) ((__u8 *) data)[1] << 8);
A
Alan Cox 已提交
672
		tty = tty_port_tty_get(&port->port);
L
Linus Torvalds 已提交
673 674 675 676 677
		/* we should immediately resubmit the URB, before attempting
		 * to pass the data on to the tty layer. But that needs locking
		 * against re-entry an then mixed-up data because of
		 * intermixed tty_flip_buffer_push()s
		 * FIXME
A
Alan Cox 已提交
678
		 */
679
		usb_serial_debug_data(debug, &port->dev, __func__,
L
Linus Torvalds 已提交
680 681 682 683
				      urb->actual_length, data);

		if (bytes_sent + 2 > urb->actual_length) {
			dbg("%s - trying to read more data than available"
684
			    " (%d vs. %d)", __func__,
L
Linus Torvalds 已提交
685 686 687 688 689
			    bytes_sent+2, urb->actual_length);
			/* cap at implied limit */
			bytes_sent = urb->actual_length - 2;
		}

A
Alan Cox 已提交
690 691
		tty_buffer_request_room(tty, bytes_sent);
		tty_insert_flip_string(tty, data + 2, bytes_sent);
L
Linus Torvalds 已提交
692
		tty_flip_buffer_push(tty);
A
Alan Cox 已提交
693
		tty_kref_put(tty);
L
Linus Torvalds 已提交
694 695 696 697 698

		/* again lockless, but debug info only */
		priv->bytes_in += bytes_sent;
	}
	/* Continue trying to always read  */
A
Alan Cox 已提交
699
	usb_fill_bulk_urb(port->read_urb, port->serial->dev,
L
Linus Torvalds 已提交
700 701 702 703 704 705 706 707
		      usb_rcvbulkpipe(port->serial->dev,
				      port->bulk_in_endpointAddress),
		      port->read_urb->transfer_buffer,
		      port->read_urb->transfer_buffer_length,
		      klsi_105_read_bulk_callback,
		      port);
	rc = usb_submit_urb(port->read_urb, GFP_ATOMIC);
	if (rc)
708 709 710
		dev_err(&port->dev,
			"%s - failed resubmitting read urb, error %d\n",
			__func__, rc);
L
Linus Torvalds 已提交
711 712 713
} /* klsi_105_read_bulk_callback */


A
Alan Cox 已提交
714 715 716
static void klsi_105_set_termios(struct tty_struct *tty,
				 struct usb_serial_port *port,
				 struct ktermios *old_termios)
L
Linus Torvalds 已提交
717 718
{
	struct klsi_105_private *priv = usb_get_serial_port_data(port);
719
	unsigned int iflag = tty->termios->c_iflag;
L
Linus Torvalds 已提交
720
	unsigned int old_iflag = old_termios->c_iflag;
721
	unsigned int cflag = tty->termios->c_cflag;
L
Linus Torvalds 已提交
722 723 724
	unsigned int old_cflag = old_termios->c_cflag;
	struct klsi_105_port_settings cfg;
	unsigned long flags;
725
	speed_t baud;
A
Alan Cox 已提交
726

L
Linus Torvalds 已提交
727
	/* lock while we are modifying the settings */
A
Alan Cox 已提交
728 729
	spin_lock_irqsave(&priv->lock, flags);

L
Linus Torvalds 已提交
730 731 732
	/*
	 * Update baud rate
	 */
733 734
	baud = tty_get_baud_rate(tty);

A
Alan Cox 已提交
735 736 737
	if ((cflag & CBAUD) != (old_cflag & CBAUD)) {
		/* reassert DTR and (maybe) RTS on transition from B0 */
		if ((old_cflag & CBAUD) == B0) {
738
			dbg("%s: baud was B0", __func__);
L
Linus Torvalds 已提交
739 740 741
#if 0
			priv->control_state |= TIOCM_DTR;
			/* don't set RTS if using hardware flow control */
A
Alan Cox 已提交
742
			if (!(old_cflag & CRTSCTS))
L
Linus Torvalds 已提交
743 744 745 746
				priv->control_state |= TIOCM_RTS;
			mct_u232_set_modem_ctrl(serial, priv->control_state);
#endif
		}
747
	}
A
Alan Cox 已提交
748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777
	switch (baud) {
	case 0: /* handled below */
		break;
	case 1200:
		priv->cfg.baudrate = kl5kusb105a_sio_b1200;
		break;
	case 2400:
		priv->cfg.baudrate = kl5kusb105a_sio_b2400;
		break;
	case 4800:
		priv->cfg.baudrate = kl5kusb105a_sio_b4800;
		break;
	case 9600:
		priv->cfg.baudrate = kl5kusb105a_sio_b9600;
		break;
	case 19200:
		priv->cfg.baudrate = kl5kusb105a_sio_b19200;
		break;
	case 38400:
		priv->cfg.baudrate = kl5kusb105a_sio_b38400;
		break;
	case 57600:
		priv->cfg.baudrate = kl5kusb105a_sio_b57600;
		break;
	case 115200:
		priv->cfg.baudrate = kl5kusb105a_sio_b115200;
		break;
	default:
		dbg("KLSI USB->Serial converter:"
		    " unsupported baudrate request, using default of 9600");
A
Alan Cox 已提交
778
			priv->cfg.baudrate = kl5kusb105a_sio_b9600;
A
Alan Cox 已提交
779 780
		baud = 9600;
		break;
781
	}
A
Alan Cox 已提交
782
	if ((cflag & CBAUD) == B0) {
783 784 785 786 787 788
		dbg("%s: baud is B0", __func__);
		/* Drop RTS and DTR */
		/* maybe this should be simulated by sending read
		 * disable and read enable messages?
		 */
		;
L
Linus Torvalds 已提交
789
#if 0
790
		priv->control_state &= ~(TIOCM_DTR | TIOCM_RTS);
A
Alan Cox 已提交
791
		mct_u232_set_modem_ctrl(serial, priv->control_state);
L
Linus Torvalds 已提交
792 793
#endif
	}
794
	tty_encode_baud_rate(tty, baud, baud);
L
Linus Torvalds 已提交
795 796 797 798 799

	if ((cflag & CSIZE) != (old_cflag & CSIZE)) {
		/* set the number of data bits */
		switch (cflag & CSIZE) {
		case CS5:
800
			dbg("%s - 5 bits/byte not supported", __func__);
A
Alan Cox 已提交
801
			spin_unlock_irqrestore(&priv->lock, flags);
L
Linus Torvalds 已提交
802 803
			return ;
		case CS6:
804
			dbg("%s - 6 bits/byte not supported", __func__);
A
Alan Cox 已提交
805
			spin_unlock_irqrestore(&priv->lock, flags);
L
Linus Torvalds 已提交
806 807 808 809 810 811 812 813
			return ;
		case CS7:
			priv->cfg.databits = kl5kusb105a_dtb_7;
			break;
		case CS8:
			priv->cfg.databits = kl5kusb105a_dtb_8;
			break;
		default:
814 815
			dev_err(&port->dev,
				"CSIZE was not CS5-CS8, using default of 8\n");
L
Linus Torvalds 已提交
816 817 818 819 820 821 822 823 824
			priv->cfg.databits = kl5kusb105a_dtb_8;
			break;
		}
	}

	/*
	 * Update line control register (LCR)
	 */
	if ((cflag & (PARENB|PARODD)) != (old_cflag & (PARENB|PARODD))
A
Alan Cox 已提交
825
	    || (cflag & CSTOPB) != (old_cflag & CSTOPB)) {
826 827
		/* Not currently supported */
		tty->termios->c_cflag &= ~(PARENB|PARODD|CSTOPB);
L
Linus Torvalds 已提交
828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849
#if 0
		priv->last_lcr = 0;

		/* set the parity */
		if (cflag & PARENB)
			priv->last_lcr |= (cflag & PARODD) ?
				MCT_U232_PARITY_ODD : MCT_U232_PARITY_EVEN;
		else
			priv->last_lcr |= MCT_U232_PARITY_NONE;

		/* set the number of stop bits */
		priv->last_lcr |= (cflag & CSTOPB) ?
			MCT_U232_STOP_BITS_2 : MCT_U232_STOP_BITS_1;

		mct_u232_set_line_ctrl(serial, priv->last_lcr);
#endif
		;
	}
	/*
	 * Set flow control: well, I do not really now how to handle DTR/RTS.
	 * Just do what we have seen with SniffUSB on Win98.
	 */
A
Alan Cox 已提交
850
	if ((iflag & IXOFF) != (old_iflag & IXOFF)
L
Linus Torvalds 已提交
851
	    || (iflag & IXON) != (old_iflag & IXON)
A
Alan Cox 已提交
852
	    ||  (cflag & CRTSCTS) != (old_cflag & CRTSCTS)) {
853 854
		/* Not currently supported */
		tty->termios->c_cflag &= ~CRTSCTS;
L
Linus Torvalds 已提交
855 856
		/* Drop DTR/RTS if no flow control otherwise assert */
#if 0
A
Alan Cox 已提交
857
		if ((iflag & IXOFF) || (iflag & IXON) || (cflag & CRTSCTS))
L
Linus Torvalds 已提交
858 859 860 861 862 863 864
			priv->control_state |= TIOCM_DTR | TIOCM_RTS;
		else
			priv->control_state &= ~(TIOCM_DTR | TIOCM_RTS);
		mct_u232_set_modem_ctrl(serial, priv->control_state);
#endif
		;
	}
A
Alan Cox 已提交
865 866 867
	memcpy(&cfg, &priv->cfg, sizeof(cfg));
	spin_unlock_irqrestore(&priv->lock, flags);

L
Linus Torvalds 已提交
868 869 870 871 872 873
	/* now commit changes to device */
	klsi_105_chg_port_settings(port, &cfg);
} /* klsi_105_set_termios */


#if 0
A
Alan Cox 已提交
874
static void mct_u232_break_ctl(struct tty_struct *tty, int break_state)
L
Linus Torvalds 已提交
875
{
A
Alan Cox 已提交
876
	struct usb_serial_port *port = tty->driver_data;
L
Linus Torvalds 已提交
877
	struct usb_serial *serial = port->serial;
A
Alan Cox 已提交
878 879
	struct mct_u232_private *priv =
				(struct mct_u232_private *)port->private;
L
Linus Torvalds 已提交
880 881
	unsigned char lcr = priv->last_lcr;

882
	dbg("%sstate=%d", __func__, break_state);
L
Linus Torvalds 已提交
883

884
	/* LOCKING */
L
Linus Torvalds 已提交
885 886 887 888 889 890 891
	if (break_state)
		lcr |= MCT_U232_SET_BREAK;

	mct_u232_set_line_ctrl(serial, lcr);
} /* mct_u232_break_ctl */
#endif

A
Alan Cox 已提交
892
static int klsi_105_tiocmget(struct tty_struct *tty, struct file *file)
L
Linus Torvalds 已提交
893
{
A
Alan Cox 已提交
894
	struct usb_serial_port *port = tty->driver_data;
L
Linus Torvalds 已提交
895 896 897 898
	struct klsi_105_private *priv = usb_get_serial_port_data(port);
	unsigned long flags;
	int rc;
	unsigned long line_state;
899
	dbg("%s - request, just guessing", __func__);
L
Linus Torvalds 已提交
900 901 902

	rc = klsi_105_get_line_state(port, &line_state);
	if (rc < 0) {
903 904
		dev_err(&port->dev,
			"Reading line control failed (error = %d)\n", rc);
L
Linus Torvalds 已提交
905 906 907 908
		/* better return value? EAGAIN? */
		return rc;
	}

A
Alan Cox 已提交
909
	spin_lock_irqsave(&priv->lock, flags);
L
Linus Torvalds 已提交
910
	priv->line_state = line_state;
A
Alan Cox 已提交
911
	spin_unlock_irqrestore(&priv->lock, flags);
912
	dbg("%s - read line state 0x%lx", __func__, line_state);
L
Linus Torvalds 已提交
913 914 915
	return (int)line_state;
}

A
Alan Cox 已提交
916 917
static int klsi_105_tiocmset(struct tty_struct *tty, struct file *file,
			     unsigned int set, unsigned int clear)
L
Linus Torvalds 已提交
918 919
{
	int retval = -EINVAL;
A
Alan Cox 已提交
920

921
	dbg("%s", __func__);
L
Linus Torvalds 已提交
922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944

/* if this ever gets implemented, it should be done something like this:
	struct usb_serial *serial = port->serial;
	struct klsi_105_private *priv = usb_get_serial_port_data(port);
	unsigned long flags;
	int control;

	spin_lock_irqsave (&priv->lock, flags);
	if (set & TIOCM_RTS)
		priv->control_state |= TIOCM_RTS;
	if (set & TIOCM_DTR)
		priv->control_state |= TIOCM_DTR;
	if (clear & TIOCM_RTS)
		priv->control_state &= ~TIOCM_RTS;
	if (clear & TIOCM_DTR)
		priv->control_state &= ~TIOCM_DTR;
	control = priv->control_state;
	spin_unlock_irqrestore (&priv->lock, flags);
	retval = mct_u232_set_modem_ctrl(serial, control);
*/
	return retval;
}

A
Alan Cox 已提交
945
static void klsi_105_throttle(struct tty_struct *tty)
L
Linus Torvalds 已提交
946
{
A
Alan Cox 已提交
947
	struct usb_serial_port *port = tty->driver_data;
948
	dbg("%s - port %d", __func__, port->number);
L
Linus Torvalds 已提交
949 950 951
	usb_kill_urb(port->read_urb);
}

A
Alan Cox 已提交
952
static void klsi_105_unthrottle(struct tty_struct *tty)
L
Linus Torvalds 已提交
953
{
A
Alan Cox 已提交
954
	struct usb_serial_port *port = tty->driver_data;
L
Linus Torvalds 已提交
955 956
	int result;

957
	dbg("%s - port %d", __func__, port->number);
L
Linus Torvalds 已提交
958 959 960 961

	port->read_urb->dev = port->serial->dev;
	result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
	if (result)
962 963 964
		dev_err(&port->dev,
			"%s - failed submitting read urb, error %d\n",
			__func__, result);
L
Linus Torvalds 已提交
965 966 967 968
}



A
Alan Cox 已提交
969
static int __init klsi_105_init(void)
L
Linus Torvalds 已提交
970 971 972 973 974 975 976 977 978
{
	int retval;
	retval = usb_serial_register(&kl5kusb105d_device);
	if (retval)
		goto failed_usb_serial_register;
	retval = usb_register(&kl5kusb105d_driver);
	if (retval)
		goto failed_usb_register;

979 980
	printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
	       DRIVER_DESC "\n");
L
Linus Torvalds 已提交
981 982 983 984 985 986 987 988
	return 0;
failed_usb_register:
	usb_serial_deregister(&kl5kusb105d_device);
failed_usb_serial_register:
	return retval;
}


A
Alan Cox 已提交
989
static void __exit klsi_105_exit(void)
L
Linus Torvalds 已提交
990
{
A
Alan Cox 已提交
991 992
	usb_deregister(&kl5kusb105d_driver);
	usb_serial_deregister(&kl5kusb105d_device);
L
Linus Torvalds 已提交
993 994 995
}


A
Alan Cox 已提交
996 997
module_init(klsi_105_init);
module_exit(klsi_105_exit);
L
Linus Torvalds 已提交
998

A
Alan Cox 已提交
999 1000 1001
MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_LICENSE("GPL");
L
Linus Torvalds 已提交
1002 1003 1004 1005 1006 1007


module_param(debug, bool, S_IRUGO | S_IWUSR);
MODULE_PARM_DESC(debug, "enable extensive debugging messages");

/* vim: set sts=8 ts=8 sw=8: */