Skip to content

Commit ea33c2c

Browse files
QSchulzmripard
authored andcommitted
ARM: sun8i: a33: add operating-points-v2 property to all nodes
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. Fixes: 03749eb ("ARM: dts: sun8i: add opp-v2 table for A33") Signed-off-by: Quentin Schulz <quentin.schulz@free-electrons.com> Acked-by: Chen-Yu Tsai <wens@csie.org> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
1 parent 28787bf commit ea33c2c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

arch/arm/boot/dts/sun8i-a33.dtsi

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,16 +75,22 @@
7575
operating-points-v2 = <&cpu0_opp_table>;
7676
};
7777

78+
cpu@1 {
79+
operating-points-v2 = <&cpu0_opp_table>;
80+
};
81+
7882
cpu@2 {
7983
compatible = "arm,cortex-a7";
8084
device_type = "cpu";
8185
reg = <2>;
86+
operating-points-v2 = <&cpu0_opp_table>;
8287
};
8388

8489
cpu@3 {
8590
compatible = "arm,cortex-a7";
8691
device_type = "cpu";
8792
reg = <3>;
93+
operating-points-v2 = <&cpu0_opp_table>;
8894
};
8995
};
9096

0 commit comments

Comments
 (0)