i2c-pxa.c 24.7 KB
Newer Older
R
Russell King 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
/*
 *  i2c_adap_pxa.c
 *
 *  I2C adapter for the PXA I2C bus access.
 *
 *  Copyright (C) 2002 Intrinsyc Software Inc.
 *  Copyright (C) 2004-2005 Deep Blue Solutions Ltd.
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2 as
 *  published by the Free Software Foundation.
 *
 *  History:
 *    Apr 2002: Initial version [CS]
 *    Jun 2002: Properly seperated algo/adap [FB]
 *    Jan 2003: Fixed several bugs concerning interrupt handling [Kai-Uwe Bloem]
 *    Jan 2003: added limited signal handling [Kai-Uwe Bloem]
 *    Sep 2004: Major rework to ensure efficient bus handling [RMK]
 *    Dec 2004: Added support for PXA27x and slave device probing [Liam Girdwood]
 *    Feb 2005: Rework slave mode handling [RMK]
 */
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/i2c.h>
#include <linux/i2c-id.h>
#include <linux/init.h>
#include <linux/time.h>
#include <linux/sched.h>
#include <linux/delay.h>
#include <linux/errno.h>
#include <linux/interrupt.h>
#include <linux/i2c-pxa.h>
33
#include <linux/platform_device.h>
34 35
#include <linux/err.h>
#include <linux/clk.h>
R
Russell King 已提交
36

37
#include <mach/hardware.h>
R
Russell King 已提交
38
#include <asm/irq.h>
39
#include <asm/io.h>
40 41
#include <mach/i2c.h>
#include <mach/pxa-regs.h>
R
Russell King 已提交
42 43 44 45 46 47 48 49 50 51 52

struct pxa_i2c {
	spinlock_t		lock;
	wait_queue_head_t	wait;
	struct i2c_msg		*msg;
	unsigned int		msg_num;
	unsigned int		msg_idx;
	unsigned int		msg_ptr;
	unsigned int		slave_addr;

	struct i2c_adapter	adap;
53
	struct clk		*clk;
R
Russell King 已提交
54 55 56 57 58 59 60
#ifdef CONFIG_I2C_PXA_SLAVE
	struct i2c_slave_client *slave;
#endif

	unsigned int		irqlogidx;
	u32			isrlog[32];
	u32			icrlog[32];
61 62

	void __iomem		*reg_base;
63
	unsigned int		reg_shift;
64 65 66 67 68

	unsigned long		iobase;
	unsigned long		iosize;

	int			irq;
M
Mike Rapoport 已提交
69
	int			use_pio;
R
Russell King 已提交
70 71
};

72 73 74 75 76
#define _IBMR(i2c)	((i2c)->reg_base + (0x0 << (i2c)->reg_shift))
#define _IDBR(i2c)	((i2c)->reg_base + (0x4 << (i2c)->reg_shift))
#define _ICR(i2c)	((i2c)->reg_base + (0x8 << (i2c)->reg_shift))
#define _ISR(i2c)	((i2c)->reg_base + (0xc << (i2c)->reg_shift))
#define _ISAR(i2c)	((i2c)->reg_base + (0x10 << (i2c)->reg_shift))
77

R
Russell King 已提交
78 79 80 81 82 83 84 85 86 87 88 89
/*
 * I2C Slave mode address
 */
#define I2C_PXA_SLAVE_ADDR      0x1

#ifdef DEBUG

struct bits {
	u32	mask;
	const char *set;
	const char *unset;
};
J
Jiri Slaby 已提交
90
#define PXA_BIT(m, s, u)	{ .mask = m, .set = s, .unset = u }
R
Russell King 已提交
91 92 93 94 95 96 97 98 99 100 101 102 103 104

static inline void
decode_bits(const char *prefix, const struct bits *bits, int num, u32 val)
{
	printk("%s %08x: ", prefix, val);
	while (num--) {
		const char *str = val & bits->mask ? bits->set : bits->unset;
		if (str)
			printk("%s ", str);
		bits++;
	}
}

static const struct bits isr_bits[] = {
J
Jiri Slaby 已提交
105 106 107 108 109 110 111 112 113 114 115
	PXA_BIT(ISR_RWM,	"RX",		"TX"),
	PXA_BIT(ISR_ACKNAK,	"NAK",		"ACK"),
	PXA_BIT(ISR_UB,		"Bsy",		"Rdy"),
	PXA_BIT(ISR_IBB,	"BusBsy",	"BusRdy"),
	PXA_BIT(ISR_SSD,	"SlaveStop",	NULL),
	PXA_BIT(ISR_ALD,	"ALD",		NULL),
	PXA_BIT(ISR_ITE,	"TxEmpty",	NULL),
	PXA_BIT(ISR_IRF,	"RxFull",	NULL),
	PXA_BIT(ISR_GCAD,	"GenCall",	NULL),
	PXA_BIT(ISR_SAD,	"SlaveAddr",	NULL),
	PXA_BIT(ISR_BED,	"BusErr",	NULL),
R
Russell King 已提交
116 117 118 119
};

static void decode_ISR(unsigned int val)
{
120
	decode_bits(KERN_DEBUG "ISR", isr_bits, ARRAY_SIZE(isr_bits), val);
R
Russell King 已提交
121 122 123 124
	printk("\n");
}

