Home | History | Annotate | Line # | Download | only in i2c
ds1307.c revision 1.25
      1  1.25  riastrad /*	$NetBSD: ds1307.c,v 1.25 2017/10/28 04:53:55 riastradh 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.25  riastrad __KERNEL_RCSID(0, "$NetBSD: ds1307.c,v 1.25 2017/10/28 04:53:55 riastradh 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.15      matt 	uint16_t dm_model;
     60  1.15      matt 	uint8_t dm_ch_reg;
     61  1.15      matt 	uint8_t dm_ch_value;
     62  1.24   aymeric 	uint8_t dm_vbaten_reg;
     63  1.24   aymeric 	uint8_t dm_vbaten_value;
     64  1.15      matt 	uint8_t dm_rtc_start;
     65  1.15      matt 	uint8_t dm_rtc_size;
     66  1.15      matt 	uint8_t dm_nvram_start;
     67  1.15      matt 	uint8_t dm_nvram_size;
     68  1.15      matt 	uint8_t dm_flags;
     69  1.24   aymeric #define	DSRTC_FLAG_CLOCK_HOLD		0x01
     70  1.24   aymeric #define	DSRTC_FLAG_BCD			0x02
     71  1.24   aymeric #define	DSRTC_FLAG_TEMP			0x04
     72  1.24   aymeric #define DSRTC_FLAG_VBATEN		0x08
     73  1.24   aymeric #define	DSRTC_FLAG_YEAR_START_2K	0x10
     74  1.24   aymeric #define	DSRTC_FLAG_CLOCK_HOLD_REVERSED	0x20
     75  1.15      matt };
     76  1.15      matt 
     77  1.15      matt static const struct dsrtc_model dsrtc_models[] = {
     78  1.15      matt 	{
     79  1.15      matt 		.dm_model = 1307,
     80  1.15      matt 		.dm_ch_reg = DSXXXX_SECONDS,
     81  1.15      matt 		.dm_ch_value = DS1307_SECONDS_CH,
     82  1.15      matt 		.dm_rtc_start = DS1307_RTC_START,
     83  1.15      matt 		.dm_rtc_size = DS1307_RTC_SIZE,
     84  1.15      matt 		.dm_nvram_start = DS1307_NVRAM_START,
     85  1.15      matt 		.dm_nvram_size = DS1307_NVRAM_SIZE,
     86  1.15      matt 		.dm_flags = DSRTC_FLAG_BCD | DSRTC_FLAG_CLOCK_HOLD,
     87  1.15      matt 	}, {
     88  1.15      matt 		.dm_model = 1339,
     89  1.15      matt 		.dm_rtc_start = DS1339_RTC_START,
     90  1.15      matt 		.dm_rtc_size = DS1339_RTC_SIZE,
     91  1.15      matt 		.dm_flags = DSRTC_FLAG_BCD,
     92  1.15      matt 	}, {
     93  1.23  kiyohara 		.dm_model = 1340,
     94  1.23  kiyohara 		.dm_ch_reg = DSXXXX_SECONDS,
     95  1.23  kiyohara 		.dm_ch_value = DS1340_SECONDS_EOSC,
     96  1.23  kiyohara 		.dm_rtc_start = DS1340_RTC_START,
     97  1.23  kiyohara 		.dm_rtc_size = DS1340_RTC_SIZE,
     98  1.23  kiyohara 		.dm_flags = DSRTC_FLAG_BCD,
     99  1.23  kiyohara 	}, {
    100  1.15      matt 		.dm_model = 1672,
    101  1.15      matt 		.dm_rtc_start = DS1672_RTC_START,
    102  1.15      matt 		.dm_rtc_size = DS1672_RTC_SIZE,
    103  1.22    bouyer 		.dm_ch_reg = DS1672_CONTROL,
    104  1.22    bouyer 		.dm_ch_value = DS1672_CONTROL_CH,
    105  1.15      matt 		.dm_flags = 0,
    106  1.15      matt 	}, {
    107  1.19  macallan 		.dm_model = 3231,
    108  1.19  macallan 		.dm_rtc_start = DS3232_RTC_START,
    109  1.19  macallan 		.dm_rtc_size = DS3232_RTC_SIZE,
    110  1.19  macallan 		/*
    111  1.19  macallan 		 * XXX
    112  1.19  macallan 		 * the DS3232 likely has the temperature sensor too but I can't
    113  1.19  macallan 		 * easily verify or test that right now
    114  1.19  macallan 		 */
    115  1.19  macallan 		.dm_flags = DSRTC_FLAG_BCD | DSRTC_FLAG_TEMP,
    116  1.19  macallan 	}, {
    117  1.15      matt 		.dm_model = 3232,
    118  1.15      matt 		.dm_rtc_start = DS3232_RTC_START,
    119  1.15      matt 		.dm_rtc_size = DS3232_RTC_SIZE,
    120  1.15      matt 		.dm_nvram_start = DS3232_NVRAM_START,
    121  1.15      matt 		.dm_nvram_size = DS3232_NVRAM_SIZE,
    122  1.15      matt 		.dm_flags = DSRTC_FLAG_BCD,
    123  1.24   aymeric 	}, {
    124  1.24   aymeric 		/* MCP7940 */
    125  1.24   aymeric 		.dm_model = 7940,
    126  1.24   aymeric 		.dm_rtc_start = DS1307_RTC_START,
    127  1.24   aymeric 		.dm_rtc_size = DS1307_RTC_SIZE,
    128  1.24   aymeric 		.dm_ch_reg = DSXXXX_SECONDS,
    129  1.24   aymeric 		.dm_ch_value = DS1307_SECONDS_CH,
    130  1.24   aymeric 		.dm_vbaten_reg = DSXXXX_DAY,
    131  1.24   aymeric 		.dm_vbaten_value = MCP7940_TOD_DAY_VBATEN,
    132  1.24   aymeric 		.dm_nvram_start = MCP7940_NVRAM_START,
    133  1.24   aymeric 		.dm_nvram_size = MCP7940_NVRAM_SIZE,
    134  1.24   aymeric 		.dm_flags = DSRTC_FLAG_BCD | DSRTC_FLAG_CLOCK_HOLD |
    135  1.24   aymeric 			DSRTC_FLAG_VBATEN | DSRTC_FLAG_CLOCK_HOLD_REVERSED,
    136  1.15      matt 	},
    137  1.15      matt };
    138  1.15      matt 
    139   1.1   thorpej struct dsrtc_softc {
    140  1.11   xtraeme 	device_t sc_dev;
    141   1.1   thorpej 	i2c_tag_t sc_tag;
    142  1.15      matt 	uint8_t sc_address;
    143  1.15      matt 	bool sc_open;
    144  1.15      matt 	struct dsrtc_model sc_model;
    145   1.1   thorpej 	struct todr_chip_handle sc_todr;
    146  1.19  macallan 	struct sysmon_envsys *sc_sme;
    147  1.19  macallan 	envsys_data_t sc_sensor;
    148   1.1   thorpej };
    149   1.1   thorpej 
    150  1.11   xtraeme static void	dsrtc_attach(device_t, device_t, void *);
    151  1.11   xtraeme static int	dsrtc_match(device_t, cfdata_t, void *);
    152   1.1   thorpej 
    153  1.11   xtraeme CFATTACH_DECL_NEW(dsrtc, sizeof(struct dsrtc_softc),
    154   1.1   thorpej     dsrtc_match, dsrtc_attach, NULL, NULL);
    155   1.1   thorpej 
    156   1.1   thorpej dev_type_open(dsrtc_open);
    157   1.1   thorpej dev_type_close(dsrtc_close);
    158   1.1   thorpej dev_type_read(dsrtc_read);
    159   1.1   thorpej dev_type_write(dsrtc_write);
    160   1.1   thorpej 
    161   1.1   thorpej const struct cdevsw dsrtc_cdevsw = {
    162  1.17  dholland 	.d_open = dsrtc_open,
    163  1.17  dholland 	.d_close = dsrtc_close,
    164  1.17  dholland 	.d_read = dsrtc_read,
    165  1.17  dholland 	.d_write = dsrtc_write,
    166  1.17  dholland 	.d_ioctl = noioctl,
    167  1.17  dholland 	.d_stop = nostop,
    168  1.17  dholland 	.d_tty = notty,
    169  1.17  dholland 	.d_poll = nopoll,
    170  1.17  dholland 	.d_mmap = nommap,
    171  1.17  dholland 	.d_kqfilter = nokqfilter,
    172  1.18  dholland 	.d_discard = nodiscard,
    173  1.17  dholland 	.d_flag = D_OTHER
    174   1.1   thorpej };
    175   1.1   thorpej 
    176  1.15      matt static int dsrtc_gettime_ymdhms(struct todr_chip_handle *, struct clock_ymdhms *);
    177  1.15      matt static int dsrtc_settime_ymdhms(struct todr_chip_handle *, struct clock_ymdhms *);
    178  1.15      matt static int dsrtc_clock_read_ymdhms(struct dsrtc_softc *, struct clock_ymdhms *);
    179  1.15      matt static int dsrtc_clock_write_ymdhms(struct dsrtc_softc *, struct clock_ymdhms *);
    180  1.15      matt 
    181  1.15      matt static int dsrtc_gettime_timeval(struct todr_chip_handle *, struct timeval *);
    182  1.15      matt static int dsrtc_settime_timeval(struct todr_chip_handle *, struct timeval *);
    183  1.15      matt static int dsrtc_clock_read_timeval(struct dsrtc_softc *, time_t *);
    184  1.15      matt static int dsrtc_clock_write_timeval(struct dsrtc_softc *, time_t);
    185  1.15      matt 
    186  1.19  macallan static int dsrtc_read_temp(struct dsrtc_softc *, uint32_t *);
    187  1.19  macallan static void dsrtc_refresh(struct sysmon_envsys *, envsys_data_t *);
    188  1.19  macallan 
    189  1.15      matt static const struct dsrtc_model *
    190  1.15      matt dsrtc_model(u_int model)
    191  1.15      matt {
    192  1.15      matt 	/* no model given, assume it's a DS1307 (the first one) */
    193  1.15      matt 	if (model == 0)
    194  1.15      matt 		return &dsrtc_models[0];
    195  1.15      matt 
    196  1.15      matt 	for (const struct dsrtc_model *dm = dsrtc_models;
    197  1.15      matt 	     dm < dsrtc_models + __arraycount(dsrtc_models); dm++) {
    198  1.15      matt 		if (dm->dm_model == model)
    199  1.15      matt 			return dm;
    200  1.15      matt 	}
    201  1.15      matt 	return NULL;
    202  1.15      matt }
    203   1.1   thorpej 
    204   1.1   thorpej static int
    205  1.11   xtraeme dsrtc_match(device_t parent, cfdata_t cf, void *arg)
    206   1.1   thorpej {
    207   1.1   thorpej 	struct i2c_attach_args *ia = arg;
    208   1.1   thorpej 
    209  1.13       phx 	if (ia->ia_name) {
    210  1.13       phx 		/* direct config - check name */
    211  1.13       phx 		if (strcmp(ia->ia_name, "dsrtc") == 0)
    212  1.13       phx 			return 1;
    213  1.13       phx 	} else {
    214  1.13       phx 		/* indirect config - check typical address */
    215  1.24   aymeric 		if (ia->ia_addr == DS1307_ADDR || ia->ia_addr == MCP7940_ADDR)
    216  1.15      matt 			return dsrtc_model(cf->cf_flags & 0xffff) != NULL;
    217  1.13       phx 	}
    218  1.13       phx 	return 0;
    219   1.1   thorpej }
    220   1.1   thorpej 
    221   1.1   thorpej static void
    222  1.11   xtraeme dsrtc_attach(device_t parent, device_t self, void *arg)
    223   1.1   thorpej {
    224   1.5   thorpej 	struct dsrtc_softc *sc = device_private(self);
    225   1.1   thorpej 	struct i2c_attach_args *ia = arg;
    226  1.15      matt 	const struct dsrtc_model * const dm =
    227  1.15      matt 	    dsrtc_model(device_cfdata(self)->cf_flags);
    228   1.1   thorpej 
    229  1.15      matt 	aprint_naive(": Real-time Clock%s\n",
    230  1.15      matt 	    dm->dm_nvram_size > 0 ? "/NVRAM" : "");
    231  1.15      matt 	aprint_normal(": DS%u Real-time Clock%s\n", dm->dm_model,
    232  1.15      matt 	    dm->dm_nvram_size > 0 ? "/NVRAM" : "");
    233   1.1   thorpej 
    234   1.1   thorpej 	sc->sc_tag = ia->ia_tag;
    235   1.1   thorpej 	sc->sc_address = ia->ia_addr;
    236  1.15      matt 	sc->sc_model = *dm;
    237  1.11   xtraeme 	sc->sc_dev = self;
    238   1.1   thorpej 	sc->sc_open = 0;
    239   1.1   thorpej 	sc->sc_todr.cookie = sc;
    240  1.15      matt 	if (dm->dm_flags & DSRTC_FLAG_BCD) {
    241  1.15      matt 		sc->sc_todr.todr_gettime_ymdhms = dsrtc_gettime_ymdhms;
    242  1.15      matt 		sc->sc_todr.todr_settime_ymdhms = dsrtc_settime_ymdhms;
    243  1.15      matt 	} else {
    244  1.15      matt 		sc->sc_todr.todr_gettime = dsrtc_gettime_timeval;
    245  1.15      matt 		sc->sc_todr.todr_settime = dsrtc_settime_timeval;
    246  1.15      matt 	}
    247   1.1   thorpej 	sc->sc_todr.todr_setwen = NULL;
    248   1.1   thorpej 
    249   1.1   thorpej 	todr_attach(&sc->sc_todr);
    250  1.19  macallan 	if ((sc->sc_model.dm_flags & DSRTC_FLAG_TEMP) != 0) {
    251  1.19  macallan 		int error;
    252  1.19  macallan 
    253  1.19  macallan 		sc->sc_sme = sysmon_envsys_create();
    254  1.19  macallan 		sc->sc_sme->sme_name = device_xname(self);
    255  1.19  macallan 		sc->sc_sme->sme_cookie = sc;
    256  1.19  macallan 		sc->sc_sme->sme_refresh = dsrtc_refresh;
    257  1.19  macallan 
    258  1.19  macallan 		sc->sc_sensor.units =  ENVSYS_STEMP;
    259  1.19  macallan 		sc->sc_sensor.state = ENVSYS_SINVALID;
    260  1.19  macallan 		sc->sc_sensor.flags = 0;
    261  1.19  macallan 		(void)strlcpy(sc->sc_sensor.desc, "temperature",
    262  1.19  macallan 		    sizeof(sc->sc_sensor.desc));
    263  1.19  macallan 
    264  1.19  macallan 		if (sysmon_envsys_sensor_attach(sc->sc_sme, &sc->sc_sensor)) {
    265  1.19  macallan 			aprint_error_dev(self, "unable to attach sensor\n");
    266  1.19  macallan 			goto bad;
    267  1.19  macallan 		}
    268  1.19  macallan 
    269  1.19  macallan 		error = sysmon_envsys_register(sc->sc_sme);
    270  1.19  macallan 		if (error) {
    271  1.19  macallan 			aprint_error_dev(self,
    272  1.19  macallan 			    "error %d registering with sysmon\n", error);
    273  1.19  macallan 			goto bad;
    274  1.19  macallan 		}
    275  1.19  macallan 	}
    276  1.19  macallan 	return;
    277  1.19  macallan bad:
    278  1.19  macallan 	sysmon_envsys_destroy(sc->sc_sme);
    279   1.1   thorpej }
    280   1.1   thorpej 
    281   1.1   thorpej /*ARGSUSED*/
    282   1.1   thorpej int
    283   1.4       abs dsrtc_open(dev_t dev, int flag, int fmt, struct lwp *l)
    284   1.1   thorpej {
    285   1.1   thorpej 	struct dsrtc_softc *sc;
    286   1.1   thorpej 
    287  1.12   tsutsui 	if ((sc = device_lookup_private(&dsrtc_cd, minor(dev))) == NULL)
    288  1.14       phx 		return ENXIO;
    289   1.1   thorpej 
    290   1.1   thorpej 	/* XXX: Locking */
    291   1.1   thorpej 	if (sc->sc_open)
    292  1.14       phx 		return EBUSY;
    293   1.1   thorpej 
    294  1.15      matt 	sc->sc_open = true;
    295  1.14       phx 	return 0;
    296   1.1   thorpej }
    297   1.1   thorpej 
    298   1.1   thorpej /*ARGSUSED*/
    299   1.1   thorpej int
    300   1.4       abs dsrtc_close(dev_t dev, int flag, int fmt, struct lwp *l)
    301   1.1   thorpej {
    302   1.1   thorpej 	struct dsrtc_softc *sc;
    303   1.1   thorpej 
    304  1.12   tsutsui 	if ((sc = device_lookup_private(&dsrtc_cd, minor(dev))) == NULL)
    305  1.14       phx 		return ENXIO;
    306   1.1   thorpej 
    307  1.15      matt 	sc->sc_open = false;
    308  1.14       phx 	return 0;
    309   1.1   thorpej }
    310   1.1   thorpej 
    311   1.1   thorpej /*ARGSUSED*/
    312   1.1   thorpej int
    313   1.1   thorpej dsrtc_read(dev_t dev, struct uio *uio, int flags)
    314   1.1   thorpej {
    315   1.1   thorpej 	struct dsrtc_softc *sc;
    316  1.15      matt 	int error;
    317   1.1   thorpej 
    318  1.12   tsutsui 	if ((sc = device_lookup_private(&dsrtc_cd, minor(dev))) == NULL)
    319  1.14       phx 		return ENXIO;
    320   1.1   thorpej 
    321  1.15      matt 	const struct dsrtc_model * const dm = &sc->sc_model;
    322  1.15      matt 	if (uio->uio_offset >= dm->dm_nvram_size)
    323  1.14       phx 		return EINVAL;
    324   1.1   thorpej 
    325   1.1   thorpej 	if ((error = iic_acquire_bus(sc->sc_tag, 0)) != 0)
    326  1.14       phx 		return error;
    327   1.1   thorpej 
    328  1.15      matt 	KASSERT(uio->uio_offset >= 0);
    329  1.15      matt 	while (uio->uio_resid && uio->uio_offset < dm->dm_nvram_size) {
    330  1.15      matt 		uint8_t ch, cmd;
    331  1.15      matt 		const u_int a = uio->uio_offset;
    332  1.15      matt 		cmd = a + dm->dm_nvram_start;
    333  1.15      matt 		if ((error = iic_exec(sc->sc_tag,
    334  1.15      matt 		    uio->uio_resid > 1 ? I2C_OP_READ : I2C_OP_READ_WITH_STOP,
    335  1.15      matt 		    sc->sc_address, &cmd, 1, &ch, 1, 0)) != 0) {
    336   1.1   thorpej 			iic_release_bus(sc->sc_tag, 0);
    337  1.11   xtraeme 			aprint_error_dev(sc->sc_dev,
    338  1.16      matt 			    "%s: read failed at 0x%x: %d\n",
    339  1.16      matt 			    __func__, a, error);
    340  1.14       phx 			return error;
    341   1.1   thorpej 		}
    342   1.1   thorpej 		if ((error = uiomove(&ch, 1, uio)) != 0) {
    343   1.1   thorpej 			iic_release_bus(sc->sc_tag, 0);
    344  1.14       phx 			return error;
    345   1.1   thorpej 		}
    346   1.1   thorpej 	}
    347   1.1   thorpej 
    348   1.1   thorpej 	iic_release_bus(sc->sc_tag, 0);
    349   1.1   thorpej 
    350  1.14       phx 	return 0;
    351   1.1   thorpej }
    352   1.1   thorpej 
    353   1.1   thorpej /*ARGSUSED*/
    354   1.1   thorpej int
    355   1.1   thorpej dsrtc_write(dev_t dev, struct uio *uio, int flags)
    356   1.1   thorpej {
    357   1.1   thorpej 	struct dsrtc_softc *sc;
    358  1.15      matt 	int error;
    359   1.1   thorpej 
    360  1.12   tsutsui 	if ((sc = device_lookup_private(&dsrtc_cd, minor(dev))) == NULL)
    361  1.14       phx 		return ENXIO;
    362   1.1   thorpej 
    363  1.15      matt 	const struct dsrtc_model * const dm = &sc->sc_model;
    364  1.15      matt 	if (uio->uio_offset >= dm->dm_nvram_size)
    365  1.14       phx 		return EINVAL;
    366   1.1   thorpej 
    367   1.1   thorpej 	if ((error = iic_acquire_bus(sc->sc_tag, 0)) != 0)
    368  1.14       phx 		return error;
    369   1.1   thorpej 
    370  1.15      matt 	while (uio->uio_resid && uio->uio_offset < dm->dm_nvram_size) {
    371  1.15      matt 		uint8_t cmdbuf[2];
    372  1.15      matt 		const u_int a = (int)uio->uio_offset;
    373  1.15      matt 		cmdbuf[0] = a + dm->dm_nvram_start;
    374   1.1   thorpej 		if ((error = uiomove(&cmdbuf[1], 1, uio)) != 0)
    375   1.1   thorpej 			break;
    376   1.1   thorpej 
    377   1.1   thorpej 		if ((error = iic_exec(sc->sc_tag,
    378   1.1   thorpej 		    uio->uio_resid ? I2C_OP_WRITE : I2C_OP_WRITE_WITH_STOP,
    379   1.1   thorpej 		    sc->sc_address, cmdbuf, 1, &cmdbuf[1], 1, 0)) != 0) {
    380  1.11   xtraeme 			aprint_error_dev(sc->sc_dev,
    381  1.16      matt 			    "%s: write failed at 0x%x: %d\n",
    382  1.16      matt 			    __func__, a, error);
    383   1.1   thorpej 			break;
    384   1.1   thorpej 		}
    385   1.1   thorpej 	}
    386   1.1   thorpej 
    387   1.1   thorpej 	iic_release_bus(sc->sc_tag, 0);
    388   1.1   thorpej 
    389  1.14       phx 	return error;
    390   1.1   thorpej }
    391   1.1   thorpej 
    392   1.1   thorpej static int
    393  1.15      matt dsrtc_gettime_ymdhms(struct todr_chip_handle *ch, struct clock_ymdhms *dt)
    394   1.1   thorpej {
    395   1.1   thorpej 	struct dsrtc_softc *sc = ch->cookie;
    396   1.7   gdamore 	struct clock_ymdhms check;
    397   1.1   thorpej 	int retries;
    398   1.1   thorpej 
    399   1.7   gdamore 	memset(dt, 0, sizeof(*dt));
    400   1.1   thorpej 	memset(&check, 0, sizeof(check));
    401   1.1   thorpej 
    402   1.1   thorpej 	/*
    403   1.1   thorpej 	 * Since we don't support Burst Read, we have to read the clock twice
    404   1.1   thorpej 	 * until we get two consecutive identical results.
    405   1.1   thorpej 	 */
    406   1.1   thorpej 	retries = 5;
    407   1.1   thorpej 	do {
    408  1.15      matt 		dsrtc_clock_read_ymdhms(sc, dt);
    409  1.15      matt 		dsrtc_clock_read_ymdhms(sc, &check);
    410   1.7   gdamore 	} while (memcmp(dt, &check, sizeof(check)) != 0 && --retries);
    411   1.1   thorpej 
    412  1.14       phx 	return 0;
    413   1.1   thorpej }
    414   1.1   thorpej 
    415   1.1   thorpej static int
    416  1.15      matt dsrtc_settime_ymdhms(struct todr_chip_handle *ch, struct clock_ymdhms *dt)
    417   1.1   thorpej {
    418   1.1   thorpej 	struct dsrtc_softc *sc = ch->cookie;
    419   1.1   thorpej 
    420  1.15      matt 	if (dsrtc_clock_write_ymdhms(sc, dt) == 0)
    421  1.14       phx 		return -1;
    422   1.1   thorpej 
    423  1.14       phx 	return 0;
    424   1.1   thorpej }
    425   1.1   thorpej 
    426   1.1   thorpej static int
    427  1.15      matt dsrtc_clock_read_ymdhms(struct dsrtc_softc *sc, struct clock_ymdhms *dt)
    428   1.1   thorpej {
    429  1.15      matt 	struct dsrtc_model * const dm = &sc->sc_model;
    430  1.15      matt 	uint8_t bcd[DSXXXX_RTC_SIZE], cmdbuf[1];
    431  1.16      matt 	int error;
    432  1.15      matt 
    433  1.15      matt 	KASSERT(DSXXXX_RTC_SIZE >= dm->dm_rtc_size);
    434   1.1   thorpej 
    435  1.16      matt 	if ((error = iic_acquire_bus(sc->sc_tag, I2C_F_POLL)) != 0) {
    436  1.11   xtraeme 		aprint_error_dev(sc->sc_dev,
    437  1.16      matt 		    "%s: failed to acquire I2C bus: %d\n",
    438  1.16      matt 		    __func__, error);
    439  1.14       phx 		return 0;
    440   1.1   thorpej 	}
    441   1.1   thorpej 
    442   1.1   thorpej 	/* Read each RTC register in order. */
    443  1.16      matt 	for (u_int i = 0; !error && i < dm->dm_rtc_size; i++) {
    444  1.15      matt 		cmdbuf[0] = dm->dm_rtc_start + i;
    445   1.1   thorpej 
    446  1.16      matt 		error = iic_exec(sc->sc_tag, I2C_OP_READ_WITH_STOP,
    447  1.16      matt 		    sc->sc_address, cmdbuf, 1, &bcd[i], 1, I2C_F_POLL);
    448   1.1   thorpej 	}
    449   1.1   thorpej 
    450   1.1   thorpej 	/* Done with I2C */
    451   1.1   thorpej 	iic_release_bus(sc->sc_tag, I2C_F_POLL);
    452   1.1   thorpej 
    453  1.16      matt 	if (error != 0) {
    454  1.16      matt 		aprint_error_dev(sc->sc_dev,
    455  1.16      matt 		    "%s: failed to read rtc at 0x%x: %d\n",
    456  1.16      matt 		    __func__, cmdbuf[0], error);
    457  1.16      matt 		return 0;
    458  1.16      matt 	}
    459  1.16      matt 
    460   1.1   thorpej 	/*
    461  1.15      matt 	 * Convert the RTC's register values into something useable
    462   1.1   thorpej 	 */
    463  1.21  christos 	dt->dt_sec = bcdtobin(bcd[DSXXXX_SECONDS] & DSXXXX_SECONDS_MASK);
    464  1.21  christos 	dt->dt_min = bcdtobin(bcd[DSXXXX_MINUTES] & DSXXXX_MINUTES_MASK);
    465   1.1   thorpej 
    466  1.15      matt 	if ((bcd[DSXXXX_HOURS] & DSXXXX_HOURS_12HRS_MODE) != 0) {
    467  1.21  christos 		dt->dt_hour = bcdtobin(bcd[DSXXXX_HOURS] &
    468  1.15      matt 		    DSXXXX_HOURS_12MASK) % 12; /* 12AM -> 0, 12PM -> 12 */
    469  1.15      matt 		if (bcd[DSXXXX_HOURS] & DSXXXX_HOURS_12HRS_PM)
    470   1.1   thorpej 			dt->dt_hour += 12;
    471  1.14       phx 	} else
    472  1.21  christos 		dt->dt_hour = bcdtobin(bcd[DSXXXX_HOURS] &
    473  1.15      matt 		    DSXXXX_HOURS_24MASK);
    474   1.1   thorpej 
    475  1.21  christos 	dt->dt_day = bcdtobin(bcd[DSXXXX_DATE] & DSXXXX_DATE_MASK);
    476  1.21  christos 	dt->dt_mon = bcdtobin(bcd[DSXXXX_MONTH] & DSXXXX_MONTH_MASK);
    477   1.1   thorpej 
    478   1.1   thorpej 	/* XXX: Should be an MD way to specify EPOCH used by BIOS/Firmware */
    479  1.24   aymeric 	if (sc->sc_model.dm_flags & DSRTC_FLAG_YEAR_START_2K)
    480  1.24   aymeric 		dt->dt_year = bcdtobin(bcd[DSXXXX_YEAR]) + 2000;
    481  1.24   aymeric 	else {
    482  1.24   aymeric 		dt->dt_year = bcdtobin(bcd[DSXXXX_YEAR]) + POSIX_BASE_YEAR;
    483  1.24   aymeric 		if (bcd[DSXXXX_MONTH] & DSXXXX_MONTH_CENTURY)
    484  1.24   aymeric 			dt->dt_year += 100;
    485  1.24   aymeric 	}
    486   1.1   thorpej 
    487  1.14       phx 	return 1;
    488   1.1   thorpej }
    489   1.1   thorpej 
    490   1.1   thorpej static int
    491  1.15      matt dsrtc_clock_write_ymdhms(struct dsrtc_softc *sc, struct clock_ymdhms *dt)
    492   1.1   thorpej {
    493  1.15      matt 	struct dsrtc_model * const dm = &sc->sc_model;
    494  1.15      matt 	uint8_t bcd[DSXXXX_RTC_SIZE], cmdbuf[2];
    495  1.16      matt 	int error;
    496  1.15      matt 
    497  1.15      matt 	KASSERT(DSXXXX_RTC_SIZE >= dm->dm_rtc_size);
    498   1.1   thorpej 
    499   1.1   thorpej 	/*
    500  1.15      matt 	 * Convert our time representation into something the DSXXXX
    501   1.1   thorpej 	 * can understand.
    502   1.1   thorpej 	 */
    503  1.21  christos 	bcd[DSXXXX_SECONDS] = bintobcd(dt->dt_sec);
    504  1.21  christos 	bcd[DSXXXX_MINUTES] = bintobcd(dt->dt_min);
    505  1.21  christos 	bcd[DSXXXX_HOURS] = bintobcd(dt->dt_hour); /* DSXXXX_HOURS_12HRS_MODE=0 */
    506  1.21  christos 	bcd[DSXXXX_DATE] = bintobcd(dt->dt_day);
    507  1.21  christos 	bcd[DSXXXX_DAY] = bintobcd(dt->dt_wday);
    508  1.21  christos 	bcd[DSXXXX_MONTH] = bintobcd(dt->dt_mon);
    509  1.21  christos 	bcd[DSXXXX_YEAR] = bintobcd((dt->dt_year - POSIX_BASE_YEAR) % 100);
    510  1.15      matt 	if (dt->dt_year - POSIX_BASE_YEAR >= 100)
    511  1.15      matt 		bcd[DSXXXX_MONTH] |= DSXXXX_MONTH_CENTURY;
    512   1.1   thorpej 
    513  1.16      matt 	if ((error = iic_acquire_bus(sc->sc_tag, I2C_F_POLL)) != 0) {
    514  1.11   xtraeme 		aprint_error_dev(sc->sc_dev,
    515  1.16      matt 		    "%s: failed to acquire I2C bus: %d\n",
    516  1.16      matt 		    __func__, error);
    517  1.14       phx 		return 0;
    518   1.1   thorpej 	}
    519   1.1   thorpej 
    520   1.1   thorpej 	/* Stop the clock */
    521  1.15      matt 	cmdbuf[0] = dm->dm_ch_reg;
    522  1.15      matt 
    523  1.16      matt 	if ((error = iic_exec(sc->sc_tag, I2C_OP_READ, sc->sc_address,
    524  1.16      matt 	    cmdbuf, 1, &cmdbuf[1], 1, I2C_F_POLL)) != 0) {
    525  1.15      matt 		iic_release_bus(sc->sc_tag, I2C_F_POLL);
    526  1.15      matt 		aprint_error_dev(sc->sc_dev,
    527  1.16      matt 		    "%s: failed to read Hold Clock: %d\n",
    528  1.16      matt 		    __func__, error);
    529  1.15      matt 		return 0;
    530  1.15      matt 	}
    531  1.15      matt 
    532  1.24   aymeric 	if (sc->sc_model.dm_flags & DSRTC_FLAG_CLOCK_HOLD_REVERSED)
    533  1.24   aymeric 		cmdbuf[1] &= ~dm->dm_ch_value;
    534  1.24   aymeric 	else
    535  1.24   aymeric 		cmdbuf[1] |= dm->dm_ch_value;
    536   1.1   thorpej 
    537  1.16      matt 	if ((error = iic_exec(sc->sc_tag, I2C_OP_WRITE, sc->sc_address,
    538  1.16      matt 	    cmdbuf, 1, &cmdbuf[1], 1, I2C_F_POLL)) != 0) {
    539   1.1   thorpej 		iic_release_bus(sc->sc_tag, I2C_F_POLL);
    540  1.11   xtraeme 		aprint_error_dev(sc->sc_dev,
    541  1.16      matt 		    "%s: failed to write Hold Clock: %d\n",
    542  1.16      matt 		    __func__, error);
    543  1.14       phx 		return 0;
    544   1.1   thorpej 	}
    545   1.1   thorpej 
    546   1.1   thorpej 	/*
    547   1.1   thorpej 	 * Write registers in reverse order. The last write (to the Seconds
    548   1.1   thorpej 	 * register) will undo the Clock Hold, above.
    549   1.1   thorpej 	 */
    550  1.15      matt 	uint8_t op = I2C_OP_WRITE;
    551  1.15      matt 	for (signed int i = dm->dm_rtc_size - 1; i >= 0; i--) {
    552  1.15      matt 		cmdbuf[0] = dm->dm_rtc_start + i;
    553  1.24   aymeric 		if ((dm->dm_flags & DSRTC_FLAG_VBATEN) &&
    554  1.24   aymeric 				dm->dm_rtc_start + i == dm->dm_vbaten_reg)
    555  1.24   aymeric 			bcd[i] |= dm->dm_vbaten_value;
    556  1.15      matt 		if (dm->dm_rtc_start + i == dm->dm_ch_reg) {
    557  1.15      matt 			op = I2C_OP_WRITE_WITH_STOP;
    558  1.24   aymeric 			if (dm->dm_flags & DSRTC_FLAG_CLOCK_HOLD_REVERSED)
    559  1.24   aymeric 				bcd[i] |= dm->dm_ch_value;
    560  1.15      matt 		}
    561  1.16      matt 		if ((error = iic_exec(sc->sc_tag, op, sc->sc_address,
    562  1.16      matt 		    cmdbuf, 1, &bcd[i], 1, I2C_F_POLL)) != 0) {
    563   1.1   thorpej 			iic_release_bus(sc->sc_tag, I2C_F_POLL);
    564  1.11   xtraeme 			aprint_error_dev(sc->sc_dev,
    565  1.16      matt 			    "%s: failed to write rtc at 0x%x: %d\n",
    566  1.16      matt 			    __func__, i, error);
    567   1.1   thorpej 			/* XXX: Clock Hold is likely still asserted! */
    568  1.14       phx 			return 0;
    569   1.1   thorpej 		}
    570   1.1   thorpej 	}
    571  1.15      matt 	/*
    572  1.15      matt 	 * If the clock hold register isn't the same register as seconds,
    573  1.15      matt 	 * we need to reeanble the clock.
    574  1.15      matt 	 */
    575  1.15      matt 	if (op != I2C_OP_WRITE_WITH_STOP) {
    576  1.15      matt 		cmdbuf[0] = dm->dm_ch_reg;
    577  1.24   aymeric 		if (dm->dm_flags & DSRTC_FLAG_CLOCK_HOLD_REVERSED)
    578  1.24   aymeric 			cmdbuf[1] |= dm->dm_ch_value;
    579  1.24   aymeric 		else
    580  1.24   aymeric 			cmdbuf[1] &= ~dm->dm_ch_value;
    581  1.15      matt 
    582  1.16      matt 		if ((error = iic_exec(sc->sc_tag, I2C_OP_WRITE_WITH_STOP,
    583  1.16      matt 		    sc->sc_address, cmdbuf, 1, &cmdbuf[1], 1,
    584  1.16      matt 		    I2C_F_POLL)) != 0) {
    585  1.15      matt 			iic_release_bus(sc->sc_tag, I2C_F_POLL);
    586  1.15      matt 			aprint_error_dev(sc->sc_dev,
    587  1.16      matt 			    "%s: failed to Hold Clock: %d\n",
    588  1.16      matt 			    __func__, error);
    589  1.15      matt 			return 0;
    590  1.15      matt 		}
    591  1.15      matt 	}
    592   1.1   thorpej 
    593   1.1   thorpej 	iic_release_bus(sc->sc_tag, I2C_F_POLL);
    594   1.1   thorpej 
    595  1.14       phx 	return 1;
    596   1.1   thorpej }
    597  1.15      matt 
    598  1.15      matt static int
    599  1.15      matt dsrtc_gettime_timeval(struct todr_chip_handle *ch, struct timeval *tv)
    600  1.15      matt {
    601  1.15      matt 	struct dsrtc_softc *sc = ch->cookie;
    602  1.15      matt 	struct timeval check;
    603  1.15      matt 	int retries;
    604  1.15      matt 
    605  1.15      matt 	memset(tv, 0, sizeof(*tv));
    606  1.15      matt 	memset(&check, 0, sizeof(check));
    607  1.15      matt 
    608  1.15      matt 	/*
    609  1.15      matt 	 * Since we don't support Burst Read, we have to read the clock twice
    610  1.15      matt 	 * until we get two consecutive identical results.
    611  1.15      matt 	 */
    612  1.15      matt 	retries = 5;
    613  1.15      matt 	do {
    614  1.15      matt 		dsrtc_clock_read_timeval(sc, &tv->tv_sec);
    615  1.15      matt 		dsrtc_clock_read_timeval(sc, &check.tv_sec);
    616  1.15      matt 	} while (memcmp(tv, &check, sizeof(check)) != 0 && --retries);
    617  1.15      matt 
    618  1.15      matt 	return 0;
    619  1.15      matt }
    620  1.15      matt 
    621  1.15      matt static int
    622  1.15      matt dsrtc_settime_timeval(struct todr_chip_handle *ch, struct timeval *tv)
    623  1.15      matt {
    624  1.15      matt 	struct dsrtc_softc *sc = ch->cookie;
    625  1.15      matt 
    626  1.15      matt 	if (dsrtc_clock_write_timeval(sc, tv->tv_sec) == 0)
    627  1.15      matt 		return -1;
    628  1.15      matt 
    629  1.15      matt 	return 0;
    630  1.15      matt }
    631  1.15      matt 
    632  1.15      matt /*
    633  1.15      matt  * The RTC probably has a nice Clock Burst Read/Write command, but we can't use
    634  1.15      matt  * it, since some I2C controllers don't support anything other than single-byte
    635  1.15      matt  * transfers.
    636  1.15      matt  */
    637  1.15      matt static int
    638  1.15      matt dsrtc_clock_read_timeval(struct dsrtc_softc *sc, time_t *tp)
    639  1.15      matt {
    640  1.15      matt 	const struct dsrtc_model * const dm = &sc->sc_model;
    641  1.15      matt 	uint8_t buf[4];
    642  1.16      matt 	int error;
    643  1.15      matt 
    644  1.16      matt 	if ((error = iic_acquire_bus(sc->sc_tag, I2C_F_POLL)) != 0) {
    645  1.16      matt 		aprint_error_dev(sc->sc_dev,
    646  1.16      matt 		    "%s: failed to acquire I2C bus: %d\n",
    647  1.16      matt 		    __func__, error);
    648  1.16      matt 		return 0;
    649  1.15      matt 	}
    650  1.15      matt 
    651  1.15      matt 	/* read all registers: */
    652  1.15      matt 	uint8_t reg = dm->dm_rtc_start;
    653  1.16      matt 	error = iic_exec(sc->sc_tag, I2C_OP_READ_WITH_STOP, sc->sc_address,
    654  1.16      matt 	     &reg, 1, buf, 4, I2C_F_POLL);
    655  1.15      matt 
    656  1.15      matt 	/* Done with I2C */
    657  1.15      matt 	iic_release_bus(sc->sc_tag, I2C_F_POLL);
    658  1.15      matt 
    659  1.16      matt 	if (error != 0) {
    660  1.16      matt 		aprint_error_dev(sc->sc_dev,
    661  1.16      matt 		    "%s: failed to read rtc at 0x%x: %d\n",
    662  1.16      matt 		    __func__, reg, error);
    663  1.16      matt 		return 0;
    664  1.16      matt 	}
    665  1.16      matt 
    666  1.15      matt 	uint32_t v = (buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0];
    667  1.15      matt 	*tp = v;
    668  1.15      matt 
    669  1.15      matt 	aprint_debug_dev(sc->sc_dev, "%s: cntr=0x%08"PRIx32"\n",
    670  1.15      matt 	    __func__, v);
    671  1.15      matt 
    672  1.16      matt 	return 1;
    673  1.15      matt }
    674  1.15      matt 
    675  1.15      matt static int
    676  1.15      matt dsrtc_clock_write_timeval(struct dsrtc_softc *sc, time_t t)
    677  1.15      matt {
    678  1.15      matt 	const struct dsrtc_model * const dm = &sc->sc_model;
    679  1.15      matt 	size_t buflen = dm->dm_rtc_size + 2;
    680  1.15      matt 	uint8_t buf[buflen];
    681  1.16      matt 	int error;
    682  1.15      matt 
    683  1.15      matt 	KASSERT((dm->dm_flags & DSRTC_FLAG_CLOCK_HOLD) == 0);
    684  1.15      matt 	KASSERT(dm->dm_ch_reg == dm->dm_rtc_start + 4);
    685  1.15      matt 
    686  1.15      matt 	buf[0] = dm->dm_rtc_start;
    687  1.15      matt 	buf[1] = (t >> 0) & 0xff;
    688  1.15      matt 	buf[2] = (t >> 8) & 0xff;
    689  1.15      matt 	buf[3] = (t >> 16) & 0xff;
    690  1.15      matt 	buf[4] = (t >> 24) & 0xff;
    691  1.15      matt 	buf[5] = 0;
    692  1.15      matt 
    693  1.16      matt 	if ((error = iic_acquire_bus(sc->sc_tag, I2C_F_POLL)) != 0) {
    694  1.16      matt 		aprint_error_dev(sc->sc_dev,
    695  1.16      matt 		    "%s: failed to acquire I2C bus: %d\n",
    696  1.16      matt 		    __func__, error);
    697  1.16      matt 		return 0;
    698  1.15      matt 	}
    699  1.15      matt 
    700  1.16      matt 	error = iic_exec(sc->sc_tag, I2C_OP_WRITE_WITH_STOP, sc->sc_address,
    701  1.16      matt 	    &buf, buflen, NULL, 0, I2C_F_POLL);
    702  1.16      matt 
    703  1.16      matt 	/* Done with I2C */
    704  1.16      matt 	iic_release_bus(sc->sc_tag, I2C_F_POLL);
    705  1.16      matt 
    706  1.15      matt 	/* send data */
    707  1.16      matt 	if (error != 0) {
    708  1.16      matt 		aprint_error_dev(sc->sc_dev,
    709  1.16      matt 		    "%s: failed to set time: %d\n",
    710  1.16      matt 		    __func__, error);
    711  1.16      matt 		return 0;
    712  1.15      matt 	}
    713  1.15      matt 
    714  1.16      matt 	return 1;
    715  1.15      matt }
    716  1.19  macallan 
    717  1.19  macallan static int
    718  1.19  macallan dsrtc_read_temp(struct dsrtc_softc *sc, uint32_t *temp)
    719  1.19  macallan {
    720  1.19  macallan 	int error, tc;
    721  1.19  macallan 	uint8_t reg = DS3232_TEMP_MSB;
    722  1.19  macallan 	uint8_t buf[2];
    723  1.19  macallan 
    724  1.19  macallan 	if ((sc->sc_model.dm_flags & DSRTC_FLAG_TEMP) == 0)
    725  1.19  macallan 		return ENOTSUP;
    726  1.19  macallan 
    727  1.19  macallan 	if ((error = iic_acquire_bus(sc->sc_tag, I2C_F_POLL)) != 0) {
    728  1.19  macallan 		aprint_error_dev(sc->sc_dev,
    729  1.19  macallan 		    "%s: failed to acquire I2C bus: %d\n",
    730  1.19  macallan 		    __func__, error);
    731  1.19  macallan 		return 0;
    732  1.19  macallan 	}
    733  1.19  macallan 
    734  1.19  macallan 	/* read temperature registers: */
    735  1.19  macallan 	error = iic_exec(sc->sc_tag, I2C_OP_READ_WITH_STOP, sc->sc_address,
    736  1.19  macallan 	     &reg, 1, buf, 2, I2C_F_POLL);
    737  1.19  macallan 
    738  1.19  macallan 	/* Done with I2C */
    739  1.19  macallan 	iic_release_bus(sc->sc_tag, I2C_F_POLL);
    740  1.19  macallan 
    741  1.19  macallan 	if (error != 0) {
    742  1.19  macallan 		aprint_error_dev(sc->sc_dev,
    743  1.19  macallan 		    "%s: failed to read temperature: %d\n",
    744  1.19  macallan 		    __func__, error);
    745  1.19  macallan 		return 0;
    746  1.19  macallan 	}
    747  1.19  macallan 
    748  1.19  macallan 	/* convert to microkelvin */
    749  1.19  macallan 	tc = buf[0] * 1000000 + (buf[1] >> 6) * 250000;
    750  1.19  macallan 	*temp = tc + 273150000;
    751  1.19  macallan 	return 1;
    752  1.19  macallan }
    753  1.19  macallan 
    754  1.19  macallan static void
    755  1.19  macallan dsrtc_refresh(struct sysmon_envsys *sme, envsys_data_t *edata)
    756  1.19  macallan {
    757  1.19  macallan 	struct dsrtc_softc *sc = sme->sme_cookie;
    758  1.20    martin 	uint32_t temp = 0;	/* XXX gcc */
    759  1.19  macallan 
    760  1.19  macallan 	if (dsrtc_read_temp(sc, &temp) == 0) {
    761  1.19  macallan 		edata->state = ENVSYS_SINVALID;
    762  1.19  macallan 		return;
    763  1.19  macallan 	}
    764  1.19  macallan 
    765  1.19  macallan 	edata->value_cur = temp;
    766  1.19  macallan 
    767  1.19  macallan 	edata->state = ENVSYS_SVALID;
    768  1.19  macallan }
    769