i2c-bfin-twi.c 18.5 KB
Newer Older
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 33 34 35 36 37 38 39 40 41
/*
 * drivers/i2c/busses/i2c-bfin-twi.c
 *
 * Description: Driver for Blackfin Two Wire Interface
 *
 * Author:      sonicz  <sonic.zhang@analog.com>
 *
 * Copyright (c) 2005-2007 Analog Devices, Inc.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/i2c.h>
#include <linux/mm.h>
#include <linux/timer.h>
#include <linux/spinlock.h>
#include <linux/completion.h>
#include <linux/interrupt.h>
#include <linux/platform_device.h>

#include <asm/blackfin.h>
#include <asm/irq.h>

#define POLL_TIMEOUT       (2 * HZ)

/* SMBus mode*/
42 43 44 45
#define TWI_I2C_MODE_STANDARD		1
#define TWI_I2C_MODE_STANDARDSUB	2
#define TWI_I2C_MODE_COMBINED		3
#define TWI_I2C_MODE_REPEAT		4
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61

struct bfin_twi_iface {
	int			irq;
	spinlock_t		lock;
	char			read_write;
	u8			command;
	u8			*transPtr;
	int			readNum;
	int			writeNum;
	int			cur_mode;
	int			manual_stop;
	int			result;
	int			timeout_count;
	struct timer_list	timeout_timer;
	struct i2c_adapter	adap;
	struct completion	complete;
62 63 64
	struct i2c_msg 		*pmsg;
	int			msg_num;
	int			cur_msg;
65
	void __iomem		*regs_base;
66 67
};

68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90

#define DEFINE_TWI_REG(reg, off) \
static inline u16 read_##reg(struct bfin_twi_iface *iface) \
	{ return bfin_read16(iface->regs_base + (off)); } \
static inline void write_##reg(struct bfin_twi_iface *iface, u16 v) \
	{ bfin_write16(iface->regs_base + (off), v); }

DEFINE_TWI_REG(CLKDIV, 0x00)
DEFINE_TWI_REG(CONTROL, 0x04)
DEFINE_TWI_REG(SLAVE_CTL, 0x08)
DEFINE_TWI_REG(SLAVE_STAT, 0x0C)
DEFINE_TWI_REG(SLAVE_ADDR, 0x10)
DEFINE_TWI_REG(MASTER_CTL, 0x14)
DEFINE_TWI_REG(MASTER_STAT, 0x18)
DEFINE_TWI_REG(MASTER_ADDR, 0x1C)
DEFINE_TWI_REG(INT_STAT, 0x20)
DEFINE_TWI_REG(INT_MASK, 0x24)
DEFINE_TWI_REG(FIFO_CTL, 0x28)
DEFINE_TWI_REG(FIFO_STAT, 0x2C)
DEFINE_TWI_REG(XMT_DATA8, 0x80)
DEFINE_TWI_REG(XMT_DATA16, 0x84)
DEFINE_TWI_REG(RCV_DATA8, 0x88)
DEFINE_TWI_REG(RCV_DATA16, 0x8C)
91 92 93

