diff options
author | Ulf Hansson <ulf.hansson@linaro.org> | 2019-04-10 10:20:21 +0200 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2019-04-12 10:59:37 +0200 |
commit | e720a6c8fbdb86dcbb493d432e632dfafe6381cc (patch) | |
tree | 7e341927fbd57403e47673150a5ee4d7589722f9 /drivers/firmware/psci/Kconfig | |
parent | Linux 5.1-rc4 (diff) | |
download | linux-e720a6c8fbdb86dcbb493d432e632dfafe6381cc.tar.xz linux-e720a6c8fbdb86dcbb493d432e632dfafe6381cc.zip |
drivers: firmware: psci: Move psci to separate directory
Some following changes extends the PSCI driver with some additional
files. Avoid to continue cluttering the toplevel firmware directory
and first move the PSCI files into a PSCI sub-directory.
Suggested-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Acked-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Acked-by: Mark Rutland <mark.rutland@arm.com>
Acked-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/firmware/psci/Kconfig')
-rw-r--r-- | drivers/firmware/psci/Kconfig | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/drivers/firmware/psci/Kconfig b/drivers/firmware/psci/Kconfig new file mode 100644 index 000000000000..26a3b32bf7ab --- /dev/null +++ b/drivers/firmware/psci/Kconfig @@ -0,0 +1,13 @@ +config ARM_PSCI_FW + bool + +config ARM_PSCI_CHECKER + bool "ARM PSCI checker" + depends on ARM_PSCI_FW && HOTPLUG_CPU && CPU_IDLE && !TORTURE_TEST + help + Run the PSCI checker during startup. This checks that hotplug and + suspend operations work correctly when using PSCI. + + The torture tests may interfere with the PSCI checker by turning CPUs + on and off through hotplug, so for now torture tests and PSCI checker + are mutually exclusive. |