1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * processor_thermal.c - Passive cooling submodule of the ACPI processor driver
5 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
6 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
7 * Copyright (C) 2004 Dominik Brodowski <linux@brodo.de>
8 * Copyright (C) 2004 Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9 * - Added processor hotplug support
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/init.h>
15 #include <linux/cpufreq.h>
16 #include <linux/acpi.h>
17 #include <acpi/processor.h>
18 #include <linux/uaccess.h>
20 #ifdef CONFIG_CPU_FREQ
22 /* If a passive cooling situation is detected, primarily CPUfreq is used, as it
23 * offers (in most cases) voltage scaling in addition to frequency scaling, and
24 * thus a cubic (instead of linear) reduction of energy. Also, we allow for
25 * _any_ cpufreq driver and not only the acpi-cpufreq driver.
28 #define CPUFREQ_THERMAL_MIN_STEP 0
29 #define CPUFREQ_THERMAL_MAX_STEP 3
31 static DEFINE_PER_CPU(unsigned int, cpufreq_thermal_reduction_pctg);
33 #define reduction_pctg(cpu) \
34 per_cpu(cpufreq_thermal_reduction_pctg, phys_package_first_cpu(cpu))
37 * Emulate "per package data" using per cpu data (which should really be
40 * Note we can lose a CPU on cpu hotunplug, in this case we forget the state
41 * temporarily. Fortunately that's not a big issue here (I hope)
43 static int phys_package_first_cpu(int cpu)
46 int id = topology_physical_package_id(cpu);
48 for_each_online_cpu(i)
49 if (topology_physical_package_id(i) == id)
54 static int cpu_has_cpufreq(unsigned int cpu)
56 struct cpufreq_policy *policy;
58 if (!acpi_processor_cpufreq_init)
61 policy = cpufreq_cpu_get(cpu);
63 cpufreq_cpu_put(policy);
69 static int cpufreq_get_max_state(unsigned int cpu)
71 if (!cpu_has_cpufreq(cpu))
74 return CPUFREQ_THERMAL_MAX_STEP;
77 static int cpufreq_get_cur_state(unsigned int cpu)
79 if (!cpu_has_cpufreq(cpu))
82 return reduction_pctg(cpu);
85 static int cpufreq_set_cur_state(unsigned int cpu, int state)
87 struct cpufreq_policy *policy;
88 struct acpi_processor *pr;
89 unsigned long max_freq;
92 if (!cpu_has_cpufreq(cpu))
95 reduction_pctg(cpu) = state;
98 * Update all the CPUs in the same package because they all
99 * contribute to the temperature and often share the same
102 for_each_online_cpu(i) {
103 if (topology_physical_package_id(i) !=
104 topology_physical_package_id(cpu))
107 pr = per_cpu(processors, i);
109 if (unlikely(!freq_qos_request_active(&pr->thermal_req)))
112 policy = cpufreq_cpu_get(i);
116 max_freq = (policy->cpuinfo.max_freq * (100 - reduction_pctg(i) * 20)) / 100;
118 cpufreq_cpu_put(policy);
120 ret = freq_qos_update_request(&pr->thermal_req, max_freq);
122 pr_warn("Failed to update thermal freq constraint: CPU%d (%d)\n",
129 void acpi_thermal_cpufreq_init(struct cpufreq_policy *policy)
133 for_each_cpu(cpu, policy->related_cpus) {
134 struct acpi_processor *pr = per_cpu(processors, cpu);
140 ret = freq_qos_add_request(&policy->constraints,
142 FREQ_QOS_MAX, INT_MAX);
144 pr_err("Failed to add freq constraint for CPU%d (%d)\n",
149 thermal_cooling_device_update(pr->cdev);
153 void acpi_thermal_cpufreq_exit(struct cpufreq_policy *policy)
157 for_each_cpu(cpu, policy->related_cpus) {
158 struct acpi_processor *pr = per_cpu(processors, cpu);
163 freq_qos_remove_request(&pr->thermal_req);
165 thermal_cooling_device_update(pr->cdev);
168 #else /* ! CONFIG_CPU_FREQ */
169 static int cpufreq_get_max_state(unsigned int cpu)
174 static int cpufreq_get_cur_state(unsigned int cpu)
179 static int cpufreq_set_cur_state(unsigned int cpu, int state)
186 /* thermal cooling device callbacks */
187 static int acpi_processor_max_state(struct acpi_processor *pr)
192 * There exists four states according to
193 * cpufreq_thermal_reduction_pctg. 0, 1, 2, 3
195 max_state += cpufreq_get_max_state(pr->id);
196 if (pr->flags.throttling)
197 max_state += (pr->throttling.state_count -1);
202 processor_get_max_state(struct thermal_cooling_device *cdev,
203 unsigned long *state)
205 struct acpi_device *device = cdev->devdata;
206 struct acpi_processor *pr;
211 pr = acpi_driver_data(device);
215 *state = acpi_processor_max_state(pr);
220 processor_get_cur_state(struct thermal_cooling_device *cdev,
221 unsigned long *cur_state)
223 struct acpi_device *device = cdev->devdata;
224 struct acpi_processor *pr;
229 pr = acpi_driver_data(device);
233 *cur_state = cpufreq_get_cur_state(pr->id);
234 if (pr->flags.throttling)
235 *cur_state += pr->throttling.state;
240 processor_set_cur_state(struct thermal_cooling_device *cdev,
243 struct acpi_device *device = cdev->devdata;
244 struct acpi_processor *pr;
251 pr = acpi_driver_data(device);
255 max_pstate = cpufreq_get_max_state(pr->id);
257 if (state > acpi_processor_max_state(pr))
260 if (state <= max_pstate) {
261 if (pr->flags.throttling && pr->throttling.state)
262 result = acpi_processor_set_throttling(pr, 0, false);
263 cpufreq_set_cur_state(pr->id, state);
265 cpufreq_set_cur_state(pr->id, max_pstate);
266 result = acpi_processor_set_throttling(pr,
267 state - max_pstate, false);
272 const struct thermal_cooling_device_ops processor_cooling_ops = {
273 .get_max_state = processor_get_max_state,
274 .get_cur_state = processor_get_cur_state,
275 .set_cur_state = processor_set_cur_state,
278 int acpi_processor_thermal_init(struct acpi_processor *pr,
279 struct acpi_device *device)
283 pr->cdev = thermal_cooling_device_register("Processor", device,
284 &processor_cooling_ops);
285 if (IS_ERR(pr->cdev)) {
286 result = PTR_ERR(pr->cdev);
290 dev_dbg(&device->dev, "registered as cooling_device%d\n",
293 result = sysfs_create_link(&device->dev.kobj,
294 &pr->cdev->device.kobj,
297 dev_err(&device->dev,
298 "Failed to create sysfs link 'thermal_cooling'\n");
299 goto err_thermal_unregister;
302 result = sysfs_create_link(&pr->cdev->device.kobj,
306 dev_err(&pr->cdev->device,
307 "Failed to create sysfs link 'device'\n");
308 goto err_remove_sysfs_thermal;
313 err_remove_sysfs_thermal:
314 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
315 err_thermal_unregister:
316 thermal_cooling_device_unregister(pr->cdev);
321 void acpi_processor_thermal_exit(struct acpi_processor *pr,
322 struct acpi_device *device)
325 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
326 sysfs_remove_link(&pr->cdev->device.kobj, "device");
327 thermal_cooling_device_unregister(pr->cdev);