mct_u232.c 24.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 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 34 35
/*
 * MCT (Magic Control Technology Corp.) USB RS232 Converter Driver
 *
 *   Copyright (C) 2000 Wolfgang Grandegger (wolfgang@ces.ch)
 *
 *   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.
 *
 * This program is largely derived from the Belkin USB Serial Adapter Driver
 * (see belkin_sa.[ch]). All of the information about the device was acquired
 * by using SniffUSB on Windows98. For technical details see mct_u232.h.
 *
 * William G. Greathouse and Greg Kroah-Hartman provided great help on how to
 * do the reverse engineering and how to write a USB serial device driver.
 *
 * TO BE DONE, TO BE CHECKED:
 *   DTR/RTS signal handling may be incomplete or incorrect. I have mainly
 *   implemented what I have seen with SniffUSB or found in belkin_sa.c.
 *   For further TODOs check also belkin_sa.c.
 *
 * TEST STATUS:
 *   Basic tests have been performed with minicom/zmodem transfers and
 *   modem dialing under Linux 2.4.0-test10 (for me it works fine).
 *
 * 04-Nov-2003 Bill Marr <marr at flex dot com>
 *   - Mimic Windows driver by sending 2 USB 'device request' messages
 *     following normal 'baud rate change' message.  This allows data to be
 *     transmitted to RS-232 devices which don't assert the 'CTS' signal.
 *
 * 10-Nov-2001 Wolfgang Grandegger
 *   - Fixed an endianess problem with the baudrate selection for PowerPC.
 *
 * 06-Dec-2001 Martin Hamilton <martinh@gnu.org>
A
Alan Cox 已提交
36
 *   - Added support for the Belkin F5U109 DB9 adaptor
L
Linus Torvalds 已提交
37 38
 *
 * 30-May-2001 Greg Kroah-Hartman
A
Alan Cox 已提交
39 40
 *   - switched from using spinlock to a semaphore, which fixes lots of
 *     problems.
L
Linus Torvalds 已提交
41 42 43 44 45 46 47 48 49 50 51 52
 *
 * 04-May-2001 Stelian Pop
 *   - Set the maximum bulk output size for Sitecom U232-P25 model to 16 bytes
 *     instead of the device reported 32 (using 32 bytes causes many data
 *     loss, Windows driver uses 16 too).
 *
 * 02-May-2001 Stelian Pop
 *   - Fixed the baud calculation for Sitecom U232-P25 model
 *
 * 08-Apr-2001 gb
 *   - Identify version on module load.
 *
A
Alan Cox 已提交
53
 * 06-Jan-2001 Cornel Ciocirlan
L
Linus Torvalds 已提交
54 55 56 57 58 59 60 61 62
 *   - Added support for Sitecom U232-P25 model (Product Id 0x0230)
 *   - Added support for D-Link DU-H3SP USB BAY (Product Id 0x0200)
 *
 * 29-Nov-2000 Greg Kroah-Hartman
 *   - Added device id table to fit with 2.4.0-test11 structure.
 *   - took out DEAL_WITH_TWO_INT_IN_ENDPOINTS #define as it's not needed
 *     (lots of things will change if/when the usb-serial core changes to
 *     handle these issues.
 *
A
Alan Cox 已提交
63 64
 * 27-Nov-2000 Wolfgang Grandegge
 *   A version for kernel 2.4.0-test10 released to the Linux community
L
Linus Torvalds 已提交
65 66 67 68 69 70 71 72 73 74 75 76
 *   (via linux-usb-devel).
 */

#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>
#include <linux/spinlock.h>
A
Alan Cox 已提交
77
#include <linux/uaccess.h>
78
#include <asm/unaligned.h>
L
Linus Torvalds 已提交
79
#include <linux/usb.h>
80
#include <linux/usb/serial.h>
L
Linus Torvalds 已提交
81 82 83 84 85
#include "mct_u232.h"

/*
 * Version Information
 */
86
#define DRIVER_VERSION "z2.1"		/* Linux in-kernel version */
L
Linus Torvalds 已提交
87 88 89 90 91 92 93 94
#define DRIVER_AUTHOR "Wolfgang Grandegger <wolfgang@ces.ch>"
#define DRIVER_DESC "Magic Control Technology USB-RS232 converter driver"

static int debug;

/*
 * Function prototypes
 */
A
Alan Cox 已提交
95
static int  mct_u232_startup(struct usb_serial *serial);
96
static void mct_u232_release(struct usb_serial *serial);
97
static int  mct_u232_open(struct tty_struct *tty, struct usb_serial_port *port);
98 99
static void mct_u232_close(struct usb_serial_port *port);
static void mct_u232_dtr_rts(struct usb_serial_port *port, int on);
A
Alan Cox 已提交
100 101 102 103 104 105 106 107 108
static void mct_u232_read_int_callback(struct urb *urb);
static void mct_u232_set_termios(struct tty_struct *tty,
			struct usb_serial_port *port, struct ktermios *old);
static void mct_u232_break_ctl(struct tty_struct *tty, int break_state);
static int  mct_u232_tiocmget(struct tty_struct *tty, struct file *file);
static int  mct_u232_tiocmset(struct tty_struct *tty, struct file *file,
			unsigned int set, unsigned int clear);
