aboutsummaryrefslogtreecommitdiff
path: root/src/soc/mediatek/mt8186/timer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/mediatek/mt8186/timer.c')
-rw-r--r--src/soc/mediatek/mt8186/timer.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/soc/mediatek/mt8186/timer.c b/src/soc/mediatek/mt8186/timer.c
new file mode 100644
index 0000000000..7a289cd115
--- /dev/null
+++ b/src/soc/mediatek/mt8186/timer.c
@@ -0,0 +1,16 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+/*
+ * This file is created based on MT8186 Functional Specification
+ * Chapter number: 5.13
+ */
+
+#include <device/mmio.h>
+#include <soc/addressmap.h>
+#include <soc/timer.h>
+
+void timer_prepare(void)
+{
+ clrbits32((void *)SYSTIMER_BASE, COMP_FEATURE_MASK);
+ setbits32((void *)SYSTIMER_BASE, COMP_25_MASK);
+}