blob: a40bdf17055e841b2f64512cf6b8160face671c7 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Masahiro Yamada5894ca02014-10-03 19:21:06 +09002/*
Masahiro Yamadaf6e7f072015-05-29 17:30:00 +09003 * Copyright (C) 2012-2015 Masahiro Yamada <yamada.masahiro@socionext.com>
Masahiro Yamada5894ca02014-10-03 19:21:06 +09004 */
5
Masahiro Yamada6717e152020-05-20 12:31:27 +09006#include <config.h>
Simon Glass691d7192020-05-10 11:40:02 -06007#include <init.h>
Masahiro Yamadaf6e7f072015-05-29 17:30:00 +09008#include <linux/io.h>
Masahiro Yamada107b3fb2016-01-09 01:51:13 +09009
10#include "arm-mpcore.h"
Masahiro Yamada5894ca02014-10-03 19:21:06 +090011
12#define PERIPHCLK (50 * 1000 * 1000) /* 50 MHz */
13#define PRESCALER ((PERIPHCLK) / (CONFIG_SYS_TIMER_RATE) - 1)
14
15static void *get_global_timer_base(void)
16{
17 void *val;
18
19 asm("mrc p15, 4, %0, c15, c0, 0" : "=r" (val) : : "memory");
20
21 return val + GLOBAL_TIMER_OFFSET;
22}
23
24unsigned long timer_read_counter(void)
25{
26 /*
27 * ARM 64bit Global Timer is too much for our purpose.
28 * We use only lower 32 bit of the timer counter.
29 */
30 return readl(get_global_timer_base() + GTIMER_CNT_L);
31}
32
33int timer_init(void)
34{
35 /* enable timer */
36 writel(PRESCALER << 8 | 1, get_global_timer_base() + GTIMER_CTRL);
37
38 return 0;
39}