static void mct_u232_throttle(struct tty_struct *tty);
static void mct_u232_unthrottle(struct tty_struct *tty);
109 110


L
Linus Torvalds 已提交
111 112 113
/*
 * All of the device info needed for the MCT USB-RS232 converter.
 */
114
static const struct usb_device_id id_table_combined[] = {
L
Linus Torvalds 已提交
115 116 117 118 119 120 121
	{ USB_DEVICE(MCT_U232_VID, MCT_U232_PID) },
	{ USB_DEVICE(MCT_U232_VID, MCT_U232_SITECOM_PID) },
	{ USB_DEVICE(MCT_U232_VID, MCT_U232_DU_H3SP_PID) },
	{ USB_DEVICE(MCT_U232_BELKIN_F5U109_VID, MCT_U232_BELKIN_F5U109_PID) },
	{ }		/* Terminating entry */
};

A
Alan Cox 已提交
122
MODULE_DEVICE_TABLE(usb, id_table_combined);
L
Linus Torvalds 已提交
123 124 125 126 127 128

static struct usb_driver mct_u232_driver = {
	.name =		"mct_u232",
	.probe =	usb_serial_probe,
	.disconnect =	usb_serial_disconnect,
	.id_table =	id_table_combined,
129
	.no_dynamic_id = 	1,
L
Linus Torvalds 已提交
130 131
};

132
static struct usb_serial_driver mct_u232_device = {
133 134
	.driver = {
		.owner =	THIS_MODULE,
135
		.name =		"mct_u232",
136
	},
137
	.description =	     "MCT U232",
138
	.usb_driver = 	     &mct_u232_driver,
L
Linus Torvalds 已提交
139 140 141 142
	.id_table =	     id_table_combined,
	.num_ports =	     1,
	.open =		     mct_u232_open,
	.close =	     mct_u232_close,
143
	.dtr_rts =	     mct_u232_dtr_rts,
144 145
	.throttle =	     mct_u232_throttle,
	.unthrottle =	     mct_u232_unthrottle,
L
Linus Torvalds 已提交
146 147 148 149 150 151
	.read_int_callback = mct_u232_read_int_callback,
	.set_termios =	     mct_u232_set_termios,
	.break_ctl =	     mct_u232_break_ctl,
	.tiocmget =	     mct_u232_tiocmget,
	.tiocmset =	     mct_u232_tiocmset,
	.attach =	     mct_u232_startup,
152
	.release =	     mct_u232_release,
L
Linus Torvalds 已提交
153 154 155 156 157 158 159 160 161
};


struct mct_u232_private {
	spinlock_t lock;
	unsigned int	     control_state; /* Modem Line Setting (TIOCM) */
	unsigned char        last_lcr;      /* Line Control Register */
	unsigned char	     last_lsr;      /* Line Status Register */
	unsigned char	     last_msr;      /* Modem Status Register */
162
	unsigned int	     rx_flags;      /* Throttling flags */
L
Linus Torvalds 已提交
163 164
};

165 166
#define THROTTLED		0x01

L
Linus Torvalds 已提交
167 168 169 170 171 172 173 174 175 176
/*
 * Handle vendor specific USB requests
 */

#define WDR_TIMEOUT 5000 /* default urb timeout */

/*
 * Later day 2.6.0-test kernels have new baud rates like B230400 which
 * we do not know how to support. We ignore them for the moment.
 */
A
Alan Cox 已提交
177 178
static int mct_u232_calculate_baud_rate(struct usb_serial *serial,
					speed_t value, speed_t *result)
L
Linus Torvalds 已提交
179
{
180 181
	*result = value;

L
Linus Torvalds 已提交
182
	if (le16_to_cpu(serial->dev->descriptor.idProduct) == MCT_U232_SITECOM_PID
A
Alan Cox 已提交
183
		|| le16_to_cpu(serial->dev->descriptor.idProduct) == MCT_U232_BELKIN_F5U109_PID) {
L
Linus Torvalds 已提交
184
		switch (value) {
A
Alan Cox 已提交
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
		case 300:
			return 0x01;
		case 600:
			return 0x02; /* this one not tested */
		case 1200:
			return 0x03;
		case 2400:
			return 0x04;
		case 4800:
			return 0x06;
		case 9600:
			return 0x08;
		case 19200:
			return 0x09;
		case 38400:
			return 0x0a;
		case 57600:
			return 0x0b;
		case 115200:
			return 0x0c;
L
Linus Torvalds 已提交
205
		default:
206
			*result = 9600;
L
Linus Torvalds 已提交
207 208 209
			return 0x08;
		}
	} else {
210 211 212
		/* FIXME: Can we use any divider - should we do
		   divider = 115200/value;
		   real baud = 115200/divider */
L
Linus Torvalds 已提交
213
		switch (value) {
214 215 216 217 218 219 220 221 222 223 224 225
		case 300: break;
		case 600: break;
		case 1200: break;
		case 2400: break;
		case 4800: break;
		case 9600: break;
		case 19200: break;
		case 38400: break;
		case 57600: break;
		case 115200: break;
		default:
			value = 9600;
226
			*result = 9600;
L
Linus Torvalds 已提交
227 228 229 230 231
		}
		return 115200/value;
	}
}

