Message ID | 1389731822-21336-1-git-send-email-al.stone@linaro.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Tuesday 14 January 2014 13:37:02 al.stone@linaro.org wrote: > +config ACPI_REDUCED_HARDWARE_ONLY > + bool "Hardware-reduced ACPI support only" > + def_bool n > + depends on ACPI && EXPERT I think this will cause a Kconfig warning if you try to select this on ARM64 without turning on EXPERT as well. It should be ok if you express it as config ACPI_REDUCED_HARDWARE_ONLY bool "Hardware-reduced ACPI support only" if EXPERT def_bool n depends on ACPI Arnd
On 01/14/2014 02:26 PM, Arnd Bergmann wrote: > On Tuesday 14 January 2014 13:37:02 al.stone@linaro.org wrote: >> +config ACPI_REDUCED_HARDWARE_ONLY >> + bool "Hardware-reduced ACPI support only" >> + def_bool n >> + depends on ACPI && EXPERT > > I think this will cause a Kconfig warning if you try to select this > on ARM64 without turning on EXPERT as well. > > It should be ok if you express it as > > config ACPI_REDUCED_HARDWARE_ONLY > bool "Hardware-reduced ACPI support only" if EXPERT > def_bool n > depends on ACPI > > > Arnd > I am very puzzled. I went back and re-did my configs from before, tried a few new ones, and tried with both expressions above, but I could not get a Kconfig warning. Do you have an example .config that shows the warning? Thanks.
On Thursday 16 January 2014, Al Stone wrote: > On 01/14/2014 02:26 PM, Arnd Bergmann wrote: > > On Tuesday 14 January 2014 13:37:02 al.stone@linaro.org wrote: > >> +config ACPI_REDUCED_HARDWARE_ONLY > >> + bool "Hardware-reduced ACPI support only" > >> + def_bool n > >> + depends on ACPI && EXPERT > > > > I think this will cause a Kconfig warning if you try to select this > > on ARM64 without turning on EXPERT as well. > > > > It should be ok if you express it as > > > > config ACPI_REDUCED_HARDWARE_ONLY > > bool "Hardware-reduced ACPI support only" if EXPERT > > def_bool n > > depends on ACPI > > > > > > Arnd > > > > I am very puzzled. I went back and re-did my configs from > before, tried a few new ones, and tried with both expressions > above, but I could not get a Kconfig warning. Do you have an > example .config that shows the warning? > I don't have a source tree that allows turning on ACPI on arm64 to easily test this. To clarify: the warning will only happen if you also add this piece to arch/arm64/Kconfig: select ACPI_REDUCED_HARDWARE_ONLY if ACPI Arnd
On 01/16/2014 03:55 AM, Arnd Bergmann wrote: > On Thursday 16 January 2014, Al Stone wrote: >> On 01/14/2014 02:26 PM, Arnd Bergmann wrote: >>> On Tuesday 14 January 2014 13:37:02 al.stone@linaro.org wrote: >>>> +config ACPI_REDUCED_HARDWARE_ONLY >>>> + bool "Hardware-reduced ACPI support only" >>>> + def_bool n >>>> + depends on ACPI && EXPERT >>> >>> I think this will cause a Kconfig warning if you try to select this >>> on ARM64 without turning on EXPERT as well. >>> >>> It should be ok if you express it as >>> >>> config ACPI_REDUCED_HARDWARE_ONLY >>> bool "Hardware-reduced ACPI support only" if EXPERT >>> def_bool n >>> depends on ACPI >>> >>> >>> Arnd >>> >> >> I am very puzzled. I went back and re-did my configs from >> before, tried a few new ones, and tried with both expressions >> above, but I could not get a Kconfig warning. Do you have an >> example .config that shows the warning? >> > > I don't have a source tree that allows turning on ACPI on arm64 > to easily test this. To clarify: the warning will only happen if > you also add this piece to arch/arm64/Kconfig: > > select ACPI_REDUCED_HARDWARE_ONLY if ACPI > > Arnd > Right; I assumed I had to have that SELECT. My apologies -- I still cannot reproduce the warning. I'll resubmit the patch incorporating the suggestion, though, since the result ends up being the same -- you must have ACPI and EXPERT selected in order to enable ACPI_REDUCED_HARDWARE_ONLY. Thanks.
On Thursday 16 January 2014, Al Stone wrote: > Right; I assumed I had to have that SELECT. My apologies -- I > still cannot reproduce the warning. I'll resubmit the patch > incorporating the suggestion, though, since the result ends up > being the same -- you must have ACPI and EXPERT selected in order > to enable ACPI_REDUCED_HARDWARE_ONLY. > You should never 'select' CONFIG_EXPERT from architecture code, that is supposed to be a user-settable option. If you also select CONFIG_EXPERT or have that enabled in the configuration, you will not get a warning. Arnd
diff --git a/drivers/acpi/Kconfig b/drivers/acpi/Kconfig index 4770de5..961ea9e 100644 --- a/drivers/acpi/Kconfig +++ b/drivers/acpi/Kconfig @@ -343,6 +343,19 @@ config ACPI_BGRT data from the firmware boot splash. It will appear under /sys/firmware/acpi/bgrt/ . +config ACPI_REDUCED_HARDWARE_ONLY + bool "Hardware-reduced ACPI support only" + def_bool n + depends on ACPI && EXPERT + help + This config item changes the way the ACPI code is built. When this + option is selected, the kernel will use a specialized version of + ACPICA that ONLY supports the ACPI "reduced hardware" mode. The + resulting kernel will be smaller but it will also be restricted to + running in ACPI reduced hardware mode ONLY. + + If you are unsure what to do, do not enable this option. + source "drivers/acpi/apei/Kconfig" config ACPI_EXTLOG diff --git a/include/acpi/platform/aclinux.h b/include/acpi/platform/aclinux.h index 28f4f4d..7d71f08 100644 --- a/include/acpi/platform/aclinux.h +++ b/include/acpi/platform/aclinux.h @@ -52,6 +52,12 @@ #ifdef __KERNEL__ +/* Compile for reduced hardware mode only with this kernel config */ + +#ifdef CONFIG_ACPI_REDUCED_HARDWARE_ONLY +#define ACPI_REDUCED_HARDWARE 1 +#endif + #include <linux/string.h> #include <linux/kernel.h> #include <linux/ctype.h>