aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/allwinner/a10/timer.h
diff options
context:
space:
mode:
authorAlexandru Gagniuc <mr.nuke.me@gmail.com>2013-12-31 00:17:19 -0500
committerAlexandru Gagniuc <mr.nuke.me@gmail.com>2014-01-09 01:02:47 +0100
commitbd09dbe3300eca302b84a8fe64cb302889089ab2 (patch)
treee3365a8dced52e265a8ca3004e33878e88ebda03 /src/cpu/allwinner/a10/timer.h
parentb70a140bd02ef5320c094f555b42dc1875dab2d5 (diff)
cpu/allwinner/a10: Implement udelay using timer 0
Change-Id: I4825f0d57696cd28751c59ae133b7e3315fb78e5 Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com> Reviewed-on: http://review.coreboot.org/4595 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: David Hendricks <dhendrix@chromium.org>
Diffstat (limited to 'src/cpu/allwinner/a10/timer.h')
-rw-r--r--src/cpu/allwinner/a10/timer.h90
1 files changed, 90 insertions, 0 deletions
diff --git a/src/cpu/allwinner/a10/timer.h b/src/cpu/allwinner/a10/timer.h
new file mode 100644
index 0000000000..9c0c0d158d
--- /dev/null
+++ b/src/cpu/allwinner/a10/timer.h
@@ -0,0 +1,90 @@
+/*
+ * Definitions for timer control on Allwinner CPUs
+ *
+ * Copyright (C) 2007-2011 Allwinner Technology Co., Ltd.
+ * Tom Cubie <tangliang@allwinnertech.com>
+ * Copyright (C) 2013 Alexandru Gagniuc <mr.nuke.me@gmail.com>
+ * Subject to the GNU GPL v2, or (at your option) any later version.
+ */
+
+#ifndef CPU_ALLWINNER_A10_TIMER_H
+#define CPU_ALLWINNER_A10_TIMER_H
+
+#include "memmap.h"
+#include <types.h>
+
+/* TMRx_CTRL values */
+#define TIMER_CTRL_MODE_SINGLE (1 << 7)
+#define TIMER_CTRL_PRESC_MASK (0x7 << 4)
+#define TIMER_CTRL_PRESC_DIV_EXP(ep) ((ep << 4) & TIMER_CTRL_PRESC_MASK)
+#define TIMER_CTRL_CLK_SRC_MASK (0x3 << 2)
+#define TIMER_CTRL_CLK_SRC_LOSC (0x0 << 2)
+#define TIMER_CTRL_CLK_SRC_OSC24M (0x1 << 2)
+#define TIMER_CTRL_CLK_SRC_PLL6 (0x2 << 2)
+#define TIMER_CTRL_RELOAD (1 << 1)
+#define TIMER_CTRL_TMR_EN (1 << 0)
+
+/* General purpose timer */
+struct a1x_timer {
+ u32 ctrl;
+ u32 interval;
+ u32 val;
+ u8 res[4];
+} __attribute__ ((packed));
+
+/* Audio video sync*/
+struct a1x_avs {
+ u32 ctrl; /* 0x80 */
+ u32 cnt0; /* 0x84 */
+ u32 cnt1; /* 0x88 */
+ u32 div; /* 0x8c */
+} __attribute__ ((packed));
+
+/* Watchdog */
+struct a1x_wdog {
+ u32 ctrl; /* 0x90 */
+ u32 mode; /* 0x94 */
+} __attribute__ ((packed));
+
+/* 64 bit counter */
+struct a1x_64cnt {
+ u32 ctrl; /* 0xa0 */
+ u32 lo; /* 0xa4 */
+ u32 hi; /* 0xa8 */
+} __attribute__ ((packed));
+
+/* Rtc */
+struct a1x_rtc {
+ u32 ctrl; /* 0x100 */
+ u32 yymmdd; /* 0x104 */
+ u32 hhmmss; /* 0x108 */
+} __attribute__ ((packed));
+
+/* Alarm */
+struct a1x_alarm {
+ u32 ddhhmmss; /* 0x10c */
+ u32 hhmmss; /* 0x110 */
+ u32 en; /* 0x114 */
+ u32 irq_en; /* 0x118 */
+ u32 irq_sta; /* 0x11c */
+} __attribute__ ((packed));
+
+struct a1x_timer_module {
+ u32 irq_en; /* 0x00 */
+ u32 irq_sta; /* 0x04 */
+ u8 res1[8];
+ struct a1x_timer timer[6]; /* We have 6 timers */
+ u8 res2[16];
+ struct a1x_avs avs;
+ struct a1x_wdog wdog;
+ u8 res3[8];
+ struct a1x_64cnt cnt64;
+ u8 res4[0x58];
+ struct a1x_rtc rtc;
+ struct a1x_alarm alarm;
+ u32 gp_data[4];
+ u8 res5[8];
+ u32 cpu_cfg;
+} __attribute__ ((packed));
+
+#endif /* CPU_ALLWINNER_A10_TIMER_H */