summaryrefslogtreecommitdiffstats
path: root/dts/Bindings/watchdog/st,stm32-iwdg.txt
diff options
context:
space:
mode:
Diffstat (limited to 'dts/Bindings/watchdog/st,stm32-iwdg.txt')
-rw-r--r--dts/Bindings/watchdog/st,stm32-iwdg.txt19
1 files changed, 19 insertions, 0 deletions
diff --git a/dts/Bindings/watchdog/st,stm32-iwdg.txt b/dts/Bindings/watchdog/st,stm32-iwdg.txt
new file mode 100644
index 0000000000..cc13b10a3f
--- /dev/null
+++ b/dts/Bindings/watchdog/st,stm32-iwdg.txt
@@ -0,0 +1,19 @@
+STM32 Independent WatchDoG (IWDG)
+---------------------------------
+
+Required properties:
+- compatible: "st,stm32-iwdg"
+- reg: physical base address and length of the registers set for the device
+- clocks: must contain a single entry describing the clock input
+
+Optional Properties:
+- timeout-sec: Watchdog timeout value in seconds.
+
+Example:
+
+iwdg: watchdog@40003000 {
+ compatible = "st,stm32-iwdg";
+ reg = <0x40003000 0x400>;
+ clocks = <&clk_lsi>;
+ timeout-sec = <32>;
+};