1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/* $OpenBSD: lm78_i2c.c,v 1.4 2015/03/14 03:38:47 jsg 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 <dev/i2c/i2cvar.h>
#include <dev/ic/lm78var.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 ||
strcmp(ia->ia_name, "w83627dhg") == 0 ||
strcmp(ia->ia_name, "w83627hf") == 0 ||
strcmp(ia->ia_name, "w83781d") == 0 ||
strcmp(ia->ia_name, "w83782d") == 0 ||
strcmp(ia->ia_name, "w83783s") == 0 ||
strcmp(ia->ia_name, "w83791d") == 0 ||
strcmp(ia->ia_name, "w83792d") == 0) {
return (1);
}
/*
* XXX This chip doesn't have any real sensors, but we match
* it for now, just to knock out its satellites.
*/
if (strcmp(ia->ia_name, "w83791sd") == 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);
/* Remember we attached to iic(4). */
sc->sc_lmsc.sbusaddr = ia->ia_addr;
iic_acquire_bus(sc->sc_tag, 0);
cmd = 0x4a;
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);
/* Make the bus scan ignore the satellites. */
iic_ignore_addr(0x48 + (data & 0x7));
iic_ignore_addr(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);
}
|