A
Alan Cox 已提交
232 233
static int mct_u232_set_baud_rate(struct tty_struct *tty,
	struct usb_serial *serial, struct usb_serial_port *port, speed_t value)
L
Linus Torvalds 已提交
234
{
235
	unsigned int divisor;
A
Alan Cox 已提交
236
	int rc;
237
	unsigned char *buf;
A
Alan Cox 已提交
238 239 240
	unsigned char cts_enable_byte = 0;
	speed_t speed;

241 242 243
	buf = kmalloc(MCT_U232_MAX_SIZE, GFP_KERNEL);
	if (buf == NULL)
		return -ENOMEM;
A
Alan Cox 已提交
244

245 246
	divisor = mct_u232_calculate_baud_rate(serial, value, &speed);
	put_unaligned_le32(cpu_to_le32(divisor), buf);
A
Alan Cox 已提交
247 248 249
	rc = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
				MCT_U232_SET_BAUD_RATE_REQUEST,
				MCT_U232_SET_REQUEST_TYPE,
250
				0, 0, buf, MCT_U232_SET_BAUD_RATE_SIZE,
A
Alan Cox 已提交
251
				WDR_TIMEOUT);
252
	if (rc < 0)	/*FIXME: What value speed results */
253 254
		dev_err(&port->dev, "Set BAUD RATE %d failed (error = %d)\n",
			value, rc);
255
	else
A
Alan Cox 已提交
256
		tty_encode_baud_rate(tty, speed, speed);
L
Linus Torvalds 已提交
257 258 259 260 261 262 263
	dbg("set_baud_rate: value: 0x%x, divisor: 0x%x", value, divisor);

	/* Mimic the MCT-supplied Windows driver (version 1.21P.0104), which
	   always sends two extra USB 'device request' messages after the
	   'baud rate change' message.  The actual functionality of the
	   request codes in these messages is not fully understood but these
	   particular codes are never seen in any operation besides a baud
264 265 266 267 268 269 270
	   rate change.  Both of these messages send a single byte of data.
	   In the first message, the value of this byte is always zero.

	   The second message has been determined experimentally to control
	   whether data will be transmitted to a device which is not asserting
	   the 'CTS' signal.  If the second message's data byte is zero, data
	   will be transmitted even if 'CTS' is not asserted (i.e. no hardware
A
Alan Cox 已提交
271 272 273
	   flow control).  if the second message's data byte is nonzero (a
	   value of 1 is used by this driver), data will not be transmitted to
	   a device which is not asserting 'CTS'.
274
	*/
L
Linus Torvalds 已提交
275

276
	buf[0] = 0;
L
Linus Torvalds 已提交
277
	rc = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
A
Alan Cox 已提交
278 279
				MCT_U232_SET_UNKNOWN1_REQUEST,
				MCT_U232_SET_REQUEST_TYPE,
280
				0, 0, buf, MCT_U232_SET_UNKNOWN1_SIZE,
A
Alan Cox 已提交
281
				WDR_TIMEOUT);
L
Linus Torvalds 已提交
282
	if (rc < 0)
283 284 285
		dev_err(&port->dev, "Sending USB device request code %d "
			"failed (error = %d)\n", MCT_U232_SET_UNKNOWN1_REQUEST,
			rc);
L
Linus Torvalds 已提交
286

A
Alan Cox 已提交
287
	if (port && C_CRTSCTS(tty))
288 289
	   cts_enable_byte = 1;

A
Alan Cox 已提交
290 291
	dbg("set_baud_rate: send second control message, data = %02X",
							cts_enable_byte);
292
	buf[0] = cts_enable_byte;
L
Linus Torvalds 已提交
293
	rc = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
A
Alan Cox 已提交
294 295
			MCT_U232_SET_CTS_REQUEST,
			MCT_U232_SET_REQUEST_TYPE,
296
			0, 0, buf, MCT_U232_SET_CTS_SIZE,
A
Alan Cox 已提交
297
			WDR_TIMEOUT);
L
Linus Torvalds 已提交
298
	if (rc < 0)
299 300
		dev_err(&port->dev, "Sending USB device request code %d "
			"failed (error = %d)\n", MCT_U232_SET_CTS_REQUEST, rc);
L
Linus Torvalds 已提交
301

302
	kfree(buf);
A
Alan Cox 已提交
303
	return rc;
L
Linus Torvalds 已提交
304 305 306 307
} /* mct_u232_set_baud_rate */

static int mct_u232_set_line_ctrl(struct usb_serial *serial, unsigned char lcr)
{
A
Alan Cox 已提交
308
	int rc;
309 310 311 312 313 314 315
	unsigned char *buf;

	buf = kmalloc(MCT_U232_MAX_SIZE, GFP_KERNEL);
	if (buf == NULL)
		return -ENOMEM;

	buf[0] = lcr;
A
Alan Cox 已提交
316 317 318
	rc = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
			MCT_U232_SET_LINE_CTRL_REQUEST,
			MCT_U232_SET_REQUEST_TYPE,
319
			0, 0, buf, MCT_U232_SET_LINE_CTRL_SIZE,
A
Alan Cox 已提交
320
			WDR_TIMEOUT);
L
Linus Torvalds 已提交
321
	if (rc < 0)
