]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/dev/iicbus/max6690.c
ZFS: MFV 2.0-rc1-gfd20a8
[FreeBSD/FreeBSD.git] / sys / dev / iicbus / max6690.c
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 2010 Andreas Tobler
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
20  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
22  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
23  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  */
27
28 #include <sys/cdefs.h>
29 __FBSDID("$FreeBSD$");
30
31 #include <sys/param.h>
32 #include <sys/bus.h>
33 #include <sys/systm.h>
34 #include <sys/module.h>
35 #include <sys/callout.h>
36 #include <sys/conf.h>
37 #include <sys/cpu.h>
38 #include <sys/ctype.h>
39 #include <sys/kernel.h>
40 #include <sys/reboot.h>
41 #include <sys/rman.h>
42 #include <sys/sysctl.h>
43 #include <sys/limits.h>
44
45 #include <machine/bus.h>
46 #include <machine/md_var.h>
47
48 #include <dev/iicbus/iicbus.h>
49 #include <dev/iicbus/iiconf.h>
50
51 #include <dev/ofw/openfirm.h>
52 #include <dev/ofw/ofw_bus.h>
53 #include <powerpc/powermac/powermac_thermal.h>
54
55 /* Inlet, Backside, U3 Heatsink sensor: MAX6690. */
56
57 #define MAX6690_INT_TEMP    0x0
58 #define MAX6690_EXT_TEMP    0x1
59 #define MAX6690_RSL_STATUS  0x2
60 #define MAX6690_EEXT_TEMP   0x10
61 #define MAX6690_IEXT_TEMP   0x11
62 #define MAX6690_TEMP_MASK   0xe0
63
64 struct max6690_sensor {
65         struct pmac_therm therm;
66         device_t dev;
67
68         int     id;
69 };
70
71 /* Regular bus attachment functions */
72 static int  max6690_probe(device_t);
73 static int  max6690_attach(device_t);
74
75 /* Utility functions */
76 static int  max6690_sensor_read(struct max6690_sensor *sens);
77 static int  max6690_sensor_sysctl(SYSCTL_HANDLER_ARGS);
78 static void max6690_start(void *xdev);
79 static int  max6690_read(device_t dev, uint32_t addr, uint8_t reg,
80                          uint8_t *data);
81
82 struct max6690_softc {
83         device_t                sc_dev;
84         struct intr_config_hook enum_hook;
85         uint32_t                sc_addr;
86         struct max6690_sensor   *sc_sensors;
87         int                     sc_nsensors;
88 };
89 static device_method_t  max6690_methods[] = {
90         /* Device interface */
91         DEVMETHOD(device_probe,         max6690_probe),
92         DEVMETHOD(device_attach,        max6690_attach),
93         { 0, 0 },
94 };
95
96 static driver_t max6690_driver = {
97         "max6690",
98         max6690_methods,
99         sizeof(struct max6690_softc)
100 };
101
102 static devclass_t max6690_devclass;
103
104 DRIVER_MODULE(max6690, iicbus, max6690_driver, max6690_devclass, 0, 0);
105 static MALLOC_DEFINE(M_MAX6690, "max6690", "Temp-Monitor MAX6690");
106
107 static int
108 max6690_read(device_t dev, uint32_t addr, uint8_t reg, uint8_t *data)
109 {
110         uint8_t buf[4];
111         uint8_t busy[1], rsl;
112         int err, try = 0;
113
114         /* Busy register RSL. */
115         rsl = MAX6690_RSL_STATUS;
116         /* first read the status register, 0x2. If busy, retry. */
117         struct iic_msg msg[4] = {
118             { addr, IIC_M_WR | IIC_M_NOSTOP, 1, &rsl },
119             { addr, IIC_M_RD, 1, busy },
120             { addr, IIC_M_WR | IIC_M_NOSTOP, 1, &reg },
121             { addr, IIC_M_RD, 1, buf },
122         };
123
124         for (;;)
125         {
126                 err = iicbus_transfer(dev, msg, nitems(msg));
127                 if (err != 0)
128                         goto retry;
129                 if (busy[0] & 0x80)
130                         goto retry;
131                 /* Check for invalid value and retry. */
132                 if (buf[0] == 0xff)
133                         goto retry;
134
135                 *data = *((uint8_t*)buf);
136                 return (0);
137
138         retry:
139                 if (++try > 5) {
140                         device_printf(dev, "iicbus read failed\n");
141                         return (-1);
142                 }
143                 pause("max6690_read", hz);
144         }
145 }
146
147 static int
148 max6690_probe(device_t dev)
149 {
150         const char  *name, *compatible;
151         struct max6690_softc *sc;
152
153         name = ofw_bus_get_name(dev);
154         compatible = ofw_bus_get_compat(dev);
155
156         if (!name)
157                 return (ENXIO);
158
159         if (strcmp(name, "temp-monitor") != 0 ||
160             strcmp(compatible, "max6690") != 0)
161                 return (ENXIO);
162
163         sc = device_get_softc(dev);
164         sc->sc_dev = dev;
165         sc->sc_addr = iicbus_get_addr(dev);
166
167         device_set_desc(dev, "Temp-Monitor MAX6690");
168
169         return (0);
170 }
171
172 /*
173  * This function returns the number of sensors. If we call it the second time
174  * and we have allocated memory for sc->sc_sensors, we fill in the properties.
175  */
176 static int
177 max6690_fill_sensor_prop(device_t dev)
178 {
179         phandle_t child;
180         struct max6690_softc *sc;
181         u_int id[8];
182         char location[96];
183         int i = 0, j, len = 0, prop_len, prev_len = 0;
184
185         sc = device_get_softc(dev);
186
187         child = ofw_bus_get_node(dev);
188
189         /* Fill the sensor location property. */
190         prop_len = OF_getprop(child, "hwsensor-location", location,
191                               sizeof(location));
192         while (len < prop_len) {
193                 if (sc->sc_sensors != NULL)
194                         strcpy(sc->sc_sensors[i].therm.name, location + len);
195                 prev_len = strlen(location + len) + 1;
196                 len += prev_len;
197                 i++;
198         }
199         if (sc->sc_sensors == NULL)
200                 return (i);
201
202         /* Fill the sensor id property. */
203         prop_len = OF_getprop(child, "hwsensor-id", id, sizeof(id));
204         for (j = 0; j < i; j++)
205                 sc->sc_sensors[j].id = (id[j] & 0xf);
206
207         /* Fill the sensor zone property. */
208         prop_len = OF_getprop(child, "hwsensor-zone", id, sizeof(id));
209         for (j = 0; j < i; j++)
210                 sc->sc_sensors[j].therm.zone = id[j];
211
212         /* Set up remaining sensor properties */
213         for (j = 0; j < i; j++) {
214                 sc->sc_sensors[j].dev = dev;
215
216                 sc->sc_sensors[j].therm.target_temp = 400 + ZERO_C_TO_K;
217                 sc->sc_sensors[j].therm.max_temp = 800 + ZERO_C_TO_K;
218
219                 sc->sc_sensors[j].therm.read =
220                     (int (*)(struct pmac_therm *))(max6690_sensor_read);
221         }
222
223         return (i);
224 }
225 static int
226 max6690_attach(device_t dev)
227 {
228         struct max6690_softc *sc;
229
230         sc = device_get_softc(dev);
231
232         sc->enum_hook.ich_func = max6690_start;
233         sc->enum_hook.ich_arg = dev;
234
235         /* We have to wait until interrupts are enabled. I2C read and write
236          * only works if the interrupts are available.
237          * The unin/i2c is controlled by the htpic on unin. But this is not
238          * the master. The openpic on mac-io is controlling the htpic.
239          * This one gets attached after the mac-io probing and then the
240          * interrupts will be available.
241          */
242
243         if (config_intrhook_establish(&sc->enum_hook) != 0)
244                 return (ENOMEM);
245
246         return (0);
247 }
248
249 static void
250 max6690_start(void *xdev)
251 {
252         struct max6690_softc *sc;
253         struct sysctl_oid *oid, *sensroot_oid;
254         struct sysctl_ctx_list *ctx;
255         char sysctl_desc[40], sysctl_name[32];
256         int i, j;
257
258         device_t dev = (device_t)xdev;
259
260         sc = device_get_softc(dev);
261
262         sc->sc_nsensors = 0;
263
264         /* Count the actual number of sensors. */
265         sc->sc_nsensors = max6690_fill_sensor_prop(dev);
266
267         device_printf(dev, "%d sensors detected.\n", sc->sc_nsensors);
268
269         if (sc->sc_nsensors == 0)
270                 device_printf(dev, "WARNING: No MAX6690 sensors detected!\n");
271
272         sc->sc_sensors = malloc (sc->sc_nsensors * sizeof(struct max6690_sensor),
273                                  M_MAX6690, M_WAITOK | M_ZERO);
274
275         ctx = device_get_sysctl_ctx(dev);
276         sensroot_oid = SYSCTL_ADD_NODE(ctx,
277             SYSCTL_CHILDREN(device_get_sysctl_tree(dev)), OID_AUTO, "sensor",
278             CTLFLAG_RD | CTLFLAG_MPSAFE, 0, "MAX6690 Sensor Information");
279
280         /* Now we can fill the properties into the allocated struct. */
281         sc->sc_nsensors = max6690_fill_sensor_prop(dev);
282
283         /* Register with powermac_thermal */
284         for (i = 0; i < sc->sc_nsensors; i++)
285                 pmac_thermal_sensor_register(&sc->sc_sensors[i].therm);
286
287         /* Add sysctls for the sensors. */
288         for (i = 0; i < sc->sc_nsensors; i++) {
289                 for (j = 0; j < strlen(sc->sc_sensors[i].therm.name); j++) {
290                         sysctl_name[j] =
291                             tolower(sc->sc_sensors[i].therm.name[j]);
292                         if (isspace(sysctl_name[j]))
293                                 sysctl_name[j] = '_';
294                 }
295                 sysctl_name[j] = 0;
296
297                 sprintf(sysctl_desc,"%s %s", sc->sc_sensors[i].therm.name,
298                         "(C)");
299                 oid = SYSCTL_ADD_NODE(ctx, SYSCTL_CHILDREN(sensroot_oid),
300                     OID_AUTO, sysctl_name, CTLFLAG_RD | CTLFLAG_MPSAFE, 0,
301                     "Sensor Information");
302                 /* I use i to pass the sensor id. */
303                 SYSCTL_ADD_PROC(ctx, SYSCTL_CHILDREN(oid), OID_AUTO, "temp",
304                                 CTLTYPE_INT | CTLFLAG_RD | CTLFLAG_MPSAFE,
305                                 dev, i % 2,
306                                 max6690_sensor_sysctl, "IK", sysctl_desc);
307
308         }
309         /* Dump sensor location & ID. */
310         if (bootverbose) {
311                 device_printf(dev, "Sensors\n");
312                 for (i = 0; i < sc->sc_nsensors; i++) {
313                         device_printf(dev, "Location : %s ID: %d\n",
314                                       sc->sc_sensors[i].therm.name,
315                                       sc->sc_sensors[i].id);
316                 }
317         }
318
319         config_intrhook_disestablish(&sc->enum_hook);
320 }
321
322 static int
323 max6690_sensor_read(struct max6690_sensor *sens)
324 {
325         uint8_t reg_int = 0, reg_ext = 0;
326         uint8_t integer = 0;
327         uint8_t fraction = 0;
328         int err, temp;
329
330         struct max6690_softc *sc;
331
332         sc = device_get_softc(sens->dev);
333
334         /* The internal sensor id's are even, the external are odd. */
335         if ((sens->id % 2) == 0) {
336                 reg_int = MAX6690_INT_TEMP;
337                 reg_ext = MAX6690_IEXT_TEMP;
338         } else {
339                 reg_int = MAX6690_EXT_TEMP;
340                 reg_ext = MAX6690_EEXT_TEMP;
341         }
342
343         err = max6690_read(sc->sc_dev, sc->sc_addr, reg_int, &integer);
344
345         if (err < 0)
346                 return (-1);
347
348         err = max6690_read(sc->sc_dev, sc->sc_addr, reg_ext, &fraction);
349
350         if (err < 0)
351                 return (-1);
352
353         fraction &= MAX6690_TEMP_MASK;
354
355         /* The temperature is in tenth kelvin, the fractional part resolution
356            is 0.125.
357         */
358         temp = (integer * 10) + (fraction >> 5) * 10 / 8;
359
360         return (temp + ZERO_C_TO_K);
361 }
362
363 static int
364 max6690_sensor_sysctl(SYSCTL_HANDLER_ARGS)
365 {
366         device_t dev;
367         struct max6690_softc *sc;
368         struct max6690_sensor *sens;
369         int error;
370         int temp;
371
372         dev = arg1;
373         sc = device_get_softc(dev);
374         sens = &sc->sc_sensors[arg2];
375
376         temp = max6690_sensor_read(sens);
377         if (temp < 0)
378                 return (EIO);
379
380         error = sysctl_handle_int(oidp, &temp, 0, req);
381
382         return (error);
383 }