aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/soc/intel/jasperlake/romstage/fsp_params.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/soc/intel/jasperlake/romstage/fsp_params.c b/src/soc/intel/jasperlake/romstage/fsp_params.c
index 809ae805bf..dccdebf304 100644
--- a/src/soc/intel/jasperlake/romstage/fsp_params.c
+++ b/src/soc/intel/jasperlake/romstage/fsp_params.c
@@ -66,10 +66,13 @@ static void soc_memory_init_params(FSP_M_CONFIG *m_cfg,
m_cfg->CpuTraceHubMode = config->TraceHubMode;
}
+ /* IPU configuration */
+ dev = pcidev_path_on_root(SA_DEVFN_IPU);
+ m_cfg->SaIpuEnable = is_dev_enabled(dev);
+
/* Change VmxEnable UPD value according to ENABLE_VMX Kconfig */
m_cfg->VmxEnable = CONFIG(ENABLE_VMX);
-
/* Enable SMBus controller based on config */
m_cfg->SmbusEnable = config->SmbusEnable;