soc/intel/skylake: Drop always-zero ProbelessTrace dt setting
This seems to be a debugging option. Since unset devicetree options default to zero, drop the setting. If it is needed in the future, a user-visible Kconfig option would probably make more sense. Change-Id: I0a71bc407fa92da3dcc0e3dbd666438d4280ffcb Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/48576 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Michael Niewöhner <foss@mniewoehner.de> Reviewed-by: Furquan Shaikh <furquan@google.com>
This commit is contained in:
@@ -90,9 +90,6 @@ struct soc_intel_skylake_config {
|
||||
/* Whether to ignore VT-d support of the SKU */
|
||||
int ignore_vtd;
|
||||
|
||||
/* Probeless Trace function */
|
||||
u8 ProbelessTrace;
|
||||
|
||||
/*
|
||||
* System Agent dynamic frequency configuration
|
||||
* When enabled memory will be trained at two different frequencies.
|
||||
|
@@ -216,7 +216,7 @@ static void soc_memory_init_params(FSP_M_CONFIG *m_cfg,
|
||||
m_cfg->MmioSize = 0x800; /* 2GB in MB */
|
||||
m_cfg->TsegSize = CONFIG_SMM_TSEG_SIZE;
|
||||
m_cfg->IedSize = CONFIG_IED_REGION_SIZE;
|
||||
m_cfg->ProbelessTrace = config->ProbelessTrace;
|
||||
m_cfg->ProbelessTrace = 0;
|
||||
m_cfg->SaGv = config->SaGv;
|
||||
m_cfg->UserBd = BOARD_TYPE_ULT_ULX;
|
||||
m_cfg->RMT = config->Rmt;
|
||||
|
Reference in New Issue
Block a user