diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2005-12-27 20:47:01 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2005-12-27 20:47:01 +0000 |
commit | 236566f072f29e9824b59336264cf16afb8562d4 (patch) | |
tree | 69766d25294fd14d03c369097f24556235d3256c /sys/dev | |
parent | b15785934aa036d76cc6c074a355a414ae51482c (diff) |
lm(4) at iic(4)
ok grange@, deraadt@
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/i2c/files.i2c | 6 | ||||
-rw-r--r-- | sys/dev/i2c/lm_i2c.c | 115 |
2 files changed, 120 insertions, 1 deletions
diff --git a/sys/dev/i2c/files.i2c b/sys/dev/i2c/files.i2c index eec001195ee..e24892cb761 100644 --- a/sys/dev/i2c/files.i2c +++ b/sys/dev/i2c/files.i2c @@ -1,4 +1,4 @@ -# $OpenBSD: files.i2c,v 1.21 2005/12/25 12:30:41 deraadt Exp $ +# $OpenBSD: files.i2c,v 1.22 2005/12/27 20:47:00 kettenis Exp $ # $NetBSD: files.i2c,v 1.3 2003/10/20 16:24:10 briggs Exp $ define i2c {[addr = -1], [size = -1]} @@ -84,3 +84,7 @@ file dev/i2c/fcu.c fcu device adt: gpiobus attach adt at i2c file dev/i2c/adt7460.c adt + +# National Semiconductor LM7[89] and compatible hardware monitors +attach lm at i2c with lm_i2c +file dev/i2c/lm_i2c.c lm_i2c diff --git a/sys/dev/i2c/lm_i2c.c b/sys/dev/i2c/lm_i2c.c new file mode 100644 index 00000000000..53162e66b68 --- /dev/null +++ b/sys/dev/i2c/lm_i2c.c @@ -0,0 +1,115 @@ +/* $OpenBSD: lm_i2c.c,v 1.1 2005/12/27 20:47:00 kettenis Exp $ */ + +/* + * Copyright (c) 2005 Mark Kettenis + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#include <sys/param.h> +#include <sys/systm.h> +#include <sys/device.h> +#include <sys/sensors.h> + +#include <machine/bus.h> + +#include <dev/i2c/i2cvar.h> +#include <dev/ic/nslm7xvar.h> + +struct lm_i2c_softc { + struct lm_softc sc_lmsc; + i2c_tag_t sc_tag; + i2c_addr_t sc_addr; +}; + +int lm_i2c_match(struct device *, void *, void *); +void lm_i2c_attach(struct device *, struct device *, void *); +u_int8_t lm_i2c_readreg(struct lm_softc *, int); +void lm_i2c_writereg(struct lm_softc *, int, int); + +struct cfattach lm_i2c_ca = { + sizeof(struct lm_i2c_softc), lm_i2c_match, lm_i2c_attach +}; + +int +lm_i2c_match(struct device *parent, void *match, void *aux) +{ + struct i2c_attach_args *ia = aux; + + if (strcmp(ia->ia_name, "as99127f") == 0) { + return (1); + } + return (0); +} + +void +lm_i2c_attach(struct device *parent, struct device *self, void *aux) +{ + struct lm_i2c_softc *sc = (struct lm_i2c_softc *)self; + struct i2c_attach_args *ia = aux; + u_int8_t cmd, data; + + sc->sc_tag = ia->ia_tag; + sc->sc_addr = ia->ia_addr; + + /* Bus-independent attachment. */ + sc->sc_lmsc.lm_writereg = lm_i2c_writereg; + sc->sc_lmsc.lm_readreg = lm_i2c_readreg; + + lm_attach(&sc->sc_lmsc); + + iic_acquire_bus(sc->sc_tag, I2C_F_POLL); + + cmd = 0x4a; + iic_exec(sc->sc_tag, I2C_OP_READ_WITH_STOP, + sc->sc_addr, &cmd, sizeof cmd, &data, sizeof data, I2C_F_POLL); + + iic_release_bus(sc->sc_tag, I2C_F_POLL); + + printf("%s: satellites at addr 0x%x and addr 0x%x\n", + sc->sc_lmsc.sc_dev.dv_xname, + 0x48 + (data & 0x7), 0x48 + ((data >> 4) & 0x7)); +} + +u_int8_t +lm_i2c_readreg(struct lm_softc *lmsc, int reg) +{ + struct lm_i2c_softc *sc = (struct lm_i2c_softc *)lmsc; + u_int8_t cmd, data; + + iic_acquire_bus(sc->sc_tag, 0); + + cmd = reg; + iic_exec(sc->sc_tag, I2C_OP_READ_WITH_STOP, + sc->sc_addr, &cmd, sizeof cmd, &data, sizeof data, 0); + + iic_release_bus(sc->sc_tag, 0); + + return data; +} + +void +lm_i2c_writereg(struct lm_softc *lmsc, int reg, int val) +{ + struct lm_i2c_softc *sc = (struct lm_i2c_softc *)lmsc; + u_int8_t cmd, data; + + iic_acquire_bus(sc->sc_tag, 0); + + cmd = reg; + data = val; + iic_exec(sc->sc_tag, I2C_OP_WRITE_WITH_STOP, + sc->sc_addr, &cmd, sizeof cmd, &data, sizeof data, 0); + + iic_release_bus(sc->sc_tag, 0); +} |