summaryrefslogtreecommitdiffstats
path: root/src/soc/mediatek/common/reset.c
diff options
context:
space:
mode:
authorTristan Shieh <tristan.shieh@mediatek.com>2019-01-28 15:31:50 +0800
committerPatrick Georgi <pgeorgi@google.com>2019-01-29 12:30:34 +0000
commite6a03e0b1b75b8470c992346376e098187b14f12 (patch)
tree0afe223ec0b6d1cccdc7cffe6241688f1480720a /src/soc/mediatek/common/reset.c
parentb251c024609ebeb2f38a86d679065155333a61d1 (diff)
downloadcoreboot-e6a03e0b1b75b8470c992346376e098187b14f12.tar.gz
coreboot-e6a03e0b1b75b8470c992346376e098187b14f12.tar.bz2
coreboot-e6a03e0b1b75b8470c992346376e098187b14f12.zip
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 <tristan.shieh@mediatek.com> Reviewed-on: https://review.coreboot.org/c/31121 Reviewed-by: Julius Werner <jwerner@chromium.org> Reviewed-by: Hung-Te Lin <hungte@chromium.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/mediatek/common/reset.c')
-rw-r--r--src/soc/mediatek/common/reset.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/soc/mediatek/common/reset.c b/src/soc/mediatek/common/reset.c
new file mode 100644
index 000000000000..855e34fb186a
--- /dev/null
+++ b/src/soc/mediatek/common/reset.c
@@ -0,0 +1,23 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright 2019 MediaTek Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ */
+
+#include <arch/io.h>
+#include <reset.h>
+#include <soc/wdt.h>
+
+void do_board_reset(void)
+{
+ write32(&mtk_wdt->wdt_swrst, MTK_WDT_SWRST_KEY);
+}