Subrata Banik has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/75811?usp=email )
Change subject: soc/intel/cmn/cse: Read ISH FW version if avilable in CSE partition ......................................................................
soc/intel/cmn/cse: Read ISH FW version if avilable in CSE partition
This patch reduces the redundant config check to understand if an ISH FW partition is available and to fetch the ISH FW version.
The goal is to fetch the ISH FW version if the ISH FW belongs to the CSE firmware partition table.
Change-Id: I689a71377e7aea0fa3bc1835f355708c33c2caea Signed-off-by: Subrata Banik subratabanik@google.com --- M src/soc/intel/common/block/cse/cse_lite.c 1 file changed, 1 insertion(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/11/75811/1
diff --git a/src/soc/intel/common/block/cse/cse_lite.c b/src/soc/intel/common/block/cse/cse_lite.c index 97f114c..dd3f173 100644 --- a/src/soc/intel/common/block/cse/cse_lite.c +++ b/src/soc/intel/common/block/cse/cse_lite.c @@ -1309,8 +1309,7 @@ * Store the ISH RW Firmware Version into CBMEM if ISH partition * is available */ - if (CONFIG(SOC_INTEL_STORE_ISH_FW_VERSION) && - soc_is_ish_partition_enabled()) + if (soc_is_ish_partition_enabled()) store_ish_version(); }