1 // SPDX-License-Identifier: GPL-2.0-only
3 * CPPC (Collaborative Processor Performance Control) driver for
4 * interfacing with the CPUfreq layer and governors. See
5 * cppc_acpi.c for CPPC specific methods.
7 * (C) Copyright 2014, 2015 Linaro Ltd.
11 #define pr_fmt(fmt) "CPPC Cpufreq:" fmt
13 #include <linux/kernel.h>
14 #include <linux/module.h>
15 #include <linux/delay.h>
16 #include <linux/cpu.h>
17 #include <linux/cpufreq.h>
18 #include <linux/dmi.h>
19 #include <linux/time.h>
20 #include <linux/vmalloc.h>
22 #include <asm/unaligned.h>
24 #include <acpi/cppc_acpi.h>
26 /* Minimum struct length needed for the DMI processor entry we want */
27 #define DMI_ENTRY_PROCESSOR_MIN_LENGTH 48
29 /* Offest in the DMI processor structure for the max frequency */
30 #define DMI_PROCESSOR_MAX_SPEED 0x14
33 * These structs contain information parsed from per CPU
34 * ACPI _CPC structures.
35 * e.g. For each CPU the highest, lowest supported
36 * performance capabilities, desired performance level
39 static struct cppc_cpudata **all_cpu_data;
40 static bool boost_supported;
42 struct cppc_workaround_oem_info {
43 char oem_id[ACPI_OEM_ID_SIZE + 1];
44 char oem_table_id[ACPI_OEM_TABLE_ID_SIZE + 1];
48 static bool apply_hisi_workaround;
50 static struct cppc_workaround_oem_info wa_info[] = {
53 .oem_table_id = "HIP07 ",
57 .oem_table_id = "HIP08 ",
62 static unsigned int cppc_cpufreq_perf_to_khz(struct cppc_cpudata *cpu,
66 * HISI platform does not support delivered performance counter and
67 * reference performance counter. It can calculate the performance using the
68 * platform specific mechanism. We reuse the desired performance register to
69 * store the real performance calculated by the platform.
71 static unsigned int hisi_cppc_cpufreq_get_rate(unsigned int cpunum)
73 struct cppc_cpudata *cpudata = all_cpu_data[cpunum];
77 ret = cppc_get_desired_perf(cpunum, &desired_perf);
81 return cppc_cpufreq_perf_to_khz(cpudata, desired_perf);
84 static void cppc_check_hisi_workaround(void)
86 struct acpi_table_header *tbl;
87 acpi_status status = AE_OK;
90 status = acpi_get_table(ACPI_SIG_PCCT, 0, &tbl);
91 if (ACPI_FAILURE(status) || !tbl)
94 for (i = 0; i < ARRAY_SIZE(wa_info); i++) {
95 if (!memcmp(wa_info[i].oem_id, tbl->oem_id, ACPI_OEM_ID_SIZE) &&
96 !memcmp(wa_info[i].oem_table_id, tbl->oem_table_id, ACPI_OEM_TABLE_ID_SIZE) &&
97 wa_info[i].oem_revision == tbl->oem_revision) {
98 apply_hisi_workaround = true;
106 /* Callback function used to retrieve the max frequency from DMI */
107 static void cppc_find_dmi_mhz(const struct dmi_header *dm, void *private)
109 const u8 *dmi_data = (const u8 *)dm;
110 u16 *mhz = (u16 *)private;
112 if (dm->type == DMI_ENTRY_PROCESSOR &&
113 dm->length >= DMI_ENTRY_PROCESSOR_MIN_LENGTH) {
114 u16 val = (u16)get_unaligned((const u16 *)
115 (dmi_data + DMI_PROCESSOR_MAX_SPEED));
116 *mhz = val > *mhz ? val : *mhz;
120 /* Look up the max frequency in DMI */
121 static u64 cppc_get_dmi_max_khz(void)
125 dmi_walk(cppc_find_dmi_mhz, &mhz);
128 * Real stupid fallback value, just in case there is no
137 * If CPPC lowest_freq and nominal_freq registers are exposed then we can
138 * use them to convert perf to freq and vice versa
140 * If the perf/freq point lies between Nominal and Lowest, we can treat
141 * (Low perf, Low freq) and (Nom Perf, Nom freq) as 2D co-ordinates of a line
142 * and extrapolate the rest
143 * For perf/freq > Nominal, we use the ratio perf:freq at Nominal for conversion
145 static unsigned int cppc_cpufreq_perf_to_khz(struct cppc_cpudata *cpu,
149 struct cppc_perf_caps *caps = &cpu->perf_caps;
152 if (caps->lowest_freq && caps->nominal_freq) {
153 if (perf >= caps->nominal_perf) {
154 mul = caps->nominal_freq;
155 div = caps->nominal_perf;
157 mul = caps->nominal_freq - caps->lowest_freq;
158 div = caps->nominal_perf - caps->lowest_perf;
162 max_khz = cppc_get_dmi_max_khz();
164 div = cpu->perf_caps.highest_perf;
166 return (u64)perf * mul / div;
169 static unsigned int cppc_cpufreq_khz_to_perf(struct cppc_cpudata *cpu,
173 struct cppc_perf_caps *caps = &cpu->perf_caps;
176 if (caps->lowest_freq && caps->nominal_freq) {
177 if (freq >= caps->nominal_freq) {
178 mul = caps->nominal_perf;
179 div = caps->nominal_freq;
181 mul = caps->lowest_perf;
182 div = caps->lowest_freq;
186 max_khz = cppc_get_dmi_max_khz();
187 mul = cpu->perf_caps.highest_perf;
191 return (u64)freq * mul / div;
194 static int cppc_cpufreq_set_target(struct cpufreq_policy *policy,
195 unsigned int target_freq,
196 unsigned int relation)
198 struct cppc_cpudata *cpu;
199 struct cpufreq_freqs freqs;
203 cpu = all_cpu_data[policy->cpu];
205 desired_perf = cppc_cpufreq_khz_to_perf(cpu, target_freq);
206 /* Return if it is exactly the same perf */
207 if (desired_perf == cpu->perf_ctrls.desired_perf)
210 cpu->perf_ctrls.desired_perf = desired_perf;
211 freqs.old = policy->cur;
212 freqs.new = target_freq;
214 cpufreq_freq_transition_begin(policy, &freqs);
215 ret = cppc_set_perf(cpu->cpu, &cpu->perf_ctrls);
216 cpufreq_freq_transition_end(policy, &freqs, ret != 0);
219 pr_debug("Failed to set target on CPU:%d. ret:%d\n",
225 static int cppc_verify_policy(struct cpufreq_policy_data *policy)
227 cpufreq_verify_within_cpu_limits(policy);
231 static void cppc_cpufreq_stop_cpu(struct cpufreq_policy *policy)
233 int cpu_num = policy->cpu;
234 struct cppc_cpudata *cpu = all_cpu_data[cpu_num];
237 cpu->perf_ctrls.desired_perf = cpu->perf_caps.lowest_perf;
239 ret = cppc_set_perf(cpu_num, &cpu->perf_ctrls);
241 pr_debug("Err setting perf value:%d on CPU:%d. ret:%d\n",
242 cpu->perf_caps.lowest_perf, cpu_num, ret);
246 * The PCC subspace describes the rate at which platform can accept commands
247 * on the shared PCC channel (including READs which do not count towards freq
248 * trasition requests), so ideally we need to use the PCC values as a fallback
249 * if we don't have a platform specific transition_delay_us
252 #include <asm/cputype.h>
254 static unsigned int cppc_cpufreq_get_transition_delay_us(int cpu)
256 unsigned long implementor = read_cpuid_implementor();
257 unsigned long part_num = read_cpuid_part_number();
258 unsigned int delay_us = 0;
260 switch (implementor) {
261 case ARM_CPU_IMP_QCOM:
263 case QCOM_CPU_PART_FALKOR_V1:
264 case QCOM_CPU_PART_FALKOR:
268 delay_us = cppc_get_transition_latency(cpu) / NSEC_PER_USEC;
273 delay_us = cppc_get_transition_latency(cpu) / NSEC_PER_USEC;
282 static unsigned int cppc_cpufreq_get_transition_delay_us(int cpu)
284 return cppc_get_transition_latency(cpu) / NSEC_PER_USEC;
288 static int cppc_cpufreq_cpu_init(struct cpufreq_policy *policy)
290 struct cppc_cpudata *cpu;
291 unsigned int cpu_num = policy->cpu;
294 cpu = all_cpu_data[policy->cpu];
297 ret = cppc_get_perf_caps(policy->cpu, &cpu->perf_caps);
300 pr_debug("Err reading CPU%d perf capabilities. ret:%d\n",
305 /* Convert the lowest and nominal freq from MHz to KHz */
306 cpu->perf_caps.lowest_freq *= 1000;
307 cpu->perf_caps.nominal_freq *= 1000;
310 * Set min to lowest nonlinear perf to avoid any efficiency penalty (see
311 * Section 8.4.7.1.1.5 of ACPI 6.1 spec)
313 policy->min = cppc_cpufreq_perf_to_khz(cpu, cpu->perf_caps.lowest_nonlinear_perf);
314 policy->max = cppc_cpufreq_perf_to_khz(cpu, cpu->perf_caps.nominal_perf);
317 * Set cpuinfo.min_freq to Lowest to make the full range of performance
318 * available if userspace wants to use any perf between lowest & lowest
321 policy->cpuinfo.min_freq = cppc_cpufreq_perf_to_khz(cpu, cpu->perf_caps.lowest_perf);
322 policy->cpuinfo.max_freq = cppc_cpufreq_perf_to_khz(cpu, cpu->perf_caps.nominal_perf);
324 policy->transition_delay_us = cppc_cpufreq_get_transition_delay_us(cpu_num);
325 policy->shared_type = cpu->shared_type;
327 if (policy->shared_type == CPUFREQ_SHARED_TYPE_ANY) {
330 cpumask_copy(policy->cpus, cpu->shared_cpu_map);
332 for_each_cpu(i, policy->cpus) {
333 if (unlikely(i == policy->cpu))
336 memcpy(&all_cpu_data[i]->perf_caps, &cpu->perf_caps,
337 sizeof(cpu->perf_caps));
339 } else if (policy->shared_type == CPUFREQ_SHARED_TYPE_ALL) {
340 /* Support only SW_ANY for now. */
341 pr_debug("Unsupported CPU co-ord type\n");
345 cpu->cur_policy = policy;
348 * If 'highest_perf' is greater than 'nominal_perf', we assume CPU Boost
351 if (cpu->perf_caps.highest_perf > cpu->perf_caps.nominal_perf)
352 boost_supported = true;
354 /* Set policy->cur to max now. The governors will adjust later. */
355 policy->cur = cppc_cpufreq_perf_to_khz(cpu,
356 cpu->perf_caps.highest_perf);
357 cpu->perf_ctrls.desired_perf = cpu->perf_caps.highest_perf;
359 ret = cppc_set_perf(cpu_num, &cpu->perf_ctrls);
361 pr_debug("Err setting perf value:%d on CPU:%d. ret:%d\n",
362 cpu->perf_caps.highest_perf, cpu_num, ret);
367 static inline u64 get_delta(u64 t1, u64 t0)
369 if (t1 > t0 || t0 > ~(u32)0)
372 return (u32)t1 - (u32)t0;
375 static int cppc_get_rate_from_fbctrs(struct cppc_cpudata *cpu,
376 struct cppc_perf_fb_ctrs fb_ctrs_t0,
377 struct cppc_perf_fb_ctrs fb_ctrs_t1)
379 u64 delta_reference, delta_delivered;
380 u64 reference_perf, delivered_perf;
382 reference_perf = fb_ctrs_t0.reference_perf;
384 delta_reference = get_delta(fb_ctrs_t1.reference,
385 fb_ctrs_t0.reference);
386 delta_delivered = get_delta(fb_ctrs_t1.delivered,
387 fb_ctrs_t0.delivered);
389 /* Check to avoid divide-by zero */
390 if (delta_reference || delta_delivered)
391 delivered_perf = (reference_perf * delta_delivered) /
394 delivered_perf = cpu->perf_ctrls.desired_perf;
396 return cppc_cpufreq_perf_to_khz(cpu, delivered_perf);
399 static unsigned int cppc_cpufreq_get_rate(unsigned int cpunum)
401 struct cppc_perf_fb_ctrs fb_ctrs_t0 = {0}, fb_ctrs_t1 = {0};
402 struct cppc_cpudata *cpu = all_cpu_data[cpunum];
405 if (apply_hisi_workaround)
406 return hisi_cppc_cpufreq_get_rate(cpunum);
408 ret = cppc_get_perf_ctrs(cpunum, &fb_ctrs_t0);
412 udelay(2); /* 2usec delay between sampling */
414 ret = cppc_get_perf_ctrs(cpunum, &fb_ctrs_t1);
418 return cppc_get_rate_from_fbctrs(cpu, fb_ctrs_t0, fb_ctrs_t1);
421 static int cppc_cpufreq_set_boost(struct cpufreq_policy *policy, int state)
423 struct cppc_cpudata *cpudata;
426 if (!boost_supported) {
427 pr_err("BOOST not supported by CPU or firmware\n");
431 cpudata = all_cpu_data[policy->cpu];
433 policy->max = cppc_cpufreq_perf_to_khz(cpudata,
434 cpudata->perf_caps.highest_perf);
436 policy->max = cppc_cpufreq_perf_to_khz(cpudata,
437 cpudata->perf_caps.nominal_perf);
438 policy->cpuinfo.max_freq = policy->max;
440 ret = freq_qos_update_request(policy->max_freq_req, policy->max);
447 static struct cpufreq_driver cppc_cpufreq_driver = {
448 .flags = CPUFREQ_CONST_LOOPS,
449 .verify = cppc_verify_policy,
450 .target = cppc_cpufreq_set_target,
451 .get = cppc_cpufreq_get_rate,
452 .init = cppc_cpufreq_cpu_init,
453 .stop_cpu = cppc_cpufreq_stop_cpu,
454 .set_boost = cppc_cpufreq_set_boost,
455 .name = "cppc_cpufreq",
458 static int __init cppc_cpufreq_init(void)
461 struct cppc_cpudata *cpu;
466 all_cpu_data = kcalloc(num_possible_cpus(), sizeof(void *),
471 for_each_possible_cpu(i) {
472 all_cpu_data[i] = kzalloc(sizeof(struct cppc_cpudata), GFP_KERNEL);
473 if (!all_cpu_data[i])
476 cpu = all_cpu_data[i];
477 if (!zalloc_cpumask_var(&cpu->shared_cpu_map, GFP_KERNEL))
481 ret = acpi_get_psd_map(all_cpu_data);
483 pr_debug("Error parsing PSD data. Aborting cpufreq registration.\n");
487 cppc_check_hisi_workaround();
489 ret = cpufreq_register_driver(&cppc_cpufreq_driver);
496 for_each_possible_cpu(i) {
497 cpu = all_cpu_data[i];
500 free_cpumask_var(cpu->shared_cpu_map);
508 static void __exit cppc_cpufreq_exit(void)
510 struct cppc_cpudata *cpu;
513 cpufreq_unregister_driver(&cppc_cpufreq_driver);
515 for_each_possible_cpu(i) {
516 cpu = all_cpu_data[i];
517 free_cpumask_var(cpu->shared_cpu_map);
524 module_exit(cppc_cpufreq_exit);
525 MODULE_AUTHOR("Ashwin Chaugule");
526 MODULE_DESCRIPTION("CPUFreq driver based on the ACPI CPPC v5.0+ spec");
527 MODULE_LICENSE("GPL");
529 late_initcall(cppc_cpufreq_init);
531 static const struct acpi_device_id cppc_acpi_ids[] __used = {
532 {ACPI_PROCESSOR_DEVICE_HID, },
536 MODULE_DEVICE_TABLE(acpi, cppc_acpi_ids);