From 0e03fa3f6e474aa28a9151e5d9f152619636650c Mon Sep 17 00:00:00 2001 From: Bo-Chen Chen Date: Mon, 4 Jul 2022 18:59:51 +0800 Subject: soc/mediatek: Move wdt_set_req() to common folder There are more and more variables which are SoC-specific, so add soc/wdt.h for each SoC and rename common/wdt.h to common/wdt_common.h. wdt_set_req() is almost the same for mt8192, mt8195 and mt8186, so move it to a common file wdt_req.c. TEST=build pass BUG=b:233720142 Signed-off-by: Bo-Chen Chen Change-Id: I7a334b3e7cd4f24a848dd31aca546dc7236d5fb8 Reviewed-on: https://review.coreboot.org/c/coreboot/+/65636 Reviewed-by: Yidi Lin Tested-by: build bot (Jenkins) Reviewed-by: Yu-Ping Wu --- src/soc/mediatek/common/wdt_req.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/soc/mediatek/common/wdt_req.c (limited to 'src/soc/mediatek/common/wdt_req.c') diff --git a/src/soc/mediatek/common/wdt_req.c b/src/soc/mediatek/common/wdt_req.c new file mode 100644 index 0000000000..6dfd608b69 --- /dev/null +++ b/src/soc/mediatek/common/wdt_req.c @@ -0,0 +1,15 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +#include +#include + +void mtk_wdt_set_req(void) +{ + SET32_BITFIELDS(&mtk_wdt->wdt_req_mode, + MTK_WDT_SPM_THERMAL_EN, MTK_WDT_SPM_THERMAL_VAL, + MTK_WDT_THERMAL_EN, 1, + MTK_WDT_REQ_MOD_KEY, MTK_WDT_REQ_MOD_KEY_VAL); + SET32_BITFIELDS(&mtk_wdt->wdt_req_irq_en, + MTK_WDT_THERMAL_IRQ, 0, + MTK_WDT_REQ_IRQ_KEY, MTK_WDT_REQ_IRQ_KEY_VAL); +} -- cgit v1.2.3