i2c-mv64xxx.c 26.1 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2 3
 * Driver for the i2c controller on the Marvell line of host bridges
 * (e.g, gt642[46]0, mv643[46]0, mv644[46]0, and Orion SoC family).
L
Linus Torvalds 已提交
4 5 6 7 8 9 10 11 12
 *
 * Author: Mark A. Greer <mgreer@mvista.com>
 *
 * 2005 (c) MontaVista, Software, Inc.  This file is licensed under
 * the terms of the GNU General Public License version 2.  This program
 * is licensed "as is" without any warranty of any kind, whether express
 * or implied.
 */
#include <linux/kernel.h>
13
#include <linux/slab.h>
L
Linus Torvalds 已提交
14 15 16 17
#include <linux/module.h>
#include <linux/spinlock.h>
#include <linux/i2c.h>
#include <linux/interrupt.h>
18
#include <linux/mv643xx_i2c.h>
19
#include <linux/platform_device.h>
20
#include <linux/reset.h>
21
#include <linux/io.h>
22
#include <linux/of.h>
23
#include <linux/of_device.h>
24 25 26
#include <linux/of_irq.h>
#include <linux/clk.h>
#include <linux/err.h>
27
#include <linux/delay.h>
L
Linus Torvalds 已提交
28

29 30 31 32
#define MV64XXX_I2C_ADDR_ADDR(val)			((val & 0x7f) << 1)
#define MV64XXX_I2C_BAUD_DIV_N(val)			(val & 0x7)
#define MV64XXX_I2C_BAUD_DIV_M(val)			((val & 0xf) << 3)

L
Linus Torvalds 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
#define	MV64XXX_I2C_REG_CONTROL_ACK			0x00000004
#define	MV64XXX_I2C_REG_CONTROL_IFLG			0x00000008
#define	MV64XXX_I2C_REG_CONTROL_STOP			0x00000010
#define	MV64XXX_I2C_REG_CONTROL_START			0x00000020
#define	MV64XXX_I2C_REG_CONTROL_TWSIEN			0x00000040
#define	MV64XXX_I2C_REG_CONTROL_INTEN			0x00000080

/* Ctlr status values */
#define	MV64XXX_I2C_STATUS_BUS_ERR			0x00
#define	MV64XXX_I2C_STATUS_MAST_START			0x08
#define	MV64XXX_I2C_STATUS_MAST_REPEAT_START		0x10
#define	MV64XXX_I2C_STATUS_MAST_WR_ADDR_ACK		0x18
#define	MV64XXX_I2C_STATUS_MAST_WR_ADDR_NO_ACK		0x20
#define	MV64XXX_I2C_STATUS_MAST_WR_ACK			0x28
#define	MV64XXX_I2C_STATUS_MAST_WR_NO_ACK		0x30
#define	MV64XXX_I2C_STATUS_MAST_LOST_ARB		0x38
#define	MV64XXX_I2C_STATUS_MAST_RD_ADDR_ACK		0x40
#define	MV64XXX_I2C_STATUS_MAST_RD_ADDR_NO_ACK		0x48
#define	MV64XXX_I2C_STATUS_MAST_RD_DATA_ACK		0x50
#define	MV64XXX_I2C_STATUS_MAST_RD_DATA_NO_ACK		0x58
#define	MV64XXX_I2C_STATUS_MAST_WR_ADDR_2_ACK		0xd0
#define	MV64XXX_I2C_STATUS_MAST_WR_ADDR_2_NO_ACK	0xd8
#define	MV64XXX_I2C_STATUS_MAST_RD_ADDR_2_ACK		0xe0
#define	MV64XXX_I2C_STATUS_MAST_RD_ADDR_2_NO_ACK	0xe8
#define	MV64XXX_I2C_STATUS_NO_STATUS			0xf8

59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
/* Register defines (I2C bridge) */
#define	MV64XXX_I2C_REG_TX_DATA_LO			0xc0
#define	MV64XXX_I2C_REG_TX_DATA_HI			0xc4
#define	MV64XXX_I2C_REG_RX_DATA_LO			0xc8
#define	MV64XXX_I2C_REG_RX_DATA_HI			0xcc
#define	MV64XXX_I2C_REG_BRIDGE_CONTROL			0xd0
#define	MV64XXX_I2C_REG_BRIDGE_STATUS			0xd4
#define	MV64XXX_I2C_REG_BRIDGE_INTR_CAUSE		0xd8
#define	MV64XXX_I2C_REG_BRIDGE_INTR_MASK		0xdC
#define	MV64XXX_I2C_REG_BRIDGE_TIMING			0xe0

/* Bridge Control values */
#define	MV64XXX_I2C_BRIDGE_CONTROL_WR			0x00000001
#define	MV64XXX_I2C_BRIDGE_CONTROL_RD			0x00000002
#define	MV64XXX_I2C_BRIDGE_CONTROL_ADDR_SHIFT		2
#define	MV64XXX_I2C_BRIDGE_CONTROL_ADDR_EXT		0x00001000
#define	MV64XXX_I2C_BRIDGE_CONTROL_TX_SIZE_SHIFT	13
#define	MV64XXX_I2C_BRIDGE_CONTROL_RX_SIZE_SHIFT	16
#define	MV64XXX_I2C_BRIDGE_CONTROL_ENABLE		0x00080000

/* Bridge Status values */
#define	MV64XXX_I2C_BRIDGE_STATUS_ERROR			0x00000001
#define	MV64XXX_I2C_STATUS_OFFLOAD_ERROR		0xf0000001
#define	MV64XXX_I2C_STATUS_OFFLOAD_OK			0xf0000000


