summaryrefslogtreecommitdiff
path: root/src/soc
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc')
-rw-r--r--src/soc/intel/alderlake/romstage/romstage.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/soc/intel/alderlake/romstage/romstage.c b/src/soc/intel/alderlake/romstage/romstage.c
index 5ca16aefd8..f0c039ee6c 100644
--- a/src/soc/intel/alderlake/romstage/romstage.c
+++ b/src/soc/intel/alderlake/romstage/romstage.c
@@ -227,7 +227,9 @@ void mainboard_romstage_entry(void)
* - Allow PEIM graphics driver to smoothly execute in ramstage if
* RUN_FSP_GOP is selected
*/
- early_graphics_stop();
+ if (!CONFIG(SOC_INTEL_CSE_LITE_SYNC_IN_RAMSTAGE))
+ /* Keep eSOL active if CSE sync in ramstage config is enabled */
+ early_graphics_stop();
if (CONFIG(ENABLE_EARLY_DMA_PROTECTION))
vtd_enable_dma_protection();