i2c-ocores.c 13.9 KB
Newer Older
1 2 3 4 5 6
/*
 * i2c-ocores.c: I2C bus driver for OpenCores I2C controller
 * (http://www.opencores.org/projects.cgi/web/i2c/overview).
 *
 * Peter Korsgaard <jacmet@sunsite.dk>
 *
7 8 9
 * Support for the GRLIB port of the controller by
 * Andreas Larsson <andreas@gaisler.com>
 *
10 11 12 13 14
 * 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.
 */

15
#include <linux/clk.h>
16
#include <linux/err.h>
17 18 19 20 21 22 23
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/errno.h>
#include <linux/platform_device.h>
#include <linux/i2c.h>
#include <linux/interrupt.h>
#include <linux/wait.h>
24
#include <linux/platform_data/i2c-ocores.h>
25
#include <linux/slab.h>
26
#include <linux/io.h>
27
#include <linux/log2.h>
28 29 30

struct ocores_i2c {
	void __iomem *base;
31
	u32 reg_shift;
32
	u32 reg_io_width;
33 34 35 36 37 38
	wait_queue_head_t wait;
	struct i2c_adapter adap;
	struct i2c_msg *msg;
	int pos;
	int nmsgs;
	int state; /* see STATE_ */
39
	struct clk *clk;
40 41
	int ip_clock_khz;
	int bus_clock_khz;
42 43
	void (*setreg)(struct ocores_i2c *i2c, int reg, u8 value);
	u8 (*getreg)(struct ocores_i2c *i2c, int reg);
44 45 46 47 48 49 50
};

/* registers */
#define OCI2C_PRELOW		0
#define OCI2C_PREHIGH		1
#define OCI2C_CONTROL		2
#define OCI2C_DATA		3
51 52
#define OCI2C_CMD		4 /* write only */
#define OCI2C_STATUS		4 /* read only, same address as OCI2C_CMD */
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76

#define OCI2C_CTRL_IEN		0x40
#define OCI2C_CTRL_EN		0x80

#define OCI2C_CMD_START		0x91
#define OCI2C_CMD_STOP		0x41
#define OCI2C_CMD_READ		0x21
#define OCI2C_CMD_WRITE		0x11
#define OCI2C_CMD_READ_ACK	0x21
#define OCI2C_CMD_READ_NACK	0x29
#define OCI2C_CMD_IACK		0x01

#define OCI2C_STAT_IF		0x01
#define OCI2C_STAT_TIP		0x02
#define OCI2C_STAT_ARBLOST	0x20
#define OCI2C_STAT_BUSY		0x40
#define OCI2C_STAT_NACK		0x80

#define STATE_DONE		0
#define STATE_START		1
#define STATE_WRITE		2
#define STATE_READ		3
#define STATE_ERROR		4

77 78 79 80
#define TYPE_OCORES		0
#define TYPE_GRLIB		1

static void oc_setreg_8(struct ocores_i2c *i2c, int reg, u8 value)
81
{
82 83 84 85 86 87 88 89 90 91 92 93 94
	iowrite8(value, i2c->base + (reg << i2c->reg_shift));
}

static void oc_setreg_16(struct ocores_i2c *i2c, int reg, u8 value)
{
	iowrite16(value, i2c->base + (reg << i2c->reg_shift));
}

static void oc_setreg_32(struct ocores_i2c *i2c, int reg, u8 value)
{
	iowrite32(value, i2c->base + (reg << i2c->reg_shift));
}

95 96 97 98 99 100 101 102 103 104
static void oc_setreg_16be(struct ocores_i2c *i2c, int reg, u8 value)
{
	iowrite16be(value, i2c->base + (reg << i2c->reg_shift));
}

static void oc_setreg_32be(struct ocores_i2c *i2c, int reg, u8 value)
{
	iowrite32be(value, i2c->base + (reg << i2c->reg_shift));
}

