diff options
author | Michael Trimarchi <michael@amarulasolutions.com> | 2025-05-16 10:17:21 +0200 |
---|---|---|
committer | Fabio Estevam <festevam@gmail.com> | 2025-05-21 07:51:43 -0300 |
commit | 31899c52bde17f0e393f10853213740d779cf424 (patch) | |
tree | 13d8930b89536fecadfa31582930282e0c109fd7 | |
parent | fcf2a415a97a0cb7eddffcdfa7c44da83b5d1a59 (diff) |
arm: dts: imx6ulz-bsh-smm-m2: Fix reset using wdt-reboot driver
commit 68dcbdd594d4 ("ARM: imx: Add weak default reset_cpu()")
introduced a regression that 'reset' command unable to reset
imx6ulz based BSH module's modules in the u-boot.
BSH module's imx6, imx6ulz-bsh-smm-m2.dts
Fixes: 68dcbdd594d4 ("ARM: imx: Add weak default reset_cpu()")
Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>
-rw-r--r-- | arch/arm/dts/imx6ulz-bsh-smm-m2-u-boot.dtsi | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/dts/imx6ulz-bsh-smm-m2-u-boot.dtsi b/arch/arm/dts/imx6ulz-bsh-smm-m2-u-boot.dtsi index c67622821e7..faf596255f1 100644 --- a/arch/arm/dts/imx6ulz-bsh-smm-m2-u-boot.dtsi +++ b/arch/arm/dts/imx6ulz-bsh-smm-m2-u-boot.dtsi @@ -5,6 +5,14 @@ * Author: Michael Trimarchi <michael@amarulasolutions.com> */ +/ { + wdt-reboot { + compatible = "wdt-reboot"; + wdt = <&wdog1>; + bootph-pre-ram; + }; +}; + &aips2 { bootph-all; }; |