Hung-Te Lin has submitted this change. ( https://review.coreboot.org/c/coreboot/+/59641 )
Change subject: soc/mediatek: log watchdog status ......................................................................
soc/mediatek: log watchdog status
Reveal watchdog status value on bootblock stage.
BUG=b:207646327 TEST=build pass
Signed-off-by: Rex-BC Chen rex-bc.chen@mediatek.com Change-Id: I2c5ad222a41085616565dd5c10b0e967bb64ec63 Reviewed-on: https://review.coreboot.org/c/coreboot/+/59641 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Yu-Ping Wu yupingso@google.com --- M src/soc/mediatek/common/wdt.c 1 file changed, 2 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Yu-Ping Wu: Looks good to me, approved
diff --git a/src/soc/mediatek/common/wdt.c b/src/soc/mediatek/common/wdt.c index b228e56..f06fbf0 100644 --- a/src/soc/mediatek/common/wdt.c +++ b/src/soc/mediatek/common/wdt.c @@ -16,6 +16,8 @@
mtk_wdt_clr_status(wdt_sta);
+ printk(BIOS_INFO, "WDT: Status = %#x\n", wdt_sta); + printk(BIOS_INFO, "WDT: Last reset was "); if (wdt_sta & MTK_WDT_STA_HW_RST) { printk(BIOS_INFO, "hardware watchdog\n");
3 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one.