i2c-algo-pcf.c 11.1 KB
Newer Older
R
Roel Kluin 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * i2c-algo-pcf.c i2c driver algorithms for PCF8584 adapters
 *
 *   Copyright (C) 1995-1997 Simon G. Vogl
 *		   1998-2000 Hans Berglund
 *
 *  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.
 *
 * With some changes from Kyösti Mälkki <kmalkki@cc.hut.fi> and
 * Frodo Looijaard <frodol@dds.nl>, and also from Martin Bailey
 * <mbailey@littlefeet-inc.com>
 *
 * Partially rewriten by Oleg I. Vdovikin <vdovikin@jscc.ru> to handle multiple
 * messages, proper stop/repstart signaling during receive, added detect code
 */
L
Linus Torvalds 已提交
24 25 26 27 28 29 30 31 32 33

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/delay.h>
#include <linux/errno.h>
#include <linux/i2c.h>
#include <linux/i2c-algo-pcf.h>
#include "i2c-algo-pcf.h"


R
Roel Kluin 已提交
34 35 36 37
#define DEB2(x) if (i2c_debug >= 2) x
#define DEB3(x) if (i2c_debug >= 3) x /* print several statistical values */
#define DEBPROTO(x) if (i2c_debug >= 9) x;
	/* debug the protocol by showing transferred bits */
L
Linus Torvalds 已提交
38 39
#define DEF_TIMEOUT 16

R
Roel Kluin 已提交
40 41
/*
 * module parameters:
L
Linus Torvalds 已提交
42 43 44
 */
static int i2c_debug;

R
Roel Kluin 已提交
45
/* setting states on the bus with the right timing: */
L
Linus Torvalds 已提交
46 47 48 49 50 51 52 53

#define set_pcf(adap, ctl, val) adap->setpcf(adap->data, ctl, val)
#define get_pcf(adap, ctl) adap->getpcf(adap->data, ctl)
#define get_own(adap) adap->getown(adap->data)
#define get_clock(adap) adap->getclock(adap->data)
#define i2c_outb(adap, val) adap->setpcf(adap->data, 0, val)
#define i2c_inb(adap) adap->getpcf(adap->data, 0)

R
Roel Kluin 已提交
54
/* other auxiliary functions */
L
Linus Torvalds 已提交
55

R
Roel Kluin 已提交
56
static void i2c_start(struct i2c_algo_pcf_data *adap)
L
Linus Torvalds 已提交
57
{
58
	DEBPROTO(printk(KERN_DEBUG "S "));
L
Linus Torvalds 已提交
59 60 61
	set_pcf(adap, 1, I2C_PCF_START);
}

R
Roel Kluin 已提交
62
static void i2c_repstart(struct i2c_algo_pcf_data *adap)
L
Linus Torvalds 已提交
63 64 65 66 67
{
	DEBPROTO(printk(" Sr "));
	set_pcf(adap, 1, I2C_PCF_REPSTART);
}

R
Roel Kluin 已提交
68
static void i2c_stop(struct i2c_algo_pcf_data *adap)
L
Linus Torvalds 已提交
69 70 71 72 73
{
	DEBPROTO(printk("P\n"));
	set_pcf(adap, 1, I2C_PCF_STOP);
}

74 75 76 77
static void handle_lab(struct i2c_algo_pcf_data *adap, const int *status)
{
	DEB2(printk(KERN_INFO
		"i2c-algo-pcf.o: lost arbitration (CSR 0x%02x)\n",
R
Roel Kluin 已提交
78 79 80
		*status));
	/*
	 * Cleanup from LAB -- reset and enable ESO.
81 82 83 84 85 86
	 * This resets the PCF8584; since we've lost the bus, no
	 * further attempts should be made by callers to clean up
	 * (no i2c_stop() etc.)
	 */
	set_pcf(adap, 1, I2C_PCF_PIN);
	set_pcf(adap, 1, I2C_PCF_ESO);
R
Roel Kluin 已提交
87 88
	/*
	 * We pause for a time period sufficient for any running
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
	 * I2C transaction to complete -- the arbitration logic won't
	 * work properly until the next START is seen.
	 * It is assumed the bus driver or client has set a proper value.
	 *
	 * REVISIT: should probably use msleep instead of mdelay if we
	 * know we can sleep.
	 */
	if (adap->lab_mdelay)
		mdelay(adap->lab_mdelay);

	DEB2(printk(KERN_INFO
		"i2c-algo-pcf.o: reset LAB condition (CSR 0x%02x)\n",
		get_pcf(adap, 1)));
}

