i2c-algo-bit.c 16.9 KB
Newer Older
1 2 3 4
/* -------------------------------------------------------------------------
 * i2c-algo-bit.c i2c driver algorithms for bit-shift adapters
 * -------------------------------------------------------------------------
 *   Copyright (C) 1995-2000 Simon G. Vogl
L
Linus Torvalds 已提交
5 6 7 8 9 10 11 12 13 14

    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.
15
 * ------------------------------------------------------------------------- */
L
Linus Torvalds 已提交
16

17
/* With some changes from Frodo Looijaard <frodol@dds.nl>, Kyösti Mälkki
18
   <kmalkki@cc.hut.fi> and Jean Delvare <jdelvare@suse.de> */
L
Linus Torvalds 已提交
19 20 21 22 23 24 25 26 27 28 29 30

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


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

J
Jean Delvare 已提交
31 32 33 34 35 36 37 38 39 40
#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 */
L
Linus Torvalds 已提交
41 42 43 44

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

static int bit_test;	/* see if the line-setting functions work	*/
45 46
module_param(bit_test, int, S_IRUGO);
MODULE_PARM_DESC(bit_test, "lines testing - 0 off; 1 report; 2 fail if stuck");
J
Jean Delvare 已提交
47 48 49 50 51 52 53

#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
L
Linus Torvalds 已提交
54 55 56

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

57 58 59 60
#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)
L
Linus Torvalds 已提交
61 62 63

static inline void sdalo(struct i2c_algo_bit_data *adap)
{
64
	setsda(adap, 0);
65
	udelay((adap->udelay + 1) / 2);
L
Linus Torvalds 已提交
66 67 68 69
}

static inline void sdahi(struct i2c_algo_bit_data *adap)
{
70
	setsda(adap, 1);
71
	udelay((adap->udelay + 1) / 2);
L
Linus Torvalds 已提交
72 73 74 75
}

static inline void scllo(struct i2c_algo_bit_data *adap)
{
76
	setscl(adap, 0);
77
	udelay(adap->udelay / 2);
L
Linus Torvalds 已提交
78 79 80 81 82 83
}

/*
 * Raise scl line, and do checking for delays. This is necessary for slower
 * devices.
 */
J
Jean Delvare 已提交
84
static int sclhi(struct i2c_algo_bit_data *adap)
L
Linus Torvalds 已提交
85 86 87
{
	unsigned long start;

88
	setscl(adap, 1);
L
Linus Torvalds 已提交
89 90

	/* Not all adapters have scl sense line... */
J
Jean Delvare 已提交
91 92
	if (!adap->getscl)
		goto done;
L
Linus Torvalds 已提交
93

94 95 96 97 98 99 100
	start = jiffies;
	while (!getscl(adap)) {
		/* This 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 ("clock stretching") while they
		 * are processing data internally.
		 */
101 102 103 104 105 106
		if (time_after(jiffies, start + adap->timeout)) {
			/* Test one last time, as we may have been preempted
			 * between last check and timeout test.
			 */
			if (getscl(adap))
				break;
L
Linus Torvalds 已提交
107
			return -ETIMEDOUT;
108
		}
109
		cpu_relax();
L
Linus Torvalds 已提交
110
	}
J
Jean Delvare 已提交
111 112 113 114 115
#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
J
Jean Delvare 已提交
116 117

done:
L
Linus Torvalds 已提交
118 119
	udelay(adap->udelay);
	return 0;
120
}
L
Linus Torvalds 已提交
121 122 123


/* --- other auxiliary functions --------------------------------------	*/
124
static void i2c_start(struct i2c_algo_bit_data *adap)
L
Linus Torvalds 已提交
125 126
{
	/* assert: scl, sda are high */
127 128
	setsda(adap, 0);
	udelay(adap->udelay);
L
Linus Torvalds 已提交
129 130 131
	scllo(adap);
}

132
static void i2c_repstart(struct i2c_algo_bit_data *adap)
L
Linus Torvalds 已提交
133
{
134 135
	/* assert: scl is low */
	sdahi(adap);
L
Linus Torvalds 已提交
136
	sclhi(adap);
137 138
	setsda(adap, 0);
	udelay(adap->udelay);
L
Linus Torvalds 已提交
139 140 141 142
	scllo(adap);
}


