#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: epwdog.c,v 1.6 2021/11/21 08:25:26 skrll Exp $");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/device.h>
#include <sys/bus.h>
#include <arm/ep93xx/ep93xxvar.h>
#include <arm/ep93xx/epsocvar.h>
#include <arm/ep93xx/epwdogreg.h>
#include <arm/ep93xx/epwdogvar.h>
struct epwdog_softc {
bus_space_tag_t sc_iot;
bus_space_handle_t sc_ioh;
};
static int epwdog_match(device_t, cfdata_t, void *);
static void epwdog_attach(device_t, device_t, void *);
CFATTACH_DECL_NEW(epwdog, sizeof(struct epwdog_softc),
epwdog_match, epwdog_attach, NULL, NULL);
static struct epwdog_softc *the_epwdog_sc = 0;
static int
epwdog_match(device_t parent, cfdata_t match, void *aux)
{
return 1;
}
static void
epwdog_attach(device_t parent, device_t self, void *aux)
{
struct epwdog_softc *sc = device_private(self);
struct epsoc_attach_args *sa = aux;
printf("\n");
sc->sc_iot = sa->sa_iot;
if (bus_space_map(sa->sa_iot, sa->sa_addr,
sa->sa_size, 0, &sc->sc_ioh)) {
printf("%s: Cannot map registers", device_xname(self));
return;
}
if (!the_epwdog_sc)
the_epwdog_sc = sc;
#ifdef DIAGNOSTIC
else
printf("%s is already configured\n", device_xname(self));
#endif
}
int
epwdog_reset(void)
{
struct epwdog_softc *sc = the_epwdog_sc;
#ifdef DIAGNOSTIC
if (!sc) {
printf("epwdog not configured\n");
return (ENXIO);
}
#endif
bus_space_write_2(sc->sc_iot, sc->sc_ioh,
EP93XX_WDOG_Ctrl, EP93XX_WDOG_DISABLE);
splhigh();
bus_space_write_2(sc->sc_iot, sc->sc_ioh,
EP93XX_WDOG_Ctrl, EP93XX_WDOG_ENABLE);
while (1);
return 0;
}