From 73de3f95acc1e121b5ed7760a2ef030fd0c02522 Mon Sep 17 00:00:00 2001 From: Subrata Banik Date: Thu, 14 Aug 2025 15:44:14 +0530 Subject: [PATCH] mb/google/bluey: Support hardware watchdog logging This patch adds support for hardware watchdog event logging which is useful while debugging crashes or abnormal shutdown. TEST=Able to build and boot google/bluey. Change-Id: Iaa60e4eb564a1f517b979c2007707746f3453092 Signed-off-by: Subrata Banik Reviewed-on: https://review.coreboot.org/c/coreboot/+/88775 Reviewed-by: Kapil Porwal Tested-by: build bot (Jenkins) --- src/mainboard/google/bluey/romstage.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/mainboard/google/bluey/romstage.c b/src/mainboard/google/bluey/romstage.c index 4487b76cf9..b76dfba1f2 100644 --- a/src/mainboard/google/bluey/romstage.c +++ b/src/mainboard/google/bluey/romstage.c @@ -6,9 +6,13 @@ #include #include #include +#include void platform_romstage_main(void) { + /* Watchdog must be checked first to avoid erasing watchdog info later. */ + check_wdog(); + shrm_fw_load_reset(); /* QCLib: DDR init & train */