105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
static inline u8 oc_getreg_8(struct ocores_i2c *i2c, int reg)
{
	return ioread8(i2c->base + (reg << i2c->reg_shift));
}

static inline u8 oc_getreg_16(struct ocores_i2c *i2c, int reg)
{
	return ioread16(i2c->base + (reg << i2c->reg_shift));
}

static inline u8 oc_getreg_32(struct ocores_i2c *i2c, int reg)
{
	return ioread32(i2c->base + (reg << i2c->reg_shift));
}

120 121 122 123 124 125 126 127 128 129
static inline u8 oc_getreg_16be(struct ocores_i2c *i2c, int reg)
{
	return ioread16be(i2c->base + (reg << i2c->reg_shift));
}

static inline u8 oc_getreg_32be(struct ocores_i2c *i2c, int reg)
{
	return ioread32be(i2c->base + (reg << i2c->reg_shift));
}

130 131
static inline void oc_setreg(struct ocores_i2c *i2c, int reg, u8 value)
{
132
	i2c->setreg(i2c, reg, value);
133 134 135 136
}

static inline u8 oc_getreg(struct ocores_i2c *i2c, int reg)
{
137
	return i2c->getreg(i2c, reg);
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
}

static void ocores_process(struct ocores_i2c *i2c)
{
	struct i2c_msg *msg = i2c->msg;
	u8 stat = oc_getreg(i2c, OCI2C_STATUS);

	if ((i2c->state == STATE_DONE) || (i2c->state == STATE_ERROR)) {
		/* stop has been sent */
		oc_setreg(i2c, OCI2C_CMD, OCI2C_CMD_IACK);
		wake_up(&i2c->wait);
		return;
	}

	/* error? */
	if (stat & OCI2C_STAT_ARBLOST) {
		i2c->state = STATE_ERROR;
		oc_setreg(i2c, OCI2C_CMD, OCI2C_CMD_STOP);
		return;
	}

	if ((i2c->state == STATE_START) || (i2c->state == STATE_WRITE)) {
		i2c->state =
			(msg->flags & I2C_M_RD) ? STATE_READ : STATE_WRITE;

		if (stat & OCI2C_STAT_NACK) {
			i2c->state = STATE_ERROR;
			oc_setreg(i2c, OCI2C_CMD, OCI2C_CMD_STOP);
			return;
		}
	} else
		msg->buf[i2c->pos++] = oc_getreg(i2c, OCI2C_DATA);

	/* end of msg? */
	if (i2c->pos == msg->len) {
		i2c->nmsgs--;
		i2c->msg++;
		i2c->pos = 0;
		msg = i2c->msg;

		if (i2c->nmsgs) {	/* end? */
			/* send start? */
			if (!(msg->flags & I2C_M_NOSTART)) {
181
				u8 addr = i2c_8bit_addr_from_msg(msg);
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

				i2c->state = STATE_START;

				oc_setreg(i2c, OCI2C_DATA, addr);
				oc_setreg(i2c, OCI2C_CMD,  OCI2C_CMD_START);
				return;
			} else
				i2c->state = (msg->flags & I2C_M_RD)
					? STATE_READ : STATE_WRITE;
		} else {
			i2c->state = STATE_DONE;
			oc_setreg(i2c, OCI2C_CMD, OCI2C_CMD_STOP);
			return;
		}
	}

	if (i2c->state == STATE_READ) {
		oc_setreg(i2c, OCI2C_CMD, i2c->pos == (msg->len-1) ?
			  OCI2C_CMD_READ_NACK : OCI2C_CMD_READ_ACK);
	} else {
		oc_setreg(i2c, OCI2C_DATA, msg->buf[i2c->pos++]);
		oc_setreg(i2c, OCI2C_CMD, OCI2C_CMD_WRITE);
	}
}

