aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAl Stone <al.stone@linaro.org>2014-01-17 13:51:30 -0500
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2014-02-05 06:28:07 -0500
commitaf1ae78abb324def77ba0c6c3a7c7678fb5cebbe (patch)
tree93f3d9190d1c93f01e848b99b256f7a77f903e87
parent38dbfb59d1175ef458d006556061adeaa8751b72 (diff)
ACPI: introduce CONFIG_ACPI_REDUCED_HARDWARE_ONLY
ACPI hardware reduced mode exists to allow newer platforms to use a simpler form of ACPI that does not require supporting legacy versions of the specification and their associated hardware. This mode was introduced in the ACPI 5.0 specification. The ACPI hardware reduced mode is supposed to be used on systems having the HW_REDUCED_ACPI flag set in the FADT. ACPICA checks that flag to determine whether or not it should work in the HW reduced mode and there are pieces of code in it that will never be used in that case. Since some architecutres will always use the ACPI HW reduced mode, it doesn't make sense for them to ever compile support for anything else. Thus, they should set the flag ACPI_REDUCED_HARDWARE to TRUE in the ACPICA source. To enable them to do that, introduce a new kernel configuration option, CONFIG_ACPI_REDUCED_HARDWARE_ONLY, that will cause the ACPICA's ACPI_REDUCED_HARDWARE flag to be TRUE when set. Introducing this configuration item is based on suggestions from Lv Zheng saying that this does not belong in ACPICA, but rather to the Linux kernel itself. References: http://www.spinics.net/lists/linux-acpi/msg46369.html Signed-off-by: Hanjun Guo <hanjun.guo@linaro.org> Signed-off-by: Al Stone <al.stone@linaro.org> [rjw: Subject and changelog] Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r--drivers/acpi/Kconfig13
-rw-r--r--include/acpi/platform/aclinux.h6
2 files changed, 19 insertions, 0 deletions
diff --git a/drivers/acpi/Kconfig b/drivers/acpi/Kconfig
index 4770de5707b9..9fd6a7a124c0 100644
--- a/drivers/acpi/Kconfig
+++ b/drivers/acpi/Kconfig
@@ -343,6 +343,19 @@ config ACPI_BGRT
343 data from the firmware boot splash. It will appear under 343 data from the firmware boot splash. It will appear under
344 /sys/firmware/acpi/bgrt/ . 344 /sys/firmware/acpi/bgrt/ .
345 345
346config ACPI_REDUCED_HARDWARE_ONLY
347 bool "Hardware-reduced ACPI support only" if EXPERT
348 def_bool n
349 depends on ACPI
350 help
351 This config item changes the way the ACPI code is built. When this
352 option is selected, the kernel will use a specialized version of
353 ACPICA that ONLY supports the ACPI "reduced hardware" mode. The
354 resulting kernel will be smaller but it will also be restricted to
355 running in ACPI reduced hardware mode ONLY.
356
357 If you are unsure what to do, do not enable this option.
358
346source "drivers/acpi/apei/Kconfig" 359source "drivers/acpi/apei/Kconfig"
347 360
348config ACPI_EXTLOG 361config ACPI_EXTLOG
diff --git a/include/acpi/platform/aclinux.h b/include/acpi/platform/aclinux.h
index 008aa287c7a9..30c9a7c1af88 100644
--- a/include/acpi/platform/aclinux.h
+++ b/include/acpi/platform/aclinux.h
@@ -52,6 +52,12 @@
52 52
53#ifdef __KERNEL__ 53#ifdef __KERNEL__
54 54
55/* Compile for reduced hardware mode only with this kernel config */
56
57#ifdef CONFIG_ACPI_REDUCED_HARDWARE_ONLY
58#define ACPI_REDUCED_HARDWARE 1
59#endif
60
55#include <linux/string.h> 61#include <linux/string.h>
56#include <linux/kernel.h> 62#include <linux/kernel.h>
57#include <linux/ctype.h> 63#include <linux/ctype.h>