blob: e439b43c19ebecbc35fe288c7595d753187f33f5 [file] [log] [blame]
Thomas Gleixner3e0a4e82019-05-23 11:14:55 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +05302/*
3 * POWERNV cpufreq driver for the IBM POWER processors
4 *
5 * (C) Copyright IBM 2014
6 *
7 * Author: Vaidyanathan Srinivasan <svaidy at linux.vnet.ibm.com>
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +05308 */
9
10#define pr_fmt(fmt) "powernv-cpufreq: " fmt
11
12#include <linux/kernel.h>
13#include <linux/sysfs.h>
14#include <linux/cpumask.h>
15#include <linux/module.h>
16#include <linux/cpufreq.h>
17#include <linux/smp.h>
18#include <linux/of.h>
Shilpasri G Bhatcf30af762014-09-29 15:49:11 +020019#include <linux/reboot.h>
Shilpasri G Bhat053819e2015-07-16 13:34:18 +053020#include <linux/slab.h>
Shilpasri G Bhat6d167a42016-02-03 01:11:38 +053021#include <linux/cpu.h>
Gautham R. Shenoy332f0a02017-12-13 12:27:40 +053022#include <linux/hashtable.h>
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +053023#include <trace/events/power.h>
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +053024
25#include <asm/cputhreads.h>
Vaidyanathan Srinivasan6174bac2014-08-03 14:54:05 +053026#include <asm/firmware.h>
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +053027#include <asm/reg.h>
Srivatsa S. Bhatf3cae352014-04-16 11:35:38 +053028#include <asm/smp.h> /* Required for cpu_sibling_mask() in UP configs */
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +053029#include <asm/opal.h>
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +053030#include <linux/timer.h>
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +053031
Gautham R. Shenoy332f0a02017-12-13 12:27:40 +053032#define POWERNV_MAX_PSTATES_ORDER 8
33#define POWERNV_MAX_PSTATES (1UL << (POWERNV_MAX_PSTATES_ORDER))
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +053034#define PMSR_PSAFE_ENABLE (1UL << 30)
35#define PMSR_SPR_EM_DISABLE (1UL << 31)
Gautham R. Shenoyee1f4a72017-12-13 12:27:39 +053036#define MAX_PSTATE_SHIFT 32
Akshay Adiga20b15b72016-11-08 19:03:28 +053037#define LPSTATE_SHIFT 48
38#define GPSTATE_SHIFT 56
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +053039
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +053040#define MAX_RAMP_DOWN_TIME 5120
41/*
42 * On an idle system we want the global pstate to ramp-down from max value to
43 * min over a span of ~5 secs. Also we want it to initially ramp-down slowly and
44 * then ramp-down rapidly later on.
45 *
46 * This gives a percentage rampdown for time elapsed in milliseconds.
47 * ramp_down_percentage = ((ms * ms) >> 18)
48 * ~= 3.8 * (sec * sec)
49 *
50 * At 0 ms ramp_down_percent = 0
51 * At 5120 ms ramp_down_percent = 100
52 */
53#define ramp_down_percent(time) ((time * time) >> 18)
54
55/* Interval after which the timer is queued to bring down global pstate */
56#define GPSTATE_TIMER_INTERVAL 2000
57
58/**
59 * struct global_pstate_info - Per policy data structure to maintain history of
60 * global pstates
Akshay Adiga09ca4c92016-06-30 11:53:07 +053061 * @highest_lpstate_idx: The local pstate index from which we are
62 * ramping down
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +053063 * @elapsed_time: Time in ms spent in ramping down from
Akshay Adiga09ca4c92016-06-30 11:53:07 +053064 * highest_lpstate_idx
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +053065 * @last_sampled_time: Time from boot in ms when global pstates were
66 * last set
Lee Jones44bd9a32020-07-15 09:26:28 +010067 * @last_lpstate_idx: Last set value of local pstate and global
68 * @last_gpstate_idx: pstate in terms of cpufreq table index
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +053069 * @timer: Is used for ramping down if cpu goes idle for
70 * a long time with global pstate held high
71 * @gpstate_lock: A spinlock to maintain synchronization between
72 * routines called by the timer handler and
73 * governer's target_index calls
Lee Jones44bd9a32020-07-15 09:26:28 +010074 * @policy: Associated CPUFreq policy
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +053075 */
76struct global_pstate_info {
Akshay Adiga09ca4c92016-06-30 11:53:07 +053077 int highest_lpstate_idx;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +053078 unsigned int elapsed_time;
79 unsigned int last_sampled_time;
Akshay Adiga09ca4c92016-06-30 11:53:07 +053080 int last_lpstate_idx;
81 int last_gpstate_idx;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +053082 spinlock_t gpstate_lock;
83 struct timer_list timer;
Kees Cook1d1fe902017-10-04 16:26:56 -070084 struct cpufreq_policy *policy;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +053085};
86
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +053087static struct cpufreq_frequency_table powernv_freqs[POWERNV_MAX_PSTATES+1];
Gautham R. Shenoy332f0a02017-12-13 12:27:40 +053088
Wei Yongjun133c6c82020-07-14 22:23:55 +080089static DEFINE_HASHTABLE(pstate_revmap, POWERNV_MAX_PSTATES_ORDER);
Gautham R. Shenoy332f0a02017-12-13 12:27:40 +053090/**
91 * struct pstate_idx_revmap_data: Entry in the hashmap pstate_revmap
92 * indexed by a function of pstate id.
93 *
94 * @pstate_id: pstate id for this entry.
95 *
96 * @cpufreq_table_idx: Index into the powernv_freqs
97 * cpufreq_frequency_table for frequency
98 * corresponding to pstate_id.
99 *
100 * @hentry: hlist_node that hooks this entry into the pstate_revmap
101 * hashtable
102 */
103struct pstate_idx_revmap_data {
Gautham R. Shenoy967b87f2017-12-13 12:27:41 +0530104 u8 pstate_id;
Gautham R. Shenoy332f0a02017-12-13 12:27:40 +0530105 unsigned int cpufreq_table_idx;
106 struct hlist_node hentry;
107};
108
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530109static bool rebooting, throttled, occ_reset;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530110
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +0530111static const char * const throttle_reason[] = {
112 "No throttling",
113 "Power Cap",
114 "Processor Over Temperature",
115 "Power Supply Failure",
116 "Over Current",
117 "OCC Reset"
118};
119
Shilpasri G Bhat1b028982016-03-22 18:57:09 +0530120enum throttle_reason_type {
121 NO_THROTTLE = 0,
122 POWERCAP,
123 CPU_OVERTEMP,
124 POWER_SUPPLY_FAILURE,
125 OVERCURRENT,
126 OCC_RESET_THROTTLE,
127 OCC_MAX_REASON
128};
129
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530130static struct chip {
131 unsigned int id;
132 bool throttled;
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +0530133 bool restore;
134 u8 throttle_reason;
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530135 cpumask_t mask;
136 struct work_struct throttle;
Shilpasri G Bhat1b028982016-03-22 18:57:09 +0530137 int throttle_turbo;
138 int throttle_sub_turbo;
139 int reason[OCC_MAX_REASON];
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530140} *chips;
141
142static int nr_chips;
Michael Neuling3e5963b2016-03-21 22:24:52 +0530143static DEFINE_PER_CPU(struct chip *, chip_info);
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530144
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530145/*
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530146 * Note:
147 * The set of pstates consists of contiguous integers.
148 * powernv_pstate_info stores the index of the frequency table for
149 * max, min and nominal frequencies. It also stores number of
150 * available frequencies.
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530151 *
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530152 * powernv_pstate_info.nominal indicates the index to the highest
153 * non-turbo frequency.
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530154 */
155static struct powernv_pstate_info {
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530156 unsigned int min;
157 unsigned int max;
158 unsigned int nominal;
159 unsigned int nr_pstates;
Shilpasri G Bhatb12f7a22017-01-03 16:36:00 +0530160 bool wof_enabled;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530161} powernv_pstate_info;
162
Gautham R. Shenoy967b87f2017-12-13 12:27:41 +0530163static inline u8 extract_pstate(u64 pmsr_val, unsigned int shift)
Gautham R. Shenoyee1f4a72017-12-13 12:27:39 +0530164{
Gautham R. Shenoy967b87f2017-12-13 12:27:41 +0530165 return ((pmsr_val >> shift) & 0xFF);
Gautham R. Shenoyee1f4a72017-12-13 12:27:39 +0530166}
167
168#define extract_local_pstate(x) extract_pstate(x, LPSTATE_SHIFT)
169#define extract_global_pstate(x) extract_pstate(x, GPSTATE_SHIFT)
170#define extract_max_pstate(x) extract_pstate(x, MAX_PSTATE_SHIFT)
171
Gautham R. Shenoy332f0a02017-12-13 12:27:40 +0530172/* Use following functions for conversions between pstate_id and index */
173
Lee Jones44bd9a32020-07-15 09:26:28 +0100174/*
Gautham R. Shenoy332f0a02017-12-13 12:27:40 +0530175 * idx_to_pstate : Returns the pstate id corresponding to the
176 * frequency in the cpufreq frequency table
177 * powernv_freqs indexed by @i.
178 *
179 * If @i is out of bound, this will return the pstate
180 * corresponding to the nominal frequency.
181 */
Gautham R. Shenoy967b87f2017-12-13 12:27:41 +0530182static inline u8 idx_to_pstate(unsigned int i)
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530183{
Akshay Adiga8e859462016-08-04 20:59:17 +0530184 if (unlikely(i >= powernv_pstate_info.nr_pstates)) {
Gautham R. Shenoy332f0a02017-12-13 12:27:40 +0530185 pr_warn_once("idx_to_pstate: index %u is out of bound\n", i);
Akshay Adiga8e859462016-08-04 20:59:17 +0530186 return powernv_freqs[powernv_pstate_info.nominal].driver_data;
187 }
188
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530189 return powernv_freqs[i].driver_data;
190}
191
Lee Jones44bd9a32020-07-15 09:26:28 +0100192/*
Gautham R. Shenoy332f0a02017-12-13 12:27:40 +0530193 * pstate_to_idx : Returns the index in the cpufreq frequencytable
194 * powernv_freqs for the frequency whose corresponding
195 * pstate id is @pstate.
196 *
197 * If no frequency corresponding to @pstate is found,
198 * this will return the index of the nominal
199 * frequency.
200 */
Gautham R. Shenoy967b87f2017-12-13 12:27:41 +0530201static unsigned int pstate_to_idx(u8 pstate)
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530202{
Gautham R. Shenoy332f0a02017-12-13 12:27:40 +0530203 unsigned int key = pstate % POWERNV_MAX_PSTATES;
204 struct pstate_idx_revmap_data *revmap_data;
Akshay Adiga8e859462016-08-04 20:59:17 +0530205
Gautham R. Shenoy332f0a02017-12-13 12:27:40 +0530206 hash_for_each_possible(pstate_revmap, revmap_data, hentry, key) {
207 if (revmap_data->pstate_id == pstate)
208 return revmap_data->cpufreq_table_idx;
Akshay Adiga8e859462016-08-04 20:59:17 +0530209 }
Gautham R. Shenoy332f0a02017-12-13 12:27:40 +0530210
Gautham R. Shenoy967b87f2017-12-13 12:27:41 +0530211 pr_warn_once("pstate_to_idx: pstate 0x%x not found\n", pstate);
Gautham R. Shenoy332f0a02017-12-13 12:27:40 +0530212 return powernv_pstate_info.nominal;
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530213}
214
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530215static inline void reset_gpstates(struct cpufreq_policy *policy)
216{
217 struct global_pstate_info *gpstates = policy->driver_data;
218
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530219 gpstates->highest_lpstate_idx = 0;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530220 gpstates->elapsed_time = 0;
221 gpstates->last_sampled_time = 0;
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530222 gpstates->last_lpstate_idx = 0;
223 gpstates->last_gpstate_idx = 0;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530224}
225
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530226/*
227 * Initialize the freq table based on data obtained
228 * from the firmware passed via device-tree
229 */
230static int init_powernv_pstates(void)
231{
232 struct device_node *power_mgt;
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530233 int i, nr_pstates = 0;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530234 const __be32 *pstate_ids, *pstate_freqs;
235 u32 len_ids, len_freqs;
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530236 u32 pstate_min, pstate_max, pstate_nominal;
Shilpasri G Bhatb12f7a22017-01-03 16:36:00 +0530237 u32 pstate_turbo, pstate_ultra_turbo;
Yangtao Li5ae06c22019-02-16 12:06:23 -0500238 int rc = -ENODEV;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530239
240 power_mgt = of_find_node_by_path("/ibm,opal/power-mgt");
241 if (!power_mgt) {
242 pr_warn("power-mgt node not found\n");
243 return -ENODEV;
244 }
245
246 if (of_property_read_u32(power_mgt, "ibm,pstate-min", &pstate_min)) {
247 pr_warn("ibm,pstate-min node not found\n");
Yangtao Li3be466d2018-11-20 11:05:30 -0500248 goto out;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530249 }
250
251 if (of_property_read_u32(power_mgt, "ibm,pstate-max", &pstate_max)) {
252 pr_warn("ibm,pstate-max node not found\n");
Yangtao Li3be466d2018-11-20 11:05:30 -0500253 goto out;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530254 }
255
256 if (of_property_read_u32(power_mgt, "ibm,pstate-nominal",
257 &pstate_nominal)) {
258 pr_warn("ibm,pstate-nominal not found\n");
Yangtao Li3be466d2018-11-20 11:05:30 -0500259 goto out;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530260 }
Shilpasri G Bhatb12f7a22017-01-03 16:36:00 +0530261
262 if (of_property_read_u32(power_mgt, "ibm,pstate-ultra-turbo",
263 &pstate_ultra_turbo)) {
264 powernv_pstate_info.wof_enabled = false;
265 goto next;
266 }
267
268 if (of_property_read_u32(power_mgt, "ibm,pstate-turbo",
269 &pstate_turbo)) {
270 powernv_pstate_info.wof_enabled = false;
271 goto next;
272 }
273
274 if (pstate_turbo == pstate_ultra_turbo)
275 powernv_pstate_info.wof_enabled = false;
276 else
277 powernv_pstate_info.wof_enabled = true;
278
279next:
Gautham R. Shenoy967b87f2017-12-13 12:27:41 +0530280 pr_info("cpufreq pstate min 0x%x nominal 0x%x max 0x%x\n", pstate_min,
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530281 pstate_nominal, pstate_max);
Shilpasri G Bhatb12f7a22017-01-03 16:36:00 +0530282 pr_info("Workload Optimized Frequency is %s in the platform\n",
283 (powernv_pstate_info.wof_enabled) ? "enabled" : "disabled");
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530284
285 pstate_ids = of_get_property(power_mgt, "ibm,pstate-ids", &len_ids);
286 if (!pstate_ids) {
287 pr_warn("ibm,pstate-ids not found\n");
Yangtao Li3be466d2018-11-20 11:05:30 -0500288 goto out;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530289 }
290
291 pstate_freqs = of_get_property(power_mgt, "ibm,pstate-frequencies-mhz",
292 &len_freqs);
293 if (!pstate_freqs) {
294 pr_warn("ibm,pstate-frequencies-mhz not found\n");
Yangtao Li3be466d2018-11-20 11:05:30 -0500295 goto out;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530296 }
297
Vaidyanathan Srinivasan6174bac2014-08-03 14:54:05 +0530298 if (len_ids != len_freqs) {
299 pr_warn("Entries in ibm,pstate-ids and "
300 "ibm,pstate-frequencies-mhz does not match\n");
301 }
302
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530303 nr_pstates = min(len_ids, len_freqs) / sizeof(u32);
304 if (!nr_pstates) {
305 pr_warn("No PStates found\n");
Yangtao Li3be466d2018-11-20 11:05:30 -0500306 goto out;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530307 }
308
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530309 powernv_pstate_info.nr_pstates = nr_pstates;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530310 pr_debug("NR PStates %d\n", nr_pstates);
Gautham R. Shenoyee1f4a72017-12-13 12:27:39 +0530311
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530312 for (i = 0; i < nr_pstates; i++) {
313 u32 id = be32_to_cpu(pstate_ids[i]);
314 u32 freq = be32_to_cpu(pstate_freqs[i]);
Gautham R. Shenoy332f0a02017-12-13 12:27:40 +0530315 struct pstate_idx_revmap_data *revmap_data;
316 unsigned int key;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530317
318 pr_debug("PState id %d freq %d MHz\n", id, freq);
319 powernv_freqs[i].frequency = freq * 1000; /* kHz */
Gautham R. Shenoy967b87f2017-12-13 12:27:41 +0530320 powernv_freqs[i].driver_data = id & 0xFF;
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530321
Yangtao Li5ae06c22019-02-16 12:06:23 -0500322 revmap_data = kmalloc(sizeof(*revmap_data), GFP_KERNEL);
323 if (!revmap_data) {
324 rc = -ENOMEM;
325 goto out;
326 }
Gautham R. Shenoy332f0a02017-12-13 12:27:40 +0530327
Gautham R. Shenoy967b87f2017-12-13 12:27:41 +0530328 revmap_data->pstate_id = id & 0xFF;
Gautham R. Shenoy332f0a02017-12-13 12:27:40 +0530329 revmap_data->cpufreq_table_idx = i;
Gautham R. Shenoy967b87f2017-12-13 12:27:41 +0530330 key = (revmap_data->pstate_id) % POWERNV_MAX_PSTATES;
Gautham R. Shenoy332f0a02017-12-13 12:27:40 +0530331 hash_add(pstate_revmap, &revmap_data->hentry, key);
332
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530333 if (id == pstate_max)
334 powernv_pstate_info.max = i;
Shilpasri G Bhat3fa46802018-01-12 12:43:53 +0530335 if (id == pstate_nominal)
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530336 powernv_pstate_info.nominal = i;
Shilpasri G Bhat3fa46802018-01-12 12:43:53 +0530337 if (id == pstate_min)
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530338 powernv_pstate_info.min = i;
Shilpasri G Bhatb12f7a22017-01-03 16:36:00 +0530339
340 if (powernv_pstate_info.wof_enabled && id == pstate_turbo) {
341 int j;
342
343 for (j = i - 1; j >= (int)powernv_pstate_info.max; j--)
344 powernv_freqs[j].flags = CPUFREQ_BOOST_FREQ;
345 }
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530346 }
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530347
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530348 /* End of list marker entry */
349 powernv_freqs[i].frequency = CPUFREQ_TABLE_END;
Yangtao Li3be466d2018-11-20 11:05:30 -0500350
351 of_node_put(power_mgt);
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530352 return 0;
Yangtao Li3be466d2018-11-20 11:05:30 -0500353out:
354 of_node_put(power_mgt);
Yangtao Li5ae06c22019-02-16 12:06:23 -0500355 return rc;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530356}
357
358/* Returns the CPU frequency corresponding to the pstate_id. */
Gautham R. Shenoy967b87f2017-12-13 12:27:41 +0530359static unsigned int pstate_id_to_freq(u8 pstate_id)
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530360{
361 int i;
362
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530363 i = pstate_to_idx(pstate_id);
Vaidyanathan Srinivasan6174bac2014-08-03 14:54:05 +0530364 if (i >= powernv_pstate_info.nr_pstates || i < 0) {
Gautham R. Shenoy967b87f2017-12-13 12:27:41 +0530365 pr_warn("PState id 0x%x outside of PState table, reporting nominal id 0x%x instead\n",
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530366 pstate_id, idx_to_pstate(powernv_pstate_info.nominal));
367 i = powernv_pstate_info.nominal;
Vaidyanathan Srinivasan6174bac2014-08-03 14:54:05 +0530368 }
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530369
370 return powernv_freqs[i].frequency;
371}
372
373/*
374 * cpuinfo_nominal_freq_show - Show the nominal CPU frequency as indicated by
375 * the firmware
376 */
377static ssize_t cpuinfo_nominal_freq_show(struct cpufreq_policy *policy,
378 char *buf)
379{
380 return sprintf(buf, "%u\n",
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530381 powernv_freqs[powernv_pstate_info.nominal].frequency);
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530382}
383
Wei Yongjun133c6c82020-07-14 22:23:55 +0800384static struct freq_attr cpufreq_freq_attr_cpuinfo_nominal_freq =
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530385 __ATTR_RO(cpuinfo_nominal_freq);
386
Shilpasri G Bhatb12f7a22017-01-03 16:36:00 +0530387#define SCALING_BOOST_FREQS_ATTR_INDEX 2
388
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530389static struct freq_attr *powernv_cpu_freq_attr[] = {
390 &cpufreq_freq_attr_scaling_available_freqs,
391 &cpufreq_freq_attr_cpuinfo_nominal_freq,
Shilpasri G Bhatb12f7a22017-01-03 16:36:00 +0530392 &cpufreq_freq_attr_scaling_boost_freqs,
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530393 NULL,
394};
395
Shilpasri G Bhat1b028982016-03-22 18:57:09 +0530396#define throttle_attr(name, member) \
397static ssize_t name##_show(struct cpufreq_policy *policy, char *buf) \
398{ \
399 struct chip *chip = per_cpu(chip_info, policy->cpu); \
400 \
401 return sprintf(buf, "%u\n", chip->member); \
402} \
403 \
404static struct freq_attr throttle_attr_##name = __ATTR_RO(name) \
405
406throttle_attr(unthrottle, reason[NO_THROTTLE]);
407throttle_attr(powercap, reason[POWERCAP]);
408throttle_attr(overtemp, reason[CPU_OVERTEMP]);
409throttle_attr(supply_fault, reason[POWER_SUPPLY_FAILURE]);
410throttle_attr(overcurrent, reason[OVERCURRENT]);
411throttle_attr(occ_reset, reason[OCC_RESET_THROTTLE]);
412throttle_attr(turbo_stat, throttle_turbo);
413throttle_attr(sub_turbo_stat, throttle_sub_turbo);
414
415static struct attribute *throttle_attrs[] = {
416 &throttle_attr_unthrottle.attr,
417 &throttle_attr_powercap.attr,
418 &throttle_attr_overtemp.attr,
419 &throttle_attr_supply_fault.attr,
420 &throttle_attr_overcurrent.attr,
421 &throttle_attr_occ_reset.attr,
422 &throttle_attr_turbo_stat.attr,
423 &throttle_attr_sub_turbo_stat.attr,
424 NULL,
425};
426
427static const struct attribute_group throttle_attr_grp = {
428 .name = "throttle_stats",
429 .attrs = throttle_attrs,
430};
431
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530432/* Helper routines */
433
434/* Access helpers to power mgt SPR */
435
436static inline unsigned long get_pmspr(unsigned long sprn)
437{
438 switch (sprn) {
439 case SPRN_PMCR:
440 return mfspr(SPRN_PMCR);
441
442 case SPRN_PMICR:
443 return mfspr(SPRN_PMICR);
444
445 case SPRN_PMSR:
446 return mfspr(SPRN_PMSR);
447 }
448 BUG();
449}
450
451static inline void set_pmspr(unsigned long sprn, unsigned long val)
452{
453 switch (sprn) {
454 case SPRN_PMCR:
455 mtspr(SPRN_PMCR, val);
456 return;
457
458 case SPRN_PMICR:
459 mtspr(SPRN_PMICR, val);
460 return;
461 }
462 BUG();
463}
464
465/*
466 * Use objects of this type to query/update
467 * pstates on a remote CPU via smp_call_function.
468 */
469struct powernv_smp_call_data {
470 unsigned int freq;
Gautham R. Shenoy967b87f2017-12-13 12:27:41 +0530471 u8 pstate_id;
472 u8 gpstate_id;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530473};
474
475/*
476 * powernv_read_cpu_freq: Reads the current frequency on this CPU.
477 *
478 * Called via smp_call_function.
479 *
480 * Note: The caller of the smp_call_function should pass an argument of
481 * the type 'struct powernv_smp_call_data *' along with this function.
482 *
483 * The current frequency on this CPU will be returned via
484 * ((struct powernv_smp_call_data *)arg)->freq;
485 */
486static void powernv_read_cpu_freq(void *arg)
487{
488 unsigned long pmspr_val;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530489 struct powernv_smp_call_data *freq_data = arg;
490
491 pmspr_val = get_pmspr(SPRN_PMSR);
Gautham R. Shenoyee1f4a72017-12-13 12:27:39 +0530492 freq_data->pstate_id = extract_local_pstate(pmspr_val);
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530493 freq_data->freq = pstate_id_to_freq(freq_data->pstate_id);
494
Gautham R. Shenoy967b87f2017-12-13 12:27:41 +0530495 pr_debug("cpu %d pmsr %016lX pstate_id 0x%x frequency %d kHz\n",
496 raw_smp_processor_id(), pmspr_val, freq_data->pstate_id,
497 freq_data->freq);
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530498}
499
500/*
501 * powernv_cpufreq_get: Returns the CPU frequency as reported by the
502 * firmware for CPU 'cpu'. This value is reported through the sysfs
503 * file cpuinfo_cur_freq.
504 */
Brian Norris60d1ea42014-05-11 00:51:20 -0700505static unsigned int powernv_cpufreq_get(unsigned int cpu)
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530506{
507 struct powernv_smp_call_data freq_data;
508
509 smp_call_function_any(cpu_sibling_mask(cpu), powernv_read_cpu_freq,
510 &freq_data, 1);
511
512 return freq_data.freq;
513}
514
515/*
516 * set_pstate: Sets the pstate on this CPU.
517 *
518 * This is called via an smp_call_function.
519 *
520 * The caller must ensure that freq_data is of the type
521 * (struct powernv_smp_call_data *) and the pstate_id which needs to be set
522 * on this CPU should be present in freq_data->pstate_id.
523 */
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530524static void set_pstate(void *data)
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530525{
526 unsigned long val;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530527 struct powernv_smp_call_data *freq_data = data;
528 unsigned long pstate_ul = freq_data->pstate_id;
529 unsigned long gpstate_ul = freq_data->gpstate_id;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530530
531 val = get_pmspr(SPRN_PMCR);
532 val = val & 0x0000FFFFFFFFFFFFULL;
533
534 pstate_ul = pstate_ul & 0xFF;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530535 gpstate_ul = gpstate_ul & 0xFF;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530536
537 /* Set both global(bits 56..63) and local(bits 48..55) PStates */
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530538 val = val | (gpstate_ul << 56) | (pstate_ul << 48);
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530539
540 pr_debug("Setting cpu %d pmcr to %016lX\n",
541 raw_smp_processor_id(), val);
542 set_pmspr(SPRN_PMCR, val);
543}
544
545/*
Shilpasri G Bhatcf30af762014-09-29 15:49:11 +0200546 * get_nominal_index: Returns the index corresponding to the nominal
547 * pstate in the cpufreq table
548 */
549static inline unsigned int get_nominal_index(void)
550{
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530551 return powernv_pstate_info.nominal;
Shilpasri G Bhatcf30af762014-09-29 15:49:11 +0200552}
553
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530554static void powernv_cpufreq_throttle_check(void *data)
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530555{
Michael Neuling3e5963b2016-03-21 22:24:52 +0530556 struct chip *chip;
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530557 unsigned int cpu = smp_processor_id();
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530558 unsigned long pmsr;
Gautham R. Shenoy967b87f2017-12-13 12:27:41 +0530559 u8 pmsr_pmax;
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530560 unsigned int pmsr_pmax_idx;
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530561
562 pmsr = get_pmspr(SPRN_PMSR);
Michael Neuling3e5963b2016-03-21 22:24:52 +0530563 chip = this_cpu_read(chip_info);
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530564
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530565 /* Check for Pmax Capping */
Gautham R. Shenoyee1f4a72017-12-13 12:27:39 +0530566 pmsr_pmax = extract_max_pstate(pmsr);
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530567 pmsr_pmax_idx = pstate_to_idx(pmsr_pmax);
568 if (pmsr_pmax_idx != powernv_pstate_info.max) {
Michael Neuling3e5963b2016-03-21 22:24:52 +0530569 if (chip->throttled)
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530570 goto next;
Michael Neuling3e5963b2016-03-21 22:24:52 +0530571 chip->throttled = true;
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530572 if (pmsr_pmax_idx > powernv_pstate_info.nominal) {
Gautham R. Shenoy967b87f2017-12-13 12:27:41 +0530573 pr_warn_once("CPU %d on Chip %u has Pmax(0x%x) reduced below that of nominal frequency(0x%x)\n",
Michael Neuling3e5963b2016-03-21 22:24:52 +0530574 cpu, chip->id, pmsr_pmax,
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530575 idx_to_pstate(powernv_pstate_info.nominal));
Shilpasri G Bhat1b028982016-03-22 18:57:09 +0530576 chip->throttle_sub_turbo++;
577 } else {
578 chip->throttle_turbo++;
579 }
Michael Neuling3e5963b2016-03-21 22:24:52 +0530580 trace_powernv_throttle(chip->id,
581 throttle_reason[chip->throttle_reason],
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +0530582 pmsr_pmax);
Michael Neuling3e5963b2016-03-21 22:24:52 +0530583 } else if (chip->throttled) {
584 chip->throttled = false;
585 trace_powernv_throttle(chip->id,
586 throttle_reason[chip->throttle_reason],
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +0530587 pmsr_pmax);
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530588 }
589
Shilpasri G Bhat3dd3ebe2015-07-16 13:34:22 +0530590 /* Check if Psafe_mode_active is set in PMSR. */
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530591next:
Shilpasri G Bhat3dd3ebe2015-07-16 13:34:22 +0530592 if (pmsr & PMSR_PSAFE_ENABLE) {
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530593 throttled = true;
594 pr_info("Pstate set to safe frequency\n");
595 }
596
597 /* Check if SPR_EM_DISABLE is set in PMSR */
598 if (pmsr & PMSR_SPR_EM_DISABLE) {
599 throttled = true;
600 pr_info("Frequency Control disabled from OS\n");
601 }
602
603 if (throttled) {
604 pr_info("PMSR = %16lx\n", pmsr);
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +0530605 pr_warn("CPU Frequency could be throttled\n");
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530606 }
607}
608
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530609/**
610 * calc_global_pstate - Calculate global pstate
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530611 * @elapsed_time: Elapsed time in milliseconds
612 * @local_pstate_idx: New local pstate
613 * @highest_lpstate_idx: pstate from which its ramping down
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530614 *
615 * Finds the appropriate global pstate based on the pstate from which its
616 * ramping down and the time elapsed in ramping down. It follows a quadratic
617 * equation which ensures that it reaches ramping down to pmin in 5sec.
618 */
619static inline int calc_global_pstate(unsigned int elapsed_time,
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530620 int highest_lpstate_idx,
621 int local_pstate_idx)
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530622{
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530623 int index_diff;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530624
625 /*
626 * Using ramp_down_percent we get the percentage of rampdown
627 * that we are expecting to be dropping. Difference between
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530628 * highest_lpstate_idx and powernv_pstate_info.min will give a absolute
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530629 * number of how many pstates we will drop eventually by the end of
630 * 5 seconds, then just scale it get the number pstates to be dropped.
631 */
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530632 index_diff = ((int)ramp_down_percent(elapsed_time) *
633 (powernv_pstate_info.min - highest_lpstate_idx)) / 100;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530634
635 /* Ensure that global pstate is >= to local pstate */
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530636 if (highest_lpstate_idx + index_diff >= local_pstate_idx)
637 return local_pstate_idx;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530638 else
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530639 return highest_lpstate_idx + index_diff;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530640}
641
642static inline void queue_gpstate_timer(struct global_pstate_info *gpstates)
643{
644 unsigned int timer_interval;
645
646 /*
647 * Setting up timer to fire after GPSTATE_TIMER_INTERVAL ms, But
648 * if it exceeds MAX_RAMP_DOWN_TIME ms for ramp down time.
649 * Set timer such that it fires exactly at MAX_RAMP_DOWN_TIME
650 * seconds of ramp down time.
651 */
652 if ((gpstates->elapsed_time + GPSTATE_TIMER_INTERVAL)
653 > MAX_RAMP_DOWN_TIME)
654 timer_interval = MAX_RAMP_DOWN_TIME - gpstates->elapsed_time;
655 else
656 timer_interval = GPSTATE_TIMER_INTERVAL;
657
Thomas Gleixner7bc54b62016-07-04 09:50:18 +0000658 mod_timer(&gpstates->timer, jiffies + msecs_to_jiffies(timer_interval));
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530659}
660
661/**
662 * gpstate_timer_handler
663 *
Lee Jones44bd9a32020-07-15 09:26:28 +0100664 * @t: Timer context used to fetch global pstate info struct
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530665 *
666 * This handler brings down the global pstate closer to the local pstate
667 * according quadratic equation. Queues a new timer if it is still not equal
668 * to local pstate
669 */
Wei Yongjun133c6c82020-07-14 22:23:55 +0800670static void gpstate_timer_handler(struct timer_list *t)
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530671{
Kees Cook1d1fe902017-10-04 16:26:56 -0700672 struct global_pstate_info *gpstates = from_timer(gpstates, t, timer);
673 struct cpufreq_policy *policy = gpstates->policy;
Akshay Adiga20b15b72016-11-08 19:03:28 +0530674 int gpstate_idx, lpstate_idx;
675 unsigned long val;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530676 unsigned int time_diff = jiffies_to_msecs(jiffies)
677 - gpstates->last_sampled_time;
678 struct powernv_smp_call_data freq_data;
679
680 if (!spin_trylock(&gpstates->gpstate_lock))
681 return;
Shilpasri G Bhatc0f7f5b2018-04-25 16:29:31 +0530682 /*
683 * If the timer has migrated to the different cpu then bring
684 * it back to one of the policy->cpus
685 */
686 if (!cpumask_test_cpu(raw_smp_processor_id(), policy->cpus)) {
687 gpstates->timer.expires = jiffies + msecs_to_jiffies(1);
688 add_timer_on(&gpstates->timer, cpumask_first(policy->cpus));
689 spin_unlock(&gpstates->gpstate_lock);
690 return;
691 }
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530692
Akshay Adiga20b15b72016-11-08 19:03:28 +0530693 /*
694 * If PMCR was last updated was using fast_swtich then
695 * We may have wrong in gpstate->last_lpstate_idx
696 * value. Hence, read from PMCR to get correct data.
697 */
698 val = get_pmspr(SPRN_PMCR);
Gautham R. Shenoyee1f4a72017-12-13 12:27:39 +0530699 freq_data.gpstate_id = extract_global_pstate(val);
700 freq_data.pstate_id = extract_local_pstate(val);
Akshay Adiga20b15b72016-11-08 19:03:28 +0530701 if (freq_data.gpstate_id == freq_data.pstate_id) {
702 reset_gpstates(policy);
703 spin_unlock(&gpstates->gpstate_lock);
704 return;
705 }
706
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530707 gpstates->last_sampled_time += time_diff;
708 gpstates->elapsed_time += time_diff;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530709
Akshay Adiga20b15b72016-11-08 19:03:28 +0530710 if (gpstates->elapsed_time > MAX_RAMP_DOWN_TIME) {
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530711 gpstate_idx = pstate_to_idx(freq_data.pstate_id);
Akshay Adigac9a81e62016-11-14 17:29:27 +0530712 lpstate_idx = gpstate_idx;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530713 reset_gpstates(policy);
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530714 gpstates->highest_lpstate_idx = gpstate_idx;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530715 } else {
Akshay Adiga20b15b72016-11-08 19:03:28 +0530716 lpstate_idx = pstate_to_idx(freq_data.pstate_id);
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530717 gpstate_idx = calc_global_pstate(gpstates->elapsed_time,
718 gpstates->highest_lpstate_idx,
Akshay Adiga20b15b72016-11-08 19:03:28 +0530719 lpstate_idx);
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530720 }
Akshay Adiga20b15b72016-11-08 19:03:28 +0530721 freq_data.gpstate_id = idx_to_pstate(gpstate_idx);
722 gpstates->last_gpstate_idx = gpstate_idx;
723 gpstates->last_lpstate_idx = lpstate_idx;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530724 /*
725 * If local pstate is equal to global pstate, rampdown is over
726 * So timer is not required to be queued.
727 */
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530728 if (gpstate_idx != gpstates->last_lpstate_idx)
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530729 queue_gpstate_timer(gpstates);
730
Shilpasri G Bhatc0f7f5b2018-04-25 16:29:31 +0530731 set_pstate(&freq_data);
Akshay Adiga1fd3ff22016-05-03 20:49:35 +0530732 spin_unlock(&gpstates->gpstate_lock);
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530733}
734
Shilpasri G Bhatcf30af762014-09-29 15:49:11 +0200735/*
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530736 * powernv_cpufreq_target_index: Sets the frequency corresponding to
737 * the cpufreq table entry indexed by new_index on the cpus in the
738 * mask policy->cpus
739 */
740static int powernv_cpufreq_target_index(struct cpufreq_policy *policy,
741 unsigned int new_index)
742{
743 struct powernv_smp_call_data freq_data;
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530744 unsigned int cur_msec, gpstate_idx;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530745 struct global_pstate_info *gpstates = policy->driver_data;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530746
Shilpasri G Bhatcf30af762014-09-29 15:49:11 +0200747 if (unlikely(rebooting) && new_index != get_nominal_index())
748 return 0;
749
Denis Kirjanov8a10c062016-11-08 05:39:28 -0500750 if (!throttled) {
751 /* we don't want to be preempted while
752 * checking if the CPU frequency has been throttled
753 */
754 preempt_disable();
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530755 powernv_cpufreq_throttle_check(NULL);
Denis Kirjanov8a10c062016-11-08 05:39:28 -0500756 preempt_enable();
757 }
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530758
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530759 cur_msec = jiffies_to_msecs(get_jiffies_64());
760
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530761 freq_data.pstate_id = idx_to_pstate(new_index);
Shilpasri G Bhatdcb14332018-04-25 11:44:55 +0530762 if (!gpstates) {
763 freq_data.gpstate_id = freq_data.pstate_id;
764 goto no_gpstate;
765 }
766
767 spin_lock(&gpstates->gpstate_lock);
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530768
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530769 if (!gpstates->last_sampled_time) {
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530770 gpstate_idx = new_index;
771 gpstates->highest_lpstate_idx = new_index;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530772 goto gpstates_done;
773 }
774
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530775 if (gpstates->last_gpstate_idx < new_index) {
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530776 gpstates->elapsed_time += cur_msec -
777 gpstates->last_sampled_time;
778
779 /*
780 * If its has been ramping down for more than MAX_RAMP_DOWN_TIME
781 * we should be resetting all global pstate related data. Set it
782 * equal to local pstate to start fresh.
783 */
784 if (gpstates->elapsed_time > MAX_RAMP_DOWN_TIME) {
785 reset_gpstates(policy);
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530786 gpstates->highest_lpstate_idx = new_index;
787 gpstate_idx = new_index;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530788 } else {
789 /* Elaspsed_time is less than 5 seconds, continue to rampdown */
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530790 gpstate_idx = calc_global_pstate(gpstates->elapsed_time,
791 gpstates->highest_lpstate_idx,
792 new_index);
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530793 }
794 } else {
795 reset_gpstates(policy);
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530796 gpstates->highest_lpstate_idx = new_index;
797 gpstate_idx = new_index;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530798 }
799
800 /*
801 * If local pstate is equal to global pstate, rampdown is over
802 * So timer is not required to be queued.
803 */
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530804 if (gpstate_idx != new_index)
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530805 queue_gpstate_timer(gpstates);
Akshay Adiga0bc10b92016-05-03 20:49:36 +0530806 else
807 del_timer_sync(&gpstates->timer);
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530808
809gpstates_done:
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530810 freq_data.gpstate_id = idx_to_pstate(gpstate_idx);
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530811 gpstates->last_sampled_time = cur_msec;
Akshay Adiga09ca4c92016-06-30 11:53:07 +0530812 gpstates->last_gpstate_idx = gpstate_idx;
813 gpstates->last_lpstate_idx = new_index;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530814
Akshay Adiga1fd3ff22016-05-03 20:49:35 +0530815 spin_unlock(&gpstates->gpstate_lock);
816
Shilpasri G Bhatdcb14332018-04-25 11:44:55 +0530817no_gpstate:
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530818 /*
819 * Use smp_call_function to send IPI and execute the
820 * mtspr on target CPU. We could do that without IPI
821 * if current CPU is within policy->cpus (core)
822 */
823 smp_call_function_any(policy->cpus, set_pstate, &freq_data, 1);
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530824 return 0;
825}
826
827static int powernv_cpufreq_cpu_init(struct cpufreq_policy *policy)
828{
Viresh Kumarbf147212018-03-05 09:49:32 +0530829 int base, i;
Shilpasri G Bhat2920e9c2016-04-19 15:28:00 +0530830 struct kernfs_node *kn;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530831 struct global_pstate_info *gpstates;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530832
833 base = cpu_first_thread_sibling(policy->cpu);
834
835 for (i = 0; i < threads_per_core; i++)
836 cpumask_set_cpu(base + i, policy->cpus);
837
Shilpasri G Bhat2920e9c2016-04-19 15:28:00 +0530838 kn = kernfs_find_and_get(policy->kobj.sd, throttle_attr_grp.name);
839 if (!kn) {
Shilpasri G Bhat1b028982016-03-22 18:57:09 +0530840 int ret;
841
842 ret = sysfs_create_group(&policy->kobj, &throttle_attr_grp);
843 if (ret) {
844 pr_info("Failed to create throttle stats directory for cpu %d\n",
845 policy->cpu);
846 return ret;
847 }
Shilpasri G Bhat2920e9c2016-04-19 15:28:00 +0530848 } else {
849 kernfs_put(kn);
Shilpasri G Bhat1b028982016-03-22 18:57:09 +0530850 }
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530851
Shilpasri G Bhatdcb14332018-04-25 11:44:55 +0530852 policy->freq_table = powernv_freqs;
853 policy->fast_switch_possible = true;
854
855 if (pvr_version_is(PVR_POWER9))
856 return 0;
857
858 /* Initialise Gpstate ramp-down timer only on POWER8 */
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530859 gpstates = kzalloc(sizeof(*gpstates), GFP_KERNEL);
860 if (!gpstates)
861 return -ENOMEM;
862
863 policy->driver_data = gpstates;
864
865 /* initialize timer */
Kees Cook1d1fe902017-10-04 16:26:56 -0700866 gpstates->policy = policy;
867 timer_setup(&gpstates->timer, gpstate_timer_handler,
868 TIMER_PINNED | TIMER_DEFERRABLE);
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530869 gpstates->timer.expires = jiffies +
870 msecs_to_jiffies(GPSTATE_TIMER_INTERVAL);
871 spin_lock_init(&gpstates->gpstate_lock);
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530872
Viresh Kumarbf147212018-03-05 09:49:32 +0530873 return 0;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +0530874}
875
876static int powernv_cpufreq_cpu_exit(struct cpufreq_policy *policy)
877{
878 /* timer is deleted in cpufreq_cpu_stop() */
879 kfree(policy->driver_data);
880
881 return 0;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530882}
883
Shilpasri G Bhatcf30af762014-09-29 15:49:11 +0200884static int powernv_cpufreq_reboot_notifier(struct notifier_block *nb,
885 unsigned long action, void *unused)
886{
887 int cpu;
Srikar Dronamrajua2d02302020-09-22 13:32:54 +0530888 struct cpufreq_policy *cpu_policy;
Shilpasri G Bhatcf30af762014-09-29 15:49:11 +0200889
890 rebooting = true;
891 for_each_online_cpu(cpu) {
Srikar Dronamrajua2d02302020-09-22 13:32:54 +0530892 cpu_policy = cpufreq_cpu_get(cpu);
893 if (!cpu_policy)
894 continue;
895 powernv_cpufreq_target_index(cpu_policy, get_nominal_index());
896 cpufreq_cpu_put(cpu_policy);
Shilpasri G Bhatcf30af762014-09-29 15:49:11 +0200897 }
898
899 return NOTIFY_DONE;
900}
901
902static struct notifier_block powernv_cpufreq_reboot_nb = {
903 .notifier_call = powernv_cpufreq_reboot_notifier,
904};
905
Wei Yongjun133c6c82020-07-14 22:23:55 +0800906static void powernv_cpufreq_work_fn(struct work_struct *work)
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530907{
908 struct chip *chip = container_of(work, struct chip, throttle);
Pratik Rajesh Sampatd95fe372020-03-16 19:27:43 +0530909 struct cpufreq_policy *policy;
Shilpasri G Bhat227942802015-07-16 13:34:23 +0530910 unsigned int cpu;
Shilpasri G Bhat6d167a42016-02-03 01:11:38 +0530911 cpumask_t mask;
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530912
Shilpasri G Bhat6d167a42016-02-03 01:11:38 +0530913 get_online_cpus();
914 cpumask_and(&mask, &chip->mask, cpu_online_mask);
915 smp_call_function_any(&mask,
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530916 powernv_cpufreq_throttle_check, NULL, 0);
Shilpasri G Bhat227942802015-07-16 13:34:23 +0530917
918 if (!chip->restore)
Shilpasri G Bhat6d167a42016-02-03 01:11:38 +0530919 goto out;
Shilpasri G Bhat227942802015-07-16 13:34:23 +0530920
921 chip->restore = false;
Shilpasri G Bhat6d167a42016-02-03 01:11:38 +0530922 for_each_cpu(cpu, &mask) {
923 int index;
Shilpasri G Bhat227942802015-07-16 13:34:23 +0530924
Pratik Rajesh Sampatd95fe372020-03-16 19:27:43 +0530925 policy = cpufreq_cpu_get(cpu);
926 if (!policy)
927 continue;
928 index = cpufreq_table_find_index_c(policy, policy->cur);
929 powernv_cpufreq_target_index(policy, index);
930 cpumask_andnot(&mask, &mask, policy->cpus);
931 cpufreq_cpu_put(policy);
Shilpasri G Bhat227942802015-07-16 13:34:23 +0530932 }
Shilpasri G Bhat6d167a42016-02-03 01:11:38 +0530933out:
934 put_online_cpus();
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530935}
936
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530937static int powernv_cpufreq_occ_msg(struct notifier_block *nb,
938 unsigned long msg_type, void *_msg)
939{
940 struct opal_msg *msg = _msg;
941 struct opal_occ_msg omsg;
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530942 int i;
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530943
944 if (msg_type != OPAL_MSG_OCC)
945 return 0;
946
947 omsg.type = be64_to_cpu(msg->params[0]);
948
949 switch (omsg.type) {
950 case OCC_RESET:
951 occ_reset = true;
Shilpasri G Bhat309d0632015-08-27 14:41:44 +0530952 pr_info("OCC (On Chip Controller - enforces hard thermal/power limits) Resetting\n");
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530953 /*
954 * powernv_cpufreq_throttle_check() is called in
955 * target() callback which can detect the throttle state
956 * for governors like ondemand.
957 * But static governors will not call target() often thus
958 * report throttling here.
959 */
960 if (!throttled) {
961 throttled = true;
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +0530962 pr_warn("CPU frequency is throttled for duration\n");
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530963 }
Shilpasri G Bhat309d0632015-08-27 14:41:44 +0530964
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530965 break;
966 case OCC_LOAD:
Shilpasri G Bhat309d0632015-08-27 14:41:44 +0530967 pr_info("OCC Loading, CPU frequency is throttled until OCC is started\n");
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530968 break;
969 case OCC_THROTTLE:
970 omsg.chip = be64_to_cpu(msg->params[1]);
971 omsg.throttle_status = be64_to_cpu(msg->params[2]);
972
973 if (occ_reset) {
974 occ_reset = false;
975 throttled = false;
Shilpasri G Bhat309d0632015-08-27 14:41:44 +0530976 pr_info("OCC Active, CPU frequency is no longer throttled\n");
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530977
Shilpasri G Bhat227942802015-07-16 13:34:23 +0530978 for (i = 0; i < nr_chips; i++) {
979 chips[i].restore = true;
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530980 schedule_work(&chips[i].throttle);
Shilpasri G Bhat227942802015-07-16 13:34:23 +0530981 }
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530982
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530983 return 0;
984 }
985
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530986 for (i = 0; i < nr_chips; i++)
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +0530987 if (chips[i].id == omsg.chip)
988 break;
989
990 if (omsg.throttle_status >= 0 &&
Shilpasri G Bhat1b028982016-03-22 18:57:09 +0530991 omsg.throttle_status <= OCC_MAX_THROTTLE_STATUS) {
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +0530992 chips[i].throttle_reason = omsg.throttle_status;
Shilpasri G Bhat1b028982016-03-22 18:57:09 +0530993 chips[i].reason[omsg.throttle_status]++;
994 }
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +0530995
996 if (!omsg.throttle_status)
997 chips[i].restore = true;
998
999 schedule_work(&chips[i].throttle);
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +05301000 }
1001 return 0;
1002}
1003
1004static struct notifier_block powernv_cpufreq_opal_nb = {
1005 .notifier_call = powernv_cpufreq_occ_msg,
1006 .next = NULL,
1007 .priority = 0,
1008};
1009
Preeti U Murthyb1203392014-09-29 15:47:53 +02001010static void powernv_cpufreq_stop_cpu(struct cpufreq_policy *policy)
1011{
1012 struct powernv_smp_call_data freq_data;
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +05301013 struct global_pstate_info *gpstates = policy->driver_data;
Preeti U Murthyb1203392014-09-29 15:47:53 +02001014
Akshay Adiga09ca4c92016-06-30 11:53:07 +05301015 freq_data.pstate_id = idx_to_pstate(powernv_pstate_info.min);
1016 freq_data.gpstate_id = idx_to_pstate(powernv_pstate_info.min);
Preeti U Murthyb1203392014-09-29 15:47:53 +02001017 smp_call_function_single(policy->cpu, set_pstate, &freq_data, 1);
Shilpasri G Bhatdcb14332018-04-25 11:44:55 +05301018 if (gpstates)
1019 del_timer_sync(&gpstates->timer);
Preeti U Murthyb1203392014-09-29 15:47:53 +02001020}
1021
Akshay Adiga60c9efb2016-11-08 19:03:27 +05301022static unsigned int powernv_fast_switch(struct cpufreq_policy *policy,
1023 unsigned int target_freq)
1024{
1025 int index;
1026 struct powernv_smp_call_data freq_data;
1027
1028 index = cpufreq_table_find_index_dl(policy, target_freq);
1029 freq_data.pstate_id = powernv_freqs[index].driver_data;
1030 freq_data.gpstate_id = powernv_freqs[index].driver_data;
1031 set_pstate(&freq_data);
1032
1033 return powernv_freqs[index].frequency;
1034}
1035
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +05301036static struct cpufreq_driver powernv_cpufreq_driver = {
1037 .name = "powernv-cpufreq",
1038 .flags = CPUFREQ_CONST_LOOPS,
1039 .init = powernv_cpufreq_cpu_init,
Akshay Adigaeaa2c3a2016-04-19 15:28:01 +05301040 .exit = powernv_cpufreq_cpu_exit,
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +05301041 .verify = cpufreq_generic_frequency_table_verify,
1042 .target_index = powernv_cpufreq_target_index,
Akshay Adiga60c9efb2016-11-08 19:03:27 +05301043 .fast_switch = powernv_fast_switch,
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +05301044 .get = powernv_cpufreq_get,
Preeti U Murthyb1203392014-09-29 15:47:53 +02001045 .stop_cpu = powernv_cpufreq_stop_cpu,
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +05301046 .attr = powernv_cpu_freq_attr,
1047};
1048
Shilpasri G Bhat053819e2015-07-16 13:34:18 +05301049static int init_chip_info(void)
1050{
John Hubbarddb0d32d2019-10-30 22:21:59 -07001051 unsigned int *chip;
Shilpasri G Bhat053819e2015-07-16 13:34:18 +05301052 unsigned int cpu, i;
1053 unsigned int prev_chip_id = UINT_MAX;
John Hubbarddb0d32d2019-10-30 22:21:59 -07001054 int ret = 0;
1055
1056 chip = kcalloc(num_possible_cpus(), sizeof(*chip), GFP_KERNEL);
1057 if (!chip)
1058 return -ENOMEM;
Shilpasri G Bhat053819e2015-07-16 13:34:18 +05301059
Michael Neuling3e5963b2016-03-21 22:24:52 +05301060 for_each_possible_cpu(cpu) {
Shilpasri G Bhat053819e2015-07-16 13:34:18 +05301061 unsigned int id = cpu_to_chip_id(cpu);
1062
1063 if (prev_chip_id != id) {
1064 prev_chip_id = id;
1065 chip[nr_chips++] = id;
1066 }
1067 }
1068
Shilpasri G Bhatc89f2682016-02-03 01:11:41 +05301069 chips = kcalloc(nr_chips, sizeof(struct chip), GFP_KERNEL);
John Hubbarddb0d32d2019-10-30 22:21:59 -07001070 if (!chips) {
1071 ret = -ENOMEM;
1072 goto free_and_return;
1073 }
Shilpasri G Bhat053819e2015-07-16 13:34:18 +05301074
1075 for (i = 0; i < nr_chips; i++) {
1076 chips[i].id = chip[i];
Shilpasri G Bhat735366f2015-07-16 13:34:21 +05301077 cpumask_copy(&chips[i].mask, cpumask_of_node(chip[i]));
1078 INIT_WORK(&chips[i].throttle, powernv_cpufreq_work_fn);
Michael Neuling3e5963b2016-03-21 22:24:52 +05301079 for_each_cpu(cpu, &chips[i].mask)
1080 per_cpu(chip_info, cpu) = &chips[i];
Shilpasri G Bhat053819e2015-07-16 13:34:18 +05301081 }
1082
John Hubbarddb0d32d2019-10-30 22:21:59 -07001083free_and_return:
1084 kfree(chip);
1085 return ret;
Shilpasri G Bhat053819e2015-07-16 13:34:18 +05301086}
1087
Shilpasri G Bhatc5e29ea2016-02-26 16:06:51 +05301088static inline void clean_chip_info(void)
1089{
Oliver O'Hallorand0a72ef2020-02-06 17:26:21 +11001090 int i;
1091
1092 /* flush any pending work items */
1093 if (chips)
1094 for (i = 0; i < nr_chips; i++)
1095 cancel_work_sync(&chips[i].throttle);
Shilpasri G Bhatc5e29ea2016-02-26 16:06:51 +05301096 kfree(chips);
Shilpasri G Bhatc5e29ea2016-02-26 16:06:51 +05301097}
1098
1099static inline void unregister_all_notifiers(void)
1100{
1101 opal_message_notifier_unregister(OPAL_MSG_OCC,
1102 &powernv_cpufreq_opal_nb);
1103 unregister_reboot_notifier(&powernv_cpufreq_reboot_nb);
1104}
1105
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +05301106static int __init powernv_cpufreq_init(void)
1107{
1108 int rc = 0;
1109
Vaidyanathan Srinivasan6174bac2014-08-03 14:54:05 +05301110 /* Don't probe on pseries (guest) platforms */
Stewart Smithe4d54f72015-12-09 17:18:20 +11001111 if (!firmware_has_feature(FW_FEATURE_OPAL))
Vaidyanathan Srinivasan6174bac2014-08-03 14:54:05 +05301112 return -ENODEV;
1113
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +05301114 /* Discover pstates from device tree and init */
1115 rc = init_powernv_pstates();
Shilpasri G Bhatc5e29ea2016-02-26 16:06:51 +05301116 if (rc)
1117 goto out;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +05301118
Shilpasri G Bhat053819e2015-07-16 13:34:18 +05301119 /* Populate chip info */
1120 rc = init_chip_info();
1121 if (rc)
Shilpasri G Bhatc5e29ea2016-02-26 16:06:51 +05301122 goto out;
Shilpasri G Bhat053819e2015-07-16 13:34:18 +05301123
Shilpasri G Bhatb12f7a22017-01-03 16:36:00 +05301124 if (powernv_pstate_info.wof_enabled)
1125 powernv_cpufreq_driver.boost_enabled = true;
1126 else
1127 powernv_cpu_freq_attr[SCALING_BOOST_FREQS_ATTR_INDEX] = NULL;
Shilpasri G Bhatc5e29ea2016-02-26 16:06:51 +05301128
Shilpasri G Bhatb12f7a22017-01-03 16:36:00 +05301129 rc = cpufreq_register_driver(&powernv_cpufreq_driver);
1130 if (rc) {
1131 pr_info("Failed to register the cpufreq driver (%d)\n", rc);
Oliver O'Halloran966c08d2020-02-06 17:26:22 +11001132 goto cleanup;
Shilpasri G Bhatb12f7a22017-01-03 16:36:00 +05301133 }
1134
1135 if (powernv_pstate_info.wof_enabled)
1136 cpufreq_enable_boost_support();
1137
Oliver O'Halloran966c08d2020-02-06 17:26:22 +11001138 register_reboot_notifier(&powernv_cpufreq_reboot_nb);
1139 opal_message_notifier_register(OPAL_MSG_OCC, &powernv_cpufreq_opal_nb);
1140
Shilpasri G Bhatb12f7a22017-01-03 16:36:00 +05301141 return 0;
Oliver O'Halloran966c08d2020-02-06 17:26:22 +11001142cleanup:
Shilpasri G Bhatc5e29ea2016-02-26 16:06:51 +05301143 clean_chip_info();
1144out:
1145 pr_info("Platform driver disabled. System does not support PState control\n");
1146 return rc;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +05301147}
1148module_init(powernv_cpufreq_init);
1149
1150static void __exit powernv_cpufreq_exit(void)
1151{
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +05301152 cpufreq_unregister_driver(&powernv_cpufreq_driver);
Shilpasri G Bhatc5e29ea2016-02-26 16:06:51 +05301153 unregister_all_notifiers();
1154 clean_chip_info();
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +05301155}
1156module_exit(powernv_cpufreq_exit);
1157
1158MODULE_LICENSE("GPL");
1159MODULE_AUTHOR("Vaidyanathan Srinivasan <svaidy at linux.vnet.ibm.com>");