io_ti.c 80.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * Edgeport USB Serial Converter driver
 *
 * Copyright (C) 2000-2002 Inside Out Networks, All rights reserved.
 * Copyright (C) 2001-2002 Greg Kroah-Hartman <greg@kroah.com>
 *
 *	This program is free software; you can redistribute it and/or modify
 *	it under the terms of the GNU General Public License as published by
 *	the Free Software Foundation; either version 2 of the License, or
 *	(at your option) any later version.
 *
 * Supports the following devices:
 *	EP/1 EP/2 EP/4 EP/21 EP/22 EP/221 EP/42 EP/421 WATCHPORT
 *
 * For questions or problems with this driver, contact Inside Out
 * Networks technical support, or Peter Berger <pberger@brimson.com>,
 * or Al Borchers <alborchers@steinerpoint.com>.
 *
 * Version history:
 *
21 22
 *	July 11, 2002 	Removed 4 port device structure since all TI UMP
 *			chips have only 2 ports
L
Linus Torvalds 已提交
23 24 25 26 27 28 29 30 31 32 33 34 35 36
 *			David Iacovelli (davidi@ionetworks.com)
 *
 */

#include <linux/kernel.h>
#include <linux/jiffies.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>
37
#include <linux/mutex.h>
L
Linus Torvalds 已提交
38 39
#include <linux/serial.h>
#include <linux/ioctl.h>
40
#include <linux/firmware.h>
41
#include <linux/uaccess.h>
L
Linus Torvalds 已提交
42
#include <linux/usb.h>
43
#include <linux/usb/serial.h>
L
Linus Torvalds 已提交
44 45 46 47 48 49 50 51

#include "io_16654.h"
#include "io_usbvend.h"
#include "io_ti.h"

/*
 * Version Information
 */
52
#define DRIVER_VERSION "v0.7mode043006"
L
Linus Torvalds 已提交
53 54 55 56 57 58 59
#define DRIVER_AUTHOR "Greg Kroah-Hartman <greg@kroah.com> and David Iacovelli"
#define DRIVER_DESC "Edgeport USB Serial Driver"

#define EPROM_PAGE_SIZE		64


struct edgeport_uart_buf_desc {
60
	__u32 count;		/* Number of bytes currently in buffer */
L
Linus Torvalds 已提交
61 62 63 64 65 66
};

/* different hardware types */
#define HARDWARE_TYPE_930	0
#define HARDWARE_TYPE_TIUMP	1

67 68 69 70 71 72
/* IOCTL_PRIVATE_TI_GET_MODE Definitions */
#define	TI_MODE_CONFIGURING	0   /* Device has not entered start device */
#define	TI_MODE_BOOT		1   /* Staying in boot mode		   */
#define TI_MODE_DOWNLOAD	2   /* Made it to download mode		   */
#define TI_MODE_TRANSITIONING	3   /* Currently in boot mode but
				       transitioning to download mode	   */
L
Linus Torvalds 已提交
73 74 75 76 77 78 79 80 81 82 83 84

/* read urb state */
#define EDGE_READ_URB_RUNNING	0
#define EDGE_READ_URB_STOPPING	1
#define EDGE_READ_URB_STOPPED	2

#define EDGE_CLOSING_WAIT	4000	/* in .01 sec */

#define EDGE_OUT_BUF_SIZE	1024


/* Product information read from the Edgeport */
85 86 87
struct product_info {
	int	TiMode;			/* Current TI Mode  */
	__u8	hardware_type;		/* Type of hardware */
L
Linus Torvalds 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
} __attribute__((packed));

/* circular buffer */
struct edge_buf {
	unsigned int	buf_size;
	char		*buf_buf;
	char		*buf_get;
	char		*buf_put;
};

struct edgeport_port {
	__u16 uart_base;
	__u16 dma_address;
	__u8 shadow_msr;
	__u8 shadow_mcr;
	__u8 shadow_lsr;
	__u8 lsr_mask;
105
	__u32 ump_read_timeout;		/* Number of milliseconds the UMP will
L
Linus Torvalds 已提交
106 107 108 109 110 111 112 113 114 115 116 117
					   wait without data before completing
					   a read short */
	int baud_rate;
	int close_pending;
	int lsr_event;
	struct edgeport_uart_buf_desc tx;
	struct async_icount	icount;
	wait_queue_head_t	delta_msr_wait;	/* for handling sleeping while
						   waiting for msr change to
						   happen */
	struct edgeport_serial	*edge_serial;
	struct usb_serial_port	*port;
118
	__u8 bUartMode;		/* Port type, 0: RS232, etc. */
L
Linus Torvalds 已提交
119 120 121 122 123 124 125 126
	spinlock_t ep_lock;
	int ep_read_urb_state;
	int ep_write_urb_in_use;
	struct edge_buf *ep_out_buf;
};

struct edgeport_serial {
	struct product_info product_info;
127 128 129
	u8 TI_I2C_Type;			/* Type of I2C in UMP */
	u8 TiReadI2C;			/* Set to TRUE if we have read the
					   I2c in Boot Mode */
130
	struct mutex es_lock;
L
Linus Torvalds 已提交
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
	int num_ports_open;
	struct usb_serial *serial;
};


/* Devices that this driver supports */
static struct usb_device_id edgeport_1port_id_table [] = {
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_1) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_TI3410_EDGEPORT_1) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_TI3410_EDGEPORT_1I) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_PROXIMITY) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_MOTION) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_MOISTURE) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_TEMPERATURE) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_HUMIDITY) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_POWER) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_LIGHT) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_RADIATION) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_DISTANCE) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_ACCELERATION) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_PROX_DIST) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_PLUS_PWR_HP4CD) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_PLUS_PWR_PCI) },
	{ }
};

static struct usb_device_id edgeport_2port_id_table [] = {
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_2) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_2C) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_2I) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_421) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_21) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_42) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_4) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_4I) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_22I) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_221C) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_22C) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_21C) },
170
	/* The 4, 8 and 16 port devices show up as multiple 2 port devices */
L
Linus Torvalds 已提交
171
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_4S) },
172 173 174 175
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_8) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_8S) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_416) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_416B) },
L
Linus Torvalds 已提交
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
	{ }
};

/* Devices that this driver supports */
static struct usb_device_id id_table_combined [] = {
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_1) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_TI3410_EDGEPORT_1) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_TI3410_EDGEPORT_1I) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_PROXIMITY) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_MOTION) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_MOISTURE) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_TEMPERATURE) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_HUMIDITY) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_POWER) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_LIGHT) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_RADIATION) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_DISTANCE) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_ACCELERATION) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_PROX_DIST) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_PLUS_PWR_HP4CD) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_PLUS_PWR_PCI) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_2) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_2C) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_2I) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_421) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_21) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_42) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_4) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_4I) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_22I) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_221C) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_22C) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_21C) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_4S) },
210 211 212 213
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_8) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_8S) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_416) },
	{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_416B) },
L
Linus Torvalds 已提交
214 215 216
	{ }
};

217
MODULE_DEVICE_TABLE(usb, id_table_combined);
L
Linus Torvalds 已提交
218 219 220 221 222 223

static struct usb_driver io_driver = {
	.name =		"io_ti",
	.probe =	usb_serial_probe,
	.disconnect =	usb_serial_disconnect,
	.id_table =	id_table_combined,
224
	.no_dynamic_id = 	1,
L
Linus Torvalds 已提交
225 226 227
};


228 229 230
static unsigned char OperationalMajorVersion;
static unsigned char OperationalMinorVersion;
static unsigned short OperationalBuildNumber;
L
Linus Torvalds 已提交
231 232 233 234

static int debug;

static int closing_wait = EDGE_CLOSING_WAIT;
235 236
static int ignore_cpu_rev;
static int default_uart_mode;		/* RS232 */
L
Linus Torvalds 已提交
237

238 239
static void edge_tty_recv(struct device *dev, struct tty_struct *tty,
			  unsigned char *data, int length);
L
Linus Torvalds 已提交
240 241 242 243

static void stop_read(struct edgeport_port *edge_port);
static int restart_read(struct edgeport_port *edge_port);

A
Alan Cox 已提交
244 245 246
static void edge_set_termios(struct tty_struct *tty,
		struct usb_serial_port *port, struct ktermios *old_termios);
static void edge_send(struct tty_struct *tty);
L
Linus Torvalds 已提交
247

248 249 250 251
/* sysfs attributes */
static int edge_create_sysfs_attrs(struct usb_serial_port *port);
static int edge_remove_sysfs_attrs(struct usb_serial_port *port);

L
Linus Torvalds 已提交
252 253 254 255 256 257 258 259 260 261 262 263
/* circular buffer */
static struct edge_buf *edge_buf_alloc(unsigned int size);
static void edge_buf_free(struct edge_buf *eb);
static void edge_buf_clear(struct edge_buf *eb);
static unsigned int edge_buf_data_avail(struct edge_buf *eb);
static unsigned int edge_buf_space_avail(struct edge_buf *eb);
static unsigned int edge_buf_put(struct edge_buf *eb, const char *buf,
	unsigned int count);
static unsigned int edge_buf_get(struct edge_buf *eb, char *buf,
	unsigned int count);


264 265
static int ti_vread_sync(struct usb_device *dev, __u8 request,
				__u16 value, __u16 index, u8 *data, int size)
L
Linus Torvalds 已提交
266 267 268
{
	int status;

269 270 271
	status = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), request,
			(USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN),
			value, index, data, size, 1000);
L
Linus Torvalds 已提交
272 273 274
	if (status < 0)
		return status;
	if (status != size) {
275 276
		dbg("%s - wanted to write %d, but only wrote %d",
					     __func__, size, status);
L
Linus Torvalds 已提交
277 278 279 280 281
		return -ECOMM;
	}
	return 0;
}

282 283
static int ti_vsend_sync(struct usb_device *dev, __u8 request,
				__u16 value, __u16 index, u8 *data, int size)
L
Linus Torvalds 已提交
284 285 286
{
	int status;

287 288 289
	status = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), request,
			(USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT),
			value, index, data, size, 1000);
L
Linus Torvalds 已提交
290 291 292
	if (status < 0)
		return status;
	if (status != size) {
293
		dbg("%s - wanted to write %d, but only wrote %d",
294
		     __func__, size, status);
L
Linus Torvalds 已提交
295 296 297 298 299
		return -ECOMM;
	}
	return 0;
}

300
static int send_cmd(struct usb_device *dev, __u8 command,
L
Linus Torvalds 已提交
301 302 303
				__u8 moduleid, __u16 value, u8 *data,
				int size)
{
304
	return ti_vsend_sync(dev, command, value, moduleid, data, size);
L
Linus Torvalds 已提交
305 306 307
}

/* clear tx/rx buffers and fifo in TI UMP */
308
static int purge_port(struct usb_serial_port *port, __u16 mask)
L
Linus Torvalds 已提交
309 310 311
{
	int port_number = port->number - port->serial->minor;

312
	dbg("%s - port %d, mask %x", __func__, port_number, mask);
L
Linus Torvalds 已提交
313

314
	return send_cmd(port->serial->dev,
L
Linus Torvalds 已提交
315 316 317 318 319 320 321 322
					UMPC_PURGE_PORT,
					(__u8)(UMPM_UART1_PORT + port_number),
					mask,
					NULL,
					0);
}

/**
323
 * read_download_mem - Read edgeport memory from TI chip
L
Linus Torvalds 已提交
324 325 326 327 328 329
 * @dev: usb device pointer
 * @start_address: Device CPU address at which to read
 * @length: Length of above data
 * @address_type: Can read both XDATA and I2C
 * @buffer: pointer to input data buffer
 */
330
static int read_download_mem(struct usb_device *dev, int start_address,
L
Linus Torvalds 已提交
331 332 333 334 335
				int length, __u8 address_type, __u8 *buffer)
{
	int status = 0;
	__u8 read_length;
	__be16 be_start_address;
336 337

	dbg("%s - @ %x for %d", __func__, start_address, length);
L
Linus Torvalds 已提交
338 339 340 341 342 343

	/* Read in blocks of 64 bytes
	 * (TI firmware can't handle more than 64 byte reads)
	 */
	while (length) {
		if (length > 64)
344
			read_length = 64;
L
Linus Torvalds 已提交
345 346 347 348
		else
			read_length = (__u8)length;

		if (read_length > 1) {
349
			dbg("%s - @ %x for %d", __func__,
L
Linus Torvalds 已提交
350 351
			     start_address, read_length);
		}
352 353 354 355 356
		be_start_address = cpu_to_be16(start_address);
		status = ti_vread_sync(dev, UMPC_MEMORY_READ,
					(__u16)address_type,
					(__force __u16)be_start_address,
					buffer, read_length);
L
Linus Torvalds 已提交
357 358

		if (status) {
359
			dbg("%s - ERROR %x", __func__, status);
L
Linus Torvalds 已提交
360 361 362
			return status;
		}

363
		if (read_length > 1)
364
			usb_serial_debug_data(debug, &dev->dev, __func__,
L
Linus Torvalds 已提交
365 366 367 368 369 370 371
					      read_length, buffer);

		/* Update pointers/length */
		start_address += read_length;
		buffer += read_length;
		length -= read_length;
	}
372

L
Linus Torvalds 已提交
373 374 375
	return status;
}

376 377
static int read_ram(struct usb_device *dev, int start_address,
						int length, __u8 *buffer)
L
Linus Torvalds 已提交
378
{
379 380
	return read_download_mem(dev, start_address, length,
					DTK_ADDR_SPACE_XDATA, buffer);
L
Linus Torvalds 已提交
381 382 383
}

/* Read edgeport memory to a given block */
384 385
static int read_boot_mem(struct edgeport_serial *serial,
				int start_address, int length, __u8 *buffer)
L
Linus Torvalds 已提交
386 387 388 389
{
	int status = 0;
	int i;

390 391 392 393
	for (i = 0; i < length; i++) {
		status = ti_vread_sync(serial->serial->dev,
				UMPC_MEMORY_READ, serial->TI_I2C_Type,
				(__u16)(start_address+i), &buffer[i], 0x01);
L
Linus Torvalds 已提交
394
		if (status) {
395
			dbg("%s - ERROR %x", __func__, status);
L
Linus Torvalds 已提交
396 397 398 399
			return status;
		}
	}

400 401 402 403
	dbg("%s - start_address = %x, length = %d",
					__func__, start_address, length);
	usb_serial_debug_data(debug, &serial->serial->dev->dev,
					__func__, length, buffer);
L
Linus Torvalds 已提交
404 405 406 407 408 409 410

	serial->TiReadI2C = 1;

	return status;
}

/* Write given block to TI EPROM memory */
411 412
static int write_boot_mem(struct edgeport_serial *serial,
				int start_address, int length, __u8 *buffer)
L
Linus Torvalds 已提交
413 414 415
{
	int status = 0;
	int i;
416
	u8 *temp;
L
Linus Torvalds 已提交
417 418 419

	/* Must do a read before write */
	if (!serial->TiReadI2C) {
420 421 422 423 424 425 426 427
		temp = kmalloc(1, GFP_KERNEL);
		if (!temp) {
			dev_err(&serial->serial->dev->dev,
					"%s - out of memory\n", __func__);
			return -ENOMEM;
		}
		status = read_boot_mem(serial, 0, 1, temp);
		kfree(temp);
L
Linus Torvalds 已提交
428 429 430 431
		if (status)
			return status;
	}

432 433 434 435
	for (i = 0; i < length; ++i) {
		status = ti_vsend_sync(serial->serial->dev,
				UMPC_MEMORY_WRITE, buffer[i],
				(__u16)(i + start_address), NULL, 0);
L
Linus Torvalds 已提交
436 437 438 439
		if (status)
			return status;
	}

440 441 442 443
	dbg("%s - start_sddr = %x, length = %d",
					__func__, start_address, length);
	usb_serial_debug_data(debug, &serial->serial->dev->dev,
					__func__, length, buffer);
L
Linus Torvalds 已提交
444 445 446 447 448 449

	return status;
}


