Home | History | Annotate | Line # | Download | only in i2c
lm75.c revision 1.4.4.2
      1  1.4.4.2     elad /*	$NetBSD: lm75.c,v 1.4.4.2 2006/05/11 23:28:30 elad 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 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.1  thorpej #include <sys/param.h>
     39      1.1  thorpej #include <sys/systm.h>
     40      1.1  thorpej #include <sys/device.h>
     41      1.1  thorpej #include <sys/kernel.h>
     42      1.1  thorpej 
     43      1.1  thorpej #include <dev/sysmon/sysmonvar.h>
     44      1.1  thorpej 
     45      1.1  thorpej #include <dev/i2c/i2cvar.h>
     46      1.1  thorpej #include <dev/i2c/lm75reg.h>
     47      1.1  thorpej 
     48      1.1  thorpej struct lmtemp_softc {
     49      1.1  thorpej 	struct device sc_dev;
     50      1.1  thorpej 	i2c_tag_t sc_tag;
     51      1.1  thorpej 	int sc_address;
     52      1.2      scw 	int sc_is_ds75;
     53      1.1  thorpej 
     54      1.1  thorpej 	struct envsys_tre_data sc_sensor[1];
     55      1.1  thorpej 	struct envsys_basic_info sc_info[1];
     56      1.1  thorpej 
     57      1.1  thorpej 	struct sysmon_envsys sc_sysmon;
     58      1.1  thorpej };
     59      1.1  thorpej 
     60      1.1  thorpej static int  lmtemp_match(struct device *, struct cfdata *, void *);
     61      1.1  thorpej static void lmtemp_attach(struct device *, struct device *, void *);
     62      1.1  thorpej 
     63      1.1  thorpej CFATTACH_DECL(lmtemp, sizeof(struct lmtemp_softc),
     64      1.1  thorpej 	lmtemp_match, lmtemp_attach, NULL, NULL);
     65      1.1  thorpej 
     66      1.1  thorpej static int	lmtemp_gtredata(struct sysmon_envsys *,
     67      1.1  thorpej 				struct envsys_tre_data *);
     68      1.1  thorpej static int	lmtemp_streinfo(struct sysmon_envsys *,
     69      1.1  thorpej 				struct envsys_basic_info *);
     70      1.1  thorpej 
     71      1.1  thorpej static const struct envsys_range lmtemp_ranges[] = {
     72      1.1  thorpej 	{ 0, 1,		ENVSYS_STEMP },
     73      1.1  thorpej 	{ 1, 0,		-1 },
     74      1.1  thorpej };
     75      1.1  thorpej 
     76      1.1  thorpej static int lmtemp_config_write(struct lmtemp_softc *, uint8_t);
     77      1.2      scw static uint32_t lmtemp_decode_lm75(const uint8_t *);
     78      1.2      scw static uint32_t lmtemp_decode_ds75(const uint8_t *);
     79      1.1  thorpej 
     80      1.1  thorpej static int
     81      1.1  thorpej lmtemp_match(struct device *parent, struct cfdata *cf, void *aux)
     82      1.1  thorpej {
     83      1.1  thorpej 	struct i2c_attach_args *ia = aux;
     84      1.1  thorpej 
     85      1.1  thorpej 	if ((ia->ia_addr & LM75_ADDRMASK) == LM75_ADDR)
     86      1.1  thorpej 		return (1);
     87      1.1  thorpej 
     88      1.1  thorpej 	return (0);
     89      1.1  thorpej }
     90      1.1  thorpej 
     91      1.1  thorpej static void
     92      1.1  thorpej lmtemp_attach(struct device *parent, struct device *self, void *aux)
     93      1.1  thorpej {
     94  1.4.4.1     elad 	struct lmtemp_softc *sc = device_private(self);
     95      1.1  thorpej 	struct i2c_attach_args *ia = aux;
     96  1.4.4.2     elad 	prop_string_t desc;
     97      1.1  thorpej 
     98      1.1  thorpej 	sc->sc_tag = ia->ia_tag;
     99      1.1  thorpej 	sc->sc_address = ia->ia_addr;
    100  1.4.4.1     elad 	sc->sc_is_ds75 = device_cfdata(&sc->sc_dev)->cf_flags & 1;
    101      1.1  thorpej 
    102      1.1  thorpej 	aprint_naive(": Temperature Sensor\n");
    103      1.2      scw 	aprint_normal(": %s Temperature Sensor\n",
    104      1.2      scw 	    (sc->sc_is_ds75) ? "DS75" : "LM75");
    105      1.1  thorpej 
    106      1.1  thorpej 	/* Set the configuration of the LM75 to defaults. */
    107      1.1  thorpej 	iic_acquire_bus(sc->sc_tag, I2C_F_POLL);
    108      1.1  thorpej 	if (lmtemp_config_write(sc, 0) != 0) {
    109      1.1  thorpej 		aprint_error("%s: unable to write config register\n",
    110      1.1  thorpej 		    sc->sc_dev.dv_xname);
    111      1.1  thorpej 		iic_release_bus(sc->sc_tag, I2C_F_POLL);
    112      1.1  thorpej 		return;
    113      1.1  thorpej 	}
    114      1.1  thorpej 	iic_release_bus(sc->sc_tag, I2C_F_POLL);
    115      1.1  thorpej 
    116      1.1  thorpej 	/* Initialize sensor data. */
    117      1.1  thorpej 	sc->sc_sensor[0].sensor = sc->sc_info[0].sensor = 0;
    118      1.1  thorpej 	sc->sc_sensor[0].validflags = ENVSYS_FVALID;
    119      1.1  thorpej 	sc->sc_info[0].validflags = ENVSYS_FVALID;
    120      1.1  thorpej 	sc->sc_sensor[0].warnflags = ENVSYS_WARN_OK;
    121      1.1  thorpej 
    122      1.1  thorpej 	sc->sc_sensor[0].units = sc->sc_info[0].units = ENVSYS_STEMP;
    123  1.4.4.2     elad 	desc = prop_dictionary_get(device_properties(&sc->sc_dev),
    124  1.4.4.2     elad 				   "description");
    125  1.4.4.2     elad 	if (desc != NULL &&
    126  1.4.4.2     elad 	    prop_object_type(desc) == PROP_TYPE_STRING &&
    127  1.4.4.2     elad 	    prop_string_size(desc) > 0)
    128  1.4.4.2     elad 	    	strcpy(sc->sc_info[0].desc, prop_string_cstring_nocopy(desc));
    129  1.4.4.2     elad 	else
    130      1.1  thorpej 		strcpy(sc->sc_info[0].desc, sc->sc_dev.dv_xname);
    131      1.1  thorpej 
    132  1.4.4.1     elad 	/* Hook into system monitor. */
    133      1.1  thorpej 	sc->sc_sysmon.sme_ranges = lmtemp_ranges;
    134      1.1  thorpej 	sc->sc_sysmon.sme_sensor_info = sc->sc_info;
    135      1.1  thorpej 	sc->sc_sysmon.sme_sensor_data = sc->sc_sensor;
    136      1.1  thorpej 	sc->sc_sysmon.sme_cookie = sc;
    137      1.1  thorpej 
    138      1.1  thorpej 	sc->sc_sysmon.sme_gtredata = lmtemp_gtredata;
    139      1.1  thorpej 	sc->sc_sysmon.sme_streinfo = lmtemp_streinfo;
    140      1.1  thorpej 
    141      1.1  thorpej 	sc->sc_sysmon.sme_nsensors = 1;
    142      1.1  thorpej 	sc->sc_sysmon.sme_envsys_version = 1000;
    143      1.1  thorpej 
    144      1.1  thorpej 	if (sysmon_envsys_register(&sc->sc_sysmon))
    145      1.1  thorpej 		aprint_error("%s: unable to register with sysmon\n",
    146      1.1  thorpej 		    sc->sc_dev.dv_xname);
    147      1.1  thorpej }
    148      1.1  thorpej 
    149      1.1  thorpej static int
    150      1.1  thorpej lmtemp_config_write(struct lmtemp_softc *sc, uint8_t val)
    151      1.1  thorpej {
    152      1.1  thorpej 	uint8_t cmdbuf[2];
    153      1.1  thorpej 
    154      1.1  thorpej 	cmdbuf[0] = LM75_REG_CONFIG;
    155      1.1  thorpej 	cmdbuf[1] = val;
    156      1.1  thorpej 
    157      1.1  thorpej 	return (iic_exec(sc->sc_tag, I2C_OP_WRITE_WITH_STOP,
    158      1.1  thorpej 	    sc->sc_address, cmdbuf, 1, &cmdbuf[1], 1, I2C_F_POLL));
    159      1.1  thorpej }
    160      1.1  thorpej 
    161      1.1  thorpej static int
    162      1.1  thorpej lmtemp_temp_read(struct lmtemp_softc *sc, uint8_t which, uint32_t *valp)
    163      1.1  thorpej {
    164      1.2      scw 	int error;
    165      1.1  thorpej 	uint8_t cmdbuf[1];
    166      1.1  thorpej 	uint8_t buf[LM75_TEMP_LEN];
    167      1.1  thorpej 
    168      1.1  thorpej 	cmdbuf[0] = which;
    169      1.1  thorpej 
    170      1.1  thorpej 	error = iic_exec(sc->sc_tag, I2C_OP_READ_WITH_STOP,
    171      1.1  thorpej 	    sc->sc_address, cmdbuf, 1, buf, LM75_TEMP_LEN, 0);
    172      1.1  thorpej 	if (error)
    173      1.1  thorpej 		return (error);
    174      1.1  thorpej 
    175      1.2      scw 	if (sc->sc_is_ds75)
    176      1.2      scw 		*valp = lmtemp_decode_ds75(buf);
    177      1.2      scw 	else
    178      1.2      scw 		*valp = lmtemp_decode_lm75(buf);
    179      1.1  thorpej 
    180      1.1  thorpej 	return (0);
    181      1.1  thorpej }
    182      1.1  thorpej 
    183      1.1  thorpej static void
    184      1.1  thorpej lmtemp_refresh_sensor_data(struct lmtemp_softc *sc)
    185      1.1  thorpej {
    186      1.1  thorpej 	uint32_t val;
    187      1.1  thorpej 	int error;
    188      1.1  thorpej 
    189      1.1  thorpej 	error = lmtemp_temp_read(sc, LM75_REG_TEMP, &val);
    190      1.1  thorpej 	if (error) {
    191      1.1  thorpej #if 0
    192      1.1  thorpej 		printf("%s: unable to read temperature, error = %d\n",
    193      1.1  thorpej 		    sc->sc_dev.dv_xname, error);
    194      1.1  thorpej #endif
    195      1.1  thorpej 		sc->sc_sensor[0].validflags &= ~ENVSYS_FCURVALID;
    196      1.1  thorpej 		return;
    197      1.1  thorpej 	}
    198      1.1  thorpej 
    199      1.1  thorpej 	sc->sc_sensor[0].cur.data_us = val;
    200      1.1  thorpej 	sc->sc_sensor[0].validflags |= ENVSYS_FCURVALID;
    201      1.1  thorpej }
    202      1.1  thorpej 
    203      1.1  thorpej static int
    204      1.1  thorpej lmtemp_gtredata(struct sysmon_envsys *sme, struct envsys_tre_data *tred)
    205      1.1  thorpej {
    206      1.1  thorpej 	struct lmtemp_softc *sc = sme->sme_cookie;
    207      1.1  thorpej 
    208      1.1  thorpej 	iic_acquire_bus(sc->sc_tag, 0);	/* also locks our instance */
    209      1.1  thorpej 
    210      1.1  thorpej 	lmtemp_refresh_sensor_data(sc);
    211      1.1  thorpej 	*tred = sc->sc_sensor[tred->sensor];
    212      1.1  thorpej 
    213      1.1  thorpej 	iic_release_bus(sc->sc_tag, 0);	/* also unlocks our instance */
    214      1.1  thorpej 
    215      1.1  thorpej 	return (0);
    216      1.1  thorpej }
    217      1.1  thorpej 
    218      1.1  thorpej static int
    219      1.1  thorpej lmtemp_streinfo(struct sysmon_envsys *sme, struct envsys_basic_info *binfo)
    220      1.1  thorpej {
    221      1.1  thorpej 	struct lmtemp_softc *sc = sme->sme_cookie;
    222      1.1  thorpej 
    223      1.1  thorpej 	iic_acquire_bus(sc->sc_tag, 0);	/* also locks our instance */
    224      1.1  thorpej 
    225      1.1  thorpej 	memcpy(sc->sc_info[binfo->sensor].desc, binfo->desc,
    226      1.1  thorpej 	    sizeof(sc->sc_info[binfo->sensor].desc));
    227      1.1  thorpej 	sc->sc_info[binfo->sensor].desc[
    228      1.1  thorpej 	    sizeof(sc->sc_info[binfo->sensor].desc) - 1] = '\0';
    229      1.1  thorpej 
    230      1.1  thorpej 	iic_release_bus(sc->sc_tag, 0);	/* also unlocks our instance */
    231      1.1  thorpej 
    232      1.1  thorpej 	binfo->validflags = ENVSYS_FVALID;
    233      1.1  thorpej 
    234      1.1  thorpej 	return (0);
    235      1.1  thorpej }
    236      1.2      scw 
    237      1.2      scw static uint32_t
    238      1.2      scw lmtemp_decode_lm75(const uint8_t *buf)
    239      1.2      scw {
    240      1.2      scw 	int neg, temp;
    241      1.2      scw 	uint32_t val;
    242      1.2      scw 
    243      1.2      scw 	if (buf[0] & 1) {
    244      1.2      scw 		/* Below 0C */
    245      1.2      scw 		temp = ~buf[1] + 1;
    246      1.2      scw 		neg = 1;
    247      1.2      scw 	} else {
    248      1.2      scw 		temp = buf[1];
    249      1.2      scw 		neg = 0;
    250      1.2      scw 	}
    251      1.2      scw 
    252      1.2      scw 	/* Temp is given in 1/2 deg. C, we convert to uK. */
    253      1.2      scw 	val = ((neg ? -temp : temp) / 2) * 1000000 + 273150000;
    254      1.2      scw 	if (temp & 1) {
    255      1.2      scw 		if (neg)
    256      1.2      scw 			val -= 500000;
    257      1.2      scw 		else
    258      1.2      scw 			val += 500000;
    259      1.2      scw 	}
    260      1.2      scw 
    261      1.2      scw 	return (val);
    262      1.2      scw }
    263      1.2      scw 
    264      1.2      scw static uint32_t
    265      1.2      scw lmtemp_decode_ds75(const uint8_t *buf)
    266      1.2      scw {
    267      1.2      scw 	int temp;
    268      1.2      scw 
    269      1.2      scw 	/*
    270      1.2      scw 	 * Sign-extend the MSB byte, and add in the fractions of a
    271  1.4.4.1     elad 	 * degree contained in the LSB (precision 1/16th DegC).
    272      1.2      scw 	 */
    273      1.2      scw 	temp = (int8_t)buf[0];
    274      1.2      scw 	temp = (temp << 4) | ((buf[1] >> 4) & 0xf);
    275      1.2      scw 
    276      1.2      scw 	/*
    277      1.2      scw 	 * Conversion to uK is simple.
    278      1.2      scw 	 */
    279      1.2      scw 	return (temp * 62500 + 273150000);
    280      1.2      scw }
    281      1.2      scw 
    282