static const struct bits icr_bits[] = {
J
Jiri Slaby 已提交
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
	PXA_BIT(ICR_START,  "START",	NULL),
	PXA_BIT(ICR_STOP,   "STOP",	NULL),
	PXA_BIT(ICR_ACKNAK, "ACKNAK",	NULL),
	PXA_BIT(ICR_TB,     "TB",	NULL),
	PXA_BIT(ICR_MA,     "MA",	NULL),
	PXA_BIT(ICR_SCLE,   "SCLE",	"scle"),
	PXA_BIT(ICR_IUE,    "IUE",	"iue"),
	PXA_BIT(ICR_GCD,    "GCD",	NULL),
	PXA_BIT(ICR_ITEIE,  "ITEIE",	NULL),
	PXA_BIT(ICR_IRFIE,  "IRFIE",	NULL),
	PXA_BIT(ICR_BEIE,   "BEIE",	NULL),
	PXA_BIT(ICR_SSDIE,  "SSDIE",	NULL),
	PXA_BIT(ICR_ALDIE,  "ALDIE",	NULL),
	PXA_BIT(ICR_SADIE,  "SADIE",	NULL),
	PXA_BIT(ICR_UR,     "UR",		"ur"),
R
Russell King 已提交
140 141
};

142
#ifdef CONFIG_I2C_PXA_SLAVE
R
Russell King 已提交
143 144
static void decode_ICR(unsigned int val)
{
145
	decode_bits(KERN_DEBUG "ICR", icr_bits, ARRAY_SIZE(icr_bits), val);
R
Russell King 已提交
146 147
	printk("\n");
}
148
#endif
R
Russell King 已提交
149 150 151 152 153

static unsigned int i2c_debug = DEBUG;

static void i2c_pxa_show_state(struct pxa_i2c *i2c, int lno, const char *fname)
{
154 155
	dev_dbg(&i2c->adap.dev, "state:%s:%d: ISR=%08x, ICR=%08x, IBMR=%02x\n", fname, lno,
		readl(_ISR(i2c)), readl(_ICR(i2c)), readl(_IBMR(i2c)));
R
Russell King 已提交
156 157
}

158
#define show_state(i2c) i2c_pxa_show_state(i2c, __LINE__, __func__)
R
Russell King 已提交
159 160 161 162 163 164 165 166
#else
#define i2c_debug	0

#define show_state(i2c) do { } while (0)
#define decode_ISR(val) do { } while (0)
#define decode_ICR(val) do { } while (0)
#endif

167
#define eedbg(lvl, x...) do { if ((lvl) < 1) { printk(KERN_DEBUG "" x); } } while(0)
R
Russell King 已提交
168 169

static void i2c_pxa_master_complete(struct pxa_i2c *i2c, int ret);
M
Mike Rapoport 已提交
170
static irqreturn_t i2c_pxa_handler(int this_irq, void *dev_id);
R
Russell King 已提交
171 172 173 174 175 176 177

static void i2c_pxa_scream_blue_murder(struct pxa_i2c *i2c, const char *why)
{
	unsigned int i;
	printk("i2c: error: %s\n", why);
	printk("i2c: msg_num: %d msg_idx: %d msg_ptr: %d\n",
		i2c->msg_num, i2c->msg_idx, i2c->msg_ptr);
178
	printk("i2c: ICR: %08x ISR: %08x\n"
179
	       "i2c: log: ", readl(_ICR(i2c)), readl(_ISR(i2c)));
R
Russell King 已提交
180 181 182 183 184 185 186
	for (i = 0; i < i2c->irqlogidx; i++)
		printk("[%08x:%08x] ", i2c->isrlog[i], i2c->icrlog[i]);
	printk("\n");
}

static inline int i2c_pxa_is_slavemode(struct pxa_i2c *i2c)
{
187
	return !(readl(_ICR(i2c)) & ICR_SCLE);
R
Russell King 已提交
188 189 190 191 192 193 194
}

static void i2c_pxa_abort(struct pxa_i2c *i2c)
{
	unsigned long timeout = jiffies + HZ/4;

	if (i2c_pxa_is_slavemode(i2c)) {
195
		dev_dbg(&i2c->adap.dev, "%s: called in slave mode\n", __func__);
R
Russell King 已提交
196 197 198
		return;
	}

199 200
	while (time_before(jiffies, timeout) && (readl(_IBMR(i2c)) & 0x1) == 0) {
		unsigned long icr = readl(_ICR(i2c));
R
Russell King 已提交
201 202 203 204

		icr &= ~ICR_START;
		icr |= ICR_ACKNAK | ICR_STOP | ICR_TB;

205
		writel(icr, _ICR(i2c));
R
Russell King 已提交
206 207 208 209 210 211

		show_state(i2c);

		msleep(1);
	}

212 213
	writel(readl(_ICR(i2c)) & ~(ICR_MA | ICR_START | ICR_STOP),
	       _ICR(i2c));
R
Russell King 已提交
214 215 216 217 218 219
}

static int i2c_pxa_wait_bus_not_busy(struct pxa_i2c *i2c)
{
	int timeout = DEF_TIMEOUT;

220 221
	while (timeout-- && readl(_ISR(i2c)) & (ISR_IBB | ISR_UB)) {
		if ((readl(_ISR(i2c)) & ISR_SAD) != 0)
R
Russell King 已提交
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
			timeout += 4;

		msleep(2);
		show_state(i2c);
	}

	if (timeout <= 0)
		show_state(i2c);

	return timeout <= 0 ? I2C_RETRY : 0;
}

