UEAGLE: Eagle IV chipset support
[linux-2.6/libata-dev.git] / arch / x86 / lib / delay_64.c
blob2dbebd308347f21be2ad931ce480a6ade16e72b2
1 /*
2 * Precise Delay Loops for x86-64
4 * Copyright (C) 1993 Linus Torvalds
5 * Copyright (C) 1997 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
7 * The __delay function must _NOT_ be inlined as its execution time
8 * depends wildly on alignment on many x86 processors.
9 */
11 #include <linux/module.h>
12 #include <linux/sched.h>
13 #include <linux/delay.h>
14 #include <asm/delay.h>
15 #include <asm/msr.h>
17 #ifdef CONFIG_SMP
18 #include <asm/smp.h>
19 #endif
21 int read_current_timer(unsigned long *timer_value)
23 rdtscll(*timer_value);
24 return 0;
27 void __delay(unsigned long loops)
29 unsigned bclock, now;
31 rdtscl(bclock);
34 rep_nop();
35 rdtscl(now);
37 while((now-bclock) < loops);
39 EXPORT_SYMBOL(__delay);
41 inline void __const_udelay(unsigned long xloops)
43 __delay(((xloops * HZ * cpu_data[raw_smp_processor_id()].loops_per_jiffy) >> 32) + 1);
45 EXPORT_SYMBOL(__const_udelay);
47 void __udelay(unsigned long usecs)
49 __const_udelay(usecs * 0x000010c7); /* 2**32 / 1000000 (rounded up) */
51 EXPORT_SYMBOL(__udelay);
53 void __ndelay(unsigned long nsecs)
55 __const_udelay(nsecs * 0x00005); /* 2**32 / 1000000000 (rounded up) */
57 EXPORT_SYMBOL(__ndelay);