Attention is currently required from: Dinesh Gehlot, Kapil Porwal.
Subrata Banik has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/74005 )
Change subject: soc/intel/cmn: Implement API to retrieve firmware partition information ......................................................................
Patch Set 14:
(3 comments)
File src/soc/intel/common/block/cse/cse.c:
https://review.coreboot.org/c/coreboot/+/74005/comment/003f3ef6_ff608cf9 PS14, Line 1216: cse_get_partition_info please remain to `send_get_boot_partition_info_cmd`
https://review.coreboot.org/c/coreboot/+/74005/comment/512c90ca_2e166836 PS14, Line 1216: bool static bool
https://review.coreboot.org/c/coreboot/+/74005/comment/9ab8082f_e9759ba8 PS14, Line 1239: We should add a check to avoid sending ISHC partition info if platform doesn't have ISH partition itself ``` bool cse_get_partition_info(enum fpt_partition_id id, struct fw_version_resp *resp) { if (id == FPT_PARTITION_NAME_ISHC && !CONFIG(DRIVERS_INTEL_ISH)) return false;
return send_get_boot_partition_info_cmd(id, resp); } ```