summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2022-07-22 20:48:28 -0400
committerTom Rini <[email protected]>2022-07-22 20:48:28 -0400
commitfd41c8f7a3b00ffcdcfab6d78b006a9e2a5c1873 (patch)
tree82a4f97577a1211386b162b61370e5eff437de6f /arch
parent2996b6405e9522082b53ded0392438830ad6c43a (diff)
parent1fc45d6483d77b9fbe84e546f4e6afe665ba827a (diff)
Merge https://source.denx.de/u-boot/custodians/u-boot-watchdog
- octeontx_wdt: Add MIPS Octeon support (Stefan) - watchdog: add amlogic watchdog support (Philippe) - watchdog: add pulse support to gpio watchdog driver (Paul)
Diffstat (limited to 'arch')
-rw-r--r--arch/sandbox/dts/test.dts11
1 files changed, 10 insertions, 1 deletions
diff --git a/arch/sandbox/dts/test.dts b/arch/sandbox/dts/test.dts
index 0194b9b30ef..d1a8cc7bfb7 100644
--- a/arch/sandbox/dts/test.dts
+++ b/arch/sandbox/dts/test.dts
@@ -850,10 +850,19 @@
};
};
- gpio-wdt {
+ wdt-gpio-toggle {
gpios = <&gpio_a 7 0>;
compatible = "linux,wdt-gpio";
hw_margin_ms = <100>;
+ hw_algo = "toggle";
+ always-running;
+ };
+
+ wdt-gpio-level {
+ gpios = <&gpio_a 7 0>;
+ compatible = "linux,wdt-gpio";
+ hw_margin_ms = <100>;
+ hw_algo = "level";
always-running;
};