fsi-master-gpio.c 21.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
/*
 * A FSI master controller, using a simple GPIO bit-banging interface
 */

#include <linux/crc4.h>
#include <linux/delay.h>
#include <linux/device.h>
#include <linux/fsi.h>
#include <linux/gpio/consumer.h>
#include <linux/io.h>
11
#include <linux/irqflags.h>
12
#include <linux/module.h>
13
#include <linux/of.h>
14 15 16 17 18 19 20 21 22 23 24
#include <linux/platform_device.h>
#include <linux/slab.h>

#include "fsi-master.h"

#define	FSI_GPIO_STD_DLY	1	/* Standard pin delay in nS */
#define	FSI_ECHO_DELAY_CLOCKS	16	/* Number clocks for echo delay */
#define	FSI_PRE_BREAK_CLOCKS	50	/* Number clocks to prep for break */
#define	FSI_BREAK_CLOCKS	256	/* Number of clocks to issue break */
#define	FSI_POST_BREAK_CLOCKS	16000	/* Number clocks to set up cfam */
#define	FSI_INIT_CLOCKS		5000	/* Clock out any old data */
25 26
#define	FSI_GPIO_DPOLL_CLOCKS	50      /* < 21 will cause slave to hang */
#define	FSI_GPIO_EPOLL_CLOCKS	50      /* Number of clocks for E_POLL retry */
27 28 29
#define	FSI_GPIO_STD_DELAY	10	/* Standard GPIO delay in nS */
					/* todo: adjust down as low as */
					/* possible or eliminate */
30 31
#define FSI_CRC_ERR_RETRIES	10

32
#define	FSI_GPIO_CMD_DPOLL      0x2
33
#define	FSI_GPIO_CMD_EPOLL      0x3
34 35
#define	FSI_GPIO_CMD_TERM	0x3f
#define FSI_GPIO_CMD_ABS_AR	0x4
36 37
#define FSI_GPIO_CMD_REL_AR	0x5
#define FSI_GPIO_CMD_SAME_AR	0x3	/* but only a 2-bit opcode... */
38

39 40 41
/* Slave responses */
#define	FSI_GPIO_RESP_ACK	0	/* Success */
#define	FSI_GPIO_RESP_BUSY	1	/* Slave busy */
42 43 44
#define	FSI_GPIO_RESP_ERRA	2	/* Any (misc) Error */
#define	FSI_GPIO_RESP_ERRC	3	/* Slave reports master CRC error */

45
#define	FSI_GPIO_MAX_BUSY	200
46 47 48 49 50
#define	FSI_GPIO_MTOE_COUNT	1000
#define	FSI_GPIO_DRAIN_BITS	20
#define	FSI_GPIO_CRC_SIZE	4
#define	FSI_GPIO_MSG_ID_SIZE		2
#define	FSI_GPIO_MSG_RESPID_SIZE	2
51
#define	FSI_GPIO_PRIME_SLAVE_CLOCKS	20
52

53 54
#define LAST_ADDR_INVALID		0x1

55 56 57
struct fsi_master_gpio {
	struct fsi_master	master;
	struct device		*dev;
58
	struct mutex		cmd_lock;	/* mutex for command ordering */
59 60 61 62 63
	struct gpio_desc	*gpio_clk;
	struct gpio_desc	*gpio_data;
	struct gpio_desc	*gpio_trans;	/* Voltage translator */
	struct gpio_desc	*gpio_enable;	/* FSI enable */
	struct gpio_desc	*gpio_mux;	/* Mux control */
64
	bool			external_mode;
65
	bool			no_delays;
66
	uint32_t		last_addr;
67 68
};

69 70 71
#define CREATE_TRACE_POINTS
#include <trace/events/fsi_master_gpio.h>

72 73 74 75 76 77 78 79 80 81 82 83
#define to_fsi_master_gpio(m) container_of(m, struct fsi_master_gpio, master)

struct fsi_gpio_msg {
	uint64_t	msg;
	uint8_t		bits;
};

