public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH] TPL: Do not allow enabling TPL symbols for non-TPL builds
@ 2022-05-24  9:03 Pali Rohár
  2022-06-08 12:51 ` Tom Rini
  0 siblings, 1 reply; 2+ messages in thread
From: Pali Rohár @ 2022-05-24  9:03 UTC (permalink / raw)
  To: Simon Glass, Stefan Roese, Tom Rini; +Cc: u-boot

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@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


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-06-08 12:52 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-24  9:03 [PATCH] TPL: Do not allow enabling TPL symbols for non-TPL builds Pali Rohár
2022-06-08 12:51 ` Tom Rini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox