mos7720.c 44.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
/*
 * mos7720.c
 *   Controls the Moschip 7720 usb to dual port serial convertor
 *
 * Copyright 2006 Moschip Semiconductor Tech. Ltd.
 *
 * 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, version 2 of the License.
 *
 * Developed by:
12 13 14
 * 	Vijaya Kumar <vijaykumar.gn@gmail.com>
 *	Ajay Kumar <naanuajay@yahoo.com>
 *	Gurudeva <ngurudeva@yahoo.com>
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
 *
 * Cleaned up from the original by:
 *	Greg Kroah-Hartman <gregkh@suse.de>
 *
 * Originally based on drivers/usb/serial/io_edgeport.c which is:
 *	Copyright (C) 2000 Inside Out Networks, All rights reserved.
 *	Copyright (C) 2001-2002 Greg Kroah-Hartman <greg@kroah.com>
 */
#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>
#include <linux/serial.h>
#include <linux/serial_reg.h>
#include <linux/usb.h>
#include <linux/usb/serial.h>
A
Alan Cox 已提交
36
#include <linux/uaccess.h>
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66


/*
 * Version Information
 */
#define DRIVER_VERSION "1.0.0.4F"
#define DRIVER_AUTHOR "Aspire Communications pvt Ltd."
#define DRIVER_DESC "Moschip USB Serial Driver"

/* default urb timeout */
#define MOS_WDR_TIMEOUT	(HZ * 5)

#define MOS_PORT1	0x0200
#define MOS_PORT2	0x0300
#define MOS_VENREG	0x0000
#define MOS_MAX_PORT	0x02
#define MOS_WRITE	0x0E
#define MOS_READ	0x0D

/* Interrupt Rotinue Defines	*/
#define SERIAL_IIR_RLS	0x06
#define SERIAL_IIR_RDA	0x04
#define SERIAL_IIR_CTI	0x0c
#define SERIAL_IIR_THR	0x02
#define SERIAL_IIR_MS	0x00

#define NUM_URBS			16	/* URB Count */
#define URB_TRANSFER_BUFFER_SIZE	32	/* URB Size */

/* This structure holds all of the local port information */
A
Alan Cox 已提交
67
struct moschip_port {
68 69 70 71 72 73 74 75 76 77
	__u8	shadowLCR;		/* last LCR value received */
	__u8	shadowMCR;		/* last MCR value received */
	__u8	shadowMSR;		/* last MSR value received */
	char			open;
	struct async_icount	icount;
	struct usb_serial_port	*port;	/* loop back to the owner */
	struct urb		*write_urb_pool[NUM_URBS];
};

/* This structure holds all of the individual serial device information */
A
Alan Cox 已提交
78
struct moschip_serial {
79 80 81 82 83
	int interrupt_started;
};

static int debug;

84 85
static struct usb_serial_driver moschip7720_2port_driver;

86 87 88 89
#define USB_VENDOR_ID_MOSCHIP		0x9710
#define MOSCHIP_DEVICE_ID_7720		0x7720
#define MOSCHIP_DEVICE_ID_7715		0x7715

90
static const struct usb_device_id moschip_port_id_table[] = {
A
Alan Cox 已提交
91
	{ USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7720) },
92
	{ USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7715) },
93 94 95 96 97 98 99 100 101 102 103 104 105 106
	{ } /* terminating entry */
};
MODULE_DEVICE_TABLE(usb, moschip_port_id_table);


/*
 * mos7720_interrupt_callback
 *	this is the callback function for when we have received data on the
 *	interrupt endpoint.
 */
static void mos7720_interrupt_callback(struct urb *urb)
{
	int result;
	int length;
107
	int status = urb->status;
O
Oliver Neukum 已提交
108
	__u8 *data;
109 110 111
	__u8 sp1;
	__u8 sp2;

A
Alan Cox 已提交
112
	dbg("%s", " : Entering\n");
113

114
	switch (status) {
115 116 117 118 119 120 121
	case 0:
		/* success */
		break;
	case -ECONNRESET:
	case -ENOENT:
	case -ESHUTDOWN:
		/* this urb is terminated, clean up */
122
		dbg("%s - urb shutting down with status: %d", __func__,
123
		    status);
124 125
		return;
	default:
126
		dbg("%s - nonzero urb status received: %d", __func__,
127
		    status);
128 129 130 131 132 133 134 135 136 137 138
		goto exit;
	}

	length = urb->actual_length;
	data = urb->transfer_buffer;

	/* Moschip get 4 bytes
	 * Byte 1 IIR Port 1 (port.number is 0)
	 * Byte 2 IIR Port 2 (port.number is 1)
	 * Byte 3 --------------
	 * Byte 4 FIFO status for both */
O
Oliver Neukum 已提交
139 140 141 142 143

	/* the above description is inverted
	 * 	oneukum 2007-03-14 */

	if (unlikely(length != 4)) {
144 145 146 147
		dbg("Wrong data !!!");
		return;
	}

O
Oliver Neukum 已提交
148 149
	sp1 = data[3];
	sp2 = data[2];
150

O
Oliver Neukum 已提交
151
	if ((sp1 | sp2) & 0x01) {
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
		/* No Interrupt Pending in both the ports */
		dbg("No Interrupt !!!");
	} else {
		switch (sp1 & 0x0f) {
		case SERIAL_IIR_RLS:
			dbg("Serial Port 1: Receiver status error or address "
			    "bit detected in 9-bit mode\n");
			break;
		case SERIAL_IIR_CTI:
			dbg("Serial Port 1: Receiver time out");
			break;
		case SERIAL_IIR_MS:
			dbg("Serial Port 1: Modem status change");
			break;
		}

		switch (sp2 & 0x0f) {
		case SERIAL_IIR_RLS:
			dbg("Serial Port 2: Receiver status error or address "
			    "bit detected in 9-bit mode");
			break;
		case SERIAL_IIR_CTI:
			dbg("Serial Port 2: Receiver time out");
			break;
		case SERIAL_IIR_MS:
			dbg("Serial Port 2: Modem status change");
			break;
		}
	}

exit:
	result = usb_submit_urb(urb, GFP_ATOMIC);
	if (result)
		dev_err(&urb->dev->dev,
			"%s - Error %d submitting control urb\n",
187
			__func__, result);
188 189 190
	return;
}

191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
/*
 * mos7715_interrupt_callback
 *	this is the 7715's callback function for when we have received data on
 *	the interrupt endpoint.
 */
static void mos7715_interrupt_callback(struct urb *urb)
{
	int result;
	int length;
	int status = urb->status;
	__u8 *data;
	__u8 iir;

	switch (status) {
	case 0:
		/* success */
		break;
	case -ECONNRESET:
	case -ENOENT:
	case -ESHUTDOWN:
		/* this urb is terminated, clean up */
		dbg("%s - urb shutting down with status: %d", __func__,
		    status);
		return;
	default:
		dbg("%s - nonzero urb status received: %d", __func__,
		    status);
		goto exit;
	}

	length = urb->actual_length;
	data = urb->transfer_buffer;

	/* Structure of data from 7715 device:
	 * Byte 1: IIR serial Port
	 * Byte 2: unused
	 * Byte 2: DSR parallel port
	 * Byte 4: FIFO status for both */

	if (unlikely(length != 4)) {
		dbg("Wrong data !!!");
		return;
	}

	iir = data[0];
	if (!(iir & 0x01)) {	/* serial port interrupt pending */
		switch (iir & 0x0f) {
		case SERIAL_IIR_RLS:
			dbg("Serial Port: Receiver status error or address "
			    "bit detected in 9-bit mode\n");
			break;
		case SERIAL_IIR_CTI:
			dbg("Serial Port: Receiver time out");
			break;
		case SERIAL_IIR_MS:
			dbg("Serial Port: Modem status change");
			break;
		}
	}

exit:
	result = usb_submit_urb(urb, GFP_ATOMIC);
	if (result)
		dev_err(&urb->dev->dev,
			"%s - Error %d submitting control urb\n",
			__func__, result);
	return;
}

260 261 262 263 264 265 266
/*
 * mos7720_bulk_in_callback
 *	this is the callback function for when we have received data on the
 *	bulk in endpoint.
 */