static void clock_toggle(struct fsi_master_gpio *master, int count)
{
	int i;

	for (i = 0; i < count; i++) {
84 85
		if (!master->no_delays)
			ndelay(FSI_GPIO_STD_DLY);
86
		gpiod_set_value(master->gpio_clk, 0);
87 88
		if (!master->no_delays)
			ndelay(FSI_GPIO_STD_DLY);
89 90 91 92
		gpiod_set_value(master->gpio_clk, 1);
	}
}

93
static int sda_clock_in(struct fsi_master_gpio *master)
94 95 96
{
	int in;

97 98
	if (!master->no_delays)
		ndelay(FSI_GPIO_STD_DLY);
99
	gpiod_set_value(master->gpio_clk, 0);
100 101 102 103 104

	/* Dummy read to feed the synchronizers */
	gpiod_get_value(master->gpio_data);

	/* Actual data read */
105
	in = gpiod_get_value(master->gpio_data);
106 107
	if (!master->no_delays)
		ndelay(FSI_GPIO_STD_DLY);
108
	gpiod_set_value(master->gpio_clk, 1);
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
	return in ? 1 : 0;
}

static void sda_out(struct fsi_master_gpio *master, int value)
{
	gpiod_set_value(master->gpio_data, value);
}

static void set_sda_input(struct fsi_master_gpio *master)
{
	gpiod_direction_input(master->gpio_data);
	gpiod_set_value(master->gpio_trans, 0);
}

static void set_sda_output(struct fsi_master_gpio *master, int value)
{
	gpiod_set_value(master->gpio_trans, 1);
	gpiod_direction_output(master->gpio_data, value);
}

static void clock_zeros(struct fsi_master_gpio *master, int count)
{
	set_sda_output(master, 1);
	clock_toggle(master, count);
}

static void serial_in(struct fsi_master_gpio *master, struct fsi_gpio_msg *msg,
			uint8_t num_bits)
{
	uint8_t bit, in_bit;

	set_sda_input(master);

	for (bit = 0; bit < num_bits; bit++) {
143
		in_bit = sda_clock_in(master);
144 145 146 147
		msg->msg <<= 1;
		msg->msg |= ~in_bit & 0x1;	/* Data is active low */
	}
	msg->bits += num_bits;
148 149

	trace_fsi_master_gpio_in(master, num_bits, msg->msg);
150 151 152 153 154 155 156 157 158 159 160
}

static void serial_out(struct fsi_master_gpio *master,
			const struct fsi_gpio_msg *cmd)
{
	uint8_t bit;
	uint64_t msg = ~cmd->msg;	/* Data is active low */
	uint64_t sda_mask = 0x1ULL << (cmd->bits - 1);
	uint64_t last_bit = ~0;
	int next_bit;

161 162
	trace_fsi_master_gpio_out(master, cmd->bits, cmd->msg);

163 164 165 166 167 168 169 170 171 172 173 174 175 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
	if (!cmd->bits) {
		dev_warn(master->dev, "trying to output 0 bits\n");
		return;
	}
	set_sda_output(master, 0);

	/* Send the start bit */
	sda_out(master, 0);
	clock_toggle(master, 1);

	/* Send the message */
	for (bit = 0; bit < cmd->bits; bit++) {
		next_bit = (msg & sda_mask) >> (cmd->bits - 1);
		if (last_bit ^ next_bit) {
			sda_out(master, next_bit);
			last_bit = next_bit;
		}
		clock_toggle(master, 1);
		msg <<= 1;
	}
}

static void msg_push_bits(struct fsi_gpio_msg *msg, uint64_t data, int bits)
{
	msg->msg <<= bits;
	msg->msg |= data & ((1ull << bits) - 1);
	msg->bits += bits;
}

