]> git.sur5r.net Git - u-boot/blobdiff - cpu/arm925t/interrupts.c
Fix timer code for ARM systems: make sure that udelay() does not
[u-boot] / cpu / arm925t / interrupts.c
index d3c94768c09e9ca3363d756ce8b07792323393a1..57bb4eab6f648b711d4939da2e9dd9014b26c7c5 100644 (file)
@@ -38,7 +38,6 @@
 
 #include <asm/proc-armv/ptrace.h>
 
-extern void reset_cpu(ulong addr);
 #define TIMER_LOAD_VAL 0xffffffff
 
 /* macro to read the 32 bit timer */
@@ -276,20 +275,24 @@ void udelay_masked (unsigned long usec)
 #else
 
        ulong tmo;
+       ulong endtime;
+       signed long diff;
 
-       if(usec >= 1000){               /* if "big" number, spread normalization to seconds */
+       if (usec >= 1000) {             /* if "big" number, spread normalization to seconds */
                tmo = usec / 1000;      /* start to normalize for usec to ticks per sec */
                tmo *= CFG_HZ;          /* find number of "ticks" to wait to achieve target */
                tmo /= 1000;            /* finish normalize. */
-       }else{                          /* else small number, don't kill it prior to HZ multiply */
+       } else {                        /* else small number, don't kill it prior to HZ multiply */
                tmo = usec * CFG_HZ;
                tmo /= (1000*1000);
        }
 
-       reset_timer_masked ();  /* set "advancing" timestamp to 0, set lastdec vaule */
+       endtime = get_timer_masked () + tmo;
 
-       while (get_timer_masked () < tmo) /* wait for time stamp to overtake tick number.*/
-               /*NOP*/;
+       do {
+               ulong now = get_timer_masked ();
+               diff = endtime - now;
+       } while (diff >= 0);
 #endif
 }