207
static irqreturn_t ocores_isr(int irq, void *dev_id)
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
{
	struct ocores_i2c *i2c = dev_id;

	ocores_process(i2c);

	return IRQ_HANDLED;
}

static int ocores_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
{
	struct ocores_i2c *i2c = i2c_get_adapdata(adap);

	i2c->msg = msgs;
	i2c->pos = 0;
	i2c->nmsgs = num;
	i2c->state = STATE_START;

	oc_setreg(i2c, OCI2C_DATA,
			(i2c->msg->addr << 1) |
			((i2c->msg->flags & I2C_M_RD) ? 1:0));

	oc_setreg(i2c, OCI2C_CMD, OCI2C_CMD_START);

	if (wait_event_timeout(i2c->wait, (i2c->state == STATE_ERROR) ||
			       (i2c->state == STATE_DONE), HZ))
		return (i2c->state == STATE_DONE) ? num : -EIO;
	else
		return -ETIMEDOUT;
}

238
static int ocores_init(struct device *dev, struct ocores_i2c *i2c)
239 240
{
	int prescale;
241
	int diff;
242 243 244 245 246
	u8 ctrl = oc_getreg(i2c, OCI2C_CONTROL);

	/* make sure the device is disabled */
	oc_setreg(i2c, OCI2C_CONTROL, ctrl & ~(OCI2C_CTRL_EN|OCI2C_CTRL_IEN));

247 248 249 250 251 252 253 254 255 256 257
	prescale = (i2c->ip_clock_khz / (5 * i2c->bus_clock_khz)) - 1;
	prescale = clamp(prescale, 0, 0xffff);

	diff = i2c->ip_clock_khz / (5 * (prescale + 1)) - i2c->bus_clock_khz;
	if (abs(diff) > i2c->bus_clock_khz / 10) {
		dev_err(dev,
			"Unsupported clock settings: core: %d KHz, bus: %d KHz\n",
			i2c->ip_clock_khz, i2c->bus_clock_khz);
		return -EINVAL;
	}

258 259 260 261 262 263
	oc_setreg(i2c, OCI2C_PRELOW, prescale & 0xff);
	oc_setreg(i2c, OCI2C_PREHIGH, prescale >> 8);

	/* Init the device */
	oc_setreg(i2c, OCI2C_CMD, OCI2C_CMD_IACK);
	oc_setreg(i2c, OCI2C_CONTROL, ctrl | OCI2C_CTRL_IEN | OCI2C_CTRL_EN);
264 265

	return 0;
266 267 268 269 270 271 272 273
}


static u32 ocores_func(struct i2c_adapter *adap)
{
	return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
}

274
static const struct i2c_algorithm ocores_algorithm = {
275 276
	.master_xfer = ocores_xfer,
	.functionality = ocores_func,
277 278
};

279
static const struct i2c_adapter ocores_adapter = {
280 281 282 283
	.owner = THIS_MODULE,
	.name = "i2c-ocores",
	.class = I2C_CLASS_DEPRECATED,
	.algo = &ocores_algorithm,
284 285
};

J
Jingoo Han 已提交
286
static const struct of_device_id ocores_i2c_match[] = {
287 288 289 290 291 292 293 294 295 296 297 298
	{
		.compatible = "opencores,i2c-ocores",
		.data = (void *)TYPE_OCORES,
	},
	{
		.compatible = "aeroflexgaisler,i2cmst",
		.data = (void *)TYPE_GRLIB,
	},
	{},
};
MODULE_DEVICE_TABLE(of, ocores_i2c_match);

J
Jonas Bonn 已提交
299
#ifdef CONFIG_OF
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 329 330 331 332 333
/* Read and write functions for the GRLIB port of the controller. Registers are
 * 32-bit big endian and the PRELOW and PREHIGH registers are merged into one
 * register. The subsequent registers has their offset decreased accordingly. */
