Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-frv / delay.h
blob597b4ebf03b4bdad28d560c5d87c1642c634a4a5
1 /* delay.h: FRV delay code
3 * Copyright (C) 2003 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
12 #ifndef _ASM_DELAY_H
13 #define _ASM_DELAY_H
15 #include <asm/param.h>
16 #include <asm/timer-regs.h>
19 * delay loop - runs at __core_clock_speed_HZ / 2 [there are 2 insns in the loop]
21 extern unsigned long __delay_loops_MHz;
23 static inline void __delay(unsigned long loops)
25 asm volatile("1: subicc %0,#1,%0,icc0 \n"
26 " bnc icc0,#2,1b \n"
27 : "=r" (loops)
28 : "0" (loops)
29 : "icc0"
34 * Use only for very small delays ( < 1 msec). Should probably use a
35 * lookup table, really, as the multiplications take much too long with
36 * short delays. This is a "reasonable" implementation, though (and the
37 * first constant multiplications gets optimized away if the delay is
38 * a constant)
41 extern unsigned long loops_per_jiffy;
43 static inline void udelay(unsigned long usecs)
45 __delay(usecs * __delay_loops_MHz);
48 #define ndelay(n) udelay((n) * 5)
50 #endif /* _ASM_DELAY_H */