openrisc: implement get_ticks and get_tbclk

Signed-off-by: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
This commit is contained in:
Stefan Kristiansson 2012-02-22 07:10:10 +00:00 committed by Tom Rini
parent 221953d41d
commit 2bcffa6faa

View File

@ -86,6 +86,16 @@ void set_timer(ulong t)
timestamp = t;
}
unsigned long long get_ticks(void)
{
return get_timer(0);
}
ulong get_tbclk(void)
{
return CONFIG_SYS_HZ;
}
void __udelay(ulong usec)
{
ulong elapsed = 0;