143
static void i2c_stop(struct i2c_algo_bit_data *adap)
L
Linus Torvalds 已提交
144 145 146
{
	/* assert: scl is low */
	sdalo(adap);
147
	sclhi(adap);
148 149
	setsda(adap, 1);
	udelay(adap->udelay);
L
Linus Torvalds 已提交
150 151 152 153
}



154
/* send a byte without start cond., look for arbitration,
L
Linus Torvalds 已提交
155 156 157 158 159 160
   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)
 */
J
Jean Delvare 已提交
161
static int i2c_outb(struct i2c_adapter *i2c_adap, unsigned char c)
L
Linus Torvalds 已提交
162 163 164 165 166 167 168
{
	int i;
	int sb;
	int ack;
	struct i2c_algo_bit_data *adap = i2c_adap->algo_data;

	/* assert: scl is low */
169
	for (i = 7; i >= 0; i--) {
J
Jean Delvare 已提交
170
		sb = (c >> i) & 1;
171
		setsda(adap, sb);
172
		udelay((adap->udelay + 1) / 2);
173
		if (sclhi(adap) < 0) { /* timed out */
J
Jean Delvare 已提交
174 175
			bit_dbg(1, &i2c_adap->dev, "i2c_outb: 0x%02x, "
				"timeout at bit #%d\n", (int)c, i);
L
Linus Torvalds 已提交
176
			return -ETIMEDOUT;
177 178 179 180 181 182
		}
		/* FIXME do arbitration here:
		 * if (sb && !getsda(adap)) -> ouch! Get out of here.
		 *
		 * Report a unique code, so higher level code can retry
		 * the whole (combined) message and *NOT* issue STOP.
L
Linus Torvalds 已提交
183
		 */
184
		scllo(adap);
L
Linus Torvalds 已提交
185 186
	}
	sdahi(adap);
187
	if (sclhi(adap) < 0) { /* timeout */
J
Jean Delvare 已提交
188 189 190
		bit_dbg(1, &i2c_adap->dev, "i2c_outb: 0x%02x, "
			"timeout at ack\n", (int)c);
		return -ETIMEDOUT;
191 192 193 194 195
	}

	/* read ack: SDA should be pulled down by slave, or it may
	 * NAK (usually to report problems with the data we wrote).
	 */
J
Jean Delvare 已提交
196 197 198
	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");
L
Linus Torvalds 已提交
199 200

	scllo(adap);
J
Jean Delvare 已提交
201
	return ack;
L
Linus Torvalds 已提交
202 203 204 205
	/* assert: scl is low (sda undef) */
}


