Skip to content

Commit

Permalink
arm64: dts: exynos: Correct psci compatible used on Exynos7
Browse files Browse the repository at this point in the history
[ Upstream commit e1e47fb ]

It's not possible to reboot or poweroff Exynos7420 using PSCI. Instead
we need to use syscon reboot/poweroff drivers, like it's done for other
Exynos SoCs. This was confirmed by checking vendor source and testing it
on Samsung Galaxy S6 device based on this SoC.

To be able to use custom restart/poweroff handlers instead of PSCI
functions, we need to correct psci compatible. This also requires us to
provide function ids for CPU_ON and CPU_OFF.

Fixes: fb026cb ("arm64: dts: Add reboot node for exynos7")
Fixes: b9024cb ("arm64: dts: Add initial device tree support for exynos7")
Signed-off-by: Paweł Chmiel <pawel.mikolaj.chmiel@gmail.com>
Link: https://lore.kernel.org/r/20201107133926.37187-2-pawel.mikolaj.chmiel@gmail.com
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
PabloPL authored and gregkh committed Dec 30, 2020
1 parent ac5ae8c commit 848ad33
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion arch/arm64/boot/dts/exynos/exynos7.dtsi
Expand Up @@ -79,8 +79,10 @@
};

psci {
compatible = "arm,psci-0.2";
compatible = "arm,psci";
method = "smc";
cpu_off = <0x84000002>;
cpu_on = <0xC4000003>;
};

soc: soc@0 {
Expand Down

0 comments on commit 848ad33

Please sign in to comment.