1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright 2020 Linaro Limited
5 * Author: Daniel Lezcano <daniel.lezcano@linaro.org>
7 * The DTPM CPU is based on the energy model. It hooks the CPU in the
8 * DTPM tree which in turns update the power number by propagating the
9 * power number from the CPU energy model information to the parents.
11 * The association between the power and the performance state, allows
12 * to set the power of the CPU at the OPP granularity.
14 * The CPU hotplug is supported and the power numbers will be updated
15 * if a CPU is hot plugged / unplugged.
17 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
19 #include <linux/cpumask.h>
20 #include <linux/cpufreq.h>
21 #include <linux/cpuhotplug.h>
22 #include <linux/dtpm.h>
23 #include <linux/energy_model.h>
25 #include <linux/pm_qos.h>
26 #include <linux/slab.h>
27 #include <linux/units.h>
31 struct freq_qos_request qos_req;
35 static DEFINE_PER_CPU(struct dtpm_cpu *, dtpm_per_cpu);
37 static struct dtpm_cpu *to_dtpm_cpu(struct dtpm *dtpm)
39 return container_of(dtpm, struct dtpm_cpu, dtpm);
42 static u64 set_pd_power_limit(struct dtpm *dtpm, u64 power_limit)
44 struct dtpm_cpu *dtpm_cpu = to_dtpm_cpu(dtpm);
45 struct em_perf_domain *pd = em_cpu_get(dtpm_cpu->cpu);
51 cpumask_and(&cpus, cpu_online_mask, to_cpumask(pd->cpus));
52 nr_cpus = cpumask_weight(&cpus);
54 for (i = 0; i < pd->nr_perf_states; i++) {
56 power = pd->table[i].power * nr_cpus;
58 if (power > power_limit)
62 freq = pd->table[i - 1].frequency;
64 freq_qos_update_request(&dtpm_cpu->qos_req, freq);
66 power_limit = pd->table[i - 1].power * nr_cpus;
71 static u64 scale_pd_power_uw(struct cpumask *pd_mask, u64 power)
73 unsigned long max, sum_util = 0;
77 * The capacity is the same for all CPUs belonging to
78 * the same perf domain.
80 max = arch_scale_cpu_capacity(cpumask_first(pd_mask));
82 for_each_cpu_and(cpu, pd_mask, cpu_online_mask)
83 sum_util += sched_cpu_util(cpu);
85 return (power * ((sum_util << 10) / max)) >> 10;
88 static u64 get_pd_power_uw(struct dtpm *dtpm)
90 struct dtpm_cpu *dtpm_cpu = to_dtpm_cpu(dtpm);
91 struct em_perf_domain *pd;
92 struct cpumask *pd_mask;
96 pd = em_cpu_get(dtpm_cpu->cpu);
98 pd_mask = em_span_cpus(pd);
100 freq = cpufreq_quick_get(dtpm_cpu->cpu);
102 for (i = 0; i < pd->nr_perf_states; i++) {
104 if (pd->table[i].frequency < freq)
107 return scale_pd_power_uw(pd_mask, pd->table[i].power *
108 MICROWATT_PER_MILLIWATT);
114 static int update_pd_power_uw(struct dtpm *dtpm)
116 struct dtpm_cpu *dtpm_cpu = to_dtpm_cpu(dtpm);
117 struct em_perf_domain *em = em_cpu_get(dtpm_cpu->cpu);
121 cpumask_and(&cpus, cpu_online_mask, to_cpumask(em->cpus));
122 nr_cpus = cpumask_weight(&cpus);
124 dtpm->power_min = em->table[0].power;
125 dtpm->power_min *= MICROWATT_PER_MILLIWATT;
126 dtpm->power_min *= nr_cpus;
128 dtpm->power_max = em->table[em->nr_perf_states - 1].power;
129 dtpm->power_max *= MICROWATT_PER_MILLIWATT;
130 dtpm->power_max *= nr_cpus;
135 static void pd_release(struct dtpm *dtpm)
137 struct dtpm_cpu *dtpm_cpu = to_dtpm_cpu(dtpm);
138 struct cpufreq_policy *policy;
140 if (freq_qos_request_active(&dtpm_cpu->qos_req))
141 freq_qos_remove_request(&dtpm_cpu->qos_req);
143 policy = cpufreq_cpu_get(dtpm_cpu->cpu);
145 for_each_cpu(dtpm_cpu->cpu, policy->related_cpus)
146 per_cpu(dtpm_per_cpu, dtpm_cpu->cpu) = NULL;
152 static struct dtpm_ops dtpm_ops = {
153 .set_power_uw = set_pd_power_limit,
154 .get_power_uw = get_pd_power_uw,
155 .update_power_uw = update_pd_power_uw,
156 .release = pd_release,
159 static int cpuhp_dtpm_cpu_offline(unsigned int cpu)
161 struct dtpm_cpu *dtpm_cpu;
163 dtpm_cpu = per_cpu(dtpm_per_cpu, cpu);
165 dtpm_update_power(&dtpm_cpu->dtpm);
170 static int cpuhp_dtpm_cpu_online(unsigned int cpu)
172 struct dtpm_cpu *dtpm_cpu;
174 dtpm_cpu = per_cpu(dtpm_per_cpu, cpu);
176 return dtpm_update_power(&dtpm_cpu->dtpm);
181 static int __dtpm_cpu_setup(int cpu, struct dtpm *parent)
183 struct dtpm_cpu *dtpm_cpu;
184 struct cpufreq_policy *policy;
185 struct em_perf_domain *pd;
186 char name[CPUFREQ_NAME_LEN];
189 dtpm_cpu = per_cpu(dtpm_per_cpu, cpu);
193 policy = cpufreq_cpu_get(cpu);
197 pd = em_cpu_get(cpu);
198 if (!pd || em_is_artificial(pd))
201 dtpm_cpu = kzalloc(sizeof(*dtpm_cpu), GFP_KERNEL);
205 dtpm_init(&dtpm_cpu->dtpm, &dtpm_ops);
208 for_each_cpu(cpu, policy->related_cpus)
209 per_cpu(dtpm_per_cpu, cpu) = dtpm_cpu;
211 snprintf(name, sizeof(name), "cpu%d-cpufreq", dtpm_cpu->cpu);
213 ret = dtpm_register(name, &dtpm_cpu->dtpm, parent);
215 goto out_kfree_dtpm_cpu;
217 ret = freq_qos_add_request(&policy->constraints,
218 &dtpm_cpu->qos_req, FREQ_QOS_MAX,
219 pd->table[pd->nr_perf_states - 1].frequency);
221 goto out_dtpm_unregister;
226 dtpm_unregister(&dtpm_cpu->dtpm);
230 for_each_cpu(cpu, policy->related_cpus)
231 per_cpu(dtpm_per_cpu, cpu) = NULL;
237 static int dtpm_cpu_setup(struct dtpm *dtpm, struct device_node *np)
241 cpu = of_cpu_node_to_id(np);
245 return __dtpm_cpu_setup(cpu, dtpm);
248 static int dtpm_cpu_init(void)
253 * The callbacks at CPU hotplug time are calling
254 * dtpm_update_power() which in turns calls update_pd_power().
256 * The function update_pd_power() uses the online mask to
257 * figure out the power consumption limits.
259 * At CPUHP_AP_ONLINE_DYN, the CPU is present in the CPU
260 * online mask when the cpuhp_dtpm_cpu_online function is
261 * called, but the CPU is still in the online mask for the
262 * tear down callback. So the power can not be updated when
263 * the CPU is unplugged.
265 * At CPUHP_AP_DTPM_CPU_DEAD, the situation is the opposite as
266 * above. The CPU online mask is not up to date when the CPU
269 * For this reason, we need to call the online and offline
270 * callbacks at different moments when the CPU online mask is
271 * consistent with the power numbers we want to update.
273 ret = cpuhp_setup_state(CPUHP_AP_DTPM_CPU_DEAD, "dtpm_cpu:offline",
274 NULL, cpuhp_dtpm_cpu_offline);
278 ret = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "dtpm_cpu:online",
279 cpuhp_dtpm_cpu_online, NULL);
286 static void dtpm_cpu_exit(void)
288 cpuhp_remove_state_nocalls(CPUHP_AP_ONLINE_DYN);
289 cpuhp_remove_state_nocalls(CPUHP_AP_DTPM_CPU_DEAD);
292 struct dtpm_subsys_ops dtpm_cpu_ops = {
293 .name = KBUILD_MODNAME,
294 .init = dtpm_cpu_init,
295 .exit = dtpm_cpu_exit,
296 .setup = dtpm_cpu_setup,