Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Precise Delay Loops for i386 |
| 4 | * |
| 5 | * Copyright (C) 1993 Linus Torvalds |
| 6 | * Copyright (C) 1997 Martin Mares <mj@atrey.karlin.mff.cuni.cz> |
Jiri Hladky | e01b70e | 2008-06-02 12:00:19 +0200 | [diff] [blame] | 7 | * Copyright (C) 2008 Jiri Hladky <hladky _dot_ jiri _at_ gmail _dot_ com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * |
| 9 | * The __delay function must _NOT_ be inlined as its execution time |
| 10 | * depends wildly on alignment on many x86 processors. The additional |
| 11 | * jump magic is needed to get the timing stable on all the CPU's |
| 12 | * we have to worry about. |
| 13 | */ |
| 14 | |
Paul Gortmaker | e683014 | 2016-07-13 20:18:57 -0400 | [diff] [blame] | 15 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/sched.h> |
Andrew Morton | 941e492 | 2008-02-06 01:36:42 -0800 | [diff] [blame] | 17 | #include <linux/timex.h> |
Andrew Morton | 35d5d08 | 2007-11-14 17:00:41 -0800 | [diff] [blame] | 18 | #include <linux/preempt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/delay.h> |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 20 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <asm/processor.h> |
| 22 | #include <asm/delay.h> |
| 23 | #include <asm/timer.h> |
Huang Rui | b466bdb | 2015-08-10 12:19:54 +0200 | [diff] [blame] | 24 | #include <asm/mwait.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
| 26 | #ifdef CONFIG_SMP |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 27 | # include <asm/smp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #endif |
| 29 | |
Thomas Gleixner | e882489 | 2020-04-24 12:37:54 -0700 | [diff] [blame] | 30 | static void delay_loop(u64 __loops); |
| 31 | |
| 32 | /* |
| 33 | * Calibration and selection of the delay mechanism happens only once |
| 34 | * during boot. |
| 35 | */ |
| 36 | static void (*delay_fn)(u64) __ro_after_init = delay_loop; |
Kyung Min Park | 46f90c7 | 2020-04-24 12:37:55 -0700 | [diff] [blame] | 37 | static void (*delay_halt_fn)(u64 start, u64 cycles) __ro_after_init; |
Thomas Gleixner | e882489 | 2020-04-24 12:37:54 -0700 | [diff] [blame] | 38 | |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 39 | /* simple loop based delay: */ |
Thomas Gleixner | e882489 | 2020-04-24 12:37:54 -0700 | [diff] [blame] | 40 | static void delay_loop(u64 __loops) |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 41 | { |
Thomas Gleixner | e882489 | 2020-04-24 12:37:54 -0700 | [diff] [blame] | 42 | unsigned long loops = (unsigned long)__loops; |
| 43 | |
Glauber Costa | f0fbf0a | 2008-07-03 12:35:41 -0300 | [diff] [blame] | 44 | asm volatile( |
Jiri Hladky | e01b70e | 2008-06-02 12:00:19 +0200 | [diff] [blame] | 45 | " test %0,%0 \n" |
| 46 | " jz 3f \n" |
| 47 | " jmp 1f \n" |
| 48 | |
| 49 | ".align 16 \n" |
| 50 | "1: jmp 2f \n" |
| 51 | |
| 52 | ".align 16 \n" |
Glauber Costa | ff1b15b | 2008-06-24 09:27:19 -0300 | [diff] [blame] | 53 | "2: dec %0 \n" |
Jiri Hladky | e01b70e | 2008-06-02 12:00:19 +0200 | [diff] [blame] | 54 | " jnz 2b \n" |
Glauber Costa | ff1b15b | 2008-06-24 09:27:19 -0300 | [diff] [blame] | 55 | "3: dec %0 \n" |
Jiri Hladky | e01b70e | 2008-06-02 12:00:19 +0200 | [diff] [blame] | 56 | |
| 57 | : /* we don't need output */ |
| 58 | :"a" (loops) |
| 59 | ); |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | /* TSC based delay: */ |
Thomas Gleixner | e882489 | 2020-04-24 12:37:54 -0700 | [diff] [blame] | 63 | static void delay_tsc(u64 cycles) |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 64 | { |
Thomas Gleixner | e882489 | 2020-04-24 12:37:54 -0700 | [diff] [blame] | 65 | u64 bclock, now; |
Steven Rostedt | 5c1ea08 | 2008-05-25 11:13:32 -0400 | [diff] [blame] | 66 | int cpu; |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 67 | |
Steven Rostedt | 5c1ea08 | 2008-05-25 11:13:32 -0400 | [diff] [blame] | 68 | preempt_disable(); |
| 69 | cpu = smp_processor_id(); |
Andy Lutomirski | 03b9730 | 2015-06-25 18:44:08 +0200 | [diff] [blame] | 70 | bclock = rdtsc_ordered(); |
Steven Rostedt | 5c1ea08 | 2008-05-25 11:13:32 -0400 | [diff] [blame] | 71 | for (;;) { |
Andy Lutomirski | 03b9730 | 2015-06-25 18:44:08 +0200 | [diff] [blame] | 72 | now = rdtsc_ordered(); |
Thomas Gleixner | e882489 | 2020-04-24 12:37:54 -0700 | [diff] [blame] | 73 | if ((now - bclock) >= cycles) |
Steven Rostedt | 5c1ea08 | 2008-05-25 11:13:32 -0400 | [diff] [blame] | 74 | break; |
| 75 | |
| 76 | /* Allow RT tasks to run */ |
| 77 | preempt_enable(); |
| 78 | rep_nop(); |
| 79 | preempt_disable(); |
| 80 | |
| 81 | /* |
| 82 | * It is possible that we moved to another CPU, and |
| 83 | * since TSC's are per-cpu we need to calculate |
| 84 | * that. The delay must guarantee that we wait "at |
| 85 | * least" the amount of time. Being moved to another |
| 86 | * CPU could make the wait longer but we just need to |
| 87 | * make sure we waited long enough. Rebalance the |
| 88 | * counter for this CPU. |
| 89 | */ |
| 90 | if (unlikely(cpu != smp_processor_id())) { |
Thomas Gleixner | e882489 | 2020-04-24 12:37:54 -0700 | [diff] [blame] | 91 | cycles -= (now - bclock); |
Steven Rostedt | 5c1ea08 | 2008-05-25 11:13:32 -0400 | [diff] [blame] | 92 | cpu = smp_processor_id(); |
Andy Lutomirski | 03b9730 | 2015-06-25 18:44:08 +0200 | [diff] [blame] | 93 | bclock = rdtsc_ordered(); |
Steven Rostedt | 5c1ea08 | 2008-05-25 11:13:32 -0400 | [diff] [blame] | 94 | } |
| 95 | } |
Andrew Morton | 35d5d08 | 2007-11-14 17:00:41 -0800 | [diff] [blame] | 96 | preempt_enable(); |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | /* |
Kyung Min Park | cec5f26 | 2020-04-24 12:37:56 -0700 | [diff] [blame] | 100 | * On Intel the TPAUSE instruction waits until any of: |
| 101 | * 1) the TSC counter exceeds the value provided in EDX:EAX |
| 102 | * 2) global timeout in IA32_UMWAIT_CONTROL is exceeded |
| 103 | * 3) an external interrupt occurs |
| 104 | */ |
| 105 | static void delay_halt_tpause(u64 start, u64 cycles) |
| 106 | { |
| 107 | u64 until = start + cycles; |
| 108 | u32 eax, edx; |
| 109 | |
| 110 | eax = lower_32_bits(until); |
| 111 | edx = upper_32_bits(until); |
| 112 | |
| 113 | /* |
| 114 | * Hard code the deeper (C0.2) sleep state because exit latency is |
| 115 | * small compared to the "microseconds" that usleep() will delay. |
| 116 | */ |
| 117 | __tpause(TPAUSE_C02_STATE, edx, eax); |
| 118 | } |
| 119 | |
| 120 | /* |
Huang Rui | b466bdb | 2015-08-10 12:19:54 +0200 | [diff] [blame] | 121 | * On some AMD platforms, MWAITX has a configurable 32-bit timer, that |
Thomas Gleixner | e882489 | 2020-04-24 12:37:54 -0700 | [diff] [blame] | 122 | * counts with TSC frequency. The input value is the number of TSC cycles |
| 123 | * to wait. MWAITX will also exit when the timer expires. |
Huang Rui | b466bdb | 2015-08-10 12:19:54 +0200 | [diff] [blame] | 124 | */ |
Kyung Min Park | 46f90c7 | 2020-04-24 12:37:55 -0700 | [diff] [blame] | 125 | static void delay_halt_mwaitx(u64 unused, u64 cycles) |
Huang Rui | b466bdb | 2015-08-10 12:19:54 +0200 | [diff] [blame] | 126 | { |
Kyung Min Park | 46f90c7 | 2020-04-24 12:37:55 -0700 | [diff] [blame] | 127 | u64 delay; |
| 128 | |
| 129 | delay = min_t(u64, MWAITX_MAX_WAIT_CYCLES, cycles); |
| 130 | /* |
| 131 | * Use cpu_tss_rw as a cacheline-aligned, seldomly accessed per-cpu |
| 132 | * variable as the monitor target. |
| 133 | */ |
| 134 | __monitorx(raw_cpu_ptr(&cpu_tss_rw), 0, 0); |
| 135 | |
| 136 | /* |
| 137 | * AMD, like Intel, supports the EAX hint and EAX=0xf means, do not |
| 138 | * enter any deep C-state and we use it here in delay() to minimize |
| 139 | * wakeup latency. |
| 140 | */ |
| 141 | __mwaitx(MWAITX_DISABLE_CSTATES, delay, MWAITX_ECX_TIMER_ENABLE); |
| 142 | } |
| 143 | |
| 144 | /* |
| 145 | * Call a vendor specific function to delay for a given amount of time. Because |
| 146 | * these functions may return earlier than requested, check for actual elapsed |
| 147 | * time and call again until done. |
| 148 | */ |
| 149 | static void delay_halt(u64 __cycles) |
| 150 | { |
| 151 | u64 start, end, cycles = __cycles; |
Huang Rui | b466bdb | 2015-08-10 12:19:54 +0200 | [diff] [blame] | 152 | |
Janakarajan Natarajan | 88d879d | 2017-04-25 16:44:03 -0500 | [diff] [blame] | 153 | /* |
| 154 | * Timer value of 0 causes MWAITX to wait indefinitely, unless there |
| 155 | * is a store on the memory monitored by MONITORX. |
| 156 | */ |
Thomas Gleixner | e882489 | 2020-04-24 12:37:54 -0700 | [diff] [blame] | 157 | if (!cycles) |
Janakarajan Natarajan | 88d879d | 2017-04-25 16:44:03 -0500 | [diff] [blame] | 158 | return; |
| 159 | |
Huang Rui | b466bdb | 2015-08-10 12:19:54 +0200 | [diff] [blame] | 160 | start = rdtsc_ordered(); |
| 161 | |
| 162 | for (;;) { |
Kyung Min Park | 46f90c7 | 2020-04-24 12:37:55 -0700 | [diff] [blame] | 163 | delay_halt_fn(start, cycles); |
Huang Rui | b466bdb | 2015-08-10 12:19:54 +0200 | [diff] [blame] | 164 | end = rdtsc_ordered(); |
| 165 | |
Thomas Gleixner | e882489 | 2020-04-24 12:37:54 -0700 | [diff] [blame] | 166 | if (cycles <= end - start) |
Huang Rui | b466bdb | 2015-08-10 12:19:54 +0200 | [diff] [blame] | 167 | break; |
| 168 | |
Thomas Gleixner | e882489 | 2020-04-24 12:37:54 -0700 | [diff] [blame] | 169 | cycles -= end - start; |
Huang Rui | b466bdb | 2015-08-10 12:19:54 +0200 | [diff] [blame] | 170 | start = end; |
| 171 | } |
| 172 | } |
| 173 | |
Thomas Gleixner | e882489 | 2020-04-24 12:37:54 -0700 | [diff] [blame] | 174 | void __init use_tsc_delay(void) |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 175 | { |
Huang Rui | b466bdb | 2015-08-10 12:19:54 +0200 | [diff] [blame] | 176 | if (delay_fn == delay_loop) |
| 177 | delay_fn = delay_tsc; |
| 178 | } |
| 179 | |
Kyung Min Park | cec5f26 | 2020-04-24 12:37:56 -0700 | [diff] [blame] | 180 | void __init use_tpause_delay(void) |
| 181 | { |
| 182 | delay_halt_fn = delay_halt_tpause; |
| 183 | delay_fn = delay_halt; |
| 184 | } |
| 185 | |
Huang Rui | b466bdb | 2015-08-10 12:19:54 +0200 | [diff] [blame] | 186 | void use_mwaitx_delay(void) |
| 187 | { |
Kyung Min Park | 46f90c7 | 2020-04-24 12:37:55 -0700 | [diff] [blame] | 188 | delay_halt_fn = delay_halt_mwaitx; |
| 189 | delay_fn = delay_halt; |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 190 | } |
| 191 | |
Greg Kroah-Hartman | a18e369 | 2012-12-21 14:02:53 -0800 | [diff] [blame] | 192 | int read_current_timer(unsigned long *timer_val) |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 193 | { |
| 194 | if (delay_fn == delay_tsc) { |
Andy Lutomirski | 4ea1636 | 2015-06-25 18:44:07 +0200 | [diff] [blame] | 195 | *timer_val = rdtsc(); |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 196 | return 0; |
| 197 | } |
| 198 | return -1; |
| 199 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | |
| 201 | void __delay(unsigned long loops) |
| 202 | { |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 203 | delay_fn(loops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | } |
Glauber Costa | f0fbf0a | 2008-07-03 12:35:41 -0300 | [diff] [blame] | 205 | EXPORT_SYMBOL(__delay); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | |
Andi Kleen | 81423c3 | 2019-03-29 17:47:38 -0700 | [diff] [blame] | 207 | noinline void __const_udelay(unsigned long xloops) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | { |
Jiri Slaby | 4c45c51 | 2017-01-19 12:47:30 +0100 | [diff] [blame] | 209 | unsigned long lpj = this_cpu_read(cpu_info.loops_per_jiffy) ? : loops_per_jiffy; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | int d0; |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 211 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | xloops *= 4; |
Glauber Costa | f0fbf0a | 2008-07-03 12:35:41 -0300 | [diff] [blame] | 213 | asm("mull %%edx" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | :"=d" (xloops), "=&a" (d0) |
Jiri Slaby | 4c45c51 | 2017-01-19 12:47:30 +0100 | [diff] [blame] | 215 | :"1" (xloops), "0" (lpj * (HZ / 4))); |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 216 | |
| 217 | __delay(++xloops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | } |
Glauber Costa | f0fbf0a | 2008-07-03 12:35:41 -0300 | [diff] [blame] | 219 | EXPORT_SYMBOL(__const_udelay); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | |
| 221 | void __udelay(unsigned long usecs) |
| 222 | { |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 223 | __const_udelay(usecs * 0x000010c7); /* 2**32 / 1000000 (rounded up) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | } |
Glauber Costa | f0fbf0a | 2008-07-03 12:35:41 -0300 | [diff] [blame] | 225 | EXPORT_SYMBOL(__udelay); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | |
| 227 | void __ndelay(unsigned long nsecs) |
| 228 | { |
john stultz | 6f84fa2 | 2006-06-26 00:25:11 -0700 | [diff] [blame] | 229 | __const_udelay(nsecs * 0x00005); /* 2**32 / 1000000000 (rounded up) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | } |
Alexey Dobriyan | 129f694 | 2005-06-23 00:08:33 -0700 | [diff] [blame] | 231 | EXPORT_SYMBOL(__ndelay); |