mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-15 19:57:05 +07:00
5df11427b2
This adds documentation of device tree bindings for the STM32 IWDG (Independent WatchDoG). Signed-off-by: Yannick Fertre <yannick.fertre@st.com> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
20 lines
474 B
Plaintext
20 lines
474 B
Plaintext
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>;
|
|
};
|