static int i2c_pxa_wait_master(struct pxa_i2c *i2c)
{
	unsigned long timeout = jiffies + HZ*4;

	while (time_before(jiffies, timeout)) {
		if (i2c_debug > 1)
240
			dev_dbg(&i2c->adap.dev, "%s: %ld: ISR=%08x, ICR=%08x, IBMR=%02x\n",
241
				__func__, (long)jiffies, readl(_ISR(i2c)), readl(_ICR(i2c)), readl(_IBMR(i2c)));
R
Russell King 已提交
242

243
		if (readl(_ISR(i2c)) & ISR_SAD) {
R
Russell King 已提交
244
			if (i2c_debug > 0)
245
				dev_dbg(&i2c->adap.dev, "%s: Slave detected\n", __func__);
R
Russell King 已提交
246 247 248 249 250 251 252
			goto out;
		}

		/* wait for unit and bus being not busy, and we also do a
		 * quick check of the i2c lines themselves to ensure they've
		 * gone high...
		 */
253
		if ((readl(_ISR(i2c)) & (ISR_UB | ISR_IBB)) == 0 && readl(_IBMR(i2c)) == 3) {
R
Russell King 已提交
254
			if (i2c_debug > 0)
255
				dev_dbg(&i2c->adap.dev, "%s: done\n", __func__);
R
Russell King 已提交
256 257 258 259 260 261 262
			return 1;
		}

		msleep(1);
	}

	if (i2c_debug > 0)
263
		dev_dbg(&i2c->adap.dev, "%s: did not free\n", __func__);
R
Russell King 已提交
264 265 266 267 268 269 270
 out:
	return 0;
}

static int i2c_pxa_set_master(struct pxa_i2c *i2c)
{
	if (i2c_debug)
271
		dev_dbg(&i2c->adap.dev, "setting to bus master\n");
R
Russell King 已提交
272

273
	if ((readl(_ISR(i2c)) & (ISR_UB | ISR_IBB)) != 0) {
274
		dev_dbg(&i2c->adap.dev, "%s: unit is busy\n", __func__);
R
Russell King 已提交
275
		if (!i2c_pxa_wait_master(i2c)) {
276
			dev_dbg(&i2c->adap.dev, "%s: error: unit busy\n", __func__);
R
Russell King 已提交
277 278 279 280
			return I2C_RETRY;
		}
	}

281
	writel(readl(_ICR(i2c)) | ICR_SCLE, _ICR(i2c));
R
Russell King 已提交
282 283 284 285 286 287 288 289 290 291 292 293 294 295
	return 0;
}

#ifdef CONFIG_I2C_PXA_SLAVE
static int i2c_pxa_wait_slave(struct pxa_i2c *i2c)
{
	unsigned long timeout = jiffies + HZ*1;

	/* wait for stop */

	show_state(i2c);

	while (time_before(jiffies, timeout)) {
		if (i2c_debug > 1)
296
			dev_dbg(&i2c->adap.dev, "%s: %ld: ISR=%08x, ICR=%08x, IBMR=%02x\n",
297
				__func__, (long)jiffies, readl(_ISR(i2c)), readl(_ICR(i2c)), readl(_IBMR(i2c)));
R
Russell King 已提交
298

299 300 301
		if ((readl(_ISR(i2c)) & (ISR_UB|ISR_IBB)) == 0 ||
		    (readl(_ISR(i2c)) & ISR_SAD) != 0 ||
		    (readl(_ICR(i2c)) & ICR_SCLE) == 0) {
R
Russell King 已提交
302
			if (i2c_debug > 1)
303
				dev_dbg(&i2c->adap.dev, "%s: done\n", __func__);
R
Russell King 已提交
304 305 306 307 308 309 310
			return 1;
		}

		msleep(1);
	}

	if (i2c_debug > 0)
311
		dev_dbg(&i2c->adap.dev, "%s: did not free\n", __func__);
R
Russell King 已提交
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
	return 0;
}

/*
 * clear the hold on the bus, and take of anything else
 * that has been configured
 */
static void i2c_pxa_set_slave(struct pxa_i2c *i2c, int errcode)
{
	show_state(i2c);

	if (errcode < 0) {
		udelay(100);   /* simple delay */
	} else {
		/* we need to wait for the stop condition to end */

		/* if we where in stop, then clear... */
329
		if (readl(_ICR(i2c)) & ICR_STOP) {
R
Russell King 已提交
330
			udelay(100);
331
			writel(readl(_ICR(i2c)) & ~ICR_STOP, _ICR(i2c));
R
Russell King 已提交
332 333 334
		}

		if (!i2c_pxa_wait_slave(i2c)) {
335 336
			dev_err(&i2c->adap.dev, "%s: wait timedout\n",
				__func__);
R
Russell King 已提交
337 338 339 340
			return;
		}
	}

341 342
	writel(readl(_ICR(i2c)) & ~(ICR_STOP|ICR_ACKNAK|ICR_MA), _ICR(i2c));
	writel(readl(_ICR(i2c)) & ~ICR_SCLE, _ICR(i2c));
R
Russell King 已提交
343 344

	if (i2c_debug) {
345 346
		dev_dbg(&i2c->adap.dev, "ICR now %08x, ISR %08x\n", readl(_ICR(i2c)), readl(_ISR(i2c)));
		decode_ICR(readl(_ICR(i2c)));
R
Russell King 已提交
347 348 349 350 351 352 353 354 355 356 357 358 359 360
	}
}
#else
#define i2c_pxa_set_slave(i2c, err)	do { } while (0)
#endif

static void i2c_pxa_reset(struct pxa_i2c *i2c)
{
	pr_debug("Resetting I2C Controller Unit\n");

	/* abort any transfer currently under way */
	i2c_pxa_abort(i2c);

	/* reset according to 9.8 */
361 362 363
	writel(ICR_UR, _ICR(i2c));
	writel(I2C_ISR_INIT, _ISR(i2c));
	writel(readl(_ICR(i2c)) & ~ICR_UR, _ICR(i2c));
R
Russell King 已提交
364

365
	writel(i2c->slave_addr, _ISAR(i2c));
R
Russell King 已提交
366 367

	/* set control register values */
368
	writel(I2C_ICR_INIT, _ICR(i2c));
R
Russell King 已提交
369 370

#ifdef CONFIG_I2C_PXA_SLAVE
371
	dev_info(&i2c->adap.dev, "Enabling slave mode\n");
372
	writel(readl(_ICR(i2c)) | ICR_SADIE | ICR_ALDIE | ICR_SSDIE, _ICR(i2c));
R
Russell King 已提交
373 374 375 376 377
#endif

	i2c_pxa_set_slave(i2c, 0);

	/* enable unit */
378
	writel(readl(_ICR(i2c)) | ICR_IUE, _ICR(i2c));
R
Russell King 已提交
379 380 381 382 383 384 385 386 387 388 389 390 391 392
	udelay(100);
}


#ifdef CONFIG_I2C_PXA_SLAVE
/*
 * PXA I2C Slave mode
 */

static void i2c_pxa_slave_txempty(struct pxa_i2c *i2c, u32 isr)
{
	if (isr & ISR_BED) {
		/* what should we do here? */
	} else {
393 394 395 396
		int ret = 0;

		if (i2c->slave != NULL)
			ret = i2c->slave->read(i2c->slave->data);
R
Russell King 已提交
397

398 399
		writel(ret, _IDBR(i2c));
		writel(readl(_ICR(i2c)) | ICR_TB, _ICR(i2c));   /* allow next byte */
R
Russell King 已提交
400 401 402 403 404
	}
}

static void i2c_pxa_slave_rxfull(struct pxa_i2c *i2c, u32 isr)
{
405
	unsigned int byte = readl(_IDBR(i2c));
R
Russell King 已提交
406 407 408 409

	if (i2c->slave != NULL)
		i2c->slave->write(i2c->slave->data, byte);

410
	writel(readl(_ICR(i2c)) | ICR_TB, _ICR(i2c));
R
Russell King 已提交
411 412 413 414 415 416 417
}

static void i2c_pxa_slave_start(struct pxa_i2c *i2c, u32 isr)
{
	int timeout;

	if (i2c_debug > 0)
418
		dev_dbg(&i2c->adap.dev, "SAD, mode is slave-%cx\n",
R
Russell King 已提交
419 420 421 422 423 424 425 426 427 428 429
		       (isr & ISR_RWM) ? 'r' : 't');

	if (i2c->slave != NULL)
		i2c->slave->event(i2c->slave->data,
				 (isr & ISR_RWM) ? I2C_SLAVE_EVENT_START_READ : I2C_SLAVE_EVENT_START_WRITE);

	/*
	 * slave could interrupt in the middle of us generating a
	 * start condition... if this happens, we'd better back off
	 * and stop holding the poor thing up
	 */
430 431
	writel(readl(_ICR(i2c)) & ~(ICR_START|ICR_STOP), _ICR(i2c));
	writel(readl(_ICR(i2c)) | ICR_TB, _ICR(i2c));
R
Russell King 已提交
432 433 434 435

	timeout = 0x10000;

	while (1) {
436
		if ((readl(_IBMR(i2c)) & 2) == 2)
R
Russell King 已提交
437 438 439 440 441
			break;

		timeout--;

		if (timeout <= 0) {
442
			dev_err(&i2c->adap.dev, "timeout waiting for SCL high\n");
R
Russell King 已提交
443 444 445 446
			break;
		}
	}

447
	writel(readl(_ICR(i2c)) & ~ICR_SCLE, _ICR(i2c));
R
Russell King 已提交
448 449 450 451 452
}

static void i2c_pxa_slave_stop(struct pxa_i2c *i2c)
{
	if (i2c_debug > 2)
453
		dev_dbg(&i2c->adap.dev, "ISR: SSD (Slave Stop)\n");
R
Russell King 已提交
454 455 456 457 458

	if (i2c->slave != NULL)
		i2c->slave->event(i2c->slave->data, I2C_SLAVE_EVENT_STOP);

	if (i2c_debug > 2)
459
		dev_dbg(&i2c->adap.dev, "ISR: SSD (Slave Stop) acked\n");
R
Russell King 已提交
460 461 462 463 464 465 466 467 468 469 470 471 472 473

	/*
	 * If we have a master-mode message waiting,
	 * kick it off now that the slave has completed.
	 */
	if (i2c->msg)
		i2c_pxa_master_complete(i2c, I2C_RETRY);
}
#else
static void i2c_pxa_slave_txempty(struct pxa_i2c *i2c, u32 isr)
{
	if (isr & ISR_BED) {
		/* what should we do here? */
	} else {
474 475
		writel(0, _IDBR(i2c));
		writel(readl(_ICR(i2c)) | ICR_TB, _ICR(i2c));
R
Russell King 已提交
476 477 478 479 480
	}
}

static void i2c_pxa_slave_rxfull(struct pxa_i2c *i2c, u32 isr)
{
481
	writel(readl(_ICR(i2c)) | ICR_TB | ICR_ACKNAK, _ICR(i2c));
R
Russell King 已提交
482 483 484 485 486 487 488 489 490 491 492
}

static void i2c_pxa_slave_start(struct pxa_i2c *i2c, u32 isr)
{
	int timeout;

	/*
	 * slave could interrupt in the middle of us generating a
	 * start condition... if this happens, we'd better back off
	 * and stop holding the poor thing up
	 */
493 494
	writel(readl(_ICR(i2c)) & ~(ICR_START|ICR_STOP), _ICR(i2c));
	writel(readl(_ICR(i2c)) | ICR_TB | ICR_ACKNAK, _ICR(i2c));
R
Russell King 已提交
495 496 497 498

	timeout = 0x10000;

	while (1) {
499
		if ((readl(_IBMR(i2c)) & 2) == 2)
R
Russell King 已提交
500 501 502 503 504
			break;

		timeout--;

		if (timeout <= 0) {
505
			dev_err(&i2c->adap.dev, "timeout waiting for SCL high\n");
R
Russell King 已提交
506 507 508 509
			break;
		}
	}

510
	writel(readl(_ICR(i2c)) & ~ICR_SCLE, _ICR(i2c));
R
Russell King 已提交
511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540
}

static void i2c_pxa_slave_stop(struct pxa_i2c *i2c)
{
	if (i2c->msg)
		i2c_pxa_master_complete(i2c, I2C_RETRY);
}
#endif

/*
 * PXA I2C Master mode
 */

static inline unsigned int i2c_pxa_addr_byte(struct i2c_msg *msg)
{
	unsigned int addr = (msg->addr & 0x7f) << 1;

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

	return addr;
}

static inline void i2c_pxa_start_message(struct pxa_i2c *i2c)
{
	u32 icr;

	/*
	 * Step 1: target slave address into IDBR
	 */
541
	writel(i2c_pxa_addr_byte(i2c->msg), _IDBR(i2c));
R
Russell King 已提交
542 543 544 545

	/*
	 * Step 2: initiate the write.
	 */
546 547
	icr = readl(_ICR(i2c)) & ~(ICR_STOP | ICR_ALDIE);
	writel(icr | ICR_START | ICR_TB, _ICR(i2c));
R
Russell King 已提交
548 549
}

J
Jean Delvare 已提交
550 551 552 553 554 555 556 557 558
static inline void i2c_pxa_stop_message(struct pxa_i2c *i2c)
{
	u32 icr;

	/*
	 * Clear the STOP and ACK flags
	 */
	icr = readl(_ICR(i2c));
	icr &= ~(ICR_STOP | ICR_ACKNAK);
R
Russell King 已提交
559
	writel(icr, _ICR(i2c));
J
Jean Delvare 已提交
560 561
}

M
Mike Rapoport 已提交
562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626
static int i2c_pxa_pio_set_master(struct pxa_i2c *i2c)
{
	/* make timeout the same as for interrupt based functions */
	long timeout = 2 * DEF_TIMEOUT;

	/*
	 * Wait for the bus to become free.
	 */
	while (timeout-- && readl(_ISR(i2c)) & (ISR_IBB | ISR_UB)) {
		udelay(1000);
		show_state(i2c);
	}

	if (timeout <= 0) {
		show_state(i2c);
		dev_err(&i2c->adap.dev,
			"i2c_pxa: timeout waiting for bus free\n");
		return I2C_RETRY;
	}

	/*
	 * Set master mode.
	 */
	writel(readl(_ICR(i2c)) | ICR_SCLE, _ICR(i2c));

	return 0;
}

static int i2c_pxa_do_pio_xfer(struct pxa_i2c *i2c,
			       struct i2c_msg *msg, int num)
{
	unsigned long timeout = 500000; /* 5 seconds */
	int ret = 0;

	ret = i2c_pxa_pio_set_master(i2c);
	if (ret)
		goto out;

	i2c->msg = msg;
	i2c->msg_num = num;
	i2c->msg_idx = 0;
	i2c->msg_ptr = 0;
	i2c->irqlogidx = 0;

	i2c_pxa_start_message(i2c);

	while (timeout-- && i2c->msg_num > 0) {
		i2c_pxa_handler(0, i2c);
		udelay(10);
	}

	i2c_pxa_stop_message(i2c);

	/*
	 * We place the return code in i2c->msg_idx.
	 */
	ret = i2c->msg_idx;

out:
	if (timeout == 0)
		i2c_pxa_scream_blue_murder(i2c, "timeout");

	return ret;
}

R
Russell King 已提交
627
/*
628
 * We are protected by the adapter bus mutex.
R
Russell King 已提交
629 630 631 632 633 634 635 636 637 638 639
 */
static int i2c_pxa_do_xfer(struct pxa_i2c *i2c, struct i2c_msg *msg, int num)
{
	long timeout;
	int ret;

	/*
	 * Wait for the bus to become free.
	 */
	ret = i2c_pxa_wait_bus_not_busy(i2c);
	if (ret) {
640
		dev_err(&i2c->adap.dev, "i2c_pxa: timeout waiting for bus free\n");
R
Russell King 已提交
641 642 643 644 645 646 647 648
		goto out;
	}

	/*
	 * Set master mode.
	 */
	ret = i2c_pxa_set_master(i2c);
	if (ret) {
649
		dev_err(&i2c->adap.dev, "i2c_pxa_set_master: error %d\n", ret);
R
Russell King 已提交
650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668
		goto out;
	}

	spin_lock_irq(&i2c->lock);

	i2c->msg = msg;
	i2c->msg_num = num;
	i2c->msg_idx = 0;
	i2c->msg_ptr = 0;
	i2c->irqlogidx = 0;

	i2c_pxa_start_message(i2c);

	spin_unlock_irq(&i2c->lock);

	/*
	 * The rest of the processing occurs in the interrupt handler.
	 */
	timeout = wait_event_timeout(i2c->wait, i2c->msg_num == 0, HZ * 5);
J
Jean Delvare 已提交
669
	i2c_pxa_stop_message(i2c);
R
Russell King 已提交
670 671 672 673 674 675 676 677 678 679 680 681 682

	/*
	 * We place the return code in i2c->msg_idx.
	 */
	ret = i2c->msg_idx;

	if (timeout == 0)
		i2c_pxa_scream_blue_murder(i2c, "timeout");

 out:
	return ret;
}