L
Linus Torvalds 已提交
85 86 87 88 89
/* Driver states */
enum {
	MV64XXX_I2C_STATE_INVALID,
	MV64XXX_I2C_STATE_IDLE,
	MV64XXX_I2C_STATE_WAITING_FOR_START_COND,
90
	MV64XXX_I2C_STATE_WAITING_FOR_RESTART,
L
Linus Torvalds 已提交
91 92 93 94 95 96 97 98 99 100
	MV64XXX_I2C_STATE_WAITING_FOR_ADDR_1_ACK,
	MV64XXX_I2C_STATE_WAITING_FOR_ADDR_2_ACK,
	MV64XXX_I2C_STATE_WAITING_FOR_SLAVE_ACK,
	MV64XXX_I2C_STATE_WAITING_FOR_SLAVE_DATA,
};

/* Driver actions */
enum {
	MV64XXX_I2C_ACTION_INVALID,
	MV64XXX_I2C_ACTION_CONTINUE,
101
	MV64XXX_I2C_ACTION_SEND_RESTART,
102
	MV64XXX_I2C_ACTION_OFFLOAD_RESTART,
L
Linus Torvalds 已提交
103 104 105 106 107 108
	MV64XXX_I2C_ACTION_SEND_ADDR_1,
	MV64XXX_I2C_ACTION_SEND_ADDR_2,
	MV64XXX_I2C_ACTION_SEND_DATA,
	MV64XXX_I2C_ACTION_RCV_DATA,
	MV64XXX_I2C_ACTION_RCV_DATA_STOP,
	MV64XXX_I2C_ACTION_SEND_STOP,
109
	MV64XXX_I2C_ACTION_OFFLOAD_SEND_STOP,
L
Linus Torvalds 已提交
110 111
};

112 113 114 115 116 117 118 119 120 121
struct mv64xxx_i2c_regs {
	u8	addr;
	u8	ext_addr;
	u8	data;
	u8	control;
	u8	status;
	u8	clock;
	u8	soft_reset;
};

L
Linus Torvalds 已提交
122
struct mv64xxx_i2c_data {
123 124
	struct i2c_msg		*msgs;
	int			num_msgs;
L
Linus Torvalds 已提交
125 126 127
	int			irq;
	u32			state;
	u32			action;
128
	u32			aborting;
L
Linus Torvalds 已提交
129 130
	u32			cntl_bits;
	void __iomem		*reg_base;
131
	struct mv64xxx_i2c_regs	reg_offsets;
L
Linus Torvalds 已提交
132 133 134 135
	u32			addr1;
	u32			addr2;
	u32			bytes_left;
	u32			byte_posn;
136
	u32			send_stop;
L
Linus Torvalds 已提交
137 138 139 140
	u32			block;
	int			rc;
	u32			freq_m;
	u32			freq_n;
141 142 143
#if defined(CONFIG_HAVE_CLK)
	struct clk              *clk;
#endif
L
Linus Torvalds 已提交
144 145 146 147
	wait_queue_head_t	waitq;
	spinlock_t		lock;
	struct i2c_msg		*msg;
	struct i2c_adapter	adapter;
148
	bool			offload_enabled;
149 150
/* 5us delay in order to avoid repeated start timing violation */
	bool			errata_delay;
151
	struct reset_control	*rstc;
152
	bool			irq_clear_inverted;
L
Linus Torvalds 已提交
153 154
};

155 156 157 158 159 160 161 162 163 164
static struct mv64xxx_i2c_regs mv64xxx_i2c_regs_mv64xxx = {
	.addr		= 0x00,
	.ext_addr	= 0x10,
	.data		= 0x04,
	.control	= 0x08,
	.status		= 0x0c,
	.clock		= 0x0c,
	.soft_reset	= 0x1c,
};

165 166 167 168 169 170 171 172 173 174
static struct mv64xxx_i2c_regs mv64xxx_i2c_regs_sun4i = {
	.addr		= 0x00,
	.ext_addr	= 0x04,
	.data		= 0x08,
	.control	= 0x0c,
	.status		= 0x10,
	.clock		= 0x14,
	.soft_reset	= 0x18,
};

175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
static void
mv64xxx_i2c_prepare_for_io(struct mv64xxx_i2c_data *drv_data,
	struct i2c_msg *msg)
{
	u32	dir = 0;

	drv_data->cntl_bits = MV64XXX_I2C_REG_CONTROL_ACK |
		MV64XXX_I2C_REG_CONTROL_INTEN | MV64XXX_I2C_REG_CONTROL_TWSIEN;

	if (msg->flags & I2C_M_RD)
		dir = 1;

	if (msg->flags & I2C_M_TEN) {
		drv_data->addr1 = 0xf0 | (((u32)msg->addr & 0x300) >> 7) | dir;
		drv_data->addr2 = (u32)msg->addr & 0xff;
	} else {
191
		drv_data->addr1 = MV64XXX_I2C_ADDR_ADDR((u32)msg->addr) | dir;
192 193 194 195
		drv_data->addr2 = 0;
	}
}