static void msg_push_crc(struct fsi_gpio_msg *msg)
{
	uint8_t crc;
	int top;

	top = msg->bits & 0x3;

	/* start bit, and any non-aligned top bits */
	crc = crc4(0, 1 << top | msg->msg >> (msg->bits - top), top + 1);

	/* aligned bits */
	crc = crc4(crc, msg->msg, msg->bits - top);

	msg_push_bits(msg, crc, 4);
}

208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
static bool check_same_address(struct fsi_master_gpio *master, int id,
		uint32_t addr)
{
	/* this will also handle LAST_ADDR_INVALID */
	return master->last_addr == (((id & 0x3) << 21) | (addr & ~0x3));
}

static bool check_relative_address(struct fsi_master_gpio *master, int id,
		uint32_t addr, uint32_t *rel_addrp)
{
	uint32_t last_addr = master->last_addr;
	int32_t rel_addr;

	if (last_addr == LAST_ADDR_INVALID)
		return false;

	/* We may be in 23-bit addressing mode, which uses the id as the
	 * top two address bits. So, if we're referencing a different ID,
	 * use absolute addresses.
	 */
	if (((last_addr >> 21) & 0x3) != id)
		return false;

	/* remove the top two bits from any 23-bit addressing */
	last_addr &= (1 << 21) - 1;

	/* We know that the addresses are limited to 21 bits, so this won't
	 * overflow the signed rel_addr */
	rel_addr = addr - last_addr;
	if (rel_addr > 255 || rel_addr < -256)
		return false;

	*rel_addrp = (uint32_t)rel_addr;

	return true;
}

static void last_address_update(struct fsi_master_gpio *master,
		int id, bool valid, uint32_t addr)
{
	if (!valid)
		master->last_addr = LAST_ADDR_INVALID;
	else
		master->last_addr = ((id & 0x3) << 21) | (addr & ~0x3);
}

254
/*
255
 * Encode an Absolute/Relative/Same Address command
256
 */
257 258 259
static void build_ar_command(struct fsi_master_gpio *master,
		struct fsi_gpio_msg *cmd, uint8_t id,
		uint32_t addr, size_t size, const void *data)
260
{
261
	int i, addr_bits, opcode_bits;
262
	bool write = !!data;
263 264
	uint8_t ds, opcode;
	uint32_t rel_addr;
265 266 267 268

	cmd->bits = 0;
	cmd->msg = 0;

269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
	/* we have 21 bits of address max */
	addr &= ((1 << 21) - 1);

	/* cmd opcodes are variable length - SAME_AR is only two bits */
	opcode_bits = 3;

	if (check_same_address(master, id, addr)) {
		/* we still address the byte offset within the word */
		addr_bits = 2;
		opcode_bits = 2;
		opcode = FSI_GPIO_CMD_SAME_AR;

	} else if (check_relative_address(master, id, addr, &rel_addr)) {
		/* 8 bits plus sign */
		addr_bits = 9;
		addr = rel_addr;
		opcode = FSI_GPIO_CMD_REL_AR;

	} else {
		addr_bits = 21;
		opcode = FSI_GPIO_CMD_ABS_AR;
	}
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306

	/*
	 * The read/write size is encoded in the lower bits of the address
	 * (as it must be naturally-aligned), and the following ds bit.
	 *
	 *	size	addr:1	addr:0	ds
	 *	1	x	x	0
	 *	2	x	0	1
	 *	4	0	1	1
	 *
	 */
	ds = size > 1 ? 1 : 0;
	addr &= ~(size - 1);
	if (size == 4)
		addr |= 1;

307 308 309 310
	msg_push_bits(cmd, id, 2);
	msg_push_bits(cmd, opcode, opcode_bits);
	msg_push_bits(cmd, write ? 0 : 1, 1);
	msg_push_bits(cmd, addr, addr_bits);
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
	msg_push_bits(cmd, ds, 1);
	for (i = 0; write && i < size; i++)
		msg_push_bits(cmd, ((uint8_t *)data)[i], 8);

	msg_push_crc(cmd);
}