static void mos7720_bulk_in_callback(struct urb *urb)
{
267
	int retval;
268 269 270 271
	unsigned char *data ;
	struct usb_serial_port *port;
	struct moschip_port *mos7720_port;
	struct tty_struct *tty;
272
	int status = urb->status;
273

274 275
	if (status) {
		dbg("nonzero read bulk status received: %d", status);
276 277 278 279 280
		return;
	}

	mos7720_port = urb->context;
	if (!mos7720_port) {
A
Alan Cox 已提交
281
		dbg("%s", "NULL mos7720_port pointer \n");
282 283 284 285 286
		return ;
	}

	port = mos7720_port->port;

287
	dbg("Entering...%s", __func__);
288 289 290

	data = urb->transfer_buffer;

A
Alan Cox 已提交
291
	tty = tty_port_tty_get(&port->port);
292 293 294 295 296
	if (tty && urb->actual_length) {
		tty_buffer_request_room(tty, urb->actual_length);
		tty_insert_flip_string(tty, data, urb->actual_length);
		tty_flip_buffer_push(tty);
	}
A
Alan Cox 已提交
297
	tty_kref_put(tty);
298 299 300 301 302 303 304 305 306

	if (!port->read_urb) {
		dbg("URB KILLED !!!");
		return;
	}

	if (port->read_urb->status != -EINPROGRESS) {
		port->read_urb->dev = port->serial->dev;

307 308 309 310
		retval = usb_submit_urb(port->read_urb, GFP_ATOMIC);
		if (retval)
			dbg("usb_submit_urb(read bulk) failed, retval = %d",
			    retval);
311 312 313 314 315 316 317 318 319 320 321 322
	}
}

/*
 * mos7720_bulk_out_data_callback
 *	this is the callback function for when we have finished sending serial
 *	data on the bulk out endpoint.
 */
static void mos7720_bulk_out_data_callback(struct urb *urb)
{
	struct moschip_port *mos7720_port;
	struct tty_struct *tty;
323
	int status = urb->status;
324

325 326
	if (status) {
		dbg("nonzero write bulk status received:%d", status);
327 328 329 330 331 332 333 334 335 336 337
		return;
	}

	mos7720_port = urb->context;
	if (!mos7720_port) {
		dbg("NULL mos7720_port pointer");
		return ;
	}

	dbg("Entering .........");

A
Alan Cox 已提交
338
	tty = tty_port_tty_get(&mos7720_port->port->port);
339

J
Jiri Slaby 已提交
340 341
	if (tty && mos7720_port->open)
		tty_wakeup(tty);
A
Alan Cox 已提交
342
	tty_kref_put(tty);
343 344 345 346 347 348 349
}

/*
 * send_mos_cmd
 *	this function will be used for sending command to device
 */
static int send_mos_cmd(struct usb_serial *serial, __u8 request, __u16 value,
350
			__u16 index, u8 *data)
351 352
{
	int status;
353
	u8 *buf;
354 355 356
	u16 product = le16_to_cpu(serial->dev->descriptor.idProduct);

	if (value < MOS_MAX_PORT) {
A
Alan Cox 已提交
357
		if (product == MOSCHIP_DEVICE_ID_7715)
358
			value = 0x0200; /* identifies the 7715's serial port */
A
Alan Cox 已提交
359
		else
360 361 362 363 364 365
			value = value*0x100+0x200;
	} else {
		value = 0x0000;
		if ((product == MOSCHIP_DEVICE_ID_7715) &&
		    (index != 0x08)) {
			dbg("serial->product== MOSCHIP_DEVICE_ID_7715");
A
Alan Cox 已提交
366
			/* index = 0x01 ; */
367 368 369 370
		}
	}

	if (request == MOS_WRITE) {
371 372 373 374
		value = value + *data;
		status = usb_control_msg(serial->dev,
				usb_sndctrlpipe(serial->dev, 0), MOS_WRITE,
				0x40, value, index, NULL, 0, MOS_WDR_TIMEOUT);
375
	} else {
376 377 378 379 380 381 382 383 384 385
		buf = kmalloc(1, GFP_KERNEL);
		if (!buf) {
			status = -ENOMEM;
			goto out;
		}
		status = usb_control_msg(serial->dev,
				usb_rcvctrlpipe(serial->dev, 0), MOS_READ,
				0xc0, value, index, buf, 1, MOS_WDR_TIMEOUT);
		*data = *buf;
		kfree(buf);
386
	}
387
out:
388
	if (status < 0)
A
Alan Cox 已提交
389
		dbg("Command Write failed Value %x index %x\n", value, index);
390 391 392 393

	return status;
}

394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422

/*
 * mos77xx_probe
 *	this function installs the appropriate read interrupt endpoint callback
 *	depending on whether the device is a 7720 or 7715, thus avoiding costly
 *	run-time checks in the high-frequency callback routine itself.
 */
static int mos77xx_probe(struct usb_serial *serial,
			 const struct usb_device_id *id)
{
	if (id->idProduct == MOSCHIP_DEVICE_ID_7715)
		moschip7720_2port_driver.read_int_callback =
			mos7715_interrupt_callback;
	else
		moschip7720_2port_driver.read_int_callback =
			mos7720_interrupt_callback;

	return 0;
}

static int mos77xx_calc_num_ports(struct usb_serial *serial)
{
	u16 product = le16_to_cpu(serial->dev->descriptor.idProduct);
	if (product == MOSCHIP_DEVICE_ID_7715)
		return 1;

	return 2;
}

