oti6858.c 31.9 KB
Newer Older
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
/*
 * Ours Technology Inc. OTi-6858 USB to serial adapter driver.
 *
 * Copyleft  (C) 2007 Kees Lemmens (adapted for kernel 2.6.20)
 * Copyright (C) 2006 Tomasz Michal Lukaszewski (FIXME: add e-mail)
 * Copyright (C) 2001-2004 Greg Kroah-Hartman (greg@kroah.com)
 * Copyright (C) 2003 IBM Corp.
 *
 * Many thanks to the authors of pl2303 driver: all functions in this file
 * are heavily based on pl2303 code, buffering code is a 1-to-1 copy.
 *
 * Warning! You use this driver on your own risk! The only official
 * description of this device I have is datasheet from manufacturer,
 * and it doesn't contain almost any information needed to write a driver.
 * Almost all knowlegde used while writing this driver was gathered by:
 *  - analyzing traffic between device and the M$ Windows 2000 driver,
 *  - trying different bit combinations and checking pin states
 *    with a voltmeter,
 *  - receiving malformed frames and producing buffer overflows
 *    to learn how errors are reported,
 * So, THIS CODE CAN DESTROY OTi-6858 AND ANY OTHER DEVICES, THAT ARE
 * CONNECTED TO IT!
 *
 * 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.
 *
A
Alan Cox 已提交
28 29
 * See Documentation/usb/usb-serial.txt for more information on using this
 * driver
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
 *
 * TODO:
 *  - implement correct flushing for ioctls and oti6858_close()
 *  - check how errors (rx overflow, parity error, framing error) are reported
 *  - implement oti6858_break_ctl()
 *  - implement more ioctls
 *  - test/implement flow control
 *  - allow setting custom baud rates
 */

#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/serial.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/spinlock.h>
#include <linux/usb.h>
#include <linux/usb/serial.h>
A
Alan Cox 已提交
53
#include <linux/uaccess.h>
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
#include "oti6858.h"

#define OTI6858_DESCRIPTION \
	"Ours Technology Inc. OTi-6858 USB to serial adapter driver"
#define OTI6858_AUTHOR "Tomasz Michal Lukaszewski <FIXME@FIXME>"
#define OTI6858_VERSION "0.1"

static struct usb_device_id id_table [] = {
	{ USB_DEVICE(OTI6858_VENDOR_ID, OTI6858_PRODUCT_ID) },
	{ }
};

MODULE_DEVICE_TABLE(usb, id_table);

static struct usb_driver oti6858_driver = {
	.name =		"oti6858",
	.probe =	usb_serial_probe,
	.disconnect =	usb_serial_disconnect,
	.id_table =	id_table,
	.no_dynamic_id = 	1,
};

static int debug;


/* buffering code, copied from pl2303 driver */
#define PL2303_BUF_SIZE		1024
#define PL2303_TMP_BUF_SIZE	1024

A
Alan Cox 已提交
83
struct oti6858_buf {
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
	unsigned int	buf_size;
	char		*buf_buf;
	char		*buf_get;
	char		*buf_put;
};

/* requests */
#define	OTI6858_REQ_GET_STATUS		(USB_DIR_IN | USB_TYPE_VENDOR | 0x00)
#define	OTI6858_REQ_T_GET_STATUS	0x01

#define	OTI6858_REQ_SET_LINE		(USB_DIR_OUT | USB_TYPE_VENDOR | 0x00)
#define	OTI6858_REQ_T_SET_LINE		0x00

#define	OTI6858_REQ_CHECK_TXBUFF	(USB_DIR_IN | USB_TYPE_VENDOR | 0x01)
#define	OTI6858_REQ_T_CHECK_TXBUFF	0x00

/* format of the control packet */
struct oti6858_control_pkt {
A
Al Viro 已提交
102
	__le16	divisor;	/* baud rate = 96000000 / (16 * divisor), LE */
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
#define OTI6858_MAX_BAUD_RATE	3000000
	u8	frame_fmt;
#define FMT_STOP_BITS_MASK	0xc0
#define FMT_STOP_BITS_1		0x00
#define FMT_STOP_BITS_2		0x40	/* 1.5 stop bits if FMT_DATA_BITS_5 */
#define FMT_PARITY_MASK		0x38
#define FMT_PARITY_NONE		0x00
#define FMT_PARITY_ODD		0x08
#define FMT_PARITY_EVEN		0x18
#define FMT_PARITY_MARK		0x28
#define FMT_PARITY_SPACE	0x38
#define FMT_DATA_BITS_MASK	0x03
#define FMT_DATA_BITS_5		0x00
#define FMT_DATA_BITS_6		0x01
#define FMT_DATA_BITS_7		0x02
#define FMT_DATA_BITS_8		0x03
	u8	something;	/* always equals 0x43 */
	u8	control;	/* settings of flow control lines */
#define CONTROL_MASK		0x0c
#define CONTROL_DTR_HIGH	0x08
#define CONTROL_RTS_HIGH	0x04
	u8	tx_status;
#define	TX_BUFFER_EMPTIED	0x09
	u8	pin_state;
#define PIN_MASK		0x3f
#define PIN_RTS			0x20	/* output pin */
#define PIN_CTS			0x10	/* input pin, active low */
#define PIN_DSR			0x08	/* input pin, active low */
#define PIN_DTR			0x04	/* output pin */
#define PIN_RI			0x02	/* input pin, active low */
#define PIN_DCD			0x01	/* input pin, active low */
	u8	rx_bytes_avail;		/* number of bytes in rx buffer */;
};

#define OTI6858_CTRL_PKT_SIZE	sizeof(struct oti6858_control_pkt)
#define OTI6858_CTRL_EQUALS_PENDING(a, priv) \
A
Alan Cox 已提交
139
	(((a)->divisor == (priv)->pending_setup.divisor) \
140
	  && ((a)->control == (priv)->pending_setup.control) \
A
Alan Cox 已提交
141
	  && ((a)->frame_fmt == (priv)->pending_setup.frame_fmt))
142 143

