Subrata Banik has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/83233?usp=email )
Change subject: soc/intel/cmn/cse: Conditionally disable ME status reporting ......................................................................
soc/intel/cmn/cse: Conditionally disable ME status reporting
This patch introduces a build-time configuration option to disable the ME status reporting functionality (dump_me_status, print_me_fw_version) in the CSE driver when SOC_INTEL_CSE_LITE_SYNC_BY_PAYLOAD is defined.
This is likely intended for platforms or configurations where the CSE communication is only limited to payload.
BUG=b:305898363 TEST=Able to build google/rex.
Change-Id: I5e360408a7847968117df475ff244d79ceafa23f Signed-off-by: Subrata Banik subratabanik@google.com --- M src/soc/intel/common/block/cse/cse_spec.c 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/33/83233/1
diff --git a/src/soc/intel/common/block/cse/cse_spec.c b/src/soc/intel/common/block/cse/cse_spec.c index 74155cd..d3c611d 100644 --- a/src/soc/intel/common/block/cse/cse_spec.c +++ b/src/soc/intel/common/block/cse/cse_spec.c @@ -115,5 +115,7 @@ #endif }
+#if !CONFIG(SOC_INTEL_CSE_LITE_SYNC_BY_PAYLOAD) BOOT_STATE_INIT_ENTRY(BS_DEV_ENABLE, BS_ON_EXIT, print_me_fw_version, NULL); BOOT_STATE_INIT_ENTRY(BS_OS_RESUME_CHECK, BS_ON_EXIT, dump_me_status, NULL); +#endif