Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5df11427 authored by Yannick Fertre's avatar Yannick Fertre Committed by Wim Van Sebroeck
Browse files

dt-bindings: watchdog: Document STM32 IWDG bindings



This adds documentation of device tree bindings for the STM32 IWDG
(Independent WatchDoG).

Signed-off-by: default avatarYannick Fertre <yannick.fertre@st.com>
Acked-by: default avatarRob Herring <robh@kernel.org>
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
Signed-off-by: default avatarWim Van Sebroeck <wim@iguana.be>
parent f66872b5
Loading
Loading
Loading
Loading
+19 −0
Original line number Diff line number Diff line
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>;
};