R
Roel Kluin 已提交
104 105
static int wait_for_bb(struct i2c_algo_pcf_data *adap)
{
L
Linus Torvalds 已提交
106 107 108 109 110

	int timeout = DEF_TIMEOUT;
	int status;

	status = get_pcf(adap, 1);
R
Roel Kluin 已提交
111

112
	while (!(status & I2C_PCF_BB) && --timeout) {
L
Linus Torvalds 已提交
113 114 115
		udelay(100); /* wait for 100 us */
		status = get_pcf(adap, 1);
	}
R
Roel Kluin 已提交
116

117
	if (timeout == 0) {
L
Linus Torvalds 已提交
118
		printk(KERN_ERR "Timeout waiting for Bus Busy\n");
119 120
		return -ETIMEDOUT;
	}
L
Linus Torvalds 已提交
121

122
	return 0;
R
Roel Kluin 已提交
123
}
L
Linus Torvalds 已提交
124

R
Roel Kluin 已提交
125 126
static int wait_for_pin(struct i2c_algo_pcf_data *adap, int *status)
{
L
Linus Torvalds 已提交
127 128 129 130

	int timeout = DEF_TIMEOUT;

	*status = get_pcf(adap, 1);
R
Roel Kluin 已提交
131

132
	while ((*status & I2C_PCF_PIN) && --timeout) {
133
		adap->waitforpin(adap->data);
L
Linus Torvalds 已提交
134 135 136
		*status = get_pcf(adap, 1);
	}
	if (*status & I2C_PCF_LAB) {
137
		handle_lab(adap, status);
R
Roel Kluin 已提交
138
		return -EINTR;
L
Linus Torvalds 已提交
139
	}
R
Roel Kluin 已提交
140

141 142 143 144
	if (timeout == 0)
		return -ETIMEDOUT;

	return 0;
L
Linus Torvalds 已提交
145 146
}

R
Roel Kluin 已提交
147
/*
L
Linus Torvalds 已提交
148 149 150 151 152 153 154 155 156 157 158 159 160 161
 * This should perform the 'PCF8584 initialization sequence' as described
 * in the Philips IC12 data book (1995, Aug 29).
 * There should be a 30 clock cycle wait after reset, I assume this
 * has been fulfilled.
 * There should be a delay at the end equal to the longest I2C message
 * to synchronize the BB-bit (in multimaster systems). How long is
 * this? I assume 1 second is always long enough.
 *
 * vdovikin: added detect code for PCF8584
 */
