Home | History | Annotate | Line # | Download | only in dev
plumicu.c revision 1.4
      1 /*	$NetBSD: plumicu.c,v 1.4 2001/09/15 12:47:05 uch Exp $ */
      2 
      3 /*-
      4  * Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by UCHIYAMA Yasushi.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  * 3. All advertising materials mentioning features or use of this software
     19  *    must display the following acknowledgement:
     20  *        This product includes software developed by the NetBSD
     21  *        Foundation, Inc. and its contributors.
     22  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  *    contributors may be used to endorse or promote products derived
     24  *    from this software without specific prior written permission.
     25  *
     26  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  * POSSIBILITY OF SUCH DAMAGE.
     37  */
     38 
     39 #include "opt_tx39_debug.h"
     40 
     41 #include <sys/param.h>
     42 #include <sys/systm.h>
     43 #include <sys/device.h>
     44 
     45 #include <machine/bus.h>
     46 #include <machine/intr.h>
     47 
     48 #include <hpcmips/tx/tx39var.h>
     49 #include <hpcmips/dev/plumvar.h>
     50 #include <hpcmips/dev/plumicuvar.h>
     51 #include <hpcmips/dev/plumicureg.h>
     52 
     53 #ifdef PLUMICUDEBUG
     54 #define	DPRINTF(arg) printf arg
     55 #else
     56 #define	DPRINTF(arg)
     57 #endif
     58 
     59 int plumicu_match(struct device *, struct cfdata *, void *);
     60 void plumicu_attach(struct device *, struct device *, void *);
     61 int plumicu_intr(void *);
     62 
     63 static __inline__ void plum_di(plum_chipset_tag_t);
     64 static __inline__ void plum_ei(plum_chipset_tag_t);
     65 
     66 const struct plum_intr_ctrl {
     67 	plumreg_t	ic_ackpat1;
     68 	plumreg_t	ic_ackpat2;	int	ic_ackreg2;
     69 	plumreg_t	ic_ienpat;	int	ic_ienreg;
     70 	plumreg_t	ic_senpat;	int	ic_senreg;
     71 } pi_ctrl[PLUM_INTR_MAX] = {
     72 	[PLUM_INT_C1IO]	= {PLUM_INT_INTSTA_PCCINT,
     73 			   PLUM_INT_PCCINTS_C1IO,	PLUM_INT_PCCINTS_REG,
     74 			   PLUM_INT_PCCIEN_IENC1IO,	PLUM_INT_PCCIEN_REG,
     75 			   PLUM_INT_PCCIEN_SENC1IO,	PLUM_INT_PCCIEN_REG
     76 	},
     77 	[PLUM_INT_C1RI] = {PLUM_INT_INTSTA_PCCINT,
     78 			   PLUM_INT_PCCINTS_C1RI,	PLUM_INT_PCCINTS_REG,
     79 			   PLUM_INT_PCCIEN_IENC1RI,	PLUM_INT_PCCIEN_REG,
     80 			   PLUM_INT_PCCIEN_SENC1RI,	PLUM_INT_PCCIEN_REG
     81 	},
     82 	[PLUM_INT_C1SC] = {PLUM_INT_INTSTA_C1SCINT,	0, 0, 0, 0, 0, 0},
     83 	[PLUM_INT_C2IO] = {PLUM_INT_INTSTA_PCCINT,
     84 			   PLUM_INT_PCCINTS_C2IO,	PLUM_INT_PCCINTS_REG,
     85 			   PLUM_INT_PCCIEN_IENC2IO,	PLUM_INT_PCCIEN_REG,
     86 			   PLUM_INT_PCCIEN_SENC2IO,	PLUM_INT_PCCIEN_REG
     87 	},
     88 	[PLUM_INT_C2RI] = {PLUM_INT_INTSTA_PCCINT,
     89 			   PLUM_INT_PCCINTS_C2RI,	PLUM_INT_PCCINTS_REG,
     90 			   PLUM_INT_PCCIEN_IENC2RI,	PLUM_INT_PCCIEN_REG,
     91 			   PLUM_INT_PCCIEN_SENC2RI,	PLUM_INT_PCCIEN_REG
     92 	},
     93 	[PLUM_INT_C2SC] = {PLUM_INT_INTSTA_C2SCINT,	0, 0, 0, 0, 0, 0},
     94 	[PLUM_INT_DISP] = {PLUM_INT_INTSTA_DISPINT,	0, 0, 0, 0, 0, 0},
     95 	[PLUM_INT_USB]  = {PLUM_INT_INTSTA_USBINT,
     96 			   0, 0,
     97 			   PLUM_INT_USBINTEN_IEN,	PLUM_INT_USBINTEN_REG,
     98 			   0, 0
     99 	},
    100 	[PLUM_INT_USBWAKE] = {PLUM_INT_INTSTA_USBWAKE,
    101 			   0, 0,
    102 			   PLUM_INT_USBINTEN_WIEN,	PLUM_INT_USBINTEN_REG,
    103 			   0, 0
    104 	},
    105 	[PLUM_INT_SM]	= {PLUM_INT_INTSTA_SMINT,
    106 			   0, 0,
    107 			   PLUM_INT_SMIEN,		PLUM_INT_SMIEN_REG,
    108 			   0, 0
    109 	},
    110 	[PLUM_INT_EXT5IO0] = {PLUM_INT_INTSTA_EXTINT,
    111 			   PLUM_INT_EXTINTS_IO5INT0,	PLUM_INT_EXTINTS_REG,
    112 			   PLUM_INT_EXTIEN_IENIO5INT0,	PLUM_INT_EXTIEN_REG,
    113 			   PLUM_INT_EXTIEN_SENIO5INT0,	PLUM_INT_EXTIEN_REG,
    114 	},
    115 	[PLUM_INT_EXT5IO1] = {PLUM_INT_INTSTA_EXTINT,
    116 			   PLUM_INT_EXTINTS_IO5INT1,	PLUM_INT_EXTINTS_REG,
    117 			   PLUM_INT_EXTIEN_IENIO5INT1,	PLUM_INT_EXTIEN_REG,
    118 			   PLUM_INT_EXTIEN_SENIO5INT1,	PLUM_INT_EXTIEN_REG,
    119 	},
    120 	[PLUM_INT_EXT5IO2] = {PLUM_INT_INTSTA_EXTINT,
    121 			   PLUM_INT_EXTINTS_IO5INT2,	PLUM_INT_EXTINTS_REG,
    122 			   PLUM_INT_EXTIEN_IENIO5INT2,	PLUM_INT_EXTIEN_REG,
    123 			   PLUM_INT_EXTIEN_SENIO5INT2,	PLUM_INT_EXTIEN_REG,
    124 	},
    125 	[PLUM_INT_EXT5IO3] = {PLUM_INT_INTSTA_EXTINT,
    126 			   PLUM_INT_EXTINTS_IO5INT3,	PLUM_INT_EXTINTS_REG,
    127 			   PLUM_INT_EXTIEN_IENIO5INT0,	PLUM_INT_EXTIEN_REG,
    128 			   PLUM_INT_EXTIEN_SENIO5INT0,	PLUM_INT_EXTIEN_REG,
    129 	},
    130 	[PLUM_INT_EXT3IO0] = {PLUM_INT_INTSTA_EXTINT,
    131 			   PLUM_INT_EXTINTS_IO3INT0,	PLUM_INT_EXTINTS_REG,
    132 			   PLUM_INT_EXTIEN_IENIO3INT0,	PLUM_INT_EXTIEN_REG,
    133 			   PLUM_INT_EXTIEN_SENIO3INT0,	PLUM_INT_EXTIEN_REG,
    134 	},
    135 	[PLUM_INT_EXT3IO1] = {PLUM_INT_INTSTA_EXTINT,
    136 			   PLUM_INT_EXTINTS_IO3INT1,	PLUM_INT_EXTINTS_REG,
    137 			   PLUM_INT_EXTIEN_IENIO3INT1,	PLUM_INT_EXTIEN_REG,
    138 			   PLUM_INT_EXTIEN_SENIO3INT1,	PLUM_INT_EXTIEN_REG,
    139 	}
    140 };
    141 
    142 struct plum_intr_entry {
    143 	int pi_enabled;
    144 	int pi_line;
    145 	int (*pi_fun)(void *);
    146 	void *pi_arg;
    147 	const struct plum_intr_ctrl *pi_ctrl;
    148 };
    149 
    150 struct plumicu_softc {
    151 	struct	device		sc_dev;
    152 	plum_chipset_tag_t	sc_pc;
    153 	bus_space_tag_t		sc_regt;
    154 	bus_space_handle_t	sc_regh;
    155 	void			*sc_ih;
    156 	int			sc_enable_count;
    157 	struct plum_intr_entry  sc_intr[PLUM_INTR_MAX];
    158 };
    159 
    160 struct cfattach plumicu_ca = {
    161 	sizeof(struct plumicu_softc), plumicu_match, plumicu_attach
    162 };
    163 
    164 #ifdef PLUMICUDEBUG
    165 void plumicu_dump(struct plumicu_softc *);
    166 #endif
    167 
    168 int
    169 plumicu_match(struct device *parent, struct cfdata *cf, void *aux)
    170 {
    171 
    172 	return (2); /* 1st attach group */
    173 }
    174 
    175 void
    176 plumicu_attach(struct device *parent, struct device *self, void *aux)
    177 {
    178 	struct plum_attach_args *pa = aux;
    179 	struct plumicu_softc *sc = (void*)self;
    180 	const struct plum_intr_ctrl *pic;
    181 	bus_space_tag_t regt;
    182 	bus_space_handle_t regh;
    183 	plumreg_t reg;
    184 	int i;
    185 
    186 	sc->sc_pc	= pa->pa_pc;
    187 	sc->sc_regt	= pa->pa_regt;
    188 
    189 	/* map plum2 interrupt controller register space */
    190 	if (bus_space_map(sc->sc_regt, PLUM_INT_REGBASE,
    191 			  PLUM_INT_REGSIZE, 0, &sc->sc_regh)) {
    192 		printf(":interrupt register map failed\n");
    193 		return;
    194 	}
    195 #ifdef PLUMICUDEBUG
    196 	plumicu_dump(sc);
    197 #endif
    198 	/* disable all interrupt */
    199 	regt = sc->sc_regt;
    200 	regh = sc->sc_regh;
    201 	for (i = 0; i < PLUM_INTR_MAX; i++) {
    202 		pic = &pi_ctrl[i];
    203 		if (pic->ic_ienreg) {
    204 			reg = plum_conf_read(regt, regh, pic->ic_ienreg);
    205 			reg &= ~pic->ic_ienpat;
    206 			plum_conf_write(regt, regh, pic->ic_ienreg, reg);
    207 		}
    208 		if (pic->ic_senreg) {
    209 			reg = plum_conf_read(regt, regh, pic->ic_senreg);
    210 			reg &= ~pic->ic_senpat;
    211 			plum_conf_write(regt, regh, pic->ic_senreg, reg);
    212 		}
    213 	}
    214 
    215 	/* register handle to plum_chipset_tag */
    216 	plum_conf_register_intr(sc->sc_pc, (void*)sc);
    217 
    218 	/* disable interrupt redirect to TX39 core */
    219 	plum_di(sc->sc_pc);
    220 
    221 	if (!(sc->sc_ih = tx_intr_establish(sc->sc_pc->pc_tc, pa->pa_irq,
    222 					    IST_EDGE, IPL_BIO,
    223 					    plumicu_intr, sc))) {
    224 		printf(": can't establish interrupt\n");
    225 	}
    226 	printf("\n");
    227 }
    228 
    229 __inline__ void
    230 plum_di(plum_chipset_tag_t pc)
    231 {
    232 	struct plumicu_softc *sc = pc->pc_intrt;
    233 
    234 	plum_conf_write(sc->sc_regt, sc->sc_regh, PLUM_INT_INTIEN_REG, 0);
    235 }
    236 
    237 __inline__ void
    238 plum_ei(plum_chipset_tag_t pc)
    239 {
    240 	struct plumicu_softc *sc = pc->pc_intrt;
    241 
    242 	plum_conf_write(sc->sc_regt, sc->sc_regh, PLUM_INT_INTIEN_REG,
    243 			PLUM_INT_INTIEN);
    244 }
    245 
    246 void*
    247 plum_intr_establish(plum_chipset_tag_t pc, int line, int mode, int level,
    248     int (*ih_fun)(void *), void *ih_arg)
    249 {
    250 	struct plumicu_softc *sc = pc->pc_intrt;
    251 	bus_space_tag_t regt = sc->sc_regt;
    252 	bus_space_handle_t regh = sc->sc_regh;
    253 	plumreg_t reg;
    254 	struct plum_intr_entry *pi;
    255 
    256 	if (!LEGAL_PRUM_INTR(line)) {
    257 		panic("plum_intr_establish: bogus interrupt line");
    258 	}
    259 
    260 	pi = &sc->sc_intr[line];
    261 	pi->pi_line = line;
    262 	pi->pi_fun  = ih_fun;
    263 	pi->pi_arg  = ih_arg;
    264 	pi->pi_ctrl = &pi_ctrl[line];
    265 
    266 	/* Enable interrupt */
    267 
    268 	/* status enable */
    269 	if (pi->pi_ctrl->ic_senreg) {
    270 		reg = plum_conf_read(regt, regh, pi->pi_ctrl->ic_senreg);
    271 		reg |= pi->pi_ctrl->ic_senpat;
    272 		plum_conf_write(regt, regh, pi->pi_ctrl->ic_senreg, reg);
    273 	}
    274 	/* interrupt enable */
    275 	if (pi->pi_ctrl->ic_ienreg) {
    276 		reg = plum_conf_read(regt, regh, pi->pi_ctrl->ic_ienreg);
    277 		reg |= pi->pi_ctrl->ic_ienpat;
    278 		plum_conf_write(regt, regh, pi->pi_ctrl->ic_ienreg, reg);
    279 	}
    280 
    281 	/* Enable redirect to TX39 core */
    282 	DPRINTF(("plum_intr_establish: %d (count=%d)\n", line,
    283 		 sc->sc_enable_count));
    284 
    285 	if (sc->sc_enable_count++ == 0)
    286 		plum_ei(pc);
    287 
    288 	pi->pi_enabled = 1;
    289 
    290 	return (ih_fun);
    291 }
    292 
    293 void
    294 plum_intr_disestablish(plum_chipset_tag_t pc, void *arg)
    295 {
    296 	struct plumicu_softc *sc = pc->pc_intrt;
    297 	bus_space_tag_t regt = sc->sc_regt;
    298 	bus_space_handle_t regh = sc->sc_regh;
    299 	plumreg_t reg;
    300 	struct plum_intr_entry *pi;
    301 	int i;
    302 
    303 	sc = pc->pc_intrt;
    304 
    305 	for (i = 0; i < PLUM_INTR_MAX; i++) {
    306 		pi = &sc->sc_intr[i];
    307 		if (pi->pi_fun != arg)
    308 			continue;
    309 		DPRINTF(("plum_intr_disestablish: %d (count=%d)\n",
    310 			 pi->pi_line, sc->sc_enable_count - 1));
    311 		goto found;
    312 	}
    313 	panic("plum_intr_disestablish: can't find entry.");
    314 	/* NOTREACHED */
    315  found:
    316 	pi->pi_enabled = 0;
    317 	/* Disable interrupt */
    318 	if (pi->pi_ctrl->ic_ienreg) {
    319 		reg = plum_conf_read(regt, regh, pi->pi_ctrl->ic_ienreg);
    320 		reg &= ~(pi->pi_ctrl->ic_ienpat);
    321 		plum_conf_write(regt, regh, pi->pi_ctrl->ic_ienreg, reg);
    322 	}
    323 	if (pi->pi_ctrl->ic_senreg) {
    324 		reg = plum_conf_read(regt, regh, pi->pi_ctrl->ic_senreg);
    325 		reg &= ~(pi->pi_ctrl->ic_senpat);
    326 		plum_conf_write(regt, regh, pi->pi_ctrl->ic_senreg, reg);
    327 	}
    328 
    329 	/* Disable/Enable interrupt redirect to TX39 core */
    330 	if (--sc->sc_enable_count == 0)
    331 		plum_di(pc);
    332 }
    333 
    334 int
    335 plumicu_intr(void *arg)
    336 {
    337 	struct plumicu_softc *sc = arg;
    338 	bus_space_tag_t regt = sc->sc_regt;
    339 	bus_space_handle_t regh = sc->sc_regh;
    340 	plumreg_t reg1, reg2, reg_ext, reg_pccard;
    341 	int i;
    342 
    343 	plum_di(sc->sc_pc);
    344 	/* read level 1 status */
    345 	reg1 = plum_conf_read(regt, regh, PLUM_INT_INTSTA_REG);
    346 
    347 	/* read level 2 status and acknowledge */
    348 	reg_ext = plum_conf_read(regt, regh, PLUM_INT_EXTINTS_REG);
    349 	plum_conf_write(regt, regh, PLUM_INT_EXTINTS_REG, reg_ext);
    350 
    351 	reg_pccard = plum_conf_read(regt, regh, PLUM_INT_PCCINTS_REG);
    352 	plum_conf_write(regt, regh, PLUM_INT_PCCINTS_REG, reg_pccard);
    353 
    354 	for (i = 0; i < PLUM_INTR_MAX; i++) {
    355 		register struct plum_intr_entry *pi;
    356 		register const struct plum_intr_ctrl *pic = &pi_ctrl[i];
    357 
    358 		if (!(pic->ic_ackpat1 & reg1))
    359 			continue;
    360 
    361 		pi = &sc->sc_intr[i];
    362 		if (!pi->pi_enabled)
    363 			continue;
    364 
    365 		if (pic->ic_ackreg2 == 0) {
    366 			(*pi->pi_fun)(pi->pi_arg);
    367 			continue;
    368 		}
    369 
    370 		reg2 = pic->ic_ackreg2 == PLUM_INT_PCCINTS_REG
    371 			? reg_pccard : reg_ext;
    372 
    373 		if (pic->ic_ackpat2 & reg2)
    374 			(*pi->pi_fun)(pi->pi_arg);
    375 	}
    376 	plum_ei(sc->sc_pc);
    377 
    378 	return (0);
    379 }
    380 
    381 #ifdef PLUMICUDEBUG
    382 void
    383 plumicu_dump(struct plumicu_softc *sc)
    384 {
    385 	bus_space_tag_t regt = sc->sc_regt;
    386 	bus_space_handle_t regh = sc->sc_regh;
    387 	plumreg_t reg;
    388 
    389 	printf("status:");
    390 	reg = plum_conf_read(regt, regh, PLUM_INT_INTSTA_REG);
    391 	bitdisp(reg);
    392 	printf("ExtIO\n");
    393 	printf("status:");
    394 	reg = plum_conf_read(regt, regh, PLUM_INT_EXTINTS_REG);
    395 	bitdisp(reg);
    396 	printf("enable:");
    397 	reg = plum_conf_read(regt, regh, PLUM_INT_EXTIEN_REG);
    398  	bitdisp(reg);
    399 
    400 }
    401 #endif /* PLUMICUDEBUG */
    402