/* Write edgeport I2C memory to TI chip	*/
450 451
static int write_i2c_mem(struct edgeport_serial *serial,
		int start_address, int length, __u8 address_type, __u8 *buffer)
L
Linus Torvalds 已提交
452 453 454 455 456 457
{
	int status = 0;
	int write_length;
	__be16 be_start_address;

	/* We can only send a maximum of 1 aligned byte page at a time */
458

L
Linus Torvalds 已提交
459
	/* calulate the number of bytes left in the first page */
460 461
	write_length = EPROM_PAGE_SIZE -
				(start_address & (EPROM_PAGE_SIZE - 1));
L
Linus Torvalds 已提交
462 463 464 465

	if (write_length > length)
		write_length = length;

466 467 468 469
	dbg("%s - BytesInFirstPage Addr = %x, length = %d",
					__func__, start_address, write_length);
	usb_serial_debug_data(debug, &serial->serial->dev->dev,
						__func__, write_length, buffer);
L
Linus Torvalds 已提交
470 471

	/* Write first page */
472 473 474 475 476
	be_start_address = cpu_to_be16(start_address);
	status = ti_vsend_sync(serial->serial->dev,
				UMPC_MEMORY_WRITE, (__u16)address_type,
				(__force __u16)be_start_address,
				buffer,	write_length);
L
Linus Torvalds 已提交
477
	if (status) {
478
		dbg("%s - ERROR %d", __func__, status);
L
Linus Torvalds 已提交
479 480 481 482 483 484 485
		return status;
	}

	length		-= write_length;
	start_address	+= write_length;
	buffer		+= write_length;

486 487
	/* We should be aligned now -- can write
	   max page size bytes at a time */
L
Linus Torvalds 已提交
488 489 490 491 492 493
	while (length) {
		if (length > EPROM_PAGE_SIZE)
			write_length = EPROM_PAGE_SIZE;
		else
			write_length = length;

494 495 496 497
		dbg("%s - Page Write Addr = %x, length = %d",
					__func__, start_address, write_length);
		usb_serial_debug_data(debug, &serial->serial->dev->dev,
					__func__, write_length, buffer);
L
Linus Torvalds 已提交
498 499

		/* Write next page */
500 501 502 503 504
		be_start_address = cpu_to_be16(start_address);
		status = ti_vsend_sync(serial->serial->dev, UMPC_MEMORY_WRITE,
				(__u16)address_type,
				(__force __u16)be_start_address,
				buffer, write_length);
L
Linus Torvalds 已提交
505
		if (status) {
506 507
			dev_err(&serial->serial->dev->dev, "%s - ERROR %d\n",
					__func__, status);
L
Linus Torvalds 已提交
508 509
			return status;
		}
510

L
Linus Torvalds 已提交
511 512 513 514 515 516 517 518
		length		-= write_length;
		start_address	+= write_length;
		buffer		+= write_length;
	}
	return status;
}

/* Examine the UMP DMA registers and LSR
519
 *
L
Linus Torvalds 已提交
520 521 522 523
 * Check the MSBit of the X and Y DMA byte count registers.
 * A zero in this bit indicates that the TX DMA buffers are empty
 * then check the TX Empty bit in the UART.
 */
524
static int tx_active(struct edgeport_port *port)
L
Linus Torvalds 已提交
525 526 527 528 529 530
{
	int status;
	struct out_endpoint_desc_block *oedb;
	__u8 *lsr;
	int bytes_left = 0;

531
	oedb = kmalloc(sizeof(*oedb), GFP_KERNEL);
L
Linus Torvalds 已提交
532
	if (!oedb) {
533
		dev_err(&port->port->dev, "%s - out of memory\n", __func__);
L
Linus Torvalds 已提交
534 535 536
		return -ENOMEM;
	}

537
	lsr = kmalloc(1, GFP_KERNEL);	/* Sigh, that's right, just one byte,
L
Linus Torvalds 已提交
538 539 540 541 542 543 544
					   as not all platforms can do DMA
					   from stack */
	if (!lsr) {
		kfree(oedb);
		return -ENOMEM;
	}
	/* Read the DMA Count Registers */
545 546
	status = read_ram(port->port->serial->dev, port->dma_address,
						sizeof(*oedb), (void *)oedb);
L
Linus Torvalds 已提交
547 548 549
	if (status)
		goto exit_is_tx_active;

550
	dbg("%s - XByteCount    0x%X", __func__, oedb->XByteCount);
L
Linus Torvalds 已提交
551 552

	/* and the LSR */
553 554
	status = read_ram(port->port->serial->dev,
			port->uart_base + UMPMEM_OFFS_UART_LSR, 1, lsr);
L
Linus Torvalds 已提交
555 556 557

	if (status)
		goto exit_is_tx_active;
558 559
	dbg("%s - LSR = 0x%X", __func__, *lsr);

L
Linus Torvalds 已提交
560
	/* If either buffer has data or we are transmitting then return TRUE */
561
	if ((oedb->XByteCount & 0x80) != 0)
L
Linus Torvalds 已提交
562 563
		bytes_left += 64;

564
	if ((*lsr & UMP_UART_LSR_TX_MASK) == 0)
L
Linus Torvalds 已提交
565 566 567 568
		bytes_left += 1;

	/* We return Not Active if we get any kind of error */
exit_is_tx_active:
569
	dbg("%s - return %d", __func__, bytes_left);
L
Linus Torvalds 已提交
570 571 572 573 574 575

	kfree(lsr);
	kfree(oedb);
	return bytes_left;
}

576 577
static void chase_port(struct edgeport_port *port, unsigned long timeout,
								int flush)
L
Linus Torvalds 已提交
578 579
{
	int baud_rate;
A
Alan Cox 已提交
580
	struct tty_struct *tty = tty_port_tty_get(&port->port->port);
L
Linus Torvalds 已提交
581 582 583 584
	wait_queue_t wait;
	unsigned long flags;

	if (!timeout)
585
		timeout = (HZ * EDGE_CLOSING_WAIT)/100;
L
Linus Torvalds 已提交
586 587 588 589 590 591 592 593 594

	/* wait for data to drain from the buffer */
	spin_lock_irqsave(&port->ep_lock, flags);
	init_waitqueue_entry(&wait, current);
	add_wait_queue(&tty->write_wait, &wait);
	for (;;) {
		set_current_state(TASK_INTERRUPTIBLE);
		if (edge_buf_data_avail(port->ep_out_buf) == 0
		|| timeout == 0 || signal_pending(current)
595 596
		|| !usb_get_intfdata(port->port->serial->interface))
			/* disconnect */
L
Linus Torvalds 已提交
597 598 599 600 601 602 603 604 605 606
			break;
		spin_unlock_irqrestore(&port->ep_lock, flags);
		timeout = schedule_timeout(timeout);
		spin_lock_irqsave(&port->ep_lock, flags);
	}
	set_current_state(TASK_RUNNING);
	remove_wait_queue(&tty->write_wait, &wait);
	if (flush)
		edge_buf_clear(port->ep_out_buf);
	spin_unlock_irqrestore(&port->ep_lock, flags);
A
Alan Cox 已提交
607
	tty_kref_put(tty);
L
Linus Torvalds 已提交
608 609 610 611

	/* wait for data to drain from the device */
	timeout += jiffies;
	while ((long)(jiffies - timeout) < 0 && !signal_pending(current)
612 613 614
	&& usb_get_intfdata(port->port->serial->interface)) {
		/* not disconnected */
		if (!tx_active(port))
L
Linus Torvalds 已提交
615 616 617 618 619 620 621 622 623
			break;
		msleep(10);
	}

	/* disconnected */
	if (!usb_get_intfdata(port->port->serial->interface))
		return;

	/* wait one more character time, based on baud rate */
624 625 626
	/* (tx_active doesn't seem to wait for the last byte) */
	baud_rate = port->baud_rate;
	if (baud_rate == 0)
L
Linus Torvalds 已提交
627
		baud_rate = 50;
J
Julia Lawall 已提交
628
	msleep(max(1, DIV_ROUND_UP(10000, baud_rate)));
L
Linus Torvalds 已提交
629 630
}

631
static int choose_config(struct usb_device *dev)
L
Linus Torvalds 已提交
632
{
633 634 635 636 637 638
	/*
	 * There may be multiple configurations on this device, in which case
	 * we would need to read and parse all of them to find out which one
	 * we want. However, we just support one config at this point,
	 * configuration # 1, which is Config Descriptor 0.
	 */
L
Linus Torvalds 已提交
639

640 641 642 643
	dbg("%s - Number of Interfaces = %d",
				__func__, dev->config->desc.bNumInterfaces);
	dbg("%s - MAX Power            = %d",
				__func__, dev->config->desc.bMaxPower * 2);
L
Linus Torvalds 已提交
644 645

	if (dev->config->desc.bNumInterfaces != 1) {
646 647
		dev_err(&dev->dev, "%s - bNumInterfaces is not 1, ERROR!\n",
								__func__);
L
Linus Torvalds 已提交
648 649 650 651 652 653
		return -ENODEV;
	}

	return 0;
}

654 655
static int read_rom(struct edgeport_serial *serial,
				int start_address, int length, __u8 *buffer)
L
Linus Torvalds 已提交
656 657 658 659
{
	int status;

	if (serial->product_info.TiMode == TI_MODE_DOWNLOAD) {
660
		status = read_download_mem(serial->serial->dev,
L
Linus Torvalds 已提交
661 662 663 664 665
					       start_address,
					       length,
					       serial->TI_I2C_Type,
					       buffer);
	} else {
666 667
		status = read_boot_mem(serial, start_address, length,
								buffer);
L
Linus Torvalds 已提交
668 669 670 671
	}
	return status;
}

672 673
static int write_rom(struct edgeport_serial *serial, int start_address,
						int length, __u8 *buffer)
L
Linus Torvalds 已提交
674 675
{
	if (serial->product_info.TiMode == TI_MODE_BOOT)
676 677
		return write_boot_mem(serial, start_address, length,
								buffer);
L
Linus Torvalds 已提交
678 679

	if (serial->product_info.TiMode == TI_MODE_DOWNLOAD)
680 681
		return write_i2c_mem(serial, start_address, length,
						serial->TI_I2C_Type, buffer);
L
Linus Torvalds 已提交
682 683 684 685 686 687
	return -EINVAL;
}



/* Read a descriptor header from I2C based on type */
688 689
static int get_descriptor_addr(struct edgeport_serial *serial,
				int desc_type, struct ti_i2c_desc *rom_desc)
L
Linus Torvalds 已提交
690 691 692 693 694 695 696
{
	int start_address;
	int status;

	/* Search for requested descriptor in I2C */
	start_address = 2;
	do {
697
		status = read_rom(serial,
L
Linus Torvalds 已提交
698 699
				   start_address,
				   sizeof(struct ti_i2c_desc),
700
				   (__u8 *)rom_desc);
L
Linus Torvalds 已提交
701 702 703 704 705 706
		if (status)
			return 0;

		if (rom_desc->Type == desc_type)
			return start_address;

707 708
		start_address = start_address + sizeof(struct ti_i2c_desc)
							+ rom_desc->Size;
L
Linus Torvalds 已提交
709 710

	} while ((start_address < TI_MAX_I2C_SIZE) && rom_desc->Type);
711

L
Linus Torvalds 已提交
712 713 714 715
	return 0;
}

/* Validate descriptor checksum */
716
static int valid_csum(struct ti_i2c_desc *rom_desc, __u8 *buffer)
L
Linus Torvalds 已提交
717 718 719 720
{
	__u16 i;
	__u8 cs = 0;

721
	for (i = 0; i < rom_desc->Size; i++)
L
Linus Torvalds 已提交
722
		cs = (__u8)(cs + buffer[i]);
723

L
Linus Torvalds 已提交
724
	if (cs != rom_desc->CheckSum) {
725
		dbg("%s - Mismatch %x - %x", __func__, rom_desc->CheckSum, cs);
L
Linus Torvalds 已提交
726 727 728 729 730 731
		return -EINVAL;
	}
	return 0;
}

/* Make sure that the I2C image is good */
732
static int check_i2c_image(struct edgeport_serial *serial)
L
Linus Torvalds 已提交
733 734 735 736 737 738 739 740
{
	struct device *dev = &serial->serial->dev->dev;
	int status = 0;
	struct ti_i2c_desc *rom_desc;
	int start_address = 2;
	__u8 *buffer;
	__u16 ttype;

741
	rom_desc = kmalloc(sizeof(*rom_desc), GFP_KERNEL);
L
Linus Torvalds 已提交
742
	if (!rom_desc) {
743
		dev_err(dev, "%s - out of memory\n", __func__);
L
Linus Torvalds 已提交
744 745
		return -ENOMEM;
	}
746
	buffer = kmalloc(TI_MAX_I2C_SIZE, GFP_KERNEL);
L
Linus Torvalds 已提交
747
	if (!buffer) {
748 749 750
		dev_err(dev, "%s - out of memory when allocating buffer\n",
								__func__);
		kfree(rom_desc);
L
Linus Torvalds 已提交
751 752 753
		return -ENOMEM;
	}

754 755
	/* Read the first byte (Signature0) must be 0x52 or 0x10 */
	status = read_rom(serial, 0, 1, buffer);
L
Linus Torvalds 已提交
756
	if (status)
757
		goto out;
L
Linus Torvalds 已提交
758 759

	if (*buffer != UMP5152 && *buffer != UMP3410) {
760
		dev_err(dev, "%s - invalid buffer signature\n", __func__);
L
Linus Torvalds 已提交
761
		status = -ENODEV;
762
		goto out;
L
Linus Torvalds 已提交
763 764 765
	}

	do {
766 767
		/* Validate the I2C */
		status = read_rom(serial,
L
Linus Torvalds 已提交
768 769 770 771 772 773
				start_address,
				sizeof(struct ti_i2c_desc),
				(__u8 *)rom_desc);
		if (status)
			break;

774 775
		if ((start_address + sizeof(struct ti_i2c_desc) +
					rom_desc->Size) > TI_MAX_I2C_SIZE) {
L
Linus Torvalds 已提交
776
			status = -ENODEV;
777
			dbg("%s - structure too big, erroring out.", __func__);
L
Linus Torvalds 已提交
778 779 780
			break;
		}

781
		dbg("%s Type = 0x%x", __func__, rom_desc->Type);
L
Linus Torvalds 已提交
782

783
		/* Skip type 2 record */
L
Linus Torvalds 已提交
784
		ttype = rom_desc->Type & 0x0f;
785 786 787 788 789 790
		if (ttype != I2C_DESC_TYPE_FIRMWARE_BASIC
			&& ttype != I2C_DESC_TYPE_FIRMWARE_AUTO) {
			/* Read the descriptor data */
			status = read_rom(serial, start_address +
						sizeof(struct ti_i2c_desc),
						rom_desc->Size, buffer);
L
Linus Torvalds 已提交
791 792 793
			if (status)
				break;

794
			status = valid_csum(rom_desc, buffer);
L
Linus Torvalds 已提交
795 796 797
			if (status)
				break;
		}
798 799
		start_address = start_address + sizeof(struct ti_i2c_desc) +
								rom_desc->Size;
L
Linus Torvalds 已提交
800

801 802
	} while ((rom_desc->Type != I2C_DESC_TYPE_ION) &&
				(start_address < TI_MAX_I2C_SIZE));
L
Linus Torvalds 已提交
803

804 805
	if ((rom_desc->Type != I2C_DESC_TYPE_ION) ||
				(start_address > TI_MAX_I2C_SIZE))
L
Linus Torvalds 已提交
806 807
		status = -ENODEV;

808 809 810
out:
	kfree(buffer);
	kfree(rom_desc);
L
Linus Torvalds 已提交
811 812 813
	return status;
}