static u8 oc_getreg_grlib(struct ocores_i2c *i2c, int reg)
{
	u32 rd;
	int rreg = reg;
	if (reg != OCI2C_PRELOW)
		rreg--;
	rd = ioread32be(i2c->base + (rreg << i2c->reg_shift));
	if (reg == OCI2C_PREHIGH)
		return (u8)(rd >> 8);
	else
		return (u8)rd;
}

static void oc_setreg_grlib(struct ocores_i2c *i2c, int reg, u8 value)
{
	u32 curr, wr;
	int rreg = reg;
	if (reg != OCI2C_PRELOW)
		rreg--;
	if (reg == OCI2C_PRELOW || reg == OCI2C_PREHIGH) {
		curr = ioread32be(i2c->base + (rreg << i2c->reg_shift));
		if (reg == OCI2C_PRELOW)
			wr = (curr & 0xff00) | value;
		else
			wr = (((u32)value) << 8) | (curr & 0xff);
	} else {
		wr = value;
	}
	iowrite32be(wr, i2c->base + (rreg << i2c->reg_shift));
}

334 335
static int ocores_i2c_of_probe(struct platform_device *pdev,
				struct ocores_i2c *i2c)
J
Jonas Bonn 已提交
336
{
337
	struct device_node *np = pdev->dev.of_node;
338
	const struct of_device_id *match;
339
	u32 val;
340 341
	u32 clock_frequency;
	bool clock_frequency_present;
342 343 344 345 346 347 348 349 350 351 352 353 354

	if (of_property_read_u32(np, "reg-shift", &i2c->reg_shift)) {
		/* no 'reg-shift', check for deprecated 'regstep' */
		if (!of_property_read_u32(np, "regstep", &val)) {
			if (!is_power_of_2(val)) {
				dev_err(&pdev->dev, "invalid regstep %d\n",
					val);
				return -EINVAL;
			}
			i2c->reg_shift = ilog2(val);
			dev_warn(&pdev->dev,
				"regstep property deprecated, use reg-shift\n");
		}
J
Jonas Bonn 已提交
355 356
	}

357 358 359 360
	clock_frequency_present = !of_property_read_u32(np, "clock-frequency",
							&clock_frequency);
	i2c->bus_clock_khz = 100;

361 362 363 364 365 366 367 368 369 370 371 372 373
	i2c->clk = devm_clk_get(&pdev->dev, NULL);

	if (!IS_ERR(i2c->clk)) {
		int ret = clk_prepare_enable(i2c->clk);

		if (ret) {
			dev_err(&pdev->dev,
				"clk_prepare_enable failed: %d\n", ret);
			return ret;
		}
		i2c->ip_clock_khz = clk_get_rate(i2c->clk) / 1000;
		if (clock_frequency_present)
			i2c->bus_clock_khz = clock_frequency / 1000;
374 375 376 377 378 379 380 381
	}

	if (i2c->ip_clock_khz == 0) {
		if (of_property_read_u32(np, "opencores,ip-clock-frequency",
						&val)) {
			if (!clock_frequency_present) {
				dev_err(&pdev->dev,
					"Missing required parameter 'opencores,ip-clock-frequency'\n");
382
				clk_disable_unprepare(i2c->clk);
383 384 385 386 387 388 389 390 391
				return -ENODEV;
			}
			i2c->ip_clock_khz = clock_frequency / 1000;
			dev_warn(&pdev->dev,
				 "Deprecated usage of the 'clock-frequency' property, please update to 'opencores,ip-clock-frequency'\n");
		} else {
			i2c->ip_clock_khz = val / 1000;
			if (clock_frequency_present)
				i2c->bus_clock_khz = clock_frequency / 1000;
392
		}
J
Jonas Bonn 已提交
393 394
	}

395 396
	of_property_read_u32(pdev->dev.of_node, "reg-io-width",
				&i2c->reg_io_width);
397 398

	match = of_match_node(ocores_i2c_match, pdev->dev.of_node);
399
	if (match && (long)match->data == TYPE_GRLIB) {
400 401 402 403 404
		dev_dbg(&pdev->dev, "GRLIB variant of i2c-ocores\n");
		i2c->setreg = oc_setreg_grlib;
		i2c->getreg = oc_getreg_grlib;
	}

J
Jonas Bonn 已提交
405 406 407 408 409
	return 0;
}
#else
#define ocores_i2c_of_probe(pdev,i2c) -ENODEV
#endif
410

