2020-10-07 14:06:51

by Adam Ford

[permalink] [raw]
Subject: [PATCH] arm64: dts: imx8mm-beacon-som: Configure supplies on secondary cpus

Each cpu core should have a corresponding supply, but only cpu0 does.
This patch adds a supply for each of the secondary cpus.

Signed-off-by: Adam Ford <[email protected]>

diff --git a/arch/arm64/boot/dts/freescale/imx8mm-beacon-som.dtsi b/arch/arm64/boot/dts/freescale/imx8mm-beacon-som.dtsi
index b88c3c99b007..397cf8b2f29b 100644
--- a/arch/arm64/boot/dts/freescale/imx8mm-beacon-som.dtsi
+++ b/arch/arm64/boot/dts/freescale/imx8mm-beacon-som.dtsi
@@ -24,6 +24,18 @@ &A53_0 {
cpu-supply = <&buck2_reg>;
};

+&A53_1 {
+ cpu-supply = <&buck2_reg>;
+};
+
+&A53_2 {
+ cpu-supply = <&buck2_reg>;
+};
+
+&A53_3 {
+ cpu-supply = <&buck2_reg>;
+};
+
&ddrc {
operating-points-v2 = <&ddrc_opp_table>;

--
2.25.1


2020-10-30 08:02:27

by Shawn Guo

[permalink] [raw]
Subject: Re: [PATCH] arm64: dts: imx8mm-beacon-som: Configure supplies on secondary cpus

On Wed, Oct 07, 2020 at 09:04:57AM -0500, Adam Ford wrote:
> Each cpu core should have a corresponding supply, but only cpu0 does.
> This patch adds a supply for each of the secondary cpus.
>
> Signed-off-by: Adam Ford <[email protected]>

Applied, thanks.