static void bfin_twi_handle_interrupt(struct bfin_twi_iface *iface)
{
94 95
	unsigned short twi_int_status = read_INT_STAT(iface);
	unsigned short mast_stat = read_MASTER_STAT(iface);
96 97 98 99

	if (twi_int_status & XMTSERV) {
		/* Transmit next data */
		if (iface->writeNum > 0) {
100
			write_XMT_DATA8(iface, *(iface->transPtr++));
101 102 103 104 105
			iface->writeNum--;
		}
		/* start receive immediately after complete sending in
		 * combine mode.
		 */
106
		else if (iface->cur_mode == TWI_I2C_MODE_COMBINED)
107 108
			write_MASTER_CTL(iface,
				read_MASTER_CTL(iface) | MDIR | RSTART);
109
		else if (iface->manual_stop)
110 111
			write_MASTER_CTL(iface,
				read_MASTER_CTL(iface) | STOP);
112 113
		else if (iface->cur_mode == TWI_I2C_MODE_REPEAT &&
				iface->cur_msg+1 < iface->msg_num)
114 115
			write_MASTER_CTL(iface,
				read_MASTER_CTL(iface) | RSTART);
116 117
		SSYNC();
		/* Clear status */
118
		write_INT_STAT(iface, XMTSERV);
119 120 121 122 123
		SSYNC();
	}
	if (twi_int_status & RCVSERV) {
		if (iface->readNum > 0) {
			/* Receive next data */
124
			*(iface->transPtr) = read_RCV_DATA8(iface);
125 126 127 128 129 130 131 132 133 134 135 136 137 138
			if (iface->cur_mode == TWI_I2C_MODE_COMBINED) {
				/* Change combine mode into sub mode after
				 * read first data.
				 */
				iface->cur_mode = TWI_I2C_MODE_STANDARDSUB;
				/* Get read number from first byte in block
				 * combine mode.
				 */
				if (iface->readNum == 1 && iface->manual_stop)
					iface->readNum = *iface->transPtr + 1;
			}
			iface->transPtr++;
			iface->readNum--;
		} else if (iface->manual_stop) {
139 140
			write_MASTER_CTL(iface,
				read_MASTER_CTL(iface) | STOP);
141
			SSYNC();
142 143
		} else if (iface->cur_mode == TWI_I2C_MODE_REPEAT &&
				iface->cur_msg+1 < iface->msg_num) {
144 145
			write_MASTER_CTL(iface,
				read_MASTER_CTL(iface) | RSTART);
146
			SSYNC();
147 148
		}
		/* Clear interrupt source */
149
		write_INT_STAT(iface, RCVSERV);
150 151 152
		SSYNC();
	}
	if (twi_int_status & MERR) {
153 154 155 156
		write_INT_STAT(iface, MERR);
		write_INT_MASK(iface, 0);
		write_MASTER_STAT(iface, 0x3e);
		write_MASTER_CTL(iface, 0);
157
		SSYNC();
158
		iface->result = -EIO;
159 160 161 162
		/* if both err and complete int stats are set, return proper
		 * results.
		 */
		if (twi_int_status & MCOMP) {
163 164 165
			write_INT_STAT(iface, MCOMP);
			write_INT_MASK(iface, 0);
			write_MASTER_CTL(iface, 0);
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
			SSYNC();
			/* If it is a quick transfer, only address bug no data,
			 * not an err, return 1.
			 */
			if (iface->writeNum == 0 && (mast_stat & BUFRDERR))
				iface->result = 1;
			/* If address not acknowledged return -1,
			 * else return 0.
			 */
			else if (!(mast_stat & ANAK))
				iface->result = 0;
		}
		complete(&iface->complete);
		return;
	}
	if (twi_int_status & MCOMP) {
182
		write_INT_STAT(iface, MCOMP);
183 184 185 186 187 188 189 190
		SSYNC();
		if (iface->cur_mode == TWI_I2C_MODE_COMBINED) {
			if (iface->readNum == 0) {
				/* set the read number to 1 and ask for manual
				 * stop in block combine mode
				 */
				iface->readNum = 1;
				iface->manual_stop = 1;
191 192
				write_MASTER_CTL(iface,
					read_MASTER_CTL(iface) | (0xff << 6));
193 194 195 196
			} else {
				/* set the readd number in other
				 * combine mode.
				 */
197 198
				write_MASTER_CTL(iface,
					(read_MASTER_CTL(iface) &
199
					(~(0xff << 6))) |
200
					(iface->readNum << 6));
201 202
			}
			/* remove restart bit and enable master receive */
203 204 205 206
			write_MASTER_CTL(iface,
				read_MASTER_CTL(iface) & ~RSTART);
			write_MASTER_CTL(iface,
				read_MASTER_CTL(iface) | MEN | MDIR);
207
			SSYNC();
208 209 210 211 212 213 214
		} else if (iface->cur_mode == TWI_I2C_MODE_REPEAT &&
				iface->cur_msg+1 < iface->msg_num) {
			iface->cur_msg++;
			iface->transPtr = iface->pmsg[iface->cur_msg].buf;
			iface->writeNum = iface->readNum =
				iface->pmsg[iface->cur_msg].len;
			/* Set Transmit device address */
215
			write_MASTER_ADDR(iface,
216 217 218 219 220 221 222
				iface->pmsg[iface->cur_msg].addr);
			if (iface->pmsg[iface->cur_msg].flags & I2C_M_RD)
				iface->read_write = I2C_SMBUS_READ;
			else {
				iface->read_write = I2C_SMBUS_WRITE;
				/* Transmit first data */
				if (iface->writeNum > 0) {
223
					write_XMT_DATA8(iface,
224 225 226 227 228 229 230
						*(iface->transPtr++));
					iface->writeNum--;
					SSYNC();
				}
			}

			if (iface->pmsg[iface->cur_msg].len <= 255)
231
				write_MASTER_CTL(iface,
232 233
				iface->pmsg[iface->cur_msg].len << 6);
			else {
234
				write_MASTER_CTL(iface, 0xff << 6);
235 236 237
				iface->manual_stop = 1;
			}
			/* remove restart bit and enable master receive */
238 239 240
			write_MASTER_CTL(iface,
				read_MASTER_CTL(iface) & ~RSTART);
			write_MASTER_CTL(iface, read_MASTER_CTL(iface) |
241 242 243
				MEN | ((iface->read_write == I2C_SMBUS_READ) ?
				MDIR : 0));
			SSYNC();
244 245
		} else {
			iface->result = 1;
246 247
			write_INT_MASK(iface, 0);
			write_MASTER_CTL(iface, 0);
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
			SSYNC();
			complete(&iface->complete);
		}
	}
}