static int pcf_init_8584 (struct i2c_algo_pcf_data *adap)
{
	unsigned char temp;

R
Roel Kluin 已提交
162 163
	DEB3(printk(KERN_DEBUG "i2c-algo-pcf.o: PCF state 0x%02x\n",
				get_pcf(adap, 1)));
L
Linus Torvalds 已提交
164 165 166

	/* S1=0x80: S0 selected, serial interface off */
	set_pcf(adap, 1, I2C_PCF_PIN);
R
Roel Kluin 已提交
167 168 169 170
	/*
	 * check to see S1 now used as R/W ctrl -
	 * PCF8584 does that when ESO is zero
	 */
L
Linus Torvalds 已提交
171 172
	if (((temp = get_pcf(adap, 1)) & 0x7f) != (0)) {
		DEB2(printk(KERN_ERR "i2c-algo-pcf.o: PCF detection failed -- can't select S0 (0x%02x).\n", temp));
173
		return -ENXIO; /* definitely not PCF8584 */
L
Linus Torvalds 已提交
174 175
	}

R
Roel Kluin 已提交
176
	/* load own address in S0, effective address is (own << 1) */
L
Linus Torvalds 已提交
177 178 179 180 181 182 183
	i2c_outb(adap, get_own(adap));
	/* check it's really written */
	if ((temp = i2c_inb(adap)) != get_own(adap)) {
		DEB2(printk(KERN_ERR "i2c-algo-pcf.o: PCF detection failed -- can't set S0 (0x%02x).\n", temp));
		return -ENXIO;
	}

R
Roel Kluin 已提交
184
	/* S1=0xA0, next byte in S2 */
L
Linus Torvalds 已提交
185 186 187 188 189 190 191
	set_pcf(adap, 1, I2C_PCF_PIN | I2C_PCF_ES1);
	/* check to see S2 now selected */
	if (((temp = get_pcf(adap, 1)) & 0x7f) != I2C_PCF_ES1) {
		DEB2(printk(KERN_ERR "i2c-algo-pcf.o: PCF detection failed -- can't select S2 (0x%02x).\n", temp));
		return -ENXIO;
	}

R
Roel Kluin 已提交
192
	/* load clock register S2 */
L
Linus Torvalds 已提交
193 194 195 196 197 198 199
	i2c_outb(adap, get_clock(adap));
	/* check it's really written, the only 5 lowest bits does matter */
	if (((temp = i2c_inb(adap)) & 0x1f) != get_clock(adap)) {
		DEB2(printk(KERN_ERR "i2c-algo-pcf.o: PCF detection failed -- can't set S2 (0x%02x).\n", temp));
		return -ENXIO;
	}

R
Roel Kluin 已提交
200
	/* Enable serial interface, idle, S0 selected */
L
Linus Torvalds 已提交
201 202 203 204 205 206 207
	set_pcf(adap, 1, I2C_PCF_IDLE);

	/* check to see PCF is really idled and we can access status register */
	if ((temp = get_pcf(adap, 1)) != (I2C_PCF_PIN | I2C_PCF_BB)) {
		DEB2(printk(KERN_ERR "i2c-algo-pcf.o: PCF detection failed -- can't select S1` (0x%02x).\n", temp));
		return -ENXIO;
	}
R
Roel Kluin 已提交
208

209
	printk(KERN_DEBUG "i2c-algo-pcf.o: detected and initialized PCF8584.\n");
L
Linus Torvalds 已提交
210 211 212 213 214

	return 0;
}

static int pcf_sendbytes(struct i2c_adapter *i2c_adap, const char *buf,
R
Roel Kluin 已提交
215
			 int count, int last)
L
Linus Torvalds 已提交
216 217 218
{
	struct i2c_algo_pcf_data *adap = i2c_adap->algo_data;
	int wrcount, status, timeout;
R
Roel Kluin 已提交
219

L
Linus Torvalds 已提交
220 221
	for (wrcount=0; wrcount<count; ++wrcount) {
		DEB2(dev_dbg(&i2c_adap->dev, "i2c_write: writing %2.2X\n",
R
Roel Kluin 已提交
222
				buf[wrcount] & 0xff));
L
Linus Torvalds 已提交
223 224 225
		i2c_outb(adap, buf[wrcount]);
		timeout = wait_for_pin(adap, &status);
		if (timeout) {
R
Roel Kluin 已提交
226 227 228
			if (timeout == -EINTR)
				return -EINTR; /* arbitration lost */

L
Linus Torvalds 已提交
229 230 231 232 233 234 235 236 237 238
			i2c_stop(adap);
			dev_err(&i2c_adap->dev, "i2c_write: error - timeout.\n");
			return -EREMOTEIO; /* got a better one ?? */
		}
		if (status & I2C_PCF_LRB) {
			i2c_stop(adap);
			dev_err(&i2c_adap->dev, "i2c_write: error - no ack.\n");
			return -EREMOTEIO; /* got a better one ?? */
		}
	}
R
Roel Kluin 已提交
239
	if (last)
L
Linus Torvalds 已提交
240
		i2c_stop(adap);
R
Roel Kluin 已提交
241
	else
L
Linus Torvalds 已提交
242 243
		i2c_repstart(adap);

R
Roel Kluin 已提交
244
	return wrcount;
L
Linus Torvalds 已提交
245 246 247
}

static int pcf_readbytes(struct i2c_adapter *i2c_adap, char *buf,
R
Roel Kluin 已提交
248
			 int count, int last)
