summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/alderlake/Kconfig
diff options
context:
space:
mode:
authorKapil Porwal <kapilporwal@google.com>2023-01-16 16:07:48 +0000
committerFelix Held <felix-coreboot@felixheld.de>2023-02-23 12:15:35 +0000
commit23ef60de984bb67e90cc08edb2852d989d47c616 (patch)
treeb145429a19680424848405c54c9f79fc8e19f217 /src/soc/intel/alderlake/Kconfig
parentc071652a4e6ad8deb319663f400fd46cf9114947 (diff)
downloadcoreboot-23ef60de984bb67e90cc08edb2852d989d47c616.tar.gz
coreboot-23ef60de984bb67e90cc08edb2852d989d47c616.tar.bz2
coreboot-23ef60de984bb67e90cc08edb2852d989d47c616.zip
intel/alderlake: remove skip_mbp_hob SOC chip config
Introduce at new config option CONFIG_FSP_PUBLISH_MBP_HOB to control the creation of ME_BIOS_PAYLOAD_HOB (MBP HOB) by FSP. This new option is hooked with `SkipMbpHob` UPD and is always disabled for RPL & ADL-N based ChromeOS platforms. It is not disabled for ADL-P based platforms because ADL-P FSP relies on MBP HOB for ChipsetInit version for ChipsetInit sync. As ChipsetInit sync doesn't occur if no MBP HOB, so it results S0ix issue. This limitation is addressed in the later platforms so creation of MBP HOB can be skipped for ADL-N and RPL based platforms. This made skip_mbp_hob SOC chip config variable redundant which is also removed as part of this change. BUG=none TEST=Build and boot to Google/Taniks. Signed-off-by: Kapil Porwal <kapilporwal@google.com> Change-Id: Ia396b633a71aedf592c45b69063ee0528840fd2b Reviewed-on: https://review.coreboot.org/c/coreboot/+/71996 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Subrata Banik <subratabanik@google.com>
Diffstat (limited to 'src/soc/intel/alderlake/Kconfig')
-rw-r--r--src/soc/intel/alderlake/Kconfig14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/soc/intel/alderlake/Kconfig b/src/soc/intel/alderlake/Kconfig
index 9c5868b0d68c..afa2a752df3c 100644
--- a/src/soc/intel/alderlake/Kconfig
+++ b/src/soc/intel/alderlake/Kconfig
@@ -537,4 +537,18 @@ config INTEL_GMA_BCLM_OFFSET
config INTEL_GMA_BCLM_WIDTH
default 32
+config FSP_PUBLISH_MBP_HOB
+ bool
+ default n if CHROMEOS && (SOC_INTEL_RAPTORLAKE || SOC_INTEL_ALDERLAKE_PCH_N)
+ default y
+ help
+ This is to control creation of ME_BIOS_PAYLOAD_HOB (MBP HOB) by FSP.
+ Disabling it for the platforms, which do not use MBP HOB, can improve the boot time.
+
+ Note: It cannot be disabled for ADL-P based platforms because ADL-P FSP relies on
+ MBP HOB for ChipsetInit version for ChipsetInit sync. As ChipsetInit sync doesn't
+ occur if no MBP HOB, so it results S0ix issue. This limitation is addressed in the
+ later platforms so creation of MBP HOB can be skipped for ADL-N and RPL based
+ platforms.
+
endif