322 323
		dev_err(&serial->dev->dev,
			"Set LINE CTRL 0x%x failed (error = %d)\n", lcr, rc);
L
Linus Torvalds 已提交
324
	dbg("set_line_ctrl: 0x%x", lcr);
325
	kfree(buf);
A
Alan Cox 已提交
326
	return rc;
L
Linus Torvalds 已提交
327 328 329 330 331
} /* mct_u232_set_line_ctrl */

static int mct_u232_set_modem_ctrl(struct usb_serial *serial,
				   unsigned int control_state)
{
A
Alan Cox 已提交
332
	int rc;
333 334 335 336 337 338
	unsigned char mcr;
	unsigned char *buf;

	buf = kmalloc(MCT_U232_MAX_SIZE, GFP_KERNEL);
	if (buf == NULL)
		return -ENOMEM;
L
Linus Torvalds 已提交
339

340
	mcr = MCT_U232_MCR_NONE;
L
Linus Torvalds 已提交
341 342 343 344 345
	if (control_state & TIOCM_DTR)
		mcr |= MCT_U232_MCR_DTR;
	if (control_state & TIOCM_RTS)
		mcr |= MCT_U232_MCR_RTS;

346
	buf[0] = mcr;
A
Alan Cox 已提交
347 348 349
	rc = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
			MCT_U232_SET_MODEM_CTRL_REQUEST,
			MCT_U232_SET_REQUEST_TYPE,
350
			0, 0, buf, MCT_U232_SET_MODEM_CTRL_SIZE,
A
Alan Cox 已提交
351
			WDR_TIMEOUT);
L
Linus Torvalds 已提交
352
	if (rc < 0)
353 354
		dev_err(&serial->dev->dev,
			"Set MODEM CTRL 0x%x failed (error = %d)\n", mcr, rc);
L
Linus Torvalds 已提交
355 356
	dbg("set_modem_ctrl: state=0x%x ==> mcr=0x%x", control_state, mcr);

357
	kfree(buf);
A
Alan Cox 已提交
358
	return rc;
L
Linus Torvalds 已提交
359 360
} /* mct_u232_set_modem_ctrl */

A
Alan Cox 已提交
361 362
static int mct_u232_get_modem_stat(struct usb_serial *serial,
						unsigned char *msr)
L
Linus Torvalds 已提交
363
{
A
Alan Cox 已提交
364
	int rc;
365 366 367 368 369 370 371
	unsigned char *buf;

	buf = kmalloc(MCT_U232_MAX_SIZE, GFP_KERNEL);
	if (buf == NULL) {
		*msr = 0;
		return -ENOMEM;
	}
A
Alan Cox 已提交
372 373 374
	rc = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
			MCT_U232_GET_MODEM_STAT_REQUEST,
			MCT_U232_GET_REQUEST_TYPE,
375
			0, 0, buf, MCT_U232_GET_MODEM_STAT_SIZE,
A
Alan Cox 已提交
376
			WDR_TIMEOUT);
L
Linus Torvalds 已提交
377
	if (rc < 0) {
378 379
		dev_err(&serial->dev->dev,
			"Get MODEM STATus failed (error = %d)\n", rc);
L
Linus Torvalds 已提交
380
		*msr = 0;
381 382
	} else {
		*msr = buf[0];
L
Linus Torvalds 已提交
383 384
	}
	dbg("get_modem_stat: 0x%x", *msr);
385
	kfree(buf);
A
Alan Cox 已提交
386
	return rc;
L
Linus Torvalds 已提交
387 388
} /* mct_u232_get_modem_stat */

A
Alan Cox 已提交
389 390
static void mct_u232_msr_to_state(unsigned int *control_state,
						unsigned char msr)
L
Linus Torvalds 已提交
391
{
A
Alan Cox 已提交
392
	/* Translate Control Line states */
L
Linus Torvalds 已提交
393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
	if (msr & MCT_U232_MSR_DSR)
		*control_state |=  TIOCM_DSR;
	else
		*control_state &= ~TIOCM_DSR;
	if (msr & MCT_U232_MSR_CTS)
		*control_state |=  TIOCM_CTS;
	else
		*control_state &= ~TIOCM_CTS;
	if (msr & MCT_U232_MSR_RI)
		*control_state |=  TIOCM_RI;
	else
		*control_state &= ~TIOCM_RI;
	if (msr & MCT_U232_MSR_CD)
		*control_state |=  TIOCM_CD;
	else
		*control_state &= ~TIOCM_CD;
A
Alan Cox 已提交
409
	dbg("msr_to_state: msr=0x%x ==> state=0x%x", msr, *control_state);
L
Linus Torvalds 已提交
410 411 412 413 414 415
} /* mct_u232_msr_to_state */

/*
 * Driver's tty interface functions
 */