196 197 198 199 200 201 202
static int mv64xxx_i2c_offload_msg(struct mv64xxx_i2c_data *drv_data)
{
	unsigned long data_reg_hi = 0;
	unsigned long data_reg_lo = 0;
	unsigned long ctrl_reg;
	struct i2c_msg *msg = drv_data->msgs;

203 204 205
	if (!drv_data->offload_enabled)
		return -EOPNOTSUPP;

206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
	/* Only regular transactions can be offloaded */
	if ((msg->flags & ~(I2C_M_TEN | I2C_M_RD)) != 0)
		return -EINVAL;

	/* Only 1-8 byte transfers can be offloaded */
	if (msg->len < 1 || msg->len > 8)
		return -EINVAL;

	/* Build transaction */
	ctrl_reg = MV64XXX_I2C_BRIDGE_CONTROL_ENABLE |
		   (msg->addr << MV64XXX_I2C_BRIDGE_CONTROL_ADDR_SHIFT);

	if ((msg->flags & I2C_M_TEN) != 0)
		ctrl_reg |=  MV64XXX_I2C_BRIDGE_CONTROL_ADDR_EXT;

	if ((msg->flags & I2C_M_RD) == 0) {
		u8 local_buf[8] = { 0 };

		memcpy(local_buf, msg->buf, msg->len);
		data_reg_lo = cpu_to_le32(*((u32 *)local_buf));
		data_reg_hi = cpu_to_le32(*((u32 *)(local_buf+4)));

		ctrl_reg |= MV64XXX_I2C_BRIDGE_CONTROL_WR |
		    (msg->len - 1) << MV64XXX_I2C_BRIDGE_CONTROL_TX_SIZE_SHIFT;

231
		writel(data_reg_lo,
232
			drv_data->reg_base + MV64XXX_I2C_REG_TX_DATA_LO);
233
		writel(data_reg_hi,
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
			drv_data->reg_base + MV64XXX_I2C_REG_TX_DATA_HI);

	} else {
		ctrl_reg |= MV64XXX_I2C_BRIDGE_CONTROL_RD |
		    (msg->len - 1) << MV64XXX_I2C_BRIDGE_CONTROL_RX_SIZE_SHIFT;
	}

	/* Execute transaction */
	writel(ctrl_reg, drv_data->reg_base + MV64XXX_I2C_REG_BRIDGE_CONTROL);

	return 0;
}

static void
mv64xxx_i2c_update_offload_data(struct mv64xxx_i2c_data *drv_data)
{
	struct i2c_msg *msg = drv_data->msg;

	if (msg->flags & I2C_M_RD) {
		u32 data_reg_lo = readl(drv_data->reg_base +
				MV64XXX_I2C_REG_RX_DATA_LO);
		u32 data_reg_hi = readl(drv_data->reg_base +
				MV64XXX_I2C_REG_RX_DATA_HI);
		u8 local_buf[8] = { 0 };

		*((u32 *)local_buf) = le32_to_cpu(data_reg_lo);
		*((u32 *)(local_buf+4)) = le32_to_cpu(data_reg_hi);
		memcpy(msg->buf, local_buf, msg->len);
	}

}
L
Linus Torvalds 已提交
265 266 267 268 269 270 271
/*
 *****************************************************************************
 *
 *	Finite State Machine & Interrupt Routines
 *
 *****************************************************************************
 */
272 273 274 275 276

/* Reset hardware and initialize FSM */
static void
mv64xxx_i2c_hw_init(struct mv64xxx_i2c_data *drv_data)
{
277 278 279 280 281 282 283 284 285
	if (drv_data->offload_enabled) {
		writel(0, drv_data->reg_base + MV64XXX_I2C_REG_BRIDGE_CONTROL);
		writel(0, drv_data->reg_base + MV64XXX_I2C_REG_BRIDGE_TIMING);
		writel(0, drv_data->reg_base +
			MV64XXX_I2C_REG_BRIDGE_INTR_CAUSE);
		writel(0, drv_data->reg_base +
			MV64XXX_I2C_REG_BRIDGE_INTR_MASK);
	}

286
	writel(0, drv_data->reg_base + drv_data->reg_offsets.soft_reset);
287
	writel(MV64XXX_I2C_BAUD_DIV_M(drv_data->freq_m) | MV64XXX_I2C_BAUD_DIV_N(drv_data->freq_n),
288 289 290
		drv_data->reg_base + drv_data->reg_offsets.clock);
	writel(0, drv_data->reg_base + drv_data->reg_offsets.addr);
	writel(0, drv_data->reg_base + drv_data->reg_offsets.ext_addr);
291
	writel(MV64XXX_I2C_REG_CONTROL_TWSIEN | MV64XXX_I2C_REG_CONTROL_STOP,
292
		drv_data->reg_base + drv_data->reg_offsets.control);
293 294 295
	drv_data->state = MV64XXX_I2C_STATE_IDLE;
}

