reiserfs: fix extended attributes on the root directory
[linux/fpc-iii.git] / drivers / base / arch_topology.c
blob1eb81f113786f3875d590ca4941e5eef7e14bb51
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Arch specific cpu topology information
5 * Copyright (C) 2016, ARM Ltd.
6 * Written by: Juri Lelli, ARM Ltd.
7 */
9 #include <linux/acpi.h>
10 #include <linux/cpu.h>
11 #include <linux/cpufreq.h>
12 #include <linux/device.h>
13 #include <linux/of.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/sched.h>
22 #include <linux/smp.h>
24 DEFINE_PER_CPU(unsigned long, freq_scale) = SCHED_CAPACITY_SCALE;
26 void arch_set_freq_scale(struct cpumask *cpus, unsigned long cur_freq,
27 unsigned long max_freq)
29 unsigned long scale;
30 int i;
32 scale = (cur_freq << SCHED_CAPACITY_SHIFT) / max_freq;
34 for_each_cpu(i, cpus)
35 per_cpu(freq_scale, i) = scale;
38 DEFINE_PER_CPU(unsigned long, cpu_scale) = SCHED_CAPACITY_SCALE;
40 void topology_set_cpu_scale(unsigned int cpu, unsigned long capacity)
42 per_cpu(cpu_scale, cpu) = capacity;
45 static ssize_t cpu_capacity_show(struct device *dev,
46 struct device_attribute *attr,
47 char *buf)
49 struct cpu *cpu = container_of(dev, struct cpu, dev);
51 return sprintf(buf, "%lu\n", topology_get_cpu_scale(cpu->dev.id));
54 static void update_topology_flags_workfn(struct work_struct *work);
55 static DECLARE_WORK(update_topology_flags_work, update_topology_flags_workfn);
57 static DEVICE_ATTR_RO(cpu_capacity);
59 static int register_cpu_capacity_sysctl(void)
61 int i;
62 struct device *cpu;
64 for_each_possible_cpu(i) {
65 cpu = get_cpu_device(i);
66 if (!cpu) {
67 pr_err("%s: too early to get CPU%d device!\n",
68 __func__, i);
69 continue;
71 device_create_file(cpu, &dev_attr_cpu_capacity);
74 return 0;
76 subsys_initcall(register_cpu_capacity_sysctl);
78 static int update_topology;
80 int topology_update_cpu_topology(void)
82 return update_topology;
86 * Updating the sched_domains can't be done directly from cpufreq callbacks
87 * due to locking, so queue the work for later.
89 static void update_topology_flags_workfn(struct work_struct *work)
91 update_topology = 1;
92 rebuild_sched_domains();
93 pr_debug("sched_domain hierarchy rebuilt, flags updated\n");
94 update_topology = 0;
97 static u32 capacity_scale;
98 static u32 *raw_capacity;
100 static int free_raw_capacity(void)
102 kfree(raw_capacity);
103 raw_capacity = NULL;
105 return 0;
108 void topology_normalize_cpu_scale(void)
110 u64 capacity;
111 int cpu;
113 if (!raw_capacity)
114 return;
116 pr_debug("cpu_capacity: capacity_scale=%u\n", capacity_scale);
117 for_each_possible_cpu(cpu) {
118 pr_debug("cpu_capacity: cpu=%d raw_capacity=%u\n",
119 cpu, raw_capacity[cpu]);
120 capacity = (raw_capacity[cpu] << SCHED_CAPACITY_SHIFT)
121 / capacity_scale;
122 topology_set_cpu_scale(cpu, capacity);
123 pr_debug("cpu_capacity: CPU%d cpu_capacity=%lu\n",
124 cpu, topology_get_cpu_scale(cpu));
128 bool __init topology_parse_cpu_capacity(struct device_node *cpu_node, int cpu)
130 static bool cap_parsing_failed;
131 int ret;
132 u32 cpu_capacity;
134 if (cap_parsing_failed)
135 return false;
137 ret = of_property_read_u32(cpu_node, "capacity-dmips-mhz",
138 &cpu_capacity);
139 if (!ret) {
140 if (!raw_capacity) {
141 raw_capacity = kcalloc(num_possible_cpus(),
142 sizeof(*raw_capacity),
143 GFP_KERNEL);
144 if (!raw_capacity) {
145 cap_parsing_failed = true;
146 return false;
149 capacity_scale = max(cpu_capacity, capacity_scale);
150 raw_capacity[cpu] = cpu_capacity;
151 pr_debug("cpu_capacity: %pOF cpu_capacity=%u (raw)\n",
152 cpu_node, raw_capacity[cpu]);
153 } else {
154 if (raw_capacity) {
155 pr_err("cpu_capacity: missing %pOF raw capacity\n",
156 cpu_node);
157 pr_err("cpu_capacity: partial information: fallback to 1024 for all CPUs\n");
159 cap_parsing_failed = true;
160 free_raw_capacity();
163 return !ret;
166 #ifdef CONFIG_CPU_FREQ
167 static cpumask_var_t cpus_to_visit;
168 static void parsing_done_workfn(struct work_struct *work);
169 static DECLARE_WORK(parsing_done_work, parsing_done_workfn);
171 static int
172 init_cpu_capacity_callback(struct notifier_block *nb,
173 unsigned long val,
174 void *data)
176 struct cpufreq_policy *policy = data;
177 int cpu;
179 if (!raw_capacity)
180 return 0;
182 if (val != CPUFREQ_CREATE_POLICY)
183 return 0;
185 pr_debug("cpu_capacity: init cpu capacity for CPUs [%*pbl] (to_visit=%*pbl)\n",
186 cpumask_pr_args(policy->related_cpus),
187 cpumask_pr_args(cpus_to_visit));
189 cpumask_andnot(cpus_to_visit, cpus_to_visit, policy->related_cpus);
191 for_each_cpu(cpu, policy->related_cpus) {
192 raw_capacity[cpu] = topology_get_cpu_scale(cpu) *
193 policy->cpuinfo.max_freq / 1000UL;
194 capacity_scale = max(raw_capacity[cpu], capacity_scale);
197 if (cpumask_empty(cpus_to_visit)) {
198 topology_normalize_cpu_scale();
199 schedule_work(&update_topology_flags_work);
200 free_raw_capacity();
201 pr_debug("cpu_capacity: parsing done\n");
202 schedule_work(&parsing_done_work);
205 return 0;
208 static struct notifier_block init_cpu_capacity_notifier = {
209 .notifier_call = init_cpu_capacity_callback,
212 static int __init register_cpufreq_notifier(void)
214 int ret;
217 * on ACPI-based systems we need to use the default cpu capacity
218 * until we have the necessary code to parse the cpu capacity, so
219 * skip registering cpufreq notifier.
221 if (!acpi_disabled || !raw_capacity)
222 return -EINVAL;
224 if (!alloc_cpumask_var(&cpus_to_visit, GFP_KERNEL))
225 return -ENOMEM;
227 cpumask_copy(cpus_to_visit, cpu_possible_mask);
229 ret = cpufreq_register_notifier(&init_cpu_capacity_notifier,
230 CPUFREQ_POLICY_NOTIFIER);
232 if (ret)
233 free_cpumask_var(cpus_to_visit);
235 return ret;
237 core_initcall(register_cpufreq_notifier);
239 static void parsing_done_workfn(struct work_struct *work)
241 cpufreq_unregister_notifier(&init_cpu_capacity_notifier,
242 CPUFREQ_POLICY_NOTIFIER);
243 free_cpumask_var(cpus_to_visit);
246 #else
247 core_initcall(free_raw_capacity);
248 #endif
250 #if defined(CONFIG_ARM64) || defined(CONFIG_RISCV)
251 static int __init get_cpu_for_node(struct device_node *node)
253 struct device_node *cpu_node;
254 int cpu;
256 cpu_node = of_parse_phandle(node, "cpu", 0);
257 if (!cpu_node)
258 return -1;
260 cpu = of_cpu_node_to_id(cpu_node);
261 if (cpu >= 0)
262 topology_parse_cpu_capacity(cpu_node, cpu);
263 else
264 pr_crit("Unable to find CPU node for %pOF\n", cpu_node);
266 of_node_put(cpu_node);
267 return cpu;
270 static int __init parse_core(struct device_node *core, int package_id,
271 int core_id)
273 char name[10];
274 bool leaf = true;
275 int i = 0;
276 int cpu;
277 struct device_node *t;
279 do {
280 snprintf(name, sizeof(name), "thread%d", i);
281 t = of_get_child_by_name(core, name);
282 if (t) {
283 leaf = false;
284 cpu = get_cpu_for_node(t);
285 if (cpu >= 0) {
286 cpu_topology[cpu].package_id = package_id;
287 cpu_topology[cpu].core_id = core_id;
288 cpu_topology[cpu].thread_id = i;
289 } else {
290 pr_err("%pOF: Can't get CPU for thread\n",
292 of_node_put(t);
293 return -EINVAL;
295 of_node_put(t);
297 i++;
298 } while (t);
300 cpu = get_cpu_for_node(core);
301 if (cpu >= 0) {
302 if (!leaf) {
303 pr_err("%pOF: Core has both threads and CPU\n",
304 core);
305 return -EINVAL;
308 cpu_topology[cpu].package_id = package_id;
309 cpu_topology[cpu].core_id = core_id;
310 } else if (leaf) {
311 pr_err("%pOF: Can't get CPU for leaf core\n", core);
312 return -EINVAL;
315 return 0;
318 static int __init parse_cluster(struct device_node *cluster, int depth)
320 char name[10];
321 bool leaf = true;
322 bool has_cores = false;
323 struct device_node *c;
324 static int package_id __initdata;
325 int core_id = 0;
326 int i, ret;
329 * First check for child clusters; we currently ignore any
330 * information about the nesting of clusters and present the
331 * scheduler with a flat list of them.
333 i = 0;
334 do {
335 snprintf(name, sizeof(name), "cluster%d", i);
336 c = of_get_child_by_name(cluster, name);
337 if (c) {
338 leaf = false;
339 ret = parse_cluster(c, depth + 1);
340 of_node_put(c);
341 if (ret != 0)
342 return ret;
344 i++;
345 } while (c);
347 /* Now check for cores */
348 i = 0;
349 do {
350 snprintf(name, sizeof(name), "core%d", i);
351 c = of_get_child_by_name(cluster, name);
352 if (c) {
353 has_cores = true;
355 if (depth == 0) {
356 pr_err("%pOF: cpu-map children should be clusters\n",
358 of_node_put(c);
359 return -EINVAL;
362 if (leaf) {
363 ret = parse_core(c, package_id, core_id++);
364 } else {
365 pr_err("%pOF: Non-leaf cluster with core %s\n",
366 cluster, name);
367 ret = -EINVAL;
370 of_node_put(c);
371 if (ret != 0)
372 return ret;
374 i++;
375 } while (c);
377 if (leaf && !has_cores)
378 pr_warn("%pOF: empty cluster\n", cluster);
380 if (leaf)
381 package_id++;
383 return 0;
386 static int __init parse_dt_topology(void)
388 struct device_node *cn, *map;
389 int ret = 0;
390 int cpu;
392 cn = of_find_node_by_path("/cpus");
393 if (!cn) {
394 pr_err("No CPU information found in DT\n");
395 return 0;
399 * When topology is provided cpu-map is essentially a root
400 * cluster with restricted subnodes.
402 map = of_get_child_by_name(cn, "cpu-map");
403 if (!map)
404 goto out;
406 ret = parse_cluster(map, 0);
407 if (ret != 0)
408 goto out_map;
410 topology_normalize_cpu_scale();
413 * Check that all cores are in the topology; the SMP code will
414 * only mark cores described in the DT as possible.
416 for_each_possible_cpu(cpu)
417 if (cpu_topology[cpu].package_id == -1)
418 ret = -EINVAL;
420 out_map:
421 of_node_put(map);
422 out:
423 of_node_put(cn);
424 return ret;
426 #endif
429 * cpu topology table
431 struct cpu_topology cpu_topology[NR_CPUS];
432 EXPORT_SYMBOL_GPL(cpu_topology);
434 const struct cpumask *cpu_coregroup_mask(int cpu)
436 const cpumask_t *core_mask = cpumask_of_node(cpu_to_node(cpu));
438 /* Find the smaller of NUMA, core or LLC siblings */
439 if (cpumask_subset(&cpu_topology[cpu].core_sibling, core_mask)) {
440 /* not numa in package, lets use the package siblings */
441 core_mask = &cpu_topology[cpu].core_sibling;
443 if (cpu_topology[cpu].llc_id != -1) {
444 if (cpumask_subset(&cpu_topology[cpu].llc_sibling, core_mask))
445 core_mask = &cpu_topology[cpu].llc_sibling;
448 return core_mask;
451 void update_siblings_masks(unsigned int cpuid)
453 struct cpu_topology *cpu_topo, *cpuid_topo = &cpu_topology[cpuid];
454 int cpu;
456 /* update core and thread sibling masks */
457 for_each_online_cpu(cpu) {
458 cpu_topo = &cpu_topology[cpu];
460 if (cpuid_topo->llc_id == cpu_topo->llc_id) {
461 cpumask_set_cpu(cpu, &cpuid_topo->llc_sibling);
462 cpumask_set_cpu(cpuid, &cpu_topo->llc_sibling);
465 if (cpuid_topo->package_id != cpu_topo->package_id)
466 continue;
468 cpumask_set_cpu(cpuid, &cpu_topo->core_sibling);
469 cpumask_set_cpu(cpu, &cpuid_topo->core_sibling);
471 if (cpuid_topo->core_id != cpu_topo->core_id)
472 continue;
474 cpumask_set_cpu(cpuid, &cpu_topo->thread_sibling);
475 cpumask_set_cpu(cpu, &cpuid_topo->thread_sibling);
479 static void clear_cpu_topology(int cpu)
481 struct cpu_topology *cpu_topo = &cpu_topology[cpu];
483 cpumask_clear(&cpu_topo->llc_sibling);
484 cpumask_set_cpu(cpu, &cpu_topo->llc_sibling);
486 cpumask_clear(&cpu_topo->core_sibling);
487 cpumask_set_cpu(cpu, &cpu_topo->core_sibling);
488 cpumask_clear(&cpu_topo->thread_sibling);
489 cpumask_set_cpu(cpu, &cpu_topo->thread_sibling);
492 void __init reset_cpu_topology(void)
494 unsigned int cpu;
496 for_each_possible_cpu(cpu) {
497 struct cpu_topology *cpu_topo = &cpu_topology[cpu];
499 cpu_topo->thread_id = -1;
500 cpu_topo->core_id = -1;
501 cpu_topo->package_id = -1;
502 cpu_topo->llc_id = -1;
504 clear_cpu_topology(cpu);
508 void remove_cpu_topology(unsigned int cpu)
510 int sibling;
512 for_each_cpu(sibling, topology_core_cpumask(cpu))
513 cpumask_clear_cpu(cpu, topology_core_cpumask(sibling));
514 for_each_cpu(sibling, topology_sibling_cpumask(cpu))
515 cpumask_clear_cpu(cpu, topology_sibling_cpumask(sibling));
516 for_each_cpu(sibling, topology_llc_cpumask(cpu))
517 cpumask_clear_cpu(cpu, topology_llc_cpumask(sibling));
519 clear_cpu_topology(cpu);
522 __weak int __init parse_acpi_topology(void)
524 return 0;
527 #if defined(CONFIG_ARM64) || defined(CONFIG_RISCV)
528 void __init init_cpu_topology(void)
530 reset_cpu_topology();
533 * Discard anything that was parsed if we hit an error so we
534 * don't use partial information.
536 if (parse_acpi_topology())
537 reset_cpu_topology();
538 else if (of_have_populated_dt() && parse_dt_topology())
539 reset_cpu_topology();
541 #endif