More cleaning ...
[linux-2.6/linux-mips.git] / include / asm-v850 / delay.h
blobbad311ba44b533f16293e77989fd9d7b95083bb3
1 /*
2 * include/asm-v850/delay.h -- Delay routines, using a pre-computed
3 * "loops_per_second" value
5 * Copyright (C) 2001 NEC Corporation
6 * Copyright (C) 2001 Miles Bader <miles@gnu.org>
7 * Copyright (C) 1994 Hamish Macdonald
9 * This file is subject to the terms and conditions of the GNU General
10 * Public License. See the file COPYING in the main directory of this
11 * archive for more details.
14 #ifndef __V850_DELAY_H__
15 #define __V850_DELAY_H__
17 #include <asm/param.h>
19 extern __inline__ void __delay(unsigned long loops)
21 __asm__ __volatile__ ("1: add -1, %0; bnz 1b"
22 : "=r" (loops) : "0" (loops));
26 * Use only for very small delays ( < 1 msec). Should probably use a
27 * lookup table, really, as the multiplications take much too long with
28 * short delays. This is a "reasonable" implementation, though (and the
29 * first constant multiplications gets optimized away if the delay is
30 * a constant)
33 extern unsigned long loops_per_jiffy;
35 extern __inline__ void udelay(unsigned long usecs)
37 register unsigned long full_loops, part_loops;
39 full_loops = ((usecs * HZ) / 1000000) * loops_per_jiffy;
40 usecs %= (1000000 / HZ);
41 part_loops = (usecs * HZ * loops_per_jiffy) / 1000000;
43 __delay(full_loops + part_loops);
46 #endif /* __V850_DELAY_H__ */