L
Linus Torvalds 已提交
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
static void
mv64xxx_i2c_fsm(struct mv64xxx_i2c_data *drv_data, u32 status)
{
	/*
	 * If state is idle, then this is likely the remnants of an old
	 * operation that driver has given up on or the user has killed.
	 * If so, issue the stop condition and go to idle.
	 */
	if (drv_data->state == MV64XXX_I2C_STATE_IDLE) {
		drv_data->action = MV64XXX_I2C_ACTION_SEND_STOP;
		return;
	}

	/* The status from the ctlr [mostly] tells us what to do next */
	switch (status) {
	/* Start condition interrupt */
	case MV64XXX_I2C_STATUS_MAST_START: /* 0x08 */
	case MV64XXX_I2C_STATUS_MAST_REPEAT_START: /* 0x10 */
		drv_data->action = MV64XXX_I2C_ACTION_SEND_ADDR_1;
		drv_data->state = MV64XXX_I2C_STATE_WAITING_FOR_ADDR_1_ACK;
		break;

	/* Performing a write */
	case MV64XXX_I2C_STATUS_MAST_WR_ADDR_ACK: /* 0x18 */
		if (drv_data->msg->flags & I2C_M_TEN) {
			drv_data->action = MV64XXX_I2C_ACTION_SEND_ADDR_2;
			drv_data->state =
				MV64XXX_I2C_STATE_WAITING_FOR_ADDR_2_ACK;
			break;
		}
		/* FALLTHRU */
	case MV64XXX_I2C_STATUS_MAST_WR_ADDR_2_ACK: /* 0xd0 */
	case MV64XXX_I2C_STATUS_MAST_WR_ACK: /* 0x28 */
329 330 331
		if ((drv_data->bytes_left == 0)
				|| (drv_data->aborting
					&& (drv_data->byte_posn != 0))) {
332
			if (drv_data->send_stop || drv_data->aborting) {
333 334 335 336 337 338 339 340
				drv_data->action = MV64XXX_I2C_ACTION_SEND_STOP;
				drv_data->state = MV64XXX_I2C_STATE_IDLE;
			} else {
				drv_data->action =
					MV64XXX_I2C_ACTION_SEND_RESTART;
				drv_data->state =
					MV64XXX_I2C_STATE_WAITING_FOR_RESTART;
			}
341
		} else {
L
Linus Torvalds 已提交
342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
			drv_data->action = MV64XXX_I2C_ACTION_SEND_DATA;
			drv_data->state =
				MV64XXX_I2C_STATE_WAITING_FOR_SLAVE_ACK;
			drv_data->bytes_left--;
		}
		break;

	/* Performing a read */
	case MV64XXX_I2C_STATUS_MAST_RD_ADDR_ACK: /* 40 */
		if (drv_data->msg->flags & I2C_M_TEN) {
			drv_data->action = MV64XXX_I2C_ACTION_SEND_ADDR_2;
			drv_data->state =
				MV64XXX_I2C_STATE_WAITING_FOR_ADDR_2_ACK;
			break;
		}
		/* FALLTHRU */
	case MV64XXX_I2C_STATUS_MAST_RD_ADDR_2_ACK: /* 0xe0 */
		if (drv_data->bytes_left == 0) {
			drv_data->action = MV64XXX_I2C_ACTION_SEND_STOP;
			drv_data->state = MV64XXX_I2C_STATE_IDLE;
			break;
		}
		/* FALLTHRU */
	case MV64XXX_I2C_STATUS_MAST_RD_DATA_ACK: /* 0x50 */
		if (status != MV64XXX_I2C_STATUS_MAST_RD_DATA_ACK)
			drv_data->action = MV64XXX_I2C_ACTION_CONTINUE;
		else {
			drv_data->action = MV64XXX_I2C_ACTION_RCV_DATA;
			drv_data->bytes_left--;
		}
		drv_data->state = MV64XXX_I2C_STATE_WAITING_FOR_SLAVE_DATA;

374
		if ((drv_data->bytes_left == 1) || drv_data->aborting)
L
Linus Torvalds 已提交
375 376 377 378 379 380 381 382 383 384 385 386 387 388
			drv_data->cntl_bits &= ~MV64XXX_I2C_REG_CONTROL_ACK;
		break;

	case MV64XXX_I2C_STATUS_MAST_RD_DATA_NO_ACK: /* 0x58 */
		drv_data->action = MV64XXX_I2C_ACTION_RCV_DATA_STOP;
		drv_data->state = MV64XXX_I2C_STATE_IDLE;
		break;

	case MV64XXX_I2C_STATUS_MAST_WR_ADDR_NO_ACK: /* 0x20 */
	case MV64XXX_I2C_STATUS_MAST_WR_NO_ACK: /* 30 */
	case MV64XXX_I2C_STATUS_MAST_RD_ADDR_NO_ACK: /* 48 */
		/* Doesn't seem to be a device at other end */
		drv_data->action = MV64XXX_I2C_ACTION_SEND_STOP;
		drv_data->state = MV64XXX_I2C_STATE_IDLE;
389
		drv_data->rc = -ENXIO;
L
Linus Torvalds 已提交
390 391
		break;

392 393 394 395 396 397 398 399 400 401
	case MV64XXX_I2C_STATUS_OFFLOAD_OK:
		if (drv_data->send_stop || drv_data->aborting) {
			drv_data->action = MV64XXX_I2C_ACTION_OFFLOAD_SEND_STOP;
			drv_data->state = MV64XXX_I2C_STATE_IDLE;
		} else {
			drv_data->action = MV64XXX_I2C_ACTION_OFFLOAD_RESTART;
			drv_data->state = MV64XXX_I2C_STATE_WAITING_FOR_RESTART;
		}
		break;

L
Linus Torvalds 已提交
402 403 404 405 406 407 408
	default:
		dev_err(&drv_data->adapter.dev,
			"mv64xxx_i2c_fsm: Ctlr Error -- state: 0x%x, "
			"status: 0x%x, addr: 0x%x, flags: 0x%x\n",
			 drv_data->state, status, drv_data->msg->addr,
			 drv_data->msg->flags);
		drv_data->action = MV64XXX_I2C_ACTION_SEND_STOP;
409
		mv64xxx_i2c_hw_init(drv_data);
L
Linus Torvalds 已提交
410 411 412 413
		drv_data->rc = -EIO;
	}
}

W
Wolfram Sang 已提交
414 415
static void mv64xxx_i2c_send_start(struct mv64xxx_i2c_data *drv_data)
{
416 417 418 419 420 421
	drv_data->msg = drv_data->msgs;
	drv_data->byte_posn = 0;
	drv_data->bytes_left = drv_data->msg->len;
	drv_data->aborting = 0;
	drv_data->rc = 0;

W
Wolfram Sang 已提交
422 423 424 425 426 427 428 429 430
	/* Can we offload this msg ? */
	if (mv64xxx_i2c_offload_msg(drv_data) < 0) {
		/* No, switch to standard path */
		mv64xxx_i2c_prepare_for_io(drv_data, drv_data->msgs);
		writel(drv_data->cntl_bits | MV64XXX_I2C_REG_CONTROL_START,
			drv_data->reg_base + drv_data->reg_offsets.control);
	}
}