/* function prototypes */
144
static int oti6858_open(struct tty_struct *tty, struct usb_serial_port *port);
145
static void oti6858_close(struct usb_serial_port *port);
A
Alan Cox 已提交
146 147 148
static void oti6858_set_termios(struct tty_struct *tty,
			struct usb_serial_port *port, struct ktermios *old);
static int oti6858_ioctl(struct tty_struct *tty, struct file *file,
149 150 151 152
			unsigned int cmd, unsigned long arg);
static void oti6858_read_int_callback(struct urb *urb);
static void oti6858_read_bulk_callback(struct urb *urb);
static void oti6858_write_bulk_callback(struct urb *urb);
A
Alan Cox 已提交
153
static int oti6858_write(struct tty_struct *tty, struct usb_serial_port *port,
154
			const unsigned char *buf, int count);
A
Alan Cox 已提交
155 156 157 158
static int oti6858_write_room(struct tty_struct *tty);
static int oti6858_chars_in_buffer(struct tty_struct *tty);
static int oti6858_tiocmget(struct tty_struct *tty, struct file *file);
static int oti6858_tiocmset(struct tty_struct *tty, struct file *file,
159 160
				unsigned int set, unsigned int clear);
static int oti6858_startup(struct usb_serial *serial);
161
static void oti6858_release(struct usb_serial *serial);
162 163

/* functions operating on buffers */
A
Alan Cox 已提交
164 165 166 167 168 169
static struct oti6858_buf *oti6858_buf_alloc(unsigned int size);
static void oti6858_buf_free(struct oti6858_buf *pb);
static void oti6858_buf_clear(struct oti6858_buf *pb);
static unsigned int oti6858_buf_data_avail(struct oti6858_buf *pb);
static unsigned int oti6858_buf_space_avail(struct oti6858_buf *pb);
static unsigned int oti6858_buf_put(struct oti6858_buf *pb, const char *buf,
170
					unsigned int count);
A
Alan Cox 已提交
171
static unsigned int oti6858_buf_get(struct oti6858_buf *pb, char *buf,
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
					unsigned int count);


/* device info */
static struct usb_serial_driver oti6858_device = {
	.driver = {
		.owner =	THIS_MODULE,
		.name =		"oti6858",
	},
	.id_table =		id_table,
	.num_ports =		1,
	.open =			oti6858_open,
	.close =		oti6858_close,
	.write =		oti6858_write,
	.ioctl =		oti6858_ioctl,
	.set_termios =		oti6858_set_termios,
	.tiocmget =		oti6858_tiocmget,
	.tiocmset =		oti6858_tiocmset,
	.read_bulk_callback =	oti6858_read_bulk_callback,
	.read_int_callback =	oti6858_read_int_callback,
	.write_bulk_callback =	oti6858_write_bulk_callback,
	.write_room =		oti6858_write_room,
	.chars_in_buffer =	oti6858_chars_in_buffer,
	.attach =		oti6858_startup,
196
	.release =		oti6858_release,
197 198 199 200 201
};

struct oti6858_private {
	spinlock_t lock;

A
Alan Cox 已提交
202
	struct oti6858_buf *buf;
203 204 205 206 207 208 209 210 211 212
	struct oti6858_control_pkt status;

	struct {
		u8 read_urb_in_use;
		u8 write_urb_in_use;
		u8 termios_initialized;
	} flags;
	struct delayed_work delayed_write_work;

	struct {
A
Al Viro 已提交
213
		__le16 divisor;
214 215 216 217 218 219 220 221
		u8 frame_fmt;
		u8 control;
	} pending_setup;
	u8 transient;
	u8 setup_done;
	struct delayed_work delayed_setup_work;

	wait_queue_head_t intr_wait;
A
Alan Cox 已提交
222
	struct usb_serial_port *port;   /* USB port with which associated */
223 224 225 226
};

static void setup_line(struct work_struct *work)
{
A
Alan Cox 已提交
227 228
	struct oti6858_private *priv = container_of(work,
			struct oti6858_private, delayed_setup_work.work);
229 230 231 232 233
	struct usb_serial_port *port = priv->port;
	struct oti6858_control_pkt *new_setup;
	unsigned long flags;
	int result;

234
	dbg("%s(port = %d)", __func__, port->number);
235

A
Alan Cox 已提交
236 237
	new_setup = kmalloc(OTI6858_CTRL_PKT_SIZE, GFP_KERNEL);
	if (new_setup == NULL) {
238
		dev_err(&port->dev, "%s(): out of memory!\n", __func__);
239
		/* we will try again */
A
Alan Cox 已提交
240 241
		schedule_delayed_work(&priv->delayed_setup_work,
						msecs_to_jiffies(2));
242 243 244 245 246 247 248 249 250 251 252 253
		return;
	}

	result = usb_control_msg(port->serial->dev,
				usb_rcvctrlpipe(port->serial->dev, 0),
				OTI6858_REQ_T_GET_STATUS,
				OTI6858_REQ_GET_STATUS,
				0, 0,
				new_setup, OTI6858_CTRL_PKT_SIZE,
				100);

	if (result != OTI6858_CTRL_PKT_SIZE) {
254
		dev_err(&port->dev, "%s(): error reading status\n", __func__);
255 256
		kfree(new_setup);
		/* we will try again */
A
Alan Cox 已提交
257 258
		schedule_delayed_work(&priv->delayed_setup_work,
							msecs_to_jiffies(2));
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
		return;
	}

	spin_lock_irqsave(&priv->lock, flags);
	if (!OTI6858_CTRL_EQUALS_PENDING(new_setup, priv)) {
		new_setup->divisor = priv->pending_setup.divisor;
		new_setup->control = priv->pending_setup.control;
		new_setup->frame_fmt = priv->pending_setup.frame_fmt;

		spin_unlock_irqrestore(&priv->lock, flags);
		result = usb_control_msg(port->serial->dev,
					usb_sndctrlpipe(port->serial->dev, 0),
					OTI6858_REQ_T_SET_LINE,
					OTI6858_REQ_SET_LINE,
					0, 0,
					new_setup, OTI6858_CTRL_PKT_SIZE,
					100);
	} else {
		spin_unlock_irqrestore(&priv->lock, flags);
		result = 0;
	}
	kfree(new_setup);

	spin_lock_irqsave(&priv->lock, flags);
	if (result != OTI6858_CTRL_PKT_SIZE)
		priv->transient = 0;
	priv->setup_done = 1;
	spin_unlock_irqrestore(&priv->lock, flags);

288
	dbg("%s(): submitting interrupt urb", __func__);
289 290 291 292
	port->interrupt_in_urb->dev = port->serial->dev;
	result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
	if (result != 0) {
		dev_err(&port->dev, "%s(): usb_submit_urb() failed"
293
				" with error %d\n", __func__, result);
294 295 296 297 298
	}
}

