Home | History | Annotate | Line # | Download | only in isa
nsclpcsio_isa.c revision 1.8.4.5
      1  1.8.4.5      yamt /* $NetBSD: nsclpcsio_isa.c,v 1.8.4.5 2007/10/27 11:31:51 yamt Exp $ */
      2      1.1  drochner 
      3      1.1  drochner /*
      4      1.1  drochner  * Copyright (c) 2002
      5      1.1  drochner  * 	Matthias Drochner.  All rights reserved.
      6      1.1  drochner  *
      7      1.1  drochner  * Redistribution and use in source and binary forms, with or without
      8      1.1  drochner  * modification, are permitted provided that the following conditions
      9      1.1  drochner  * are met:
     10      1.1  drochner  * 1. Redistributions of source code must retain the above copyright
     11      1.1  drochner  *    notice, this list of conditions, and the following disclaimer.
     12      1.1  drochner  * 2. Redistributions in binary form must reproduce the above copyright
     13      1.1  drochner  *    notice, this list of conditions and the following disclaimer in the
     14      1.1  drochner  *    documentation and/or other materials provided with the distribution.
     15      1.1  drochner  *
     16      1.1  drochner  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     17      1.1  drochner  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     18      1.1  drochner  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     19      1.1  drochner  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     20      1.1  drochner  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     21      1.1  drochner  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     22      1.1  drochner  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     23      1.1  drochner  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     24      1.1  drochner  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25      1.1  drochner  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26      1.1  drochner  * SUCH DAMAGE.
     27      1.1  drochner  */
     28      1.1  drochner 
     29      1.1  drochner #include <sys/cdefs.h>
     30  1.8.4.5      yamt __KERNEL_RCSID(0, "$NetBSD: nsclpcsio_isa.c,v 1.8.4.5 2007/10/27 11:31:51 yamt Exp $");
     31      1.1  drochner 
     32      1.1  drochner #include <sys/param.h>
     33      1.1  drochner #include <sys/systm.h>
     34      1.1  drochner #include <sys/device.h>
     35  1.8.4.3      yamt #include <sys/mutex.h>
     36  1.8.4.1      yamt #include <sys/gpio.h>
     37  1.8.4.5      yamt #include <sys/bus.h>
     38  1.8.4.5      yamt 
     39  1.8.4.5      yamt /* Don't use gpio for now in the LKM */
     40  1.8.4.5      yamt #ifdef _LKM
     41  1.8.4.5      yamt #undef NGPIO
     42  1.8.4.5      yamt #endif
     43      1.1  drochner 
     44      1.1  drochner #include <dev/isa/isareg.h>
     45      1.1  drochner #include <dev/isa/isavar.h>
     46  1.8.4.5      yamt 
     47  1.8.4.5      yamt #ifndef _LKM
     48  1.8.4.1      yamt #include "gpio.h"
     49  1.8.4.5      yamt #endif
     50  1.8.4.1      yamt #if NGPIO > 0
     51  1.8.4.1      yamt #include <dev/gpio/gpiovar.h>
     52  1.8.4.1      yamt #endif
     53      1.1  drochner #include <dev/sysmon/sysmonvar.h>
     54      1.1  drochner 
     55      1.7     perry static int nsclpcsio_isa_match(struct device *, struct cfdata *, void *);
     56      1.7     perry static void nsclpcsio_isa_attach(struct device *, struct device *, void *);
     57  1.8.4.5      yamt static int nsclpcsio_isa_detach(struct device *, int);
     58      1.1  drochner 
     59  1.8.4.1      yamt #define GPIO_NPINS 29
     60  1.8.4.1      yamt #define	SIO_GPIO_CONF_OUTPUTEN	(1 << 0)
     61  1.8.4.1      yamt #define	SIO_GPIO_CONF_PUSHPULL	(1 << 1)
     62  1.8.4.1      yamt #define	SIO_GPIO_CONF_PULLUP	(1 << 2)
     63  1.8.4.1      yamt 
     64      1.1  drochner struct nsclpcsio_softc {
     65      1.1  drochner 	struct device sc_dev;
     66  1.8.4.1      yamt 	bus_space_tag_t sc_iot, sc_gpio_iot, sc_tms_iot;
     67  1.8.4.1      yamt 	bus_space_handle_t sc_ioh, sc_gpio_ioh, sc_tms_ioh;
     68      1.1  drochner 
     69  1.8.4.4      yamt 	envsys_data_t sc_data[3];
     70      1.1  drochner 	struct sysmon_envsys sc_sysmon;
     71  1.8.4.3      yamt 	kmutex_t sc_lock;
     72  1.8.4.1      yamt 
     73  1.8.4.1      yamt #if NGPIO > 0
     74  1.8.4.1      yamt 	/* GPIO */
     75  1.8.4.1      yamt 	struct gpio_chipset_tag sc_gpio_gc;
     76  1.8.4.1      yamt 	struct gpio_pin sc_gpio_pins[GPIO_NPINS];
     77  1.8.4.1      yamt #endif
     78      1.1  drochner };
     79      1.1  drochner 
     80  1.8.4.1      yamt #define GPIO_READ(sc, reg)			\
     81  1.8.4.1      yamt 	bus_space_read_1((sc)->sc_gpio_iot,	\
     82  1.8.4.1      yamt 	    (sc)->sc_gpio_ioh, (reg))
     83  1.8.4.1      yamt #define GPIO_WRITE(sc, reg, val)		\
     84  1.8.4.1      yamt 	bus_space_write_1((sc)->sc_gpio_iot,	\
     85  1.8.4.1      yamt 	    (sc)->sc_gpio_ioh, (reg), (val))
     86  1.8.4.1      yamt 
     87      1.5  drochner CFATTACH_DECL(nsclpcsio_isa, sizeof(struct nsclpcsio_softc),
     88  1.8.4.5      yamt     nsclpcsio_isa_match, nsclpcsio_isa_attach, nsclpcsio_isa_detach, NULL);
     89      1.1  drochner 
     90      1.1  drochner static u_int8_t nsread(bus_space_tag_t, bus_space_handle_t, int);
     91      1.1  drochner static void nswrite(bus_space_tag_t, bus_space_handle_t, int, u_int8_t);
     92      1.1  drochner static int nscheck(bus_space_tag_t, int);
     93      1.1  drochner 
     94      1.1  drochner static void tms_update(struct nsclpcsio_softc *, int);
     95  1.8.4.4      yamt static int tms_gtredata(struct sysmon_envsys *, envsys_data_t *);
     96      1.1  drochner 
     97  1.8.4.1      yamt #if NGPIO > 0
     98  1.8.4.1      yamt static void nsclpcsio_gpio_init(struct nsclpcsio_softc *);
     99  1.8.4.1      yamt static void nsclpcsio_gpio_pin_select(struct nsclpcsio_softc *, int);
    100  1.8.4.1      yamt static void nsclpcsio_gpio_pin_write(void *, int, int);
    101  1.8.4.1      yamt static int nsclpcsio_gpio_pin_read(void *, int);
    102  1.8.4.1      yamt static void nsclpcsio_gpio_pin_ctl(void *, int, int);
    103  1.8.4.1      yamt #endif
    104  1.8.4.1      yamt 
    105      1.1  drochner static u_int8_t
    106      1.1  drochner nsread(iot, ioh, idx)
    107      1.1  drochner 	bus_space_tag_t iot;
    108      1.1  drochner 	bus_space_handle_t ioh;
    109      1.1  drochner 	int idx;
    110      1.1  drochner {
    111      1.1  drochner 
    112      1.1  drochner 	bus_space_write_1(iot, ioh, 0, idx);
    113      1.1  drochner 	return (bus_space_read_1(iot, ioh, 1));
    114      1.1  drochner }
    115      1.1  drochner 
    116      1.1  drochner static void
    117      1.1  drochner nswrite(iot, ioh, idx, data)
    118      1.1  drochner 	bus_space_tag_t iot;
    119      1.1  drochner 	bus_space_handle_t ioh;
    120      1.1  drochner 	int idx;
    121      1.1  drochner 	u_int8_t data;
    122      1.1  drochner {
    123      1.1  drochner 
    124      1.1  drochner 	bus_space_write_1(iot, ioh, 0, idx);
    125      1.1  drochner 	bus_space_write_1(iot, ioh, 1, data);
    126      1.1  drochner }
    127      1.1  drochner 
    128      1.1  drochner static int
    129      1.1  drochner nscheck(iot, base)
    130      1.1  drochner 	bus_space_tag_t iot;
    131      1.1  drochner 	int base;
    132      1.1  drochner {
    133      1.1  drochner 	bus_space_handle_t ioh;
    134      1.1  drochner 	int rv = 0;
    135      1.1  drochner 
    136      1.1  drochner 	if (bus_space_map(iot, base, 2, 0, &ioh))
    137      1.1  drochner 		return (0);
    138      1.1  drochner 
    139      1.1  drochner 	/* XXX this is for PC87366 only for now */
    140      1.1  drochner 	if (nsread(iot, ioh, 0x20) == 0xe9)
    141      1.1  drochner 		rv = 1;
    142      1.1  drochner 
    143      1.1  drochner 	bus_space_unmap(iot, ioh, 2);
    144      1.1  drochner 	return (rv);
    145      1.1  drochner }
    146      1.1  drochner 
    147      1.1  drochner static int
    148  1.8.4.2      yamt nsclpcsio_isa_match(struct device *parent,
    149  1.8.4.2      yamt     struct cfdata *match, void *aux)
    150      1.1  drochner {
    151      1.1  drochner 	struct isa_attach_args *ia = aux;
    152      1.1  drochner 	int iobase;
    153      1.1  drochner 
    154      1.1  drochner 	if (ISA_DIRECT_CONFIG(ia))
    155      1.1  drochner 		return (0);
    156      1.1  drochner 
    157      1.6  drochner 	if (ia->ia_nio > 0 && ia->ia_io[0].ir_addr != ISA_UNKNOWN_PORT) {
    158      1.1  drochner 		/* XXX check for legal iobase ??? */
    159      1.1  drochner 		if (nscheck(ia->ia_iot, ia->ia_io[0].ir_addr)) {
    160      1.1  drochner 			iobase = ia->ia_io[0].ir_addr;
    161      1.1  drochner 			goto found;
    162      1.1  drochner 		}
    163      1.5  drochner 		return (0);
    164      1.1  drochner 	}
    165      1.1  drochner 
    166      1.1  drochner 	/* PC87366 has two possible locations depending on wiring */
    167      1.1  drochner 	if (nscheck(ia->ia_iot, 0x2e)) {
    168      1.1  drochner 		iobase = 0x2e;
    169      1.1  drochner 		goto found;
    170      1.1  drochner 	}
    171      1.1  drochner 	if (nscheck(ia->ia_iot, 0x4e)) {
    172      1.1  drochner 		iobase = 0x4e;
    173      1.1  drochner 		goto found;
    174      1.1  drochner 	}
    175      1.1  drochner 	return (0);
    176      1.1  drochner 
    177      1.1  drochner found:
    178      1.1  drochner 	ia->ia_nio = 1;
    179      1.1  drochner 	ia->ia_io[0].ir_addr = iobase;
    180      1.1  drochner 	ia->ia_io[0].ir_size = 2;
    181      1.1  drochner 	ia->ia_niomem = 0;
    182      1.1  drochner 	ia->ia_nirq = 0;
    183      1.1  drochner 	ia->ia_ndrq = 0;
    184      1.1  drochner 	return (1);
    185      1.1  drochner }
    186      1.1  drochner 
    187      1.1  drochner static void
    188  1.8.4.2      yamt nsclpcsio_isa_attach(struct device *parent, struct device *self,
    189  1.8.4.2      yamt     void *aux)
    190      1.1  drochner {
    191      1.1  drochner 	struct nsclpcsio_softc *sc = (void *)self;
    192      1.1  drochner 	struct isa_attach_args *ia = aux;
    193  1.8.4.1      yamt #if NGPIO > 0
    194  1.8.4.1      yamt 	struct gpiobus_attach_args gba;
    195  1.8.4.1      yamt #endif
    196      1.1  drochner 	bus_space_tag_t iot;
    197      1.1  drochner 	bus_space_handle_t ioh;
    198      1.1  drochner 	u_int8_t val;
    199  1.8.4.1      yamt 	int tms_iobase, gpio_iobase = 0;
    200      1.1  drochner 	int i;
    201      1.1  drochner 
    202      1.1  drochner 	sc->sc_iot = iot = ia->ia_iot;
    203      1.1  drochner 	if (bus_space_map(ia->ia_iot, ia->ia_io[0].ir_addr, 2, 0, &ioh)) {
    204      1.1  drochner 		printf(": can't map i/o space\n");
    205      1.1  drochner 		return;
    206      1.1  drochner 	}
    207      1.1  drochner 	sc->sc_ioh = ioh;
    208      1.1  drochner 	printf(": NSC PC87366 rev. %d\n", nsread(iot, ioh, 0x27));
    209      1.1  drochner 
    210  1.8.4.3      yamt 	mutex_init(&sc->sc_lock, MUTEX_DRIVER, IPL_NONE);
    211  1.8.4.1      yamt 
    212  1.8.4.1      yamt 	nswrite(iot, ioh, 0x07, 0x07); /* select gpio */
    213  1.8.4.1      yamt 
    214  1.8.4.1      yamt 	val = nsread(iot, ioh, 0x30); /* control register */
    215  1.8.4.1      yamt 	if (!(val & 1)) {
    216  1.8.4.1      yamt 		printf("%s: GPIO disabled\n", sc->sc_dev.dv_xname);
    217  1.8.4.1      yamt 	} else {
    218  1.8.4.1      yamt 		gpio_iobase = (nsread(iot, ioh, 0x60) << 8) |
    219  1.8.4.1      yamt 			       nsread(iot, ioh, 0x61);
    220  1.8.4.1      yamt 		sc->sc_gpio_iot = iot;
    221  1.8.4.1      yamt 		if (bus_space_map(iot, gpio_iobase, 0x2c, 0,
    222  1.8.4.1      yamt 		    &sc->sc_gpio_ioh)) {
    223  1.8.4.1      yamt 			printf("%s: can't map GPIO i/o space\n",
    224  1.8.4.1      yamt 			    sc->sc_dev.dv_xname);
    225  1.8.4.1      yamt 			return;
    226  1.8.4.1      yamt 		}
    227  1.8.4.1      yamt 		printf("%s: GPIO at 0x%x\n", sc->sc_dev.dv_xname, gpio_iobase);
    228  1.8.4.1      yamt 
    229  1.8.4.1      yamt #if NGPIO > 0
    230  1.8.4.1      yamt 		nsclpcsio_gpio_init(sc);
    231  1.8.4.1      yamt #endif
    232  1.8.4.1      yamt 	}
    233  1.8.4.1      yamt 
    234      1.1  drochner 	nswrite(iot, ioh, 0x07, 0x0e); /* select tms */
    235      1.1  drochner 
    236      1.1  drochner 	val = nsread(iot, ioh, 0x30); /* control register */
    237      1.1  drochner 	if (!(val & 1)) {
    238      1.1  drochner 		printf("%s: TMS disabled\n", sc->sc_dev.dv_xname);
    239      1.1  drochner 		return;
    240      1.1  drochner 	}
    241      1.1  drochner 
    242      1.1  drochner 	tms_iobase = (nsread(iot, ioh, 0x60) << 8) | nsread(iot, ioh, 0x61);
    243      1.1  drochner 	sc->sc_tms_iot = iot;
    244      1.1  drochner 	if (bus_space_map(iot, tms_iobase, 16, 0, &sc->sc_tms_ioh)) {
    245      1.1  drochner 		printf("%s: can't map TMS i/o space\n", sc->sc_dev.dv_xname);
    246      1.1  drochner 		return;
    247      1.1  drochner 	}
    248      1.1  drochner 	printf("%s: TMS at 0x%x\n", sc->sc_dev.dv_xname, tms_iobase);
    249      1.1  drochner 
    250      1.1  drochner 	if (bus_space_read_1(sc->sc_tms_iot, sc->sc_tms_ioh, 0x08) & 1) {
    251      1.1  drochner 		printf("%s: TMS in standby mode\n", sc->sc_dev.dv_xname);
    252  1.8.4.1      yamt 
    253  1.8.4.1      yamt 		/* Wake up the TMS and enable all temperature sensors. */
    254  1.8.4.1      yamt 		bus_space_write_1(sc->sc_tms_iot, sc->sc_tms_ioh, 0x08, 0x00);
    255  1.8.4.1      yamt 		bus_space_write_1(sc->sc_tms_iot, sc->sc_tms_ioh, 0x09, 0x00);
    256  1.8.4.1      yamt 		bus_space_write_1(sc->sc_tms_iot, sc->sc_tms_ioh, 0x0a, 0x01);
    257  1.8.4.1      yamt 		bus_space_write_1(sc->sc_tms_iot, sc->sc_tms_ioh, 0x09, 0x01);
    258  1.8.4.1      yamt 		bus_space_write_1(sc->sc_tms_iot, sc->sc_tms_ioh, 0x0a, 0x01);
    259  1.8.4.1      yamt 		bus_space_write_1(sc->sc_tms_iot, sc->sc_tms_ioh, 0x09, 0x02);
    260  1.8.4.1      yamt 		bus_space_write_1(sc->sc_tms_iot, sc->sc_tms_ioh, 0x0a, 0x01);
    261  1.8.4.1      yamt 
    262  1.8.4.1      yamt 		if (!(bus_space_read_1(sc->sc_tms_iot, sc->sc_tms_ioh, 0x08)
    263  1.8.4.1      yamt 		      & 1)) {
    264  1.8.4.1      yamt 			printf("%s: TMS awoken\n", sc->sc_dev.dv_xname);
    265  1.8.4.1      yamt 		} else {
    266  1.8.4.1      yamt 			return;
    267  1.8.4.1      yamt 		}
    268      1.1  drochner 	}
    269      1.1  drochner 
    270      1.1  drochner 	/* Initialize sensor meta data */
    271      1.1  drochner 	for (i = 0; i < 3; i++) {
    272  1.8.4.4      yamt 		sc->sc_data[i].sensor = i;
    273  1.8.4.4      yamt 		sc->sc_data[i].units =ENVSYS_STEMP;
    274      1.1  drochner 	}
    275  1.8.4.4      yamt 	strcpy(sc->sc_data[0].desc, "TSENS1");
    276  1.8.4.4      yamt 	strcpy(sc->sc_data[1].desc, "TSENS2");
    277  1.8.4.4      yamt 	strcpy(sc->sc_data[2].desc, "TNSC");
    278      1.1  drochner 
    279      1.1  drochner 	/* Get initial set of sensor values. */
    280      1.1  drochner 	for (i = 0; i < 3; i++)
    281      1.1  drochner 		tms_update(sc, i);
    282      1.1  drochner 
    283      1.1  drochner 	/*
    284      1.1  drochner 	 * Hook into the System Monitor.
    285      1.1  drochner 	 */
    286  1.8.4.4      yamt 	sc->sc_sysmon.sme_name = sc->sc_dev.dv_xname;
    287      1.1  drochner 	sc->sc_sysmon.sme_sensor_data = sc->sc_data;
    288      1.1  drochner 	sc->sc_sysmon.sme_cookie = sc;
    289      1.1  drochner 	sc->sc_sysmon.sme_gtredata = tms_gtredata;
    290      1.1  drochner 	sc->sc_sysmon.sme_nsensors = 3;
    291      1.1  drochner 
    292      1.1  drochner 	if (sysmon_envsys_register(&sc->sc_sysmon))
    293      1.1  drochner 		printf("%s: unable to register with sysmon\n",
    294      1.1  drochner 		    sc->sc_dev.dv_xname);
    295  1.8.4.1      yamt 
    296  1.8.4.1      yamt #if NGPIO > 0
    297  1.8.4.1      yamt 	/* attach GPIO framework */
    298  1.8.4.1      yamt 	if (gpio_iobase != 0) {
    299  1.8.4.1      yamt 		gba.gba_gc = &sc->sc_gpio_gc;
    300  1.8.4.1      yamt 		gba.gba_pins = sc->sc_gpio_pins;
    301  1.8.4.1      yamt 		gba.gba_npins = GPIO_NPINS;
    302  1.8.4.1      yamt 		config_found_ia(&sc->sc_dev, "gpiobus", &gba, NULL);
    303  1.8.4.1      yamt 	}
    304  1.8.4.1      yamt #endif
    305  1.8.4.1      yamt 	return;
    306      1.1  drochner }
    307      1.1  drochner 
    308  1.8.4.5      yamt static int
    309  1.8.4.5      yamt nsclpcsio_isa_detach(struct device *self, int flags)
    310  1.8.4.5      yamt {
    311  1.8.4.5      yamt 	struct nsclpcsio_softc *sc = device_private(self);
    312  1.8.4.5      yamt 
    313  1.8.4.5      yamt 	sysmon_envsys_unregister(&sc->sc_sysmon);
    314  1.8.4.5      yamt 	bus_space_unmap(sc->sc_iot, sc->sc_ioh, 2);
    315  1.8.4.5      yamt 	return 0;
    316  1.8.4.5      yamt }
    317  1.8.4.5      yamt 
    318      1.1  drochner static void
    319      1.1  drochner tms_update(sc, chan)
    320      1.1  drochner 	struct nsclpcsio_softc *sc;
    321      1.1  drochner 	int chan;
    322      1.1  drochner {
    323      1.1  drochner 	bus_space_tag_t iot = sc->sc_tms_iot;
    324      1.1  drochner 	bus_space_handle_t ioh = sc->sc_tms_ioh;
    325      1.1  drochner 	u_int8_t status;
    326      1.1  drochner 	int8_t temp, ctemp; /* signed!! */
    327      1.1  drochner 
    328  1.8.4.3      yamt 	mutex_enter(&sc->sc_lock);
    329  1.8.4.1      yamt 
    330  1.8.4.1      yamt 	nswrite(iot, ioh, 0x07, 0x0e); /* select tms */
    331  1.8.4.1      yamt 
    332      1.1  drochner 	bus_space_write_1(iot, ioh, 0x09, chan); /* select */
    333      1.1  drochner 
    334      1.1  drochner 	status = bus_space_read_1(iot, ioh, 0x0a); /* config/status */
    335      1.1  drochner 	if (status & 0x01) {
    336      1.1  drochner 		/* enabled */
    337  1.8.4.4      yamt 		sc->sc_data[chan].state = ENVSYS_SVALID;
    338  1.8.4.4      yamt 	} else {
    339  1.8.4.4      yamt 		sc->sc_data[chan].state = ENVSYS_SINVALID;
    340  1.8.4.3      yamt 		mutex_exit(&sc->sc_lock);
    341      1.1  drochner 		return;
    342      1.1  drochner 	}
    343      1.1  drochner 
    344      1.1  drochner 	/*
    345      1.1  drochner 	 * If the channel is enabled, it is considered valid.
    346      1.1  drochner 	 * An "open circuit" might be temporary.
    347      1.1  drochner 	 */
    348  1.8.4.4      yamt #if 0
    349  1.8.4.4      yamt 	sc->sc_data[chan].state = ENVSYS_SVALID;
    350      1.1  drochner 	if (status & 0x40) {
    351      1.1  drochner 		/*
    352      1.1  drochner 		 * open circuit
    353      1.1  drochner 		 * XXX should have a warning for it
    354      1.1  drochner 		 */
    355      1.1  drochner 		sc->sc_data[chan].warnflags = ENVSYS_WARN_OK; /* XXX */
    356  1.8.4.3      yamt 		mutex_exit(&sc->sc_lock);
    357      1.1  drochner 		return;
    358      1.1  drochner 	}
    359  1.8.4.4      yamt #endif
    360      1.1  drochner 
    361      1.1  drochner 	/* get current temperature in signed degree celsius */
    362      1.1  drochner 	temp = bus_space_read_1(iot, ioh, 0x0b);
    363  1.8.4.4      yamt 	sc->sc_data[chan].value_cur = (int)temp * 1000000 + 273150000;
    364  1.8.4.4      yamt 	sc->sc_data[chan].state = ENVSYS_SVALID;
    365      1.1  drochner 
    366      1.1  drochner 	if (status & 0x0e) { /* any temperature warning? */
    367      1.1  drochner 		/*
    368      1.1  drochner 		 * XXX the chip documentation is a bit fuzzy - it doesn't state
    369      1.1  drochner 		 * that the hardware OTS output depends on the "overtemp"
    370      1.1  drochner 		 * warning bit.
    371      1.1  drochner 		 * It seems the output gets cleared if the warning bit is reset.
    372      1.1  drochner 		 * This sucks.
    373      1.1  drochner 		 * The hardware might do something useful with output pins, eg
    374      1.1  drochner 		 * throttling the CPU, so we must do the comparision in
    375      1.1  drochner 		 * software, and only reset the bits if the reason is gone.
    376      1.1  drochner 		 */
    377      1.1  drochner 		if (status & 0x02) { /* low limit */
    378  1.8.4.4      yamt 			sc->sc_data[chan].state = ENVSYS_SWARNUNDER;
    379      1.1  drochner 			/* read low limit */
    380      1.1  drochner 			ctemp = bus_space_read_1(iot, ioh, 0x0d);
    381      1.1  drochner 			if (temp <= ctemp) /* still valid, don't reset */
    382      1.1  drochner 				status &= ~0x02;
    383      1.1  drochner 		}
    384      1.1  drochner 		if (status & 0x04) { /* high limit */
    385  1.8.4.4      yamt 			sc->sc_data[chan].state = ENVSYS_SWARNOVER;
    386      1.1  drochner 			/* read high limit */
    387      1.1  drochner 			ctemp = bus_space_read_1(iot, ioh, 0x0c);
    388      1.1  drochner 			if (temp >= ctemp) /* still valid, don't reset */
    389      1.1  drochner 				status &= ~0x04;
    390      1.1  drochner 		}
    391      1.1  drochner 		if (status & 0x08) { /* overtemperature */
    392  1.8.4.4      yamt 			sc->sc_data[chan].state = ENVSYS_SCRITOVER;
    393      1.1  drochner 			/* read overtemperature limit */
    394      1.1  drochner 			ctemp = bus_space_read_1(iot, ioh, 0x0e);
    395      1.1  drochner 			if (temp >= ctemp) /* still valid, don't reset */
    396      1.1  drochner 				status &= ~0x08;
    397      1.1  drochner 		}
    398      1.1  drochner 
    399      1.1  drochner 		/* clear outdated warnings */
    400      1.1  drochner 		if (status & 0x0e)
    401      1.1  drochner 			bus_space_write_1(iot, ioh, 0x0a, status);
    402      1.1  drochner 	}
    403  1.8.4.1      yamt 
    404  1.8.4.3      yamt 	mutex_exit(&sc->sc_lock);
    405  1.8.4.1      yamt 
    406  1.8.4.1      yamt 	return;
    407      1.1  drochner }
    408      1.1  drochner 
    409      1.1  drochner static int
    410  1.8.4.4      yamt tms_gtredata(struct sysmon_envsys *sme, envsys_data_t *data)
    411      1.1  drochner {
    412      1.1  drochner 	struct nsclpcsio_softc *sc = sme->sme_cookie;
    413      1.1  drochner 
    414      1.1  drochner 	tms_update(sc, data->sensor);
    415      1.1  drochner 	return (0);
    416      1.1  drochner }
    417  1.8.4.1      yamt 
    418  1.8.4.1      yamt #if NGPIO > 0
    419  1.8.4.1      yamt static void
    420  1.8.4.1      yamt nsclpcsio_gpio_pin_select(struct nsclpcsio_softc *sc, int pin)
    421  1.8.4.1      yamt {
    422  1.8.4.1      yamt 	u_int8_t v;
    423  1.8.4.1      yamt 	bus_space_tag_t iot = sc->sc_iot;
    424  1.8.4.1      yamt 	bus_space_handle_t ioh = sc->sc_ioh;
    425  1.8.4.1      yamt 
    426  1.8.4.1      yamt 	v = ((pin / 8) << 4) | (pin % 8);
    427  1.8.4.1      yamt 
    428  1.8.4.1      yamt 	nswrite(iot, ioh, 0x07, 0x07); /* select gpio */
    429  1.8.4.1      yamt 	nswrite(iot, ioh, 0xf0, v);
    430  1.8.4.1      yamt 
    431  1.8.4.1      yamt 	return;
    432  1.8.4.1      yamt }
    433  1.8.4.1      yamt 
    434  1.8.4.1      yamt static void
    435  1.8.4.1      yamt nsclpcsio_gpio_init(struct nsclpcsio_softc *sc)
    436  1.8.4.1      yamt {
    437  1.8.4.1      yamt 	int i;
    438  1.8.4.1      yamt 
    439  1.8.4.1      yamt 	for (i = 0; i < GPIO_NPINS; i++) {
    440  1.8.4.1      yamt 		sc->sc_gpio_pins[i].pin_num = i;
    441  1.8.4.1      yamt 		sc->sc_gpio_pins[i].pin_caps = GPIO_PIN_INPUT |
    442  1.8.4.1      yamt 		    GPIO_PIN_OUTPUT | GPIO_PIN_OPENDRAIN |
    443  1.8.4.1      yamt 		    GPIO_PIN_PUSHPULL | GPIO_PIN_TRISTATE |
    444  1.8.4.1      yamt 		    GPIO_PIN_PULLUP;
    445  1.8.4.1      yamt 		/* safe defaults */
    446  1.8.4.1      yamt 		sc->sc_gpio_pins[i].pin_flags = GPIO_PIN_TRISTATE;
    447  1.8.4.1      yamt 		sc->sc_gpio_pins[i].pin_state = GPIO_PIN_LOW;
    448  1.8.4.1      yamt 		nsclpcsio_gpio_pin_ctl(sc, i, sc->sc_gpio_pins[i].pin_flags);
    449  1.8.4.1      yamt 		nsclpcsio_gpio_pin_write(sc, i, sc->sc_gpio_pins[i].pin_state);
    450  1.8.4.1      yamt 	}
    451  1.8.4.1      yamt 
    452  1.8.4.1      yamt 	/* create controller tag */
    453  1.8.4.1      yamt 	sc->sc_gpio_gc.gp_cookie = sc;
    454  1.8.4.1      yamt 	sc->sc_gpio_gc.gp_pin_read = nsclpcsio_gpio_pin_read;
    455  1.8.4.1      yamt 	sc->sc_gpio_gc.gp_pin_write = nsclpcsio_gpio_pin_write;
    456  1.8.4.1      yamt 	sc->sc_gpio_gc.gp_pin_ctl = nsclpcsio_gpio_pin_ctl;
    457  1.8.4.1      yamt }
    458  1.8.4.1      yamt 
    459  1.8.4.1      yamt static int
    460  1.8.4.1      yamt nsclpcsio_gpio_pin_read(void *aux, int pin)
    461  1.8.4.1      yamt {
    462  1.8.4.1      yamt 	struct nsclpcsio_softc *sc = (struct nsclpcsio_softc *)aux;
    463  1.8.4.1      yamt 	int port, shift, reg;
    464  1.8.4.1      yamt 	u_int8_t v;
    465  1.8.4.1      yamt 
    466  1.8.4.1      yamt 	reg = 0x00;
    467  1.8.4.1      yamt 	port = pin / 8;
    468  1.8.4.1      yamt 	shift = pin % 8;
    469  1.8.4.1      yamt 
    470  1.8.4.1      yamt 	switch (port) {
    471  1.8.4.1      yamt 	case 0: reg = 0x00; break;
    472  1.8.4.1      yamt 	case 1: reg = 0x04; break;
    473  1.8.4.1      yamt 	case 2: reg = 0x08; break;
    474  1.8.4.1      yamt 	case 3: reg = 0x0a; break;
    475  1.8.4.1      yamt 	}
    476  1.8.4.1      yamt 
    477  1.8.4.1      yamt 	v = GPIO_READ(sc, reg);
    478  1.8.4.1      yamt 
    479  1.8.4.1      yamt 	return ((v >> shift) & 0x1);
    480  1.8.4.1      yamt }
    481  1.8.4.1      yamt 
    482  1.8.4.1      yamt static void
    483  1.8.4.1      yamt nsclpcsio_gpio_pin_write(void *aux, int pin, int v)
    484  1.8.4.1      yamt {
    485  1.8.4.1      yamt 	struct nsclpcsio_softc *sc = (struct nsclpcsio_softc *)aux;
    486  1.8.4.1      yamt 	int port, shift, reg;
    487  1.8.4.1      yamt 	u_int8_t d;
    488  1.8.4.1      yamt 
    489  1.8.4.1      yamt 	port = pin / 8;
    490  1.8.4.1      yamt 	shift = pin % 8;
    491  1.8.4.1      yamt 
    492  1.8.4.1      yamt 	switch (port) {
    493  1.8.4.1      yamt 	case 0: reg = 0x00; break;
    494  1.8.4.1      yamt 	case 1: reg = 0x04; break;
    495  1.8.4.1      yamt 	case 2: reg = 0x08; break;
    496  1.8.4.1      yamt 	case 3: reg = 0x0a; break;
    497  1.8.4.1      yamt 	default: reg = 0x00; break; /* shouldn't happen */
    498  1.8.4.1      yamt 	}
    499  1.8.4.1      yamt 
    500  1.8.4.1      yamt 	d = GPIO_READ(sc, reg);
    501  1.8.4.1      yamt 	if (v == 0)
    502  1.8.4.1      yamt 		d &= ~(1 << shift);
    503  1.8.4.1      yamt 	else if (v == 1)
    504  1.8.4.1      yamt 		d |= (1 << shift);
    505  1.8.4.1      yamt 	GPIO_WRITE(sc, reg, d);
    506  1.8.4.1      yamt 
    507  1.8.4.1      yamt 	return;
    508  1.8.4.1      yamt }
    509  1.8.4.1      yamt 
    510  1.8.4.1      yamt void
    511  1.8.4.1      yamt nsclpcsio_gpio_pin_ctl(void *aux, int pin, int flags)
    512  1.8.4.1      yamt {
    513  1.8.4.1      yamt 	struct nsclpcsio_softc *sc = (struct nsclpcsio_softc *)aux;
    514  1.8.4.1      yamt 	u_int8_t conf;
    515  1.8.4.1      yamt 
    516  1.8.4.3      yamt 	mutex_enter(&sc->sc_lock);
    517  1.8.4.1      yamt 
    518  1.8.4.1      yamt 	nswrite(sc->sc_iot, sc->sc_ioh, 0x07, 0x07); /* select gpio */
    519  1.8.4.1      yamt 	nsclpcsio_gpio_pin_select(sc, pin);
    520  1.8.4.1      yamt 	conf = nsread(sc->sc_iot, sc->sc_ioh, 0xf1);
    521  1.8.4.1      yamt 
    522  1.8.4.1      yamt 	conf &= ~(SIO_GPIO_CONF_OUTPUTEN | SIO_GPIO_CONF_PUSHPULL |
    523  1.8.4.1      yamt 	    SIO_GPIO_CONF_PULLUP);
    524  1.8.4.1      yamt 	if ((flags & GPIO_PIN_TRISTATE) == 0)
    525  1.8.4.1      yamt 		conf |= SIO_GPIO_CONF_OUTPUTEN;
    526  1.8.4.1      yamt 	if (flags & GPIO_PIN_PUSHPULL)
    527  1.8.4.1      yamt 		conf |= SIO_GPIO_CONF_PUSHPULL;
    528  1.8.4.1      yamt 	if (flags & GPIO_PIN_PULLUP)
    529  1.8.4.1      yamt 		conf |= SIO_GPIO_CONF_PULLUP;
    530  1.8.4.1      yamt 
    531  1.8.4.1      yamt 	nswrite(sc->sc_iot, sc->sc_ioh, 0xf1, conf);
    532  1.8.4.1      yamt 
    533  1.8.4.3      yamt 	mutex_exit(&sc->sc_lock);
    534  1.8.4.1      yamt 
    535  1.8.4.1      yamt 	return;
    536  1.8.4.1      yamt }
    537  1.8.4.1      yamt #endif /* NGPIO */
    538