1 /*
2 * arch/arm64/kernel/topology.c
3 *
4 * Copyright (C) 2011,2013,2014 Linaro Limited.
5 *
6 * Based on the arm32 version written by Vincent Guittot in turn based on
7 * arch/sh/kernel/topology.c
8 *
9 * This file is subject to the terms and conditions of the GNU General Public
10 * License. See the file "COPYING" in the main directory of this archive
11 * for more details.
12 */
13
14 #include <linux/acpi.h>
15 #include <linux/arch_topology.h>
16 #include <linux/cacheinfo.h>
17 #include <linux/cpufreq.h>
18 #include <linux/cpu_smt.h>
19 #include <linux/init.h>
20 #include <linux/percpu.h>
21 #include <linux/sched/isolation.h>
22 #include <linux/xarray.h>
23
24 #include <asm/cpu.h>
25 #include <asm/cputype.h>
26 #include <asm/topology.h>
27
28 #ifdef CONFIG_ARM64_AMU_EXTN
29 #define read_corecnt() read_sysreg_s(SYS_AMEVCNTR0_CORE_EL0)
30 #define read_constcnt() read_sysreg_s(SYS_AMEVCNTR0_CONST_EL0)
31 #else
32 #define read_corecnt() (0UL)
33 #define read_constcnt() (0UL)
34 #endif
35
36 #undef pr_fmt
37 #define pr_fmt(fmt) "AMU: " fmt
38
39 /*
40 * Ensure that amu_scale_freq_tick() will return SCHED_CAPACITY_SCALE until
41 * the CPU capacity and its associated frequency have been correctly
42 * initialized.
43 */
44 static DEFINE_PER_CPU_READ_MOSTLY(unsigned long, arch_max_freq_scale) = 1UL << (2 * SCHED_CAPACITY_SHIFT);
45 static cpumask_var_t amu_fie_cpus;
46
47 struct amu_cntr_sample {
48 u64 arch_const_cycles_prev;
49 u64 arch_core_cycles_prev;
50 unsigned long last_scale_update;
51 };
52
53 static DEFINE_PER_CPU_SHARED_ALIGNED(struct amu_cntr_sample, cpu_amu_samples);
54
update_freq_counters_refs(void)55 void update_freq_counters_refs(void)
56 {
57 struct amu_cntr_sample *amu_sample = this_cpu_ptr(&cpu_amu_samples);
58
59 amu_sample->arch_core_cycles_prev = read_corecnt();
60 amu_sample->arch_const_cycles_prev = read_constcnt();
61 }
62
freq_counters_valid(int cpu)63 static inline bool freq_counters_valid(int cpu)
64 {
65 struct amu_cntr_sample *amu_sample = per_cpu_ptr(&cpu_amu_samples, cpu);
66
67 if ((cpu >= nr_cpu_ids) || !cpumask_test_cpu(cpu, cpu_present_mask))
68 return false;
69
70 if (!cpu_has_amu_feat(cpu)) {
71 pr_debug("CPU%d: counters are not supported.\n", cpu);
72 return false;
73 }
74
75 if (unlikely(!amu_sample->arch_const_cycles_prev ||
76 !amu_sample->arch_core_cycles_prev)) {
77 pr_debug("CPU%d: cycle counters are not enabled.\n", cpu);
78 return false;
79 }
80
81 return true;
82 }
83
freq_inv_set_max_ratio(int cpu,u64 max_rate)84 void freq_inv_set_max_ratio(int cpu, u64 max_rate)
85 {
86 u64 ratio, ref_rate = arch_timer_get_rate();
87
88 if (unlikely(!max_rate || !ref_rate)) {
89 WARN_ONCE(1, "CPU%d: invalid maximum or reference frequency.\n",
90 cpu);
91 return;
92 }
93
94 /*
95 * Pre-compute the fixed ratio between the frequency of the constant
96 * reference counter and the maximum frequency of the CPU.
97 *
98 * ref_rate
99 * arch_max_freq_scale = ---------- * SCHED_CAPACITY_SCALE²
100 * max_rate
101 *
102 * We use a factor of 2 * SCHED_CAPACITY_SHIFT -> SCHED_CAPACITY_SCALE²
103 * in order to ensure a good resolution for arch_max_freq_scale for
104 * very low reference frequencies (down to the KHz range which should
105 * be unlikely).
106 */
107 ratio = ref_rate << (2 * SCHED_CAPACITY_SHIFT);
108 ratio = div64_u64(ratio, max_rate);
109 if (!ratio) {
110 WARN_ONCE(1, "Reference frequency too low.\n");
111 return;
112 }
113
114 WRITE_ONCE(per_cpu(arch_max_freq_scale, cpu), (unsigned long)ratio);
115 }
116
amu_scale_freq_tick(void)117 static void amu_scale_freq_tick(void)
118 {
119 struct amu_cntr_sample *amu_sample = this_cpu_ptr(&cpu_amu_samples);
120 u64 prev_core_cnt, prev_const_cnt;
121 u64 core_cnt, const_cnt, scale;
122
123 prev_const_cnt = amu_sample->arch_const_cycles_prev;
124 prev_core_cnt = amu_sample->arch_core_cycles_prev;
125
126 update_freq_counters_refs();
127
128 const_cnt = amu_sample->arch_const_cycles_prev;
129 core_cnt = amu_sample->arch_core_cycles_prev;
130
131 /*
132 * This should not happen unless the AMUs have been reset and the
133 * counter values have not been restored - unlikely
134 */
135 if (unlikely(core_cnt <= prev_core_cnt ||
136 const_cnt <= prev_const_cnt))
137 return;
138
139 /*
140 * /\core arch_max_freq_scale
141 * scale = ------- * --------------------
142 * /\const SCHED_CAPACITY_SCALE
143 *
144 * See validate_cpu_freq_invariance_counters() for details on
145 * arch_max_freq_scale and the use of SCHED_CAPACITY_SHIFT.
146 */
147 scale = core_cnt - prev_core_cnt;
148 scale *= this_cpu_read(arch_max_freq_scale);
149 scale = div64_u64(scale >> SCHED_CAPACITY_SHIFT,
150 const_cnt - prev_const_cnt);
151
152 scale = min_t(unsigned long, scale, SCHED_CAPACITY_SCALE);
153 this_cpu_write(arch_freq_scale, (unsigned long)scale);
154
155 amu_sample->last_scale_update = jiffies;
156 }
157
158 static struct scale_freq_data amu_sfd = {
159 .source = SCALE_FREQ_SOURCE_ARCH,
160 .set_freq_scale = amu_scale_freq_tick,
161 };
162
amu_fie_cpu_supported(unsigned int cpu)163 static __always_inline bool amu_fie_cpu_supported(unsigned int cpu)
164 {
165 return cpumask_available(amu_fie_cpus) &&
166 cpumask_test_cpu(cpu, amu_fie_cpus);
167 }
168
arch_cpu_idle_enter(void)169 void arch_cpu_idle_enter(void)
170 {
171 unsigned int cpu = smp_processor_id();
172
173 if (!amu_fie_cpu_supported(cpu))
174 return;
175
176 /* Kick in AMU update but only if one has not happened already */
177 if (housekeeping_cpu(cpu, HK_TYPE_TICK) &&
178 time_is_before_jiffies(per_cpu(cpu_amu_samples.last_scale_update, cpu)))
179 amu_scale_freq_tick();
180 }
181
182 #define AMU_SAMPLE_EXP_MS 20
183
arch_freq_get_on_cpu(int cpu)184 int arch_freq_get_on_cpu(int cpu)
185 {
186 struct amu_cntr_sample *amu_sample;
187 unsigned int start_cpu = cpu;
188 unsigned long last_update;
189 unsigned int freq = 0;
190 u64 scale;
191
192 if (!amu_fie_cpu_supported(cpu) || !arch_scale_freq_ref(cpu))
193 return -EOPNOTSUPP;
194
195 while (1) {
196
197 amu_sample = per_cpu_ptr(&cpu_amu_samples, cpu);
198
199 last_update = amu_sample->last_scale_update;
200
201 /*
202 * For those CPUs that are in full dynticks mode, or those that have
203 * not seen tick for a while, try an alternative source for the counters
204 * (and thus freq scale), if available, for given policy: this boils
205 * down to identifying an active cpu within the same freq domain, if any.
206 */
207 if (!housekeeping_cpu(cpu, HK_TYPE_TICK) ||
208 time_is_before_jiffies(last_update + msecs_to_jiffies(AMU_SAMPLE_EXP_MS))) {
209 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
210 int ref_cpu;
211
212 if (!policy)
213 return -EINVAL;
214
215 if (!cpumask_intersects(policy->related_cpus,
216 housekeeping_cpumask(HK_TYPE_TICK))) {
217 cpufreq_cpu_put(policy);
218 return -EOPNOTSUPP;
219 }
220
221 for_each_cpu_wrap(ref_cpu, policy->cpus, cpu + 1) {
222 if (ref_cpu == start_cpu) {
223 /* Prevent verifying same CPU twice */
224 ref_cpu = nr_cpu_ids;
225 break;
226 }
227 if (!idle_cpu(ref_cpu))
228 break;
229 }
230
231 cpufreq_cpu_put(policy);
232
233 if (ref_cpu >= nr_cpu_ids)
234 /* No alternative to pull info from */
235 return -EAGAIN;
236
237 cpu = ref_cpu;
238 } else {
239 break;
240 }
241 }
242 /*
243 * Reversed computation to the one used to determine
244 * the arch_freq_scale value
245 * (see amu_scale_freq_tick for details)
246 */
247 scale = arch_scale_freq_capacity(cpu);
248 freq = scale * arch_scale_freq_ref(cpu);
249 freq >>= SCHED_CAPACITY_SHIFT;
250 return freq;
251 }
252
amu_fie_setup(const struct cpumask * cpus)253 static void amu_fie_setup(const struct cpumask *cpus)
254 {
255 int cpu;
256
257 /* We are already set since the last insmod of cpufreq driver */
258 if (cpumask_available(amu_fie_cpus) &&
259 unlikely(cpumask_subset(cpus, amu_fie_cpus)))
260 return;
261
262 for_each_cpu(cpu, cpus)
263 if (!freq_counters_valid(cpu))
264 return;
265
266 if (!cpumask_available(amu_fie_cpus) &&
267 !zalloc_cpumask_var(&amu_fie_cpus, GFP_KERNEL)) {
268 WARN_ONCE(1, "Failed to allocate FIE cpumask for CPUs[%*pbl]\n",
269 cpumask_pr_args(cpus));
270 return;
271 }
272
273 cpumask_or(amu_fie_cpus, amu_fie_cpus, cpus);
274
275 topology_set_scale_freq_source(&amu_sfd, cpus);
276
277 pr_debug("CPUs[%*pbl]: counters will be used for FIE.",
278 cpumask_pr_args(cpus));
279 }
280
init_amu_fie_callback(struct notifier_block * nb,unsigned long val,void * data)281 static int init_amu_fie_callback(struct notifier_block *nb, unsigned long val,
282 void *data)
283 {
284 struct cpufreq_policy *policy = data;
285
286 if (val == CPUFREQ_CREATE_POLICY)
287 amu_fie_setup(policy->cpus);
288
289 /*
290 * We don't need to handle CPUFREQ_REMOVE_POLICY event as the AMU
291 * counters don't have any dependency on cpufreq driver once we have
292 * initialized AMU support and enabled invariance. The AMU counters will
293 * keep on working just fine in the absence of the cpufreq driver, and
294 * for the CPUs for which there are no counters available, the last set
295 * value of arch_freq_scale will remain valid as that is the frequency
296 * those CPUs are running at.
297 */
298
299 return 0;
300 }
301
302 static struct notifier_block init_amu_fie_notifier = {
303 .notifier_call = init_amu_fie_callback,
304 };
305
cpuhp_topology_online(unsigned int cpu)306 static int cpuhp_topology_online(unsigned int cpu)
307 {
308 struct cpufreq_policy *policy = cpufreq_cpu_policy(cpu);
309
310 /* Those are cheap checks */
311
312 /*
313 * Skip this CPU if:
314 * - it has no cpufreq policy assigned yet,
315 * - no policy exists that spans CPUs with AMU counters, or
316 * - it was already handled.
317 */
318 if (unlikely(!policy) || !cpumask_available(amu_fie_cpus) ||
319 cpumask_test_cpu(cpu, amu_fie_cpus))
320 return 0;
321
322 /*
323 * Only proceed if all already-online CPUs in this policy
324 * support AMU counters.
325 */
326 if (unlikely(!cpumask_subset(policy->cpus, amu_fie_cpus)))
327 return 0;
328
329 /*
330 * If the new online CPU cannot pass this check, all the CPUs related to
331 * the same policy should be clear from amu_fie_cpus mask, otherwise they
332 * may use different source of the freq scale.
333 */
334 if (!freq_counters_valid(cpu)) {
335 topology_clear_scale_freq_source(SCALE_FREQ_SOURCE_ARCH,
336 policy->related_cpus);
337 cpumask_andnot(amu_fie_cpus, amu_fie_cpus, policy->related_cpus);
338 return 0;
339 }
340
341 cpumask_set_cpu(cpu, amu_fie_cpus);
342
343 topology_set_scale_freq_source(&amu_sfd, cpumask_of(cpu));
344
345 pr_debug("CPU[%u]: counter will be used for FIE.", cpu);
346
347 return 0;
348 }
349
init_amu_fie(void)350 static int __init init_amu_fie(void)
351 {
352 int ret;
353
354 ret = cpufreq_register_notifier(&init_amu_fie_notifier,
355 CPUFREQ_POLICY_NOTIFIER);
356 if (ret)
357 return ret;
358
359 ret = cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN,
360 "arm64/topology:online",
361 cpuhp_topology_online,
362 NULL);
363 if (ret < 0) {
364 cpufreq_unregister_notifier(&init_amu_fie_notifier,
365 CPUFREQ_POLICY_NOTIFIER);
366 return ret;
367 }
368
369 return 0;
370 }
371 core_initcall(init_amu_fie);
372
373 #ifdef CONFIG_ACPI_CPPC_LIB
374 #include <acpi/cppc_acpi.h>
375
cpu_read_corecnt(void * val)376 static void cpu_read_corecnt(void *val)
377 {
378 /*
379 * A value of 0 can be returned if the current CPU does not support AMUs
380 * or if the counter is disabled for this CPU. A return value of 0 at
381 * counter read is properly handled as an error case by the users of the
382 * counter.
383 */
384 *(u64 *)val = read_corecnt();
385 }
386
cpu_read_constcnt(void * val)387 static void cpu_read_constcnt(void *val)
388 {
389 /*
390 * Return 0 if the current CPU is affected by erratum 2457168. A value
391 * of 0 is also returned if the current CPU does not support AMUs or if
392 * the counter is disabled. A return value of 0 at counter read is
393 * properly handled as an error case by the users of the counter.
394 */
395 *(u64 *)val = this_cpu_has_cap(ARM64_WORKAROUND_2457168) ?
396 0UL : read_constcnt();
397 }
398
399 static inline
counters_read_on_cpu(int cpu,smp_call_func_t func,u64 * val)400 int counters_read_on_cpu(int cpu, smp_call_func_t func, u64 *val)
401 {
402 /*
403 * Abort call on counterless CPU.
404 */
405 if (!cpu_has_amu_feat(cpu))
406 return -EOPNOTSUPP;
407
408 if (irqs_disabled()) {
409 /*
410 * When IRQs are disabled (tick path: sched_tick ->
411 * topology_scale_freq_tick or cppc_scale_freq_tick), only local
412 * CPU counter reads are allowed. Remote CPU counter read would
413 * require smp_call_function_single() which is unsafe with IRQs
414 * disabled.
415 */
416 if (WARN_ON_ONCE(cpu != smp_processor_id()))
417 return -EPERM;
418 func(val);
419 } else {
420 smp_call_function_single(cpu, func, val, 1);
421 }
422
423 return 0;
424 }
425
426 /*
427 * Refer to drivers/acpi/cppc_acpi.c for the description of the functions
428 * below.
429 */
cpc_ffh_supported(void)430 bool cpc_ffh_supported(void)
431 {
432 int cpu = get_cpu_with_amu_feat();
433
434 /*
435 * FFH is considered supported if there is at least one present CPU that
436 * supports AMUs. Using FFH to read core and reference counters for CPUs
437 * that do not support AMUs, have counters disabled or that are affected
438 * by errata, will result in a return value of 0.
439 *
440 * This is done to allow any enabled and valid counters to be read
441 * through FFH, knowing that potentially returning 0 as counter value is
442 * properly handled by the users of these counters.
443 */
444 if ((cpu >= nr_cpu_ids) || !cpumask_test_cpu(cpu, cpu_present_mask))
445 return false;
446
447 return true;
448 }
449
cpc_read_ffh(int cpu,struct cpc_reg * reg,u64 * val)450 int cpc_read_ffh(int cpu, struct cpc_reg *reg, u64 *val)
451 {
452 int ret = -EOPNOTSUPP;
453
454 switch ((u64)reg->address) {
455 case 0x0:
456 ret = counters_read_on_cpu(cpu, cpu_read_corecnt, val);
457 break;
458 case 0x1:
459 ret = counters_read_on_cpu(cpu, cpu_read_constcnt, val);
460 break;
461 }
462
463 if (!ret) {
464 *val &= GENMASK_ULL(reg->bit_offset + reg->bit_width - 1,
465 reg->bit_offset);
466 *val >>= reg->bit_offset;
467 }
468
469 return ret;
470 }
471
cpc_write_ffh(int cpunum,struct cpc_reg * reg,u64 val)472 int cpc_write_ffh(int cpunum, struct cpc_reg *reg, u64 val)
473 {
474 return -EOPNOTSUPP;
475 }
476 #endif /* CONFIG_ACPI_CPPC_LIB */
477