John Zhao has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/39438 )
Change subject: soc/intel/tigerlake: Configure Vmx support using Kconfig ......................................................................
soc/intel/tigerlake: Configure Vmx support using Kconfig
Change VmxEnable UPD value based on Kconfig ENABLE_VMX
BUG=None TEST=Built image and booted to kernel.
Change-Id: I725474643193223865a135813cf882fd7636d24a Signed-off-by: John Zhao john.zhao@intel.com --- M src/soc/intel/tigerlake/romstage/fsp_params_tgl.c 1 file changed, 3 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/38/39438/1
diff --git a/src/soc/intel/tigerlake/romstage/fsp_params_tgl.c b/src/soc/intel/tigerlake/romstage/fsp_params_tgl.c index f0f3b4c..8b81616 100644 --- a/src/soc/intel/tigerlake/romstage/fsp_params_tgl.c +++ b/src/soc/intel/tigerlake/romstage/fsp_params_tgl.c @@ -124,6 +124,9 @@ m_cfg->PchHdaIDispLinkTmode = config->PchHdaIDispLinkTmode; m_cfg->PchHdaIDispLinkFrequency = config->PchHdaIDispLinkFrequency; m_cfg->PchHdaIDispCodecDisconnect = config->PchHdaIDispCodecDisconnect; + + /* Change VmxEnable UPD value according to ENABLE_VMX Kconfig */ + m_cfg->VmxEnable = CONFIG(ENABLE_VMX); }
void platform_fsp_memory_init_params_cb(FSPM_UPD *mupd, uint32_t version)