423
static int mos7720_open(struct tty_struct *tty, struct usb_serial_port *port)
424 425 426 427 428 429 430 431 432
{
	struct usb_serial *serial;
	struct usb_serial_port *port0;
	struct urb *urb;
	struct moschip_serial *mos7720_serial;
	struct moschip_port *mos7720_port;
	int response;
	int port_number;
	char data;
O
Oliver Neukum 已提交
433
	int allocated_urbs = 0;
434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453
	int j;

	serial = port->serial;

	mos7720_port = usb_get_serial_port_data(port);
	if (mos7720_port == NULL)
		return -ENODEV;

	port0 = serial->port[0];

	mos7720_serial = usb_get_serial_data(serial);

	if (mos7720_serial == NULL || port0 == NULL)
		return -ENODEV;

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

	/* Initialising the write urb pool */
	for (j = 0; j < NUM_URBS; ++j) {
A
Alan Cox 已提交
454
		urb = usb_alloc_urb(0, GFP_KERNEL);
455 456 457
		mos7720_port->write_urb_pool[j] = urb;

		if (urb == NULL) {
458
			dev_err(&port->dev, "No more urbs???\n");
459 460 461 462 463 464
			continue;
		}

		urb->transfer_buffer = kmalloc(URB_TRANSFER_BUFFER_SIZE,
					       GFP_KERNEL);
		if (!urb->transfer_buffer) {
465 466 467
			dev_err(&port->dev,
				"%s-out of memory for urb buffers.\n",
				__func__);
O
Oliver Neukum 已提交
468 469
			usb_free_urb(mos7720_port->write_urb_pool[j]);
			mos7720_port->write_urb_pool[j] = NULL;
470 471
			continue;
		}
O
Oliver Neukum 已提交
472
		allocated_urbs++;
473 474
	}

O
Oliver Neukum 已提交
475 476 477
	if (!allocated_urbs)
		return -ENOMEM;

478 479 480
	 /* Initialize MCS7720 -- Write Init values to corresponding Registers
	  *
	  * Register Index
481
	  * 0 : THR/RHR
482 483 484 485
	  * 1 : IER
	  * 2 : FCR
	  * 3 : LCR
	  * 4 : MCR
486 487 488
	  * 5 : LSR
	  * 6 : MSR
	  * 7 : SPR
489 490 491 492 493
	  *
	  * 0x08 : SP1/2 Control Reg
	  */
	port_number = port->number - port->serial->minor;
	send_mos_cmd(port->serial, MOS_READ, port_number, UART_LSR, &data);
A
Alan Cox 已提交
494
	dbg("SS::%p LSR:%x\n", mos7720_port, data);
495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510

	dbg("Check:Sending Command ..........");

	data = 0x02;
	send_mos_cmd(serial, MOS_WRITE, MOS_MAX_PORT, 0x01, &data);
	data = 0x02;
	send_mos_cmd(serial, MOS_WRITE, MOS_MAX_PORT, 0x02, &data);

	data = 0x00;
	send_mos_cmd(serial, MOS_WRITE, port_number, 0x01, &data);
	data = 0x00;
	send_mos_cmd(serial, MOS_WRITE, port_number, 0x02, &data);

	data = 0xCF;
	send_mos_cmd(serial, MOS_WRITE, port_number, 0x02, &data);
	data = 0x03;
A
Alan Cox 已提交
511
	mos7720_port->shadowLCR  = data;
512 513
	send_mos_cmd(serial, MOS_WRITE, port_number, 0x03, &data);
	data = 0x0b;
A
Alan Cox 已提交
514
	mos7720_port->shadowMCR  = data;
515 516 517 518 519 520 521 522 523 524 525 526 527 528
	send_mos_cmd(serial, MOS_WRITE, port_number, 0x04, &data);
	data = 0x0b;
	send_mos_cmd(serial, MOS_WRITE, port_number, 0x04, &data);

	data = 0x00;
	send_mos_cmd(serial, MOS_READ, MOS_MAX_PORT, 0x08, &data);
	data = 0x00;
	send_mos_cmd(serial, MOS_WRITE, MOS_MAX_PORT, 0x08, &data);

/*	data = 0x00;
	send_mos_cmd(serial, MOS_READ, MOS_MAX_PORT, port_number + 1, &data);
	data = 0x03;
	send_mos_cmd(serial, MOS_WRITE, MOS_MAX_PORT, port_number + 1, &data);
	data = 0x00;
A
Alan Cox 已提交
529 530
	send_mos_cmd(port->serial, MOS_WRITE, MOS_MAX_PORT,
						port_number + 1, &data);
531 532 533 534 535 536 537 538
*/
	data = 0x00;
	send_mos_cmd(serial, MOS_READ, MOS_MAX_PORT, 0x08, &data);

	data = data | (port->number - port->serial->minor + 1);
	send_mos_cmd(serial, MOS_WRITE, MOS_MAX_PORT, 0x08, &data);

	data = 0x83;
A
Alan Cox 已提交
539
	mos7720_port->shadowLCR  = data;
540 541 542 543 544 545
	send_mos_cmd(serial, MOS_WRITE, port_number, 0x03, &data);
	data = 0x0c;
	send_mos_cmd(serial, MOS_WRITE, port_number, 0x00, &data);
	data = 0x00;
	send_mos_cmd(serial, MOS_WRITE, port_number, 0x01, &data);
	data = 0x03;
A
Alan Cox 已提交
546
	mos7720_port->shadowLCR  = data;
547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
	send_mos_cmd(serial, MOS_WRITE, port_number, 0x03, &data);
	data = 0x0c;
	send_mos_cmd(serial, MOS_WRITE, port_number, 0x01, &data);
	data = 0x0c;
	send_mos_cmd(serial, MOS_WRITE, port_number, 0x01, &data);

	/* see if we've set up our endpoint info yet   *
	 * (can't set it up in mos7720_startup as the  *
	 * structures were not set up at that time.)   */
	if (!mos7720_serial->interrupt_started) {
		dbg("Interrupt buffer NULL !!!");

		/* not set up yet, so do it now */
		mos7720_serial->interrupt_started = 1;

		dbg("To Submit URB !!!");

		/* set up our interrupt urb */
		usb_fill_int_urb(port0->interrupt_in_urb, serial->dev,
A
Alan Cox 已提交
566 567 568 569 570 571
			 usb_rcvintpipe(serial->dev,
				port->interrupt_in_endpointAddress),
			 port0->interrupt_in_buffer,
			 port0->interrupt_in_urb->transfer_buffer_length,
			 mos7720_interrupt_callback, mos7720_port,
			 port0->interrupt_in_urb->interval);
572 573

		/* start interrupt read for this mos7720 this interrupt *
A
Alan Cox 已提交
574
		 * will continue as long as the mos7720 is connected    */
575 576 577 578
		dbg("Submit URB over !!!");
		response = usb_submit_urb(port0->interrupt_in_urb, GFP_KERNEL);
		if (response)
			dev_err(&port->dev,
579
				"%s - Error %d submitting control urb\n",
580
				__func__, response);
581 582 583 584 585
	}

	/* set up our bulk in urb */
	usb_fill_bulk_urb(port->read_urb, serial->dev,
			  usb_rcvbulkpipe(serial->dev,
A
Alan Cox 已提交
586
				port->bulk_in_endpointAddress),
587 588 589 590 591
			  port->bulk_in_buffer,
			  port->read_urb->transfer_buffer_length,
			  mos7720_bulk_in_callback, mos7720_port);
	response = usb_submit_urb(port->read_urb, GFP_KERNEL);
	if (response)
A
Alan Cox 已提交
592 593
		dev_err(&port->dev, "%s - Error %d submitting read urb\n",
							__func__, response);
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615

	/* initialize our icount structure */
	memset(&(mos7720_port->icount), 0x00, sizeof(mos7720_port->icount));

	/* initialize our port settings */
	mos7720_port->shadowMCR = UART_MCR_OUT2; /* Must set to enable ints! */

	/* send a open port command */
	mos7720_port->open = 1;

	return 0;
}

/*
 * mos7720_chars_in_buffer
 *	this function is called by the tty driver when it wants to know how many
 *	bytes of data we currently have outstanding in the port (data that has
 *	been written, but hasn't made it out the port yet)
 *	If successful, we return the number of bytes left to be written in the
 *	system,
 *	Otherwise we return a negative error number.
 */
A
Alan Cox 已提交
616
static int mos7720_chars_in_buffer(struct tty_struct *tty)
617
{
A
Alan Cox 已提交
618
	struct usb_serial_port *port = tty->driver_data;
619 620 621 622
	int i;
	int chars = 0;
	struct moschip_port *mos7720_port;

623
	dbg("%s:entering ...........", __func__);
624 625 626

	mos7720_port = usb_get_serial_port_data(port);
	if (mos7720_port == NULL) {
627
		dbg("%s:leaving ...........", __func__);
A
Alan Cox 已提交
628
		return 0;
629 630 631
	}

	for (i = 0; i < NUM_URBS; ++i) {
A
Alan Cox 已提交
632 633
		if (mos7720_port->write_urb_pool[i] &&
		    mos7720_port->write_urb_pool[i]->status == -EINPROGRESS)
634 635
			chars += URB_TRANSFER_BUFFER_SIZE;
	}
636
	dbg("%s - returns %d", __func__, chars);
637 638 639
	return chars;
}

640
static void mos7720_close(struct usb_serial_port *port)
641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666
{
	struct usb_serial *serial;
	struct moschip_port *mos7720_port;
	char data;
	int j;

	dbg("mos7720_close:entering...");

	serial = port->serial;

	mos7720_port = usb_get_serial_port_data(port);
	if (mos7720_port == NULL)
		return;

	for (j = 0; j < NUM_URBS; ++j)
		usb_kill_urb(mos7720_port->write_urb_pool[j]);

	/* Freeing Write URBs */
	for (j = 0; j < NUM_URBS; ++j) {
		if (mos7720_port->write_urb_pool[j]) {
			kfree(mos7720_port->write_urb_pool[j]->transfer_buffer);
			usb_free_urb(mos7720_port->write_urb_pool[j]);
		}
	}

	/* While closing port, shutdown all bulk read, write  *
667 668 669 670 671 672 673 674 675 676 677
	 * and interrupt read if they exists, otherwise nop   */
	dbg("Shutdown bulk write");
	usb_kill_urb(port->write_urb);
	dbg("Shutdown bulk read");
	usb_kill_urb(port->read_urb);

	mutex_lock(&serial->disc_mutex);
	/* these commands must not be issued if the device has
	 * been disconnected */
	if (!serial->disconnected) {
		data = 0x00;
A
Alan Cox 已提交
678 679
		send_mos_cmd(serial, MOS_WRITE,
			port->number - port->serial->minor, 0x04, &data);
680 681

		data = 0x00;
A
Alan Cox 已提交
682 683
		send_mos_cmd(serial, MOS_WRITE,
			port->number - port->serial->minor, 0x01, &data);
684
	}
685
	mutex_unlock(&serial->disc_mutex);
686 687
	mos7720_port->open = 0;

688
	dbg("Leaving %s", __func__);
689 690
}

