Lines Matching refs:smw
153 geode_wdog_tickle(struct sysmon_wdog *smw)
156 struct geode_wdog_softc *sc = smw->smw_cookie;
165 geode_wdog_setmode(struct sysmon_wdog *smw)
167 struct geode_wdog_softc *sc = smw->smw_cookie;
171 if ((smw->smw_mode & WDOG_MODE_MASK) == WDOG_MODE_DISARMED) {
177 if (smw->smw_period == WDOG_PERIOD_DEFAULT)
178 smw->smw_period = 32;
179 else if (smw->smw_period > SC1100_WDIVL_MAX) /* too big? */
182 GEODE_DPRINTF(("%s: period %u\n", __func__, smw->smw_period));
184 ticks = smw->smw_period * SC1100_WDCLK_HZ;