L
Linus Torvalds 已提交
431 432 433 434
static void
mv64xxx_i2c_do_action(struct mv64xxx_i2c_data *drv_data)
{
	switch(drv_data->action) {
435 436 437 438 439 440
	case MV64XXX_I2C_ACTION_OFFLOAD_RESTART:
		mv64xxx_i2c_update_offload_data(drv_data);
		writel(0, drv_data->reg_base +	MV64XXX_I2C_REG_BRIDGE_CONTROL);
		writel(0, drv_data->reg_base +
			MV64XXX_I2C_REG_BRIDGE_INTR_CAUSE);
		/* FALLTHRU */
441
	case MV64XXX_I2C_ACTION_SEND_RESTART:
442 443 444 445 446
		/* We should only get here if we have further messages */
		BUG_ON(drv_data->num_msgs == 0);

		drv_data->msgs++;
		drv_data->num_msgs--;
W
Wolfram Sang 已提交
447
		mv64xxx_i2c_send_start(drv_data);
448

449 450 451
		if (drv_data->errata_delay)
			udelay(5);

452 453 454 455 456 457
		/*
		 * We're never at the start of the message here, and by this
		 * time it's already too late to do any protocol mangling.
		 * Thankfully, do not advertise support for that feature.
		 */
		drv_data->send_stop = drv_data->num_msgs == 1;
458 459
		break;

L
Linus Torvalds 已提交
460 461
	case MV64XXX_I2C_ACTION_CONTINUE:
		writel(drv_data->cntl_bits,
462
			drv_data->reg_base + drv_data->reg_offsets.control);
L
Linus Torvalds 已提交
463 464 465 466
		break;

	case MV64XXX_I2C_ACTION_SEND_ADDR_1:
		writel(drv_data->addr1,
467
			drv_data->reg_base + drv_data->reg_offsets.data);
L
Linus Torvalds 已提交
468
		writel(drv_data->cntl_bits,
469
			drv_data->reg_base + drv_data->reg_offsets.control);
L
Linus Torvalds 已提交
470 471 472 473
		break;

	case MV64XXX_I2C_ACTION_SEND_ADDR_2:
		writel(drv_data->addr2,
474
			drv_data->reg_base + drv_data->reg_offsets.data);
L
Linus Torvalds 已提交
475
		writel(drv_data->cntl_bits,
476
			drv_data->reg_base + drv_data->reg_offsets.control);
L
Linus Torvalds 已提交
477 478 479 480
		break;

	case MV64XXX_I2C_ACTION_SEND_DATA:
		writel(drv_data->msg->buf[drv_data->byte_posn++],
481
			drv_data->reg_base + drv_data->reg_offsets.data);
L
Linus Torvalds 已提交
482
		writel(drv_data->cntl_bits,
483
			drv_data->reg_base + drv_data->reg_offsets.control);
L
Linus Torvalds 已提交
484 485 486 487
		break;

	case MV64XXX_I2C_ACTION_RCV_DATA:
		drv_data->msg->buf[drv_data->byte_posn++] =
488
			readl(drv_data->reg_base + drv_data->reg_offsets.data);
L
Linus Torvalds 已提交
489
		writel(drv_data->cntl_bits,
490
			drv_data->reg_base + drv_data->reg_offsets.control);
L
Linus Torvalds 已提交
491 492 493 494
		break;

	case MV64XXX_I2C_ACTION_RCV_DATA_STOP:
		drv_data->msg->buf[drv_data->byte_posn++] =
495
			readl(drv_data->reg_base + drv_data->reg_offsets.data);
L
Linus Torvalds 已提交
496 497
		drv_data->cntl_bits &= ~MV64XXX_I2C_REG_CONTROL_INTEN;
		writel(drv_data->cntl_bits | MV64XXX_I2C_REG_CONTROL_STOP,
498
			drv_data->reg_base + drv_data->reg_offsets.control);
L
Linus Torvalds 已提交
499
		drv_data->block = 0;
500 501 502
		if (drv_data->errata_delay)
			udelay(5);

503
		wake_up(&drv_data->waitq);
L
Linus Torvalds 已提交
504 505 506 507 508 509 510 511
		break;

	case MV64XXX_I2C_ACTION_INVALID:
	default:
		dev_err(&drv_data->adapter.dev,
			"mv64xxx_i2c_do_action: Invalid action: %d\n",
			drv_data->action);
		drv_data->rc = -EIO;
512

L
Linus Torvalds 已提交
513 514 515 516
		/* FALLTHRU */
	case MV64XXX_I2C_ACTION_SEND_STOP:
		drv_data->cntl_bits &= ~MV64XXX_I2C_REG_CONTROL_INTEN;
		writel(drv_data->cntl_bits | MV64XXX_I2C_REG_CONTROL_STOP,
517
			drv_data->reg_base + drv_data->reg_offsets.control);
L
Linus Torvalds 已提交
518
		drv_data->block = 0;
519
		wake_up(&drv_data->waitq);
L
Linus Torvalds 已提交
520
		break;
521 522 523 524 525 526 527 528 529

	case MV64XXX_I2C_ACTION_OFFLOAD_SEND_STOP:
		mv64xxx_i2c_update_offload_data(drv_data);
		writel(0, drv_data->reg_base +	MV64XXX_I2C_REG_BRIDGE_CONTROL);
		writel(0, drv_data->reg_base +
			MV64XXX_I2C_REG_BRIDGE_INTR_CAUSE);
		drv_data->block = 0;
		wake_up(&drv_data->waitq);
		break;
L
Linus Torvalds 已提交
530 531 532
	}
}