411
static int ocores_i2c_probe(struct platform_device *pdev)
412 413 414
{
	struct ocores_i2c *i2c;
	struct ocores_i2c_platform_data *pdata;
415 416
	struct resource *res;
	int irq;
417
	int ret;
418
	int i;
419

420 421 422
	irq = platform_get_irq(pdev, 0);
	if (irq < 0)
		return irq;
423

424
	i2c = devm_kzalloc(&pdev->dev, sizeof(*i2c), GFP_KERNEL);
425 426 427
	if (!i2c)
		return -ENOMEM;

428
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
429 430 431
	i2c->base = devm_ioremap_resource(&pdev->dev, res);
	if (IS_ERR(i2c->base))
		return PTR_ERR(i2c->base);
432

J
Jingoo Han 已提交
433
	pdata = dev_get_platdata(&pdev->dev);
J
Jonas Bonn 已提交
434
	if (pdata) {
435
		i2c->reg_shift = pdata->reg_shift;
436
		i2c->reg_io_width = pdata->reg_io_width;
437 438
		i2c->ip_clock_khz = pdata->clock_khz;
		i2c->bus_clock_khz = 100;
J
Jonas Bonn 已提交
439 440 441 442 443 444
	} else {
		ret = ocores_i2c_of_probe(pdev, i2c);
		if (ret)
			return ret;
	}

445 446 447
	if (i2c->reg_io_width == 0)
		i2c->reg_io_width = 1; /* Set to default value */

448
	if (!i2c->setreg || !i2c->getreg) {
449 450 451
		bool be = pdata ? pdata->big_endian :
			of_device_is_big_endian(pdev->dev.of_node);

452 453 454 455 456 457 458
		switch (i2c->reg_io_width) {
		case 1:
			i2c->setreg = oc_setreg_8;
			i2c->getreg = oc_getreg_8;
			break;

		case 2:
459 460
			i2c->setreg = be ? oc_setreg_16be : oc_setreg_16;
			i2c->getreg = be ? oc_getreg_16be : oc_getreg_16;
461 462 463
			break;

		case 4:
464 465
			i2c->setreg = be ? oc_setreg_32be : oc_setreg_32;
			i2c->getreg = be ? oc_getreg_32be : oc_getreg_32;
466 467 468 469 470
			break;

		default:
			dev_err(&pdev->dev, "Unsupported I/O width (%d)\n",
				i2c->reg_io_width);
471 472
			ret = -EINVAL;
			goto err_clk;
473 474 475
		}
	}

476 477
	ret = ocores_init(&pdev->dev, i2c);
	if (ret)
478
		goto err_clk;
479 480

	init_waitqueue_head(&i2c->wait);
481
	ret = devm_request_irq(&pdev->dev, irq, ocores_isr, 0,
482
			       pdev->name, i2c);
483 484
	if (ret) {
		dev_err(&pdev->dev, "Cannot claim IRQ\n");
485
		goto err_clk;
486 487 488 489 490 491 492
	}

	/* hook up driver to tree */
	platform_set_drvdata(pdev, i2c);
	i2c->adap = ocores_adapter;
	i2c_set_adapdata(&i2c->adap, i2c);
	i2c->adap.dev.parent = &pdev->dev;
J
Jonas Bonn 已提交
493
	i2c->adap.dev.of_node = pdev->dev.of_node;
494 495 496

	/* add i2c adapter to i2c tree */
	ret = i2c_add_adapter(&i2c->adap);
497
	if (ret)
498
		goto err_clk;
499

500
	/* add in known devices to the bus */
J
Jonas Bonn 已提交
501 502 503 504
	if (pdata) {
		for (i = 0; i < pdata->num_devices; i++)
			i2c_new_device(&i2c->adap, pdata->devices + i);
	}
505

506
	return 0;
507 508 509 510

err_clk:
	clk_disable_unprepare(i2c->clk);
	return ret;
511 512
}

