xref: /openbmc/linux/arch/x86/kernel/cpu/aperfmperf.c (revision 2eb3ed33e55d003d721d4d1a5e72fe323c12b4c0)
1 /*
2  * x86 APERF/MPERF KHz calculation for
3  * /sys/.../cpufreq/scaling_cur_freq
4  *
5  * Copyright (C) 2017 Intel Corp.
6  * Author: Len Brown <len.brown@intel.com>
7  *
8  * This file is licensed under GPLv2.
9  */
10 
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>
16 
17 struct aperfmperf_sample {
18 	unsigned int	khz;
19 	ktime_t	time;
20 	u64	aperf;
21 	u64	mperf;
22 };
23 
24 static DEFINE_PER_CPU(struct aperfmperf_sample, samples);
25 
26 #define APERFMPERF_CACHE_THRESHOLD_MS	10
27 #define APERFMPERF_REFRESH_DELAY_MS	20
28 #define APERFMPERF_STALE_THRESHOLD_MS	1000
29 
30 /*
31  * aperfmperf_snapshot_khz()
32  * On the current CPU, snapshot APERF, MPERF, and jiffies
33  * unless we already did it within 10ms
34  * calculate kHz, save snapshot
35  */
36 static void aperfmperf_snapshot_khz(void *dummy)
37 {
38 	u64 aperf, aperf_delta;
39 	u64 mperf, mperf_delta;
40 	struct aperfmperf_sample *s = this_cpu_ptr(&samples);
41 	ktime_t now = ktime_get();
42 	s64 time_delta = ktime_ms_delta(now, s->time);
43 	unsigned long flags;
44 
45 	local_irq_save(flags);
46 	rdmsrl(MSR_IA32_APERF, aperf);
47 	rdmsrl(MSR_IA32_MPERF, mperf);
48 	local_irq_restore(flags);
49 
50 	aperf_delta = aperf - s->aperf;
51 	mperf_delta = mperf - s->mperf;
52 
53 	/*
54 	 * There is no architectural guarantee that MPERF
55 	 * increments faster than we can read it.
56 	 */
57 	if (mperf_delta == 0)
58 		return;
59 
60 	s->time = now;
61 	s->aperf = aperf;
62 	s->mperf = mperf;
63 
64 	/* If the previous iteration was too long ago, discard it. */
65 	if (time_delta > APERFMPERF_STALE_THRESHOLD_MS)
66 		s->khz = 0;
67 	else
68 		s->khz = div64_u64((cpu_khz * aperf_delta), mperf_delta);
69 }
70 
71 unsigned int arch_freq_get_on_cpu(int cpu)
72 {
73 	s64 time_delta;
74 	unsigned int khz;
75 
76 	if (!cpu_khz)
77 		return 0;
78 
79 	if (!static_cpu_has(X86_FEATURE_APERFMPERF))
80 		return 0;
81 
82 	/* Don't bother re-computing within the cache threshold time. */
83 	time_delta = ktime_ms_delta(ktime_get(), per_cpu(samples.time, cpu));
84 	khz = per_cpu(samples.khz, cpu);
85 	if (khz && time_delta < APERFMPERF_CACHE_THRESHOLD_MS)
86 		return khz;
87 
88 	smp_call_function_single(cpu, aperfmperf_snapshot_khz, NULL, 1);
89 	khz = per_cpu(samples.khz, cpu);
90 	if (khz)
91 		return khz;
92 
93 	msleep(APERFMPERF_REFRESH_DELAY_MS);
94 	smp_call_function_single(cpu, aperfmperf_snapshot_khz, NULL, 1);
95 
96 	return per_cpu(samples.khz, cpu);
97 }
98