diff options
author | Graeme Gregory <graeme.gregory@linaro.org> | 2015-03-24 10:02:53 -0400 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2015-03-26 11:13:08 -0400 |
commit | b6a0217371317298c900f0e0f84afb04312d5af0 (patch) | |
tree | 6587715c029e8cfaa8b2a0df50bf2d9ca87f7337 /drivers/acpi | |
parent | 42068cfd652843bdb61c374cf3582c4c0643483b (diff) |
ARM64 / ACPI: Enable ARM64 in Kconfig
Add Kconfigs to build ACPI on ARM64, and make ACPI available on ARM64.
acpi_idle driver is x86/IA64 dependent now, so make CONFIG_ACPI_PROCESSOR
depend on X86 || IA64, and implement it on ARM64 in the future.
CC: Rafael J. Wysocki <rjw@rjwysocki.net>
CC: Catalin Marinas <catalin.marinas@arm.com>
CC: Will Deacon <will.deacon@arm.com>
Reviewed-by: Grant Likely <grant.likely@linaro.org>
Tested-by: Suravee Suthikulpanit <Suravee.Suthikulpanit@amd.com>
Tested-by: Yijing Wang <wangyijing@huawei.com>
Tested-by: Mark Langsdorf <mlangsdo@redhat.com>
Tested-by: Jon Masters <jcm@redhat.com>
Tested-by: Timur Tabi <timur@codeaurora.org>
Tested-by: Robert Richter <rrichter@cavium.com>
Acked-by: Robert Richter <rrichter@cavium.com>
Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Graeme Gregory <graeme.gregory@linaro.org>
Signed-off-by: Al Stone <al.stone@linaro.org>
Signed-off-by: Hanjun Guo <hanjun.guo@linaro.org>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'drivers/acpi')
-rw-r--r-- | drivers/acpi/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/acpi/Kconfig b/drivers/acpi/Kconfig index a726381fea72..a8f531e2b97c 100644 --- a/drivers/acpi/Kconfig +++ b/drivers/acpi/Kconfig | |||
@@ -5,7 +5,7 @@ | |||
5 | menuconfig ACPI | 5 | menuconfig ACPI |
6 | bool "ACPI (Advanced Configuration and Power Interface) Support" | 6 | bool "ACPI (Advanced Configuration and Power Interface) Support" |
7 | depends on !IA64_HP_SIM | 7 | depends on !IA64_HP_SIM |
8 | depends on IA64 || X86 | 8 | depends on IA64 || X86 || (ARM64 && EXPERT) |
9 | depends on PCI | 9 | depends on PCI |
10 | select PNP | 10 | select PNP |
11 | default y | 11 | default y |
@@ -167,6 +167,7 @@ config ACPI_PROCESSOR | |||
167 | tristate "Processor" | 167 | tristate "Processor" |
168 | select THERMAL | 168 | select THERMAL |
169 | select CPU_IDLE | 169 | select CPU_IDLE |
170 | depends on X86 || IA64 | ||
170 | default y | 171 | default y |
171 | help | 172 | help |
172 | This driver installs ACPI as the idle handler for Linux and uses | 173 | This driver installs ACPI as the idle handler for Linux and uses |