513
static int ocores_i2c_remove(struct platform_device *pdev)
514 515 516 517 518 519 520 521 522 523
{
	struct ocores_i2c *i2c = platform_get_drvdata(pdev);

	/* disable i2c logic */
	oc_setreg(i2c, OCI2C_CONTROL, oc_getreg(i2c, OCI2C_CONTROL)
		  & ~(OCI2C_CTRL_EN|OCI2C_CTRL_IEN));

	/* remove adapter & data */
	i2c_del_adapter(&i2c->adap);

524 525 526
	if (!IS_ERR(i2c->clk))
		clk_disable_unprepare(i2c->clk);

527 528 529
	return 0;
}

530
#ifdef CONFIG_PM_SLEEP
531
static int ocores_i2c_suspend(struct device *dev)
M
Manuel Lauss 已提交
532
{
533
	struct ocores_i2c *i2c = dev_get_drvdata(dev);
M
Manuel Lauss 已提交
534 535 536 537 538
	u8 ctrl = oc_getreg(i2c, OCI2C_CONTROL);

	/* make sure the device is disabled */
	oc_setreg(i2c, OCI2C_CONTROL, ctrl & ~(OCI2C_CTRL_EN|OCI2C_CTRL_IEN));

539 540
	if (!IS_ERR(i2c->clk))
		clk_disable_unprepare(i2c->clk);
M
Manuel Lauss 已提交
541 542 543
	return 0;
}

544
static int ocores_i2c_resume(struct device *dev)
M
Manuel Lauss 已提交
545
{
546
	struct ocores_i2c *i2c = dev_get_drvdata(dev);
M
Manuel Lauss 已提交
547

548
	if (!IS_ERR(i2c->clk)) {
549
		unsigned long rate;
550 551 552 553 554 555 556
		int ret = clk_prepare_enable(i2c->clk);

		if (ret) {
			dev_err(dev,
				"clk_prepare_enable failed: %d\n", ret);
			return ret;
		}
557 558 559
		rate = clk_get_rate(i2c->clk) / 1000;
		if (rate)
			i2c->ip_clock_khz = rate;
560
	}
561
	return ocores_init(dev, i2c);
M
Manuel Lauss 已提交
562
}
563 564 565

static SIMPLE_DEV_PM_OPS(ocores_i2c_pm, ocores_i2c_suspend, ocores_i2c_resume);
#define OCORES_I2C_PM	(&ocores_i2c_pm)
M
Manuel Lauss 已提交
566
#else
567
#define OCORES_I2C_PM	NULL
M
Manuel Lauss 已提交
568 569
#endif

570
static struct platform_driver ocores_i2c_driver = {
M
Manuel Lauss 已提交
571
	.probe   = ocores_i2c_probe,
572
	.remove  = ocores_i2c_remove,
M
Manuel Lauss 已提交
573
	.driver  = {
574
		.name = "ocores-i2c",
575
		.of_match_table = ocores_i2c_match,
576
		.pm = OCORES_I2C_PM,
577 578 579
	},
};

580
module_platform_driver(ocores_i2c_driver);
581 582 583 584

MODULE_AUTHOR("Peter Korsgaard <jacmet@sunsite.dk>");
MODULE_DESCRIPTION("OpenCores I2C bus driver");
MODULE_LICENSE("GPL");
585
MODULE_ALIAS("platform:ocores-i2c");