/* Interrupt handler */
static irqreturn_t bfin_twi_interrupt_entry(int irq, void *dev_id)
{
	struct bfin_twi_iface *iface = dev_id;
	unsigned long flags;

	spin_lock_irqsave(&iface->lock, flags);
	del_timer(&iface->timeout_timer);
	bfin_twi_handle_interrupt(iface);
	spin_unlock_irqrestore(&iface->lock, flags);
	return IRQ_HANDLED;
}

static void bfin_twi_timeout(unsigned long data)
{
	struct bfin_twi_iface *iface = (struct bfin_twi_iface *)data;
	unsigned long flags;

	spin_lock_irqsave(&iface->lock, flags);
	bfin_twi_handle_interrupt(iface);
	if (iface->result == 0) {
		iface->timeout_count--;
		if (iface->timeout_count > 0) {
			iface->timeout_timer.expires = jiffies + POLL_TIMEOUT;
			add_timer(&iface->timeout_timer);
		} else {
			iface->result = -1;
			complete(&iface->complete);
		}
	}
	spin_unlock_irqrestore(&iface->lock, flags);
}

/*
 * Generic i2c master transfer entrypoint
 */
static int bfin_twi_master_xfer(struct i2c_adapter *adap,
				struct i2c_msg *msgs, int num)
{
	struct bfin_twi_iface *iface = adap->algo_data;
	struct i2c_msg *pmsg;
	int rc = 0;

297
	if (!(read_CONTROL(iface) & TWI_ENA))
298 299
		return -ENXIO;

300
	while (read_MASTER_STAT(iface) & BUSBUSY)
301 302
		yield();

303 304 305
	iface->pmsg = msgs;
	iface->msg_num = num;
	iface->cur_msg = 0;
306

307 308 309 310 311
	pmsg = &msgs[0];
	if (pmsg->flags & I2C_M_TEN) {
		dev_err(&adap->dev, "10 bits addr not supported!\n");
		return -EINVAL;
	}
312

313 314 315 316 317 318 319
	iface->cur_mode = TWI_I2C_MODE_REPEAT;
	iface->manual_stop = 0;
	iface->transPtr = pmsg->buf;
	iface->writeNum = iface->readNum = pmsg->len;
	iface->result = 0;
	iface->timeout_count = 10;
	/* Set Transmit device address */
320
	write_MASTER_ADDR(iface, pmsg->addr);
321 322 323 324

