]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
acpi: Use finer-grained control of ACPI-table generation
authorSimon Glass <sjg@chromium.org>
Wed, 1 Dec 2021 16:02:43 +0000 (09:02 -0700)
committerSimon Glass <sjg@chromium.org>
Tue, 25 Jan 2022 18:44:36 +0000 (11:44 -0700)
Rather than keying everything off ACPIGEN, use the main
GENERATE_ACPI_TABLE option to determine whether the core ACPI code
is included. Make sure these option are not enabled in SPL/TPL since we
never generate tables there.

Signed-off-by: Simon Glass <sjg@chromium.org>
arch/Kconfig
arch/x86/lib/Makefile
lib/Makefile
lib/acpi/Makefile

index c5dd7fcaf73731fc22bf2f3b88656b262f509d63..bea8ead56178764d2c54c124a74c4a8ec3918fa5 100644 (file)
@@ -203,6 +203,7 @@ config SANDBOX
        imply CMD_EXTENSION
        imply KEYBOARD
        imply PHYSMEM
+       imply GENERATE_ACPI_TABLE
 
 config SH
        bool "SuperH architecture"
index e5235b7c4f469948030e4c1c97bffb52eb55d670..a6f22441474b6b4e91589ea885909984e1d19ed5 100644 (file)
@@ -41,7 +41,7 @@ obj-y += acpi.o
 obj-$(CONFIG_HAVE_ACPI_RESUME) += acpi_s3.o
 ifndef CONFIG_QEMU
 obj-y += acpigen.o
-obj-$(CONFIG_GENERATE_ACPI_TABLE) += acpi_table.o
+obj-$(CONFIG_$(SPL_TPL_)GENERATE_ACPI_TABLE) += acpi_table.o
 endif
 obj-y  += tables.o
 ifndef CONFIG_SPL_BUILD
index 7950e847a9e25f231e32b2b592bb2d0d9dc9b661..bde046c72d6f3f3475e6b0e3f4cdd05c94e766fd 100644 (file)
@@ -58,7 +58,7 @@ obj-$(CONFIG_TPM_V1) += tpm-v1.o
 obj-$(CONFIG_TPM_V2) += tpm-v2.o
 endif
 
-obj-$(CONFIG_$(SPL_)ACPIGEN) += acpi/
+obj-$(CONFIG_$(SPL_TPL_)GENERATE_ACPI_TABLE) += acpi/
 obj-$(CONFIG_$(SPL_)MD5) += md5.o
 obj-$(CONFIG_ECDSA) += ecdsa/
 obj-$(CONFIG_$(SPL_)RSA) += rsa/
index 5c2f793701f2c695088b7c7c027120c36905eea3..f5d58aba908145a136d47e26608b3682da79051b 100644 (file)
@@ -1,7 +1,7 @@
 # SPDX-License-Identifier: GPL-2.0+
 #
 
-obj-y += acpigen.o
-obj-y += acpi_device.o
-obj-y += acpi_dp.o
-obj-y += acpi_table.o
+obj-$(CONFIG_$(SPL_)ACPIGEN) += acpigen.o
+obj-$(CONFIG_$(SPL_)ACPIGEN) += acpi_device.o
+obj-$(CONFIG_$(SPL_)ACPIGEN) += acpi_dp.o
+obj-$(CONFIG_$(SPL_)ACPIGEN) += acpi_table.o