ARM: dts: imx6: phycore: Rely on PMIC reboot/reset handler
authorAndrej Picej <andrej.picej@norik.com>
Wed, 19 Jul 2023 11:43:28 +0000 (13:43 +0200)
committerShawn Guo <shawnguo@kernel.org>
Sun, 30 Jul 2023 06:41:31 +0000 (14:41 +0800)
Due to the missing signal connection between i.MX6 WDOG_B pin and the
PMICs external reset, the internal i.MX6 watchdog is not able to reset
the phyCORE i.MX6 SoM properly. Thus disable the internal i.MX6 watchdog
to prevent unexpected PMIC settings after reset.

NOTE: This patch should not be backported as it might break existing
uses and fixes in bootloaders.

Signed-off-by: Andrej Picej <andrej.picej@norik.com>
Reviewed-by: Stefan Riedmüller <s.riedmueller@phytec.de>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
arch/arm/boot/dts/nxp/imx/imx6qdl-phytec-phycore-som.dtsi

index 28a8053..86b4269 100644 (file)
                >;
        };
 };
+
+&wdog1 {
+       /*
+        * Rely on PMIC reboot handler. Internal i.MX6 watchdog, that is also
+        * used for reboot, does not reset all external PMIC voltages on reset.
+        */
+       status = "disabled";
+};