diff mbox series

[v3,01/11] ARM: sun8i: a33: add operating-points-v2 property to all nodes

Message ID 20170321153611.16228-2-quentin.schulz@free-electrons.com
State Accepted
Commit ea33c2c2051a266f68d9cd920c789cec828c8f11
Headers show
Series add thermal throttling to Allwinner A33 SoC | expand

Commit Message

Quentin Schulz March 21, 2017, 3:36 p.m. UTC
The OPP are declared as shared but no operating points are declared for
cpu1, 2 and 3. Thus, the following error happens during the boot:

cpu cpu1: dev_pm_opp_of_get_sharing_cpus: Couldn't find tcpu_dev node.

This patch applies the operating points to each cpu of the A33.

Signed-off-by: Quentin Schulz <quentin.schulz@free-electrons.com>

---

added in v2

 arch/arm/boot/dts/sun8i-a33.dtsi | 6 ++++++
 1 file changed, 6 insertions(+)

-- 
2.9.3

Comments

Chen-Yu Tsai March 22, 2017, 3:32 a.m. UTC | #1
On Tue, Mar 21, 2017 at 11:36 PM, Quentin Schulz
<quentin.schulz@free-electrons.com> wrote:
> The OPP are declared as shared but no operating points are declared for

> cpu1, 2 and 3. Thus, the following error happens during the boot:

>

> cpu cpu1: dev_pm_opp_of_get_sharing_cpus: Couldn't find tcpu_dev node.

>

> This patch applies the operating points to each cpu of the A33.

>


This should have

Fixes: 03749eb88e63 ("ARM: dts: sun8i: add opp-v2 table for A33")

and be merged as fixes for 4.11.

> Signed-off-by: Quentin Schulz <quentin.schulz@free-electrons.com>


Acked-by: Chen-Yu Tsai <wens@csie.org>
Maxime Ripard March 22, 2017, 7:16 a.m. UTC | #2
On Wed, Mar 22, 2017 at 11:32:28AM +0800, Chen-Yu Tsai wrote:
> On Tue, Mar 21, 2017 at 11:36 PM, Quentin Schulz

> <quentin.schulz@free-electrons.com> wrote:

> > The OPP are declared as shared but no operating points are declared for

> > cpu1, 2 and 3. Thus, the following error happens during the boot:

> >

> > cpu cpu1: dev_pm_opp_of_get_sharing_cpus: Couldn't find tcpu_dev node.

> >

> > This patch applies the operating points to each cpu of the A33.

> >

> 

> This should have

> 

> Fixes: 03749eb88e63 ("ARM: dts: sun8i: add opp-v2 table for A33")

> 

> and be merged as fixes for 4.11.

> 

> > Signed-off-by: Quentin Schulz <quentin.schulz@free-electrons.com>

> 

> Acked-by: Chen-Yu Tsai <wens@csie.org>


I just queued it as a fix for 4.11, with the fixes tag.

Thanks!
Maxime

-- 
Maxime Ripard, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com
diff mbox series

Patch

diff --git a/arch/arm/boot/dts/sun8i-a33.dtsi b/arch/arm/boot/dts/sun8i-a33.dtsi
index e1e74b8..39b2d78 100644
--- a/arch/arm/boot/dts/sun8i-a33.dtsi
+++ b/arch/arm/boot/dts/sun8i-a33.dtsi
@@ -75,16 +75,22 @@ 
 			operating-points-v2 = <&cpu0_opp_table>;
 		};
 
+		cpu@1 {
+			operating-points-v2 = <&cpu0_opp_table>;
+		};
+
 		cpu@2 {
 			compatible = "arm,cortex-a7";
 			device_type = "cpu";
 			reg = <2>;
+			operating-points-v2 = <&cpu0_opp_table>;
 		};
 
 		cpu@3 {
 			compatible = "arm,cortex-a7";
 			device_type = "cpu";
 			reg = <3>;
+			operating-points-v2 = <&cpu0_opp_table>;
 		};
 	};