aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-generic/delay.h
diff options
context:
space:
mode:
authorJonas Bonn <jonas@southpole.se>2011-07-02 04:29:24 -0400
committerJonas Bonn <jonas@southpole.se>2011-07-07 14:11:39 -0400
commit30ab2b034fa87472d700f584e277e3aeb7a84d2c (patch)
treed503ed633bd4c739471d5c016d2e1c3eb4e063a4 /include/asm-generic/delay.h
parentb0af8dfdd67699e25083478c63eedef2e72ebd85 (diff)
asm-generic: adapt delay.h to common implementation
Several architectures are using a common delay.h implementation that appears to have originated with the x86 architecture. This common implementation is a bit fuller than the current asm-generic version and has some compile-time checks that should be interesting for all architectures. This patch takes the common delay.h version and replaces the rather trivial asm-generic version with it. As no architecture was actually using asm-generic/delay.h, this change is rather innocuous; it will, however, allow us to switch at least four architectures over to using the asm-generic version. Signed-off-by: Jonas Bonn <jonas@southpole.se> Acked-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'include/asm-generic/delay.h')
-rw-r--r--include/asm-generic/delay.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/include/asm-generic/delay.h b/include/asm-generic/delay.h
index 4586fec75ddb..6511b99c5f17 100644
--- a/include/asm-generic/delay.h
+++ b/include/asm-generic/delay.h
@@ -1,9 +1,23 @@
1#ifndef __ASM_GENERIC_DELAY_H 1#ifndef __ASM_GENERIC_DELAY_H
2#define __ASM_GENERIC_DELAY_H 2#define __ASM_GENERIC_DELAY_H
3 3
4/* Undefined functions to get compile-time errors */
5extern void __bad_udelay(void);
6extern void __bad_ndelay(void);
7
4extern void __udelay(unsigned long usecs); 8extern void __udelay(unsigned long usecs);
9extern void __ndelay(unsigned long nsecs);
10extern void __const_udelay(unsigned long xloops);
5extern void __delay(unsigned long loops); 11extern void __delay(unsigned long loops);
6 12
7#define udelay(n) __udelay(n) 13/* 0x10c7 is 2**32 / 1000000 (rounded up) */
14#define udelay(n) (__builtin_constant_p(n) ? \
15 ((n) > 20000 ? __bad_udelay() : __const_udelay((n) * 0x10c7ul)) : \
16 __udelay(n))
17
18/* 0x5 is 2**32 / 1000000000 (rounded up) */
19#define ndelay(n) (__builtin_constant_p(n) ? \
20 ((n) > 20000 ? __bad_ndelay() : __const_udelay((n) * 5ul)) : \
21 __ndelay(n))
8 22
9#endif /* __ASM_GENERIC_DELAY_H */ 23#endif /* __ASM_GENERIC_DELAY_H */