From e6a03e0b1b75b8470c992346376e098187b14f12 Mon Sep 17 00:00:00 2001 From: Tristan Shieh Date: Mon, 28 Jan 2019 15:31:50 +0800 Subject: mediatek: Separate WDT reset function from WDT driver Separate WDT reset function from WDT driver, then we can use the common WDT driver and have a board-specific reset function on different boards. In Kukui, we plan to use GPIO HW reset, instead of WDT reset. Add config "MISSING_BOARD_RESET" in Kukui to pass the build for now. BUG=b:80501386 BRANCH=none TEST=emerge-elm coreboot; emerge-kukui coreboot; Change-Id: Ica07fe3a027cd7e9eb6d10202c3ef3ed7bea00c2 Signed-off-by: Tristan Shieh Reviewed-on: https://review.coreboot.org/c/31121 Reviewed-by: Julius Werner Reviewed-by: Hung-Te Lin Reviewed-by: Paul Menzel Tested-by: build bot (Jenkins) --- src/soc/mediatek/common/include/soc/wdt.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/soc/mediatek/common/include') diff --git a/src/soc/mediatek/common/include/soc/wdt.h b/src/soc/mediatek/common/include/soc/wdt.h index a15434c70d..b24be28e3f 100644 --- a/src/soc/mediatek/common/include/soc/wdt.h +++ b/src/soc/mediatek/common/include/soc/wdt.h @@ -17,6 +17,7 @@ #define SOC_MEDIATEK_COMMON_WDT_H #include +#include struct mtk_wdt_regs { u32 wdt_mode; @@ -48,6 +49,8 @@ enum { MTK_WDT_STA_HW_RST = 1 << 31 }; +static struct mtk_wdt_regs *const mtk_wdt = (void *)RGU_BASE; + int mtk_wdt_init(void); #endif /* SOC_MEDIATEK_COMMON_WDT_H */ -- cgit v1.2.3