static void build_dpoll_command(struct fsi_gpio_msg *cmd, uint8_t slave_id)
{
	cmd->bits = 0;
	cmd->msg = 0;

	msg_push_bits(cmd, slave_id, 2);
	msg_push_bits(cmd, FSI_GPIO_CMD_DPOLL, 3);
	msg_push_crc(cmd);
}

328 329 330 331 332 333 334 335 336 337
static void build_epoll_command(struct fsi_gpio_msg *cmd, uint8_t slave_id)
{
	cmd->bits = 0;
	cmd->msg = 0;

	msg_push_bits(cmd, slave_id, 2);
	msg_push_bits(cmd, FSI_GPIO_CMD_EPOLL, 3);
	msg_push_crc(cmd);
}

338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353
static void echo_delay(struct fsi_master_gpio *master)
{
	set_sda_output(master, 1);
	clock_toggle(master, FSI_ECHO_DELAY_CLOCKS);
}

static void build_term_command(struct fsi_gpio_msg *cmd, uint8_t slave_id)
{
	cmd->bits = 0;
	cmd->msg = 0;

	msg_push_bits(cmd, slave_id, 2);
	msg_push_bits(cmd, FSI_GPIO_CMD_TERM, 6);
	msg_push_crc(cmd);
}

354 355 356 357 358 359
/*
 * Note: callers rely specifically on this returning -EAGAIN for
 * a CRC error detected in the response. Use other error code
 * for other situations. It will be converted to something else
 * higher up the stack before it reaches userspace.
 */
360 361 362 363
static int read_one_response(struct fsi_master_gpio *master,
		uint8_t data_size, struct fsi_gpio_msg *msgp, uint8_t *tagp)
{
	struct fsi_gpio_msg msg;
364
	unsigned long flags;
365
	uint32_t crc;
366
	uint8_t tag;
367 368
	int i;

369
	local_irq_save(flags);
370

371 372 373 374 375 376 377 378 379 380 381
	/* wait for the start bit */
	for (i = 0; i < FSI_GPIO_MTOE_COUNT; i++) {
		msg.bits = 0;
		msg.msg = 0;
		serial_in(master, &msg, 1);
		if (msg.msg)
			break;
	}
	if (i == FSI_GPIO_MTOE_COUNT) {
		dev_dbg(master->dev,
			"Master time out waiting for response\n");
382
		local_irq_restore(flags);
383
		return -ETIMEDOUT;
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
	}

	msg.bits = 0;
	msg.msg = 0;

	/* Read slave ID & response tag */
	serial_in(master, &msg, 4);

	tag = msg.msg & 0x3;

	/* If we have an ACK and we're expecting data, clock the data in too */
	if (tag == FSI_GPIO_RESP_ACK && data_size)
		serial_in(master, &msg, data_size * 8);

	/* read CRC */
	serial_in(master, &msg, FSI_GPIO_CRC_SIZE);

401
	local_irq_restore(flags);
402

403 404 405 406
	/* we have a whole message now; check CRC */
	crc = crc4(0, 1, 1);
	crc = crc4(crc, msg.msg, msg.bits);
	if (crc) {
407 408 409 410 411
		/* Check if it's all 1's, that probably means the host is off */
		if (((~msg.msg) & ((1ull << msg.bits) - 1)) == 0)
			return -ENODEV;
		dev_dbg(master->dev, "ERR response CRC msg: 0x%016llx (%d bits)\n",
			msg.msg, msg.bits);
412
		return -EAGAIN;
413 414 415 416 417 418 419 420 421 422 423 424 425
	}

	if (msgp)
		*msgp = msg;
	if (tagp)
		*tagp = tag;

	return 0;
}

static int issue_term(struct fsi_master_gpio *master, uint8_t slave)
{
	struct fsi_gpio_msg cmd;
426
	unsigned long flags;
427 428 429 430
	uint8_t tag;
	int rc;

	build_term_command(&cmd, slave);
431

432
	local_irq_save(flags);
433 434
	serial_out(master, &cmd);
	echo_delay(master);
435
	local_irq_restore(flags);
436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454

	rc = read_one_response(master, 0, NULL, &tag);
	if (rc < 0) {
		dev_err(master->dev,
				"TERM failed; lost communication with slave\n");
		return -EIO;
	} else if (tag != FSI_GPIO_RESP_ACK) {
		dev_err(master->dev, "TERM failed; response %d\n", tag);
		return -EIO;
	}

	return 0;
}

