NetBSD/sys/arch/hpcmips/dev/plumicu.c

400 lines
11 KiB
C
Raw Normal View History

/* $NetBSD: plumicu.c,v 1.5 2002/01/29 18:53:10 uch Exp $ */
1999-11-21 09:50:26 +03:00
2001-09-15 16:47:04 +04:00
/*-
* Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
1999-11-21 09:50:26 +03:00
* All rights reserved.
*
2001-09-15 16:47:04 +04:00
* This code is derived from software contributed to The NetBSD Foundation
* by UCHIYAMA Yasushi.
*
1999-11-21 09:50:26 +03:00
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
2001-09-15 16:47:04 +04:00
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the NetBSD
* Foundation, Inc. and its contributors.
* 4. Neither the name of The NetBSD Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
1999-11-21 09:50:26 +03:00
*
2001-09-15 16:47:04 +04:00
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
1999-11-21 09:50:26 +03:00
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <machine/bus.h>
#include <machine/intr.h>
#include <hpcmips/tx/tx39var.h>
#include <hpcmips/dev/plumvar.h>
#include <hpcmips/dev/plumicuvar.h>
#include <hpcmips/dev/plumicureg.h>
#ifdef PLUMICUDEBUG
#define DPRINTF(arg) printf arg
#else
#define DPRINTF(arg)
#endif
2001-09-15 16:47:04 +04:00
int plumicu_match(struct device *, struct cfdata *, void *);
void plumicu_attach(struct device *, struct device *, void *);
int plumicu_intr(void *);
1999-11-21 09:50:26 +03:00
2001-09-15 16:47:04 +04:00
static __inline__ void plum_di(plum_chipset_tag_t);
static __inline__ void plum_ei(plum_chipset_tag_t);
2000-02-26 18:14:19 +03:00
const struct plum_intr_ctrl {
1999-11-21 09:50:26 +03:00
plumreg_t ic_ackpat1;
1999-12-07 20:53:04 +03:00
plumreg_t ic_ackpat2; int ic_ackreg2;
plumreg_t ic_ienpat; int ic_ienreg;
plumreg_t ic_senpat; int ic_senreg;
} pi_ctrl[PLUM_INTR_MAX] = {
1999-11-21 09:50:26 +03:00
[PLUM_INT_C1IO] = {PLUM_INT_INTSTA_PCCINT,
PLUM_INT_PCCINTS_C1IO, PLUM_INT_PCCINTS_REG,
2001-09-15 16:47:04 +04:00
PLUM_INT_PCCIEN_IENC1IO, PLUM_INT_PCCIEN_REG,
1999-11-21 09:50:26 +03:00
PLUM_INT_PCCIEN_SENC1IO, PLUM_INT_PCCIEN_REG
},
[PLUM_INT_C1RI] = {PLUM_INT_INTSTA_PCCINT,
PLUM_INT_PCCINTS_C1RI, PLUM_INT_PCCINTS_REG,
PLUM_INT_PCCIEN_IENC1RI, PLUM_INT_PCCIEN_REG,
PLUM_INT_PCCIEN_SENC1RI, PLUM_INT_PCCIEN_REG
},
[PLUM_INT_C1SC] = {PLUM_INT_INTSTA_C1SCINT, 0, 0, 0, 0, 0, 0},
[PLUM_INT_C2IO] = {PLUM_INT_INTSTA_PCCINT,
PLUM_INT_PCCINTS_C2IO, PLUM_INT_PCCINTS_REG,
PLUM_INT_PCCIEN_IENC2IO, PLUM_INT_PCCIEN_REG,
PLUM_INT_PCCIEN_SENC2IO, PLUM_INT_PCCIEN_REG
},
[PLUM_INT_C2RI] = {PLUM_INT_INTSTA_PCCINT,
PLUM_INT_PCCINTS_C2RI, PLUM_INT_PCCINTS_REG,
PLUM_INT_PCCIEN_IENC2RI, PLUM_INT_PCCIEN_REG,
PLUM_INT_PCCIEN_SENC2RI, PLUM_INT_PCCIEN_REG
},
[PLUM_INT_C2SC] = {PLUM_INT_INTSTA_C2SCINT, 0, 0, 0, 0, 0, 0},
[PLUM_INT_DISP] = {PLUM_INT_INTSTA_DISPINT, 0, 0, 0, 0, 0, 0},
[PLUM_INT_USB] = {PLUM_INT_INTSTA_USBINT,
0, 0,
PLUM_INT_USBINTEN_IEN, PLUM_INT_USBINTEN_REG,
0, 0
},
[PLUM_INT_USBWAKE] = {PLUM_INT_INTSTA_USBWAKE,
0, 0,
PLUM_INT_USBINTEN_WIEN, PLUM_INT_USBINTEN_REG,
0, 0
},
[PLUM_INT_SM] = {PLUM_INT_INTSTA_SMINT,
0, 0,
PLUM_INT_SMIEN, PLUM_INT_SMIEN_REG,
0, 0
},
[PLUM_INT_EXT5IO0] = {PLUM_INT_INTSTA_EXTINT,
PLUM_INT_EXTINTS_IO5INT0, PLUM_INT_EXTINTS_REG,
PLUM_INT_EXTIEN_IENIO5INT0, PLUM_INT_EXTIEN_REG,
PLUM_INT_EXTIEN_SENIO5INT0, PLUM_INT_EXTIEN_REG,
},
[PLUM_INT_EXT5IO1] = {PLUM_INT_INTSTA_EXTINT,
PLUM_INT_EXTINTS_IO5INT1, PLUM_INT_EXTINTS_REG,
PLUM_INT_EXTIEN_IENIO5INT1, PLUM_INT_EXTIEN_REG,
PLUM_INT_EXTIEN_SENIO5INT1, PLUM_INT_EXTIEN_REG,
},
[PLUM_INT_EXT5IO2] = {PLUM_INT_INTSTA_EXTINT,
PLUM_INT_EXTINTS_IO5INT2, PLUM_INT_EXTINTS_REG,
PLUM_INT_EXTIEN_IENIO5INT2, PLUM_INT_EXTIEN_REG,
PLUM_INT_EXTIEN_SENIO5INT2, PLUM_INT_EXTIEN_REG,
},
[PLUM_INT_EXT5IO3] = {PLUM_INT_INTSTA_EXTINT,
PLUM_INT_EXTINTS_IO5INT3, PLUM_INT_EXTINTS_REG,
PLUM_INT_EXTIEN_IENIO5INT0, PLUM_INT_EXTIEN_REG,
PLUM_INT_EXTIEN_SENIO5INT0, PLUM_INT_EXTIEN_REG,
},
[PLUM_INT_EXT3IO0] = {PLUM_INT_INTSTA_EXTINT,
PLUM_INT_EXTINTS_IO3INT0, PLUM_INT_EXTINTS_REG,
PLUM_INT_EXTIEN_IENIO3INT0, PLUM_INT_EXTIEN_REG,
PLUM_INT_EXTIEN_SENIO3INT0, PLUM_INT_EXTIEN_REG,
},
[PLUM_INT_EXT3IO1] = {PLUM_INT_INTSTA_EXTINT,
PLUM_INT_EXTINTS_IO3INT1, PLUM_INT_EXTINTS_REG,
PLUM_INT_EXTIEN_IENIO3INT1, PLUM_INT_EXTIEN_REG,
PLUM_INT_EXTIEN_SENIO3INT1, PLUM_INT_EXTIEN_REG,
}
};
struct plum_intr_entry {
2000-02-26 18:14:19 +03:00
int pi_enabled;
1999-11-21 09:50:26 +03:00
int pi_line;
2001-09-15 16:47:04 +04:00
int (*pi_fun)(void *);
1999-11-21 09:50:26 +03:00
void *pi_arg;
2000-02-26 18:14:19 +03:00
const struct plum_intr_ctrl *pi_ctrl;
1999-11-21 09:50:26 +03:00
};
struct plumicu_softc {
struct device sc_dev;
plum_chipset_tag_t sc_pc;
bus_space_tag_t sc_regt;
bus_space_handle_t sc_regh;
void *sc_ih;
int sc_enable_count;
2000-02-26 18:14:19 +03:00
struct plum_intr_entry sc_intr[PLUM_INTR_MAX];
1999-11-21 09:50:26 +03:00
};
struct cfattach plumicu_ca = {
sizeof(struct plumicu_softc), plumicu_match, plumicu_attach
};
2000-02-26 18:14:19 +03:00
#ifdef PLUMICUDEBUG
2001-09-15 16:47:04 +04:00
void plumicu_dump(struct plumicu_softc *);
2000-02-26 18:14:19 +03:00
#endif
1999-11-21 09:50:26 +03:00
int
2001-09-15 16:47:04 +04:00
plumicu_match(struct device *parent, struct cfdata *cf, void *aux)
1999-11-21 09:50:26 +03:00
{
2001-09-15 16:47:04 +04:00
2000-02-26 18:14:19 +03:00
return (2); /* 1st attach group */
1999-11-21 09:50:26 +03:00
}
void
2001-09-15 16:47:04 +04:00
plumicu_attach(struct device *parent, struct device *self, void *aux)
1999-11-21 09:50:26 +03:00
{
struct plum_attach_args *pa = aux;
struct plumicu_softc *sc = (void*)self;
2000-02-26 18:14:19 +03:00
const struct plum_intr_ctrl *pic;
1999-11-21 09:50:26 +03:00
bus_space_tag_t regt;
bus_space_handle_t regh;
plumreg_t reg;
int i;
sc->sc_pc = pa->pa_pc;
sc->sc_regt = pa->pa_regt;
/* map plum2 interrupt controller register space */
if (bus_space_map(sc->sc_regt, PLUM_INT_REGBASE,
PLUM_INT_REGSIZE, 0, &sc->sc_regh)) {
printf(":interrupt register map failed\n");
return;
}
2000-02-26 18:14:19 +03:00
#ifdef PLUMICUDEBUG
plumicu_dump(sc);
#endif
1999-11-21 09:50:26 +03:00
/* disable all interrupt */
regt = sc->sc_regt;
regh = sc->sc_regh;
for (i = 0; i < PLUM_INTR_MAX; i++) {
pic = &pi_ctrl[i];
if (pic->ic_ienreg) {
reg = plum_conf_read(regt, regh, pic->ic_ienreg);
reg &= ~pic->ic_ienpat;
plum_conf_write(regt, regh, pic->ic_ienreg, reg);
}
if (pic->ic_senreg) {
reg = plum_conf_read(regt, regh, pic->ic_senreg);
reg &= ~pic->ic_senpat;
plum_conf_write(regt, regh, pic->ic_senreg, reg);
}
}
/* register handle to plum_chipset_tag */
plum_conf_register_intr(sc->sc_pc, (void*)sc);
/* disable interrupt redirect to TX39 core */
2000-02-26 18:14:19 +03:00
plum_di(sc->sc_pc);
1999-11-21 09:50:26 +03:00
if (!(sc->sc_ih = tx_intr_establish(sc->sc_pc->pc_tc, pa->pa_irq,
2000-02-26 18:14:19 +03:00
IST_EDGE, IPL_BIO,
plumicu_intr, sc))) {
1999-11-21 09:50:26 +03:00
printf(": can't establish interrupt\n");
}
printf("\n");
2000-02-26 18:14:19 +03:00
}
1999-11-21 09:50:26 +03:00
2000-02-26 18:14:19 +03:00
__inline__ void
2001-09-15 16:47:04 +04:00
plum_di(plum_chipset_tag_t pc)
2000-02-26 18:14:19 +03:00
{
struct plumicu_softc *sc = pc->pc_intrt;
plum_conf_write(sc->sc_regt, sc->sc_regh, PLUM_INT_INTIEN_REG, 0);
}
__inline__ void
2001-09-15 16:47:04 +04:00
plum_ei(plum_chipset_tag_t pc)
2000-02-26 18:14:19 +03:00
{
struct plumicu_softc *sc = pc->pc_intrt;
plum_conf_write(sc->sc_regt, sc->sc_regh, PLUM_INT_INTIEN_REG,
PLUM_INT_INTIEN);
1999-11-21 09:50:26 +03:00
}
void*
2001-09-15 16:47:04 +04:00
plum_intr_establish(plum_chipset_tag_t pc, int line, int mode, int level,
int (*ih_fun)(void *), void *ih_arg)
1999-11-21 09:50:26 +03:00
{
struct plumicu_softc *sc = pc->pc_intrt;
bus_space_tag_t regt = sc->sc_regt;
bus_space_handle_t regh = sc->sc_regh;
plumreg_t reg;
struct plum_intr_entry *pi;
if (!LEGAL_PRUM_INTR(line)) {
panic("plum_intr_establish: bogus interrupt line");
}
2000-02-26 18:14:19 +03:00
pi = &sc->sc_intr[line];
1999-11-21 09:50:26 +03:00
pi->pi_line = line;
pi->pi_fun = ih_fun;
pi->pi_arg = ih_arg;
pi->pi_ctrl = &pi_ctrl[line];
/* Enable interrupt */
2000-02-26 18:14:19 +03:00
1999-12-07 20:53:04 +03:00
/* status enable */
1999-11-21 09:50:26 +03:00
if (pi->pi_ctrl->ic_senreg) {
reg = plum_conf_read(regt, regh, pi->pi_ctrl->ic_senreg);
reg |= pi->pi_ctrl->ic_senpat;
plum_conf_write(regt, regh, pi->pi_ctrl->ic_senreg, reg);
}
1999-12-07 20:53:04 +03:00
/* interrupt enable */
if (pi->pi_ctrl->ic_ienreg) {
reg = plum_conf_read(regt, regh, pi->pi_ctrl->ic_ienreg);
reg |= pi->pi_ctrl->ic_ienpat;
plum_conf_write(regt, regh, pi->pi_ctrl->ic_ienreg, reg);
}
1999-11-21 09:50:26 +03:00
/* Enable redirect to TX39 core */
2000-02-26 18:14:19 +03:00
DPRINTF(("plum_intr_establish: %d (count=%d)\n", line,
sc->sc_enable_count));
1999-12-07 20:53:04 +03:00
2000-02-26 18:14:19 +03:00
if (sc->sc_enable_count++ == 0)
plum_ei(pc);
pi->pi_enabled = 1;
1999-11-21 09:50:26 +03:00
2000-02-26 18:14:19 +03:00
return (ih_fun);
1999-11-21 09:50:26 +03:00
}
void
2001-09-15 16:47:04 +04:00
plum_intr_disestablish(plum_chipset_tag_t pc, void *arg)
1999-11-21 09:50:26 +03:00
{
struct plumicu_softc *sc = pc->pc_intrt;
bus_space_tag_t regt = sc->sc_regt;
bus_space_handle_t regh = sc->sc_regh;
plumreg_t reg;
struct plum_intr_entry *pi;
int i;
2000-02-26 18:14:19 +03:00
1999-11-21 09:50:26 +03:00
sc = pc->pc_intrt;
2000-02-26 18:14:19 +03:00
1999-11-21 09:50:26 +03:00
for (i = 0; i < PLUM_INTR_MAX; i++) {
2000-02-26 18:14:19 +03:00
pi = &sc->sc_intr[i];
if (pi->pi_fun != arg)
continue;
DPRINTF(("plum_intr_disestablish: %d (count=%d)\n",
pi->pi_line, sc->sc_enable_count - 1));
goto found;
1999-11-21 09:50:26 +03:00
}
panic("plum_intr_disestablish: can't find entry.");
2000-02-26 18:14:19 +03:00
/* NOTREACHED */
1999-11-21 09:50:26 +03:00
found:
2000-02-26 18:14:19 +03:00
pi->pi_enabled = 0;
1999-11-21 09:50:26 +03:00
/* Disable interrupt */
if (pi->pi_ctrl->ic_ienreg) {
reg = plum_conf_read(regt, regh, pi->pi_ctrl->ic_ienreg);
reg &= ~(pi->pi_ctrl->ic_ienpat);
plum_conf_write(regt, regh, pi->pi_ctrl->ic_ienreg, reg);
}
if (pi->pi_ctrl->ic_senreg) {
reg = plum_conf_read(regt, regh, pi->pi_ctrl->ic_senreg);
reg &= ~(pi->pi_ctrl->ic_senpat);
plum_conf_write(regt, regh, pi->pi_ctrl->ic_senreg, reg);
}
2000-02-26 18:14:19 +03:00
/* Disable/Enable interrupt redirect to TX39 core */
if (--sc->sc_enable_count == 0)
plum_di(pc);
1999-11-21 09:50:26 +03:00
}
int
2001-09-15 16:47:04 +04:00
plumicu_intr(void *arg)
1999-11-21 09:50:26 +03:00
{
struct plumicu_softc *sc = arg;
bus_space_tag_t regt = sc->sc_regt;
bus_space_handle_t regh = sc->sc_regh;
2000-02-26 18:14:19 +03:00
plumreg_t reg1, reg2, reg_ext, reg_pccard;
1999-11-21 09:50:26 +03:00
int i;
2000-02-26 18:14:19 +03:00
plum_di(sc->sc_pc);
/* read level 1 status */
1999-11-21 09:50:26 +03:00
reg1 = plum_conf_read(regt, regh, PLUM_INT_INTSTA_REG);
1999-12-07 20:53:04 +03:00
2000-02-26 18:14:19 +03:00
/* read level 2 status and acknowledge */
reg_ext = plum_conf_read(regt, regh, PLUM_INT_EXTINTS_REG);
plum_conf_write(regt, regh, PLUM_INT_EXTINTS_REG, reg_ext);
reg_pccard = plum_conf_read(regt, regh, PLUM_INT_PCCINTS_REG);
plum_conf_write(regt, regh, PLUM_INT_PCCINTS_REG, reg_pccard);
1999-11-21 09:50:26 +03:00
for (i = 0; i < PLUM_INTR_MAX; i++) {
2000-02-26 18:14:19 +03:00
register struct plum_intr_entry *pi;
register const struct plum_intr_ctrl *pic = &pi_ctrl[i];
if (!(pic->ic_ackpat1 & reg1))
continue;
pi = &sc->sc_intr[i];
if (!pi->pi_enabled)
continue;
if (pic->ic_ackreg2 == 0) {
(*pi->pi_fun)(pi->pi_arg);
continue;
1999-11-21 09:50:26 +03:00
}
2000-02-26 18:14:19 +03:00
reg2 = pic->ic_ackreg2 == PLUM_INT_PCCINTS_REG
? reg_pccard : reg_ext;
if (pic->ic_ackpat2 & reg2)
(*pi->pi_fun)(pi->pi_arg);
1999-11-21 09:50:26 +03:00
}
2000-02-26 18:14:19 +03:00
plum_ei(sc->sc_pc);
1999-11-21 09:50:26 +03:00
2000-02-26 18:14:19 +03:00
return (0);
1999-11-21 09:50:26 +03:00
}
2000-02-26 18:14:19 +03:00
#ifdef PLUMICUDEBUG
1999-11-21 09:50:26 +03:00
void
2001-09-15 16:47:04 +04:00
plumicu_dump(struct plumicu_softc *sc)
1999-11-21 09:50:26 +03:00
{
bus_space_tag_t regt = sc->sc_regt;
bus_space_handle_t regh = sc->sc_regh;
plumreg_t reg;
printf("status:");
reg = plum_conf_read(regt, regh, PLUM_INT_INTSTA_REG);
dbg_bit_print(reg);
1999-11-21 09:50:26 +03:00
printf("ExtIO\n");
printf("status:");
reg = plum_conf_read(regt, regh, PLUM_INT_EXTINTS_REG);
dbg_bit_print(reg);
1999-11-21 09:50:26 +03:00
printf("enable:");
reg = plum_conf_read(regt, regh, PLUM_INT_EXTIEN_REG);
dbg_bit_print(reg);
1999-11-21 09:50:26 +03:00
}
2000-02-26 18:14:19 +03:00
#endif /* PLUMICUDEBUG */