summaryrefslogtreecommitdiffstats
path: root/drivers/acpi/Kconfig
diff options
context:
space:
mode:
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>2015-11-01 18:50:37 -0500
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2015-11-01 18:50:37 -0500
commit62839e2d018117f2474321b38709dd7e80796e52 (patch)
tree6bafe15d957658416fc98c3a2f3dc02b4d6f842a /drivers/acpi/Kconfig
parent5b9ddd0d7427c16e5d8779e77ba89c2bc5a7324c (diff)
parent4219853aef645d29b122daa8a8b7bd792f1cc7c9 (diff)
Merge branch 'acpi-processor'
* acpi-processor: ACPI / CPPC: Fix potential memory leak ACPI / CPPC: signedness bug in register_pcc_channel() ACPI: Allow selection of the ACPI processor driver for ARM64 CPPC: Probe for CPPC tables for each ACPI Processor object ACPI: Add weak routines for ACPI CPU Hotplug ACPI / CPPC: Add a CPUFreq driver for use with CPPC ACPI: Introduce CPU performance controls using CPPC
Diffstat (limited to 'drivers/acpi/Kconfig')
-rw-r--r--drivers/acpi/Kconfig20
1 files changed, 17 insertions, 3 deletions
diff --git a/drivers/acpi/Kconfig b/drivers/acpi/Kconfig
index 706c2e95503f..25dbb76c02cc 100644
--- a/drivers/acpi/Kconfig
+++ b/drivers/acpi/Kconfig
@@ -206,11 +206,25 @@ config ACPI_PROCESSOR_IDLE
206 bool 206 bool
207 select CPU_IDLE 207 select CPU_IDLE
208 208
209config ACPI_CPPC_LIB
210 bool
211 depends on ACPI_PROCESSOR
212 depends on !ACPI_CPU_FREQ_PSS
213 select MAILBOX
214 select PCC
215 help
216 If this option is enabled, this file implements common functionality
217 to parse CPPC tables as described in the ACPI 5.1+ spec. The
218 routines implemented are meant to be used by other
219 drivers to control CPU performance using CPPC semantics.
220 If your platform does not support CPPC in firmware,
221 leave this option disabled.
222
209config ACPI_PROCESSOR 223config ACPI_PROCESSOR
210 tristate "Processor" 224 tristate "Processor"
211 depends on X86 || IA64 225 depends on X86 || IA64 || ARM64
212 select ACPI_PROCESSOR_IDLE 226 select ACPI_PROCESSOR_IDLE if X86 || IA64
213 select ACPI_CPU_FREQ_PSS 227 select ACPI_CPU_FREQ_PSS if X86 || IA64
214 default y 228 default y
215 help 229 help
216 This driver adds support for the ACPI Processor package. It is required 230 This driver adds support for the ACPI Processor package. It is required