A
Alan Cox 已提交
691
static void mos7720_break(struct tty_struct *tty, int break_state)
692
{
A
Alan Cox 已提交
693
	struct usb_serial_port *port = tty->driver_data;
A
Alan Cox 已提交
694
	unsigned char data;
695 696 697
	struct usb_serial *serial;
	struct moschip_port *mos7720_port;

698
	dbg("Entering %s", __func__);
699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724

	serial = port->serial;

	mos7720_port = usb_get_serial_port_data(port);
	if (mos7720_port == NULL)
		return;

	if (break_state == -1)
		data = mos7720_port->shadowLCR | UART_LCR_SBC;
	else
		data = mos7720_port->shadowLCR & ~UART_LCR_SBC;

	mos7720_port->shadowLCR  = data;
	send_mos_cmd(serial, MOS_WRITE, port->number - port->serial->minor,
		     0x03, &data);

	return;
}

/*
 * mos7720_write_room
 *	this function is called by the tty driver when it wants to know how many
 *	bytes of data we can accept for a specific port.
 *	If successful, we return the amount of room that we have for this port
 *	Otherwise we return a negative error number.
 */
A
Alan Cox 已提交
725
static int mos7720_write_room(struct tty_struct *tty)
726
{
A
Alan Cox 已提交
727
	struct usb_serial_port *port = tty->driver_data;
728 729 730 731
	struct moschip_port *mos7720_port;
	int room = 0;
	int i;

732
	dbg("%s:entering ...........", __func__);
733 734 735

	mos7720_port = usb_get_serial_port_data(port);
	if (mos7720_port == NULL) {
736
		dbg("%s:leaving ...........", __func__);
737 738 739
		return -ENODEV;
	}

740
	/* FIXME: Locking */
741
	for (i = 0; i < NUM_URBS; ++i) {
A
Alan Cox 已提交
742 743
		if (mos7720_port->write_urb_pool[i] &&
		    mos7720_port->write_urb_pool[i]->status != -EINPROGRESS)
744 745 746
			room += URB_TRANSFER_BUFFER_SIZE;
	}

747
	dbg("%s - returns %d", __func__, room);
748 749 750
	return room;
}

A
Alan Cox 已提交
751 752
static int mos7720_write(struct tty_struct *tty, struct usb_serial_port *port,
				 const unsigned char *data, int count)
753 754 755 756 757 758 759 760 761 762 763
{
	int status;
	int i;
	int bytes_sent = 0;
	int transfer_size;

	struct moschip_port *mos7720_port;
	struct usb_serial *serial;
	struct urb    *urb;
	const unsigned char *current_position = data;

764
	dbg("%s:entering ...........", __func__);
765 766 767 768 769 770 771 772 773 774 775 776 777

	serial = port->serial;

	mos7720_port = usb_get_serial_port_data(port);
	if (mos7720_port == NULL) {
		dbg("mos7720_port is NULL");
		return -ENODEV;
	}

	/* try to find a free urb in the list */
	urb = NULL;

	for (i = 0; i < NUM_URBS; ++i) {
A
Alan Cox 已提交
778 779
		if (mos7720_port->write_urb_pool[i] &&
		    mos7720_port->write_urb_pool[i]->status != -EINPROGRESS) {
780
			urb = mos7720_port->write_urb_pool[i];
A
Alan Cox 已提交
781
			dbg("URB:%d", i);
782 783 784 785 786
			break;
		}
	}

	if (urb == NULL) {
787
		dbg("%s - no more free urbs", __func__);
788 789 790 791 792 793 794
		goto exit;
	}

	if (urb->transfer_buffer == NULL) {
		urb->transfer_buffer = kmalloc(URB_TRANSFER_BUFFER_SIZE,
					       GFP_KERNEL);
		if (urb->transfer_buffer == NULL) {
795 796
			dev_err(&port->dev, "%s no more kernel memory...\n",
				__func__);
797 798 799
			goto exit;
		}
	}
A
Alan Cox 已提交
800
	transfer_size = min(count, URB_TRANSFER_BUFFER_SIZE);
801 802

	memcpy(urb->transfer_buffer, current_position, transfer_size);
803
	usb_serial_debug_data(debug, &port->dev, __func__, transfer_size,
804 805 806 807 808
			      urb->transfer_buffer);

	/* fill urb with data and submit  */
	usb_fill_bulk_urb(urb, serial->dev,
			  usb_sndbulkpipe(serial->dev,
A
Alan Cox 已提交
809
					port->bulk_out_endpointAddress),
810 811 812 813
			  urb->transfer_buffer, transfer_size,
			  mos7720_bulk_out_data_callback, mos7720_port);

	/* send it down the pipe */
A
Alan Cox 已提交
814
	status = usb_submit_urb(urb, GFP_ATOMIC);
815
	if (status) {
816 817
		dev_err(&port->dev, "%s - usb_submit_urb(write bulk) failed "
			"with status = %d\n", __func__, status);
818 819 820 821 822 823 824 825 826
		bytes_sent = status;
		goto exit;
	}
	bytes_sent = transfer_size;

exit:
	return bytes_sent;
}

A
Alan Cox 已提交
827
static void mos7720_throttle(struct tty_struct *tty)
828
{
A
Alan Cox 已提交
829
	struct usb_serial_port *port = tty->driver_data;
830 831 832
	struct moschip_port *mos7720_port;
	int status;

833
	dbg("%s- port %d\n", __func__, port->number);
834 835 836 837 838 839 840 841 842 843 844

	mos7720_port = usb_get_serial_port_data(port);

	if (mos7720_port == NULL)
		return;

	if (!mos7720_port->open) {
		dbg("port not opened");
		return;
	}

845
	dbg("%s: Entering ..........", __func__);
846 847 848 849

	/* if we are implementing XON/XOFF, send the stop character */
	if (I_IXOFF(tty)) {
		unsigned char stop_char = STOP_CHAR(tty);
A
Alan Cox 已提交
850
		status = mos7720_write(tty, port, &stop_char, 1);
851 852 853 854 855 856 857 858 859 860 861 862 863 864 865
		if (status <= 0)
			return;
	}

	/* if we are implementing RTS/CTS, toggle that line */
	if (tty->termios->c_cflag & CRTSCTS) {
		mos7720_port->shadowMCR &= ~UART_MCR_RTS;
		status = send_mos_cmd(port->serial, MOS_WRITE,
				      port->number - port->serial->minor,
				      UART_MCR, &mos7720_port->shadowMCR);
		if (status != 0)
			return;
	}
}

A
Alan Cox 已提交
866
static void mos7720_unthrottle(struct tty_struct *tty)
867
{
A
Alan Cox 已提交
868
	struct usb_serial_port *port = tty->driver_data;
869
	struct moschip_port *mos7720_port = usb_get_serial_port_data(port);
A
Alan Cox 已提交
870
	int status;
871 872 873 874 875

	if (mos7720_port == NULL)
		return;

	if (!mos7720_port->open) {
876
		dbg("%s - port not opened", __func__);
877 878 879
		return;
	}

880
	dbg("%s: Entering ..........", __func__);
881 882 883 884

	/* if we are implementing XON/XOFF, send the start character */
	if (I_IXOFF(tty)) {
		unsigned char start_char = START_CHAR(tty);
A
Alan Cox 已提交
885
		status = mos7720_write(tty, port, &start_char, 1);
886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914
		if (status <= 0)
			return;
	}

	/* if we are implementing RTS/CTS, toggle that line */
	if (tty->termios->c_cflag & CRTSCTS) {
		mos7720_port->shadowMCR |= UART_MCR_RTS;
		status = send_mos_cmd(port->serial, MOS_WRITE,
				      port->number - port->serial->minor,
				      UART_MCR, &mos7720_port->shadowMCR);
		if (status != 0)
			return;
	}
}

