Lines Matching refs:timeout
76 unsigned int bark = wdd->timeout - wdd->pretimeout;
81 writel(wdd->timeout * wdt->rate, wdt_addr(wdt, WDT_BITE_TIME));
103 unsigned int timeout)
105 wdd->timeout = timeout;
110 unsigned int timeout)
112 wdd->pretimeout = timeout;
120 u32 timeout;
126 timeout = 128 * wdt->rate / 1000;
130 writel(timeout, wdt_addr(wdt, WDT_BARK_TIME));
131 writel(timeout, wdt_addr(wdt, WDT_BITE_TIME));
230 * We use the clock rate to calculate the max timeout, so ensure it's
271 * If 'timeout-sec' unspecified in devicetree, assume a 30 second
272 * default, unless the max timeout is less than 30 seconds, then use
275 wdt->wdd.timeout = min(wdt->wdd.max_timeout, 30U);