blob: e23629ab0bc3eb2c70f09eb996d0f9ac728848e7 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
David Feng85fd5f12013-12-14 11:47:35 +08002/*
3 * (C) Copyright 2013
4 * David Feng <fenghua@phytium.com.cn>
David Feng85fd5f12013-12-14 11:47:35 +08005 */
6
7#include <common.h>
Simon Glass1ea97892020-05-10 11:40:00 -06008#include <bootstage.h>
David Feng85fd5f12013-12-14 11:47:35 +08009#include <command.h>
Simon Glass45c78902019-11-14 12:57:26 -070010#include <time.h>
David Feng85fd5f12013-12-14 11:47:35 +080011#include <asm/system.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060012#include <linux/bitops.h>
David Feng85fd5f12013-12-14 11:47:35 +080013
Andre Przywarade223fd2016-11-03 00:56:25 +000014DECLARE_GLOBAL_DATA_PTR;
15
David Feng85fd5f12013-12-14 11:47:35 +080016/*
17 * Generic timer implementation of get_tbclk()
18 */
19unsigned long get_tbclk(void)
20{
21 unsigned long cntfrq;
22 asm volatile("mrs %0, cntfrq_el0" : "=r" (cntfrq));
23 return cntfrq;
24}
25
Andre Przywara60b78652018-06-27 01:42:52 +010026#ifdef CONFIG_SYS_FSL_ERRATUM_A008585
David Feng85fd5f12013-12-14 11:47:35 +080027/*
Andre Przywara60b78652018-06-27 01:42:52 +010028 * FSL erratum A-008585 says that the ARM generic timer counter "has the
29 * potential to contain an erroneous value for a small number of core
30 * clock cycles every time the timer value changes".
31 * This sometimes leads to a consecutive counter read returning a lower
32 * value than the previous one, thus reporting the time to go backwards.
33 * The workaround is to read the counter twice and only return when the value
34 * was the same in both reads.
35 * Assumes that the CPU runs in much higher frequency than the timer.
David Feng85fd5f12013-12-14 11:47:35 +080036 */
37unsigned long timer_read_counter(void)
38{
39 unsigned long cntpct;
York Suna7686cf2015-03-20 19:28:05 -070040 unsigned long temp;
Andre Przywara60b78652018-06-27 01:42:52 +010041
David Feng85fd5f12013-12-14 11:47:35 +080042 isb();
43 asm volatile("mrs %0, cntpct_el0" : "=r" (cntpct));
York Suna7686cf2015-03-20 19:28:05 -070044 asm volatile("mrs %0, cntpct_el0" : "=r" (temp));
45 while (temp != cntpct) {
46 asm volatile("mrs %0, cntpct_el0" : "=r" (cntpct));
47 asm volatile("mrs %0, cntpct_el0" : "=r" (temp));
48 }
Andre Przywara60b78652018-06-27 01:42:52 +010049
David Feng85fd5f12013-12-14 11:47:35 +080050 return cntpct;
51}
Andre Przywarad1de0bb2018-06-27 01:42:53 +010052#elif CONFIG_SUNXI_A64_TIMER_ERRATUM
53/*
54 * This erratum sometimes flips the lower 11 bits of the counter value
55 * to all 0's or all 1's, leading to jumps forwards or backwards.
56 * Backwards jumps might be interpreted all roll-overs and be treated as
57 * huge jumps forward.
58 * The workaround is to check whether the lower 11 bits of the counter are
59 * all 0 or all 1, then discard this value and read again.
60 * This occasionally discards valid values, but will catch all erroneous
61 * reads and fixes the problem reliably. Also this mostly requires only a
62 * single read, so does not have any significant overhead.
63 * The algorithm was conceived by Samuel Holland.
64 */
65unsigned long timer_read_counter(void)
66{
67 unsigned long cntpct;
68
69 isb();
70 do {
71 asm volatile("mrs %0, cntpct_el0" : "=r" (cntpct));
72 } while (((cntpct + 1) & GENMASK(10, 0)) <= 1);
73
74 return cntpct;
75}
Andre Przywara60b78652018-06-27 01:42:52 +010076#else
77/*
78 * timer_read_counter() using the Arm Generic Timer (aka arch timer).
79 */
80unsigned long timer_read_counter(void)
81{
82 unsigned long cntpct;
83
84 isb();
85 asm volatile("mrs %0, cntpct_el0" : "=r" (cntpct));
86
87 return cntpct;
88}
89#endif
Aneesh Bansald1074b42015-12-08 13:54:26 +053090
Simon Glasse9873932017-04-05 17:53:17 -060091uint64_t get_ticks(void)
Andre Przywarade223fd2016-11-03 00:56:25 +000092{
93 unsigned long ticks = timer_read_counter();
94
95 gd->arch.tbl = ticks;
96
97 return ticks;
98}
99
Aneesh Bansald1074b42015-12-08 13:54:26 +0530100unsigned long usec2ticks(unsigned long usec)
101{
102 ulong ticks;
103 if (usec < 1000)
104 ticks = ((usec * (get_tbclk()/1000)) + 500) / 1000;
105 else
106 ticks = ((usec / 10) * (get_tbclk() / 100000));
107
108 return ticks;
109}
Michal Simek16d73b92018-05-15 16:47:02 +0200110
111ulong timer_get_boot_us(void)
112{
113 u64 val = get_ticks() * 1000000;
114
115 return val / get_tbclk();
116}