#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: a9wdt.c,v 1.10 2019/08/10 17:03:59 skrll Exp $");
#include <sys/param.h>
#include <sys/bus.h>
#include <sys/cpu.h>
#include <sys/device.h>
#include <sys/wdog.h>
#include <prop/proplib.h>
#include <dev/sysmon/sysmonvar.h>
#include <arm/cortex/a9tmr_reg.h>
#include <arm/cortex/mpcore_var.h>
static int a9wdt_match(device_t, cfdata_t, void *);
static void a9wdt_attach(device_t, device_t, void *);
struct a9wdt_softc {
struct sysmon_wdog sc_smw;
device_t sc_dev;
bus_space_tag_t sc_memt;
bus_space_handle_t sc_wdog_memh;
u_int sc_wdog_max_period;
u_int sc_wdog_period;
u_int sc_wdog_prescaler;
uint32_t sc_freq;
uint32_t sc_wdog_load;
uint32_t sc_wdog_ctl;
bool sc_wdog_armed;
};
#ifndef A9WDT_PERIOD_DEFAULT
#define A9WDT_PERIOD_DEFAULT 12
#endif
CFATTACH_DECL_NEW(arma9wdt, sizeof(struct a9wdt_softc),
a9wdt_match, a9wdt_attach, NULL, NULL);
static bool attached;
static inline uint32_t
a9wdt_wdog_read(struct a9wdt_softc *sc, bus_size_t o)
{
return bus_space_read_4(sc->sc_memt, sc->sc_wdog_memh, o);
}
static inline void
a9wdt_wdog_write(struct a9wdt_softc *sc, bus_size_t o, uint32_t v)
{
bus_space_write_4(sc->sc_memt, sc->sc_wdog_memh, o, v);
}
static int
a9wdt_match(device_t parent, cfdata_t cf, void *aux)
{
struct mpcore_attach_args * const mpcaa = aux;
if (attached)
return 0;
if (!CPU_ID_CORTEX_A9_P(curcpu()->ci_arm_cpuid) &&
!CPU_ID_CORTEX_A5_P(curcpu()->ci_arm_cpuid))
return 0;
if (strcmp(mpcaa->mpcaa_name, cf->cf_name) != 0)
return 0;
uint32_t mpidr = armreg_mpidr_read();
if (mpidr == 0 || (mpidr & MPIDR_U))
return 0;
return 1;
}
static int
a9wdt_tickle(struct sysmon_wdog *smw)
{
struct a9wdt_softc * const sc = smw->smw_cookie;
a9wdt_wdog_write(sc, TMR_LOAD, sc->sc_wdog_load);
aprint_debug_dev(sc->sc_dev, "tickle\n");
return 0;
}
static int
a9wdt_setmode(struct sysmon_wdog *smw)
{
struct a9wdt_softc * const sc = smw->smw_cookie;
if ((smw->smw_mode & WDOG_MODE_MASK) == WDOG_MODE_DISARMED) {
a9wdt_wdog_write(sc, TMR_WDOGDIS, TMR_WDOG_DISABLE_MAGIC1);
a9wdt_wdog_write(sc, TMR_WDOGDIS, TMR_WDOG_DISABLE_MAGIC2);
delay(1);
sc->sc_wdog_ctl = a9wdt_wdog_read(sc, TMR_CTL);
KASSERT((sc->sc_wdog_ctl & TMR_CTL_WDOG_MODE) == 0);
aprint_debug_dev(sc->sc_dev, "setmode disable\n");
return 0;
}
if (sc->sc_wdog_armed && smw->smw_period == sc->sc_wdog_period) {
sc->sc_wdog_load = sc->sc_freq * sc->sc_wdog_period - 1;
sc->sc_wdog_ctl = TMR_CTL_ENABLE | TMR_CTL_WDOG_MODE
| __SHIFTIN(sc->sc_wdog_prescaler - 1, TMR_CTL_PRESCALER);
a9wdt_wdog_write(sc, TMR_LOAD, sc->sc_wdog_load);
a9wdt_wdog_write(sc, TMR_CTL, sc->sc_wdog_ctl);
aprint_debug_dev(sc->sc_dev, "setmode refresh\n");
return 0;
}
if (smw->smw_period == WDOG_PERIOD_DEFAULT) {
sc->sc_wdog_period = A9WDT_PERIOD_DEFAULT;
smw->smw_period = A9WDT_PERIOD_DEFAULT;
}
if (smw->smw_period >= sc->sc_wdog_max_period) {
return EINVAL;
}
sc->sc_wdog_load = sc->sc_freq * sc->sc_wdog_period - 1;
sc->sc_wdog_ctl = TMR_CTL_ENABLE | TMR_CTL_WDOG_MODE
| __SHIFTIN(sc->sc_wdog_prescaler - 1, TMR_CTL_PRESCALER);
a9wdt_wdog_write(sc, TMR_LOAD, sc->sc_wdog_load);
a9wdt_wdog_write(sc, TMR_CTL, sc->sc_wdog_ctl);
aprint_debug_dev(sc->sc_dev, "setmode enable\n");
return 0;
}
static void
a9wdt_attach(device_t parent, device_t self, void *aux)
{
struct a9wdt_softc * const sc = device_private(self);
struct mpcore_attach_args * const mpcaa = aux;
prop_dictionary_t dict = device_properties(self);
const char *cpu_type;
sc->sc_dev = self;
sc->sc_memt = mpcaa->mpcaa_memt;
bus_space_subregion(sc->sc_memt, mpcaa->mpcaa_memh,
mpcaa->mpcaa_off1, TMR_WDOG_SIZE, &sc->sc_wdog_memh);
prop_dictionary_get_uint32(dict, "frequency", &sc->sc_freq);
sc->sc_wdog_ctl = a9wdt_wdog_read(sc, TMR_CTL);
sc->sc_wdog_armed = (sc->sc_wdog_ctl & TMR_CTL_WDOG_MODE) != 0;
if (sc->sc_wdog_armed) {
sc->sc_wdog_prescaler =
__SHIFTOUT(sc->sc_wdog_ctl, TMR_CTL_PRESCALER) + 1;
sc->sc_freq /= sc->sc_wdog_prescaler;
sc->sc_wdog_load = a9wdt_wdog_read(sc, TMR_LOAD);
sc->sc_wdog_period = (sc->sc_wdog_load + 1) / sc->sc_freq;
} else {
sc->sc_wdog_period = A9WDT_PERIOD_DEFAULT;
sc->sc_wdog_prescaler = 1;
for (size_t div = 256; div >= 2; div--) {
if (sc->sc_freq % div == 0) {
sc->sc_wdog_prescaler = div;
break;
}
}
sc->sc_freq /= sc->sc_wdog_prescaler;
}
sc->sc_wdog_max_period = UINT32_MAX / sc->sc_freq;
if (device_cfdata(self)->cf_flags & 1)
sc->sc_wdog_armed = true;
aprint_naive("\n");
if (CPU_ID_CORTEX_A5_P(curcpu()->ci_arm_cpuid)) {
cpu_type = "A5";
} else {
cpu_type = "A9";
}
aprint_normal(": %s Watchdog Timer, default period is %u seconds%s\n",
cpu_type, sc->sc_wdog_period,
sc->sc_wdog_armed ? " (armed)" : "");
sc->sc_smw.smw_name = device_xname(self);
sc->sc_smw.smw_cookie = sc;
sc->sc_smw.smw_setmode = a9wdt_setmode;
sc->sc_smw.smw_tickle = a9wdt_tickle;
sc->sc_smw.smw_period = sc->sc_wdog_period;
if (sc->sc_wdog_armed) {
int error = sysmon_wdog_setmode(&sc->sc_smw, WDOG_MODE_KTICKLE,
sc->sc_wdog_period);
if (error)
aprint_error_dev(self,
"failed to start kernel tickler: %d\n", error);
}
if (sysmon_wdog_register(&sc->sc_smw) != 0)
aprint_error("%s: unable to register with sysmon\n",
device_xname(sc->sc_dev));
attached = true;
}