814
static int get_manuf_info(struct edgeport_serial *serial, __u8 *buffer)
L
Linus Torvalds 已提交
815 816 817 818 819 820
{
	int status;
	int start_address;
	struct ti_i2c_desc *rom_desc;
	struct edge_ti_manuf_descriptor *desc;

821
	rom_desc = kmalloc(sizeof(*rom_desc), GFP_KERNEL);
L
Linus Torvalds 已提交
822
	if (!rom_desc) {
823 824
		dev_err(&serial->serial->dev->dev, "%s - out of memory\n",
								__func__);
L
Linus Torvalds 已提交
825 826
		return -ENOMEM;
	}
827 828
	start_address = get_descriptor_addr(serial, I2C_DESC_TYPE_ION,
								rom_desc);
L
Linus Torvalds 已提交
829 830

	if (!start_address) {
831
		dbg("%s - Edge Descriptor not found in I2C", __func__);
L
Linus Torvalds 已提交
832 833 834 835
		status = -ENODEV;
		goto exit;
	}

836 837 838
	/* Read the descriptor data */
	status = read_rom(serial, start_address+sizeof(struct ti_i2c_desc),
						rom_desc->Size, buffer);
L
Linus Torvalds 已提交
839 840
	if (status)
		goto exit;
841 842 843

	status = valid_csum(rom_desc, buffer);

L
Linus Torvalds 已提交
844
	desc = (struct edge_ti_manuf_descriptor *)buffer;
845 846 847 848 849 850
	dbg("%s - IonConfig      0x%x", __func__, desc->IonConfig);
	dbg("%s - Version          %d", __func__, desc->Version);
	dbg("%s - Cpu/Board      0x%x", __func__, desc->CpuRev_BoardRev);
	dbg("%s - NumPorts         %d", __func__, desc->NumPorts);
	dbg("%s - NumVirtualPorts  %d", __func__, desc->NumVirtualPorts);
	dbg("%s - TotalPorts       %d", __func__, desc->TotalPorts);
L
Linus Torvalds 已提交
851 852

exit:
853
	kfree(rom_desc);
L
Linus Torvalds 已提交
854 855 856 857
	return status;
}

/* Build firmware header used for firmware update */
858
static int build_i2c_fw_hdr(__u8 *header, struct device *dev)
L
Linus Torvalds 已提交
859 860 861 862
{
	__u8 *buffer;
	int buffer_size;
	int i;
863
	int err;
L
Linus Torvalds 已提交
864 865 866 867
	__u8 cs = 0;
	struct ti_i2c_desc *i2c_header;
	struct ti_i2c_image_header *img_header;
	struct ti_i2c_firmware_rec *firmware_rec;
868 869
	const struct firmware *fw;
	const char *fw_name = "edgeport/down3.bin";
L
Linus Torvalds 已提交
870

871 872 873 874 875 876 877 878 879 880 881 882 883 884 885
	/* In order to update the I2C firmware we must change the type 2 record
	 * to type 0xF2.  This will force the UMP to come up in Boot Mode.
	 * Then while in boot mode, the driver will download the latest
	 * firmware (padded to 15.5k) into the UMP ram.  And finally when the
	 * device comes back up in download mode the driver will cause the new
	 * firmware to be copied from the UMP Ram to I2C and the firmware will
	 * update the record type from 0xf2 to 0x02.
	 */

	/* Allocate a 15.5k buffer + 2 bytes for version number
	 * (Firmware Record) */
	buffer_size = (((1024 * 16) - 512 ) +
			sizeof(struct ti_i2c_firmware_rec));

	buffer = kmalloc(buffer_size, GFP_KERNEL);
L
Linus Torvalds 已提交
886
	if (!buffer) {
887
		dev_err(dev, "%s - out of memory\n", __func__);
L
Linus Torvalds 已提交
888 889
		return -ENOMEM;
	}
890

L
Linus Torvalds 已提交
891
	// Set entire image of 0xffs
892
	memset(buffer, 0xff, buffer_size);
L
Linus Torvalds 已提交
893

894 895 896 897 898 899 900 901 902 903 904 905 906
	err = request_firmware(&fw, fw_name, dev);
	if (err) {
		printk(KERN_ERR "Failed to load image \"%s\" err %d\n",
		       fw_name, err);
		kfree(buffer);
		return err;
	}

	/* Save Download Version Number */
	OperationalMajorVersion = fw->data[0];
	OperationalMinorVersion = fw->data[1];
	OperationalBuildNumber = fw->data[2] | (fw->data[3] << 8);

907
	/* Copy version number into firmware record */
L
Linus Torvalds 已提交
908 909
	firmware_rec = (struct ti_i2c_firmware_rec *)buffer;

910 911
	firmware_rec->Ver_Major	= OperationalMajorVersion;
	firmware_rec->Ver_Minor	= OperationalMinorVersion;
L
Linus Torvalds 已提交
912

913
	/* Pointer to fw_down memory image */
914
	img_header = (struct ti_i2c_image_header *)&fw->data[4];
L
Linus Torvalds 已提交
915

916
	memcpy(buffer + sizeof(struct ti_i2c_firmware_rec),
917
		&fw->data[4 + sizeof(struct ti_i2c_image_header)],
L
Linus Torvalds 已提交
918 919
		le16_to_cpu(img_header->Length));

920 921
	release_firmware(fw);

L
Linus Torvalds 已提交
922 923 924 925
	for (i=0; i < buffer_size; i++) {
		cs = (__u8)(cs + buffer[i]);
	}

926
	kfree(buffer);
L
Linus Torvalds 已提交
927

928
	/* Build new header */
L
Linus Torvalds 已提交
929 930
	i2c_header =  (struct ti_i2c_desc *)header;
	firmware_rec =  (struct ti_i2c_firmware_rec*)i2c_header->Data;
931

L
Linus Torvalds 已提交
932 933 934
	i2c_header->Type	= I2C_DESC_TYPE_FIRMWARE_BLANK;
	i2c_header->Size	= (__u16)buffer_size;
	i2c_header->CheckSum	= cs;
935 936
	firmware_rec->Ver_Major	= OperationalMajorVersion;
	firmware_rec->Ver_Minor	= OperationalMinorVersion;
L
Linus Torvalds 已提交
937 938 939 940 941

	return 0;
}

/* Try to figure out what type of I2c we have */
942
static int i2c_type_bootmode(struct edgeport_serial *serial)
L
Linus Torvalds 已提交
943 944
{
	int status;
945 946 947 948 949 950 951 952
	u8 *data;

	data = kmalloc(1, GFP_KERNEL);
	if (!data) {
		dev_err(&serial->serial->dev->dev,
				"%s - out of memory\n", __func__);
		return -ENOMEM;
	}
953 954 955

	/* Try to read type 2 */
	status = ti_vread_sync(serial->serial->dev, UMPC_MEMORY_READ,
956
				DTK_ADDR_SPACE_I2C_TYPE_II, 0, data, 0x01);
L
Linus Torvalds 已提交
957
	if (status)
958
		dbg("%s - read 2 status error = %d", __func__, status);
L
Linus Torvalds 已提交
959
	else
960 961
		dbg("%s - read 2 data = 0x%x", __func__, *data);
	if ((!status) && (*data == UMP5152 || *data == UMP3410)) {
962
		dbg("%s - ROM_TYPE_II", __func__);
L
Linus Torvalds 已提交
963
		serial->TI_I2C_Type = DTK_ADDR_SPACE_I2C_TYPE_II;
964
		goto out;
L
Linus Torvalds 已提交
965 966
	}

967 968
	/* Try to read type 3 */
	status = ti_vread_sync(serial->serial->dev, UMPC_MEMORY_READ,
969
				DTK_ADDR_SPACE_I2C_TYPE_III, 0,	data, 0x01);
L
Linus Torvalds 已提交
970
	if (status)
971
		dbg("%s - read 3 status error = %d", __func__, status);
L
Linus Torvalds 已提交
972
	else
973 974
		dbg("%s - read 2 data = 0x%x", __func__, *data);
	if ((!status) && (*data == UMP5152 || *data == UMP3410)) {
975
		dbg("%s - ROM_TYPE_III", __func__);
L
Linus Torvalds 已提交
976
		serial->TI_I2C_Type = DTK_ADDR_SPACE_I2C_TYPE_III;
977
		goto out;
L
Linus Torvalds 已提交
978 979
	}

980
	dbg("%s - Unknown", __func__);
L
Linus Torvalds 已提交
981
	serial->TI_I2C_Type = DTK_ADDR_SPACE_I2C_TYPE_II;
982 983 984 985
	status = -ENODEV;
out:
	kfree(data);
	return status;
L
Linus Torvalds 已提交
986 987
}

988 989
static int bulk_xfer(struct usb_serial *serial, void *buffer,
						int length, int *num_sent)
L
Linus Torvalds 已提交
990 991 992
{
	int status;

993 994 995 996
	status = usb_bulk_msg(serial->dev,
			usb_sndbulkpipe(serial->dev,
				serial->port[0]->bulk_out_endpointAddress),
			buffer, length, num_sent, 1000);
L
Linus Torvalds 已提交
997 998 999 1000
	return status;
}

/* Download given firmware image to the device (IN BOOT MODE) */
1001 1002
static int download_code(struct edgeport_serial *serial, __u8 *image,
							int image_length)
L
Linus Torvalds 已提交
1003 1004 1005 1006 1007 1008
{
	int status = 0;
	int pos;
	int transfer;
	int done;

1009
	/* Transfer firmware image */
L
Linus Torvalds 已提交
1010
	for (pos = 0; pos < image_length; ) {
1011
		/* Read the next buffer from file */
L
Linus Torvalds 已提交
1012 1013 1014 1015
		transfer = image_length - pos;
		if (transfer > EDGE_FW_BULK_MAX_PACKET_SIZE)
			transfer = EDGE_FW_BULK_MAX_PACKET_SIZE;

1016 1017 1018
		/* Transfer data */
		status = bulk_xfer(serial->serial, &image[pos],
							transfer, &done);
L
Linus Torvalds 已提交
1019 1020
		if (status)
			break;
1021
		/* Advance buffer pointer */
L
Linus Torvalds 已提交
1022 1023 1024 1025 1026 1027
		pos += done;
	}

	return status;
}

1028 1029
/* FIXME!!! */
static int config_boot_dev(struct usb_device *dev)
L
Linus Torvalds 已提交
1030 1031 1032 1033
{
	return 0;
}

1034 1035 1036 1037 1038
static int ti_cpu_rev(struct edge_ti_manuf_descriptor *desc)
{
	return TI_GET_CPU_REVISION(desc->CpuRev_BoardRev);
}

L
Linus Torvalds 已提交
1039 1040
/**
 * DownloadTIFirmware - Download run-time operating firmware to the TI5052
1041
 *
L
Linus Torvalds 已提交
1042 1043 1044
 * This routine downloads the main operating code into the TI5052, using the
 * boot code already burned into E2PROM or ROM.
 */