L
Linus Torvalds 已提交
249 250 251 252 253 254 255 256 257
{
	int i, status;
	struct i2c_algo_pcf_data *adap = i2c_adap->algo_data;
	int wfp;

	/* increment number of bytes to read by one -- read dummy byte */
	for (i = 0; i <= count; i++) {

		if ((wfp = wait_for_pin(adap, &status))) {
R
Roel Kluin 已提交
258 259 260
			if (wfp == -EINTR)
				return -EINTR; /* arbitration lost */

L
Linus Torvalds 已提交
261 262
			i2c_stop(adap);
			dev_err(&i2c_adap->dev, "pcf_readbytes timed out.\n");
R
Roel Kluin 已提交
263
			return -1;
L
Linus Torvalds 已提交
264 265 266 267 268
		}

		if ((status & I2C_PCF_LRB) && (i != count)) {
			i2c_stop(adap);
			dev_err(&i2c_adap->dev, "i2c_read: i2c_inb, No ack.\n");
R
Roel Kluin 已提交
269
			return -1;
L
Linus Torvalds 已提交
270
		}
R
Roel Kluin 已提交
271

L
Linus Torvalds 已提交
272 273
		if (i == count - 1) {
			set_pcf(adap, 1, I2C_PCF_ESO);
R
Roel Kluin 已提交
274 275
		} else if (i == count) {
			if (last)
L
Linus Torvalds 已提交
276
				i2c_stop(adap);
R
Roel Kluin 已提交
277
			else
L
Linus Torvalds 已提交
278
				i2c_repstart(adap);
R
Roel Kluin 已提交
279
		}
L
Linus Torvalds 已提交
280

R
Roel Kluin 已提交
281
		if (i)
L
Linus Torvalds 已提交
282
			buf[i - 1] = i2c_inb(adap);
R
Roel Kluin 已提交
283
		else
L
Linus Torvalds 已提交
284 285 286
			i2c_inb(adap); /* dummy read */
	}

R
Roel Kluin 已提交
287
	return i - 1;
L
Linus Torvalds 已提交
288 289 290
}


291 292
static int pcf_doAddress(struct i2c_algo_pcf_data *adap,
			 struct i2c_msg *msg)
L
Linus Torvalds 已提交
293
{
294
	unsigned char addr = i2c_8bit_addr_from_msg(msg);
295

296
	if (msg->flags & I2C_M_REV_DIR_ADDR)
297 298 299
		addr ^= 1;
	i2c_outb(adap, addr);

L
Linus Torvalds 已提交
300 301 302 303
	return 0;
}

