1 // SPDX-License-Identifier: GPL-2.0
3 * Arch specific cpu topology information
5 * Copyright (C) 2016, ARM Ltd.
6 * Written by: Juri Lelli, ARM Ltd.
9 #include <linux/acpi.h>
10 #include <linux/cpu.h>
11 #include <linux/cpufreq.h>
12 #include <linux/device.h>
14 #include <linux/slab.h>
15 #include <linux/string.h>
16 #include <linux/sched/topology.h>
17 #include <linux/cpuset.h>
18 #include <linux/cpumask.h>
19 #include <linux/init.h>
20 #include <linux/percpu.h>
21 #include <linux/rcupdate.h>
22 #include <linux/sched.h>
23 #include <linux/smp.h>
25 static DEFINE_PER_CPU(struct scale_freq_data __rcu *, sft_data);
26 static struct cpumask scale_freq_counters_mask;
27 static bool scale_freq_invariant;
29 static bool supports_scale_freq_counters(const struct cpumask *cpus)
31 return cpumask_subset(cpus, &scale_freq_counters_mask);
34 bool topology_scale_freq_invariant(void)
36 return cpufreq_supports_freq_invariance() ||
37 supports_scale_freq_counters(cpu_online_mask);
40 static void update_scale_freq_invariant(bool status)
42 if (scale_freq_invariant == status)
46 * Task scheduler behavior depends on frequency invariance support,
47 * either cpufreq or counter driven. If the support status changes as
48 * a result of counter initialisation and use, retrigger the build of
49 * scheduling domains to ensure the information is propagated properly.
51 if (topology_scale_freq_invariant() == status) {
52 scale_freq_invariant = status;
53 rebuild_sched_domains_energy();
57 void topology_set_scale_freq_source(struct scale_freq_data *data,
58 const struct cpumask *cpus)
60 struct scale_freq_data *sfd;
64 * Avoid calling rebuild_sched_domains() unnecessarily if FIE is
65 * supported by cpufreq.
67 if (cpumask_empty(&scale_freq_counters_mask))
68 scale_freq_invariant = topology_scale_freq_invariant();
72 for_each_cpu(cpu, cpus) {
73 sfd = rcu_dereference(*per_cpu_ptr(&sft_data, cpu));
75 /* Use ARCH provided counters whenever possible */
76 if (!sfd || sfd->source != SCALE_FREQ_SOURCE_ARCH) {
77 rcu_assign_pointer(per_cpu(sft_data, cpu), data);
78 cpumask_set_cpu(cpu, &scale_freq_counters_mask);
84 update_scale_freq_invariant(true);
86 EXPORT_SYMBOL_GPL(topology_set_scale_freq_source);
88 void topology_clear_scale_freq_source(enum scale_freq_source source,
89 const struct cpumask *cpus)
91 struct scale_freq_data *sfd;
96 for_each_cpu(cpu, cpus) {
97 sfd = rcu_dereference(*per_cpu_ptr(&sft_data, cpu));
99 if (sfd && sfd->source == source) {
100 rcu_assign_pointer(per_cpu(sft_data, cpu), NULL);
101 cpumask_clear_cpu(cpu, &scale_freq_counters_mask);
108 * Make sure all references to previous sft_data are dropped to avoid
109 * use-after-free races.
113 update_scale_freq_invariant(false);
115 EXPORT_SYMBOL_GPL(topology_clear_scale_freq_source);
117 void topology_scale_freq_tick(void)
119 struct scale_freq_data *sfd = rcu_dereference_sched(*this_cpu_ptr(&sft_data));
122 sfd->set_freq_scale();
125 DEFINE_PER_CPU(unsigned long, arch_freq_scale) = SCHED_CAPACITY_SCALE;
126 EXPORT_PER_CPU_SYMBOL_GPL(arch_freq_scale);
128 void topology_set_freq_scale(const struct cpumask *cpus, unsigned long cur_freq,
129 unsigned long max_freq)
134 if (WARN_ON_ONCE(!cur_freq || !max_freq))
138 * If the use of counters for FIE is enabled, just return as we don't
139 * want to update the scale factor with information from CPUFREQ.
140 * Instead the scale factor will be updated from arch_scale_freq_tick.
142 if (supports_scale_freq_counters(cpus))
145 scale = (cur_freq << SCHED_CAPACITY_SHIFT) / max_freq;
147 for_each_cpu(i, cpus)
148 per_cpu(arch_freq_scale, i) = scale;
151 DEFINE_PER_CPU(unsigned long, cpu_scale) = SCHED_CAPACITY_SCALE;
153 void topology_set_cpu_scale(unsigned int cpu, unsigned long capacity)
155 per_cpu(cpu_scale, cpu) = capacity;
158 DEFINE_PER_CPU(unsigned long, thermal_pressure);
160 void topology_set_thermal_pressure(const struct cpumask *cpus,
161 unsigned long th_pressure)
165 for_each_cpu(cpu, cpus)
166 WRITE_ONCE(per_cpu(thermal_pressure, cpu), th_pressure);
169 static ssize_t cpu_capacity_show(struct device *dev,
170 struct device_attribute *attr,
173 struct cpu *cpu = container_of(dev, struct cpu, dev);
175 return sysfs_emit(buf, "%lu\n", topology_get_cpu_scale(cpu->dev.id));
178 static void update_topology_flags_workfn(struct work_struct *work);
179 static DECLARE_WORK(update_topology_flags_work, update_topology_flags_workfn);
181 static DEVICE_ATTR_RO(cpu_capacity);
183 static int register_cpu_capacity_sysctl(void)
188 for_each_possible_cpu(i) {
189 cpu = get_cpu_device(i);
191 pr_err("%s: too early to get CPU%d device!\n",
195 device_create_file(cpu, &dev_attr_cpu_capacity);
200 subsys_initcall(register_cpu_capacity_sysctl);
202 static int update_topology;
204 int topology_update_cpu_topology(void)
206 return update_topology;
210 * Updating the sched_domains can't be done directly from cpufreq callbacks
211 * due to locking, so queue the work for later.
213 static void update_topology_flags_workfn(struct work_struct *work)
216 rebuild_sched_domains();
217 pr_debug("sched_domain hierarchy rebuilt, flags updated\n");
221 static DEFINE_PER_CPU(u32, freq_factor) = 1;
222 static u32 *raw_capacity;
224 static int free_raw_capacity(void)
232 void topology_normalize_cpu_scale(void)
242 for_each_possible_cpu(cpu) {
243 capacity = raw_capacity[cpu] * per_cpu(freq_factor, cpu);
244 capacity_scale = max(capacity, capacity_scale);
247 pr_debug("cpu_capacity: capacity_scale=%llu\n", capacity_scale);
248 for_each_possible_cpu(cpu) {
249 capacity = raw_capacity[cpu] * per_cpu(freq_factor, cpu);
250 capacity = div64_u64(capacity << SCHED_CAPACITY_SHIFT,
252 topology_set_cpu_scale(cpu, capacity);
253 pr_debug("cpu_capacity: CPU%d cpu_capacity=%lu\n",
254 cpu, topology_get_cpu_scale(cpu));
258 bool __init topology_parse_cpu_capacity(struct device_node *cpu_node, int cpu)
261 static bool cap_parsing_failed;
265 if (cap_parsing_failed)
268 ret = of_property_read_u32(cpu_node, "capacity-dmips-mhz",
272 raw_capacity = kcalloc(num_possible_cpus(),
273 sizeof(*raw_capacity),
276 cap_parsing_failed = true;
280 raw_capacity[cpu] = cpu_capacity;
281 pr_debug("cpu_capacity: %pOF cpu_capacity=%u (raw)\n",
282 cpu_node, raw_capacity[cpu]);
285 * Update freq_factor for calculating early boot cpu capacities.
286 * For non-clk CPU DVFS mechanism, there's no way to get the
287 * frequency value now, assuming they are running at the same
288 * frequency (by keeping the initial freq_factor value).
290 cpu_clk = of_clk_get(cpu_node, 0);
291 if (!PTR_ERR_OR_ZERO(cpu_clk)) {
292 per_cpu(freq_factor, cpu) =
293 clk_get_rate(cpu_clk) / 1000;
298 pr_err("cpu_capacity: missing %pOF raw capacity\n",
300 pr_err("cpu_capacity: partial information: fallback to 1024 for all CPUs\n");
302 cap_parsing_failed = true;
309 #ifdef CONFIG_CPU_FREQ
310 static cpumask_var_t cpus_to_visit;
311 static void parsing_done_workfn(struct work_struct *work);
312 static DECLARE_WORK(parsing_done_work, parsing_done_workfn);
315 init_cpu_capacity_callback(struct notifier_block *nb,
319 struct cpufreq_policy *policy = data;
325 if (val != CPUFREQ_CREATE_POLICY)
328 pr_debug("cpu_capacity: init cpu capacity for CPUs [%*pbl] (to_visit=%*pbl)\n",
329 cpumask_pr_args(policy->related_cpus),
330 cpumask_pr_args(cpus_to_visit));
332 cpumask_andnot(cpus_to_visit, cpus_to_visit, policy->related_cpus);
334 for_each_cpu(cpu, policy->related_cpus)
335 per_cpu(freq_factor, cpu) = policy->cpuinfo.max_freq / 1000;
337 if (cpumask_empty(cpus_to_visit)) {
338 topology_normalize_cpu_scale();
339 schedule_work(&update_topology_flags_work);
341 pr_debug("cpu_capacity: parsing done\n");
342 schedule_work(&parsing_done_work);
348 static struct notifier_block init_cpu_capacity_notifier = {
349 .notifier_call = init_cpu_capacity_callback,
352 static int __init register_cpufreq_notifier(void)
357 * on ACPI-based systems we need to use the default cpu capacity
358 * until we have the necessary code to parse the cpu capacity, so
359 * skip registering cpufreq notifier.
361 if (!acpi_disabled || !raw_capacity)
364 if (!alloc_cpumask_var(&cpus_to_visit, GFP_KERNEL))
367 cpumask_copy(cpus_to_visit, cpu_possible_mask);
369 ret = cpufreq_register_notifier(&init_cpu_capacity_notifier,
370 CPUFREQ_POLICY_NOTIFIER);
373 free_cpumask_var(cpus_to_visit);
377 core_initcall(register_cpufreq_notifier);
379 static void parsing_done_workfn(struct work_struct *work)
381 cpufreq_unregister_notifier(&init_cpu_capacity_notifier,
382 CPUFREQ_POLICY_NOTIFIER);
383 free_cpumask_var(cpus_to_visit);
387 core_initcall(free_raw_capacity);
390 #if defined(CONFIG_ARM64) || defined(CONFIG_RISCV)
392 * This function returns the logic cpu number of the node.
393 * There are basically three kinds of return values:
394 * (1) logic cpu number which is > 0.
395 * (2) -ENODEV when the device tree(DT) node is valid and found in the DT but
396 * there is no possible logical CPU in the kernel to match. This happens
397 * when CONFIG_NR_CPUS is configure to be smaller than the number of
398 * CPU nodes in DT. We need to just ignore this case.
399 * (3) -1 if the node does not exist in the device tree
401 static int __init get_cpu_for_node(struct device_node *node)
403 struct device_node *cpu_node;
406 cpu_node = of_parse_phandle(node, "cpu", 0);
410 cpu = of_cpu_node_to_id(cpu_node);
412 topology_parse_cpu_capacity(cpu_node, cpu);
414 pr_info("CPU node for %pOF exist but the possible cpu range is :%*pbl\n",
415 cpu_node, cpumask_pr_args(cpu_possible_mask));
417 of_node_put(cpu_node);
421 static int __init parse_core(struct device_node *core, int package_id,
428 struct device_node *t;
431 snprintf(name, sizeof(name), "thread%d", i);
432 t = of_get_child_by_name(core, name);
435 cpu = get_cpu_for_node(t);
437 cpu_topology[cpu].package_id = package_id;
438 cpu_topology[cpu].core_id = core_id;
439 cpu_topology[cpu].thread_id = i;
440 } else if (cpu != -ENODEV) {
441 pr_err("%pOF: Can't get CPU for thread\n", t);
450 cpu = get_cpu_for_node(core);
453 pr_err("%pOF: Core has both threads and CPU\n",
458 cpu_topology[cpu].package_id = package_id;
459 cpu_topology[cpu].core_id = core_id;
460 } else if (leaf && cpu != -ENODEV) {
461 pr_err("%pOF: Can't get CPU for leaf core\n", core);
468 static int __init parse_cluster(struct device_node *cluster, int depth)
472 bool has_cores = false;
473 struct device_node *c;
474 static int package_id __initdata;
479 * First check for child clusters; we currently ignore any
480 * information about the nesting of clusters and present the
481 * scheduler with a flat list of them.
485 snprintf(name, sizeof(name), "cluster%d", i);
486 c = of_get_child_by_name(cluster, name);
489 ret = parse_cluster(c, depth + 1);
497 /* Now check for cores */
500 snprintf(name, sizeof(name), "core%d", i);
501 c = of_get_child_by_name(cluster, name);
506 pr_err("%pOF: cpu-map children should be clusters\n",
513 ret = parse_core(c, package_id, core_id++);
515 pr_err("%pOF: Non-leaf cluster with core %s\n",
527 if (leaf && !has_cores)
528 pr_warn("%pOF: empty cluster\n", cluster);
536 static int __init parse_dt_topology(void)
538 struct device_node *cn, *map;
542 cn = of_find_node_by_path("/cpus");
544 pr_err("No CPU information found in DT\n");
549 * When topology is provided cpu-map is essentially a root
550 * cluster with restricted subnodes.
552 map = of_get_child_by_name(cn, "cpu-map");
556 ret = parse_cluster(map, 0);
560 topology_normalize_cpu_scale();
563 * Check that all cores are in the topology; the SMP code will
564 * only mark cores described in the DT as possible.
566 for_each_possible_cpu(cpu)
567 if (cpu_topology[cpu].package_id == -1)
581 struct cpu_topology cpu_topology[NR_CPUS];
582 EXPORT_SYMBOL_GPL(cpu_topology);
584 const struct cpumask *cpu_coregroup_mask(int cpu)
586 const cpumask_t *core_mask = cpumask_of_node(cpu_to_node(cpu));
588 /* Find the smaller of NUMA, core or LLC siblings */
589 if (cpumask_subset(&cpu_topology[cpu].core_sibling, core_mask)) {
590 /* not numa in package, lets use the package siblings */
591 core_mask = &cpu_topology[cpu].core_sibling;
593 if (cpu_topology[cpu].llc_id != -1) {
594 if (cpumask_subset(&cpu_topology[cpu].llc_sibling, core_mask))
595 core_mask = &cpu_topology[cpu].llc_sibling;
601 void update_siblings_masks(unsigned int cpuid)
603 struct cpu_topology *cpu_topo, *cpuid_topo = &cpu_topology[cpuid];
606 /* update core and thread sibling masks */
607 for_each_online_cpu(cpu) {
608 cpu_topo = &cpu_topology[cpu];
610 if (cpuid_topo->llc_id == cpu_topo->llc_id) {
611 cpumask_set_cpu(cpu, &cpuid_topo->llc_sibling);
612 cpumask_set_cpu(cpuid, &cpu_topo->llc_sibling);
615 if (cpuid_topo->package_id != cpu_topo->package_id)
618 cpumask_set_cpu(cpuid, &cpu_topo->core_sibling);
619 cpumask_set_cpu(cpu, &cpuid_topo->core_sibling);
621 if (cpuid_topo->core_id != cpu_topo->core_id)
624 cpumask_set_cpu(cpuid, &cpu_topo->thread_sibling);
625 cpumask_set_cpu(cpu, &cpuid_topo->thread_sibling);
629 static void clear_cpu_topology(int cpu)
631 struct cpu_topology *cpu_topo = &cpu_topology[cpu];
633 cpumask_clear(&cpu_topo->llc_sibling);
634 cpumask_set_cpu(cpu, &cpu_topo->llc_sibling);
636 cpumask_clear(&cpu_topo->core_sibling);
637 cpumask_set_cpu(cpu, &cpu_topo->core_sibling);
638 cpumask_clear(&cpu_topo->thread_sibling);
639 cpumask_set_cpu(cpu, &cpu_topo->thread_sibling);
642 void __init reset_cpu_topology(void)
646 for_each_possible_cpu(cpu) {
647 struct cpu_topology *cpu_topo = &cpu_topology[cpu];
649 cpu_topo->thread_id = -1;
650 cpu_topo->core_id = -1;
651 cpu_topo->package_id = -1;
652 cpu_topo->llc_id = -1;
654 clear_cpu_topology(cpu);
658 void remove_cpu_topology(unsigned int cpu)
662 for_each_cpu(sibling, topology_core_cpumask(cpu))
663 cpumask_clear_cpu(cpu, topology_core_cpumask(sibling));
664 for_each_cpu(sibling, topology_sibling_cpumask(cpu))
665 cpumask_clear_cpu(cpu, topology_sibling_cpumask(sibling));
666 for_each_cpu(sibling, topology_llc_cpumask(cpu))
667 cpumask_clear_cpu(cpu, topology_llc_cpumask(sibling));
669 clear_cpu_topology(cpu);
672 __weak int __init parse_acpi_topology(void)
677 #if defined(CONFIG_ARM64) || defined(CONFIG_RISCV)
678 void __init init_cpu_topology(void)
680 reset_cpu_topology();
683 * Discard anything that was parsed if we hit an error so we
684 * don't use partial information.
686 if (parse_acpi_topology())
687 reset_cpu_topology();
688 else if (of_have_populated_dt() && parse_dt_topology())
689 reset_cpu_topology();