The main_rti* watchdogs seem to be related to the secondary CPUs. Letting the driver probe means the associated power domains are turned on in barebox. With the power domains being enabled the secondary CPUs do not come up under Linux. Just disable the watchdogs for barebox. Signed-off-by: Sascha Hauer <s.hauer@xxxxxxxxxxxxxx> --- arch/arm/dts/k3-am625.dtsi | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/arch/arm/dts/k3-am625.dtsi b/arch/arm/dts/k3-am625.dtsi index 7d49198aa2..7910cf3e6c 100644 --- a/arch/arm/dts/k3-am625.dtsi +++ b/arch/arm/dts/k3-am625.dtsi @@ -11,3 +11,18 @@ &phy_gmii_sel { compatible = "ti,am654-phy-gmii-sel", "syscon"; }; +&main_rti1 { + status = "disabled"; +}; + +&main_rti2 { + status = "disabled"; +}; + +&main_rti3 { + status = "disabled"; +}; + +&main_rti15 { + status = "disabled"; +}; -- 2.39.5