Subrata Banik has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/36532 )
Change subject: soc/intel/icelake: Skip BIOS OpRom execution based on CONFIG_RUN_FSP_GOP ......................................................................
soc/intel/icelake: Skip BIOS OpRom execution based on CONFIG_RUN_FSP_GOP
This patch replaces BIOS OpRpm execution checks from CONFIG_INTEL_GMA_ADD_VBT to CONFIG_RUN_FSP_GOP as adding VBT files doesn't mean GFX PEIM is going to execute to initialize IGD.
Change-Id: Ic76529ba11f621f644d4472be6cbbc34682f00bf Signed-off-by: Subrata Banik subrata.banik@intel.com --- M src/soc/intel/icelake/graphics.c 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/32/36532/1
diff --git a/src/soc/intel/icelake/graphics.c b/src/soc/intel/icelake/graphics.c index 0709033..91f40b9 100644 --- a/src/soc/intel/icelake/graphics.c +++ b/src/soc/intel/icelake/graphics.c @@ -52,14 +52,14 @@
/* * GFX PEIM module inside FSP binary is taking care of graphics - * initialization based on INTEL_GMA_ADD_VBT Kconfig + * initialization based on RUN_FSP_GOP Kconfig * option and input VBT file. Hence no need to load/execute legacy VGA * OpROM in order to initialize GFX. * * In case of non-FSP solution, SoC need to select VGA_ROM_RUN * Kconfig to perform GFX initialization through VGA OpRom. */ - if (CONFIG(INTEL_GMA_ADD_VBT)) + if (CONFIG(RUN_FSP_GOP)) return;
/* IGD needs to Bus Master */