static int poll_for_response(struct fsi_master_gpio *master,
		uint8_t slave, uint8_t size, void *data)
{
	struct fsi_gpio_msg response, cmd;
	int busy_count = 0, rc, i;
455
	unsigned long flags;
456 457
	uint8_t tag;
	uint8_t *data_byte = data;
458
	int crc_err_retries = 0;
459 460
retry:
	rc = read_one_response(master, size, &response, &tag);
461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476

	/* Handle retries on CRC errors */
	if (rc == -EAGAIN) {
		/* Too many retries ? */
		if (crc_err_retries++ > FSI_CRC_ERR_RETRIES) {
			/*
			 * Pass it up as a -EIO otherwise upper level will retry
			 * the whole command which isn't what we want here.
			 */
			rc = -EIO;
			goto fail;
		}
		dev_dbg(master->dev,
			 "CRC error retry %d\n", crc_err_retries);
		trace_fsi_master_gpio_crc_rsp_error(master);
		build_epoll_command(&cmd, slave);
477
		local_irq_save(flags);
478 479 480
		clock_zeros(master, FSI_GPIO_EPOLL_CLOCKS);
		serial_out(master, &cmd);
		echo_delay(master);
481
		local_irq_restore(flags);
482 483 484
		goto retry;
	} else if (rc)
		goto fail;
485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507

	switch (tag) {
	case FSI_GPIO_RESP_ACK:
		if (size && data) {
			uint64_t val = response.msg;
			/* clear crc & mask */
			val >>= 4;
			val &= (1ull << (size * 8)) - 1;

			for (i = 0; i < size; i++) {
				data_byte[size-i-1] = val;
				val >>= 8;
			}
		}
		break;
	case FSI_GPIO_RESP_BUSY:
		/*
		 * Its necessary to clock slave before issuing
		 * d-poll, not indicated in the hardware protocol
		 * spec. < 20 clocks causes slave to hang, 21 ok.
		 */
		if (busy_count++ < FSI_GPIO_MAX_BUSY) {
			build_dpoll_command(&cmd, slave);
508
			local_irq_save(flags);
509
			clock_zeros(master, FSI_GPIO_DPOLL_CLOCKS);
510 511
			serial_out(master, &cmd);
			echo_delay(master);
512
			local_irq_restore(flags);
513 514 515 516
			goto retry;
		}
		dev_warn(master->dev,
			"ERR slave is stuck in busy state, issuing TERM\n");
517
		local_irq_save(flags);
518
		clock_zeros(master, FSI_GPIO_DPOLL_CLOCKS);
519
		local_irq_restore(flags);
520 521 522 523 524
		issue_term(master, slave);
		rc = -EIO;
		break;

	case FSI_GPIO_RESP_ERRA:
525
		dev_dbg(master->dev, "ERRA received: 0x%x\n", (int)response.msg);
526 527
		rc = -EIO;
		break;
528 529 530 531 532
	case FSI_GPIO_RESP_ERRC:
		dev_dbg(master->dev, "ERRC received: 0x%x\n", (int)response.msg);
		trace_fsi_master_gpio_crc_cmd_error(master);
		rc = -EAGAIN;
		break;
533 534
	}

A
Andrew Jeffery 已提交
535 536
	if (busy_count > 0)
		trace_fsi_master_gpio_poll_response_busy(master, busy_count);
537
 fail:
538
	/* Clock the slave enough to be ready for next operation */
539
	local_irq_save(flags);
540
	clock_zeros(master, FSI_GPIO_PRIME_SLAVE_CLOCKS);
541 542
	local_irq_restore(flags);

543 544 545
	return rc;
}

