blob: f4568605d7d5c9fa7281bebfc6d8f5e2b122c8df [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Precise Delay Loops for i386
3 *
4 * Copyright (C) 1993 Linus Torvalds
5 * Copyright (C) 1997 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
Jiri Hladkye01b70e2008-06-02 12:00:19 +02006 * Copyright (C) 2008 Jiri Hladky <hladky _dot_ jiri _at_ gmail _dot_ com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * The __delay function must _NOT_ be inlined as its execution time
9 * depends wildly on alignment on many x86 processors. The additional
10 * jump magic is needed to get the timing stable on all the CPU's
11 * we have to worry about.
12 */
13
john stultz6f84fa22006-06-26 00:25:11 -070014#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/sched.h>
Andrew Morton941e4922008-02-06 01:36:42 -080016#include <linux/timex.h>
Andrew Morton35d5d082007-11-14 17:00:41 -080017#include <linux/preempt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/delay.h>
Andrew Morton941e4922008-02-06 01:36:42 -080019#include <linux/init.h>
john stultz6f84fa22006-06-26 00:25:11 -070020
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/processor.h>
22#include <asm/delay.h>
23#include <asm/timer.h>
24
25#ifdef CONFIG_SMP
john stultz6f84fa22006-06-26 00:25:11 -070026# include <asm/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#endif
28
john stultz6f84fa22006-06-26 00:25:11 -070029/* simple loop based delay: */
30static void delay_loop(unsigned long loops)
31{
Glauber Costaf0fbf0a2008-07-03 12:35:41 -030032 asm volatile(
Jiri Hladkye01b70e2008-06-02 12:00:19 +020033 " test %0,%0 \n"
34 " jz 3f \n"
35 " jmp 1f \n"
36
37 ".align 16 \n"
38 "1: jmp 2f \n"
39
40 ".align 16 \n"
Glauber Costaff1b15b2008-06-24 09:27:19 -030041 "2: dec %0 \n"
Jiri Hladkye01b70e2008-06-02 12:00:19 +020042 " jnz 2b \n"
Glauber Costaff1b15b2008-06-24 09:27:19 -030043 "3: dec %0 \n"
Jiri Hladkye01b70e2008-06-02 12:00:19 +020044
45 : /* we don't need output */
46 :"a" (loops)
47 );
john stultz6f84fa22006-06-26 00:25:11 -070048}
49
50/* TSC based delay: */
51static void delay_tsc(unsigned long loops)
52{
53 unsigned long bclock, now;
Steven Rostedt5c1ea082008-05-25 11:13:32 -040054 int cpu;
john stultz6f84fa22006-06-26 00:25:11 -070055
Steven Rostedt5c1ea082008-05-25 11:13:32 -040056 preempt_disable();
57 cpu = smp_processor_id();
john stultz6f84fa22006-06-26 00:25:11 -070058 rdtscl(bclock);
Steven Rostedt5c1ea082008-05-25 11:13:32 -040059 for (;;) {
john stultz6f84fa22006-06-26 00:25:11 -070060 rdtscl(now);
Steven Rostedt5c1ea082008-05-25 11:13:32 -040061 if ((now - bclock) >= loops)
62 break;
63
64 /* Allow RT tasks to run */
65 preempt_enable();
66 rep_nop();
67 preempt_disable();
68
69 /*
70 * It is possible that we moved to another CPU, and
71 * since TSC's are per-cpu we need to calculate
72 * that. The delay must guarantee that we wait "at
73 * least" the amount of time. Being moved to another
74 * CPU could make the wait longer but we just need to
75 * make sure we waited long enough. Rebalance the
76 * counter for this CPU.
77 */
78 if (unlikely(cpu != smp_processor_id())) {
79 loops -= (now - bclock);
80 cpu = smp_processor_id();
81 rdtscl(bclock);
82 }
83 }
Andrew Morton35d5d082007-11-14 17:00:41 -080084 preempt_enable();
john stultz6f84fa22006-06-26 00:25:11 -070085}
86
87/*
88 * Since we calibrate only once at boot, this
89 * function should be set once at boot and not changed
90 */
91static void (*delay_fn)(unsigned long) = delay_loop;
92
93void use_tsc_delay(void)
94{
95 delay_fn = delay_tsc;
96}
97
Andrew Morton941e4922008-02-06 01:36:42 -080098int __devinit read_current_timer(unsigned long *timer_val)
john stultz6f84fa22006-06-26 00:25:11 -070099{
100 if (delay_fn == delay_tsc) {
Glauber Costaa76febe2008-06-24 09:52:36 -0300101 rdtscll(*timer_val);
john stultz6f84fa22006-06-26 00:25:11 -0700102 return 0;
103 }
104 return -1;
105}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107void __delay(unsigned long loops)
108{
john stultz6f84fa22006-06-26 00:25:11 -0700109 delay_fn(loops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
Glauber Costaf0fbf0a2008-07-03 12:35:41 -0300111EXPORT_SYMBOL(__delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113inline void __const_udelay(unsigned long xloops)
114{
115 int d0;
john stultz6f84fa22006-06-26 00:25:11 -0700116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 xloops *= 4;
Glauber Costaf0fbf0a2008-07-03 12:35:41 -0300118 asm("mull %%edx"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 :"=d" (xloops), "=&a" (d0)
john stultz6f84fa22006-06-26 00:25:11 -0700120 :"1" (xloops), "0"
Mike Travis92cb7612007-10-19 20:35:04 +0200121 (cpu_data(raw_smp_processor_id()).loops_per_jiffy * (HZ/4)));
john stultz6f84fa22006-06-26 00:25:11 -0700122
123 __delay(++xloops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
Glauber Costaf0fbf0a2008-07-03 12:35:41 -0300125EXPORT_SYMBOL(__const_udelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127void __udelay(unsigned long usecs)
128{
john stultz6f84fa22006-06-26 00:25:11 -0700129 __const_udelay(usecs * 0x000010c7); /* 2**32 / 1000000 (rounded up) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
Glauber Costaf0fbf0a2008-07-03 12:35:41 -0300131EXPORT_SYMBOL(__udelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133void __ndelay(unsigned long nsecs)
134{
john stultz6f84fa22006-06-26 00:25:11 -0700135 __const_udelay(nsecs * 0x00005); /* 2**32 / 1000000000 (rounded up) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700137EXPORT_SYMBOL(__ndelay);