diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2022-04-21 13:39:39 +0200 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2023-09-01 21:05:27 +0000 |
commit | 4c88d105d0f4182a9fdbd79d08aa432cbc75196a (patch) | |
tree | e6ed6e348f03a802fea14bd49119730d047ff6be | |
parent | b41d48a09c27ec24ea780d9415ed61369f31fb59 (diff) |
soc/intel/cpu: Only show MP PPI option when meaningful
Older FSP releases don't have an option to do MP init via PPI, so it
should not be visible.
Change-Id: I74b4bd5dd72980b859763e89ead7d7f619321e66
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/63759
Reviewed-by: Subrata Banik <subratabanik@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/soc/intel/common/block/cpu/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/intel/common/block/cpu/Kconfig b/src/soc/intel/common/block/cpu/Kconfig index 316ec403c3..8c14cb2018 100644 --- a/src/soc/intel/common/block/cpu/Kconfig +++ b/src/soc/intel/common/block/cpu/Kconfig @@ -119,8 +119,8 @@ config USE_INTEL_FSP_MP_INIT config USE_INTEL_FSP_TO_CALL_COREBOOT_PUBLISH_MP_PPI bool "Perform MP Initialization by FSP using coreboot MP PPI service" - default y if MP_SERVICES_PPI - default n + default y + depends on MP_SERVICES_PPI help This option allows FSP to make use of MP services PPI published by coreboot to perform multiprocessor initialization. |