M
Mike Rapoport 已提交
683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711
static int i2c_pxa_pio_xfer(struct i2c_adapter *adap,
			    struct i2c_msg msgs[], int num)
{
	struct pxa_i2c *i2c = adap->algo_data;
	int ret, i;

	/* If the I2C controller is disabled we need to reset it
	  (probably due to a suspend/resume destroying state). We do
	  this here as we can then avoid worrying about resuming the
	  controller before its users. */
	if (!(readl(_ICR(i2c)) & ICR_IUE))
		i2c_pxa_reset(i2c);

	for (i = adap->retries; i >= 0; i--) {
		ret = i2c_pxa_do_pio_xfer(i2c, msgs, num);
		if (ret != I2C_RETRY)
			goto out;

		if (i2c_debug)
			dev_dbg(&adap->dev, "Retrying transmission\n");
		udelay(100);
	}
	i2c_pxa_scream_blue_murder(i2c, "exhausted retries");
	ret = -EREMOTEIO;
 out:
	i2c_pxa_set_slave(i2c, ret);
	return ret;
}

R
Russell King 已提交
712 713 714 715 716 717 718 719 720 721 722
/*
 * i2c_pxa_master_complete - complete the message and wake up.
 */
static void i2c_pxa_master_complete(struct pxa_i2c *i2c, int ret)
{
	i2c->msg_ptr = 0;
	i2c->msg = NULL;
	i2c->msg_idx ++;
	i2c->msg_num = 0;
	if (ret)
		i2c->msg_idx = ret;
M
Mike Rapoport 已提交
723 724
	if (!i2c->use_pio)
		wake_up(&i2c->wait);
R
Russell King 已提交
725 726 727 728
}

static void i2c_pxa_irq_txempty(struct pxa_i2c *i2c, u32 isr)
{
729
	u32 icr = readl(_ICR(i2c)) & ~(ICR_START|ICR_STOP|ICR_ACKNAK|ICR_TB);
R
Russell King 已提交
730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779

 again:
	/*
	 * If ISR_ALD is set, we lost arbitration.
	 */
	if (isr & ISR_ALD) {
		/*
		 * Do we need to do anything here?  The PXA docs
		 * are vague about what happens.
		 */
		i2c_pxa_scream_blue_murder(i2c, "ALD set");

		/*
		 * We ignore this error.  We seem to see spurious ALDs
		 * for seemingly no reason.  If we handle them as I think
		 * they should, we end up causing an I2C error, which
		 * is painful for some systems.
		 */
		return; /* ignore */
	}

	if (isr & ISR_BED) {
		int ret = BUS_ERROR;

		/*
		 * I2C bus error - either the device NAK'd us, or
		 * something more serious happened.  If we were NAK'd
		 * on the initial address phase, we can retry.
		 */
		if (isr & ISR_ACKNAK) {
			if (i2c->msg_ptr == 0 && i2c->msg_idx == 0)
				ret = I2C_RETRY;
			else
				ret = XFER_NAKED;
		}
		i2c_pxa_master_complete(i2c, ret);
	} else if (isr & ISR_RWM) {
		/*
		 * Read mode.  We have just sent the address byte, and
		 * now we must initiate the transfer.
		 */
		if (i2c->msg_ptr == i2c->msg->len - 1 &&
		    i2c->msg_idx == i2c->msg_num - 1)
			icr |= ICR_STOP | ICR_ACKNAK;

		icr |= ICR_ALDIE | ICR_TB;
	} else if (i2c->msg_ptr < i2c->msg->len) {
		/*
		 * Write mode.  Write the next data byte.
		 */
780
		writel(i2c->msg->buf[i2c->msg_ptr++], _IDBR(i2c));
R
Russell King 已提交
781 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

		icr |= ICR_ALDIE | ICR_TB;

		/*
		 * If this is the last byte of the last message, send
		 * a STOP.
		 */
		if (i2c->msg_ptr == i2c->msg->len &&
		    i2c->msg_idx == i2c->msg_num - 1)
			icr |= ICR_STOP;
	} else if (i2c->msg_idx < i2c->msg_num - 1) {
		/*
		 * Next segment of the message.
		 */
		i2c->msg_ptr = 0;
		i2c->msg_idx ++;
		i2c->msg++;

		/*
		 * If we aren't doing a repeated start and address,
		 * go back and try to send the next byte.  Note that
		 * we do not support switching the R/W direction here.
		 */
		if (i2c->msg->flags & I2C_M_NOSTART)
			goto again;

		/*
		 * Write the next address.
		 */
810
		writel(i2c_pxa_addr_byte(i2c->msg), _IDBR(i2c));
R
Russell King 已提交
811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830

		/*
		 * And trigger a repeated start, and send the byte.
		 */
		icr &= ~ICR_ALDIE;
		icr |= ICR_START | ICR_TB;
	} else {
		if (i2c->msg->len == 0) {
			/*
			 * Device probes have a message length of zero
			 * and need the bus to be reset before it can
			 * be used again.
			 */
			i2c_pxa_reset(i2c);
		}
		i2c_pxa_master_complete(i2c, 0);
	}

	i2c->icrlog[i2c->irqlogidx-1] = icr;

831
	writel(icr, _ICR(i2c));
R
Russell King 已提交
832 833 834 835 836
	show_state(i2c);
}

