From: Alice Guo <[email protected]> Add wdog3/wdog4/wdog5 alias and mark it with bootph-all to allow the watchdog base address to be retrieved via imx_wdog_alias_to_addr().
Signed-off-by: Alice Guo <[email protected]> --- arch/arm/dts/imx91-u-boot.dtsi | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/arch/arm/dts/imx91-u-boot.dtsi b/arch/arm/dts/imx91-u-boot.dtsi index 5b639c965d6..c3df0e9e4fb 100644 --- a/arch/arm/dts/imx91-u-boot.dtsi +++ b/arch/arm/dts/imx91-u-boot.dtsi @@ -4,6 +4,12 @@ */ / { + aliases { + wdog3 = &wdog3; + wdog4 = &wdog4; + wdog5 = &wdog5; + }; + binman: binman { multiple-images; }; @@ -90,3 +96,15 @@ }; }; }; + +&wdog3 { + bootph-all; +}; + +&wdog4 { + bootph-all; +}; + +&wdog5 { + bootph-all; +}; -- 2.43.0

