Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Hladky | e01b70e | 2008-06-02 12:00:19 +0200 | [diff] [blame] | 6 | * Copyright (C) 2008 Jiri Hladky <hladky _dot_ jiri _at_ gmail _dot_ com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * |
| 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 stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 14 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/sched.h> |
Andrew Morton | 941e492 | 2008-02-06 01:36:42 -0800 | [diff] [blame] | 16 | #include <linux/timex.h> |
Andrew Morton | 35d5d08 | 2007-11-14 17:00:41 -0800 | [diff] [blame] | 17 | #include <linux/preempt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/delay.h> |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 19 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <asm/processor.h> |
| 21 | #include <asm/delay.h> |
| 22 | #include <asm/timer.h> |
Huang Rui | b466bdb | 2015-08-10 12:19:54 +0200 | [diff] [blame^] | 23 | #include <asm/mwait.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
| 25 | #ifdef CONFIG_SMP |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 26 | # include <asm/smp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #endif |
| 28 | |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 29 | /* simple loop based delay: */ |
| 30 | static void delay_loop(unsigned long loops) |
| 31 | { |
Glauber Costa | f0fbf0a | 2008-07-03 12:35:41 -0300 | [diff] [blame] | 32 | asm volatile( |
Jiri Hladky | e01b70e | 2008-06-02 12:00:19 +0200 | [diff] [blame] | 33 | " 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 Costa | ff1b15b | 2008-06-24 09:27:19 -0300 | [diff] [blame] | 41 | "2: dec %0 \n" |
Jiri Hladky | e01b70e | 2008-06-02 12:00:19 +0200 | [diff] [blame] | 42 | " jnz 2b \n" |
Glauber Costa | ff1b15b | 2008-06-24 09:27:19 -0300 | [diff] [blame] | 43 | "3: dec %0 \n" |
Jiri Hladky | e01b70e | 2008-06-02 12:00:19 +0200 | [diff] [blame] | 44 | |
| 45 | : /* we don't need output */ |
| 46 | :"a" (loops) |
| 47 | ); |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | /* TSC based delay: */ |
Thomas Gleixner | a7f4255 | 2012-03-09 20:55:10 +0100 | [diff] [blame] | 51 | static void delay_tsc(unsigned long __loops) |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 52 | { |
Andy Lutomirski | 9cfa1a0 | 2015-06-25 18:44:00 +0200 | [diff] [blame] | 53 | u64 bclock, now, loops = __loops; |
Steven Rostedt | 5c1ea08 | 2008-05-25 11:13:32 -0400 | [diff] [blame] | 54 | int cpu; |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 55 | |
Steven Rostedt | 5c1ea08 | 2008-05-25 11:13:32 -0400 | [diff] [blame] | 56 | preempt_disable(); |
| 57 | cpu = smp_processor_id(); |
Andy Lutomirski | 03b9730 | 2015-06-25 18:44:08 +0200 | [diff] [blame] | 58 | bclock = rdtsc_ordered(); |
Steven Rostedt | 5c1ea08 | 2008-05-25 11:13:32 -0400 | [diff] [blame] | 59 | for (;;) { |
Andy Lutomirski | 03b9730 | 2015-06-25 18:44:08 +0200 | [diff] [blame] | 60 | now = rdtsc_ordered(); |
Steven Rostedt | 5c1ea08 | 2008-05-25 11:13:32 -0400 | [diff] [blame] | 61 | 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(); |
Andy Lutomirski | 03b9730 | 2015-06-25 18:44:08 +0200 | [diff] [blame] | 81 | bclock = rdtsc_ordered(); |
Steven Rostedt | 5c1ea08 | 2008-05-25 11:13:32 -0400 | [diff] [blame] | 82 | } |
| 83 | } |
Andrew Morton | 35d5d08 | 2007-11-14 17:00:41 -0800 | [diff] [blame] | 84 | preempt_enable(); |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 85 | } |
| 86 | |
| 87 | /* |
Huang Rui | b466bdb | 2015-08-10 12:19:54 +0200 | [diff] [blame^] | 88 | * On some AMD platforms, MWAITX has a configurable 32-bit timer, that |
| 89 | * counts with TSC frequency. The input value is the loop of the |
| 90 | * counter, it will exit when the timer expires. |
| 91 | */ |
| 92 | static void delay_mwaitx(unsigned long __loops) |
| 93 | { |
| 94 | u64 start, end, delay, loops = __loops; |
| 95 | |
| 96 | start = rdtsc_ordered(); |
| 97 | |
| 98 | for (;;) { |
| 99 | delay = min_t(u64, MWAITX_MAX_LOOPS, loops); |
| 100 | |
| 101 | /* |
| 102 | * Use cpu_tss as a cacheline-aligned, seldomly |
| 103 | * accessed per-cpu variable as the monitor target. |
| 104 | */ |
| 105 | __monitorx(this_cpu_ptr(&cpu_tss), 0, 0); |
| 106 | |
| 107 | /* |
| 108 | * AMD, like Intel, supports the EAX hint and EAX=0xf |
| 109 | * means, do not enter any deep C-state and we use it |
| 110 | * here in delay() to minimize wakeup latency. |
| 111 | */ |
| 112 | __mwaitx(MWAITX_DISABLE_CSTATES, delay, MWAITX_ECX_TIMER_ENABLE); |
| 113 | |
| 114 | end = rdtsc_ordered(); |
| 115 | |
| 116 | if (loops <= end - start) |
| 117 | break; |
| 118 | |
| 119 | loops -= end - start; |
| 120 | |
| 121 | start = end; |
| 122 | } |
| 123 | } |
| 124 | |
| 125 | /* |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 126 | * Since we calibrate only once at boot, this |
| 127 | * function should be set once at boot and not changed |
| 128 | */ |
| 129 | static void (*delay_fn)(unsigned long) = delay_loop; |
| 130 | |
| 131 | void use_tsc_delay(void) |
| 132 | { |
Huang Rui | b466bdb | 2015-08-10 12:19:54 +0200 | [diff] [blame^] | 133 | if (delay_fn == delay_loop) |
| 134 | delay_fn = delay_tsc; |
| 135 | } |
| 136 | |
| 137 | void use_mwaitx_delay(void) |
| 138 | { |
| 139 | delay_fn = delay_mwaitx; |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 140 | } |
| 141 | |
Greg Kroah-Hartman | a18e369 | 2012-12-21 14:02:53 -0800 | [diff] [blame] | 142 | int read_current_timer(unsigned long *timer_val) |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 143 | { |
| 144 | if (delay_fn == delay_tsc) { |
Andy Lutomirski | 4ea1636 | 2015-06-25 18:44:07 +0200 | [diff] [blame] | 145 | *timer_val = rdtsc(); |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 146 | return 0; |
| 147 | } |
| 148 | return -1; |
| 149 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | |
| 151 | void __delay(unsigned long loops) |
| 152 | { |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 153 | delay_fn(loops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | } |
Glauber Costa | f0fbf0a | 2008-07-03 12:35:41 -0300 | [diff] [blame] | 155 | EXPORT_SYMBOL(__delay); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | |
| 157 | inline void __const_udelay(unsigned long xloops) |
| 158 | { |
| 159 | int d0; |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 160 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | xloops *= 4; |
Glauber Costa | f0fbf0a | 2008-07-03 12:35:41 -0300 | [diff] [blame] | 162 | asm("mull %%edx" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | :"=d" (xloops), "=&a" (d0) |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 164 | :"1" (xloops), "0" |
Christoph Lameter | 357089f | 2010-12-16 12:14:43 -0600 | [diff] [blame] | 165 | (this_cpu_read(cpu_info.loops_per_jiffy) * (HZ/4))); |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 166 | |
| 167 | __delay(++xloops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | } |
Glauber Costa | f0fbf0a | 2008-07-03 12:35:41 -0300 | [diff] [blame] | 169 | EXPORT_SYMBOL(__const_udelay); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | |
| 171 | void __udelay(unsigned long usecs) |
| 172 | { |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 173 | __const_udelay(usecs * 0x000010c7); /* 2**32 / 1000000 (rounded up) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | } |
Glauber Costa | f0fbf0a | 2008-07-03 12:35:41 -0300 | [diff] [blame] | 175 | EXPORT_SYMBOL(__udelay); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | |
| 177 | void __ndelay(unsigned long nsecs) |
| 178 | { |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 179 | __const_udelay(nsecs * 0x00005); /* 2**32 / 1000000000 (rounded up) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | } |
Alexey Dobriyan | 129f694 | 2005-06-23 00:08:33 -0700 | [diff] [blame] | 181 | EXPORT_SYMBOL(__ndelay); |