static int pcf_xfer(struct i2c_adapter *i2c_adap,
R
Roel Kluin 已提交
304
		    struct i2c_msg *msgs,
L
Linus Torvalds 已提交
305 306 307 308 309 310
		    int num)
{
	struct i2c_algo_pcf_data *adap = i2c_adap->algo_data;
	struct i2c_msg *pmsg;
	int i;
	int ret=0, timeout, status;
R
Roel Kluin 已提交
311

312 313
	if (adap->xfer_begin)
		adap->xfer_begin(adap->data);
L
Linus Torvalds 已提交
314 315 316 317 318

	/* Check for bus busy */
	timeout = wait_for_bb(adap);
	if (timeout) {
		DEB2(printk(KERN_ERR "i2c-algo-pcf.o: "
R
Roel Kluin 已提交
319
			    "Timeout waiting for BB in pcf_xfer\n");)
320 321
		i = -EIO;
		goto out;
L
Linus Torvalds 已提交
322
	}
R
Roel Kluin 已提交
323

L
Linus Torvalds 已提交
324 325 326 327 328
	for (i = 0;ret >= 0 && i < num; i++) {
		pmsg = &msgs[i];

		DEB2(printk(KERN_DEBUG "i2c-algo-pcf.o: Doing %s %d bytes to 0x%02x - %d of %d messages\n",
		     pmsg->flags & I2C_M_RD ? "read" : "write",
R
Roel Kluin 已提交
329 330
		     pmsg->len, pmsg->addr, i + 1, num);)

331
		ret = pcf_doAddress(adap, pmsg);
L
Linus Torvalds 已提交
332 333

		/* Send START */
R
Roel Kluin 已提交
334 335 336
		if (i == 0)
			i2c_start(adap);

L
Linus Torvalds 已提交
337 338 339 340 341
		/* Wait for PIN (pending interrupt NOT) */
		timeout = wait_for_pin(adap, &status);
		if (timeout) {
			if (timeout == -EINTR) {
				/* arbitration lost */
342 343
				i = -EINTR;
				goto out;
L
Linus Torvalds 已提交
344 345 346 347
			}
			i2c_stop(adap);
			DEB2(printk(KERN_ERR "i2c-algo-pcf.o: Timeout waiting "
				    "for PIN(1) in pcf_xfer\n");)
348 349
			i = -EREMOTEIO;
			goto out;
L
Linus Torvalds 已提交
350
		}
R
Roel Kluin 已提交
351

L
Linus Torvalds 已提交
352 353 354 355
		/* Check LRB (last rcvd bit - slave ack) */
		if (status & I2C_PCF_LRB) {
			i2c_stop(adap);
			DEB2(printk(KERN_ERR "i2c-algo-pcf.o: No LRB(1) in pcf_xfer\n");)
356 357
			i = -EREMOTEIO;
			goto out;
L
Linus Torvalds 已提交
358
		}
R
Roel Kluin 已提交
359

L
Linus Torvalds 已提交
360 361
		DEB3(printk(KERN_DEBUG "i2c-algo-pcf.o: Msg %d, addr=0x%x, flags=0x%x, len=%d\n",
			    i, msgs[i].addr, msgs[i].flags, msgs[i].len);)
R
Roel Kluin 已提交
362

L
Linus Torvalds 已提交
363 364
		if (pmsg->flags & I2C_M_RD) {
			ret = pcf_readbytes(i2c_adap, pmsg->buf, pmsg->len,
R
Roel Kluin 已提交
365 366
					    (i + 1 == num));

L
Linus Torvalds 已提交
367 368 369 370 371 372
			if (ret != pmsg->len) {
				DEB2(printk(KERN_DEBUG "i2c-algo-pcf.o: fail: "
					    "only read %d bytes.\n",ret));
			} else {
				DEB2(printk(KERN_DEBUG "i2c-algo-pcf.o: read %d bytes.\n",ret));
			}
R
Roel Kluin 已提交
373
		} else {
L
Linus Torvalds 已提交
374
			ret = pcf_sendbytes(i2c_adap, pmsg->buf, pmsg->len,
R
Roel Kluin 已提交
375 376
					    (i + 1 == num));

L
Linus Torvalds 已提交
377 378 379 380 381 382 383 384 385
			if (ret != pmsg->len) {
				DEB2(printk(KERN_DEBUG "i2c-algo-pcf.o: fail: "
					    "only wrote %d bytes.\n",ret));
			} else {
				DEB2(printk(KERN_DEBUG "i2c-algo-pcf.o: wrote %d bytes.\n",ret));
			}
		}
	}

386 387 388
out:
	if (adap->xfer_end)
		adap->xfer_end(adap->data);
R
Roel Kluin 已提交
389
	return i;
L
Linus Torvalds 已提交
390 391 392 393
}

static u32 pcf_func(struct i2c_adapter *adap)
{
R
Roel Kluin 已提交
394
	return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL |
395
	       I2C_FUNC_PROTOCOL_MANGLING;
L
Linus Torvalds 已提交
396 397
}

R
Roel Kluin 已提交
398
/* exported algorithm data: */
399
static const struct i2c_algorithm pcf_algo = {
L
Linus Torvalds 已提交
400 401 402 403
	.master_xfer	= pcf_xfer,
	.functionality	= pcf_func,
};

R
Roel Kluin 已提交
404 405
/*
 * registering functions to load algorithms at runtime
L
Linus Torvalds 已提交
406 407 408 409 410 411 412 413 414 415 416
 */
int i2c_pcf_add_bus(struct i2c_adapter *adap)
{
	struct i2c_algo_pcf_data *pcf_adap = adap->algo_data;
	int rval;

	DEB2(dev_dbg(&adap->dev, "hw routines registered.\n"));

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

417 418 419 420 421
	if ((rval = pcf_init_8584(pcf_adap)))
		return rval;

	rval = i2c_add_adapter(adap);

L
Linus Torvalds 已提交
422 423 424 425 426 427 428 429 430 431
	return rval;
}
EXPORT_SYMBOL(i2c_pcf_add_bus);

MODULE_AUTHOR("Hans Berglund <hb@spacetec.no>");
MODULE_DESCRIPTION("I2C-Bus PCF8584 algorithm");
MODULE_LICENSE("GPL");

module_param(i2c_debug, int, S_IRUGO | S_IWUSR);
MODULE_PARM_DESC(i2c_debug,
R
Roel Kluin 已提交
432
	"debug level - 0 off; 1 normal; 2,3 more verbose; 9 pcf-protocol");