	/* FIFO Initiation. Data in FIFO should be
	 *  discarded before start a new operation.
	 */
325
	write_FIFO_CTL(iface, 0x3);
326
	SSYNC();
327
	write_FIFO_CTL(iface, 0);
328 329 330 331 332 333 334 335
	SSYNC();

	if (pmsg->flags & I2C_M_RD)
		iface->read_write = I2C_SMBUS_READ;
	else {
		iface->read_write = I2C_SMBUS_WRITE;
		/* Transmit first data */
		if (iface->writeNum > 0) {
336
			write_XMT_DATA8(iface, *(iface->transPtr++));
337 338
			iface->writeNum--;
			SSYNC();
339
		}
340
	}
341

342
	/* clear int stat */
343
	write_INT_STAT(iface, MERR | MCOMP | XMTSERV | RCVSERV);
344

345
	/* Interrupt mask . Enable XMT, RCV interrupt */
346
	write_INT_MASK(iface, MCOMP | MERR | RCVSERV | XMTSERV);
347
	SSYNC();
348

349
	if (pmsg->len <= 255)
350
		write_MASTER_CTL(iface, pmsg->len << 6);
351
	else {
352
		write_MASTER_CTL(iface, 0xff << 6);
353 354
		iface->manual_stop = 1;
	}
355

356 357
	iface->timeout_timer.expires = jiffies + POLL_TIMEOUT;
	add_timer(&iface->timeout_timer);
358

359
	/* Master enable */
360
	write_MASTER_CTL(iface, read_MASTER_CTL(iface) | MEN |
361 362 363 364 365 366 367
		((iface->read_write == I2C_SMBUS_READ) ? MDIR : 0) |
		((CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ > 100) ? FAST : 0));
	SSYNC();

	wait_for_completion(&iface->complete);

	rc = iface->result;
368

369 370 371 372
	if (rc == 1)
		return num;
	else
		return rc;
373 374 375 376 377 378 379 380 381 382 383 384 385
}

/*
 * SMBus type transfer entrypoint
 */

