Lines Matching refs:timeout
77 unsigned int bark = wdd->timeout - wdd->pretimeout;
82 writel(wdd->timeout * wdt->rate, wdt_addr(wdt, WDT_BITE_TIME));
104 unsigned int timeout)
106 wdd->timeout = timeout;
111 unsigned int timeout)
113 wdd->pretimeout = timeout;
121 u32 timeout;
127 timeout = 128 * wdt->rate / 1000;
131 writel(timeout, wdt_addr(wdt, WDT_BARK_TIME));
132 writel(timeout, wdt_addr(wdt, WDT_BITE_TIME));
238 * We use the clock rate to calculate the max timeout, so ensure it's
279 * If 'timeout-sec' unspecified in devicetree, assume a 30 second
280 * default, unless the max timeout is less than 30 seconds, then use
283 wdt->wdd.timeout = min(wdt->wdd.max_timeout, 30U);