void send_data(struct work_struct *work)
{
A
Alan Cox 已提交
299 300
	struct oti6858_private *priv = container_of(work,
			struct oti6858_private, delayed_write_work.work);
301 302 303 304 305
	struct usb_serial_port *port = priv->port;
	int count = 0, result;
	unsigned long flags;
	unsigned char allow;

306
	dbg("%s(port = %d)", __func__, port->number);
307 308 309 310

	spin_lock_irqsave(&priv->lock, flags);
	if (priv->flags.write_urb_in_use) {
		spin_unlock_irqrestore(&priv->lock, flags);
A
Alan Cox 已提交
311 312
		schedule_delayed_work(&priv->delayed_write_work,
						msecs_to_jiffies(2));
313 314 315 316
		return;
	}
	priv->flags.write_urb_in_use = 1;

A
Alan Cox 已提交
317
	count = oti6858_buf_data_avail(priv->buf);
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334
	spin_unlock_irqrestore(&priv->lock, flags);
	if (count > port->bulk_out_size)
		count = port->bulk_out_size;

	if (count != 0) {
		result = usb_control_msg(port->serial->dev,
				usb_rcvctrlpipe(port->serial->dev, 0),
				OTI6858_REQ_T_CHECK_TXBUFF,
				OTI6858_REQ_CHECK_TXBUFF,
				count, 0, &allow, 1, 100);
		if (result != 1 || allow != 0)
			count = 0;
	}

	if (count == 0) {
		priv->flags.write_urb_in_use = 0;

335
		dbg("%s(): submitting interrupt urb", __func__);
336 337 338 339
		port->interrupt_in_urb->dev = port->serial->dev;
		result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
		if (result != 0) {
			dev_err(&port->dev, "%s(): usb_submit_urb() failed"
340
				" with error %d\n", __func__, result);
341 342 343 344 345
		}
		return;
	}

	spin_lock_irqsave(&priv->lock, flags);
A
Alan Cox 已提交
346
	oti6858_buf_get(priv->buf, port->write_urb->transfer_buffer, count);
347 348 349 350 351 352 353
	spin_unlock_irqrestore(&priv->lock, flags);

	port->write_urb->transfer_buffer_length = count;
	port->write_urb->dev = port->serial->dev;
	result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
	if (result != 0) {
		dev_err(&port->dev, "%s(): usb_submit_urb() failed"
354
			       " with error %d\n", __func__, result);
355 356 357 358 359 360 361 362
		priv->flags.write_urb_in_use = 0;
	}

	usb_serial_port_softint(port);
}

static int oti6858_startup(struct usb_serial *serial)
{
A
Alan Cox 已提交
363 364
	struct usb_serial_port *port = serial->port[0];
	struct oti6858_private *priv;
365 366 367 368 369 370
	int i;

	for (i = 0; i < serial->num_ports; ++i) {
		priv = kzalloc(sizeof(struct oti6858_private), GFP_KERNEL);
		if (!priv)
			break;
A
Alan Cox 已提交
371
		priv->buf = oti6858_buf_alloc(PL2303_BUF_SIZE);
372 373 374 375 376 377 378
		if (priv->buf == NULL) {
			kfree(priv);
			break;
		}

		spin_lock_init(&priv->lock);
		init_waitqueue_head(&priv->intr_wait);
A
Alan Cox 已提交
379 380
/*		INIT_WORK(&priv->setup_work, setup_line, serial->port[i]); */
/*		INIT_WORK(&priv->write_work, send_data, serial->port[i]); */
381 382 383 384 385 386 387 388 389 390 391
		priv->port = port;
		INIT_DELAYED_WORK(&priv->delayed_setup_work, setup_line);
		INIT_DELAYED_WORK(&priv->delayed_write_work, send_data);

		usb_set_serial_port_data(serial->port[i], priv);
	}
	if (i == serial->num_ports)
		return 0;

	for (--i; i >= 0; --i) {
		priv = usb_get_serial_port_data(serial->port[i]);
A
Alan Cox 已提交
392
		oti6858_buf_free(priv->buf);
393 394 395 396 397 398
		kfree(priv);
		usb_set_serial_port_data(serial->port[i], NULL);
	}
	return -ENOMEM;
}

A
Alan Cox 已提交
399
static int oti6858_write(struct tty_struct *tty, struct usb_serial_port *port,
400 401 402 403 404
			const unsigned char *buf, int count)
{
	struct oti6858_private *priv = usb_get_serial_port_data(port);
	unsigned long flags;

405
	dbg("%s(port = %d, count = %d)", __func__, port->number, count);
406 407 408 409 410

	if (!count)
		return count;

	spin_lock_irqsave(&priv->lock, flags);
A
Alan Cox 已提交
411
	count = oti6858_buf_put(priv->buf, buf, count);
412 413 414 415 416
	spin_unlock_irqrestore(&priv->lock, flags);

	return count;
}

A
Alan Cox 已提交
417
static int oti6858_write_room(struct tty_struct *tty)
418
{
A
Alan Cox 已提交
419
	struct usb_serial_port *port = tty->driver_data;
420 421 422 423
	struct oti6858_private *priv = usb_get_serial_port_data(port);
	int room = 0;
	unsigned long flags;

424
	dbg("%s(port = %d)", __func__, port->number);
425 426

	spin_lock_irqsave(&priv->lock, flags);
A
Alan Cox 已提交
427
	room = oti6858_buf_space_avail(priv->buf);
428 429 430 431 432
	spin_unlock_irqrestore(&priv->lock, flags);

	return room;
}