A
Alan Cox 已提交
416
static int mct_u232_startup(struct usb_serial *serial)
L
Linus Torvalds 已提交
417 418 419 420
{
	struct mct_u232_private *priv;
	struct usb_serial_port *port, *rport;

421
	priv = kzalloc(sizeof(struct mct_u232_private), GFP_KERNEL);
L
Linus Torvalds 已提交
422 423 424 425 426 427 428 429 430 431
	if (!priv)
		return -ENOMEM;
	spin_lock_init(&priv->lock);
	usb_set_serial_port_data(serial->port[0], priv);

	init_waitqueue_head(&serial->port[0]->write_wait);

	/* Puh, that's dirty */
	port = serial->port[0];
	rport = serial->port[1];
M
Mariusz Kozlowski 已提交
432 433
	/* No unlinking, it wasn't submitted yet. */
	usb_free_urb(port->read_urb);
L
Linus Torvalds 已提交
434 435 436 437
	port->read_urb = rport->interrupt_in_urb;
	rport->interrupt_in_urb = NULL;
	port->read_urb->context = port;

A
Alan Cox 已提交
438
	return 0;
L
Linus Torvalds 已提交
439 440 441
} /* mct_u232_startup */


442
static void mct_u232_release(struct usb_serial *serial)
L
Linus Torvalds 已提交
443 444 445
{
	struct mct_u232_private *priv;
	int i;
A
Alan Cox 已提交
446

447
	dbg("%s", __func__);
L
Linus Torvalds 已提交
448

A
Alan Cox 已提交
449
	for (i = 0; i < serial->num_ports; ++i) {
L
Linus Torvalds 已提交
450 451
		/* My special items, the standard routines free my urbs */
		priv = usb_get_serial_port_data(serial->port[i]);
452
		kfree(priv);
L
Linus Torvalds 已提交
453
	}
454
} /* mct_u232_release */
L
Linus Torvalds 已提交
455

456
static int  mct_u232_open(struct tty_struct *tty, struct usb_serial_port *port)
L
Linus Torvalds 已提交
457 458 459 460 461 462 463 464 465
{
	struct usb_serial *serial = port->serial;
	struct mct_u232_private *priv = usb_get_serial_port_data(port);
	int retval = 0;
	unsigned int control_state;
	unsigned long flags;
	unsigned char last_lcr;
	unsigned char last_msr;

466
	dbg("%s port %d", __func__, port->number);
L
Linus Torvalds 已提交
467 468 469 470 471 472

	/* Compensate for a hardware bug: although the Sitecom U232-P25
	 * device reports a maximum output packet size of 32 bytes,
	 * it seems to be able to accept only 16 bytes (and that's what
	 * SniffUSB says too...)
	 */
A
Alan Cox 已提交
473 474
	if (le16_to_cpu(serial->dev->descriptor.idProduct)
						== MCT_U232_SITECOM_PID)
L
Linus Torvalds 已提交
475 476
		port->bulk_out_size = 16;

A
Alan Cox 已提交
477
	/* Do a defined restart: the normal serial device seems to
L
Linus Torvalds 已提交
478 479 480 481 482
	 * always turn on DTR and RTS here, so do the same. I'm not
	 * sure if this is really necessary. But it should not harm
	 * either.
	 */
	spin_lock_irqsave(&priv->lock, flags);
A
Alan Cox 已提交
483
	if (tty && (tty->termios->c_cflag & CBAUD))
L
Linus Torvalds 已提交
484 485 486
		priv->control_state = TIOCM_DTR | TIOCM_RTS;
	else
		priv->control_state = 0;
A
Alan Cox 已提交
487 488

	priv->last_lcr = (MCT_U232_DATA_BITS_8 |
L
Linus Torvalds 已提交
489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506
			  MCT_U232_PARITY_NONE |
			  MCT_U232_STOP_BITS_1);
	control_state = priv->control_state;
	last_lcr = priv->last_lcr;
	spin_unlock_irqrestore(&priv->lock, flags);
	mct_u232_set_modem_ctrl(serial, control_state);
	mct_u232_set_line_ctrl(serial, last_lcr);

	/* Read modem status and update control state */
	mct_u232_get_modem_stat(serial, &last_msr);
	spin_lock_irqsave(&priv->lock, flags);
	priv->last_msr = last_msr;
	mct_u232_msr_to_state(&priv->control_state, priv->last_msr);
	spin_unlock_irqrestore(&priv->lock, flags);

	port->read_urb->dev = port->serial->dev;
	retval = usb_submit_urb(port->read_urb, GFP_KERNEL);
	if (retval) {
507 508 509
		dev_err(&port->dev,
			"usb_submit_urb(read bulk) failed pipe 0x%x err %d\n",
			port->read_urb->pipe, retval);
510
		goto error;
L
Linus Torvalds 已提交
511 512 513 514
	}

	port->interrupt_in_urb->dev = port->serial->dev;
	retval = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
515 516
	if (retval) {
		usb_kill_urb(port->read_urb);
517 518 519
		dev_err(&port->dev,
			"usb_submit_urb(read int) failed pipe 0x%x err %d",
			port->interrupt_in_urb->pipe, retval);
520 521
		goto error;
	}
L
Linus Torvalds 已提交
522
	return 0;
523 524 525

error:
	return retval;
L
Linus Torvalds 已提交
526 527
} /* mct_u232_open */