1045
static int download_fw(struct edgeport_serial *serial)
L
Linus Torvalds 已提交
1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063
{
	struct device *dev = &serial->serial->dev->dev;
	int status = 0;
	int start_address;
	struct edge_ti_manuf_descriptor *ti_manuf_desc;
	struct usb_interface_descriptor *interface;
	int download_cur_ver;
	int download_new_ver;

	/* This routine is entered by both the BOOT mode and the Download mode
	 * We can determine which code is running by the reading the config
	 * descriptor and if we have only one bulk pipe it is in boot mode
	 */
	serial->product_info.hardware_type = HARDWARE_TYPE_TIUMP;

	/* Default to type 2 i2c */
	serial->TI_I2C_Type = DTK_ADDR_SPACE_I2C_TYPE_II;

1064
	status = choose_config(serial->serial->dev);
L
Linus Torvalds 已提交
1065 1066 1067 1068 1069
	if (status)
		return status;

	interface = &serial->serial->interface->cur_altsetting->desc;
	if (!interface) {
1070
		dev_err(dev, "%s - no interface set, error!\n", __func__);
L
Linus Torvalds 已提交
1071 1072 1073
		return -ENODEV;
	}

1074 1075 1076 1077 1078
	/*
	 * Setup initial mode -- the default mode 0 is TI_MODE_CONFIGURING
	 * if we have more than one endpoint we are definitely in download
	 * mode
	 */
L
Linus Torvalds 已提交
1079 1080 1081
	if (interface->bNumEndpoints > 1)
		serial->product_info.TiMode = TI_MODE_DOWNLOAD;
	else
1082
		/* Otherwise we will remain in configuring mode */
L
Linus Torvalds 已提交
1083 1084 1085 1086 1087 1088 1089 1090
		serial->product_info.TiMode = TI_MODE_CONFIGURING;

	/********************************************************************/
	/* Download Mode */
	/********************************************************************/
	if (serial->product_info.TiMode == TI_MODE_DOWNLOAD) {
		struct ti_i2c_desc *rom_desc;

1091
		dbg("%s - RUNNING IN DOWNLOAD MODE", __func__);
L
Linus Torvalds 已提交
1092

1093
		status = check_i2c_image(serial);
L
Linus Torvalds 已提交
1094
		if (status) {
1095
			dbg("%s - DOWNLOAD MODE -- BAD I2C", __func__);
L
Linus Torvalds 已提交
1096 1097
			return status;
		}
1098

L
Linus Torvalds 已提交
1099 1100 1101
		/* Validate Hardware version number
		 * Read Manufacturing Descriptor from TI Based Edgeport
		 */
1102
		ti_manuf_desc = kmalloc(sizeof(*ti_manuf_desc), GFP_KERNEL);
L
Linus Torvalds 已提交
1103
		if (!ti_manuf_desc) {
1104
			dev_err(dev, "%s - out of memory.\n", __func__);
L
Linus Torvalds 已提交
1105 1106
			return -ENOMEM;
		}
1107
		status = get_manuf_info(serial, (__u8 *)ti_manuf_desc);
L
Linus Torvalds 已提交
1108
		if (status) {
1109
			kfree(ti_manuf_desc);
L
Linus Torvalds 已提交
1110 1111 1112
			return status;
		}

1113 1114 1115 1116 1117 1118 1119
		/* Check version number of ION descriptor */
		if (!ignore_cpu_rev && ti_cpu_rev(ti_manuf_desc) < 2) {
			dbg("%s - Wrong CPU Rev %d (Must be 2)",
				__func__, ti_cpu_rev(ti_manuf_desc));
			kfree(ti_manuf_desc);
			return -EINVAL;
  		}
L
Linus Torvalds 已提交
1120

1121
		rom_desc = kmalloc(sizeof(*rom_desc), GFP_KERNEL);
L
Linus Torvalds 已提交
1122
		if (!rom_desc) {
1123 1124
			dev_err(dev, "%s - out of memory.\n", __func__);
			kfree(ti_manuf_desc);
L
Linus Torvalds 已提交
1125 1126 1127
			return -ENOMEM;
		}

1128 1129 1130 1131
		/* Search for type 2 record (firmware record) */
		start_address = get_descriptor_addr(serial,
				I2C_DESC_TYPE_FIRMWARE_BASIC, rom_desc);
		if (start_address != 0) {
L
Linus Torvalds 已提交
1132
			struct ti_i2c_firmware_rec *firmware_version;
1133
			u8 *record;
L
Linus Torvalds 已提交
1134

1135 1136
			dbg("%s - Found Type FIRMWARE (Type 2) record",
								__func__);
L
Linus Torvalds 已提交
1137

1138 1139
			firmware_version = kmalloc(sizeof(*firmware_version),
								GFP_KERNEL);
L
Linus Torvalds 已提交
1140
			if (!firmware_version) {
1141 1142 1143
				dev_err(dev, "%s - out of memory.\n", __func__);
				kfree(rom_desc);
				kfree(ti_manuf_desc);
L
Linus Torvalds 已提交
1144 1145 1146
				return -ENOMEM;
			}

1147 1148 1149 1150 1151
			/* Validate version number
			 * Read the descriptor data
			 */
			status = read_rom(serial, start_address +
					sizeof(struct ti_i2c_desc),
L
Linus Torvalds 已提交
1152 1153 1154
					sizeof(struct ti_i2c_firmware_rec),
					(__u8 *)firmware_version);
			if (status) {
1155 1156 1157
				kfree(firmware_version);
				kfree(rom_desc);
				kfree(ti_manuf_desc);
L
Linus Torvalds 已提交
1158 1159 1160
				return status;
			}

1161 1162 1163
			/* Check version number of download with current
			   version in I2c */
			download_cur_ver = (firmware_version->Ver_Major << 8) +
L
Linus Torvalds 已提交
1164
					   (firmware_version->Ver_Minor);
1165 1166
			download_new_ver = (OperationalMajorVersion << 8) +
					   (OperationalMinorVersion);
L
Linus Torvalds 已提交
1167

1168 1169 1170 1171 1172 1173
			dbg("%s - >> FW Versions Device %d.%d  Driver %d.%d",
			    __func__,
			    firmware_version->Ver_Major,
			    firmware_version->Ver_Minor,
			    OperationalMajorVersion,
			    OperationalMinorVersion);
L
Linus Torvalds 已提交
1174

1175 1176
			/* Check if we have an old version in the I2C and
			   update if necessary */
L
Linus Torvalds 已提交
1177
			if (download_cur_ver != download_new_ver) {
1178 1179 1180 1181 1182 1183 1184
				dbg("%s - Update I2C dld from %d.%d to %d.%d",
				    __func__,
				    firmware_version->Ver_Major,
				    firmware_version->Ver_Minor,
				    OperationalMajorVersion,
				    OperationalMinorVersion);

1185 1186 1187 1188 1189 1190 1191 1192 1193
				record = kmalloc(1, GFP_KERNEL);
				if (!record) {
					dev_err(dev, "%s - out of memory.\n",
							__func__);
					kfree(firmware_version);
					kfree(rom_desc);
					kfree(ti_manuf_desc);
					return -ENOMEM;
				}
1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205
				/* In order to update the I2C firmware we must
				 * change the type 2 record to type 0xF2. This
				 * will force the UMP to come up in Boot Mode.
				 * Then while in boot mode, the driver will
				 * download the latest firmware (padded to
				 * 15.5k) into the UMP ram. Finally when the
				 * device comes back up in download mode the
				 * driver will cause the new firmware to be
				 * copied from the UMP Ram to I2C and the
				 * firmware will update the record type from
				 * 0xf2 to 0x02.
				 */
1206
				*record = I2C_DESC_TYPE_FIRMWARE_BLANK;
L
Linus Torvalds 已提交
1207

1208 1209 1210
				/* Change the I2C Firmware record type to
				   0xf2 to trigger an update */
				status = write_rom(serial, start_address,
1211
						sizeof(*record), record);
L
Linus Torvalds 已提交
1212
				if (status) {
1213
					kfree(record);
1214 1215 1216
					kfree(firmware_version);
					kfree(rom_desc);
					kfree(ti_manuf_desc);
L
Linus Torvalds 已提交
1217 1218 1219
					return status;
				}

1220 1221 1222 1223 1224
				/* verify the write -- must do this in order
				 * for write to complete before we do the
				 * hardware reset
				 */
				status = read_rom(serial,
L
Linus Torvalds 已提交
1225
							start_address,
1226 1227
							sizeof(*record),
							record);
L
Linus Torvalds 已提交
1228
				if (status) {
1229
					kfree(record);
1230 1231 1232
					kfree(firmware_version);
					kfree(rom_desc);
					kfree(ti_manuf_desc);
L
Linus Torvalds 已提交
1233 1234 1235
					return status;
				}

1236
				if (*record != I2C_DESC_TYPE_FIRMWARE_BLANK) {
1237 1238 1239
					dev_err(dev,
						"%s - error resetting device\n",
						__func__);
1240
					kfree(record);
1241 1242 1243
					kfree(firmware_version);
					kfree(rom_desc);
					kfree(ti_manuf_desc);
L
Linus Torvalds 已提交
1244 1245 1246
					return -ENODEV;
				}

1247
				dbg("%s - HARDWARE RESET", __func__);
L
Linus Torvalds 已提交
1248

1249 1250 1251 1252
				/* Reset UMP -- Back to BOOT MODE */
				status = ti_vsend_sync(serial->serial->dev,
						UMPC_HARDWARE_RESET,
						0, 0, NULL, 0);
L
Linus Torvalds 已提交
1253

1254 1255
				dbg("%s - HARDWARE RESET return %d",
						__func__, status);
L
Linus Torvalds 已提交
1256 1257

				/* return an error on purpose. */
1258
				kfree(record);
1259 1260 1261
				kfree(firmware_version);
				kfree(rom_desc);
				kfree(ti_manuf_desc);
L
Linus Torvalds 已提交
1262 1263
				return -ENODEV;
			}
1264
			kfree(firmware_version);
L
Linus Torvalds 已提交
1265
		}
1266 1267 1268 1269
		/* Search for type 0xF2 record (firmware blank record) */
		else if ((start_address = get_descriptor_addr(serial, I2C_DESC_TYPE_FIRMWARE_BLANK, rom_desc)) != 0) {
#define HEADER_SIZE	(sizeof(struct ti_i2c_desc) + \
					sizeof(struct ti_i2c_firmware_rec))
L
Linus Torvalds 已提交
1270 1271 1272
			__u8 *header;
			__u8 *vheader;

1273
			header = kmalloc(HEADER_SIZE, GFP_KERNEL);
L
Linus Torvalds 已提交
1274
			if (!header) {
1275 1276 1277
				dev_err(dev, "%s - out of memory.\n", __func__);
				kfree(rom_desc);
				kfree(ti_manuf_desc);
L
Linus Torvalds 已提交
1278 1279
				return -ENOMEM;
			}
1280 1281

			vheader = kmalloc(HEADER_SIZE, GFP_KERNEL);
L
Linus Torvalds 已提交
1282
			if (!vheader) {
1283 1284 1285 1286
				dev_err(dev, "%s - out of memory.\n", __func__);
				kfree(header);
				kfree(rom_desc);
				kfree(ti_manuf_desc);
L
Linus Torvalds 已提交
1287 1288
				return -ENOMEM;
			}
1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304

			dbg("%s - Found Type BLANK FIRMWARE (Type F2) record",
								__func__);

			/*
			 * In order to update the I2C firmware we must change
			 * the type 2 record to type 0xF2. This will force the
			 * UMP to come up in Boot Mode.  Then while in boot
			 * mode, the driver will download the latest firmware
			 * (padded to 15.5k) into the UMP ram. Finally when the
			 * device comes back up in download mode the driver
			 * will cause the new firmware to be copied from the
			 * UMP Ram to I2C and the firmware will update the
			 * record type from 0xf2 to 0x02.
			 */
			status = build_i2c_fw_hdr(header, dev);
L
Linus Torvalds 已提交
1305
			if (status) {
1306 1307 1308 1309
				kfree(vheader);
				kfree(header);
				kfree(rom_desc);
				kfree(ti_manuf_desc);
L
Linus Torvalds 已提交
1310 1311 1312
				return status;
			}

1313 1314 1315
			/* Update I2C with type 0xf2 record with correct
			   size and checksum */
			status = write_rom(serial,
L
Linus Torvalds 已提交
1316 1317 1318 1319
						start_address,
						HEADER_SIZE,
						header);
			if (status) {
1320 1321 1322 1323
				kfree(vheader);
				kfree(header);
				kfree(rom_desc);
				kfree(ti_manuf_desc);
L
Linus Torvalds 已提交
1324 1325 1326
				return status;
			}

1327 1328 1329 1330
			/* verify the write -- must do this in order for
			   write to complete before we do the hardware reset */
			status = read_rom(serial, start_address,
							HEADER_SIZE, vheader);
L
Linus Torvalds 已提交
1331 1332

			if (status) {
1333 1334 1335 1336 1337
				dbg("%s - can't read header back", __func__);
				kfree(vheader);
				kfree(header);
				kfree(rom_desc);
				kfree(ti_manuf_desc);
L
Linus Torvalds 已提交
1338 1339 1340
				return status;
			}
			if (memcmp(vheader, header, HEADER_SIZE)) {
1341 1342 1343 1344 1345 1346
				dbg("%s - write download record failed",
					__func__);
				kfree(vheader);
				kfree(header);
				kfree(rom_desc);
				kfree(ti_manuf_desc);
L
Linus Torvalds 已提交
1347 1348 1349
				return status;
			}

1350 1351
			kfree(vheader);
			kfree(header);
L
Linus Torvalds 已提交
1352

1353
			dbg("%s - Start firmware update", __func__);
L
Linus Torvalds 已提交
1354

1355 1356 1357
			/* Tell firmware to copy download image into I2C */
			status = ti_vsend_sync(serial->serial->dev,
					UMPC_COPY_DNLD_TO_I2C, 0, 0, NULL, 0);
L
Linus Torvalds 已提交
1358

1359
		  	dbg("%s - Update complete 0x%x", __func__, status);
L
Linus Torvalds 已提交
1360
			if (status) {
1361 1362 1363 1364 1365
				dev_err(dev,
					"%s - UMPC_COPY_DNLD_TO_I2C failed\n",
								__func__);
				kfree(rom_desc);
				kfree(ti_manuf_desc);
L
Linus Torvalds 已提交
1366 1367 1368 1369 1370
				return status;
			}
		}

		// The device is running the download code
1371 1372
		kfree(rom_desc);
		kfree(ti_manuf_desc);
L
Linus Torvalds 已提交
1373 1374 1375 1376 1377 1378
		return 0;
	}

	/********************************************************************/
	/* Boot Mode */
	/********************************************************************/
1379
	dbg("%s - RUNNING IN BOOT MODE", __func__);
L
Linus Torvalds 已提交
1380

1381 1382
	/* Configure the TI device so we can use the BULK pipes for download */
	status = config_boot_dev(serial->serial->dev);
L
Linus Torvalds 已提交
1383 1384 1385
	if (status)
		return status;

1386 1387 1388
	if (le16_to_cpu(serial->serial->dev->descriptor.idVendor)
							!= USB_VENDOR_ID_ION) {
		dbg("%s - VID = 0x%x", __func__,
L
Linus Torvalds 已提交
1389 1390
		     le16_to_cpu(serial->serial->dev->descriptor.idVendor));
		serial->TI_I2C_Type = DTK_ADDR_SPACE_I2C_TYPE_II;
1391
		goto stayinbootmode;
L
Linus Torvalds 已提交
1392 1393
	}

1394 1395 1396 1397
	/* We have an ION device (I2c Must be programmed)
	   Determine I2C image type */
	if (i2c_type_bootmode(serial))
		goto stayinbootmode;
L
Linus Torvalds 已提交
1398

1399 1400
	/* Check for ION Vendor ID and that the I2C is valid */
	if (!check_i2c_image(serial)) {
L
Linus Torvalds 已提交
1401 1402 1403 1404 1405
		struct ti_i2c_image_header *header;
		int i;
		__u8 cs = 0;
		__u8 *buffer;
		int buffer_size;
1406 1407 1408
		int err;
		const struct firmware *fw;
		const char *fw_name = "edgeport/down3.bin";
L
Linus Torvalds 已提交
1409 1410 1411 1412

		/* Validate Hardware version number
		 * Read Manufacturing Descriptor from TI Based Edgeport
		 */
1413
		ti_manuf_desc = kmalloc(sizeof(*ti_manuf_desc), GFP_KERNEL);
L
Linus Torvalds 已提交
1414
		if (!ti_manuf_desc) {
1415
			dev_err(dev, "%s - out of memory.\n", __func__);
L
Linus Torvalds 已提交
1416 1417
			return -ENOMEM;
		}
1418
		status = get_manuf_info(serial, (__u8 *)ti_manuf_desc);
L
Linus Torvalds 已提交
1419
		if (status) {
1420 1421
			kfree(ti_manuf_desc);
			goto stayinbootmode;
L
Linus Torvalds 已提交
1422 1423
		}

1424 1425 1426 1427 1428 1429
		/* Check for version 2 */
		if (!ignore_cpu_rev && ti_cpu_rev(ti_manuf_desc) < 2) {
			dbg("%s - Wrong CPU Rev %d (Must be 2)",
					__func__, ti_cpu_rev(ti_manuf_desc));
			kfree(ti_manuf_desc);
			goto stayinbootmode;
L
Linus Torvalds 已提交
1430 1431
		}

1432
		kfree(ti_manuf_desc);
L
Linus Torvalds 已提交
1433 1434

		/*
1435 1436 1437 1438 1439 1440 1441 1442 1443
		 * In order to update the I2C firmware we must change the type
		 * 2 record to type 0xF2. This will force the UMP to come up
		 * in Boot Mode.  Then while in boot mode, the driver will
		 * download the latest firmware (padded to 15.5k) into the
		 * UMP ram. Finally when the device comes back up in download
		 * mode the driver will cause the new firmware to be copied
		 * from the UMP Ram to I2C and the firmware will update the
		 * record type from 0xf2 to 0x02.
		 *
L
Linus Torvalds 已提交
1444 1445 1446 1447
		 * Do we really have to copy the whole firmware image,
		 * or could we do this in place!
		 */

1448 1449 1450 1451
		/* Allocate a 15.5k buffer + 3 byte header */
		buffer_size = (((1024 * 16) - 512) +
					sizeof(struct ti_i2c_image_header));
		buffer = kmalloc(buffer_size, GFP_KERNEL);
L
Linus Torvalds 已提交
1452
		if (!buffer) {
1453
			dev_err(dev, "%s - out of memory\n", __func__);
L
Linus Torvalds 已提交
1454 1455
			return -ENOMEM;
		}
1456 1457 1458

		/* Initialize the buffer to 0xff (pad the buffer) */
		memset(buffer, 0xff, buffer_size);
L
Linus Torvalds 已提交
1459

1460 1461 1462 1463 1464 1465 1466 1467 1468
		err = request_firmware(&fw, fw_name, dev);
		if (err) {
			printk(KERN_ERR "Failed to load image \"%s\" err %d\n",
			       fw_name, err);
			kfree(buffer);
			return err;
		}
		memcpy(buffer, &fw->data[4], fw->size - 4);
		release_firmware(fw);
L
Linus Torvalds 已提交
1469

1470 1471
		for (i = sizeof(struct ti_i2c_image_header);
				i < buffer_size; i++) {
L
Linus Torvalds 已提交
1472 1473
			cs = (__u8)(cs + buffer[i]);
		}
1474

L
Linus Torvalds 已提交
1475
		header = (struct ti_i2c_image_header *)buffer;
1476 1477 1478 1479

		/* update length and checksum after padding */
		header->Length 	 = cpu_to_le16((__u16)(buffer_size -
					sizeof(struct ti_i2c_image_header)));
L
Linus Torvalds 已提交
1480 1481
		header->CheckSum = cs;

1482 1483 1484 1485
		/* Download the operational code  */
		dbg("%s - Downloading operational code image (TI UMP)",
								__func__);
		status = download_code(serial, buffer, buffer_size);
L
Linus Torvalds 已提交
1486

1487
		kfree(buffer);
L
Linus Torvalds 已提交
1488 1489

		if (status) {
1490 1491
			dbg("%s - Error downloading operational code image",
								__func__);
L
Linus Torvalds 已提交
1492 1493 1494
			return status;
		}

1495
		/* Device will reboot */
L
Linus Torvalds 已提交
1496 1497
		serial->product_info.TiMode = TI_MODE_TRANSITIONING;

1498 1499
		dbg("%s - Download successful -- Device rebooting...",
								__func__);
L
Linus Torvalds 已提交
1500 1501 1502 1503 1504

		/* return an error on purpose */
		return -ENODEV;
	}

1505 1506
stayinbootmode:
	/* Eprom is invalid or blank stay in boot mode */
1507
	dbg("%s - STAYING IN BOOT MODE", __func__);
L
Linus Torvalds 已提交
1508 1509 1510 1511 1512 1513
	serial->product_info.TiMode = TI_MODE_BOOT;

	return 0;
}


1514
static int ti_do_config(struct edgeport_port *port, int feature, int on)
L
Linus Torvalds 已提交
1515 1516
{
	int port_number = port->port->number - port->port->serial->minor;
1517 1518 1519 1520
	on = !!on;	/* 1 or 0 not bitmask */
	return send_cmd(port->port->serial->dev,
			feature, (__u8)(UMPM_UART1_PORT + port_number),
			on, NULL, 0);
L
Linus Torvalds 已提交
1521 1522 1523
}


