1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2000, 2001
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
10 /* ------------------------------------------------------------------------- */
13 * This function is intended for SHORT delays only.
14 * It will overflow at around 10 seconds @ 400MHz,
15 * or 20 seconds @ 200MHz.
17 unsigned long usec2ticks(unsigned long usec)
22 ticks = ((usec * (get_tbclk()/1000)) + 500) / 1000;
24 ticks = ((usec / 10) * (get_tbclk() / 100000));
30 /* ------------------------------------------------------------------------- */
33 * We implement the delay by converting the delay (the number of
34 * microseconds to wait) into a number of time base ticks; then we
35 * watch the time base until it has incremented by that amount.
37 void __udelay(unsigned long usec)
39 ulong ticks = usec2ticks (usec);
43 /* ------------------------------------------------------------------------- */
44 #ifndef CONFIG_NAND_SPL
45 unsigned long ticks2usec(unsigned long ticks)
47 ulong tbclk = get_tbclk();
49 /* usec = ticks * 1000000 / tbclk
50 * Multiplication would overflow at ~4.2e3 ticks,
51 * so we break it up into
52 * usec = ( ( ticks * 1000) / tbclk ) * 1000;
58 return ((ulong)ticks);
61 /* ------------------------------------------------------------------------- */
68 asm volatile("li %0,0 ; mttbl %0 ; mttbu %0;"
73 /* ------------------------------------------------------------------------- */