Home | History | Annotate | Line # | Download | only in isa
wbsio.c revision 1.1
      1  1.1  cnst /*	$NetBSD: wbsio.c,v 1.1 2010/02/21 05:16:29 cnst Exp $	*/
      2  1.1  cnst /*	$OpenBSD: wbsio.c,v 1.5 2009/03/29 21:53:52 sthen Exp $	*/
      3  1.1  cnst /*
      4  1.1  cnst  * Copyright (c) 2008 Mark Kettenis <kettenis (at) openbsd.org>
      5  1.1  cnst  *
      6  1.1  cnst  * Permission to use, copy, modify, and distribute this software for any
      7  1.1  cnst  * purpose with or without fee is hereby granted, provided that the above
      8  1.1  cnst  * copyright notice and this permission notice appear in all copies.
      9  1.1  cnst  *
     10  1.1  cnst  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
     11  1.1  cnst  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
     12  1.1  cnst  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
     13  1.1  cnst  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
     14  1.1  cnst  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
     15  1.1  cnst  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
     16  1.1  cnst  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
     17  1.1  cnst  */
     18  1.1  cnst 
     19  1.1  cnst /*
     20  1.1  cnst  * Winbond LPC Super I/O driver.
     21  1.1  cnst  */
     22  1.1  cnst 
     23  1.1  cnst #include <sys/param.h>
     24  1.1  cnst #include <sys/device.h>
     25  1.1  cnst #include <sys/kernel.h>
     26  1.1  cnst #include <sys/systm.h>
     27  1.1  cnst 
     28  1.1  cnst #include <machine/bus.h>
     29  1.1  cnst 
     30  1.1  cnst #include <dev/isa/isareg.h>
     31  1.1  cnst #include <dev/isa/isavar.h>
     32  1.1  cnst 
     33  1.1  cnst /* ISA bus registers */
     34  1.1  cnst #define WBSIO_INDEX		0x00	/* Configuration Index Register */
     35  1.1  cnst #define WBSIO_DATA		0x01	/* Configuration Data Register */
     36  1.1  cnst 
     37  1.1  cnst #define WBSIO_IOSIZE		0x02	/* ISA I/O space size */
     38  1.1  cnst 
     39  1.1  cnst #define WBSIO_CONF_EN_MAGIC	0x87	/* enable configuration mode */
     40  1.1  cnst #define WBSIO_CONF_DS_MAGIC	0xaa	/* disable configuration mode */
     41  1.1  cnst 
     42  1.1  cnst /* Configuration Space Registers */
     43  1.1  cnst #define WBSIO_LDN		0x07	/* Logical Device Number */
     44  1.1  cnst #define WBSIO_ID		0x20	/* Device ID */
     45  1.1  cnst #define WBSIO_REV		0x21	/* Device Revision */
     46  1.1  cnst 
     47  1.1  cnst #define WBSIO_ID_W83627HF	0x52
     48  1.1  cnst #define WBSIO_ID_W83627THF	0x82
     49  1.1  cnst #define WBSIO_ID_W83627EHF	0x88
     50  1.1  cnst #define WBSIO_ID_W83627DHG	0xa0
     51  1.1  cnst #define WBSIO_ID_W83627SF	0x59
     52  1.1  cnst #define WBSIO_ID_W83637HF	0x70
     53  1.1  cnst #define WBSIO_ID_W83697HF	0x60
     54  1.1  cnst 
     55  1.1  cnst /* Logical Device Number (LDN) Assignments */
     56  1.1  cnst #define WBSIO_LDN_HM		0x0b
     57  1.1  cnst 
     58  1.1  cnst /* Hardware Monitor Control Registers (LDN B) */
     59  1.1  cnst #define WBSIO_HM_ADDR_MSB	0x60	/* Address [15:8] */
     60  1.1  cnst #define WBSIO_HM_ADDR_LSB	0x61	/* Address [7:0] */
     61  1.1  cnst 
     62  1.1  cnst struct wbsio_softc {
     63  1.1  cnst 	struct device		sc_dev;
     64  1.1  cnst 
     65  1.1  cnst 	bus_space_tag_t		sc_iot;
     66  1.1  cnst 	bus_space_handle_t	sc_ioh;
     67  1.1  cnst };
     68  1.1  cnst 
     69  1.1  cnst int	wbsio_probe(device_t, cfdata_t, void *);
     70  1.1  cnst void	wbsio_attach(device_t, device_t, void *);
     71  1.1  cnst int	wbsio_print(void *, const char *);
     72  1.1  cnst 
     73  1.1  cnst CFATTACH_DECL_NEW(wbsio, sizeof(struct wbsio_softc),
     74  1.1  cnst     wbsio_probe, wbsio_attach, NULL, NULL);
     75  1.1  cnst 
     76  1.1  cnst static __inline void
     77  1.1  cnst wbsio_conf_enable(bus_space_tag_t iot, bus_space_handle_t ioh)
     78  1.1  cnst {
     79  1.1  cnst 	bus_space_write_1(iot, ioh, WBSIO_INDEX, WBSIO_CONF_EN_MAGIC);
     80  1.1  cnst 	bus_space_write_1(iot, ioh, WBSIO_INDEX, WBSIO_CONF_EN_MAGIC);
     81  1.1  cnst }
     82  1.1  cnst 
     83  1.1  cnst static __inline void
     84  1.1  cnst wbsio_conf_disable(bus_space_tag_t iot, bus_space_handle_t ioh)
     85  1.1  cnst {
     86  1.1  cnst 	bus_space_write_1(iot, ioh, WBSIO_INDEX, WBSIO_CONF_DS_MAGIC);
     87  1.1  cnst }
     88  1.1  cnst 
     89  1.1  cnst static __inline u_int8_t
     90  1.1  cnst wbsio_conf_read(bus_space_tag_t iot, bus_space_handle_t ioh, u_int8_t index)
     91  1.1  cnst {
     92  1.1  cnst 	bus_space_write_1(iot, ioh, WBSIO_INDEX, index);
     93  1.1  cnst 	return (bus_space_read_1(iot, ioh, WBSIO_DATA));
     94  1.1  cnst }
     95  1.1  cnst 
     96  1.1  cnst static __inline void
     97  1.1  cnst wbsio_conf_write(bus_space_tag_t iot, bus_space_handle_t ioh, u_int8_t index,
     98  1.1  cnst     u_int8_t data)
     99  1.1  cnst {
    100  1.1  cnst 	bus_space_write_1(iot, ioh, WBSIO_INDEX, index);
    101  1.1  cnst 	bus_space_write_1(iot, ioh, WBSIO_DATA, data);
    102  1.1  cnst }
    103  1.1  cnst 
    104  1.1  cnst int
    105  1.1  cnst wbsio_probe(device_t parent, cfdata_t match, void *aux)
    106  1.1  cnst {
    107  1.1  cnst 	struct isa_attach_args *ia = aux;
    108  1.1  cnst 	bus_space_tag_t iot;
    109  1.1  cnst 	bus_space_handle_t ioh;
    110  1.1  cnst 	u_int8_t reg;
    111  1.1  cnst 
    112  1.1  cnst 	/* Must supply an address */
    113  1.1  cnst 	if (ia->ia_nio < 1)
    114  1.1  cnst 		return 0;
    115  1.1  cnst 
    116  1.1  cnst 	if (ISA_DIRECT_CONFIG(ia))
    117  1.1  cnst 		return 0;
    118  1.1  cnst 
    119  1.1  cnst 	if (ia->ia_io[0].ir_addr == ISA_UNKNOWN_PORT)
    120  1.1  cnst 		return 0;
    121  1.1  cnst 
    122  1.1  cnst 	/* Match by device ID */
    123  1.1  cnst 	iot = ia->ia_iot;
    124  1.1  cnst 	if (bus_space_map(iot, ia->ia_io[0].ir_addr, WBSIO_IOSIZE, 0, &ioh))
    125  1.1  cnst 		return 0;
    126  1.1  cnst 	wbsio_conf_enable(iot, ioh);
    127  1.1  cnst 	reg = wbsio_conf_read(iot, ioh, WBSIO_ID);
    128  1.1  cnst 	aprint_debug("wbsio_probe: id 0x%02x\n", reg);
    129  1.1  cnst 	wbsio_conf_disable(iot, ioh);
    130  1.1  cnst 	bus_space_unmap(iot, ioh, WBSIO_IOSIZE);
    131  1.1  cnst 	switch (reg) {
    132  1.1  cnst 	case WBSIO_ID_W83627HF:
    133  1.1  cnst 	case WBSIO_ID_W83627THF:
    134  1.1  cnst 	case WBSIO_ID_W83627EHF:
    135  1.1  cnst 	case WBSIO_ID_W83627DHG:
    136  1.1  cnst 	case WBSIO_ID_W83637HF:
    137  1.1  cnst 	case WBSIO_ID_W83697HF:
    138  1.1  cnst 		ia->ia_nio = 1;
    139  1.1  cnst 		ia->ia_io[0].ir_size = WBSIO_IOSIZE;
    140  1.1  cnst 		ia->ia_niomem = 0;
    141  1.1  cnst 		ia->ia_nirq = 0;
    142  1.1  cnst 		ia->ia_ndrq = 0;
    143  1.1  cnst 		return 1;
    144  1.1  cnst 	}
    145  1.1  cnst 
    146  1.1  cnst 	return 0;
    147  1.1  cnst }
    148  1.1  cnst 
    149  1.1  cnst void
    150  1.1  cnst wbsio_attach(device_t parent, device_t self, void *aux)
    151  1.1  cnst {
    152  1.1  cnst 	struct wbsio_softc *sc = (void *)self;
    153  1.1  cnst 	struct isa_attach_args *ia = aux;
    154  1.1  cnst 	struct isa_attach_args nia;
    155  1.1  cnst 	const char *desc = NULL;
    156  1.1  cnst 	u_int8_t reg, reg0, reg1;
    157  1.1  cnst 	u_int16_t iobase;
    158  1.1  cnst 
    159  1.1  cnst 	/* Map ISA I/O space */
    160  1.1  cnst 	sc->sc_iot = ia->ia_iot;
    161  1.1  cnst 	if (bus_space_map(sc->sc_iot, ia->ia_io[0].ir_addr,
    162  1.1  cnst 	    WBSIO_IOSIZE, 0, &sc->sc_ioh)) {
    163  1.1  cnst 		aprint_error(": can't map i/o space\n");
    164  1.1  cnst 		return;
    165  1.1  cnst 	}
    166  1.1  cnst 
    167  1.1  cnst 	/* Enter configuration mode */
    168  1.1  cnst 	wbsio_conf_enable(sc->sc_iot, sc->sc_ioh);
    169  1.1  cnst 
    170  1.1  cnst 	/* Read device ID */
    171  1.1  cnst 	reg = wbsio_conf_read(sc->sc_iot, sc->sc_ioh, WBSIO_ID);
    172  1.1  cnst 	switch (reg) {
    173  1.1  cnst 	case WBSIO_ID_W83627HF:
    174  1.1  cnst 		desc = "W83627HF";
    175  1.1  cnst 		break;
    176  1.1  cnst 	case WBSIO_ID_W83627THF:
    177  1.1  cnst 		desc = "W83627THF";
    178  1.1  cnst 		break;
    179  1.1  cnst 	case WBSIO_ID_W83627EHF:
    180  1.1  cnst 		desc = "W83627EHF";
    181  1.1  cnst 		break;
    182  1.1  cnst 	case WBSIO_ID_W83627DHG:
    183  1.1  cnst 		desc = "W83627DHG";
    184  1.1  cnst 		break;
    185  1.1  cnst 	case WBSIO_ID_W83637HF:
    186  1.1  cnst 		desc = "W83637HF";
    187  1.1  cnst 		break;
    188  1.1  cnst 	case WBSIO_ID_W83697HF:
    189  1.1  cnst 		desc = "W83697HF";
    190  1.1  cnst 		break;
    191  1.1  cnst 	}
    192  1.1  cnst 
    193  1.1  cnst 	/* Read device revision */
    194  1.1  cnst 	reg = wbsio_conf_read(sc->sc_iot, sc->sc_ioh, WBSIO_REV);
    195  1.1  cnst 
    196  1.1  cnst 	aprint_naive("\n");
    197  1.1  cnst 	aprint_normal(": Winbond LPC Super I/O %s rev 0x%02x\n", desc, reg);
    198  1.1  cnst 
    199  1.1  cnst 	/* Select HM logical device */
    200  1.1  cnst 	wbsio_conf_write(sc->sc_iot, sc->sc_ioh, WBSIO_LDN, WBSIO_LDN_HM);
    201  1.1  cnst 
    202  1.1  cnst 	/*
    203  1.1  cnst 	 * The address should be 8-byte aligned, but it seems some
    204  1.1  cnst 	 * BIOSes ignore this.  They get away with it, because
    205  1.1  cnst 	 * Apparently the hardware simply ignores the lower three
    206  1.1  cnst 	 * bits.  We do the same here.
    207  1.1  cnst 	 */
    208  1.1  cnst 	reg0 = wbsio_conf_read(sc->sc_iot, sc->sc_ioh, WBSIO_HM_ADDR_LSB);
    209  1.1  cnst 	reg1 = wbsio_conf_read(sc->sc_iot, sc->sc_ioh, WBSIO_HM_ADDR_MSB);
    210  1.1  cnst 	iobase = (reg1 << 8) | (reg0 & ~0x7);
    211  1.1  cnst 
    212  1.1  cnst 	/* Escape from configuration mode */
    213  1.1  cnst 	wbsio_conf_disable(sc->sc_iot, sc->sc_ioh);
    214  1.1  cnst 
    215  1.1  cnst 	if (iobase == 0)
    216  1.1  cnst 		return;
    217  1.1  cnst 
    218  1.1  cnst 	nia = *ia;
    219  1.1  cnst 	nia.ia_io[0].ir_addr = iobase;
    220  1.1  cnst 	config_found(self, &nia, wbsio_print);
    221  1.1  cnst }
    222  1.1  cnst 
    223  1.1  cnst int
    224  1.1  cnst wbsio_print(void *aux, const char *pnp)
    225  1.1  cnst {
    226  1.1  cnst 	struct isa_attach_args *ia = aux;
    227  1.1  cnst 
    228  1.1  cnst 	if (pnp)
    229  1.1  cnst 		aprint_normal("%s", pnp);
    230  1.1  cnst 	if (ia->ia_io[0].ir_size)
    231  1.1  cnst 		aprint_normal(" port 0x%x", ia->ia_io[0].ir_addr);
    232  1.1  cnst 	if (ia->ia_io[0].ir_size > 1)
    233  1.1  cnst 		aprint_normal("-0x%x", ia->ia_io[0].ir_addr +
    234  1.1  cnst 		    ia->ia_io[0].ir_size - 1);
    235  1.1  cnst 	return (UNCONF);
    236  1.1  cnst }
    237