A
Alan Cox 已提交
433
static int oti6858_chars_in_buffer(struct tty_struct *tty)
434
{
A
Alan Cox 已提交
435
	struct usb_serial_port *port = tty->driver_data;
436 437 438 439
	struct oti6858_private *priv = usb_get_serial_port_data(port);
	int chars = 0;
	unsigned long flags;

440
	dbg("%s(port = %d)", __func__, port->number);
441 442

	spin_lock_irqsave(&priv->lock, flags);
A
Alan Cox 已提交
443
	chars = oti6858_buf_data_avail(priv->buf);
444 445 446 447 448
	spin_unlock_irqrestore(&priv->lock, flags);

	return chars;
}

A
Alan Cox 已提交
449 450
static void oti6858_set_termios(struct tty_struct *tty,
		struct usb_serial_port *port, struct ktermios *old_termios)
451 452 453 454 455
{
	struct oti6858_private *priv = usb_get_serial_port_data(port);
	unsigned long flags;
	unsigned int cflag;
	u8 frame_fmt, control;
A
Al Viro 已提交
456
	__le16 divisor;
457 458
	int br;

459
	dbg("%s(port = %d)", __func__, port->number);
460

A
Alan Cox 已提交
461
	if (!tty) {
462
		dbg("%s(): no tty structures", __func__);
463 464 465 466 467
		return;
	}

	spin_lock_irqsave(&priv->lock, flags);
	if (!priv->flags.termios_initialized) {
A
Alan Cox 已提交
468 469 470 471
		*(tty->termios) = tty_std_termios;
		tty->termios->c_cflag = B38400 | CS8 | CREAD | HUPCL | CLOCAL;
		tty->termios->c_ispeed = 38400;
		tty->termios->c_ospeed = 38400;
472 473 474 475
		priv->flags.termios_initialized = 1;
	}
	spin_unlock_irqrestore(&priv->lock, flags);

A
Alan Cox 已提交
476
	cflag = tty->termios->c_cflag;
477 478 479 480 481 482 483 484 485

	spin_lock_irqsave(&priv->lock, flags);
	divisor = priv->pending_setup.divisor;
	frame_fmt = priv->pending_setup.frame_fmt;
	control = priv->pending_setup.control;
	spin_unlock_irqrestore(&priv->lock, flags);

	frame_fmt &= ~FMT_DATA_BITS_MASK;
	switch (cflag & CSIZE) {
A
Alan Cox 已提交
486 487 488 489 490 491 492 493 494 495 496 497 498
	case CS5:
		frame_fmt |= FMT_DATA_BITS_5;
		break;
	case CS6:
		frame_fmt |= FMT_DATA_BITS_6;
		break;
	case CS7:
		frame_fmt |= FMT_DATA_BITS_7;
		break;
	default:
	case CS8:
		frame_fmt |= FMT_DATA_BITS_8;
		break;
499 500 501 502 503 504 505
	}

	/* manufacturer claims that this device can work with baud rates
	 * up to 3 Mbps; I've tested it only on 115200 bps, so I can't
	 * guarantee that any other baud rate will work (especially
	 * the higher ones)
	 */
A
Alan Cox 已提交
506
	br = tty_get_baud_rate(tty);
507 508
	if (br == 0) {
		divisor = 0;
A
Alan Cox 已提交
509
	} else {
510
		int real_br;
A
Al Viro 已提交
511
		int new_divisor;
A
Alan Cox 已提交
512
		br = min(br, OTI6858_MAX_BAUD_RATE);
513

A
Al Viro 已提交
514 515 516
		new_divisor = (96000000 + 8 * br) / (16 * br);
		real_br = 96000000 / (16 * new_divisor);
		divisor = cpu_to_le16(new_divisor);
A
Alan Cox 已提交
517
		tty_encode_baud_rate(tty, real_br, real_br);
518 519 520
	}

	frame_fmt &= ~FMT_STOP_BITS_MASK;
A
Alan Cox 已提交
521
	if ((cflag & CSTOPB) != 0)
522
		frame_fmt |= FMT_STOP_BITS_2;
A
Alan Cox 已提交
523
	else
524 525 526 527
		frame_fmt |= FMT_STOP_BITS_1;

	frame_fmt &= ~FMT_PARITY_MASK;
	if ((cflag & PARENB) != 0) {
A
Alan Cox 已提交
528
		if ((cflag & PARODD) != 0)
529
			frame_fmt |= FMT_PARITY_ODD;
A
Alan Cox 已提交
530
		else
531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567
			frame_fmt |= FMT_PARITY_EVEN;
	} else {
		frame_fmt |= FMT_PARITY_NONE;
	}

	control &= ~CONTROL_MASK;
	if ((cflag & CRTSCTS) != 0)
		control |= (CONTROL_DTR_HIGH | CONTROL_RTS_HIGH);

	/* change control lines if we are switching to or from B0 */
	/* FIXME:
	spin_lock_irqsave(&priv->lock, flags);
	control = priv->line_control;
	if ((cflag & CBAUD) == B0)
		priv->line_control &= ~(CONTROL_DTR | CONTROL_RTS);
	else
		priv->line_control |= (CONTROL_DTR | CONTROL_RTS);
	if (control != priv->line_control) {
		control = priv->line_control;
		spin_unlock_irqrestore(&priv->lock, flags);
		set_control_lines(serial->dev, control);
	} else {
		spin_unlock_irqrestore(&priv->lock, flags);
	}
	*/

	spin_lock_irqsave(&priv->lock, flags);
	if (divisor != priv->pending_setup.divisor
			|| control != priv->pending_setup.control
			|| frame_fmt != priv->pending_setup.frame_fmt) {
		priv->pending_setup.divisor = divisor;
		priv->pending_setup.control = control;
		priv->pending_setup.frame_fmt = frame_fmt;
	}
	spin_unlock_irqrestore(&priv->lock, flags);
}

