ds1307.c revision 1.26 1 1.26 thorpej /* $NetBSD: ds1307.c,v 1.26 2018/06/16 21:28:07 thorpej Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*
4 1.1 thorpej * Copyright (c) 2003 Wasabi Systems, Inc.
5 1.1 thorpej * All rights reserved.
6 1.1 thorpej *
7 1.1 thorpej * Written by Steve C. Woodford and Jason R. Thorpe for Wasabi Systems, Inc.
8 1.1 thorpej *
9 1.1 thorpej * Redistribution and use in source and binary forms, with or without
10 1.1 thorpej * modification, are permitted provided that the following conditions
11 1.1 thorpej * are met:
12 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
13 1.1 thorpej * notice, this list of conditions and the following disclaimer.
14 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
16 1.1 thorpej * documentation and/or other materials provided with the distribution.
17 1.1 thorpej * 3. All advertising materials mentioning features or use of this software
18 1.1 thorpej * must display the following acknowledgement:
19 1.1 thorpej * This product includes software developed for the NetBSD Project by
20 1.1 thorpej * Wasabi Systems, Inc.
21 1.1 thorpej * 4. The name of Wasabi Systems, Inc. may not be used to endorse
22 1.1 thorpej * or promote products derived from this software without specific prior
23 1.1 thorpej * written permission.
24 1.1 thorpej *
25 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
26 1.1 thorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27 1.1 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 1.1 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC
29 1.1 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 1.1 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 1.1 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 1.1 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 1.1 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 1.1 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 1.1 thorpej * POSSIBILITY OF SUCH DAMAGE.
36 1.1 thorpej */
37 1.1 thorpej
38 1.9 lukem #include <sys/cdefs.h>
39 1.26 thorpej __KERNEL_RCSID(0, "$NetBSD: ds1307.c,v 1.26 2018/06/16 21:28:07 thorpej Exp $");
40 1.9 lukem
41 1.1 thorpej #include <sys/param.h>
42 1.1 thorpej #include <sys/systm.h>
43 1.1 thorpej #include <sys/device.h>
44 1.1 thorpej #include <sys/kernel.h>
45 1.1 thorpej #include <sys/fcntl.h>
46 1.1 thorpej #include <sys/uio.h>
47 1.1 thorpej #include <sys/conf.h>
48 1.1 thorpej #include <sys/event.h>
49 1.1 thorpej
50 1.1 thorpej #include <dev/clock_subr.h>
51 1.1 thorpej
52 1.1 thorpej #include <dev/i2c/i2cvar.h>
53 1.1 thorpej #include <dev/i2c/ds1307reg.h>
54 1.19 macallan #include <dev/sysmon/sysmonvar.h>
55 1.1 thorpej
56 1.25 riastrad #include "ioconf.h"
57 1.25 riastrad
58 1.15 matt struct dsrtc_model {
59 1.26 thorpej const char **dm_compats;
60 1.26 thorpej const i2c_addr_t *dm_valid_addrs;
61 1.15 matt uint16_t dm_model;
62 1.15 matt uint8_t dm_ch_reg;
63 1.15 matt uint8_t dm_ch_value;
64 1.24 aymeric uint8_t dm_vbaten_reg;
65 1.24 aymeric uint8_t dm_vbaten_value;
66 1.15 matt uint8_t dm_rtc_start;
67 1.15 matt uint8_t dm_rtc_size;
68 1.15 matt uint8_t dm_nvram_start;
69 1.15 matt uint8_t dm_nvram_size;
70 1.15 matt uint8_t dm_flags;
71 1.24 aymeric #define DSRTC_FLAG_CLOCK_HOLD 0x01
72 1.24 aymeric #define DSRTC_FLAG_BCD 0x02
73 1.24 aymeric #define DSRTC_FLAG_TEMP 0x04
74 1.24 aymeric #define DSRTC_FLAG_VBATEN 0x08
75 1.24 aymeric #define DSRTC_FLAG_YEAR_START_2K 0x10
76 1.24 aymeric #define DSRTC_FLAG_CLOCK_HOLD_REVERSED 0x20
77 1.15 matt };
78 1.15 matt
79 1.26 thorpej static const char *ds1307_compats[] = { "dallas,ds1307", "maxim,ds1307", NULL };
80 1.26 thorpej static const char *ds1339_compats[] = { "dallas,ds1339", "maxim,ds1339", NULL };
81 1.26 thorpej static const char *ds1340_compats[] = { "dallas,ds1340", "maxim,ds1340", NULL };
82 1.26 thorpej static const char *ds1672_compats[] = { "dallas,ds1672", "maxim,ds1672", NULL };
83 1.26 thorpej static const char *ds3231_compats[] = { "dallas,ds3231", "maxim,ds3231", NULL };
84 1.26 thorpej static const char *ds3232_compats[] = { "dallas,ds3232", "maxim,ds3232", NULL };
85 1.26 thorpej
86 1.26 thorpej /* XXX vendor prefix */
87 1.26 thorpej static const char *mcp7940_compats[] = { "microchip,mcp7940", NULL };
88 1.26 thorpej
89 1.26 thorpej static const i2c_addr_t ds1307_valid_addrs[] = { DS1307_ADDR, 0 };
90 1.26 thorpej static const i2c_addr_t mcp7940_valid_addrs[] = { MCP7940_ADDR, 0 };
91 1.26 thorpej
92 1.15 matt static const struct dsrtc_model dsrtc_models[] = {
93 1.15 matt {
94 1.26 thorpej .dm_compats = ds1307_compats,
95 1.26 thorpej .dm_valid_addrs = ds1307_valid_addrs,
96 1.15 matt .dm_model = 1307,
97 1.15 matt .dm_ch_reg = DSXXXX_SECONDS,
98 1.15 matt .dm_ch_value = DS1307_SECONDS_CH,
99 1.15 matt .dm_rtc_start = DS1307_RTC_START,
100 1.15 matt .dm_rtc_size = DS1307_RTC_SIZE,
101 1.15 matt .dm_nvram_start = DS1307_NVRAM_START,
102 1.15 matt .dm_nvram_size = DS1307_NVRAM_SIZE,
103 1.15 matt .dm_flags = DSRTC_FLAG_BCD | DSRTC_FLAG_CLOCK_HOLD,
104 1.15 matt }, {
105 1.26 thorpej .dm_compats = ds1339_compats,
106 1.26 thorpej .dm_valid_addrs = ds1307_valid_addrs,
107 1.15 matt .dm_model = 1339,
108 1.15 matt .dm_rtc_start = DS1339_RTC_START,
109 1.15 matt .dm_rtc_size = DS1339_RTC_SIZE,
110 1.15 matt .dm_flags = DSRTC_FLAG_BCD,
111 1.15 matt }, {
112 1.26 thorpej .dm_compats = ds1340_compats,
113 1.26 thorpej .dm_valid_addrs = ds1307_valid_addrs,
114 1.23 kiyohara .dm_model = 1340,
115 1.23 kiyohara .dm_ch_reg = DSXXXX_SECONDS,
116 1.23 kiyohara .dm_ch_value = DS1340_SECONDS_EOSC,
117 1.23 kiyohara .dm_rtc_start = DS1340_RTC_START,
118 1.23 kiyohara .dm_rtc_size = DS1340_RTC_SIZE,
119 1.23 kiyohara .dm_flags = DSRTC_FLAG_BCD,
120 1.23 kiyohara }, {
121 1.26 thorpej .dm_compats = ds1672_compats,
122 1.26 thorpej .dm_valid_addrs = ds1307_valid_addrs,
123 1.15 matt .dm_model = 1672,
124 1.15 matt .dm_rtc_start = DS1672_RTC_START,
125 1.15 matt .dm_rtc_size = DS1672_RTC_SIZE,
126 1.22 bouyer .dm_ch_reg = DS1672_CONTROL,
127 1.22 bouyer .dm_ch_value = DS1672_CONTROL_CH,
128 1.15 matt .dm_flags = 0,
129 1.15 matt }, {
130 1.26 thorpej .dm_compats = ds3231_compats,
131 1.26 thorpej .dm_valid_addrs = ds1307_valid_addrs,
132 1.19 macallan .dm_model = 3231,
133 1.19 macallan .dm_rtc_start = DS3232_RTC_START,
134 1.19 macallan .dm_rtc_size = DS3232_RTC_SIZE,
135 1.19 macallan /*
136 1.19 macallan * XXX
137 1.19 macallan * the DS3232 likely has the temperature sensor too but I can't
138 1.19 macallan * easily verify or test that right now
139 1.19 macallan */
140 1.19 macallan .dm_flags = DSRTC_FLAG_BCD | DSRTC_FLAG_TEMP,
141 1.19 macallan }, {
142 1.26 thorpej .dm_compats = ds3232_compats,
143 1.26 thorpej .dm_valid_addrs = ds1307_valid_addrs,
144 1.15 matt .dm_model = 3232,
145 1.15 matt .dm_rtc_start = DS3232_RTC_START,
146 1.15 matt .dm_rtc_size = DS3232_RTC_SIZE,
147 1.15 matt .dm_nvram_start = DS3232_NVRAM_START,
148 1.15 matt .dm_nvram_size = DS3232_NVRAM_SIZE,
149 1.15 matt .dm_flags = DSRTC_FLAG_BCD,
150 1.24 aymeric }, {
151 1.24 aymeric /* MCP7940 */
152 1.26 thorpej .dm_compats = mcp7940_compats,
153 1.26 thorpej .dm_valid_addrs = mcp7940_valid_addrs,
154 1.24 aymeric .dm_model = 7940,
155 1.24 aymeric .dm_rtc_start = DS1307_RTC_START,
156 1.24 aymeric .dm_rtc_size = DS1307_RTC_SIZE,
157 1.24 aymeric .dm_ch_reg = DSXXXX_SECONDS,
158 1.24 aymeric .dm_ch_value = DS1307_SECONDS_CH,
159 1.24 aymeric .dm_vbaten_reg = DSXXXX_DAY,
160 1.24 aymeric .dm_vbaten_value = MCP7940_TOD_DAY_VBATEN,
161 1.24 aymeric .dm_nvram_start = MCP7940_NVRAM_START,
162 1.24 aymeric .dm_nvram_size = MCP7940_NVRAM_SIZE,
163 1.24 aymeric .dm_flags = DSRTC_FLAG_BCD | DSRTC_FLAG_CLOCK_HOLD |
164 1.24 aymeric DSRTC_FLAG_VBATEN | DSRTC_FLAG_CLOCK_HOLD_REVERSED,
165 1.15 matt },
166 1.15 matt };
167 1.15 matt
168 1.1 thorpej struct dsrtc_softc {
169 1.11 xtraeme device_t sc_dev;
170 1.1 thorpej i2c_tag_t sc_tag;
171 1.15 matt uint8_t sc_address;
172 1.15 matt bool sc_open;
173 1.15 matt struct dsrtc_model sc_model;
174 1.1 thorpej struct todr_chip_handle sc_todr;
175 1.19 macallan struct sysmon_envsys *sc_sme;
176 1.19 macallan envsys_data_t sc_sensor;
177 1.1 thorpej };
178 1.1 thorpej
179 1.11 xtraeme static void dsrtc_attach(device_t, device_t, void *);
180 1.11 xtraeme static int dsrtc_match(device_t, cfdata_t, void *);
181 1.1 thorpej
182 1.11 xtraeme CFATTACH_DECL_NEW(dsrtc, sizeof(struct dsrtc_softc),
183 1.1 thorpej dsrtc_match, dsrtc_attach, NULL, NULL);
184 1.1 thorpej
185 1.1 thorpej dev_type_open(dsrtc_open);
186 1.1 thorpej dev_type_close(dsrtc_close);
187 1.1 thorpej dev_type_read(dsrtc_read);
188 1.1 thorpej dev_type_write(dsrtc_write);
189 1.1 thorpej
190 1.1 thorpej const struct cdevsw dsrtc_cdevsw = {
191 1.17 dholland .d_open = dsrtc_open,
192 1.17 dholland .d_close = dsrtc_close,
193 1.17 dholland .d_read = dsrtc_read,
194 1.17 dholland .d_write = dsrtc_write,
195 1.17 dholland .d_ioctl = noioctl,
196 1.17 dholland .d_stop = nostop,
197 1.17 dholland .d_tty = notty,
198 1.17 dholland .d_poll = nopoll,
199 1.17 dholland .d_mmap = nommap,
200 1.17 dholland .d_kqfilter = nokqfilter,
201 1.18 dholland .d_discard = nodiscard,
202 1.17 dholland .d_flag = D_OTHER
203 1.1 thorpej };
204 1.1 thorpej
205 1.15 matt static int dsrtc_gettime_ymdhms(struct todr_chip_handle *, struct clock_ymdhms *);
206 1.15 matt static int dsrtc_settime_ymdhms(struct todr_chip_handle *, struct clock_ymdhms *);
207 1.15 matt static int dsrtc_clock_read_ymdhms(struct dsrtc_softc *, struct clock_ymdhms *);
208 1.15 matt static int dsrtc_clock_write_ymdhms(struct dsrtc_softc *, struct clock_ymdhms *);
209 1.15 matt
210 1.15 matt static int dsrtc_gettime_timeval(struct todr_chip_handle *, struct timeval *);
211 1.15 matt static int dsrtc_settime_timeval(struct todr_chip_handle *, struct timeval *);
212 1.15 matt static int dsrtc_clock_read_timeval(struct dsrtc_softc *, time_t *);
213 1.15 matt static int dsrtc_clock_write_timeval(struct dsrtc_softc *, time_t);
214 1.15 matt
215 1.19 macallan static int dsrtc_read_temp(struct dsrtc_softc *, uint32_t *);
216 1.19 macallan static void dsrtc_refresh(struct sysmon_envsys *, envsys_data_t *);
217 1.19 macallan
218 1.15 matt static const struct dsrtc_model *
219 1.26 thorpej dsrtc_model_by_number(u_int model)
220 1.15 matt {
221 1.15 matt /* no model given, assume it's a DS1307 (the first one) */
222 1.15 matt if (model == 0)
223 1.15 matt return &dsrtc_models[0];
224 1.15 matt
225 1.15 matt for (const struct dsrtc_model *dm = dsrtc_models;
226 1.15 matt dm < dsrtc_models + __arraycount(dsrtc_models); dm++) {
227 1.15 matt if (dm->dm_model == model)
228 1.15 matt return dm;
229 1.15 matt }
230 1.15 matt return NULL;
231 1.15 matt }
232 1.1 thorpej
233 1.26 thorpej static const struct dsrtc_model *
234 1.26 thorpej dsrtc_model_by_compat(const struct i2c_attach_args *ia)
235 1.26 thorpej {
236 1.26 thorpej const struct dsrtc_model *best_model = NULL, *dm;
237 1.26 thorpej int best_match = 0, match_result;
238 1.26 thorpej
239 1.26 thorpej for (dm = dsrtc_models;
240 1.26 thorpej dm < dsrtc_models + __arraycount(dsrtc_models); dm++) {
241 1.26 thorpej match_result = iic_compat_match(ia, dm->dm_compats);
242 1.26 thorpej if (match_result > best_match) {
243 1.26 thorpej best_match = match_result;
244 1.26 thorpej best_model = dm;
245 1.26 thorpej }
246 1.26 thorpej }
247 1.26 thorpej return best_model;
248 1.26 thorpej }
249 1.26 thorpej
250 1.26 thorpej static bool
251 1.26 thorpej dsrtc_direct_match(const struct i2c_attach_args *ia, const cfdata_t cf,
252 1.26 thorpej int *best_matchp)
253 1.26 thorpej {
254 1.26 thorpej const struct dsrtc_model *dm;
255 1.26 thorpej int best_match = 0, match_result;
256 1.26 thorpej
257 1.26 thorpej for (dm = dsrtc_models;
258 1.26 thorpej dm < dsrtc_models + __arraycount(dsrtc_models); dm++) {
259 1.26 thorpej if (iic_use_direct_match(ia, cf, dm->dm_compats,
260 1.26 thorpej &match_result) == false)
261 1.26 thorpej return false;
262 1.26 thorpej if (match_result > best_match)
263 1.26 thorpej best_match = match_result;
264 1.26 thorpej }
265 1.26 thorpej
266 1.26 thorpej *best_matchp = best_match;
267 1.26 thorpej return true;
268 1.26 thorpej }
269 1.26 thorpej
270 1.26 thorpej static bool
271 1.26 thorpej dsrtc_is_valid_addr_for_model(const struct dsrtc_model *dm, i2c_addr_t addr)
272 1.26 thorpej {
273 1.26 thorpej
274 1.26 thorpej for (int i = 0; dm->dm_valid_addrs[i] != 0; i++) {
275 1.26 thorpej if (addr == dm->dm_valid_addrs[i])
276 1.26 thorpej return true;
277 1.26 thorpej }
278 1.26 thorpej return false;
279 1.26 thorpej }
280 1.26 thorpej
281 1.1 thorpej static int
282 1.11 xtraeme dsrtc_match(device_t parent, cfdata_t cf, void *arg)
283 1.1 thorpej {
284 1.1 thorpej struct i2c_attach_args *ia = arg;
285 1.26 thorpej const struct dsrtc_model *dm;
286 1.26 thorpej int match_result;
287 1.26 thorpej
288 1.26 thorpej if (dsrtc_direct_match(ia, cf, &match_result))
289 1.26 thorpej return match_result;
290 1.26 thorpej
291 1.26 thorpej dm = dsrtc_model_by_number(cf->cf_flags & 0xffff);
292 1.26 thorpej if (dm == NULL)
293 1.26 thorpej return 0;
294 1.26 thorpej
295 1.26 thorpej if (dsrtc_is_valid_addr_for_model(dm, ia->ia_addr))
296 1.26 thorpej return I2C_MATCH_ADDRESS_ONLY;
297 1.1 thorpej
298 1.13 phx return 0;
299 1.1 thorpej }
300 1.1 thorpej
301 1.1 thorpej static void
302 1.11 xtraeme dsrtc_attach(device_t parent, device_t self, void *arg)
303 1.1 thorpej {
304 1.5 thorpej struct dsrtc_softc *sc = device_private(self);
305 1.1 thorpej struct i2c_attach_args *ia = arg;
306 1.26 thorpej const struct dsrtc_model *dm;
307 1.26 thorpej
308 1.26 thorpej if ((dm = dsrtc_model_by_compat(ia)) == NULL)
309 1.26 thorpej dm = dsrtc_model_by_number(device_cfdata(self)->cf_flags);
310 1.26 thorpej
311 1.26 thorpej if (dm == NULL) {
312 1.26 thorpej aprint_error(": unable to determine model!\n");
313 1.26 thorpej return;
314 1.26 thorpej }
315 1.1 thorpej
316 1.15 matt aprint_naive(": Real-time Clock%s\n",
317 1.15 matt dm->dm_nvram_size > 0 ? "/NVRAM" : "");
318 1.15 matt aprint_normal(": DS%u Real-time Clock%s\n", dm->dm_model,
319 1.15 matt dm->dm_nvram_size > 0 ? "/NVRAM" : "");
320 1.1 thorpej
321 1.1 thorpej sc->sc_tag = ia->ia_tag;
322 1.1 thorpej sc->sc_address = ia->ia_addr;
323 1.15 matt sc->sc_model = *dm;
324 1.11 xtraeme sc->sc_dev = self;
325 1.1 thorpej sc->sc_open = 0;
326 1.1 thorpej sc->sc_todr.cookie = sc;
327 1.15 matt if (dm->dm_flags & DSRTC_FLAG_BCD) {
328 1.15 matt sc->sc_todr.todr_gettime_ymdhms = dsrtc_gettime_ymdhms;
329 1.15 matt sc->sc_todr.todr_settime_ymdhms = dsrtc_settime_ymdhms;
330 1.15 matt } else {
331 1.15 matt sc->sc_todr.todr_gettime = dsrtc_gettime_timeval;
332 1.15 matt sc->sc_todr.todr_settime = dsrtc_settime_timeval;
333 1.15 matt }
334 1.1 thorpej sc->sc_todr.todr_setwen = NULL;
335 1.1 thorpej
336 1.1 thorpej todr_attach(&sc->sc_todr);
337 1.19 macallan if ((sc->sc_model.dm_flags & DSRTC_FLAG_TEMP) != 0) {
338 1.19 macallan int error;
339 1.19 macallan
340 1.19 macallan sc->sc_sme = sysmon_envsys_create();
341 1.19 macallan sc->sc_sme->sme_name = device_xname(self);
342 1.19 macallan sc->sc_sme->sme_cookie = sc;
343 1.19 macallan sc->sc_sme->sme_refresh = dsrtc_refresh;
344 1.19 macallan
345 1.19 macallan sc->sc_sensor.units = ENVSYS_STEMP;
346 1.19 macallan sc->sc_sensor.state = ENVSYS_SINVALID;
347 1.19 macallan sc->sc_sensor.flags = 0;
348 1.19 macallan (void)strlcpy(sc->sc_sensor.desc, "temperature",
349 1.19 macallan sizeof(sc->sc_sensor.desc));
350 1.19 macallan
351 1.19 macallan if (sysmon_envsys_sensor_attach(sc->sc_sme, &sc->sc_sensor)) {
352 1.19 macallan aprint_error_dev(self, "unable to attach sensor\n");
353 1.19 macallan goto bad;
354 1.19 macallan }
355 1.19 macallan
356 1.19 macallan error = sysmon_envsys_register(sc->sc_sme);
357 1.19 macallan if (error) {
358 1.19 macallan aprint_error_dev(self,
359 1.19 macallan "error %d registering with sysmon\n", error);
360 1.19 macallan goto bad;
361 1.19 macallan }
362 1.19 macallan }
363 1.19 macallan return;
364 1.19 macallan bad:
365 1.19 macallan sysmon_envsys_destroy(sc->sc_sme);
366 1.1 thorpej }
367 1.1 thorpej
368 1.1 thorpej /*ARGSUSED*/
369 1.1 thorpej int
370 1.4 abs dsrtc_open(dev_t dev, int flag, int fmt, struct lwp *l)
371 1.1 thorpej {
372 1.1 thorpej struct dsrtc_softc *sc;
373 1.1 thorpej
374 1.12 tsutsui if ((sc = device_lookup_private(&dsrtc_cd, minor(dev))) == NULL)
375 1.14 phx return ENXIO;
376 1.1 thorpej
377 1.1 thorpej /* XXX: Locking */
378 1.1 thorpej if (sc->sc_open)
379 1.14 phx return EBUSY;
380 1.1 thorpej
381 1.15 matt sc->sc_open = true;
382 1.14 phx return 0;
383 1.1 thorpej }
384 1.1 thorpej
385 1.1 thorpej /*ARGSUSED*/
386 1.1 thorpej int
387 1.4 abs dsrtc_close(dev_t dev, int flag, int fmt, struct lwp *l)
388 1.1 thorpej {
389 1.1 thorpej struct dsrtc_softc *sc;
390 1.1 thorpej
391 1.12 tsutsui if ((sc = device_lookup_private(&dsrtc_cd, minor(dev))) == NULL)
392 1.14 phx return ENXIO;
393 1.1 thorpej
394 1.15 matt sc->sc_open = false;
395 1.14 phx return 0;
396 1.1 thorpej }
397 1.1 thorpej
398 1.1 thorpej /*ARGSUSED*/
399 1.1 thorpej int
400 1.1 thorpej dsrtc_read(dev_t dev, struct uio *uio, int flags)
401 1.1 thorpej {
402 1.1 thorpej struct dsrtc_softc *sc;
403 1.15 matt int error;
404 1.1 thorpej
405 1.12 tsutsui if ((sc = device_lookup_private(&dsrtc_cd, minor(dev))) == NULL)
406 1.14 phx return ENXIO;
407 1.1 thorpej
408 1.15 matt const struct dsrtc_model * const dm = &sc->sc_model;
409 1.15 matt if (uio->uio_offset >= dm->dm_nvram_size)
410 1.14 phx return EINVAL;
411 1.1 thorpej
412 1.1 thorpej if ((error = iic_acquire_bus(sc->sc_tag, 0)) != 0)
413 1.14 phx return error;
414 1.1 thorpej
415 1.15 matt KASSERT(uio->uio_offset >= 0);
416 1.15 matt while (uio->uio_resid && uio->uio_offset < dm->dm_nvram_size) {
417 1.15 matt uint8_t ch, cmd;
418 1.15 matt const u_int a = uio->uio_offset;
419 1.15 matt cmd = a + dm->dm_nvram_start;
420 1.15 matt if ((error = iic_exec(sc->sc_tag,
421 1.15 matt uio->uio_resid > 1 ? I2C_OP_READ : I2C_OP_READ_WITH_STOP,
422 1.15 matt sc->sc_address, &cmd, 1, &ch, 1, 0)) != 0) {
423 1.1 thorpej iic_release_bus(sc->sc_tag, 0);
424 1.11 xtraeme aprint_error_dev(sc->sc_dev,
425 1.16 matt "%s: read failed at 0x%x: %d\n",
426 1.16 matt __func__, a, error);
427 1.14 phx return error;
428 1.1 thorpej }
429 1.1 thorpej if ((error = uiomove(&ch, 1, uio)) != 0) {
430 1.1 thorpej iic_release_bus(sc->sc_tag, 0);
431 1.14 phx return error;
432 1.1 thorpej }
433 1.1 thorpej }
434 1.1 thorpej
435 1.1 thorpej iic_release_bus(sc->sc_tag, 0);
436 1.1 thorpej
437 1.14 phx return 0;
438 1.1 thorpej }
439 1.1 thorpej
440 1.1 thorpej /*ARGSUSED*/
441 1.1 thorpej int
442 1.1 thorpej dsrtc_write(dev_t dev, struct uio *uio, int flags)
443 1.1 thorpej {
444 1.1 thorpej struct dsrtc_softc *sc;
445 1.15 matt int error;
446 1.1 thorpej
447 1.12 tsutsui if ((sc = device_lookup_private(&dsrtc_cd, minor(dev))) == NULL)
448 1.14 phx return ENXIO;
449 1.1 thorpej
450 1.15 matt const struct dsrtc_model * const dm = &sc->sc_model;
451 1.15 matt if (uio->uio_offset >= dm->dm_nvram_size)
452 1.14 phx return EINVAL;
453 1.1 thorpej
454 1.1 thorpej if ((error = iic_acquire_bus(sc->sc_tag, 0)) != 0)
455 1.14 phx return error;
456 1.1 thorpej
457 1.15 matt while (uio->uio_resid && uio->uio_offset < dm->dm_nvram_size) {
458 1.15 matt uint8_t cmdbuf[2];
459 1.15 matt const u_int a = (int)uio->uio_offset;
460 1.15 matt cmdbuf[0] = a + dm->dm_nvram_start;
461 1.1 thorpej if ((error = uiomove(&cmdbuf[1], 1, uio)) != 0)
462 1.1 thorpej break;
463 1.1 thorpej
464 1.1 thorpej if ((error = iic_exec(sc->sc_tag,
465 1.1 thorpej uio->uio_resid ? I2C_OP_WRITE : I2C_OP_WRITE_WITH_STOP,
466 1.1 thorpej sc->sc_address, cmdbuf, 1, &cmdbuf[1], 1, 0)) != 0) {
467 1.11 xtraeme aprint_error_dev(sc->sc_dev,
468 1.16 matt "%s: write failed at 0x%x: %d\n",
469 1.16 matt __func__, a, error);
470 1.1 thorpej break;
471 1.1 thorpej }
472 1.1 thorpej }
473 1.1 thorpej
474 1.1 thorpej iic_release_bus(sc->sc_tag, 0);
475 1.1 thorpej
476 1.14 phx return error;
477 1.1 thorpej }
478 1.1 thorpej
479 1.1 thorpej static int
480 1.15 matt dsrtc_gettime_ymdhms(struct todr_chip_handle *ch, struct clock_ymdhms *dt)
481 1.1 thorpej {
482 1.1 thorpej struct dsrtc_softc *sc = ch->cookie;
483 1.7 gdamore struct clock_ymdhms check;
484 1.1 thorpej int retries;
485 1.1 thorpej
486 1.7 gdamore memset(dt, 0, sizeof(*dt));
487 1.1 thorpej memset(&check, 0, sizeof(check));
488 1.1 thorpej
489 1.1 thorpej /*
490 1.1 thorpej * Since we don't support Burst Read, we have to read the clock twice
491 1.1 thorpej * until we get two consecutive identical results.
492 1.1 thorpej */
493 1.1 thorpej retries = 5;
494 1.1 thorpej do {
495 1.15 matt dsrtc_clock_read_ymdhms(sc, dt);
496 1.15 matt dsrtc_clock_read_ymdhms(sc, &check);
497 1.7 gdamore } while (memcmp(dt, &check, sizeof(check)) != 0 && --retries);
498 1.1 thorpej
499 1.14 phx return 0;
500 1.1 thorpej }
501 1.1 thorpej
502 1.1 thorpej static int
503 1.15 matt dsrtc_settime_ymdhms(struct todr_chip_handle *ch, struct clock_ymdhms *dt)
504 1.1 thorpej {
505 1.1 thorpej struct dsrtc_softc *sc = ch->cookie;
506 1.1 thorpej
507 1.15 matt if (dsrtc_clock_write_ymdhms(sc, dt) == 0)
508 1.14 phx return -1;
509 1.1 thorpej
510 1.14 phx return 0;
511 1.1 thorpej }
512 1.1 thorpej
513 1.1 thorpej static int
514 1.15 matt dsrtc_clock_read_ymdhms(struct dsrtc_softc *sc, struct clock_ymdhms *dt)
515 1.1 thorpej {
516 1.15 matt struct dsrtc_model * const dm = &sc->sc_model;
517 1.15 matt uint8_t bcd[DSXXXX_RTC_SIZE], cmdbuf[1];
518 1.16 matt int error;
519 1.15 matt
520 1.15 matt KASSERT(DSXXXX_RTC_SIZE >= dm->dm_rtc_size);
521 1.1 thorpej
522 1.16 matt if ((error = iic_acquire_bus(sc->sc_tag, I2C_F_POLL)) != 0) {
523 1.11 xtraeme aprint_error_dev(sc->sc_dev,
524 1.16 matt "%s: failed to acquire I2C bus: %d\n",
525 1.16 matt __func__, error);
526 1.14 phx return 0;
527 1.1 thorpej }
528 1.1 thorpej
529 1.1 thorpej /* Read each RTC register in order. */
530 1.16 matt for (u_int i = 0; !error && i < dm->dm_rtc_size; i++) {
531 1.15 matt cmdbuf[0] = dm->dm_rtc_start + i;
532 1.1 thorpej
533 1.16 matt error = iic_exec(sc->sc_tag, I2C_OP_READ_WITH_STOP,
534 1.16 matt sc->sc_address, cmdbuf, 1, &bcd[i], 1, I2C_F_POLL);
535 1.1 thorpej }
536 1.1 thorpej
537 1.1 thorpej /* Done with I2C */
538 1.1 thorpej iic_release_bus(sc->sc_tag, I2C_F_POLL);
539 1.1 thorpej
540 1.16 matt if (error != 0) {
541 1.16 matt aprint_error_dev(sc->sc_dev,
542 1.16 matt "%s: failed to read rtc at 0x%x: %d\n",
543 1.16 matt __func__, cmdbuf[0], error);
544 1.16 matt return 0;
545 1.16 matt }
546 1.16 matt
547 1.1 thorpej /*
548 1.15 matt * Convert the RTC's register values into something useable
549 1.1 thorpej */
550 1.21 christos dt->dt_sec = bcdtobin(bcd[DSXXXX_SECONDS] & DSXXXX_SECONDS_MASK);
551 1.21 christos dt->dt_min = bcdtobin(bcd[DSXXXX_MINUTES] & DSXXXX_MINUTES_MASK);
552 1.1 thorpej
553 1.15 matt if ((bcd[DSXXXX_HOURS] & DSXXXX_HOURS_12HRS_MODE) != 0) {
554 1.21 christos dt->dt_hour = bcdtobin(bcd[DSXXXX_HOURS] &
555 1.15 matt DSXXXX_HOURS_12MASK) % 12; /* 12AM -> 0, 12PM -> 12 */
556 1.15 matt if (bcd[DSXXXX_HOURS] & DSXXXX_HOURS_12HRS_PM)
557 1.1 thorpej dt->dt_hour += 12;
558 1.14 phx } else
559 1.21 christos dt->dt_hour = bcdtobin(bcd[DSXXXX_HOURS] &
560 1.15 matt DSXXXX_HOURS_24MASK);
561 1.1 thorpej
562 1.21 christos dt->dt_day = bcdtobin(bcd[DSXXXX_DATE] & DSXXXX_DATE_MASK);
563 1.21 christos dt->dt_mon = bcdtobin(bcd[DSXXXX_MONTH] & DSXXXX_MONTH_MASK);
564 1.1 thorpej
565 1.1 thorpej /* XXX: Should be an MD way to specify EPOCH used by BIOS/Firmware */
566 1.24 aymeric if (sc->sc_model.dm_flags & DSRTC_FLAG_YEAR_START_2K)
567 1.24 aymeric dt->dt_year = bcdtobin(bcd[DSXXXX_YEAR]) + 2000;
568 1.24 aymeric else {
569 1.24 aymeric dt->dt_year = bcdtobin(bcd[DSXXXX_YEAR]) + POSIX_BASE_YEAR;
570 1.24 aymeric if (bcd[DSXXXX_MONTH] & DSXXXX_MONTH_CENTURY)
571 1.24 aymeric dt->dt_year += 100;
572 1.24 aymeric }
573 1.1 thorpej
574 1.14 phx return 1;
575 1.1 thorpej }
576 1.1 thorpej
577 1.1 thorpej static int
578 1.15 matt dsrtc_clock_write_ymdhms(struct dsrtc_softc *sc, struct clock_ymdhms *dt)
579 1.1 thorpej {
580 1.15 matt struct dsrtc_model * const dm = &sc->sc_model;
581 1.15 matt uint8_t bcd[DSXXXX_RTC_SIZE], cmdbuf[2];
582 1.16 matt int error;
583 1.15 matt
584 1.15 matt KASSERT(DSXXXX_RTC_SIZE >= dm->dm_rtc_size);
585 1.1 thorpej
586 1.1 thorpej /*
587 1.15 matt * Convert our time representation into something the DSXXXX
588 1.1 thorpej * can understand.
589 1.1 thorpej */
590 1.21 christos bcd[DSXXXX_SECONDS] = bintobcd(dt->dt_sec);
591 1.21 christos bcd[DSXXXX_MINUTES] = bintobcd(dt->dt_min);
592 1.21 christos bcd[DSXXXX_HOURS] = bintobcd(dt->dt_hour); /* DSXXXX_HOURS_12HRS_MODE=0 */
593 1.21 christos bcd[DSXXXX_DATE] = bintobcd(dt->dt_day);
594 1.21 christos bcd[DSXXXX_DAY] = bintobcd(dt->dt_wday);
595 1.21 christos bcd[DSXXXX_MONTH] = bintobcd(dt->dt_mon);
596 1.21 christos bcd[DSXXXX_YEAR] = bintobcd((dt->dt_year - POSIX_BASE_YEAR) % 100);
597 1.15 matt if (dt->dt_year - POSIX_BASE_YEAR >= 100)
598 1.15 matt bcd[DSXXXX_MONTH] |= DSXXXX_MONTH_CENTURY;
599 1.1 thorpej
600 1.16 matt if ((error = iic_acquire_bus(sc->sc_tag, I2C_F_POLL)) != 0) {
601 1.11 xtraeme aprint_error_dev(sc->sc_dev,
602 1.16 matt "%s: failed to acquire I2C bus: %d\n",
603 1.16 matt __func__, error);
604 1.14 phx return 0;
605 1.1 thorpej }
606 1.1 thorpej
607 1.1 thorpej /* Stop the clock */
608 1.15 matt cmdbuf[0] = dm->dm_ch_reg;
609 1.15 matt
610 1.16 matt if ((error = iic_exec(sc->sc_tag, I2C_OP_READ, sc->sc_address,
611 1.16 matt cmdbuf, 1, &cmdbuf[1], 1, I2C_F_POLL)) != 0) {
612 1.15 matt iic_release_bus(sc->sc_tag, I2C_F_POLL);
613 1.15 matt aprint_error_dev(sc->sc_dev,
614 1.16 matt "%s: failed to read Hold Clock: %d\n",
615 1.16 matt __func__, error);
616 1.15 matt return 0;
617 1.15 matt }
618 1.15 matt
619 1.24 aymeric if (sc->sc_model.dm_flags & DSRTC_FLAG_CLOCK_HOLD_REVERSED)
620 1.24 aymeric cmdbuf[1] &= ~dm->dm_ch_value;
621 1.24 aymeric else
622 1.24 aymeric cmdbuf[1] |= dm->dm_ch_value;
623 1.1 thorpej
624 1.16 matt if ((error = iic_exec(sc->sc_tag, I2C_OP_WRITE, sc->sc_address,
625 1.16 matt cmdbuf, 1, &cmdbuf[1], 1, I2C_F_POLL)) != 0) {
626 1.1 thorpej iic_release_bus(sc->sc_tag, I2C_F_POLL);
627 1.11 xtraeme aprint_error_dev(sc->sc_dev,
628 1.16 matt "%s: failed to write Hold Clock: %d\n",
629 1.16 matt __func__, error);
630 1.14 phx return 0;
631 1.1 thorpej }
632 1.1 thorpej
633 1.1 thorpej /*
634 1.1 thorpej * Write registers in reverse order. The last write (to the Seconds
635 1.1 thorpej * register) will undo the Clock Hold, above.
636 1.1 thorpej */
637 1.15 matt uint8_t op = I2C_OP_WRITE;
638 1.15 matt for (signed int i = dm->dm_rtc_size - 1; i >= 0; i--) {
639 1.15 matt cmdbuf[0] = dm->dm_rtc_start + i;
640 1.24 aymeric if ((dm->dm_flags & DSRTC_FLAG_VBATEN) &&
641 1.24 aymeric dm->dm_rtc_start + i == dm->dm_vbaten_reg)
642 1.24 aymeric bcd[i] |= dm->dm_vbaten_value;
643 1.15 matt if (dm->dm_rtc_start + i == dm->dm_ch_reg) {
644 1.15 matt op = I2C_OP_WRITE_WITH_STOP;
645 1.24 aymeric if (dm->dm_flags & DSRTC_FLAG_CLOCK_HOLD_REVERSED)
646 1.24 aymeric bcd[i] |= dm->dm_ch_value;
647 1.15 matt }
648 1.16 matt if ((error = iic_exec(sc->sc_tag, op, sc->sc_address,
649 1.16 matt cmdbuf, 1, &bcd[i], 1, I2C_F_POLL)) != 0) {
650 1.1 thorpej iic_release_bus(sc->sc_tag, I2C_F_POLL);
651 1.11 xtraeme aprint_error_dev(sc->sc_dev,
652 1.16 matt "%s: failed to write rtc at 0x%x: %d\n",
653 1.16 matt __func__, i, error);
654 1.1 thorpej /* XXX: Clock Hold is likely still asserted! */
655 1.14 phx return 0;
656 1.1 thorpej }
657 1.1 thorpej }
658 1.15 matt /*
659 1.15 matt * If the clock hold register isn't the same register as seconds,
660 1.15 matt * we need to reeanble the clock.
661 1.15 matt */
662 1.15 matt if (op != I2C_OP_WRITE_WITH_STOP) {
663 1.15 matt cmdbuf[0] = dm->dm_ch_reg;
664 1.24 aymeric if (dm->dm_flags & DSRTC_FLAG_CLOCK_HOLD_REVERSED)
665 1.24 aymeric cmdbuf[1] |= dm->dm_ch_value;
666 1.24 aymeric else
667 1.24 aymeric cmdbuf[1] &= ~dm->dm_ch_value;
668 1.15 matt
669 1.16 matt if ((error = iic_exec(sc->sc_tag, I2C_OP_WRITE_WITH_STOP,
670 1.16 matt sc->sc_address, cmdbuf, 1, &cmdbuf[1], 1,
671 1.16 matt I2C_F_POLL)) != 0) {
672 1.15 matt iic_release_bus(sc->sc_tag, I2C_F_POLL);
673 1.15 matt aprint_error_dev(sc->sc_dev,
674 1.16 matt "%s: failed to Hold Clock: %d\n",
675 1.16 matt __func__, error);
676 1.15 matt return 0;
677 1.15 matt }
678 1.15 matt }
679 1.1 thorpej
680 1.1 thorpej iic_release_bus(sc->sc_tag, I2C_F_POLL);
681 1.1 thorpej
682 1.14 phx return 1;
683 1.1 thorpej }
684 1.15 matt
685 1.15 matt static int
686 1.15 matt dsrtc_gettime_timeval(struct todr_chip_handle *ch, struct timeval *tv)
687 1.15 matt {
688 1.15 matt struct dsrtc_softc *sc = ch->cookie;
689 1.15 matt struct timeval check;
690 1.15 matt int retries;
691 1.15 matt
692 1.15 matt memset(tv, 0, sizeof(*tv));
693 1.15 matt memset(&check, 0, sizeof(check));
694 1.15 matt
695 1.15 matt /*
696 1.15 matt * Since we don't support Burst Read, we have to read the clock twice
697 1.15 matt * until we get two consecutive identical results.
698 1.15 matt */
699 1.15 matt retries = 5;
700 1.15 matt do {
701 1.15 matt dsrtc_clock_read_timeval(sc, &tv->tv_sec);
702 1.15 matt dsrtc_clock_read_timeval(sc, &check.tv_sec);
703 1.15 matt } while (memcmp(tv, &check, sizeof(check)) != 0 && --retries);
704 1.15 matt
705 1.15 matt return 0;
706 1.15 matt }
707 1.15 matt
708 1.15 matt static int
709 1.15 matt dsrtc_settime_timeval(struct todr_chip_handle *ch, struct timeval *tv)
710 1.15 matt {
711 1.15 matt struct dsrtc_softc *sc = ch->cookie;
712 1.15 matt
713 1.15 matt if (dsrtc_clock_write_timeval(sc, tv->tv_sec) == 0)
714 1.15 matt return -1;
715 1.15 matt
716 1.15 matt return 0;
717 1.15 matt }
718 1.15 matt
719 1.15 matt /*
720 1.15 matt * The RTC probably has a nice Clock Burst Read/Write command, but we can't use
721 1.15 matt * it, since some I2C controllers don't support anything other than single-byte
722 1.15 matt * transfers.
723 1.15 matt */
724 1.15 matt static int
725 1.15 matt dsrtc_clock_read_timeval(struct dsrtc_softc *sc, time_t *tp)
726 1.15 matt {
727 1.15 matt const struct dsrtc_model * const dm = &sc->sc_model;
728 1.15 matt uint8_t buf[4];
729 1.16 matt int error;
730 1.15 matt
731 1.16 matt if ((error = iic_acquire_bus(sc->sc_tag, I2C_F_POLL)) != 0) {
732 1.16 matt aprint_error_dev(sc->sc_dev,
733 1.16 matt "%s: failed to acquire I2C bus: %d\n",
734 1.16 matt __func__, error);
735 1.16 matt return 0;
736 1.15 matt }
737 1.15 matt
738 1.15 matt /* read all registers: */
739 1.15 matt uint8_t reg = dm->dm_rtc_start;
740 1.16 matt error = iic_exec(sc->sc_tag, I2C_OP_READ_WITH_STOP, sc->sc_address,
741 1.16 matt ®, 1, buf, 4, I2C_F_POLL);
742 1.15 matt
743 1.15 matt /* Done with I2C */
744 1.15 matt iic_release_bus(sc->sc_tag, I2C_F_POLL);
745 1.15 matt
746 1.16 matt if (error != 0) {
747 1.16 matt aprint_error_dev(sc->sc_dev,
748 1.16 matt "%s: failed to read rtc at 0x%x: %d\n",
749 1.16 matt __func__, reg, error);
750 1.16 matt return 0;
751 1.16 matt }
752 1.16 matt
753 1.15 matt uint32_t v = (buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0];
754 1.15 matt *tp = v;
755 1.15 matt
756 1.15 matt aprint_debug_dev(sc->sc_dev, "%s: cntr=0x%08"PRIx32"\n",
757 1.15 matt __func__, v);
758 1.15 matt
759 1.16 matt return 1;
760 1.15 matt }
761 1.15 matt
762 1.15 matt static int
763 1.15 matt dsrtc_clock_write_timeval(struct dsrtc_softc *sc, time_t t)
764 1.15 matt {
765 1.15 matt const struct dsrtc_model * const dm = &sc->sc_model;
766 1.15 matt size_t buflen = dm->dm_rtc_size + 2;
767 1.15 matt uint8_t buf[buflen];
768 1.16 matt int error;
769 1.15 matt
770 1.15 matt KASSERT((dm->dm_flags & DSRTC_FLAG_CLOCK_HOLD) == 0);
771 1.15 matt KASSERT(dm->dm_ch_reg == dm->dm_rtc_start + 4);
772 1.15 matt
773 1.15 matt buf[0] = dm->dm_rtc_start;
774 1.15 matt buf[1] = (t >> 0) & 0xff;
775 1.15 matt buf[2] = (t >> 8) & 0xff;
776 1.15 matt buf[3] = (t >> 16) & 0xff;
777 1.15 matt buf[4] = (t >> 24) & 0xff;
778 1.15 matt buf[5] = 0;
779 1.15 matt
780 1.16 matt if ((error = iic_acquire_bus(sc->sc_tag, I2C_F_POLL)) != 0) {
781 1.16 matt aprint_error_dev(sc->sc_dev,
782 1.16 matt "%s: failed to acquire I2C bus: %d\n",
783 1.16 matt __func__, error);
784 1.16 matt return 0;
785 1.15 matt }
786 1.15 matt
787 1.16 matt error = iic_exec(sc->sc_tag, I2C_OP_WRITE_WITH_STOP, sc->sc_address,
788 1.16 matt &buf, buflen, NULL, 0, I2C_F_POLL);
789 1.16 matt
790 1.16 matt /* Done with I2C */
791 1.16 matt iic_release_bus(sc->sc_tag, I2C_F_POLL);
792 1.16 matt
793 1.15 matt /* send data */
794 1.16 matt if (error != 0) {
795 1.16 matt aprint_error_dev(sc->sc_dev,
796 1.16 matt "%s: failed to set time: %d\n",
797 1.16 matt __func__, error);
798 1.16 matt return 0;
799 1.15 matt }
800 1.15 matt
801 1.16 matt return 1;
802 1.15 matt }
803 1.19 macallan
804 1.19 macallan static int
805 1.19 macallan dsrtc_read_temp(struct dsrtc_softc *sc, uint32_t *temp)
806 1.19 macallan {
807 1.19 macallan int error, tc;
808 1.19 macallan uint8_t reg = DS3232_TEMP_MSB;
809 1.19 macallan uint8_t buf[2];
810 1.19 macallan
811 1.19 macallan if ((sc->sc_model.dm_flags & DSRTC_FLAG_TEMP) == 0)
812 1.19 macallan return ENOTSUP;
813 1.19 macallan
814 1.19 macallan if ((error = iic_acquire_bus(sc->sc_tag, I2C_F_POLL)) != 0) {
815 1.19 macallan aprint_error_dev(sc->sc_dev,
816 1.19 macallan "%s: failed to acquire I2C bus: %d\n",
817 1.19 macallan __func__, error);
818 1.19 macallan return 0;
819 1.19 macallan }
820 1.19 macallan
821 1.19 macallan /* read temperature registers: */
822 1.19 macallan error = iic_exec(sc->sc_tag, I2C_OP_READ_WITH_STOP, sc->sc_address,
823 1.19 macallan ®, 1, buf, 2, I2C_F_POLL);
824 1.19 macallan
825 1.19 macallan /* Done with I2C */
826 1.19 macallan iic_release_bus(sc->sc_tag, I2C_F_POLL);
827 1.19 macallan
828 1.19 macallan if (error != 0) {
829 1.19 macallan aprint_error_dev(sc->sc_dev,
830 1.19 macallan "%s: failed to read temperature: %d\n",
831 1.19 macallan __func__, error);
832 1.19 macallan return 0;
833 1.19 macallan }
834 1.19 macallan
835 1.19 macallan /* convert to microkelvin */
836 1.19 macallan tc = buf[0] * 1000000 + (buf[1] >> 6) * 250000;
837 1.19 macallan *temp = tc + 273150000;
838 1.19 macallan return 1;
839 1.19 macallan }
840 1.19 macallan
841 1.19 macallan static void
842 1.19 macallan dsrtc_refresh(struct sysmon_envsys *sme, envsys_data_t *edata)
843 1.19 macallan {
844 1.19 macallan struct dsrtc_softc *sc = sme->sme_cookie;
845 1.20 martin uint32_t temp = 0; /* XXX gcc */
846 1.19 macallan
847 1.19 macallan if (dsrtc_read_temp(sc, &temp) == 0) {
848 1.19 macallan edata->state = ENVSYS_SINVALID;
849 1.19 macallan return;
850 1.19 macallan }
851 1.19 macallan
852 1.19 macallan edata->value_cur = temp;
853 1.19 macallan
854 1.19 macallan edata->state = ENVSYS_SVALID;
855 1.19 macallan }
856