1524
static int restore_mcr(struct edgeport_port *port, __u8 mcr)
L
Linus Torvalds 已提交
1525 1526 1527
{
	int status = 0;

1528
	dbg("%s - %x", __func__, mcr);
L
Linus Torvalds 已提交
1529

1530
	status = ti_do_config(port, UMPC_SET_CLR_DTR, mcr & MCR_DTR);
L
Linus Torvalds 已提交
1531 1532
	if (status)
		return status;
1533
	status = ti_do_config(port, UMPC_SET_CLR_RTS, mcr & MCR_RTS);
L
Linus Torvalds 已提交
1534 1535
	if (status)
		return status;
1536
	return ti_do_config(port, UMPC_SET_CLR_LOOPBACK, mcr & MCR_LOOPBACK);
L
Linus Torvalds 已提交
1537 1538 1539
}

/* Convert TI LSR to standard UART flags */
1540
static __u8 map_line_status(__u8 ti_lsr)
L
Linus Torvalds 已提交
1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551
{
	__u8 lsr = 0;

#define MAP_FLAG(flagUmp, flagUart)    \
	if (ti_lsr & flagUmp) \
		lsr |= flagUart;

	MAP_FLAG(UMP_UART_LSR_OV_MASK, LSR_OVER_ERR)	/* overrun */
	MAP_FLAG(UMP_UART_LSR_PE_MASK, LSR_PAR_ERR)	/* parity error */
	MAP_FLAG(UMP_UART_LSR_FE_MASK, LSR_FRM_ERR)	/* framing error */
	MAP_FLAG(UMP_UART_LSR_BR_MASK, LSR_BREAK)	/* break detected */
1552 1553
	MAP_FLAG(UMP_UART_LSR_RX_MASK, LSR_RX_AVAIL)	/* rx data available */
	MAP_FLAG(UMP_UART_LSR_TX_MASK, LSR_TX_EMPTY)	/* tx hold reg empty */
L
Linus Torvalds 已提交
1554 1555 1556 1557 1558 1559

#undef MAP_FLAG

	return lsr;
}

1560
static void handle_new_msr(struct edgeport_port *edge_port, __u8 msr)
L
Linus Torvalds 已提交
1561 1562 1563 1564
{
	struct async_icount *icount;
	struct tty_struct *tty;

1565
	dbg("%s - %02x", __func__, msr);
L
Linus Torvalds 已提交
1566

1567 1568
	if (msr & (EDGEPORT_MSR_DELTA_CTS | EDGEPORT_MSR_DELTA_DSR |
			EDGEPORT_MSR_DELTA_RI | EDGEPORT_MSR_DELTA_CD)) {
L
Linus Torvalds 已提交
1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579
		icount = &edge_port->icount;

		/* update input line counters */
		if (msr & EDGEPORT_MSR_DELTA_CTS)
			icount->cts++;
		if (msr & EDGEPORT_MSR_DELTA_DSR)
			icount->dsr++;
		if (msr & EDGEPORT_MSR_DELTA_CD)
			icount->dcd++;
		if (msr & EDGEPORT_MSR_DELTA_RI)
			icount->rng++;
1580
		wake_up_interruptible(&edge_port->delta_msr_wait);
L
Linus Torvalds 已提交
1581 1582 1583 1584 1585
	}

	/* Save the new modem status */
	edge_port->shadow_msr = msr & 0xf0;

A
Alan Cox 已提交
1586
	tty = tty_port_tty_get(&edge_port->port->port);
L
Linus Torvalds 已提交
1587 1588 1589 1590 1591 1592 1593 1594 1595
	/* handle CTS flow control */
	if (tty && C_CRTSCTS(tty)) {
		if (msr & EDGEPORT_MSR_CTS) {
			tty->hw_stopped = 0;
			tty_wakeup(tty);
		} else {
			tty->hw_stopped = 1;
		}
	}
A
Alan Cox 已提交
1596
	tty_kref_put(tty);
L
Linus Torvalds 已提交
1597 1598 1599 1600

	return;
}

1601 1602
static void handle_new_lsr(struct edgeport_port *edge_port, int lsr_data,
							__u8 lsr, __u8 data)
L
Linus Torvalds 已提交
1603 1604
{
	struct async_icount *icount;
1605 1606
	__u8 new_lsr = (__u8)(lsr & (__u8)(LSR_OVER_ERR | LSR_PAR_ERR |
						LSR_FRM_ERR | LSR_BREAK));
A
Alan Cox 已提交
1607
	struct tty_struct *tty;
L
Linus Torvalds 已提交
1608

1609
	dbg("%s - %02x", __func__, new_lsr);
L
Linus Torvalds 已提交
1610 1611 1612

	edge_port->shadow_lsr = lsr;

1613
	if (new_lsr & LSR_BREAK)
L
Linus Torvalds 已提交
1614 1615 1616 1617 1618 1619 1620
		/*
		 * Parity and Framing errors only count if they
		 * occur exclusive of a break being received.
		 */
		new_lsr &= (__u8)(LSR_OVER_ERR | LSR_BREAK);

	/* Place LSR data byte into Rx buffer */
A
Alan Cox 已提交
1621 1622 1623 1624 1625 1626 1627
	if (lsr_data) {
		tty = tty_port_tty_get(&edge_port->port->port);
		if (tty) {
			edge_tty_recv(&edge_port->port->dev, tty, &data, 1);
			tty_kref_put(tty);
		}
	}
L
Linus Torvalds 已提交
1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641

	/* update input line counters */
	icount = &edge_port->icount;
	if (new_lsr & LSR_BREAK)
		icount->brk++;
	if (new_lsr & LSR_OVER_ERR)
		icount->overrun++;
	if (new_lsr & LSR_PAR_ERR)
		icount->parity++;
	if (new_lsr & LSR_FRM_ERR)
		icount->frame++;
}


1642
static void edge_interrupt_callback(struct urb *urb)
L
Linus Torvalds 已提交
1643
{
1644
	struct edgeport_serial *edge_serial = urb->context;
L
Linus Torvalds 已提交
1645 1646 1647 1648 1649 1650
	struct usb_serial_port *port;
	struct edgeport_port *edge_port;
	unsigned char *data = urb->transfer_buffer;
	int length = urb->actual_length;
	int port_number;
	int function;
1651
	int retval;
L
Linus Torvalds 已提交
1652 1653
	__u8 lsr;
	__u8 msr;
1654
	int status = urb->status;
L
Linus Torvalds 已提交
1655

1656
	dbg("%s", __func__);
L
Linus Torvalds 已提交
1657

1658
	switch (status) {
L
Linus Torvalds 已提交
1659 1660 1661 1662 1663 1664 1665
	case 0:
		/* success */
		break;
	case -ECONNRESET:
	case -ENOENT:
	case -ESHUTDOWN:
		/* this urb is terminated, clean up */
1666
		dbg("%s - urb shutting down with status: %d",
1667
		    __func__, status);
L
Linus Torvalds 已提交
1668 1669
		return;
	default:
1670
		dev_err(&urb->dev->dev, "%s - nonzero urb status received: "
1671
			"%d\n", __func__, status);
L
Linus Torvalds 已提交
1672 1673 1674 1675
		goto exit;
	}

	if (!length) {
1676
		dbg("%s - no data in urb", __func__);
L
Linus Torvalds 已提交
1677 1678
		goto exit;
	}
1679 1680 1681 1682

	usb_serial_debug_data(debug, &edge_serial->serial->dev->dev,
						__func__, length, data);

L
Linus Torvalds 已提交
1683
	if (length != 2) {
1684 1685
		dbg("%s - expecting packet of size 2, got %d",
							__func__, length);
L
Linus Torvalds 已提交
1686 1687 1688
		goto exit;
	}

1689 1690 1691
	port_number = TIUMP_GET_PORT_FROM_CODE(data[0]);
	function    = TIUMP_GET_FUNC_FROM_CODE(data[0]);
	dbg("%s - port_number %d, function %d, info 0x%x",
1692
	     __func__, port_number, function, data[1]);
L
Linus Torvalds 已提交
1693 1694 1695
	port = edge_serial->serial->port[port_number];
	edge_port = usb_get_serial_port_data(port);
	if (!edge_port) {
1696
		dbg("%s - edge_port not found", __func__);
L
Linus Torvalds 已提交
1697 1698 1699 1700
		return;
	}
	switch (function) {
	case TIUMP_INTERRUPT_CODE_LSR:
1701
		lsr = map_line_status(data[1]);
L
Linus Torvalds 已提交
1702
		if (lsr & UMP_UART_LSR_DATA_MASK) {
1703 1704 1705
			/* Save the LSR event for bulk read
			   completion routine */
			dbg("%s - LSR Event Port %u LSR Status = %02x",
1706
			     __func__, port_number, lsr);
L
Linus Torvalds 已提交
1707 1708 1709
			edge_port->lsr_event = 1;
			edge_port->lsr_mask = lsr;
		} else {
1710
			dbg("%s - ===== Port %d LSR Status = %02x ======",
1711
			     __func__, port_number, lsr);
1712
			handle_new_lsr(edge_port, 0, lsr, 0);
L
Linus Torvalds 已提交
1713 1714 1715
		}
		break;

1716
	case TIUMP_INTERRUPT_CODE_MSR:	/* MSR */
L
Linus Torvalds 已提交
1717 1718
		/* Copy MSR from UMP */
		msr = data[1];
1719
		dbg("%s - ===== Port %u MSR Status = %02x ======\n",
1720
		     __func__, port_number, msr);
1721
		handle_new_msr(edge_port, msr);
L
Linus Torvalds 已提交
1722 1723 1724
		break;

	default:
1725 1726 1727
		dev_err(&urb->dev->dev,
			"%s - Unknown Interrupt code from UMP %x\n",
			__func__, data[1]);
L
Linus Torvalds 已提交
1728
		break;
1729

L
Linus Torvalds 已提交
1730 1731 1732
	}

exit:
1733
	retval = usb_submit_urb(urb, GFP_ATOMIC);
1734
	if (retval)
1735 1736
		dev_err(&urb->dev->dev,
			"%s - usb_submit_urb failed with result %d\n",
1737
			 __func__, retval);
L
Linus Torvalds 已提交
1738 1739
}

1740
static void edge_bulk_in_callback(struct urb *urb)
L
Linus Torvalds 已提交
1741
{
1742
	struct edgeport_port *edge_port = urb->context;
L
Linus Torvalds 已提交
1743 1744
	unsigned char *data = urb->transfer_buffer;
	struct tty_struct *tty;
1745
	int retval = 0;
L
Linus Torvalds 已提交
1746
	int port_number;
1747
	int status = urb->status;
L
Linus Torvalds 已提交
1748

1749
	dbg("%s", __func__);
L
Linus Torvalds 已提交
1750

1751
	switch (status) {
L
Linus Torvalds 已提交
1752 1753 1754 1755 1756 1757 1758
	case 0:
		/* success */
		break;
	case -ECONNRESET:
	case -ENOENT:
	case -ESHUTDOWN:
		/* this urb is terminated, clean up */
1759
		dbg("%s - urb shutting down with status: %d",
1760
		    __func__, status);
L
Linus Torvalds 已提交
1761 1762
		return;
	default:
1763 1764 1765
		dev_err(&urb->dev->dev,
			"%s - nonzero read bulk status received: %d\n",
			     __func__, status);
L
Linus Torvalds 已提交
1766 1767
	}

1768
	if (status == -EPIPE)
L
Linus Torvalds 已提交
1769 1770
		goto exit;

1771
	if (status) {
1772
		dev_err(&urb->dev->dev, "%s - stopping read!\n", __func__);
L
Linus Torvalds 已提交
1773 1774 1775 1776 1777 1778 1779
		return;
	}

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

	if (edge_port->lsr_event) {
		edge_port->lsr_event = 0;
1780
		dbg("%s ===== Port %u LSR Status = %02x, Data = %02x ======",
1781
		     __func__, port_number, edge_port->lsr_mask, *data);
1782
		handle_new_lsr(edge_port, 1, edge_port->lsr_mask, *data);
L
Linus Torvalds 已提交
1783 1784 1785 1786 1787
		/* Adjust buffer length/pointer */
		--urb->actual_length;
		++data;
	}

A
Alan Cox 已提交
1788
	tty = tty_port_tty_get(&edge_port->port->port);
L
Linus Torvalds 已提交
1789
	if (tty && urb->actual_length) {
1790 1791 1792 1793 1794 1795 1796 1797
		usb_serial_debug_data(debug, &edge_port->port->dev,
					__func__, urb->actual_length, data);
		if (edge_port->close_pending)
			dbg("%s - close pending, dropping data on the floor",
								__func__);
		else
			edge_tty_recv(&edge_port->port->dev, tty, data,
							urb->actual_length);
L
Linus Torvalds 已提交
1798 1799
		edge_port->icount.rx += urb->actual_length;
	}
A
Alan Cox 已提交
1800
	tty_kref_put(tty);
L
Linus Torvalds 已提交
1801 1802 1803 1804 1805 1806

exit:
	/* continue read unless stopped */
	spin_lock(&edge_port->ep_lock);
	if (edge_port->ep_read_urb_state == EDGE_READ_URB_RUNNING) {
		urb->dev = edge_port->port->serial->dev;
1807
		retval = usb_submit_urb(urb, GFP_ATOMIC);
L
Linus Torvalds 已提交
1808 1809 1810 1811
	} else if (edge_port->ep_read_urb_state == EDGE_READ_URB_STOPPING) {
		edge_port->ep_read_urb_state = EDGE_READ_URB_STOPPED;
	}
	spin_unlock(&edge_port->ep_lock);
1812
	if (retval)
1813 1814
		dev_err(&urb->dev->dev,
			"%s - usb_submit_urb failed with result %d\n",
1815
			 __func__, retval);
L
Linus Torvalds 已提交
1816 1817
}

1818 1819
static void edge_tty_recv(struct device *dev, struct tty_struct *tty,
					unsigned char *data, int length)
L
Linus Torvalds 已提交
1820
{
1821
	int queued;
L
Linus Torvalds 已提交
1822

1823 1824 1825 1826 1827
	tty_buffer_request_room(tty, length);
	queued = tty_insert_flip_string(tty, data, length);
	if (queued < length)
		dev_err(dev, "%s - dropping data, %d bytes lost\n",
			__func__, length - queued);
L
Linus Torvalds 已提交
1828 1829 1830
	tty_flip_buffer_push(tty);
}

1831
static void edge_bulk_out_callback(struct urb *urb)
L
Linus Torvalds 已提交
1832
{
1833
	struct usb_serial_port *port = urb->context;
L
Linus Torvalds 已提交
1834
	struct edgeport_port *edge_port = usb_get_serial_port_data(port);
1835
	int status = urb->status;
A
Alan Cox 已提交
1836
	struct tty_struct *tty;
L
Linus Torvalds 已提交
1837

1838
	dbg("%s - port %d", __func__, port->number);
L
Linus Torvalds 已提交
1839 1840 1841

	edge_port->ep_write_urb_in_use = 0;

1842
	switch (status) {
L
Linus Torvalds 已提交
1843 1844 1845 1846 1847 1848 1849
	case 0:
		/* success */
		break;
	case -ECONNRESET:
	case -ENOENT:
	case -ESHUTDOWN:
		/* this urb is terminated, clean up */
1850
		dbg("%s - urb shutting down with status: %d",
1851
		    __func__, status);
L
Linus Torvalds 已提交
1852 1853
		return;
	default:
1854
		dev_err(&urb->dev->dev, "%s - nonzero write bulk status "
1855
			"received: %d\n", __func__, status);
L
Linus Torvalds 已提交
1856 1857 1858
	}

	/* send any buffered data */
A
Alan Cox 已提交
1859 1860 1861
	tty = tty_port_tty_get(&port->port);
	edge_send(tty);
	tty_kref_put(tty);
L
Linus Torvalds 已提交
1862 1863
}

