blob: b594416562ac54aaf1ab9905b0c76cc7d3dc5480 [file] [log] [blame]
Vincent Guittotc9018aa2011-08-08 13:21:59 +01001/*
2 * arch/arm/kernel/topology.c
3 *
4 * Copyright (C) 2011 Linaro Limited.
5 * Written by: Vincent Guittot
6 *
7 * based on 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/cpu.h>
15#include <linux/cpumask.h>
Arnd Bergmann92bdd3f2013-05-31 22:49:22 +010016#include <linux/export.h>
Vincent Guittotc9018aa2011-08-08 13:21:59 +010017#include <linux/init.h>
18#include <linux/percpu.h>
19#include <linux/node.h>
20#include <linux/nodemask.h>
Vincent Guittot339ca092012-07-10 14:13:12 +010021#include <linux/of.h>
Vincent Guittotc9018aa2011-08-08 13:21:59 +010022#include <linux/sched.h>
Vincent Guittot339ca092012-07-10 14:13:12 +010023#include <linux/slab.h>
Vincent Guittotc9018aa2011-08-08 13:21:59 +010024
25#include <asm/cputype.h>
26#include <asm/topology.h>
27
Vincent Guittot130d9aa2012-07-10 14:08:40 +010028/*
Nicolas Pitreca8ce3d2014-05-26 18:19:39 -040029 * cpu capacity scale management
Vincent Guittot130d9aa2012-07-10 14:08:40 +010030 */
31
32/*
Nicolas Pitreca8ce3d2014-05-26 18:19:39 -040033 * cpu capacity table
Vincent Guittot130d9aa2012-07-10 14:08:40 +010034 * This per cpu data structure describes the relative capacity of each core.
35 * On a heteregenous system, cores don't have the same computation capacity
Nicolas Pitreca8ce3d2014-05-26 18:19:39 -040036 * and we reflect that difference in the cpu_capacity field so the scheduler
37 * can take this difference into account during load balance. A per cpu
38 * structure is preferred because each CPU updates its own cpu_capacity field
39 * during the load balance except for idle cores. One idle core is selected
40 * to run the rebalance_domains for all idle cores and the cpu_capacity can be
41 * updated during this sequence.
Vincent Guittot130d9aa2012-07-10 14:08:40 +010042 */
Juri Lellid78e13a2016-01-07 16:27:33 +010043static DEFINE_PER_CPU(unsigned long, cpu_scale) = SCHED_CAPACITY_SCALE;
Vincent Guittot130d9aa2012-07-10 14:08:40 +010044
Morten Rasmussen25cea242015-04-14 16:25:31 +010045unsigned long scale_cpu_capacity(struct sched_domain *sd, int cpu)
Vincent Guittot130d9aa2012-07-10 14:08:40 +010046{
Jon Medhurstaa9ea842016-06-02 12:18:08 +000047#ifdef CONFIG_CPU_FREQ
Dietmar Eggemann568913e2015-09-23 17:59:55 +010048 unsigned long max_freq_scale = cpufreq_scale_max_freq_capacity(cpu);
49
50 return per_cpu(cpu_scale, cpu) * max_freq_scale >> SCHED_CAPACITY_SHIFT;
51#else
Vincent Guittot130d9aa2012-07-10 14:08:40 +010052 return per_cpu(cpu_scale, cpu);
Dietmar Eggemann568913e2015-09-23 17:59:55 +010053#endif
Vincent Guittot130d9aa2012-07-10 14:08:40 +010054}
55
Nicolas Pitreca8ce3d2014-05-26 18:19:39 -040056static void set_capacity_scale(unsigned int cpu, unsigned long capacity)
Vincent Guittot130d9aa2012-07-10 14:08:40 +010057{
Nicolas Pitreca8ce3d2014-05-26 18:19:39 -040058 per_cpu(cpu_scale, cpu) = capacity;
Vincent Guittot130d9aa2012-07-10 14:08:40 +010059}
60
Jeevan Shriram490837a2017-03-01 17:52:49 -080061static int __init get_cpu_for_node(struct device_node *node)
62{
63 struct device_node *cpu_node;
64 int cpu;
65
66 cpu_node = of_parse_phandle(node, "cpu", 0);
67 if (!cpu_node)
68 return -EINVAL;
69
70 for_each_possible_cpu(cpu) {
71 if (of_get_cpu_node(cpu, NULL) == cpu_node) {
72 of_node_put(cpu_node);
73 return cpu;
74 }
75 }
76
77 pr_crit("Unable to find CPU node for %s\n", cpu_node->full_name);
78
79 of_node_put(cpu_node);
80 return -EINVAL;
81}
82
83static int __init parse_core(struct device_node *core, int cluster_id,
84 int core_id)
85{
86 char name[10];
87 bool leaf = true;
88 int i = 0;
89 int cpu;
90 struct device_node *t;
91
92 do {
93 snprintf(name, sizeof(name), "thread%d", i);
94 t = of_get_child_by_name(core, name);
95 if (t) {
96 leaf = false;
97 cpu = get_cpu_for_node(t);
98 if (cpu >= 0) {
99 cpu_topology[cpu].socket_id = cluster_id;
100 cpu_topology[cpu].core_id = core_id;
101 cpu_topology[cpu].thread_id = i;
102 } else {
103 pr_err("%s: Can't get CPU for thread\n",
104 t->full_name);
105 of_node_put(t);
106 return -EINVAL;
107 }
108 of_node_put(t);
109 }
110 i++;
111 } while (t);
112
113 cpu = get_cpu_for_node(core);
114 if (cpu >= 0) {
115 if (!leaf) {
116 pr_err("%s: Core has both threads and CPU\n",
117 core->full_name);
118 return -EINVAL;
119 }
120
121 cpu_topology[cpu].socket_id = cluster_id;
122 cpu_topology[cpu].core_id = core_id;
123 } else if (leaf) {
124 pr_err("%s: Can't get CPU for leaf core\n", core->full_name);
125 return -EINVAL;
126 }
127
128 return 0;
129}
130
131static int __init parse_cluster(struct device_node *cluster, int depth)
132{
133 static int cluster_id __initdata;
134 char name[10];
135 bool leaf = true;
136 bool has_cores = false;
137 struct device_node *c;
138 int core_id = 0;
139 int i, ret;
140
141 /*
142 * First check for child clusters; we currently ignore any
143 * information about the nesting of clusters and present the
144 * scheduler with a flat list of them.
145 */
146 i = 0;
147 do {
148 snprintf(name, sizeof(name), "cluster%d", i);
149 c = of_get_child_by_name(cluster, name);
150 if (c) {
151 leaf = false;
152 ret = parse_cluster(c, depth + 1);
153 of_node_put(c);
154 if (ret != 0)
155 return ret;
156 }
157 i++;
158 } while (c);
159
160 /* Now check for cores */
161 i = 0;
162 do {
163 snprintf(name, sizeof(name), "core%d", i);
164 c = of_get_child_by_name(cluster, name);
165 if (c) {
166 has_cores = true;
167
168 if (depth == 0) {
169 pr_err("%s: cpu-map children should be clusters\n",
170 c->full_name);
171 of_node_put(c);
172 return -EINVAL;
173 }
174
175 if (leaf) {
176 ret = parse_core(c, cluster_id, core_id++);
177 } else {
178 pr_err("%s: Non-leaf cluster with core %s\n",
179 cluster->full_name, name);
180 ret = -EINVAL;
181 }
182
183 of_node_put(c);
184 if (ret != 0)
185 return ret;
186 }
187 i++;
188 } while (c);
189
190 if (leaf && !has_cores)
191 pr_warn("%s: empty cluster\n", cluster->full_name);
192
193 if (leaf)
194 cluster_id++;
195
196 return 0;
197}
198
Srivatsa Vaddagirifd5704a2014-03-31 19:42:27 -0700199static DEFINE_PER_CPU(unsigned long, cpu_efficiency) = SCHED_CAPACITY_SCALE;
200
201unsigned long arch_get_cpu_efficiency(int cpu)
202{
203 return per_cpu(cpu_efficiency, cpu);
204}
205
Vincent Guittot339ca092012-07-10 14:13:12 +0100206#ifdef CONFIG_OF
207struct cpu_efficiency {
208 const char *compatible;
209 unsigned long efficiency;
210};
211
212/*
213 * Table of relative efficiency of each processors
214 * The efficiency value must fit in 20bit and the final
215 * cpu_scale value must be in the range
Nicolas Pitreca8ce3d2014-05-26 18:19:39 -0400216 * 0 < cpu_scale < 3*SCHED_CAPACITY_SCALE/2
Vincent Guittot339ca092012-07-10 14:13:12 +0100217 * in order to return at most 1 when DIV_ROUND_CLOSEST
218 * is used to compute the capacity of a CPU.
219 * Processors that are not defined in the table,
Nicolas Pitreca8ce3d2014-05-26 18:19:39 -0400220 * use the default SCHED_CAPACITY_SCALE value for cpu_scale.
Vincent Guittot339ca092012-07-10 14:13:12 +0100221 */
Mark Brown145bc292013-12-10 12:10:17 +0100222static const struct cpu_efficiency table_efficiency[] = {
Vincent Guittot339ca092012-07-10 14:13:12 +0100223 {"arm,cortex-a15", 3891},
224 {"arm,cortex-a7", 2048},
225 {NULL, },
226};
227
Mark Brown145bc292013-12-10 12:10:17 +0100228static unsigned long *__cpu_capacity;
Sudeep KarkadaNagesha816a8de2013-06-17 14:20:00 +0100229#define cpu_capacity(cpu) __cpu_capacity[cpu]
Vincent Guittot339ca092012-07-10 14:13:12 +0100230
Mark Brown145bc292013-12-10 12:10:17 +0100231static unsigned long middle_capacity = 1;
Vincent Guittot339ca092012-07-10 14:13:12 +0100232
233/*
234 * Iterate all CPUs' descriptor in DT and compute the efficiency
235 * (as per table_efficiency). Also calculate a middle efficiency
236 * as close as possible to (max{eff_i} - min{eff_i}) / 2
Nicolas Pitreca8ce3d2014-05-26 18:19:39 -0400237 * This is later used to scale the cpu_capacity field such that an
238 * 'average' CPU is of middle capacity. Also see the comments near
239 * table_efficiency[] and update_cpu_capacity().
Vincent Guittot339ca092012-07-10 14:13:12 +0100240 */
Jeevan Shriram490837a2017-03-01 17:52:49 -0800241static int __init parse_dt_topology(void)
Vincent Guittot339ca092012-07-10 14:13:12 +0100242{
Mark Brown145bc292013-12-10 12:10:17 +0100243 const struct cpu_efficiency *cpu_eff;
Jeevan Shriram490837a2017-03-01 17:52:49 -0800244 struct device_node *cn = NULL, *map;
Mark Brown44ae9032014-03-20 15:16:54 +0100245 unsigned long min_capacity = ULONG_MAX;
Vincent Guittot339ca092012-07-10 14:13:12 +0100246 unsigned long max_capacity = 0;
247 unsigned long capacity = 0;
Jeevan Shriram490837a2017-03-01 17:52:49 -0800248 int cpu = 0, ret = 0;
249
Srinivas Ramana3ddfb502016-06-28 12:02:28 +0530250 __cpu_capacity = kcalloc(nr_cpu_ids, sizeof(*__cpu_capacity),
251 GFP_NOWAIT);
252
Jeevan Shriram490837a2017-03-01 17:52:49 -0800253 cn = of_find_node_by_path("/cpus");
254 if (!cn) {
255 pr_err("No CPU information found in DT\n");
256 return 0;
257 }
258
259 /*
260 * When topology is provided cpu-map is essentially a root
261 * cluster with restricted subnodes.
262 */
263 map = of_get_child_by_name(cn, "cpu-map");
264 if (!map)
265 goto out;
266
267 ret = parse_cluster(map, 0);
268 if (ret != 0)
269 goto out_map;
270
271 /*
272 * Check that all cores are in the topology; the SMP code will
273 * only mark cores described in the DT as possible.
274 */
275 for_each_possible_cpu(cpu)
276 if (cpu_topology[cpu].socket_id == -1)
277 ret = -EINVAL;
Vincent Guittot339ca092012-07-10 14:13:12 +0100278
Sudeep KarkadaNagesha816a8de2013-06-17 14:20:00 +0100279 for_each_possible_cpu(cpu) {
280 const u32 *rate;
Vincent Guittot339ca092012-07-10 14:13:12 +0100281 int len;
282
Sudeep KarkadaNagesha816a8de2013-06-17 14:20:00 +0100283 /* too early to use cpu->of_node */
284 cn = of_get_cpu_node(cpu, NULL);
285 if (!cn) {
286 pr_err("missing device node for CPU %d\n", cpu);
287 continue;
288 }
Vincent Guittot339ca092012-07-10 14:13:12 +0100289
290 for (cpu_eff = table_efficiency; cpu_eff->compatible; cpu_eff++)
291 if (of_device_is_compatible(cn, cpu_eff->compatible))
292 break;
293
294 if (cpu_eff->compatible == NULL)
295 continue;
296
Srivatsa Vaddagirifd5704a2014-03-31 19:42:27 -0700297 per_cpu(cpu_efficiency, cpu) = cpu_eff->efficiency;
298
Vincent Guittot339ca092012-07-10 14:13:12 +0100299 rate = of_get_property(cn, "clock-frequency", &len);
300 if (!rate || len != 4) {
301 pr_err("%s missing clock-frequency property\n",
302 cn->full_name);
303 continue;
304 }
305
Vincent Guittot339ca092012-07-10 14:13:12 +0100306 capacity = ((be32_to_cpup(rate)) >> 20) * cpu_eff->efficiency;
307
308 /* Save min capacity of the system */
309 if (capacity < min_capacity)
310 min_capacity = capacity;
311
312 /* Save max capacity of the system */
313 if (capacity > max_capacity)
314 max_capacity = capacity;
315
Sudeep KarkadaNagesha816a8de2013-06-17 14:20:00 +0100316 cpu_capacity(cpu) = capacity;
Vincent Guittot339ca092012-07-10 14:13:12 +0100317 }
318
Vincent Guittot339ca092012-07-10 14:13:12 +0100319 /* If min and max capacities are equals, we bypass the update of the
320 * cpu_scale because all CPUs have the same capacity. Otherwise, we
321 * compute a middle_capacity factor that will ensure that the capacity
322 * of an 'average' CPU of the system will be as close as possible to
Nicolas Pitreca8ce3d2014-05-26 18:19:39 -0400323 * SCHED_CAPACITY_SCALE, which is the default value, but with the
Vincent Guittot339ca092012-07-10 14:13:12 +0100324 * constraint explained near table_efficiency[].
325 */
Sudeep KarkadaNagesha816a8de2013-06-17 14:20:00 +0100326 if (4*max_capacity < (3*(max_capacity + min_capacity)))
Vincent Guittot339ca092012-07-10 14:13:12 +0100327 middle_capacity = (min_capacity + max_capacity)
Nicolas Pitreca8ce3d2014-05-26 18:19:39 -0400328 >> (SCHED_CAPACITY_SHIFT+1);
Vincent Guittot339ca092012-07-10 14:13:12 +0100329 else
330 middle_capacity = ((max_capacity / 3)
Nicolas Pitreca8ce3d2014-05-26 18:19:39 -0400331 >> (SCHED_CAPACITY_SHIFT-1)) + 1;
Jeevan Shriram490837a2017-03-01 17:52:49 -0800332out_map:
333 of_node_put(map);
334out:
335 of_node_put(cn);
336 return ret;
Vincent Guittot339ca092012-07-10 14:13:12 +0100337}
338
Dietmar Eggemannb4ca4bc2015-07-10 13:57:19 +0100339static const struct sched_group_energy * const cpu_core_energy(int cpu);
340
Vincent Guittot339ca092012-07-10 14:13:12 +0100341/*
342 * Look for a customed capacity of a CPU in the cpu_capacity table during the
343 * boot. The update of all CPUs is in O(n^2) for heteregeneous system but the
344 * function returns directly for SMP system.
345 */
Nicolas Pitreca8ce3d2014-05-26 18:19:39 -0400346static void update_cpu_capacity(unsigned int cpu)
Vincent Guittot339ca092012-07-10 14:13:12 +0100347{
Dietmar Eggemannb4ca4bc2015-07-10 13:57:19 +0100348 unsigned long capacity = SCHED_CAPACITY_SCALE;
Vincent Guittot339ca092012-07-10 14:13:12 +0100349
Dietmar Eggemannb4ca4bc2015-07-10 13:57:19 +0100350 if (cpu_core_energy(cpu)) {
351 int max_cap_idx = cpu_core_energy(cpu)->nr_cap_states - 1;
352 capacity = cpu_core_energy(cpu)->cap_states[max_cap_idx].cap;
353 }
354
355 set_capacity_scale(cpu, capacity);
Vincent Guittot339ca092012-07-10 14:13:12 +0100356
Russell King4ed89f22014-10-28 11:26:42 +0000357 pr_info("CPU%u: update cpu_capacity %lu\n",
Vincent Guittotd3bfca12014-08-26 13:06:48 +0200358 cpu, arch_scale_cpu_capacity(NULL, cpu));
Vincent Guittot339ca092012-07-10 14:13:12 +0100359}
360
361#else
Jeevan Shriram490837a2017-03-01 17:52:49 -0800362static inline int parse_dt_topology(void) {}
Nicolas Pitreca8ce3d2014-05-26 18:19:39 -0400363static inline void update_cpu_capacity(unsigned int cpuid) {}
Vincent Guittot339ca092012-07-10 14:13:12 +0100364#endif
365
Lorenzo Pieralisidca463da2012-11-15 17:30:32 +0000366 /*
Vincent Guittot130d9aa2012-07-10 14:08:40 +0100367 * cpu topology table
368 */
Vincent Guittotc9018aa2011-08-08 13:21:59 +0100369struct cputopo_arm cpu_topology[NR_CPUS];
Arnd Bergmann92bdd3f2013-05-31 22:49:22 +0100370EXPORT_SYMBOL_GPL(cpu_topology);
Vincent Guittotc9018aa2011-08-08 13:21:59 +0100371
Vincent Guittot4cbd6b12011-11-29 15:50:20 +0100372const struct cpumask *cpu_coregroup_mask(int cpu)
Vincent Guittotc9018aa2011-08-08 13:21:59 +0100373{
374 return &cpu_topology[cpu].core_sibling;
375}
376
Vincent Guittotfb2aa852014-04-11 11:44:41 +0200377/*
378 * The current assumption is that we can power gate each core independently.
379 * This will be superseded by DT binding once available.
380 */
381const struct cpumask *cpu_corepower_mask(int cpu)
382{
383 return &cpu_topology[cpu].thread_sibling;
384}
385
Mark Brown145bc292013-12-10 12:10:17 +0100386static void update_siblings_masks(unsigned int cpuid)
Vincent Guittotcb75dac2012-07-10 14:11:11 +0100387{
388 struct cputopo_arm *cpu_topo, *cpuid_topo = &cpu_topology[cpuid];
389 int cpu;
390
391 /* update core and thread sibling masks */
392 for_each_possible_cpu(cpu) {
393 cpu_topo = &cpu_topology[cpu];
394
395 if (cpuid_topo->socket_id != cpu_topo->socket_id)
396 continue;
397
398 cpumask_set_cpu(cpuid, &cpu_topo->core_sibling);
399 if (cpu != cpuid)
400 cpumask_set_cpu(cpu, &cpuid_topo->core_sibling);
401
402 if (cpuid_topo->core_id != cpu_topo->core_id)
403 continue;
404
405 cpumask_set_cpu(cpuid, &cpu_topo->thread_sibling);
406 if (cpu != cpuid)
407 cpumask_set_cpu(cpu, &cpuid_topo->thread_sibling);
408 }
Srinivas Ramana3ddfb502016-06-28 12:02:28 +0530409
410 smp_wmb(); /* Ensure mask is updated*/
Vincent Guittotcb75dac2012-07-10 14:11:11 +0100411}
412
Vincent Guittotc9018aa2011-08-08 13:21:59 +0100413/*
414 * store_cpu_topology is called at boot when only one cpu is running
415 * and with the mutex cpu_hotplug.lock locked, when several cpus have booted,
416 * which prevents simultaneous write access to cpu_topology array
417 */
418void store_cpu_topology(unsigned int cpuid)
419{
420 struct cputopo_arm *cpuid_topo = &cpu_topology[cpuid];
421 unsigned int mpidr;
Vincent Guittotc9018aa2011-08-08 13:21:59 +0100422
Vincent Guittotc9018aa2011-08-08 13:21:59 +0100423 if (cpuid_topo->core_id != -1)
Jeevan Shriram490837a2017-03-01 17:52:49 -0800424 goto topology_populated;
Vincent Guittotc9018aa2011-08-08 13:21:59 +0100425
426 mpidr = read_cpuid_mpidr();
427
428 /* create cpu topology mapping */
429 if ((mpidr & MPIDR_SMP_BITMASK) == MPIDR_SMP_VALUE) {
430 /*
431 * This is a multiprocessor system
432 * multiprocessor format & multiprocessor mode field are set
433 */
434
435 if (mpidr & MPIDR_MT_BITMASK) {
436 /* core performance interdependency */
Lorenzo Pieralisi71db5bf2012-11-16 15:24:06 +0000437 cpuid_topo->thread_id = MPIDR_AFFINITY_LEVEL(mpidr, 0);
438 cpuid_topo->core_id = MPIDR_AFFINITY_LEVEL(mpidr, 1);
439 cpuid_topo->socket_id = MPIDR_AFFINITY_LEVEL(mpidr, 2);
Vincent Guittotc9018aa2011-08-08 13:21:59 +0100440 } else {
441 /* largely independent cores */
442 cpuid_topo->thread_id = -1;
Lorenzo Pieralisi71db5bf2012-11-16 15:24:06 +0000443 cpuid_topo->core_id = MPIDR_AFFINITY_LEVEL(mpidr, 0);
444 cpuid_topo->socket_id = MPIDR_AFFINITY_LEVEL(mpidr, 1);
Vincent Guittotc9018aa2011-08-08 13:21:59 +0100445 }
446 } else {
447 /*
448 * This is an uniprocessor system
449 * we are in multiprocessor format but uniprocessor system
450 * or in the old uniprocessor format
451 */
452 cpuid_topo->thread_id = -1;
453 cpuid_topo->core_id = 0;
454 cpuid_topo->socket_id = -1;
455 }
456
Jeevan Shriram490837a2017-03-01 17:52:49 -0800457 pr_info("CPU%u: thread %d, cpu %d, cluster %d, mpidr %x\n",
Vincent Guittotc9018aa2011-08-08 13:21:59 +0100458 cpuid, cpu_topology[cpuid].thread_id,
459 cpu_topology[cpuid].core_id,
460 cpu_topology[cpuid].socket_id, mpidr);
Jeevan Shriram490837a2017-03-01 17:52:49 -0800461
462topology_populated:
463 update_siblings_masks(cpuid);
464 update_cpu_capacity(cpuid);
Vincent Guittotc9018aa2011-08-08 13:21:59 +0100465}
466
Dietmar Eggemann61100bd2014-11-14 17:16:41 +0000467/*
468 * ARM TC2 specific energy cost model data. There are no unit requirements for
469 * the data. Data can be normalized to any reference point, but the
470 * normalization must be consistent. That is, one bogo-joule/watt must be the
471 * same quantity for all data, but we don't care what it is.
472 */
473static struct idle_state idle_states_cluster_a7[] = {
474 { .power = 25 }, /* arch_cpu_idle() (active idle) = WFI */
475 { .power = 25 }, /* WFI */
476 { .power = 10 }, /* cluster-sleep-l */
477 };
478
479static struct idle_state idle_states_cluster_a15[] = {
480 { .power = 70 }, /* arch_cpu_idle() (active idle) = WFI */
481 { .power = 70 }, /* WFI */
482 { .power = 25 }, /* cluster-sleep-b */
483 };
484
485static struct capacity_state cap_states_cluster_a7[] = {
486 /* Cluster only power */
487 { .cap = 150, .power = 2967, }, /* 350 MHz */
488 { .cap = 172, .power = 2792, }, /* 400 MHz */
489 { .cap = 215, .power = 2810, }, /* 500 MHz */
490 { .cap = 258, .power = 2815, }, /* 600 MHz */
491 { .cap = 301, .power = 2919, }, /* 700 MHz */
492 { .cap = 344, .power = 2847, }, /* 800 MHz */
493 { .cap = 387, .power = 3917, }, /* 900 MHz */
494 { .cap = 430, .power = 4905, }, /* 1000 MHz */
495 };
496
497static struct capacity_state cap_states_cluster_a15[] = {
498 /* Cluster only power */
499 { .cap = 426, .power = 7920, }, /* 500 MHz */
500 { .cap = 512, .power = 8165, }, /* 600 MHz */
501 { .cap = 597, .power = 8172, }, /* 700 MHz */
502 { .cap = 682, .power = 8195, }, /* 800 MHz */
503 { .cap = 768, .power = 8265, }, /* 900 MHz */
504 { .cap = 853, .power = 8446, }, /* 1000 MHz */
505 { .cap = 938, .power = 11426, }, /* 1100 MHz */
506 { .cap = 1024, .power = 15200, }, /* 1200 MHz */
507 };
508
509static struct sched_group_energy energy_cluster_a7 = {
510 .nr_idle_states = ARRAY_SIZE(idle_states_cluster_a7),
511 .idle_states = idle_states_cluster_a7,
512 .nr_cap_states = ARRAY_SIZE(cap_states_cluster_a7),
513 .cap_states = cap_states_cluster_a7,
514};
515
516static struct sched_group_energy energy_cluster_a15 = {
517 .nr_idle_states = ARRAY_SIZE(idle_states_cluster_a15),
518 .idle_states = idle_states_cluster_a15,
519 .nr_cap_states = ARRAY_SIZE(cap_states_cluster_a15),
520 .cap_states = cap_states_cluster_a15,
521};
522
523static struct idle_state idle_states_core_a7[] = {
524 { .power = 0 }, /* arch_cpu_idle (active idle) = WFI */
525 { .power = 0 }, /* WFI */
526 { .power = 0 }, /* cluster-sleep-l */
527 };
528
529static struct idle_state idle_states_core_a15[] = {
530 { .power = 0 }, /* arch_cpu_idle (active idle) = WFI */
531 { .power = 0 }, /* WFI */
532 { .power = 0 }, /* cluster-sleep-b */
533 };
534
535static struct capacity_state cap_states_core_a7[] = {
536 /* Power per cpu */
537 { .cap = 150, .power = 187, }, /* 350 MHz */
538 { .cap = 172, .power = 275, }, /* 400 MHz */
539 { .cap = 215, .power = 334, }, /* 500 MHz */
540 { .cap = 258, .power = 407, }, /* 600 MHz */
541 { .cap = 301, .power = 447, }, /* 700 MHz */
542 { .cap = 344, .power = 549, }, /* 800 MHz */
543 { .cap = 387, .power = 761, }, /* 900 MHz */
544 { .cap = 430, .power = 1024, }, /* 1000 MHz */
545 };
546
547static struct capacity_state cap_states_core_a15[] = {
548 /* Power per cpu */
549 { .cap = 426, .power = 2021, }, /* 500 MHz */
550 { .cap = 512, .power = 2312, }, /* 600 MHz */
551 { .cap = 597, .power = 2756, }, /* 700 MHz */
552 { .cap = 682, .power = 3125, }, /* 800 MHz */
553 { .cap = 768, .power = 3524, }, /* 900 MHz */
554 { .cap = 853, .power = 3846, }, /* 1000 MHz */
555 { .cap = 938, .power = 5177, }, /* 1100 MHz */
556 { .cap = 1024, .power = 6997, }, /* 1200 MHz */
557 };
558
559static struct sched_group_energy energy_core_a7 = {
560 .nr_idle_states = ARRAY_SIZE(idle_states_core_a7),
561 .idle_states = idle_states_core_a7,
562 .nr_cap_states = ARRAY_SIZE(cap_states_core_a7),
563 .cap_states = cap_states_core_a7,
564};
565
566static struct sched_group_energy energy_core_a15 = {
567 .nr_idle_states = ARRAY_SIZE(idle_states_core_a15),
568 .idle_states = idle_states_core_a15,
569 .nr_cap_states = ARRAY_SIZE(cap_states_core_a15),
570 .cap_states = cap_states_core_a15,
571};
572
573/* sd energy functions */
574static inline
575const struct sched_group_energy * const cpu_cluster_energy(int cpu)
576{
577 return cpu_topology[cpu].socket_id ? &energy_cluster_a7 :
578 &energy_cluster_a15;
579}
580
581static inline
582const struct sched_group_energy * const cpu_core_energy(int cpu)
583{
584 return cpu_topology[cpu].socket_id ? &energy_core_a7 :
585 &energy_core_a15;
586}
587
Guenter Roeckb6220ad2014-06-24 18:05:29 -0700588static inline int cpu_corepower_flags(void)
Vincent Guittotfb2aa852014-04-11 11:44:41 +0200589{
Morten Rasmussen858d7182015-01-13 13:50:46 +0000590 return SD_SHARE_PKG_RESOURCES | SD_SHARE_POWERDOMAIN | \
591 SD_SHARE_CAP_STATES;
Vincent Guittotfb2aa852014-04-11 11:44:41 +0200592}
593
594static struct sched_domain_topology_level arm_topology[] = {
595#ifdef CONFIG_SCHED_MC
Dietmar Eggemann61100bd2014-11-14 17:16:41 +0000596 { cpu_coregroup_mask, cpu_corepower_flags, cpu_core_energy, SD_INIT_NAME(MC) },
Vincent Guittotfb2aa852014-04-11 11:44:41 +0200597#endif
Dietmar Eggemann61100bd2014-11-14 17:16:41 +0000598 { cpu_cpu_mask, NULL, cpu_cluster_energy, SD_INIT_NAME(DIE) },
Vincent Guittotfb2aa852014-04-11 11:44:41 +0200599 { NULL, },
600};
601
Srinivas Ramana3ddfb502016-06-28 12:02:28 +0530602static void __init reset_cpu_topology(void)
603{
604 unsigned int cpu;
605
606 for_each_possible_cpu(cpu) {
607 struct cputopo_arm *cpu_topo = &cpu_topology[cpu];
608
609 cpu_topo->thread_id = -1;
610 cpu_topo->core_id = -1;
611 cpu_topo->socket_id = -1;
612
613 cpumask_clear(&cpu_topo->core_sibling);
614 cpumask_clear(&cpu_topo->thread_sibling);
615 }
616 smp_wmb();
617}
618
619static void __init reset_cpu_capacity(void)
620{
621 unsigned int cpu;
622
623 for_each_possible_cpu(cpu)
624 set_capacity_scale(cpu, SCHED_CAPACITY_SCALE);
625}
626
Vincent Guittotc9018aa2011-08-08 13:21:59 +0100627/*
628 * init_cpu_topology is called at boot when only one cpu is running
629 * which prevent simultaneous write access to cpu_topology array
630 */
Venkatraman Sathiyamoorthyf7e416e2012-08-03 07:58:33 +0100631void __init init_cpu_topology(void)
Vincent Guittotc9018aa2011-08-08 13:21:59 +0100632{
633 unsigned int cpu;
634
Nicolas Pitreca8ce3d2014-05-26 18:19:39 -0400635 /* init core mask and capacity */
Srinivas Ramana3ddfb502016-06-28 12:02:28 +0530636 reset_cpu_topology();
637 reset_cpu_capacity();
638 smp_wmb(); /* Ensure CPU topology and capacity are up to date */
Vincent Guittot339ca092012-07-10 14:13:12 +0100639
Jeevan Shriram490837a2017-03-01 17:52:49 -0800640 if (parse_dt_topology()) {
Srinivas Ramana3ddfb502016-06-28 12:02:28 +0530641 reset_cpu_topology();
642 reset_cpu_capacity();
Jeevan Shriram490837a2017-03-01 17:52:49 -0800643 }
Vincent Guittotfb2aa852014-04-11 11:44:41 +0200644
Srivatsa Vaddagiri7cb075f2015-04-20 12:35:48 +0530645 for_each_possible_cpu(cpu)
646 update_siblings_masks(cpu);
647
Vincent Guittotfb2aa852014-04-11 11:44:41 +0200648 /* Set scheduler topology descriptor */
649 set_sched_topology(arm_topology);
Vincent Guittotc9018aa2011-08-08 13:21:59 +0100650}