aboutsummaryrefslogtreecommitdiff
path: root/src/soc/mediatek/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/mediatek/common')
-rw-r--r--src/soc/mediatek/common/include/soc/wdt.h3
-rw-r--r--src/soc/mediatek/common/reset.c23
-rw-r--r--src/soc/mediatek/common/wdt.c9
3 files changed, 26 insertions, 9 deletions
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 <stdint.h>
+#include <soc/addressmap.h>
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 */
diff --git a/src/soc/mediatek/common/reset.c b/src/soc/mediatek/common/reset.c
new file mode 100644
index 0000000000..855e34fb18
--- /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);
+}
diff --git a/src/soc/mediatek/common/wdt.c b/src/soc/mediatek/common/wdt.c
index 9964c5ab72..b433c98fbe 100644
--- a/src/soc/mediatek/common/wdt.c
+++ b/src/soc/mediatek/common/wdt.c
@@ -15,13 +15,9 @@
#include <arch/io.h>
#include <console/console.h>
-#include <reset.h>
-#include <soc/addressmap.h>
#include <soc/wdt.h>
#include <vendorcode/google/chromeos/chromeos.h>
-static struct mtk_wdt_regs *const mtk_wdt = (void *)RGU_BASE;
-
int mtk_wdt_init(void)
{
uint32_t wdt_sta;
@@ -56,8 +52,3 @@ int mtk_wdt_init(void)
return wdt_sta;
}
-
-void do_board_reset(void)
-{
- write32(&mtk_wdt->wdt_swrst, MTK_WDT_SWRST_KEY);
-}