Home | History | Annotate | Line # | Download | only in i2c
sdtemp.c revision 1.19
      1  1.19  jmcneill /*      $NetBSD: sdtemp.c,v 1.19 2011/07/31 15:59:45 jmcneill Exp $        */
      2   1.1  pgoyette 
      3   1.1  pgoyette /*
      4   1.1  pgoyette  * Copyright (c) 2009 The NetBSD Foundation, Inc.
      5   1.1  pgoyette  * All rights reserved.
      6   1.1  pgoyette  *
      7   1.1  pgoyette  * This code is derived from software contributed to The NetBSD Foundation
      8   1.1  pgoyette  * by Paul Goyette.
      9   1.1  pgoyette  *
     10   1.1  pgoyette  * Redistribution and use in source and binary forms, with or without
     11   1.1  pgoyette  * modification, are permitted provided that the following conditions
     12   1.1  pgoyette  * are met:
     13   1.1  pgoyette  * 1. Redistributions of source code must retain the above copyright
     14   1.1  pgoyette  *    notice, this list of conditions and the following disclaimer.
     15   1.1  pgoyette  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1  pgoyette  *    notice, this list of conditions and the following disclaimer in the
     17   1.1  pgoyette  *    documentation and/or other materials provided with the distribution.
     18   1.1  pgoyette  *
     19   1.1  pgoyette  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20   1.1  pgoyette  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21   1.1  pgoyette  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22   1.1  pgoyette  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23   1.1  pgoyette  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24   1.1  pgoyette  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25   1.1  pgoyette  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26   1.1  pgoyette  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27   1.1  pgoyette  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28   1.1  pgoyette  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29   1.1  pgoyette  * POSSIBILITY OF SUCH DAMAGE.
     30   1.1  pgoyette  */
     31   1.1  pgoyette 
     32   1.1  pgoyette #include <sys/cdefs.h>
     33  1.19  jmcneill __KERNEL_RCSID(0, "$NetBSD: sdtemp.c,v 1.19 2011/07/31 15:59:45 jmcneill Exp $");
     34   1.1  pgoyette 
     35   1.1  pgoyette #include <sys/param.h>
     36   1.1  pgoyette #include <sys/systm.h>
     37   1.1  pgoyette #include <sys/kmem.h>
     38   1.1  pgoyette #include <sys/device.h>
     39   1.1  pgoyette #include <sys/kernel.h>
     40   1.1  pgoyette #include <sys/endian.h>
     41  1.19  jmcneill #include <sys/module.h>
     42   1.1  pgoyette 
     43   1.1  pgoyette #include <dev/sysmon/sysmonvar.h>
     44   1.1  pgoyette 
     45   1.1  pgoyette #include <dev/i2c/i2cvar.h>
     46   1.1  pgoyette #include <dev/i2c/sdtemp_reg.h>
     47   1.1  pgoyette 
     48   1.1  pgoyette struct sdtemp_softc {
     49   1.1  pgoyette 	device_t sc_dev;
     50   1.1  pgoyette 	i2c_tag_t sc_tag;
     51   1.1  pgoyette 	int sc_address;
     52   1.1  pgoyette 
     53   1.1  pgoyette 	struct sysmon_envsys *sc_sme;
     54   1.1  pgoyette 	envsys_data_t *sc_sensor;
     55  1.13  pgoyette 	sysmon_envsys_lim_t sc_deflims;
     56  1.13  pgoyette 	uint32_t sc_defprops;
     57   1.1  pgoyette 	int sc_resolution;
     58   1.1  pgoyette 	uint16_t sc_capability;
     59   1.1  pgoyette };
     60   1.1  pgoyette 
     61   1.1  pgoyette static int  sdtemp_match(device_t, cfdata_t, void *);
     62   1.1  pgoyette static void sdtemp_attach(device_t, device_t, void *);
     63  1.19  jmcneill static int  sdtemp_detach(device_t, int);
     64   1.1  pgoyette 
     65   1.1  pgoyette CFATTACH_DECL_NEW(sdtemp, sizeof(struct sdtemp_softc),
     66  1.19  jmcneill 	sdtemp_match, sdtemp_attach, sdtemp_detach, NULL);
     67   1.1  pgoyette 
     68   1.1  pgoyette static void	sdtemp_refresh(struct sysmon_envsys *, envsys_data_t *);
     69   1.6  pgoyette static void	sdtemp_get_limits(struct sysmon_envsys *, envsys_data_t *,
     70  1.10  pgoyette 				  sysmon_envsys_lim_t *, uint32_t *);
     71   1.6  pgoyette static void	sdtemp_set_limits(struct sysmon_envsys *, envsys_data_t *,
     72  1.10  pgoyette 				  sysmon_envsys_lim_t *, uint32_t *);
     73   1.1  pgoyette #ifdef NOT_YET
     74   1.1  pgoyette static int	sdtemp_read_8(struct sdtemp_softc *, uint8_t, uint8_t *);
     75   1.1  pgoyette static int	sdtemp_write_8(struct sdtemp_softc *, uint8_t, uint8_t);
     76   1.1  pgoyette #endif /* NOT YET */
     77   1.1  pgoyette static int	sdtemp_read_16(struct sdtemp_softc *, uint8_t, uint16_t *);
     78   1.1  pgoyette static int	sdtemp_write_16(struct sdtemp_softc *, uint8_t, uint16_t);
     79   1.1  pgoyette static uint32_t	sdtemp_decode_temp(struct sdtemp_softc *, uint16_t);
     80  1.11    dyoung static bool	sdtemp_pmf_suspend(device_t, const pmf_qual_t *);
     81  1.11    dyoung static bool	sdtemp_pmf_resume(device_t, const pmf_qual_t *);
     82   1.1  pgoyette 
     83   1.1  pgoyette struct sdtemp_dev_entry {
     84   1.1  pgoyette 	const uint16_t sdtemp_mfg_id;
     85  1.14  pgoyette 	const uint16_t  sdtemp_devrev;
     86  1.14  pgoyette 	const uint16_t  sdtemp_mask;
     87   1.1  pgoyette 	const uint8_t  sdtemp_resolution;
     88   1.1  pgoyette 	const char    *sdtemp_desc;
     89   1.1  pgoyette };
     90   1.1  pgoyette 
     91   1.4  pgoyette /* Convert sysmon_envsys uKelvin value to simple degC */
     92   1.4  pgoyette 
     93   1.4  pgoyette #define	__UK2C(uk) (((uk) - 273150000) / 1000000)
     94   1.1  pgoyette 
     95   1.1  pgoyette /*
     96   1.1  pgoyette  * List of devices known to conform to JEDEC JC42.4
     97   1.1  pgoyette  *
     98   1.1  pgoyette  * NOTE: A non-negative value for resolution indicates that the sensor
     99   1.1  pgoyette  * resolution is fixed at that number of fractional bits;  a negative
    100   1.1  pgoyette  * value indicates that the sensor needs to be configured.  In either
    101   1.1  pgoyette  * case, trip-point registers are fixed at two-bit (0.25C) resolution.
    102   1.1  pgoyette  */
    103   1.1  pgoyette static const struct sdtemp_dev_entry
    104   1.1  pgoyette sdtemp_dev_table[] = {
    105  1.14  pgoyette     { MAXIM_MANUFACTURER_ID, MAX_6604_DEVICE_ID,    MAX_6604_MASK,   3,
    106  1.16  pgoyette 	"Maxim MAX6604" },
    107  1.14  pgoyette     { MCP_MANUFACTURER_ID,   MCP_9805_DEVICE_ID,    MCP_9805_MASK,   2,
    108  1.14  pgoyette 	"Microchip Tech MCP9805/MCP9843" },
    109  1.14  pgoyette     { MCP_MANUFACTURER_ID,   MCP_98243_DEVICE_ID,   MCP_98243_MASK, -4,
    110  1.14  pgoyette 	"Microchip Tech MCP98243" },
    111  1.14  pgoyette     { MCP_MANUFACTURER_ID,   MCP_98242_DEVICE_ID,   MCP_98242_MASK, -4,
    112   1.1  pgoyette 	"Microchip Tech MCP98242" },
    113  1.14  pgoyette     { ADT_MANUFACTURER_ID,   ADT_7408_DEVICE_ID,    ADT_7408_MASK,   4,
    114   1.1  pgoyette 	"Analog Devices ADT7408" },
    115  1.14  pgoyette     { NXP_MANUFACTURER_ID,   NXP_SE98_DEVICE_ID,    NXP_SE98_MASK,   3,
    116  1.14  pgoyette 	"NXP Semiconductors SE97B/SE98" },
    117  1.14  pgoyette     { NXP_MANUFACTURER_ID,   NXP_SE97_DEVICE_ID,    NXP_SE97_MASK,   3,
    118  1.14  pgoyette 	"NXP Semiconductors SE97" },
    119  1.14  pgoyette     { STTS_MANUFACTURER_ID,  STTS_424E_DEVICE_ID,   STTS_424E_MASK,  2,
    120  1.14  pgoyette 	"STmicroelectronics STTS424E" },
    121  1.14  pgoyette     { STTS_MANUFACTURER_ID,  STTS_424_DEVICE_ID,    STTS_424_MASK,   2,
    122  1.14  pgoyette 	"STmicroelectronics STTS424" },
    123  1.14  pgoyette     { CAT_MANUFACTURER_ID,   CAT_34TS02_DEVICE_ID,  CAT_34TS02_MASK, 4,
    124   1.1  pgoyette 	"Catalyst CAT34TS02/CAT6095" },
    125  1.15  pgoyette     { IDT_MANUFACTURER_ID,   IDT_TS3000B3_DEVICE_ID, IDT_TS3000B3_MASK, 4,
    126  1.15  pgoyette 	"Integrated Device Technology TS3000B3/TSE2002B3" },
    127   1.1  pgoyette     { 0, 0, 0, 2, "Unknown" }
    128   1.1  pgoyette };
    129   1.1  pgoyette 
    130   1.1  pgoyette static int
    131  1.14  pgoyette sdtemp_lookup(uint16_t mfg, uint16_t devrev)
    132   1.1  pgoyette {
    133   1.1  pgoyette 	int i;
    134   1.1  pgoyette 
    135  1.14  pgoyette 	for (i = 0; sdtemp_dev_table[i].sdtemp_mfg_id; i++) {
    136  1.14  pgoyette 		if (mfg != sdtemp_dev_table[i].sdtemp_mfg_id)
    137  1.14  pgoyette 			continue;
    138  1.14  pgoyette 		if ((devrev & sdtemp_dev_table[i].sdtemp_mask) ==
    139  1.14  pgoyette 		    sdtemp_dev_table[i].sdtemp_devrev)
    140   1.1  pgoyette 			break;
    141  1.14  pgoyette 	}
    142   1.1  pgoyette 
    143   1.1  pgoyette 	return i;
    144   1.1  pgoyette }
    145   1.1  pgoyette 
    146   1.1  pgoyette static int
    147   1.1  pgoyette sdtemp_match(device_t parent, cfdata_t cf, void *aux)
    148   1.1  pgoyette {
    149   1.1  pgoyette 	struct i2c_attach_args *ia = aux;
    150   1.1  pgoyette 	uint16_t mfgid, devid;
    151   1.1  pgoyette 	struct sdtemp_softc sc;
    152   1.1  pgoyette 	int i, error;
    153   1.1  pgoyette 
    154   1.1  pgoyette 	sc.sc_tag = ia->ia_tag;
    155   1.1  pgoyette 	sc.sc_address = ia->ia_addr;
    156   1.1  pgoyette 
    157   1.1  pgoyette 	if ((ia->ia_addr & SDTEMP_ADDRMASK) != SDTEMP_ADDR)
    158   1.1  pgoyette 		return 0;
    159   1.1  pgoyette 
    160   1.1  pgoyette 	/* Verify that we can read the manufacturer ID  & Device ID */
    161   1.1  pgoyette 	iic_acquire_bus(sc.sc_tag, 0);
    162   1.1  pgoyette 	error = sdtemp_read_16(&sc, SDTEMP_REG_MFG_ID,  &mfgid) |
    163   1.1  pgoyette 		sdtemp_read_16(&sc, SDTEMP_REG_DEV_REV, &devid);
    164   1.1  pgoyette 	iic_release_bus(sc.sc_tag, 0);
    165   1.1  pgoyette 
    166   1.1  pgoyette 	if (error)
    167   1.1  pgoyette 		return 0;
    168   1.1  pgoyette 
    169  1.14  pgoyette 	i = sdtemp_lookup(mfgid, devid);
    170   1.1  pgoyette 	if (sdtemp_dev_table[i].sdtemp_mfg_id == 0) {
    171   1.1  pgoyette 		aprint_debug("sdtemp: No match for mfg 0x%04x dev 0x%02x "
    172   1.1  pgoyette 		    "rev 0x%02x at address 0x%02x\n", mfgid, devid >> 8,
    173   1.1  pgoyette 		    devid & 0xff, sc.sc_address);
    174   1.1  pgoyette 		return 0;
    175   1.1  pgoyette 	}
    176   1.1  pgoyette 
    177   1.1  pgoyette 	return 1;
    178   1.1  pgoyette }
    179   1.1  pgoyette 
    180   1.1  pgoyette static void
    181   1.1  pgoyette sdtemp_attach(device_t parent, device_t self, void *aux)
    182   1.1  pgoyette {
    183   1.1  pgoyette 	struct sdtemp_softc *sc = device_private(self);
    184   1.1  pgoyette 	struct i2c_attach_args *ia = aux;
    185   1.1  pgoyette 	uint16_t mfgid, devid;
    186   1.1  pgoyette 	int i, error;
    187   1.1  pgoyette 
    188   1.1  pgoyette 	sc->sc_tag = ia->ia_tag;
    189   1.1  pgoyette 	sc->sc_address = ia->ia_addr;
    190   1.1  pgoyette 	sc->sc_dev = self;
    191   1.1  pgoyette 
    192   1.1  pgoyette 	iic_acquire_bus(sc->sc_tag, 0);
    193   1.1  pgoyette 	if ((error = sdtemp_read_16(sc, SDTEMP_REG_MFG_ID,  &mfgid)) != 0 ||
    194   1.1  pgoyette 	    (error = sdtemp_read_16(sc, SDTEMP_REG_DEV_REV, &devid)) != 0) {
    195   1.5  pgoyette 		iic_release_bus(sc->sc_tag, 0);
    196   1.1  pgoyette 		aprint_error(": attach error %d\n", error);
    197   1.1  pgoyette 		return;
    198   1.1  pgoyette 	}
    199  1.14  pgoyette 	i = sdtemp_lookup(mfgid, devid);
    200   1.1  pgoyette 	sc->sc_resolution =
    201   1.1  pgoyette 	    sdtemp_dev_table[i].sdtemp_resolution;
    202   1.1  pgoyette 
    203   1.1  pgoyette 	aprint_naive(": Temp Sensor\n");
    204   1.1  pgoyette 	aprint_normal(": %s Temp Sensor\n", sdtemp_dev_table[i].sdtemp_desc);
    205   1.1  pgoyette 
    206   1.1  pgoyette 	if (sdtemp_dev_table[i].sdtemp_mfg_id == 0)
    207   1.1  pgoyette 		aprint_debug_dev(self,
    208   1.1  pgoyette 		    "mfg 0x%04x dev 0x%02x rev 0x%02x at addr 0x%02x\n",
    209   1.1  pgoyette 		    mfgid, devid >> 8, devid & 0xff, ia->ia_addr);
    210   1.1  pgoyette 
    211   1.1  pgoyette 	/*
    212   1.1  pgoyette 	 * Alarm capability is required;  if not present, this is likely
    213   1.1  pgoyette 	 * not a real sdtemp device.
    214   1.1  pgoyette 	 */
    215   1.1  pgoyette 	error = sdtemp_read_16(sc, SDTEMP_REG_CAPABILITY, &sc->sc_capability);
    216   1.1  pgoyette 	if (error != 0 || (sc->sc_capability & SDTEMP_CAP_HAS_ALARM) == 0) {
    217   1.1  pgoyette 		iic_release_bus(sc->sc_tag, 0);
    218   1.1  pgoyette 		aprint_error_dev(self,
    219   1.1  pgoyette 		    "required alarm capability not present!\n");
    220   1.1  pgoyette 		return;
    221   1.1  pgoyette 	}
    222   1.1  pgoyette 	/* Set the configuration to defaults. */
    223   1.1  pgoyette 	error = sdtemp_write_16(sc, SDTEMP_REG_CONFIG, 0);
    224   1.1  pgoyette 	if (error != 0) {
    225   1.1  pgoyette 		iic_release_bus(sc->sc_tag, 0);
    226   1.1  pgoyette 		aprint_error_dev(self, "error %d writing config register\n",
    227   1.1  pgoyette 		    error);
    228   1.1  pgoyette 		return;
    229   1.1  pgoyette 	}
    230   1.1  pgoyette 	/* If variable resolution, set to max */
    231   1.1  pgoyette 	if (sc->sc_resolution < 0) {
    232   1.1  pgoyette 		sc->sc_resolution = ~sc->sc_resolution;
    233   1.1  pgoyette 		error = sdtemp_write_16(sc, SDTEMP_REG_RESOLUTION,
    234   1.1  pgoyette 					sc->sc_resolution & 0x3);
    235   1.1  pgoyette 		if (error != 0) {
    236   1.1  pgoyette 			iic_release_bus(sc->sc_tag, 0);
    237   1.1  pgoyette 			aprint_error_dev(self,
    238   1.1  pgoyette 			    "error %d writing resolution register\n", error);
    239   1.1  pgoyette 			return;
    240   1.1  pgoyette 		} else
    241   1.1  pgoyette 			sc->sc_resolution++;
    242   1.1  pgoyette 	}
    243   1.1  pgoyette 	iic_release_bus(sc->sc_tag, 0);
    244   1.1  pgoyette 
    245   1.1  pgoyette 	/* Hook us into the sysmon_envsys subsystem */
    246   1.1  pgoyette 	sc->sc_sme = sysmon_envsys_create();
    247   1.4  pgoyette 	sc->sc_sme->sme_name = device_xname(self);
    248   1.4  pgoyette 	sc->sc_sme->sme_cookie = sc;
    249   1.4  pgoyette 	sc->sc_sme->sme_refresh = sdtemp_refresh;
    250   1.4  pgoyette 	sc->sc_sme->sme_get_limits = sdtemp_get_limits;
    251   1.4  pgoyette 	sc->sc_sme->sme_set_limits = sdtemp_set_limits;
    252   1.4  pgoyette 
    253   1.1  pgoyette 	sc->sc_sensor = kmem_zalloc(sizeof(envsys_data_t), KM_NOSLEEP);
    254   1.1  pgoyette 	if (!sc->sc_sensor) {
    255   1.1  pgoyette 		aprint_error_dev(self, "unable to allocate sc_sensor\n");
    256   1.1  pgoyette 		goto bad2;
    257   1.1  pgoyette 	}
    258   1.1  pgoyette 
    259   1.1  pgoyette 	/* Initialize sensor data. */
    260   1.1  pgoyette 	sc->sc_sensor->units =  ENVSYS_STEMP;
    261   1.1  pgoyette 	sc->sc_sensor->state = ENVSYS_SINVALID;
    262   1.1  pgoyette 	sc->sc_sensor->flags |= ENVSYS_FMONLIMITS;
    263   1.1  pgoyette 	(void)strlcpy(sc->sc_sensor->desc, device_xname(self),
    264   1.1  pgoyette 	    sizeof(sc->sc_sensor->desc));
    265   1.1  pgoyette 
    266   1.1  pgoyette 	/* Now attach the sensor */
    267   1.1  pgoyette 	if (sysmon_envsys_sensor_attach(sc->sc_sme, sc->sc_sensor)) {
    268   1.1  pgoyette 		aprint_error_dev(self, "unable to attach sensor\n");
    269   1.1  pgoyette 		goto bad;
    270   1.1  pgoyette 	}
    271   1.1  pgoyette 
    272   1.1  pgoyette 	/* Register the device */
    273   1.1  pgoyette 	error = sysmon_envsys_register(sc->sc_sme);
    274   1.1  pgoyette 	if (error) {
    275   1.1  pgoyette 		aprint_error_dev(self, "error %d registering with sysmon\n",
    276   1.1  pgoyette 		    error);
    277   1.1  pgoyette 		goto bad;
    278   1.1  pgoyette 	}
    279   1.1  pgoyette 
    280   1.1  pgoyette 	if (!pmf_device_register(self, sdtemp_pmf_suspend, sdtemp_pmf_resume))
    281   1.1  pgoyette 		aprint_error_dev(self, "couldn't establish power handler\n");
    282   1.1  pgoyette 
    283   1.1  pgoyette 	/* Retrieve and display hardware monitor limits */
    284  1.17     njoly 	sdtemp_get_limits(sc->sc_sme, sc->sc_sensor, &sc->sc_deflims,
    285  1.17     njoly 	    &sc->sc_defprops);
    286  1.19  jmcneill 	aprint_normal("%s: ", device_xname(self));
    287   1.1  pgoyette 	i = 0;
    288  1.17     njoly 	if (sc->sc_defprops & PROP_WARNMIN) {
    289  1.17     njoly 		aprint_normal("low limit %dC",
    290  1.17     njoly 		              __UK2C(sc->sc_deflims.sel_warnmin));
    291   1.1  pgoyette 		i++;
    292   1.1  pgoyette 	}
    293  1.17     njoly 	if (sc->sc_defprops & PROP_WARNMAX) {
    294   1.4  pgoyette 		aprint_normal("%shigh limit %dC ", (i)?", ":"",
    295  1.17     njoly 			      __UK2C(sc->sc_deflims.sel_warnmax));
    296   1.1  pgoyette 		i++;
    297   1.1  pgoyette 	}
    298  1.17     njoly 	if (sc->sc_defprops & PROP_CRITMAX) {
    299   1.4  pgoyette 		aprint_normal("%scritical limit %dC ", (i)?", ":"",
    300  1.17     njoly 			      __UK2C(sc->sc_deflims.sel_critmax));
    301   1.1  pgoyette 		i++;
    302   1.1  pgoyette 	}
    303   1.1  pgoyette 	if (i == 0)
    304   1.1  pgoyette 		aprint_normal("no hardware limits set\n");
    305   1.1  pgoyette 	else
    306   1.1  pgoyette 		aprint_normal("\n");
    307   1.1  pgoyette 
    308   1.1  pgoyette 	return;
    309   1.1  pgoyette 
    310   1.1  pgoyette bad:
    311   1.1  pgoyette 	kmem_free(sc->sc_sensor, sizeof(envsys_data_t));
    312   1.1  pgoyette bad2:
    313   1.1  pgoyette 	sysmon_envsys_destroy(sc->sc_sme);
    314   1.1  pgoyette }
    315   1.1  pgoyette 
    316  1.19  jmcneill static int
    317  1.19  jmcneill sdtemp_detach(device_t self, int flags)
    318  1.19  jmcneill {
    319  1.19  jmcneill 	struct sdtemp_softc *sc = device_private(self);
    320  1.19  jmcneill 
    321  1.19  jmcneill 	pmf_device_deregister(self);
    322  1.19  jmcneill 
    323  1.19  jmcneill 	if (sc->sc_sme)
    324  1.19  jmcneill 		sysmon_envsys_unregister(sc->sc_sme);
    325  1.19  jmcneill 	if (sc->sc_sensor)
    326  1.19  jmcneill 		kmem_free(sc->sc_sensor, sizeof(envsys_data_t));
    327  1.19  jmcneill 
    328  1.19  jmcneill 	return 0;
    329  1.19  jmcneill }
    330  1.19  jmcneill 
    331   1.4  pgoyette /* Retrieve current limits from device, and encode in uKelvins */
    332   1.1  pgoyette static void
    333   1.6  pgoyette sdtemp_get_limits(struct sysmon_envsys *sme, envsys_data_t *edata,
    334  1.10  pgoyette 		  sysmon_envsys_lim_t *limits, uint32_t *props)
    335   1.1  pgoyette {
    336   1.4  pgoyette 	struct sdtemp_softc *sc = sme->sme_cookie;
    337   1.4  pgoyette 	uint16_t lim;
    338   1.1  pgoyette 
    339  1.10  pgoyette 	*props = 0;
    340   1.4  pgoyette 	iic_acquire_bus(sc->sc_tag, 0);
    341   1.4  pgoyette 	if (sdtemp_read_16(sc, SDTEMP_REG_LOWER_LIM, &lim) == 0 && lim != 0) {
    342   1.4  pgoyette 		limits->sel_warnmin = sdtemp_decode_temp(sc, lim);
    343  1.10  pgoyette 		*props |= PROP_WARNMIN;
    344   1.4  pgoyette 	}
    345   1.4  pgoyette 	if (sdtemp_read_16(sc, SDTEMP_REG_UPPER_LIM, &lim) == 0 && lim != 0) {
    346   1.4  pgoyette 		limits->sel_warnmax = sdtemp_decode_temp(sc, lim);
    347  1.10  pgoyette 		*props |= PROP_WARNMAX;
    348   1.4  pgoyette 	}
    349   1.4  pgoyette 	if (sdtemp_read_16(sc, SDTEMP_REG_CRIT_LIM, &lim) == 0 && lim != 0) {
    350   1.4  pgoyette 		limits->sel_critmax = sdtemp_decode_temp(sc, lim);
    351  1.10  pgoyette 		*props |= PROP_CRITMAX;
    352   1.1  pgoyette 	}
    353   1.4  pgoyette 	iic_release_bus(sc->sc_tag, 0);
    354  1.10  pgoyette 	if (*props != 0)
    355  1.10  pgoyette 		*props |= PROP_DRIVER_LIMITS;
    356   1.4  pgoyette }
    357   1.4  pgoyette 
    358   1.4  pgoyette /* Send current limit values to the device */
    359   1.4  pgoyette static void
    360   1.6  pgoyette sdtemp_set_limits(struct sysmon_envsys *sme, envsys_data_t *edata,
    361  1.10  pgoyette 		  sysmon_envsys_lim_t *limits, uint32_t *props)
    362   1.4  pgoyette {
    363   1.4  pgoyette 	uint16_t val;
    364   1.4  pgoyette 	struct sdtemp_softc *sc = sme->sme_cookie;
    365   1.1  pgoyette 
    366  1.13  pgoyette 	if (limits == NULL) {
    367  1.13  pgoyette 		limits = &sc->sc_deflims;
    368  1.13  pgoyette 		props  = &sc->sc_defprops;
    369  1.13  pgoyette 	}
    370   1.1  pgoyette 	iic_acquire_bus(sc->sc_tag, 0);
    371  1.10  pgoyette 	if (*props & PROP_WARNMIN) {
    372   1.4  pgoyette 		val = __UK2C(limits->sel_warnmin);
    373   1.4  pgoyette 		(void)sdtemp_write_16(sc, SDTEMP_REG_LOWER_LIM,
    374   1.4  pgoyette 					(val << 4) & SDTEMP_TEMP_MASK);
    375   1.4  pgoyette 	}
    376  1.10  pgoyette 	if (*props & PROP_WARNMAX) {
    377   1.4  pgoyette 		val = __UK2C(limits->sel_warnmax);
    378   1.4  pgoyette 		(void)sdtemp_write_16(sc, SDTEMP_REG_UPPER_LIM,
    379   1.4  pgoyette 					(val << 4) & SDTEMP_TEMP_MASK);
    380   1.4  pgoyette 	}
    381  1.10  pgoyette 	if (*props & PROP_CRITMAX) {
    382   1.4  pgoyette 		val = __UK2C(limits->sel_critmax);
    383   1.4  pgoyette 		(void)sdtemp_write_16(sc, SDTEMP_REG_CRIT_LIM,
    384   1.4  pgoyette 					(val << 4) & SDTEMP_TEMP_MASK);
    385   1.4  pgoyette 	}
    386   1.1  pgoyette 	iic_release_bus(sc->sc_tag, 0);
    387   1.1  pgoyette 
    388   1.4  pgoyette 	/*
    389   1.4  pgoyette 	 * If at least one limit is set that we can handle, and no
    390   1.4  pgoyette 	 * limits are set that we cannot handle, tell sysmon that
    391   1.4  pgoyette 	 * the driver will take care of monitoring the limits!
    392   1.4  pgoyette 	 */
    393  1.10  pgoyette 	if (*props & (PROP_CRITMIN | PROP_BATTCAP | PROP_BATTWARN))
    394  1.10  pgoyette 		*props &= ~PROP_DRIVER_LIMITS;
    395  1.10  pgoyette 	else if (*props & PROP_LIMITS)
    396  1.10  pgoyette 		*props |= PROP_DRIVER_LIMITS;
    397   1.4  pgoyette 	else
    398  1.10  pgoyette 		*props &= ~PROP_DRIVER_LIMITS;
    399   1.1  pgoyette }
    400   1.1  pgoyette 
    401   1.1  pgoyette #ifdef NOT_YET	/* All registers on these sensors are 16-bits */
    402   1.1  pgoyette 
    403   1.1  pgoyette /* Read a 8-bit value from a register */
    404   1.1  pgoyette static int
    405   1.1  pgoyette sdtemp_read_8(struct sdtemp_softc *sc, uint8_t reg, uint8_t *valp)
    406   1.1  pgoyette {
    407   1.1  pgoyette 	int error;
    408   1.1  pgoyette 
    409   1.1  pgoyette 	error = iic_exec(sc->sc_tag, I2C_OP_READ_WITH_STOP,
    410   1.1  pgoyette 	    sc->sc_address, &reg, 1, valp, sizeof(*valp), 0);
    411   1.1  pgoyette 
    412   1.1  pgoyette 	return error;
    413   1.1  pgoyette }
    414   1.1  pgoyette 
    415   1.1  pgoyette static int
    416   1.1  pgoyette sdtemp_write_8(struct sdtemp_softc *sc, uint8_t reg, uint8_t val)
    417   1.1  pgoyette {
    418   1.1  pgoyette 	return iic_exec(sc->sc_tag, I2C_OP_WRITE_WITH_STOP,
    419   1.1  pgoyette 	    sc->sc_address, &reg, 1, &val, sizeof(val), 0);
    420   1.1  pgoyette }
    421   1.1  pgoyette #endif /* NOT_YET */
    422   1.1  pgoyette 
    423   1.1  pgoyette /* Read a 16-bit value from a register */
    424   1.1  pgoyette static int
    425   1.1  pgoyette sdtemp_read_16(struct sdtemp_softc *sc, uint8_t reg, uint16_t *valp)
    426   1.1  pgoyette {
    427   1.1  pgoyette 	int error;
    428   1.1  pgoyette 
    429   1.1  pgoyette 	error = iic_exec(sc->sc_tag, I2C_OP_READ_WITH_STOP,
    430   1.1  pgoyette 	    sc->sc_address, &reg, 1, valp, sizeof(*valp), 0);
    431   1.1  pgoyette 	if (error)
    432   1.1  pgoyette 		return error;
    433   1.1  pgoyette 
    434   1.1  pgoyette 	*valp = be16toh(*valp);
    435   1.1  pgoyette 
    436   1.1  pgoyette 	return 0;
    437   1.1  pgoyette }
    438   1.1  pgoyette 
    439   1.1  pgoyette static int
    440   1.1  pgoyette sdtemp_write_16(struct sdtemp_softc *sc, uint8_t reg, uint16_t val)
    441   1.1  pgoyette {
    442   1.1  pgoyette 	uint16_t temp;
    443   1.1  pgoyette 
    444   1.1  pgoyette 	temp = htobe16(val);
    445   1.1  pgoyette 	return iic_exec(sc->sc_tag, I2C_OP_WRITE_WITH_STOP,
    446   1.1  pgoyette 	    sc->sc_address, &reg, 1, &temp, sizeof(temp), 0);
    447   1.1  pgoyette }
    448   1.1  pgoyette 
    449   1.1  pgoyette static uint32_t
    450   1.1  pgoyette sdtemp_decode_temp(struct sdtemp_softc *sc, uint16_t temp)
    451   1.1  pgoyette {
    452   1.1  pgoyette 	uint32_t val;
    453   1.1  pgoyette 	int32_t stemp;
    454   1.1  pgoyette 
    455   1.1  pgoyette 	/* Get only the temperature bits */
    456   1.1  pgoyette 	temp &= SDTEMP_TEMP_MASK;
    457   1.1  pgoyette 
    458   1.1  pgoyette 	/* If necessary, extend the sign bit */
    459   1.1  pgoyette 	if ((sc->sc_capability & SDTEMP_CAP_WIDER_RANGE) &&
    460   1.1  pgoyette 	    (temp & SDTEMP_TEMP_NEGATIVE))
    461   1.1  pgoyette 		temp |= SDTEMP_TEMP_SIGN_EXT;
    462   1.1  pgoyette 
    463   1.1  pgoyette 	/* Mask off only bits valid within current resolution */
    464   1.1  pgoyette 	temp &= ~(0xf >> sc->sc_resolution);
    465   1.1  pgoyette 
    466   1.1  pgoyette 	/* Treat as signed and extend to 32-bits */
    467   1.1  pgoyette 	stemp = (int16_t)temp;
    468   1.1  pgoyette 
    469   1.1  pgoyette 	/* Now convert from 0.0625 (1/16) deg C increments to microKelvins */
    470   1.1  pgoyette 	val = (stemp * 62500) + 273150000;
    471   1.1  pgoyette 
    472   1.1  pgoyette 	return val;
    473   1.1  pgoyette }
    474   1.1  pgoyette 
    475   1.1  pgoyette static void
    476   1.1  pgoyette sdtemp_refresh(struct sysmon_envsys *sme, envsys_data_t *edata)
    477   1.1  pgoyette {
    478   1.1  pgoyette 	struct sdtemp_softc *sc = sme->sme_cookie;
    479   1.1  pgoyette 	uint16_t val;
    480   1.1  pgoyette 	int error;
    481   1.1  pgoyette 
    482   1.1  pgoyette 	iic_acquire_bus(sc->sc_tag, 0);
    483   1.1  pgoyette 	error = sdtemp_read_16(sc, SDTEMP_REG_AMBIENT_TEMP, &val);
    484   1.1  pgoyette 	iic_release_bus(sc->sc_tag, 0);
    485   1.1  pgoyette 
    486   1.1  pgoyette 	if (error) {
    487   1.1  pgoyette 		edata->state = ENVSYS_SINVALID;
    488   1.1  pgoyette 		return;
    489   1.1  pgoyette 	}
    490   1.1  pgoyette 
    491   1.1  pgoyette 	edata->value_cur = sdtemp_decode_temp(sc, val);
    492   1.1  pgoyette 
    493   1.1  pgoyette 	/* Now check for limits */
    494   1.4  pgoyette 	if ((edata->upropset & PROP_DRIVER_LIMITS) == 0)
    495   1.4  pgoyette 		edata->state = ENVSYS_SVALID;
    496  1.18  pgoyette 	else if ((val & SDTEMP_ABOVE_CRIT) &&
    497  1.18  pgoyette 		    (edata->upropset & PROP_CRITMAX))
    498   1.1  pgoyette 		edata->state = ENVSYS_SCRITOVER;
    499  1.18  pgoyette 	else if ((val & SDTEMP_ABOVE_UPPER) &&
    500  1.18  pgoyette 		    (edata->upropset & PROP_WARNMAX))
    501   1.1  pgoyette 		edata->state = ENVSYS_SWARNOVER;
    502  1.18  pgoyette 	else if ((val & SDTEMP_BELOW_LOWER) &&
    503  1.18  pgoyette 		    (edata->upropset & PROP_WARNMIN))
    504   1.1  pgoyette 		edata->state = ENVSYS_SWARNUNDER;
    505   1.1  pgoyette 	else
    506   1.1  pgoyette 		edata->state = ENVSYS_SVALID;
    507   1.1  pgoyette }
    508   1.1  pgoyette 
    509   1.1  pgoyette /*
    510   1.1  pgoyette  * power management functions
    511   1.1  pgoyette  *
    512   1.1  pgoyette  * We go into "shutdown" mode at suspend time, and return to normal
    513   1.1  pgoyette  * mode upon resume.  This reduces power consumption by disabling
    514   1.1  pgoyette  * the A/D converter.
    515   1.1  pgoyette  */
    516   1.1  pgoyette 
    517   1.1  pgoyette static bool
    518  1.11    dyoung sdtemp_pmf_suspend(device_t dev, const pmf_qual_t *qual)
    519   1.1  pgoyette {
    520   1.1  pgoyette 	struct sdtemp_softc *sc = device_private(dev);
    521   1.1  pgoyette 	int error;
    522   1.1  pgoyette 	uint16_t config;
    523   1.1  pgoyette 
    524   1.1  pgoyette 	iic_acquire_bus(sc->sc_tag, 0);
    525   1.1  pgoyette 	error = sdtemp_read_16(sc, SDTEMP_REG_CONFIG, &config);
    526   1.1  pgoyette 	if (error == 0) {
    527   1.1  pgoyette 		config |= SDTEMP_CONFIG_SHUTDOWN_MODE;
    528   1.1  pgoyette 		error = sdtemp_write_16(sc, SDTEMP_REG_CONFIG, config);
    529   1.1  pgoyette 	}
    530   1.1  pgoyette 	iic_release_bus(sc->sc_tag, 0);
    531   1.1  pgoyette 	return (error == 0);
    532   1.1  pgoyette }
    533   1.1  pgoyette 
    534   1.1  pgoyette static bool
    535  1.11    dyoung sdtemp_pmf_resume(device_t dev, const pmf_qual_t *qual)
    536   1.1  pgoyette {
    537   1.1  pgoyette 	struct sdtemp_softc *sc = device_private(dev);
    538   1.1  pgoyette 	int error;
    539   1.1  pgoyette 	uint16_t config;
    540   1.1  pgoyette 
    541   1.1  pgoyette 	iic_acquire_bus(sc->sc_tag, 0);
    542   1.1  pgoyette 	error = sdtemp_read_16(sc, SDTEMP_REG_CONFIG, &config);
    543   1.1  pgoyette 	if (error == 0) {
    544   1.1  pgoyette 		config &= ~SDTEMP_CONFIG_SHUTDOWN_MODE;
    545   1.1  pgoyette 		error = sdtemp_write_16(sc, SDTEMP_REG_CONFIG, config);
    546   1.1  pgoyette 	}
    547   1.1  pgoyette 	iic_release_bus(sc->sc_tag, 0);
    548   1.1  pgoyette 	return (error == 0);
    549   1.1  pgoyette }
    550  1.19  jmcneill 
    551  1.19  jmcneill MODULE(MODULE_CLASS_DRIVER, sdtemp, NULL);
    552  1.19  jmcneill 
    553  1.19  jmcneill #ifdef _MODULE
    554  1.19  jmcneill #include "ioconf.c"
    555  1.19  jmcneill #endif
    556  1.19  jmcneill 
    557  1.19  jmcneill static int
    558  1.19  jmcneill sdtemp_modcmd(modcmd_t cmd, void *opaque)
    559  1.19  jmcneill {
    560  1.19  jmcneill 	int error = 0;
    561  1.19  jmcneill 
    562  1.19  jmcneill 	switch (cmd) {
    563  1.19  jmcneill 	case MODULE_CMD_INIT:
    564  1.19  jmcneill #ifdef _MODULE
    565  1.19  jmcneill 		error = config_init_component(cfdriver_ioconf_sdtemp,
    566  1.19  jmcneill 		    cfattach_ioconf_sdtemp, cfdata_ioconf_sdtemp);
    567  1.19  jmcneill #endif
    568  1.19  jmcneill 		return error;
    569  1.19  jmcneill 	case MODULE_CMD_FINI:
    570  1.19  jmcneill #ifdef _MODULE
    571  1.19  jmcneill 		error = config_fini_component(cfdriver_ioconf_sdtemp,
    572  1.19  jmcneill 		    cfattach_ioconf_sdtemp, cfdata_ioconf_sdtemp);
    573  1.19  jmcneill #endif
    574  1.19  jmcneill 		return error;
    575  1.19  jmcneill 	default:
    576  1.19  jmcneill 		return ENOTTY;
    577  1.19  jmcneill 	}
    578  1.19  jmcneill }
    579