blob: e2e221904d2554ea3f22394162464b8fb6f8da49 [file] [log] [blame]
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +05301/*
2 * POWERNV cpufreq driver for the IBM POWER processors
3 *
4 * (C) Copyright IBM 2014
5 *
6 * Author: Vaidyanathan Srinivasan <svaidy at linux.vnet.ibm.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2, or (at your option)
11 * any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 */
19
20#define pr_fmt(fmt) "powernv-cpufreq: " fmt
21
22#include <linux/kernel.h>
23#include <linux/sysfs.h>
24#include <linux/cpumask.h>
25#include <linux/module.h>
26#include <linux/cpufreq.h>
27#include <linux/smp.h>
28#include <linux/of.h>
Shilpasri G Bhatcf30af762014-09-29 15:49:11 +020029#include <linux/reboot.h>
Shilpasri G Bhat053819e2015-07-16 13:34:18 +053030#include <linux/slab.h>
Shilpasri G Bhat6d167a42016-02-03 01:11:38 +053031#include <linux/cpu.h>
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +053032#include <trace/events/power.h>
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +053033
34#include <asm/cputhreads.h>
Vaidyanathan Srinivasan6174bac2014-08-03 14:54:05 +053035#include <asm/firmware.h>
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +053036#include <asm/reg.h>
Srivatsa S. Bhatf3cae352014-04-16 11:35:38 +053037#include <asm/smp.h> /* Required for cpu_sibling_mask() in UP configs */
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +053038#include <asm/opal.h>
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +053039
40#define POWERNV_MAX_PSTATES 256
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +053041#define PMSR_PSAFE_ENABLE (1UL << 30)
42#define PMSR_SPR_EM_DISABLE (1UL << 31)
43#define PMSR_MAX(x) ((x >> 32) & 0xFF)
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +053044
45static struct cpufreq_frequency_table powernv_freqs[POWERNV_MAX_PSTATES+1];
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +053046static bool rebooting, throttled, occ_reset;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +053047
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +053048static const char * const throttle_reason[] = {
49 "No throttling",
50 "Power Cap",
51 "Processor Over Temperature",
52 "Power Supply Failure",
53 "Over Current",
54 "OCC Reset"
55};
56
Shilpasri G Bhat1b028982016-03-22 18:57:09 +053057enum throttle_reason_type {
58 NO_THROTTLE = 0,
59 POWERCAP,
60 CPU_OVERTEMP,
61 POWER_SUPPLY_FAILURE,
62 OVERCURRENT,
63 OCC_RESET_THROTTLE,
64 OCC_MAX_REASON
65};
66
Shilpasri G Bhat053819e2015-07-16 13:34:18 +053067static struct chip {
68 unsigned int id;
69 bool throttled;
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +053070 bool restore;
71 u8 throttle_reason;
Shilpasri G Bhat735366f2015-07-16 13:34:21 +053072 cpumask_t mask;
73 struct work_struct throttle;
Shilpasri G Bhat1b028982016-03-22 18:57:09 +053074 int throttle_turbo;
75 int throttle_sub_turbo;
76 int reason[OCC_MAX_REASON];
Shilpasri G Bhat053819e2015-07-16 13:34:18 +053077} *chips;
78
79static int nr_chips;
Michael Neuling3e5963b2016-03-21 22:24:52 +053080static DEFINE_PER_CPU(struct chip *, chip_info);
Shilpasri G Bhat053819e2015-07-16 13:34:18 +053081
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +053082/*
83 * Note: The set of pstates consists of contiguous integers, the
84 * smallest of which is indicated by powernv_pstate_info.min, the
85 * largest of which is indicated by powernv_pstate_info.max.
86 *
87 * The nominal pstate is the highest non-turbo pstate in this
88 * platform. This is indicated by powernv_pstate_info.nominal.
89 */
90static struct powernv_pstate_info {
91 int min;
92 int max;
93 int nominal;
94 int nr_pstates;
95} powernv_pstate_info;
96
97/*
98 * Initialize the freq table based on data obtained
99 * from the firmware passed via device-tree
100 */
101static int init_powernv_pstates(void)
102{
103 struct device_node *power_mgt;
104 int i, pstate_min, pstate_max, pstate_nominal, nr_pstates = 0;
105 const __be32 *pstate_ids, *pstate_freqs;
106 u32 len_ids, len_freqs;
107
108 power_mgt = of_find_node_by_path("/ibm,opal/power-mgt");
109 if (!power_mgt) {
110 pr_warn("power-mgt node not found\n");
111 return -ENODEV;
112 }
113
114 if (of_property_read_u32(power_mgt, "ibm,pstate-min", &pstate_min)) {
115 pr_warn("ibm,pstate-min node not found\n");
116 return -ENODEV;
117 }
118
119 if (of_property_read_u32(power_mgt, "ibm,pstate-max", &pstate_max)) {
120 pr_warn("ibm,pstate-max node not found\n");
121 return -ENODEV;
122 }
123
124 if (of_property_read_u32(power_mgt, "ibm,pstate-nominal",
125 &pstate_nominal)) {
126 pr_warn("ibm,pstate-nominal not found\n");
127 return -ENODEV;
128 }
129 pr_info("cpufreq pstate min %d nominal %d max %d\n", pstate_min,
130 pstate_nominal, pstate_max);
131
132 pstate_ids = of_get_property(power_mgt, "ibm,pstate-ids", &len_ids);
133 if (!pstate_ids) {
134 pr_warn("ibm,pstate-ids not found\n");
135 return -ENODEV;
136 }
137
138 pstate_freqs = of_get_property(power_mgt, "ibm,pstate-frequencies-mhz",
139 &len_freqs);
140 if (!pstate_freqs) {
141 pr_warn("ibm,pstate-frequencies-mhz not found\n");
142 return -ENODEV;
143 }
144
Vaidyanathan Srinivasan6174bac2014-08-03 14:54:05 +0530145 if (len_ids != len_freqs) {
146 pr_warn("Entries in ibm,pstate-ids and "
147 "ibm,pstate-frequencies-mhz does not match\n");
148 }
149
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530150 nr_pstates = min(len_ids, len_freqs) / sizeof(u32);
151 if (!nr_pstates) {
152 pr_warn("No PStates found\n");
153 return -ENODEV;
154 }
155
156 pr_debug("NR PStates %d\n", nr_pstates);
157 for (i = 0; i < nr_pstates; i++) {
158 u32 id = be32_to_cpu(pstate_ids[i]);
159 u32 freq = be32_to_cpu(pstate_freqs[i]);
160
161 pr_debug("PState id %d freq %d MHz\n", id, freq);
162 powernv_freqs[i].frequency = freq * 1000; /* kHz */
Gautham R. Shenoy0692c692014-04-01 12:43:27 +0530163 powernv_freqs[i].driver_data = id;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530164 }
165 /* End of list marker entry */
166 powernv_freqs[i].frequency = CPUFREQ_TABLE_END;
167
168 powernv_pstate_info.min = pstate_min;
169 powernv_pstate_info.max = pstate_max;
170 powernv_pstate_info.nominal = pstate_nominal;
171 powernv_pstate_info.nr_pstates = nr_pstates;
172
173 return 0;
174}
175
176/* Returns the CPU frequency corresponding to the pstate_id. */
177static unsigned int pstate_id_to_freq(int pstate_id)
178{
179 int i;
180
181 i = powernv_pstate_info.max - pstate_id;
Vaidyanathan Srinivasan6174bac2014-08-03 14:54:05 +0530182 if (i >= powernv_pstate_info.nr_pstates || i < 0) {
183 pr_warn("PState id %d outside of PState table, "
184 "reporting nominal id %d instead\n",
185 pstate_id, powernv_pstate_info.nominal);
186 i = powernv_pstate_info.max - powernv_pstate_info.nominal;
187 }
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530188
189 return powernv_freqs[i].frequency;
190}
191
192/*
193 * cpuinfo_nominal_freq_show - Show the nominal CPU frequency as indicated by
194 * the firmware
195 */
196static ssize_t cpuinfo_nominal_freq_show(struct cpufreq_policy *policy,
197 char *buf)
198{
199 return sprintf(buf, "%u\n",
200 pstate_id_to_freq(powernv_pstate_info.nominal));
201}
202
203struct freq_attr cpufreq_freq_attr_cpuinfo_nominal_freq =
204 __ATTR_RO(cpuinfo_nominal_freq);
205
206static struct freq_attr *powernv_cpu_freq_attr[] = {
207 &cpufreq_freq_attr_scaling_available_freqs,
208 &cpufreq_freq_attr_cpuinfo_nominal_freq,
209 NULL,
210};
211
Shilpasri G Bhat1b028982016-03-22 18:57:09 +0530212#define throttle_attr(name, member) \
213static ssize_t name##_show(struct cpufreq_policy *policy, char *buf) \
214{ \
215 struct chip *chip = per_cpu(chip_info, policy->cpu); \
216 \
217 return sprintf(buf, "%u\n", chip->member); \
218} \
219 \
220static struct freq_attr throttle_attr_##name = __ATTR_RO(name) \
221
222throttle_attr(unthrottle, reason[NO_THROTTLE]);
223throttle_attr(powercap, reason[POWERCAP]);
224throttle_attr(overtemp, reason[CPU_OVERTEMP]);
225throttle_attr(supply_fault, reason[POWER_SUPPLY_FAILURE]);
226throttle_attr(overcurrent, reason[OVERCURRENT]);
227throttle_attr(occ_reset, reason[OCC_RESET_THROTTLE]);
228throttle_attr(turbo_stat, throttle_turbo);
229throttle_attr(sub_turbo_stat, throttle_sub_turbo);
230
231static struct attribute *throttle_attrs[] = {
232 &throttle_attr_unthrottle.attr,
233 &throttle_attr_powercap.attr,
234 &throttle_attr_overtemp.attr,
235 &throttle_attr_supply_fault.attr,
236 &throttle_attr_overcurrent.attr,
237 &throttle_attr_occ_reset.attr,
238 &throttle_attr_turbo_stat.attr,
239 &throttle_attr_sub_turbo_stat.attr,
240 NULL,
241};
242
243static const struct attribute_group throttle_attr_grp = {
244 .name = "throttle_stats",
245 .attrs = throttle_attrs,
246};
247
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530248/* Helper routines */
249
250/* Access helpers to power mgt SPR */
251
252static inline unsigned long get_pmspr(unsigned long sprn)
253{
254 switch (sprn) {
255 case SPRN_PMCR:
256 return mfspr(SPRN_PMCR);
257
258 case SPRN_PMICR:
259 return mfspr(SPRN_PMICR);
260
261 case SPRN_PMSR:
262 return mfspr(SPRN_PMSR);
263 }
264 BUG();
265}
266
267static inline void set_pmspr(unsigned long sprn, unsigned long val)
268{
269 switch (sprn) {
270 case SPRN_PMCR:
271 mtspr(SPRN_PMCR, val);
272 return;
273
274 case SPRN_PMICR:
275 mtspr(SPRN_PMICR, val);
276 return;
277 }
278 BUG();
279}
280
281/*
282 * Use objects of this type to query/update
283 * pstates on a remote CPU via smp_call_function.
284 */
285struct powernv_smp_call_data {
286 unsigned int freq;
287 int pstate_id;
288};
289
290/*
291 * powernv_read_cpu_freq: Reads the current frequency on this CPU.
292 *
293 * Called via smp_call_function.
294 *
295 * Note: The caller of the smp_call_function should pass an argument of
296 * the type 'struct powernv_smp_call_data *' along with this function.
297 *
298 * The current frequency on this CPU will be returned via
299 * ((struct powernv_smp_call_data *)arg)->freq;
300 */
301static void powernv_read_cpu_freq(void *arg)
302{
303 unsigned long pmspr_val;
304 s8 local_pstate_id;
305 struct powernv_smp_call_data *freq_data = arg;
306
307 pmspr_val = get_pmspr(SPRN_PMSR);
308
309 /*
310 * The local pstate id corresponds bits 48..55 in the PMSR.
311 * Note: Watch out for the sign!
312 */
313 local_pstate_id = (pmspr_val >> 48) & 0xFF;
314 freq_data->pstate_id = local_pstate_id;
315 freq_data->freq = pstate_id_to_freq(freq_data->pstate_id);
316
317 pr_debug("cpu %d pmsr %016lX pstate_id %d frequency %d kHz\n",
318 raw_smp_processor_id(), pmspr_val, freq_data->pstate_id,
319 freq_data->freq);
320}
321
322/*
323 * powernv_cpufreq_get: Returns the CPU frequency as reported by the
324 * firmware for CPU 'cpu'. This value is reported through the sysfs
325 * file cpuinfo_cur_freq.
326 */
Brian Norris60d1ea42014-05-11 00:51:20 -0700327static unsigned int powernv_cpufreq_get(unsigned int cpu)
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530328{
329 struct powernv_smp_call_data freq_data;
330
331 smp_call_function_any(cpu_sibling_mask(cpu), powernv_read_cpu_freq,
332 &freq_data, 1);
333
334 return freq_data.freq;
335}
336
337/*
338 * set_pstate: Sets the pstate on this CPU.
339 *
340 * This is called via an smp_call_function.
341 *
342 * The caller must ensure that freq_data is of the type
343 * (struct powernv_smp_call_data *) and the pstate_id which needs to be set
344 * on this CPU should be present in freq_data->pstate_id.
345 */
346static void set_pstate(void *freq_data)
347{
348 unsigned long val;
349 unsigned long pstate_ul =
350 ((struct powernv_smp_call_data *) freq_data)->pstate_id;
351
352 val = get_pmspr(SPRN_PMCR);
353 val = val & 0x0000FFFFFFFFFFFFULL;
354
355 pstate_ul = pstate_ul & 0xFF;
356
357 /* Set both global(bits 56..63) and local(bits 48..55) PStates */
358 val = val | (pstate_ul << 56) | (pstate_ul << 48);
359
360 pr_debug("Setting cpu %d pmcr to %016lX\n",
361 raw_smp_processor_id(), val);
362 set_pmspr(SPRN_PMCR, val);
363}
364
365/*
Shilpasri G Bhatcf30af762014-09-29 15:49:11 +0200366 * get_nominal_index: Returns the index corresponding to the nominal
367 * pstate in the cpufreq table
368 */
369static inline unsigned int get_nominal_index(void)
370{
371 return powernv_pstate_info.max - powernv_pstate_info.nominal;
372}
373
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530374static void powernv_cpufreq_throttle_check(void *data)
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530375{
Michael Neuling3e5963b2016-03-21 22:24:52 +0530376 struct chip *chip;
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530377 unsigned int cpu = smp_processor_id();
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530378 unsigned long pmsr;
Michael Neuling3e5963b2016-03-21 22:24:52 +0530379 int pmsr_pmax;
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530380
381 pmsr = get_pmspr(SPRN_PMSR);
Michael Neuling3e5963b2016-03-21 22:24:52 +0530382 chip = this_cpu_read(chip_info);
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530383
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530384 /* Check for Pmax Capping */
385 pmsr_pmax = (s8)PMSR_MAX(pmsr);
386 if (pmsr_pmax != powernv_pstate_info.max) {
Michael Neuling3e5963b2016-03-21 22:24:52 +0530387 if (chip->throttled)
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530388 goto next;
Michael Neuling3e5963b2016-03-21 22:24:52 +0530389 chip->throttled = true;
Shilpasri G Bhat1b028982016-03-22 18:57:09 +0530390 if (pmsr_pmax < powernv_pstate_info.nominal) {
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +0530391 pr_warn_once("CPU %d on Chip %u has Pmax reduced below nominal frequency (%d < %d)\n",
Michael Neuling3e5963b2016-03-21 22:24:52 +0530392 cpu, chip->id, pmsr_pmax,
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +0530393 powernv_pstate_info.nominal);
Shilpasri G Bhat1b028982016-03-22 18:57:09 +0530394 chip->throttle_sub_turbo++;
395 } else {
396 chip->throttle_turbo++;
397 }
Michael Neuling3e5963b2016-03-21 22:24:52 +0530398 trace_powernv_throttle(chip->id,
399 throttle_reason[chip->throttle_reason],
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +0530400 pmsr_pmax);
Michael Neuling3e5963b2016-03-21 22:24:52 +0530401 } else if (chip->throttled) {
402 chip->throttled = false;
403 trace_powernv_throttle(chip->id,
404 throttle_reason[chip->throttle_reason],
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +0530405 pmsr_pmax);
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530406 }
407
Shilpasri G Bhat3dd3ebe2015-07-16 13:34:22 +0530408 /* Check if Psafe_mode_active is set in PMSR. */
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530409next:
Shilpasri G Bhat3dd3ebe2015-07-16 13:34:22 +0530410 if (pmsr & PMSR_PSAFE_ENABLE) {
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530411 throttled = true;
412 pr_info("Pstate set to safe frequency\n");
413 }
414
415 /* Check if SPR_EM_DISABLE is set in PMSR */
416 if (pmsr & PMSR_SPR_EM_DISABLE) {
417 throttled = true;
418 pr_info("Frequency Control disabled from OS\n");
419 }
420
421 if (throttled) {
422 pr_info("PMSR = %16lx\n", pmsr);
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +0530423 pr_warn("CPU Frequency could be throttled\n");
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530424 }
425}
426
Shilpasri G Bhatcf30af762014-09-29 15:49:11 +0200427/*
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530428 * powernv_cpufreq_target_index: Sets the frequency corresponding to
429 * the cpufreq table entry indexed by new_index on the cpus in the
430 * mask policy->cpus
431 */
432static int powernv_cpufreq_target_index(struct cpufreq_policy *policy,
433 unsigned int new_index)
434{
435 struct powernv_smp_call_data freq_data;
436
Shilpasri G Bhatcf30af762014-09-29 15:49:11 +0200437 if (unlikely(rebooting) && new_index != get_nominal_index())
438 return 0;
439
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530440 if (!throttled)
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530441 powernv_cpufreq_throttle_check(NULL);
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530442
Gautham R. Shenoy0692c692014-04-01 12:43:27 +0530443 freq_data.pstate_id = powernv_freqs[new_index].driver_data;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530444
445 /*
446 * Use smp_call_function to send IPI and execute the
447 * mtspr on target CPU. We could do that without IPI
448 * if current CPU is within policy->cpus (core)
449 */
450 smp_call_function_any(policy->cpus, set_pstate, &freq_data, 1);
451
452 return 0;
453}
454
455static int powernv_cpufreq_cpu_init(struct cpufreq_policy *policy)
456{
457 int base, i;
Shilpasri G Bhat2920e9c2016-04-19 15:28:00 +0530458 struct kernfs_node *kn;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530459
460 base = cpu_first_thread_sibling(policy->cpu);
461
462 for (i = 0; i < threads_per_core; i++)
463 cpumask_set_cpu(base + i, policy->cpus);
464
Shilpasri G Bhat2920e9c2016-04-19 15:28:00 +0530465 kn = kernfs_find_and_get(policy->kobj.sd, throttle_attr_grp.name);
466 if (!kn) {
Shilpasri G Bhat1b028982016-03-22 18:57:09 +0530467 int ret;
468
469 ret = sysfs_create_group(&policy->kobj, &throttle_attr_grp);
470 if (ret) {
471 pr_info("Failed to create throttle stats directory for cpu %d\n",
472 policy->cpu);
473 return ret;
474 }
Shilpasri G Bhat2920e9c2016-04-19 15:28:00 +0530475 } else {
476 kernfs_put(kn);
Shilpasri G Bhat1b028982016-03-22 18:57:09 +0530477 }
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530478 return cpufreq_table_validate_and_show(policy, powernv_freqs);
479}
480
Shilpasri G Bhatcf30af762014-09-29 15:49:11 +0200481static int powernv_cpufreq_reboot_notifier(struct notifier_block *nb,
482 unsigned long action, void *unused)
483{
484 int cpu;
485 struct cpufreq_policy cpu_policy;
486
487 rebooting = true;
488 for_each_online_cpu(cpu) {
489 cpufreq_get_policy(&cpu_policy, cpu);
490 powernv_cpufreq_target_index(&cpu_policy, get_nominal_index());
491 }
492
493 return NOTIFY_DONE;
494}
495
496static struct notifier_block powernv_cpufreq_reboot_nb = {
497 .notifier_call = powernv_cpufreq_reboot_notifier,
498};
499
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530500void powernv_cpufreq_work_fn(struct work_struct *work)
501{
502 struct chip *chip = container_of(work, struct chip, throttle);
Shilpasri G Bhat227942802015-07-16 13:34:23 +0530503 unsigned int cpu;
Shilpasri G Bhat6d167a42016-02-03 01:11:38 +0530504 cpumask_t mask;
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530505
Shilpasri G Bhat6d167a42016-02-03 01:11:38 +0530506 get_online_cpus();
507 cpumask_and(&mask, &chip->mask, cpu_online_mask);
508 smp_call_function_any(&mask,
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530509 powernv_cpufreq_throttle_check, NULL, 0);
Shilpasri G Bhat227942802015-07-16 13:34:23 +0530510
511 if (!chip->restore)
Shilpasri G Bhat6d167a42016-02-03 01:11:38 +0530512 goto out;
Shilpasri G Bhat227942802015-07-16 13:34:23 +0530513
514 chip->restore = false;
Shilpasri G Bhat6d167a42016-02-03 01:11:38 +0530515 for_each_cpu(cpu, &mask) {
516 int index;
Shilpasri G Bhat227942802015-07-16 13:34:23 +0530517 struct cpufreq_policy policy;
518
519 cpufreq_get_policy(&policy, cpu);
520 cpufreq_frequency_table_target(&policy, policy.freq_table,
521 policy.cur,
522 CPUFREQ_RELATION_C, &index);
523 powernv_cpufreq_target_index(&policy, index);
Shilpasri G Bhat6d167a42016-02-03 01:11:38 +0530524 cpumask_andnot(&mask, &mask, policy.cpus);
Shilpasri G Bhat227942802015-07-16 13:34:23 +0530525 }
Shilpasri G Bhat6d167a42016-02-03 01:11:38 +0530526out:
527 put_online_cpus();
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530528}
529
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530530static int powernv_cpufreq_occ_msg(struct notifier_block *nb,
531 unsigned long msg_type, void *_msg)
532{
533 struct opal_msg *msg = _msg;
534 struct opal_occ_msg omsg;
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530535 int i;
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530536
537 if (msg_type != OPAL_MSG_OCC)
538 return 0;
539
540 omsg.type = be64_to_cpu(msg->params[0]);
541
542 switch (omsg.type) {
543 case OCC_RESET:
544 occ_reset = true;
Shilpasri G Bhat309d0632015-08-27 14:41:44 +0530545 pr_info("OCC (On Chip Controller - enforces hard thermal/power limits) Resetting\n");
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530546 /*
547 * powernv_cpufreq_throttle_check() is called in
548 * target() callback which can detect the throttle state
549 * for governors like ondemand.
550 * But static governors will not call target() often thus
551 * report throttling here.
552 */
553 if (!throttled) {
554 throttled = true;
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +0530555 pr_warn("CPU frequency is throttled for duration\n");
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530556 }
Shilpasri G Bhat309d0632015-08-27 14:41:44 +0530557
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530558 break;
559 case OCC_LOAD:
Shilpasri G Bhat309d0632015-08-27 14:41:44 +0530560 pr_info("OCC Loading, CPU frequency is throttled until OCC is started\n");
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530561 break;
562 case OCC_THROTTLE:
563 omsg.chip = be64_to_cpu(msg->params[1]);
564 omsg.throttle_status = be64_to_cpu(msg->params[2]);
565
566 if (occ_reset) {
567 occ_reset = false;
568 throttled = false;
Shilpasri G Bhat309d0632015-08-27 14:41:44 +0530569 pr_info("OCC Active, CPU frequency is no longer throttled\n");
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530570
Shilpasri G Bhat227942802015-07-16 13:34:23 +0530571 for (i = 0; i < nr_chips; i++) {
572 chips[i].restore = true;
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530573 schedule_work(&chips[i].throttle);
Shilpasri G Bhat227942802015-07-16 13:34:23 +0530574 }
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530575
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530576 return 0;
577 }
578
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530579 for (i = 0; i < nr_chips; i++)
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +0530580 if (chips[i].id == omsg.chip)
581 break;
582
583 if (omsg.throttle_status >= 0 &&
Shilpasri G Bhat1b028982016-03-22 18:57:09 +0530584 omsg.throttle_status <= OCC_MAX_THROTTLE_STATUS) {
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +0530585 chips[i].throttle_reason = omsg.throttle_status;
Shilpasri G Bhat1b028982016-03-22 18:57:09 +0530586 chips[i].reason[omsg.throttle_status]++;
587 }
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +0530588
589 if (!omsg.throttle_status)
590 chips[i].restore = true;
591
592 schedule_work(&chips[i].throttle);
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530593 }
594 return 0;
595}
596
597static struct notifier_block powernv_cpufreq_opal_nb = {
598 .notifier_call = powernv_cpufreq_occ_msg,
599 .next = NULL,
600 .priority = 0,
601};
602
Preeti U Murthyb1203392014-09-29 15:47:53 +0200603static void powernv_cpufreq_stop_cpu(struct cpufreq_policy *policy)
604{
605 struct powernv_smp_call_data freq_data;
606
607 freq_data.pstate_id = powernv_pstate_info.min;
608 smp_call_function_single(policy->cpu, set_pstate, &freq_data, 1);
609}
610
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530611static struct cpufreq_driver powernv_cpufreq_driver = {
612 .name = "powernv-cpufreq",
613 .flags = CPUFREQ_CONST_LOOPS,
614 .init = powernv_cpufreq_cpu_init,
615 .verify = cpufreq_generic_frequency_table_verify,
616 .target_index = powernv_cpufreq_target_index,
617 .get = powernv_cpufreq_get,
Preeti U Murthyb1203392014-09-29 15:47:53 +0200618 .stop_cpu = powernv_cpufreq_stop_cpu,
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530619 .attr = powernv_cpu_freq_attr,
620};
621
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530622static int init_chip_info(void)
623{
624 unsigned int chip[256];
625 unsigned int cpu, i;
626 unsigned int prev_chip_id = UINT_MAX;
627
Michael Neuling3e5963b2016-03-21 22:24:52 +0530628 for_each_possible_cpu(cpu) {
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530629 unsigned int id = cpu_to_chip_id(cpu);
630
631 if (prev_chip_id != id) {
632 prev_chip_id = id;
633 chip[nr_chips++] = id;
634 }
635 }
636
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +0530637 chips = kcalloc(nr_chips, sizeof(struct chip), GFP_KERNEL);
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530638 if (!chips)
Michael Neuling3e5963b2016-03-21 22:24:52 +0530639 return -ENOMEM;
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530640
641 for (i = 0; i < nr_chips; i++) {
642 chips[i].id = chip[i];
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530643 cpumask_copy(&chips[i].mask, cpumask_of_node(chip[i]));
644 INIT_WORK(&chips[i].throttle, powernv_cpufreq_work_fn);
Michael Neuling3e5963b2016-03-21 22:24:52 +0530645 for_each_cpu(cpu, &chips[i].mask)
646 per_cpu(chip_info, cpu) = &chips[i];
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530647 }
648
649 return 0;
650}
651
Shilpasri G Bhatc5e29ea2016-02-26 16:06:51 +0530652static inline void clean_chip_info(void)
653{
654 kfree(chips);
Shilpasri G Bhatc5e29ea2016-02-26 16:06:51 +0530655}
656
657static inline void unregister_all_notifiers(void)
658{
659 opal_message_notifier_unregister(OPAL_MSG_OCC,
660 &powernv_cpufreq_opal_nb);
661 unregister_reboot_notifier(&powernv_cpufreq_reboot_nb);
662}
663
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530664static int __init powernv_cpufreq_init(void)
665{
666 int rc = 0;
667
Vaidyanathan Srinivasan6174bac2014-08-03 14:54:05 +0530668 /* Don't probe on pseries (guest) platforms */
Stewart Smithe4d54f72015-12-09 17:18:20 +1100669 if (!firmware_has_feature(FW_FEATURE_OPAL))
Vaidyanathan Srinivasan6174bac2014-08-03 14:54:05 +0530670 return -ENODEV;
671
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530672 /* Discover pstates from device tree and init */
673 rc = init_powernv_pstates();
Shilpasri G Bhatc5e29ea2016-02-26 16:06:51 +0530674 if (rc)
675 goto out;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530676
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530677 /* Populate chip info */
678 rc = init_chip_info();
679 if (rc)
Shilpasri G Bhatc5e29ea2016-02-26 16:06:51 +0530680 goto out;
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530681
Shilpasri G Bhatcf30af762014-09-29 15:49:11 +0200682 register_reboot_notifier(&powernv_cpufreq_reboot_nb);
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530683 opal_message_notifier_register(OPAL_MSG_OCC, &powernv_cpufreq_opal_nb);
Shilpasri G Bhatc5e29ea2016-02-26 16:06:51 +0530684
685 rc = cpufreq_register_driver(&powernv_cpufreq_driver);
686 if (!rc)
687 return 0;
688
689 pr_info("Failed to register the cpufreq driver (%d)\n", rc);
690 unregister_all_notifiers();
691 clean_chip_info();
692out:
693 pr_info("Platform driver disabled. System does not support PState control\n");
694 return rc;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530695}
696module_init(powernv_cpufreq_init);
697
698static void __exit powernv_cpufreq_exit(void)
699{
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530700 cpufreq_unregister_driver(&powernv_cpufreq_driver);
Shilpasri G Bhatc5e29ea2016-02-26 16:06:51 +0530701 unregister_all_notifiers();
702 clean_chip_info();
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530703}
704module_exit(powernv_cpufreq_exit);
705
706MODULE_LICENSE("GPL");
707MODULE_AUTHOR("Vaidyanathan Srinivasan <svaidy at linux.vnet.ibm.com>");