568
static int oti6858_open(struct tty_struct *tty, struct usb_serial_port *port)
569 570 571 572 573 574 575 576
{
	struct oti6858_private *priv = usb_get_serial_port_data(port);
	struct ktermios tmp_termios;
	struct usb_serial *serial = port->serial;
	struct oti6858_control_pkt *buf;
	unsigned long flags;
	int result;

577
	dbg("%s(port = %d)", __func__, port->number);
578 579 580 581

	usb_clear_halt(serial->dev, port->write_urb->pipe);
	usb_clear_halt(serial->dev, port->read_urb->pipe);

A
Alan Cox 已提交
582
	if (port->port.count != 1)
583 584
		return 0;

A
Alan Cox 已提交
585 586
	buf = kmalloc(OTI6858_CTRL_PKT_SIZE, GFP_KERNEL);
	if (buf == NULL) {
587
		dev_err(&port->dev, "%s(): out of memory!\n", __func__);
588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615
		return -ENOMEM;
	}

	result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
				OTI6858_REQ_T_GET_STATUS,
				OTI6858_REQ_GET_STATUS,
				0, 0,
				buf, OTI6858_CTRL_PKT_SIZE,
				100);
	if (result != OTI6858_CTRL_PKT_SIZE) {
		/* assume default (after power-on reset) values */
		buf->divisor = cpu_to_le16(0x009c);	/* 38400 bps */
		buf->frame_fmt = 0x03;	/* 8N1 */
		buf->something = 0x43;
		buf->control = 0x4c;	/* DTR, RTS */
		buf->tx_status = 0x00;
		buf->pin_state = 0x5b;	/* RTS, CTS, DSR, DTR, RI, DCD */
		buf->rx_bytes_avail = 0x00;
	}

	spin_lock_irqsave(&priv->lock, flags);
	memcpy(&priv->status, buf, OTI6858_CTRL_PKT_SIZE);
	priv->pending_setup.divisor = buf->divisor;
	priv->pending_setup.frame_fmt = buf->frame_fmt;
	priv->pending_setup.control = buf->control;
	spin_unlock_irqrestore(&priv->lock, flags);
	kfree(buf);

616
	dbg("%s(): submitting interrupt urb", __func__);
617 618 619 620
	port->interrupt_in_urb->dev = serial->dev;
	result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
	if (result != 0) {
		dev_err(&port->dev, "%s(): usb_submit_urb() failed"
621
			       " with error %d\n", __func__, result);
622
		oti6858_close(port);
623 624 625 626
		return -EPROTO;
	}

	/* setup termios */
A
Alan Cox 已提交
627 628
	if (tty)
		oti6858_set_termios(tty, port, &tmp_termios);
629
	port->port.drain_delay = 256;	/* FIXME: check the FIFO length */
630 631 632
	return 0;
}

633
static void oti6858_close(struct usb_serial_port *port)
634 635 636 637
{
	struct oti6858_private *priv = usb_get_serial_port_data(port);
	unsigned long flags;

638
	dbg("%s(port = %d)", __func__, port->number);
639 640 641

	spin_lock_irqsave(&priv->lock, flags);
	/* clear out any remaining data in the buffer */
A
Alan Cox 已提交
642
	oti6858_buf_clear(priv->buf);
643 644
	spin_unlock_irqrestore(&priv->lock, flags);

645
	dbg("%s(): after buf_clear()", __func__);
646 647 648 649 650 651 652

	/* cancel scheduled setup */
	cancel_delayed_work(&priv->delayed_setup_work);
	cancel_delayed_work(&priv->delayed_write_work);
	flush_scheduled_work();

	/* shutdown our urbs */
653
	dbg("%s(): shutting down urbs", __func__);
654 655 656 657 658
	usb_kill_urb(port->write_urb);
	usb_kill_urb(port->read_urb);
	usb_kill_urb(port->interrupt_in_urb);
}

A
Alan Cox 已提交
659
static int oti6858_tiocmset(struct tty_struct *tty, struct file *file,
660 661
				unsigned int set, unsigned int clear)
{
A
Alan Cox 已提交
662
	struct usb_serial_port *port = tty->driver_data;
663 664 665 666 667
	struct oti6858_private *priv = usb_get_serial_port_data(port);
	unsigned long flags;
	u8 control;

	dbg("%s(port = %d, set = 0x%08x, clear = 0x%08x)",
668
				__func__, port->number, set, clear);
669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684

	if (!usb_get_intfdata(port->serial->interface))
		return -ENODEV;

	/* FIXME: check if this is correct (active high/low) */
	spin_lock_irqsave(&priv->lock, flags);
	control = priv->pending_setup.control;
	if ((set & TIOCM_RTS) != 0)
		control |= CONTROL_RTS_HIGH;
	if ((set & TIOCM_DTR) != 0)
		control |= CONTROL_DTR_HIGH;
	if ((clear & TIOCM_RTS) != 0)
		control &= ~CONTROL_RTS_HIGH;
	if ((clear & TIOCM_DTR) != 0)
		control &= ~CONTROL_DTR_HIGH;

A
Alan Cox 已提交
685
	if (control != priv->pending_setup.control)
686 687
		priv->pending_setup.control = control;

A
Alan Cox 已提交
688
	spin_unlock_irqrestore(&priv->lock, flags);
689 690 691
	return 0;
}

A
Alan Cox 已提交
692
static int oti6858_tiocmget(struct tty_struct *tty, struct file *file)
693
{
A
Alan Cox 已提交
694
	struct usb_serial_port *port = tty->driver_data;
695 696 697 698 699
	struct oti6858_private *priv = usb_get_serial_port_data(port);
	unsigned long flags;
	unsigned pin_state;
	unsigned result = 0;

700
	dbg("%s(port = %d)", __func__, port->number);
701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722

	if (!usb_get_intfdata(port->serial->interface))
		return -ENODEV;

	spin_lock_irqsave(&priv->lock, flags);
	pin_state = priv->status.pin_state & PIN_MASK;
	spin_unlock_irqrestore(&priv->lock, flags);

	/* FIXME: check if this is correct (active high/low) */
	if ((pin_state & PIN_RTS) != 0)
		result |= TIOCM_RTS;
	if ((pin_state & PIN_CTS) != 0)
		result |= TIOCM_CTS;
	if ((pin_state & PIN_DSR) != 0)
		result |= TIOCM_DSR;
	if ((pin_state & PIN_DTR) != 0)
		result |= TIOCM_DTR;
	if ((pin_state & PIN_RI) != 0)
		result |= TIOCM_RI;
	if ((pin_state & PIN_DCD) != 0)
		result |= TIOCM_CD;

723
	dbg("%s() = 0x%08x", __func__, result);
724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739

	return result;
}

static int wait_modem_info(struct usb_serial_port *port, unsigned int arg)
{
	struct oti6858_private *priv = usb_get_serial_port_data(port);
	unsigned long flags;
	unsigned int prev, status;
	unsigned int changed;

	spin_lock_irqsave(&priv->lock, flags);
	prev = priv->status.pin_state;
	spin_unlock_irqrestore(&priv->lock, flags);

	while (1) {
A
Alan Cox 已提交
740 741
		wait_event_interruptible(priv->intr_wait,
					priv->status.pin_state != prev);
742 743 744 745 746 747 748 749 750
		if (signal_pending(current))
			return -ERESTARTSYS;

		spin_lock_irqsave(&priv->lock, flags);
		status = priv->status.pin_state & PIN_MASK;
		spin_unlock_irqrestore(&priv->lock, flags);

		changed = prev ^ status;
		/* FIXME: check if this is correct (active high/low) */
A
Alan Cox 已提交
751 752 753 754 755
		if (((arg & TIOCM_RNG) && (changed & PIN_RI)) ||
		    ((arg & TIOCM_DSR) && (changed & PIN_DSR)) ||
		    ((arg & TIOCM_CD)  && (changed & PIN_DCD)) ||
		    ((arg & TIOCM_CTS) && (changed & PIN_CTS)))
			return 0;
756 757 758 759 760 761 762
		prev = status;
	}

	/* NOTREACHED */
	return 0;
}

A
Alan Cox 已提交
763
static int oti6858_ioctl(struct tty_struct *tty, struct file *file,
764 765
			unsigned int cmd, unsigned long arg)
{
A
Alan Cox 已提交
766
	struct usb_serial_port *port = tty->driver_data;
767 768

	dbg("%s(port = %d, cmd = 0x%04x, arg = 0x%08lx)",
769
				__func__, port->number, cmd, arg);
770 771

	switch (cmd) {
A
Alan Cox 已提交
772 773 774 775 776 777
	case TIOCMIWAIT:
		dbg("%s(): TIOCMIWAIT", __func__);
		return wait_modem_info(port, arg);
	default:
		dbg("%s(): 0x%04x not supported", __func__, cmd);
		break;
778 779 780 781 782
	}
	return -ENOIOCTLCMD;
}


783
static void oti6858_release(struct usb_serial *serial)
784 785 786 787
{
	struct oti6858_private *priv;
	int i;

788
	dbg("%s()", __func__);
789 790 791 792

	for (i = 0; i < serial->num_ports; ++i) {
		priv = usb_get_serial_port_data(serial->port[i]);
		if (priv) {
A
Alan Cox 已提交
793
			oti6858_buf_free(priv->buf);
794 795 796 797 798 799 800
			kfree(priv);
		}
	}
}

static void oti6858_read_int_callback(struct urb *urb)
{
801
	struct usb_serial_port *port =  urb->context;
802 803
	struct oti6858_private *priv = usb_get_serial_port_data(port);
	int transient = 0, can_recv = 0, resubmit = 1;
804
	int status = urb->status;
805

806
	dbg("%s(port = %d, status = %d)",
807
				__func__, port->number, status);
808

809
	switch (status) {
810 811 812 813 814 815 816 817
	case 0:
		/* success */
		break;
	case -ECONNRESET:
	case -ENOENT:
	case -ESHUTDOWN:
		/* this urb is terminated, clean up */
		dbg("%s(): urb shutting down with status: %d",
818
					__func__, status);
819 820 821
		return;
	default:
		dbg("%s(): nonzero urb status received: %d",
822
					__func__, status);
823 824 825
		break;
	}

826
	if (status == 0 && urb->actual_length == OTI6858_CTRL_PKT_SIZE) {
827 828 829 830 831 832 833 834 835 836 837 838
		struct oti6858_control_pkt *xs = urb->transfer_buffer;
		unsigned long flags;

		spin_lock_irqsave(&priv->lock, flags);

		if (!priv->transient) {
			if (!OTI6858_CTRL_EQUALS_PENDING(xs, priv)) {
				if (xs->rx_bytes_avail == 0) {
					priv->transient = 4;
					priv->setup_done = 0;
					resubmit = 0;
					dbg("%s(): scheduling setup_line()",
839
					    __func__);
840 841 842 843 844 845 846 847 848 849 850 851 852 853
					schedule_delayed_work(&priv->delayed_setup_work, 0);
				}
			}
		} else {
			if (OTI6858_CTRL_EQUALS_PENDING(xs, priv)) {
				priv->transient = 0;
			} else if (!priv->setup_done) {
				resubmit = 0;
			} else if (--priv->transient == 0) {
				if (xs->rx_bytes_avail == 0) {
					priv->transient = 4;
					priv->setup_done = 0;
					resubmit = 0;
					dbg("%s(): scheduling setup_line()",
854
					    __func__);
855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882
					schedule_delayed_work(&priv->delayed_setup_work, 0);
				}
			}
		}

		if (!priv->transient) {
			if (xs->pin_state != priv->status.pin_state)
				wake_up_interruptible(&priv->intr_wait);
			memcpy(&priv->status, xs, OTI6858_CTRL_PKT_SIZE);
		}

		if (!priv->transient && xs->rx_bytes_avail != 0) {
			can_recv = xs->rx_bytes_avail;
			priv->flags.read_urb_in_use = 1;
		}

		transient = priv->transient;
		spin_unlock_irqrestore(&priv->lock, flags);
	}

	if (can_recv) {
		int result;

		port->read_urb->dev = port->serial->dev;
		result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
		if (result != 0) {
			priv->flags.read_urb_in_use = 0;
			dev_err(&port->dev, "%s(): usb_submit_urb() failed,"
883
					" error %d\n", __func__, result);
884 885 886 887 888 889 890 891
		} else {
			resubmit = 0;
		}
	} else if (!transient) {
		unsigned long flags;

		spin_lock_irqsave(&priv->lock, flags);
		if (priv->flags.write_urb_in_use == 0
A
Alan Cox 已提交
892
				&& oti6858_buf_data_avail(priv->buf) != 0) {
A
Alan Cox 已提交
893
			schedule_delayed_work(&priv->delayed_write_work, 0);
894 895 896 897 898 899 900 901
			resubmit = 0;
		}
		spin_unlock_irqrestore(&priv->lock, flags);
	}

	if (resubmit) {
		int result;

A
Alan Cox 已提交
902
/*		dbg("%s(): submitting interrupt urb", __func__); */
903 904 905 906 907
		urb->dev = port->serial->dev;
		result = usb_submit_urb(urb, GFP_ATOMIC);
		if (result != 0) {
			dev_err(&urb->dev->dev,
					"%s(): usb_submit_urb() failed with"
908
					" error %d\n", __func__, result);
909 910 911 912 913 914
		}
	}
}

