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.
11 #include <linux/config.h>
12 #include <linux/sched.h>
13 #include <linux/delay.h>
14 #include <asm/delay.h>
21 int x86_udelay_tsc
= 0; /* Delay via TSC */
23 int read_current_timer(unsigned long *timer_value
)
25 rdtscll(*timer_value
);
29 void __delay(unsigned long loops
)
39 while((now
-bclock
) < loops
);
42 inline void __const_udelay(unsigned long xloops
)
44 __delay(((xloops
* cpu_data
[raw_smp_processor_id()].loops_per_jiffy
) >> 32) * HZ
);
47 void __udelay(unsigned long usecs
)
49 __const_udelay(usecs
* 0x000010c6); /* 2**32 / 1000000 */
52 void __ndelay(unsigned long nsecs
)
54 __const_udelay(nsecs
* 0x00005); /* 2**32 / 1000000000 (rounded up) */