blob: a5af890827eb89961f886324bdacdf57f1e6036b [file] [log] [blame]
Dirk Brandewie93f08222013-02-06 09:02:13 -08001/*
Srinivas Pandruvadad1b68482013-04-09 22:38:18 +00002 * intel_pstate.c: Native P state management for Intel processors
Dirk Brandewie93f08222013-02-06 09:02:13 -08003 *
4 * (C) Copyright 2012 Intel Corporation
5 * Author: Dirk Brandewie <dirk.j.brandewie@intel.com>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; version 2
10 * of the License.
11 */
12
Joe Perches4836df12016-04-05 13:28:23 -070013#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14
Dirk Brandewie93f08222013-02-06 09:02:13 -080015#include <linux/kernel.h>
16#include <linux/kernel_stat.h>
17#include <linux/module.h>
18#include <linux/ktime.h>
19#include <linux/hrtimer.h>
20#include <linux/tick.h>
21#include <linux/slab.h>
Ingo Molnar55687da2017-02-08 18:51:31 +010022#include <linux/sched/cpufreq.h>
Dirk Brandewie93f08222013-02-06 09:02:13 -080023#include <linux/list.h>
24#include <linux/cpu.h>
25#include <linux/cpufreq.h>
26#include <linux/sysfs.h>
27#include <linux/types.h>
28#include <linux/fs.h>
29#include <linux/debugfs.h>
Adrian Huangfbbcdc02013-10-31 23:24:05 +080030#include <linux/acpi.h>
Stephen Rothwelld6472302015-06-02 19:01:38 +100031#include <linux/vmalloc.h>
Dirk Brandewie93f08222013-02-06 09:02:13 -080032#include <trace/events/power.h>
33
34#include <asm/div64.h>
35#include <asm/msr.h>
36#include <asm/cpu_device_id.h>
Borislav Petkov64df1fd2015-04-03 15:19:53 +020037#include <asm/cpufeature.h>
Dave Hansen5b20c942016-06-02 17:19:45 -070038#include <asm/intel-family.h>
Dirk Brandewie93f08222013-02-06 09:02:13 -080039
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +010040#define INTEL_CPUFREQ_TRANSITION_LATENCY 20000
41
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -070042#ifdef CONFIG_ACPI
43#include <acpi/processor.h>
Rafael J. Wysocki17669002016-11-22 12:24:00 -080044#include <acpi/cppc_acpi.h>
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -070045#endif
46
Dirk Brandewief0fe3cd2014-05-29 09:32:23 -070047#define FRAC_BITS 8
Dirk Brandewie93f08222013-02-06 09:02:13 -080048#define int_tofp(X) ((int64_t)(X) << FRAC_BITS)
49#define fp_toint(X) ((X) >> FRAC_BITS)
Dirk Brandewief0fe3cd2014-05-29 09:32:23 -070050
Rafael J. Wysockia1c97872016-05-11 19:09:12 +020051#define EXT_BITS 6
52#define EXT_FRAC_BITS (EXT_BITS + FRAC_BITS)
Srinivas Pandruvadad5dd33d2016-11-21 16:33:20 -080053#define fp_ext_toint(X) ((X) >> EXT_FRAC_BITS)
54#define int_ext_tofp(X) ((int64_t)(X) << EXT_FRAC_BITS)
Rafael J. Wysockia1c97872016-05-11 19:09:12 +020055
Dirk Brandewie93f08222013-02-06 09:02:13 -080056static inline int32_t mul_fp(int32_t x, int32_t y)
57{
58 return ((int64_t)x * (int64_t)y) >> FRAC_BITS;
59}
60
Prarit Bhargava7180ddd2015-06-15 13:43:29 -040061static inline int32_t div_fp(s64 x, s64 y)
Dirk Brandewie93f08222013-02-06 09:02:13 -080062{
Prarit Bhargava7180ddd2015-06-15 13:43:29 -040063 return div64_s64((int64_t)x << FRAC_BITS, y);
Dirk Brandewie93f08222013-02-06 09:02:13 -080064}
65
Dirk Brandewied022a652014-10-13 08:37:44 -070066static inline int ceiling_fp(int32_t x)
67{
68 int mask, ret;
69
70 ret = fp_toint(x);
71 mask = (1 << FRAC_BITS) - 1;
72 if (x & mask)
73 ret += 1;
74 return ret;
75}
76
Rafael J. Wysockia1c97872016-05-11 19:09:12 +020077static inline u64 mul_ext_fp(u64 x, u64 y)
78{
79 return (x * y) >> EXT_FRAC_BITS;
80}
81
82static inline u64 div_ext_fp(u64 x, u64 y)
83{
84 return div64_u64(x << EXT_FRAC_BITS, y);
85}
86
Rafael J. Wysockie4c204c2017-03-14 16:18:34 +010087static inline int32_t percent_ext_fp(int percent)
88{
89 return div_ext_fp(percent, 100);
90}
91
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -070092/**
93 * struct sample - Store performance sample
Rafael J. Wysockia1c97872016-05-11 19:09:12 +020094 * @core_avg_perf: Ratio of APERF/MPERF which is the actual average
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -070095 * performance during last sample period
96 * @busy_scaled: Scaled busy value which is used to calculate next
Rafael J. Wysockia1c97872016-05-11 19:09:12 +020097 * P state. This can be different than core_avg_perf
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -070098 * to account for cpu idle period
99 * @aperf: Difference of actual performance frequency clock count
100 * read from APERF MSR between last and current sample
101 * @mperf: Difference of maximum performance frequency clock count
102 * read from MPERF MSR between last and current sample
103 * @tsc: Difference of time stamp counter between last and
104 * current sample
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700105 * @time: Current time from scheduler
106 *
107 * This structure is used in the cpudata structure to store performance sample
108 * data for choosing next P State.
109 */
Dirk Brandewie93f08222013-02-06 09:02:13 -0800110struct sample {
Rafael J. Wysockia1c97872016-05-11 19:09:12 +0200111 int32_t core_avg_perf;
Philippe Longepe157386b2015-12-04 17:40:30 +0100112 int32_t busy_scaled;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800113 u64 aperf;
114 u64 mperf;
Doug Smythies4055fad2015-04-11 21:10:26 -0700115 u64 tsc;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +0100116 u64 time;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800117};
118
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700119/**
120 * struct pstate_data - Store P state data
121 * @current_pstate: Current requested P state
122 * @min_pstate: Min P state possible for this platform
123 * @max_pstate: Max P state possible for this platform
124 * @max_pstate_physical:This is physical Max P state for a processor
125 * This can be higher than the max_pstate which can
126 * be limited by platform thermal design power limits
127 * @scaling: Scaling factor to convert frequency to cpufreq
128 * frequency units
129 * @turbo_pstate: Max Turbo P state possible for this platform
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +0100130 * @max_freq: @max_pstate frequency in cpufreq units
131 * @turbo_freq: @turbo_pstate frequency in cpufreq units
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700132 *
133 * Stores the per cpu model P state limits and current P state.
134 */
Dirk Brandewie93f08222013-02-06 09:02:13 -0800135struct pstate_data {
136 int current_pstate;
137 int min_pstate;
138 int max_pstate;
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -0700139 int max_pstate_physical;
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700140 int scaling;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800141 int turbo_pstate;
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +0100142 unsigned int max_freq;
143 unsigned int turbo_freq;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800144};
145
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700146/**
147 * struct vid_data - Stores voltage information data
148 * @min: VID data for this platform corresponding to
149 * the lowest P state
150 * @max: VID data corresponding to the highest P State.
151 * @turbo: VID data for turbo P state
152 * @ratio: Ratio of (vid max - vid min) /
153 * (max P state - Min P State)
154 *
155 * Stores the voltage data for DVFS (Dynamic Voltage and Frequency Scaling)
156 * This data is used in Atom platforms, where in addition to target P state,
157 * the voltage data needs to be specified to select next P State.
158 */
Dirk Brandewie007bea02013-12-18 10:32:39 -0800159struct vid_data {
Dirk Brandewie21855ff2014-05-08 12:57:23 -0700160 int min;
161 int max;
162 int turbo;
Dirk Brandewie007bea02013-12-18 10:32:39 -0800163 int32_t ratio;
164};
165
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700166/**
167 * struct _pid - Stores PID data
168 * @setpoint: Target set point for busyness or performance
169 * @integral: Storage for accumulated error values
170 * @p_gain: PID proportional gain
171 * @i_gain: PID integral gain
172 * @d_gain: PID derivative gain
173 * @deadband: PID deadband
174 * @last_err: Last error storage for integral part of PID calculation
175 *
176 * Stores PID coefficients and last error for PID controller.
177 */
Dirk Brandewie93f08222013-02-06 09:02:13 -0800178struct _pid {
179 int setpoint;
180 int32_t integral;
181 int32_t p_gain;
182 int32_t i_gain;
183 int32_t d_gain;
184 int deadband;
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700185 int32_t last_err;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800186};
187
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700188/**
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +0100189 * struct global_params - Global parameters, mostly tunable via sysfs.
190 * @no_turbo: Whether or not to use turbo P-states.
191 * @turbo_disabled: Whethet or not turbo P-states are available at all,
192 * based on the MSR_IA32_MISC_ENABLE value and whether or
193 * not the maximum reported turbo P-state is different from
194 * the maximum reported non-turbo one.
195 * @min_perf_pct: Minimum capacity limit in percent of the maximum turbo
196 * P-state capacity.
197 * @max_perf_pct: Maximum capacity limit in percent of the maximum turbo
198 * P-state capacity.
199 */
200struct global_params {
201 bool no_turbo;
202 bool turbo_disabled;
203 int max_perf_pct;
204 int min_perf_pct;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700205};
206
207/**
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700208 * struct cpudata - Per CPU instance data storage
209 * @cpu: CPU number for this instance data
Rafael J. Wysocki2f1d4072016-10-24 23:20:25 +0200210 * @policy: CPUFreq policy value
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700211 * @update_util: CPUFreq utility callback information
Chen Yu4578ee7e2016-05-11 14:33:08 +0800212 * @update_util_set: CPUFreq utility callback is set
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +0200213 * @iowait_boost: iowait-related boost fraction
214 * @last_update: Time of the last update.
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700215 * @pstate: Stores P state limits for this CPU
216 * @vid: Stores VID limits for this CPU
217 * @pid: Stores PID parameters for this CPU
218 * @last_sample_time: Last Sample time
219 * @prev_aperf: Last APERF value read from APERF MSR
220 * @prev_mperf: Last MPERF value read from MPERF MSR
221 * @prev_tsc: Last timestamp counter (TSC) value
222 * @prev_cummulative_iowait: IO Wait time difference from last and
223 * current sample
224 * @sample: Storage for storing last Sample data
Rafael J. Wysockie14cf882017-03-28 00:03:20 +0200225 * @min_perf: Minimum capacity limit as a fraction of the maximum
226 * turbo P-state capacity.
227 * @max_perf: Maximum capacity limit as a fraction of the maximum
228 * turbo P-state capacity.
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700229 * @acpi_perf_data: Stores ACPI perf information read from _PSS
230 * @valid_pss_table: Set to true for valid ACPI _PSS entries found
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800231 * @epp_powersave: Last saved HWP energy performance preference
232 * (EPP) or energy performance bias (EPB),
233 * when policy switched to performance
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800234 * @epp_policy: Last saved policy used to set EPP/EPB
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800235 * @epp_default: Power on default HWP energy performance
236 * preference/bias
237 * @epp_saved: Saved EPP/EPB during system suspend or CPU offline
238 * operation
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700239 *
240 * This structure stores per CPU instance data for all CPUs.
241 */
Dirk Brandewie93f08222013-02-06 09:02:13 -0800242struct cpudata {
243 int cpu;
244
Rafael J. Wysocki2f1d4072016-10-24 23:20:25 +0200245 unsigned int policy;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +0100246 struct update_util_data update_util;
Chen Yu4578ee7e2016-05-11 14:33:08 +0800247 bool update_util_set;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800248
Dirk Brandewie93f08222013-02-06 09:02:13 -0800249 struct pstate_data pstate;
Dirk Brandewie007bea02013-12-18 10:32:39 -0800250 struct vid_data vid;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800251 struct _pid pid;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800252
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +0200253 u64 last_update;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +0100254 u64 last_sample_time;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800255 u64 prev_aperf;
256 u64 prev_mperf;
Doug Smythies4055fad2015-04-11 21:10:26 -0700257 u64 prev_tsc;
Philippe Longepe63d1d652015-12-04 17:40:35 +0100258 u64 prev_cummulative_iowait;
Dirk Brandewied37e2b72014-02-12 10:01:04 -0800259 struct sample sample;
Rafael J. Wysockie14cf882017-03-28 00:03:20 +0200260 int32_t min_perf;
261 int32_t max_perf;
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700262#ifdef CONFIG_ACPI
263 struct acpi_processor_performance acpi_perf_data;
264 bool valid_pss_table;
265#endif
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +0200266 unsigned int iowait_boost;
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800267 s16 epp_powersave;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800268 s16 epp_policy;
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800269 s16 epp_default;
270 s16 epp_saved;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800271};
272
273static struct cpudata **all_cpu_data;
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700274
275/**
Rafael J. Wysocki39545172016-10-11 23:07:38 +0200276 * struct pstate_adjust_policy - Stores static PID configuration data
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700277 * @sample_rate_ms: PID calculation sample rate in ms
278 * @sample_rate_ns: Sample rate calculation in ns
279 * @deadband: PID deadband
280 * @setpoint: PID Setpoint
281 * @p_gain_pct: PID proportional gain
282 * @i_gain_pct: PID integral gain
283 * @d_gain_pct: PID derivative gain
284 *
285 * Stores per CPU model static PID configuration data.
286 */
Dirk Brandewie93f08222013-02-06 09:02:13 -0800287struct pstate_adjust_policy {
288 int sample_rate_ms;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +0100289 s64 sample_rate_ns;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800290 int deadband;
291 int setpoint;
292 int p_gain_pct;
293 int d_gain_pct;
294 int i_gain_pct;
295};
296
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700297/**
298 * struct pstate_funcs - Per CPU model specific callbacks
299 * @get_max: Callback to get maximum non turbo effective P state
300 * @get_max_physical: Callback to get maximum non turbo physical P state
301 * @get_min: Callback to get minimum P state
302 * @get_turbo: Callback to get turbo P state
303 * @get_scaling: Callback to get frequency scaling factor
304 * @get_val: Callback to convert P state to actual MSR write value
305 * @get_vid: Callback to get VID data for Atom platforms
306 * @get_target_pstate: Callback to a function to calculate next P state to use
307 *
308 * Core and Atom CPU models have different way to get P State limits. This
309 * structure is used to store those callbacks.
310 */
Dirk Brandewie016c8152013-10-21 09:20:34 -0700311struct pstate_funcs {
312 int (*get_max)(void);
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -0700313 int (*get_max_physical)(void);
Dirk Brandewie016c8152013-10-21 09:20:34 -0700314 int (*get_min)(void);
315 int (*get_turbo)(void);
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700316 int (*get_scaling)(void);
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +0100317 u64 (*get_val)(struct cpudata*, int pstate);
Dirk Brandewie007bea02013-12-18 10:32:39 -0800318 void (*get_vid)(struct cpudata *);
Philippe Longepe157386b2015-12-04 17:40:30 +0100319 int32_t (*get_target_pstate)(struct cpudata *);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800320};
321
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700322/**
323 * struct cpu_defaults- Per CPU model default config data
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700324 * @funcs: Callback function data
325 */
Dirk Brandewie016c8152013-10-21 09:20:34 -0700326struct cpu_defaults {
Dirk Brandewie016c8152013-10-21 09:20:34 -0700327 struct pstate_funcs funcs;
328};
329
Philippe Longepe157386b2015-12-04 17:40:30 +0100330static inline int32_t get_target_pstate_use_performance(struct cpudata *cpu);
Philippe Longepee70eed22015-12-04 17:40:32 +0100331static inline int32_t get_target_pstate_use_cpu_load(struct cpudata *cpu);
Philippe Longepe157386b2015-12-04 17:40:30 +0100332
Jisheng Zhang4a7cb7a2016-06-27 18:07:18 +0800333static struct pstate_funcs pstate_funcs __read_mostly;
Rafael J. Wysocki5c439052017-03-28 00:05:44 +0200334static struct pstate_adjust_policy pid_params __read_mostly = {
335 .sample_rate_ms = 10,
336 .sample_rate_ns = 10 * NSEC_PER_MSEC,
337 .deadband = 0,
338 .setpoint = 97,
339 .p_gain_pct = 20,
340 .d_gain_pct = 0,
341 .i_gain_pct = 0,
342};
343
Jisheng Zhang4a7cb7a2016-06-27 18:07:18 +0800344static int hwp_active __read_mostly;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700345static bool per_cpu_limits __read_mostly;
Dirk Brandewie016c8152013-10-21 09:20:34 -0700346
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +0100347static bool driver_registered __read_mostly;
348
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700349#ifdef CONFIG_ACPI
350static bool acpi_ppc;
351#endif
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700352
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +0100353static struct global_params global;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800354
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +0100355static DEFINE_MUTEX(intel_pstate_driver_lock);
Srinivas Pandruvadaa410c03d2016-10-28 10:44:52 -0700356static DEFINE_MUTEX(intel_pstate_limits_lock);
357
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700358#ifdef CONFIG_ACPI
Srinivas Pandruvada2b3ec762016-04-27 15:48:08 -0700359
360static bool intel_pstate_get_ppc_enable_status(void)
361{
362 if (acpi_gbl_FADT.preferred_profile == PM_ENTERPRISE_SERVER ||
363 acpi_gbl_FADT.preferred_profile == PM_PERFORMANCE_SERVER)
364 return true;
365
366 return acpi_ppc;
367}
368
Rafael J. Wysocki17669002016-11-22 12:24:00 -0800369#ifdef CONFIG_ACPI_CPPC_LIB
370
371/* The work item is needed to avoid CPU hotplug locking issues */
372static void intel_pstste_sched_itmt_work_fn(struct work_struct *work)
373{
374 sched_set_itmt_support();
375}
376
377static DECLARE_WORK(sched_itmt_work, intel_pstste_sched_itmt_work_fn);
378
379static void intel_pstate_set_itmt_prio(int cpu)
380{
381 struct cppc_perf_caps cppc_perf;
382 static u32 max_highest_perf = 0, min_highest_perf = U32_MAX;
383 int ret;
384
385 ret = cppc_get_perf_caps(cpu, &cppc_perf);
386 if (ret)
387 return;
388
389 /*
390 * The priorities can be set regardless of whether or not
391 * sched_set_itmt_support(true) has been called and it is valid to
392 * update them at any time after it has been called.
393 */
394 sched_set_itmt_core_prio(cppc_perf.highest_perf, cpu);
395
396 if (max_highest_perf <= min_highest_perf) {
397 if (cppc_perf.highest_perf > max_highest_perf)
398 max_highest_perf = cppc_perf.highest_perf;
399
400 if (cppc_perf.highest_perf < min_highest_perf)
401 min_highest_perf = cppc_perf.highest_perf;
402
403 if (max_highest_perf > min_highest_perf) {
404 /*
405 * This code can be run during CPU online under the
406 * CPU hotplug locks, so sched_set_itmt_support()
407 * cannot be called from here. Queue up a work item
408 * to invoke it.
409 */
410 schedule_work(&sched_itmt_work);
411 }
412 }
413}
414#else
415static void intel_pstate_set_itmt_prio(int cpu)
416{
417}
418#endif
419
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700420static void intel_pstate_init_acpi_perf_limits(struct cpufreq_policy *policy)
421{
422 struct cpudata *cpu;
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700423 int ret;
424 int i;
425
Rafael J. Wysocki17669002016-11-22 12:24:00 -0800426 if (hwp_active) {
427 intel_pstate_set_itmt_prio(policy->cpu);
Srinivas Pandruvadae59a8f72016-05-04 15:07:34 -0700428 return;
Rafael J. Wysocki17669002016-11-22 12:24:00 -0800429 }
Srinivas Pandruvadae59a8f72016-05-04 15:07:34 -0700430
Srinivas Pandruvada2b3ec762016-04-27 15:48:08 -0700431 if (!intel_pstate_get_ppc_enable_status())
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700432 return;
433
434 cpu = all_cpu_data[policy->cpu];
435
436 ret = acpi_processor_register_performance(&cpu->acpi_perf_data,
437 policy->cpu);
438 if (ret)
439 return;
440
441 /*
442 * Check if the control value in _PSS is for PERF_CTL MSR, which should
443 * guarantee that the states returned by it map to the states in our
444 * list directly.
445 */
446 if (cpu->acpi_perf_data.control_register.space_id !=
447 ACPI_ADR_SPACE_FIXED_HARDWARE)
448 goto err;
449
450 /*
451 * If there is only one entry _PSS, simply ignore _PSS and continue as
452 * usual without taking _PSS into account
453 */
454 if (cpu->acpi_perf_data.state_count < 2)
455 goto err;
456
457 pr_debug("CPU%u - ACPI _PSS perf data\n", policy->cpu);
458 for (i = 0; i < cpu->acpi_perf_data.state_count; i++) {
459 pr_debug(" %cP%d: %u MHz, %u mW, 0x%x\n",
460 (i == cpu->acpi_perf_data.state ? '*' : ' '), i,
461 (u32) cpu->acpi_perf_data.states[i].core_frequency,
462 (u32) cpu->acpi_perf_data.states[i].power,
463 (u32) cpu->acpi_perf_data.states[i].control);
464 }
465
466 /*
467 * The _PSS table doesn't contain whole turbo frequency range.
468 * This just contains +1 MHZ above the max non turbo frequency,
469 * with control value corresponding to max turbo ratio. But
470 * when cpufreq set policy is called, it will call with this
471 * max frequency, which will cause a reduced performance as
472 * this driver uses real max turbo frequency as the max
473 * frequency. So correct this frequency in _PSS table to
Srinivas Pandruvadab00345d2016-06-14 23:12:59 -0700474 * correct max turbo frequency based on the turbo state.
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700475 * Also need to convert to MHz as _PSS freq is in MHz.
476 */
Rafael J. Wysocki7de32552017-03-18 00:57:39 +0100477 if (!global.turbo_disabled)
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700478 cpu->acpi_perf_data.states[0].core_frequency =
479 policy->cpuinfo.max_freq / 1000;
480 cpu->valid_pss_table = true;
Srinivas Pandruvada6cacd112016-05-29 23:31:23 -0700481 pr_debug("_PPC limits will be enforced\n");
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700482
483 return;
484
485 err:
486 cpu->valid_pss_table = false;
487 acpi_processor_unregister_performance(policy->cpu);
488}
489
490static void intel_pstate_exit_perf_limits(struct cpufreq_policy *policy)
491{
492 struct cpudata *cpu;
493
494 cpu = all_cpu_data[policy->cpu];
495 if (!cpu->valid_pss_table)
496 return;
497
498 acpi_processor_unregister_performance(policy->cpu);
499}
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700500#else
Arnd Bergmann7a3ba762016-11-25 17:50:20 +0100501static inline void intel_pstate_init_acpi_perf_limits(struct cpufreq_policy *policy)
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700502{
503}
504
Arnd Bergmann7a3ba762016-11-25 17:50:20 +0100505static inline void intel_pstate_exit_perf_limits(struct cpufreq_policy *policy)
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700506{
507}
508#endif
509
Dirk Brandewie93f08222013-02-06 09:02:13 -0800510static inline void pid_reset(struct _pid *pid, int setpoint, int busy,
Stratos Karafotisc4108332014-07-18 08:37:23 -0700511 int deadband, int integral) {
Philippe Longepeb54a0df2016-03-08 10:31:14 +0100512 pid->setpoint = int_tofp(setpoint);
513 pid->deadband = int_tofp(deadband);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800514 pid->integral = int_tofp(integral);
Dirk Brandewied98d0992014-02-12 10:01:05 -0800515 pid->last_err = int_tofp(setpoint) - int_tofp(busy);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800516}
517
518static inline void pid_p_gain_set(struct _pid *pid, int percent)
519{
Rafael J. Wysocki22590ef2016-04-09 01:25:58 +0200520 pid->p_gain = div_fp(percent, 100);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800521}
522
523static inline void pid_i_gain_set(struct _pid *pid, int percent)
524{
Rafael J. Wysocki22590ef2016-04-09 01:25:58 +0200525 pid->i_gain = div_fp(percent, 100);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800526}
527
528static inline void pid_d_gain_set(struct _pid *pid, int percent)
529{
Rafael J. Wysocki22590ef2016-04-09 01:25:58 +0200530 pid->d_gain = div_fp(percent, 100);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800531}
532
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700533static signed int pid_calc(struct _pid *pid, int32_t busy)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800534{
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700535 signed int result;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800536 int32_t pterm, dterm, fp_error;
537 int32_t integral_limit;
538
Philippe Longepeb54a0df2016-03-08 10:31:14 +0100539 fp_error = pid->setpoint - busy;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800540
Philippe Longepeb54a0df2016-03-08 10:31:14 +0100541 if (abs(fp_error) <= pid->deadband)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800542 return 0;
543
544 pterm = mul_fp(pid->p_gain, fp_error);
545
546 pid->integral += fp_error;
547
Kristen Carlson Accardie0d4c8f2014-12-10 12:39:38 -0800548 /*
549 * We limit the integral here so that it will never
550 * get higher than 30. This prevents it from becoming
551 * too large an input over long periods of time and allows
552 * it to get factored out sooner.
553 *
554 * The value of 30 was chosen through experimentation.
555 */
Dirk Brandewie93f08222013-02-06 09:02:13 -0800556 integral_limit = int_tofp(30);
557 if (pid->integral > integral_limit)
558 pid->integral = integral_limit;
559 if (pid->integral < -integral_limit)
560 pid->integral = -integral_limit;
561
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700562 dterm = mul_fp(pid->d_gain, fp_error - pid->last_err);
563 pid->last_err = fp_error;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800564
565 result = pterm + mul_fp(pid->integral, pid->i_gain) + dterm;
Doug Smythies51d211e2014-06-17 13:36:10 -0700566 result = result + (1 << (FRAC_BITS-1));
Dirk Brandewie93f08222013-02-06 09:02:13 -0800567 return (signed int)fp_toint(result);
568}
569
570static inline void intel_pstate_busy_pid_reset(struct cpudata *cpu)
571{
Dirk Brandewie016c8152013-10-21 09:20:34 -0700572 pid_p_gain_set(&cpu->pid, pid_params.p_gain_pct);
573 pid_d_gain_set(&cpu->pid, pid_params.d_gain_pct);
574 pid_i_gain_set(&cpu->pid, pid_params.i_gain_pct);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800575
Stratos Karafotis2d8d1f12014-07-18 08:37:20 -0700576 pid_reset(&cpu->pid, pid_params.setpoint, 100, pid_params.deadband, 0);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800577}
578
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700579static inline void update_turbo_state(void)
580{
581 u64 misc_en;
582 struct cpudata *cpu;
583
584 cpu = all_cpu_data[0];
585 rdmsrl(MSR_IA32_MISC_ENABLE, misc_en);
Rafael J. Wysocki7de32552017-03-18 00:57:39 +0100586 global.turbo_disabled =
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700587 (misc_en & MSR_IA32_MISC_ENABLE_TURBO_DISABLE ||
588 cpu->pstate.max_pstate == cpu->pstate.turbo_pstate);
589}
590
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +0100591static int min_perf_pct_min(void)
592{
593 struct cpudata *cpu = all_cpu_data[0];
594
595 return DIV_ROUND_UP(cpu->pstate.min_pstate * 100,
596 cpu->pstate.turbo_pstate);
597}
598
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800599static s16 intel_pstate_get_epb(struct cpudata *cpu_data)
600{
601 u64 epb;
602 int ret;
603
604 if (!static_cpu_has(X86_FEATURE_EPB))
605 return -ENXIO;
606
607 ret = rdmsrl_on_cpu(cpu_data->cpu, MSR_IA32_ENERGY_PERF_BIAS, &epb);
608 if (ret)
609 return (s16)ret;
610
611 return (s16)(epb & 0x0f);
612}
613
614static s16 intel_pstate_get_epp(struct cpudata *cpu_data, u64 hwp_req_data)
615{
616 s16 epp;
617
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800618 if (static_cpu_has(X86_FEATURE_HWP_EPP)) {
619 /*
620 * When hwp_req_data is 0, means that caller didn't read
621 * MSR_HWP_REQUEST, so need to read and get EPP.
622 */
623 if (!hwp_req_data) {
624 epp = rdmsrl_on_cpu(cpu_data->cpu, MSR_HWP_REQUEST,
625 &hwp_req_data);
626 if (epp)
627 return epp;
628 }
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800629 epp = (hwp_req_data >> 24) & 0xff;
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800630 } else {
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800631 /* When there is no EPP present, HWP uses EPB settings */
632 epp = intel_pstate_get_epb(cpu_data);
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800633 }
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800634
635 return epp;
636}
637
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800638static int intel_pstate_set_epb(int cpu, s16 pref)
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800639{
640 u64 epb;
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800641 int ret;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800642
643 if (!static_cpu_has(X86_FEATURE_EPB))
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800644 return -ENXIO;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800645
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800646 ret = rdmsrl_on_cpu(cpu, MSR_IA32_ENERGY_PERF_BIAS, &epb);
647 if (ret)
648 return ret;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800649
650 epb = (epb & ~0x0f) | pref;
651 wrmsrl_on_cpu(cpu, MSR_IA32_ENERGY_PERF_BIAS, epb);
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800652
653 return 0;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800654}
655
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800656/*
657 * EPP/EPB display strings corresponding to EPP index in the
658 * energy_perf_strings[]
659 * index String
660 *-------------------------------------
661 * 0 default
662 * 1 performance
663 * 2 balance_performance
664 * 3 balance_power
665 * 4 power
666 */
667static const char * const energy_perf_strings[] = {
668 "default",
669 "performance",
670 "balance_performance",
671 "balance_power",
672 "power",
673 NULL
674};
675
676static int intel_pstate_get_energy_pref_index(struct cpudata *cpu_data)
677{
678 s16 epp;
679 int index = -EINVAL;
680
681 epp = intel_pstate_get_epp(cpu_data, 0);
682 if (epp < 0)
683 return epp;
684
685 if (static_cpu_has(X86_FEATURE_HWP_EPP)) {
686 /*
687 * Range:
688 * 0x00-0x3F : Performance
689 * 0x40-0x7F : Balance performance
690 * 0x80-0xBF : Balance power
691 * 0xC0-0xFF : Power
692 * The EPP is a 8 bit value, but our ranges restrict the
693 * value which can be set. Here only using top two bits
694 * effectively.
695 */
696 index = (epp >> 6) + 1;
697 } else if (static_cpu_has(X86_FEATURE_EPB)) {
698 /*
699 * Range:
700 * 0x00-0x03 : Performance
701 * 0x04-0x07 : Balance performance
702 * 0x08-0x0B : Balance power
703 * 0x0C-0x0F : Power
704 * The EPB is a 4 bit value, but our ranges restrict the
705 * value which can be set. Here only using top two bits
706 * effectively.
707 */
708 index = (epp >> 2) + 1;
709 }
710
711 return index;
712}
713
714static int intel_pstate_set_energy_pref_index(struct cpudata *cpu_data,
715 int pref_index)
716{
717 int epp = -EINVAL;
718 int ret;
719
720 if (!pref_index)
721 epp = cpu_data->epp_default;
722
723 mutex_lock(&intel_pstate_limits_lock);
724
725 if (static_cpu_has(X86_FEATURE_HWP_EPP)) {
726 u64 value;
727
728 ret = rdmsrl_on_cpu(cpu_data->cpu, MSR_HWP_REQUEST, &value);
729 if (ret)
730 goto return_pref;
731
732 value &= ~GENMASK_ULL(31, 24);
733
734 /*
735 * If epp is not default, convert from index into
736 * energy_perf_strings to epp value, by shifting 6
737 * bits left to use only top two bits in epp.
738 * The resultant epp need to shifted by 24 bits to
739 * epp position in MSR_HWP_REQUEST.
740 */
741 if (epp == -EINVAL)
742 epp = (pref_index - 1) << 6;
743
744 value |= (u64)epp << 24;
745 ret = wrmsrl_on_cpu(cpu_data->cpu, MSR_HWP_REQUEST, value);
746 } else {
747 if (epp == -EINVAL)
748 epp = (pref_index - 1) << 2;
749 ret = intel_pstate_set_epb(cpu_data->cpu, epp);
750 }
751return_pref:
752 mutex_unlock(&intel_pstate_limits_lock);
753
754 return ret;
755}
756
757static ssize_t show_energy_performance_available_preferences(
758 struct cpufreq_policy *policy, char *buf)
759{
760 int i = 0;
761 int ret = 0;
762
763 while (energy_perf_strings[i] != NULL)
764 ret += sprintf(&buf[ret], "%s ", energy_perf_strings[i++]);
765
766 ret += sprintf(&buf[ret], "\n");
767
768 return ret;
769}
770
771cpufreq_freq_attr_ro(energy_performance_available_preferences);
772
773static ssize_t store_energy_performance_preference(
774 struct cpufreq_policy *policy, const char *buf, size_t count)
775{
776 struct cpudata *cpu_data = all_cpu_data[policy->cpu];
777 char str_preference[21];
778 int ret, i = 0;
779
780 ret = sscanf(buf, "%20s", str_preference);
781 if (ret != 1)
782 return -EINVAL;
783
784 while (energy_perf_strings[i] != NULL) {
785 if (!strcmp(str_preference, energy_perf_strings[i])) {
786 intel_pstate_set_energy_pref_index(cpu_data, i);
787 return count;
788 }
789 ++i;
790 }
791
792 return -EINVAL;
793}
794
795static ssize_t show_energy_performance_preference(
796 struct cpufreq_policy *policy, char *buf)
797{
798 struct cpudata *cpu_data = all_cpu_data[policy->cpu];
799 int preference;
800
801 preference = intel_pstate_get_energy_pref_index(cpu_data);
802 if (preference < 0)
803 return preference;
804
805 return sprintf(buf, "%s\n", energy_perf_strings[preference]);
806}
807
808cpufreq_freq_attr_rw(energy_performance_preference);
809
810static struct freq_attr *hwp_cpufreq_attrs[] = {
811 &energy_performance_preference,
812 &energy_performance_available_preferences,
813 NULL,
814};
815
Rafael J. Wysocki111b8b32016-12-30 15:58:21 +0100816static void intel_pstate_hwp_set(struct cpufreq_policy *policy)
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800817{
Srinivas Pandruvada3f8ed542017-03-13 18:30:12 -0700818 int min, hw_min, max, hw_max, cpu;
Kristen Carlson Accardi74da56c2015-09-09 11:41:22 -0700819 u64 value, cap;
820
Rafael J. Wysocki111b8b32016-12-30 15:58:21 +0100821 for_each_cpu(cpu, policy->cpus) {
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800822 struct cpudata *cpu_data = all_cpu_data[cpu];
823 s16 epp;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700824
Srinivas Pandruvadaf9f48722016-10-08 12:42:38 -0700825 rdmsrl_on_cpu(cpu, MSR_HWP_CAPABILITIES, &cap);
826 hw_min = HWP_LOWEST_PERF(cap);
Rafael J. Wysocki7de32552017-03-18 00:57:39 +0100827 if (global.no_turbo)
Srinivas Pandruvada4e5d3f72017-01-18 10:48:24 -0800828 hw_max = HWP_GUARANTEED_PERF(cap);
829 else
830 hw_max = HWP_HIGHEST_PERF(cap);
Srinivas Pandruvadaf9f48722016-10-08 12:42:38 -0700831
Rafael J. Wysockie14cf882017-03-28 00:03:20 +0200832 max = fp_ext_toint(hw_max * cpu_data->max_perf);
Rafael J. Wysocki7de32552017-03-18 00:57:39 +0100833 if (cpu_data->policy == CPUFREQ_POLICY_PERFORMANCE)
834 min = max;
835 else
Rafael J. Wysockie14cf882017-03-28 00:03:20 +0200836 min = fp_ext_toint(hw_max * cpu_data->min_perf);
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700837
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800838 rdmsrl_on_cpu(cpu, MSR_HWP_REQUEST, &value);
Srinivas Pandruvada3f8ed542017-03-13 18:30:12 -0700839
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800840 value &= ~HWP_MIN_PERF(~0L);
841 value |= HWP_MIN_PERF(min);
842
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800843 value &= ~HWP_MAX_PERF(~0L);
844 value |= HWP_MAX_PERF(max);
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800845
846 if (cpu_data->epp_policy == cpu_data->policy)
847 goto skip_epp;
848
849 cpu_data->epp_policy = cpu_data->policy;
850
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800851 if (cpu_data->epp_saved >= 0) {
852 epp = cpu_data->epp_saved;
853 cpu_data->epp_saved = -EINVAL;
854 goto update_epp;
855 }
856
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800857 if (cpu_data->policy == CPUFREQ_POLICY_PERFORMANCE) {
858 epp = intel_pstate_get_epp(cpu_data, value);
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800859 cpu_data->epp_powersave = epp;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800860 /* If EPP read was failed, then don't try to write */
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800861 if (epp < 0)
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800862 goto skip_epp;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800863
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800864
865 epp = 0;
866 } else {
867 /* skip setting EPP, when saved value is invalid */
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800868 if (cpu_data->epp_powersave < 0)
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800869 goto skip_epp;
870
871 /*
872 * No need to restore EPP when it is not zero. This
873 * means:
874 * - Policy is not changed
875 * - user has manually changed
876 * - Error reading EPB
877 */
878 epp = intel_pstate_get_epp(cpu_data, value);
879 if (epp)
880 goto skip_epp;
881
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800882 epp = cpu_data->epp_powersave;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800883 }
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800884update_epp:
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800885 if (static_cpu_has(X86_FEATURE_HWP_EPP)) {
886 value &= ~GENMASK_ULL(31, 24);
887 value |= (u64)epp << 24;
888 } else {
889 intel_pstate_set_epb(cpu, epp);
890 }
891skip_epp:
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800892 wrmsrl_on_cpu(cpu, MSR_HWP_REQUEST, value);
893 }
Viresh Kumar41cfd642016-02-22 10:27:46 +0530894}
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800895
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800896static int intel_pstate_hwp_save_state(struct cpufreq_policy *policy)
897{
898 struct cpudata *cpu_data = all_cpu_data[policy->cpu];
899
900 if (!hwp_active)
901 return 0;
902
903 cpu_data->epp_saved = intel_pstate_get_epp(cpu_data, 0);
904
905 return 0;
906}
907
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800908static int intel_pstate_resume(struct cpufreq_policy *policy)
909{
910 if (!hwp_active)
911 return 0;
912
Rafael J. Wysockiaa439242016-12-30 15:56:14 +0100913 mutex_lock(&intel_pstate_limits_lock);
914
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800915 all_cpu_data[policy->cpu]->epp_policy = 0;
Rafael J. Wysocki5f98ced2017-03-09 16:30:38 +0100916 intel_pstate_hwp_set(policy);
Rafael J. Wysockiaa439242016-12-30 15:56:14 +0100917
918 mutex_unlock(&intel_pstate_limits_lock);
919
Rafael J. Wysocki5f98ced2017-03-09 16:30:38 +0100920 return 0;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800921}
922
Rafael J. Wysocki111b8b32016-12-30 15:58:21 +0100923static void intel_pstate_update_policies(void)
Viresh Kumar41cfd642016-02-22 10:27:46 +0530924{
Rafael J. Wysocki111b8b32016-12-30 15:58:21 +0100925 int cpu;
926
927 for_each_possible_cpu(cpu)
928 cpufreq_update_policy(cpu);
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800929}
930
Dirk Brandewie93f08222013-02-06 09:02:13 -0800931/************************** debugfs begin ************************/
932static int pid_param_set(void *data, u64 val)
933{
Rafael J. Wysocki4ddd0142017-03-28 00:07:15 +0200934 unsigned int cpu;
935
Dirk Brandewie93f08222013-02-06 09:02:13 -0800936 *(u32 *)data = val;
Rafael J. Wysocki6e7408a2017-03-12 18:12:56 +0100937 pid_params.sample_rate_ns = pid_params.sample_rate_ms * NSEC_PER_MSEC;
Rafael J. Wysocki4ddd0142017-03-28 00:07:15 +0200938 for_each_possible_cpu(cpu)
939 if (all_cpu_data[cpu])
940 intel_pstate_busy_pid_reset(all_cpu_data[cpu]);
941
Dirk Brandewie93f08222013-02-06 09:02:13 -0800942 return 0;
943}
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700944
Dirk Brandewie93f08222013-02-06 09:02:13 -0800945static int pid_param_get(void *data, u64 *val)
946{
947 *val = *(u32 *)data;
948 return 0;
949}
Stratos Karafotis2d8d1f12014-07-18 08:37:20 -0700950DEFINE_SIMPLE_ATTRIBUTE(fops_pid_param, pid_param_get, pid_param_set, "%llu\n");
Dirk Brandewie93f08222013-02-06 09:02:13 -0800951
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +0100952static struct dentry *debugfs_parent;
953
Dirk Brandewie93f08222013-02-06 09:02:13 -0800954struct pid_param {
955 char *name;
956 void *value;
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +0100957 struct dentry *dentry;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800958};
959
960static struct pid_param pid_files[] = {
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +0100961 {"sample_rate_ms", &pid_params.sample_rate_ms, },
962 {"d_gain_pct", &pid_params.d_gain_pct, },
963 {"i_gain_pct", &pid_params.i_gain_pct, },
964 {"deadband", &pid_params.deadband, },
965 {"setpoint", &pid_params.setpoint, },
966 {"p_gain_pct", &pid_params.p_gain_pct, },
967 {NULL, NULL, }
Dirk Brandewie93f08222013-02-06 09:02:13 -0800968};
969
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +0100970static void intel_pstate_debug_expose_params(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800971{
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +0100972 int i;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800973
974 debugfs_parent = debugfs_create_dir("pstate_snb", NULL);
975 if (IS_ERR_OR_NULL(debugfs_parent))
976 return;
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +0100977
978 for (i = 0; pid_files[i].name; i++) {
979 struct dentry *dentry;
980
981 dentry = debugfs_create_file(pid_files[i].name, 0660,
982 debugfs_parent, pid_files[i].value,
983 &fops_pid_param);
984 if (!IS_ERR(dentry))
985 pid_files[i].dentry = dentry;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800986 }
987}
988
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +0100989static void intel_pstate_debug_hide_params(void)
990{
991 int i;
992
993 if (IS_ERR_OR_NULL(debugfs_parent))
994 return;
995
996 for (i = 0; pid_files[i].name; i++) {
997 debugfs_remove(pid_files[i].dentry);
998 pid_files[i].dentry = NULL;
999 }
1000
1001 debugfs_remove(debugfs_parent);
1002 debugfs_parent = NULL;
1003}
1004
Dirk Brandewie93f08222013-02-06 09:02:13 -08001005/************************** debugfs end ************************/
1006
1007/************************** sysfs begin ************************/
1008#define show_one(file_name, object) \
1009 static ssize_t show_##file_name \
1010 (struct kobject *kobj, struct attribute *attr, char *buf) \
1011 { \
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01001012 return sprintf(buf, "%u\n", global.object); \
Dirk Brandewie93f08222013-02-06 09:02:13 -08001013 }
1014
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01001015static ssize_t intel_pstate_show_status(char *buf);
1016static int intel_pstate_update_status(const char *buf, size_t size);
1017
1018static ssize_t show_status(struct kobject *kobj,
1019 struct attribute *attr, char *buf)
1020{
1021 ssize_t ret;
1022
1023 mutex_lock(&intel_pstate_driver_lock);
1024 ret = intel_pstate_show_status(buf);
1025 mutex_unlock(&intel_pstate_driver_lock);
1026
1027 return ret;
1028}
1029
1030static ssize_t store_status(struct kobject *a, struct attribute *b,
1031 const char *buf, size_t count)
1032{
1033 char *p = memchr(buf, '\n', count);
1034 int ret;
1035
1036 mutex_lock(&intel_pstate_driver_lock);
1037 ret = intel_pstate_update_status(buf, p ? p - buf : count);
1038 mutex_unlock(&intel_pstate_driver_lock);
1039
1040 return ret < 0 ? ret : count;
1041}
1042
Kristen Carlson Accardid01b1f42015-01-28 15:03:27 -08001043static ssize_t show_turbo_pct(struct kobject *kobj,
1044 struct attribute *attr, char *buf)
1045{
1046 struct cpudata *cpu;
1047 int total, no_turbo, turbo_pct;
1048 uint32_t turbo_fp;
1049
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001050 mutex_lock(&intel_pstate_driver_lock);
1051
1052 if (!driver_registered) {
1053 mutex_unlock(&intel_pstate_driver_lock);
1054 return -EAGAIN;
1055 }
1056
Kristen Carlson Accardid01b1f42015-01-28 15:03:27 -08001057 cpu = all_cpu_data[0];
1058
1059 total = cpu->pstate.turbo_pstate - cpu->pstate.min_pstate + 1;
1060 no_turbo = cpu->pstate.max_pstate - cpu->pstate.min_pstate + 1;
Rafael J. Wysocki22590ef2016-04-09 01:25:58 +02001061 turbo_fp = div_fp(no_turbo, total);
Kristen Carlson Accardid01b1f42015-01-28 15:03:27 -08001062 turbo_pct = 100 - fp_toint(mul_fp(turbo_fp, int_tofp(100)));
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001063
1064 mutex_unlock(&intel_pstate_driver_lock);
1065
Kristen Carlson Accardid01b1f42015-01-28 15:03:27 -08001066 return sprintf(buf, "%u\n", turbo_pct);
1067}
1068
Kristen Carlson Accardi05224242015-01-28 15:03:28 -08001069static ssize_t show_num_pstates(struct kobject *kobj,
1070 struct attribute *attr, char *buf)
1071{
1072 struct cpudata *cpu;
1073 int total;
1074
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001075 mutex_lock(&intel_pstate_driver_lock);
1076
1077 if (!driver_registered) {
1078 mutex_unlock(&intel_pstate_driver_lock);
1079 return -EAGAIN;
1080 }
1081
Kristen Carlson Accardi05224242015-01-28 15:03:28 -08001082 cpu = all_cpu_data[0];
1083 total = cpu->pstate.turbo_pstate - cpu->pstate.min_pstate + 1;
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001084
1085 mutex_unlock(&intel_pstate_driver_lock);
1086
Kristen Carlson Accardi05224242015-01-28 15:03:28 -08001087 return sprintf(buf, "%u\n", total);
1088}
1089
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -07001090static ssize_t show_no_turbo(struct kobject *kobj,
1091 struct attribute *attr, char *buf)
1092{
1093 ssize_t ret;
1094
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001095 mutex_lock(&intel_pstate_driver_lock);
1096
1097 if (!driver_registered) {
1098 mutex_unlock(&intel_pstate_driver_lock);
1099 return -EAGAIN;
1100 }
1101
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -07001102 update_turbo_state();
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01001103 if (global.turbo_disabled)
1104 ret = sprintf(buf, "%u\n", global.turbo_disabled);
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -07001105 else
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01001106 ret = sprintf(buf, "%u\n", global.no_turbo);
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -07001107
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001108 mutex_unlock(&intel_pstate_driver_lock);
1109
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -07001110 return ret;
1111}
1112
Dirk Brandewie93f08222013-02-06 09:02:13 -08001113static ssize_t store_no_turbo(struct kobject *a, struct attribute *b,
Stratos Karafotisc4108332014-07-18 08:37:23 -07001114 const char *buf, size_t count)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001115{
1116 unsigned int input;
1117 int ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001118
Dirk Brandewie93f08222013-02-06 09:02:13 -08001119 ret = sscanf(buf, "%u", &input);
1120 if (ret != 1)
1121 return -EINVAL;
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -07001122
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001123 mutex_lock(&intel_pstate_driver_lock);
1124
1125 if (!driver_registered) {
1126 mutex_unlock(&intel_pstate_driver_lock);
1127 return -EAGAIN;
1128 }
1129
Srinivas Pandruvadaa410c03d2016-10-28 10:44:52 -07001130 mutex_lock(&intel_pstate_limits_lock);
1131
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -07001132 update_turbo_state();
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01001133 if (global.turbo_disabled) {
Joe Perches4836df12016-04-05 13:28:23 -07001134 pr_warn("Turbo disabled by BIOS or unavailable on processor\n");
Srinivas Pandruvadaa410c03d2016-10-28 10:44:52 -07001135 mutex_unlock(&intel_pstate_limits_lock);
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001136 mutex_unlock(&intel_pstate_driver_lock);
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -07001137 return -EPERM;
Dirk Brandewiedd5fbf72014-06-20 07:27:59 -07001138 }
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001139
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01001140 global.no_turbo = clamp_t(int, input, 0, 1);
Rafael J. Wysocki111b8b32016-12-30 15:58:21 +01001141
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01001142 if (global.no_turbo) {
1143 struct cpudata *cpu = all_cpu_data[0];
1144 int pct = cpu->pstate.max_pstate * 100 / cpu->pstate.turbo_pstate;
1145
1146 /* Squash the global minimum into the permitted range. */
1147 if (global.min_perf_pct > pct)
1148 global.min_perf_pct = pct;
1149 }
1150
Rafael J. Wysockicd59b4be2017-03-01 00:07:36 +01001151 mutex_unlock(&intel_pstate_limits_lock);
1152
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01001153 intel_pstate_update_policies();
1154
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001155 mutex_unlock(&intel_pstate_driver_lock);
1156
Dirk Brandewie93f08222013-02-06 09:02:13 -08001157 return count;
1158}
1159
1160static ssize_t store_max_perf_pct(struct kobject *a, struct attribute *b,
Stratos Karafotisc4108332014-07-18 08:37:23 -07001161 const char *buf, size_t count)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001162{
1163 unsigned int input;
1164 int ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001165
Dirk Brandewie93f08222013-02-06 09:02:13 -08001166 ret = sscanf(buf, "%u", &input);
1167 if (ret != 1)
1168 return -EINVAL;
1169
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001170 mutex_lock(&intel_pstate_driver_lock);
1171
1172 if (!driver_registered) {
1173 mutex_unlock(&intel_pstate_driver_lock);
1174 return -EAGAIN;
1175 }
1176
Srinivas Pandruvadaa410c03d2016-10-28 10:44:52 -07001177 mutex_lock(&intel_pstate_limits_lock);
1178
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01001179 global.max_perf_pct = clamp_t(int, input, global.min_perf_pct, 100);
Rafael J. Wysocki111b8b32016-12-30 15:58:21 +01001180
Rafael J. Wysockicd59b4be2017-03-01 00:07:36 +01001181 mutex_unlock(&intel_pstate_limits_lock);
1182
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01001183 intel_pstate_update_policies();
1184
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001185 mutex_unlock(&intel_pstate_driver_lock);
1186
Dirk Brandewie93f08222013-02-06 09:02:13 -08001187 return count;
1188}
1189
1190static ssize_t store_min_perf_pct(struct kobject *a, struct attribute *b,
Stratos Karafotisc4108332014-07-18 08:37:23 -07001191 const char *buf, size_t count)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001192{
1193 unsigned int input;
1194 int ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001195
Dirk Brandewie93f08222013-02-06 09:02:13 -08001196 ret = sscanf(buf, "%u", &input);
1197 if (ret != 1)
1198 return -EINVAL;
Kristen Carlson Accardia0475992015-01-29 13:03:52 -08001199
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001200 mutex_lock(&intel_pstate_driver_lock);
1201
1202 if (!driver_registered) {
1203 mutex_unlock(&intel_pstate_driver_lock);
1204 return -EAGAIN;
1205 }
1206
Srinivas Pandruvadaa410c03d2016-10-28 10:44:52 -07001207 mutex_lock(&intel_pstate_limits_lock);
1208
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01001209 global.min_perf_pct = clamp_t(int, input,
1210 min_perf_pct_min(), global.max_perf_pct);
Rafael J. Wysocki111b8b32016-12-30 15:58:21 +01001211
Rafael J. Wysockicd59b4be2017-03-01 00:07:36 +01001212 mutex_unlock(&intel_pstate_limits_lock);
1213
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01001214 intel_pstate_update_policies();
1215
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001216 mutex_unlock(&intel_pstate_driver_lock);
1217
Dirk Brandewie93f08222013-02-06 09:02:13 -08001218 return count;
1219}
1220
Dirk Brandewie93f08222013-02-06 09:02:13 -08001221show_one(max_perf_pct, max_perf_pct);
1222show_one(min_perf_pct, min_perf_pct);
1223
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01001224define_one_global_rw(status);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001225define_one_global_rw(no_turbo);
1226define_one_global_rw(max_perf_pct);
1227define_one_global_rw(min_perf_pct);
Kristen Carlson Accardid01b1f42015-01-28 15:03:27 -08001228define_one_global_ro(turbo_pct);
Kristen Carlson Accardi05224242015-01-28 15:03:28 -08001229define_one_global_ro(num_pstates);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001230
1231static struct attribute *intel_pstate_attributes[] = {
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01001232 &status.attr,
Dirk Brandewie93f08222013-02-06 09:02:13 -08001233 &no_turbo.attr,
Kristen Carlson Accardid01b1f42015-01-28 15:03:27 -08001234 &turbo_pct.attr,
Kristen Carlson Accardi05224242015-01-28 15:03:28 -08001235 &num_pstates.attr,
Dirk Brandewie93f08222013-02-06 09:02:13 -08001236 NULL
1237};
1238
1239static struct attribute_group intel_pstate_attr_group = {
1240 .attrs = intel_pstate_attributes,
1241};
Dirk Brandewie93f08222013-02-06 09:02:13 -08001242
Stratos Karafotis317dd502014-07-18 08:37:17 -07001243static void __init intel_pstate_sysfs_expose_params(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001244{
Stratos Karafotis317dd502014-07-18 08:37:17 -07001245 struct kobject *intel_pstate_kobject;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001246 int rc;
1247
1248 intel_pstate_kobject = kobject_create_and_add("intel_pstate",
1249 &cpu_subsys.dev_root->kobj);
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001250 if (WARN_ON(!intel_pstate_kobject))
1251 return;
1252
Stratos Karafotis2d8d1f12014-07-18 08:37:20 -07001253 rc = sysfs_create_group(intel_pstate_kobject, &intel_pstate_attr_group);
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001254 if (WARN_ON(rc))
1255 return;
1256
1257 /*
1258 * If per cpu limits are enforced there are no global limits, so
1259 * return without creating max/min_perf_pct attributes
1260 */
1261 if (per_cpu_limits)
1262 return;
1263
1264 rc = sysfs_create_file(intel_pstate_kobject, &max_perf_pct.attr);
1265 WARN_ON(rc);
1266
1267 rc = sysfs_create_file(intel_pstate_kobject, &min_perf_pct.attr);
1268 WARN_ON(rc);
1269
Dirk Brandewie93f08222013-02-06 09:02:13 -08001270}
Dirk Brandewie93f08222013-02-06 09:02:13 -08001271/************************** sysfs end ************************/
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001272
Kristen Carlson Accardiba88d432015-07-14 09:46:23 -07001273static void intel_pstate_hwp_enable(struct cpudata *cpudata)
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001274{
Srinivas Pandruvadaf05c9662016-02-25 15:09:31 -08001275 /* First disable HWP notification interrupt as we don't process them */
Srinivas Pandruvadada7de912016-07-19 16:52:01 -07001276 if (static_cpu_has(X86_FEATURE_HWP_NOTIFY))
1277 wrmsrl_on_cpu(cpudata->cpu, MSR_HWP_INTERRUPT, 0x00);
Srinivas Pandruvadaf05c9662016-02-25 15:09:31 -08001278
Kristen Carlson Accardiba88d432015-07-14 09:46:23 -07001279 wrmsrl_on_cpu(cpudata->cpu, MSR_PM_ENABLE, 0x1);
Srinivas Pandruvada84428852016-11-24 16:07:10 -08001280 cpudata->epp_policy = 0;
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -08001281 if (cpudata->epp_default == -EINVAL)
1282 cpudata->epp_default = intel_pstate_get_epp(cpudata, 0);
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001283}
1284
Srinivas Pandruvada6e978b22017-02-03 14:18:39 -08001285#define MSR_IA32_POWER_CTL_BIT_EE 19
1286
1287/* Disable energy efficiency optimization */
1288static void intel_pstate_disable_ee(int cpu)
1289{
1290 u64 power_ctl;
1291 int ret;
1292
1293 ret = rdmsrl_on_cpu(cpu, MSR_IA32_POWER_CTL, &power_ctl);
1294 if (ret)
1295 return;
1296
1297 if (!(power_ctl & BIT(MSR_IA32_POWER_CTL_BIT_EE))) {
1298 pr_info("Disabling energy efficiency optimization\n");
1299 power_ctl |= BIT(MSR_IA32_POWER_CTL_BIT_EE);
1300 wrmsrl_on_cpu(cpu, MSR_IA32_POWER_CTL, power_ctl);
1301 }
1302}
1303
Philippe Longepe938d21a2015-11-09 17:40:46 -08001304static int atom_get_min_pstate(void)
Dirk Brandewie19e77c22013-10-21 09:20:35 -07001305{
1306 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001307
Len Brown92134bd2017-02-25 16:55:17 -05001308 rdmsrl(MSR_ATOM_CORE_RATIOS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -07001309 return (value >> 8) & 0x7F;
Dirk Brandewie19e77c22013-10-21 09:20:35 -07001310}
Dirk Brandewie93f08222013-02-06 09:02:13 -08001311
Philippe Longepe938d21a2015-11-09 17:40:46 -08001312static int atom_get_max_pstate(void)
Dirk Brandewie19e77c22013-10-21 09:20:35 -07001313{
1314 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001315
Len Brown92134bd2017-02-25 16:55:17 -05001316 rdmsrl(MSR_ATOM_CORE_RATIOS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -07001317 return (value >> 16) & 0x7F;
Dirk Brandewie19e77c22013-10-21 09:20:35 -07001318}
1319
Philippe Longepe938d21a2015-11-09 17:40:46 -08001320static int atom_get_turbo_pstate(void)
Dirk Brandewie61d8d2a2014-02-12 10:01:07 -08001321{
1322 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001323
Len Brown92134bd2017-02-25 16:55:17 -05001324 rdmsrl(MSR_ATOM_CORE_TURBO_RATIOS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -07001325 return value & 0x7F;
Dirk Brandewie61d8d2a2014-02-12 10:01:07 -08001326}
1327
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001328static u64 atom_get_val(struct cpudata *cpudata, int pstate)
Dirk Brandewie007bea02013-12-18 10:32:39 -08001329{
1330 u64 val;
1331 int32_t vid_fp;
1332 u32 vid;
1333
Chen Yu144c8e12015-07-29 23:53:10 +08001334 val = (u64)pstate << 8;
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01001335 if (global.no_turbo && !global.turbo_disabled)
Dirk Brandewie007bea02013-12-18 10:32:39 -08001336 val |= (u64)1 << 32;
1337
1338 vid_fp = cpudata->vid.min + mul_fp(
1339 int_tofp(pstate - cpudata->pstate.min_pstate),
1340 cpudata->vid.ratio);
1341
1342 vid_fp = clamp_t(int32_t, vid_fp, cpudata->vid.min, cpudata->vid.max);
Dirk Brandewied022a652014-10-13 08:37:44 -07001343 vid = ceiling_fp(vid_fp);
Dirk Brandewie007bea02013-12-18 10:32:39 -08001344
Dirk Brandewie21855ff2014-05-08 12:57:23 -07001345 if (pstate > cpudata->pstate.max_pstate)
1346 vid = cpudata->vid.turbo;
1347
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001348 return val | vid;
Dirk Brandewie007bea02013-12-18 10:32:39 -08001349}
1350
Philippe Longepe1421df62015-11-09 17:40:47 -08001351static int silvermont_get_scaling(void)
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001352{
1353 u64 value;
1354 int i;
Philippe Longepe1421df62015-11-09 17:40:47 -08001355 /* Defined in Table 35-6 from SDM (Sept 2015) */
1356 static int silvermont_freq_table[] = {
1357 83300, 100000, 133300, 116700, 80000};
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001358
1359 rdmsrl(MSR_FSB_FREQ, value);
Philippe Longepe1421df62015-11-09 17:40:47 -08001360 i = value & 0x7;
1361 WARN_ON(i > 4);
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001362
Philippe Longepe1421df62015-11-09 17:40:47 -08001363 return silvermont_freq_table[i];
1364}
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001365
Philippe Longepe1421df62015-11-09 17:40:47 -08001366static int airmont_get_scaling(void)
1367{
1368 u64 value;
1369 int i;
1370 /* Defined in Table 35-10 from SDM (Sept 2015) */
1371 static int airmont_freq_table[] = {
1372 83300, 100000, 133300, 116700, 80000,
1373 93300, 90000, 88900, 87500};
1374
1375 rdmsrl(MSR_FSB_FREQ, value);
1376 i = value & 0xF;
1377 WARN_ON(i > 8);
1378
1379 return airmont_freq_table[i];
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001380}
1381
Philippe Longepe938d21a2015-11-09 17:40:46 -08001382static void atom_get_vid(struct cpudata *cpudata)
Dirk Brandewie007bea02013-12-18 10:32:39 -08001383{
1384 u64 value;
1385
Len Brown92134bd2017-02-25 16:55:17 -05001386 rdmsrl(MSR_ATOM_CORE_VIDS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -07001387 cpudata->vid.min = int_tofp((value >> 8) & 0x7f);
1388 cpudata->vid.max = int_tofp((value >> 16) & 0x7f);
Dirk Brandewie007bea02013-12-18 10:32:39 -08001389 cpudata->vid.ratio = div_fp(
1390 cpudata->vid.max - cpudata->vid.min,
1391 int_tofp(cpudata->pstate.max_pstate -
1392 cpudata->pstate.min_pstate));
Dirk Brandewie21855ff2014-05-08 12:57:23 -07001393
Len Brown92134bd2017-02-25 16:55:17 -05001394 rdmsrl(MSR_ATOM_CORE_TURBO_VIDS, value);
Dirk Brandewie21855ff2014-05-08 12:57:23 -07001395 cpudata->vid.turbo = value & 0x7f;
Dirk Brandewie007bea02013-12-18 10:32:39 -08001396}
1397
Dirk Brandewie016c8152013-10-21 09:20:34 -07001398static int core_get_min_pstate(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001399{
1400 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001401
Konrad Rzeszutek Wilk05e99c8cf2013-03-20 14:21:10 +00001402 rdmsrl(MSR_PLATFORM_INFO, value);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001403 return (value >> 40) & 0xFF;
1404}
1405
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -07001406static int core_get_max_pstate_physical(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001407{
1408 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001409
Konrad Rzeszutek Wilk05e99c8cf2013-03-20 14:21:10 +00001410 rdmsrl(MSR_PLATFORM_INFO, value);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001411 return (value >> 8) & 0xFF;
1412}
1413
Srinivas Pandruvada8fc75542017-01-19 15:03:14 -08001414static int core_get_tdp_ratio(u64 plat_info)
1415{
1416 /* Check how many TDP levels present */
1417 if (plat_info & 0x600000000) {
1418 u64 tdp_ctrl;
1419 u64 tdp_ratio;
1420 int tdp_msr;
1421 int err;
1422
1423 /* Get the TDP level (0, 1, 2) to get ratios */
1424 err = rdmsrl_safe(MSR_CONFIG_TDP_CONTROL, &tdp_ctrl);
1425 if (err)
1426 return err;
1427
1428 /* TDP MSR are continuous starting at 0x648 */
1429 tdp_msr = MSR_CONFIG_TDP_NOMINAL + (tdp_ctrl & 0x03);
1430 err = rdmsrl_safe(tdp_msr, &tdp_ratio);
1431 if (err)
1432 return err;
1433
1434 /* For level 1 and 2, bits[23:16] contain the ratio */
1435 if (tdp_ctrl & 0x03)
1436 tdp_ratio >>= 16;
1437
1438 tdp_ratio &= 0xff; /* ratios are only 8 bits long */
1439 pr_debug("tdp_ratio %x\n", (int)tdp_ratio);
1440
1441 return (int)tdp_ratio;
1442 }
1443
1444 return -ENXIO;
1445}
1446
Dirk Brandewie93f08222013-02-06 09:02:13 -08001447static int core_get_max_pstate(void)
1448{
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -07001449 u64 tar;
1450 u64 plat_info;
1451 int max_pstate;
Srinivas Pandruvada8fc75542017-01-19 15:03:14 -08001452 int tdp_ratio;
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -07001453 int err;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001454
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -07001455 rdmsrl(MSR_PLATFORM_INFO, plat_info);
1456 max_pstate = (plat_info >> 8) & 0xFF;
1457
Srinivas Pandruvada8fc75542017-01-19 15:03:14 -08001458 tdp_ratio = core_get_tdp_ratio(plat_info);
1459 if (tdp_ratio <= 0)
1460 return max_pstate;
1461
1462 if (hwp_active) {
1463 /* Turbo activation ratio is not used on HWP platforms */
1464 return tdp_ratio;
1465 }
1466
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -07001467 err = rdmsrl_safe(MSR_TURBO_ACTIVATION_RATIO, &tar);
1468 if (!err) {
Srinivas Pandruvada8fc75542017-01-19 15:03:14 -08001469 int tar_levels;
1470
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -07001471 /* Do some sanity checking for safety */
Srinivas Pandruvada8fc75542017-01-19 15:03:14 -08001472 tar_levels = tar & 0xff;
1473 if (tdp_ratio - 1 == tar_levels) {
1474 max_pstate = tar_levels;
1475 pr_debug("max_pstate=TAC %x\n", max_pstate);
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -07001476 }
1477 }
1478
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -07001479 return max_pstate;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001480}
1481
Dirk Brandewie016c8152013-10-21 09:20:34 -07001482static int core_get_turbo_pstate(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001483{
1484 u64 value;
1485 int nont, ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001486
Srinivas Pandruvada100cf6f2016-07-06 16:07:55 -07001487 rdmsrl(MSR_TURBO_RATIO_LIMIT, value);
Dirk Brandewie016c8152013-10-21 09:20:34 -07001488 nont = core_get_max_pstate();
Stratos Karafotis285cb992014-07-18 08:37:21 -07001489 ret = (value) & 255;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001490 if (ret <= nont)
1491 ret = nont;
1492 return ret;
1493}
1494
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001495static inline int core_get_scaling(void)
1496{
1497 return 100000;
1498}
1499
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001500static u64 core_get_val(struct cpudata *cpudata, int pstate)
Dirk Brandewie016c8152013-10-21 09:20:34 -07001501{
1502 u64 val;
1503
Chen Yu144c8e12015-07-29 23:53:10 +08001504 val = (u64)pstate << 8;
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01001505 if (global.no_turbo && !global.turbo_disabled)
Dirk Brandewie016c8152013-10-21 09:20:34 -07001506 val |= (u64)1 << 32;
1507
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001508 return val;
Dirk Brandewie016c8152013-10-21 09:20:34 -07001509}
1510
Dasaratharaman Chandramoulib34ef932015-04-10 10:22:18 -07001511static int knl_get_turbo_pstate(void)
1512{
1513 u64 value;
1514 int nont, ret;
1515
Srinivas Pandruvada100cf6f2016-07-06 16:07:55 -07001516 rdmsrl(MSR_TURBO_RATIO_LIMIT, value);
Dasaratharaman Chandramoulib34ef932015-04-10 10:22:18 -07001517 nont = core_get_max_pstate();
1518 ret = (((value) >> 8) & 0xFF);
1519 if (ret <= nont)
1520 ret = nont;
1521 return ret;
1522}
1523
Dirk Brandewie016c8152013-10-21 09:20:34 -07001524static struct cpu_defaults core_params = {
Dirk Brandewie016c8152013-10-21 09:20:34 -07001525 .funcs = {
1526 .get_max = core_get_max_pstate,
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -07001527 .get_max_physical = core_get_max_pstate_physical,
Dirk Brandewie016c8152013-10-21 09:20:34 -07001528 .get_min = core_get_min_pstate,
1529 .get_turbo = core_get_turbo_pstate,
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001530 .get_scaling = core_get_scaling,
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001531 .get_val = core_get_val,
Philippe Longepe157386b2015-12-04 17:40:30 +01001532 .get_target_pstate = get_target_pstate_use_performance,
Dirk Brandewie016c8152013-10-21 09:20:34 -07001533 },
1534};
1535
Julia Lawall42ce8922016-09-11 15:06:01 +02001536static const struct cpu_defaults silvermont_params = {
Dirk Brandewie19e77c22013-10-21 09:20:35 -07001537 .funcs = {
Philippe Longepe938d21a2015-11-09 17:40:46 -08001538 .get_max = atom_get_max_pstate,
1539 .get_max_physical = atom_get_max_pstate,
1540 .get_min = atom_get_min_pstate,
1541 .get_turbo = atom_get_turbo_pstate,
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001542 .get_val = atom_get_val,
Philippe Longepe1421df62015-11-09 17:40:47 -08001543 .get_scaling = silvermont_get_scaling,
1544 .get_vid = atom_get_vid,
Philippe Longepee70eed22015-12-04 17:40:32 +01001545 .get_target_pstate = get_target_pstate_use_cpu_load,
Philippe Longepe1421df62015-11-09 17:40:47 -08001546 },
1547};
1548
Julia Lawall42ce8922016-09-11 15:06:01 +02001549static const struct cpu_defaults airmont_params = {
Philippe Longepe1421df62015-11-09 17:40:47 -08001550 .funcs = {
1551 .get_max = atom_get_max_pstate,
1552 .get_max_physical = atom_get_max_pstate,
1553 .get_min = atom_get_min_pstate,
1554 .get_turbo = atom_get_turbo_pstate,
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001555 .get_val = atom_get_val,
Philippe Longepe1421df62015-11-09 17:40:47 -08001556 .get_scaling = airmont_get_scaling,
Philippe Longepe938d21a2015-11-09 17:40:46 -08001557 .get_vid = atom_get_vid,
Philippe Longepee70eed22015-12-04 17:40:32 +01001558 .get_target_pstate = get_target_pstate_use_cpu_load,
Dirk Brandewie19e77c22013-10-21 09:20:35 -07001559 },
1560};
1561
Julia Lawall42ce8922016-09-11 15:06:01 +02001562static const struct cpu_defaults knl_params = {
Dasaratharaman Chandramoulib34ef932015-04-10 10:22:18 -07001563 .funcs = {
1564 .get_max = core_get_max_pstate,
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -07001565 .get_max_physical = core_get_max_pstate_physical,
Dasaratharaman Chandramoulib34ef932015-04-10 10:22:18 -07001566 .get_min = core_get_min_pstate,
1567 .get_turbo = knl_get_turbo_pstate,
Lukasz Anaczkowski69cefc22015-07-21 10:41:13 +02001568 .get_scaling = core_get_scaling,
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001569 .get_val = core_get_val,
Philippe Longepe157386b2015-12-04 17:40:30 +01001570 .get_target_pstate = get_target_pstate_use_performance,
Dasaratharaman Chandramoulib34ef932015-04-10 10:22:18 -07001571 },
1572};
1573
Julia Lawall42ce8922016-09-11 15:06:01 +02001574static const struct cpu_defaults bxt_params = {
Srinivas Pandruvada41bad472016-06-09 15:34:41 -07001575 .funcs = {
1576 .get_max = core_get_max_pstate,
1577 .get_max_physical = core_get_max_pstate_physical,
1578 .get_min = core_get_min_pstate,
1579 .get_turbo = core_get_turbo_pstate,
1580 .get_scaling = core_get_scaling,
1581 .get_val = core_get_val,
1582 .get_target_pstate = get_target_pstate_use_cpu_load,
1583 },
1584};
1585
Dirk Brandewie93f08222013-02-06 09:02:13 -08001586static void intel_pstate_get_min_max(struct cpudata *cpu, int *min, int *max)
1587{
1588 int max_perf = cpu->pstate.turbo_pstate;
Dirk Brandewie7244cb62013-10-21 09:20:33 -07001589 int max_perf_adj;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001590 int min_perf;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001591
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01001592 if (global.no_turbo || global.turbo_disabled)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001593 max_perf = cpu->pstate.max_pstate;
1594
Kristen Carlson Accardie0d4c8f2014-12-10 12:39:38 -08001595 /*
1596 * performance can be limited by user through sysfs, by cpufreq
1597 * policy, or by cpu specific default values determined through
1598 * experimentation.
1599 */
Rafael J. Wysockie14cf882017-03-28 00:03:20 +02001600 max_perf_adj = fp_ext_toint(max_perf * cpu->max_perf);
Rafael J. Wysocki799281a2015-11-18 23:29:56 +01001601 *max = clamp_t(int, max_perf_adj,
1602 cpu->pstate.min_pstate, cpu->pstate.turbo_pstate);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001603
Rafael J. Wysockie14cf882017-03-28 00:03:20 +02001604 min_perf = fp_ext_toint(max_perf * cpu->min_perf);
Rafael J. Wysocki799281a2015-11-18 23:29:56 +01001605 *min = clamp_t(int, min_perf, cpu->pstate.min_pstate, max_perf);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001606}
1607
Rafael J. Wysockia6c6ead2016-10-19 02:57:22 +02001608static void intel_pstate_set_pstate(struct cpudata *cpu, int pstate)
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001609{
Rafael J. Wysockibc95a452016-07-19 15:10:37 +02001610 trace_cpu_frequency(pstate * cpu->pstate.scaling, cpu->cpu);
1611 cpu->pstate.current_pstate = pstate;
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001612 /*
1613 * Generally, there is no guarantee that this code will always run on
1614 * the CPU being updated, so force the register update to run on the
1615 * right CPU.
1616 */
1617 wrmsrl_on_cpu(cpu->cpu, MSR_IA32_PERF_CTL,
1618 pstate_funcs.get_val(cpu, pstate));
Dirk Brandewie93f08222013-02-06 09:02:13 -08001619}
1620
Rafael J. Wysockia6c6ead2016-10-19 02:57:22 +02001621static void intel_pstate_set_min_pstate(struct cpudata *cpu)
1622{
1623 intel_pstate_set_pstate(cpu, cpu->pstate.min_pstate);
1624}
1625
1626static void intel_pstate_max_within_limits(struct cpudata *cpu)
1627{
1628 int min_pstate, max_pstate;
1629
1630 update_turbo_state();
1631 intel_pstate_get_min_max(cpu, &min_pstate, &max_pstate);
1632 intel_pstate_set_pstate(cpu, max_pstate);
1633}
1634
Dirk Brandewie93f08222013-02-06 09:02:13 -08001635static void intel_pstate_get_cpu_pstates(struct cpudata *cpu)
1636{
Dirk Brandewie016c8152013-10-21 09:20:34 -07001637 cpu->pstate.min_pstate = pstate_funcs.get_min();
1638 cpu->pstate.max_pstate = pstate_funcs.get_max();
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -07001639 cpu->pstate.max_pstate_physical = pstate_funcs.get_max_physical();
Dirk Brandewie016c8152013-10-21 09:20:34 -07001640 cpu->pstate.turbo_pstate = pstate_funcs.get_turbo();
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001641 cpu->pstate.scaling = pstate_funcs.get_scaling();
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01001642 cpu->pstate.max_freq = cpu->pstate.max_pstate * cpu->pstate.scaling;
1643 cpu->pstate.turbo_freq = cpu->pstate.turbo_pstate * cpu->pstate.scaling;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001644
Dirk Brandewie007bea02013-12-18 10:32:39 -08001645 if (pstate_funcs.get_vid)
1646 pstate_funcs.get_vid(cpu);
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001647
1648 intel_pstate_set_min_pstate(cpu);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001649}
1650
Rafael J. Wysockia1c97872016-05-11 19:09:12 +02001651static inline void intel_pstate_calc_avg_perf(struct cpudata *cpu)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001652{
Stratos Karafotis6b17ddb2014-04-29 20:53:49 +03001653 struct sample *sample = &cpu->sample;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001654
Rafael J. Wysockia1c97872016-05-11 19:09:12 +02001655 sample->core_avg_perf = div_ext_fp(sample->aperf, sample->mperf);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001656}
1657
Rafael J. Wysocki4fec7ad2016-03-10 23:45:19 +01001658static inline bool intel_pstate_sample(struct cpudata *cpu, u64 time)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001659{
Dirk Brandewie93f08222013-02-06 09:02:13 -08001660 u64 aperf, mperf;
Stratos Karafotis4ab60c32014-07-18 08:37:24 -07001661 unsigned long flags;
Doug Smythies4055fad2015-04-11 21:10:26 -07001662 u64 tsc;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001663
Stratos Karafotis4ab60c32014-07-18 08:37:24 -07001664 local_irq_save(flags);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001665 rdmsrl(MSR_IA32_APERF, aperf);
1666 rdmsrl(MSR_IA32_MPERF, mperf);
Philippe Longepee70eed22015-12-04 17:40:32 +01001667 tsc = rdtsc();
Rafael J. Wysocki4fec7ad2016-03-10 23:45:19 +01001668 if (cpu->prev_mperf == mperf || cpu->prev_tsc == tsc) {
Srinivas Pandruvada8e601a92015-10-15 12:34:21 -07001669 local_irq_restore(flags);
Rafael J. Wysocki4fec7ad2016-03-10 23:45:19 +01001670 return false;
Srinivas Pandruvada8e601a92015-10-15 12:34:21 -07001671 }
Stratos Karafotis4ab60c32014-07-18 08:37:24 -07001672 local_irq_restore(flags);
Dirk Brandewieb69880f2014-01-16 10:32:25 -08001673
Dirk Brandewiec4ee8412014-05-29 09:32:24 -07001674 cpu->last_sample_time = cpu->sample.time;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001675 cpu->sample.time = time;
Dirk Brandewied37e2b72014-02-12 10:01:04 -08001676 cpu->sample.aperf = aperf;
1677 cpu->sample.mperf = mperf;
Doug Smythies4055fad2015-04-11 21:10:26 -07001678 cpu->sample.tsc = tsc;
Dirk Brandewied37e2b72014-02-12 10:01:04 -08001679 cpu->sample.aperf -= cpu->prev_aperf;
1680 cpu->sample.mperf -= cpu->prev_mperf;
Doug Smythies4055fad2015-04-11 21:10:26 -07001681 cpu->sample.tsc -= cpu->prev_tsc;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001682
Dirk Brandewie93f08222013-02-06 09:02:13 -08001683 cpu->prev_aperf = aperf;
1684 cpu->prev_mperf = mperf;
Doug Smythies4055fad2015-04-11 21:10:26 -07001685 cpu->prev_tsc = tsc;
Rafael J. Wysockifebce402016-04-02 01:06:21 +02001686 /*
1687 * First time this function is invoked in a given cycle, all of the
1688 * previous sample data fields are equal to zero or stale and they must
1689 * be populated with meaningful numbers for things to work, so assume
1690 * that sample.time will always be reset before setting the utilization
1691 * update hook and make the caller skip the sample then.
1692 */
1693 return !!cpu->last_sample_time;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001694}
1695
Philippe Longepe8fa520a2016-03-06 08:34:06 +01001696static inline int32_t get_avg_frequency(struct cpudata *cpu)
1697{
Rafael J. Wysockia1c97872016-05-11 19:09:12 +02001698 return mul_ext_fp(cpu->sample.core_avg_perf,
1699 cpu->pstate.max_pstate_physical * cpu->pstate.scaling);
Philippe Longepe8fa520a2016-03-06 08:34:06 +01001700}
1701
Philippe Longepebdcaa232016-04-22 11:46:09 -07001702static inline int32_t get_avg_pstate(struct cpudata *cpu)
1703{
Rafael J. Wysocki8edb0a62016-05-11 19:10:42 +02001704 return mul_ext_fp(cpu->pstate.max_pstate_physical,
1705 cpu->sample.core_avg_perf);
Philippe Longepebdcaa232016-04-22 11:46:09 -07001706}
1707
Philippe Longepee70eed22015-12-04 17:40:32 +01001708static inline int32_t get_target_pstate_use_cpu_load(struct cpudata *cpu)
1709{
1710 struct sample *sample = &cpu->sample;
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02001711 int32_t busy_frac, boost;
Rafael J. Wysocki0843e832016-10-06 14:07:51 +02001712 int target, avg_pstate;
Philippe Longepee70eed22015-12-04 17:40:32 +01001713
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02001714 busy_frac = div_fp(sample->mperf, sample->tsc);
Philippe Longepe63d1d652015-12-04 17:40:35 +01001715
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02001716 boost = cpu->iowait_boost;
1717 cpu->iowait_boost >>= 1;
Philippe Longepe63d1d652015-12-04 17:40:35 +01001718
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02001719 if (busy_frac < boost)
1720 busy_frac = boost;
Philippe Longepe63d1d652015-12-04 17:40:35 +01001721
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02001722 sample->busy_scaled = busy_frac * 100;
Rafael J. Wysocki0843e832016-10-06 14:07:51 +02001723
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01001724 target = global.no_turbo || global.turbo_disabled ?
Rafael J. Wysocki0843e832016-10-06 14:07:51 +02001725 cpu->pstate.max_pstate : cpu->pstate.turbo_pstate;
1726 target += target >> 2;
1727 target = mul_fp(target, busy_frac);
1728 if (target < cpu->pstate.min_pstate)
1729 target = cpu->pstate.min_pstate;
1730
1731 /*
1732 * If the average P-state during the previous cycle was higher than the
1733 * current target, add 50% of the difference to the target to reduce
1734 * possible performance oscillations and offset possible performance
1735 * loss related to moving the workload from one CPU to another within
1736 * a package/module.
1737 */
1738 avg_pstate = get_avg_pstate(cpu);
1739 if (avg_pstate > target)
1740 target += (avg_pstate - target) >> 1;
1741
1742 return target;
Philippe Longepee70eed22015-12-04 17:40:32 +01001743}
1744
Philippe Longepe157386b2015-12-04 17:40:30 +01001745static inline int32_t get_target_pstate_use_performance(struct cpudata *cpu)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001746{
Rafael J. Wysocki1aa7a6e2016-05-11 19:11:26 +02001747 int32_t perf_scaled, max_pstate, current_pstate, sample_ratio;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001748 u64 duration_ns;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001749
Kristen Carlson Accardie0d4c8f2014-12-10 12:39:38 -08001750 /*
Rafael J. Wysockif00593a2016-09-30 03:13:34 +02001751 * perf_scaled is the ratio of the average P-state during the last
1752 * sampling period to the P-state requested last time (in percent).
1753 *
1754 * That measures the system's response to the previous P-state
1755 * selection.
Kristen Carlson Accardie0d4c8f2014-12-10 12:39:38 -08001756 */
Rafael J. Wysocki22590ef2016-04-09 01:25:58 +02001757 max_pstate = cpu->pstate.max_pstate_physical;
1758 current_pstate = cpu->pstate.current_pstate;
Rafael J. Wysocki1aa7a6e2016-05-11 19:11:26 +02001759 perf_scaled = mul_ext_fp(cpu->sample.core_avg_perf,
Rafael J. Wysockia1c97872016-05-11 19:09:12 +02001760 div_fp(100 * max_pstate, current_pstate));
Dirk Brandewiec4ee8412014-05-29 09:32:24 -07001761
Kristen Carlson Accardie0d4c8f2014-12-10 12:39:38 -08001762 /*
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001763 * Since our utilization update callback will not run unless we are
1764 * in C0, check if the actual elapsed time is significantly greater (3x)
1765 * than our sample interval. If it is, then we were idle for a long
Rafael J. Wysocki1aa7a6e2016-05-11 19:11:26 +02001766 * enough period of time to adjust our performance metric.
Kristen Carlson Accardie0d4c8f2014-12-10 12:39:38 -08001767 */
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001768 duration_ns = cpu->sample.time - cpu->last_sample_time;
Rafael J. Wysockifebce402016-04-02 01:06:21 +02001769 if ((s64)duration_ns > pid_params.sample_rate_ns * 3) {
Rafael J. Wysocki22590ef2016-04-09 01:25:58 +02001770 sample_ratio = div_fp(pid_params.sample_rate_ns, duration_ns);
Rafael J. Wysocki1aa7a6e2016-05-11 19:11:26 +02001771 perf_scaled = mul_fp(perf_scaled, sample_ratio);
Rafael J. Wysockiffb81052016-04-10 05:59:10 +02001772 } else {
1773 sample_ratio = div_fp(100 * cpu->sample.mperf, cpu->sample.tsc);
1774 if (sample_ratio < int_tofp(1))
Rafael J. Wysocki1aa7a6e2016-05-11 19:11:26 +02001775 perf_scaled = 0;
Dirk Brandewiec4ee8412014-05-29 09:32:24 -07001776 }
1777
Rafael J. Wysocki1aa7a6e2016-05-11 19:11:26 +02001778 cpu->sample.busy_scaled = perf_scaled;
1779 return cpu->pstate.current_pstate - pid_calc(&cpu->pid, perf_scaled);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001780}
1781
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01001782static int intel_pstate_prepare_request(struct cpudata *cpu, int pstate)
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001783{
1784 int max_perf, min_perf;
1785
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001786 intel_pstate_get_min_max(cpu, &min_perf, &max_perf);
1787 pstate = clamp_t(int, pstate, min_perf, max_perf);
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01001788 return pstate;
1789}
1790
1791static void intel_pstate_update_pstate(struct cpudata *cpu, int pstate)
1792{
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001793 if (pstate == cpu->pstate.current_pstate)
1794 return;
1795
Rafael J. Wysockibc95a452016-07-19 15:10:37 +02001796 cpu->pstate.current_pstate = pstate;
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001797 wrmsrl(MSR_IA32_PERF_CTL, pstate_funcs.get_val(cpu, pstate));
1798}
1799
Dirk Brandewie93f08222013-02-06 09:02:13 -08001800static inline void intel_pstate_adjust_busy_pstate(struct cpudata *cpu)
1801{
Philippe Longepe157386b2015-12-04 17:40:30 +01001802 int from, target_pstate;
Doug Smythies4055fad2015-04-11 21:10:26 -07001803 struct sample *sample;
1804
1805 from = cpu->pstate.current_pstate;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001806
Rafael J. Wysocki2f1d4072016-10-24 23:20:25 +02001807 target_pstate = cpu->policy == CPUFREQ_POLICY_PERFORMANCE ?
1808 cpu->pstate.turbo_pstate : pstate_funcs.get_target_pstate(cpu);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001809
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01001810 update_turbo_state();
1811
Rafael J. Wysocki64078292017-03-03 23:51:31 +01001812 target_pstate = intel_pstate_prepare_request(cpu, target_pstate);
1813 trace_cpu_frequency(target_pstate * cpu->pstate.scaling, cpu->cpu);
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001814 intel_pstate_update_pstate(cpu, target_pstate);
Doug Smythies4055fad2015-04-11 21:10:26 -07001815
1816 sample = &cpu->sample;
Rafael J. Wysockia1c97872016-05-11 19:09:12 +02001817 trace_pstate_sample(mul_ext_fp(100, sample->core_avg_perf),
Philippe Longepe157386b2015-12-04 17:40:30 +01001818 fp_toint(sample->busy_scaled),
Doug Smythies4055fad2015-04-11 21:10:26 -07001819 from,
1820 cpu->pstate.current_pstate,
1821 sample->mperf,
1822 sample->aperf,
1823 sample->tsc,
Srinivas Pandruvada3ba7bca2016-09-13 17:41:33 -07001824 get_avg_frequency(cpu),
1825 fp_toint(cpu->iowait_boost * 100));
Dirk Brandewie93f08222013-02-06 09:02:13 -08001826}
1827
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001828static void intel_pstate_update_util(struct update_util_data *data, u64 time,
Rafael J. Wysocki58919e82016-08-16 22:14:55 +02001829 unsigned int flags)
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001830{
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001831 struct cpudata *cpu = container_of(data, struct cpudata, update_util);
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02001832 u64 delta_ns;
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001833
Rafael J. Wysocki1d298152016-10-19 02:53:26 +02001834 if (pstate_funcs.get_target_pstate == get_target_pstate_use_cpu_load) {
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02001835 if (flags & SCHED_CPUFREQ_IOWAIT) {
1836 cpu->iowait_boost = int_tofp(1);
1837 } else if (cpu->iowait_boost) {
1838 /* Clear iowait_boost if the CPU may have been idle. */
1839 delta_ns = time - cpu->last_update;
1840 if (delta_ns > TICK_NSEC)
1841 cpu->iowait_boost = 0;
1842 }
1843 cpu->last_update = time;
1844 }
1845
1846 delta_ns = time - cpu->sample.time;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001847 if ((s64)delta_ns >= pid_params.sample_rate_ns) {
Rafael J. Wysocki4fec7ad2016-03-10 23:45:19 +01001848 bool sample_taken = intel_pstate_sample(cpu, time);
1849
Rafael J. Wysocki6d45b712016-05-04 14:01:10 +02001850 if (sample_taken) {
Rafael J. Wysockia1c97872016-05-11 19:09:12 +02001851 intel_pstate_calc_avg_perf(cpu);
Rafael J. Wysocki6d45b712016-05-04 14:01:10 +02001852 if (!hwp_active)
1853 intel_pstate_adjust_busy_pstate(cpu);
1854 }
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001855 }
Dirk Brandewie93f08222013-02-06 09:02:13 -08001856}
1857
1858#define ICPU(model, policy) \
Dirk Brandewie6cbd7ee2014-01-06 10:59:16 -08001859 { X86_VENDOR_INTEL, 6, model, X86_FEATURE_APERFMPERF,\
1860 (unsigned long)&policy }
Dirk Brandewie93f08222013-02-06 09:02:13 -08001861
1862static const struct x86_cpu_id intel_pstate_cpu_ids[] = {
Dave Hansen5b20c942016-06-02 17:19:45 -07001863 ICPU(INTEL_FAM6_SANDYBRIDGE, core_params),
1864 ICPU(INTEL_FAM6_SANDYBRIDGE_X, core_params),
1865 ICPU(INTEL_FAM6_ATOM_SILVERMONT1, silvermont_params),
1866 ICPU(INTEL_FAM6_IVYBRIDGE, core_params),
1867 ICPU(INTEL_FAM6_HASWELL_CORE, core_params),
1868 ICPU(INTEL_FAM6_BROADWELL_CORE, core_params),
1869 ICPU(INTEL_FAM6_IVYBRIDGE_X, core_params),
1870 ICPU(INTEL_FAM6_HASWELL_X, core_params),
1871 ICPU(INTEL_FAM6_HASWELL_ULT, core_params),
1872 ICPU(INTEL_FAM6_HASWELL_GT3E, core_params),
1873 ICPU(INTEL_FAM6_BROADWELL_GT3E, core_params),
1874 ICPU(INTEL_FAM6_ATOM_AIRMONT, airmont_params),
1875 ICPU(INTEL_FAM6_SKYLAKE_MOBILE, core_params),
1876 ICPU(INTEL_FAM6_BROADWELL_X, core_params),
1877 ICPU(INTEL_FAM6_SKYLAKE_DESKTOP, core_params),
1878 ICPU(INTEL_FAM6_BROADWELL_XEON_D, core_params),
1879 ICPU(INTEL_FAM6_XEON_PHI_KNL, knl_params),
Piotr Luc58bf4542016-10-13 17:31:00 +02001880 ICPU(INTEL_FAM6_XEON_PHI_KNM, knl_params),
Srinivas Pandruvada41bad472016-06-09 15:34:41 -07001881 ICPU(INTEL_FAM6_ATOM_GOLDMONT, bxt_params),
Dirk Brandewie93f08222013-02-06 09:02:13 -08001882 {}
1883};
1884MODULE_DEVICE_TABLE(x86cpu, intel_pstate_cpu_ids);
1885
Jisheng Zhang29327c82016-06-27 18:07:17 +08001886static const struct x86_cpu_id intel_pstate_cpu_oob_ids[] __initconst = {
Dave Hansen5b20c942016-06-02 17:19:45 -07001887 ICPU(INTEL_FAM6_BROADWELL_XEON_D, core_params),
Srinivas Pandruvada65c12622016-07-23 15:12:06 -07001888 ICPU(INTEL_FAM6_BROADWELL_X, core_params),
1889 ICPU(INTEL_FAM6_SKYLAKE_X, core_params),
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001890 {}
1891};
1892
Srinivas Pandruvada6e978b22017-02-03 14:18:39 -08001893static const struct x86_cpu_id intel_pstate_cpu_ee_disable_ids[] = {
1894 ICPU(INTEL_FAM6_KABYLAKE_DESKTOP, core_params),
1895 {}
1896};
1897
Dirk Brandewie93f08222013-02-06 09:02:13 -08001898static int intel_pstate_init_cpu(unsigned int cpunum)
1899{
Dirk Brandewie93f08222013-02-06 09:02:13 -08001900 struct cpudata *cpu;
1901
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001902 cpu = all_cpu_data[cpunum];
1903
1904 if (!cpu) {
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01001905 cpu = kzalloc(sizeof(*cpu), GFP_KERNEL);
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001906 if (!cpu)
1907 return -ENOMEM;
1908
1909 all_cpu_data[cpunum] = cpu;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001910
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -08001911 cpu->epp_default = -EINVAL;
1912 cpu->epp_powersave = -EINVAL;
1913 cpu->epp_saved = -EINVAL;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001914 }
Dirk Brandewie93f08222013-02-06 09:02:13 -08001915
1916 cpu = all_cpu_data[cpunum];
1917
Dirk Brandewie93f08222013-02-06 09:02:13 -08001918 cpu->cpu = cpunum;
Kristen Carlson Accardiba88d432015-07-14 09:46:23 -07001919
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001920 if (hwp_active) {
Srinivas Pandruvada6e978b22017-02-03 14:18:39 -08001921 const struct x86_cpu_id *id;
1922
1923 id = x86_match_cpu(intel_pstate_cpu_ee_disable_ids);
1924 if (id)
1925 intel_pstate_disable_ee(cpunum);
1926
Kristen Carlson Accardiba88d432015-07-14 09:46:23 -07001927 intel_pstate_hwp_enable(cpu);
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001928 pid_params.sample_rate_ms = 50;
1929 pid_params.sample_rate_ns = 50 * NSEC_PER_MSEC;
1930 }
Kristen Carlson Accardiba88d432015-07-14 09:46:23 -07001931
Vincent Minet179e8472014-07-05 01:51:33 +02001932 intel_pstate_get_cpu_pstates(cpu);
Dirk Brandewie016c8152013-10-21 09:20:34 -07001933
Dirk Brandewie93f08222013-02-06 09:02:13 -08001934 intel_pstate_busy_pid_reset(cpu);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001935
Joe Perches4836df12016-04-05 13:28:23 -07001936 pr_debug("controlling: cpu %d\n", cpunum);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001937
1938 return 0;
1939}
1940
1941static unsigned int intel_pstate_get(unsigned int cpu_num)
1942{
Rafael J. Wysockif96fd0c2016-05-07 02:24:48 +02001943 struct cpudata *cpu = all_cpu_data[cpu_num];
Dirk Brandewie93f08222013-02-06 09:02:13 -08001944
Rafael J. Wysockif96fd0c2016-05-07 02:24:48 +02001945 return cpu ? get_avg_frequency(cpu) : 0;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001946}
1947
Rafael J. Wysockifebce402016-04-02 01:06:21 +02001948static void intel_pstate_set_update_util_hook(unsigned int cpu_num)
Rafael J. Wysockibb6ab522016-03-31 17:42:15 +02001949{
Rafael J. Wysockifebce402016-04-02 01:06:21 +02001950 struct cpudata *cpu = all_cpu_data[cpu_num];
1951
Rafael J. Wysocki5ab666e2016-06-27 23:47:15 +02001952 if (cpu->update_util_set)
1953 return;
1954
Rafael J. Wysockifebce402016-04-02 01:06:21 +02001955 /* Prevent intel_pstate_update_util() from using stale data. */
1956 cpu->sample.time = 0;
Rafael J. Wysocki0bed6122016-04-02 01:08:43 +02001957 cpufreq_add_update_util_hook(cpu_num, &cpu->update_util,
1958 intel_pstate_update_util);
Chen Yu4578ee7e2016-05-11 14:33:08 +08001959 cpu->update_util_set = true;
Rafael J. Wysockibb6ab522016-03-31 17:42:15 +02001960}
1961
1962static void intel_pstate_clear_update_util_hook(unsigned int cpu)
1963{
Chen Yu4578ee7e2016-05-11 14:33:08 +08001964 struct cpudata *cpu_data = all_cpu_data[cpu];
1965
1966 if (!cpu_data->update_util_set)
1967 return;
1968
Rafael J. Wysocki0bed6122016-04-02 01:08:43 +02001969 cpufreq_remove_update_util_hook(cpu);
Chen Yu4578ee7e2016-05-11 14:33:08 +08001970 cpu_data->update_util_set = false;
Rafael J. Wysockibb6ab522016-03-31 17:42:15 +02001971 synchronize_sched();
1972}
1973
Rafael J. Wysocki80b120c2017-03-23 00:00:47 +01001974static int intel_pstate_get_max_freq(struct cpudata *cpu)
1975{
1976 return global.turbo_disabled || global.no_turbo ?
1977 cpu->pstate.max_freq : cpu->pstate.turbo_freq;
1978}
1979
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001980static void intel_pstate_update_perf_limits(struct cpufreq_policy *policy,
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01001981 struct cpudata *cpu)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001982{
Rafael J. Wysocki80b120c2017-03-23 00:00:47 +01001983 int max_freq = intel_pstate_get_max_freq(cpu);
Rafael J. Wysockie4c204c2017-03-14 16:18:34 +01001984 int32_t max_policy_perf, min_policy_perf;
Srinivas Pandruvadaa410c03d2016-10-28 10:44:52 -07001985
Rafael J. Wysocki80b120c2017-03-23 00:00:47 +01001986 max_policy_perf = div_ext_fp(policy->max, max_freq);
Rafael J. Wysockie4c204c2017-03-14 16:18:34 +01001987 max_policy_perf = clamp_t(int32_t, max_policy_perf, 0, int_ext_tofp(1));
Srinivas Pandruvada5879f872016-10-25 13:20:41 -07001988 if (policy->max == policy->min) {
Rafael J. Wysockie4c204c2017-03-14 16:18:34 +01001989 min_policy_perf = max_policy_perf;
Srinivas Pandruvada5879f872016-10-25 13:20:41 -07001990 } else {
Rafael J. Wysocki80b120c2017-03-23 00:00:47 +01001991 min_policy_perf = div_ext_fp(policy->min, max_freq);
Rafael J. Wysockie4c204c2017-03-14 16:18:34 +01001992 min_policy_perf = clamp_t(int32_t, min_policy_perf,
1993 0, max_policy_perf);
Srinivas Pandruvada5879f872016-10-25 13:20:41 -07001994 }
Chen Yu43717aa2015-09-09 18:27:31 +08001995
Rafael J. Wysockie4c204c2017-03-14 16:18:34 +01001996 /* Normalize user input to [min_perf, max_perf] */
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01001997 if (per_cpu_limits) {
Rafael J. Wysockie14cf882017-03-28 00:03:20 +02001998 cpu->min_perf = min_policy_perf;
1999 cpu->max_perf = max_policy_perf;
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01002000 } else {
2001 int32_t global_min, global_max;
Chen Yu43717aa2015-09-09 18:27:31 +08002002
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01002003 /* Global limits are in percent of the maximum turbo P-state. */
2004 global_max = percent_ext_fp(global.max_perf_pct);
2005 global_min = percent_ext_fp(global.min_perf_pct);
Rafael J. Wysocki80b120c2017-03-23 00:00:47 +01002006 if (max_freq != cpu->pstate.turbo_freq) {
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01002007 int32_t turbo_factor;
2008
2009 turbo_factor = div_ext_fp(cpu->pstate.turbo_pstate,
2010 cpu->pstate.max_pstate);
2011 global_min = mul_ext_fp(global_min, turbo_factor);
2012 global_max = mul_ext_fp(global_max, turbo_factor);
2013 }
2014 global_min = clamp_t(int32_t, global_min, 0, global_max);
2015
Rafael J. Wysockie14cf882017-03-28 00:03:20 +02002016 cpu->min_perf = max(min_policy_perf, global_min);
2017 cpu->min_perf = min(cpu->min_perf, max_policy_perf);
2018 cpu->max_perf = min(max_policy_perf, global_max);
2019 cpu->max_perf = max(min_policy_perf, cpu->max_perf);
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01002020
2021 /* Make sure min_perf <= max_perf */
Rafael J. Wysockie14cf882017-03-28 00:03:20 +02002022 cpu->min_perf = min(cpu->min_perf, cpu->max_perf);
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01002023 }
Chen Yu43717aa2015-09-09 18:27:31 +08002024
Rafael J. Wysockie14cf882017-03-28 00:03:20 +02002025 cpu->max_perf = round_up(cpu->max_perf, EXT_FRAC_BITS);
2026 cpu->min_perf = round_up(cpu->min_perf, EXT_FRAC_BITS);
Dirk Brandewie93f08222013-02-06 09:02:13 -08002027
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07002028 pr_debug("cpu:%d max_perf_pct:%d min_perf_pct:%d\n", policy->cpu,
Rafael J. Wysockie14cf882017-03-28 00:03:20 +02002029 fp_ext_toint(cpu->max_perf * 100),
2030 fp_ext_toint(cpu->min_perf * 100));
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07002031}
2032
Dirk Brandewie93f08222013-02-06 09:02:13 -08002033static int intel_pstate_set_policy(struct cpufreq_policy *policy)
2034{
2035 struct cpudata *cpu;
2036
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08002037 if (!policy->cpuinfo.max_freq)
2038 return -ENODEV;
2039
Dirk Brandewie93f08222013-02-06 09:02:13 -08002040 pr_debug("set_policy cpuinfo.max %u policy->max %u\n",
2041 policy->cpuinfo.max_freq, policy->max);
2042
2043 cpu = all_cpu_data[policy->cpu];
2044 cpu->policy = policy->policy;
Viresh Kumarbe49e342013-10-02 14:13:19 +05302045
Srinivas Pandruvadab59fe542016-12-06 13:32:15 -08002046 mutex_lock(&intel_pstate_limits_lock);
2047
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01002048 intel_pstate_update_perf_limits(policy, cpu);
Rafael J. Wysockia240c4a2017-03-02 23:29:12 +01002049
Rafael J. Wysocki2f1d4072016-10-24 23:20:25 +02002050 if (cpu->policy == CPUFREQ_POLICY_PERFORMANCE) {
Rafael J. Wysockia6c6ead2016-10-19 02:57:22 +02002051 /*
2052 * NOHZ_FULL CPUs need this as the governor callback may not
2053 * be invoked on them.
2054 */
2055 intel_pstate_clear_update_util_hook(policy->cpu);
2056 intel_pstate_max_within_limits(cpu);
2057 }
2058
Rafael J. Wysockibb6ab522016-03-31 17:42:15 +02002059 intel_pstate_set_update_util_hook(policy->cpu);
2060
Rafael J. Wysocki5f98ced2017-03-09 16:30:38 +01002061 if (hwp_active)
2062 intel_pstate_hwp_set(policy);
Dirk Brandewie93f08222013-02-06 09:02:13 -08002063
Srinivas Pandruvadab59fe542016-12-06 13:32:15 -08002064 mutex_unlock(&intel_pstate_limits_lock);
2065
Dirk Brandewie93f08222013-02-06 09:02:13 -08002066 return 0;
2067}
2068
Rafael J. Wysocki80b120c2017-03-23 00:00:47 +01002069static void intel_pstate_adjust_policy_max(struct cpufreq_policy *policy,
2070 struct cpudata *cpu)
2071{
2072 if (cpu->pstate.max_pstate_physical > cpu->pstate.max_pstate &&
2073 policy->max < policy->cpuinfo.max_freq &&
2074 policy->max > cpu->pstate.max_freq) {
2075 pr_debug("policy->max > max non turbo frequency\n");
2076 policy->max = policy->cpuinfo.max_freq;
2077 }
2078}
2079
Dirk Brandewie93f08222013-02-06 09:02:13 -08002080static int intel_pstate_verify_policy(struct cpufreq_policy *policy)
2081{
Srinivas Pandruvada7d9a8a92017-01-18 10:48:23 -08002082 struct cpudata *cpu = all_cpu_data[policy->cpu];
Srinivas Pandruvada7d9a8a92017-01-18 10:48:23 -08002083
2084 update_turbo_state();
Rafael J. Wysocki80b120c2017-03-23 00:00:47 +01002085 cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq,
2086 intel_pstate_get_max_freq(cpu));
Dirk Brandewie93f08222013-02-06 09:02:13 -08002087
Stratos Karafotis285cb992014-07-18 08:37:21 -07002088 if (policy->policy != CPUFREQ_POLICY_POWERSAVE &&
Stratos Karafotisc4108332014-07-18 08:37:23 -07002089 policy->policy != CPUFREQ_POLICY_PERFORMANCE)
Dirk Brandewie93f08222013-02-06 09:02:13 -08002090 return -EINVAL;
2091
Rafael J. Wysocki80b120c2017-03-23 00:00:47 +01002092 intel_pstate_adjust_policy_max(policy, cpu);
2093
Dirk Brandewie93f08222013-02-06 09:02:13 -08002094 return 0;
2095}
2096
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002097static void intel_cpufreq_stop_cpu(struct cpufreq_policy *policy)
Dirk Brandewie93f08222013-02-06 09:02:13 -08002098{
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002099 intel_pstate_set_min_pstate(all_cpu_data[policy->cpu]);
Dirk Brandewie93f08222013-02-06 09:02:13 -08002100}
2101
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002102static void intel_pstate_stop_cpu(struct cpufreq_policy *policy)
2103{
2104 pr_debug("CPU %d exiting\n", policy->cpu);
2105
2106 intel_pstate_clear_update_util_hook(policy->cpu);
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -08002107 if (hwp_active)
2108 intel_pstate_hwp_save_state(policy);
2109 else
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002110 intel_cpufreq_stop_cpu(policy);
2111}
2112
2113static int intel_pstate_cpu_exit(struct cpufreq_policy *policy)
2114{
2115 intel_pstate_exit_perf_limits(policy);
2116
2117 policy->fast_switch_possible = false;
2118
2119 return 0;
2120}
2121
2122static int __intel_pstate_cpu_init(struct cpufreq_policy *policy)
Dirk Brandewie93f08222013-02-06 09:02:13 -08002123{
Dirk Brandewie93f08222013-02-06 09:02:13 -08002124 struct cpudata *cpu;
Dirk Brandewie52e0a502013-10-15 11:06:14 -07002125 int rc;
Dirk Brandewie93f08222013-02-06 09:02:13 -08002126
2127 rc = intel_pstate_init_cpu(policy->cpu);
2128 if (rc)
2129 return rc;
2130
2131 cpu = all_cpu_data[policy->cpu];
2132
Rafael J. Wysockie14cf882017-03-28 00:03:20 +02002133 cpu->max_perf = int_ext_tofp(1);
2134 cpu->min_perf = 0;
Dirk Brandewie93f08222013-02-06 09:02:13 -08002135
Dirk Brandewieb27580b2014-10-13 08:37:43 -07002136 policy->min = cpu->pstate.min_pstate * cpu->pstate.scaling;
2137 policy->max = cpu->pstate.turbo_pstate * cpu->pstate.scaling;
Dirk Brandewie93f08222013-02-06 09:02:13 -08002138
2139 /* cpuinfo and default policy values */
Dirk Brandewieb27580b2014-10-13 08:37:43 -07002140 policy->cpuinfo.min_freq = cpu->pstate.min_pstate * cpu->pstate.scaling;
Srinivas Pandruvada983e6002016-06-07 17:38:53 -07002141 update_turbo_state();
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01002142 policy->cpuinfo.max_freq = global.turbo_disabled ?
Srinivas Pandruvada983e6002016-06-07 17:38:53 -07002143 cpu->pstate.max_pstate : cpu->pstate.turbo_pstate;
2144 policy->cpuinfo.max_freq *= cpu->pstate.scaling;
2145
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07002146 intel_pstate_init_acpi_perf_limits(policy);
Dirk Brandewie93f08222013-02-06 09:02:13 -08002147 cpumask_set_cpu(policy->cpu, policy->cpus);
2148
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002149 policy->fast_switch_possible = true;
2150
Dirk Brandewie93f08222013-02-06 09:02:13 -08002151 return 0;
2152}
2153
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002154static int intel_pstate_cpu_init(struct cpufreq_policy *policy)
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07002155{
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002156 int ret = __intel_pstate_cpu_init(policy);
2157
2158 if (ret)
2159 return ret;
2160
2161 policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL;
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01002162 if (IS_ENABLED(CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE))
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002163 policy->policy = CPUFREQ_POLICY_PERFORMANCE;
2164 else
2165 policy->policy = CPUFREQ_POLICY_POWERSAVE;
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07002166
2167 return 0;
2168}
2169
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002170static struct cpufreq_driver intel_pstate = {
Dirk Brandewie93f08222013-02-06 09:02:13 -08002171 .flags = CPUFREQ_CONST_LOOPS,
2172 .verify = intel_pstate_verify_policy,
2173 .setpolicy = intel_pstate_set_policy,
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -08002174 .suspend = intel_pstate_hwp_save_state,
Srinivas Pandruvada84428852016-11-24 16:07:10 -08002175 .resume = intel_pstate_resume,
Dirk Brandewie93f08222013-02-06 09:02:13 -08002176 .get = intel_pstate_get,
2177 .init = intel_pstate_cpu_init,
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07002178 .exit = intel_pstate_cpu_exit,
Dirk Brandewiebb180082014-03-19 08:45:54 -07002179 .stop_cpu = intel_pstate_stop_cpu,
Dirk Brandewie93f08222013-02-06 09:02:13 -08002180 .name = "intel_pstate",
Dirk Brandewie93f08222013-02-06 09:02:13 -08002181};
2182
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002183static int intel_cpufreq_verify_policy(struct cpufreq_policy *policy)
2184{
2185 struct cpudata *cpu = all_cpu_data[policy->cpu];
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002186
2187 update_turbo_state();
Rafael J. Wysocki80b120c2017-03-23 00:00:47 +01002188 cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq,
2189 intel_pstate_get_max_freq(cpu));
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002190
Rafael J. Wysocki80b120c2017-03-23 00:00:47 +01002191 intel_pstate_adjust_policy_max(policy, cpu);
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002192
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01002193 intel_pstate_update_perf_limits(policy, cpu);
2194
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002195 return 0;
2196}
2197
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002198static int intel_cpufreq_target(struct cpufreq_policy *policy,
2199 unsigned int target_freq,
2200 unsigned int relation)
2201{
2202 struct cpudata *cpu = all_cpu_data[policy->cpu];
2203 struct cpufreq_freqs freqs;
2204 int target_pstate;
2205
Rafael J. Wysocki64897b22017-03-21 22:19:07 +01002206 update_turbo_state();
2207
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002208 freqs.old = policy->cur;
Rafael J. Wysocki64897b22017-03-21 22:19:07 +01002209 freqs.new = target_freq;
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002210
2211 cpufreq_freq_transition_begin(policy, &freqs);
2212 switch (relation) {
2213 case CPUFREQ_RELATION_L:
2214 target_pstate = DIV_ROUND_UP(freqs.new, cpu->pstate.scaling);
2215 break;
2216 case CPUFREQ_RELATION_H:
2217 target_pstate = freqs.new / cpu->pstate.scaling;
2218 break;
2219 default:
2220 target_pstate = DIV_ROUND_CLOSEST(freqs.new, cpu->pstate.scaling);
2221 break;
2222 }
2223 target_pstate = intel_pstate_prepare_request(cpu, target_pstate);
2224 if (target_pstate != cpu->pstate.current_pstate) {
2225 cpu->pstate.current_pstate = target_pstate;
2226 wrmsrl_on_cpu(policy->cpu, MSR_IA32_PERF_CTL,
2227 pstate_funcs.get_val(cpu, target_pstate));
2228 }
Rafael J. Wysocki64078292017-03-03 23:51:31 +01002229 freqs.new = target_pstate * cpu->pstate.scaling;
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002230 cpufreq_freq_transition_end(policy, &freqs, false);
2231
2232 return 0;
2233}
2234
2235static unsigned int intel_cpufreq_fast_switch(struct cpufreq_policy *policy,
2236 unsigned int target_freq)
2237{
2238 struct cpudata *cpu = all_cpu_data[policy->cpu];
2239 int target_pstate;
2240
Rafael J. Wysocki64897b22017-03-21 22:19:07 +01002241 update_turbo_state();
2242
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002243 target_pstate = DIV_ROUND_UP(target_freq, cpu->pstate.scaling);
Rafael J. Wysocki64078292017-03-03 23:51:31 +01002244 target_pstate = intel_pstate_prepare_request(cpu, target_pstate);
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002245 intel_pstate_update_pstate(cpu, target_pstate);
Rafael J. Wysocki64078292017-03-03 23:51:31 +01002246 return target_pstate * cpu->pstate.scaling;
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002247}
2248
2249static int intel_cpufreq_cpu_init(struct cpufreq_policy *policy)
2250{
2251 int ret = __intel_pstate_cpu_init(policy);
2252
2253 if (ret)
2254 return ret;
2255
2256 policy->cpuinfo.transition_latency = INTEL_CPUFREQ_TRANSITION_LATENCY;
2257 /* This reflects the intel_pstate_get_cpu_pstates() setting. */
2258 policy->cur = policy->cpuinfo.min_freq;
2259
2260 return 0;
2261}
2262
2263static struct cpufreq_driver intel_cpufreq = {
2264 .flags = CPUFREQ_CONST_LOOPS,
2265 .verify = intel_cpufreq_verify_policy,
2266 .target = intel_cpufreq_target,
2267 .fast_switch = intel_cpufreq_fast_switch,
2268 .init = intel_cpufreq_cpu_init,
2269 .exit = intel_pstate_cpu_exit,
2270 .stop_cpu = intel_cpufreq_stop_cpu,
2271 .name = "intel_cpufreq",
2272};
2273
2274static struct cpufreq_driver *intel_pstate_driver = &intel_pstate;
2275
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002276static void intel_pstate_driver_cleanup(void)
2277{
2278 unsigned int cpu;
2279
2280 get_online_cpus();
2281 for_each_online_cpu(cpu) {
2282 if (all_cpu_data[cpu]) {
2283 if (intel_pstate_driver == &intel_pstate)
2284 intel_pstate_clear_update_util_hook(cpu);
2285
2286 kfree(all_cpu_data[cpu]);
2287 all_cpu_data[cpu] = NULL;
2288 }
2289 }
2290 put_online_cpus();
2291}
2292
2293static int intel_pstate_register_driver(void)
2294{
2295 int ret;
2296
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01002297 memset(&global, 0, sizeof(global));
2298 global.max_perf_pct = 100;
Rafael J. Wysockic3a49c82017-02-28 00:05:01 +01002299
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002300 ret = cpufreq_register_driver(intel_pstate_driver);
2301 if (ret) {
2302 intel_pstate_driver_cleanup();
2303 return ret;
2304 }
2305
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01002306 global.min_perf_pct = min_perf_pct_min();
2307
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002308 mutex_lock(&intel_pstate_limits_lock);
2309 driver_registered = true;
2310 mutex_unlock(&intel_pstate_limits_lock);
2311
2312 if (intel_pstate_driver == &intel_pstate && !hwp_active &&
2313 pstate_funcs.get_target_pstate != get_target_pstate_use_cpu_load)
2314 intel_pstate_debug_expose_params();
2315
2316 return 0;
2317}
2318
2319static int intel_pstate_unregister_driver(void)
2320{
2321 if (hwp_active)
2322 return -EBUSY;
2323
2324 if (intel_pstate_driver == &intel_pstate && !hwp_active &&
2325 pstate_funcs.get_target_pstate != get_target_pstate_use_cpu_load)
2326 intel_pstate_debug_hide_params();
2327
2328 mutex_lock(&intel_pstate_limits_lock);
2329 driver_registered = false;
2330 mutex_unlock(&intel_pstate_limits_lock);
2331
2332 cpufreq_unregister_driver(intel_pstate_driver);
2333 intel_pstate_driver_cleanup();
2334
2335 return 0;
2336}
2337
2338static ssize_t intel_pstate_show_status(char *buf)
2339{
2340 if (!driver_registered)
2341 return sprintf(buf, "off\n");
2342
2343 return sprintf(buf, "%s\n", intel_pstate_driver == &intel_pstate ?
2344 "active" : "passive");
2345}
2346
2347static int intel_pstate_update_status(const char *buf, size_t size)
2348{
2349 int ret;
2350
2351 if (size == 3 && !strncmp(buf, "off", size))
2352 return driver_registered ?
2353 intel_pstate_unregister_driver() : -EINVAL;
2354
2355 if (size == 6 && !strncmp(buf, "active", size)) {
2356 if (driver_registered) {
2357 if (intel_pstate_driver == &intel_pstate)
2358 return 0;
2359
2360 ret = intel_pstate_unregister_driver();
2361 if (ret)
2362 return ret;
2363 }
2364
2365 intel_pstate_driver = &intel_pstate;
2366 return intel_pstate_register_driver();
2367 }
2368
2369 if (size == 7 && !strncmp(buf, "passive", size)) {
2370 if (driver_registered) {
2371 if (intel_pstate_driver != &intel_pstate)
2372 return 0;
2373
2374 ret = intel_pstate_unregister_driver();
2375 if (ret)
2376 return ret;
2377 }
2378
2379 intel_pstate_driver = &intel_cpufreq;
2380 return intel_pstate_register_driver();
2381 }
2382
2383 return -EINVAL;
2384}
2385
Jisheng Zhangeed43602016-06-27 18:07:16 +08002386static int no_load __initdata;
2387static int no_hwp __initdata;
2388static int hwp_only __initdata;
Jisheng Zhang29327c82016-06-27 18:07:17 +08002389static unsigned int force_load __initdata;
Dirk Brandewie6be26492013-02-15 22:55:10 +01002390
Jisheng Zhang29327c82016-06-27 18:07:17 +08002391static int __init intel_pstate_msrs_not_valid(void)
Dirk Brandewieb563b4e2013-03-22 01:29:28 +01002392{
Dirk Brandewie016c8152013-10-21 09:20:34 -07002393 if (!pstate_funcs.get_max() ||
Stratos Karafotisc4108332014-07-18 08:37:23 -07002394 !pstate_funcs.get_min() ||
2395 !pstate_funcs.get_turbo())
Dirk Brandewieb563b4e2013-03-22 01:29:28 +01002396 return -ENODEV;
2397
Dirk Brandewieb563b4e2013-03-22 01:29:28 +01002398 return 0;
2399}
Dirk Brandewie016c8152013-10-21 09:20:34 -07002400
Srinivas Pandruvada7f7a5162016-11-14 10:31:11 -08002401#ifdef CONFIG_ACPI
2402static void intel_pstate_use_acpi_profile(void)
2403{
Rafael J. Wysocki55395342017-03-22 23:53:54 +01002404 switch (acpi_gbl_FADT.preferred_profile) {
2405 case PM_MOBILE:
2406 case PM_TABLET:
2407 case PM_APPLIANCE_PC:
2408 case PM_DESKTOP:
2409 case PM_WORKSTATION:
Srinivas Pandruvada7f7a5162016-11-14 10:31:11 -08002410 pstate_funcs.get_target_pstate =
2411 get_target_pstate_use_cpu_load;
Rafael J. Wysocki55395342017-03-22 23:53:54 +01002412 }
Srinivas Pandruvada7f7a5162016-11-14 10:31:11 -08002413}
2414#else
2415static void intel_pstate_use_acpi_profile(void)
2416{
2417}
2418#endif
2419
Jisheng Zhang29327c82016-06-27 18:07:17 +08002420static void __init copy_cpu_funcs(struct pstate_funcs *funcs)
Dirk Brandewie016c8152013-10-21 09:20:34 -07002421{
2422 pstate_funcs.get_max = funcs->get_max;
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -07002423 pstate_funcs.get_max_physical = funcs->get_max_physical;
Dirk Brandewie016c8152013-10-21 09:20:34 -07002424 pstate_funcs.get_min = funcs->get_min;
2425 pstate_funcs.get_turbo = funcs->get_turbo;
Dirk Brandewieb27580b2014-10-13 08:37:43 -07002426 pstate_funcs.get_scaling = funcs->get_scaling;
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01002427 pstate_funcs.get_val = funcs->get_val;
Dirk Brandewie007bea02013-12-18 10:32:39 -08002428 pstate_funcs.get_vid = funcs->get_vid;
Philippe Longepe157386b2015-12-04 17:40:30 +01002429 pstate_funcs.get_target_pstate = funcs->get_target_pstate;
2430
Srinivas Pandruvada7f7a5162016-11-14 10:31:11 -08002431 intel_pstate_use_acpi_profile();
Dirk Brandewie016c8152013-10-21 09:20:34 -07002432}
2433
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07002434#ifdef CONFIG_ACPI
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002435
Jisheng Zhang29327c82016-06-27 18:07:17 +08002436static bool __init intel_pstate_no_acpi_pss(void)
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002437{
2438 int i;
2439
2440 for_each_possible_cpu(i) {
2441 acpi_status status;
2442 union acpi_object *pss;
2443 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
2444 struct acpi_processor *pr = per_cpu(processors, i);
2445
2446 if (!pr)
2447 continue;
2448
2449 status = acpi_evaluate_object(pr->handle, "_PSS", NULL, &buffer);
2450 if (ACPI_FAILURE(status))
2451 continue;
2452
2453 pss = buffer.pointer;
2454 if (pss && pss->type == ACPI_TYPE_PACKAGE) {
2455 kfree(pss);
2456 return false;
2457 }
2458
2459 kfree(pss);
2460 }
2461
2462 return true;
2463}
2464
Jisheng Zhang29327c82016-06-27 18:07:17 +08002465static bool __init intel_pstate_has_acpi_ppc(void)
ethan zhao966916e2014-12-01 11:32:08 +09002466{
2467 int i;
2468
2469 for_each_possible_cpu(i) {
2470 struct acpi_processor *pr = per_cpu(processors, i);
2471
2472 if (!pr)
2473 continue;
2474 if (acpi_has_method(pr->handle, "_PPC"))
2475 return true;
2476 }
2477 return false;
2478}
2479
2480enum {
2481 PSS,
2482 PPC,
2483};
2484
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002485struct hw_vendor_info {
2486 u16 valid;
2487 char oem_id[ACPI_OEM_ID_SIZE];
2488 char oem_table_id[ACPI_OEM_TABLE_ID_SIZE];
ethan zhao966916e2014-12-01 11:32:08 +09002489 int oem_pwr_table;
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002490};
2491
2492/* Hardware vendor-specific info that has its own power management modes */
Jisheng Zhang29327c82016-06-27 18:07:17 +08002493static struct hw_vendor_info vendor_info[] __initdata = {
ethan zhao966916e2014-12-01 11:32:08 +09002494 {1, "HP ", "ProLiant", PSS},
2495 {1, "ORACLE", "X4-2 ", PPC},
2496 {1, "ORACLE", "X4-2L ", PPC},
2497 {1, "ORACLE", "X4-2B ", PPC},
2498 {1, "ORACLE", "X3-2 ", PPC},
2499 {1, "ORACLE", "X3-2L ", PPC},
2500 {1, "ORACLE", "X3-2B ", PPC},
2501 {1, "ORACLE", "X4470M2 ", PPC},
2502 {1, "ORACLE", "X4270M3 ", PPC},
2503 {1, "ORACLE", "X4270M2 ", PPC},
2504 {1, "ORACLE", "X4170M2 ", PPC},
Ethan Zhao5aecc3c2015-08-05 09:28:50 +09002505 {1, "ORACLE", "X4170 M3", PPC},
2506 {1, "ORACLE", "X4275 M3", PPC},
2507 {1, "ORACLE", "X6-2 ", PPC},
2508 {1, "ORACLE", "Sudbury ", PPC},
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002509 {0, "", ""},
2510};
2511
Jisheng Zhang29327c82016-06-27 18:07:17 +08002512static bool __init intel_pstate_platform_pwr_mgmt_exists(void)
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002513{
2514 struct acpi_table_header hdr;
2515 struct hw_vendor_info *v_info;
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08002516 const struct x86_cpu_id *id;
2517 u64 misc_pwr;
2518
2519 id = x86_match_cpu(intel_pstate_cpu_oob_ids);
2520 if (id) {
2521 rdmsrl(MSR_MISC_PWR_MGMT, misc_pwr);
2522 if ( misc_pwr & (1 << 8))
2523 return true;
2524 }
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002525
Stratos Karafotisc4108332014-07-18 08:37:23 -07002526 if (acpi_disabled ||
2527 ACPI_FAILURE(acpi_get_table_header(ACPI_SIG_FADT, 0, &hdr)))
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002528 return false;
2529
2530 for (v_info = vendor_info; v_info->valid; v_info++) {
Stratos Karafotisc4108332014-07-18 08:37:23 -07002531 if (!strncmp(hdr.oem_id, v_info->oem_id, ACPI_OEM_ID_SIZE) &&
ethan zhao966916e2014-12-01 11:32:08 +09002532 !strncmp(hdr.oem_table_id, v_info->oem_table_id,
2533 ACPI_OEM_TABLE_ID_SIZE))
2534 switch (v_info->oem_pwr_table) {
2535 case PSS:
2536 return intel_pstate_no_acpi_pss();
2537 case PPC:
Ethan Zhaoaa4ea342014-12-09 10:43:19 +09002538 return intel_pstate_has_acpi_ppc() &&
2539 (!force_load);
ethan zhao966916e2014-12-01 11:32:08 +09002540 }
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002541 }
2542
2543 return false;
2544}
Rafael J. Wysockid0ea59e2016-11-17 22:47:47 +01002545
2546static void intel_pstate_request_control_from_smm(void)
2547{
2548 /*
2549 * It may be unsafe to request P-states control from SMM if _PPC support
2550 * has not been enabled.
2551 */
2552 if (acpi_ppc)
2553 acpi_processor_pstate_control();
2554}
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002555#else /* CONFIG_ACPI not enabled */
2556static inline bool intel_pstate_platform_pwr_mgmt_exists(void) { return false; }
ethan zhao966916e2014-12-01 11:32:08 +09002557static inline bool intel_pstate_has_acpi_ppc(void) { return false; }
Rafael J. Wysockid0ea59e2016-11-17 22:47:47 +01002558static inline void intel_pstate_request_control_from_smm(void) {}
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002559#endif /* CONFIG_ACPI */
2560
Srinivas Pandruvada7791e4a2016-02-25 15:09:19 -08002561static const struct x86_cpu_id hwp_support_ids[] __initconst = {
2562 { X86_VENDOR_INTEL, 6, X86_MODEL_ANY, X86_FEATURE_HWP },
2563 {}
2564};
2565
Dirk Brandewie93f08222013-02-06 09:02:13 -08002566static int __init intel_pstate_init(void)
2567{
Rafael J. Wysockieb5139d2017-03-22 23:52:18 +01002568 int rc;
Dirk Brandewie93f08222013-02-06 09:02:13 -08002569
Dirk Brandewie6be26492013-02-15 22:55:10 +01002570 if (no_load)
2571 return -ENODEV;
2572
Rafael J. Wysockieb5139d2017-03-22 23:52:18 +01002573 if (x86_match_cpu(hwp_support_ids)) {
Srinivas Pandruvada7791e4a2016-02-25 15:09:19 -08002574 copy_cpu_funcs(&core_params.funcs);
Rafael J. Wysockieb5139d2017-03-22 23:52:18 +01002575 if (no_hwp) {
2576 pstate_funcs.get_target_pstate = get_target_pstate_use_cpu_load;
2577 } else {
2578 hwp_active++;
2579 intel_pstate.attr = hwp_cpufreq_attrs;
2580 goto hwp_cpu_matched;
2581 }
2582 } else {
2583 const struct x86_cpu_id *id;
2584 struct cpu_defaults *cpu_def;
2585
2586 id = x86_match_cpu(intel_pstate_cpu_ids);
2587 if (!id)
2588 return -ENODEV;
2589
2590 cpu_def = (struct cpu_defaults *)id->driver_data;
Rafael J. Wysockieb5139d2017-03-22 23:52:18 +01002591 copy_cpu_funcs(&cpu_def->funcs);
Srinivas Pandruvada7791e4a2016-02-25 15:09:19 -08002592 }
2593
Dirk Brandewieb563b4e2013-03-22 01:29:28 +01002594 if (intel_pstate_msrs_not_valid())
2595 return -ENODEV;
2596
Srinivas Pandruvada7791e4a2016-02-25 15:09:19 -08002597hwp_cpu_matched:
2598 /*
2599 * The Intel pstate driver will be ignored if the platform
2600 * firmware has its own power management modes.
2601 */
2602 if (intel_pstate_platform_pwr_mgmt_exists())
2603 return -ENODEV;
2604
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002605 if (!hwp_active && hwp_only)
2606 return -ENOTSUPP;
2607
Joe Perches4836df12016-04-05 13:28:23 -07002608 pr_info("Intel P-state driver initializing\n");
Dirk Brandewie93f08222013-02-06 09:02:13 -08002609
Wei Yongjunb57ffac2013-05-13 08:03:43 +00002610 all_cpu_data = vzalloc(sizeof(void *) * num_possible_cpus());
Dirk Brandewie93f08222013-02-06 09:02:13 -08002611 if (!all_cpu_data)
2612 return -ENOMEM;
Dirk Brandewie93f08222013-02-06 09:02:13 -08002613
Rafael J. Wysockid0ea59e2016-11-17 22:47:47 +01002614 intel_pstate_request_control_from_smm();
2615
Dirk Brandewie93f08222013-02-06 09:02:13 -08002616 intel_pstate_sysfs_expose_params();
Dirk Brandewieb69880f2014-01-16 10:32:25 -08002617
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01002618 mutex_lock(&intel_pstate_driver_lock);
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002619 rc = intel_pstate_register_driver();
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01002620 mutex_unlock(&intel_pstate_driver_lock);
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002621 if (rc)
2622 return rc;
Dirk Brandewie907cc902013-03-05 14:15:27 -08002623
Dirk Brandewie907cc902013-03-05 14:15:27 -08002624 if (hwp_active)
2625 pr_info("HWP enabled\n");
2626
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002627 return 0;
Dirk Brandewie93f08222013-02-06 09:02:13 -08002628}
2629device_initcall(intel_pstate_init);
2630
Dirk Brandewie6be26492013-02-15 22:55:10 +01002631static int __init intel_pstate_setup(char *str)
2632{
2633 if (!str)
2634 return -EINVAL;
2635
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002636 if (!strcmp(str, "disable")) {
Dirk Brandewie6be26492013-02-15 22:55:10 +01002637 no_load = 1;
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002638 } else if (!strcmp(str, "passive")) {
2639 pr_info("Passive mode enabled\n");
2640 intel_pstate_driver = &intel_cpufreq;
2641 no_hwp = 1;
2642 }
Prarit Bhargava539342f2015-10-22 09:43:31 -04002643 if (!strcmp(str, "no_hwp")) {
Joe Perches4836df12016-04-05 13:28:23 -07002644 pr_info("HWP disabled\n");
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08002645 no_hwp = 1;
Prarit Bhargava539342f2015-10-22 09:43:31 -04002646 }
Ethan Zhaoaa4ea342014-12-09 10:43:19 +09002647 if (!strcmp(str, "force"))
2648 force_load = 1;
Kristen Carlson Accardid64c3b02015-02-06 13:41:55 -08002649 if (!strcmp(str, "hwp_only"))
2650 hwp_only = 1;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07002651 if (!strcmp(str, "per_cpu_perf_limits"))
2652 per_cpu_limits = true;
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07002653
2654#ifdef CONFIG_ACPI
2655 if (!strcmp(str, "support_acpi_ppc"))
2656 acpi_ppc = true;
2657#endif
2658
Dirk Brandewie6be26492013-02-15 22:55:10 +01002659 return 0;
2660}
2661early_param("intel_pstate", intel_pstate_setup);
2662
Dirk Brandewie93f08222013-02-06 09:02:13 -08002663MODULE_AUTHOR("Dirk Brandewie <dirk.j.brandewie@intel.com>");
2664MODULE_DESCRIPTION("'intel_pstate' - P state driver Intel Core processors");
2665MODULE_LICENSE("GPL");