blob: a84724eabfb89904629022260133290648707e8b [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>
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +053039#include <linux/timer.h>
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +053040
41#define POWERNV_MAX_PSTATES 256
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +053042#define PMSR_PSAFE_ENABLE (1UL << 30)
43#define PMSR_SPR_EM_DISABLE (1UL << 31)
44#define PMSR_MAX(x) ((x >> 32) & 0xFF)
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +053045
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +053046#define MAX_RAMP_DOWN_TIME 5120
47/*
48 * On an idle system we want the global pstate to ramp-down from max value to
49 * min over a span of ~5 secs. Also we want it to initially ramp-down slowly and
50 * then ramp-down rapidly later on.
51 *
52 * This gives a percentage rampdown for time elapsed in milliseconds.
53 * ramp_down_percentage = ((ms * ms) >> 18)
54 * ~= 3.8 * (sec * sec)
55 *
56 * At 0 ms ramp_down_percent = 0
57 * At 5120 ms ramp_down_percent = 100
58 */
59#define ramp_down_percent(time) ((time * time) >> 18)
60
61/* Interval after which the timer is queued to bring down global pstate */
62#define GPSTATE_TIMER_INTERVAL 2000
63
64/**
65 * struct global_pstate_info - Per policy data structure to maintain history of
66 * global pstates
Akshay Adiga09ca4c92016-06-30 11:53:07 +053067 * @highest_lpstate_idx: The local pstate index from which we are
68 * ramping down
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +053069 * @elapsed_time: Time in ms spent in ramping down from
Akshay Adiga09ca4c92016-06-30 11:53:07 +053070 * highest_lpstate_idx
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +053071 * @last_sampled_time: Time from boot in ms when global pstates were
72 * last set
Akshay Adiga09ca4c92016-06-30 11:53:07 +053073 * @last_lpstate_idx, Last set value of local pstate and global
74 * last_gpstate_idx pstate in terms of cpufreq table index
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +053075 * @timer: Is used for ramping down if cpu goes idle for
76 * a long time with global pstate held high
77 * @gpstate_lock: A spinlock to maintain synchronization between
78 * routines called by the timer handler and
79 * governer's target_index calls
80 */
81struct global_pstate_info {
Akshay Adiga09ca4c92016-06-30 11:53:07 +053082 int highest_lpstate_idx;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +053083 unsigned int elapsed_time;
84 unsigned int last_sampled_time;
Akshay Adiga09ca4c92016-06-30 11:53:07 +053085 int last_lpstate_idx;
86 int last_gpstate_idx;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +053087 spinlock_t gpstate_lock;
88 struct timer_list timer;
89};
90
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +053091static struct cpufreq_frequency_table powernv_freqs[POWERNV_MAX_PSTATES+1];
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +053092static bool rebooting, throttled, occ_reset;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +053093
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +053094static const char * const throttle_reason[] = {
95 "No throttling",
96 "Power Cap",
97 "Processor Over Temperature",
98 "Power Supply Failure",
99 "Over Current",
100 "OCC Reset"
101};
102
Shilpasri G Bhat1b028982016-03-22 18:57:09 +0530103enum throttle_reason_type {
104 NO_THROTTLE = 0,
105 POWERCAP,
106 CPU_OVERTEMP,
107 POWER_SUPPLY_FAILURE,
108 OVERCURRENT,
109 OCC_RESET_THROTTLE,
110 OCC_MAX_REASON
111};
112
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530113static struct chip {
114 unsigned int id;
115 bool throttled;
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +0530116 bool restore;
117 u8 throttle_reason;
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530118 cpumask_t mask;
119 struct work_struct throttle;
Shilpasri G Bhat1b028982016-03-22 18:57:09 +0530120 int throttle_turbo;
121 int throttle_sub_turbo;
122 int reason[OCC_MAX_REASON];
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530123} *chips;
124
125static int nr_chips;
Michael Neuling3e5963b2016-03-21 22:24:52 +0530126static DEFINE_PER_CPU(struct chip *, chip_info);
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530127
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530128/*
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530129 * Note:
130 * The set of pstates consists of contiguous integers.
131 * powernv_pstate_info stores the index of the frequency table for
132 * max, min and nominal frequencies. It also stores number of
133 * available frequencies.
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530134 *
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530135 * powernv_pstate_info.nominal indicates the index to the highest
136 * non-turbo frequency.
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530137 */
138static struct powernv_pstate_info {
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530139 unsigned int min;
140 unsigned int max;
141 unsigned int nominal;
142 unsigned int nr_pstates;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530143} powernv_pstate_info;
144
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530145/* Use following macros for conversions between pstate_id and index */
146static inline int idx_to_pstate(unsigned int i)
147{
Akshay Adiga8e859462016-08-04 20:59:17 +0530148 if (unlikely(i >= powernv_pstate_info.nr_pstates)) {
149 pr_warn_once("index %u is out of bound\n", i);
150 return powernv_freqs[powernv_pstate_info.nominal].driver_data;
151 }
152
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530153 return powernv_freqs[i].driver_data;
154}
155
156static inline unsigned int pstate_to_idx(int pstate)
157{
Akshay Adiga8e859462016-08-04 20:59:17 +0530158 int min = powernv_freqs[powernv_pstate_info.min].driver_data;
159 int max = powernv_freqs[powernv_pstate_info.max].driver_data;
160
161 if (min > 0) {
162 if (unlikely((pstate < max) || (pstate > min))) {
163 pr_warn_once("pstate %d is out of bound\n", pstate);
164 return powernv_pstate_info.nominal;
165 }
166 } else {
167 if (unlikely((pstate > max) || (pstate < min))) {
168 pr_warn_once("pstate %d is out of bound\n", pstate);
169 return powernv_pstate_info.nominal;
170 }
171 }
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530172 /*
173 * abs() is deliberately used so that is works with
174 * both monotonically increasing and decreasing
175 * pstate values
176 */
177 return abs(pstate - idx_to_pstate(powernv_pstate_info.max));
178}
179
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530180static inline void reset_gpstates(struct cpufreq_policy *policy)
181{
182 struct global_pstate_info *gpstates = policy->driver_data;
183
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530184 gpstates->highest_lpstate_idx = 0;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530185 gpstates->elapsed_time = 0;
186 gpstates->last_sampled_time = 0;
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530187 gpstates->last_lpstate_idx = 0;
188 gpstates->last_gpstate_idx = 0;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530189}
190
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530191/*
192 * Initialize the freq table based on data obtained
193 * from the firmware passed via device-tree
194 */
195static int init_powernv_pstates(void)
196{
197 struct device_node *power_mgt;
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530198 int i, nr_pstates = 0;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530199 const __be32 *pstate_ids, *pstate_freqs;
200 u32 len_ids, len_freqs;
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530201 u32 pstate_min, pstate_max, pstate_nominal;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530202
203 power_mgt = of_find_node_by_path("/ibm,opal/power-mgt");
204 if (!power_mgt) {
205 pr_warn("power-mgt node not found\n");
206 return -ENODEV;
207 }
208
209 if (of_property_read_u32(power_mgt, "ibm,pstate-min", &pstate_min)) {
210 pr_warn("ibm,pstate-min node not found\n");
211 return -ENODEV;
212 }
213
214 if (of_property_read_u32(power_mgt, "ibm,pstate-max", &pstate_max)) {
215 pr_warn("ibm,pstate-max node not found\n");
216 return -ENODEV;
217 }
218
219 if (of_property_read_u32(power_mgt, "ibm,pstate-nominal",
220 &pstate_nominal)) {
221 pr_warn("ibm,pstate-nominal not found\n");
222 return -ENODEV;
223 }
224 pr_info("cpufreq pstate min %d nominal %d max %d\n", pstate_min,
225 pstate_nominal, pstate_max);
226
227 pstate_ids = of_get_property(power_mgt, "ibm,pstate-ids", &len_ids);
228 if (!pstate_ids) {
229 pr_warn("ibm,pstate-ids not found\n");
230 return -ENODEV;
231 }
232
233 pstate_freqs = of_get_property(power_mgt, "ibm,pstate-frequencies-mhz",
234 &len_freqs);
235 if (!pstate_freqs) {
236 pr_warn("ibm,pstate-frequencies-mhz not found\n");
237 return -ENODEV;
238 }
239
Vaidyanathan Srinivasan6174bac2014-08-03 14:54:05 +0530240 if (len_ids != len_freqs) {
241 pr_warn("Entries in ibm,pstate-ids and "
242 "ibm,pstate-frequencies-mhz does not match\n");
243 }
244
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530245 nr_pstates = min(len_ids, len_freqs) / sizeof(u32);
246 if (!nr_pstates) {
247 pr_warn("No PStates found\n");
248 return -ENODEV;
249 }
250
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530251 powernv_pstate_info.nr_pstates = nr_pstates;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530252 pr_debug("NR PStates %d\n", nr_pstates);
253 for (i = 0; i < nr_pstates; i++) {
254 u32 id = be32_to_cpu(pstate_ids[i]);
255 u32 freq = be32_to_cpu(pstate_freqs[i]);
256
257 pr_debug("PState id %d freq %d MHz\n", id, freq);
258 powernv_freqs[i].frequency = freq * 1000; /* kHz */
Gautham R. Shenoy0692c692014-04-01 12:43:27 +0530259 powernv_freqs[i].driver_data = id;
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530260
261 if (id == pstate_max)
262 powernv_pstate_info.max = i;
263 else if (id == pstate_nominal)
264 powernv_pstate_info.nominal = i;
265 else if (id == pstate_min)
266 powernv_pstate_info.min = i;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530267 }
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530268
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530269 /* End of list marker entry */
270 powernv_freqs[i].frequency = CPUFREQ_TABLE_END;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530271 return 0;
272}
273
274/* Returns the CPU frequency corresponding to the pstate_id. */
275static unsigned int pstate_id_to_freq(int pstate_id)
276{
277 int i;
278
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530279 i = pstate_to_idx(pstate_id);
Vaidyanathan Srinivasan6174bac2014-08-03 14:54:05 +0530280 if (i >= powernv_pstate_info.nr_pstates || i < 0) {
281 pr_warn("PState id %d outside of PState table, "
282 "reporting nominal id %d instead\n",
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530283 pstate_id, idx_to_pstate(powernv_pstate_info.nominal));
284 i = powernv_pstate_info.nominal;
Vaidyanathan Srinivasan6174bac2014-08-03 14:54:05 +0530285 }
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530286
287 return powernv_freqs[i].frequency;
288}
289
290/*
291 * cpuinfo_nominal_freq_show - Show the nominal CPU frequency as indicated by
292 * the firmware
293 */
294static ssize_t cpuinfo_nominal_freq_show(struct cpufreq_policy *policy,
295 char *buf)
296{
297 return sprintf(buf, "%u\n",
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530298 powernv_freqs[powernv_pstate_info.nominal].frequency);
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530299}
300
301struct freq_attr cpufreq_freq_attr_cpuinfo_nominal_freq =
302 __ATTR_RO(cpuinfo_nominal_freq);
303
304static struct freq_attr *powernv_cpu_freq_attr[] = {
305 &cpufreq_freq_attr_scaling_available_freqs,
306 &cpufreq_freq_attr_cpuinfo_nominal_freq,
307 NULL,
308};
309
Shilpasri G Bhat1b028982016-03-22 18:57:09 +0530310#define throttle_attr(name, member) \
311static ssize_t name##_show(struct cpufreq_policy *policy, char *buf) \
312{ \
313 struct chip *chip = per_cpu(chip_info, policy->cpu); \
314 \
315 return sprintf(buf, "%u\n", chip->member); \
316} \
317 \
318static struct freq_attr throttle_attr_##name = __ATTR_RO(name) \
319
320throttle_attr(unthrottle, reason[NO_THROTTLE]);
321throttle_attr(powercap, reason[POWERCAP]);
322throttle_attr(overtemp, reason[CPU_OVERTEMP]);
323throttle_attr(supply_fault, reason[POWER_SUPPLY_FAILURE]);
324throttle_attr(overcurrent, reason[OVERCURRENT]);
325throttle_attr(occ_reset, reason[OCC_RESET_THROTTLE]);
326throttle_attr(turbo_stat, throttle_turbo);
327throttle_attr(sub_turbo_stat, throttle_sub_turbo);
328
329static struct attribute *throttle_attrs[] = {
330 &throttle_attr_unthrottle.attr,
331 &throttle_attr_powercap.attr,
332 &throttle_attr_overtemp.attr,
333 &throttle_attr_supply_fault.attr,
334 &throttle_attr_overcurrent.attr,
335 &throttle_attr_occ_reset.attr,
336 &throttle_attr_turbo_stat.attr,
337 &throttle_attr_sub_turbo_stat.attr,
338 NULL,
339};
340
341static const struct attribute_group throttle_attr_grp = {
342 .name = "throttle_stats",
343 .attrs = throttle_attrs,
344};
345
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530346/* Helper routines */
347
348/* Access helpers to power mgt SPR */
349
350static inline unsigned long get_pmspr(unsigned long sprn)
351{
352 switch (sprn) {
353 case SPRN_PMCR:
354 return mfspr(SPRN_PMCR);
355
356 case SPRN_PMICR:
357 return mfspr(SPRN_PMICR);
358
359 case SPRN_PMSR:
360 return mfspr(SPRN_PMSR);
361 }
362 BUG();
363}
364
365static inline void set_pmspr(unsigned long sprn, unsigned long val)
366{
367 switch (sprn) {
368 case SPRN_PMCR:
369 mtspr(SPRN_PMCR, val);
370 return;
371
372 case SPRN_PMICR:
373 mtspr(SPRN_PMICR, val);
374 return;
375 }
376 BUG();
377}
378
379/*
380 * Use objects of this type to query/update
381 * pstates on a remote CPU via smp_call_function.
382 */
383struct powernv_smp_call_data {
384 unsigned int freq;
385 int pstate_id;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530386 int gpstate_id;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530387};
388
389/*
390 * powernv_read_cpu_freq: Reads the current frequency on this CPU.
391 *
392 * Called via smp_call_function.
393 *
394 * Note: The caller of the smp_call_function should pass an argument of
395 * the type 'struct powernv_smp_call_data *' along with this function.
396 *
397 * The current frequency on this CPU will be returned via
398 * ((struct powernv_smp_call_data *)arg)->freq;
399 */
400static void powernv_read_cpu_freq(void *arg)
401{
402 unsigned long pmspr_val;
403 s8 local_pstate_id;
404 struct powernv_smp_call_data *freq_data = arg;
405
406 pmspr_val = get_pmspr(SPRN_PMSR);
407
408 /*
409 * The local pstate id corresponds bits 48..55 in the PMSR.
410 * Note: Watch out for the sign!
411 */
412 local_pstate_id = (pmspr_val >> 48) & 0xFF;
413 freq_data->pstate_id = local_pstate_id;
414 freq_data->freq = pstate_id_to_freq(freq_data->pstate_id);
415
416 pr_debug("cpu %d pmsr %016lX pstate_id %d frequency %d kHz\n",
417 raw_smp_processor_id(), pmspr_val, freq_data->pstate_id,
418 freq_data->freq);
419}
420
421/*
422 * powernv_cpufreq_get: Returns the CPU frequency as reported by the
423 * firmware for CPU 'cpu'. This value is reported through the sysfs
424 * file cpuinfo_cur_freq.
425 */
Brian Norris60d1ea42014-05-11 00:51:20 -0700426static unsigned int powernv_cpufreq_get(unsigned int cpu)
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530427{
428 struct powernv_smp_call_data freq_data;
429
430 smp_call_function_any(cpu_sibling_mask(cpu), powernv_read_cpu_freq,
431 &freq_data, 1);
432
433 return freq_data.freq;
434}
435
436/*
437 * set_pstate: Sets the pstate on this CPU.
438 *
439 * This is called via an smp_call_function.
440 *
441 * The caller must ensure that freq_data is of the type
442 * (struct powernv_smp_call_data *) and the pstate_id which needs to be set
443 * on this CPU should be present in freq_data->pstate_id.
444 */
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530445static void set_pstate(void *data)
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530446{
447 unsigned long val;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530448 struct powernv_smp_call_data *freq_data = data;
449 unsigned long pstate_ul = freq_data->pstate_id;
450 unsigned long gpstate_ul = freq_data->gpstate_id;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530451
452 val = get_pmspr(SPRN_PMCR);
453 val = val & 0x0000FFFFFFFFFFFFULL;
454
455 pstate_ul = pstate_ul & 0xFF;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530456 gpstate_ul = gpstate_ul & 0xFF;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530457
458 /* Set both global(bits 56..63) and local(bits 48..55) PStates */
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530459 val = val | (gpstate_ul << 56) | (pstate_ul << 48);
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530460
461 pr_debug("Setting cpu %d pmcr to %016lX\n",
462 raw_smp_processor_id(), val);
463 set_pmspr(SPRN_PMCR, val);
464}
465
466/*
Shilpasri G Bhatcf30af762014-09-29 15:49:11 +0200467 * get_nominal_index: Returns the index corresponding to the nominal
468 * pstate in the cpufreq table
469 */
470static inline unsigned int get_nominal_index(void)
471{
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530472 return powernv_pstate_info.nominal;
Shilpasri G Bhatcf30af762014-09-29 15:49:11 +0200473}
474
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530475static void powernv_cpufreq_throttle_check(void *data)
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530476{
Michael Neuling3e5963b2016-03-21 22:24:52 +0530477 struct chip *chip;
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530478 unsigned int cpu = smp_processor_id();
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530479 unsigned long pmsr;
Michael Neuling3e5963b2016-03-21 22:24:52 +0530480 int pmsr_pmax;
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530481 unsigned int pmsr_pmax_idx;
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530482
483 pmsr = get_pmspr(SPRN_PMSR);
Michael Neuling3e5963b2016-03-21 22:24:52 +0530484 chip = this_cpu_read(chip_info);
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530485
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530486 /* Check for Pmax Capping */
487 pmsr_pmax = (s8)PMSR_MAX(pmsr);
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530488 pmsr_pmax_idx = pstate_to_idx(pmsr_pmax);
489 if (pmsr_pmax_idx != powernv_pstate_info.max) {
Michael Neuling3e5963b2016-03-21 22:24:52 +0530490 if (chip->throttled)
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530491 goto next;
Michael Neuling3e5963b2016-03-21 22:24:52 +0530492 chip->throttled = true;
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530493 if (pmsr_pmax_idx > powernv_pstate_info.nominal) {
494 pr_warn_once("CPU %d on Chip %u has Pmax(%d) reduced below nominal frequency(%d)\n",
Michael Neuling3e5963b2016-03-21 22:24:52 +0530495 cpu, chip->id, pmsr_pmax,
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530496 idx_to_pstate(powernv_pstate_info.nominal));
Shilpasri G Bhat1b028982016-03-22 18:57:09 +0530497 chip->throttle_sub_turbo++;
498 } else {
499 chip->throttle_turbo++;
500 }
Michael Neuling3e5963b2016-03-21 22:24:52 +0530501 trace_powernv_throttle(chip->id,
502 throttle_reason[chip->throttle_reason],
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +0530503 pmsr_pmax);
Michael Neuling3e5963b2016-03-21 22:24:52 +0530504 } else if (chip->throttled) {
505 chip->throttled = false;
506 trace_powernv_throttle(chip->id,
507 throttle_reason[chip->throttle_reason],
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +0530508 pmsr_pmax);
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530509 }
510
Shilpasri G Bhat3dd3ebe2015-07-16 13:34:22 +0530511 /* Check if Psafe_mode_active is set in PMSR. */
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530512next:
Shilpasri G Bhat3dd3ebe2015-07-16 13:34:22 +0530513 if (pmsr & PMSR_PSAFE_ENABLE) {
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530514 throttled = true;
515 pr_info("Pstate set to safe frequency\n");
516 }
517
518 /* Check if SPR_EM_DISABLE is set in PMSR */
519 if (pmsr & PMSR_SPR_EM_DISABLE) {
520 throttled = true;
521 pr_info("Frequency Control disabled from OS\n");
522 }
523
524 if (throttled) {
525 pr_info("PMSR = %16lx\n", pmsr);
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +0530526 pr_warn("CPU Frequency could be throttled\n");
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530527 }
528}
529
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530530/**
531 * calc_global_pstate - Calculate global pstate
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530532 * @elapsed_time: Elapsed time in milliseconds
533 * @local_pstate_idx: New local pstate
534 * @highest_lpstate_idx: pstate from which its ramping down
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530535 *
536 * Finds the appropriate global pstate based on the pstate from which its
537 * ramping down and the time elapsed in ramping down. It follows a quadratic
538 * equation which ensures that it reaches ramping down to pmin in 5sec.
539 */
540static inline int calc_global_pstate(unsigned int elapsed_time,
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530541 int highest_lpstate_idx,
542 int local_pstate_idx)
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530543{
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530544 int index_diff;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530545
546 /*
547 * Using ramp_down_percent we get the percentage of rampdown
548 * that we are expecting to be dropping. Difference between
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530549 * highest_lpstate_idx and powernv_pstate_info.min will give a absolute
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530550 * number of how many pstates we will drop eventually by the end of
551 * 5 seconds, then just scale it get the number pstates to be dropped.
552 */
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530553 index_diff = ((int)ramp_down_percent(elapsed_time) *
554 (powernv_pstate_info.min - highest_lpstate_idx)) / 100;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530555
556 /* Ensure that global pstate is >= to local pstate */
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530557 if (highest_lpstate_idx + index_diff >= local_pstate_idx)
558 return local_pstate_idx;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530559 else
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530560 return highest_lpstate_idx + index_diff;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530561}
562
563static inline void queue_gpstate_timer(struct global_pstate_info *gpstates)
564{
565 unsigned int timer_interval;
566
567 /*
568 * Setting up timer to fire after GPSTATE_TIMER_INTERVAL ms, But
569 * if it exceeds MAX_RAMP_DOWN_TIME ms for ramp down time.
570 * Set timer such that it fires exactly at MAX_RAMP_DOWN_TIME
571 * seconds of ramp down time.
572 */
573 if ((gpstates->elapsed_time + GPSTATE_TIMER_INTERVAL)
574 > MAX_RAMP_DOWN_TIME)
575 timer_interval = MAX_RAMP_DOWN_TIME - gpstates->elapsed_time;
576 else
577 timer_interval = GPSTATE_TIMER_INTERVAL;
578
Thomas Gleixner7bc54b62016-07-04 09:50:18 +0000579 mod_timer(&gpstates->timer, jiffies + msecs_to_jiffies(timer_interval));
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530580}
581
582/**
583 * gpstate_timer_handler
584 *
585 * @data: pointer to cpufreq_policy on which timer was queued
586 *
587 * This handler brings down the global pstate closer to the local pstate
588 * according quadratic equation. Queues a new timer if it is still not equal
589 * to local pstate
590 */
591void gpstate_timer_handler(unsigned long data)
592{
593 struct cpufreq_policy *policy = (struct cpufreq_policy *)data;
594 struct global_pstate_info *gpstates = policy->driver_data;
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530595 int gpstate_idx;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530596 unsigned int time_diff = jiffies_to_msecs(jiffies)
597 - gpstates->last_sampled_time;
598 struct powernv_smp_call_data freq_data;
599
600 if (!spin_trylock(&gpstates->gpstate_lock))
601 return;
602
603 gpstates->last_sampled_time += time_diff;
604 gpstates->elapsed_time += time_diff;
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530605 freq_data.pstate_id = idx_to_pstate(gpstates->last_lpstate_idx);
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530606
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530607 if ((gpstates->last_gpstate_idx == gpstates->last_lpstate_idx) ||
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530608 (gpstates->elapsed_time > MAX_RAMP_DOWN_TIME)) {
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530609 gpstate_idx = pstate_to_idx(freq_data.pstate_id);
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530610 reset_gpstates(policy);
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530611 gpstates->highest_lpstate_idx = gpstate_idx;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530612 } else {
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530613 gpstate_idx = calc_global_pstate(gpstates->elapsed_time,
614 gpstates->highest_lpstate_idx,
Akshay Adiga8e859462016-08-04 20:59:17 +0530615 gpstates->last_lpstate_idx);
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530616 }
617
618 /*
619 * If local pstate is equal to global pstate, rampdown is over
620 * So timer is not required to be queued.
621 */
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530622 if (gpstate_idx != gpstates->last_lpstate_idx)
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530623 queue_gpstate_timer(gpstates);
624
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530625 freq_data.gpstate_id = idx_to_pstate(gpstate_idx);
626 gpstates->last_gpstate_idx = pstate_to_idx(freq_data.gpstate_id);
627 gpstates->last_lpstate_idx = pstate_to_idx(freq_data.pstate_id);
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530628
Akshay Adiga1fd3ff22016-05-03 20:49:35 +0530629 spin_unlock(&gpstates->gpstate_lock);
630
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530631 /* Timer may get migrated to a different cpu on cpu hot unplug */
632 smp_call_function_any(policy->cpus, set_pstate, &freq_data, 1);
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530633}
634
Shilpasri G Bhatcf30af762014-09-29 15:49:11 +0200635/*
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530636 * powernv_cpufreq_target_index: Sets the frequency corresponding to
637 * the cpufreq table entry indexed by new_index on the cpus in the
638 * mask policy->cpus
639 */
640static int powernv_cpufreq_target_index(struct cpufreq_policy *policy,
641 unsigned int new_index)
642{
643 struct powernv_smp_call_data freq_data;
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530644 unsigned int cur_msec, gpstate_idx;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530645 struct global_pstate_info *gpstates = policy->driver_data;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530646
Shilpasri G Bhatcf30af762014-09-29 15:49:11 +0200647 if (unlikely(rebooting) && new_index != get_nominal_index())
648 return 0;
649
Denis Kirjanov89c728e2016-11-08 05:39:28 -0500650 if (!throttled) {
651 /* we don't want to be preempted while
652 * checking if the CPU frequency has been throttled
653 */
654 preempt_disable();
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530655 powernv_cpufreq_throttle_check(NULL);
Denis Kirjanov89c728e2016-11-08 05:39:28 -0500656 preempt_enable();
657 }
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530658
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530659 cur_msec = jiffies_to_msecs(get_jiffies_64());
660
Akshay Adiga1fd3ff22016-05-03 20:49:35 +0530661 spin_lock(&gpstates->gpstate_lock);
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530662 freq_data.pstate_id = idx_to_pstate(new_index);
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530663
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530664 if (!gpstates->last_sampled_time) {
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530665 gpstate_idx = new_index;
666 gpstates->highest_lpstate_idx = new_index;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530667 goto gpstates_done;
668 }
669
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530670 if (gpstates->last_gpstate_idx < new_index) {
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530671 gpstates->elapsed_time += cur_msec -
672 gpstates->last_sampled_time;
673
674 /*
675 * If its has been ramping down for more than MAX_RAMP_DOWN_TIME
676 * we should be resetting all global pstate related data. Set it
677 * equal to local pstate to start fresh.
678 */
679 if (gpstates->elapsed_time > MAX_RAMP_DOWN_TIME) {
680 reset_gpstates(policy);
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530681 gpstates->highest_lpstate_idx = new_index;
682 gpstate_idx = new_index;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530683 } else {
684 /* Elaspsed_time is less than 5 seconds, continue to rampdown */
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530685 gpstate_idx = calc_global_pstate(gpstates->elapsed_time,
686 gpstates->highest_lpstate_idx,
687 new_index);
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530688 }
689 } else {
690 reset_gpstates(policy);
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530691 gpstates->highest_lpstate_idx = new_index;
692 gpstate_idx = new_index;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530693 }
694
695 /*
696 * If local pstate is equal to global pstate, rampdown is over
697 * So timer is not required to be queued.
698 */
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530699 if (gpstate_idx != new_index)
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530700 queue_gpstate_timer(gpstates);
Akshay Adiga0bc10b92016-05-03 20:49:36 +0530701 else
702 del_timer_sync(&gpstates->timer);
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530703
704gpstates_done:
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530705 freq_data.gpstate_id = idx_to_pstate(gpstate_idx);
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530706 gpstates->last_sampled_time = cur_msec;
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530707 gpstates->last_gpstate_idx = gpstate_idx;
708 gpstates->last_lpstate_idx = new_index;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530709
Akshay Adiga1fd3ff22016-05-03 20:49:35 +0530710 spin_unlock(&gpstates->gpstate_lock);
711
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530712 /*
713 * Use smp_call_function to send IPI and execute the
714 * mtspr on target CPU. We could do that without IPI
715 * if current CPU is within policy->cpus (core)
716 */
717 smp_call_function_any(policy->cpus, set_pstate, &freq_data, 1);
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530718 return 0;
719}
720
721static int powernv_cpufreq_cpu_init(struct cpufreq_policy *policy)
722{
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530723 int base, i, ret;
Shilpasri G Bhat2920e9c2016-04-19 15:28:00 +0530724 struct kernfs_node *kn;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530725 struct global_pstate_info *gpstates;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530726
727 base = cpu_first_thread_sibling(policy->cpu);
728
729 for (i = 0; i < threads_per_core; i++)
730 cpumask_set_cpu(base + i, policy->cpus);
731
Shilpasri G Bhat2920e9c2016-04-19 15:28:00 +0530732 kn = kernfs_find_and_get(policy->kobj.sd, throttle_attr_grp.name);
733 if (!kn) {
Shilpasri G Bhat1b028982016-03-22 18:57:09 +0530734 int ret;
735
736 ret = sysfs_create_group(&policy->kobj, &throttle_attr_grp);
737 if (ret) {
738 pr_info("Failed to create throttle stats directory for cpu %d\n",
739 policy->cpu);
740 return ret;
741 }
Shilpasri G Bhat2920e9c2016-04-19 15:28:00 +0530742 } else {
743 kernfs_put(kn);
Shilpasri G Bhat1b028982016-03-22 18:57:09 +0530744 }
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530745
746 gpstates = kzalloc(sizeof(*gpstates), GFP_KERNEL);
747 if (!gpstates)
748 return -ENOMEM;
749
750 policy->driver_data = gpstates;
751
752 /* initialize timer */
Thomas Gleixner7bc54b62016-07-04 09:50:18 +0000753 init_timer_pinned_deferrable(&gpstates->timer);
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530754 gpstates->timer.data = (unsigned long)policy;
755 gpstates->timer.function = gpstate_timer_handler;
756 gpstates->timer.expires = jiffies +
757 msecs_to_jiffies(GPSTATE_TIMER_INTERVAL);
758 spin_lock_init(&gpstates->gpstate_lock);
759 ret = cpufreq_table_validate_and_show(policy, powernv_freqs);
760
761 if (ret < 0)
762 kfree(policy->driver_data);
763
764 return ret;
765}
766
767static int powernv_cpufreq_cpu_exit(struct cpufreq_policy *policy)
768{
769 /* timer is deleted in cpufreq_cpu_stop() */
770 kfree(policy->driver_data);
771
772 return 0;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530773}
774
Shilpasri G Bhatcf30af762014-09-29 15:49:11 +0200775static int powernv_cpufreq_reboot_notifier(struct notifier_block *nb,
776 unsigned long action, void *unused)
777{
778 int cpu;
779 struct cpufreq_policy cpu_policy;
780
781 rebooting = true;
782 for_each_online_cpu(cpu) {
783 cpufreq_get_policy(&cpu_policy, cpu);
784 powernv_cpufreq_target_index(&cpu_policy, get_nominal_index());
785 }
786
787 return NOTIFY_DONE;
788}
789
790static struct notifier_block powernv_cpufreq_reboot_nb = {
791 .notifier_call = powernv_cpufreq_reboot_notifier,
792};
793
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530794void powernv_cpufreq_work_fn(struct work_struct *work)
795{
796 struct chip *chip = container_of(work, struct chip, throttle);
Shilpasri G Bhat227942802015-07-16 13:34:23 +0530797 unsigned int cpu;
Shilpasri G Bhat6d167a42016-02-03 01:11:38 +0530798 cpumask_t mask;
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530799
Shilpasri G Bhat6d167a42016-02-03 01:11:38 +0530800 get_online_cpus();
801 cpumask_and(&mask, &chip->mask, cpu_online_mask);
802 smp_call_function_any(&mask,
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530803 powernv_cpufreq_throttle_check, NULL, 0);
Shilpasri G Bhat227942802015-07-16 13:34:23 +0530804
805 if (!chip->restore)
Shilpasri G Bhat6d167a42016-02-03 01:11:38 +0530806 goto out;
Shilpasri G Bhat227942802015-07-16 13:34:23 +0530807
808 chip->restore = false;
Shilpasri G Bhat6d167a42016-02-03 01:11:38 +0530809 for_each_cpu(cpu, &mask) {
810 int index;
Shilpasri G Bhat227942802015-07-16 13:34:23 +0530811 struct cpufreq_policy policy;
812
813 cpufreq_get_policy(&policy, cpu);
Viresh Kumar82577362016-06-27 09:59:34 +0530814 index = cpufreq_table_find_index_c(&policy, policy.cur);
Shilpasri G Bhat227942802015-07-16 13:34:23 +0530815 powernv_cpufreq_target_index(&policy, index);
Shilpasri G Bhat6d167a42016-02-03 01:11:38 +0530816 cpumask_andnot(&mask, &mask, policy.cpus);
Shilpasri G Bhat227942802015-07-16 13:34:23 +0530817 }
Shilpasri G Bhat6d167a42016-02-03 01:11:38 +0530818out:
819 put_online_cpus();
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530820}
821
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530822static int powernv_cpufreq_occ_msg(struct notifier_block *nb,
823 unsigned long msg_type, void *_msg)
824{
825 struct opal_msg *msg = _msg;
826 struct opal_occ_msg omsg;
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530827 int i;
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530828
829 if (msg_type != OPAL_MSG_OCC)
830 return 0;
831
832 omsg.type = be64_to_cpu(msg->params[0]);
833
834 switch (omsg.type) {
835 case OCC_RESET:
836 occ_reset = true;
Shilpasri G Bhat309d0632015-08-27 14:41:44 +0530837 pr_info("OCC (On Chip Controller - enforces hard thermal/power limits) Resetting\n");
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530838 /*
839 * powernv_cpufreq_throttle_check() is called in
840 * target() callback which can detect the throttle state
841 * for governors like ondemand.
842 * But static governors will not call target() often thus
843 * report throttling here.
844 */
845 if (!throttled) {
846 throttled = true;
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +0530847 pr_warn("CPU frequency is throttled for duration\n");
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530848 }
Shilpasri G Bhat309d0632015-08-27 14:41:44 +0530849
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530850 break;
851 case OCC_LOAD:
Shilpasri G Bhat309d0632015-08-27 14:41:44 +0530852 pr_info("OCC Loading, CPU frequency is throttled until OCC is started\n");
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530853 break;
854 case OCC_THROTTLE:
855 omsg.chip = be64_to_cpu(msg->params[1]);
856 omsg.throttle_status = be64_to_cpu(msg->params[2]);
857
858 if (occ_reset) {
859 occ_reset = false;
860 throttled = false;
Shilpasri G Bhat309d0632015-08-27 14:41:44 +0530861 pr_info("OCC Active, CPU frequency is no longer throttled\n");
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530862
Shilpasri G Bhat227942802015-07-16 13:34:23 +0530863 for (i = 0; i < nr_chips; i++) {
864 chips[i].restore = true;
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530865 schedule_work(&chips[i].throttle);
Shilpasri G Bhat227942802015-07-16 13:34:23 +0530866 }
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530867
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530868 return 0;
869 }
870
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530871 for (i = 0; i < nr_chips; i++)
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +0530872 if (chips[i].id == omsg.chip)
873 break;
874
875 if (omsg.throttle_status >= 0 &&
Shilpasri G Bhat1b028982016-03-22 18:57:09 +0530876 omsg.throttle_status <= OCC_MAX_THROTTLE_STATUS) {
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +0530877 chips[i].throttle_reason = omsg.throttle_status;
Shilpasri G Bhat1b028982016-03-22 18:57:09 +0530878 chips[i].reason[omsg.throttle_status]++;
879 }
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +0530880
881 if (!omsg.throttle_status)
882 chips[i].restore = true;
883
884 schedule_work(&chips[i].throttle);
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530885 }
886 return 0;
887}
888
889static struct notifier_block powernv_cpufreq_opal_nb = {
890 .notifier_call = powernv_cpufreq_occ_msg,
891 .next = NULL,
892 .priority = 0,
893};
894
Preeti U Murthyb1203392014-09-29 15:47:53 +0200895static void powernv_cpufreq_stop_cpu(struct cpufreq_policy *policy)
896{
897 struct powernv_smp_call_data freq_data;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530898 struct global_pstate_info *gpstates = policy->driver_data;
Preeti U Murthyb1203392014-09-29 15:47:53 +0200899
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530900 freq_data.pstate_id = idx_to_pstate(powernv_pstate_info.min);
901 freq_data.gpstate_id = idx_to_pstate(powernv_pstate_info.min);
Preeti U Murthyb1203392014-09-29 15:47:53 +0200902 smp_call_function_single(policy->cpu, set_pstate, &freq_data, 1);
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530903 del_timer_sync(&gpstates->timer);
Preeti U Murthyb1203392014-09-29 15:47:53 +0200904}
905
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530906static struct cpufreq_driver powernv_cpufreq_driver = {
907 .name = "powernv-cpufreq",
908 .flags = CPUFREQ_CONST_LOOPS,
909 .init = powernv_cpufreq_cpu_init,
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530910 .exit = powernv_cpufreq_cpu_exit,
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530911 .verify = cpufreq_generic_frequency_table_verify,
912 .target_index = powernv_cpufreq_target_index,
913 .get = powernv_cpufreq_get,
Preeti U Murthyb1203392014-09-29 15:47:53 +0200914 .stop_cpu = powernv_cpufreq_stop_cpu,
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530915 .attr = powernv_cpu_freq_attr,
916};
917
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530918static int init_chip_info(void)
919{
920 unsigned int chip[256];
921 unsigned int cpu, i;
922 unsigned int prev_chip_id = UINT_MAX;
923
Michael Neuling3e5963b2016-03-21 22:24:52 +0530924 for_each_possible_cpu(cpu) {
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530925 unsigned int id = cpu_to_chip_id(cpu);
926
927 if (prev_chip_id != id) {
928 prev_chip_id = id;
929 chip[nr_chips++] = id;
930 }
931 }
932
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +0530933 chips = kcalloc(nr_chips, sizeof(struct chip), GFP_KERNEL);
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530934 if (!chips)
Michael Neuling3e5963b2016-03-21 22:24:52 +0530935 return -ENOMEM;
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530936
937 for (i = 0; i < nr_chips; i++) {
938 chips[i].id = chip[i];
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530939 cpumask_copy(&chips[i].mask, cpumask_of_node(chip[i]));
940 INIT_WORK(&chips[i].throttle, powernv_cpufreq_work_fn);
Michael Neuling3e5963b2016-03-21 22:24:52 +0530941 for_each_cpu(cpu, &chips[i].mask)
942 per_cpu(chip_info, cpu) = &chips[i];
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530943 }
944
945 return 0;
946}
947
Shilpasri G Bhatc5e29ea2016-02-26 16:06:51 +0530948static inline void clean_chip_info(void)
949{
950 kfree(chips);
Shilpasri G Bhatc5e29ea2016-02-26 16:06:51 +0530951}
952
953static inline void unregister_all_notifiers(void)
954{
955 opal_message_notifier_unregister(OPAL_MSG_OCC,
956 &powernv_cpufreq_opal_nb);
957 unregister_reboot_notifier(&powernv_cpufreq_reboot_nb);
958}
959
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530960static int __init powernv_cpufreq_init(void)
961{
962 int rc = 0;
963
Vaidyanathan Srinivasan6174bac2014-08-03 14:54:05 +0530964 /* Don't probe on pseries (guest) platforms */
Stewart Smithe4d54f72015-12-09 17:18:20 +1100965 if (!firmware_has_feature(FW_FEATURE_OPAL))
Vaidyanathan Srinivasan6174bac2014-08-03 14:54:05 +0530966 return -ENODEV;
967
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530968 /* Discover pstates from device tree and init */
969 rc = init_powernv_pstates();
Shilpasri G Bhatc5e29ea2016-02-26 16:06:51 +0530970 if (rc)
971 goto out;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530972
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530973 /* Populate chip info */
974 rc = init_chip_info();
975 if (rc)
Shilpasri G Bhatc5e29ea2016-02-26 16:06:51 +0530976 goto out;
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530977
Shilpasri G Bhatcf30af762014-09-29 15:49:11 +0200978 register_reboot_notifier(&powernv_cpufreq_reboot_nb);
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530979 opal_message_notifier_register(OPAL_MSG_OCC, &powernv_cpufreq_opal_nb);
Shilpasri G Bhatc5e29ea2016-02-26 16:06:51 +0530980
981 rc = cpufreq_register_driver(&powernv_cpufreq_driver);
982 if (!rc)
983 return 0;
984
985 pr_info("Failed to register the cpufreq driver (%d)\n", rc);
986 unregister_all_notifiers();
987 clean_chip_info();
988out:
989 pr_info("Platform driver disabled. System does not support PState control\n");
990 return rc;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530991}
992module_init(powernv_cpufreq_init);
993
994static void __exit powernv_cpufreq_exit(void)
995{
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530996 cpufreq_unregister_driver(&powernv_cpufreq_driver);
Shilpasri G Bhatc5e29ea2016-02-26 16:06:51 +0530997 unregister_all_notifiers();
998 clean_chip_info();
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530999}
1000module_exit(powernv_cpufreq_exit);
1001
1002MODULE_LICENSE("GPL");
1003MODULE_AUTHOR("Vaidyanathan Srinivasan <svaidy at linux.vnet.ibm.com>");