Linux Audio

Check our new training course

Loading...
v6.8
   1// SPDX-License-Identifier: GPL-2.0+
   2/*
   3 * F81532/F81534 USB to Serial Ports Bridge
   4 *
   5 * F81532 => 2 Serial Ports
   6 * F81534 => 4 Serial Ports
   7 *
 
 
 
 
 
   8 * Copyright (C) 2016 Feature Integration Technology Inc., (Fintek)
   9 * Copyright (C) 2016 Tom Tsai (Tom_Tsai@fintek.com.tw)
  10 * Copyright (C) 2016 Peter Hong (Peter_Hong@fintek.com.tw)
  11 *
  12 * The F81532/F81534 had 1 control endpoint for setting, 1 endpoint bulk-out
  13 * for all serial port TX and 1 endpoint bulk-in for all serial port read in
  14 * (Read Data/MSR/LSR).
  15 *
  16 * Write URB is fixed with 512bytes, per serial port used 128Bytes.
  17 * It can be described by f81534_prepare_write_buffer()
  18 *
  19 * Read URB is 512Bytes max, per serial port used 128Bytes.
  20 * It can be described by f81534_process_read_urb() and maybe received with
  21 * 128x1,2,3,4 bytes.
  22 *
  23 */
  24#include <linux/slab.h>
  25#include <linux/tty.h>
  26#include <linux/tty_flip.h>
  27#include <linux/usb.h>
  28#include <linux/usb/serial.h>
  29#include <linux/serial_reg.h>
  30#include <linux/module.h>
  31#include <linux/uaccess.h>
  32
  33/* Serial Port register Address */
  34#define F81534_UART_BASE_ADDRESS	0x1200
  35#define F81534_UART_OFFSET		0x10
  36#define F81534_DIVISOR_LSB_REG		(0x00 + F81534_UART_BASE_ADDRESS)
  37#define F81534_DIVISOR_MSB_REG		(0x01 + F81534_UART_BASE_ADDRESS)
  38#define F81534_INTERRUPT_ENABLE_REG	(0x01 + F81534_UART_BASE_ADDRESS)
  39#define F81534_FIFO_CONTROL_REG		(0x02 + F81534_UART_BASE_ADDRESS)
  40#define F81534_LINE_CONTROL_REG		(0x03 + F81534_UART_BASE_ADDRESS)
  41#define F81534_MODEM_CONTROL_REG	(0x04 + F81534_UART_BASE_ADDRESS)
  42#define F81534_LINE_STATUS_REG		(0x05 + F81534_UART_BASE_ADDRESS)
  43#define F81534_MODEM_STATUS_REG		(0x06 + F81534_UART_BASE_ADDRESS)
  44#define F81534_CLOCK_REG		(0x08 + F81534_UART_BASE_ADDRESS)
  45#define F81534_CONFIG1_REG		(0x09 + F81534_UART_BASE_ADDRESS)
  46
  47#define F81534_DEF_CONF_ADDRESS_START	0x3000
  48#define F81534_DEF_CONF_SIZE		12
  49
  50#define F81534_CUSTOM_ADDRESS_START	0x2f00
  51#define F81534_CUSTOM_DATA_SIZE		0x10
  52#define F81534_CUSTOM_NO_CUSTOM_DATA	0xff
  53#define F81534_CUSTOM_VALID_TOKEN	0xf0
  54#define F81534_CONF_OFFSET		1
  55#define F81534_CONF_INIT_GPIO_OFFSET	4
  56#define F81534_CONF_WORK_GPIO_OFFSET	8
  57#define F81534_CONF_GPIO_SHUTDOWN	7
  58#define F81534_CONF_GPIO_RS232		1
  59
  60#define F81534_MAX_DATA_BLOCK		64
  61#define F81534_MAX_BUS_RETRY		20
  62
  63/* Default URB timeout for USB operations */
  64#define F81534_USB_MAX_RETRY		10
  65#define F81534_USB_TIMEOUT		2000
  66#define F81534_SET_GET_REGISTER		0xA0
  67
  68#define F81534_NUM_PORT			4
  69#define F81534_UNUSED_PORT		0xff
  70#define F81534_WRITE_BUFFER_SIZE	512
  71
  72#define DRIVER_DESC			"Fintek F81532/F81534"
  73#define FINTEK_VENDOR_ID_1		0x1934
  74#define FINTEK_VENDOR_ID_2		0x2C42
  75#define FINTEK_DEVICE_ID		0x1202
  76#define F81534_MAX_TX_SIZE		124
  77#define F81534_MAX_RX_SIZE		124
  78#define F81534_RECEIVE_BLOCK_SIZE	128
  79#define F81534_MAX_RECEIVE_BLOCK_SIZE	512
  80
  81#define F81534_TOKEN_RECEIVE		0x01
  82#define F81534_TOKEN_WRITE		0x02
  83#define F81534_TOKEN_TX_EMPTY		0x03
  84#define F81534_TOKEN_MSR_CHANGE		0x04
  85
  86/*
  87 * We used interal SPI bus to access FLASH section. We must wait the SPI bus to
  88 * idle if we performed any command.
  89 *
  90 * SPI Bus status register: F81534_BUS_REG_STATUS
  91 *	Bit 0/1	: BUSY
  92 *	Bit 2	: IDLE
  93 */
  94#define F81534_BUS_BUSY			(BIT(0) | BIT(1))
  95#define F81534_BUS_IDLE			BIT(2)
  96#define F81534_BUS_READ_DATA		0x1004
  97#define F81534_BUS_REG_STATUS		0x1003
  98#define F81534_BUS_REG_START		0x1002
  99#define F81534_BUS_REG_END		0x1001
 100
 101#define F81534_CMD_READ			0x03
 102
 103#define F81534_DEFAULT_BAUD_RATE	9600
 
 104
 105#define F81534_PORT_CONF_RS232		0
 106#define F81534_PORT_CONF_RS485		BIT(0)
 107#define F81534_PORT_CONF_RS485_INVERT	(BIT(0) | BIT(1))
 108#define F81534_PORT_CONF_MODE_MASK	GENMASK(1, 0)
 109#define F81534_PORT_CONF_DISABLE_PORT	BIT(3)
 110#define F81534_PORT_CONF_NOT_EXIST_PORT	BIT(7)
 111#define F81534_PORT_UNAVAILABLE		\
 112	(F81534_PORT_CONF_DISABLE_PORT | F81534_PORT_CONF_NOT_EXIST_PORT)
 113
 114
 115#define F81534_1X_RXTRIGGER		0xc3
 116#define F81534_8X_RXTRIGGER		0xcf
 117
 118/*
 119 * F81532/534 Clock registers (offset +08h)
 120 *
 121 * Bit0:	UART Enable (always on)
 122 * Bit2-1:	Clock source selector
 123 *			00: 1.846MHz.
 124 *			01: 18.46MHz.
 125 *			10: 24MHz.
 126 *			11: 14.77MHz.
 127 * Bit4:	Auto direction(RTS) control (RTS pin Low when TX)
 128 * Bit5:	Invert direction(RTS) when Bit4 enabled (RTS pin high when TX)
 129 */
 130
 131#define F81534_UART_EN			BIT(0)
 132#define F81534_CLK_1_846_MHZ		0
 133#define F81534_CLK_18_46_MHZ		BIT(1)
 134#define F81534_CLK_24_MHZ		BIT(2)
 135#define F81534_CLK_14_77_MHZ		(BIT(1) | BIT(2))
 136#define F81534_CLK_MASK			GENMASK(2, 1)
 137#define F81534_CLK_TX_DELAY_1BIT	BIT(3)
 138#define F81534_CLK_RS485_MODE		BIT(4)
 139#define F81534_CLK_RS485_INVERT		BIT(5)
 140
 141static const struct usb_device_id f81534_id_table[] = {
 142	{ USB_DEVICE(FINTEK_VENDOR_ID_1, FINTEK_DEVICE_ID) },
 143	{ USB_DEVICE(FINTEK_VENDOR_ID_2, FINTEK_DEVICE_ID) },
 144	{}			/* Terminating entry */
 145};
 146
 147#define F81534_TX_EMPTY_BIT		0
 148
 149struct f81534_serial_private {
 150	u8 conf_data[F81534_DEF_CONF_SIZE];
 151	int tty_idx[F81534_NUM_PORT];
 152	u8 setting_idx;
 153	int opened_port;
 154	struct mutex urb_mutex;
 155};
 156
 157struct f81534_port_private {
 158	struct mutex mcr_mutex;
 159	struct mutex lcr_mutex;
 160	struct work_struct lsr_work;
 161	struct usb_serial_port *port;
 162	unsigned long tx_empty;
 163	spinlock_t msr_lock;
 164	u32 baud_base;
 165	u8 shadow_mcr;
 166	u8 shadow_lcr;
 167	u8 shadow_msr;
 168	u8 shadow_clk;
 169	u8 phy_num;
 170};
 171
 172struct f81534_pin_data {
 173	const u16 reg_addr;
 174	const u8 reg_mask;
 175};
 176
 177struct f81534_port_out_pin {
 178	struct f81534_pin_data pin[3];
 179};
 180
 181/* Pin output value for M2/M1/M0(SD) */
 182static const struct f81534_port_out_pin f81534_port_out_pins[] = {
 183	 { { { 0x2ae8, BIT(7) }, { 0x2a90, BIT(5) }, { 0x2a90, BIT(4) } } },
 184	 { { { 0x2ae8, BIT(6) }, { 0x2ae8, BIT(0) }, { 0x2ae8, BIT(3) } } },
 185	 { { { 0x2a90, BIT(0) }, { 0x2ae8, BIT(2) }, { 0x2a80, BIT(6) } } },
 186	 { { { 0x2a90, BIT(3) }, { 0x2a90, BIT(2) }, { 0x2a90, BIT(1) } } },
 187};
 188
 189static u32 const baudrate_table[] = { 115200, 921600, 1152000, 1500000 };
 190static u8 const clock_table[] = { F81534_CLK_1_846_MHZ, F81534_CLK_14_77_MHZ,
 191				F81534_CLK_18_46_MHZ, F81534_CLK_24_MHZ };
 192
 193static int f81534_logic_to_phy_port(struct usb_serial *serial,
 194					struct usb_serial_port *port)
 195{
 196	struct f81534_serial_private *serial_priv =
 197			usb_get_serial_data(port->serial);
 198	int count = 0;
 199	int i;
 200
 201	for (i = 0; i < F81534_NUM_PORT; ++i) {
 202		if (serial_priv->conf_data[i] & F81534_PORT_UNAVAILABLE)
 203			continue;
 204
 205		if (port->port_number == count)
 206			return i;
 207
 208		++count;
 209	}
 210
 211	return -ENODEV;
 212}
 213
 214static int f81534_set_register(struct usb_serial *serial, u16 reg, u8 data)
 215{
 216	struct usb_interface *interface = serial->interface;
 217	struct usb_device *dev = serial->dev;
 218	size_t count = F81534_USB_MAX_RETRY;
 219	int status;
 220	u8 *tmp;
 221
 222	tmp = kmalloc(sizeof(u8), GFP_KERNEL);
 223	if (!tmp)
 224		return -ENOMEM;
 225
 226	*tmp = data;
 227
 228	/*
 229	 * Our device maybe not reply when heavily loading, We'll retry for
 230	 * F81534_USB_MAX_RETRY times.
 231	 */
 232	while (count--) {
 233		status = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
 234					 F81534_SET_GET_REGISTER,
 235					 USB_TYPE_VENDOR | USB_DIR_OUT,
 236					 reg, 0, tmp, sizeof(u8),
 237					 F81534_USB_TIMEOUT);
 238		if (status == sizeof(u8)) {
 239			status = 0;
 240			break;
 
 
 241		}
 242	}
 243
 244	if (status < 0) {
 245		dev_err(&interface->dev, "%s: reg: %x data: %x failed: %d\n",
 246				__func__, reg, data, status);
 247	}
 248
 249	kfree(tmp);
 250	return status;
 251}
 252
 253static int f81534_get_register(struct usb_serial *serial, u16 reg, u8 *data)
 254{
 255	struct usb_interface *interface = serial->interface;
 256	struct usb_device *dev = serial->dev;
 257	size_t count = F81534_USB_MAX_RETRY;
 258	int status;
 259	u8 *tmp;
 260
 261	tmp = kmalloc(sizeof(u8), GFP_KERNEL);
 262	if (!tmp)
 263		return -ENOMEM;
 264
 265	/*
 266	 * Our device maybe not reply when heavily loading, We'll retry for
 267	 * F81534_USB_MAX_RETRY times.
 268	 */
 269	while (count--) {
 270		status = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
 271					 F81534_SET_GET_REGISTER,
 272					 USB_TYPE_VENDOR | USB_DIR_IN,
 273					 reg, 0, tmp, sizeof(u8),
 274					 F81534_USB_TIMEOUT);
 275		if (status > 0) {
 276			status = 0;
 277			break;
 278		} else if (status == 0) {
 279			status = -EIO;
 280		}
 281	}
 282
 283	if (status < 0) {
 284		dev_err(&interface->dev, "%s: reg: %x failed: %d\n", __func__,
 285				reg, status);
 286		goto end;
 287	}
 288
 289	*data = *tmp;
 290
 291end:
 292	kfree(tmp);
 293	return status;
 294}
 295
 296static int f81534_set_mask_register(struct usb_serial *serial, u16 reg,
 297					u8 mask, u8 data)
 298{
 299	int status;
 300	u8 tmp;
 301
 302	status = f81534_get_register(serial, reg, &tmp);
 303	if (status)
 304		return status;
 305
 306	tmp &= ~mask;
 307	tmp |= (mask & data);
 308
 309	return f81534_set_register(serial, reg, tmp);
 310}
 311
 312static int f81534_set_phy_port_register(struct usb_serial *serial, int phy,
 313					u16 reg, u8 data)
 314{
 315	return f81534_set_register(serial, reg + F81534_UART_OFFSET * phy,
 316					data);
 317}
 318
 319static int f81534_get_phy_port_register(struct usb_serial *serial, int phy,
 320					u16 reg, u8 *data)
 321{
 322	return f81534_get_register(serial, reg + F81534_UART_OFFSET * phy,
 323					data);
 324}
 325
 326static int f81534_set_port_register(struct usb_serial_port *port, u16 reg,
 327					u8 data)
 328{
 329	struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
 330
 331	return f81534_set_register(port->serial,
 332			reg + port_priv->phy_num * F81534_UART_OFFSET, data);
 333}
 334
 335static int f81534_get_port_register(struct usb_serial_port *port, u16 reg,
 336					u8 *data)
 337{
 338	struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
 339
 340	return f81534_get_register(port->serial,
 341			reg + port_priv->phy_num * F81534_UART_OFFSET, data);
 342}
 343
 344/*
 345 * If we try to access the internal flash via SPI bus, we should check the bus
 346 * status for every command. e.g., F81534_BUS_REG_START/F81534_BUS_REG_END
 347 */
 348static int f81534_wait_for_spi_idle(struct usb_serial *serial)
 349{
 350	size_t count = F81534_MAX_BUS_RETRY;
 351	u8 tmp;
 352	int status;
 353
 354	do {
 355		status = f81534_get_register(serial, F81534_BUS_REG_STATUS,
 356						&tmp);
 357		if (status)
 358			return status;
 359
 360		if (tmp & F81534_BUS_BUSY)
 361			continue;
 362
 363		if (tmp & F81534_BUS_IDLE)
 364			break;
 365
 366	} while (--count);
 367
 368	if (!count) {
 369		dev_err(&serial->interface->dev,
 370				"%s: timed out waiting for idle SPI bus\n",
 371				__func__);
 372		return -EIO;
 373	}
 374
 375	return f81534_set_register(serial, F81534_BUS_REG_STATUS,
 376				tmp & ~F81534_BUS_IDLE);
 377}
 378
 379static int f81534_get_spi_register(struct usb_serial *serial, u16 reg,
 380					u8 *data)
 381{
 382	int status;
 383
 384	status = f81534_get_register(serial, reg, data);
 385	if (status)
 386		return status;
 387
 388	return f81534_wait_for_spi_idle(serial);
 389}
 390
 391static int f81534_set_spi_register(struct usb_serial *serial, u16 reg, u8 data)
 392{
 393	int status;
 394
 395	status = f81534_set_register(serial, reg, data);
 396	if (status)
 397		return status;
 398
 399	return f81534_wait_for_spi_idle(serial);
 400}
 401
 402static int f81534_read_flash(struct usb_serial *serial, u32 address,
 403				size_t size, u8 *buf)
 404{
 405	u8 tmp_buf[F81534_MAX_DATA_BLOCK];
 406	size_t block = 0;
 407	size_t read_size;
 408	size_t count;
 409	int status;
 410	int offset;
 411	u16 reg_tmp;
 412
 413	status = f81534_set_spi_register(serial, F81534_BUS_REG_START,
 414					F81534_CMD_READ);
 415	if (status)
 416		return status;
 417
 418	status = f81534_set_spi_register(serial, F81534_BUS_REG_START,
 419					(address >> 16) & 0xff);
 420	if (status)
 421		return status;
 422
 423	status = f81534_set_spi_register(serial, F81534_BUS_REG_START,
 424					(address >> 8) & 0xff);
 425	if (status)
 426		return status;
 427
 428	status = f81534_set_spi_register(serial, F81534_BUS_REG_START,
 429					(address >> 0) & 0xff);
 430	if (status)
 431		return status;
 432
 433	/* Continuous read mode */
 434	do {
 435		read_size = min_t(size_t, F81534_MAX_DATA_BLOCK, size);
 436
 437		for (count = 0; count < read_size; ++count) {
 438			/* To write F81534_BUS_REG_END when final byte */
 439			if (size <= F81534_MAX_DATA_BLOCK &&
 440					read_size == count + 1)
 441				reg_tmp = F81534_BUS_REG_END;
 442			else
 443				reg_tmp = F81534_BUS_REG_START;
 444
 445			/*
 446			 * Dummy code, force IC to generate a read pulse, the
 447			 * set of value 0xf1 is dont care (any value is ok)
 448			 */
 449			status = f81534_set_spi_register(serial, reg_tmp,
 450					0xf1);
 451			if (status)
 452				return status;
 453
 454			status = f81534_get_spi_register(serial,
 455						F81534_BUS_READ_DATA,
 456						&tmp_buf[count]);
 457			if (status)
 458				return status;
 459
 460			offset = count + block * F81534_MAX_DATA_BLOCK;
 461			buf[offset] = tmp_buf[count];
 462		}
 463
 464		size -= read_size;
 465		++block;
 466	} while (size);
 467
 468	return 0;
 469}
 470
 471static void f81534_prepare_write_buffer(struct usb_serial_port *port, u8 *buf)
 472{
 473	struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
 474	int phy_num = port_priv->phy_num;
 475	u8 tx_len;
 476	int i;
 477
 478	/*
 479	 * The block layout is fixed with 4x128 Bytes, per 128 Bytes a port.
 480	 * index 0: port phy idx (e.g., 0,1,2,3)
 481	 * index 1: only F81534_TOKEN_WRITE
 482	 * index 2: serial TX out length
 483	 * index 3: fix to 0
 484	 * index 4~127: serial out data block
 485	 */
 486	for (i = 0; i < F81534_NUM_PORT; ++i) {
 487		buf[i * F81534_RECEIVE_BLOCK_SIZE] = i;
 488		buf[i * F81534_RECEIVE_BLOCK_SIZE + 1] = F81534_TOKEN_WRITE;
 489		buf[i * F81534_RECEIVE_BLOCK_SIZE + 2] = 0;
 490		buf[i * F81534_RECEIVE_BLOCK_SIZE + 3] = 0;
 491	}
 492
 493	tx_len = kfifo_out_locked(&port->write_fifo,
 494				&buf[phy_num * F81534_RECEIVE_BLOCK_SIZE + 4],
 495				F81534_MAX_TX_SIZE, &port->lock);
 496
 497	buf[phy_num * F81534_RECEIVE_BLOCK_SIZE + 2] = tx_len;
 498}
 499
 500static int f81534_submit_writer(struct usb_serial_port *port, gfp_t mem_flags)
 501{
 502	struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
 503	struct urb *urb;
 504	unsigned long flags;
 505	int result;
 506
 507	/* Check is any data in write_fifo */
 508	spin_lock_irqsave(&port->lock, flags);
 509
 510	if (kfifo_is_empty(&port->write_fifo)) {
 511		spin_unlock_irqrestore(&port->lock, flags);
 512		return 0;
 513	}
 514
 515	spin_unlock_irqrestore(&port->lock, flags);
 516
 517	/* Check H/W is TXEMPTY */
 518	if (!test_and_clear_bit(F81534_TX_EMPTY_BIT, &port_priv->tx_empty))
 519		return 0;
 520
 521	urb = port->write_urbs[0];
 522	f81534_prepare_write_buffer(port, port->bulk_out_buffers[0]);
 523	urb->transfer_buffer_length = F81534_WRITE_BUFFER_SIZE;
 524
 525	result = usb_submit_urb(urb, mem_flags);
 526	if (result) {
 527		set_bit(F81534_TX_EMPTY_BIT, &port_priv->tx_empty);
 528		dev_err(&port->dev, "%s: submit failed: %d\n", __func__,
 529				result);
 530		return result;
 531	}
 532
 533	usb_serial_port_softint(port);
 534	return 0;
 535}
 536
 537static u32 f81534_calc_baud_divisor(u32 baudrate, u32 clockrate)
 538{
 
 
 
 539	/* Round to nearest divisor */
 540	return DIV_ROUND_CLOSEST(clockrate, baudrate);
 541}
 542
 543static int f81534_find_clk(u32 baudrate)
 
 544{
 545	int idx;
 546
 547	for (idx = 0; idx < ARRAY_SIZE(baudrate_table); ++idx) {
 548		if (baudrate <= baudrate_table[idx] &&
 549				baudrate_table[idx] % baudrate == 0)
 550			return idx;
 551	}
 552
 553	return -EINVAL;
 554}
 555
 556static int f81534_set_port_config(struct usb_serial_port *port,
 557		struct tty_struct *tty, u32 baudrate, u32 old_baudrate, u8 lcr)
 558{
 559	struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
 560	u32 divisor;
 561	int status;
 562	int i;
 563	int idx;
 564	u8 value;
 565	u32 baud_list[] = {baudrate, old_baudrate, F81534_DEFAULT_BAUD_RATE};
 566
 567	for (i = 0; i < ARRAY_SIZE(baud_list); ++i) {
 568		baudrate = baud_list[i];
 569		if (baudrate == 0) {
 570			tty_encode_baud_rate(tty, 0, 0);
 571			return 0;
 572		}
 573
 574		idx = f81534_find_clk(baudrate);
 575		if (idx >= 0) {
 576			tty_encode_baud_rate(tty, baudrate, baudrate);
 577			break;
 578		}
 579	}
 580
 581	if (idx < 0)
 582		return -EINVAL;
 583
 584	port_priv->baud_base = baudrate_table[idx];
 585	port_priv->shadow_clk &= ~F81534_CLK_MASK;
 586	port_priv->shadow_clk |= clock_table[idx];
 587
 588	status = f81534_set_port_register(port, F81534_CLOCK_REG,
 589			port_priv->shadow_clk);
 590	if (status) {
 591		dev_err(&port->dev, "CLOCK_REG setting failed\n");
 592		return status;
 593	}
 594
 595	if (baudrate <= 1200)
 596		value = F81534_1X_RXTRIGGER;	/* 128 FIFO & TL: 1x */
 597	else
 598		value = F81534_8X_RXTRIGGER;	/* 128 FIFO & TL: 8x */
 599
 600	status = f81534_set_port_register(port, F81534_CONFIG1_REG, value);
 601	if (status) {
 602		dev_err(&port->dev, "%s: CONFIG1 setting failed\n", __func__);
 603		return status;
 604	}
 605
 606	if (baudrate <= 1200)
 607		value = UART_FCR_TRIGGER_1 | UART_FCR_ENABLE_FIFO; /* TL: 1 */
 608	else
 609		value = UART_FCR_TRIGGER_8 | UART_FCR_ENABLE_FIFO; /* TL: 8 */
 610
 611	status = f81534_set_port_register(port, F81534_FIFO_CONTROL_REG,
 612						value);
 613	if (status) {
 614		dev_err(&port->dev, "%s: FCR setting failed\n", __func__);
 615		return status;
 616	}
 617
 618	divisor = f81534_calc_baud_divisor(baudrate, port_priv->baud_base);
 619
 620	mutex_lock(&port_priv->lcr_mutex);
 621
 622	value = UART_LCR_DLAB;
 623	status = f81534_set_port_register(port, F81534_LINE_CONTROL_REG,
 624						value);
 625	if (status) {
 626		dev_err(&port->dev, "%s: set LCR failed\n", __func__);
 627		goto out_unlock;
 628	}
 629
 630	value = divisor & 0xff;
 631	status = f81534_set_port_register(port, F81534_DIVISOR_LSB_REG, value);
 632	if (status) {
 633		dev_err(&port->dev, "%s: set DLAB LSB failed\n", __func__);
 634		goto out_unlock;
 635	}
 636
 637	value = (divisor >> 8) & 0xff;
 638	status = f81534_set_port_register(port, F81534_DIVISOR_MSB_REG, value);
 639	if (status) {
 640		dev_err(&port->dev, "%s: set DLAB MSB failed\n", __func__);
 641		goto out_unlock;
 642	}
 643
 644	value = lcr | (port_priv->shadow_lcr & UART_LCR_SBC);
 645	status = f81534_set_port_register(port, F81534_LINE_CONTROL_REG,
 646						value);
 647	if (status) {
 648		dev_err(&port->dev, "%s: set LCR failed\n", __func__);
 649		goto out_unlock;
 650	}
 651
 652	port_priv->shadow_lcr = value;
 653out_unlock:
 654	mutex_unlock(&port_priv->lcr_mutex);
 655
 656	return status;
 657}
 658
 659static int f81534_break_ctl(struct tty_struct *tty, int break_state)
 660{
 661	struct usb_serial_port *port = tty->driver_data;
 662	struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
 663	int status;
 664
 665	mutex_lock(&port_priv->lcr_mutex);
 666
 667	if (break_state)
 668		port_priv->shadow_lcr |= UART_LCR_SBC;
 669	else
 670		port_priv->shadow_lcr &= ~UART_LCR_SBC;
 671
 672	status = f81534_set_port_register(port, F81534_LINE_CONTROL_REG,
 673					port_priv->shadow_lcr);
 674	if (status)
 675		dev_err(&port->dev, "set break failed: %d\n", status);
 676
 677	mutex_unlock(&port_priv->lcr_mutex);
 678
 679	return status;
 680}
 681
 682static int f81534_update_mctrl(struct usb_serial_port *port, unsigned int set,
 683				unsigned int clear)
 684{
 685	struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
 686	int status;
 687	u8 tmp;
 688
 689	if (((set | clear) & (TIOCM_DTR | TIOCM_RTS)) == 0)
 690		return 0;	/* no change */
 691
 692	mutex_lock(&port_priv->mcr_mutex);
 693
 694	/* 'Set' takes precedence over 'Clear' */
 695	clear &= ~set;
 696
 697	/* Always enable UART_MCR_OUT2 */
 698	tmp = UART_MCR_OUT2 | port_priv->shadow_mcr;
 699
 700	if (clear & TIOCM_DTR)
 701		tmp &= ~UART_MCR_DTR;
 702
 703	if (clear & TIOCM_RTS)
 704		tmp &= ~UART_MCR_RTS;
 705
 706	if (set & TIOCM_DTR)
 707		tmp |= UART_MCR_DTR;
 708
 709	if (set & TIOCM_RTS)
 710		tmp |= UART_MCR_RTS;
 711
 712	status = f81534_set_port_register(port, F81534_MODEM_CONTROL_REG, tmp);
 713	if (status < 0) {
 714		dev_err(&port->dev, "%s: MCR write failed\n", __func__);
 715		mutex_unlock(&port_priv->mcr_mutex);
 716		return status;
 717	}
 718
 719	port_priv->shadow_mcr = tmp;
 720	mutex_unlock(&port_priv->mcr_mutex);
 721	return 0;
 722}
 723
 724/*
 725 * This function will search the data area with token F81534_CUSTOM_VALID_TOKEN
 726 * for latest configuration index. If nothing found
 727 * (*index = F81534_CUSTOM_NO_CUSTOM_DATA), We'll load default configure in
 728 * F81534_DEF_CONF_ADDRESS_START section.
 729 *
 730 * Due to we only use block0 to save data, so *index should be 0 or
 731 * F81534_CUSTOM_NO_CUSTOM_DATA.
 732 */
 733static int f81534_find_config_idx(struct usb_serial *serial, u8 *index)
 734{
 735	u8 tmp;
 736	int status;
 737
 738	status = f81534_read_flash(serial, F81534_CUSTOM_ADDRESS_START, 1,
 739					&tmp);
 740	if (status) {
 741		dev_err(&serial->interface->dev, "%s: read failed: %d\n",
 742				__func__, status);
 743		return status;
 744	}
 745
 746	/* We'll use the custom data when the data is valid. */
 747	if (tmp == F81534_CUSTOM_VALID_TOKEN)
 748		*index = 0;
 749	else
 750		*index = F81534_CUSTOM_NO_CUSTOM_DATA;
 751
 752	return 0;
 753}
 754
 755/*
 756 * The F81532/534 will not report serial port to USB serial subsystem when
 757 * H/W DCD/DSR/CTS/RI/RX pin connected to ground.
 758 *
 759 * To detect RX pin status, we'll enable MCR interal loopback, disable it and
 760 * delayed for 60ms. It connected to ground If LSR register report UART_LSR_BI.
 761 */
 762static bool f81534_check_port_hw_disabled(struct usb_serial *serial, int phy)
 763{
 764	int status;
 765	u8 old_mcr;
 766	u8 msr;
 767	u8 lsr;
 768	u8 msr_mask;
 769
 770	msr_mask = UART_MSR_DCD | UART_MSR_RI | UART_MSR_DSR | UART_MSR_CTS;
 771
 772	status = f81534_get_phy_port_register(serial, phy,
 773				F81534_MODEM_STATUS_REG, &msr);
 774	if (status)
 775		return false;
 776
 777	if ((msr & msr_mask) != msr_mask)
 778		return false;
 779
 780	status = f81534_set_phy_port_register(serial, phy,
 781				F81534_FIFO_CONTROL_REG, UART_FCR_ENABLE_FIFO |
 782				UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
 783	if (status)
 784		return false;
 785
 786	status = f81534_get_phy_port_register(serial, phy,
 787				F81534_MODEM_CONTROL_REG, &old_mcr);
 788	if (status)
 789		return false;
 790
 791	status = f81534_set_phy_port_register(serial, phy,
 792				F81534_MODEM_CONTROL_REG, UART_MCR_LOOP);
 793	if (status)
 794		return false;
 795
 796	status = f81534_set_phy_port_register(serial, phy,
 797				F81534_MODEM_CONTROL_REG, 0x0);
 798	if (status)
 799		return false;
 800
 801	msleep(60);
 802
 803	status = f81534_get_phy_port_register(serial, phy,
 804				F81534_LINE_STATUS_REG, &lsr);
 805	if (status)
 806		return false;
 807
 808	status = f81534_set_phy_port_register(serial, phy,
 809				F81534_MODEM_CONTROL_REG, old_mcr);
 810	if (status)
 811		return false;
 812
 813	if ((lsr & UART_LSR_BI) == UART_LSR_BI)
 814		return true;
 815
 816	return false;
 817}
 818
 819/*
 820 * We had 2 generation of F81532/534 IC. All has an internal storage.
 821 *
 822 * 1st is pure USB-to-TTL RS232 IC and designed for 4 ports only, no any
 823 * internal data will used. All mode and gpio control should manually set
 824 * by AP or Driver and all storage space value are 0xff. The
 825 * f81534_calc_num_ports() will run to final we marked as "oldest version"
 826 * for this IC.
 827 *
 828 * 2rd is designed to more generic to use any transceiver and this is our
 829 * mass production type. We'll save data in F81534_CUSTOM_ADDRESS_START
 830 * (0x2f00) with 9bytes. The 1st byte is a indicater. If the token is
 831 * F81534_CUSTOM_VALID_TOKEN(0xf0), the IC is 2nd gen type, the following
 832 * 4bytes save port mode (0:RS232/1:RS485 Invert/2:RS485), and the last
 833 * 4bytes save GPIO state(value from 0~7 to represent 3 GPIO output pin).
 834 * The f81534_calc_num_ports() will run to "new style" with checking
 835 * F81534_PORT_UNAVAILABLE section.
 836 */
 837static int f81534_calc_num_ports(struct usb_serial *serial,
 838					struct usb_serial_endpoints *epds)
 839{
 840	struct f81534_serial_private *serial_priv;
 841	struct device *dev = &serial->interface->dev;
 842	int size_bulk_in = usb_endpoint_maxp(epds->bulk_in[0]);
 843	int size_bulk_out = usb_endpoint_maxp(epds->bulk_out[0]);
 844	u8 num_port = 0;
 845	int index = 0;
 846	int status;
 847	int i;
 848
 849	if (size_bulk_out != F81534_WRITE_BUFFER_SIZE ||
 850			size_bulk_in != F81534_MAX_RECEIVE_BLOCK_SIZE) {
 851		dev_err(dev, "unsupported endpoint max packet size\n");
 852		return -ENODEV;
 853	}
 854
 855	serial_priv = devm_kzalloc(&serial->interface->dev,
 856					sizeof(*serial_priv), GFP_KERNEL);
 857	if (!serial_priv)
 858		return -ENOMEM;
 859
 860	usb_set_serial_data(serial, serial_priv);
 861	mutex_init(&serial_priv->urb_mutex);
 862
 863	/* Check had custom setting */
 864	status = f81534_find_config_idx(serial, &serial_priv->setting_idx);
 865	if (status) {
 866		dev_err(&serial->interface->dev, "%s: find idx failed: %d\n",
 867				__func__, status);
 868		return status;
 869	}
 870
 871	/*
 872	 * We'll read custom data only when data available, otherwise we'll
 873	 * read default value instead.
 874	 */
 875	if (serial_priv->setting_idx != F81534_CUSTOM_NO_CUSTOM_DATA) {
 876		status = f81534_read_flash(serial,
 877						F81534_CUSTOM_ADDRESS_START +
 878						F81534_CONF_OFFSET,
 879						sizeof(serial_priv->conf_data),
 880						serial_priv->conf_data);
 881		if (status) {
 882			dev_err(&serial->interface->dev,
 883					"%s: get custom data failed: %d\n",
 884					__func__, status);
 885			return status;
 886		}
 887
 888		dev_dbg(&serial->interface->dev,
 889				"%s: read config from block: %d\n", __func__,
 890				serial_priv->setting_idx);
 891	} else {
 892		/* Read default board setting */
 893		status = f81534_read_flash(serial,
 894				F81534_DEF_CONF_ADDRESS_START,
 895				sizeof(serial_priv->conf_data),
 896				serial_priv->conf_data);
 897		if (status) {
 898			dev_err(&serial->interface->dev,
 899					"%s: read failed: %d\n", __func__,
 900					status);
 901			return status;
 902		}
 903
 904		dev_dbg(&serial->interface->dev, "%s: read default config\n",
 905				__func__);
 906	}
 907
 908	/* New style, find all possible ports */
 909	for (i = 0; i < F81534_NUM_PORT; ++i) {
 910		if (f81534_check_port_hw_disabled(serial, i))
 911			serial_priv->conf_data[i] |= F81534_PORT_UNAVAILABLE;
 912
 913		if (serial_priv->conf_data[i] & F81534_PORT_UNAVAILABLE)
 914			continue;
 915
 916		++num_port;
 917	}
 918
 919	if (!num_port) {
 920		dev_warn(&serial->interface->dev,
 921			"no config found, assuming 4 ports\n");
 922		num_port = 4;		/* Nothing found, oldest version IC */
 923	}
 924
 925	/* Assign phy-to-logic mapping */
 926	for (i = 0; i < F81534_NUM_PORT; ++i) {
 927		if (serial_priv->conf_data[i] & F81534_PORT_UNAVAILABLE)
 928			continue;
 929
 930		serial_priv->tty_idx[i] = index++;
 931		dev_dbg(&serial->interface->dev,
 932				"%s: phy_num: %d, tty_idx: %d\n", __func__, i,
 933				serial_priv->tty_idx[i]);
 934	}
 935
 936	/*
 937	 * Setup bulk-out endpoint multiplexing. All ports share the same
 938	 * bulk-out endpoint.
 939	 */
 940	BUILD_BUG_ON(ARRAY_SIZE(epds->bulk_out) < F81534_NUM_PORT);
 941
 942	for (i = 1; i < num_port; ++i)
 943		epds->bulk_out[i] = epds->bulk_out[0];
 944
 945	epds->num_bulk_out = num_port;
 946
 947	return num_port;
 948}
 949
 950static void f81534_set_termios(struct tty_struct *tty,
 951			       struct usb_serial_port *port,
 952			       const struct ktermios *old_termios)
 953{
 954	u8 new_lcr = 0;
 955	int status;
 956	u32 baud;
 957	u32 old_baud;
 958
 959	if (C_BAUD(tty) == B0)
 960		f81534_update_mctrl(port, 0, TIOCM_DTR | TIOCM_RTS);
 961	else if (old_termios && (old_termios->c_cflag & CBAUD) == B0)
 962		f81534_update_mctrl(port, TIOCM_DTR | TIOCM_RTS, 0);
 963
 964	if (C_PARENB(tty)) {
 965		new_lcr |= UART_LCR_PARITY;
 966
 967		if (!C_PARODD(tty))
 968			new_lcr |= UART_LCR_EPAR;
 969
 970		if (C_CMSPAR(tty))
 971			new_lcr |= UART_LCR_SPAR;
 972	}
 973
 974	if (C_CSTOPB(tty))
 975		new_lcr |= UART_LCR_STOP;
 976
 977	new_lcr |= UART_LCR_WLEN(tty_get_char_size(tty->termios.c_cflag));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 978
 979	baud = tty_get_baud_rate(tty);
 980	if (!baud)
 981		return;
 982
 983	if (old_termios)
 984		old_baud = tty_termios_baud_rate(old_termios);
 985	else
 986		old_baud = F81534_DEFAULT_BAUD_RATE;
 
 
 
 
 987
 988	dev_dbg(&port->dev, "%s: baud: %d\n", __func__, baud);
 989
 990	status = f81534_set_port_config(port, tty, baud, old_baud, new_lcr);
 991	if (status < 0) {
 992		dev_err(&port->dev, "%s: set port config failed: %d\n",
 993				__func__, status);
 994	}
 995}
 996
 997static int f81534_submit_read_urb(struct usb_serial *serial, gfp_t flags)
 998{
 999	return usb_serial_generic_submit_read_urbs(serial->port[0], flags);
1000}
1001
1002static void f81534_msr_changed(struct usb_serial_port *port, u8 msr)
1003{
1004	struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
1005	struct tty_struct *tty;
1006	unsigned long flags;
1007	u8 old_msr;
1008
1009	if (!(msr & UART_MSR_ANY_DELTA))
1010		return;
1011
1012	spin_lock_irqsave(&port_priv->msr_lock, flags);
1013	old_msr = port_priv->shadow_msr;
1014	port_priv->shadow_msr = msr;
1015	spin_unlock_irqrestore(&port_priv->msr_lock, flags);
1016
1017	dev_dbg(&port->dev, "%s: MSR from %02x to %02x\n", __func__, old_msr,
1018			msr);
1019
1020	/* Update input line counters */
1021	if (msr & UART_MSR_DCTS)
1022		port->icount.cts++;
1023	if (msr & UART_MSR_DDSR)
1024		port->icount.dsr++;
1025	if (msr & UART_MSR_DDCD)
1026		port->icount.dcd++;
1027	if (msr & UART_MSR_TERI)
1028		port->icount.rng++;
1029
1030	wake_up_interruptible(&port->port.delta_msr_wait);
1031
1032	if (!(msr & UART_MSR_DDCD))
1033		return;
1034
1035	dev_dbg(&port->dev, "%s: DCD Changed: phy_num: %d from %x to %x\n",
1036			__func__, port_priv->phy_num, old_msr, msr);
1037
1038	tty = tty_port_tty_get(&port->port);
1039	if (!tty)
1040		return;
1041
1042	usb_serial_handle_dcd_change(port, tty, msr & UART_MSR_DCD);
1043	tty_kref_put(tty);
1044}
1045
1046static int f81534_read_msr(struct usb_serial_port *port)
1047{
1048	struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
1049	unsigned long flags;
1050	int status;
1051	u8 msr;
1052
1053	/* Get MSR initial value */
1054	status = f81534_get_port_register(port, F81534_MODEM_STATUS_REG, &msr);
1055	if (status)
1056		return status;
1057
1058	/* Force update current state */
1059	spin_lock_irqsave(&port_priv->msr_lock, flags);
1060	port_priv->shadow_msr = msr;
1061	spin_unlock_irqrestore(&port_priv->msr_lock, flags);
1062
1063	return 0;
1064}
1065
1066static int f81534_open(struct tty_struct *tty, struct usb_serial_port *port)
1067{
1068	struct f81534_serial_private *serial_priv =
1069			usb_get_serial_data(port->serial);
1070	struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
1071	int status;
1072
1073	status = f81534_set_port_register(port,
1074				F81534_FIFO_CONTROL_REG, UART_FCR_ENABLE_FIFO |
1075				UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
1076	if (status) {
1077		dev_err(&port->dev, "%s: Clear FIFO failed: %d\n", __func__,
1078				status);
1079		return status;
1080	}
1081
1082	if (tty)
1083		f81534_set_termios(tty, port, NULL);
1084
1085	status = f81534_read_msr(port);
1086	if (status)
1087		return status;
1088
1089	mutex_lock(&serial_priv->urb_mutex);
1090
1091	/* Submit Read URBs for first port opened */
1092	if (!serial_priv->opened_port) {
1093		status = f81534_submit_read_urb(port->serial, GFP_KERNEL);
1094		if (status)
1095			goto exit;
1096	}
1097
1098	serial_priv->opened_port++;
1099
1100exit:
1101	mutex_unlock(&serial_priv->urb_mutex);
1102
1103	set_bit(F81534_TX_EMPTY_BIT, &port_priv->tx_empty);
1104	return status;
1105}
1106
1107static void f81534_close(struct usb_serial_port *port)
1108{
1109	struct f81534_serial_private *serial_priv =
1110			usb_get_serial_data(port->serial);
1111	struct usb_serial_port *port0 = port->serial->port[0];
1112	unsigned long flags;
1113	size_t i;
1114
1115	usb_kill_urb(port->write_urbs[0]);
1116
1117	spin_lock_irqsave(&port->lock, flags);
1118	kfifo_reset_out(&port->write_fifo);
1119	spin_unlock_irqrestore(&port->lock, flags);
1120
1121	/* Kill Read URBs when final port closed */
1122	mutex_lock(&serial_priv->urb_mutex);
1123	serial_priv->opened_port--;
1124
1125	if (!serial_priv->opened_port) {
1126		for (i = 0; i < ARRAY_SIZE(port0->read_urbs); ++i)
1127			usb_kill_urb(port0->read_urbs[i]);
1128	}
1129
1130	mutex_unlock(&serial_priv->urb_mutex);
1131}
1132
1133static void f81534_get_serial_info(struct tty_struct *tty, struct serial_struct *ss)
 
1134{
1135	struct usb_serial_port *port = tty->driver_data;
1136	struct f81534_port_private *port_priv;
 
1137
1138	port_priv = usb_get_serial_port_data(port);
1139
1140	ss->baud_base = port_priv->baud_base;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1141}
1142
1143static void f81534_process_per_serial_block(struct usb_serial_port *port,
1144		u8 *data)
1145{
1146	struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
1147	int phy_num = data[0];
1148	size_t read_size = 0;
1149	size_t i;
1150	char tty_flag;
1151	int status;
1152	u8 lsr;
1153
1154	/*
1155	 * The block layout is 128 Bytes
1156	 * index 0: port phy idx (e.g., 0,1,2,3),
1157	 * index 1: It's could be
1158	 *			F81534_TOKEN_RECEIVE
1159	 *			F81534_TOKEN_TX_EMPTY
1160	 *			F81534_TOKEN_MSR_CHANGE
1161	 * index 2: serial in size (data+lsr, must be even)
1162	 *			meaningful for F81534_TOKEN_RECEIVE only
1163	 * index 3: current MSR with this device
1164	 * index 4~127: serial in data block (data+lsr, must be even)
1165	 */
1166	switch (data[1]) {
1167	case F81534_TOKEN_TX_EMPTY:
1168		set_bit(F81534_TX_EMPTY_BIT, &port_priv->tx_empty);
1169
1170		/* Try to submit writer */
1171		status = f81534_submit_writer(port, GFP_ATOMIC);
1172		if (status)
1173			dev_err(&port->dev, "%s: submit failed\n", __func__);
1174		return;
1175
1176	case F81534_TOKEN_MSR_CHANGE:
1177		f81534_msr_changed(port, data[3]);
1178		return;
1179
1180	case F81534_TOKEN_RECEIVE:
1181		read_size = data[2];
1182		if (read_size > F81534_MAX_RX_SIZE) {
1183			dev_err(&port->dev,
1184				"%s: phy: %d read_size: %zu larger than: %d\n",
1185				__func__, phy_num, read_size,
1186				F81534_MAX_RX_SIZE);
1187			return;
1188		}
1189
1190		break;
1191
1192	default:
1193		dev_warn(&port->dev, "%s: unknown token: %02x\n", __func__,
1194				data[1]);
1195		return;
1196	}
1197
1198	for (i = 4; i < 4 + read_size; i += 2) {
1199		tty_flag = TTY_NORMAL;
1200		lsr = data[i + 1];
1201
1202		if (lsr & UART_LSR_BRK_ERROR_BITS) {
1203			if (lsr & UART_LSR_BI) {
1204				tty_flag = TTY_BREAK;
1205				port->icount.brk++;
1206				usb_serial_handle_break(port);
1207			} else if (lsr & UART_LSR_PE) {
1208				tty_flag = TTY_PARITY;
1209				port->icount.parity++;
1210			} else if (lsr & UART_LSR_FE) {
1211				tty_flag = TTY_FRAME;
1212				port->icount.frame++;
1213			}
1214
1215			if (lsr & UART_LSR_OE) {
1216				port->icount.overrun++;
1217				tty_insert_flip_char(&port->port, 0,
1218						TTY_OVERRUN);
1219			}
1220
1221			schedule_work(&port_priv->lsr_work);
1222		}
1223
1224		if (port->sysrq) {
1225			if (usb_serial_handle_sysrq_char(port, data[i]))
1226				continue;
1227		}
1228
1229		tty_insert_flip_char(&port->port, data[i], tty_flag);
1230	}
1231
1232	tty_flip_buffer_push(&port->port);
1233}
1234
1235static void f81534_process_read_urb(struct urb *urb)
1236{
1237	struct f81534_serial_private *serial_priv;
1238	struct usb_serial_port *port;
1239	struct usb_serial *serial;
1240	u8 *buf;
1241	int phy_port_num;
1242	int tty_port_num;
1243	size_t i;
1244
1245	if (!urb->actual_length ||
1246			urb->actual_length % F81534_RECEIVE_BLOCK_SIZE) {
1247		return;
1248	}
1249
1250	port = urb->context;
1251	serial = port->serial;
1252	buf = urb->transfer_buffer;
1253	serial_priv = usb_get_serial_data(serial);
1254
1255	for (i = 0; i < urb->actual_length; i += F81534_RECEIVE_BLOCK_SIZE) {
1256		phy_port_num = buf[i];
1257		if (phy_port_num >= F81534_NUM_PORT) {
1258			dev_err(&port->dev,
1259				"%s: phy_port_num: %d larger than: %d\n",
1260				__func__, phy_port_num, F81534_NUM_PORT);
1261			continue;
1262		}
1263
1264		tty_port_num = serial_priv->tty_idx[phy_port_num];
1265		port = serial->port[tty_port_num];
1266
1267		if (tty_port_initialized(&port->port))
1268			f81534_process_per_serial_block(port, &buf[i]);
1269	}
1270}
1271
1272static void f81534_write_usb_callback(struct urb *urb)
1273{
1274	struct usb_serial_port *port = urb->context;
1275
1276	switch (urb->status) {
1277	case 0:
1278		break;
1279	case -ENOENT:
1280	case -ECONNRESET:
1281	case -ESHUTDOWN:
1282		dev_dbg(&port->dev, "%s - urb stopped: %d\n",
1283				__func__, urb->status);
1284		return;
1285	case -EPIPE:
1286		dev_err(&port->dev, "%s - urb stopped: %d\n",
1287				__func__, urb->status);
1288		return;
1289	default:
1290		dev_dbg(&port->dev, "%s - nonzero urb status: %d\n",
1291				__func__, urb->status);
1292		break;
1293	}
1294}
1295
1296static void f81534_lsr_worker(struct work_struct *work)
1297{
1298	struct f81534_port_private *port_priv;
1299	struct usb_serial_port *port;
1300	int status;
1301	u8 tmp;
 
1302
1303	port_priv = container_of(work, struct f81534_port_private, lsr_work);
1304	port = port_priv->port;
 
 
 
 
 
 
 
 
 
 
1305
1306	status = f81534_get_port_register(port, F81534_LINE_STATUS_REG, &tmp);
1307	if (status)
1308		dev_warn(&port->dev, "read LSR failed: %d\n", status);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1309}
1310
1311static int f81534_set_port_output_pin(struct usb_serial_port *port)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1312{
1313	struct f81534_serial_private *serial_priv;
1314	struct f81534_port_private *port_priv;
1315	struct usb_serial *serial;
1316	const struct f81534_port_out_pin *pins;
1317	int status;
1318	int i;
1319	u8 value;
1320	u8 idx;
1321
1322	serial = port->serial;
1323	serial_priv = usb_get_serial_data(serial);
1324	port_priv = usb_get_serial_port_data(port);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1325
1326	idx = F81534_CONF_INIT_GPIO_OFFSET + port_priv->phy_num;
1327	value = serial_priv->conf_data[idx];
1328	if (value >= F81534_CONF_GPIO_SHUTDOWN) {
 
 
1329		/*
1330		 * Newer IC configure will make transceiver in shutdown mode on
1331		 * initial power on. We need enable it before using UARTs.
1332		 */
1333		idx = F81534_CONF_WORK_GPIO_OFFSET + port_priv->phy_num;
1334		value = serial_priv->conf_data[idx];
1335		if (value >= F81534_CONF_GPIO_SHUTDOWN)
1336			value = F81534_CONF_GPIO_RS232;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1337	}
1338
1339	pins = &f81534_port_out_pins[port_priv->phy_num];
1340
1341	for (i = 0; i < ARRAY_SIZE(pins->pin); ++i) {
1342		status = f81534_set_mask_register(serial,
1343				pins->pin[i].reg_addr, pins->pin[i].reg_mask,
1344				value & BIT(i) ? pins->pin[i].reg_mask : 0);
1345		if (status)
1346			return status;
 
1347	}
1348
1349	dev_dbg(&port->dev, "Output pin (M0/M1/M2): %d\n", value);
1350	return 0;
1351}
1352
1353static int f81534_port_probe(struct usb_serial_port *port)
1354{
1355	struct f81534_serial_private *serial_priv;
1356	struct f81534_port_private *port_priv;
1357	int ret;
1358	u8 value;
1359
1360	serial_priv = usb_get_serial_data(port->serial);
1361	port_priv = devm_kzalloc(&port->dev, sizeof(*port_priv), GFP_KERNEL);
1362	if (!port_priv)
1363		return -ENOMEM;
1364
1365	/*
1366	 * We'll make tx frame error when baud rate from 384~500kps. So we'll
1367	 * delay all tx data frame with 1bit.
1368	 */
1369	port_priv->shadow_clk = F81534_UART_EN | F81534_CLK_TX_DELAY_1BIT;
1370	spin_lock_init(&port_priv->msr_lock);
1371	mutex_init(&port_priv->mcr_mutex);
1372	mutex_init(&port_priv->lcr_mutex);
1373	INIT_WORK(&port_priv->lsr_work, f81534_lsr_worker);
1374
1375	/* Assign logic-to-phy mapping */
1376	ret = f81534_logic_to_phy_port(port->serial, port);
1377	if (ret < 0)
1378		return ret;
1379
1380	port_priv->phy_num = ret;
1381	port_priv->port = port;
1382	usb_set_serial_port_data(port, port_priv);
1383	dev_dbg(&port->dev, "%s: port_number: %d, phy_num: %d\n", __func__,
1384			port->port_number, port_priv->phy_num);
1385
1386	/*
1387	 * The F81532/534 will hang-up when enable LSR interrupt in IER and
1388	 * occur data overrun. So we'll disable the LSR interrupt in probe()
1389	 * and submit the LSR worker to clear LSR state when reported LSR error
1390	 * bit with bulk-in data in f81534_process_per_serial_block().
1391	 */
1392	ret = f81534_set_port_register(port, F81534_INTERRUPT_ENABLE_REG,
1393			UART_IER_RDI | UART_IER_THRI | UART_IER_MSI);
1394	if (ret)
1395		return ret;
1396
1397	value = serial_priv->conf_data[port_priv->phy_num];
1398	switch (value & F81534_PORT_CONF_MODE_MASK) {
1399	case F81534_PORT_CONF_RS485_INVERT:
1400		port_priv->shadow_clk |= F81534_CLK_RS485_MODE |
1401					F81534_CLK_RS485_INVERT;
1402		dev_dbg(&port->dev, "RS485 invert mode\n");
1403		break;
1404	case F81534_PORT_CONF_RS485:
1405		port_priv->shadow_clk |= F81534_CLK_RS485_MODE;
1406		dev_dbg(&port->dev, "RS485 mode\n");
1407		break;
1408
1409	default:
1410	case F81534_PORT_CONF_RS232:
1411		dev_dbg(&port->dev, "RS232 mode\n");
1412		break;
1413	}
1414
1415	return f81534_set_port_output_pin(port);
1416}
1417
1418static void f81534_port_remove(struct usb_serial_port *port)
1419{
1420	struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
1421
1422	flush_work(&port_priv->lsr_work);
1423}
1424
1425static int f81534_tiocmget(struct tty_struct *tty)
1426{
1427	struct usb_serial_port *port = tty->driver_data;
1428	struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
1429	int status;
1430	int r;
1431	u8 msr;
1432	u8 mcr;
1433
1434	/* Read current MSR from device */
1435	status = f81534_get_port_register(port, F81534_MODEM_STATUS_REG, &msr);
1436	if (status)
1437		return status;
1438
1439	mutex_lock(&port_priv->mcr_mutex);
1440	mcr = port_priv->shadow_mcr;
1441	mutex_unlock(&port_priv->mcr_mutex);
1442
1443	r = (mcr & UART_MCR_DTR ? TIOCM_DTR : 0) |
1444	    (mcr & UART_MCR_RTS ? TIOCM_RTS : 0) |
1445	    (msr & UART_MSR_CTS ? TIOCM_CTS : 0) |
1446	    (msr & UART_MSR_DCD ? TIOCM_CAR : 0) |
1447	    (msr & UART_MSR_RI ? TIOCM_RI : 0) |
1448	    (msr & UART_MSR_DSR ? TIOCM_DSR : 0);
1449
1450	return r;
1451}
1452
1453static int f81534_tiocmset(struct tty_struct *tty, unsigned int set,
1454				unsigned int clear)
1455{
1456	struct usb_serial_port *port = tty->driver_data;
1457
1458	return f81534_update_mctrl(port, set, clear);
1459}
1460
1461static void f81534_dtr_rts(struct usb_serial_port *port, int on)
1462{
1463	if (on)
1464		f81534_update_mctrl(port, TIOCM_DTR | TIOCM_RTS, 0);
1465	else
1466		f81534_update_mctrl(port, 0, TIOCM_DTR | TIOCM_RTS);
1467}
1468
1469static int f81534_write(struct tty_struct *tty, struct usb_serial_port *port,
1470			const u8 *buf, int count)
1471{
1472	int bytes_out, status;
1473
1474	if (!count)
1475		return 0;
1476
1477	bytes_out = kfifo_in_locked(&port->write_fifo, buf, count,
1478					&port->lock);
1479
1480	status = f81534_submit_writer(port, GFP_ATOMIC);
1481	if (status) {
1482		dev_err(&port->dev, "%s: submit failed\n", __func__);
1483		return status;
1484	}
1485
1486	return bytes_out;
1487}
1488
1489static bool f81534_tx_empty(struct usb_serial_port *port)
1490{
1491	struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
1492
1493	return test_bit(F81534_TX_EMPTY_BIT, &port_priv->tx_empty);
1494}
1495
1496static int f81534_resume(struct usb_serial *serial)
1497{
1498	struct f81534_serial_private *serial_priv =
1499			usb_get_serial_data(serial);
1500	struct usb_serial_port *port;
1501	int error = 0;
1502	int status;
1503	size_t i;
1504
1505	/*
1506	 * We'll register port 0 bulkin when port had opened, It'll take all
1507	 * port received data, MSR register change and TX_EMPTY information.
1508	 */
1509	mutex_lock(&serial_priv->urb_mutex);
1510
1511	if (serial_priv->opened_port) {
1512		status = f81534_submit_read_urb(serial, GFP_NOIO);
1513		if (status) {
1514			mutex_unlock(&serial_priv->urb_mutex);
1515			return status;
1516		}
1517	}
1518
1519	mutex_unlock(&serial_priv->urb_mutex);
1520
1521	for (i = 0; i < serial->num_ports; i++) {
1522		port = serial->port[i];
1523		if (!tty_port_initialized(&port->port))
1524			continue;
1525
1526		status = f81534_submit_writer(port, GFP_NOIO);
1527		if (status) {
1528			dev_err(&port->dev, "%s: submit failed\n", __func__);
1529			++error;
1530		}
1531	}
1532
1533	if (error)
1534		return -EIO;
1535
1536	return 0;
1537}
1538
1539static struct usb_serial_driver f81534_device = {
1540	.driver = {
1541		   .owner = THIS_MODULE,
1542		   .name = "f81534",
1543	},
1544	.description =		DRIVER_DESC,
1545	.id_table =		f81534_id_table,
1546	.num_bulk_in =		1,
1547	.num_bulk_out =		1,
1548	.open =			f81534_open,
1549	.close =		f81534_close,
1550	.write =		f81534_write,
1551	.tx_empty =		f81534_tx_empty,
1552	.calc_num_ports =	f81534_calc_num_ports,
 
 
1553	.port_probe =		f81534_port_probe,
1554	.port_remove =		f81534_port_remove,
1555	.break_ctl =		f81534_break_ctl,
1556	.dtr_rts =		f81534_dtr_rts,
1557	.process_read_urb =	f81534_process_read_urb,
1558	.get_serial =		f81534_get_serial_info,
1559	.tiocmget =		f81534_tiocmget,
1560	.tiocmset =		f81534_tiocmset,
1561	.write_bulk_callback =	f81534_write_usb_callback,
1562	.set_termios =		f81534_set_termios,
1563	.resume =		f81534_resume,
1564};
1565
1566static struct usb_serial_driver *const serial_drivers[] = {
1567	&f81534_device, NULL
1568};
1569
1570module_usb_serial_driver(serial_drivers, f81534_id_table);
1571
1572MODULE_DEVICE_TABLE(usb, f81534_id_table);
1573MODULE_DESCRIPTION(DRIVER_DESC);
1574MODULE_AUTHOR("Peter Hong <Peter_Hong@fintek.com.tw>");
1575MODULE_AUTHOR("Tom Tsai <Tom_Tsai@fintek.com.tw>");
1576MODULE_LICENSE("GPL");
v4.10.11
 
   1/*
   2 * F81532/F81534 USB to Serial Ports Bridge
   3 *
   4 * F81532 => 2 Serial Ports
   5 * F81534 => 4 Serial Ports
   6 *
   7 * This program is free software; you can redistribute it and/or modify
   8 * it under the terms of the GNU General Public License as published by
   9 * the Free Software Foundation; either version 2 of the License, or
  10 * (at your option) any later version.
  11 *
  12 * Copyright (C) 2016 Feature Integration Technology Inc., (Fintek)
  13 * Copyright (C) 2016 Tom Tsai (Tom_Tsai@fintek.com.tw)
  14 * Copyright (C) 2016 Peter Hong (Peter_Hong@fintek.com.tw)
  15 *
  16 * The F81532/F81534 had 1 control endpoint for setting, 1 endpoint bulk-out
  17 * for all serial port TX and 1 endpoint bulk-in for all serial port read in
  18 * (Read Data/MSR/LSR).
  19 *
  20 * Write URB is fixed with 512bytes, per serial port used 128Bytes.
  21 * It can be described by f81534_prepare_write_buffer()
  22 *
  23 * Read URB is 512Bytes max, per serial port used 128Bytes.
  24 * It can be described by f81534_process_read_urb() and maybe received with
  25 * 128x1,2,3,4 bytes.
  26 *
  27 */
  28#include <linux/slab.h>
  29#include <linux/tty.h>
  30#include <linux/tty_flip.h>
  31#include <linux/usb.h>
  32#include <linux/usb/serial.h>
  33#include <linux/serial_reg.h>
  34#include <linux/module.h>
  35#include <linux/uaccess.h>
  36
  37/* Serial Port register Address */
  38#define F81534_UART_BASE_ADDRESS	0x1200
  39#define F81534_UART_OFFSET		0x10
  40#define F81534_DIVISOR_LSB_REG		(0x00 + F81534_UART_BASE_ADDRESS)
  41#define F81534_DIVISOR_MSB_REG		(0x01 + F81534_UART_BASE_ADDRESS)
 
  42#define F81534_FIFO_CONTROL_REG		(0x02 + F81534_UART_BASE_ADDRESS)
  43#define F81534_LINE_CONTROL_REG		(0x03 + F81534_UART_BASE_ADDRESS)
  44#define F81534_MODEM_CONTROL_REG	(0x04 + F81534_UART_BASE_ADDRESS)
 
  45#define F81534_MODEM_STATUS_REG		(0x06 + F81534_UART_BASE_ADDRESS)
 
  46#define F81534_CONFIG1_REG		(0x09 + F81534_UART_BASE_ADDRESS)
  47
  48#define F81534_DEF_CONF_ADDRESS_START	0x3000
  49#define F81534_DEF_CONF_SIZE		8
  50
  51#define F81534_CUSTOM_ADDRESS_START	0x2f00
  52#define F81534_CUSTOM_DATA_SIZE		0x10
  53#define F81534_CUSTOM_NO_CUSTOM_DATA	0xff
  54#define F81534_CUSTOM_VALID_TOKEN	0xf0
  55#define F81534_CONF_OFFSET		1
 
 
 
 
  56
  57#define F81534_MAX_DATA_BLOCK		64
  58#define F81534_MAX_BUS_RETRY		20
  59
  60/* Default URB timeout for USB operations */
  61#define F81534_USB_MAX_RETRY		10
  62#define F81534_USB_TIMEOUT		1000
  63#define F81534_SET_GET_REGISTER		0xA0
  64
  65#define F81534_NUM_PORT			4
  66#define F81534_UNUSED_PORT		0xff
  67#define F81534_WRITE_BUFFER_SIZE	512
  68
  69#define DRIVER_DESC			"Fintek F81532/F81534"
  70#define FINTEK_VENDOR_ID_1		0x1934
  71#define FINTEK_VENDOR_ID_2		0x2C42
  72#define FINTEK_DEVICE_ID		0x1202
  73#define F81534_MAX_TX_SIZE		124
  74#define F81534_MAX_RX_SIZE		124
  75#define F81534_RECEIVE_BLOCK_SIZE	128
  76#define F81534_MAX_RECEIVE_BLOCK_SIZE	512
  77
  78#define F81534_TOKEN_RECEIVE		0x01
  79#define F81534_TOKEN_WRITE		0x02
  80#define F81534_TOKEN_TX_EMPTY		0x03
  81#define F81534_TOKEN_MSR_CHANGE		0x04
  82
  83/*
  84 * We used interal SPI bus to access FLASH section. We must wait the SPI bus to
  85 * idle if we performed any command.
  86 *
  87 * SPI Bus status register: F81534_BUS_REG_STATUS
  88 *	Bit 0/1	: BUSY
  89 *	Bit 2	: IDLE
  90 */
  91#define F81534_BUS_BUSY			(BIT(0) | BIT(1))
  92#define F81534_BUS_IDLE			BIT(2)
  93#define F81534_BUS_READ_DATA		0x1004
  94#define F81534_BUS_REG_STATUS		0x1003
  95#define F81534_BUS_REG_START		0x1002
  96#define F81534_BUS_REG_END		0x1001
  97
  98#define F81534_CMD_READ			0x03
  99
 100#define F81534_DEFAULT_BAUD_RATE	9600
 101#define F81534_MAX_BAUDRATE		115200
 102
 
 
 
 
 103#define F81534_PORT_CONF_DISABLE_PORT	BIT(3)
 104#define F81534_PORT_CONF_NOT_EXIST_PORT	BIT(7)
 105#define F81534_PORT_UNAVAILABLE		\
 106	(F81534_PORT_CONF_DISABLE_PORT | F81534_PORT_CONF_NOT_EXIST_PORT)
 107
 
 108#define F81534_1X_RXTRIGGER		0xc3
 109#define F81534_8X_RXTRIGGER		0xcf
 110
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 111static const struct usb_device_id f81534_id_table[] = {
 112	{ USB_DEVICE(FINTEK_VENDOR_ID_1, FINTEK_DEVICE_ID) },
 113	{ USB_DEVICE(FINTEK_VENDOR_ID_2, FINTEK_DEVICE_ID) },
 114	{}			/* Terminating entry */
 115};
 116
 117#define F81534_TX_EMPTY_BIT		0
 118
 119struct f81534_serial_private {
 120	u8 conf_data[F81534_DEF_CONF_SIZE];
 121	int tty_idx[F81534_NUM_PORT];
 122	u8 setting_idx;
 123	int opened_port;
 124	struct mutex urb_mutex;
 125};
 126
 127struct f81534_port_private {
 128	struct mutex mcr_mutex;
 
 
 
 129	unsigned long tx_empty;
 130	spinlock_t msr_lock;
 
 131	u8 shadow_mcr;
 
 132	u8 shadow_msr;
 
 133	u8 phy_num;
 134};
 135
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 136static int f81534_logic_to_phy_port(struct usb_serial *serial,
 137					struct usb_serial_port *port)
 138{
 139	struct f81534_serial_private *serial_priv =
 140			usb_get_serial_data(port->serial);
 141	int count = 0;
 142	int i;
 143
 144	for (i = 0; i < F81534_NUM_PORT; ++i) {
 145		if (serial_priv->conf_data[i] & F81534_PORT_UNAVAILABLE)
 146			continue;
 147
 148		if (port->port_number == count)
 149			return i;
 150
 151		++count;
 152	}
 153
 154	return -ENODEV;
 155}
 156
 157static int f81534_set_register(struct usb_serial *serial, u16 reg, u8 data)
 158{
 159	struct usb_interface *interface = serial->interface;
 160	struct usb_device *dev = serial->dev;
 161	size_t count = F81534_USB_MAX_RETRY;
 162	int status;
 163	u8 *tmp;
 164
 165	tmp = kmalloc(sizeof(u8), GFP_KERNEL);
 166	if (!tmp)
 167		return -ENOMEM;
 168
 169	*tmp = data;
 170
 171	/*
 172	 * Our device maybe not reply when heavily loading, We'll retry for
 173	 * F81534_USB_MAX_RETRY times.
 174	 */
 175	while (count--) {
 176		status = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
 177					 F81534_SET_GET_REGISTER,
 178					 USB_TYPE_VENDOR | USB_DIR_OUT,
 179					 reg, 0, tmp, sizeof(u8),
 180					 F81534_USB_TIMEOUT);
 181		if (status > 0) {
 182			status = 0;
 183			break;
 184		} else if (status == 0) {
 185			status = -EIO;
 186		}
 187	}
 188
 189	if (status < 0) {
 190		dev_err(&interface->dev, "%s: reg: %x data: %x failed: %d\n",
 191				__func__, reg, data, status);
 192	}
 193
 194	kfree(tmp);
 195	return status;
 196}
 197
 198static int f81534_get_register(struct usb_serial *serial, u16 reg, u8 *data)
 199{
 200	struct usb_interface *interface = serial->interface;
 201	struct usb_device *dev = serial->dev;
 202	size_t count = F81534_USB_MAX_RETRY;
 203	int status;
 204	u8 *tmp;
 205
 206	tmp = kmalloc(sizeof(u8), GFP_KERNEL);
 207	if (!tmp)
 208		return -ENOMEM;
 209
 210	/*
 211	 * Our device maybe not reply when heavily loading, We'll retry for
 212	 * F81534_USB_MAX_RETRY times.
 213	 */
 214	while (count--) {
 215		status = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
 216					 F81534_SET_GET_REGISTER,
 217					 USB_TYPE_VENDOR | USB_DIR_IN,
 218					 reg, 0, tmp, sizeof(u8),
 219					 F81534_USB_TIMEOUT);
 220		if (status > 0) {
 221			status = 0;
 222			break;
 223		} else if (status == 0) {
 224			status = -EIO;
 225		}
 226	}
 227
 228	if (status < 0) {
 229		dev_err(&interface->dev, "%s: reg: %x failed: %d\n", __func__,
 230				reg, status);
 231		goto end;
 232	}
 233
 234	*data = *tmp;
 235
 236end:
 237	kfree(tmp);
 238	return status;
 239}
 240
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 241static int f81534_set_port_register(struct usb_serial_port *port, u16 reg,
 242					u8 data)
 243{
 244	struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
 245
 246	return f81534_set_register(port->serial,
 247			reg + port_priv->phy_num * F81534_UART_OFFSET, data);
 248}
 249
 250static int f81534_get_port_register(struct usb_serial_port *port, u16 reg,
 251					u8 *data)
 252{
 253	struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
 254
 255	return f81534_get_register(port->serial,
 256			reg + port_priv->phy_num * F81534_UART_OFFSET, data);
 257}
 258
 259/*
 260 * If we try to access the internal flash via SPI bus, we should check the bus
 261 * status for every command. e.g., F81534_BUS_REG_START/F81534_BUS_REG_END
 262 */
 263static int f81534_wait_for_spi_idle(struct usb_serial *serial)
 264{
 265	size_t count = F81534_MAX_BUS_RETRY;
 266	u8 tmp;
 267	int status;
 268
 269	do {
 270		status = f81534_get_register(serial, F81534_BUS_REG_STATUS,
 271						&tmp);
 272		if (status)
 273			return status;
 274
 275		if (tmp & F81534_BUS_BUSY)
 276			continue;
 277
 278		if (tmp & F81534_BUS_IDLE)
 279			break;
 280
 281	} while (--count);
 282
 283	if (!count) {
 284		dev_err(&serial->interface->dev,
 285				"%s: timed out waiting for idle SPI bus\n",
 286				__func__);
 287		return -EIO;
 288	}
 289
 290	return f81534_set_register(serial, F81534_BUS_REG_STATUS,
 291				tmp & ~F81534_BUS_IDLE);
 292}
 293
 294static int f81534_get_spi_register(struct usb_serial *serial, u16 reg,
 295					u8 *data)
 296{
 297	int status;
 298
 299	status = f81534_get_register(serial, reg, data);
 300	if (status)
 301		return status;
 302
 303	return f81534_wait_for_spi_idle(serial);
 304}
 305
 306static int f81534_set_spi_register(struct usb_serial *serial, u16 reg, u8 data)
 307{
 308	int status;
 309
 310	status = f81534_set_register(serial, reg, data);
 311	if (status)
 312		return status;
 313
 314	return f81534_wait_for_spi_idle(serial);
 315}
 316
 317static int f81534_read_flash(struct usb_serial *serial, u32 address,
 318				size_t size, u8 *buf)
 319{
 320	u8 tmp_buf[F81534_MAX_DATA_BLOCK];
 321	size_t block = 0;
 322	size_t read_size;
 323	size_t count;
 324	int status;
 325	int offset;
 326	u16 reg_tmp;
 327
 328	status = f81534_set_spi_register(serial, F81534_BUS_REG_START,
 329					F81534_CMD_READ);
 330	if (status)
 331		return status;
 332
 333	status = f81534_set_spi_register(serial, F81534_BUS_REG_START,
 334					(address >> 16) & 0xff);
 335	if (status)
 336		return status;
 337
 338	status = f81534_set_spi_register(serial, F81534_BUS_REG_START,
 339					(address >> 8) & 0xff);
 340	if (status)
 341		return status;
 342
 343	status = f81534_set_spi_register(serial, F81534_BUS_REG_START,
 344					(address >> 0) & 0xff);
 345	if (status)
 346		return status;
 347
 348	/* Continuous read mode */
 349	do {
 350		read_size = min_t(size_t, F81534_MAX_DATA_BLOCK, size);
 351
 352		for (count = 0; count < read_size; ++count) {
 353			/* To write F81534_BUS_REG_END when final byte */
 354			if (size <= F81534_MAX_DATA_BLOCK &&
 355					read_size == count + 1)
 356				reg_tmp = F81534_BUS_REG_END;
 357			else
 358				reg_tmp = F81534_BUS_REG_START;
 359
 360			/*
 361			 * Dummy code, force IC to generate a read pulse, the
 362			 * set of value 0xf1 is dont care (any value is ok)
 363			 */
 364			status = f81534_set_spi_register(serial, reg_tmp,
 365					0xf1);
 366			if (status)
 367				return status;
 368
 369			status = f81534_get_spi_register(serial,
 370						F81534_BUS_READ_DATA,
 371						&tmp_buf[count]);
 372			if (status)
 373				return status;
 374
 375			offset = count + block * F81534_MAX_DATA_BLOCK;
 376			buf[offset] = tmp_buf[count];
 377		}
 378
 379		size -= read_size;
 380		++block;
 381	} while (size);
 382
 383	return 0;
 384}
 385
 386static void f81534_prepare_write_buffer(struct usb_serial_port *port, u8 *buf)
 387{
 388	struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
 389	int phy_num = port_priv->phy_num;
 390	u8 tx_len;
 391	int i;
 392
 393	/*
 394	 * The block layout is fixed with 4x128 Bytes, per 128 Bytes a port.
 395	 * index 0: port phy idx (e.g., 0,1,2,3)
 396	 * index 1: only F81534_TOKEN_WRITE
 397	 * index 2: serial TX out length
 398	 * index 3: fix to 0
 399	 * index 4~127: serial out data block
 400	 */
 401	for (i = 0; i < F81534_NUM_PORT; ++i) {
 402		buf[i * F81534_RECEIVE_BLOCK_SIZE] = i;
 403		buf[i * F81534_RECEIVE_BLOCK_SIZE + 1] = F81534_TOKEN_WRITE;
 404		buf[i * F81534_RECEIVE_BLOCK_SIZE + 2] = 0;
 405		buf[i * F81534_RECEIVE_BLOCK_SIZE + 3] = 0;
 406	}
 407
 408	tx_len = kfifo_out_locked(&port->write_fifo,
 409				&buf[phy_num * F81534_RECEIVE_BLOCK_SIZE + 4],
 410				F81534_MAX_TX_SIZE, &port->lock);
 411
 412	buf[phy_num * F81534_RECEIVE_BLOCK_SIZE + 2] = tx_len;
 413}
 414
 415static int f81534_submit_writer(struct usb_serial_port *port, gfp_t mem_flags)
 416{
 417	struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
 418	struct urb *urb;
 419	unsigned long flags;
 420	int result;
 421
 422	/* Check is any data in write_fifo */
 423	spin_lock_irqsave(&port->lock, flags);
 424
 425	if (kfifo_is_empty(&port->write_fifo)) {
 426		spin_unlock_irqrestore(&port->lock, flags);
 427		return 0;
 428	}
 429
 430	spin_unlock_irqrestore(&port->lock, flags);
 431
 432	/* Check H/W is TXEMPTY */
 433	if (!test_and_clear_bit(F81534_TX_EMPTY_BIT, &port_priv->tx_empty))
 434		return 0;
 435
 436	urb = port->write_urbs[0];
 437	f81534_prepare_write_buffer(port, port->bulk_out_buffers[0]);
 438	urb->transfer_buffer_length = F81534_WRITE_BUFFER_SIZE;
 439
 440	result = usb_submit_urb(urb, mem_flags);
 441	if (result) {
 442		set_bit(F81534_TX_EMPTY_BIT, &port_priv->tx_empty);
 443		dev_err(&port->dev, "%s: submit failed: %d\n", __func__,
 444				result);
 445		return result;
 446	}
 447
 448	usb_serial_port_softint(port);
 449	return 0;
 450}
 451
 452static u32 f81534_calc_baud_divisor(u32 baudrate, u32 clockrate)
 453{
 454	if (!baudrate)
 455		return 0;
 456
 457	/* Round to nearest divisor */
 458	return DIV_ROUND_CLOSEST(clockrate, baudrate);
 459}
 460
 461static int f81534_set_port_config(struct usb_serial_port *port, u32 baudrate,
 462					u8 lcr)
 463{
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 464	u32 divisor;
 465	int status;
 
 
 466	u8 value;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 467
 468	if (baudrate <= 1200)
 469		value = F81534_1X_RXTRIGGER;	/* 128 FIFO & TL: 1x */
 470	else
 471		value = F81534_8X_RXTRIGGER;	/* 128 FIFO & TL: 8x */
 472
 473	status = f81534_set_port_register(port, F81534_CONFIG1_REG, value);
 474	if (status) {
 475		dev_err(&port->dev, "%s: CONFIG1 setting failed\n", __func__);
 476		return status;
 477	}
 478
 479	if (baudrate <= 1200)
 480		value = UART_FCR_TRIGGER_1 | UART_FCR_ENABLE_FIFO; /* TL: 1 */
 481	else
 482		value = UART_FCR_R_TRIG_11 | UART_FCR_ENABLE_FIFO; /* TL: 14 */
 483
 484	status = f81534_set_port_register(port, F81534_FIFO_CONTROL_REG,
 485						value);
 486	if (status) {
 487		dev_err(&port->dev, "%s: FCR setting failed\n", __func__);
 488		return status;
 489	}
 490
 491	divisor = f81534_calc_baud_divisor(baudrate, F81534_MAX_BAUDRATE);
 
 
 
 492	value = UART_LCR_DLAB;
 493	status = f81534_set_port_register(port, F81534_LINE_CONTROL_REG,
 494						value);
 495	if (status) {
 496		dev_err(&port->dev, "%s: set LCR failed\n", __func__);
 497		return status;
 498	}
 499
 500	value = divisor & 0xff;
 501	status = f81534_set_port_register(port, F81534_DIVISOR_LSB_REG, value);
 502	if (status) {
 503		dev_err(&port->dev, "%s: set DLAB LSB failed\n", __func__);
 504		return status;
 505	}
 506
 507	value = (divisor >> 8) & 0xff;
 508	status = f81534_set_port_register(port, F81534_DIVISOR_MSB_REG, value);
 509	if (status) {
 510		dev_err(&port->dev, "%s: set DLAB MSB failed\n", __func__);
 511		return status;
 512	}
 513
 514	status = f81534_set_port_register(port, F81534_LINE_CONTROL_REG, lcr);
 
 
 515	if (status) {
 516		dev_err(&port->dev, "%s: set LCR failed\n", __func__);
 517		return status;
 518	}
 519
 520	return 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 521}
 522
 523static int f81534_update_mctrl(struct usb_serial_port *port, unsigned int set,
 524				unsigned int clear)
 525{
 526	struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
 527	int status;
 528	u8 tmp;
 529
 530	if (((set | clear) & (TIOCM_DTR | TIOCM_RTS)) == 0)
 531		return 0;	/* no change */
 532
 533	mutex_lock(&port_priv->mcr_mutex);
 534
 535	/* 'Set' takes precedence over 'Clear' */
 536	clear &= ~set;
 537
 538	/* Always enable UART_MCR_OUT2 */
 539	tmp = UART_MCR_OUT2 | port_priv->shadow_mcr;
 540
 541	if (clear & TIOCM_DTR)
 542		tmp &= ~UART_MCR_DTR;
 543
 544	if (clear & TIOCM_RTS)
 545		tmp &= ~UART_MCR_RTS;
 546
 547	if (set & TIOCM_DTR)
 548		tmp |= UART_MCR_DTR;
 549
 550	if (set & TIOCM_RTS)
 551		tmp |= UART_MCR_RTS;
 552
 553	status = f81534_set_port_register(port, F81534_MODEM_CONTROL_REG, tmp);
 554	if (status < 0) {
 555		dev_err(&port->dev, "%s: MCR write failed\n", __func__);
 556		mutex_unlock(&port_priv->mcr_mutex);
 557		return status;
 558	}
 559
 560	port_priv->shadow_mcr = tmp;
 561	mutex_unlock(&port_priv->mcr_mutex);
 562	return 0;
 563}
 564
 565/*
 566 * This function will search the data area with token F81534_CUSTOM_VALID_TOKEN
 567 * for latest configuration index. If nothing found
 568 * (*index = F81534_CUSTOM_NO_CUSTOM_DATA), We'll load default configure in
 569 * F81534_DEF_CONF_ADDRESS_START section.
 570 *
 571 * Due to we only use block0 to save data, so *index should be 0 or
 572 * F81534_CUSTOM_NO_CUSTOM_DATA.
 573 */
 574static int f81534_find_config_idx(struct usb_serial *serial, u8 *index)
 575{
 576	u8 tmp;
 577	int status;
 578
 579	status = f81534_read_flash(serial, F81534_CUSTOM_ADDRESS_START, 1,
 580					&tmp);
 581	if (status) {
 582		dev_err(&serial->interface->dev, "%s: read failed: %d\n",
 583				__func__, status);
 584		return status;
 585	}
 586
 587	/* We'll use the custom data when the data is valid. */
 588	if (tmp == F81534_CUSTOM_VALID_TOKEN)
 589		*index = 0;
 590	else
 591		*index = F81534_CUSTOM_NO_CUSTOM_DATA;
 592
 593	return 0;
 594}
 595
 596/*
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 597 * We had 2 generation of F81532/534 IC. All has an internal storage.
 598 *
 599 * 1st is pure USB-to-TTL RS232 IC and designed for 4 ports only, no any
 600 * internal data will used. All mode and gpio control should manually set
 601 * by AP or Driver and all storage space value are 0xff. The
 602 * f81534_calc_num_ports() will run to final we marked as "oldest version"
 603 * for this IC.
 604 *
 605 * 2rd is designed to more generic to use any transceiver and this is our
 606 * mass production type. We'll save data in F81534_CUSTOM_ADDRESS_START
 607 * (0x2f00) with 9bytes. The 1st byte is a indicater. If the token is
 608 * F81534_CUSTOM_VALID_TOKEN(0xf0), the IC is 2nd gen type, the following
 609 * 4bytes save port mode (0:RS232/1:RS485 Invert/2:RS485), and the last
 610 * 4bytes save GPIO state(value from 0~7 to represent 3 GPIO output pin).
 611 * The f81534_calc_num_ports() will run to "new style" with checking
 612 * F81534_PORT_UNAVAILABLE section.
 613 */
 614static int f81534_calc_num_ports(struct usb_serial *serial)
 
 615{
 616	u8 setting[F81534_CUSTOM_DATA_SIZE];
 617	u8 setting_idx;
 
 
 618	u8 num_port = 0;
 
 619	int status;
 620	size_t i;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 621
 622	/* Check had custom setting */
 623	status = f81534_find_config_idx(serial, &setting_idx);
 624	if (status) {
 625		dev_err(&serial->interface->dev, "%s: find idx failed: %d\n",
 626				__func__, status);
 627		return 0;
 628	}
 629
 630	/*
 631	 * We'll read custom data only when data available, otherwise we'll
 632	 * read default value instead.
 633	 */
 634	if (setting_idx != F81534_CUSTOM_NO_CUSTOM_DATA) {
 635		status = f81534_read_flash(serial,
 636						F81534_CUSTOM_ADDRESS_START +
 637						F81534_CONF_OFFSET,
 638						sizeof(setting), setting);
 
 639		if (status) {
 640			dev_err(&serial->interface->dev,
 641					"%s: get custom data failed: %d\n",
 642					__func__, status);
 643			return 0;
 644		}
 645
 646		dev_dbg(&serial->interface->dev,
 647				"%s: read config from block: %d\n", __func__,
 648				setting_idx);
 649	} else {
 650		/* Read default board setting */
 651		status = f81534_read_flash(serial,
 652				F81534_DEF_CONF_ADDRESS_START, F81534_NUM_PORT,
 653				setting);
 654
 655		if (status) {
 656			dev_err(&serial->interface->dev,
 657					"%s: read failed: %d\n", __func__,
 658					status);
 659			return 0;
 660		}
 661
 662		dev_dbg(&serial->interface->dev, "%s: read default config\n",
 663				__func__);
 664	}
 665
 666	/* New style, find all possible ports */
 667	for (i = 0; i < F81534_NUM_PORT; ++i) {
 668		if (setting[i] & F81534_PORT_UNAVAILABLE)
 
 
 
 669			continue;
 670
 671		++num_port;
 672	}
 673
 674	if (num_port)
 675		return num_port;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 676
 677	dev_warn(&serial->interface->dev, "%s: Read Failed. default 4 ports\n",
 678			__func__);
 679	return 4;		/* Nothing found, oldest version IC */
 680}
 681
 682static void f81534_set_termios(struct tty_struct *tty,
 683				struct usb_serial_port *port,
 684				struct ktermios *old_termios)
 685{
 686	u8 new_lcr = 0;
 687	int status;
 688	u32 baud;
 
 689
 690	if (C_BAUD(tty) == B0)
 691		f81534_update_mctrl(port, 0, TIOCM_DTR | TIOCM_RTS);
 692	else if (old_termios && (old_termios->c_cflag & CBAUD) == B0)
 693		f81534_update_mctrl(port, TIOCM_DTR | TIOCM_RTS, 0);
 694
 695	if (C_PARENB(tty)) {
 696		new_lcr |= UART_LCR_PARITY;
 697
 698		if (!C_PARODD(tty))
 699			new_lcr |= UART_LCR_EPAR;
 700
 701		if (C_CMSPAR(tty))
 702			new_lcr |= UART_LCR_SPAR;
 703	}
 704
 705	if (C_CSTOPB(tty))
 706		new_lcr |= UART_LCR_STOP;
 707
 708	switch (C_CSIZE(tty)) {
 709	case CS5:
 710		new_lcr |= UART_LCR_WLEN5;
 711		break;
 712	case CS6:
 713		new_lcr |= UART_LCR_WLEN6;
 714		break;
 715	case CS7:
 716		new_lcr |= UART_LCR_WLEN7;
 717		break;
 718	default:
 719	case CS8:
 720		new_lcr |= UART_LCR_WLEN8;
 721		break;
 722	}
 723
 724	baud = tty_get_baud_rate(tty);
 725	if (!baud)
 726		return;
 727
 728	if (baud > F81534_MAX_BAUDRATE) {
 729		if (old_termios)
 730			baud = tty_termios_baud_rate(old_termios);
 731		else
 732			baud = F81534_DEFAULT_BAUD_RATE;
 733
 734		tty_encode_baud_rate(tty, baud, baud);
 735	}
 736
 737	dev_dbg(&port->dev, "%s: baud: %d\n", __func__, baud);
 738
 739	status = f81534_set_port_config(port, baud, new_lcr);
 740	if (status < 0) {
 741		dev_err(&port->dev, "%s: set port config failed: %d\n",
 742				__func__, status);
 743	}
 744}
 745
 746static int f81534_submit_read_urb(struct usb_serial *serial, gfp_t flags)
 747{
 748	return usb_serial_generic_submit_read_urbs(serial->port[0], flags);
 749}
 750
 751static void f81534_msr_changed(struct usb_serial_port *port, u8 msr)
 752{
 753	struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
 754	struct tty_struct *tty;
 755	unsigned long flags;
 756	u8 old_msr;
 757
 758	if (!(msr & UART_MSR_ANY_DELTA))
 759		return;
 760
 761	spin_lock_irqsave(&port_priv->msr_lock, flags);
 762	old_msr = port_priv->shadow_msr;
 763	port_priv->shadow_msr = msr;
 764	spin_unlock_irqrestore(&port_priv->msr_lock, flags);
 765
 766	dev_dbg(&port->dev, "%s: MSR from %02x to %02x\n", __func__, old_msr,
 767			msr);
 768
 769	/* Update input line counters */
 770	if (msr & UART_MSR_DCTS)
 771		port->icount.cts++;
 772	if (msr & UART_MSR_DDSR)
 773		port->icount.dsr++;
 774	if (msr & UART_MSR_DDCD)
 775		port->icount.dcd++;
 776	if (msr & UART_MSR_TERI)
 777		port->icount.rng++;
 778
 779	wake_up_interruptible(&port->port.delta_msr_wait);
 780
 781	if (!(msr & UART_MSR_DDCD))
 782		return;
 783
 784	dev_dbg(&port->dev, "%s: DCD Changed: phy_num: %d from %x to %x\n",
 785			__func__, port_priv->phy_num, old_msr, msr);
 786
 787	tty = tty_port_tty_get(&port->port);
 788	if (!tty)
 789		return;
 790
 791	usb_serial_handle_dcd_change(port, tty, msr & UART_MSR_DCD);
 792	tty_kref_put(tty);
 793}
 794
 795static int f81534_read_msr(struct usb_serial_port *port)
 796{
 797	struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
 798	unsigned long flags;
 799	int status;
 800	u8 msr;
 801
 802	/* Get MSR initial value */
 803	status = f81534_get_port_register(port, F81534_MODEM_STATUS_REG, &msr);
 804	if (status)
 805		return status;
 806
 807	/* Force update current state */
 808	spin_lock_irqsave(&port_priv->msr_lock, flags);
 809	port_priv->shadow_msr = msr;
 810	spin_unlock_irqrestore(&port_priv->msr_lock, flags);
 811
 812	return 0;
 813}
 814
 815static int f81534_open(struct tty_struct *tty, struct usb_serial_port *port)
 816{
 817	struct f81534_serial_private *serial_priv =
 818			usb_get_serial_data(port->serial);
 819	struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
 820	int status;
 821
 822	status = f81534_set_port_register(port,
 823				F81534_FIFO_CONTROL_REG, UART_FCR_ENABLE_FIFO |
 824				UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
 825	if (status) {
 826		dev_err(&port->dev, "%s: Clear FIFO failed: %d\n", __func__,
 827				status);
 828		return status;
 829	}
 830
 831	if (tty)
 832		f81534_set_termios(tty, port, NULL);
 833
 834	status = f81534_read_msr(port);
 835	if (status)
 836		return status;
 837
 838	mutex_lock(&serial_priv->urb_mutex);
 839
 840	/* Submit Read URBs for first port opened */
 841	if (!serial_priv->opened_port) {
 842		status = f81534_submit_read_urb(port->serial, GFP_KERNEL);
 843		if (status)
 844			goto exit;
 845	}
 846
 847	serial_priv->opened_port++;
 848
 849exit:
 850	mutex_unlock(&serial_priv->urb_mutex);
 851
 852	set_bit(F81534_TX_EMPTY_BIT, &port_priv->tx_empty);
 853	return status;
 854}
 855
 856static void f81534_close(struct usb_serial_port *port)
 857{
 858	struct f81534_serial_private *serial_priv =
 859			usb_get_serial_data(port->serial);
 860	struct usb_serial_port *port0 = port->serial->port[0];
 861	unsigned long flags;
 862	size_t i;
 863
 864	usb_kill_urb(port->write_urbs[0]);
 865
 866	spin_lock_irqsave(&port->lock, flags);
 867	kfifo_reset_out(&port->write_fifo);
 868	spin_unlock_irqrestore(&port->lock, flags);
 869
 870	/* Kill Read URBs when final port closed */
 871	mutex_lock(&serial_priv->urb_mutex);
 872	serial_priv->opened_port--;
 873
 874	if (!serial_priv->opened_port) {
 875		for (i = 0; i < ARRAY_SIZE(port0->read_urbs); ++i)
 876			usb_kill_urb(port0->read_urbs[i]);
 877	}
 878
 879	mutex_unlock(&serial_priv->urb_mutex);
 880}
 881
 882static int f81534_get_serial_info(struct usb_serial_port *port,
 883				  struct serial_struct __user *retinfo)
 884{
 
 885	struct f81534_port_private *port_priv;
 886	struct serial_struct tmp;
 887
 888	port_priv = usb_get_serial_port_data(port);
 889
 890	memset(&tmp, 0, sizeof(tmp));
 891
 892	tmp.type = PORT_16550A;
 893	tmp.port = port->port_number;
 894	tmp.line = port->minor;
 895	tmp.baud_base = F81534_MAX_BAUDRATE;
 896
 897	if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
 898		return -EFAULT;
 899
 900	return 0;
 901}
 902
 903static int f81534_ioctl(struct tty_struct *tty, unsigned int cmd,
 904			unsigned long arg)
 905{
 906	struct usb_serial_port *port = tty->driver_data;
 907	struct serial_struct __user *buf = (struct serial_struct __user *)arg;
 908
 909	switch (cmd) {
 910	case TIOCGSERIAL:
 911		return f81534_get_serial_info(port, buf);
 912	default:
 913		break;
 914	}
 915
 916	return -ENOIOCTLCMD;
 917}
 918
 919static void f81534_process_per_serial_block(struct usb_serial_port *port,
 920		u8 *data)
 921{
 922	struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
 923	int phy_num = data[0];
 924	size_t read_size = 0;
 925	size_t i;
 926	char tty_flag;
 927	int status;
 928	u8 lsr;
 929
 930	/*
 931	 * The block layout is 128 Bytes
 932	 * index 0: port phy idx (e.g., 0,1,2,3),
 933	 * index 1: It's could be
 934	 *			F81534_TOKEN_RECEIVE
 935	 *			F81534_TOKEN_TX_EMPTY
 936	 *			F81534_TOKEN_MSR_CHANGE
 937	 * index 2: serial in size (data+lsr, must be even)
 938	 *			meaningful for F81534_TOKEN_RECEIVE only
 939	 * index 3: current MSR with this device
 940	 * index 4~127: serial in data block (data+lsr, must be even)
 941	 */
 942	switch (data[1]) {
 943	case F81534_TOKEN_TX_EMPTY:
 944		set_bit(F81534_TX_EMPTY_BIT, &port_priv->tx_empty);
 945
 946		/* Try to submit writer */
 947		status = f81534_submit_writer(port, GFP_ATOMIC);
 948		if (status)
 949			dev_err(&port->dev, "%s: submit failed\n", __func__);
 950		return;
 951
 952	case F81534_TOKEN_MSR_CHANGE:
 953		f81534_msr_changed(port, data[3]);
 954		return;
 955
 956	case F81534_TOKEN_RECEIVE:
 957		read_size = data[2];
 958		if (read_size > F81534_MAX_RX_SIZE) {
 959			dev_err(&port->dev,
 960				"%s: phy: %d read_size: %zu larger than: %d\n",
 961				__func__, phy_num, read_size,
 962				F81534_MAX_RX_SIZE);
 963			return;
 964		}
 965
 966		break;
 967
 968	default:
 969		dev_warn(&port->dev, "%s: unknown token: %02x\n", __func__,
 970				data[1]);
 971		return;
 972	}
 973
 974	for (i = 4; i < 4 + read_size; i += 2) {
 975		tty_flag = TTY_NORMAL;
 976		lsr = data[i + 1];
 977
 978		if (lsr & UART_LSR_BRK_ERROR_BITS) {
 979			if (lsr & UART_LSR_BI) {
 980				tty_flag = TTY_BREAK;
 981				port->icount.brk++;
 982				usb_serial_handle_break(port);
 983			} else if (lsr & UART_LSR_PE) {
 984				tty_flag = TTY_PARITY;
 985				port->icount.parity++;
 986			} else if (lsr & UART_LSR_FE) {
 987				tty_flag = TTY_FRAME;
 988				port->icount.frame++;
 989			}
 990
 991			if (lsr & UART_LSR_OE) {
 992				port->icount.overrun++;
 993				tty_insert_flip_char(&port->port, 0,
 994						TTY_OVERRUN);
 995			}
 
 
 996		}
 997
 998		if (port->port.console && port->sysrq) {
 999			if (usb_serial_handle_sysrq_char(port, data[i]))
1000				continue;
1001		}
1002
1003		tty_insert_flip_char(&port->port, data[i], tty_flag);
1004	}
1005
1006	tty_flip_buffer_push(&port->port);
1007}
1008
1009static void f81534_process_read_urb(struct urb *urb)
1010{
1011	struct f81534_serial_private *serial_priv;
1012	struct usb_serial_port *port;
1013	struct usb_serial *serial;
1014	u8 *buf;
1015	int phy_port_num;
1016	int tty_port_num;
1017	size_t i;
1018
1019	if (!urb->actual_length ||
1020			urb->actual_length % F81534_RECEIVE_BLOCK_SIZE) {
1021		return;
1022	}
1023
1024	port = urb->context;
1025	serial = port->serial;
1026	buf = urb->transfer_buffer;
1027	serial_priv = usb_get_serial_data(serial);
1028
1029	for (i = 0; i < urb->actual_length; i += F81534_RECEIVE_BLOCK_SIZE) {
1030		phy_port_num = buf[i];
1031		if (phy_port_num >= F81534_NUM_PORT) {
1032			dev_err(&port->dev,
1033				"%s: phy_port_num: %d larger than: %d\n",
1034				__func__, phy_port_num, F81534_NUM_PORT);
1035			continue;
1036		}
1037
1038		tty_port_num = serial_priv->tty_idx[phy_port_num];
1039		port = serial->port[tty_port_num];
1040
1041		if (tty_port_initialized(&port->port))
1042			f81534_process_per_serial_block(port, &buf[i]);
1043	}
1044}
1045
1046static void f81534_write_usb_callback(struct urb *urb)
1047{
1048	struct usb_serial_port *port = urb->context;
1049
1050	switch (urb->status) {
1051	case 0:
1052		break;
1053	case -ENOENT:
1054	case -ECONNRESET:
1055	case -ESHUTDOWN:
1056		dev_dbg(&port->dev, "%s - urb stopped: %d\n",
1057				__func__, urb->status);
1058		return;
1059	case -EPIPE:
1060		dev_err(&port->dev, "%s - urb stopped: %d\n",
1061				__func__, urb->status);
1062		return;
1063	default:
1064		dev_dbg(&port->dev, "%s - nonzero urb status: %d\n",
1065				__func__, urb->status);
1066		break;
1067	}
1068}
1069
1070static int f81534_setup_ports(struct usb_serial *serial)
1071{
 
1072	struct usb_serial_port *port;
1073	u8 port0_out_address;
1074	int buffer_size;
1075	size_t i;
1076
1077	/*
1078	 * In our system architecture, we had 2 or 4 serial ports,
1079	 * but only get 1 set of bulk in/out endpoints.
1080	 *
1081	 * The usb-serial subsystem will generate port 0 data,
1082	 * but port 1/2/3 will not. It's will generate write URB and buffer
1083	 * by following code and use the port0 read URB for read operation.
1084	 */
1085	for (i = 1; i < serial->num_ports; ++i) {
1086		port0_out_address = serial->port[0]->bulk_out_endpointAddress;
1087		buffer_size = serial->port[0]->bulk_out_size;
1088		port = serial->port[i];
1089
1090		if (kfifo_alloc(&port->write_fifo, PAGE_SIZE, GFP_KERNEL))
1091			return -ENOMEM;
1092
1093		port->bulk_out_size = buffer_size;
1094		port->bulk_out_endpointAddress = port0_out_address;
1095
1096		port->write_urbs[0] = usb_alloc_urb(0, GFP_KERNEL);
1097		if (!port->write_urbs[0])
1098			return -ENOMEM;
1099
1100		port->bulk_out_buffers[0] = kzalloc(buffer_size, GFP_KERNEL);
1101		if (!port->bulk_out_buffers[0])
1102			return -ENOMEM;
1103
1104		usb_fill_bulk_urb(port->write_urbs[0], serial->dev,
1105				usb_sndbulkpipe(serial->dev,
1106					port0_out_address),
1107				port->bulk_out_buffers[0], buffer_size,
1108				serial->type->write_bulk_callback, port);
1109
1110		port->write_urb = port->write_urbs[0];
1111		port->bulk_out_buffer = port->bulk_out_buffers[0];
1112	}
1113
1114	return 0;
1115}
1116
1117static int f81534_probe(struct usb_serial *serial,
1118					const struct usb_device_id *id)
1119{
1120	struct usb_endpoint_descriptor *endpoint;
1121	struct usb_host_interface *iface_desc;
1122	struct device *dev;
1123	int num_bulk_in = 0;
1124	int num_bulk_out = 0;
1125	int size_bulk_in = 0;
1126	int size_bulk_out = 0;
1127	int i;
1128
1129	dev = &serial->interface->dev;
1130	iface_desc = serial->interface->cur_altsetting;
1131
1132	for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
1133		endpoint = &iface_desc->endpoint[i].desc;
1134
1135		if (usb_endpoint_is_bulk_in(endpoint)) {
1136			++num_bulk_in;
1137			size_bulk_in = usb_endpoint_maxp(endpoint);
1138		}
1139
1140		if (usb_endpoint_is_bulk_out(endpoint)) {
1141			++num_bulk_out;
1142			size_bulk_out = usb_endpoint_maxp(endpoint);
1143		}
1144	}
1145
1146	if (num_bulk_in != 1 || num_bulk_out != 1) {
1147		dev_err(dev, "expected endpoints not found\n");
1148		return -ENODEV;
1149	}
1150
1151	if (size_bulk_out != F81534_WRITE_BUFFER_SIZE ||
1152			size_bulk_in != F81534_MAX_RECEIVE_BLOCK_SIZE) {
1153		dev_err(dev, "unsupported endpoint max packet size\n");
1154		return -ENODEV;
1155	}
1156
1157	return 0;
1158}
1159
1160static int f81534_attach(struct usb_serial *serial)
1161{
1162	struct f81534_serial_private *serial_priv;
1163	int index = 0;
 
 
1164	int status;
1165	int i;
 
 
1166
1167	serial_priv = devm_kzalloc(&serial->interface->dev,
1168					sizeof(*serial_priv), GFP_KERNEL);
1169	if (!serial_priv)
1170		return -ENOMEM;
1171
1172	usb_set_serial_data(serial, serial_priv);
1173
1174	mutex_init(&serial_priv->urb_mutex);
1175
1176	status = f81534_setup_ports(serial);
1177	if (status)
1178		return status;
1179
1180	/* Check had custom setting */
1181	status = f81534_find_config_idx(serial, &serial_priv->setting_idx);
1182	if (status) {
1183		dev_err(&serial->interface->dev, "%s: find idx failed: %d\n",
1184				__func__, status);
1185		return status;
1186	}
1187
1188	/*
1189	 * We'll read custom data only when data available, otherwise we'll
1190	 * read default value instead.
1191	 */
1192	if (serial_priv->setting_idx == F81534_CUSTOM_NO_CUSTOM_DATA) {
1193		/*
1194		 * The default configuration layout:
1195		 *	byte 0/1/2/3: uart setting
1196		 */
1197		status = f81534_read_flash(serial,
1198					F81534_DEF_CONF_ADDRESS_START,
1199					F81534_DEF_CONF_SIZE,
1200					serial_priv->conf_data);
1201		if (status) {
1202			dev_err(&serial->interface->dev,
1203					"%s: read reserve data failed: %d\n",
1204					__func__, status);
1205			return status;
1206		}
1207	} else {
1208		/* Only read 8 bytes for mode & GPIO */
1209		status = f81534_read_flash(serial,
1210						F81534_CUSTOM_ADDRESS_START +
1211						F81534_CONF_OFFSET,
1212						sizeof(serial_priv->conf_data),
1213						serial_priv->conf_data);
1214		if (status) {
1215			dev_err(&serial->interface->dev,
1216					"%s: idx: %d get data failed: %d\n",
1217					__func__, serial_priv->setting_idx,
1218					status);
1219			return status;
1220		}
1221	}
1222
1223	/* Assign phy-to-logic mapping */
1224	for (i = 0; i < F81534_NUM_PORT; ++i) {
1225		if (serial_priv->conf_data[i] & F81534_PORT_UNAVAILABLE)
1226			continue;
1227
1228		serial_priv->tty_idx[i] = index++;
1229		dev_dbg(&serial->interface->dev,
1230				"%s: phy_num: %d, tty_idx: %d\n", __func__, i,
1231				serial_priv->tty_idx[i]);
1232	}
1233
 
1234	return 0;
1235}
1236
1237static int f81534_port_probe(struct usb_serial_port *port)
1238{
 
1239	struct f81534_port_private *port_priv;
1240	int ret;
 
1241
 
1242	port_priv = devm_kzalloc(&port->dev, sizeof(*port_priv), GFP_KERNEL);
1243	if (!port_priv)
1244		return -ENOMEM;
1245
 
 
 
 
 
1246	spin_lock_init(&port_priv->msr_lock);
1247	mutex_init(&port_priv->mcr_mutex);
 
 
1248
1249	/* Assign logic-to-phy mapping */
1250	ret = f81534_logic_to_phy_port(port->serial, port);
1251	if (ret < 0)
1252		return ret;
1253
1254	port_priv->phy_num = ret;
 
1255	usb_set_serial_port_data(port, port_priv);
1256	dev_dbg(&port->dev, "%s: port_number: %d, phy_num: %d\n", __func__,
1257			port->port_number, port_priv->phy_num);
1258
1259	return 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1260}
1261
1262static int f81534_tiocmget(struct tty_struct *tty)
1263{
1264	struct usb_serial_port *port = tty->driver_data;
1265	struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
1266	int status;
1267	int r;
1268	u8 msr;
1269	u8 mcr;
1270
1271	/* Read current MSR from device */
1272	status = f81534_get_port_register(port, F81534_MODEM_STATUS_REG, &msr);
1273	if (status)
1274		return status;
1275
1276	mutex_lock(&port_priv->mcr_mutex);
1277	mcr = port_priv->shadow_mcr;
1278	mutex_unlock(&port_priv->mcr_mutex);
1279
1280	r = (mcr & UART_MCR_DTR ? TIOCM_DTR : 0) |
1281	    (mcr & UART_MCR_RTS ? TIOCM_RTS : 0) |
1282	    (msr & UART_MSR_CTS ? TIOCM_CTS : 0) |
1283	    (msr & UART_MSR_DCD ? TIOCM_CAR : 0) |
1284	    (msr & UART_MSR_RI ? TIOCM_RI : 0) |
1285	    (msr & UART_MSR_DSR ? TIOCM_DSR : 0);
1286
1287	return r;
1288}
1289
1290static int f81534_tiocmset(struct tty_struct *tty, unsigned int set,
1291				unsigned int clear)
1292{
1293	struct usb_serial_port *port = tty->driver_data;
1294
1295	return f81534_update_mctrl(port, set, clear);
1296}
1297
1298static void f81534_dtr_rts(struct usb_serial_port *port, int on)
1299{
1300	if (on)
1301		f81534_update_mctrl(port, TIOCM_DTR | TIOCM_RTS, 0);
1302	else
1303		f81534_update_mctrl(port, 0, TIOCM_DTR | TIOCM_RTS);
1304}
1305
1306static int f81534_write(struct tty_struct *tty, struct usb_serial_port *port,
1307			const u8 *buf, int count)
1308{
1309	int bytes_out, status;
1310
1311	if (!count)
1312		return 0;
1313
1314	bytes_out = kfifo_in_locked(&port->write_fifo, buf, count,
1315					&port->lock);
1316
1317	status = f81534_submit_writer(port, GFP_ATOMIC);
1318	if (status) {
1319		dev_err(&port->dev, "%s: submit failed\n", __func__);
1320		return status;
1321	}
1322
1323	return bytes_out;
1324}
1325
1326static bool f81534_tx_empty(struct usb_serial_port *port)
1327{
1328	struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
1329
1330	return test_bit(F81534_TX_EMPTY_BIT, &port_priv->tx_empty);
1331}
1332
1333static int f81534_resume(struct usb_serial *serial)
1334{
1335	struct f81534_serial_private *serial_priv =
1336			usb_get_serial_data(serial);
1337	struct usb_serial_port *port;
1338	int error = 0;
1339	int status;
1340	size_t i;
1341
1342	/*
1343	 * We'll register port 0 bulkin when port had opened, It'll take all
1344	 * port received data, MSR register change and TX_EMPTY information.
1345	 */
1346	mutex_lock(&serial_priv->urb_mutex);
1347
1348	if (serial_priv->opened_port) {
1349		status = f81534_submit_read_urb(serial, GFP_NOIO);
1350		if (status) {
1351			mutex_unlock(&serial_priv->urb_mutex);
1352			return status;
1353		}
1354	}
1355
1356	mutex_unlock(&serial_priv->urb_mutex);
1357
1358	for (i = 0; i < serial->num_ports; i++) {
1359		port = serial->port[i];
1360		if (!tty_port_initialized(&port->port))
1361			continue;
1362
1363		status = f81534_submit_writer(port, GFP_NOIO);
1364		if (status) {
1365			dev_err(&port->dev, "%s: submit failed\n", __func__);
1366			++error;
1367		}
1368	}
1369
1370	if (error)
1371		return -EIO;
1372
1373	return 0;
1374}
1375
1376static struct usb_serial_driver f81534_device = {
1377	.driver = {
1378		   .owner = THIS_MODULE,
1379		   .name = "f81534",
1380	},
1381	.description =		DRIVER_DESC,
1382	.id_table =		f81534_id_table,
 
 
1383	.open =			f81534_open,
1384	.close =		f81534_close,
1385	.write =		f81534_write,
1386	.tx_empty =		f81534_tx_empty,
1387	.calc_num_ports =	f81534_calc_num_ports,
1388	.probe =		f81534_probe,
1389	.attach =		f81534_attach,
1390	.port_probe =		f81534_port_probe,
 
 
1391	.dtr_rts =		f81534_dtr_rts,
1392	.process_read_urb =	f81534_process_read_urb,
1393	.ioctl =		f81534_ioctl,
1394	.tiocmget =		f81534_tiocmget,
1395	.tiocmset =		f81534_tiocmset,
1396	.write_bulk_callback =	f81534_write_usb_callback,
1397	.set_termios =		f81534_set_termios,
1398	.resume =		f81534_resume,
1399};
1400
1401static struct usb_serial_driver *const serial_drivers[] = {
1402	&f81534_device, NULL
1403};
1404
1405module_usb_serial_driver(serial_drivers, f81534_id_table);
1406
1407MODULE_DEVICE_TABLE(usb, f81534_id_table);
1408MODULE_DESCRIPTION(DRIVER_DESC);
1409MODULE_AUTHOR("Peter Hong <Peter_Hong@fintek.com.tw>");
1410MODULE_AUTHOR("Tom Tsai <Tom_Tsai@fintek.com.tw>");
1411MODULE_LICENSE("GPL");