static void i2c_pxa_irq_rxfull(struct pxa_i2c *i2c, u32 isr)
{
837
	u32 icr = readl(_ICR(i2c)) & ~(ICR_START|ICR_STOP|ICR_ACKNAK|ICR_TB);
R
Russell King 已提交
838 839 840 841

	/*
	 * Read the byte.
	 */
842
	i2c->msg->buf[i2c->msg_ptr++] = readl(_IDBR(i2c));
R
Russell King 已提交
843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858

	if (i2c->msg_ptr < i2c->msg->len) {
		/*
		 * If this is the last byte of the last
		 * message, send a STOP.
		 */
		if (i2c->msg_ptr == i2c->msg->len - 1)
			icr |= ICR_STOP | ICR_ACKNAK;

		icr |= ICR_ALDIE | ICR_TB;
	} else {
		i2c_pxa_master_complete(i2c, 0);
	}

	i2c->icrlog[i2c->irqlogidx-1] = icr;

859
	writel(icr, _ICR(i2c));
R
Russell King 已提交
860 861
}

862
static irqreturn_t i2c_pxa_handler(int this_irq, void *dev_id)
R
Russell King 已提交
863 864
{
	struct pxa_i2c *i2c = dev_id;
865
	u32 isr = readl(_ISR(i2c));
R
Russell King 已提交
866 867

	if (i2c_debug > 2 && 0) {
868
		dev_dbg(&i2c->adap.dev, "%s: ISR=%08x, ICR=%08x, IBMR=%02x\n",
869
			__func__, isr, readl(_ICR(i2c)), readl(_IBMR(i2c)));
R
Russell King 已提交
870 871 872
		decode_ISR(isr);
	}

873
	if (i2c->irqlogidx < ARRAY_SIZE(i2c->isrlog))
R
Russell King 已提交
874 875 876 877 878 879 880
		i2c->isrlog[i2c->irqlogidx++] = isr;

	show_state(i2c);

	/*
	 * Always clear all pending IRQs.
	 */
881
	writel(isr & (ISR_SSD|ISR_ALD|ISR_ITE|ISR_IRF|ISR_SAD|ISR_BED), _ISR(i2c));
R
Russell King 已提交
882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910

	if (isr & ISR_SAD)
		i2c_pxa_slave_start(i2c, isr);
	if (isr & ISR_SSD)
		i2c_pxa_slave_stop(i2c);

	if (i2c_pxa_is_slavemode(i2c)) {
		if (isr & ISR_ITE)
			i2c_pxa_slave_txempty(i2c, isr);
		if (isr & ISR_IRF)
			i2c_pxa_slave_rxfull(i2c, isr);
	} else if (i2c->msg) {
		if (isr & ISR_ITE)
			i2c_pxa_irq_txempty(i2c, isr);
		if (isr & ISR_IRF)
			i2c_pxa_irq_rxfull(i2c, isr);
	} else {
		i2c_pxa_scream_blue_murder(i2c, "spurious irq");
	}

	return IRQ_HANDLED;
}


static int i2c_pxa_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
{
	struct pxa_i2c *i2c = adap->algo_data;
	int ret, i;

911 912 913
	/* If the I2C controller is disabled we need to reset it (probably due
 	   to a suspend/resume destroying state). We do this here as we can then
 	   avoid worrying about resuming the controller before its users. */
914
	if (!(readl(_ICR(i2c)) & ICR_IUE))
915 916
		i2c_pxa_reset(i2c);

R
Russell King 已提交
917 918 919 920 921 922
	for (i = adap->retries; i >= 0; i--) {
		ret = i2c_pxa_do_xfer(i2c, msgs, num);
		if (ret != I2C_RETRY)
			goto out;

		if (i2c_debug)
923
			dev_dbg(&adap->dev, "Retrying transmission\n");
R
Russell King 已提交
924 925 926 927 928 929 930 931 932
		udelay(100);
	}
	i2c_pxa_scream_blue_murder(i2c, "exhausted retries");
	ret = -EREMOTEIO;
 out:
	i2c_pxa_set_slave(i2c, ret);
	return ret;
}

933 934 935 936 937
static u32 i2c_pxa_functionality(struct i2c_adapter *adap)
{
	return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
}

938
static const struct i2c_algorithm i2c_pxa_algorithm = {
R
Russell King 已提交
939
	.master_xfer	= i2c_pxa_xfer,
940
	.functionality	= i2c_pxa_functionality,
R
Russell King 已提交
941 942
};

M
Mike Rapoport 已提交
943 944 945 946 947
static const struct i2c_algorithm i2c_pxa_pio_algorithm = {
	.master_xfer	= i2c_pxa_pio_xfer,
	.functionality	= i2c_pxa_functionality,
};

