2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2002-09-08 20:56:32 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
|
|
|
|
* Marius Groeger <mgroeger@sysgo.de>
|
|
|
|
*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
|
|
|
|
* Alex Zuepke <azu@sysgo.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <SA-1100.h>
|
|
|
|
|
2018-10-05 09:33:52 +00:00
|
|
|
static ulong get_timer_masked (void)
|
2002-09-08 20:56:32 +00:00
|
|
|
{
|
2018-10-05 09:33:52 +00:00
|
|
|
return OSCR;
|
2002-09-08 20:56:32 +00:00
|
|
|
}
|
|
|
|
|
2018-10-05 09:33:52 +00:00
|
|
|
ulong get_timer (ulong base)
|
2002-09-08 20:56:32 +00:00
|
|
|
{
|
2018-10-05 09:33:52 +00:00
|
|
|
return get_timer_masked ();
|
2002-09-08 20:56:32 +00:00
|
|
|
}
|
|
|
|
|
2018-10-05 09:33:51 +00:00
|
|
|
void __udelay (unsigned long usec)
|
2002-09-08 20:56:32 +00:00
|
|
|
{
|
|
|
|
ulong tmo;
|
2005-04-04 12:08:28 +00:00
|
|
|
ulong endtime;
|
|
|
|
signed long diff;
|
|
|
|
|
|
|
|
if (usec >= 1000) {
|
|
|
|
tmo = usec / 1000;
|
2008-10-16 13:01:15 +00:00
|
|
|
tmo *= CONFIG_SYS_HZ;
|
2005-04-04 12:08:28 +00:00
|
|
|
tmo /= 1000;
|
|
|
|
} else {
|
2008-10-16 13:01:15 +00:00
|
|
|
tmo = usec * CONFIG_SYS_HZ;
|
2005-04-04 12:08:28 +00:00
|
|
|
tmo /= (1000*1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
endtime = get_timer_masked () + tmo;
|
|
|
|
|
|
|
|
do {
|
|
|
|
ulong now = get_timer_masked ();
|
|
|
|
diff = endtime - now;
|
|
|
|
} while (diff >= 0);
|
2002-09-08 20:56:32 +00:00
|
|
|
}
|
2004-03-14 15:20:55 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This function is derived from PowerPC code (read timebase as long long).
|
|
|
|
* On ARM it just returns the timer value.
|
|
|
|
*/
|
|
|
|
unsigned long long get_ticks(void)
|
|
|
|
{
|
|
|
|
return get_timer(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This function is derived from PowerPC code (timebase clock frequency).
|
|
|
|
* On ARM it returns the number of timer ticks per second.
|
|
|
|
*/
|
|
|
|
ulong get_tbclk (void)
|
|
|
|
{
|
2016-09-06 13:17:38 +00:00
|
|
|
return CONFIG_SYS_HZ;
|
2004-03-14 15:20:55 +00:00
|
|
|
}
|