546 547
static int send_request(struct fsi_master_gpio *master,
		struct fsi_gpio_msg *cmd)
548 549
{
	unsigned long flags;
550

551
	if (master->external_mode)
552 553
		return -EBUSY;

554
	local_irq_save(flags);
555 556
	serial_out(master, cmd);
	echo_delay(master);
557
	local_irq_restore(flags);
558 559 560 561 562 563 564

	return 0;
}

static int fsi_master_gpio_xfer(struct fsi_master_gpio *master, uint8_t slave,
		struct fsi_gpio_msg *cmd, size_t resp_len, void *resp)
{
565
	int rc = -EAGAIN, retries = 0;
566

567 568 569 570
	while ((retries++) < FSI_CRC_ERR_RETRIES) {
		rc = send_request(master, cmd);
		if (rc)
			break;
571
		rc = poll_for_response(master, slave, resp_len, resp);
572 573 574 575 576 577 578 579
		if (rc != -EAGAIN)
			break;
		rc = -EIO;
		dev_warn(master->dev, "ECRC retry %d\n", retries);

		/* Pace it a bit before retry */
		msleep(1);
	}
580

581 582 583 584 585 586 587 588
	return rc;
}

static int fsi_master_gpio_read(struct fsi_master *_master, int link,
		uint8_t id, uint32_t addr, void *val, size_t size)
{
	struct fsi_master_gpio *master = to_fsi_master_gpio(_master);
	struct fsi_gpio_msg cmd;
589
	int rc;
590 591 592 593

	if (link != 0)
		return -ENODEV;

594
	mutex_lock(&master->cmd_lock);
595
	build_ar_command(master, &cmd, id, addr, size, NULL);
596
	rc = fsi_master_gpio_xfer(master, id, &cmd, size, val);
597
	last_address_update(master, id, rc == 0, addr);
598 599 600
	mutex_unlock(&master->cmd_lock);

	return rc;
601 602 603 604 605 606 607
}

static int fsi_master_gpio_write(struct fsi_master *_master, int link,
		uint8_t id, uint32_t addr, const void *val, size_t size)
{
	struct fsi_master_gpio *master = to_fsi_master_gpio(_master);
	struct fsi_gpio_msg cmd;
608
	int rc;
609 610 611 612

	if (link != 0)
		return -ENODEV;

613
	mutex_lock(&master->cmd_lock);
614
	build_ar_command(master, &cmd, id, addr, size, val);
615
	rc = fsi_master_gpio_xfer(master, id, &cmd, 0, NULL);
616
	last_address_update(master, id, rc == 0, addr);
617 618 619
	mutex_unlock(&master->cmd_lock);

	return rc;
620 621 622 623 624 625 626
}

static int fsi_master_gpio_term(struct fsi_master *_master,
		int link, uint8_t id)
{
	struct fsi_master_gpio *master = to_fsi_master_gpio(_master);
	struct fsi_gpio_msg cmd;
627
	int rc;
628 629 630 631

	if (link != 0)
		return -ENODEV;

632
	mutex_lock(&master->cmd_lock);
633
	build_term_command(&cmd, id);
634
	rc = fsi_master_gpio_xfer(master, id, &cmd, 0, NULL);
635
	last_address_update(master, id, false, 0);
636 637 638
	mutex_unlock(&master->cmd_lock);

	return rc;
639 640 641 642 643
}

