From 1262e50a34a0e01f974e8d909c5b255f8fa7199e Mon Sep 17 00:00:00 2001 From: Anshul Dalal Date: Thu, 13 Aug 2026 14:16:48 +0530 Subject: [PATCH] arm: dts: k3-am625-beagleplay: add bootph tags to pmic regulators With commit 607d45d1e3b3 ("power: pmic: tps65219: fail if regulators node is missing"), the driver requires the PMIC node to have regulator nodes. Since we don't have bootph tags in the regulator child nodes, the resulting DTB doesn't have any regulator child nodes for the SPL phase leading to boot failures. Therefore this patch explicitly adds the bootph-all tag to all regulator nodes for the beagleplay. Signed-off-by: Anshul Dalal --- arch/arm/dts/k3-am625-beagleplay-u-boot.dtsi | 28 ++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/arch/arm/dts/k3-am625-beagleplay-u-boot.dtsi b/arch/arm/dts/k3-am625-beagleplay-u-boot.dtsi index 2a4f0e45365..cd13b5c3cd1 100644 --- a/arch/arm/dts/k3-am625-beagleplay-u-boot.dtsi +++ b/arch/arm/dts/k3-am625-beagleplay-u-boot.dtsi @@ -319,6 +319,34 @@ bootph-all; }; +&buck1_reg { + bootph-all; +}; + +&buck2_reg { + bootph-all; +}; + +&buck3_reg { + bootph-all; +}; + +&ldo1_reg { + bootph-all; +}; + +&ldo2_reg { + bootph-all; +}; + +&ldo3_reg { + bootph-all; +}; + +&ldo4_reg { + bootph-all; +}; + &cpsw_port2 { status = "disabled"; };