[PATCH] TPL: Do not allow enabling TPL symbols for non-TPL builds

Pali Rohár pali at kernel.org
Tue May 24 11:03:38 CEST 2022


It does not make sense to enable TPL options when not building TPL binary.
So disallow selecting TPL options for non-TPL builds.

Signed-off-by: Pali Rohár <pali at kernel.org>
---
 common/Kconfig                 | 4 ++++
 drivers/power/acpi_pmc/Kconfig | 1 +
 lib/Kconfig                    | 3 ++-
 3 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/common/Kconfig b/common/Kconfig
index 8e59dcef4b8b..ba59edd14673 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -89,10 +89,14 @@ config SPL_LOGLEVEL
 
 endif
 
+if TPL
+
 config TPL_LOGLEVEL
 	int
 	default LOGLEVEL
 
+endif
+
 config VPL_LOGLEVEL
 	int "loglevel for VPL"
 	default LOGLEVEL
diff --git a/drivers/power/acpi_pmc/Kconfig b/drivers/power/acpi_pmc/Kconfig
index 8b712abc41e9..629acb071427 100644
--- a/drivers/power/acpi_pmc/Kconfig
+++ b/drivers/power/acpi_pmc/Kconfig
@@ -18,6 +18,7 @@ config SPL_ACPI_PMC
 
 config TPL_ACPI_PMC
 	bool "Power Manager (x86 PMC) support in TPL"
+	depends on TPL
 	default y if ACPI_PMC
 	help
 	  Enable support for an x86-style power-management controller which
diff --git a/lib/Kconfig b/lib/Kconfig
index 299381ac80d5..ef1c57a075f6 100644
--- a/lib/Kconfig
+++ b/lib/Kconfig
@@ -249,6 +249,7 @@ config SPL_TINY_MEMSET
 
 config TPL_TINY_MEMSET
 	bool "Use a very small memset() in TPL"
+	depends on TPL
 	help
 	  The faster memset() is the arch-specific one (if available) enabled
 	  by CONFIG_USE_ARCH_MEMSET. If that is not enabled, we can still get
@@ -779,7 +780,7 @@ config TPL_OF_LIBFDT
 
 config TPL_OF_LIBFDT_ASSUME_MASK
 	hex "Mask of conditions to assume for libfdt"
-	depends on TPL_OF_LIBFDT || FIT
+	depends on TPL_OF_LIBFDT || (TPL && FIT)
 	default 0xff
 	help
 	  Use this to change the assumptions made by libfdt in TPL about the
-- 
2.20.1



More information about the U-Boot mailing list