Michał Żygowski has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/40342 )
Change subject: include/elog.h: add intruder detection event codes ......................................................................
include/elog.h: add intruder detection event codes
Signed-off-by: Michał Żygowski michal.zygowski@3mdeb.com Change-Id: I3a1cd17bb7e12271adef0ef3d505509f25d4c87a --- M src/include/elog.h 1 file changed, 5 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/42/40342/1
diff --git a/src/include/elog.h b/src/include/elog.h index 68a4842..5a7632d 100644 --- a/src/include/elog.h +++ b/src/include/elog.h @@ -195,6 +195,11 @@ /* Cr50 reset to enable TPM */ #define ELOG_TYPE_CR50_NEED_RESET 0xb2
+/* Intruder detection */ +#define ELOG_TYPE_INTRUDER_DETECTION 0xb3 +#define ELOG_CASE_OPENED 0x01 +#define ELOG_CASE_CLOSED 0x02 + struct elog_event_extended_event { u8 event_type; u32 event_complement;