i2c-algo-bit.c 15.1 KB
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
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
/* ------------------------------------------------------------------------- */
/* i2c-algo-bit.c i2c driver algorithms for bit-shift adapters		     */
/* ------------------------------------------------------------------------- */
/*   Copyright (C) 1995-2000 Simon G. Vogl

    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., 675 Mass Ave, Cambridge, MA 02139, USA.		     */
/* ------------------------------------------------------------------------- */

/* With some changes from Frodo Looijaard <frodol@dds.nl>, Kysti Mlkki
   <kmalkki@cc.hut.fi> and Jean Delvare <khali@linux-fr.org> */

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/delay.h>
#include <linux/slab.h>
#include <linux/init.h>
#include <linux/errno.h>
#include <linux/sched.h>
#include <linux/i2c.h>
#include <linux/i2c-algo-bit.h>


/* ----- global defines ----------------------------------------------- */

37 38 39 40 41 42 43 44 45 46
#ifdef DEBUG
#define bit_dbg(level, dev, format, args...) \
	do { \
		if (i2c_debug >= level) \
			dev_dbg(dev, format, ##args); \
	} while (0)
#else
#define bit_dbg(level, dev, format, args...) \
	do {} while (0)
#endif /* DEBUG */
Linus Torvalds's avatar
Linus Torvalds committed
47 48 49 50

/* ----- global variables ---------------------------------------------	*/

static int bit_test;	/* see if the line-setting functions work	*/
51 52 53 54 55 56 57 58 59
module_param(bit_test, bool, 0);
MODULE_PARM_DESC(bit_test, "Test the lines of the bus to see if it is stuck");

#ifdef DEBUG
static int i2c_debug = 1;
module_param(i2c_debug, int, S_IRUGO | S_IWUSR);
MODULE_PARM_DESC(i2c_debug,
		 "debug level - 0 off; 1 normal; 2 verbose; 3 very verbose");
#endif
Linus Torvalds's avatar
Linus Torvalds committed
60 61 62 63 64 65 66 67 68 69 70

/* --- setting states on the bus with the right timing: ---------------	*/

#define setsda(adap,val) adap->setsda(adap->data, val)
#define setscl(adap,val) adap->setscl(adap->data, val)
#define getsda(adap) adap->getsda(adap->data)
#define getscl(adap) adap->getscl(adap->data)

static inline void sdalo(struct i2c_algo_bit_data *adap)
{
	setsda(adap,0);
71
	udelay((adap->udelay + 1) / 2);
Linus Torvalds's avatar
Linus Torvalds committed
72 73 74 75 76
}

static inline void sdahi(struct i2c_algo_bit_data *adap)
{
	setsda(adap,1);
77
	udelay((adap->udelay + 1) / 2);
Linus Torvalds's avatar
Linus Torvalds committed
78 79 80 81 82
}

static inline void scllo(struct i2c_algo_bit_data *adap)
{
	setscl(adap,0);
83
	udelay(adap->udelay / 2);
Linus Torvalds's avatar
Linus Torvalds committed
84 85 86 87 88 89
}

/*
 * Raise scl line, and do checking for delays. This is necessary for slower
 * devices.
 */
Jean Delvare's avatar
Jean Delvare committed
90
static int sclhi(struct i2c_algo_bit_data *adap)
Linus Torvalds's avatar
Linus Torvalds committed
91 92 93 94 95 96
{
	unsigned long start;

	setscl(adap,1);

	/* Not all adapters have scl sense line... */
Jean Delvare's avatar
Jean Delvare committed
97 98
	if (!adap->getscl)
		goto done;
Linus Torvalds's avatar
Linus Torvalds committed
99 100 101 102 103 104 105 106 107 108 109 110 111

	start=jiffies;
	while (! getscl(adap) ) {	
 		/* the hw knows how to read the clock line,
 		 * so we wait until it actually gets high.
 		 * This is safer as some chips may hold it low
 		 * while they are processing data internally. 
 		 */
		if (time_after_eq(jiffies, start+adap->timeout)) {
			return -ETIMEDOUT;
		}
		cond_resched();
	}
112 113 114 115 116
#ifdef DEBUG
	if (jiffies != start && i2c_debug >= 3)
		pr_debug("i2c-algo-bit: needed %ld jiffies for SCL to go "
			 "high\n", jiffies - start);
#endif
Jean Delvare's avatar
Jean Delvare committed
117 118

done:
Linus Torvalds's avatar
Linus Torvalds committed
119 120 121 122 123 124 125 126 127
	udelay(adap->udelay);
	return 0;
} 


/* --- other auxiliary functions --------------------------------------	*/
static void i2c_start(struct i2c_algo_bit_data *adap) 
{
	/* assert: scl, sda are high */
128 129
	setsda(adap, 0);
	udelay(adap->udelay);
Linus Torvalds's avatar
Linus Torvalds committed
130 131 132 133 134
	scllo(adap);
}

static void i2c_repstart(struct i2c_algo_bit_data *adap) 
{
135 136
	/* assert: scl is low */
	sdahi(adap);
Linus Torvalds's avatar
Linus Torvalds committed
137
	sclhi(adap);
138 139
	setsda(adap, 0);
	udelay(adap->udelay);
Linus Torvalds's avatar
Linus Torvalds committed
140 141 142 143 144 145 146 147 148
	scllo(adap);
}


static void i2c_stop(struct i2c_algo_bit_data *adap) 
{
	/* assert: scl is low */
	sdalo(adap);
	sclhi(adap); 
149 150
	setsda(adap, 1);
	udelay(adap->udelay);
Linus Torvalds's avatar
Linus Torvalds committed
151 152 153 154 155 156 157 158 159 160 161
}



/* send a byte without start cond., look for arbitration, 
   check ackn. from slave */
/* returns:
 * 1 if the device acknowledged
 * 0 if the device did not ack
 * -ETIMEDOUT if an error occurred (while raising the scl line)
 */
162
static int i2c_outb(struct i2c_adapter *i2c_adap, unsigned char c)
Linus Torvalds's avatar
Linus Torvalds committed
163 164 165 166 167 168 169 170
{
	int i;
	int sb;
	int ack;
	struct i2c_algo_bit_data *adap = i2c_adap->algo_data;

	/* assert: scl is low */
	for ( i=7 ; i>=0 ; i-- ) {
171
		sb = (c >> i) & 1;
Linus Torvalds's avatar
Linus Torvalds committed
172
		setsda(adap,sb);
173
		udelay((adap->udelay + 1) / 2);
Linus Torvalds's avatar
Linus Torvalds committed
174
		if (sclhi(adap)<0) { /* timed out */
175 176
			bit_dbg(1, &i2c_adap->dev, "i2c_outb: 0x%02x, "
				"timeout at bit #%d\n", (int)c, i);
Linus Torvalds's avatar
Linus Torvalds committed
177 178 179 180 181
			return -ETIMEDOUT;
		};
		/* do arbitration here: 
		 * if ( sb && ! getsda(adap) ) -> ouch! Get out of here.
		 */
182
		scllo(adap);
Linus Torvalds's avatar
Linus Torvalds committed
183 184 185
	}
	sdahi(adap);
	if (sclhi(adap)<0){ /* timeout */
186 187 188
		bit_dbg(1, &i2c_adap->dev, "i2c_outb: 0x%02x, "
			"timeout at ack\n", (int)c);
		return -ETIMEDOUT;
Linus Torvalds's avatar
Linus Torvalds committed
189 190
	};
	/* read ack: SDA should be pulled down by slave */
191 192 193
	ack = !getsda(adap);    /* ack: sda is pulled low -> success */
	bit_dbg(2, &i2c_adap->dev, "i2c_outb: 0x%02x %s\n", (int)c,
		ack ? "A" : "NA");
Linus Torvalds's avatar
Linus Torvalds committed
194 195

	scllo(adap);
196
	return ack;
Linus Torvalds's avatar
Linus Torvalds committed
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
	/* assert: scl is low (sda undef) */
}


static int i2c_inb(struct i2c_adapter *i2c_adap) 
{
	/* read byte via i2c port, without start/stop sequence	*/
	/* acknowledge is sent in i2c_read.			*/
	int i;
	unsigned char indata=0;
	struct i2c_algo_bit_data *adap = i2c_adap->algo_data;

	/* assert: scl is low */
	sdahi(adap);
	for (i=0;i<8;i++) {
		if (sclhi(adap)<0) { /* timeout */
213 214
			bit_dbg(1, &i2c_adap->dev, "i2c_inb: timeout at bit "
				"#%d\n", 7 - i);
Linus Torvalds's avatar
Linus Torvalds committed
215 216 217 218 219
			return -ETIMEDOUT;
		};
		indata *= 2;
		if ( getsda(adap) ) 
			indata |= 0x01;
220 221
		setscl(adap, 0);
		udelay(i == 7 ? adap->udelay / 2 : adap->udelay);
Linus Torvalds's avatar
Linus Torvalds committed
222 223
	}
	/* assert: scl is low */
224
	return indata;
Linus Torvalds's avatar
Linus Torvalds committed
225 226 227 228 229 230 231 232 233 234
}

/*
 * Sanity check for the adapter hardware - check the reaction of
 * the bus lines only if it seems to be idle.
 */
static int test_bus(struct i2c_algo_bit_data *adap, char* name) {
	int scl,sda;

	if (adap->getscl==NULL)
235
		pr_info("%s: Testing SDA only, SCL is not readable\n", name);
Linus Torvalds's avatar
Linus Torvalds committed
236 237 238 239

	sda=getsda(adap);
	scl=(adap->getscl==NULL?1:getscl(adap));
	if (!scl || !sda ) {
240
		printk(KERN_WARNING "%s: bus seems to be busy\n", name);
Linus Torvalds's avatar
Linus Torvalds committed
241 242 243 244 245 246 247
		goto bailout;
	}

	sdalo(adap);
	sda=getsda(adap);
	scl=(adap->getscl==NULL?1:getscl(adap));
	if ( 0 != sda ) {
248
		printk(KERN_WARNING "%s: SDA stuck high!\n", name);
Linus Torvalds's avatar
Linus Torvalds committed
249 250 251
		goto bailout;
	}
	if ( 0 == scl ) {
252 253
		printk(KERN_WARNING "%s: SCL unexpected low "
		       "while pulling SDA low!\n", name);
Linus Torvalds's avatar
Linus Torvalds committed
254 255 256 257 258 259 260
		goto bailout;
	}		

	sdahi(adap);
	sda=getsda(adap);
	scl=(adap->getscl==NULL?1:getscl(adap));
	if ( 0 == sda ) {
261
		printk(KERN_WARNING "%s: SDA stuck low!\n", name);
Linus Torvalds's avatar
Linus Torvalds committed
262 263 264
		goto bailout;
	}
	if ( 0 == scl ) {
265 266
		printk(KERN_WARNING "%s: SCL unexpected low "
		       "while pulling SDA high!\n", name);
Linus Torvalds's avatar
Linus Torvalds committed
267 268 269 270 271 272 273
		goto bailout;
	}

	scllo(adap);
	sda=getsda(adap);
	scl=(adap->getscl==NULL?0:getscl(adap));
	if ( 0 != scl ) {
274
		printk(KERN_WARNING "%s: SCL stuck high!\n", name);
Linus Torvalds's avatar
Linus Torvalds committed
275 276 277
		goto bailout;
	}
	if ( 0 == sda ) {
278 279
		printk(KERN_WARNING "%s: SDA unexpected low "
		       "while pulling SCL low!\n", name);
Linus Torvalds's avatar
Linus Torvalds committed
280 281 282 283 284 285 286
		goto bailout;
	}
	
	sclhi(adap);
	sda=getsda(adap);
	scl=(adap->getscl==NULL?1:getscl(adap));
	if ( 0 == scl ) {
287
		printk(KERN_WARNING "%s: SCL stuck low!\n", name);
Linus Torvalds's avatar
Linus Torvalds committed
288 289 290
		goto bailout;
	}
	if ( 0 == sda ) {
291 292
		printk(KERN_WARNING "%s: SDA unexpected low "
		       "while pulling SCL high!\n", name);
Linus Torvalds's avatar
Linus Torvalds committed
293 294
		goto bailout;
	}
295
	pr_info("%s: Test OK\n", name);
Linus Torvalds's avatar
Linus Torvalds committed
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
	return 0;
bailout:
	sdahi(adap);
	sclhi(adap);
	return -ENODEV;
}

/* ----- Utility functions
 */

/* try_address tries to contact a chip for a number of
 * times before it gives up.
 * return values:
 * 1 chip answered
 * 0 chip did not answer
 * -x transmission error
 */
Jean Delvare's avatar
Jean Delvare committed
313
static int try_address(struct i2c_adapter *i2c_adap,
Linus Torvalds's avatar
Linus Torvalds committed
314 315 316 317 318 319
		       unsigned char addr, int retries)
{
	struct i2c_algo_bit_data *adap = i2c_adap->algo_data;
	int i,ret = -1;
	for (i=0;i<=retries;i++) {
		ret = i2c_outb(i2c_adap,addr);
320 321
		if (ret == 1 || i == retries)
			break;
322
		bit_dbg(3, &i2c_adap->dev, "emitting stop condition\n");
Linus Torvalds's avatar
Linus Torvalds committed
323 324
		i2c_stop(adap);
		udelay(adap->udelay);
325
		yield();
326
		bit_dbg(3, &i2c_adap->dev, "emitting start condition\n");
327
		i2c_start(adap);
Linus Torvalds's avatar
Linus Torvalds committed
328
	}
329 330 331 332 333
	if (i && ret)
		bit_dbg(1, &i2c_adap->dev, "Used %d tries to %s client at "
			"0x%02x: %s\n", i + 1,
			addr & 1 ? "read from" : "write to", addr >> 1,
			ret == 1 ? "success" : "failed, timeout?");
Linus Torvalds's avatar
Linus Torvalds committed
334 335 336 337 338
	return ret;
}

static int sendbytes(struct i2c_adapter *i2c_adap, struct i2c_msg *msg)
{
339
	const unsigned char *temp = msg->buf;
Linus Torvalds's avatar
Linus Torvalds committed
340 341 342 343 344 345
	int count = msg->len;
	unsigned short nak_ok = msg->flags & I2C_M_IGNORE_NAK; 
	int retval;
	int wrcount=0;

	while (count > 0) {
346
		retval = i2c_outb(i2c_adap, *temp);
Linus Torvalds's avatar
Linus Torvalds committed
347 348 349 350 351 352 353 354 355 356 357 358 359
		if ((retval>0) || (nak_ok && (retval==0)))  { /* ok or ignored NAK */
			count--; 
			temp++;
			wrcount++;
		} else { /* arbitration or no acknowledge */
			dev_err(&i2c_adap->dev, "sendbytes: error - bailout.\n");
			return (retval<0)? retval : -EFAULT;
			        /* got a better one ?? */
		}
	}
	return wrcount;
}

Jean Delvare's avatar
Jean Delvare committed
360
static int readbytes(struct i2c_adapter *i2c_adap, struct i2c_msg *msg)
Linus Torvalds's avatar
Linus Torvalds committed
361 362 363 364
{
	int inval;
	int rdcount=0;   	/* counts bytes read */
	struct i2c_algo_bit_data *adap = i2c_adap->algo_data;
365
	unsigned char *temp = msg->buf;
Linus Torvalds's avatar
Linus Torvalds committed
366 367 368 369 370 371 372 373 374 375 376 377 378 379
	int count = msg->len;

	while (count > 0) {
		inval = i2c_inb(i2c_adap);
		if (inval>=0) {
			*temp = inval;
			rdcount++;
		} else {   /* read timed out */
			break;
		}

		temp++;
		count--;

380 381 382
		if (msg->flags & I2C_M_NO_RD_ACK) {
			bit_dbg(2, &i2c_adap->dev, "i2c_inb: 0x%02x\n",
				inval);
Linus Torvalds's avatar
Linus Torvalds committed
383
			continue;
384
		}
Linus Torvalds's avatar
Linus Torvalds committed
385

386
		/* assert: sda is high */
387
		if (count)		/* send ack */
388
			setsda(adap, 0);
389 390 391
		udelay((adap->udelay + 1) / 2);
		bit_dbg(2, &i2c_adap->dev, "i2c_inb: 0x%02x %s\n", inval,
			count ? "A" : "NA");
Linus Torvalds's avatar
Linus Torvalds committed
392
		if (sclhi(adap)<0) {	/* timeout */
393
			dev_err(&i2c_adap->dev, "readbytes: timeout at ack\n");
Linus Torvalds's avatar
Linus Torvalds committed
394 395 396
			return -ETIMEDOUT;
		};
		scllo(adap);
397 398 399 400 401

		/* Some SMBus transactions require that we receive the
		   transaction length as the first read byte. */
		if (rdcount == 1 && (msg->flags & I2C_M_RECV_LEN)) {
			if (inval <= 0 || inval > I2C_SMBUS_BLOCK_MAX) {
402 403
				dev_err(&i2c_adap->dev, "readbytes: invalid "
					"block length (%d)\n", inval);
404 405 406 407 408 409 410 411
				return -EREMOTEIO;
			}
			/* The original count value accounts for the extra
			   bytes, that is, either 1 for a regular transaction,
			   or 2 for a PEC transaction. */
			count += inval;
			msg->len += inval;
		}
Linus Torvalds's avatar
Linus Torvalds committed
412 413 414 415 416 417 418 419 420 421 422 423
	}
	return rdcount;
}

/* doAddress initiates the transfer by generating the start condition (in
 * try_address) and transmits the address in the necessary format to handle
 * reads, writes as well as 10bit-addresses.
 * returns:
 *  0 everything went okay, the chip ack'ed, or IGNORE_NAK flag was set
 * -x an error occurred (like: -EREMOTEIO if the device did not answer, or
 *	-ETIMEDOUT, for example if the lines are stuck...) 
 */
Jean Delvare's avatar
Jean Delvare committed
424
static int bit_doAddress(struct i2c_adapter *i2c_adap, struct i2c_msg *msg)
Linus Torvalds's avatar
Linus Torvalds committed
425 426 427 428 429 430 431 432 433 434 435 436 437
{
	unsigned short flags = msg->flags;
	unsigned short nak_ok = msg->flags & I2C_M_IGNORE_NAK;
	struct i2c_algo_bit_data *adap = i2c_adap->algo_data;

	unsigned char addr;
	int ret, retries;

	retries = nak_ok ? 0 : i2c_adap->retries;
	
	if ( (flags & I2C_M_TEN)  ) { 
		/* a ten bit address */
		addr = 0xf0 | (( msg->addr >> 7) & 0x03);
438
		bit_dbg(2, &i2c_adap->dev, "addr0: %d\n", addr);
Linus Torvalds's avatar
Linus Torvalds committed
439 440 441
		/* try extended address code...*/
		ret = try_address(i2c_adap, addr, retries);
		if ((ret != 1) && !nak_ok)  {
442 443
			dev_err(&i2c_adap->dev,
				"died at extended address code\n");
Linus Torvalds's avatar
Linus Torvalds committed
444 445 446 447 448 449
			return -EREMOTEIO;
		}
		/* the remaining 8 bit address */
		ret = i2c_outb(i2c_adap,msg->addr & 0x7f);
		if ((ret != 1) && !nak_ok) {
			/* the chip did not ack / xmission error occurred */
450
			dev_err(&i2c_adap->dev, "died at 2nd address code\n");
Linus Torvalds's avatar
Linus Torvalds committed
451 452 453
			return -EREMOTEIO;
		}
		if ( flags & I2C_M_RD ) {
454 455
			bit_dbg(3, &i2c_adap->dev, "emitting repeated "
				"start condition\n");
Linus Torvalds's avatar
Linus Torvalds committed
456 457 458 459 460
			i2c_repstart(adap);
			/* okay, now switch into reading mode */
			addr |= 0x01;
			ret = try_address(i2c_adap, addr, retries);
			if ((ret!=1) && !nak_ok) {
461 462
				dev_err(&i2c_adap->dev,
					"died at repeated address code\n");
Linus Torvalds's avatar
Linus Torvalds committed
463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
				return -EREMOTEIO;
			}
		}
	} else {		/* normal 7bit address	*/
		addr = ( msg->addr << 1 );
		if (flags & I2C_M_RD )
			addr |= 1;
		if (flags & I2C_M_REV_DIR_ADDR )
			addr ^= 1;
		ret = try_address(i2c_adap, addr, retries);
		if ((ret!=1) && !nak_ok)
			return -EREMOTEIO;
	}

	return 0;
}

static int bit_xfer(struct i2c_adapter *i2c_adap,
		    struct i2c_msg msgs[], int num)
{
	struct i2c_msg *pmsg;
	struct i2c_algo_bit_data *adap = i2c_adap->algo_data;
	
	int i,ret;
	unsigned short nak_ok;

489
	bit_dbg(3, &i2c_adap->dev, "emitting start condition\n");
Linus Torvalds's avatar
Linus Torvalds committed
490 491 492 493 494 495
	i2c_start(adap);
	for (i=0;i<num;i++) {
		pmsg = &msgs[i];
		nak_ok = pmsg->flags & I2C_M_IGNORE_NAK; 
		if (!(pmsg->flags & I2C_M_NOSTART)) {
			if (i) {
496 497
				bit_dbg(3, &i2c_adap->dev, "emitting "
					"repeated start condition\n");
Linus Torvalds's avatar
Linus Torvalds committed
498 499 500 501
				i2c_repstart(adap);
			}
			ret = bit_doAddress(i2c_adap, pmsg);
			if ((ret != 0) && !nak_ok) {
502 503 504
				bit_dbg(1, &i2c_adap->dev, "NAK from "
					"device addr 0x%02x msg #%d\n",
					msgs[i].addr, i);
505
				goto bailout;
Linus Torvalds's avatar
Linus Torvalds committed
506 507 508 509 510
			}
		}
		if (pmsg->flags & I2C_M_RD ) {
			/* read bytes into buffer*/
			ret = readbytes(i2c_adap, pmsg);
511 512 513
			if (ret >= 1)
				bit_dbg(2, &i2c_adap->dev, "read %d byte%s\n",
					ret, ret == 1 ? "" : "s");
514 515 516 517
			if (ret < pmsg->len) {
				if (ret >= 0)
					ret = -EREMOTEIO;
				goto bailout;
Linus Torvalds's avatar
Linus Torvalds committed
518 519 520 521
			}
		} else {
			/* write bytes from buffer */
			ret = sendbytes(i2c_adap, pmsg);
522 523 524
			if (ret >= 1)
				bit_dbg(2, &i2c_adap->dev, "wrote %d byte%s\n",
					ret, ret == 1 ? "" : "s");
525 526 527 528
			if (ret < pmsg->len) {
				if (ret >= 0)
					ret = -EREMOTEIO;
				goto bailout;
Linus Torvalds's avatar
Linus Torvalds committed
529 530 531
			}
		}
	}
532 533 534
	ret = i;

bailout:
535
	bit_dbg(3, &i2c_adap->dev, "emitting stop condition\n");
Linus Torvalds's avatar
Linus Torvalds committed
536
	i2c_stop(adap);
537
	return ret;
Linus Torvalds's avatar
Linus Torvalds committed
538 539 540 541 542
}

static u32 bit_func(struct i2c_adapter *adap)
{
	return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL | 
543 544
	       I2C_FUNC_SMBUS_READ_BLOCK_DATA |
	       I2C_FUNC_SMBUS_BLOCK_PROC_CALL |
Linus Torvalds's avatar
Linus Torvalds committed
545 546 547 548 549 550
	       I2C_FUNC_10BIT_ADDR | I2C_FUNC_PROTOCOL_MANGLING;
}


/* -----exported algorithm data: -------------------------------------	*/

551
static const struct i2c_algorithm i2c_bit_algo = {
Linus Torvalds's avatar
Linus Torvalds committed
552 553 554 555 556 557 558
	.master_xfer	= bit_xfer,
	.functionality	= bit_func,
};

/* 
 * registering functions to load algorithms at runtime 
 */
559
static int i2c_bit_prepare_bus(struct i2c_adapter *adap)
Linus Torvalds's avatar
Linus Torvalds committed
560 561 562 563 564 565 566 567 568 569 570 571 572 573 574
{
	struct i2c_algo_bit_data *bit_adap = adap->algo_data;

	if (bit_test) {
		int ret = test_bus(bit_adap, adap->name);
		if (ret<0)
			return -ENODEV;
	}

	/* register new adapter to i2c module... */
	adap->algo = &i2c_bit_algo;

	adap->timeout = 100;	/* default values, should	*/
	adap->retries = 3;	/* be replaced by defines	*/

575 576 577 578 579 580 581 582 583 584 585
	return 0;
}

int i2c_bit_add_bus(struct i2c_adapter *adap)
{
	int err;

	err = i2c_bit_prepare_bus(adap);
	if (err)
		return err;

586
	return i2c_add_adapter(adap);
Linus Torvalds's avatar
Linus Torvalds committed
587 588 589
}
EXPORT_SYMBOL(i2c_bit_add_bus);

590 591 592 593 594 595 596 597 598 599 600 601
int i2c_bit_add_numbered_bus(struct i2c_adapter *adap)
{
	int err;

	err = i2c_bit_prepare_bus(adap);
	if (err)
		return err;

	return i2c_add_numbered_adapter(adap);
}
EXPORT_SYMBOL(i2c_bit_add_numbered_bus);

Linus Torvalds's avatar
Linus Torvalds committed
602 603 604
MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>");
MODULE_DESCRIPTION("I2C-Bus bit-banging algorithm");
MODULE_LICENSE("GPL");