Lines Matching refs:timeout
19 * In the single stage mode, when the timeout is reached, your system
21 * In the two stages mode, when the timeout is reached, the first signal (WS0)
31 * |----timeout-----(panic)----timeout-----reset
35 * |--------------timeout-------------------reset
38 * by WOR, in the single stage mode, the timeout is (WOR * 2); in the two
39 * stages mode, the timeout is WOR. The maximum timeout in the two stages mode
92 static unsigned int timeout;
93 module_param(timeout, uint, 0);
94 MODULE_PARM_DESC(timeout,
95 "Watchdog timeout in seconds. (>=0, default="
119 unsigned int timeout)
123 wdd->timeout = timeout;
124 timeout = clamp_t(unsigned int, timeout, 1, wdd->max_hw_heartbeat_ms / 1000);
127 writel(gwdt->clk * timeout,
132 * the timeout is (WOR * 2), so the WOR should be configured
133 * to half value of timeout.
135 writel(gwdt->clk / 2 * timeout,
198 panic(WATCHDOG_NAME " timeout");
257 wdd->timeout = DEFAULT_TIMEOUT;
292 * the timeout is (WOR * 2), so the maximum timeout should be doubled.
297 watchdog_init_timeout(wdd, timeout, dev);
299 * Update timeout to WOR.
303 sbsa_gwdt_set_timeout(wdd, wdd->timeout);
310 dev_info(dev, "Initialized with %ds timeout @ %u Hz, action=%d.%s\n",
311 wdd->timeout, gwdt->clk, action,