summaryrefslogtreecommitdiffstats
path: root/cpu
diff options
context:
space:
mode:
authorMichal Simek <monstr@monstr.eu>2007-09-24 00:21:19 +0200
committerMichal Simek <monstr@monstr.eu>2007-09-24 00:21:19 +0200
commit1c1100d2fcf46b9d11dcf78d6e5aea75e2e8b716 (patch)
tree773dcc416d5026f97ca891b8598754e839086261 /cpu
parent0731933ec8ec45d02ba89b52df673d526873cdde (diff)
downloadtalos-obmc-uboot-1c1100d2fcf46b9d11dcf78d6e5aea75e2e8b716.tar.gz
talos-obmc-uboot-1c1100d2fcf46b9d11dcf78d6e5aea75e2e8b716.zip
[PATCH] Add support for design without interrupt controller
Polling timer
Diffstat (limited to 'cpu')
-rw-r--r--cpu/microblaze/timer.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/cpu/microblaze/timer.c b/cpu/microblaze/timer.c
index ab1cb12749..b350453443 100644
--- a/cpu/microblaze/timer.c
+++ b/cpu/microblaze/timer.c
@@ -33,10 +33,17 @@ void reset_timer (void)
timestamp = 0;
}
+#ifdef CFG_TIMER_0
ulong get_timer (ulong base)
{
return (timestamp - base);
}
+#else
+ulong get_timer (ulong base)
+{
+ return (timestamp++ - base);
+}
+#endif
void set_timer (ulong t)
{
OpenPOWER on IntegriCloud