int bfin_twi_smbus_xfer(struct i2c_adapter *adap, u16 addr,
			unsigned short flags, char read_write,
			u8 command, int size, union i2c_smbus_data *data)
{
	struct bfin_twi_iface *iface = adap->algo_data;
	int rc = 0;

386
	if (!(read_CONTROL(iface) & TWI_ENA))
387 388
		return -ENXIO;

389
	while (read_MASTER_STAT(iface) & BUSBUSY)
390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461
		yield();

	iface->writeNum = 0;
	iface->readNum = 0;

	/* Prepare datas & select mode */
	switch (size) {
	case I2C_SMBUS_QUICK:
		iface->transPtr = NULL;
		iface->cur_mode = TWI_I2C_MODE_STANDARD;
		break;
	case I2C_SMBUS_BYTE:
		if (data == NULL)
			iface->transPtr = NULL;
		else {
			if (read_write == I2C_SMBUS_READ)
				iface->readNum = 1;
			else
				iface->writeNum = 1;
			iface->transPtr = &data->byte;
		}
		iface->cur_mode = TWI_I2C_MODE_STANDARD;
		break;
	case I2C_SMBUS_BYTE_DATA:
		if (read_write == I2C_SMBUS_READ) {
			iface->readNum = 1;
			iface->cur_mode = TWI_I2C_MODE_COMBINED;
		} else {
			iface->writeNum = 1;
			iface->cur_mode = TWI_I2C_MODE_STANDARDSUB;
		}
		iface->transPtr = &data->byte;
		break;
	case I2C_SMBUS_WORD_DATA:
		if (read_write == I2C_SMBUS_READ) {
			iface->readNum = 2;
			iface->cur_mode = TWI_I2C_MODE_COMBINED;
		} else {
			iface->writeNum = 2;
			iface->cur_mode = TWI_I2C_MODE_STANDARDSUB;
		}
		iface->transPtr = (u8 *)&data->word;
		break;
	case I2C_SMBUS_PROC_CALL:
		iface->writeNum = 2;
		iface->readNum = 2;
		iface->cur_mode = TWI_I2C_MODE_COMBINED;
		iface->transPtr = (u8 *)&data->word;
		break;
	case I2C_SMBUS_BLOCK_DATA:
		if (read_write == I2C_SMBUS_READ) {
			iface->readNum = 0;
			iface->cur_mode = TWI_I2C_MODE_COMBINED;
		} else {
			iface->writeNum = data->block[0] + 1;
			iface->cur_mode = TWI_I2C_MODE_STANDARDSUB;
		}
		iface->transPtr = data->block;
		break;
	default:
		return -1;
	}

	iface->result = 0;
	iface->manual_stop = 0;
	iface->read_write = read_write;
	iface->command = command;
	iface->timeout_count = 10;

	/* FIFO Initiation. Data in FIFO should be discarded before
	 * start a new operation.
	 */
462
	write_FIFO_CTL(iface, 0x3);
463
	SSYNC();
464
	write_FIFO_CTL(iface, 0);
465 466

	/* clear int stat */
467
	write_INT_STAT(iface, MERR | MCOMP | XMTSERV | RCVSERV);
468 469

	/* Set Transmit device address */
470
	write_MASTER_ADDR(iface, addr);
471 472 473 474 475 476 477
	SSYNC();

	iface->timeout_timer.expires = jiffies + POLL_TIMEOUT;
	add_timer(&iface->timeout_timer);

	switch (iface->cur_mode) {
	case TWI_I2C_MODE_STANDARDSUB:
478 479
		write_XMT_DATA8(iface, iface->command);
		write_INT_MASK(iface, MCOMP | MERR |
480 481 482 483 484
			((iface->read_write == I2C_SMBUS_READ) ?
			RCVSERV : XMTSERV));
		SSYNC();

		if (iface->writeNum + 1 <= 255)
485
			write_MASTER_CTL(iface, (iface->writeNum + 1) << 6);
486
		else {
487
			write_MASTER_CTL(iface, 0xff << 6);
488 489 490
			iface->manual_stop = 1;
		}
		/* Master enable */
491
		write_MASTER_CTL(iface, read_MASTER_CTL(iface) | MEN |
492 493 494
			((CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ>100) ? FAST : 0));
		break;
	case TWI_I2C_MODE_COMBINED:
495 496
		write_XMT_DATA8(iface, iface->command);
		write_INT_MASK(iface, MCOMP | MERR | RCVSERV | XMTSERV);
497 498 499
		SSYNC();

		if (iface->writeNum > 0)
500
			write_MASTER_CTL(iface, (iface->writeNum + 1) << 6);
501
		else
502
			write_MASTER_CTL(iface, 0x1 << 6);
503
		/* Master enable */
504
		write_MASTER_CTL(iface, read_MASTER_CTL(iface) | MEN |
505 506 507
			((CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ>100) ? FAST : 0));
		break;
	default:
508
		write_MASTER_CTL(iface, 0);
509 510 511 512 513 514
		if (size != I2C_SMBUS_QUICK) {
			/* Don't access xmit data register when this is a
			 * read operation.
			 */
			if (iface->read_write != I2C_SMBUS_READ) {
				if (iface->writeNum > 0) {
515 516
					write_XMT_DATA8(iface,
						*(iface->transPtr++));
517
					if (iface->writeNum <= 255)
518 519
						write_MASTER_CTL(iface,
							iface->writeNum << 6);
520
					else {
521 522
						write_MASTER_CTL(iface,
							0xff << 6);
523 524 525 526
						iface->manual_stop = 1;
					}
					iface->writeNum--;
				} else {
527 528
					write_XMT_DATA8(iface, iface->command);
					write_MASTER_CTL(iface, 1 << 6);
529 530 531
				}
			} else {
				if (iface->readNum > 0 && iface->readNum <= 255)
532 533
					write_MASTER_CTL(iface,
						iface->readNum << 6);
534
				else if (iface->readNum > 255) {
535
					write_MASTER_CTL(iface, 0xff << 6);
536 537 538 539 540 541 542
					iface->manual_stop = 1;
				} else {
					del_timer(&iface->timeout_timer);
					break;
				}
			}
		}
543
		write_INT_MASK(iface, MCOMP | MERR |
544 545 546 547 548
			((iface->read_write == I2C_SMBUS_READ) ?
			RCVSERV : XMTSERV));
		SSYNC();

		/* Master enable */
549
		write_MASTER_CTL(iface, read_MASTER_CTL(iface) | MEN |
550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583
			((iface->read_write == I2C_SMBUS_READ) ? MDIR : 0) |
			((CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ > 100) ? FAST : 0));
		break;
	}
	SSYNC();

	wait_for_completion(&iface->complete);

	rc = (iface->result >= 0) ? 0 : -1;

	return rc;
}

