Home
last modified time | relevance | path

Searched refs:end_tick (Results 1 – 4 of 4) sorted by relevance

/external/u-boot/arch/arm/cpu/armv7/iproc-common/
Dtimer.c70 uint64_t cur_tick, end_tick; in __udelay() local
84 end_tick = tim_clk; in __udelay()
85 end_tick *= usec; in __udelay()
86 end_tick += cur_tick; in __udelay()
91 } while (cur_tick < end_tick); in __udelay()
/external/u-boot/arch/powerpc/cpu/mpc8xxx/
Dsrio.c79 unsigned long long end_tick; in srio_erratum_a004034() local
102 end_tick = usec2ticks(2000) + get_ticks(); in srio_erratum_a004034()
115 } while (end_tick > get_ticks()); in srio_erratum_a004034()
212 end_tick = usec2ticks(1000000) + get_ticks(); in srio_erratum_a004034()
223 } while (end_tick > get_ticks()); in srio_erratum_a004034()
/external/u-boot/arch/powerpc/cpu/mpc85xx/
Dfsl_corenet_serdes.c468 unsigned long long end_tick; in wait_for_rstdone() local
472 end_tick = usec2ticks(1000000) + get_ticks(); in wait_for_rstdone()
477 } while (end_tick > get_ticks()); in wait_for_rstdone()
/external/u-boot/lib/efi_loader/
Defi_boottime.c2060 u64 end_tick; in efi_stall() local
2064 end_tick = get_ticks() + usec_to_tick(microseconds); in efi_stall()
2065 while (get_ticks() < end_tick) in efi_stall()