tx39io.c revision 1.19       1  1.19       he /*	$NetBSD: tx39io.c,v 1.19 2006/03/07 23:26:24 he Exp $ */
      2   1.1      uch 
      3   1.6      uch /*-
      4  1.11      uch  * Copyright (c) 1999-2001 The NetBSD Foundation, Inc.
      5   1.1      uch  * All rights reserved.
      6   1.1      uch  *
      7   1.6      uch  * This code is derived from software contributed to The NetBSD Foundation
      8   1.6      uch  * by UCHIYAMA Yasushi.
      9   1.6      uch  *
     10   1.1      uch  * Redistribution and use in source and binary forms, with or without
     11   1.1      uch  * modification, are permitted provided that the following conditions
     12   1.1      uch  * are met:
     13   1.1      uch  * 1. Redistributions of source code must retain the above copyright
     14   1.1      uch  *    notice, this list of conditions and the following disclaimer.
     15   1.6      uch  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.6      uch  *    notice, this list of conditions and the following disclaimer in the
     17   1.6      uch  *    documentation and/or other materials provided with the distribution.
     18   1.6      uch  * 3. All advertising materials mentioning features or use of this software
     19   1.6      uch  *    must display the following acknowledgement:
     20   1.6      uch  *        This product includes software developed by the NetBSD
     21   1.6      uch  *        Foundation, Inc. and its contributors.
     22   1.6      uch  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23   1.6      uch  *    contributors may be used to endorse or promote products derived
     24   1.6      uch  *    from this software without specific prior written permission.
     25   1.1      uch  *
     26   1.6      uch  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27   1.6      uch  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28   1.6      uch  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29   1.6      uch  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30   1.6      uch  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31   1.6      uch  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32   1.6      uch  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33   1.6      uch  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34   1.6      uch  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35   1.6      uch  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36   1.6      uch  * POSSIBILITY OF SUCH DAMAGE.
     37   1.1      uch  */
     38  1.16    lukem 
     39  1.16    lukem #include <sys/cdefs.h>
     40  1.19       he __KERNEL_RCSID(0, "$NetBSD: tx39io.c,v 1.19 2006/03/07 23:26:24 he Exp $");
     41   1.1      uch 
     42   1.1      uch #include <sys/param.h>
     43   1.1      uch #include <sys/systm.h>
     44   1.1      uch #include <sys/device.h>
     45   1.1      uch 
     46   1.1      uch #include <machine/bus.h>
     47   1.1      uch 
     48   1.1      uch #include <hpcmips/tx/tx39var.h>
     49   1.7      uch #include <hpcmips/tx/tx39icureg.h>
     50  1.17      uch #define	__TX39IO_PRIVATE
     51   1.5      uch #include <hpcmips/tx/tx39iovar.h>
     52   1.1      uch #include <hpcmips/tx/tx39ioreg.h>
     53   1.1      uch 
     54  1.11      uch #ifdef	TX39IO_DEBUG
     55  1.17      uch #define	DPRINTF_ENABLE
     56  1.17      uch #define	DPRINTF_DEBUG	tx39io_debug
     57   1.7      uch #endif
     58  1.11      uch #include <machine/debug.h>
     59   1.5      uch 
     60  1.19       he #ifdef ISSET
     61  1.19       he #undef ISSET
     62  1.19       he #endif
     63  1.17      uch #define	ISSET(x, s)	((x) & (1 << (s)))
     64   1.1      uch 
     65   1.6      uch int	tx39io_match(struct device *, struct cfdata *, void *);
     66   1.6      uch void	tx39io_attach(struct device *, struct device *, void *);
     67   1.1      uch 
     68  1.15  thorpej CFATTACH_DECL(tx39io, sizeof(struct tx39io_softc),
     69  1.15  thorpej     tx39io_match, tx39io_attach, NULL, NULL);
     70   1.1      uch 
     71   1.7      uch /* IO/MFIO common */
     72   1.8      uch static void port_intr_disestablish(hpcio_chip_t, hpcio_intr_handle_t);
     73   1.8      uch static void port_intr_clear(hpcio_chip_t, hpcio_intr_handle_t);
     74   1.7      uch /* MFIO */
     75   1.8      uch static void *mfio_intr_establish(hpcio_chip_t, int, int, int (*)(void *),
     76   1.8      uch     void *);
     77   1.8      uch static int mfio_in(hpcio_chip_t, int);
     78   1.8      uch static void mfio_out(hpcio_chip_t, int, int);
     79   1.8      uch static int mfio_intr_map(int *, int, int);
     80   1.8      uch static void mfio_dump(hpcio_chip_t);
     81   1.8      uch static void mfio_update(hpcio_chip_t);
     82   1.7      uch /* IO */
     83   1.8      uch static void *io_intr_establish(hpcio_chip_t, int, int, int (*)(void *),
     84   1.8      uch     void *);
     85   1.1      uch #ifdef TX391X
     86   1.8      uch static int tx391x_io_in(hpcio_chip_t, int);
     87   1.8      uch static void tx391x_io_out(hpcio_chip_t, int, int);
     88   1.8      uch static void tx391x_io_update(hpcio_chip_t);
     89   1.8      uch static int tx391x_io_intr_map(int *, int, int);
     90   1.7      uch #endif
     91   1.1      uch #ifdef TX392X
     92   1.8      uch static int tx392x_io_in(hpcio_chip_t, int);
     93   1.8      uch static void tx392x_io_out(hpcio_chip_t, int, int);
     94   1.8      uch static void tx392x_io_update(hpcio_chip_t);
     95   1.8      uch static int tx392x_io_intr_map(int *, int, int);
     96   1.8      uch #endif
     97   1.8      uch #if defined TX391X && defined TX392X
     98  1.17      uch #define	tx39_io_intr_map(t, s, p, m)					\
     99   1.8      uch 	(IS_TX391X(t)
    100   1.8      uch 	    ? tx391x_io_intr_map(s, p, m) : tx392x_io_intr_map(s, p, m))
    101   1.8      uch #elif defined TX391X
    102  1.17      uch #define	tx39io_intr_map(t, s, p, m)	tx391x_io_intr_map(s, p, m)
    103   1.8      uch #elif defined TX392X
    104  1.17      uch #define	tx39io_intr_map(t, s, p, m)	tx392x_io_intr_map(s, p, m)
    105   1.7      uch #endif
    106   1.8      uch static void io_dump(hpcio_chip_t);
    107   1.7      uch 
    108   1.7      uch static void __print_port_status(struct tx39io_port_status *, int);
    109   1.1      uch 
    110   1.1      uch int
    111   1.6      uch tx39io_match(struct device *parent, struct cfdata *cf, void *aux)
    112   1.1      uch {
    113   1.9      uch 	return (ATTACH_FIRST); /* 1st attach group of txsim */
    114   1.5      uch }
    115   1.5      uch 
    116   1.5      uch void
    117   1.6      uch tx39io_attach(struct device *parent, struct device *self, void *aux)
    118   1.5      uch {
    119   1.5      uch 	struct txsim_attach_args *ta = aux;
    120   1.7      uch 	struct tx39io_softc *sc = (void *)self;
    121   1.7      uch 	tx_chipset_tag_t tc;
    122   1.8      uch 	struct hpcio_chip *io_hc = &sc->sc_io_ops;
    123   1.8      uch 	struct hpcio_chip *mfio_hc = &sc->sc_mfio_ops;
    124  1.17      uch 
    125   1.7      uch 	tc = sc->sc_tc = ta->ta_tc;
    126   1.1      uch 
    127   1.5      uch 	printf("\n");
    128   1.7      uch 	sc->sc_stat_io_mask = ~(1 << 5); /* exclude Plum2 INT */
    129   1.7      uch 	sc->sc_stat_mfio_mask = ~(0x3|(0x3 << 23));
    130   1.7      uch 
    131   1.7      uch 	/* IO */
    132   1.8      uch 	io_hc->hc_chipid		= IO;
    133   1.8      uch 	io_hc->hc_name			= "IO";
    134   1.8      uch 	io_hc->hc_sc			= sc;
    135   1.8      uch 	io_hc->hc_intr_establish	= io_intr_establish;
    136   1.8      uch 	io_hc->hc_intr_disestablish	= port_intr_disestablish;
    137   1.8      uch 	io_hc->hc_intr_clear		= port_intr_clear;
    138   1.8      uch 	io_hc->hc_dump			= io_dump;
    139   1.7      uch 	if (IS_TX391X(tc)) {
    140   1.7      uch #ifdef TX391X
    141   1.8      uch 		io_hc->hc_portread	= tx391x_io_in;
    142   1.8      uch 		io_hc->hc_portwrite	= tx391x_io_out;
    143   1.8      uch 		io_hc->hc_update	= tx391x_io_update;
    144   1.7      uch #endif
    145   1.7      uch 	} else if (IS_TX392X(tc)) {
    146   1.7      uch #ifdef TX392X
    147   1.8      uch 		io_hc->hc_portread	= tx392x_io_in;
    148   1.8      uch 		io_hc->hc_portwrite	= tx392x_io_out;
    149   1.8      uch 		io_hc->hc_update	= tx392x_io_update;
    150   1.7      uch #endif
    151   1.7      uch 	}
    152   1.8      uch 	tx_conf_register_ioman(tc, io_hc);
    153   1.7      uch 
    154   1.7      uch 	/* MFIO */
    155   1.8      uch 	mfio_hc->hc_chipid		= MFIO;
    156   1.8      uch 	mfio_hc->hc_name		= "MFIO";
    157   1.8      uch 	mfio_hc->hc_sc			= sc;
    158   1.8      uch 	mfio_hc->hc_portread		= mfio_in;
    159   1.8      uch 	mfio_hc->hc_portwrite		= mfio_out;
    160   1.8      uch 	mfio_hc->hc_intr_establish	= mfio_intr_establish;
    161   1.8      uch 	mfio_hc->hc_intr_disestablish	= port_intr_disestablish;
    162   1.8      uch 	mfio_hc->hc_update		= mfio_update;
    163   1.8      uch 	mfio_hc->hc_dump		= mfio_dump;
    164   1.7      uch 
    165   1.8      uch 	tx_conf_register_ioman(tc, mfio_hc);
    166   1.7      uch 
    167   1.8      uch 	hpcio_update(io_hc);
    168   1.8      uch 	hpcio_update(mfio_hc);
    169   1.7      uch 
    170  1.11      uch #ifdef TX39IO_DEBUG
    171   1.8      uch 	hpcio_dump(io_hc);
    172   1.8      uch 	hpcio_dump(mfio_hc);
    173   1.7      uch 	printf("IO i0x%08x o0x%08x MFIO i0x%08x o0x%08x\n",
    174   1.7      uch 	       sc->sc_stat_io.in, sc->sc_stat_io.out,
    175   1.7      uch 	       sc->sc_stat_mfio.in, sc->sc_stat_mfio.out);
    176  1.11      uch #endif /* TX39IO_DEBUG */
    177   1.1      uch }
    178   1.1      uch 
    179  1.17      uch /*
    180  1.17      uch  * TX391X, TX392X common
    181   1.7      uch  */
    182   1.7      uch static void *
    183   1.8      uch io_intr_establish(hpcio_chip_t arg, int port, int mode, int (*func)(void *),
    184   1.8      uch     void *func_arg)
    185   1.5      uch {
    186   1.8      uch 	struct tx39io_softc *sc = arg->hc_sc;
    187   1.8      uch 	int src;
    188   1.8      uch 
    189   1.8      uch 	if (tx39io_intr_map(sc->sc_tc, &src, port, mode) != 0)
    190   1.8      uch 		return (0);
    191   1.8      uch 
    192   1.8      uch 	return (tx_intr_establish(sc->sc_tc, src, IST_EDGE, IPL_CLOCK, func,
    193   1.8      uch 	    func_arg));
    194   1.8      uch }
    195   1.8      uch 
    196   1.8      uch static void *
    197   1.8      uch mfio_intr_establish(hpcio_chip_t arg, int port, int mode, int (*func)(void *),
    198   1.8      uch     void *func_arg)
    199   1.8      uch {
    200   1.8      uch 	struct tx39io_softc *sc = arg->hc_sc;
    201   1.8      uch 	int src;
    202   1.8      uch 
    203   1.8      uch 	if (mfio_intr_map(&src, port, mode) != 0)
    204   1.8      uch 		return (0);
    205  1.17      uch 
    206   1.8      uch 	return (tx_intr_establish(sc->sc_tc, src, IST_EDGE, IPL_CLOCK, func,
    207   1.8      uch 	    func_arg));
    208   1.5      uch }
    209   1.5      uch 
    210   1.7      uch static void
    211   1.8      uch port_intr_disestablish(hpcio_chip_t arg, void *ih)
    212   1.5      uch {
    213   1.8      uch 	struct tx39io_softc *sc = arg->hc_sc;
    214   1.7      uch 	tx_intr_disestablish(sc->sc_tc, ih);
    215   1.7      uch }
    216   1.5      uch 
    217   1.7      uch static void
    218   1.8      uch port_intr_clear(hpcio_chip_t arg, void *ih)
    219   1.7      uch {
    220   1.8      uch }
    221   1.8      uch 
    222   1.8      uch static void
    223   1.8      uch mfio_out(hpcio_chip_t arg, int port, int onoff)
    224   1.8      uch {
    225   1.8      uch 	struct tx39io_softc *sc = arg->hc_sc;
    226   1.7      uch 	tx_chipset_tag_t tc;
    227   1.7      uch 	txreg_t reg, pos;
    228   1.5      uch 
    229  1.11      uch 	DPRINTF("port #%d\n", port);
    230   1.7      uch 	tc = sc->sc_tc;
    231   1.7      uch 	/* MFIO */
    232   1.7      uch 	pos = 1 << port;
    233   1.7      uch #ifdef DIAGNOSTIC
    234   1.7      uch 	if (!(sc->sc_stat_mfio.dir & pos)) {
    235  1.13   provos 		panic("%s: MFIO%d is not output port.",
    236   1.7      uch 		      sc->sc_dev.dv_xname, port);
    237   1.5      uch 	}
    238   1.7      uch #endif
    239   1.7      uch 	reg = tx_conf_read(tc, TX39_IOMFIODATAOUT_REG);
    240   1.7      uch 	if (onoff)
    241   1.7      uch 		reg |= pos;
    242   1.7      uch 	else
    243   1.7      uch 		reg &= ~pos;
    244   1.7      uch 	tx_conf_write(tc, TX39_IOMFIODATAOUT_REG, reg);
    245   1.7      uch }
    246   1.7      uch 
    247   1.7      uch static int
    248   1.8      uch mfio_in(hpcio_chip_t arg, int port)
    249   1.7      uch {
    250   1.8      uch 	struct tx39io_softc *sc __attribute__((__unused__)) = arg->hc_sc ;
    251   1.8      uch 
    252  1.11      uch 	DPRINTF("port #%d\n", port);
    253   1.9      uch 	return (tx_conf_read(sc->sc_tc, TX39_IOMFIODATAIN_REG) & (1 << port));
    254   1.5      uch }
    255   1.5      uch 
    256   1.8      uch static int
    257   1.8      uch mfio_intr_map(int *src, int port, int mode)
    258   1.1      uch {
    259   1.8      uch 
    260   1.8      uch 	if (mode & HPCIO_INTR_POSEDGE) {
    261   1.8      uch 		*src = MAKEINTR(3, (1 << port));
    262   1.8      uch 		return (0);
    263   1.8      uch 	} else if (mode & HPCIO_INTR_NEGEDGE) {
    264   1.8      uch 		*src = MAKEINTR(4, (1 << port));
    265   1.8      uch 		return (0);
    266   1.8      uch 	}
    267  1.17      uch 
    268  1.11      uch 	DPRINTF("invalid interrupt mode.\n");
    269   1.8      uch 
    270   1.8      uch 	return (1);
    271   1.7      uch }
    272   1.5      uch 
    273   1.7      uch static void
    274   1.8      uch mfio_update(hpcio_chip_t arg)
    275   1.7      uch {
    276   1.8      uch 	struct tx39io_softc *sc = arg->hc_sc;
    277   1.7      uch 	tx_chipset_tag_t tc = sc->sc_tc;
    278   1.7      uch 	struct tx39io_port_status *stat_mfio = &sc->sc_stat_mfio;
    279   1.7      uch 
    280   1.7      uch 	sc->sc_ostat_mfio = *stat_mfio; /* save old status */
    281   1.7      uch 	stat_mfio->dir		= tx_conf_read(tc, TX39_IOMFIODATADIR_REG);
    282   1.7      uch 	stat_mfio->in		= tx_conf_read(tc, TX39_IOMFIODATAIN_REG);
    283   1.7      uch 	stat_mfio->out		= tx_conf_read(tc, TX39_IOMFIODATAOUT_REG);
    284   1.7      uch 	stat_mfio->power	= tx_conf_read(tc, TX39_IOMFIOPOWERDWN_REG);
    285   1.7      uch 	stat_mfio->u.select	= tx_conf_read(tc, TX39_IOMFIODATASEL_REG);
    286   1.1      uch }
    287   1.1      uch 
    288   1.7      uch #ifdef TX391X
    289  1.17      uch /*
    290  1.17      uch  * TMPR3912 specific
    291   1.7      uch  */
    292   1.1      uch int
    293   1.8      uch tx391x_io_in(hpcio_chip_t arg, int port)
    294   1.1      uch {
    295   1.8      uch 	struct tx39io_softc *sc __attribute__((__unused__)) = arg->hc_sc;
    296   1.7      uch 	txreg_t reg = tx_conf_read(sc->sc_tc, TX39_IOCTRL_REG);
    297   1.5      uch 
    298  1.11      uch 	DPRINTF("port #%d\n", port);
    299   1.9      uch 	return  (TX391X_IOCTRL_IODIN(reg) & (1 << port));
    300   1.1      uch }
    301   1.1      uch 
    302   1.1      uch void
    303   1.8      uch tx391x_io_out(hpcio_chip_t arg, int port, int onoff)
    304   1.1      uch {
    305   1.8      uch 	struct tx39io_softc *sc = arg->hc_sc;
    306   1.7      uch 	tx_chipset_tag_t tc;
    307   1.7      uch 	txreg_t reg, pos, iostat;
    308   1.7      uch 
    309   1.7      uch 	KASSERT(sc);
    310  1.11      uch 	DPRINTF("port #%d\n", port);
    311   1.7      uch 
    312   1.7      uch 	tc = sc->sc_tc;
    313   1.7      uch 
    314  1.17      uch 	/* IO [0:6] */
    315   1.7      uch 	pos = 1 << port;
    316   1.7      uch #ifdef DIAGNOSTIC
    317   1.7      uch 	if (!(sc->sc_stat_io.dir & pos))
    318  1.13   provos 		panic("%s: IO%d is not output port.", sc->sc_dev.dv_xname,
    319  1.10      uch 		      port);
    320   1.1      uch #endif
    321   1.7      uch 	reg = tx_conf_read(tc, TX39_IOCTRL_REG);
    322   1.7      uch 	iostat = TX391X_IOCTRL_IODOUT(reg);
    323   1.7      uch 	if (onoff)
    324   1.7      uch 		iostat |= pos;
    325   1.7      uch 	else
    326   1.7      uch 		iostat &= ~pos;
    327   1.7      uch 	TX391X_IOCTRL_IODOUT_CLR(reg);
    328   1.7      uch 	reg = TX391X_IOCTRL_IODOUT_SET(reg, iostat);
    329   1.7      uch 	tx_conf_write(tc, TX39_IOCTRL_REG, reg);
    330   1.7      uch }
    331   1.1      uch 
    332   1.7      uch void
    333   1.8      uch tx391x_io_update(hpcio_chip_t arg)
    334   1.7      uch {
    335   1.8      uch 	struct tx39io_softc *sc = arg->hc_sc;
    336   1.7      uch 	struct tx39io_port_status *stat_io = &sc->sc_stat_io;
    337   1.7      uch 	tx_chipset_tag_t tc = sc->sc_tc;
    338   1.7      uch 	txreg_t reg;
    339   1.7      uch 
    340   1.7      uch 	/* IO [0:6] */
    341   1.7      uch 	sc->sc_ostat_io = *stat_io; /* save old status */
    342   1.1      uch 	reg = tx_conf_read(tc, TX39_IOCTRL_REG);
    343   1.7      uch 	stat_io->dir		= TX391X_IOCTRL_IODIREC(reg);
    344   1.7      uch 	stat_io->in		= TX391X_IOCTRL_IODIN(reg);
    345  1.17      uch 	stat_io->out		= TX391X_IOCTRL_IODOUT(reg);
    346   1.7      uch 	stat_io->u.debounce	= TX391X_IOCTRL_IODEBSEL(reg);
    347   1.7      uch 	reg = tx_conf_read(tc, TX39_IOIOPOWERDWN_REG);
    348   1.7      uch 	stat_io->power = TX391X_IOIOPOWERDWN_IOPD(reg);
    349   1.7      uch }
    350   1.8      uch 
    351   1.8      uch int
    352   1.8      uch tx391x_io_intr_map(int *src, int port, int mode)
    353   1.8      uch {
    354   1.8      uch 
    355   1.8      uch 	if (mode & HPCIO_INTR_POSEDGE) {
    356   1.8      uch 		*src = MAKEINTR(5, (1 << (port + 7)));
    357   1.8      uch 		return (0);
    358   1.8      uch 	} else if (mode & HPCIO_INTR_NEGEDGE) {
    359   1.8      uch 		*src = MAKEINTR(5, (1 << port));
    360   1.8      uch 		return (0);
    361   1.8      uch 	}
    362  1.17      uch 
    363  1.11      uch 	DPRINTF("invalid interrupt mode.\n");
    364   1.8      uch 
    365   1.8      uch 	return (1);
    366   1.8      uch }
    367   1.1      uch #endif /* TX391X */
    368   1.7      uch 
    369   1.1      uch #ifdef TX392X
    370  1.17      uch /*
    371   1.7      uch  * TMPR3922 specific
    372   1.7      uch  */
    373   1.7      uch int
    374   1.8      uch tx392x_io_in(hpcio_chip_t arg, int port)
    375   1.7      uch {
    376   1.8      uch 	struct tx39io_softc *sc __attribute__((__unused__)) = arg->hc_sc;
    377   1.7      uch 	txreg_t reg = tx_conf_read(sc->sc_tc, TX392X_IODATAINOUT_REG);
    378   1.8      uch 
    379  1.11      uch 	DPRINTF("port #%d\n", port);
    380  1.17      uch 
    381   1.9      uch 	return (TX392X_IODATAINOUT_DIN(reg) & (1 << port));
    382   1.7      uch }
    383   1.7      uch 
    384   1.7      uch void
    385   1.8      uch tx392x_io_out(hpcio_chip_t arg, int port, int onoff)
    386   1.7      uch {
    387   1.8      uch 	struct tx39io_softc *sc = arg->hc_sc;
    388   1.7      uch #ifdef DIAGNOSTIC
    389   1.7      uch 	const char *devname =  sc->sc_dev.dv_xname;
    390   1.7      uch #endif
    391   1.7      uch 	tx_chipset_tag_t tc = sc->sc_tc;
    392   1.7      uch 	txreg_t reg, pos, iostat;
    393   1.7      uch 
    394  1.11      uch 	DPRINTF("port #%d\n", port);
    395   1.7      uch 	/* IO [0:15] */
    396   1.7      uch 	pos = 1 << port;
    397   1.7      uch #ifdef DIAGNOSTIC
    398  1.12      uch 	if (!(sc->sc_stat_io.dir & pos))
    399  1.13   provos 		panic("%s: IO%d is not output port.", devname, port);
    400   1.7      uch #endif
    401   1.7      uch 	reg = tx_conf_read(tc, TX392X_IODATAINOUT_REG);
    402   1.7      uch 	iostat = TX392X_IODATAINOUT_DOUT(reg);
    403   1.7      uch 	if (onoff)
    404   1.7      uch 		iostat |= pos;
    405   1.7      uch 	else
    406   1.7      uch 		iostat &= ~pos;
    407   1.7      uch 	TX392X_IODATAINOUT_DOUT_CLR(reg);
    408   1.7      uch 	reg = TX392X_IODATAINOUT_DOUT_SET(reg, iostat);
    409   1.7      uch 	tx_conf_write(tc, TX392X_IODATAINOUT_REG, reg);
    410   1.7      uch }
    411   1.7      uch 
    412   1.8      uch int
    413   1.8      uch tx392x_io_intr_map(int *src, int port, int mode)
    414   1.7      uch {
    415   1.8      uch 
    416   1.8      uch 	if (mode & HPCIO_INTR_POSEDGE) {
    417   1.8      uch 		*src = MAKEINTR(8, (1 << (port + 16)));
    418   1.8      uch 		return (0);
    419   1.8      uch 	} else if (mode & HPCIO_INTR_NEGEDGE) {
    420   1.8      uch 		*src = MAKEINTR(8, (1 << port));
    421   1.8      uch 		return (0);
    422   1.8      uch 	}
    423  1.17      uch 
    424  1.11      uch 	DPRINTF("invalid interrupt mode.\n");
    425   1.8      uch 
    426   1.8      uch 	return (1);
    427   1.7      uch }
    428   1.7      uch 
    429   1.7      uch void
    430   1.8      uch tx392x_io_update(hpcio_chip_t arg)
    431   1.7      uch {
    432   1.8      uch 	struct tx39io_softc *sc = arg->hc_sc;
    433   1.7      uch 	struct tx39io_port_status *stat_io = &sc->sc_stat_io;
    434   1.7      uch 	tx_chipset_tag_t tc = sc->sc_tc;
    435   1.7      uch 	txreg_t reg;
    436   1.7      uch 
    437   1.7      uch 	sc->sc_ostat_io = *stat_io; /* save old status */
    438   1.7      uch 	/* IO [0:15] */
    439   1.7      uch 	reg = tx_conf_read(tc, TX39_IOCTRL_REG);
    440   1.7      uch 	stat_io->dir		= TX392X_IOCTRL_IODIREC(reg);
    441   1.7      uch 	stat_io->u.debounce	= TX392X_IOCTRL_IODEBSEL(reg);
    442   1.7      uch 	reg = tx_conf_read(tc, TX392X_IODATAINOUT_REG);
    443   1.7      uch 	stat_io->in		= TX392X_IODATAINOUT_DIN(reg);
    444  1.17      uch 	stat_io->out		= TX392X_IODATAINOUT_DOUT(reg);
    445   1.7      uch 	reg = tx_conf_read(tc, TX39_IOIOPOWERDWN_REG);
    446   1.7      uch 	stat_io->power = TX392X_IOIOPOWERDWN_IOPD(reg);
    447   1.7      uch }
    448   1.7      uch 
    449   1.1      uch #endif /* TX392X */
    450   1.7      uch 
    451   1.7      uch static const char *line = "--------------------------------------------------"
    452   1.7      uch "------------\n";
    453   1.7      uch static void
    454   1.8      uch mfio_dump(hpcio_chip_t arg)
    455   1.7      uch {
    456   1.8      uch 	struct tx39io_softc *sc = arg->hc_sc;
    457   1.7      uch 	const struct tx39io_mfio_map *map = tx39io_get_mfio_map(tc);
    458   1.7      uch 	struct tx39io_port_status *stat;
    459   1.7      uch 	int i;
    460  1.17      uch 
    461   1.7      uch 	printf("%s", line);
    462   1.7      uch 	stat = &sc->sc_stat_mfio;
    463   1.1      uch 	for (i = TX39_IO_MFIO_MAX - 1; i >= 0 ; i--) {
    464   1.7      uch 		/* MFIO port has power down state */
    465   1.1      uch 		printf("MFIO %2d:     -       ", i);
    466   1.7      uch 		__print_port_status(stat, i);
    467  1.17      uch 		printf(ISSET(stat->u.select, i) ? "  MFIO(%s)\n" : "  %s\n",
    468   1.7      uch 		       map[i].std_pin_name);
    469   1.1      uch 	}
    470   1.7      uch 	printf("%s", line);
    471   1.1      uch }
    472   1.1      uch 
    473   1.7      uch static void
    474   1.8      uch io_dump(hpcio_chip_t arg)
    475   1.1      uch {
    476   1.8      uch 	struct tx39io_softc *sc = arg->hc_sc;
    477   1.7      uch 	struct tx39io_port_status *stat;
    478  1.17      uch 	int i;
    479   1.7      uch 
    480   1.7      uch 	printf("%s	 Debounce Direction DataOut DataIn PowerDown Select"
    481   1.7      uch 	       "\n%s", line, line);
    482   1.7      uch 	stat = &sc->sc_stat_io;
    483   1.7      uch 	for (i = tx39io_get_io_max(tc) - 1; i >= 0 ; i--) {
    484   1.7      uch 		/* IO port has debouncer */
    485   1.7      uch 		printf("IO   %2d:    %s      ", i,
    486   1.7      uch 		       ISSET(stat->u.debounce, i) ? "On " : "Off");
    487   1.7      uch 		__print_port_status(stat, i);
    488   1.7      uch 		printf("    -\n");
    489   1.1      uch 	}
    490   1.7      uch }
    491   1.6      uch 
    492   1.7      uch static void
    493   1.7      uch __print_port_status(struct tx39io_port_status *stat, int i)
    494   1.7      uch {
    495   1.7      uch 	printf("%s       %d       %d     %s",
    496   1.7      uch 	       ISSET(stat->dir, i) ? "Out" : "In ",
    497   1.7      uch 	       ISSET(stat->out, i) ? 1 : 0,
    498   1.7      uch 	       ISSET(stat->in, i) ? 1 : 0,
    499   1.7      uch 	       ISSET(stat->power, i) ? "Down  ": "Active");
    500   1.7      uch }
    501