summaryrefslogtreecommitdiffstats
path: root/cpu/arm920t/imx
diff options
context:
space:
mode:
authorwdenk <wdenk>2005-04-04 12:08:28 +0000
committerwdenk <wdenk>2005-04-04 12:08:28 +0000
commit101e8dfa2a8b045c6655bf2b3d6fba8d378453cd (patch)
tree1c39acefbaf435ddc2e9f42540eb64ea267cb530 /cpu/arm920t/imx
parent50712ba16e7e469e90952a7f197efa46e2f8e311 (diff)
downloadtalos-obmc-uboot-101e8dfa2a8b045c6655bf2b3d6fba8d378453cd.tar.gz
talos-obmc-uboot-101e8dfa2a8b045c6655bf2b3d6fba8d378453cd.zip
Fix timer code for ARM systems: make sure that udelay() does not
reset timers so it's save to use udelay() in timeout code.
Diffstat (limited to 'cpu/arm920t/imx')
-rw-r--r--cpu/arm920t/imx/interrupts.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/cpu/arm920t/imx/interrupts.c b/cpu/arm920t/imx/interrupts.c
index 12ae2faf28..2f2e754569 100644
--- a/cpu/arm920t/imx/interrupts.c
+++ b/cpu/arm920t/imx/interrupts.c
@@ -81,10 +81,13 @@ ulong get_timer_masked (void)
void udelay_masked (unsigned long usec)
{
- ulong start = get_timer_masked();
+ ulong endtime = get_timer_masked() + usec;
+ signed long diff;
- while (get_timer_masked () - start < usec )
- /*NOP*/;
+ do {
+ ulong now = get_timer_masked ();
+ diff = endtime - now;
+ } while (diff >= 0);
}
void udelay (unsigned long usec)
OpenPOWER on IntegriCloud