1864
static int edge_open(struct tty_struct *tty, struct usb_serial_port *port)
L
Linus Torvalds 已提交
1865 1866 1867 1868 1869 1870 1871 1872 1873 1874
{
	struct edgeport_port *edge_port = usb_get_serial_port_data(port);
	struct edgeport_serial *edge_serial;
	struct usb_device *dev;
	struct urb *urb;
	int port_number;
	int status;
	u16 open_settings;
	u8 transaction_timeout;

1875
	dbg("%s - port %d", __func__, port->number);
L
Linus Torvalds 已提交
1876 1877 1878 1879 1880 1881

	if (edge_port == NULL)
		return -ENODEV;

	port_number = port->number - port->serial->minor;
	switch (port_number) {
1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892
	case 0:
		edge_port->uart_base = UMPMEM_BASE_UART1;
		edge_port->dma_address = UMPD_OEDB1_ADDRESS;
		break;
	case 1:
		edge_port->uart_base = UMPMEM_BASE_UART2;
		edge_port->dma_address = UMPD_OEDB2_ADDRESS;
		break;
	default:
		dev_err(&port->dev, "Unknown port number!!!\n");
		return -ENODEV;
L
Linus Torvalds 已提交
1893 1894
	}

1895 1896 1897
	dbg("%s - port_number = %d, uart_base = %04x, dma_address = %04x",
				__func__, port_number, edge_port->uart_base,
				edge_port->dma_address);
L
Linus Torvalds 已提交
1898 1899 1900

	dev = port->serial->dev;

1901 1902
	memset(&(edge_port->icount), 0x00, sizeof(edge_port->icount));
	init_waitqueue_head(&edge_port->delta_msr_wait);
L
Linus Torvalds 已提交
1903 1904

	/* turn off loopback */
1905
	status = ti_do_config(edge_port, UMPC_SET_CLR_LOOPBACK, 0);
L
Linus Torvalds 已提交
1906
	if (status) {
1907 1908
		dev_err(&port->dev,
				"%s - cannot send clear loopback command, %d\n",
1909
			__func__, status);
L
Linus Torvalds 已提交
1910 1911
		return status;
	}
1912

L
Linus Torvalds 已提交
1913
	/* set up the port settings */
A
Alan Cox 已提交
1914
	if (tty)
A
Alan Cox 已提交
1915
		edge_set_termios(tty, port, tty->termios);
L
Linus Torvalds 已提交
1916 1917 1918 1919 1920 1921

	/* open up the port */

	/* milliseconds to timeout for DMA transfer */
	transaction_timeout = 2;

1922 1923
	edge_port->ump_read_timeout =
				max(20, ((transaction_timeout * 3) / 2));
L
Linus Torvalds 已提交
1924

1925 1926 1927
	/* milliseconds to timeout for DMA transfer */
	open_settings = (u8)(UMP_DMA_MODE_CONTINOUS |
			     UMP_PIPE_TRANS_TIMEOUT_ENA |
L
Linus Torvalds 已提交
1928 1929
			     (transaction_timeout << 2));

1930
	dbg("%s - Sending UMPC_OPEN_PORT", __func__);
L
Linus Torvalds 已提交
1931 1932

	/* Tell TI to open and start the port */
1933 1934
	status = send_cmd(dev, UMPC_OPEN_PORT,
		(u8)(UMPM_UART1_PORT + port_number), open_settings, NULL, 0);
L
Linus Torvalds 已提交
1935
	if (status) {
1936 1937
		dev_err(&port->dev, "%s - cannot send open command, %d\n",
							__func__, status);
L
Linus Torvalds 已提交
1938 1939 1940 1941
		return status;
	}

	/* Start the DMA? */
1942 1943
	status = send_cmd(dev, UMPC_START_PORT,
		(u8)(UMPM_UART1_PORT + port_number), 0, NULL, 0);
L
Linus Torvalds 已提交
1944
	if (status) {
1945 1946
		dev_err(&port->dev, "%s - cannot send start DMA command, %d\n",
							__func__, status);
L
Linus Torvalds 已提交
1947 1948 1949 1950
		return status;
	}

	/* Clear TX and RX buffers in UMP */
1951
	status = purge_port(port, UMP_PORT_DIR_OUT | UMP_PORT_DIR_IN);
L
Linus Torvalds 已提交
1952
	if (status) {
1953 1954 1955
		dev_err(&port->dev,
			"%s - cannot send clear buffers command, %d\n",
			__func__, status);
L
Linus Torvalds 已提交
1956 1957 1958 1959
		return status;
	}

	/* Read Initial MSR */
1960 1961 1962
	status = ti_vread_sync(dev, UMPC_READ_MSR, 0,
				(__u16)(UMPM_UART1_PORT + port_number),
				&edge_port->shadow_msr, 1);
L
Linus Torvalds 已提交
1963
	if (status) {
1964 1965
		dev_err(&port->dev, "%s - cannot send read MSR command, %d\n",
							__func__, status);
L
Linus Torvalds 已提交
1966 1967 1968
		return status;
	}

1969 1970
	dbg("ShadowMSR 0x%X", edge_port->shadow_msr);

L
Linus Torvalds 已提交
1971 1972
	/* Set Initial MCR */
	edge_port->shadow_mcr = MCR_RTS | MCR_DTR;
1973
	dbg("ShadowMCR 0x%X", edge_port->shadow_mcr);
L
Linus Torvalds 已提交
1974 1975

	edge_serial = edge_port->edge_serial;
1976
	if (mutex_lock_interruptible(&edge_serial->es_lock))
L
Linus Torvalds 已提交
1977 1978
		return -ERESTARTSYS;
	if (edge_serial->num_ports_open == 0) {
1979
		/* we are the first port to open, post the interrupt urb */
L
Linus Torvalds 已提交
1980 1981
		urb = edge_serial->serial->port[0]->interrupt_in_urb;
		if (!urb) {
1982 1983 1984
			dev_err(&port->dev,
				"%s - no interrupt urb present, exiting\n",
				__func__);
L
Linus Torvalds 已提交
1985
			status = -EINVAL;
1986
			goto release_es_lock;
L
Linus Torvalds 已提交
1987 1988 1989 1990
		}
		urb->complete = edge_interrupt_callback;
		urb->context = edge_serial;
		urb->dev = dev;
1991
		status = usb_submit_urb(urb, GFP_KERNEL);
L
Linus Torvalds 已提交
1992
		if (status) {
1993 1994 1995
			dev_err(&port->dev,
				"%s - usb_submit_urb failed with value %d\n",
					__func__, status);
1996
			goto release_es_lock;
L
Linus Torvalds 已提交
1997 1998 1999 2000 2001 2002 2003
		}
	}

	/*
	 * reset the data toggle on the bulk endpoints to work around bug in
	 * host controllers where things get out of sync some times
	 */
2004 2005
	usb_clear_halt(dev, port->write_urb->pipe);
	usb_clear_halt(dev, port->read_urb->pipe);
L
Linus Torvalds 已提交
2006 2007 2008 2009

	/* start up our bulk read urb */
	urb = port->read_urb;
	if (!urb) {
2010 2011
		dev_err(&port->dev, "%s - no read urb present, exiting\n",
								__func__);
L
Linus Torvalds 已提交
2012 2013 2014 2015 2016 2017 2018
		status = -EINVAL;
		goto unlink_int_urb;
	}
	edge_port->ep_read_urb_state = EDGE_READ_URB_RUNNING;
	urb->complete = edge_bulk_in_callback;
	urb->context = edge_port;
	urb->dev = dev;
2019
	status = usb_submit_urb(urb, GFP_KERNEL);
L
Linus Torvalds 已提交
2020
	if (status) {
2021 2022 2023
		dev_err(&port->dev,
			"%s - read bulk usb_submit_urb failed with value %d\n",
				__func__, status);
L
Linus Torvalds 已提交
2024 2025 2026 2027 2028
		goto unlink_int_urb;
	}

	++edge_serial->num_ports_open;

2029
	dbg("%s - exited", __func__);
L
Linus Torvalds 已提交
2030

2031
	goto release_es_lock;
L
Linus Torvalds 已提交
2032 2033 2034 2035

unlink_int_urb:
	if (edge_port->edge_serial->num_ports_open == 0)
		usb_kill_urb(port->serial->port[0]->interrupt_in_urb);
2036 2037
release_es_lock:
	mutex_unlock(&edge_serial->es_lock);
L
Linus Torvalds 已提交
2038 2039 2040
	return status;
}

2041
static void edge_close(struct usb_serial_port *port)
L
Linus Torvalds 已提交
2042 2043 2044 2045 2046 2047
{
	struct edgeport_serial *edge_serial;
	struct edgeport_port *edge_port;
	int port_number;
	int status;

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

L
Linus Torvalds 已提交
2050 2051
	edge_serial = usb_get_serial_data(port->serial);
	edge_port = usb_get_serial_port_data(port);
2052
	if (edge_serial == NULL || edge_port == NULL)
L
Linus Torvalds 已提交
2053
		return;
2054 2055

	/* The bulkreadcompletion routine will check
L
Linus Torvalds 已提交
2056 2057 2058 2059
	 * this flag and dump add read data */
	edge_port->close_pending = 1;

	/* chase the port close and flush */
2060
	chase_port(edge_port, (HZ * closing_wait) / 100, 1);
L
Linus Torvalds 已提交
2061 2062 2063 2064 2065 2066 2067

	usb_kill_urb(port->read_urb);
	usb_kill_urb(port->write_urb);
	edge_port->ep_write_urb_in_use = 0;

	/* assuming we can still talk to the device,
	 * send a close port command to it */
2068
	dbg("%s - send umpc_close_port", __func__);
L
Linus Torvalds 已提交
2069
	port_number = port->number - port->serial->minor;
2070
	status = send_cmd(port->serial->dev,
L
Linus Torvalds 已提交
2071 2072 2073 2074 2075
				     UMPC_CLOSE_PORT,
				     (__u8)(UMPM_UART1_PORT + port_number),
				     0,
				     NULL,
				     0);
2076
	mutex_lock(&edge_serial->es_lock);
L
Linus Torvalds 已提交
2077 2078 2079 2080 2081 2082
	--edge_port->edge_serial->num_ports_open;
	if (edge_port->edge_serial->num_ports_open <= 0) {
		/* last port is now closed, let's shut down our interrupt urb */
		usb_kill_urb(port->serial->port[0]->interrupt_in_urb);
		edge_port->edge_serial->num_ports_open = 0;
	}
2083
	mutex_unlock(&edge_serial->es_lock);
L
Linus Torvalds 已提交
2084 2085
	edge_port->close_pending = 0;

2086
	dbg("%s - exited", __func__);
L
Linus Torvalds 已提交
2087 2088
}

A
Alan Cox 已提交
2089 2090
static int edge_write(struct tty_struct *tty, struct usb_serial_port *port,
				const unsigned char *data, int count)
L
Linus Torvalds 已提交
2091 2092 2093 2094
{
	struct edgeport_port *edge_port = usb_get_serial_port_data(port);
	unsigned long flags;

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

	if (count == 0) {
2098
		dbg("%s - write request of 0 bytes", __func__);
L
Linus Torvalds 已提交
2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110
		return 0;
	}

	if (edge_port == NULL)
		return -ENODEV;
	if (edge_port->close_pending == 1)
		return -ENODEV;

	spin_lock_irqsave(&edge_port->ep_lock, flags);
	count = edge_buf_put(edge_port->ep_out_buf, data, count);
	spin_unlock_irqrestore(&edge_port->ep_lock, flags);

A
Alan Cox 已提交
2111
	edge_send(tty);
L
Linus Torvalds 已提交
2112 2113 2114 2115

	return count;
}

A
Alan Cox 已提交
2116
static void edge_send(struct tty_struct *tty)
L
Linus Torvalds 已提交
2117
{
A
Alan Cox 已提交
2118
	struct usb_serial_port *port = tty->driver_data;
L
Linus Torvalds 已提交
2119 2120 2121 2122 2123
	int count, result;
	struct edgeport_port *edge_port = usb_get_serial_port_data(port);
	unsigned long flags;


2124
	dbg("%s - port %d", __func__, port->number);
L
Linus Torvalds 已提交
2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145

	spin_lock_irqsave(&edge_port->ep_lock, flags);

	if (edge_port->ep_write_urb_in_use) {
		spin_unlock_irqrestore(&edge_port->ep_lock, flags);
		return;
	}

	count = edge_buf_get(edge_port->ep_out_buf,
				port->write_urb->transfer_buffer,
				port->bulk_out_size);

	if (count == 0) {
		spin_unlock_irqrestore(&edge_port->ep_lock, flags);
		return;
	}

	edge_port->ep_write_urb_in_use = 1;

	spin_unlock_irqrestore(&edge_port->ep_lock, flags);

2146 2147
	usb_serial_debug_data(debug, &port->dev, __func__, count,
				port->write_urb->transfer_buffer);
L
Linus Torvalds 已提交
2148 2149

	/* set up our urb */
2150 2151
	usb_fill_bulk_urb(port->write_urb, port->serial->dev,
			   usb_sndbulkpipe(port->serial->dev,
L
Linus Torvalds 已提交
2152 2153 2154 2155 2156 2157 2158 2159
					    port->bulk_out_endpointAddress),
			   port->write_urb->transfer_buffer, count,
			   edge_bulk_out_callback,
			   port);

	/* send the data out the bulk port */
	result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
	if (result) {
2160 2161 2162
		dev_err(&port->dev,
			"%s - failed submitting write urb, error %d\n",
				__func__, result);
L
Linus Torvalds 已提交
2163
		edge_port->ep_write_urb_in_use = 0;
2164 2165
		/* TODO: reschedule edge_send */
	} else
L
Linus Torvalds 已提交
2166 2167 2168 2169
		edge_port->icount.tx += count;

	/* wakeup any process waiting for writes to complete */
	/* there is now more room in the buffer for new writes */
2170
	if (tty)
L
Linus Torvalds 已提交
2171 2172 2173
		tty_wakeup(tty);
}

A
Alan Cox 已提交
2174
static int edge_write_room(struct tty_struct *tty)
L
Linus Torvalds 已提交
2175
{
A
Alan Cox 已提交
2176
	struct usb_serial_port *port = tty->driver_data;
L
Linus Torvalds 已提交
2177 2178 2179 2180
	struct edgeport_port *edge_port = usb_get_serial_port_data(port);
	int room = 0;
	unsigned long flags;

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

	if (edge_port == NULL)
2184
		return 0;
L
Linus Torvalds 已提交
2185
	if (edge_port->close_pending == 1)
2186
		return 0;
L
Linus Torvalds 已提交
2187 2188 2189 2190 2191

	spin_lock_irqsave(&edge_port->ep_lock, flags);
	room = edge_buf_space_avail(edge_port->ep_out_buf);
	spin_unlock_irqrestore(&edge_port->ep_lock, flags);

2192
	dbg("%s - returns %d", __func__, room);
L
Linus Torvalds 已提交
2193 2194 2195
	return room;
}

A
Alan Cox 已提交
2196
static int edge_chars_in_buffer(struct tty_struct *tty)
L
Linus Torvalds 已提交
2197
{
A
Alan Cox 已提交
2198
	struct usb_serial_port *port = tty->driver_data;
L
Linus Torvalds 已提交
2199 2200 2201 2202
	struct edgeport_port *edge_port = usb_get_serial_port_data(port);
	int chars = 0;
	unsigned long flags;

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

	if (edge_port == NULL)
2206
		return 0;
L
Linus Torvalds 已提交
2207
	if (edge_port->close_pending == 1)
2208
		return 0;
L
Linus Torvalds 已提交
2209 2210 2211 2212 2213

	spin_lock_irqsave(&edge_port->ep_lock, flags);
	chars = edge_buf_data_avail(edge_port->ep_out_buf);
	spin_unlock_irqrestore(&edge_port->ep_lock, flags);

2214
	dbg("%s - returns %d", __func__, chars);
L
Linus Torvalds 已提交
2215 2216 2217
	return chars;
}