206
static int i2c_inb(struct i2c_adapter *i2c_adap)
L
Linus Torvalds 已提交
207 208 209 210
{
	/* read byte via i2c port, without start/stop sequence	*/
	/* acknowledge is sent in i2c_read.			*/
	int i;
211
	unsigned char indata = 0;
L
Linus Torvalds 已提交
212 213 214 215
	struct i2c_algo_bit_data *adap = i2c_adap->algo_data;

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

/*
 * Sanity check for the adapter hardware - check the reaction of
 * the bus lines only if it seems to be idle.
 */
236
static int test_bus(struct i2c_adapter *i2c_adap)
237
{
238 239 240 241 242 243 244 245 246
	struct i2c_algo_bit_data *adap = i2c_adap->algo_data;
	const char *name = i2c_adap->name;
	int scl, sda, ret;

	if (adap->pre_xfer) {
		ret = adap->pre_xfer(i2c_adap);
		if (ret < 0)
			return -ENODEV;
	}
L
Linus Torvalds 已提交
247

248
	if (adap->getscl == NULL)
J
Jean Delvare 已提交
249
		pr_info("%s: Testing SDA only, SCL is not readable\n", name);
L
Linus Torvalds 已提交
250

251 252 253
	sda = getsda(adap);
	scl = (adap->getscl == NULL) ? 1 : getscl(adap);
	if (!scl || !sda) {
254 255 256
		printk(KERN_WARNING
		       "%s: bus seems to be busy (scl=%d, sda=%d)\n",
		       name, scl, sda);
L
Linus Torvalds 已提交
257 258 259 260
		goto bailout;
	}

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

	sdahi(adap);
274 275 276
	sda = getsda(adap);
	scl = (adap->getscl == NULL) ? 1 : getscl(adap);
	if (!sda) {
J
Jean Delvare 已提交
277
		printk(KERN_WARNING "%s: SDA stuck low!\n", name);
L
Linus Torvalds 已提交
278 279
		goto bailout;
	}
280
	if (!scl) {
J
Jean Delvare 已提交
281 282
		printk(KERN_WARNING "%s: SCL unexpected low "
		       "while pulling SDA high!\n", name);
L
Linus Torvalds 已提交
283 284 285 286
		goto bailout;
	}

	scllo(adap);
287 288 289
	sda = getsda(adap);
	scl = (adap->getscl == NULL) ? 0 : getscl(adap);
	if (scl) {
J
Jean Delvare 已提交
290
		printk(KERN_WARNING "%s: SCL stuck high!\n", name);
L
Linus Torvalds 已提交
291 292
		goto bailout;
	}
293
	if (!sda) {
J
Jean Delvare 已提交
294 295
		printk(KERN_WARNING "%s: SDA unexpected low "
		       "while pulling SCL low!\n", name);
L
Linus Torvalds 已提交
296 297
		goto bailout;
	}
298

L
Linus Torvalds 已提交
299
	sclhi(adap);
300 301 302
	sda = getsda(adap);
	scl = (adap->getscl == NULL) ? 1 : getscl(adap);
	if (!scl) {
J
Jean Delvare 已提交
303
		printk(KERN_WARNING "%s: SCL stuck low!\n", name);
L
Linus Torvalds 已提交
304 305
		goto bailout;
	}
306
	if (!sda) {
J
Jean Delvare 已提交
307 308
		printk(KERN_WARNING "%s: SDA unexpected low "
		       "while pulling SCL high!\n", name);
L
Linus Torvalds 已提交
309 310
		goto bailout;
	}
311 312 313 314

	if (adap->post_xfer)
		adap->post_xfer(i2c_adap);

J
Jean Delvare 已提交
315
	pr_info("%s: Test OK\n", name);
L
Linus Torvalds 已提交
316 317 318 319
	return 0;
bailout:
	sdahi(adap);
	sclhi(adap);
320 321 322 323

	if (adap->post_xfer)
		adap->post_xfer(i2c_adap);

L
Linus Torvalds 已提交
324 325 326 327 328 329 330 331 332 333 334 335 336
	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
 */
J
Jean Delvare 已提交
337
static int try_address(struct i2c_adapter *i2c_adap,
L
Linus Torvalds 已提交
338 339 340
		       unsigned char addr, int retries)
{
	struct i2c_algo_bit_data *adap = i2c_adap->algo_data;
341
	int i, ret = 0;
342 343 344

	for (i = 0; i <= retries; i++) {
		ret = i2c_outb(i2c_adap, addr);
345 346
		if (ret == 1 || i == retries)
			break;
J
Jean Delvare 已提交
347
		bit_dbg(3, &i2c_adap->dev, "emitting stop condition\n");
L
Linus Torvalds 已提交
348 349
		i2c_stop(adap);
		udelay(adap->udelay);
350
		yield();
J
Jean Delvare 已提交
351
		bit_dbg(3, &i2c_adap->dev, "emitting start condition\n");
352
		i2c_start(adap);
L
Linus Torvalds 已提交
353
	}
J
Jean Delvare 已提交
354 355 356 357 358
	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?");
L
Linus Torvalds 已提交
359 360 361 362 363
	return ret;
}

static int sendbytes(struct i2c_adapter *i2c_adap, struct i2c_msg *msg)
{
J
Jean Delvare 已提交
364
	const unsigned char *temp = msg->buf;
L
Linus Torvalds 已提交
365
	int count = msg->len;
366
	unsigned short nak_ok = msg->flags & I2C_M_IGNORE_NAK;
L
Linus Torvalds 已提交
367
	int retval;
368
	int wrcount = 0;
L
Linus Torvalds 已提交
369 370

	while (count > 0) {
J
Jean Delvare 已提交
371
		retval = i2c_outb(i2c_adap, *temp);
372 373 374 375

		/* OK/ACK; or ignored NAK */
		if ((retval > 0) || (nak_ok && (retval == 0))) {
			count--;
L
Linus Torvalds 已提交
376 377
			temp++;
			wrcount++;
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397

		/* A slave NAKing the master means the slave didn't like
		 * something about the data it saw.  For example, maybe
		 * the SMBus PEC was wrong.
		 */
		} else if (retval == 0) {
			dev_err(&i2c_adap->dev, "sendbytes: NAK bailout.\n");
			return -EIO;

		/* Timeout; or (someday) lost arbitration
		 *
		 * FIXME Lost ARB implies retrying the transaction from
		 * the first message, after the "winning" master issues
		 * its STOP.  As a rule, upper layer code has no reason
		 * to know or care about this ... it is *NOT* an error.
		 */
		} else {
			dev_err(&i2c_adap->dev, "sendbytes: error %d\n",
					retval);
			return retval;
L
Linus Torvalds 已提交
398 399 400 401 402
		}
	}
	return wrcount;
}

403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
static int acknak(struct i2c_adapter *i2c_adap, int is_ack)
{
	struct i2c_algo_bit_data *adap = i2c_adap->algo_data;

	/* assert: sda is high */
	if (is_ack)		/* send ack */
		setsda(adap, 0);
	udelay((adap->udelay + 1) / 2);
	if (sclhi(adap) < 0) {	/* timeout */
		dev_err(&i2c_adap->dev, "readbytes: ack/nak timeout\n");
		return -ETIMEDOUT;
	}
	scllo(adap);
	return 0;
}

J
Jean Delvare 已提交
419
static int readbytes(struct i2c_adapter *i2c_adap, struct i2c_msg *msg)
L
Linus Torvalds 已提交
420 421
{
	int inval;
422
	int rdcount = 0;	/* counts bytes read */
J
Jean Delvare 已提交
423
	unsigned char *temp = msg->buf;
L
Linus Torvalds 已提交
424
	int count = msg->len;
425
	const unsigned flags = msg->flags;
L
Linus Torvalds 已提交
426 427 428

	while (count > 0) {
		inval = i2c_inb(i2c_adap);
429
		if (inval >= 0) {
L
Linus Torvalds 已提交
430 431 432 433 434 435 436 437 438
			*temp = inval;
			rdcount++;
		} else {   /* read timed out */
			break;
		}

		temp++;
		count--;

439 440
		/* Some SMBus transactions require that we receive the
		   transaction length as the first read byte. */
441
		if (rdcount == 1 && (flags & I2C_M_RECV_LEN)) {
442
			if (inval <= 0 || inval > I2C_SMBUS_BLOCK_MAX) {
443 444
				if (!(flags & I2C_M_NO_RD_ACK))
					acknak(i2c_adap, 0);
J
Jean Delvare 已提交
445 446
				dev_err(&i2c_adap->dev, "readbytes: invalid "
					"block length (%d)\n", inval);
447
				return -EPROTO;
448 449 450 451 452 453 454
			}
			/* 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;
		}
455 456 457 458 459 460 461 462 463 464 465 466

		bit_dbg(2, &i2c_adap->dev, "readbytes: 0x%02x %s\n",
			inval,
			(flags & I2C_M_NO_RD_ACK)
				? "(no ack/nak)"
				: (count ? "A" : "NA"));

		if (!(flags & I2C_M_NO_RD_ACK)) {
			inval = acknak(i2c_adap, count);
			if (inval < 0)
				return inval;
		}
L
Linus Torvalds 已提交
467 468 469 470 471 472 473 474 475
	}
	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
476
 * -x an error occurred (like: -ENXIO if the device did not answer, or
477
 *	-ETIMEDOUT, for example if the lines are stuck...)
L
Linus Torvalds 已提交
478
 */
J
Jean Delvare 已提交
479
static int bit_doAddress(struct i2c_adapter *i2c_adap, struct i2c_msg *msg)
L
Linus Torvalds 已提交
480 481 482 483 484 485 486 487 488
{
	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;
489 490

	if (flags & I2C_M_TEN) {
L
Linus Torvalds 已提交
491
		/* a ten bit address */
492
		addr = 0xf0 | ((msg->addr >> 7) & 0x06);
J
Jean Delvare 已提交
493
		bit_dbg(2, &i2c_adap->dev, "addr0: %d\n", addr);
L
Linus Torvalds 已提交
494 495 496
		/* try extended address code...*/
		ret = try_address(i2c_adap, addr, retries);
		if ((ret != 1) && !nak_ok)  {
J
Jean Delvare 已提交
497 498
			dev_err(&i2c_adap->dev,
				"died at extended address code\n");
499
			return -ENXIO;
L
Linus Torvalds 已提交
500 501
		}
		/* the remaining 8 bit address */
502
		ret = i2c_outb(i2c_adap, msg->addr & 0xff);
L
Linus Torvalds 已提交
503 504
		if ((ret != 1) && !nak_ok) {
			/* the chip did not ack / xmission error occurred */
J
Jean Delvare 已提交
505
			dev_err(&i2c_adap->dev, "died at 2nd address code\n");
506
			return -ENXIO;
L
Linus Torvalds 已提交
507
		}
508
		if (flags & I2C_M_RD) {
J
Jean Delvare 已提交
509 510
			bit_dbg(3, &i2c_adap->dev, "emitting repeated "
				"start condition\n");
L
Linus Torvalds 已提交
511 512 513 514
			i2c_repstart(adap);
			/* okay, now switch into reading mode */
			addr |= 0x01;
			ret = try_address(i2c_adap, addr, retries);
515
			if ((ret != 1) && !nak_ok) {
J
Jean Delvare 已提交
516 517
				dev_err(&i2c_adap->dev,
					"died at repeated address code\n");
518
				return -EIO;
L
Linus Torvalds 已提交
519 520 521
			}
		}
	} else {		/* normal 7bit address	*/
522
		addr = i2c_8bit_addr_from_msg(msg);
523
		if (flags & I2C_M_REV_DIR_ADDR)
L
Linus Torvalds 已提交
524 525
			addr ^= 1;
		ret = try_address(i2c_adap, addr, retries);
526
		if ((ret != 1) && !nak_ok)
527
			return -ENXIO;
L
Linus Torvalds 已提交
528 529 530 531 532 533 534 535 536 537
	}

	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;
538
	int i, ret;
L
Linus Torvalds 已提交
539 540
	unsigned short nak_ok;

541 542 543 544 545 546
	if (adap->pre_xfer) {
		ret = adap->pre_xfer(i2c_adap);
		if (ret < 0)
			return ret;
	}

J
Jean Delvare 已提交
547
	bit_dbg(3, &i2c_adap->dev, "emitting start condition\n");
L
Linus Torvalds 已提交
548
	i2c_start(adap);
549
	for (i = 0; i < num; i++) {
L
Linus Torvalds 已提交
550
		pmsg = &msgs[i];
551
		nak_ok = pmsg->flags & I2C_M_IGNORE_NAK;
L
Linus Torvalds 已提交
552 553
		if (!(pmsg->flags & I2C_M_NOSTART)) {
			if (i) {
554 555 556 557 558 559 560 561 562 563
				if (msgs[i - 1].flags & I2C_M_STOP) {
					bit_dbg(3, &i2c_adap->dev,
						"emitting enforced stop/start condition\n");
					i2c_stop(adap);
					i2c_start(adap);
				} else {
					bit_dbg(3, &i2c_adap->dev,
						"emitting repeated start condition\n");
					i2c_repstart(adap);
				}
L
Linus Torvalds 已提交
564 565 566
			}
			ret = bit_doAddress(i2c_adap, pmsg);
			if ((ret != 0) && !nak_ok) {
J
Jean Delvare 已提交
567 568 569
				bit_dbg(1, &i2c_adap->dev, "NAK from "
					"device addr 0x%02x msg #%d\n",
					msgs[i].addr, i);
570
				goto bailout;
L
Linus Torvalds 已提交
571 572
			}
		}
573
		if (pmsg->flags & I2C_M_RD) {
L
Linus Torvalds 已提交
574 575
			/* read bytes into buffer*/
			ret = readbytes(i2c_adap, pmsg);
J
Jean Delvare 已提交
576 577 578
			if (ret >= 1)
				bit_dbg(2, &i2c_adap->dev, "read %d byte%s\n",
					ret, ret == 1 ? "" : "s");
579 580
			if (ret < pmsg->len) {
				if (ret >= 0)
581
					ret = -EIO;
582
				goto bailout;
L
Linus Torvalds 已提交
583 584 585 586
			}
		} else {
			/* write bytes from buffer */
			ret = sendbytes(i2c_adap, pmsg);
J
Jean Delvare 已提交
587 588 589
			if (ret >= 1)
				bit_dbg(2, &i2c_adap->dev, "wrote %d byte%s\n",
					ret, ret == 1 ? "" : "s");
590 591
			if (ret < pmsg->len) {
				if (ret >= 0)
592
					ret = -EIO;
593
				goto bailout;
L
Linus Torvalds 已提交
594 595 596
			}
		}
	}
597 598 599
	ret = i;

bailout:
J
Jean Delvare 已提交
600
	bit_dbg(3, &i2c_adap->dev, "emitting stop condition\n");
L
Linus Torvalds 已提交
601
	i2c_stop(adap);
602 603 604

	if (adap->post_xfer)
		adap->post_xfer(i2c_adap);
605
	return ret;
L
Linus Torvalds 已提交
606 607 608 609
}

static u32 bit_func(struct i2c_adapter *adap)
{
610
	return I2C_FUNC_I2C | I2C_FUNC_NOSTART | I2C_FUNC_SMBUS_EMUL |
611 612
	       I2C_FUNC_SMBUS_READ_BLOCK_DATA |
	       I2C_FUNC_SMBUS_BLOCK_PROC_CALL |
L
Linus Torvalds 已提交
613 614 615 616 617 618
	       I2C_FUNC_10BIT_ADDR | I2C_FUNC_PROTOCOL_MANGLING;
}


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

619
const struct i2c_algorithm i2c_bit_algo = {
L
Linus Torvalds 已提交
620 621 622
	.master_xfer	= bit_xfer,
	.functionality	= bit_func,
};
623
EXPORT_SYMBOL(i2c_bit_algo);
L
Linus Torvalds 已提交
624

625
static const struct i2c_adapter_quirks i2c_bit_quirk_no_clk_stretch = {
626 627 628
	.flags = I2C_AQ_NO_CLK_STRETCH,
};

629 630
/*
 * registering functions to load algorithms at runtime
L
Linus Torvalds 已提交
631
 */
632 633
static int __i2c_bit_add_bus(struct i2c_adapter *adap,
			     int (*add_adapter)(struct i2c_adapter *))
L
Linus Torvalds 已提交
634 635
{
	struct i2c_algo_bit_data *bit_adap = adap->algo_data;
636
	int ret;
L
Linus Torvalds 已提交
637 638

	if (bit_test) {
639
		ret = test_bus(adap);
640
		if (bit_test >= 2 && ret < 0)
L
Linus Torvalds 已提交
641 642 643 644 645
			return -ENODEV;
	}

	/* register new adapter to i2c module... */
	adap->algo = &i2c_bit_algo;
646
	adap->retries = 3;
647 648
	if (bit_adap->getscl == NULL)
		adap->quirks = &i2c_bit_quirk_no_clk_stretch;
L
Linus Torvalds 已提交
649

650 651 652 653 654
	/*
	 * We tried forcing SCL/SDA to an initial state here. But that caused a
	 * regression, sadly. Check Bugzilla #200045 for details.
	 */

655 656 657 658 659 660 661 662 663 664
	ret = add_adapter(adap);
	if (ret < 0)
		return ret;

	/* Complain if SCL can't be read */
	if (bit_adap->getscl == NULL) {
		dev_warn(&adap->dev, "Not I2C compliant: can't read SCL\n");
		dev_warn(&adap->dev, "Bus may be unreliable\n");
	}
	return 0;
665 666 667 668
}

int i2c_bit_add_bus(struct i2c_adapter *adap)
{
669
	return __i2c_bit_add_bus(adap, i2c_add_adapter);
L
Linus Torvalds 已提交
670 671 672
}
EXPORT_SYMBOL(i2c_bit_add_bus);

673 674
int i2c_bit_add_numbered_bus(struct i2c_adapter *adap)
{
675
	return __i2c_bit_add_bus(adap, i2c_add_numbered_adapter);
676 677 678
}
EXPORT_SYMBOL(i2c_bit_add_numbered_bus);

L
Linus Torvalds 已提交
679 680 681
MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>");
MODULE_DESCRIPTION("I2C-Bus bit-banging algorithm");
MODULE_LICENSE("GPL");