blob: 3d6447d7c0aa73744c8bc3d969686db8c734fb77 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ingo van Lil3eb90ba2009-11-24 14:09:21 +01002/*
3 * (C) Copyright 2000-2009
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Ingo van Lil3eb90ba2009-11-24 14:09:21 +01005 */
6
7#include <common.h>
Simon Glass52f24232020-05-10 11:40:00 -06008#include <bootstage.h>
Thomas Chouc8a7ba92015-10-09 13:46:34 +08009#include <dm.h>
10#include <errno.h>
Simon Glass691d7192020-05-10 11:40:02 -060011#include <init.h>
Simon Glass10453152019-11-14 12:57:30 -070012#include <time.h>
Thomas Chouc8a7ba92015-10-09 13:46:34 +080013#include <timer.h>
Ingo van Lil3eb90ba2009-11-24 14:09:21 +010014#include <watchdog.h>
Rob Herring8dfafdd2013-10-04 10:22:41 -050015#include <div64.h>
16#include <asm/io.h>
Ingo van Lil3eb90ba2009-11-24 14:09:21 +010017
18#ifndef CONFIG_WD_PERIOD
Pavel Machekfccacd32014-07-13 13:14:27 +020019# define CONFIG_WD_PERIOD (10 * 1000 * 1000) /* 10 seconds default */
Ingo van Lil3eb90ba2009-11-24 14:09:21 +010020#endif
21
Rob Herring8dfafdd2013-10-04 10:22:41 -050022DECLARE_GLOBAL_DATA_PTR;
23
24#ifdef CONFIG_SYS_TIMER_RATE
Pavel Machekfccacd32014-07-13 13:14:27 +020025/* Returns tick rate in ticks per second */
Rob Herring8dfafdd2013-10-04 10:22:41 -050026ulong notrace get_tbclk(void)
27{
28 return CONFIG_SYS_TIMER_RATE;
29}
30#endif
31
32#ifdef CONFIG_SYS_TIMER_COUNTER
33unsigned long notrace timer_read_counter(void)
34{
35#ifdef CONFIG_SYS_TIMER_COUNTS_DOWN
36 return ~readl(CONFIG_SYS_TIMER_COUNTER);
37#else
38 return readl(CONFIG_SYS_TIMER_COUNTER);
39#endif
40}
Simon Glass9fb34b02017-05-22 05:05:22 -060041
42ulong timer_get_boot_us(void)
43{
44 ulong count = timer_read_counter();
45
46#if CONFIG_SYS_TIMER_RATE == 1000000
47 return count;
48#elif CONFIG_SYS_TIMER_RATE > 1000000
49 return lldiv(count, CONFIG_SYS_TIMER_RATE / 1000000);
50#elif defined(CONFIG_SYS_TIMER_RATE)
51 return (unsigned long long)count * 1000000 / CONFIG_SYS_TIMER_RATE;
52#else
53 /* Assume the counter is in microseconds */
54 return count;
55#endif
56}
57
Rob Herring8dfafdd2013-10-04 10:22:41 -050058#else
Rob Herring65ba7ad2013-11-08 08:40:43 -060059extern unsigned long __weak timer_read_counter(void);
Rob Herring8dfafdd2013-10-04 10:22:41 -050060#endif
61
Kever Yangf00c2622019-03-29 22:17:33 +080062#if CONFIG_IS_ENABLED(TIMER)
Thomas Chouc8a7ba92015-10-09 13:46:34 +080063ulong notrace get_tbclk(void)
64{
Simon Glassc95fec32016-02-24 09:14:49 -070065 if (!gd->timer) {
66#ifdef CONFIG_TIMER_EARLY
67 return timer_early_get_rate();
68#else
69 int ret;
Thomas Chouc8a7ba92015-10-09 13:46:34 +080070
Simon Glassc95fec32016-02-24 09:14:49 -070071 ret = dm_timer_init();
72 if (ret)
73 return ret;
74#endif
75 }
Thomas Chouc8a7ba92015-10-09 13:46:34 +080076
77 return timer_get_rate(gd->timer);
78}
79
Bin Meng9ca07eb2015-11-24 13:31:17 -070080uint64_t notrace get_ticks(void)
Thomas Chouc8a7ba92015-10-09 13:46:34 +080081{
Bin Meng9ca07eb2015-11-24 13:31:17 -070082 u64 count;
Thomas Chouc8a7ba92015-10-09 13:46:34 +080083 int ret;
84
Simon Glassc95fec32016-02-24 09:14:49 -070085 if (!gd->timer) {
86#ifdef CONFIG_TIMER_EARLY
87 return timer_early_get_count();
88#else
89 int ret;
90
91 ret = dm_timer_init();
92 if (ret)
93 return ret;
94#endif
95 }
Thomas Chouc8a7ba92015-10-09 13:46:34 +080096
97 ret = timer_get_count(gd->timer, &count);
98 if (ret)
99 return ret;
100
101 return count;
102}
Bin Meng9ca07eb2015-11-24 13:31:17 -0700103
104#else /* !CONFIG_TIMER */
Thomas Chouc8a7ba92015-10-09 13:46:34 +0800105
Simon Glass19ea4672014-10-15 04:38:33 -0600106uint64_t __weak notrace get_ticks(void)
Rob Herring8dfafdd2013-10-04 10:22:41 -0500107{
108 unsigned long now = timer_read_counter();
109
110 /* increment tbu if tbl has rolled over */
111 if (now < gd->timebase_l)
112 gd->timebase_h++;
113 gd->timebase_l = now;
Simon Glass19ea4672014-10-15 04:38:33 -0600114 return ((uint64_t)gd->timebase_h << 32) | gd->timebase_l;
Rob Herring8dfafdd2013-10-04 10:22:41 -0500115}
116
Bin Meng9ca07eb2015-11-24 13:31:17 -0700117#endif /* CONFIG_TIMER */
118
Pavel Machekfccacd32014-07-13 13:14:27 +0200119/* Returns time in milliseconds */
Simon Glass19ea4672014-10-15 04:38:33 -0600120static uint64_t notrace tick_to_time(uint64_t tick)
Rob Herring8dfafdd2013-10-04 10:22:41 -0500121{
Pavel Machekfccacd32014-07-13 13:14:27 +0200122 ulong div = get_tbclk();
Rob Herring8dfafdd2013-10-04 10:22:41 -0500123
124 tick *= CONFIG_SYS_HZ;
125 do_div(tick, div);
126 return tick;
127}
128
Darwin Rambode351d62013-12-19 15:06:12 -0800129int __weak timer_init(void)
130{
131 return 0;
132}
133
Pavel Machekfccacd32014-07-13 13:14:27 +0200134/* Returns time in milliseconds */
Rob Herring8dfafdd2013-10-04 10:22:41 -0500135ulong __weak get_timer(ulong base)
136{
137 return tick_to_time(get_ticks()) - base;
138}
139
Marek Vasut80e7e7c2019-10-15 22:43:41 +0200140static uint64_t notrace tick_to_time_us(uint64_t tick)
141{
142 ulong div = get_tbclk() / 1000;
143
144 tick *= CONFIG_SYS_HZ;
145 do_div(tick, div);
146 return tick;
147}
148
149uint64_t __weak get_timer_us(uint64_t base)
150{
151 return tick_to_time_us(get_ticks()) - base;
152}
153
Rob Herring8dfafdd2013-10-04 10:22:41 -0500154unsigned long __weak notrace timer_get_us(void)
155{
156 return tick_to_time(get_ticks() * 1000);
157}
Pavel Machekfccacd32014-07-13 13:14:27 +0200158
Heinrich Schuchardt6a853db2019-06-02 21:02:10 +0200159uint64_t usec_to_tick(unsigned long usec)
Rob Herring8dfafdd2013-10-04 10:22:41 -0500160{
Simon Glass19ea4672014-10-15 04:38:33 -0600161 uint64_t tick = usec;
Stephen Warren2cd1b572013-12-05 12:08:09 -0700162 tick *= get_tbclk();
Rob Herring8dfafdd2013-10-04 10:22:41 -0500163 do_div(tick, 1000000);
164 return tick;
165}
166
167void __weak __udelay(unsigned long usec)
168{
Simon Glass19ea4672014-10-15 04:38:33 -0600169 uint64_t tmp;
Rob Herring8dfafdd2013-10-04 10:22:41 -0500170
Pavel Machekfccacd32014-07-13 13:14:27 +0200171 tmp = get_ticks() + usec_to_tick(usec); /* get current timestamp */
Rob Herring8dfafdd2013-10-04 10:22:41 -0500172
Pavel Machekfccacd32014-07-13 13:14:27 +0200173 while (get_ticks() < tmp+1) /* loop till event */
Rob Herring8dfafdd2013-10-04 10:22:41 -0500174 /*NOP*/;
175}
176
Ingo van Lil3eb90ba2009-11-24 14:09:21 +0100177/* ------------------------------------------------------------------------- */
178
179void udelay(unsigned long usec)
180{
181 ulong kv;
182
183 do {
184 WATCHDOG_RESET();
185 kv = usec > CONFIG_WD_PERIOD ? CONFIG_WD_PERIOD : usec;
186 __udelay (kv);
187 usec -= kv;
188 } while(usec);
189}