]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
ARM: dts: stm32: enable SMC watchdog for STM32MP15 SCMI config
authorYann Gautier <yann.gautier@foss.st.com>
Wed, 20 May 2026 16:07:15 +0000 (18:07 +0200)
committerPatrice Chotard <patrice.chotard@foss.st.com>
Tue, 26 May 2026 11:46:30 +0000 (13:46 +0200)
For this configuration, the watchdog (iwdg1) is secured and managed by
OP-TEE. Add an watchdog node with arm,smc-wdt compatible, and disable
iwdg2 node which is then no more used.

Signed-off-by: Yann Gautier <yann.gautier@foss.st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
arch/arm/dts/stm32mp15-scmi-u-boot.dtsi

index 79494ecad90a8873397ab339d145fa0fdc835a2b..600316205fcc7448aa21a1eb073a87eb7a299bb6 100644 (file)
                pinctrl1 = &pinctrl_z;
        };
 
+       arm_wdt: watchdog {
+               compatible = "arm,smc-wdt";
+               arm,smc-id = <0xbc000000>;
+               timeout-sec = <32>;
+               status = "okay";
+       };
+
        binman: binman {
                multiple-images;
        };
 };
 
 &iwdg2 {
-       bootph-all;
+       status = "disabled";
 };
 
 /* pre-reloc probe = reserve video frame buffer in video_reserve() */