2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2009-11-24 13:09:21 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2000-2009
|
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2015-10-09 05:46:34 +00:00
|
|
|
#include <dm.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <timer.h>
|
2009-11-24 13:09:21 +00:00
|
|
|
#include <watchdog.h>
|
2013-10-04 15:22:41 +00:00
|
|
|
#include <div64.h>
|
|
|
|
#include <asm/io.h>
|
2009-11-24 13:09:21 +00:00
|
|
|
|
|
|
|
#ifndef CONFIG_WD_PERIOD
|
2014-07-13 11:14:27 +00:00
|
|
|
# define CONFIG_WD_PERIOD (10 * 1000 * 1000) /* 10 seconds default */
|
2009-11-24 13:09:21 +00:00
|
|
|
#endif
|
|
|
|
|
2013-10-04 15:22:41 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
|
|
|
#ifdef CONFIG_SYS_TIMER_RATE
|
2014-07-13 11:14:27 +00:00
|
|
|
/* Returns tick rate in ticks per second */
|
2013-10-04 15:22:41 +00:00
|
|
|
ulong notrace get_tbclk(void)
|
|
|
|
{
|
|
|
|
return CONFIG_SYS_TIMER_RATE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_SYS_TIMER_COUNTER
|
|
|
|
unsigned long notrace timer_read_counter(void)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_SYS_TIMER_COUNTS_DOWN
|
|
|
|
return ~readl(CONFIG_SYS_TIMER_COUNTER);
|
|
|
|
#else
|
|
|
|
return readl(CONFIG_SYS_TIMER_COUNTER);
|
|
|
|
#endif
|
|
|
|
}
|
2017-05-22 11:05:22 +00:00
|
|
|
|
|
|
|
ulong timer_get_boot_us(void)
|
|
|
|
{
|
|
|
|
ulong count = timer_read_counter();
|
|
|
|
|
|
|
|
#if CONFIG_SYS_TIMER_RATE == 1000000
|
|
|
|
return count;
|
|
|
|
#elif CONFIG_SYS_TIMER_RATE > 1000000
|
|
|
|
return lldiv(count, CONFIG_SYS_TIMER_RATE / 1000000);
|
|
|
|
#elif defined(CONFIG_SYS_TIMER_RATE)
|
|
|
|
return (unsigned long long)count * 1000000 / CONFIG_SYS_TIMER_RATE;
|
|
|
|
#else
|
|
|
|
/* Assume the counter is in microseconds */
|
|
|
|
return count;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-10-04 15:22:41 +00:00
|
|
|
#else
|
2013-11-08 14:40:43 +00:00
|
|
|
extern unsigned long __weak timer_read_counter(void);
|
2013-10-04 15:22:41 +00:00
|
|
|
#endif
|
|
|
|
|
2019-03-29 14:17:33 +00:00
|
|
|
#if CONFIG_IS_ENABLED(TIMER)
|
2015-10-09 05:46:34 +00:00
|
|
|
ulong notrace get_tbclk(void)
|
|
|
|
{
|
2016-02-24 16:14:49 +00:00
|
|
|
if (!gd->timer) {
|
|
|
|
#ifdef CONFIG_TIMER_EARLY
|
|
|
|
return timer_early_get_rate();
|
|
|
|
#else
|
|
|
|
int ret;
|
2015-10-09 05:46:34 +00:00
|
|
|
|
2016-02-24 16:14:49 +00:00
|
|
|
ret = dm_timer_init();
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
#endif
|
|
|
|
}
|
2015-10-09 05:46:34 +00:00
|
|
|
|
|
|
|
return timer_get_rate(gd->timer);
|
|
|
|
}
|
|
|
|
|
2015-11-24 20:31:17 +00:00
|
|
|
uint64_t notrace get_ticks(void)
|
2015-10-09 05:46:34 +00:00
|
|
|
{
|
2015-11-24 20:31:17 +00:00
|
|
|
u64 count;
|
2015-10-09 05:46:34 +00:00
|
|
|
int ret;
|
|
|
|
|
2016-02-24 16:14:49 +00:00
|
|
|
if (!gd->timer) {
|
|
|
|
#ifdef CONFIG_TIMER_EARLY
|
|
|
|
return timer_early_get_count();
|
|
|
|
#else
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = dm_timer_init();
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
#endif
|
|
|
|
}
|
2015-10-09 05:46:34 +00:00
|
|
|
|
|
|
|
ret = timer_get_count(gd->timer, &count);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
2015-11-24 20:31:17 +00:00
|
|
|
|
|
|
|
#else /* !CONFIG_TIMER */
|
2015-10-09 05:46:34 +00:00
|
|
|
|
2014-10-15 10:38:33 +00:00
|
|
|
uint64_t __weak notrace get_ticks(void)
|
2013-10-04 15:22:41 +00:00
|
|
|
{
|
|
|
|
unsigned long now = timer_read_counter();
|
|
|
|
|
|
|
|
/* increment tbu if tbl has rolled over */
|
|
|
|
if (now < gd->timebase_l)
|
|
|
|
gd->timebase_h++;
|
|
|
|
gd->timebase_l = now;
|
2014-10-15 10:38:33 +00:00
|
|
|
return ((uint64_t)gd->timebase_h << 32) | gd->timebase_l;
|
2013-10-04 15:22:41 +00:00
|
|
|
}
|
|
|
|
|
2015-11-24 20:31:17 +00:00
|
|
|
#endif /* CONFIG_TIMER */
|
|
|
|
|
2014-07-13 11:14:27 +00:00
|
|
|
/* Returns time in milliseconds */
|
2014-10-15 10:38:33 +00:00
|
|
|
static uint64_t notrace tick_to_time(uint64_t tick)
|
2013-10-04 15:22:41 +00:00
|
|
|
{
|
2014-07-13 11:14:27 +00:00
|
|
|
ulong div = get_tbclk();
|
2013-10-04 15:22:41 +00:00
|
|
|
|
|
|
|
tick *= CONFIG_SYS_HZ;
|
|
|
|
do_div(tick, div);
|
|
|
|
return tick;
|
|
|
|
}
|
|
|
|
|
2013-12-19 23:06:12 +00:00
|
|
|
int __weak timer_init(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-07-13 11:14:27 +00:00
|
|
|
/* Returns time in milliseconds */
|
2013-10-04 15:22:41 +00:00
|
|
|
ulong __weak get_timer(ulong base)
|
|
|
|
{
|
|
|
|
return tick_to_time(get_ticks()) - base;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned long __weak notrace timer_get_us(void)
|
|
|
|
{
|
|
|
|
return tick_to_time(get_ticks() * 1000);
|
|
|
|
}
|
2014-07-13 11:14:27 +00:00
|
|
|
|
2019-06-02 19:02:10 +00:00
|
|
|
uint64_t usec_to_tick(unsigned long usec)
|
2013-10-04 15:22:41 +00:00
|
|
|
{
|
2014-10-15 10:38:33 +00:00
|
|
|
uint64_t tick = usec;
|
2013-12-05 19:08:09 +00:00
|
|
|
tick *= get_tbclk();
|
2013-10-04 15:22:41 +00:00
|
|
|
do_div(tick, 1000000);
|
|
|
|
return tick;
|
|
|
|
}
|
|
|
|
|
|
|
|
void __weak __udelay(unsigned long usec)
|
|
|
|
{
|
2014-10-15 10:38:33 +00:00
|
|
|
uint64_t tmp;
|
2013-10-04 15:22:41 +00:00
|
|
|
|
2014-07-13 11:14:27 +00:00
|
|
|
tmp = get_ticks() + usec_to_tick(usec); /* get current timestamp */
|
2013-10-04 15:22:41 +00:00
|
|
|
|
2014-07-13 11:14:27 +00:00
|
|
|
while (get_ticks() < tmp+1) /* loop till event */
|
2013-10-04 15:22:41 +00:00
|
|
|
/*NOP*/;
|
|
|
|
}
|
|
|
|
|
2009-11-24 13:09:21 +00:00
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
void udelay(unsigned long usec)
|
|
|
|
{
|
|
|
|
ulong kv;
|
|
|
|
|
|
|
|
do {
|
|
|
|
WATCHDOG_RESET();
|
|
|
|
kv = usec > CONFIG_WD_PERIOD ? CONFIG_WD_PERIOD : usec;
|
|
|
|
__udelay (kv);
|
|
|
|
usec -= kv;
|
|
|
|
} while(usec);
|
|
|
|
}
|