| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | /* -------------------------------------------------------------------------
 | 
					
						
							|  |  |  |  * i2c-algo-bit.c i2c driver algorithms for bit-shift adapters | 
					
						
							|  |  |  |  * ------------------------------------------------------------------------- | 
					
						
							|  |  |  |  *   Copyright (C) 1995-2000 Simon G. Vogl | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     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 | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  |     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | 
					
						
							|  |  |  |  * ------------------------------------------------------------------------- */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-19 23:21:04 +02:00
										 |  |  | /* With some changes from Frodo Looijaard <frodol@dds.nl>, Kyösti Mälkki
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |    <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/init.h>
 | 
					
						
							|  |  |  | #include <linux/errno.h>
 | 
					
						
							|  |  |  | #include <linux/sched.h>
 | 
					
						
							|  |  |  | #include <linux/i2c.h>
 | 
					
						
							|  |  |  | #include <linux/i2c-algo-bit.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ----- global defines ----------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | #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 */
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* ----- global variables ---------------------------------------------	*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int bit_test;	/* see if the line-setting functions work	*/ | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 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
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* --- setting states on the bus with the right timing: ---------------	*/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | #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)
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | static inline void sdalo(struct i2c_algo_bit_data *adap) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 	setsda(adap, 0); | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 	udelay((adap->udelay + 1) / 2); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline void sdahi(struct i2c_algo_bit_data *adap) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 	setsda(adap, 1); | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 	udelay((adap->udelay + 1) / 2); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline void scllo(struct i2c_algo_bit_data *adap) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 	setscl(adap, 0); | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 	udelay(adap->udelay / 2); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Raise scl line, and do checking for delays. This is necessary for slower | 
					
						
							|  |  |  |  * devices. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2006-09-03 22:22:12 +02:00
										 |  |  | static int sclhi(struct i2c_algo_bit_data *adap) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	unsigned long start; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 	setscl(adap, 1); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Not all adapters have scl sense line... */ | 
					
						
							| 
									
										
										
										
											2006-09-03 22:22:12 +02:00
										 |  |  | 	if (!adap->getscl) | 
					
						
							|  |  |  | 		goto done; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 	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. | 
					
						
							|  |  |  | 		 */ | 
					
						
							| 
									
										
										
										
											2009-05-05 08:39:24 +02:00
										 |  |  | 		if (time_after(jiffies, start + adap->timeout)) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			return -ETIMEDOUT; | 
					
						
							|  |  |  | 		cond_resched(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | #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
 | 
					
						
							| 
									
										
										
										
											2006-09-03 22:22:12 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | done: | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	udelay(adap->udelay); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* --- other auxiliary functions --------------------------------------	*/ | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | static void i2c_start(struct i2c_algo_bit_data *adap) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	/* assert: scl, sda are high */ | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 	setsda(adap, 0); | 
					
						
							|  |  |  | 	udelay(adap->udelay); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	scllo(adap); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | static void i2c_repstart(struct i2c_algo_bit_data *adap) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 	/* assert: scl is low */ | 
					
						
							|  |  |  | 	sdahi(adap); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	sclhi(adap); | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 	setsda(adap, 0); | 
					
						
							|  |  |  | 	udelay(adap->udelay); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	scllo(adap); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | static void i2c_stop(struct i2c_algo_bit_data *adap) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	/* assert: scl is low */ | 
					
						
							|  |  |  | 	sdalo(adap); | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 	sclhi(adap); | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 	setsda(adap, 1); | 
					
						
							|  |  |  | 	udelay(adap->udelay); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | /* send a byte without start cond., look for arbitration,
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |    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) | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | static int i2c_outb(struct i2c_adapter *i2c_adap, unsigned char c) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 	int sb; | 
					
						
							|  |  |  | 	int ack; | 
					
						
							|  |  |  | 	struct i2c_algo_bit_data *adap = i2c_adap->algo_data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* assert: scl is low */ | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 	for (i = 7; i >= 0; i--) { | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 		sb = (c >> i) & 1; | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 		setsda(adap, sb); | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 		udelay((adap->udelay + 1) / 2); | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 		if (sclhi(adap) < 0) { /* timed out */ | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 			bit_dbg(1, &i2c_adap->dev, "i2c_outb: 0x%02x, " | 
					
						
							|  |  |  | 				"timeout at bit #%d\n", (int)c, i); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			return -ETIMEDOUT; | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		/* 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. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		 */ | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 		scllo(adap); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	sdahi(adap); | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 	if (sclhi(adap) < 0) { /* timeout */ | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 		bit_dbg(1, &i2c_adap->dev, "i2c_outb: 0x%02x, " | 
					
						
							|  |  |  | 			"timeout at ack\n", (int)c); | 
					
						
							|  |  |  | 		return -ETIMEDOUT; | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* read ack: SDA should be pulled down by slave, or it may
 | 
					
						
							|  |  |  | 	 * NAK (usually to report problems with the data we wrote). | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 	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"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	scllo(adap); | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 	return ack; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	/* assert: scl is low (sda undef) */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | static int i2c_inb(struct i2c_adapter *i2c_adap) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	/* read byte via i2c port, without start/stop sequence	*/ | 
					
						
							|  |  |  | 	/* acknowledge is sent in i2c_read.			*/ | 
					
						
							|  |  |  | 	int i; | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 	unsigned char indata = 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	struct i2c_algo_bit_data *adap = i2c_adap->algo_data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* assert: scl is low */ | 
					
						
							|  |  |  | 	sdahi(adap); | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 	for (i = 0; i < 8; i++) { | 
					
						
							|  |  |  | 		if (sclhi(adap) < 0) { /* timeout */ | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 			bit_dbg(1, &i2c_adap->dev, "i2c_inb: timeout at bit " | 
					
						
							|  |  |  | 				"#%d\n", 7 - i); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			return -ETIMEDOUT; | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		indata *= 2; | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 		if (getsda(adap)) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			indata |= 0x01; | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 		setscl(adap, 0); | 
					
						
							|  |  |  | 		udelay(i == 7 ? adap->udelay / 2 : adap->udelay); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	/* assert: scl is low */ | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 	return indata; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Sanity check for the adapter hardware - check the reaction of | 
					
						
							|  |  |  |  * the bus lines only if it seems to be idle. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | static int test_bus(struct i2c_algo_bit_data *adap, char *name) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int scl, sda; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 	if (adap->getscl == NULL) | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 		pr_info("%s: Testing SDA only, SCL is not readable\n", name); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 	sda = getsda(adap); | 
					
						
							|  |  |  | 	scl = (adap->getscl == NULL) ? 1 : getscl(adap); | 
					
						
							|  |  |  | 	if (!scl || !sda) { | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 		printk(KERN_WARNING "%s: bus seems to be busy\n", name); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		goto bailout; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sdalo(adap); | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 	sda = getsda(adap); | 
					
						
							|  |  |  | 	scl = (adap->getscl == NULL) ? 1 : getscl(adap); | 
					
						
							|  |  |  | 	if (sda) { | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 		printk(KERN_WARNING "%s: SDA stuck high!\n", name); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		goto bailout; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 	if (!scl) { | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 		printk(KERN_WARNING "%s: SCL unexpected low " | 
					
						
							|  |  |  | 		       "while pulling SDA low!\n", name); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		goto bailout; | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	sdahi(adap); | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 	sda = getsda(adap); | 
					
						
							|  |  |  | 	scl = (adap->getscl == NULL) ? 1 : getscl(adap); | 
					
						
							|  |  |  | 	if (!sda) { | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 		printk(KERN_WARNING "%s: SDA stuck low!\n", name); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		goto bailout; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 	if (!scl) { | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 		printk(KERN_WARNING "%s: SCL unexpected low " | 
					
						
							|  |  |  | 		       "while pulling SDA high!\n", name); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		goto bailout; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	scllo(adap); | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 	sda = getsda(adap); | 
					
						
							|  |  |  | 	scl = (adap->getscl == NULL) ? 0 : getscl(adap); | 
					
						
							|  |  |  | 	if (scl) { | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 		printk(KERN_WARNING "%s: SCL stuck high!\n", name); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		goto bailout; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 	if (!sda) { | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 		printk(KERN_WARNING "%s: SDA unexpected low " | 
					
						
							|  |  |  | 		       "while pulling SCL low!\n", name); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		goto bailout; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	sclhi(adap); | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 	sda = getsda(adap); | 
					
						
							|  |  |  | 	scl = (adap->getscl == NULL) ? 1 : getscl(adap); | 
					
						
							|  |  |  | 	if (!scl) { | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 		printk(KERN_WARNING "%s: SCL stuck low!\n", name); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		goto bailout; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 	if (!sda) { | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 		printk(KERN_WARNING "%s: SDA unexpected low " | 
					
						
							|  |  |  | 		       "while pulling SCL high!\n", name); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		goto bailout; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 	pr_info("%s: Test OK\n", name); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	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 | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2006-09-03 22:22:12 +02:00
										 |  |  | static int try_address(struct i2c_adapter *i2c_adap, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		       unsigned char addr, int retries) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct i2c_algo_bit_data *adap = i2c_adap->algo_data; | 
					
						
							| 
									
										
										
										
											2008-07-14 22:38:25 +02:00
										 |  |  | 	int i, ret = 0; | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i <= retries; i++) { | 
					
						
							|  |  |  | 		ret = i2c_outb(i2c_adap, addr); | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:28 +02:00
										 |  |  | 		if (ret == 1 || i == retries) | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 		bit_dbg(3, &i2c_adap->dev, "emitting stop condition\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		i2c_stop(adap); | 
					
						
							|  |  |  | 		udelay(adap->udelay); | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 		yield(); | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 		bit_dbg(3, &i2c_adap->dev, "emitting start condition\n"); | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 		i2c_start(adap); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 	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?"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int sendbytes(struct i2c_adapter *i2c_adap, struct i2c_msg *msg) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 	const unsigned char *temp = msg->buf; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int count = msg->len; | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 	unsigned short nak_ok = msg->flags & I2C_M_IGNORE_NAK; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int retval; | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 	int wrcount = 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	while (count > 0) { | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 		retval = i2c_outb(i2c_adap, *temp); | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		/* OK/ACK; or ignored NAK */ | 
					
						
							|  |  |  | 		if ((retval > 0) || (nak_ok && (retval == 0))) { | 
					
						
							|  |  |  | 			count--; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			temp++; | 
					
						
							|  |  |  | 			wrcount++; | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		/* 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; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return wrcount; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-09 22:29:14 +02:00
										 |  |  | 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; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-03 22:22:12 +02:00
										 |  |  | static int readbytes(struct i2c_adapter *i2c_adap, struct i2c_msg *msg) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	int inval; | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 	int rdcount = 0;	/* counts bytes read */ | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 	unsigned char *temp = msg->buf; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int count = msg->len; | 
					
						
							| 
									
										
										
										
											2007-09-09 22:29:14 +02:00
										 |  |  | 	const unsigned flags = msg->flags; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	while (count > 0) { | 
					
						
							|  |  |  | 		inval = i2c_inb(i2c_adap); | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 		if (inval >= 0) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			*temp = inval; | 
					
						
							|  |  |  | 			rdcount++; | 
					
						
							|  |  |  | 		} else {   /* read timed out */ | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		temp++; | 
					
						
							|  |  |  | 		count--; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:29 +02:00
										 |  |  | 		/* Some SMBus transactions require that we receive the
 | 
					
						
							|  |  |  | 		   transaction length as the first read byte. */ | 
					
						
							| 
									
										
										
										
											2007-09-09 22:29:14 +02:00
										 |  |  | 		if (rdcount == 1 && (flags & I2C_M_RECV_LEN)) { | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:29 +02:00
										 |  |  | 			if (inval <= 0 || inval > I2C_SMBUS_BLOCK_MAX) { | 
					
						
							| 
									
										
										
										
											2007-09-09 22:29:14 +02:00
										 |  |  | 				if (!(flags & I2C_M_NO_RD_ACK)) | 
					
						
							|  |  |  | 					acknak(i2c_adap, 0); | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 				dev_err(&i2c_adap->dev, "readbytes: invalid " | 
					
						
							|  |  |  | 					"block length (%d)\n", inval); | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:29 +02:00
										 |  |  | 				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; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2007-09-09 22:29:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		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; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	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 | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  |  *	-ETIMEDOUT, for example if the lines are stuck...) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2006-09-03 22:22:12 +02:00
										 |  |  | static int bit_doAddress(struct i2c_adapter *i2c_adap, struct i2c_msg *msg) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	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; | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (flags & I2C_M_TEN) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		/* a ten bit address */ | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 		addr = 0xf0 | ((msg->addr >> 7) & 0x03); | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 		bit_dbg(2, &i2c_adap->dev, "addr0: %d\n", addr); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		/* try extended address code...*/ | 
					
						
							|  |  |  | 		ret = try_address(i2c_adap, addr, retries); | 
					
						
							|  |  |  | 		if ((ret != 1) && !nak_ok)  { | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 			dev_err(&i2c_adap->dev, | 
					
						
							|  |  |  | 				"died at extended address code\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			return -EREMOTEIO; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		/* the remaining 8 bit address */ | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 		ret = i2c_outb(i2c_adap, msg->addr & 0x7f); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		if ((ret != 1) && !nak_ok) { | 
					
						
							|  |  |  | 			/* the chip did not ack / xmission error occurred */ | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 			dev_err(&i2c_adap->dev, "died at 2nd address code\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			return -EREMOTEIO; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 		if (flags & I2C_M_RD) { | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 			bit_dbg(3, &i2c_adap->dev, "emitting repeated " | 
					
						
							|  |  |  | 				"start condition\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			i2c_repstart(adap); | 
					
						
							|  |  |  | 			/* okay, now switch into reading mode */ | 
					
						
							|  |  |  | 			addr |= 0x01; | 
					
						
							|  |  |  | 			ret = try_address(i2c_adap, addr, retries); | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 			if ((ret != 1) && !nak_ok) { | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 				dev_err(&i2c_adap->dev, | 
					
						
							|  |  |  | 					"died at repeated address code\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 				return -EREMOTEIO; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else {		/* normal 7bit address	*/ | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 		addr = msg->addr << 1; | 
					
						
							|  |  |  | 		if (flags & I2C_M_RD) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			addr |= 1; | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 		if (flags & I2C_M_REV_DIR_ADDR) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			addr ^= 1; | 
					
						
							|  |  |  | 		ret = try_address(i2c_adap, addr, retries); | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 		if ((ret != 1) && !nak_ok) | 
					
						
							| 
									
										
										
										
											2008-07-14 22:38:25 +02:00
										 |  |  | 			return -ENXIO; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	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; | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 	int i, ret; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned short nak_ok; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-13 20:56:56 +01:00
										 |  |  | 	if (adap->pre_xfer) { | 
					
						
							|  |  |  | 		ret = adap->pre_xfer(i2c_adap); | 
					
						
							|  |  |  | 		if (ret < 0) | 
					
						
							|  |  |  | 			return ret; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 	bit_dbg(3, &i2c_adap->dev, "emitting start condition\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	i2c_start(adap); | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 	for (i = 0; i < num; i++) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		pmsg = &msgs[i]; | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 		nak_ok = pmsg->flags & I2C_M_IGNORE_NAK; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		if (!(pmsg->flags & I2C_M_NOSTART)) { | 
					
						
							|  |  |  | 			if (i) { | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 				bit_dbg(3, &i2c_adap->dev, "emitting " | 
					
						
							|  |  |  | 					"repeated start condition\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 				i2c_repstart(adap); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			ret = bit_doAddress(i2c_adap, pmsg); | 
					
						
							|  |  |  | 			if ((ret != 0) && !nak_ok) { | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 				bit_dbg(1, &i2c_adap->dev, "NAK from " | 
					
						
							|  |  |  | 					"device addr 0x%02x msg #%d\n", | 
					
						
							|  |  |  | 					msgs[i].addr, i); | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:28 +02:00
										 |  |  | 				goto bailout; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 		if (pmsg->flags & I2C_M_RD) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			/* read bytes into buffer*/ | 
					
						
							|  |  |  | 			ret = readbytes(i2c_adap, pmsg); | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 			if (ret >= 1) | 
					
						
							|  |  |  | 				bit_dbg(2, &i2c_adap->dev, "read %d byte%s\n", | 
					
						
							|  |  |  | 					ret, ret == 1 ? "" : "s"); | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:28 +02:00
										 |  |  | 			if (ret < pmsg->len) { | 
					
						
							|  |  |  | 				if (ret >= 0) | 
					
						
							|  |  |  | 					ret = -EREMOTEIO; | 
					
						
							|  |  |  | 				goto bailout; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			/* write bytes from buffer */ | 
					
						
							|  |  |  | 			ret = sendbytes(i2c_adap, pmsg); | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 			if (ret >= 1) | 
					
						
							|  |  |  | 				bit_dbg(2, &i2c_adap->dev, "wrote %d byte%s\n", | 
					
						
							|  |  |  | 					ret, ret == 1 ? "" : "s"); | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:28 +02:00
										 |  |  | 			if (ret < pmsg->len) { | 
					
						
							|  |  |  | 				if (ret >= 0) | 
					
						
							|  |  |  | 					ret = -EREMOTEIO; | 
					
						
							|  |  |  | 				goto bailout; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:28 +02:00
										 |  |  | 	ret = i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bailout: | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:33 +02:00
										 |  |  | 	bit_dbg(3, &i2c_adap->dev, "emitting stop condition\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	i2c_stop(adap); | 
					
						
							| 
									
										
										
										
											2010-03-13 20:56:56 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (adap->post_xfer) | 
					
						
							|  |  |  | 		adap->post_xfer(i2c_adap); | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:28 +02:00
										 |  |  | 	return ret; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static u32 bit_func(struct i2c_adapter *adap) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 	return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL | | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:29 +02:00
										 |  |  | 	       I2C_FUNC_SMBUS_READ_BLOCK_DATA | | 
					
						
							|  |  |  | 	       I2C_FUNC_SMBUS_BLOCK_PROC_CALL | | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	       I2C_FUNC_10BIT_ADDR | I2C_FUNC_PROTOCOL_MANGLING; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* -----exported algorithm data: -------------------------------------	*/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-03 22:38:52 +02:00
										 |  |  | static const struct i2c_algorithm i2c_bit_algo = { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	.master_xfer	= bit_xfer, | 
					
						
							|  |  |  | 	.functionality	= bit_func, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * registering functions to load algorithms at runtime | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:31 +02:00
										 |  |  | static int i2c_bit_prepare_bus(struct i2c_adapter *adap) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct i2c_algo_bit_data *bit_adap = adap->algo_data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (bit_test) { | 
					
						
							|  |  |  | 		int ret = test_bus(bit_adap, adap->name); | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:46 +01:00
										 |  |  | 		if (ret < 0) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			return -ENODEV; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* register new adapter to i2c module... */ | 
					
						
							|  |  |  | 	adap->algo = &i2c_bit_algo; | 
					
						
							| 
									
										
										
										
											2009-03-28 21:34:43 +01:00
										 |  |  | 	adap->retries = 3; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:31 +02:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int i2c_bit_add_bus(struct i2c_adapter *adap) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = i2c_bit_prepare_bus(adap); | 
					
						
							|  |  |  | 	if (err) | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-01 17:16:06 +02:00
										 |  |  | 	return i2c_add_adapter(adap); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | EXPORT_SYMBOL(i2c_bit_add_bus); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-01 23:26:31 +02:00
										 |  |  | 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); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>"); | 
					
						
							|  |  |  | MODULE_DESCRIPTION("I2C-Bus bit-banging algorithm"); | 
					
						
							|  |  |  | MODULE_LICENSE("GPL"); |