static int fsi_master_gpio_break(struct fsi_master *_master, int link)
{
	struct fsi_master_gpio *master = to_fsi_master_gpio(_master);
644
	unsigned long flags;
645 646 647 648

	if (link != 0)
		return -ENODEV;

649 650
	trace_fsi_master_gpio_break(master);

651
	mutex_lock(&master->cmd_lock);
652
	if (master->external_mode) {
653
		mutex_unlock(&master->cmd_lock);
654 655
		return -EBUSY;
	}
656

657
	local_irq_save(flags);
658

659 660 661 662 663 664 665 666
	set_sda_output(master, 1);
	sda_out(master, 1);
	clock_toggle(master, FSI_PRE_BREAK_CLOCKS);
	sda_out(master, 0);
	clock_toggle(master, FSI_BREAK_CLOCKS);
	echo_delay(master);
	sda_out(master, 1);
	clock_toggle(master, FSI_POST_BREAK_CLOCKS);
667

668 669
	local_irq_restore(flags);

670
	last_address_update(master, 0, false, 0);
671
	mutex_unlock(&master->cmd_lock);
672 673 674 675 676 677 678 679 680

	/* Wait for logic reset to take effect */
	udelay(200);

	return 0;
}

static void fsi_master_gpio_init(struct fsi_master_gpio *master)
{
681 682
	unsigned long flags;

683 684 685 686 687 688 689
	gpiod_direction_output(master->gpio_mux, 1);
	gpiod_direction_output(master->gpio_trans, 1);
	gpiod_direction_output(master->gpio_enable, 1);
	gpiod_direction_output(master->gpio_clk, 1);
	gpiod_direction_output(master->gpio_data, 1);

	/* todo: evaluate if clocks can be reduced */
690
	local_irq_save(flags);
691
	clock_zeros(master, FSI_INIT_CLOCKS);
692
	local_irq_restore(flags);
693 694
}

695 696 697 698 699 700 701 702 703
static void fsi_master_gpio_init_external(struct fsi_master_gpio *master)
{
	gpiod_direction_output(master->gpio_mux, 0);
	gpiod_direction_output(master->gpio_trans, 0);
	gpiod_direction_output(master->gpio_enable, 1);
	gpiod_direction_input(master->gpio_clk);
	gpiod_direction_input(master->gpio_data);
}

704 705 706
static int fsi_master_gpio_link_enable(struct fsi_master *_master, int link)
{
	struct fsi_master_gpio *master = to_fsi_master_gpio(_master);
707
	int rc = -EBUSY;
708 709 710

	if (link != 0)
		return -ENODEV;
711

712
	mutex_lock(&master->cmd_lock);
713 714 715 716
	if (!master->external_mode) {
		gpiod_set_value(master->gpio_enable, 1);
		rc = 0;
	}
717
	mutex_unlock(&master->cmd_lock);
718

719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734
	return rc;
}

static ssize_t external_mode_show(struct device *dev,
		struct device_attribute *attr, char *buf)
{
	struct fsi_master_gpio *master = dev_get_drvdata(dev);

	return snprintf(buf, PAGE_SIZE - 1, "%u\n",
			master->external_mode ? 1 : 0);
}

static ssize_t external_mode_store(struct device *dev,
		struct device_attribute *attr, const char *buf, size_t count)
{
	struct fsi_master_gpio *master = dev_get_drvdata(dev);
735
	unsigned long val;
736 737 738 739 740 741 742 743 744
	bool external_mode;
	int err;

	err = kstrtoul(buf, 0, &val);
	if (err)
		return err;

	external_mode = !!val;

745
	mutex_lock(&master->cmd_lock);
746 747

	if (external_mode == master->external_mode) {
748
		mutex_unlock(&master->cmd_lock);
749 750 751 752 753 754 755 756
		return count;
	}

	master->external_mode = external_mode;
	if (master->external_mode)
		fsi_master_gpio_init_external(master);
	else
		fsi_master_gpio_init(master);
757 758

	mutex_unlock(&master->cmd_lock);
759 760 761 762

	fsi_master_rescan(&master->master);

	return count;
763 764
}

765 766 767
static DEVICE_ATTR(external_mode, 0664,
		external_mode_show, external_mode_store);

