1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (c) 2012 The Chromium OS Authors.
5 * TSC calibration codes are adapted from Linux kernel
6 * arch/x86/kernel/tsc_msr.c and arch/x86/kernel/tsc.c
15 #include <asm/i8254.h>
16 #include <asm/ibmpc.h>
18 #include <asm/u-boot-x86.h>
20 #define MAX_NUM_FREQS 9
22 DECLARE_GLOBAL_DATA_PTR;
24 static unsigned long cpu_mhz_from_cpuid(void)
26 if (gd->arch.x86_vendor != X86_VENDOR_INTEL)
29 if (cpuid_eax(0) < 0x16)
32 return cpuid_eax(0x16);
36 * According to Intel 64 and IA-32 System Programming Guide,
37 * if MSR_PERF_STAT[31] is set, the maximum resolved bus ratio can be
38 * read in MSR_PLATFORM_ID[12:8], otherwise in MSR_PERF_STAT[44:40].
39 * Unfortunately some Intel Atom SoCs aren't quite compliant to this,
40 * so we need manually differentiate SoC families. This is what the
41 * field msr_plat does.
44 u8 x86_family; /* CPU family */
45 u8 x86_model; /* model */
46 /* 2: use 100MHz, 1: use MSR_PLATFORM_INFO, 0: MSR_IA32_PERF_STATUS */
48 u32 freqs[MAX_NUM_FREQS];
51 static struct freq_desc freq_desc_tables[] = {
53 { 6, 0x27, 0, { 0, 0, 0, 0, 0, 99840, 0, 83200, 0 } },
55 { 6, 0x35, 0, { 0, 133200, 0, 0, 0, 99840, 0, 83200, 0 } },
56 /* TNG - Intel Atom processor Z3400 series */
57 { 6, 0x4a, 1, { 0, 100000, 133300, 0, 0, 0, 0, 0, 0 } },
58 /* VLV2 - Intel Atom processor E3000, Z3600, Z3700 series */
59 { 6, 0x37, 1, { 83300, 100000, 133300, 116700, 80000, 0, 0, 0, 0 } },
60 /* ANN - Intel Atom processor Z3500 series */
61 { 6, 0x5a, 1, { 83300, 100000, 133300, 100000, 0, 0, 0, 0, 0 } },
62 /* AMT - Intel Atom processor X7-Z8000 and X5-Z8000 series */
63 { 6, 0x4c, 1, { 83300, 100000, 133300, 116700,
64 80000, 93300, 90000, 88900, 87500 } },
66 { 6, 0x3a, 2, { 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
69 static int match_cpu(u8 family, u8 model)
73 for (i = 0; i < ARRAY_SIZE(freq_desc_tables); i++) {
74 if ((family == freq_desc_tables[i].x86_family) &&
75 (model == freq_desc_tables[i].x86_model))
82 /* Map CPU reference clock freq ID(0-7) to CPU reference clock freq(KHz) */
83 #define id_to_freq(cpu_index, freq_id) \
84 (freq_desc_tables[cpu_index].freqs[freq_id])
87 * TSC on Intel Atom SoCs capable of determining TSC frequency by MSR is
88 * reliable and the frequency is known (provided by HW).
90 * On these platforms PIT/HPET is generally not available so calibration won't
91 * work at all and there is no other clocksource to act as a watchdog for the
92 * TSC, so we have no other choice than to trust it.
94 * Returns the TSC frequency in MHz or 0 if HW does not provide it.
96 static unsigned long __maybe_unused cpu_mhz_from_msr(void)
98 u32 lo, hi, ratio, freq_id, freq;
102 if (gd->arch.x86_vendor != X86_VENDOR_INTEL)
105 cpu_index = match_cpu(gd->arch.x86, gd->arch.x86_model);
109 if (freq_desc_tables[cpu_index].msr_plat) {
110 rdmsr(MSR_PLATFORM_INFO, lo, hi);
111 ratio = (lo >> 8) & 0xff;
113 rdmsr(MSR_IA32_PERF_STATUS, lo, hi);
114 ratio = (hi >> 8) & 0x1f;
116 debug("Maximum core-clock to bus-clock ratio: 0x%x\n", ratio);
118 if (freq_desc_tables[cpu_index].msr_plat == 2) {
119 /* TODO: Figure out how best to deal with this */
121 debug("Using frequency: %u KHz\n", freq);
123 /* Get FSB FREQ ID */
124 rdmsr(MSR_FSB_FREQ, lo, hi);
126 freq = id_to_freq(cpu_index, freq_id);
127 debug("Resolved frequency ID: %u, frequency: %u KHz\n",
131 /* TSC frequency = maximum resolved freq * maximum resolved bus ratio */
132 res = freq * ratio / 1000;
133 debug("TSC runs at %lu MHz\n", res);
139 * This reads the current MSB of the PIT counter, and
140 * checks if we are running on sufficiently fast and
141 * non-virtualized hardware.
143 * Our expectations are:
145 * - the PIT is running at roughly 1.19MHz
147 * - each IO is going to take about 1us on real hardware,
148 * but we allow it to be much faster (by a factor of 10) or
149 * _slightly_ slower (ie we allow up to a 2us read+counter
150 * update - anything else implies a unacceptably slow CPU
151 * or PIT for the fast calibration to work.
153 * - with 256 PIT ticks to read the value, we have 214us to
154 * see the same MSB (and overhead like doing a single TSC
155 * read per MSB value etc).
157 * - We're doing 2 reads per loop (LSB, MSB), and we expect
158 * them each to take about a microsecond on real hardware.
159 * So we expect a count value of around 100. But we'll be
160 * generous, and accept anything over 50.
162 * - if the PIT is stuck, and we see *many* more reads, we
163 * return early (and the next caller of pit_expect_msb()
164 * then consider it a failure when they don't see the
165 * next expected value).
167 * These expectations mean that we know that we have seen the
168 * transition from one expected value to another with a fairly
169 * high accuracy, and we didn't miss any events. We can thus
170 * use the TSC value at the transitions to calculate a pretty
171 * good value for the TSC frequencty.
173 static inline int pit_verify_msb(unsigned char val)
177 return inb(0x42) == val;
180 static inline int pit_expect_msb(unsigned char val, u64 *tscp,
181 unsigned long *deltap)
184 u64 tsc = 0, prev_tsc = 0;
186 for (count = 0; count < 50000; count++) {
187 if (!pit_verify_msb(val))
192 *deltap = rdtsc() - prev_tsc;
196 * We require _some_ success, but the quality control
197 * will be based on the error terms on the TSC values.
203 * How many MSB values do we want to see? We aim for
204 * a maximum error rate of 500ppm (in practice the
205 * real error is much smaller), but refuse to spend
206 * more than 50ms on it.
208 #define MAX_QUICK_PIT_MS 50
209 #define MAX_QUICK_PIT_ITERATIONS (MAX_QUICK_PIT_MS * PIT_TICK_RATE / 1000 / 256)
211 static unsigned long __maybe_unused quick_pit_calibrate(void)
215 unsigned long d1, d2;
217 /* Set the Gate high, disable speaker */
218 outb((inb(0x61) & ~0x02) | 0x01, 0x61);
221 * Counter 2, mode 0 (one-shot), binary count
223 * NOTE! Mode 2 decrements by two (and then the
224 * output is flipped each time, giving the same
225 * final output frequency as a decrement-by-one),
226 * so mode 0 is much better when looking at the
231 /* Start at 0xffff */
236 * The PIT starts counting at the next edge, so we
237 * need to delay for a microsecond. The easiest way
238 * to do that is to just read back the 16-bit counter
243 if (pit_expect_msb(0xff, &tsc, &d1)) {
244 for (i = 1; i <= MAX_QUICK_PIT_ITERATIONS; i++) {
245 if (!pit_expect_msb(0xff-i, &delta, &d2))
249 * Iterate until the error is less than 500 ppm
252 if (d1+d2 >= delta >> 11)
256 * Check the PIT one more time to verify that
257 * all TSC reads were stable wrt the PIT.
259 * This also guarantees serialization of the
260 * last cycle read ('d2') in pit_expect_msb.
262 if (!pit_verify_msb(0xfe - i))
267 debug("Fast TSC calibration failed\n");
272 * Ok, if we get here, then we've seen the
273 * MSB of the PIT decrement 'i' times, and the
274 * error has shrunk to less than 500 ppm.
276 * As a result, we can depend on there not being
277 * any odd delays anywhere, and the TSC reads are
278 * reliable (within the error).
280 * kHz = ticks / time-in-seconds / 1000;
281 * kHz = (t2 - t1) / (I * 256 / PIT_TICK_RATE) / 1000
282 * kHz = ((t2 - t1) * PIT_TICK_RATE) / (I * 256 * 1000)
284 delta *= PIT_TICK_RATE;
285 delta /= (i*256*1000);
286 debug("Fast TSC calibration using PIT\n");
290 /* Get the speed of the TSC timer in MHz */
291 unsigned notrace long get_tbclk_mhz(void)
293 return get_tbclk() / 1000000;
296 static ulong get_ms_timer(void)
298 return (get_ticks() * 1000) / get_tbclk();
301 ulong get_timer(ulong base)
303 return get_ms_timer() - base;
306 ulong notrace timer_get_us(void)
308 return get_ticks() / get_tbclk_mhz();
311 ulong timer_get_boot_us(void)
313 return timer_get_us();
316 void __udelay(unsigned long usec)
318 u64 now = get_ticks();
321 stop = now + usec * get_tbclk_mhz();
323 while ((int64_t)(stop - get_ticks()) > 0)
324 #if defined(CONFIG_QEMU) && defined(CONFIG_SMP)
326 * Add a 'pause' instruction on qemu target,
327 * to give other VCPUs a chance to run.
329 asm volatile("pause");
335 static int tsc_timer_get_count(struct udevice *dev, u64 *count)
337 u64 now_tick = rdtsc();
339 *count = now_tick - gd->arch.tsc_base;
344 static void tsc_timer_ensure_setup(void)
346 if (gd->arch.tsc_base)
348 gd->arch.tsc_base = rdtsc();
351 * If there is no clock frequency specified in the device tree,
352 * calibrate it by ourselves.
354 if (!gd->arch.clock_rate) {
355 unsigned long fast_calibrate;
357 fast_calibrate = cpu_mhz_from_cpuid();
361 fast_calibrate = cpu_mhz_from_msr();
365 fast_calibrate = quick_pit_calibrate();
369 panic("TSC frequency is ZERO");
372 gd->arch.clock_rate = fast_calibrate * 1000000;
376 static int tsc_timer_probe(struct udevice *dev)
378 struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
380 if (!uc_priv->clock_rate) {
381 tsc_timer_ensure_setup();
382 uc_priv->clock_rate = gd->arch.clock_rate;
384 gd->arch.tsc_base = rdtsc();
390 unsigned long notrace timer_early_get_rate(void)
393 * When TSC timer is used as the early timer, be warned that the timer
394 * clock rate can only be calibrated via some hardware ways. Specifying
395 * it in the device tree won't work for the early timer.
397 tsc_timer_ensure_setup();
399 return gd->arch.clock_rate;
402 u64 notrace timer_early_get_count(void)
404 return rdtsc() - gd->arch.tsc_base;
407 static const struct timer_ops tsc_timer_ops = {
408 .get_count = tsc_timer_get_count,
411 static const struct udevice_id tsc_timer_ids[] = {
412 { .compatible = "x86,tsc-timer", },
416 U_BOOT_DRIVER(tsc_timer) = {
419 .of_match = tsc_timer_ids,
420 .probe = tsc_timer_probe,
421 .ops = &tsc_timer_ops,
422 .flags = DM_FLAG_PRE_RELOC,