static int set_higher_rates(struct moschip_port *mos7720_port,
			    unsigned int baud)
{
	unsigned char data;
	struct usb_serial_port *port;
	struct usb_serial *serial;
	int port_number;

	if (mos7720_port == NULL)
		return -EINVAL;

	port = mos7720_port->port;
	serial = port->serial;

A
Alan Cox 已提交
915 916 917
	 /***********************************************
	 *      Init Sequence for higher rates
	 ***********************************************/
918 919 920 921 922 923 924 925 926 927
	dbg("Sending Setting Commands ..........");
	port_number = port->number - port->serial->minor;

	data = 0x000;
	send_mos_cmd(serial, MOS_WRITE, port_number, 0x01, &data);
	data = 0x000;
	send_mos_cmd(serial, MOS_WRITE, port_number, 0x02, &data);
	data = 0x0CF;
	send_mos_cmd(serial, MOS_WRITE, port->number, 0x02, &data);
	data = 0x00b;
A
Alan Cox 已提交
928
	mos7720_port->shadowMCR  = data;
929 930 931 932 933 934 935 936 937 938
	send_mos_cmd(serial, MOS_WRITE, port_number, 0x04, &data);
	data = 0x00b;
	send_mos_cmd(serial, MOS_WRITE, port_number, 0x04, &data);

	data = 0x000;
	send_mos_cmd(serial, MOS_READ, MOS_MAX_PORT, 0x08, &data);
	data = 0x000;
	send_mos_cmd(serial, MOS_WRITE, MOS_MAX_PORT, 0x08, &data);


A
Alan Cox 已提交
939 940 941
	/***********************************************
	 *              Set for higher rates           *
	 ***********************************************/
942 943

	data = baud * 0x10;
A
Alan Cox 已提交
944
	send_mos_cmd(serial, MOS_WRITE, MOS_MAX_PORT, port_number + 1, &data);
945 946 947 948 949 950 951

	data = 0x003;
	send_mos_cmd(serial, MOS_READ, MOS_MAX_PORT, 0x08, &data);
	data = 0x003;
	send_mos_cmd(serial, MOS_WRITE, MOS_MAX_PORT, 0x08, &data);

	data = 0x02b;
A
Alan Cox 已提交
952
	mos7720_port->shadowMCR  = data;
953 954 955 956
	send_mos_cmd(serial, MOS_WRITE, port_number, 0x04, &data);
	data = 0x02b;
	send_mos_cmd(serial, MOS_WRITE, port_number, 0x04, &data);

A
Alan Cox 已提交
957 958 959
	/***********************************************
	 *              Set DLL/DLM
	 ***********************************************/
960 961

	data = mos7720_port->shadowLCR | UART_LCR_DLAB;
A
Alan Cox 已提交
962
	mos7720_port->shadowLCR  = data;
963 964 965
	send_mos_cmd(serial, MOS_WRITE, port_number, 0x03, &data);

	data =  0x001; /* DLL */
A
Alan Cox 已提交
966
	send_mos_cmd(serial, MOS_WRITE, port_number, 0x00, &data);
967
	data =  0x000; /* DLM */
A
Alan Cox 已提交
968
	send_mos_cmd(serial, MOS_WRITE, port_number, 0x01, &data);
969 970

	data = mos7720_port->shadowLCR & ~UART_LCR_DLAB;
A
Alan Cox 已提交
971
	mos7720_port->shadowLCR  = data;
972 973 974 975 976 977
	send_mos_cmd(serial, MOS_WRITE, port_number, 0x03, &data);

	return 0;
}

/* baud rate information */
A
Alan Cox 已提交
978
struct divisor_table_entry {
979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017
	__u32  baudrate;
	__u16  divisor;
};

/* Define table of divisors for moschip 7720 hardware	   *
 * These assume a 3.6864MHz crystal, the standard /16, and *
 * MCR.7 = 0.						   */
static struct divisor_table_entry divisor_table[] = {
	{   50,		2304},
	{   110,	1047},	/* 2094.545455 => 230450   => .0217 % over */
	{   134,	857},	/* 1713.011152 => 230398.5 => .00065% under */
	{   150,	768},
	{   300,	384},
	{   600,	192},
	{   1200,	96},
	{   1800,	64},
	{   2400,	48},
	{   4800,	24},
	{   7200,	16},
	{   9600,	12},
	{   19200,	6},
	{   38400,	3},
	{   57600,	2},
	{   115200,	1},
};

/*****************************************************************************
 * calc_baud_rate_divisor
 *	this function calculates the proper baud rate divisor for the specified
 *	baud rate.
 *****************************************************************************/
static int calc_baud_rate_divisor(int baudrate, int *divisor)
{
	int i;
	__u16 custom;
	__u16 round1;
	__u16 round;


1018
	dbg("%s - %d", __func__, baudrate);
1019 1020 1021 1022 1023 1024 1025 1026

	for (i = 0; i < ARRAY_SIZE(divisor_table); i++) {
		if (divisor_table[i].baudrate == baudrate) {
			*divisor = divisor_table[i].divisor;
			return 0;
		}
	}

A
Alan Cox 已提交
1027 1028
	/* After trying for all the standard baud rates    *
	 * Try calculating the divisor for this baud rate  */
1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039
	if (baudrate > 75 &&  baudrate < 230400) {
		/* get the divisor */
		custom = (__u16)(230400L  / baudrate);

		/* Check for round off */
		round1 = (__u16)(2304000L / baudrate);
		round = (__u16)(round1 - (custom * 10));
		if (round > 4)
			custom++;
		*divisor = custom;

A
Alan Cox 已提交
1040
		dbg("Baud %d = %d", baudrate, custom);
1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068
		return 0;
	}

	dbg("Baud calculation Failed...");
	return -EINVAL;
}

/*
 * send_cmd_write_baud_rate
 *	this function sends the proper command to change the baud rate of the
 *	specified port.
 */
static int send_cmd_write_baud_rate(struct moschip_port *mos7720_port,
				    int baudrate)
{
	struct usb_serial_port *port;
	struct usb_serial *serial;
	int divisor;
	int status;
	unsigned char data;
	unsigned char number;

	if (mos7720_port == NULL)
		return -1;

	port = mos7720_port->port;
	serial = port->serial;

1069
	dbg("%s: Entering ..........", __func__);
1070 1071

	number = port->number - port->serial->minor;
1072
	dbg("%s - port = %d, baud = %d", __func__, port->number, baudrate);
1073

A
Alan Cox 已提交
1074
	/* Calculate the Divisor */
1075 1076
	status = calc_baud_rate_divisor(baudrate, &divisor);
	if (status) {
1077
		dev_err(&port->dev, "%s - bad baud rate\n", __func__);
1078 1079 1080
		return status;
	}

A
Alan Cox 已提交
1081 1082 1083 1084
	/* Enable access to divisor latch */
	data = mos7720_port->shadowLCR | UART_LCR_DLAB;
	mos7720_port->shadowLCR  = data;
	send_mos_cmd(serial, MOS_WRITE, number, UART_LCR, &data);
1085 1086 1087

	/* Write the divisor */
	data = ((unsigned char)(divisor & 0xff));
A
Alan Cox 已提交
1088
	send_mos_cmd(serial, MOS_WRITE, number, 0x00, &data);
1089 1090

	data = ((unsigned char)((divisor & 0xff00) >> 8));
A
Alan Cox 已提交
1091
	send_mos_cmd(serial, MOS_WRITE, number, 0x01, &data);
1092

A
Alan Cox 已提交
1093 1094 1095 1096
	/* Disable access to divisor latch */
	data = mos7720_port->shadowLCR & ~UART_LCR_DLAB;
	mos7720_port->shadowLCR = data;
	send_mos_cmd(serial, MOS_WRITE, number, 0x03, &data);
1097 1098 1099 1100 1101 1102 1103 1104 1105

	return status;
}

/*
 * change_port_settings
 *	This routine is called to set the UART on the device to match
 *      the specified new settings.
 */
A
Alan Cox 已提交
1106 1107
static void change_port_settings(struct tty_struct *tty,
				 struct moschip_port *mos7720_port,
A
Alan Cox 已提交
1108
				 struct ktermios *old_termios)