/*
 * Return what the adapter supports
 */
static u32 bfin_twi_functionality(struct i2c_adapter *adap)
{
	return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE |
	       I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA |
	       I2C_FUNC_SMBUS_BLOCK_DATA | I2C_FUNC_SMBUS_PROC_CALL |
	       I2C_FUNC_I2C;
}


static struct i2c_algorithm bfin_twi_algorithm = {
	.master_xfer   = bfin_twi_master_xfer,
	.smbus_xfer    = bfin_twi_smbus_xfer,
	.functionality = bfin_twi_functionality,
};


static int i2c_bfin_twi_suspend(struct platform_device *dev, pm_message_t state)
{
584
	struct bfin_twi_iface *iface = platform_get_drvdata(dev);
585 586

	/* Disable TWI */
587
	write_CONTROL(iface, read_CONTROL(iface) & ~TWI_ENA);
588 589 590 591 592 593 594
	SSYNC();

	return 0;
}

static int i2c_bfin_twi_resume(struct platform_device *dev)
{
595
	struct bfin_twi_iface *iface = platform_get_drvdata(dev);
596 597

	/* Enable TWI */
598
	write_CONTROL(iface, read_CONTROL(iface) | TWI_ENA);
599 600 601 602 603
	SSYNC();

	return 0;
}