768 769 770 771
static int fsi_master_gpio_probe(struct platform_device *pdev)
{
	struct fsi_master_gpio *master;
	struct gpio_desc *gpio;
772
	int rc;
773 774 775 776 777 778 779

	master = devm_kzalloc(&pdev->dev, sizeof(*master), GFP_KERNEL);
	if (!master)
		return -ENOMEM;

	master->dev = &pdev->dev;
	master->master.dev.parent = master->dev;
780
	master->master.dev.of_node = of_node_get(dev_of_node(master->dev));
781
	master->last_addr = LAST_ADDR_INVALID;
782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818

	gpio = devm_gpiod_get(&pdev->dev, "clock", 0);
	if (IS_ERR(gpio)) {
		dev_err(&pdev->dev, "failed to get clock gpio\n");
		return PTR_ERR(gpio);
	}
	master->gpio_clk = gpio;

	gpio = devm_gpiod_get(&pdev->dev, "data", 0);
	if (IS_ERR(gpio)) {
		dev_err(&pdev->dev, "failed to get data gpio\n");
		return PTR_ERR(gpio);
	}
	master->gpio_data = gpio;

	/* Optional GPIOs */
	gpio = devm_gpiod_get_optional(&pdev->dev, "trans", 0);
	if (IS_ERR(gpio)) {
		dev_err(&pdev->dev, "failed to get trans gpio\n");
		return PTR_ERR(gpio);
	}
	master->gpio_trans = gpio;

	gpio = devm_gpiod_get_optional(&pdev->dev, "enable", 0);
	if (IS_ERR(gpio)) {
		dev_err(&pdev->dev, "failed to get enable gpio\n");
		return PTR_ERR(gpio);
	}
	master->gpio_enable = gpio;

	gpio = devm_gpiod_get_optional(&pdev->dev, "mux", 0);
	if (IS_ERR(gpio)) {
		dev_err(&pdev->dev, "failed to get mux gpio\n");
		return PTR_ERR(gpio);
	}
	master->gpio_mux = gpio;

819 820 821 822 823 824 825
	/*
	 * Check if GPIO block is slow enought that no extra delays
	 * are necessary. This improves performance on ast2500 by
	 * an order of magnitude.
	 */
	master->no_delays = device_property_present(&pdev->dev, "no-gpio-delays");

826
	master->master.n_links = 1;
827
	master->master.flags = FSI_MASTER_FLAG_SWCLOCK;
828 829 830 831 832 833
	master->master.read = fsi_master_gpio_read;
	master->master.write = fsi_master_gpio_write;
	master->master.term = fsi_master_gpio_term;
	master->master.send_break = fsi_master_gpio_break;
	master->master.link_enable = fsi_master_gpio_link_enable;
	platform_set_drvdata(pdev, master);
834
	mutex_init(&master->cmd_lock);
835 836 837

	fsi_master_gpio_init(master);

838 839 840 841
	rc = device_create_file(&pdev->dev, &dev_attr_external_mode);
	if (rc)
		return rc;

842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859
	return fsi_master_register(&master->master);
}


static int fsi_master_gpio_remove(struct platform_device *pdev)
{
	struct fsi_master_gpio *master = platform_get_drvdata(pdev);

	devm_gpiod_put(&pdev->dev, master->gpio_clk);
	devm_gpiod_put(&pdev->dev, master->gpio_data);
	if (master->gpio_trans)
		devm_gpiod_put(&pdev->dev, master->gpio_trans);
	if (master->gpio_enable)
		devm_gpiod_put(&pdev->dev, master->gpio_enable);
	if (master->gpio_mux)
		devm_gpiod_put(&pdev->dev, master->gpio_mux);
	fsi_master_unregister(&master->master);

860 861
	of_node_put(master->master.dev.of_node);

862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880
	return 0;
}

static const struct of_device_id fsi_master_gpio_match[] = {
	{ .compatible = "fsi-master-gpio" },
	{ },
};

static struct platform_driver fsi_master_gpio_driver = {
	.driver = {
		.name		= "fsi-master-gpio",
		.of_match_table	= fsi_master_gpio_match,
	},
	.probe	= fsi_master_gpio_probe,
	.remove = fsi_master_gpio_remove,
};

module_platform_driver(fsi_master_gpio_driver);
MODULE_LICENSE("GPL");