File tree 7 files changed +9
-5
lines changed
7 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -956,6 +956,7 @@ config SPL_ACPI_GPE
956
956
957
957
config TPL_ACPI_GPE
958
958
bool "Support ACPI general-purpose events in TPL"
959
+ depends on TPL
959
960
help
960
961
Enable a driver for ACPI GPEs to allow peripherals to send interrupts
961
962
via ACPI to the OS. In U-Boot this is only used when U-Boot itself
Original file line number Diff line number Diff line change @@ -622,7 +622,7 @@ config SPL_BOOTSTAGE
622
622
623
623
config TPL_BOOTSTAGE
624
624
bool "Boot timing and reported in TPL"
625
- depends on BOOTSTAGE
625
+ depends on BOOTSTAGE && TPL
626
626
help
627
627
Enable recording of boot time in SPL. To make this visible to U-Boot
628
628
proper, enable BOOTSTAGE_STASH as well. This will stash the timing
Original file line number Diff line number Diff line change @@ -87,6 +87,7 @@ config SPL_LOGLEVEL
87
87
88
88
config TPL_LOGLEVEL
89
89
int
90
+ depends on TPL
90
91
default LOGLEVEL
91
92
92
93
config VPL_LOGLEVEL
@@ -408,7 +409,7 @@ endif
408
409
409
410
config TPL_LOG
410
411
bool "Enable logging support in TPL"
411
- depends on LOG
412
+ depends on LOG && TPL
412
413
help
413
414
This enables support for logging of status and debug messages. These
414
415
can be displayed on the console, recorded in a memory buffer, or
Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ config SPL_SYSCON
224
224
225
225
config TPL_SYSCON
226
226
bool "Support system controllers in TPL"
227
- depends on SPL_REGMAP
227
+ depends on TPL_REGMAP
228
228
help
229
229
Many SoCs have a number of system controllers which are dealt with
230
230
as a group by a single driver. Some common functionality is provided
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ config SPL_ACPI_PMC
17
17
18
18
config TPL_ACPI_PMC
19
19
bool "Power Manager (x86 PMC) support in TPL"
20
+ depends on TPL
20
21
default y if ACPI_PMC
21
22
help
22
23
Enable support for an x86-style power-management controller which
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ config SPL_RAM
19
19
20
20
config TPL_RAM
21
21
bool "Enable RAM support in TPL"
22
- depends on RAM
22
+ depends on RAM && TPL
23
23
help
24
24
The RAM subsystem adds a small amount of overhead to the image.
25
25
If this is acceptable and you have a need to use RAM drivers in
Original file line number Diff line number Diff line change @@ -248,6 +248,7 @@ config SPL_TINY_MEMSET
248
248
249
249
config TPL_TINY_MEMSET
250
250
bool "Use a very small memset() in TPL"
251
+ depends on TPL
251
252
help
252
253
The faster memset() is the arch-specific one (if available) enabled
253
254
by CONFIG_USE_ARCH_MEMSET. If that is not enabled, we can still get
@@ -771,7 +772,7 @@ config TPL_OF_LIBFDT
771
772
772
773
config TPL_OF_LIBFDT_ASSUME_MASK
773
774
hex "Mask of conditions to assume for libfdt"
774
- depends on TPL_OF_LIBFDT || FIT
775
+ depends on TPL_OF_LIBFDT || ( FIT && TPL)
775
776
default 0xff
776
777
help
777
778
Use this to change the assumptions made by libfdt in TPL about the
You can’t perform that action at this time.
0 commit comments