static void oti6858_read_bulk_callback(struct urb *urb)
{
915
	struct usb_serial_port *port =  urb->context;
916 917 918 919
	struct oti6858_private *priv = usb_get_serial_port_data(port);
	struct tty_struct *tty;
	unsigned char *data = urb->transfer_buffer;
	unsigned long flags;
920
	int status = urb->status;
A
Alan Cox 已提交
921
	int result;
922

923
	dbg("%s(port = %d, status = %d)",
924
				__func__, port->number, status);
925 926 927 928 929

	spin_lock_irqsave(&priv->lock, flags);
	priv->flags.read_urb_in_use = 0;
	spin_unlock_irqrestore(&priv->lock, flags);

930
	if (status != 0) {
A
Alan Cox 已提交
931
		if (!port->port.count) {
932
			dbg("%s(): port is closed, exiting", __func__);
933 934 935
			return;
		}
		/*
936
		if (status == -EPROTO) {
A
Alan Cox 已提交
937 938 939 940
			* PL2303 mysteriously fails with -EPROTO reschedule
			   the read *
			dbg("%s - caught -EPROTO, resubmitting the urb",
								__func__);
941 942
			result = usb_submit_urb(urb, GFP_ATOMIC);
			if (result)
943
				dev_err(&urb->dev->dev, "%s - failed resubmitting read urb, error %d\n", __func__, result);
944 945 946
			return;
		}
		*/
947
		dbg("%s(): unable to handle the error, exiting", __func__);
948 949 950
		return;
	}

A
Alan Cox 已提交
951
	tty = tty_port_tty_get(&port->port);
952
	if (tty != NULL && urb->actual_length > 0) {
A
Alan Cox 已提交
953
		tty_insert_flip_string(tty, data, urb->actual_length);
954 955
		tty_flip_buffer_push(tty);
	}
A
Alan Cox 已提交
956
	tty_kref_put(tty);
957

A
Alan Cox 已提交
958
	/* schedule the interrupt urb if we are still open */
A
Alan Cox 已提交
959
	if (port->port.count != 0) {
960 961 962 963
		port->interrupt_in_urb->dev = port->serial->dev;
		result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
		if (result != 0) {
			dev_err(&port->dev, "%s(): usb_submit_urb() failed,"
964
					" error %d\n", __func__, result);
965 966 967 968 969 970
		}
	}
}

static void oti6858_write_bulk_callback(struct urb *urb)
{
971
	struct usb_serial_port *port =  urb->context;
972
	struct oti6858_private *priv = usb_get_serial_port_data(port);
973
	int status = urb->status;
974 975
	int result;

976
	dbg("%s(port = %d, status = %d)",
977
				__func__, port->number, status);
978

979
	switch (status) {
980 981 982 983 984 985 986 987
	case 0:
		/* success */
		break;
	case -ECONNRESET:
	case -ENOENT:
	case -ESHUTDOWN:
		/* this urb is terminated, clean up */
		dbg("%s(): urb shutting down with status: %d",
988
					__func__, status);
989 990 991 992 993
		priv->flags.write_urb_in_use = 0;
		return;
	default:
		/* error in the urb, so we have to resubmit it */
		dbg("%s(): nonzero write bulk status received: %d",
994 995
					__func__, status);
		dbg("%s(): overflow in write", __func__);
996 997 998 999 1000 1001

		port->write_urb->transfer_buffer_length = 1;
		port->write_urb->dev = port->serial->dev;
		result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
		if (result) {
			dev_err(&port->dev, "%s(): usb_submit_urb() failed,"
1002
					" error %d\n", __func__, result);
1003 1004 1005 1006 1007 1008 1009
		} else {
			return;
		}
	}

	priv->flags.write_urb_in_use = 0;

A
Alan Cox 已提交
1010
	/* schedule the interrupt urb if we are still open */
1011
	port->interrupt_in_urb->dev = port->serial->dev;
1012
	dbg("%s(): submitting interrupt urb", __func__);
1013 1014 1015
	result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
	if (result != 0) {
		dev_err(&port->dev, "%s(): failed submitting int urb,"
1016
					" error %d\n", __func__, result);
1017 1018 1019 1020 1021
	}
}


/*
A
Alan Cox 已提交
1022
 * oti6858_buf_alloc
1023 1024 1025
 *
 * Allocate a circular buffer and all associated memory.
 */
