#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: i2c_bitbang.c,v 1.14 2016/06/07 01:06:27 pgoyette Exp $");
#include <sys/module.h>
#include <sys/param.h>
#include <dev/i2c/i2cvar.h>
#include <dev/i2c/i2c_bitbang.h>
#define SETBITS(x) ops->ibo_set_bits(v, (x))
#define DIR(x) ops->ibo_set_dir(v, (x))
#define READ ops->ibo_read_bits(v)
#define SDA ops->ibo_bits[I2C_BIT_SDA]
#define SCL ops->ibo_bits[I2C_BIT_SCL]
#define OUTPUT ops->ibo_bits[I2C_BIT_OUTPUT]
#define INPUT ops->ibo_bits[I2C_BIT_INPUT]
#ifndef SCL_BAIL_COUNT
#define SCL_BAIL_COUNT 1000
#endif
static inline int i2c_wait_for_scl(void *, i2c_bitbang_ops_t);
static inline int
i2c_wait_for_scl(void *v, i2c_bitbang_ops_t ops)
{
int bail = 0;
while (((READ & SCL) == 0) && (bail < SCL_BAIL_COUNT)) {
delay(1);
bail++;
}
if (bail == SCL_BAIL_COUNT) {
i2c_bitbang_send_stop(v, 0, ops);
return EIO;
}
return 0;
}
int
i2c_bitbang_send_start(void *v, int flags, i2c_bitbang_ops_t ops)
{
DIR(OUTPUT);
SETBITS(SDA | SCL);
delay(5);
SETBITS( 0 | SCL);
if (i2c_wait_for_scl(v, ops) != 0)
return EIO;
delay(4);
SETBITS( 0 | 0);
return 0;
}
int
i2c_bitbang_send_stop(void *v, int flags, i2c_bitbang_ops_t ops)
{
DIR(OUTPUT);
SETBITS( 0 | SCL);
delay(4);
SETBITS(SDA | SCL);
return 0;
}
int
i2c_bitbang_initiate_xfer(void *v, i2c_addr_t addr, int flags,
i2c_bitbang_ops_t ops)
{
if (addr < 0x80) {
uint8_t i2caddr;
if ((addr & 0x78) == 0x78)
return EINVAL;
i2caddr = (addr << 1) | ((flags & I2C_F_READ) ? 1 : 0);
(void) i2c_bitbang_send_start(v, flags, ops);
return (i2c_bitbang_write_byte(v, i2caddr,
flags & ~I2C_F_STOP, ops));
} else if (addr < 0x400) {
uint16_t i2caddr;
int rv;
i2caddr = (addr << 1) | ((flags & I2C_F_READ) ? 1 : 0) |
0xf000;
(void) i2c_bitbang_send_start(v, flags, ops);
rv = i2c_bitbang_write_byte(v, i2caddr >> 8,
flags & ~I2C_F_STOP, ops);
if (rv != 0)
return rv;
return (i2c_bitbang_write_byte(v, i2caddr & 0xff,
flags & ~I2C_F_STOP, ops));
} else
return EINVAL;
}
int
i2c_bitbang_read_byte(void *v, uint8_t *valp, int flags, i2c_bitbang_ops_t ops)
{
int i;
uint8_t val = 0;
uint32_t bit;
DIR(INPUT);
for (i = 0; i < 8; i++) {
val <<= 1;
SETBITS(SDA | 0);
delay(5);
SETBITS(SDA | SCL);
if (i2c_wait_for_scl(v, ops) != 0)
return EIO;
if (READ & SDA)
val |= 1;
delay(4);
}
SETBITS(SDA | 0);
bit = (flags & I2C_F_LAST) ? SDA : 0;
DIR(OUTPUT);
SETBITS(bit | 0);
delay(5);
SETBITS(bit | SCL);
if (i2c_wait_for_scl(v, ops) != 0)
return EIO;
delay(4);
SETBITS(bit | 0);
SETBITS( 0 | 0);
if ((flags & (I2C_F_STOP | I2C_F_LAST)) == (I2C_F_STOP | I2C_F_LAST))
(void) i2c_bitbang_send_stop(v, flags, ops);
*valp = val;
return 0;
}
int
i2c_bitbang_write_byte(void *v, uint8_t val, int flags, i2c_bitbang_ops_t ops)
{
uint32_t bit;
uint8_t mask;
int error;
DIR(OUTPUT);
for (mask = 0x80; mask != 0; mask >>= 1) {
bit = (val & mask) ? SDA : 0;
SETBITS(bit | 0);
delay(5);
SETBITS(bit | SCL);
if (i2c_wait_for_scl(v, ops))
return EIO;
delay(4);
SETBITS(bit | 0);
}
DIR(INPUT);
delay(5);
SETBITS(SDA | SCL);
if (i2c_wait_for_scl(v, ops) != 0)
return EIO;
error = (READ & SDA) ? EIO : 0;
delay(4);
SETBITS(SDA | 0);
DIR(OUTPUT);
SETBITS( 0 | 0);
if (flags & I2C_F_STOP)
(void) i2c_bitbang_send_stop(v, flags, ops);
return error;
}
MODULE(MODULE_CLASS_MISC, i2c_bitbang, NULL);
static int
i2c_bitbang_modcmd(modcmd_t cmd, void *opaque)
{
switch (cmd) {
case MODULE_CMD_INIT:
return 0;
case MODULE_CMD_FINI:
return 0;
default:
return ENOTTY;
}
}