1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129
{
	struct usb_serial_port *port;
	struct usb_serial *serial;
	int baud;
	unsigned cflag;
	unsigned iflag;
	__u8 mask = 0xff;
	__u8 lData;
	__u8 lParity;
	__u8 lStop;
	int status;
	int port_number;
	char data;

	if (mos7720_port == NULL)
		return ;

	port = mos7720_port->port;
	serial = port->serial;
	port_number = port->number - port->serial->minor;

1130
	dbg("%s - port %d", __func__, port->number);
1131 1132

	if (!mos7720_port->open) {
1133
		dbg("%s - port not opened", __func__);
1134 1135 1136
		return;
	}

1137
	dbg("%s: Entering ..........", __func__);
1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171

	lData = UART_LCR_WLEN8;
	lStop = 0x00;	/* 1 stop bit */
	lParity = 0x00;	/* No parity */

	cflag = tty->termios->c_cflag;
	iflag = tty->termios->c_iflag;

	/* Change the number of bits */
	switch (cflag & CSIZE) {
	case CS5:
		lData = UART_LCR_WLEN5;
		mask = 0x1f;
		break;

	case CS6:
		lData = UART_LCR_WLEN6;
		mask = 0x3f;
		break;

	case CS7:
		lData = UART_LCR_WLEN7;
		mask = 0x7f;
		break;
	default:
	case CS8:
		lData = UART_LCR_WLEN8;
		break;
	}

	/* Change the Parity bit */
	if (cflag & PARENB) {
		if (cflag & PARODD) {
			lParity = UART_LCR_PARITY;
1172
			dbg("%s - parity = odd", __func__);
1173 1174
		} else {
			lParity = (UART_LCR_EPAR | UART_LCR_PARITY);
1175
			dbg("%s - parity = even", __func__);
1176 1177 1178
		}

	} else {
1179
		dbg("%s - parity = none", __func__);
1180 1181 1182 1183 1184 1185 1186 1187
	}

	if (cflag & CMSPAR)
		lParity = lParity | 0x20;

	/* Change the Stop bit */
	if (cflag & CSTOPB) {
		lStop = UART_LCR_STOP;
1188
		dbg("%s - stop bits = 2", __func__);
1189 1190
	} else {
		lStop = 0x00;
1191
		dbg("%s - stop bits = 1", __func__);
1192 1193 1194 1195 1196 1197 1198
	}

#define LCR_BITS_MASK		0x03	/* Mask for bits/char field */
#define LCR_STOP_MASK		0x04	/* Mask for stop bits field */
#define LCR_PAR_MASK		0x38	/* Mask for parity field */

	/* Update the LCR with the correct value */
A
Alan Cox 已提交
1199 1200
	mos7720_port->shadowLCR &=
			~(LCR_BITS_MASK | LCR_STOP_MASK | LCR_PAR_MASK);
1201 1202 1203 1204 1205
	mos7720_port->shadowLCR |= (lData | lParity | lStop);


	/* Disable Interrupts */
	data = 0x00;
A
Alan Cox 已提交
1206 1207
	send_mos_cmd(serial, MOS_WRITE, port->number - port->serial->minor,
							UART_IER, &data);
1208 1209

	data = 0x00;
A
Alan Cox 已提交
1210
	send_mos_cmd(serial, MOS_WRITE, port_number, UART_FCR, &data);
1211 1212

	data = 0xcf;
A
Alan Cox 已提交
1213
	send_mos_cmd(serial, MOS_WRITE, port_number, UART_FCR, &data);
1214 1215 1216

	/* Send the updated LCR value to the mos7720 */
	data = mos7720_port->shadowLCR;
A
Alan Cox 已提交
1217
	send_mos_cmd(serial, MOS_WRITE, port_number, UART_LCR, &data);
1218

A
Alan Cox 已提交
1219 1220 1221 1222 1223
	data = 0x00b;
	mos7720_port->shadowMCR = data;
	send_mos_cmd(serial, MOS_WRITE, port_number, 0x04, &data);
	data = 0x00b;
	send_mos_cmd(serial, MOS_WRITE, port_number, 0x04, &data);
1224 1225 1226 1227 1228 1229 1230 1231

	/* set up the MCR register and send it to the mos7720 */
	mos7720_port->shadowMCR = UART_MCR_OUT2;
	if (cflag & CBAUD)
		mos7720_port->shadowMCR |= (UART_MCR_DTR | UART_MCR_RTS);

	if (cflag & CRTSCTS) {
		mos7720_port->shadowMCR |= (UART_MCR_XONANY);
A
Alan Cox 已提交
1232 1233
		/* To set hardware flow control to the specified *
		 * serial port, in SP1/2_CONTROL_REG             */
1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265
		if (port->number) {
			data = 0x001;
			send_mos_cmd(serial, MOS_WRITE, MOS_MAX_PORT,
				     0x08, &data);
		} else {
			data = 0x002;
			send_mos_cmd(serial, MOS_WRITE, MOS_MAX_PORT,
				     0x08, &data);
		}
	} else {
		mos7720_port->shadowMCR &= ~(UART_MCR_XONANY);
	}

	data = mos7720_port->shadowMCR;
	send_mos_cmd(serial, MOS_WRITE, port_number, UART_MCR, &data);

	/* Determine divisor based on baud rate */
	baud = tty_get_baud_rate(tty);
	if (!baud) {
		/* pick a default, any default... */
		dbg("Picked default baud...");
		baud = 9600;
	}

	if (baud >= 230400) {
		set_higher_rates(mos7720_port, baud);
		/* Enable Interrupts */
		data = 0x0c;
		send_mos_cmd(serial, MOS_WRITE, port_number, UART_IER, &data);
		return;
	}

1266
	dbg("%s - baud rate = %d", __func__, baud);
1267
	status = send_cmd_write_baud_rate(mos7720_port, baud);
A
Alan Cox 已提交
1268 1269 1270 1271
	/* FIXME: needs to write actual resulting baud back not just
	   blindly do so */
	if (cflag & CBAUD)
		tty_encode_baud_rate(tty, baud, baud);
1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291
	/* Enable Interrupts */
	data = 0x0c;
	send_mos_cmd(serial, MOS_WRITE, port_number, UART_IER, &data);

	if (port->read_urb->status != -EINPROGRESS) {
		port->read_urb->dev = serial->dev;

		status = usb_submit_urb(port->read_urb, GFP_ATOMIC);
		if (status)
			dbg("usb_submit_urb(read bulk) failed, status = %d",
			    status);
	}
	return;
}

/*
 * mos7720_set_termios
 *	this function is called by the tty driver when it wants to change the
 *	termios structure.
 */
A
Alan Cox 已提交
1292 1293
static void mos7720_set_termios(struct tty_struct *tty,
		struct usb_serial_port *port, struct ktermios *old_termios)
1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307
{
	int status;
	unsigned int cflag;
	struct usb_serial *serial;
	struct moschip_port *mos7720_port;

	serial = port->serial;

	mos7720_port = usb_get_serial_port_data(port);

	if (mos7720_port == NULL)
		return;

	if (!mos7720_port->open) {
1308
		dbg("%s - port not opened", __func__);
1309 1310 1311
		return;
	}

A
Alan Cox 已提交
1312
	dbg("%s\n", "setting termios - ASPIRE");
1313 1314 1315

	cflag = tty->termios->c_cflag;

1316
	dbg("%s - cflag %08x iflag %08x", __func__,
1317 1318 1319
	    tty->termios->c_cflag,
	    RELEVANT_IFLAG(tty->termios->c_iflag));

1320
	dbg("%s - old cflag %08x old iflag %08x", __func__,
A
Alan Cox 已提交
1321 1322
	    old_termios->c_cflag,
	    RELEVANT_IFLAG(old_termios->c_iflag));
1323

1324
	dbg("%s - port %d", __func__, port->number);
1325 1326

	/* change the port settings to the new ones specified */
A
Alan Cox 已提交
1327
	change_port_settings(tty, mos7720_port, old_termios);
1328

A
Alan Cox 已提交
1329 1330
	if (!port->read_urb) {
		dbg("%s", "URB KILLED !!!!!\n");
1331 1332 1333
		return;
	}

A
Alan Cox 已提交
1334
	if (port->read_urb->status != -EINPROGRESS) {
1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353
		port->read_urb->dev = serial->dev;
		status = usb_submit_urb(port->read_urb, GFP_ATOMIC);
		if (status)
			dbg("usb_submit_urb(read bulk) failed, status = %d",
			    status);
	}
	return;
}