A
Alan Cox 已提交
2218
static void edge_throttle(struct tty_struct *tty)
L
Linus Torvalds 已提交
2219
{
A
Alan Cox 已提交
2220
	struct usb_serial_port *port = tty->driver_data;
L
Linus Torvalds 已提交
2221 2222 2223
	struct edgeport_port *edge_port = usb_get_serial_port_data(port);
	int status;

2224
	dbg("%s - port %d", __func__, port->number);
L
Linus Torvalds 已提交
2225 2226 2227 2228 2229 2230 2231

	if (edge_port == NULL)
		return;

	/* if we are implementing XON/XOFF, send the stop character */
	if (I_IXOFF(tty)) {
		unsigned char stop_char = STOP_CHAR(tty);
A
Alan Cox 已提交
2232 2233 2234 2235
		status = edge_write(tty, port, &stop_char, 1);
		if (status <= 0) {
			dev_err(&port->dev, "%s - failed to write stop character, %d\n", __func__, status);
		}
L
Linus Torvalds 已提交
2236 2237 2238 2239 2240 2241 2242 2243 2244
	}

	/* if we are implementing RTS/CTS, stop reads */
	/* and the Edgeport will clear the RTS line */
	if (C_CRTSCTS(tty))
		stop_read(edge_port);

}

A
Alan Cox 已提交
2245
static void edge_unthrottle(struct tty_struct *tty)
L
Linus Torvalds 已提交
2246
{
A
Alan Cox 已提交
2247
	struct usb_serial_port *port = tty->driver_data;
L
Linus Torvalds 已提交
2248 2249 2250
	struct edgeport_port *edge_port = usb_get_serial_port_data(port);
	int status;

2251
	dbg("%s - port %d", __func__, port->number);
L
Linus Torvalds 已提交
2252 2253 2254 2255 2256 2257 2258

	if (edge_port == NULL)
		return;

	/* if we are implementing XON/XOFF, send the start character */
	if (I_IXOFF(tty)) {
		unsigned char start_char = START_CHAR(tty);
A
Alan Cox 已提交
2259 2260 2261 2262
		status = edge_write(tty, port, &start_char, 1);
		if (status <= 0) {
			dev_err(&port->dev, "%s - failed to write start character, %d\n", __func__, status);
		}
L
Linus Torvalds 已提交
2263 2264 2265 2266 2267 2268
	}
	/* if we are implementing RTS/CTS, restart reads */
	/* are the Edgeport will assert the RTS line */
	if (C_CRTSCTS(tty)) {
		status = restart_read(edge_port);
		if (status)
2269 2270 2271
			dev_err(&port->dev,
				"%s - read bulk usb_submit_urb failed: %d\n",
							__func__, status);
L
Linus Torvalds 已提交
2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301
	}

}

static void stop_read(struct edgeport_port *edge_port)
{
	unsigned long flags;

	spin_lock_irqsave(&edge_port->ep_lock, flags);

	if (edge_port->ep_read_urb_state == EDGE_READ_URB_RUNNING)
		edge_port->ep_read_urb_state = EDGE_READ_URB_STOPPING;
	edge_port->shadow_mcr &= ~MCR_RTS;

	spin_unlock_irqrestore(&edge_port->ep_lock, flags);
}

static int restart_read(struct edgeport_port *edge_port)
{
	struct urb *urb;
	int status = 0;
	unsigned long flags;

	spin_lock_irqsave(&edge_port->ep_lock, flags);

	if (edge_port->ep_read_urb_state == EDGE_READ_URB_STOPPED) {
		urb = edge_port->port->read_urb;
		urb->complete = edge_bulk_in_callback;
		urb->context = edge_port;
		urb->dev = edge_port->port->serial->dev;
2302
		status = usb_submit_urb(urb, GFP_ATOMIC);
L
Linus Torvalds 已提交
2303 2304 2305 2306 2307 2308 2309 2310 2311
	}
	edge_port->ep_read_urb_state = EDGE_READ_URB_RUNNING;
	edge_port->shadow_mcr |= MCR_RTS;

	spin_unlock_irqrestore(&edge_port->ep_lock, flags);

	return status;
}

A
Alan Cox 已提交
2312 2313
static void change_port_settings(struct tty_struct *tty,
		struct edgeport_port *edge_port, struct ktermios *old_termios)
L
Linus Torvalds 已提交
2314 2315 2316 2317 2318
{
	struct ump_uart_config *config;
	int baud;
	unsigned cflag;
	int status;
2319 2320
	int port_number = edge_port->port->number -
					edge_port->port->serial->minor;
L
Linus Torvalds 已提交
2321

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

A
Alan Cox 已提交
2324
	config = kmalloc (sizeof (*config), GFP_KERNEL);
L
Linus Torvalds 已提交
2325
	if (!config) {
2326 2327 2328
		*tty->termios = *old_termios;
		dev_err(&edge_port->port->dev, "%s - out of memory\n",
								__func__);
L
Linus Torvalds 已提交
2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341
		return;
	}

	cflag = tty->termios->c_cflag;

	config->wFlags = 0;

	/* These flags must be set */
	config->wFlags |= UMP_MASK_UART_FLAGS_RECEIVE_MS_INT;
	config->wFlags |= UMP_MASK_UART_FLAGS_AUTO_START_ON_ERR;
	config->bUartMode = (__u8)(edge_port->bUartMode);

	switch (cflag & CSIZE) {
2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357
	case CS5:
		    config->bDataBits = UMP_UART_CHAR5BITS;
		    dbg("%s - data bits = 5", __func__);
		    break;
	case CS6:
		    config->bDataBits = UMP_UART_CHAR6BITS;
		    dbg("%s - data bits = 6", __func__);
		    break;
	case CS7:
		    config->bDataBits = UMP_UART_CHAR7BITS;
		    dbg("%s - data bits = 7", __func__);
		    break;
	default:
	case CS8:
		    config->bDataBits = UMP_UART_CHAR8BITS;
		    dbg("%s - data bits = 8", __func__);
L
Linus Torvalds 已提交
2358 2359 2360 2361 2362 2363 2364
			    break;
	}

	if (cflag & PARENB) {
		if (cflag & PARODD) {
			config->wFlags |= UMP_MASK_UART_FLAGS_PARITY;
			config->bParity = UMP_UART_ODDPARITY;
2365
			dbg("%s - parity = odd", __func__);
L
Linus Torvalds 已提交
2366 2367 2368
		} else {
			config->wFlags |= UMP_MASK_UART_FLAGS_PARITY;
			config->bParity = UMP_UART_EVENPARITY;
2369
			dbg("%s - parity = even", __func__);
L
Linus Torvalds 已提交
2370 2371
		}
	} else {
2372
		config->bParity = UMP_UART_NOPARITY;
2373
		dbg("%s - parity = none", __func__);
L
Linus Torvalds 已提交
2374 2375 2376 2377
	}

	if (cflag & CSTOPB) {
		config->bStopBits = UMP_UART_STOPBIT2;
2378
		dbg("%s - stop bits = 2", __func__);
L
Linus Torvalds 已提交
2379 2380
	} else {
		config->bStopBits = UMP_UART_STOPBIT1;
2381
		dbg("%s - stop bits = 1", __func__);
L
Linus Torvalds 已提交
2382 2383 2384 2385 2386 2387
	}

	/* figure out the flow control settings */
	if (cflag & CRTSCTS) {
		config->wFlags |= UMP_MASK_UART_FLAGS_OUT_X_CTS_FLOW;
		config->wFlags |= UMP_MASK_UART_FLAGS_RTS_FLOW;
2388
		dbg("%s - RTS/CTS is enabled", __func__);
L
Linus Torvalds 已提交
2389
	} else {
2390
		dbg("%s - RTS/CTS is disabled", __func__);
L
Linus Torvalds 已提交
2391 2392 2393 2394
		tty->hw_stopped = 0;
		restart_read(edge_port);
	}

2395 2396 2397 2398
	/* if we are implementing XON/XOFF, set the start and stop
	   character in the device */
	config->cXon  = START_CHAR(tty);
	config->cXoff = STOP_CHAR(tty);
L
Linus Torvalds 已提交
2399

2400 2401 2402 2403 2404 2405 2406
	/* if we are implementing INBOUND XON/XOFF */
	if (I_IXOFF(tty)) {
		config->wFlags |= UMP_MASK_UART_FLAGS_IN_X;
		dbg("%s - INBOUND XON/XOFF is enabled, XON = %2x, XOFF = %2x",
		     __func__, config->cXon, config->cXoff);
	} else
		dbg("%s - INBOUND XON/XOFF is disabled", __func__);
L
Linus Torvalds 已提交
2407

2408 2409 2410 2411 2412 2413 2414
	/* if we are implementing OUTBOUND XON/XOFF */
	if (I_IXON(tty)) {
		config->wFlags |= UMP_MASK_UART_FLAGS_OUT_X;
		dbg("%s - OUTBOUND XON/XOFF is enabled, XON = %2x, XOFF = %2x",
		     __func__, config->cXon, config->cXoff);
	} else
		dbg("%s - OUTBOUND XON/XOFF is disabled", __func__);
L
Linus Torvalds 已提交
2415

A
Alan Cox 已提交
2416 2417
	tty->termios->c_cflag &= ~CMSPAR;

L
Linus Torvalds 已提交
2418 2419 2420 2421 2422
	/* Round the baud rate */
	baud = tty_get_baud_rate(tty);
	if (!baud) {
		/* pick a default, any default... */
		baud = 9600;
A
Alan Cox 已提交
2423 2424 2425
	} else
		tty_encode_baud_rate(tty, baud, baud);

L
Linus Torvalds 已提交
2426 2427 2428
	edge_port->baud_rate = baud;
	config->wBaudRate = (__u16)((461550L + baud/2) / baud);

A
Alan Cox 已提交
2429 2430
	/* FIXME: Recompute actual baud from divisor here */

2431 2432
	dbg("%s - baud rate = %d, wBaudRate = %d", __func__, baud,
							config->wBaudRate);
L
Linus Torvalds 已提交
2433

2434 2435 2436 2437 2438 2439 2440 2441
	dbg("wBaudRate:   %d", (int)(461550L / config->wBaudRate));
	dbg("wFlags:    0x%x", config->wFlags);
	dbg("bDataBits:   %d", config->bDataBits);
	dbg("bParity:     %d", config->bParity);
	dbg("bStopBits:   %d", config->bStopBits);
	dbg("cXon:        %d", config->cXon);
	dbg("cXoff:       %d", config->cXoff);
	dbg("bUartMode:   %d", config->bUartMode);
L
Linus Torvalds 已提交
2442 2443

	/* move the word values into big endian mode */
2444 2445
	cpu_to_be16s(&config->wFlags);
	cpu_to_be16s(&config->wBaudRate);
L
Linus Torvalds 已提交
2446

2447
	status = send_cmd(edge_port->port->serial->dev, UMPC_SET_CONFIG,
L
Linus Torvalds 已提交
2448
				(__u8)(UMPM_UART1_PORT + port_number),
2449 2450 2451
				0, (__u8 *)config, sizeof(*config));
	if (status)
		dbg("%s - error %d when trying to write config to device",
2452
		     __func__, status);
2453
	kfree(config);
L
Linus Torvalds 已提交
2454 2455 2456
	return;
}

A
Alan Cox 已提交
2457
static void edge_set_termios(struct tty_struct *tty,
A
Alan Cox 已提交
2458
		struct usb_serial_port *port, struct ktermios *old_termios)
L
Linus Torvalds 已提交
2459 2460
{
	struct edgeport_port *edge_port = usb_get_serial_port_data(port);
A
Alan Cox 已提交
2461 2462 2463
	unsigned int cflag;

	cflag = tty->termios->c_cflag;
L
Linus Torvalds 已提交
2464

2465
	dbg("%s - clfag %08x iflag %08x", __func__,
L
Linus Torvalds 已提交
2466
	    tty->termios->c_cflag, tty->termios->c_iflag);
2467
	dbg("%s - old clfag %08x old iflag %08x", __func__,
A
Alan Cox 已提交
2468
	    old_termios->c_cflag, old_termios->c_iflag);
2469
	dbg("%s - port %d", __func__, port->number);
L
Linus Torvalds 已提交
2470 2471 2472 2473

	if (edge_port == NULL)
		return;
	/* change the port settings to the new ones specified */
A
Alan Cox 已提交
2474 2475
	change_port_settings(tty, edge_port, old_termios);
	return;
L
Linus Torvalds 已提交
2476 2477
}

A
Alan Cox 已提交
2478
static int edge_tiocmset(struct tty_struct *tty, struct file *file,
2479
					unsigned int set, unsigned int clear)
L
Linus Torvalds 已提交
2480
{
A
Alan Cox 已提交
2481
	struct usb_serial_port *port = tty->driver_data;
L
Linus Torvalds 已提交
2482 2483
	struct edgeport_port *edge_port = usb_get_serial_port_data(port);
	unsigned int mcr;
2484
	unsigned long flags;
L
Linus Torvalds 已提交
2485

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

2488
	spin_lock_irqsave(&edge_port->ep_lock, flags);
L
Linus Torvalds 已提交
2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504
	mcr = edge_port->shadow_mcr;
	if (set & TIOCM_RTS)
		mcr |= MCR_RTS;
	if (set & TIOCM_DTR)
		mcr |= MCR_DTR;
	if (set & TIOCM_LOOP)
		mcr |= MCR_LOOPBACK;

	if (clear & TIOCM_RTS)
		mcr &= ~MCR_RTS;
	if (clear & TIOCM_DTR)
		mcr &= ~MCR_DTR;
	if (clear & TIOCM_LOOP)
		mcr &= ~MCR_LOOPBACK;

	edge_port->shadow_mcr = mcr;
2505
	spin_unlock_irqrestore(&edge_port->ep_lock, flags);
L
Linus Torvalds 已提交
2506

2507
	restore_mcr(edge_port, mcr);
L
Linus Torvalds 已提交
2508 2509 2510
	return 0;
}

A
Alan Cox 已提交
2511
static int edge_tiocmget(struct tty_struct *tty, struct file *file)
L
Linus Torvalds 已提交
2512
{
A
Alan Cox 已提交
2513
	struct usb_serial_port *port = tty->driver_data;
L
Linus Torvalds 已提交
2514 2515 2516 2517
	struct edgeport_port *edge_port = usb_get_serial_port_data(port);
	unsigned int result = 0;
	unsigned int msr;
	unsigned int mcr;
2518
	unsigned long flags;
L
Linus Torvalds 已提交
2519

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

2522 2523
	spin_lock_irqsave(&edge_port->ep_lock, flags);

L
Linus Torvalds 已提交
2524 2525 2526 2527 2528 2529 2530 2531 2532 2533
	msr = edge_port->shadow_msr;
	mcr = edge_port->shadow_mcr;
	result = ((mcr & MCR_DTR)	? TIOCM_DTR: 0)	  /* 0x002 */
		  | ((mcr & MCR_RTS)	? TIOCM_RTS: 0)   /* 0x004 */
		  | ((msr & EDGEPORT_MSR_CTS)	? TIOCM_CTS: 0)   /* 0x020 */
		  | ((msr & EDGEPORT_MSR_CD)	? TIOCM_CAR: 0)   /* 0x040 */
		  | ((msr & EDGEPORT_MSR_RI)	? TIOCM_RI:  0)   /* 0x080 */
		  | ((msr & EDGEPORT_MSR_DSR)	? TIOCM_DSR: 0);  /* 0x100 */


2534
	dbg("%s -- %x", __func__, result);
2535
	spin_unlock_irqrestore(&edge_port->ep_lock, flags);
L
Linus Torvalds 已提交
2536 2537 2538 2539

	return result;
}

2540 2541
static int get_serial_info(struct edgeport_port *edge_port,
				struct serial_struct __user *retinfo)
