Subrata Banik has submitted this change. ( https://review.coreboot.org/c/coreboot/+/83461?usp=email )
Change subject: commonlib: Add ELOG_TYPE_FW_LATE_SOL eventLog type ......................................................................
commonlib: Add ELOG_TYPE_FW_LATE_SOL eventLog type
Add a new eventLog type of ELOG_TYPE_FW_LATE_SOL to support logging when we show late (from payload) Signs Of Life (SOL) to the user.
BUG=b:305898363 TEST=Event shows in eventlog tool after CSE sync: ``` Late Sign of Life | CSE Sync Late SOL Screen Shown ```
Change-Id: Ibbe9f37a791e5c2a0c6e982942cf3043a2bd4b45 Signed-off-by: Subrata Banik subratabanik@google.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/83461 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Dinesh Gehlot digehlot@google.com --- M src/commonlib/bsd/include/commonlib/bsd/elog.h 1 file changed, 6 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Dinesh Gehlot: Looks good to me, approved
diff --git a/src/commonlib/bsd/include/commonlib/bsd/elog.h b/src/commonlib/bsd/include/commonlib/bsd/elog.h index 31bb8fc..efc4d6e 100644 --- a/src/commonlib/bsd/include/commonlib/bsd/elog.h +++ b/src/commonlib/bsd/include/commonlib/bsd/elog.h @@ -381,6 +381,12 @@ */ #define ELOG_TYPE_FW_SPLASH_SCREEN 0xbb
+/* + * Events related to CSE sync from payload + */ +#define ELOG_TYPE_FW_LATE_SOL 0xbc +#define ELOG_FW_LATE_SOL_CSE_SYNC 0x0 + /* Only the 7-LSB are used for size */ #define ELOG_MAX_EVENT_SIZE 0x7F