summaryrefslogtreecommitdiffstats
path: root/arch/arm/Kconfig
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2019-05-10 14:19:42 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2019-05-13 13:45:44 +0200
commited251dc493215e1fa14e610b208059cdcb95e52e (patch)
treea406d2ca1a20b2e52ef57f4f81039b70323a144a /arch/arm/Kconfig
parent6165de1c087e15de83728c645e0c5cd47d43f671 (diff)
downloadbarebox-ed251dc493215e1fa14e610b208059cdcb95e52e.tar.gz
barebox-ed251dc493215e1fa14e610b208059cdcb95e52e.tar.xz
ARM: psci: factor out of_psci_fixup() to separate file
of_psci_fixup() can be used by code which doesn't use the barebox psci implementation, but provides its own PSCI compatible firmware. Factor it out to a separate file to compile it independently of the barebox PSCI implementation. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r--arch/arm/Kconfig4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index a683c9c866..480c6f0117 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -428,10 +428,14 @@ config ARM_SECURE_MONITOR
select ARM_SMCCC
bool
+config ARM_PSCI_OF
+ bool
+
config ARM_PSCI
bool "enable Power State Coordination Interface (PSCI) support"
depends on CPU_V7
select ARM_SECURE_MONITOR
+ select ARM_PSCI_OF
help
PSCI is used for controlling secondary CPU cores on some systems. Say
yes here if you have one of these.