/*
 * get_lsr_info - get line status register info
 *
 * Purpose: Let user call ioctl() to get info when the UART physically
 * 	    is emptied.  On bus types like RS485, the transmitter must
 * 	    release the bus after transmitting. This must be done when
 * 	    the transmit shift register is empty, not be done when the
 * 	    transmit holding register is empty.  This functionality
 * 	    allows an RS485 driver to be written in user space.
 */
A
Alan Cox 已提交
1354 1355
static int get_lsr_info(struct tty_struct *tty,
		struct moschip_port *mos7720_port, unsigned int __user *value)
1356
{
1357
	struct usb_serial_port *port = tty->driver_data;
1358
	unsigned int result = 0;
1359 1360 1361
	unsigned char data = 0;
	int port_number = port->number - port->serial->minor;
	int count;
1362

A
Alan Cox 已提交
1363
	count = mos7720_chars_in_buffer(tty);
1364
	if (count == 0) {
1365 1366 1367 1368 1369 1370 1371
		send_mos_cmd(port->serial, MOS_READ, port_number,
							UART_LSR, &data);
		if ((data & (UART_LSR_TEMT | UART_LSR_THRE))
					== (UART_LSR_TEMT | UART_LSR_THRE)) {
			dbg("%s -- Empty", __func__);
			result = TIOCSER_TEMT;
		}
1372 1373 1374 1375 1376 1377
	}
	if (copy_to_user(value, &result, sizeof(int)))
		return -EFAULT;
	return 0;
}

1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438
static int mos7720_tiocmget(struct tty_struct *tty, struct file *file)
{
	struct usb_serial_port *port = tty->driver_data;
	struct moschip_port *mos7720_port = usb_get_serial_port_data(port);
	unsigned int result = 0;
	unsigned int mcr ;
	unsigned int msr ;

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

	mcr = mos7720_port->shadowMCR;
	msr = mos7720_port->shadowMSR;

	result = ((mcr & UART_MCR_DTR)  ? TIOCM_DTR : 0)   /* 0x002 */
	  | ((mcr & UART_MCR_RTS)   ? TIOCM_RTS : 0)   /* 0x004 */
	  | ((msr & UART_MSR_CTS)   ? TIOCM_CTS : 0)   /* 0x020 */
	  | ((msr & UART_MSR_DCD)   ? TIOCM_CAR : 0)   /* 0x040 */
	  | ((msr & UART_MSR_RI)    ? TIOCM_RI :  0)   /* 0x080 */
	  | ((msr & UART_MSR_DSR)   ? TIOCM_DSR : 0);  /* 0x100 */

	dbg("%s -- %x", __func__, result);

	return result;
}

static int mos7720_tiocmset(struct tty_struct *tty, struct file *file,
					unsigned int set, unsigned int clear)
{
	struct usb_serial_port *port = tty->driver_data;
	struct moschip_port *mos7720_port = usb_get_serial_port_data(port);
	unsigned int mcr ;
	unsigned char lmcr;

	dbg("%s - port %d", __func__, port->number);
	dbg("he was at tiocmget");

	mcr = mos7720_port->shadowMCR;

	if (set & TIOCM_RTS)
		mcr |= UART_MCR_RTS;
	if (set & TIOCM_DTR)
		mcr |= UART_MCR_DTR;
	if (set & TIOCM_LOOP)
		mcr |= UART_MCR_LOOP;

	if (clear & TIOCM_RTS)
		mcr &= ~UART_MCR_RTS;
	if (clear & TIOCM_DTR)
		mcr &= ~UART_MCR_DTR;
	if (clear & TIOCM_LOOP)
		mcr &= ~UART_MCR_LOOP;

	mos7720_port->shadowMCR = mcr;
	lmcr = mos7720_port->shadowMCR;

	send_mos_cmd(port->serial, MOS_WRITE,
		port->number - port->serial->minor, UART_MCR, &lmcr);

	return 0;
}

1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450
static int set_modem_info(struct moschip_port *mos7720_port, unsigned int cmd,
			  unsigned int __user *value)
{
	unsigned int mcr ;
	unsigned int arg;
	unsigned char data;

	struct usb_serial_port *port;

	if (mos7720_port == NULL)
		return -1;

A
Alan Cox 已提交
1451
	port = (struct usb_serial_port *)mos7720_port->port;
1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501
	mcr = mos7720_port->shadowMCR;

	if (copy_from_user(&arg, value, sizeof(int)))
		return -EFAULT;

	switch (cmd) {
	case TIOCMBIS:
		if (arg & TIOCM_RTS)
			mcr |= UART_MCR_RTS;
		if (arg & TIOCM_DTR)
			mcr |= UART_MCR_RTS;
		if (arg & TIOCM_LOOP)
			mcr |= UART_MCR_LOOP;
		break;

	case TIOCMBIC:
		if (arg & TIOCM_RTS)
			mcr &= ~UART_MCR_RTS;
		if (arg & TIOCM_DTR)
			mcr &= ~UART_MCR_RTS;
		if (arg & TIOCM_LOOP)
			mcr &= ~UART_MCR_LOOP;
		break;

	}

	mos7720_port->shadowMCR = mcr;

	data = mos7720_port->shadowMCR;
	send_mos_cmd(port->serial, MOS_WRITE,
		     port->number - port->serial->minor, UART_MCR, &data);

	return 0;
}

static int get_serial_info(struct moschip_port *mos7720_port,
			   struct serial_struct __user *retinfo)
{
	struct serial_struct tmp;

	if (!retinfo)
		return -EFAULT;

	memset(&tmp, 0, sizeof(tmp));

	tmp.type		= PORT_16550A;
	tmp.line		= mos7720_port->port->serial->minor;
	tmp.port		= mos7720_port->port->number;
	tmp.irq			= 0;
	tmp.flags		= ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ;
A
Alan Cox 已提交
1502
	tmp.xmit_fifo_size	= NUM_URBS * URB_TRANSFER_BUFFER_SIZE;
1503 1504 1505 1506 1507 1508 1509 1510 1511
	tmp.baud_base		= 9600;
	tmp.close_delay		= 5*HZ;
	tmp.closing_wait	= 30*HZ;

	if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
		return -EFAULT;
	return 0;
}

A
Alan Cox 已提交
1512
static int mos7720_ioctl(struct tty_struct *tty, struct file *file,
1513 1514
			 unsigned int cmd, unsigned long arg)
{
A
Alan Cox 已提交
1515
	struct usb_serial_port *port = tty->driver_data;
1516 1517 1518 1519 1520 1521 1522 1523 1524
	struct moschip_port *mos7720_port;
	struct async_icount cnow;
	struct async_icount cprev;
	struct serial_icounter_struct icount;

	mos7720_port = usb_get_serial_port_data(port);
	if (mos7720_port == NULL)
		return -ENODEV;

1525
	dbg("%s - port %d, cmd = 0x%x", __func__, port->number, cmd);
1526 1527 1528

	switch (cmd) {
	case TIOCSERGETLSR:
1529
		dbg("%s (%d) TIOCSERGETLSR", __func__,  port->number);
A
Alan Cox 已提交
1530 1531
		return get_lsr_info(tty, mos7720_port,
					(unsigned int __user *)arg);
1532 1533
		return 0;

A
Alan Cox 已提交
1534
	/* FIXME: These should be using the mode methods */
1535 1536
	case TIOCMBIS:
	case TIOCMBIC:
A
Alan Cox 已提交
1537 1538
		dbg("%s (%d) TIOCMSET/TIOCMBIC/TIOCMSET",
					__func__, port->number);
1539 1540 1541 1542
		return set_modem_info(mos7720_port, cmd,
				      (unsigned int __user *)arg);

	case TIOCGSERIAL:
1543
		dbg("%s (%d) TIOCGSERIAL", __func__,  port->number);
1544 1545 1546 1547
		return get_serial_info(mos7720_port,
				       (struct serial_struct __user *)arg);

	case TIOCMIWAIT:
1548
		dbg("%s (%d) TIOCMIWAIT", __func__,  port->number);
1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559
		cprev = mos7720_port->icount;
		while (1) {
			if (signal_pending(current))
				return -ERESTARTSYS;
			cnow = mos7720_port->icount;
			if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
			    cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
				return -EIO; /* no change => error */
			if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
			    ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
			    ((arg & TIOCM_CD)  && (cnow.dcd != cprev.dcd)) ||
A
Alan Cox 已提交
1560
			    ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) {
1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581
				return 0;
			}
			cprev = cnow;
		}
		/* NOTREACHED */
		break;

	case TIOCGICOUNT:
		cnow = mos7720_port->icount;
		icount.cts = cnow.cts;
		icount.dsr = cnow.dsr;
		icount.rng = cnow.rng;
		icount.dcd = cnow.dcd;
		icount.rx = cnow.rx;
		icount.tx = cnow.tx;
		icount.frame = cnow.frame;
		icount.overrun = cnow.overrun;
		icount.parity = cnow.parity;
		icount.brk = cnow.brk;
		icount.buf_overrun = cnow.buf_overrun;

1582
		dbg("%s (%d) TIOCGICOUNT RX=%d, TX=%d", __func__,
A
Alan Cox 已提交
1583
		    port->number, icount.rx, icount.tx);
1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598
		if (copy_to_user((void __user *)arg, &icount, sizeof(icount)))
			return -EFAULT;
		return 0;
	}

	return -ENOIOCTLCMD;
}

