Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | e761ecd | 2013-04-17 16:13:36 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2012 The Chromium OS Authors. |
| 4 | * |
Bin Meng | 076bb44 | 2014-11-09 22:19:13 +0800 | [diff] [blame] | 5 | * TSC calibration codes are adapted from Linux kernel |
| 6 | * arch/x86/kernel/tsc_msr.c and arch/x86/kernel/tsc.c |
Simon Glass | e761ecd | 2013-04-17 16:13:36 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
Simon Glass | 52f2423 | 2020-05-10 11:40:00 -0600 | [diff] [blame] | 10 | #include <bootstage.h> |
Bin Meng | 4e51fc2 | 2015-11-13 00:11:21 -0800 | [diff] [blame] | 11 | #include <dm.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 12 | #include <log.h> |
Simon Glass | e761ecd | 2013-04-17 16:13:36 +0000 | [diff] [blame] | 13 | #include <malloc.h> |
Simon Glass | 1045315 | 2019-11-14 12:57:30 -0700 | [diff] [blame] | 14 | #include <time.h> |
Bin Meng | 4e51fc2 | 2015-11-13 00:11:21 -0800 | [diff] [blame] | 15 | #include <timer.h> |
Bin Meng | 0b992e4 | 2017-07-25 20:12:01 -0700 | [diff] [blame] | 16 | #include <asm/cpu.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 17 | #include <asm/global_data.h> |
Simon Glass | e761ecd | 2013-04-17 16:13:36 +0000 | [diff] [blame] | 18 | #include <asm/io.h> |
| 19 | #include <asm/i8254.h> |
| 20 | #include <asm/ibmpc.h> |
| 21 | #include <asm/msr.h> |
| 22 | #include <asm/u-boot-x86.h> |
Simon Glass | c05ed00 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 23 | #include <linux/delay.h> |
Simon Glass | e761ecd | 2013-04-17 16:13:36 +0000 | [diff] [blame] | 24 | |
Bin Meng | 3df39ef | 2017-08-15 22:41:50 -0700 | [diff] [blame] | 25 | #define MAX_NUM_FREQS 9 |
Bin Meng | 076bb44 | 2014-11-09 22:19:13 +0800 | [diff] [blame] | 26 | |
Bernhard Messerklinger | ca7db86 | 2019-01-07 12:14:40 +0100 | [diff] [blame] | 27 | #define INTEL_FAM6_SKYLAKE_MOBILE 0x4E |
| 28 | #define INTEL_FAM6_ATOM_GOLDMONT 0x5C /* Apollo Lake */ |
| 29 | #define INTEL_FAM6_SKYLAKE_DESKTOP 0x5E |
| 30 | #define INTEL_FAM6_ATOM_GOLDMONT_X 0x5F /* Denverton */ |
| 31 | #define INTEL_FAM6_KABYLAKE_MOBILE 0x8E |
| 32 | #define INTEL_FAM6_KABYLAKE_DESKTOP 0x9E |
| 33 | |
Simon Glass | e761ecd | 2013-04-17 16:13:36 +0000 | [diff] [blame] | 34 | DECLARE_GLOBAL_DATA_PTR; |
| 35 | |
Bernhard Messerklinger | ca7db86 | 2019-01-07 12:14:40 +0100 | [diff] [blame] | 36 | /* |
| 37 | * native_calibrate_tsc |
| 38 | * Determine TSC frequency via CPUID, else return 0. |
| 39 | */ |
| 40 | static unsigned long native_calibrate_tsc(void) |
| 41 | { |
| 42 | struct cpuid_result tsc_info; |
| 43 | unsigned int crystal_freq; |
| 44 | |
| 45 | if (gd->arch.x86_vendor != X86_VENDOR_INTEL) |
| 46 | return 0; |
| 47 | |
| 48 | if (cpuid_eax(0) < 0x15) |
| 49 | return 0; |
| 50 | |
| 51 | tsc_info = cpuid(0x15); |
| 52 | |
| 53 | if (tsc_info.ebx == 0 || tsc_info.eax == 0) |
| 54 | return 0; |
| 55 | |
| 56 | crystal_freq = tsc_info.ecx / 1000; |
Simon Glass | 642e848 | 2019-12-06 21:41:50 -0700 | [diff] [blame] | 57 | if (!CONFIG_IS_ENABLED(X86_TSC_TIMER_NATIVE) && !crystal_freq) { |
Bernhard Messerklinger | ca7db86 | 2019-01-07 12:14:40 +0100 | [diff] [blame] | 58 | switch (gd->arch.x86_model) { |
| 59 | case INTEL_FAM6_SKYLAKE_MOBILE: |
| 60 | case INTEL_FAM6_SKYLAKE_DESKTOP: |
| 61 | case INTEL_FAM6_KABYLAKE_MOBILE: |
| 62 | case INTEL_FAM6_KABYLAKE_DESKTOP: |
| 63 | crystal_freq = 24000; /* 24.0 MHz */ |
| 64 | break; |
| 65 | case INTEL_FAM6_ATOM_GOLDMONT_X: |
| 66 | crystal_freq = 25000; /* 25.0 MHz */ |
| 67 | break; |
| 68 | case INTEL_FAM6_ATOM_GOLDMONT: |
| 69 | crystal_freq = 19200; /* 19.2 MHz */ |
| 70 | break; |
| 71 | default: |
| 72 | return 0; |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | return (crystal_freq * tsc_info.ebx / tsc_info.eax) / 1000; |
| 77 | } |
| 78 | |
Christian Gmeiner | acc2482 | 2018-05-14 11:32:17 +0200 | [diff] [blame] | 79 | static unsigned long cpu_mhz_from_cpuid(void) |
| 80 | { |
| 81 | if (gd->arch.x86_vendor != X86_VENDOR_INTEL) |
| 82 | return 0; |
| 83 | |
| 84 | if (cpuid_eax(0) < 0x16) |
| 85 | return 0; |
| 86 | |
| 87 | return cpuid_eax(0x16); |
| 88 | } |
| 89 | |
Bin Meng | 076bb44 | 2014-11-09 22:19:13 +0800 | [diff] [blame] | 90 | /* |
| 91 | * According to Intel 64 and IA-32 System Programming Guide, |
| 92 | * if MSR_PERF_STAT[31] is set, the maximum resolved bus ratio can be |
| 93 | * read in MSR_PLATFORM_ID[12:8], otherwise in MSR_PERF_STAT[44:40]. |
| 94 | * Unfortunately some Intel Atom SoCs aren't quite compliant to this, |
| 95 | * so we need manually differentiate SoC families. This is what the |
| 96 | * field msr_plat does. |
| 97 | */ |
| 98 | struct freq_desc { |
| 99 | u8 x86_family; /* CPU family */ |
| 100 | u8 x86_model; /* model */ |
Simon Glass | 5c1b685 | 2014-11-12 22:42:04 -0700 | [diff] [blame] | 101 | /* 2: use 100MHz, 1: use MSR_PLATFORM_INFO, 0: MSR_IA32_PERF_STATUS */ |
| 102 | u8 msr_plat; |
Bin Meng | 076bb44 | 2014-11-09 22:19:13 +0800 | [diff] [blame] | 103 | u32 freqs[MAX_NUM_FREQS]; |
| 104 | }; |
| 105 | |
| 106 | static struct freq_desc freq_desc_tables[] = { |
| 107 | /* PNW */ |
Bin Meng | 3df39ef | 2017-08-15 22:41:50 -0700 | [diff] [blame] | 108 | { 6, 0x27, 0, { 0, 0, 0, 0, 0, 99840, 0, 83200, 0 } }, |
Bin Meng | 076bb44 | 2014-11-09 22:19:13 +0800 | [diff] [blame] | 109 | /* CLV+ */ |
Bin Meng | 3df39ef | 2017-08-15 22:41:50 -0700 | [diff] [blame] | 110 | { 6, 0x35, 0, { 0, 133200, 0, 0, 0, 99840, 0, 83200, 0 } }, |
Bin Meng | c636774 | 2017-07-25 20:12:03 -0700 | [diff] [blame] | 111 | /* TNG - Intel Atom processor Z3400 series */ |
Bin Meng | 3df39ef | 2017-08-15 22:41:50 -0700 | [diff] [blame] | 112 | { 6, 0x4a, 1, { 0, 100000, 133300, 0, 0, 0, 0, 0, 0 } }, |
Bin Meng | c636774 | 2017-07-25 20:12:03 -0700 | [diff] [blame] | 113 | /* VLV2 - Intel Atom processor E3000, Z3600, Z3700 series */ |
Bin Meng | 3df39ef | 2017-08-15 22:41:50 -0700 | [diff] [blame] | 114 | { 6, 0x37, 1, { 83300, 100000, 133300, 116700, 80000, 0, 0, 0, 0 } }, |
Bin Meng | c636774 | 2017-07-25 20:12:03 -0700 | [diff] [blame] | 115 | /* ANN - Intel Atom processor Z3500 series */ |
Bin Meng | 3df39ef | 2017-08-15 22:41:50 -0700 | [diff] [blame] | 116 | { 6, 0x5a, 1, { 83300, 100000, 133300, 100000, 0, 0, 0, 0, 0 } }, |
| 117 | /* AMT - Intel Atom processor X7-Z8000 and X5-Z8000 series */ |
| 118 | { 6, 0x4c, 1, { 83300, 100000, 133300, 116700, |
| 119 | 80000, 93300, 90000, 88900, 87500 } }, |
Simon Glass | 5c1b685 | 2014-11-12 22:42:04 -0700 | [diff] [blame] | 120 | /* Ivybridge */ |
Bin Meng | 3df39ef | 2017-08-15 22:41:50 -0700 | [diff] [blame] | 121 | { 6, 0x3a, 2, { 0, 0, 0, 0, 0, 0, 0, 0, 0 } }, |
Bin Meng | 076bb44 | 2014-11-09 22:19:13 +0800 | [diff] [blame] | 122 | }; |
| 123 | |
| 124 | static int match_cpu(u8 family, u8 model) |
| 125 | { |
| 126 | int i; |
| 127 | |
| 128 | for (i = 0; i < ARRAY_SIZE(freq_desc_tables); i++) { |
| 129 | if ((family == freq_desc_tables[i].x86_family) && |
| 130 | (model == freq_desc_tables[i].x86_model)) |
| 131 | return i; |
| 132 | } |
| 133 | |
| 134 | return -1; |
| 135 | } |
| 136 | |
| 137 | /* Map CPU reference clock freq ID(0-7) to CPU reference clock freq(KHz) */ |
| 138 | #define id_to_freq(cpu_index, freq_id) \ |
| 139 | (freq_desc_tables[cpu_index].freqs[freq_id]) |
| 140 | |
| 141 | /* |
Bin Meng | 167a401 | 2017-07-25 20:12:05 -0700 | [diff] [blame] | 142 | * TSC on Intel Atom SoCs capable of determining TSC frequency by MSR is |
| 143 | * reliable and the frequency is known (provided by HW). |
Bin Meng | 076bb44 | 2014-11-09 22:19:13 +0800 | [diff] [blame] | 144 | * |
Bin Meng | 167a401 | 2017-07-25 20:12:05 -0700 | [diff] [blame] | 145 | * On these platforms PIT/HPET is generally not available so calibration won't |
| 146 | * work at all and there is no other clocksource to act as a watchdog for the |
| 147 | * TSC, so we have no other choice than to trust it. |
| 148 | * |
| 149 | * Returns the TSC frequency in MHz or 0 if HW does not provide it. |
Bin Meng | 076bb44 | 2014-11-09 22:19:13 +0800 | [diff] [blame] | 150 | */ |
Bin Meng | 167a401 | 2017-07-25 20:12:05 -0700 | [diff] [blame] | 151 | static unsigned long __maybe_unused cpu_mhz_from_msr(void) |
Bin Meng | 076bb44 | 2014-11-09 22:19:13 +0800 | [diff] [blame] | 152 | { |
| 153 | u32 lo, hi, ratio, freq_id, freq; |
| 154 | unsigned long res; |
| 155 | int cpu_index; |
| 156 | |
Bin Meng | 0b992e4 | 2017-07-25 20:12:01 -0700 | [diff] [blame] | 157 | if (gd->arch.x86_vendor != X86_VENDOR_INTEL) |
| 158 | return 0; |
| 159 | |
Bin Meng | 076bb44 | 2014-11-09 22:19:13 +0800 | [diff] [blame] | 160 | cpu_index = match_cpu(gd->arch.x86, gd->arch.x86_model); |
| 161 | if (cpu_index < 0) |
| 162 | return 0; |
| 163 | |
| 164 | if (freq_desc_tables[cpu_index].msr_plat) { |
| 165 | rdmsr(MSR_PLATFORM_INFO, lo, hi); |
Bin Meng | d92e9c8 | 2017-07-25 20:12:00 -0700 | [diff] [blame] | 166 | ratio = (lo >> 8) & 0xff; |
Bin Meng | 076bb44 | 2014-11-09 22:19:13 +0800 | [diff] [blame] | 167 | } else { |
| 168 | rdmsr(MSR_IA32_PERF_STATUS, lo, hi); |
| 169 | ratio = (hi >> 8) & 0x1f; |
| 170 | } |
| 171 | debug("Maximum core-clock to bus-clock ratio: 0x%x\n", ratio); |
| 172 | |
Simon Glass | 5c1b685 | 2014-11-12 22:42:04 -0700 | [diff] [blame] | 173 | if (freq_desc_tables[cpu_index].msr_plat == 2) { |
| 174 | /* TODO: Figure out how best to deal with this */ |
Bin Meng | f575715 | 2017-07-25 20:12:04 -0700 | [diff] [blame] | 175 | freq = 100000; |
Simon Glass | 5c1b685 | 2014-11-12 22:42:04 -0700 | [diff] [blame] | 176 | debug("Using frequency: %u KHz\n", freq); |
| 177 | } else { |
| 178 | /* Get FSB FREQ ID */ |
| 179 | rdmsr(MSR_FSB_FREQ, lo, hi); |
| 180 | freq_id = lo & 0x7; |
| 181 | freq = id_to_freq(cpu_index, freq_id); |
| 182 | debug("Resolved frequency ID: %u, frequency: %u KHz\n", |
| 183 | freq_id, freq); |
| 184 | } |
Bin Meng | 076bb44 | 2014-11-09 22:19:13 +0800 | [diff] [blame] | 185 | |
| 186 | /* TSC frequency = maximum resolved freq * maximum resolved bus ratio */ |
| 187 | res = freq * ratio / 1000; |
| 188 | debug("TSC runs at %lu MHz\n", res); |
| 189 | |
| 190 | return res; |
Bin Meng | 076bb44 | 2014-11-09 22:19:13 +0800 | [diff] [blame] | 191 | } |
| 192 | |
Bin Meng | 80de049 | 2014-11-09 22:19:25 +0800 | [diff] [blame] | 193 | /* |
| 194 | * This reads the current MSB of the PIT counter, and |
| 195 | * checks if we are running on sufficiently fast and |
| 196 | * non-virtualized hardware. |
| 197 | * |
| 198 | * Our expectations are: |
| 199 | * |
| 200 | * - the PIT is running at roughly 1.19MHz |
| 201 | * |
| 202 | * - each IO is going to take about 1us on real hardware, |
| 203 | * but we allow it to be much faster (by a factor of 10) or |
| 204 | * _slightly_ slower (ie we allow up to a 2us read+counter |
| 205 | * update - anything else implies a unacceptably slow CPU |
| 206 | * or PIT for the fast calibration to work. |
| 207 | * |
| 208 | * - with 256 PIT ticks to read the value, we have 214us to |
| 209 | * see the same MSB (and overhead like doing a single TSC |
| 210 | * read per MSB value etc). |
| 211 | * |
| 212 | * - We're doing 2 reads per loop (LSB, MSB), and we expect |
| 213 | * them each to take about a microsecond on real hardware. |
| 214 | * So we expect a count value of around 100. But we'll be |
| 215 | * generous, and accept anything over 50. |
| 216 | * |
| 217 | * - if the PIT is stuck, and we see *many* more reads, we |
| 218 | * return early (and the next caller of pit_expect_msb() |
| 219 | * then consider it a failure when they don't see the |
| 220 | * next expected value). |
| 221 | * |
| 222 | * These expectations mean that we know that we have seen the |
| 223 | * transition from one expected value to another with a fairly |
| 224 | * high accuracy, and we didn't miss any events. We can thus |
| 225 | * use the TSC value at the transitions to calculate a pretty |
| 226 | * good value for the TSC frequencty. |
| 227 | */ |
| 228 | static inline int pit_verify_msb(unsigned char val) |
| 229 | { |
| 230 | /* Ignore LSB */ |
| 231 | inb(0x42); |
| 232 | return inb(0x42) == val; |
| 233 | } |
| 234 | |
| 235 | static inline int pit_expect_msb(unsigned char val, u64 *tscp, |
| 236 | unsigned long *deltap) |
| 237 | { |
| 238 | int count; |
| 239 | u64 tsc = 0, prev_tsc = 0; |
| 240 | |
| 241 | for (count = 0; count < 50000; count++) { |
| 242 | if (!pit_verify_msb(val)) |
| 243 | break; |
| 244 | prev_tsc = tsc; |
| 245 | tsc = rdtsc(); |
| 246 | } |
| 247 | *deltap = rdtsc() - prev_tsc; |
| 248 | *tscp = tsc; |
| 249 | |
| 250 | /* |
| 251 | * We require _some_ success, but the quality control |
| 252 | * will be based on the error terms on the TSC values. |
| 253 | */ |
| 254 | return count > 5; |
| 255 | } |
| 256 | |
| 257 | /* |
| 258 | * How many MSB values do we want to see? We aim for |
| 259 | * a maximum error rate of 500ppm (in practice the |
| 260 | * real error is much smaller), but refuse to spend |
| 261 | * more than 50ms on it. |
| 262 | */ |
| 263 | #define MAX_QUICK_PIT_MS 50 |
| 264 | #define MAX_QUICK_PIT_ITERATIONS (MAX_QUICK_PIT_MS * PIT_TICK_RATE / 1000 / 256) |
| 265 | |
Bin Meng | 3ba6a0f | 2015-01-06 22:14:14 +0800 | [diff] [blame] | 266 | static unsigned long __maybe_unused quick_pit_calibrate(void) |
Bin Meng | 80de049 | 2014-11-09 22:19:25 +0800 | [diff] [blame] | 267 | { |
| 268 | int i; |
| 269 | u64 tsc, delta; |
| 270 | unsigned long d1, d2; |
| 271 | |
| 272 | /* Set the Gate high, disable speaker */ |
| 273 | outb((inb(0x61) & ~0x02) | 0x01, 0x61); |
| 274 | |
| 275 | /* |
| 276 | * Counter 2, mode 0 (one-shot), binary count |
| 277 | * |
| 278 | * NOTE! Mode 2 decrements by two (and then the |
| 279 | * output is flipped each time, giving the same |
| 280 | * final output frequency as a decrement-by-one), |
| 281 | * so mode 0 is much better when looking at the |
| 282 | * individual counts. |
| 283 | */ |
| 284 | outb(0xb0, 0x43); |
| 285 | |
| 286 | /* Start at 0xffff */ |
| 287 | outb(0xff, 0x42); |
| 288 | outb(0xff, 0x42); |
| 289 | |
| 290 | /* |
| 291 | * The PIT starts counting at the next edge, so we |
| 292 | * need to delay for a microsecond. The easiest way |
| 293 | * to do that is to just read back the 16-bit counter |
| 294 | * once from the PIT. |
| 295 | */ |
| 296 | pit_verify_msb(0); |
| 297 | |
| 298 | if (pit_expect_msb(0xff, &tsc, &d1)) { |
| 299 | for (i = 1; i <= MAX_QUICK_PIT_ITERATIONS; i++) { |
| 300 | if (!pit_expect_msb(0xff-i, &delta, &d2)) |
| 301 | break; |
| 302 | |
| 303 | /* |
| 304 | * Iterate until the error is less than 500 ppm |
| 305 | */ |
| 306 | delta -= tsc; |
| 307 | if (d1+d2 >= delta >> 11) |
| 308 | continue; |
| 309 | |
| 310 | /* |
| 311 | * Check the PIT one more time to verify that |
| 312 | * all TSC reads were stable wrt the PIT. |
| 313 | * |
| 314 | * This also guarantees serialization of the |
| 315 | * last cycle read ('d2') in pit_expect_msb. |
| 316 | */ |
| 317 | if (!pit_verify_msb(0xfe - i)) |
| 318 | break; |
| 319 | goto success; |
| 320 | } |
| 321 | } |
| 322 | debug("Fast TSC calibration failed\n"); |
| 323 | return 0; |
| 324 | |
| 325 | success: |
| 326 | /* |
| 327 | * Ok, if we get here, then we've seen the |
| 328 | * MSB of the PIT decrement 'i' times, and the |
| 329 | * error has shrunk to less than 500 ppm. |
| 330 | * |
| 331 | * As a result, we can depend on there not being |
| 332 | * any odd delays anywhere, and the TSC reads are |
| 333 | * reliable (within the error). |
| 334 | * |
| 335 | * kHz = ticks / time-in-seconds / 1000; |
| 336 | * kHz = (t2 - t1) / (I * 256 / PIT_TICK_RATE) / 1000 |
| 337 | * kHz = ((t2 - t1) * PIT_TICK_RATE) / (I * 256 * 1000) |
| 338 | */ |
| 339 | delta *= PIT_TICK_RATE; |
| 340 | delta /= (i*256*1000); |
| 341 | debug("Fast TSC calibration using PIT\n"); |
| 342 | return delta / 1000; |
| 343 | } |
| 344 | |
Simon Glass | e761ecd | 2013-04-17 16:13:36 +0000 | [diff] [blame] | 345 | /* Get the speed of the TSC timer in MHz */ |
Bin Meng | 2f80fc5 | 2015-11-13 00:11:20 -0800 | [diff] [blame] | 346 | unsigned notrace long get_tbclk_mhz(void) |
Simon Glass | e761ecd | 2013-04-17 16:13:36 +0000 | [diff] [blame] | 347 | { |
Bin Meng | 4e51fc2 | 2015-11-13 00:11:21 -0800 | [diff] [blame] | 348 | return get_tbclk() / 1000000; |
Simon Glass | e761ecd | 2013-04-17 16:13:36 +0000 | [diff] [blame] | 349 | } |
| 350 | |
Simon Glass | e761ecd | 2013-04-17 16:13:36 +0000 | [diff] [blame] | 351 | static ulong get_ms_timer(void) |
| 352 | { |
| 353 | return (get_ticks() * 1000) / get_tbclk(); |
| 354 | } |
| 355 | |
| 356 | ulong get_timer(ulong base) |
| 357 | { |
| 358 | return get_ms_timer() - base; |
| 359 | } |
| 360 | |
Bin Meng | 2f80fc5 | 2015-11-13 00:11:20 -0800 | [diff] [blame] | 361 | ulong notrace timer_get_us(void) |
Simon Glass | e761ecd | 2013-04-17 16:13:36 +0000 | [diff] [blame] | 362 | { |
| 363 | return get_ticks() / get_tbclk_mhz(); |
| 364 | } |
| 365 | |
| 366 | ulong timer_get_boot_us(void) |
| 367 | { |
| 368 | return timer_get_us(); |
| 369 | } |
| 370 | |
| 371 | void __udelay(unsigned long usec) |
| 372 | { |
| 373 | u64 now = get_ticks(); |
| 374 | u64 stop; |
| 375 | |
Simon Glass | 9edf20f | 2021-01-13 20:29:45 -0700 | [diff] [blame] | 376 | stop = now + (u64)usec * get_tbclk_mhz(); |
Simon Glass | e761ecd | 2013-04-17 16:13:36 +0000 | [diff] [blame] | 377 | |
| 378 | while ((int64_t)(stop - get_ticks()) > 0) |
Miao Yan | 417576c | 2015-07-27 19:16:07 +0800 | [diff] [blame] | 379 | #if defined(CONFIG_QEMU) && defined(CONFIG_SMP) |
| 380 | /* |
| 381 | * Add a 'pause' instruction on qemu target, |
| 382 | * to give other VCPUs a chance to run. |
| 383 | */ |
| 384 | asm volatile("pause"); |
| 385 | #else |
Simon Glass | e761ecd | 2013-04-17 16:13:36 +0000 | [diff] [blame] | 386 | ; |
Miao Yan | 417576c | 2015-07-27 19:16:07 +0800 | [diff] [blame] | 387 | #endif |
Simon Glass | e761ecd | 2013-04-17 16:13:36 +0000 | [diff] [blame] | 388 | } |
| 389 | |
Sean Anderson | 8af7bb9 | 2020-10-07 14:37:44 -0400 | [diff] [blame] | 390 | static u64 tsc_timer_get_count(struct udevice *dev) |
Bin Meng | 4e51fc2 | 2015-11-13 00:11:21 -0800 | [diff] [blame] | 391 | { |
| 392 | u64 now_tick = rdtsc(); |
| 393 | |
Sean Anderson | 8af7bb9 | 2020-10-07 14:37:44 -0400 | [diff] [blame] | 394 | return now_tick - gd->arch.tsc_base; |
Bin Meng | 4e51fc2 | 2015-11-13 00:11:21 -0800 | [diff] [blame] | 395 | } |
| 396 | |
Bin Meng | 6ce3836 | 2018-10-13 20:52:10 -0700 | [diff] [blame] | 397 | static void tsc_timer_ensure_setup(bool early) |
Bin Meng | 4e51fc2 | 2015-11-13 00:11:21 -0800 | [diff] [blame] | 398 | { |
Simon Glass | a478a26 | 2019-10-20 21:37:47 -0600 | [diff] [blame] | 399 | if (gd->arch.tsc_inited) |
Simon Glass | 2ff50f5 | 2017-09-05 19:49:46 -0600 | [diff] [blame] | 400 | return; |
Simon Glass | 77dd7c6 | 2019-12-06 21:41:49 -0700 | [diff] [blame] | 401 | if (IS_ENABLED(CONFIG_X86_TSC_READ_BASE)) |
| 402 | gd->arch.tsc_base = rdtsc(); |
Bin Meng | 4e51fc2 | 2015-11-13 00:11:21 -0800 | [diff] [blame] | 403 | |
Simon Glass | 2ff50f5 | 2017-09-05 19:49:46 -0600 | [diff] [blame] | 404 | if (!gd->arch.clock_rate) { |
Bin Meng | 4e51fc2 | 2015-11-13 00:11:21 -0800 | [diff] [blame] | 405 | unsigned long fast_calibrate; |
| 406 | |
Bernhard Messerklinger | ca7db86 | 2019-01-07 12:14:40 +0100 | [diff] [blame] | 407 | fast_calibrate = native_calibrate_tsc(); |
| 408 | if (fast_calibrate) |
| 409 | goto done; |
| 410 | |
Simon Glass | 642e848 | 2019-12-06 21:41:50 -0700 | [diff] [blame] | 411 | /* Reduce code size by dropping other methods */ |
| 412 | if (CONFIG_IS_ENABLED(X86_TSC_TIMER_NATIVE)) |
| 413 | panic("no timer"); |
| 414 | |
Christian Gmeiner | acc2482 | 2018-05-14 11:32:17 +0200 | [diff] [blame] | 415 | fast_calibrate = cpu_mhz_from_cpuid(); |
| 416 | if (fast_calibrate) |
| 417 | goto done; |
Bin Meng | 4e51fc2 | 2015-11-13 00:11:21 -0800 | [diff] [blame] | 418 | |
Christian Gmeiner | acc2482 | 2018-05-14 11:32:17 +0200 | [diff] [blame] | 419 | fast_calibrate = cpu_mhz_from_msr(); |
| 420 | if (fast_calibrate) |
| 421 | goto done; |
| 422 | |
| 423 | fast_calibrate = quick_pit_calibrate(); |
| 424 | if (fast_calibrate) |
| 425 | goto done; |
| 426 | |
Bin Meng | 6ce3836 | 2018-10-13 20:52:10 -0700 | [diff] [blame] | 427 | if (early) |
Bin Meng | 5824bc6 | 2021-07-28 12:00:22 +0800 | [diff] [blame^] | 428 | gd->arch.clock_rate = CONFIG_X86_TSC_TIMER_FREQ; |
Bin Meng | 165db7c | 2018-08-10 02:39:36 -0700 | [diff] [blame] | 429 | else |
| 430 | return; |
Christian Gmeiner | acc2482 | 2018-05-14 11:32:17 +0200 | [diff] [blame] | 431 | |
| 432 | done: |
Bin Meng | 5824bc6 | 2021-07-28 12:00:22 +0800 | [diff] [blame^] | 433 | if (!gd->arch.clock_rate) |
| 434 | gd->arch.clock_rate = fast_calibrate * 1000000; |
Bin Meng | 4e51fc2 | 2015-11-13 00:11:21 -0800 | [diff] [blame] | 435 | } |
Simon Glass | a478a26 | 2019-10-20 21:37:47 -0600 | [diff] [blame] | 436 | gd->arch.tsc_inited = true; |
Simon Glass | 2ff50f5 | 2017-09-05 19:49:46 -0600 | [diff] [blame] | 437 | } |
| 438 | |
| 439 | static int tsc_timer_probe(struct udevice *dev) |
| 440 | { |
| 441 | struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev); |
| 442 | |
Bin Meng | 165db7c | 2018-08-10 02:39:36 -0700 | [diff] [blame] | 443 | /* Try hardware calibration first */ |
| 444 | tsc_timer_ensure_setup(false); |
| 445 | if (!gd->arch.clock_rate) { |
| 446 | /* |
| 447 | * Use the clock frequency specified in the |
| 448 | * device tree as last resort |
| 449 | */ |
| 450 | if (!uc_priv->clock_rate) |
| 451 | panic("TSC frequency is ZERO"); |
Bin Meng | 94e72a6 | 2018-06-23 03:03:47 -0700 | [diff] [blame] | 452 | } else { |
Bin Meng | 165db7c | 2018-08-10 02:39:36 -0700 | [diff] [blame] | 453 | uc_priv->clock_rate = gd->arch.clock_rate; |
Bin Meng | 94e72a6 | 2018-06-23 03:03:47 -0700 | [diff] [blame] | 454 | } |
Bin Meng | 4e51fc2 | 2015-11-13 00:11:21 -0800 | [diff] [blame] | 455 | |
| 456 | return 0; |
| 457 | } |
| 458 | |
Simon Glass | 2ff50f5 | 2017-09-05 19:49:46 -0600 | [diff] [blame] | 459 | unsigned long notrace timer_early_get_rate(void) |
| 460 | { |
Bin Meng | 94e72a6 | 2018-06-23 03:03:47 -0700 | [diff] [blame] | 461 | /* |
| 462 | * When TSC timer is used as the early timer, be warned that the timer |
| 463 | * clock rate can only be calibrated via some hardware ways. Specifying |
| 464 | * it in the device tree won't work for the early timer. |
| 465 | */ |
Bin Meng | 165db7c | 2018-08-10 02:39:36 -0700 | [diff] [blame] | 466 | tsc_timer_ensure_setup(true); |
Simon Glass | 2ff50f5 | 2017-09-05 19:49:46 -0600 | [diff] [blame] | 467 | |
| 468 | return gd->arch.clock_rate; |
| 469 | } |
| 470 | |
| 471 | u64 notrace timer_early_get_count(void) |
| 472 | { |
Simon Glass | 096c71e | 2019-10-20 21:31:54 -0600 | [diff] [blame] | 473 | tsc_timer_ensure_setup(true); |
| 474 | |
Simon Glass | 2ff50f5 | 2017-09-05 19:49:46 -0600 | [diff] [blame] | 475 | return rdtsc() - gd->arch.tsc_base; |
| 476 | } |
| 477 | |
Bin Meng | 4e51fc2 | 2015-11-13 00:11:21 -0800 | [diff] [blame] | 478 | static const struct timer_ops tsc_timer_ops = { |
| 479 | .get_count = tsc_timer_get_count, |
| 480 | }; |
| 481 | |
Simon Glass | 8b842be | 2020-12-23 08:11:30 -0700 | [diff] [blame] | 482 | #if !CONFIG_IS_ENABLED(OF_PLATDATA) |
Bin Meng | 4e51fc2 | 2015-11-13 00:11:21 -0800 | [diff] [blame] | 483 | static const struct udevice_id tsc_timer_ids[] = { |
| 484 | { .compatible = "x86,tsc-timer", }, |
| 485 | { } |
| 486 | }; |
Simon Glass | 8b842be | 2020-12-23 08:11:30 -0700 | [diff] [blame] | 487 | #endif |
Bin Meng | 4e51fc2 | 2015-11-13 00:11:21 -0800 | [diff] [blame] | 488 | |
Simon Glass | 9d20db0 | 2020-10-05 05:27:01 -0600 | [diff] [blame] | 489 | U_BOOT_DRIVER(x86_tsc_timer) = { |
| 490 | .name = "x86_tsc_timer", |
Bin Meng | 4e51fc2 | 2015-11-13 00:11:21 -0800 | [diff] [blame] | 491 | .id = UCLASS_TIMER, |
Simon Glass | 8b842be | 2020-12-23 08:11:30 -0700 | [diff] [blame] | 492 | .of_match = of_match_ptr(tsc_timer_ids), |
Bin Meng | 4e51fc2 | 2015-11-13 00:11:21 -0800 | [diff] [blame] | 493 | .probe = tsc_timer_probe, |
| 494 | .ops = &tsc_timer_ops, |
Bin Meng | 4e51fc2 | 2015-11-13 00:11:21 -0800 | [diff] [blame] | 495 | }; |