soc/intel/jasperlake: Set the GpioOverride configuration

Set "GpioOverride" config to override FSP gpio
configuration. FSP will not configure any GPIOs
and rely on GPIO settings programmed before moved to FSP.

BUG=b:150666058
TEST=Build and boot JSLRVP

Cq-Depend: TBD
Change-Id: Ia4036cf0be3a6036d70920743958dc327a652077
Signed-off-by: Ronak Kanabar <ronak.kanabar@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/45901
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Subrata Banik <subrata.banik@intel.com>
Reviewed-by: Karthik Ramasubramanian <kramasub@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Ronak Kanabar 2020-10-01 18:03:09 +05:30 committed by Patrick Georgi
parent 77a23d10bf
commit 8586b4020d
1 changed files with 7 additions and 0 deletions

View File

@ -116,6 +116,13 @@ static void soc_memory_init_params(FSP_M_CONFIG *m_cfg,
/* Skip the CPU replacement check */
m_cfg->SkipCpuReplacementCheck = config->SkipCpuReplacementCheck;
/*
* Set GpioOverride
* When GpioOverride is set FSP will not configure any GPIOs
* and rely on GPIO settings programmed before moved to FSP.
*/
m_cfg->GpioOverride = 1;
}
void platform_fsp_memory_init_params_cb(FSPM_UPD *mupd, uint32_t version)