Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ARM: dts: sunxi: libretech-all-h3-cc: Add regulator supply to all CPU cores

The device tree currently only assigns the a supply for the first CPU
core, when in reality the regulator supply is shared by all four cores.
This might cause an issue if the implementation does not realize the
sharing of the supply.

Assign the same regulator supply to the remaining CPU cores to address
this.

Signed-off-by: Chen-Yu Tsai <wens@csie.org>
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
Link: https://lore.kernel.org/r/20200717160053.31191-2-wens@kernel.org

authored by

Chen-Yu Tsai and committed by
Maxime Ripard
82e93572 86be5c78

+12
+12
arch/arm/boot/dts/sunxi-libretech-all-h3-cc.dtsi
··· 128 128 cpu-supply = <&reg_vdd_cpux>; 129 129 }; 130 130 131 + &cpu1 { 132 + cpu-supply = <&reg_vdd_cpux>; 133 + }; 134 + 135 + &cpu2 { 136 + cpu-supply = <&reg_vdd_cpux>; 137 + }; 138 + 139 + &cpu3 { 140 + cpu-supply = <&reg_vdd_cpux>; 141 + }; 142 + 131 143 &de { 132 144 status = "okay"; 133 145 };