blob: d8b2dfcd59b5ffa40e0d154a0dedbc3c8cf7f54f [file] [log] [blame]
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * processor_thermal.c - Passive cooling submodule of the ACPI processor driver
4 *
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11
12#include <linux/kernel.h>
13#include <linux/module.h>
14#include <linux/init.h>
15#include <linux/cpufreq.h>
Lv Zheng8b484632013-12-03 08:49:16 +080016#include <linux/acpi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <acpi/processor.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080018#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#ifdef CONFIG_CPU_FREQ
21
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.
26 */
27
Zhang Ruid9460fd222008-01-17 15:51:23 +080028#define CPUFREQ_THERMAL_MIN_STEP 0
29#define CPUFREQ_THERMAL_MAX_STEP 3
30
Mike Travisc938ac22008-03-05 08:31:29 -080031static DEFINE_PER_CPU(unsigned int, cpufreq_thermal_reduction_pctg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Andi Kleen2815ab92012-02-06 08:17:11 -080033#define reduction_pctg(cpu) \
34 per_cpu(cpufreq_thermal_reduction_pctg, phys_package_first_cpu(cpu))
35
36/*
37 * Emulate "per package data" using per cpu data (which should really be
38 * provided elsewhere)
39 *
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)
42 */
43static int phys_package_first_cpu(int cpu)
44{
45 int i;
46 int id = topology_physical_package_id(cpu);
47
48 for_each_online_cpu(i)
49 if (topology_physical_package_id(i) == id)
50 return i;
51 return 0;
52}
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054static int cpu_has_cpufreq(unsigned int cpu)
55{
Manfred Spraul81208322021-12-22 15:09:31 +010056 struct cpufreq_policy *policy;
57
58 if (!acpi_processor_cpufreq_init)
Thomas Renninger75b245b32005-12-21 01:29:00 -050059 return 0;
Manfred Spraul81208322021-12-22 15:09:31 +010060
61 policy = cpufreq_cpu_get(cpu);
62 if (policy) {
63 cpufreq_cpu_put(policy);
64 return 1;
65 }
66 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067}
68
Zhang Ruid9460fd222008-01-17 15:51:23 +080069static int cpufreq_get_max_state(unsigned int cpu)
70{
71 if (!cpu_has_cpufreq(cpu))
72 return 0;
73
74 return CPUFREQ_THERMAL_MAX_STEP;
75}
76
77static int cpufreq_get_cur_state(unsigned int cpu)
78{
79 if (!cpu_has_cpufreq(cpu))
80 return 0;
81
Andi Kleen2815ab92012-02-06 08:17:11 -080082 return reduction_pctg(cpu);
Zhang Ruid9460fd222008-01-17 15:51:23 +080083}
84
85static int cpufreq_set_cur_state(unsigned int cpu, int state)
86{
Viresh Kumard15ce412019-08-28 14:20:13 +053087 struct cpufreq_policy *policy;
88 struct acpi_processor *pr;
89 unsigned long max_freq;
90 int i, ret;
Andi Kleen2815ab92012-02-06 08:17:11 -080091
Zhang Ruid9460fd222008-01-17 15:51:23 +080092 if (!cpu_has_cpufreq(cpu))
93 return 0;
94
Andi Kleen2815ab92012-02-06 08:17:11 -080095 reduction_pctg(cpu) = state;
96
97 /*
98 * Update all the CPUs in the same package because they all
99 * contribute to the temperature and often share the same
100 * frequency.
101 */
102 for_each_online_cpu(i) {
Viresh Kumard15ce412019-08-28 14:20:13 +0530103 if (topology_physical_package_id(i) !=
Andi Kleen2815ab92012-02-06 08:17:11 -0800104 topology_physical_package_id(cpu))
Viresh Kumard15ce412019-08-28 14:20:13 +0530105 continue;
106
107 pr = per_cpu(processors, i);
108
Rafael J. Wysocki3000ce32019-10-16 12:47:06 +0200109 if (unlikely(!freq_qos_request_active(&pr->thermal_req)))
Viresh Kumard15ce412019-08-28 14:20:13 +0530110 continue;
111
112 policy = cpufreq_cpu_get(i);
113 if (!policy)
114 return -EINVAL;
115
116 max_freq = (policy->cpuinfo.max_freq * (100 - reduction_pctg(i) * 20)) / 100;
117
118 cpufreq_cpu_put(policy);
119
Rafael J. Wysocki3000ce32019-10-16 12:47:06 +0200120 ret = freq_qos_update_request(&pr->thermal_req, max_freq);
Viresh Kumard15ce412019-08-28 14:20:13 +0530121 if (ret < 0) {
122 pr_warn("Failed to update thermal freq constraint: CPU%d (%d)\n",
123 pr->id, ret);
124 }
Andi Kleen2815ab92012-02-06 08:17:11 -0800125 }
Zhang Ruid9460fd222008-01-17 15:51:23 +0800126 return 0;
127}
128
Rafael J. Wysocki3000ce32019-10-16 12:47:06 +0200129void acpi_thermal_cpufreq_init(struct cpufreq_policy *policy)
Len Brown4be44fc2005-08-05 00:44:28 -0400130{
Rafael J. Wysockia1bb46c2019-10-25 02:41:40 +0200131 unsigned int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Rafael J. Wysockia1bb46c2019-10-25 02:41:40 +0200133 for_each_cpu(cpu, policy->related_cpus) {
134 struct acpi_processor *pr = per_cpu(processors, cpu);
135 int ret;
Rafael J. Wysocki2d8b39a2019-10-15 19:35:20 +0200136
Rafael J. Wysockia1bb46c2019-10-25 02:41:40 +0200137 if (!pr)
138 continue;
139
140 ret = freq_qos_add_request(&policy->constraints,
141 &pr->thermal_req,
142 FREQ_QOS_MAX, INT_MAX);
143 if (ret < 0)
144 pr_err("Failed to add freq constraint for CPU%d (%d)\n",
145 cpu, ret);
146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
148
Rafael J. Wysocki3000ce32019-10-16 12:47:06 +0200149void acpi_thermal_cpufreq_exit(struct cpufreq_policy *policy)
Len Brown4be44fc2005-08-05 00:44:28 -0400150{
Rafael J. Wysockia1bb46c2019-10-25 02:41:40 +0200151 unsigned int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Rafael J. Wysockia1bb46c2019-10-25 02:41:40 +0200153 for_each_cpu(cpu, policy->related_cpus) {
154 struct acpi_processor *pr = per_cpu(processors, policy->cpu);
155
156 if (pr)
157 freq_qos_remove_request(&pr->thermal_req);
158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159}
Len Brown4be44fc2005-08-05 00:44:28 -0400160#else /* ! CONFIG_CPU_FREQ */
Zhang Ruid9460fd222008-01-17 15:51:23 +0800161static int cpufreq_get_max_state(unsigned int cpu)
162{
163 return 0;
164}
165
166static int cpufreq_get_cur_state(unsigned int cpu)
167{
168 return 0;
169}
170
171static int cpufreq_set_cur_state(unsigned int cpu, int state)
172{
173 return 0;
174}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176#endif
177
Al Stone6dd7aca2013-12-05 11:14:16 -0700178/* thermal cooling device callbacks */
Zhang Ruid9460fd222008-01-17 15:51:23 +0800179static int acpi_processor_max_state(struct acpi_processor *pr)
180{
181 int max_state = 0;
182
183 /*
184 * There exists four states according to
Al Stone6dd7aca2013-12-05 11:14:16 -0700185 * cpufreq_thermal_reduction_pctg. 0, 1, 2, 3
Zhang Ruid9460fd222008-01-17 15:51:23 +0800186 */
187 max_state += cpufreq_get_max_state(pr->id);
188 if (pr->flags.throttling)
189 max_state += (pr->throttling.state_count -1);
190
191 return max_state;
192}
193static int
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000194processor_get_max_state(struct thermal_cooling_device *cdev,
195 unsigned long *state)
Zhang Ruid9460fd222008-01-17 15:51:23 +0800196{
197 struct acpi_device *device = cdev->devdata;
Colin Ian King99aa3632013-03-25 10:50:06 +0000198 struct acpi_processor *pr;
Zhang Ruid9460fd222008-01-17 15:51:23 +0800199
Colin Ian King99aa3632013-03-25 10:50:06 +0000200 if (!device)
201 return -EINVAL;
202
203 pr = acpi_driver_data(device);
204 if (!pr)
Zhang Ruid9460fd222008-01-17 15:51:23 +0800205 return -EINVAL;
206
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000207 *state = acpi_processor_max_state(pr);
208 return 0;
Zhang Ruid9460fd222008-01-17 15:51:23 +0800209}
210
211static int
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000212processor_get_cur_state(struct thermal_cooling_device *cdev,
213 unsigned long *cur_state)
Zhang Ruid9460fd222008-01-17 15:51:23 +0800214{
215 struct acpi_device *device = cdev->devdata;
Colin Ian King99aa3632013-03-25 10:50:06 +0000216 struct acpi_processor *pr;
Zhang Ruid9460fd222008-01-17 15:51:23 +0800217
Colin Ian King99aa3632013-03-25 10:50:06 +0000218 if (!device)
219 return -EINVAL;
220
221 pr = acpi_driver_data(device);
222 if (!pr)
Zhang Ruid9460fd222008-01-17 15:51:23 +0800223 return -EINVAL;
224
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000225 *cur_state = cpufreq_get_cur_state(pr->id);
Zhang Ruid9460fd222008-01-17 15:51:23 +0800226 if (pr->flags.throttling)
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000227 *cur_state += pr->throttling.state;
228 return 0;
Zhang Ruid9460fd222008-01-17 15:51:23 +0800229}
230
231static int
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000232processor_set_cur_state(struct thermal_cooling_device *cdev,
233 unsigned long state)
Zhang Ruid9460fd222008-01-17 15:51:23 +0800234{
235 struct acpi_device *device = cdev->devdata;
Colin Ian King99aa3632013-03-25 10:50:06 +0000236 struct acpi_processor *pr;
Zhang Ruid9460fd222008-01-17 15:51:23 +0800237 int result = 0;
238 int max_pstate;
239
Colin Ian King99aa3632013-03-25 10:50:06 +0000240 if (!device)
241 return -EINVAL;
242
243 pr = acpi_driver_data(device);
244 if (!pr)
Zhang Ruid9460fd222008-01-17 15:51:23 +0800245 return -EINVAL;
246
247 max_pstate = cpufreq_get_max_state(pr->id);
248
249 if (state > acpi_processor_max_state(pr))
250 return -EINVAL;
251
252 if (state <= max_pstate) {
253 if (pr->flags.throttling && pr->throttling.state)
Frans Pop2a908002009-08-26 14:29:29 -0700254 result = acpi_processor_set_throttling(pr, 0, false);
Zhang Ruid9460fd222008-01-17 15:51:23 +0800255 cpufreq_set_cur_state(pr->id, state);
256 } else {
257 cpufreq_set_cur_state(pr->id, max_pstate);
258 result = acpi_processor_set_throttling(pr,
Frans Pop2a908002009-08-26 14:29:29 -0700259 state - max_pstate, false);
Zhang Ruid9460fd222008-01-17 15:51:23 +0800260 }
261 return result;
262}
263
Vasiliy Kulikov9c8b04b2011-06-25 21:07:52 +0400264const struct thermal_cooling_device_ops processor_cooling_ops = {
Zhang Ruid9460fd222008-01-17 15:51:23 +0800265 .get_max_state = processor_get_max_state,
266 .get_cur_state = processor_get_cur_state,
267 .set_cur_state = processor_set_cur_state,
268};