A
Alan Cox 已提交
1026
static struct oti6858_buf *oti6858_buf_alloc(unsigned int size)
1027
{
A
Alan Cox 已提交
1028
	struct oti6858_buf *pb;
1029 1030 1031 1032

	if (size == 0)
		return NULL;

A
Alan Cox 已提交
1033
	pb = kmalloc(sizeof(struct oti6858_buf), GFP_KERNEL);
1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049
	if (pb == NULL)
		return NULL;

	pb->buf_buf = kmalloc(size, GFP_KERNEL);
	if (pb->buf_buf == NULL) {
		kfree(pb);
		return NULL;
	}

	pb->buf_size = size;
	pb->buf_get = pb->buf_put = pb->buf_buf;

	return pb;
}

/*
A
Alan Cox 已提交
1050
 * oti6858_buf_free
1051 1052 1053
 *
 * Free the buffer and all associated memory.
 */
A
Alan Cox 已提交
1054
static void oti6858_buf_free(struct oti6858_buf *pb)
1055 1056 1057 1058 1059 1060 1061 1062
{
	if (pb) {
		kfree(pb->buf_buf);
		kfree(pb);
	}
}

/*
A
Alan Cox 已提交
1063
 * oti6858_buf_clear
1064 1065 1066
 *
 * Clear out all data in the circular buffer.
 */
A
Alan Cox 已提交
1067
static void oti6858_buf_clear(struct oti6858_buf *pb)
1068 1069 1070 1071 1072 1073 1074 1075
{
	if (pb != NULL) {
		/* equivalent to a get of all data available */
		pb->buf_get = pb->buf_put;
	}
}

/*
A
Alan Cox 已提交
1076
 * oti6858_buf_data_avail
1077 1078 1079 1080
 *
 * Return the number of bytes of data available in the circular
 * buffer.
 */
A
Alan Cox 已提交
1081
static unsigned int oti6858_buf_data_avail(struct oti6858_buf *pb)
1082 1083 1084
{
	if (pb == NULL)
		return 0;
A
Alan Cox 已提交
1085
	return (pb->buf_size + pb->buf_put - pb->buf_get) % pb->buf_size;
1086 1087 1088
}

/*
A
Alan Cox 已提交
1089
 * oti6858_buf_space_avail
1090 1091 1092 1093
 *
 * Return the number of bytes of space available in the circular
 * buffer.
 */
A
Alan Cox 已提交
1094
static unsigned int oti6858_buf_space_avail(struct oti6858_buf *pb)
1095 1096 1097
{
	if (pb == NULL)
		return 0;
A
Alan Cox 已提交
1098
	return (pb->buf_size + pb->buf_get - pb->buf_put - 1) % pb->buf_size;
1099 1100 1101
}

/*
A
Alan Cox 已提交
1102
 * oti6858_buf_put
1103 1104 1105 1106 1107 1108
 *
 * Copy data data from a user buffer and put it into the circular buffer.
 * Restrict to the amount of space available.
 *
 * Return the number of bytes copied.
 */
A
Alan Cox 已提交
1109
static unsigned int oti6858_buf_put(struct oti6858_buf *pb, const char *buf,
1110 1111 1112 1113 1114 1115 1116
					unsigned int count)
{
	unsigned int len;

	if (pb == NULL)
		return 0;

A
Alan Cox 已提交
1117
	len  = oti6858_buf_space_avail(pb);
1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140
	if (count > len)
		count = len;

	if (count == 0)
		return 0;

	len = pb->buf_buf + pb->buf_size - pb->buf_put;
	if (count > len) {
		memcpy(pb->buf_put, buf, len);
		memcpy(pb->buf_buf, buf+len, count - len);
		pb->buf_put = pb->buf_buf + count - len;
	} else {
		memcpy(pb->buf_put, buf, count);
		if (count < len)
			pb->buf_put += count;
		else /* count == len */
			pb->buf_put = pb->buf_buf;
	}

	return count;
}

/*
A
Alan Cox 已提交
1141
 * oti6858_buf_get
1142 1143 1144 1145 1146 1147
 *
 * Get data from the circular buffer and copy to the given buffer.
 * Restrict to the amount of data available.
 *
 * Return the number of bytes copied.
 */
A
Alan Cox 已提交
1148
static unsigned int oti6858_buf_get(struct oti6858_buf *pb, char *buf,
1149 1150 1151 1152 1153 1154 1155
					unsigned int count)
{
	unsigned int len;

	if (pb == NULL)
		return 0;

A
Alan Cox 已提交
1156
	len = oti6858_buf_data_avail(pb);
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184
	if (count > len)
		count = len;

	if (count == 0)
		return 0;

	len = pb->buf_buf + pb->buf_size - pb->buf_get;
	if (count > len) {
		memcpy(buf, pb->buf_get, len);
		memcpy(buf+len, pb->buf_buf, count - len);
		pb->buf_get = pb->buf_buf + count - len;
	} else {
		memcpy(buf, pb->buf_get, count);
		if (count < len)
			pb->buf_get += count;
		else /* count == len */
			pb->buf_get = pb->buf_buf;
	}

	return count;
}

/* module description and (de)initialization */

static int __init oti6858_init(void)
{
	int retval;

A
Alan Cox 已提交
1185 1186 1187 1188
	retval = usb_serial_register(&oti6858_device);
	if (retval == 0) {
		retval = usb_register(&oti6858_driver);
		if (retval)
1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210
			usb_serial_deregister(&oti6858_device);
	}
	return retval;
}

static void __exit oti6858_exit(void)
{
	usb_deregister(&oti6858_driver);
	usb_serial_deregister(&oti6858_device);
}

module_init(oti6858_init);
module_exit(oti6858_exit);

MODULE_DESCRIPTION(OTI6858_DESCRIPTION);
MODULE_AUTHOR(OTI6858_AUTHOR);
MODULE_VERSION(OTI6858_VERSION);
MODULE_LICENSE("GPL");

module_param(debug, bool, S_IRUGO | S_IWUSR);
MODULE_PARM_DESC(debug, "enable debug output");