533
static irqreturn_t
534
mv64xxx_i2c_intr(int irq, void *dev_id)
L
Linus Torvalds 已提交
535 536 537 538
{
	struct mv64xxx_i2c_data	*drv_data = dev_id;
	unsigned long	flags;
	u32		status;
539
	irqreturn_t	rc = IRQ_NONE;
L
Linus Torvalds 已提交
540 541

	spin_lock_irqsave(&drv_data->lock, flags);
542 543 544 545 546 547 548 549 550 551 552 553 554 555 556

	if (drv_data->offload_enabled) {
		while (readl(drv_data->reg_base +
				MV64XXX_I2C_REG_BRIDGE_INTR_CAUSE)) {
			int reg_status = readl(drv_data->reg_base +
					MV64XXX_I2C_REG_BRIDGE_STATUS);
			if (reg_status & MV64XXX_I2C_BRIDGE_STATUS_ERROR)
				status = MV64XXX_I2C_STATUS_OFFLOAD_ERROR;
			else
				status = MV64XXX_I2C_STATUS_OFFLOAD_OK;
			mv64xxx_i2c_fsm(drv_data, status);
			mv64xxx_i2c_do_action(drv_data);
			rc = IRQ_HANDLED;
		}
	}
557
	while (readl(drv_data->reg_base + drv_data->reg_offsets.control) &
L
Linus Torvalds 已提交
558
						MV64XXX_I2C_REG_CONTROL_IFLG) {
559
		status = readl(drv_data->reg_base + drv_data->reg_offsets.status);
L
Linus Torvalds 已提交
560 561
		mv64xxx_i2c_fsm(drv_data, status);
		mv64xxx_i2c_do_action(drv_data);
562 563 564 565 566

		if (drv_data->irq_clear_inverted)
			writel(drv_data->cntl_bits | MV64XXX_I2C_REG_CONTROL_IFLG,
			       drv_data->reg_base + drv_data->reg_offsets.control);

L
Linus Torvalds 已提交
567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587
		rc = IRQ_HANDLED;
	}
	spin_unlock_irqrestore(&drv_data->lock, flags);

	return rc;
}

/*
 *****************************************************************************
 *
 *	I2C Msg Execution Routines
 *
 *****************************************************************************
 */
static void
mv64xxx_i2c_wait_for_completion(struct mv64xxx_i2c_data *drv_data)
{
	long		time_left;
	unsigned long	flags;
	char		abort = 0;

588
	time_left = wait_event_timeout(drv_data->waitq,
589
		!drv_data->block, drv_data->adapter.timeout);
L
Linus Torvalds 已提交
590 591 592 593 594 595 596 597 598 599 600

	spin_lock_irqsave(&drv_data->lock, flags);
	if (!time_left) { /* Timed out */
		drv_data->rc = -ETIMEDOUT;
		abort = 1;
	} else if (time_left < 0) { /* Interrupted/Error */
		drv_data->rc = time_left; /* errno value */
		abort = 1;
	}

	if (abort && drv_data->block) {
601
		drv_data->aborting = 1;
L
Linus Torvalds 已提交
602 603 604
		spin_unlock_irqrestore(&drv_data->lock, flags);

		time_left = wait_event_timeout(drv_data->waitq,
605
			!drv_data->block, drv_data->adapter.timeout);
L
Linus Torvalds 已提交
606

607
		if ((time_left <= 0) && drv_data->block) {
L
Linus Torvalds 已提交
608 609
			drv_data->state = MV64XXX_I2C_STATE_IDLE;
			dev_err(&drv_data->adapter.dev,
610 611 612
				"mv64xxx: I2C bus locked, block: %d, "
				"time_left: %d\n", drv_data->block,
				(int)time_left);
613
			mv64xxx_i2c_hw_init(drv_data);
L
Linus Torvalds 已提交
614 615 616 617 618 619
		}
	} else
		spin_unlock_irqrestore(&drv_data->lock, flags);
}

static int
620
mv64xxx_i2c_execute_msg(struct mv64xxx_i2c_data *drv_data, struct i2c_msg *msg,
621
				int is_last)
L
Linus Torvalds 已提交
622 623 624 625 626
{
	unsigned long	flags;

	spin_lock_irqsave(&drv_data->lock, flags);

627 628
	drv_data->state = MV64XXX_I2C_STATE_WAITING_FOR_START_COND;

629
	drv_data->send_stop = is_last;
L
Linus Torvalds 已提交
630
	drv_data->block = 1;
631
	mv64xxx_i2c_send_start(drv_data);
L
Linus Torvalds 已提交
632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654
	spin_unlock_irqrestore(&drv_data->lock, flags);

	mv64xxx_i2c_wait_for_completion(drv_data);
	return drv_data->rc;
}

/*
 *****************************************************************************
 *
 *	I2C Core Support Routines (Interface to higher level I2C code)
 *
 *****************************************************************************
 */
static u32
mv64xxx_i2c_functionality(struct i2c_adapter *adap)
{
	return I2C_FUNC_I2C | I2C_FUNC_10BIT_ADDR | I2C_FUNC_SMBUS_EMUL;
}

static int
mv64xxx_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
{
	struct mv64xxx_i2c_data *drv_data = i2c_get_adapdata(adap);
655
	int rc, ret = num;
L
Linus Torvalds 已提交
656

657 658 659 660 661 662 663 664 665 666
	BUG_ON(drv_data->msgs != NULL);
	drv_data->msgs = msgs;
	drv_data->num_msgs = num;

	rc = mv64xxx_i2c_execute_msg(drv_data, &msgs[0], num == 1);
	if (rc < 0)
		ret = rc;

	drv_data->num_msgs = 0;
	drv_data->msgs = NULL;
L
Linus Torvalds 已提交
667

668
	return ret;
L
Linus Torvalds 已提交
669 670
}

671
static const struct i2c_algorithm mv64xxx_i2c_algo = {
L
Linus Torvalds 已提交
672 673 674 675 676 677 678 679 680 681 682
	.master_xfer = mv64xxx_i2c_xfer,
	.functionality = mv64xxx_i2c_functionality,
};

/*
 *****************************************************************************
 *
 *	Driver Interface & Early Init Routines
 *
 *****************************************************************************
 */