static int mos7720_startup(struct usb_serial *serial)
{
	struct moschip_serial *mos7720_serial;
	struct moschip_port *mos7720_port;
	struct usb_device *dev;
	int i;
	char data;
1599
	u16 product = le16_to_cpu(serial->dev->descriptor.idProduct);
1600

1601
	dbg("%s: Entering ..........", __func__);
1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612

	if (!serial) {
		dbg("Invalid Handler");
		return -ENODEV;
	}

	dev = serial->dev;

	/* create our private serial structure */
	mos7720_serial = kzalloc(sizeof(struct moschip_serial), GFP_KERNEL);
	if (mos7720_serial == NULL) {
1613
		dev_err(&dev->dev, "%s - Out of memory\n", __func__);
1614 1615 1616 1617 1618
		return -ENOMEM;
	}

	usb_set_serial_data(serial, mos7720_serial);

1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641
	/*
	 * The 7715 uses the first bulk in/out endpoint pair for the parallel
	 * port, and the second for the serial port.  Because the usbserial core
	 * assumes both pairs are serial ports, we must engage in a bit of
	 * subterfuge and swap the pointers for ports 0 and 1 in order to make
	 * port 0 point to the serial port.  However, both moschip devices use a
	 * single interrupt-in endpoint for both ports (as mentioned a little
	 * further down), and this endpoint was assigned to port 0.  So after
	 * the swap, we must copy the interrupt endpoint elements from port 1
	 * (as newly assigned) to port 0, and null out port 1 pointers.
	 */
	if (product == MOSCHIP_DEVICE_ID_7715) {
		struct usb_serial_port *tmp = serial->port[0];
		serial->port[0] = serial->port[1];
		serial->port[1] = tmp;
		serial->port[0]->interrupt_in_urb = tmp->interrupt_in_urb;
		serial->port[0]->interrupt_in_buffer = tmp->interrupt_in_buffer;
		serial->port[0]->interrupt_in_endpointAddress =
			tmp->interrupt_in_endpointAddress;
		serial->port[1]->interrupt_in_urb = NULL;
		serial->port[1]->interrupt_in_buffer = NULL;
	}

1642 1643 1644 1645 1646 1647 1648
	/* we set up the pointers to the endpoints in the mos7720_open *
	 * function, as the structures aren't created yet.             */

	/* set up port private structures */
	for (i = 0; i < serial->num_ports; ++i) {
		mos7720_port = kzalloc(sizeof(struct moschip_port), GFP_KERNEL);
		if (mos7720_port == NULL) {
1649
			dev_err(&dev->dev, "%s - Out of memory\n", __func__);
1650 1651 1652 1653 1654 1655 1656
			usb_set_serial_data(serial, NULL);
			kfree(mos7720_serial);
			return -ENOMEM;
		}

		/* Initialize all port interrupt end point to port 0 int
		 * endpoint.  Our device has only one interrupt endpoint
1657
		 * common to all ports */
A
Alan Cox 已提交
1658 1659
		serial->port[i]->interrupt_in_endpointAddress =
				serial->port[0]->interrupt_in_endpointAddress;
1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670

		mos7720_port->port = serial->port[i];
		usb_set_serial_port_data(serial->port[i], mos7720_port);

		dbg("port number is %d", serial->port[i]->number);
		dbg("serial number is %d", serial->minor);
	}


	/* setting configuration feature to one */
	usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
A
Alan Cox 已提交
1671
			(__u8)0x03, 0x00, 0x01, 0x00, NULL, 0x00, 5*HZ);
1672

A
Alan Cox 已提交
1673 1674 1675
	/* LSR For Port 1 */
	send_mos_cmd(serial, MOS_READ, 0x00, UART_LSR, &data);
	dbg("LSR:%x", data);
1676

A
Alan Cox 已提交
1677 1678 1679
	/* LSR For Port 2 */
	send_mos_cmd(serial, MOS_READ, 0x01, UART_LSR, &data);
	dbg("LSR:%x", data);
1680 1681 1682 1683

	return 0;
}

1684
static void mos7720_release(struct usb_serial *serial)
1685 1686 1687 1688
{
	int i;

	/* free private structure allocated for serial port */
1689
	for (i = 0; i < serial->num_ports; ++i)
1690 1691 1692 1693 1694 1695
		kfree(usb_get_serial_port_data(serial->port[i]));

	/* free private structure allocated for serial device */
	kfree(usb_get_serial_data(serial));
}

1696 1697 1698 1699 1700 1701 1702 1703
static struct usb_driver usb_driver = {
	.name =		"moschip7720",
	.probe =	usb_serial_probe,
	.disconnect =	usb_serial_disconnect,
	.id_table =	moschip_port_id_table,
	.no_dynamic_id =	1,
};

1704 1705 1706 1707 1708 1709
static struct usb_serial_driver moschip7720_2port_driver = {
	.driver = {
		.owner =	THIS_MODULE,
		.name =		"moschip7720",
	},
	.description		= "Moschip 2 port adapter",
1710
	.usb_driver		= &usb_driver,
1711
	.id_table		= moschip_port_id_table,
1712
	.calc_num_ports		= mos77xx_calc_num_ports,
1713 1714 1715 1716
	.open			= mos7720_open,
	.close			= mos7720_close,
	.throttle		= mos7720_throttle,
	.unthrottle		= mos7720_unthrottle,
1717
	.probe			= mos77xx_probe,
1718
	.attach			= mos7720_startup,
1719
	.release		= mos7720_release,
1720
	.ioctl			= mos7720_ioctl,
1721 1722
	.tiocmget		= mos7720_tiocmget,
	.tiocmset		= mos7720_tiocmset,
1723 1724 1725 1726 1727 1728
	.set_termios		= mos7720_set_termios,
	.write			= mos7720_write,
	.write_room		= mos7720_write_room,
	.chars_in_buffer	= mos7720_chars_in_buffer,
	.break_ctl		= mos7720_break,
	.read_bulk_callback	= mos7720_bulk_in_callback,
1729
	.read_int_callback	= NULL  /* dynamically assigned in probe() */
1730 1731 1732 1733 1734 1735
};

static int __init moschip7720_init(void)
{
	int retval;

1736
	dbg("%s: Entering ..........", __func__);
1737 1738 1739 1740 1741 1742

	/* Register with the usb serial */
	retval = usb_serial_register(&moschip7720_2port_driver);
	if (retval)
		goto failed_port_device_register;

1743 1744
	printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
	       DRIVER_DESC "\n");
1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769

	/* Register with the usb */
	retval = usb_register(&usb_driver);
	if (retval)
		goto failed_usb_register;

	return 0;

failed_usb_register:
	usb_serial_deregister(&moschip7720_2port_driver);

failed_port_device_register:
	return retval;
}

static void __exit moschip7720_exit(void)
{
	usb_deregister(&usb_driver);
	usb_serial_deregister(&moschip7720_2port_driver);
}

module_init(moschip7720_init);
module_exit(moschip7720_exit);

/* Module information */
A
Alan Cox 已提交
1770 1771
MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_DESCRIPTION(DRIVER_DESC);
1772 1773 1774 1775
MODULE_LICENSE("GPL");

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