Ronak Kanabar has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/41763 )
Change subject: soc/intel/jasperlake: Disable PAVP UPD ......................................................................
soc/intel/jasperlake: Disable PAVP UPD
This patch will disable PAVP UPD, which is by default enable in FSP.
BUG=b:155595624 BRANCH=None TEST=Build, boot JSLRVP, Verified UPD values from FSP log
Change-Id: I8e103ad11ae6ffa6b9efe4bf249bbe344bc10a30 Signed-off-by: Ronak Kanabar ronak.kanabar@intel.com --- M src/soc/intel/jasperlake/fsp_params.c 1 file changed, 3 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/63/41763/1
diff --git a/src/soc/intel/jasperlake/fsp_params.c b/src/soc/intel/jasperlake/fsp_params.c index 45162f9..311af3e 100644 --- a/src/soc/intel/jasperlake/fsp_params.c +++ b/src/soc/intel/jasperlake/fsp_params.c @@ -199,6 +199,9 @@ params->XdciEnable = 0; }
+ /* Disable Pavp */ + params->PavpEnable = 0 + /* Provide correct UART number for FSP debug logs */ params->SerialIoDebugUartNumber = CONFIG_UART_FOR_CONSOLE;