683
static const struct of_device_id mv64xxx_i2c_of_match_table[] = {
684
	{ .compatible = "allwinner,sun4i-i2c", .data = &mv64xxx_i2c_regs_sun4i},
685
	{ .compatible = "allwinner,sun6i-a31-i2c", .data = &mv64xxx_i2c_regs_sun4i},
686
	{ .compatible = "marvell,mv64xxx-i2c", .data = &mv64xxx_i2c_regs_mv64xxx},
687
	{ .compatible = "marvell,mv78230-i2c", .data = &mv64xxx_i2c_regs_mv64xxx},
688
	{ .compatible = "marvell,mv78230-a0-i2c", .data = &mv64xxx_i2c_regs_mv64xxx},
689 690 691 692
	{}
};
MODULE_DEVICE_TABLE(of, mv64xxx_i2c_of_match_table);

693
#ifdef CONFIG_OF
694
#ifdef CONFIG_HAVE_CLK
695
static int
696 697 698 699 700
mv64xxx_calc_freq(const int tclk, const int n, const int m)
{
	return tclk / (10 * (m + 1) * (2 << n));
}

701
static bool
702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723
mv64xxx_find_baud_factors(const u32 req_freq, const u32 tclk, u32 *best_n,
			  u32 *best_m)
{
	int freq, delta, best_delta = INT_MAX;
	int m, n;

	for (n = 0; n <= 7; n++)
		for (m = 0; m <= 15; m++) {
			freq = mv64xxx_calc_freq(tclk, n, m);
			delta = req_freq - freq;
			if (delta >= 0 && delta < best_delta) {
				*best_m = m;
				*best_n = n;
				best_delta = delta;
			}
			if (best_delta == 0)
				return true;
		}
	if (best_delta == INT_MAX)
		return false;
	return true;
}
724
#endif /* CONFIG_HAVE_CLK */
725

726
static int
727
mv64xxx_of_config(struct mv64xxx_i2c_data *drv_data,
728
		  struct device *dev)
729 730 731 732 733 734 735 736 737
{
	/* CLK is mandatory when using DT to describe the i2c bus. We
	 * need to know tclk in order to calculate bus clock
	 * factors.
	 */
#if !defined(CONFIG_HAVE_CLK)
	/* Have OF but no CLK */
	return -ENODEV;
#else
738 739 740 741 742
	const struct of_device_id *device;
	struct device_node *np = dev->of_node;
	u32 bus_freq, tclk;
	int rc = 0;

743 744 745 746 747
	if (IS_ERR(drv_data->clk)) {
		rc = -ENODEV;
		goto out;
	}
	tclk = clk_get_rate(drv_data->clk);
748 749 750 751 752

	rc = of_property_read_u32(np, "clock-frequency", &bus_freq);
	if (rc)
		bus_freq = 100000; /* 100kHz by default */

753 754 755 756 757 758 759
	if (!mv64xxx_find_baud_factors(bus_freq, tclk,
				       &drv_data->freq_n, &drv_data->freq_m)) {
		rc = -EINVAL;
		goto out;
	}
	drv_data->irq = irq_of_parse_and_map(np, 0);

760 761 762 763 764 765 766 767 768 769
	drv_data->rstc = devm_reset_control_get(dev, NULL);
	if (IS_ERR(drv_data->rstc)) {
		if (PTR_ERR(drv_data->rstc) == -EPROBE_DEFER) {
			rc = -EPROBE_DEFER;
			goto out;
		}
	} else {
		reset_control_deassert(drv_data->rstc);
	}

770 771 772 773
	/* Its not yet defined how timeouts will be specified in device tree.
	 * So hard code the value to 1 second.
	 */
	drv_data->adapter.timeout = HZ;
774 775 776 777 778 779 780

	device = of_match_device(mv64xxx_i2c_of_match_table, dev);
	if (!device)
		return -ENODEV;

	memcpy(&drv_data->reg_offsets, device->data, sizeof(drv_data->reg_offsets));

781 782
	/*
	 * For controllers embedded in new SoCs activate the
783
	 * Transaction Generator support and the errata fix.
784
	 */
785
	if (of_device_is_compatible(np, "marvell,mv78230-i2c")) {
786
		drv_data->offload_enabled = true;
787 788
		drv_data->errata_delay = true;
	}
789

790 791 792 793
	if (of_device_is_compatible(np, "marvell,mv78230-a0-i2c")) {
		drv_data->offload_enabled = false;
		drv_data->errata_delay = true;
	}
794 795 796 797

	if (of_device_is_compatible(np, "allwinner,sun6i-a31-i2c"))
		drv_data->irq_clear_inverted = true;

798 799 800 801 802
out:
	return rc;
#endif
}
#else /* CONFIG_OF */
803
static int
804
mv64xxx_of_config(struct mv64xxx_i2c_data *drv_data,
805
		  struct device *dev)
806 807 808 809 810
{
	return -ENODEV;
}
#endif /* CONFIG_OF */