528
static void mct_u232_dtr_rts(struct usb_serial_port *port, int on)
L
Linus Torvalds 已提交
529
{
530 531
	unsigned int control_state;
	struct mct_u232_private *priv = usb_get_serial_port_data(port);
L
Linus Torvalds 已提交
532

533 534 535 536 537 538 539
	mutex_lock(&port->serial->disc_mutex);
	if (!port->serial->disconnected) {
		/* drop DTR and RTS */
		spin_lock_irq(&priv->lock);
		if (on)
			priv->control_state |= TIOCM_DTR | TIOCM_RTS;
		else
540
			priv->control_state &= ~(TIOCM_DTR | TIOCM_RTS);
541 542 543
		control_state = priv->control_state;
		spin_unlock_irq(&priv->lock);
		mct_u232_set_modem_ctrl(port->serial, control_state);
544
	}
545 546
	mutex_unlock(&port->serial->disc_mutex);
}
547

548 549 550
static void mct_u232_close(struct usb_serial_port *port)
{
	dbg("%s port %d", __func__, port->number);
551

J
Johan Hovold 已提交
552 553 554 555
	if (port->serial->dev) {
		/* shutdown our urbs */
		usb_kill_urb(port->write_urb);
		usb_kill_urb(port->read_urb);
L
Linus Torvalds 已提交
556
		usb_kill_urb(port->interrupt_in_urb);
J
Johan Hovold 已提交
557
	}
L
Linus Torvalds 已提交
558 559 560
} /* mct_u232_close */


A
Alan Cox 已提交
561
static void mct_u232_read_int_callback(struct urb *urb)
L
Linus Torvalds 已提交
562
{
563
	struct usb_serial_port *port = urb->context;
L
Linus Torvalds 已提交
564 565 566 567
	struct mct_u232_private *priv = usb_get_serial_port_data(port);
	struct usb_serial *serial = port->serial;
	struct tty_struct *tty;
	unsigned char *data = urb->transfer_buffer;
568 569
	int retval;
	int status = urb->status;
L
Linus Torvalds 已提交
570 571
	unsigned long flags;

572
	switch (status) {
L
Linus Torvalds 已提交
573 574 575 576 577 578 579
	case 0:
		/* success */
		break;
	case -ECONNRESET:
	case -ENOENT:
	case -ESHUTDOWN:
		/* this urb is terminated, clean up */
580
		dbg("%s - urb shutting down with status: %d",
581
		    __func__, status);
L
Linus Torvalds 已提交
582 583
		return;
	default:
584
		dbg("%s - nonzero urb status received: %d",
585
		    __func__, status);
L
Linus Torvalds 已提交
586 587 588 589
		goto exit;
	}

	if (!serial) {
590
		dbg("%s - bad serial pointer, exiting", __func__);
L
Linus Torvalds 已提交
591 592 593
		return;
	}

A
Alan Cox 已提交
594 595 596
	dbg("%s - port %d", __func__, port->number);
	usb_serial_debug_data(debug, &port->dev, __func__,
					urb->actual_length, data);
L
Linus Torvalds 已提交
597 598 599 600 601 602

	/*
	 * Work-a-round: handle the 'usual' bulk-in pipe here
	 */
	if (urb->transfer_buffer_length > 2) {
		if (urb->actual_length) {
603 604 605 606 607 608
			tty = tty_port_tty_get(&port->port);
			if (tty) {
				tty_insert_flip_string(tty, data,
						urb->actual_length);
				tty_flip_buffer_push(tty);
			}
A
Alan Cox 已提交
609
			tty_kref_put(tty);
L
Linus Torvalds 已提交
610 611 612
		}
		goto exit;
	}
A
Alan Cox 已提交
613

L
Linus Torvalds 已提交
614 615 616 617 618 619
	/*
	 * The interrupt-in pipe signals exceptional conditions (modem line
	 * signal changes and errors). data[0] holds MSR, data[1] holds LSR.
	 */
	spin_lock_irqsave(&priv->lock, flags);
	priv->last_msr = data[MCT_U232_MSR_INDEX];
A
Alan Cox 已提交
620

L
Linus Torvalds 已提交
621 622 623 624
	/* Record Control Line states */
	mct_u232_msr_to_state(&priv->control_state, priv->last_msr);

#if 0
A
Alan Cox 已提交
625
	/* Not yet handled. See belkin_sa.c for further information */
L
Linus Torvalds 已提交
626 627 628 629 630 631 632 633
	/* Now to report any errors */
	priv->last_lsr = data[MCT_U232_LSR_INDEX];
	/*
	 * fill in the flip buffer here, but I do not know the relation
	 * to the current/next receive buffer or characters.  I need
	 * to look in to this before committing any code.
	 */
	if (priv->last_lsr & MCT_U232_LSR_ERR) {
A
Alan Cox 已提交
634
		tty = tty_port_tty_get(&port->port);
L
Linus Torvalds 已提交
635 636 637 638 639 640 641 642 643 644 645 646
		/* Overrun Error */
		if (priv->last_lsr & MCT_U232_LSR_OE) {
		}
		/* Parity Error */
		if (priv->last_lsr & MCT_U232_LSR_PE) {
		}
		/* Framing Error */
		if (priv->last_lsr & MCT_U232_LSR_FE) {
		}
		/* Break Indicator */
		if (priv->last_lsr & MCT_U232_LSR_BI) {
		}
A
Alan Cox 已提交
647
		tty_kref_put(tty);
L
Linus Torvalds 已提交
648 649 650 651
	}
#endif
	spin_unlock_irqrestore(&priv->lock, flags);
exit:
A
Alan Cox 已提交
652
	retval = usb_submit_urb(urb, GFP_ATOMIC);
653
	if (retval)
654 655 656
		dev_err(&port->dev,
			"%s - usb_submit_urb failed with result %d\n",
			__func__, retval);
L
Linus Torvalds 已提交
657 658
} /* mct_u232_read_int_callback */

