Attention is currently required from: Dinesh Gehlot.
Subrata Banik has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/74209 )
Change subject: soc/intel/cmn: Implement an API to get ISHC version ......................................................................
Patch Set 2:
(2 comments)
File src/soc/intel/common/block/cse/cse.c:
https://review.coreboot.org/c/coreboot/+/74209/comment/3f4fd541_a6423be8 PS2, Line 1215: Add a comment saying, this cmd can only work post FSP-M (after CSE DID cmd being sent)
https://review.coreboot.org/c/coreboot/+/74209/comment/715ef64f_647f7aad PS2, Line 1215: : bool get_ishc_version(struct fw_version *resp_version) ``` #if ENV_RAMSTAGE bool get_ishc_version(struct fw_version *resp_version) { if (!CONFIG(DRIVERS_INTEL_ISH)) return false; struct cse_fw_partition_info *version = cbmem_find(CBMEM_ID_CSE_PARTITION_VERSION); memcpy(resp_version, &version->ish_info.cur_ish_fw_version, sizeof(struct fw_version)); return true; } #endif
```