#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <machine/bus.h>
#include <machine/fdt.h>
#include <dev/ofw/openfirm.h>
#include <dev/ofw/fdt.h>
#define RINTC_IRQ_PENDING 0x10
#define RINTC_IRQ_ENABLE 0x40
#define RINTC_IRQ_ENABLE_NMI (1 << 0)
#define HREAD4(sc, reg) \
(bus_space_read_4((sc)->sc_iot, (sc)->sc_ioh, (reg)))
#define HWRITE4(sc, reg, val) \
bus_space_write_4((sc)->sc_iot, (sc)->sc_ioh, (reg), (val))
#define HSET4(sc, reg, bits) \
HWRITE4((sc), (reg), HREAD4((sc), (reg)) | (bits))
#define HCLR4(sc, reg, bits) \
HWRITE4((sc), (reg), HREAD4((sc), (reg)) & ~(bits))
struct sxirintc_softc {
struct device sc_dev;
bus_space_tag_t sc_iot;
bus_space_handle_t sc_ioh;
};
int sxirintc_match(struct device *, void *, void *);
void sxirintc_attach(struct device *, struct device *, void *);
int sxirintc_activate(struct device *, int);
const struct cfattach sxirintc_ca = {
sizeof(struct sxirintc_softc), sxirintc_match, sxirintc_attach,
NULL, sxirintc_activate
};
struct cfdriver sxirintc_cd = {
NULL, "sxirintc", DV_DULL
};
int
sxirintc_match(struct device *parent, void *match, void *aux)
{
struct fdt_attach_args *faa = aux;
return OF_is_compatible(faa->fa_node, "allwinner,sun6i-a31-r-intc");
}
void
sxirintc_attach(struct device *parent, struct device *self, void *aux)
{
struct sxirintc_softc *sc = (struct sxirintc_softc *)self;
struct fdt_attach_args *faa = aux;
if (faa->fa_nreg < 1) {
printf(": no registers\n");
return;
}
sc->sc_iot = faa->fa_iot;
if (bus_space_map(sc->sc_iot, faa->fa_reg[0].addr,
faa->fa_reg[0].size, 0, &sc->sc_ioh)) {
printf(": can't map registers\n");
return;
}
printf("\n");
}
int
sxirintc_activate(struct device *self, int act)
{
struct sxirintc_softc *sc = (struct sxirintc_softc *)self;
switch (act) {
case DVACT_SUSPEND:
HWRITE4(sc, RINTC_IRQ_PENDING, ~0);
HSET4(sc, RINTC_IRQ_ENABLE, RINTC_IRQ_ENABLE_NMI);
break;
case DVACT_RESUME:
HCLR4(sc, RINTC_IRQ_ENABLE, RINTC_IRQ_ENABLE_NMI);
break;
}
return 0;
}