Dinesh Gehlot has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/75748?usp=email )
Change subject: soc/intel/cmd/blk/cse: Perform cse version store under pertinent option ......................................................................
soc/intel/cmd/blk/cse: Perform cse version store under pertinent option
This patch ensures that the CSE version store will be performed when the SOC_INTEL_STORE_CSE_VERSION configuration option is set.
BUG=b:280722061 Test=Verified the changes nissa board.
Signed-off-by: Dinesh Gehlot digehlot@google.com Change-Id: Iebe27d3277bb6343cc818069bcbb2dc2e8ef0413 --- M src/soc/intel/common/block/cse/cse_lite.c 1 file changed, 2 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/48/75748/1
diff --git a/src/soc/intel/common/block/cse/cse_lite.c b/src/soc/intel/common/block/cse/cse_lite.c index 733f68b..1865c4f 100644 --- a/src/soc/intel/common/block/cse/cse_lite.c +++ b/src/soc/intel/common/block/cse/cse_lite.c @@ -1303,13 +1303,14 @@ if (CONFIG(SOC_INTEL_CSE_LITE_SYNC_IN_RAMSTAGE)) cse_fw_sync();
+ if (CONFIG(SOC_INTEL_STORE_CSE_VERSION)) + store_cse_rw_fw_version(); /* * Store the CSE/ISH RW Firmware Version into CBMEM if ISH partition * is available */ if (CONFIG(SOC_INTEL_STORE_CSE_FPT_PARTITION_VERSION) && soc_is_ish_partition_enabled()) { - store_cse_rw_fw_version(); store_ish_version(); } }