L
Linus Torvalds 已提交
2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564
{
	struct serial_struct tmp;

	if (!retinfo)
		return -EFAULT;

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

	tmp.type		= PORT_16550A;
	tmp.line		= edge_port->port->serial->minor;
	tmp.port		= edge_port->port->number;
	tmp.irq			= 0;
	tmp.flags		= ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ;
	tmp.xmit_fifo_size	= edge_port->port->bulk_out_size;
	tmp.baud_base		= 9600;
	tmp.close_delay		= 5*HZ;
	tmp.closing_wait	= closing_wait;

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

A
Alan Cox 已提交
2565
static int edge_ioctl(struct tty_struct *tty, struct file *file,
2566
					unsigned int cmd, unsigned long arg)
L
Linus Torvalds 已提交
2567
{
A
Alan Cox 已提交
2568
	struct usb_serial_port *port = tty->driver_data;
L
Linus Torvalds 已提交
2569 2570 2571 2572
	struct edgeport_port *edge_port = usb_get_serial_port_data(port);
	struct async_icount cnow;
	struct async_icount cprev;

2573
	dbg("%s - port %d, cmd = 0x%x", __func__, port->number, cmd);
L
Linus Torvalds 已提交
2574 2575

	switch (cmd) {
2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596
	case TIOCGSERIAL:
		dbg("%s - (%d) TIOCGSERIAL", __func__, port->number);
		return get_serial_info(edge_port,
				(struct serial_struct __user *) arg);
	case TIOCMIWAIT:
		dbg("%s - (%d) TIOCMIWAIT", __func__, port->number);
		cprev = edge_port->icount;
		while (1) {
			interruptible_sleep_on(&edge_port->delta_msr_wait);
			/* see if a signal did it */
			if (signal_pending(current))
				return -ERESTARTSYS;
			cnow = edge_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)) ||
			    ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) {
				return 0;
L
Linus Torvalds 已提交
2597
			}
2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608
			cprev = cnow;
		}
		/* not reached */
		break;
	case TIOCGICOUNT:
		dbg("%s - (%d) TIOCGICOUNT RX=%d, TX=%d", __func__,
		     port->number, edge_port->icount.rx, edge_port->icount.tx);
		if (copy_to_user((void __user *)arg, &edge_port->icount,
				sizeof(edge_port->icount)))
			return -EFAULT;
		return 0;
L
Linus Torvalds 已提交
2609 2610 2611 2612
	}
	return -ENOIOCTLCMD;
}

A
Alan Cox 已提交
2613
static void edge_break(struct tty_struct *tty, int break_state)
L
Linus Torvalds 已提交
2614
{
A
Alan Cox 已提交
2615
	struct usb_serial_port *port = tty->driver_data;
L
Linus Torvalds 已提交
2616 2617
	struct edgeport_port *edge_port = usb_get_serial_port_data(port);
	int status;
2618
	int bv = 0;	/* Off */
L
Linus Torvalds 已提交
2619

A
Alan Cox 已提交
2620
	dbg("%s - state = %d", __func__, break_state);
L
Linus Torvalds 已提交
2621 2622

	/* chase the port close */
2623
	chase_port(edge_port, 0, 0);
L
Linus Torvalds 已提交
2624

A
Alan Cox 已提交
2625
	if (break_state == -1)
2626 2627 2628 2629
		bv = 1;	/* On */
	status = ti_do_config(edge_port, UMPC_SET_CLR_BREAK, bv);
	if (status)
		dbg("%s - error %d sending break set/clear command.",
2630
		     __func__, status);
L
Linus Torvalds 已提交
2631 2632
}

2633
static int edge_startup(struct usb_serial *serial)
L
Linus Torvalds 已提交
2634 2635 2636 2637 2638 2639 2640 2641 2642 2643
{
	struct edgeport_serial *edge_serial;
	struct edgeport_port *edge_port;
	struct usb_device *dev;
	int status;
	int i;

	dev = serial->dev;

	/* create our private serial structure */
2644
	edge_serial = kzalloc(sizeof(struct edgeport_serial), GFP_KERNEL);
L
Linus Torvalds 已提交
2645
	if (edge_serial == NULL) {
2646
		dev_err(&serial->dev->dev, "%s - Out of memory\n", __func__);
L
Linus Torvalds 已提交
2647 2648
		return -ENOMEM;
	}
2649
	mutex_init(&edge_serial->es_lock);
L
Linus Torvalds 已提交
2650 2651 2652
	edge_serial->serial = serial;
	usb_set_serial_data(serial, edge_serial);

2653
	status = download_fw(edge_serial);
L
Linus Torvalds 已提交
2654
	if (status) {
2655
		kfree(edge_serial);
L
Linus Torvalds 已提交
2656 2657 2658 2659 2660
		return status;
	}

	/* set up our port private structures */
	for (i = 0; i < serial->num_ports; ++i) {
2661
		edge_port = kzalloc(sizeof(struct edgeport_port), GFP_KERNEL);
L
Linus Torvalds 已提交
2662
		if (edge_port == NULL) {
2663 2664
			dev_err(&serial->dev->dev, "%s - Out of memory\n",
								__func__);
L
Linus Torvalds 已提交
2665 2666 2667 2668 2669
			goto cleanup;
		}
		spin_lock_init(&edge_port->ep_lock);
		edge_port->ep_out_buf = edge_buf_alloc(EDGE_OUT_BUF_SIZE);
		if (edge_port->ep_out_buf == NULL) {
2670 2671
			dev_err(&serial->dev->dev, "%s - Out of memory\n",
								__func__);
L
Linus Torvalds 已提交
2672 2673 2674 2675 2676 2677
			kfree(edge_port);
			goto cleanup;
		}
		edge_port->port = serial->port[i];
		edge_port->edge_serial = edge_serial;
		usb_set_serial_port_data(serial->port[i], edge_port);
2678
		edge_port->bUartMode = default_uart_mode;
L
Linus Torvalds 已提交
2679
	}
2680

L
Linus Torvalds 已提交
2681 2682 2683
	return 0;

cleanup:
2684
	for (--i; i >= 0; --i) {
L
Linus Torvalds 已提交
2685 2686 2687 2688 2689
		edge_port = usb_get_serial_port_data(serial->port[i]);
		edge_buf_free(edge_port->ep_out_buf);
		kfree(edge_port);
		usb_set_serial_port_data(serial->port[i], NULL);
	}
2690
	kfree(edge_serial);
L
Linus Torvalds 已提交
2691 2692 2693 2694
	usb_set_serial_data(serial, NULL);
	return -ENOMEM;
}

2695
static void edge_disconnect(struct usb_serial *serial)
L
Linus Torvalds 已提交
2696 2697 2698 2699
{
	int i;
	struct edgeport_port *edge_port;

2700
	dbg("%s", __func__);
L
Linus Torvalds 已提交
2701

2702
	for (i = 0; i < serial->num_ports; ++i) {
L
Linus Torvalds 已提交
2703
		edge_port = usb_get_serial_port_data(serial->port[i]);
2704
		edge_remove_sysfs_attrs(edge_port->port);
2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716
	}
}

static void edge_release(struct usb_serial *serial)
{
	int i;
	struct edgeport_port *edge_port;

	dbg("%s", __func__);

	for (i = 0; i < serial->num_ports; ++i) {
		edge_port = usb_get_serial_port_data(serial->port[i]);
2717 2718
		edge_buf_free(edge_port->ep_out_buf);
		kfree(edge_port);
L
Linus Torvalds 已提交
2719
	}
2720
	kfree(usb_get_serial_data(serial));
L
Linus Torvalds 已提交
2721 2722 2723
}


2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741
/* Sysfs Attributes */

static ssize_t show_uart_mode(struct device *dev,
	struct device_attribute *attr, char *buf)
{
	struct usb_serial_port *port = to_usb_serial_port(dev);
	struct edgeport_port *edge_port = usb_get_serial_port_data(port);

	return sprintf(buf, "%d\n", edge_port->bUartMode);
}

static ssize_t store_uart_mode(struct device *dev,
	struct device_attribute *attr, const char *valbuf, size_t count)
{
	struct usb_serial_port *port = to_usb_serial_port(dev);
	struct edgeport_port *edge_port = usb_get_serial_port_data(port);
	unsigned int v = simple_strtoul(valbuf, NULL, 0);

2742
	dbg("%s: setting uart_mode = %d", __func__, v);
2743 2744 2745 2746

	if (v < 256)
		edge_port->bUartMode = v;
	else
2747
		dev_err(dev, "%s - uart_mode %d is invalid\n", __func__, v);
2748 2749 2750 2751

	return count;
}

2752 2753
static DEVICE_ATTR(uart_mode, S_IWUSR | S_IRUGO, show_uart_mode,
							store_uart_mode);
2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766

static int edge_create_sysfs_attrs(struct usb_serial_port *port)
{
	return device_create_file(&port->dev, &dev_attr_uart_mode);
}

static int edge_remove_sysfs_attrs(struct usb_serial_port *port)
{
	device_remove_file(&port->dev, &dev_attr_uart_mode);
	return 0;
}


L
Linus Torvalds 已提交
2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782
/* Circular Buffer */

/*
 * edge_buf_alloc
 *
 * Allocate a circular buffer and all associated memory.
 */

static struct edge_buf *edge_buf_alloc(unsigned int size)
{
	struct edge_buf *eb;


	if (size == 0)
		return NULL;

2783
	eb = kmalloc(sizeof(struct edge_buf), GFP_KERNEL);
L
Linus Torvalds 已提交
2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805
	if (eb == NULL)
		return NULL;

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

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

	return eb;
}


/*
 * edge_buf_free
 *
 * Free the buffer and all associated memory.
 */

A
Adrian Bunk 已提交
2806
static void edge_buf_free(struct edge_buf *eb)
L
Linus Torvalds 已提交
2807
{
2808 2809
	if (eb) {
		kfree(eb->buf_buf);
L
Linus Torvalds 已提交
2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822
		kfree(eb);
	}
}


/*
 * edge_buf_clear
 *
 * Clear out all data in the circular buffer.
 */

static void edge_buf_clear(struct edge_buf *eb)
{
2823 2824 2825
	if (eb != NULL)
		eb->buf_get = eb->buf_put;
	/* equivalent to a get of all data available */
L
Linus Torvalds 已提交
2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837
}


/*
 * edge_buf_data_avail
 *
 * Return the number of bytes of data available in the circular
 * buffer.
 */

static unsigned int edge_buf_data_avail(struct edge_buf *eb)
{
2838
	if (eb == NULL)
L
Linus Torvalds 已提交
2839
		return 0;
2840
	return ((eb->buf_size + eb->buf_put - eb->buf_get) % eb->buf_size);
L
Linus Torvalds 已提交
2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852
}


/*
 * edge_buf_space_avail
 *
 * Return the number of bytes of space available in the circular
 * buffer.
 */

static unsigned int edge_buf_space_avail(struct edge_buf *eb)
{
2853
	if (eb == NULL)
L
Linus Torvalds 已提交
2854
		return 0;
2855
	return ((eb->buf_size + eb->buf_get - eb->buf_put - 1) % eb->buf_size);
L
Linus Torvalds 已提交
2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942
}


/*
 * edge_buf_put
 *
 * 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.
 */

static unsigned int edge_buf_put(struct edge_buf *eb, const char *buf,
	unsigned int count)
{
	unsigned int len;


	if (eb == NULL)
		return 0;

	len  = edge_buf_space_avail(eb);
	if (count > len)
		count = len;

	if (count == 0)
		return 0;

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

	return count;
}


/*
 * edge_buf_get
 *
 * 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.
 */

static unsigned int edge_buf_get(struct edge_buf *eb, char *buf,
	unsigned int count)
{
	unsigned int len;


	if (eb == NULL)
		return 0;

	len = edge_buf_data_avail(eb);
	if (count > len)
		count = len;

	if (count == 0)
		return 0;

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

	return count;
}


2943
static struct usb_serial_driver edgeport_1port_device = {
2944
	.driver = {
2945 2946
		.owner		= THIS_MODULE,
		.name		= "edgeport_ti_1",
2947
	},
2948
	.description		= "Edgeport TI 1 port adapter",
2949
	.usb_driver		= &io_driver,
L
Linus Torvalds 已提交
2950 2951 2952 2953 2954 2955 2956
	.id_table		= edgeport_1port_id_table,
	.num_ports		= 1,
	.open			= edge_open,
	.close			= edge_close,
	.throttle		= edge_throttle,
	.unthrottle		= edge_unthrottle,
	.attach			= edge_startup,
2957 2958
	.disconnect		= edge_disconnect,
	.release		= edge_release,
2959
	.port_probe		= edge_create_sysfs_attrs,
L
Linus Torvalds 已提交
2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972
	.ioctl			= edge_ioctl,
	.set_termios		= edge_set_termios,
	.tiocmget		= edge_tiocmget,
	.tiocmset		= edge_tiocmset,
	.write			= edge_write,
	.write_room		= edge_write_room,
	.chars_in_buffer	= edge_chars_in_buffer,
	.break_ctl		= edge_break,
	.read_int_callback	= edge_interrupt_callback,
	.read_bulk_callback	= edge_bulk_in_callback,
	.write_bulk_callback	= edge_bulk_out_callback,
};

2973
static struct usb_serial_driver edgeport_2port_device = {
2974
	.driver = {
2975 2976
		.owner		= THIS_MODULE,
		.name		= "edgeport_ti_2",
2977
	},
2978
	.description		= "Edgeport TI 2 port adapter",
2979
	.usb_driver		= &io_driver,
L
Linus Torvalds 已提交
2980 2981 2982 2983 2984 2985 2986
	.id_table		= edgeport_2port_id_table,
	.num_ports		= 2,
	.open			= edge_open,
	.close			= edge_close,
	.throttle		= edge_throttle,
	.unthrottle		= edge_unthrottle,
	.attach			= edge_startup,
2987 2988
	.disconnect		= edge_disconnect,
	.release		= edge_release,
2989
	.port_probe		= edge_create_sysfs_attrs,
L
Linus Torvalds 已提交
2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013
	.ioctl			= edge_ioctl,
	.set_termios		= edge_set_termios,
	.tiocmget		= edge_tiocmget,
	.tiocmset		= edge_tiocmset,
	.write			= edge_write,
	.write_room		= edge_write_room,
	.chars_in_buffer	= edge_chars_in_buffer,
	.break_ctl		= edge_break,
	.read_int_callback	= edge_interrupt_callback,
	.read_bulk_callback	= edge_bulk_in_callback,
	.write_bulk_callback	= edge_bulk_out_callback,
};


static int __init edgeport_init(void)
{
	int retval;
	retval = usb_serial_register(&edgeport_1port_device);
	if (retval)
		goto failed_1port_device_register;
	retval = usb_serial_register(&edgeport_2port_device);
	if (retval)
		goto failed_2port_device_register;
	retval = usb_register(&io_driver);
3014
	if (retval)
L
Linus Torvalds 已提交
3015
		goto failed_usb_register;
3016 3017
	printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
	       DRIVER_DESC "\n");
L
Linus Torvalds 已提交
3018 3019 3020 3021 3022 3023 3024 3025 3026
	return 0;
failed_usb_register:
	usb_serial_deregister(&edgeport_2port_device);
failed_2port_device_register:
	usb_serial_deregister(&edgeport_1port_device);
failed_1port_device_register:
	return retval;
}

3027
static void __exit edgeport_exit(void)
L
Linus Torvalds 已提交
3028
{
3029 3030 3031
	usb_deregister(&io_driver);
	usb_serial_deregister(&edgeport_1port_device);
	usb_serial_deregister(&edgeport_2port_device);
L
Linus Torvalds 已提交
3032 3033 3034 3035 3036 3037 3038 3039 3040
}

module_init(edgeport_init);
module_exit(edgeport_exit);

/* Module information */
MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_LICENSE("GPL");
3041
MODULE_FIRMWARE("edgeport/down3.bin");
L
Linus Torvalds 已提交
3042 3043 3044 3045 3046 3047 3048 3049

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

module_param(closing_wait, int, S_IRUGO | S_IWUSR);
MODULE_PARM_DESC(closing_wait, "Maximum wait for data to drain, in .01 secs");

module_param(ignore_cpu_rev, bool, S_IRUGO | S_IWUSR);
3050 3051
MODULE_PARM_DESC(ignore_cpu_rev,
			"Ignore the cpu revision when connecting to a device");
L
Linus Torvalds 已提交
3052

3053 3054
module_param(default_uart_mode, int, S_IRUGO | S_IWUSR);
MODULE_PARM_DESC(default_uart_mode, "Default uart_mode, 0=RS232, ...");