948
#define res_len(r)		((r)->end - (r)->start + 1)
949
static int i2c_pxa_probe(struct platform_device *dev)
R
Russell King 已提交
950
{
951
	struct pxa_i2c *i2c;
952
	struct resource *res;
953
	struct i2c_pxa_platform_data *plat = dev->dev.platform_data;
R
Russell King 已提交
954
	int ret;
955
	int irq;
R
Russell King 已提交
956

957 958 959 960 961 962 963 964
	res = platform_get_resource(dev, IORESOURCE_MEM, 0);
	irq = platform_get_irq(dev, 0);
	if (res == NULL || irq < 0)
		return -ENODEV;

	if (!request_mem_region(res->start, res_len(res), res->name))
		return -ENOMEM;

965
	i2c = kzalloc(sizeof(struct pxa_i2c), GFP_KERNEL);
966 967 968 969 970
	if (!i2c) {
		ret = -ENOMEM;
		goto emalloc;
	}

971 972 973 974
	i2c->adap.owner   = THIS_MODULE;
	i2c->adap.retries = 5;

	spin_lock_init(&i2c->lock);
975
	init_waitqueue_head(&i2c->wait);
976

W
Wolfram Sang 已提交
977 978 979 980 981 982 983 984
	/*
	 * If "dev->id" is negative we consider it as zero.
	 * The reason to do so is to avoid sysfs names that only make
	 * sense when there are multiple adapters.
	 */
	i2c->adap.nr = dev->id != -1 ? dev->id : 0;
	snprintf(i2c->adap.name, sizeof(i2c->adap.name), "pxa_i2c-i2c.%u",
		 i2c->adap.nr);
985

986 987 988 989 990 991
	i2c->clk = clk_get(&dev->dev, "I2CCLK");
	if (IS_ERR(i2c->clk)) {
		ret = PTR_ERR(i2c->clk);
		goto eclk;
	}

992 993 994 995 996
	i2c->reg_base = ioremap(res->start, res_len(res));
	if (!i2c->reg_base) {
		ret = -EIO;
		goto eremap;
	}
997
	i2c->reg_shift = (cpu_is_pxa3xx() && (dev->id == 1)) ? 0 : 1;
998 999 1000 1001 1002

	i2c->iobase = res->start;
	i2c->iosize = res_len(res);

	i2c->irq = irq;
R
Russell King 已提交
1003 1004 1005 1006 1007 1008

	i2c->slave_addr = I2C_PXA_SLAVE_ADDR;

#ifdef CONFIG_I2C_PXA_SLAVE
	if (plat) {
		i2c->slave_addr = plat->slave_addr;
1009
		i2c->slave = plat->slave;
R
Russell King 已提交
1010 1011 1012
	}
#endif

1013
	clk_enable(i2c->clk);
1014

M
Mike Rapoport 已提交
1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028
	if (plat) {
		i2c->adap.class = plat->class;
		i2c->use_pio = plat->use_pio;
	}

	if (i2c->use_pio) {
		i2c->adap.algo = &i2c_pxa_pio_algorithm;
	} else {
		i2c->adap.algo = &i2c_pxa_algorithm;
		ret = request_irq(irq, i2c_pxa_handler, IRQF_DISABLED,
				  i2c->adap.name, i2c);
		if (ret)
			goto ereqirq;
	}
1029

R
Russell King 已提交
1030 1031 1032
	i2c_pxa_reset(i2c);

	i2c->adap.algo_data = i2c;
1033
	i2c->adap.dev.parent = &dev->dev;
R
Russell King 已提交
1034

1035
	ret = i2c_add_numbered_adapter(&i2c->adap);
R
Russell King 已提交
1036 1037
	if (ret < 0) {
		printk(KERN_INFO "I2C: Failed to add bus\n");
1038
		goto eadapt;
R
Russell King 已提交
1039 1040
	}

1041
	platform_set_drvdata(dev, i2c);
R
Russell King 已提交
1042 1043 1044 1045 1046 1047 1048 1049 1050 1051

#ifdef CONFIG_I2C_PXA_SLAVE
	printk(KERN_INFO "I2C: %s: PXA I2C adapter, slave address %d\n",
	       i2c->adap.dev.bus_id, i2c->slave_addr);
#else
	printk(KERN_INFO "I2C: %s: PXA I2C adapter\n",
	       i2c->adap.dev.bus_id);
#endif
	return 0;

1052
eadapt:
M
Mike Rapoport 已提交
1053 1054
	if (!i2c->use_pio)
		free_irq(irq, i2c);
1055
ereqirq:
1056
	clk_disable(i2c->clk);
W
Wolfram Sang 已提交
1057
	iounmap(i2c->reg_base);
1058
eremap:
1059 1060
	clk_put(i2c->clk);
eclk:
1061 1062 1063
	kfree(i2c);
emalloc:
	release_mem_region(res->start, res_len(res));
R
Russell King 已提交
1064 1065 1066
	return ret;
}

W
Wolfram Sang 已提交
1067
static int __exit i2c_pxa_remove(struct platform_device *dev)
R
Russell King 已提交
1068
{
1069
	struct pxa_i2c *i2c = platform_get_drvdata(dev);
R
Russell King 已提交
1070

1071
	platform_set_drvdata(dev, NULL);
R
Russell King 已提交
1072 1073

	i2c_del_adapter(&i2c->adap);
M
Mike Rapoport 已提交
1074 1075
	if (!i2c->use_pio)
		free_irq(i2c->irq, i2c);
1076 1077 1078 1079

	clk_disable(i2c->clk);
	clk_put(i2c->clk);

W
Wolfram Sang 已提交
1080
	iounmap(i2c->reg_base);
1081 1082
	release_mem_region(i2c->iobase, i2c->iosize);
	kfree(i2c);
R
Russell King 已提交
1083 1084 1085 1086

	return 0;
}

1087
static struct platform_driver i2c_pxa_driver = {
R
Russell King 已提交
1088
	.probe		= i2c_pxa_probe,
W
Wolfram Sang 已提交
1089
	.remove		= __exit_p(i2c_pxa_remove),
1090 1091
	.driver		= {
		.name	= "pxa2xx-i2c",
W
Wolfram Sang 已提交
1092
		.owner	= THIS_MODULE,
1093
	},
R
Russell King 已提交
1094 1095 1096 1097
};

static int __init i2c_adap_pxa_init(void)
{
1098
	return platform_driver_register(&i2c_pxa_driver);
R
Russell King 已提交
1099 1100
}

W
Wolfram Sang 已提交
1101
static void __exit i2c_adap_pxa_exit(void)
R
Russell King 已提交
1102
{
1103
	platform_driver_unregister(&i2c_pxa_driver);
R
Russell King 已提交
1104 1105
}

1106
MODULE_LICENSE("GPL");
1107
MODULE_ALIAS("platform:pxa2xx-i2c");
1108

U
Uli Luckas 已提交
1109
subsys_initcall(i2c_adap_pxa_init);
R
Russell King 已提交
1110
module_exit(i2c_adap_pxa_exit);