2 * x86 APERF/MPERF KHz calculation for
3 * /sys/.../cpufreq/scaling_cur_freq
5 * Copyright (C) 2017 Intel Corp.
8 * This file is licensed under GPLv2.
11 #include <linux/delay.h>
12 #include <linux/ktime.h>
13 #include <linux/math64.h>
14 #include <linux/percpu.h>
15 #include <linux/smp.h>
19 struct aperfmperf_sample {
26 static DEFINE_PER_CPU(struct aperfmperf_sample, samples);
28 #define APERFMPERF_CACHE_THRESHOLD_MS 10
29 #define APERFMPERF_REFRESH_DELAY_MS 10
30 #define APERFMPERF_STALE_THRESHOLD_MS 1000
33 * aperfmperf_snapshot_khz()
34 * On the current CPU, snapshot APERF, MPERF, and jiffies
35 * unless we already did it within 10ms
36 * calculate kHz, save snapshot
38 static void aperfmperf_snapshot_khz(void *dummy)
40 u64 aperf, aperf_delta;
41 u64 mperf, mperf_delta;
42 struct aperfmperf_sample *s = this_cpu_ptr(&samples);
45 local_irq_save(flags);
46 rdmsrl(MSR_IA32_APERF, aperf);
47 rdmsrl(MSR_IA32_MPERF, mperf);
48 local_irq_restore(flags);
50 aperf_delta = aperf - s->aperf;
51 mperf_delta = mperf - s->mperf;
54 * There is no architectural guarantee that MPERF
55 * increments faster than we can read it.
60 s->time = ktime_get();
63 s->khz = div64_u64((cpu_khz * aperf_delta), mperf_delta);
66 static bool aperfmperf_snapshot_cpu(int cpu, ktime_t now, bool wait)
68 s64 time_delta = ktime_ms_delta(now, per_cpu(samples.time, cpu));
70 /* Don't bother re-computing within the cache threshold time. */
71 if (time_delta < APERFMPERF_CACHE_THRESHOLD_MS)
74 smp_call_function_single(cpu, aperfmperf_snapshot_khz, NULL, wait);
76 /* Return false if the previous iteration was too long ago. */
77 return time_delta <= APERFMPERF_STALE_THRESHOLD_MS;
80 unsigned int aperfmperf_get_khz(int cpu)
85 if (!static_cpu_has(X86_FEATURE_APERFMPERF))
88 aperfmperf_snapshot_cpu(cpu, ktime_get(), true);
89 return per_cpu(samples.khz, cpu);
92 void arch_freq_prepare_all(void)
94 ktime_t now = ktime_get();
101 if (!static_cpu_has(X86_FEATURE_APERFMPERF))
104 for_each_online_cpu(cpu)
105 if (!aperfmperf_snapshot_cpu(cpu, now, false))
109 msleep(APERFMPERF_REFRESH_DELAY_MS);
112 unsigned int arch_freq_get_on_cpu(int cpu)
117 if (!static_cpu_has(X86_FEATURE_APERFMPERF))
120 if (aperfmperf_snapshot_cpu(cpu, ktime_get(), true))
121 return per_cpu(samples.khz, cpu);
123 msleep(APERFMPERF_REFRESH_DELAY_MS);
124 smp_call_function_single(cpu, aperfmperf_snapshot_khz, NULL, 1);
126 return per_cpu(samples.khz, cpu);