A
Alan Cox 已提交
659 660 661
static void mct_u232_set_termios(struct tty_struct *tty,
				 struct usb_serial_port *port,
				 struct ktermios *old_termios)
L
Linus Torvalds 已提交
662 663 664
{
	struct usb_serial *serial = port->serial;
	struct mct_u232_private *priv = usb_get_serial_port_data(port);
A
Alan Cox 已提交
665
	struct ktermios *termios = tty->termios;
666
	unsigned int cflag = termios->c_cflag;
L
Linus Torvalds 已提交
667 668
	unsigned int old_cflag = old_termios->c_cflag;
	unsigned long flags;
669
	unsigned int control_state;
L
Linus Torvalds 已提交
670 671 672 673 674 675 676 677 678 679 680 681 682 683 684
	unsigned char last_lcr;

	/* get a local copy of the current port settings */
	spin_lock_irqsave(&priv->lock, flags);
	control_state = priv->control_state;
	spin_unlock_irqrestore(&priv->lock, flags);
	last_lcr = 0;

	/*
	 * Update baud rate.
	 * Do not attempt to cache old rates and skip settings,
	 * disconnects screw such tricks up completely.
	 * Premature optimization is the root of all evil.
	 */

A
Alan Cox 已提交
685
	/* reassert DTR and RTS on transition from B0 */
L
Linus Torvalds 已提交
686
	if ((old_cflag & CBAUD) == B0) {
687
		dbg("%s: baud was B0", __func__);
688
		control_state |= TIOCM_DTR | TIOCM_RTS;
L
Linus Torvalds 已提交
689 690 691
		mct_u232_set_modem_ctrl(serial, control_state);
	}

A
Alan Cox 已提交
692
	mct_u232_set_baud_rate(tty, serial, port, tty_get_baud_rate(tty));
L
Linus Torvalds 已提交
693

A
Alan Cox 已提交
694
	if ((cflag & CBAUD) == B0) {
695
		dbg("%s: baud is B0", __func__);
L
Linus Torvalds 已提交
696 697
		/* Drop RTS and DTR */
		control_state &= ~(TIOCM_DTR | TIOCM_RTS);
A
Alan Cox 已提交
698
		mct_u232_set_modem_ctrl(serial, control_state);
L
Linus Torvalds 已提交
699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722
	}

	/*
	 * Update line control register (LCR)
	 */

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

	/* set the number of data bits */
	switch (cflag & CSIZE) {
	case CS5:
		last_lcr |= MCT_U232_DATA_BITS_5; break;
	case CS6:
		last_lcr |= MCT_U232_DATA_BITS_6; break;
	case CS7:
		last_lcr |= MCT_U232_DATA_BITS_7; break;
	case CS8:
		last_lcr |= MCT_U232_DATA_BITS_8; break;
	default:
723 724
		dev_err(&port->dev,
			"CSIZE was not CS5-CS8, using default of 8\n");
L
Linus Torvalds 已提交
725 726 727 728
		last_lcr |= MCT_U232_DATA_BITS_8;
		break;
	}

729 730
	termios->c_cflag &= ~CMSPAR;

L
Linus Torvalds 已提交
731 732 733 734 735 736 737 738 739 740 741 742 743
	/* set the number of stop bits */
	last_lcr |= (cflag & CSTOPB) ?
		MCT_U232_STOP_BITS_2 : MCT_U232_STOP_BITS_1;

	mct_u232_set_line_ctrl(serial, last_lcr);

	/* save off the modified port settings */
	spin_lock_irqsave(&priv->lock, flags);
	priv->control_state = control_state;
	priv->last_lcr = last_lcr;
	spin_unlock_irqrestore(&priv->lock, flags);
} /* mct_u232_set_termios */