604
static int i2c_bfin_twi_probe(struct platform_device *pdev)
605
{
606
	struct bfin_twi_iface *iface;
607
	struct i2c_adapter *p_adap;
608
	struct resource *res;
609 610
	int rc;

611 612 613 614 615 616 617
	iface = kzalloc(sizeof(struct bfin_twi_iface), GFP_KERNEL);
	if (!iface) {
		dev_err(&pdev->dev, "Cannot allocate memory\n");
		rc = -ENOMEM;
		goto out_error_nomem;
	}

618 619
	spin_lock_init(&(iface->lock));
	init_completion(&(iface->complete));
620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641

	/* Find and map our resources */
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (res == NULL) {
		dev_err(&pdev->dev, "Cannot get IORESOURCE_MEM\n");
		rc = -ENOENT;
		goto out_error_get_res;
	}

	iface->regs_base = ioremap(res->start, res->end - res->start + 1);
	if (iface->regs_base == NULL) {
		dev_err(&pdev->dev, "Cannot map IO\n");
		rc = -ENXIO;
		goto out_error_ioremap;
	}

	iface->irq = platform_get_irq(pdev, 0);
	if (iface->irq < 0) {
		dev_err(&pdev->dev, "No IRQ specified\n");
		rc = -ENOENT;
		goto out_error_no_irq;
	}
642 643 644 645 646 647 648

	init_timer(&(iface->timeout_timer));
	iface->timeout_timer.function = bfin_twi_timeout;
	iface->timeout_timer.data = (unsigned long)iface;

	p_adap = &iface->adap;
	p_adap->id = I2C_HW_BLACKFIN;
649 650
	p_adap->nr = pdev->id;
	strlcpy(p_adap->name, pdev->name, sizeof(p_adap->name));
651 652 653
	p_adap->algo = &bfin_twi_algorithm;
	p_adap->algo_data = iface;
	p_adap->class = I2C_CLASS_ALL;
654
	p_adap->dev.parent = &pdev->dev;
655 656

	rc = request_irq(iface->irq, bfin_twi_interrupt_entry,
657
		IRQF_DISABLED, pdev->name, iface);
658
	if (rc) {
659 660 661
		dev_err(&pdev->dev, "Can't get IRQ %d !\n", iface->irq);
		rc = -ENODEV;
		goto out_error_req_irq;
662 663 664
	}

	/* Set TWI internal clock as 10MHz */
665
	write_CONTROL(iface, ((get_sclk() / 1024 / 1024 + 5) / 10) & 0x7F);
666 667

	/* Set Twi interface clock as specified */
668 669
	write_CLKDIV(iface, ((5*1024 / CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ)
			<< 8) | ((5*1024 / CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ)
670 671 672
			& 0xFF));

	/* Enable TWI */
673
	write_CONTROL(iface, read_CONTROL(iface) | TWI_ENA);
674 675
	SSYNC();

676
	rc = i2c_add_numbered_adapter(p_adap);
677 678 679 680 681 682
	if (rc < 0) {
		dev_err(&pdev->dev, "Can't add i2c adapter!\n");
		goto out_error_add_adapter;
	}

	platform_set_drvdata(pdev, iface);
683

684 685 686 687 688 689 690 691 692 693 694 695 696 697
	dev_info(&pdev->dev, "Blackfin I2C TWI controller, regs_base@%p\n",
		iface->regs_base);

	return 0;

out_error_add_adapter:
	free_irq(iface->irq, iface);
out_error_req_irq:
out_error_no_irq:
	iounmap(iface->regs_base);
out_error_ioremap:
out_error_get_res:
	kfree(iface);
out_error_nomem:
698 699 700 701 702 703 704 705 706 707 708
	return rc;
}

static int i2c_bfin_twi_remove(struct platform_device *pdev)
{
	struct bfin_twi_iface *iface = platform_get_drvdata(pdev);

	platform_set_drvdata(pdev, NULL);

	i2c_del_adapter(&(iface->adap));
	free_irq(iface->irq, iface);
709 710
	iounmap(iface->regs_base);
	kfree(iface);
711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741

	return 0;
}

static struct platform_driver i2c_bfin_twi_driver = {
	.probe		= i2c_bfin_twi_probe,
	.remove		= i2c_bfin_twi_remove,
	.suspend	= i2c_bfin_twi_suspend,
	.resume		= i2c_bfin_twi_resume,
	.driver		= {
		.name	= "i2c-bfin-twi",
		.owner	= THIS_MODULE,
	},
};

static int __init i2c_bfin_twi_init(void)
{
	return platform_driver_register(&i2c_bfin_twi_driver);
}

static void __exit i2c_bfin_twi_exit(void)
{
	platform_driver_unregister(&i2c_bfin_twi_driver);
}

MODULE_AUTHOR("Sonic Zhang <sonic.zhang@analog.com>");
MODULE_DESCRIPTION("I2C-Bus adapter routines for Blackfin TWI");
MODULE_LICENSE("GPL");

module_init(i2c_bfin_twi_init);
module_exit(i2c_bfin_twi_exit);