811
static int
812
mv64xxx_i2c_probe(struct platform_device *pd)
L
Linus Torvalds 已提交
813 814
{
	struct mv64xxx_i2c_data		*drv_data;
J
Jingoo Han 已提交
815
	struct mv64xxx_i2c_pdata	*pdata = dev_get_platdata(&pd->dev);
816
	struct resource	*r;
L
Linus Torvalds 已提交
817 818
	int	rc;

819
	if ((!pdata && !pd->dev.of_node))
L
Linus Torvalds 已提交
820 821
		return -ENODEV;

R
Russell King 已提交
822 823
	drv_data = devm_kzalloc(&pd->dev, sizeof(struct mv64xxx_i2c_data),
				GFP_KERNEL);
L
Linus Torvalds 已提交
824 825 826
	if (!drv_data)
		return -ENOMEM;

827 828
	r = platform_get_resource(pd, IORESOURCE_MEM, 0);
	drv_data->reg_base = devm_ioremap_resource(&pd->dev, r);
R
Russell King 已提交
829 830
	if (IS_ERR(drv_data->reg_base))
		return PTR_ERR(drv_data->reg_base);
L
Linus Torvalds 已提交
831

832
	strlcpy(drv_data->adapter.name, MV64XXX_I2C_CTLR_NAME " adapter",
D
David Brownell 已提交
833
		sizeof(drv_data->adapter.name));
L
Linus Torvalds 已提交
834 835 836 837

	init_waitqueue_head(&drv_data->waitq);
	spin_lock_init(&drv_data->lock);

838 839
#if defined(CONFIG_HAVE_CLK)
	/* Not all platforms have a clk */
840
	drv_data->clk = devm_clk_get(&pd->dev, NULL);
841 842 843 844 845 846 847 848 849 850
	if (!IS_ERR(drv_data->clk)) {
		clk_prepare(drv_data->clk);
		clk_enable(drv_data->clk);
	}
#endif
	if (pdata) {
		drv_data->freq_m = pdata->freq_m;
		drv_data->freq_n = pdata->freq_n;
		drv_data->irq = platform_get_irq(pd, 0);
		drv_data->adapter.timeout = msecs_to_jiffies(pdata->timeout);
851
		drv_data->offload_enabled = false;
852
		memcpy(&drv_data->reg_offsets, &mv64xxx_i2c_regs_mv64xxx, sizeof(drv_data->reg_offsets));
853
	} else if (pd->dev.of_node) {
854
		rc = mv64xxx_of_config(drv_data, &pd->dev);
855
		if (rc)
R
Russell King 已提交
856
			goto exit_clk;
857
	}
858 859
	if (drv_data->irq < 0) {
		rc = -ENXIO;
860
		goto exit_reset;
861
	}
862

863
	drv_data->adapter.dev.parent = &pd->dev;
L
Linus Torvalds 已提交
864 865
	drv_data->adapter.algo = &mv64xxx_i2c_algo;
	drv_data->adapter.owner = THIS_MODULE;
866
	drv_data->adapter.class = I2C_CLASS_HWMON | I2C_CLASS_SPD;
867
	drv_data->adapter.nr = pd->id;
868
	drv_data->adapter.dev.of_node = pd->dev.of_node;
869
	platform_set_drvdata(pd, drv_data);
L
Linus Torvalds 已提交
870 871
	i2c_set_adapdata(&drv_data->adapter, drv_data);

872 873
	mv64xxx_i2c_hw_init(drv_data);

874 875 876
	rc = request_irq(drv_data->irq, mv64xxx_i2c_intr, 0,
			 MV64XXX_I2C_CTLR_NAME, drv_data);
	if (rc) {
877
		dev_err(&drv_data->adapter.dev,
878 879
			"mv64xxx: Can't register intr handler irq%d: %d\n",
			drv_data->irq, rc);
880
		goto exit_reset;
881
	} else if ((rc = i2c_add_numbered_adapter(&drv_data->adapter)) != 0) {
882 883
		dev_err(&drv_data->adapter.dev,
			"mv64xxx: Can't add i2c adapter, rc: %d\n", -rc);
L
Linus Torvalds 已提交
884 885 886 887 888
		goto exit_free_irq;
	}

	return 0;

R
Russell King 已提交
889 890
exit_free_irq:
	free_irq(drv_data->irq, drv_data);
891 892 893
exit_reset:
	if (pd->dev.of_node && !IS_ERR(drv_data->rstc))
		reset_control_assert(drv_data->rstc);
R
Russell King 已提交
894
exit_clk:
895 896 897 898 899 900 901
#if defined(CONFIG_HAVE_CLK)
	/* Not all platforms have a clk */
	if (!IS_ERR(drv_data->clk)) {
		clk_disable(drv_data->clk);
		clk_unprepare(drv_data->clk);
	}
#endif
L
Linus Torvalds 已提交
902 903 904
	return rc;
}

905
static int
906
mv64xxx_i2c_remove(struct platform_device *dev)
L
Linus Torvalds 已提交
907
{
908
	struct mv64xxx_i2c_data		*drv_data = platform_get_drvdata(dev);
L
Linus Torvalds 已提交
909

910
	i2c_del_adapter(&drv_data->adapter);
L
Linus Torvalds 已提交
911
	free_irq(drv_data->irq, drv_data);
912 913
	if (dev->dev.of_node && !IS_ERR(drv_data->rstc))
		reset_control_assert(drv_data->rstc);
914 915 916 917 918 919 920
#if defined(CONFIG_HAVE_CLK)
	/* Not all platforms have a clk */
	if (!IS_ERR(drv_data->clk)) {
		clk_disable(drv_data->clk);
		clk_unprepare(drv_data->clk);
	}
#endif
L
Linus Torvalds 已提交
921

922
	return 0;
L
Linus Torvalds 已提交
923 924
}

925
static struct platform_driver mv64xxx_i2c_driver = {
L
Linus Torvalds 已提交
926
	.probe	= mv64xxx_i2c_probe,
927
	.remove	= mv64xxx_i2c_remove,
928 929 930
	.driver	= {
		.owner	= THIS_MODULE,
		.name	= MV64XXX_I2C_CTLR_NAME,
S
Sachin Kamat 已提交
931
		.of_match_table = mv64xxx_i2c_of_match_table,
932
	},
L
Linus Torvalds 已提交
933 934
};

935
module_platform_driver(mv64xxx_i2c_driver);
L
Linus Torvalds 已提交
936 937 938 939

MODULE_AUTHOR("Mark A. Greer <mgreer@mvista.com>");
MODULE_DESCRIPTION("Marvell mv64xxx host bridge i2c ctlr driver");
MODULE_LICENSE("GPL");