A
Alan Cox 已提交
744
static void mct_u232_break_ctl(struct tty_struct *tty, int break_state)
L
Linus Torvalds 已提交
745
{
A
Alan Cox 已提交
746
	struct usb_serial_port *port = tty->driver_data;
L
Linus Torvalds 已提交
747 748 749 750 751
	struct usb_serial *serial = port->serial;
	struct mct_u232_private *priv = usb_get_serial_port_data(port);
	unsigned char lcr;
	unsigned long flags;

752
	dbg("%sstate=%d", __func__, break_state);
L
Linus Torvalds 已提交
753 754 755 756 757 758

	spin_lock_irqsave(&priv->lock, flags);
	lcr = priv->last_lcr;

	if (break_state)
		lcr |= MCT_U232_SET_BREAK;
759
	spin_unlock_irqrestore(&priv->lock, flags);
L
Linus Torvalds 已提交
760 761 762 763 764

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


A
Alan Cox 已提交
765
static int mct_u232_tiocmget(struct tty_struct *tty, struct file *file)
L
Linus Torvalds 已提交
766
{
A
Alan Cox 已提交
767
	struct usb_serial_port *port = tty->driver_data;
L
Linus Torvalds 已提交
768 769 770
	struct mct_u232_private *priv = usb_get_serial_port_data(port);
	unsigned int control_state;
	unsigned long flags;
A
Alan Cox 已提交
771

772
	dbg("%s", __func__);
L
Linus Torvalds 已提交
773 774 775 776 777 778 779 780

	spin_lock_irqsave(&priv->lock, flags);
	control_state = priv->control_state;
	spin_unlock_irqrestore(&priv->lock, flags);

	return control_state;
}

A
Alan Cox 已提交
781
static int mct_u232_tiocmset(struct tty_struct *tty, struct file *file,
L
Linus Torvalds 已提交
782 783
			      unsigned int set, unsigned int clear)
{
A
Alan Cox 已提交
784
	struct usb_serial_port *port = tty->driver_data;
L
Linus Torvalds 已提交
785 786 787 788
	struct usb_serial *serial = port->serial;
	struct mct_u232_private *priv = usb_get_serial_port_data(port);
	unsigned int control_state;
	unsigned long flags;
A
Alan Cox 已提交
789

790
	dbg("%s", __func__);
L
Linus Torvalds 已提交
791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808

	spin_lock_irqsave(&priv->lock, flags);
	control_state = priv->control_state;

	if (set & TIOCM_RTS)
		control_state |= TIOCM_RTS;
	if (set & TIOCM_DTR)
		control_state |= TIOCM_DTR;
	if (clear & TIOCM_RTS)
		control_state &= ~TIOCM_RTS;
	if (clear & TIOCM_DTR)
		control_state &= ~TIOCM_DTR;

	priv->control_state = control_state;
	spin_unlock_irqrestore(&priv->lock, flags);
	return mct_u232_set_modem_ctrl(serial, control_state);
}

A
Alan Cox 已提交
809
static void mct_u232_throttle(struct tty_struct *tty)
810
{
A
Alan Cox 已提交
811
	struct usb_serial_port *port = tty->driver_data;
812 813 814
	struct mct_u232_private *priv = usb_get_serial_port_data(port);
	unsigned int control_state;

815
	dbg("%s - port %d", __func__, port->number);
816

817
	spin_lock_irq(&priv->lock);
818 819
	priv->rx_flags |= THROTTLED;
	if (C_CRTSCTS(tty)) {
A
Alan Cox 已提交
820 821
		priv->control_state &= ~TIOCM_RTS;
		control_state = priv->control_state;
822
		spin_unlock_irq(&priv->lock);
A
Alan Cox 已提交
823
		(void) mct_u232_set_modem_ctrl(port->serial, control_state);
824
	} else {
825
		spin_unlock_irq(&priv->lock);
826 827 828 829
	}
}


A
Alan Cox 已提交
830
static void mct_u232_unthrottle(struct tty_struct *tty)
831
{
A
Alan Cox 已提交
832
	struct usb_serial_port *port = tty->driver_data;
833 834 835
	struct mct_u232_private *priv = usb_get_serial_port_data(port);
	unsigned int control_state;

836
	dbg("%s - port %d", __func__, port->number);
837

838
	spin_lock_irq(&priv->lock);
839
	if ((priv->rx_flags & THROTTLED) && C_CRTSCTS(tty)) {
A
Alan Cox 已提交
840 841 842
		priv->rx_flags &= ~THROTTLED;
		priv->control_state |= TIOCM_RTS;
		control_state = priv->control_state;
843
		spin_unlock_irq(&priv->lock);
A
Alan Cox 已提交
844
		(void) mct_u232_set_modem_ctrl(port->serial, control_state);
845
	} else {
846
		spin_unlock_irq(&priv->lock);
847 848
	}
}
L
Linus Torvalds 已提交
849

A
Alan Cox 已提交
850
static int __init mct_u232_init(void)
L
Linus Torvalds 已提交
851 852 853 854 855 856 857 858
{
	int retval;
	retval = usb_serial_register(&mct_u232_device);
	if (retval)
		goto failed_usb_serial_register;
	retval = usb_register(&mct_u232_driver);
	if (retval)
		goto failed_usb_register;
859 860
	printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
	       DRIVER_DESC "\n");
L
Linus Torvalds 已提交
861 862 863 864 865 866 867 868
	return 0;
failed_usb_register:
	usb_serial_deregister(&mct_u232_device);
failed_usb_serial_register:
	return retval;
}


A
Alan Cox 已提交
869
static void __exit mct_u232_exit(void)
L
Linus Torvalds 已提交
870
{
A
Alan Cox 已提交
871 872
	usb_deregister(&mct_u232_driver);
	usb_serial_deregister(&mct_u232_device);
L
Linus Torvalds 已提交
873 874
}

A
Alan Cox 已提交
875
module_init(mct_u232_init);
L
Linus Torvalds 已提交
876 877
module_exit(mct_u232_exit);

A
Alan Cox 已提交
878 879
MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_DESCRIPTION(DRIVER_DESC);
L
Linus Torvalds 已提交
880 881 882 883
MODULE_LICENSE("GPL");

module_param(debug, bool, S_IRUGO | S_IWUSR);
MODULE_PARM_DESC(debug, "Debug enabled or not");