1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (c) 2017 Intel Corporation
11 /* Hardware timeout in seconds */
12 #define WDT_PRETIMEOUT 15
13 #define WDT_TIMEOUT_MIN (1 + WDT_PRETIMEOUT)
14 #define WDT_TIMEOUT_MAX 170
17 * Note, firmware chooses 90 seconds as a default timeout for watchdog on
18 * Intel Tangier SoC. It means that without handling it in the running code
19 * the reboot will happen.
23 SCU_WATCHDOG_START = 0,
24 SCU_WATCHDOG_STOP = 1,
25 SCU_WATCHDOG_KEEPALIVE = 2,
26 SCU_WATCHDOG_SET_ACTION_ON_TIMEOUT = 3,
29 static int tangier_wdt_reset(struct udevice *dev)
31 scu_ipc_simple_command(IPCMSG_WATCHDOG_TIMER, SCU_WATCHDOG_KEEPALIVE);
35 static int tangier_wdt_stop(struct udevice *dev)
37 return scu_ipc_simple_command(IPCMSG_WATCHDOG_TIMER, SCU_WATCHDOG_STOP);
40 static int tangier_wdt_start(struct udevice *dev, u64 timeout_ms, ulong flags)
49 /* Calculate timeout in seconds and restrict to min and max value */
50 do_div(timeout_ms, 1000);
51 timeout_sec = clamp_t(u32, timeout_ms, WDT_TIMEOUT_MIN, WDT_TIMEOUT_MAX);
53 /* Update values in the IPC request */
54 ipc_wd_start.pretimeout = timeout_sec - WDT_PRETIMEOUT;
55 ipc_wd_start.timeout = timeout_sec;
58 * SCU expects the input size for watchdog IPC
59 * to be based on 4 bytes
61 in_size = DIV_ROUND_UP(sizeof(ipc_wd_start), 4);
63 scu_ipc_command(IPCMSG_WATCHDOG_TIMER, SCU_WATCHDOG_START,
64 (u32 *)&ipc_wd_start, in_size, NULL, 0);
69 static const struct wdt_ops tangier_wdt_ops = {
70 .reset = tangier_wdt_reset,
71 .start = tangier_wdt_start,
72 .stop = tangier_wdt_stop,
75 static const struct udevice_id tangier_wdt_ids[] = {
76 { .compatible = "intel,tangier-wdt" },
80 static int tangier_wdt_probe(struct udevice *dev)
82 debug("%s: Probing wdt%u\n", __func__, dev->seq);
86 U_BOOT_DRIVER(wdt_tangier) = {
87 .name = "wdt_tangier",
89 .of_match = tangier_wdt_ids,
90 .ops = &tangier_wdt_ops,
91 .probe = tangier_wdt_probe,