1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * processor_thermal.c - Passive cooling submodule of the ACPI processor driver
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 void acpi_thermal_cpufreq_exit(struct cpufreq_policy *policy)
153 for_each_cpu(cpu, policy->related_cpus) {
154 struct acpi_processor *pr = per_cpu(processors, cpu);
157 freq_qos_remove_request(&pr->thermal_req);
160 #else /* ! CONFIG_CPU_FREQ */
161 static int cpufreq_get_max_state(unsigned int cpu)
166 static int cpufreq_get_cur_state(unsigned int cpu)
171 static int cpufreq_set_cur_state(unsigned int cpu, int state)
178 /* thermal cooling device callbacks */
179 static int acpi_processor_max_state(struct acpi_processor *pr)
184 * There exists four states according to
185 * cpufreq_thermal_reduction_pctg. 0, 1, 2, 3
187 max_state += cpufreq_get_max_state(pr->id);
188 if (pr->flags.throttling)
189 max_state += (pr->throttling.state_count -1);
194 processor_get_max_state(struct thermal_cooling_device *cdev,
195 unsigned long *state)
197 struct acpi_device *device = cdev->devdata;
198 struct acpi_processor *pr;
203 pr = acpi_driver_data(device);
207 *state = acpi_processor_max_state(pr);
212 processor_get_cur_state(struct thermal_cooling_device *cdev,
213 unsigned long *cur_state)
215 struct acpi_device *device = cdev->devdata;
216 struct acpi_processor *pr;
221 pr = acpi_driver_data(device);
225 *cur_state = cpufreq_get_cur_state(pr->id);
226 if (pr->flags.throttling)
227 *cur_state += pr->throttling.state;
232 processor_set_cur_state(struct thermal_cooling_device *cdev,
235 struct acpi_device *device = cdev->devdata;
236 struct acpi_processor *pr;
243 pr = acpi_driver_data(device);
247 max_pstate = cpufreq_get_max_state(pr->id);
249 if (state > acpi_processor_max_state(pr))
252 if (state <= max_pstate) {
253 if (pr->flags.throttling && pr->throttling.state)
254 result = acpi_processor_set_throttling(pr, 0, false);
255 cpufreq_set_cur_state(pr->id, state);
257 cpufreq_set_cur_state(pr->id, max_pstate);
258 result = acpi_processor_set_throttling(pr,
259 state - max_pstate, false);
264 const struct thermal_cooling_device_ops processor_cooling_ops = {
265 .get_max_state = processor_get_max_state,
266 .get_cur_state = processor_get_cur_state,
267 .set_cur_state = processor_set_cur_state,
270 int acpi_processor_thermal_init(struct acpi_processor *pr,
271 struct acpi_device *device)
275 pr->cdev = thermal_cooling_device_register("Processor", device,
276 &processor_cooling_ops);
277 if (IS_ERR(pr->cdev)) {
278 result = PTR_ERR(pr->cdev);
282 dev_dbg(&device->dev, "registered as cooling_device%d\n",
285 result = sysfs_create_link(&device->dev.kobj,
286 &pr->cdev->device.kobj,
289 dev_err(&device->dev,
290 "Failed to create sysfs link 'thermal_cooling'\n");
291 goto err_thermal_unregister;
294 result = sysfs_create_link(&pr->cdev->device.kobj,
298 dev_err(&pr->cdev->device,
299 "Failed to create sysfs link 'device'\n");
300 goto err_remove_sysfs_thermal;
305 err_remove_sysfs_thermal:
306 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
307 err_thermal_unregister:
308 thermal_cooling_device_unregister(pr->cdev);
313 void acpi_processor_thermal_exit(struct acpi_processor *pr,
314 struct acpi_device *device)
317 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
318 sysfs_remove_link(&pr->cdev->device.kobj, "device");
319 thermal_cooling_device_unregister(pr->cdev);