soc/intel/tigerlake: Set UserBd to recommended default for PCH-H
Change-Id: Ie8a28d8e03d7176df5409e6cb507a0a802ff026f Signed-off-by: Jeremy Soller <jeremy@system76.com> Signed-off-by: Tim Crawford <tcrawford@system76.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/56951 Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
e7aa4541d4
commit
86d8ac7a5f
|
@ -29,7 +29,10 @@ static void soc_memory_init_params(FSP_M_CONFIG *m_cfg,
|
||||||
m_cfg->TsegSize = CONFIG_SMM_TSEG_SIZE;
|
m_cfg->TsegSize = CONFIG_SMM_TSEG_SIZE;
|
||||||
m_cfg->IedSize = CONFIG_IED_REGION_SIZE;
|
m_cfg->IedSize = CONFIG_IED_REGION_SIZE;
|
||||||
m_cfg->SaGv = config->SaGv;
|
m_cfg->SaGv = config->SaGv;
|
||||||
m_cfg->UserBd = BOARD_TYPE_ULT_ULX;
|
if (CONFIG(SOC_INTEL_TIGERLAKE_PCH_H))
|
||||||
|
m_cfg->UserBd = BOARD_TYPE_DESKTOP;
|
||||||
|
else
|
||||||
|
m_cfg->UserBd = BOARD_TYPE_ULT_ULX;
|
||||||
m_cfg->RMT = config->RMT;
|
m_cfg->RMT = config->RMT;
|
||||||
|
|
||||||
/* CpuRatio Settings */
|
/* CpuRatio Settings */
|
||||||
|
|
Loading…
Reference in New Issue