blob: a54d65aa776d064f025036cf9aa35790d83d82e8 [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>
22#include <linux/sched.h>
23#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
Philippe Longepe938d21a2015-11-09 17:40:46 -080042#define ATOM_RATIOS 0x66a
43#define ATOM_VIDS 0x66b
44#define ATOM_TURBO_RATIOS 0x66c
45#define ATOM_TURBO_VIDS 0x66d
Dirk Brandewie61d8d2a2014-02-12 10:01:07 -080046
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -070047#ifdef CONFIG_ACPI
48#include <acpi/processor.h>
Rafael J. Wysocki17669002016-11-22 12:24:00 -080049#include <acpi/cppc_acpi.h>
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -070050#endif
51
Dirk Brandewief0fe3cd2014-05-29 09:32:23 -070052#define FRAC_BITS 8
Dirk Brandewie93f08222013-02-06 09:02:13 -080053#define int_tofp(X) ((int64_t)(X) << FRAC_BITS)
54#define fp_toint(X) ((X) >> FRAC_BITS)
Dirk Brandewief0fe3cd2014-05-29 09:32:23 -070055
Rafael J. Wysockia1c97872016-05-11 19:09:12 +020056#define EXT_BITS 6
57#define EXT_FRAC_BITS (EXT_BITS + FRAC_BITS)
Srinivas Pandruvadad5dd33d2016-11-21 16:33:20 -080058#define fp_ext_toint(X) ((X) >> EXT_FRAC_BITS)
59#define int_ext_tofp(X) ((int64_t)(X) << EXT_FRAC_BITS)
Rafael J. Wysockia1c97872016-05-11 19:09:12 +020060
Dirk Brandewie93f08222013-02-06 09:02:13 -080061static inline int32_t mul_fp(int32_t x, int32_t y)
62{
63 return ((int64_t)x * (int64_t)y) >> FRAC_BITS;
64}
65
Prarit Bhargava7180ddd2015-06-15 13:43:29 -040066static inline int32_t div_fp(s64 x, s64 y)
Dirk Brandewie93f08222013-02-06 09:02:13 -080067{
Prarit Bhargava7180ddd2015-06-15 13:43:29 -040068 return div64_s64((int64_t)x << FRAC_BITS, y);
Dirk Brandewie93f08222013-02-06 09:02:13 -080069}
70
Dirk Brandewied022a652014-10-13 08:37:44 -070071static inline int ceiling_fp(int32_t x)
72{
73 int mask, ret;
74
75 ret = fp_toint(x);
76 mask = (1 << FRAC_BITS) - 1;
77 if (x & mask)
78 ret += 1;
79 return ret;
80}
81
Rafael J. Wysockia1c97872016-05-11 19:09:12 +020082static inline u64 mul_ext_fp(u64 x, u64 y)
83{
84 return (x * y) >> EXT_FRAC_BITS;
85}
86
87static inline u64 div_ext_fp(u64 x, u64 y)
88{
89 return div64_u64(x << EXT_FRAC_BITS, y);
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/**
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700189 * struct perf_limits - Store user and policy limits
190 * @no_turbo: User requested turbo state from intel_pstate sysfs
191 * @turbo_disabled: Platform turbo status either from msr
192 * MSR_IA32_MISC_ENABLE or when maximum available pstate
193 * matches the maximum turbo pstate
194 * @max_perf_pct: Effective maximum performance limit in percentage, this
195 * is minimum of either limits enforced by cpufreq policy
196 * or limits from user set limits via intel_pstate sysfs
197 * @min_perf_pct: Effective minimum performance limit in percentage, this
198 * is maximum of either limits enforced by cpufreq policy
199 * or limits from user set limits via intel_pstate sysfs
200 * @max_perf: This is a scaled value between 0 to 255 for max_perf_pct
201 * This value is used to limit max pstate
202 * @min_perf: This is a scaled value between 0 to 255 for min_perf_pct
203 * This value is used to limit min pstate
204 * @max_policy_pct: The maximum performance in percentage enforced by
205 * cpufreq setpolicy interface
206 * @max_sysfs_pct: The maximum performance in percentage enforced by
207 * intel pstate sysfs interface, unused when per cpu
208 * controls are enforced
209 * @min_policy_pct: The minimum performance in percentage enforced by
210 * cpufreq setpolicy interface
211 * @min_sysfs_pct: The minimum performance in percentage enforced by
212 * intel pstate sysfs interface, unused when per cpu
213 * controls are enforced
214 *
215 * Storage for user and policy defined limits.
216 */
217struct perf_limits {
218 int no_turbo;
219 int turbo_disabled;
220 int max_perf_pct;
221 int min_perf_pct;
222 int32_t max_perf;
223 int32_t min_perf;
224 int max_policy_pct;
225 int max_sysfs_pct;
226 int min_policy_pct;
227 int min_sysfs_pct;
228};
229
230/**
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700231 * struct cpudata - Per CPU instance data storage
232 * @cpu: CPU number for this instance data
Rafael J. Wysocki2f1d4072016-10-24 23:20:25 +0200233 * @policy: CPUFreq policy value
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700234 * @update_util: CPUFreq utility callback information
Chen Yu4578ee7e2016-05-11 14:33:08 +0800235 * @update_util_set: CPUFreq utility callback is set
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +0200236 * @iowait_boost: iowait-related boost fraction
237 * @last_update: Time of the last update.
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700238 * @pstate: Stores P state limits for this CPU
239 * @vid: Stores VID limits for this CPU
240 * @pid: Stores PID parameters for this CPU
241 * @last_sample_time: Last Sample time
242 * @prev_aperf: Last APERF value read from APERF MSR
243 * @prev_mperf: Last MPERF value read from MPERF MSR
244 * @prev_tsc: Last timestamp counter (TSC) value
245 * @prev_cummulative_iowait: IO Wait time difference from last and
246 * current sample
247 * @sample: Storage for storing last Sample data
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700248 * @perf_limits: Pointer to perf_limit unique to this CPU
249 * Not all field in the structure are applicable
250 * when per cpu controls are enforced
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700251 * @acpi_perf_data: Stores ACPI perf information read from _PSS
252 * @valid_pss_table: Set to true for valid ACPI _PSS entries found
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800253 * @epp_powersave: Last saved HWP energy performance preference
254 * (EPP) or energy performance bias (EPB),
255 * when policy switched to performance
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800256 * @epp_policy: Last saved policy used to set EPP/EPB
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800257 * @epp_default: Power on default HWP energy performance
258 * preference/bias
259 * @epp_saved: Saved EPP/EPB during system suspend or CPU offline
260 * operation
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700261 *
262 * This structure stores per CPU instance data for all CPUs.
263 */
Dirk Brandewie93f08222013-02-06 09:02:13 -0800264struct cpudata {
265 int cpu;
266
Rafael J. Wysocki2f1d4072016-10-24 23:20:25 +0200267 unsigned int policy;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +0100268 struct update_util_data update_util;
Chen Yu4578ee7e2016-05-11 14:33:08 +0800269 bool update_util_set;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800270
Dirk Brandewie93f08222013-02-06 09:02:13 -0800271 struct pstate_data pstate;
Dirk Brandewie007bea02013-12-18 10:32:39 -0800272 struct vid_data vid;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800273 struct _pid pid;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800274
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +0200275 u64 last_update;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +0100276 u64 last_sample_time;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800277 u64 prev_aperf;
278 u64 prev_mperf;
Doug Smythies4055fad2015-04-11 21:10:26 -0700279 u64 prev_tsc;
Philippe Longepe63d1d652015-12-04 17:40:35 +0100280 u64 prev_cummulative_iowait;
Dirk Brandewied37e2b72014-02-12 10:01:04 -0800281 struct sample sample;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700282 struct perf_limits *perf_limits;
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700283#ifdef CONFIG_ACPI
284 struct acpi_processor_performance acpi_perf_data;
285 bool valid_pss_table;
286#endif
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +0200287 unsigned int iowait_boost;
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800288 s16 epp_powersave;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800289 s16 epp_policy;
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800290 s16 epp_default;
291 s16 epp_saved;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800292};
293
294static struct cpudata **all_cpu_data;
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700295
296/**
Rafael J. Wysocki39545172016-10-11 23:07:38 +0200297 * struct pstate_adjust_policy - Stores static PID configuration data
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700298 * @sample_rate_ms: PID calculation sample rate in ms
299 * @sample_rate_ns: Sample rate calculation in ns
300 * @deadband: PID deadband
301 * @setpoint: PID Setpoint
302 * @p_gain_pct: PID proportional gain
303 * @i_gain_pct: PID integral gain
304 * @d_gain_pct: PID derivative gain
305 *
306 * Stores per CPU model static PID configuration data.
307 */
Dirk Brandewie93f08222013-02-06 09:02:13 -0800308struct pstate_adjust_policy {
309 int sample_rate_ms;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +0100310 s64 sample_rate_ns;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800311 int deadband;
312 int setpoint;
313 int p_gain_pct;
314 int d_gain_pct;
315 int i_gain_pct;
316};
317
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700318/**
319 * struct pstate_funcs - Per CPU model specific callbacks
320 * @get_max: Callback to get maximum non turbo effective P state
321 * @get_max_physical: Callback to get maximum non turbo physical P state
322 * @get_min: Callback to get minimum P state
323 * @get_turbo: Callback to get turbo P state
324 * @get_scaling: Callback to get frequency scaling factor
325 * @get_val: Callback to convert P state to actual MSR write value
326 * @get_vid: Callback to get VID data for Atom platforms
327 * @get_target_pstate: Callback to a function to calculate next P state to use
328 *
329 * Core and Atom CPU models have different way to get P State limits. This
330 * structure is used to store those callbacks.
331 */
Dirk Brandewie016c8152013-10-21 09:20:34 -0700332struct pstate_funcs {
333 int (*get_max)(void);
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -0700334 int (*get_max_physical)(void);
Dirk Brandewie016c8152013-10-21 09:20:34 -0700335 int (*get_min)(void);
336 int (*get_turbo)(void);
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700337 int (*get_scaling)(void);
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +0100338 u64 (*get_val)(struct cpudata*, int pstate);
Dirk Brandewie007bea02013-12-18 10:32:39 -0800339 void (*get_vid)(struct cpudata *);
Philippe Longepe157386b2015-12-04 17:40:30 +0100340 int32_t (*get_target_pstate)(struct cpudata *);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800341};
342
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700343/**
344 * struct cpu_defaults- Per CPU model default config data
345 * @pid_policy: PID config data
346 * @funcs: Callback function data
347 */
Dirk Brandewie016c8152013-10-21 09:20:34 -0700348struct cpu_defaults {
349 struct pstate_adjust_policy pid_policy;
350 struct pstate_funcs funcs;
351};
352
Philippe Longepe157386b2015-12-04 17:40:30 +0100353static inline int32_t get_target_pstate_use_performance(struct cpudata *cpu);
Philippe Longepee70eed22015-12-04 17:40:32 +0100354static inline int32_t get_target_pstate_use_cpu_load(struct cpudata *cpu);
Philippe Longepe157386b2015-12-04 17:40:30 +0100355
Jisheng Zhang4a7cb7a2016-06-27 18:07:18 +0800356static struct pstate_adjust_policy pid_params __read_mostly;
357static struct pstate_funcs pstate_funcs __read_mostly;
358static int hwp_active __read_mostly;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700359static bool per_cpu_limits __read_mostly;
Dirk Brandewie016c8152013-10-21 09:20:34 -0700360
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700361#ifdef CONFIG_ACPI
362static bool acpi_ppc;
363#endif
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700364
Prarit Bhargava51443fb2015-10-15 07:34:15 -0400365static struct perf_limits performance_limits = {
366 .no_turbo = 0,
367 .turbo_disabled = 0,
368 .max_perf_pct = 100,
Srinivas Pandruvadad5dd33d2016-11-21 16:33:20 -0800369 .max_perf = int_ext_tofp(1),
Prarit Bhargava51443fb2015-10-15 07:34:15 -0400370 .min_perf_pct = 100,
Srinivas Pandruvadad5dd33d2016-11-21 16:33:20 -0800371 .min_perf = int_ext_tofp(1),
Prarit Bhargava51443fb2015-10-15 07:34:15 -0400372 .max_policy_pct = 100,
373 .max_sysfs_pct = 100,
374 .min_policy_pct = 0,
375 .min_sysfs_pct = 0,
376};
377
378static struct perf_limits powersave_limits = {
Dirk Brandewie93f08222013-02-06 09:02:13 -0800379 .no_turbo = 0,
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700380 .turbo_disabled = 0,
Dirk Brandewie93f08222013-02-06 09:02:13 -0800381 .max_perf_pct = 100,
Srinivas Pandruvadad5dd33d2016-11-21 16:33:20 -0800382 .max_perf = int_ext_tofp(1),
Dirk Brandewie93f08222013-02-06 09:02:13 -0800383 .min_perf_pct = 0,
384 .min_perf = 0,
Dirk Brandewied8f469e2013-05-07 08:20:26 -0700385 .max_policy_pct = 100,
386 .max_sysfs_pct = 100,
Kristen Carlson Accardia0475992015-01-29 13:03:52 -0800387 .min_policy_pct = 0,
388 .min_sysfs_pct = 0,
Dirk Brandewie93f08222013-02-06 09:02:13 -0800389};
390
Prarit Bhargava51443fb2015-10-15 07:34:15 -0400391#ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE
392static struct perf_limits *limits = &performance_limits;
393#else
394static struct perf_limits *limits = &powersave_limits;
395#endif
396
Srinivas Pandruvadaa410c03d2016-10-28 10:44:52 -0700397static DEFINE_MUTEX(intel_pstate_limits_lock);
398
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700399#ifdef CONFIG_ACPI
Srinivas Pandruvada2b3ec762016-04-27 15:48:08 -0700400
401static bool intel_pstate_get_ppc_enable_status(void)
402{
403 if (acpi_gbl_FADT.preferred_profile == PM_ENTERPRISE_SERVER ||
404 acpi_gbl_FADT.preferred_profile == PM_PERFORMANCE_SERVER)
405 return true;
406
407 return acpi_ppc;
408}
409
Rafael J. Wysocki17669002016-11-22 12:24:00 -0800410#ifdef CONFIG_ACPI_CPPC_LIB
411
412/* The work item is needed to avoid CPU hotplug locking issues */
413static void intel_pstste_sched_itmt_work_fn(struct work_struct *work)
414{
415 sched_set_itmt_support();
416}
417
418static DECLARE_WORK(sched_itmt_work, intel_pstste_sched_itmt_work_fn);
419
420static void intel_pstate_set_itmt_prio(int cpu)
421{
422 struct cppc_perf_caps cppc_perf;
423 static u32 max_highest_perf = 0, min_highest_perf = U32_MAX;
424 int ret;
425
426 ret = cppc_get_perf_caps(cpu, &cppc_perf);
427 if (ret)
428 return;
429
430 /*
431 * The priorities can be set regardless of whether or not
432 * sched_set_itmt_support(true) has been called and it is valid to
433 * update them at any time after it has been called.
434 */
435 sched_set_itmt_core_prio(cppc_perf.highest_perf, cpu);
436
437 if (max_highest_perf <= min_highest_perf) {
438 if (cppc_perf.highest_perf > max_highest_perf)
439 max_highest_perf = cppc_perf.highest_perf;
440
441 if (cppc_perf.highest_perf < min_highest_perf)
442 min_highest_perf = cppc_perf.highest_perf;
443
444 if (max_highest_perf > min_highest_perf) {
445 /*
446 * This code can be run during CPU online under the
447 * CPU hotplug locks, so sched_set_itmt_support()
448 * cannot be called from here. Queue up a work item
449 * to invoke it.
450 */
451 schedule_work(&sched_itmt_work);
452 }
453 }
454}
455#else
456static void intel_pstate_set_itmt_prio(int cpu)
457{
458}
459#endif
460
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700461static void intel_pstate_init_acpi_perf_limits(struct cpufreq_policy *policy)
462{
463 struct cpudata *cpu;
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700464 int ret;
465 int i;
466
Rafael J. Wysocki17669002016-11-22 12:24:00 -0800467 if (hwp_active) {
468 intel_pstate_set_itmt_prio(policy->cpu);
Srinivas Pandruvadae59a8f72016-05-04 15:07:34 -0700469 return;
Rafael J. Wysocki17669002016-11-22 12:24:00 -0800470 }
Srinivas Pandruvadae59a8f72016-05-04 15:07:34 -0700471
Srinivas Pandruvada2b3ec762016-04-27 15:48:08 -0700472 if (!intel_pstate_get_ppc_enable_status())
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700473 return;
474
475 cpu = all_cpu_data[policy->cpu];
476
477 ret = acpi_processor_register_performance(&cpu->acpi_perf_data,
478 policy->cpu);
479 if (ret)
480 return;
481
482 /*
483 * Check if the control value in _PSS is for PERF_CTL MSR, which should
484 * guarantee that the states returned by it map to the states in our
485 * list directly.
486 */
487 if (cpu->acpi_perf_data.control_register.space_id !=
488 ACPI_ADR_SPACE_FIXED_HARDWARE)
489 goto err;
490
491 /*
492 * If there is only one entry _PSS, simply ignore _PSS and continue as
493 * usual without taking _PSS into account
494 */
495 if (cpu->acpi_perf_data.state_count < 2)
496 goto err;
497
498 pr_debug("CPU%u - ACPI _PSS perf data\n", policy->cpu);
499 for (i = 0; i < cpu->acpi_perf_data.state_count; i++) {
500 pr_debug(" %cP%d: %u MHz, %u mW, 0x%x\n",
501 (i == cpu->acpi_perf_data.state ? '*' : ' '), i,
502 (u32) cpu->acpi_perf_data.states[i].core_frequency,
503 (u32) cpu->acpi_perf_data.states[i].power,
504 (u32) cpu->acpi_perf_data.states[i].control);
505 }
506
507 /*
508 * The _PSS table doesn't contain whole turbo frequency range.
509 * This just contains +1 MHZ above the max non turbo frequency,
510 * with control value corresponding to max turbo ratio. But
511 * when cpufreq set policy is called, it will call with this
512 * max frequency, which will cause a reduced performance as
513 * this driver uses real max turbo frequency as the max
514 * frequency. So correct this frequency in _PSS table to
Srinivas Pandruvadab00345d2016-06-14 23:12:59 -0700515 * correct max turbo frequency based on the turbo state.
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700516 * Also need to convert to MHz as _PSS freq is in MHz.
517 */
Srinivas Pandruvadab00345d2016-06-14 23:12:59 -0700518 if (!limits->turbo_disabled)
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700519 cpu->acpi_perf_data.states[0].core_frequency =
520 policy->cpuinfo.max_freq / 1000;
521 cpu->valid_pss_table = true;
Srinivas Pandruvada6cacd112016-05-29 23:31:23 -0700522 pr_debug("_PPC limits will be enforced\n");
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700523
524 return;
525
526 err:
527 cpu->valid_pss_table = false;
528 acpi_processor_unregister_performance(policy->cpu);
529}
530
531static void intel_pstate_exit_perf_limits(struct cpufreq_policy *policy)
532{
533 struct cpudata *cpu;
534
535 cpu = all_cpu_data[policy->cpu];
536 if (!cpu->valid_pss_table)
537 return;
538
539 acpi_processor_unregister_performance(policy->cpu);
540}
541
542#else
Arnd Bergmann7a3ba762016-11-25 17:50:20 +0100543static inline void intel_pstate_init_acpi_perf_limits(struct cpufreq_policy *policy)
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700544{
545}
546
Arnd Bergmann7a3ba762016-11-25 17:50:20 +0100547static inline void intel_pstate_exit_perf_limits(struct cpufreq_policy *policy)
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700548{
549}
550#endif
551
Dirk Brandewie93f08222013-02-06 09:02:13 -0800552static inline void pid_reset(struct _pid *pid, int setpoint, int busy,
Stratos Karafotisc4108332014-07-18 08:37:23 -0700553 int deadband, int integral) {
Philippe Longepeb54a0df2016-03-08 10:31:14 +0100554 pid->setpoint = int_tofp(setpoint);
555 pid->deadband = int_tofp(deadband);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800556 pid->integral = int_tofp(integral);
Dirk Brandewied98d0992014-02-12 10:01:05 -0800557 pid->last_err = int_tofp(setpoint) - int_tofp(busy);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800558}
559
560static inline void pid_p_gain_set(struct _pid *pid, int percent)
561{
Rafael J. Wysocki22590ef2016-04-09 01:25:58 +0200562 pid->p_gain = div_fp(percent, 100);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800563}
564
565static inline void pid_i_gain_set(struct _pid *pid, int percent)
566{
Rafael J. Wysocki22590ef2016-04-09 01:25:58 +0200567 pid->i_gain = div_fp(percent, 100);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800568}
569
570static inline void pid_d_gain_set(struct _pid *pid, int percent)
571{
Rafael J. Wysocki22590ef2016-04-09 01:25:58 +0200572 pid->d_gain = div_fp(percent, 100);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800573}
574
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700575static signed int pid_calc(struct _pid *pid, int32_t busy)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800576{
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700577 signed int result;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800578 int32_t pterm, dterm, fp_error;
579 int32_t integral_limit;
580
Philippe Longepeb54a0df2016-03-08 10:31:14 +0100581 fp_error = pid->setpoint - busy;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800582
Philippe Longepeb54a0df2016-03-08 10:31:14 +0100583 if (abs(fp_error) <= pid->deadband)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800584 return 0;
585
586 pterm = mul_fp(pid->p_gain, fp_error);
587
588 pid->integral += fp_error;
589
Kristen Carlson Accardie0d4c8f2014-12-10 12:39:38 -0800590 /*
591 * We limit the integral here so that it will never
592 * get higher than 30. This prevents it from becoming
593 * too large an input over long periods of time and allows
594 * it to get factored out sooner.
595 *
596 * The value of 30 was chosen through experimentation.
597 */
Dirk Brandewie93f08222013-02-06 09:02:13 -0800598 integral_limit = int_tofp(30);
599 if (pid->integral > integral_limit)
600 pid->integral = integral_limit;
601 if (pid->integral < -integral_limit)
602 pid->integral = -integral_limit;
603
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700604 dterm = mul_fp(pid->d_gain, fp_error - pid->last_err);
605 pid->last_err = fp_error;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800606
607 result = pterm + mul_fp(pid->integral, pid->i_gain) + dterm;
Doug Smythies51d211e2014-06-17 13:36:10 -0700608 result = result + (1 << (FRAC_BITS-1));
Dirk Brandewie93f08222013-02-06 09:02:13 -0800609 return (signed int)fp_toint(result);
610}
611
612static inline void intel_pstate_busy_pid_reset(struct cpudata *cpu)
613{
Dirk Brandewie016c8152013-10-21 09:20:34 -0700614 pid_p_gain_set(&cpu->pid, pid_params.p_gain_pct);
615 pid_d_gain_set(&cpu->pid, pid_params.d_gain_pct);
616 pid_i_gain_set(&cpu->pid, pid_params.i_gain_pct);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800617
Stratos Karafotis2d8d1f12014-07-18 08:37:20 -0700618 pid_reset(&cpu->pid, pid_params.setpoint, 100, pid_params.deadband, 0);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800619}
620
Dirk Brandewie93f08222013-02-06 09:02:13 -0800621static inline void intel_pstate_reset_all_pid(void)
622{
623 unsigned int cpu;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700624
Dirk Brandewie93f08222013-02-06 09:02:13 -0800625 for_each_online_cpu(cpu) {
626 if (all_cpu_data[cpu])
627 intel_pstate_busy_pid_reset(all_cpu_data[cpu]);
628 }
629}
630
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700631static inline void update_turbo_state(void)
632{
633 u64 misc_en;
634 struct cpudata *cpu;
635
636 cpu = all_cpu_data[0];
637 rdmsrl(MSR_IA32_MISC_ENABLE, misc_en);
Prarit Bhargava51443fb2015-10-15 07:34:15 -0400638 limits->turbo_disabled =
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700639 (misc_en & MSR_IA32_MISC_ENABLE_TURBO_DISABLE ||
640 cpu->pstate.max_pstate == cpu->pstate.turbo_pstate);
641}
642
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800643static s16 intel_pstate_get_epb(struct cpudata *cpu_data)
644{
645 u64 epb;
646 int ret;
647
648 if (!static_cpu_has(X86_FEATURE_EPB))
649 return -ENXIO;
650
651 ret = rdmsrl_on_cpu(cpu_data->cpu, MSR_IA32_ENERGY_PERF_BIAS, &epb);
652 if (ret)
653 return (s16)ret;
654
655 return (s16)(epb & 0x0f);
656}
657
658static s16 intel_pstate_get_epp(struct cpudata *cpu_data, u64 hwp_req_data)
659{
660 s16 epp;
661
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800662 if (static_cpu_has(X86_FEATURE_HWP_EPP)) {
663 /*
664 * When hwp_req_data is 0, means that caller didn't read
665 * MSR_HWP_REQUEST, so need to read and get EPP.
666 */
667 if (!hwp_req_data) {
668 epp = rdmsrl_on_cpu(cpu_data->cpu, MSR_HWP_REQUEST,
669 &hwp_req_data);
670 if (epp)
671 return epp;
672 }
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800673 epp = (hwp_req_data >> 24) & 0xff;
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800674 } else {
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800675 /* When there is no EPP present, HWP uses EPB settings */
676 epp = intel_pstate_get_epb(cpu_data);
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800677 }
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800678
679 return epp;
680}
681
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800682static int intel_pstate_set_epb(int cpu, s16 pref)
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800683{
684 u64 epb;
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800685 int ret;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800686
687 if (!static_cpu_has(X86_FEATURE_EPB))
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800688 return -ENXIO;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800689
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800690 ret = rdmsrl_on_cpu(cpu, MSR_IA32_ENERGY_PERF_BIAS, &epb);
691 if (ret)
692 return ret;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800693
694 epb = (epb & ~0x0f) | pref;
695 wrmsrl_on_cpu(cpu, MSR_IA32_ENERGY_PERF_BIAS, epb);
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800696
697 return 0;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800698}
699
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800700/*
701 * EPP/EPB display strings corresponding to EPP index in the
702 * energy_perf_strings[]
703 * index String
704 *-------------------------------------
705 * 0 default
706 * 1 performance
707 * 2 balance_performance
708 * 3 balance_power
709 * 4 power
710 */
711static const char * const energy_perf_strings[] = {
712 "default",
713 "performance",
714 "balance_performance",
715 "balance_power",
716 "power",
717 NULL
718};
719
720static int intel_pstate_get_energy_pref_index(struct cpudata *cpu_data)
721{
722 s16 epp;
723 int index = -EINVAL;
724
725 epp = intel_pstate_get_epp(cpu_data, 0);
726 if (epp < 0)
727 return epp;
728
729 if (static_cpu_has(X86_FEATURE_HWP_EPP)) {
730 /*
731 * Range:
732 * 0x00-0x3F : Performance
733 * 0x40-0x7F : Balance performance
734 * 0x80-0xBF : Balance power
735 * 0xC0-0xFF : Power
736 * The EPP is a 8 bit value, but our ranges restrict the
737 * value which can be set. Here only using top two bits
738 * effectively.
739 */
740 index = (epp >> 6) + 1;
741 } else if (static_cpu_has(X86_FEATURE_EPB)) {
742 /*
743 * Range:
744 * 0x00-0x03 : Performance
745 * 0x04-0x07 : Balance performance
746 * 0x08-0x0B : Balance power
747 * 0x0C-0x0F : Power
748 * The EPB is a 4 bit value, but our ranges restrict the
749 * value which can be set. Here only using top two bits
750 * effectively.
751 */
752 index = (epp >> 2) + 1;
753 }
754
755 return index;
756}
757
758static int intel_pstate_set_energy_pref_index(struct cpudata *cpu_data,
759 int pref_index)
760{
761 int epp = -EINVAL;
762 int ret;
763
764 if (!pref_index)
765 epp = cpu_data->epp_default;
766
767 mutex_lock(&intel_pstate_limits_lock);
768
769 if (static_cpu_has(X86_FEATURE_HWP_EPP)) {
770 u64 value;
771
772 ret = rdmsrl_on_cpu(cpu_data->cpu, MSR_HWP_REQUEST, &value);
773 if (ret)
774 goto return_pref;
775
776 value &= ~GENMASK_ULL(31, 24);
777
778 /*
779 * If epp is not default, convert from index into
780 * energy_perf_strings to epp value, by shifting 6
781 * bits left to use only top two bits in epp.
782 * The resultant epp need to shifted by 24 bits to
783 * epp position in MSR_HWP_REQUEST.
784 */
785 if (epp == -EINVAL)
786 epp = (pref_index - 1) << 6;
787
788 value |= (u64)epp << 24;
789 ret = wrmsrl_on_cpu(cpu_data->cpu, MSR_HWP_REQUEST, value);
790 } else {
791 if (epp == -EINVAL)
792 epp = (pref_index - 1) << 2;
793 ret = intel_pstate_set_epb(cpu_data->cpu, epp);
794 }
795return_pref:
796 mutex_unlock(&intel_pstate_limits_lock);
797
798 return ret;
799}
800
801static ssize_t show_energy_performance_available_preferences(
802 struct cpufreq_policy *policy, char *buf)
803{
804 int i = 0;
805 int ret = 0;
806
807 while (energy_perf_strings[i] != NULL)
808 ret += sprintf(&buf[ret], "%s ", energy_perf_strings[i++]);
809
810 ret += sprintf(&buf[ret], "\n");
811
812 return ret;
813}
814
815cpufreq_freq_attr_ro(energy_performance_available_preferences);
816
817static ssize_t store_energy_performance_preference(
818 struct cpufreq_policy *policy, const char *buf, size_t count)
819{
820 struct cpudata *cpu_data = all_cpu_data[policy->cpu];
821 char str_preference[21];
822 int ret, i = 0;
823
824 ret = sscanf(buf, "%20s", str_preference);
825 if (ret != 1)
826 return -EINVAL;
827
828 while (energy_perf_strings[i] != NULL) {
829 if (!strcmp(str_preference, energy_perf_strings[i])) {
830 intel_pstate_set_energy_pref_index(cpu_data, i);
831 return count;
832 }
833 ++i;
834 }
835
836 return -EINVAL;
837}
838
839static ssize_t show_energy_performance_preference(
840 struct cpufreq_policy *policy, char *buf)
841{
842 struct cpudata *cpu_data = all_cpu_data[policy->cpu];
843 int preference;
844
845 preference = intel_pstate_get_energy_pref_index(cpu_data);
846 if (preference < 0)
847 return preference;
848
849 return sprintf(buf, "%s\n", energy_perf_strings[preference]);
850}
851
852cpufreq_freq_attr_rw(energy_performance_preference);
853
854static struct freq_attr *hwp_cpufreq_attrs[] = {
855 &energy_performance_preference,
856 &energy_performance_available_preferences,
857 NULL,
858};
859
Rafael J. Wysocki111b8b32016-12-30 15:58:21 +0100860static void intel_pstate_hwp_set(struct cpufreq_policy *policy)
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800861{
Kristen Carlson Accardi74da56c2015-09-09 11:41:22 -0700862 int min, hw_min, max, hw_max, cpu, range, adj_range;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700863 struct perf_limits *perf_limits = limits;
Kristen Carlson Accardi74da56c2015-09-09 11:41:22 -0700864 u64 value, cap;
865
Rafael J. Wysocki111b8b32016-12-30 15:58:21 +0100866 for_each_cpu(cpu, policy->cpus) {
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700867 int max_perf_pct, min_perf_pct;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800868 struct cpudata *cpu_data = all_cpu_data[cpu];
869 s16 epp;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700870
871 if (per_cpu_limits)
872 perf_limits = all_cpu_data[cpu]->perf_limits;
873
Srinivas Pandruvadaf9f48722016-10-08 12:42:38 -0700874 rdmsrl_on_cpu(cpu, MSR_HWP_CAPABILITIES, &cap);
875 hw_min = HWP_LOWEST_PERF(cap);
876 hw_max = HWP_HIGHEST_PERF(cap);
877 range = hw_max - hw_min;
878
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700879 max_perf_pct = perf_limits->max_perf_pct;
880 min_perf_pct = perf_limits->min_perf_pct;
881
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800882 rdmsrl_on_cpu(cpu, MSR_HWP_REQUEST, &value);
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700883 adj_range = min_perf_pct * range / 100;
Kristen Carlson Accardi74da56c2015-09-09 11:41:22 -0700884 min = hw_min + adj_range;
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800885 value &= ~HWP_MIN_PERF(~0L);
886 value |= HWP_MIN_PERF(min);
887
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700888 adj_range = max_perf_pct * range / 100;
Kristen Carlson Accardi74da56c2015-09-09 11:41:22 -0700889 max = hw_min + adj_range;
Prarit Bhargava51443fb2015-10-15 07:34:15 -0400890 if (limits->no_turbo) {
Kristen Carlson Accardi74da56c2015-09-09 11:41:22 -0700891 hw_max = HWP_GUARANTEED_PERF(cap);
892 if (hw_max < max)
893 max = hw_max;
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800894 }
895
896 value &= ~HWP_MAX_PERF(~0L);
897 value |= HWP_MAX_PERF(max);
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800898
899 if (cpu_data->epp_policy == cpu_data->policy)
900 goto skip_epp;
901
902 cpu_data->epp_policy = cpu_data->policy;
903
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800904 if (cpu_data->epp_saved >= 0) {
905 epp = cpu_data->epp_saved;
906 cpu_data->epp_saved = -EINVAL;
907 goto update_epp;
908 }
909
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800910 if (cpu_data->policy == CPUFREQ_POLICY_PERFORMANCE) {
911 epp = intel_pstate_get_epp(cpu_data, value);
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800912 cpu_data->epp_powersave = epp;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800913 /* If EPP read was failed, then don't try to write */
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800914 if (epp < 0)
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800915 goto skip_epp;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800916
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800917
918 epp = 0;
919 } else {
920 /* skip setting EPP, when saved value is invalid */
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800921 if (cpu_data->epp_powersave < 0)
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800922 goto skip_epp;
923
924 /*
925 * No need to restore EPP when it is not zero. This
926 * means:
927 * - Policy is not changed
928 * - user has manually changed
929 * - Error reading EPB
930 */
931 epp = intel_pstate_get_epp(cpu_data, value);
932 if (epp)
933 goto skip_epp;
934
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800935 epp = cpu_data->epp_powersave;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800936 }
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800937update_epp:
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800938 if (static_cpu_has(X86_FEATURE_HWP_EPP)) {
939 value &= ~GENMASK_ULL(31, 24);
940 value |= (u64)epp << 24;
941 } else {
942 intel_pstate_set_epb(cpu, epp);
943 }
944skip_epp:
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800945 wrmsrl_on_cpu(cpu, MSR_HWP_REQUEST, value);
946 }
Viresh Kumar41cfd642016-02-22 10:27:46 +0530947}
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800948
Rafael J. Wysockiba41e1b2016-05-02 02:27:19 +0200949static int intel_pstate_hwp_set_policy(struct cpufreq_policy *policy)
950{
951 if (hwp_active)
Rafael J. Wysocki111b8b32016-12-30 15:58:21 +0100952 intel_pstate_hwp_set(policy);
Rafael J. Wysockiba41e1b2016-05-02 02:27:19 +0200953
954 return 0;
955}
956
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800957static int intel_pstate_hwp_save_state(struct cpufreq_policy *policy)
958{
959 struct cpudata *cpu_data = all_cpu_data[policy->cpu];
960
961 if (!hwp_active)
962 return 0;
963
964 cpu_data->epp_saved = intel_pstate_get_epp(cpu_data, 0);
965
966 return 0;
967}
968
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800969static int intel_pstate_resume(struct cpufreq_policy *policy)
970{
Rafael J. Wysockiaa439242016-12-30 15:56:14 +0100971 int ret;
972
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800973 if (!hwp_active)
974 return 0;
975
Rafael J. Wysockiaa439242016-12-30 15:56:14 +0100976 mutex_lock(&intel_pstate_limits_lock);
977
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800978 all_cpu_data[policy->cpu]->epp_policy = 0;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800979
Rafael J. Wysockiaa439242016-12-30 15:56:14 +0100980 ret = intel_pstate_hwp_set_policy(policy);
981
982 mutex_unlock(&intel_pstate_limits_lock);
983
984 return ret;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800985}
986
Rafael J. Wysocki111b8b32016-12-30 15:58:21 +0100987static void intel_pstate_update_policies(void)
Viresh Kumar41cfd642016-02-22 10:27:46 +0530988{
Rafael J. Wysocki111b8b32016-12-30 15:58:21 +0100989 int cpu;
990
991 for_each_possible_cpu(cpu)
992 cpufreq_update_policy(cpu);
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800993}
994
Dirk Brandewie93f08222013-02-06 09:02:13 -0800995/************************** debugfs begin ************************/
996static int pid_param_set(void *data, u64 val)
997{
998 *(u32 *)data = val;
999 intel_pstate_reset_all_pid();
1000 return 0;
1001}
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001002
Dirk Brandewie93f08222013-02-06 09:02:13 -08001003static int pid_param_get(void *data, u64 *val)
1004{
1005 *val = *(u32 *)data;
1006 return 0;
1007}
Stratos Karafotis2d8d1f12014-07-18 08:37:20 -07001008DEFINE_SIMPLE_ATTRIBUTE(fops_pid_param, pid_param_get, pid_param_set, "%llu\n");
Dirk Brandewie93f08222013-02-06 09:02:13 -08001009
1010struct pid_param {
1011 char *name;
1012 void *value;
1013};
1014
1015static struct pid_param pid_files[] = {
Dirk Brandewie016c8152013-10-21 09:20:34 -07001016 {"sample_rate_ms", &pid_params.sample_rate_ms},
1017 {"d_gain_pct", &pid_params.d_gain_pct},
1018 {"i_gain_pct", &pid_params.i_gain_pct},
1019 {"deadband", &pid_params.deadband},
1020 {"setpoint", &pid_params.setpoint},
1021 {"p_gain_pct", &pid_params.p_gain_pct},
Dirk Brandewie93f08222013-02-06 09:02:13 -08001022 {NULL, NULL}
1023};
1024
Stratos Karafotis317dd502014-07-18 08:37:17 -07001025static void __init intel_pstate_debug_expose_params(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001026{
Stratos Karafotis317dd502014-07-18 08:37:17 -07001027 struct dentry *debugfs_parent;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001028 int i = 0;
1029
1030 debugfs_parent = debugfs_create_dir("pstate_snb", NULL);
1031 if (IS_ERR_OR_NULL(debugfs_parent))
1032 return;
1033 while (pid_files[i].name) {
1034 debugfs_create_file(pid_files[i].name, 0660,
Stratos Karafotisc4108332014-07-18 08:37:23 -07001035 debugfs_parent, pid_files[i].value,
1036 &fops_pid_param);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001037 i++;
1038 }
1039}
1040
1041/************************** debugfs end ************************/
1042
1043/************************** sysfs begin ************************/
1044#define show_one(file_name, object) \
1045 static ssize_t show_##file_name \
1046 (struct kobject *kobj, struct attribute *attr, char *buf) \
1047 { \
Prarit Bhargava51443fb2015-10-15 07:34:15 -04001048 return sprintf(buf, "%u\n", limits->object); \
Dirk Brandewie93f08222013-02-06 09:02:13 -08001049 }
1050
Kristen Carlson Accardid01b1f42015-01-28 15:03:27 -08001051static ssize_t show_turbo_pct(struct kobject *kobj,
1052 struct attribute *attr, char *buf)
1053{
1054 struct cpudata *cpu;
1055 int total, no_turbo, turbo_pct;
1056 uint32_t turbo_fp;
1057
1058 cpu = all_cpu_data[0];
1059
1060 total = cpu->pstate.turbo_pstate - cpu->pstate.min_pstate + 1;
1061 no_turbo = cpu->pstate.max_pstate - cpu->pstate.min_pstate + 1;
Rafael J. Wysocki22590ef2016-04-09 01:25:58 +02001062 turbo_fp = div_fp(no_turbo, total);
Kristen Carlson Accardid01b1f42015-01-28 15:03:27 -08001063 turbo_pct = 100 - fp_toint(mul_fp(turbo_fp, int_tofp(100)));
1064 return sprintf(buf, "%u\n", turbo_pct);
1065}
1066
Kristen Carlson Accardi05224242015-01-28 15:03:28 -08001067static ssize_t show_num_pstates(struct kobject *kobj,
1068 struct attribute *attr, char *buf)
1069{
1070 struct cpudata *cpu;
1071 int total;
1072
1073 cpu = all_cpu_data[0];
1074 total = cpu->pstate.turbo_pstate - cpu->pstate.min_pstate + 1;
1075 return sprintf(buf, "%u\n", total);
1076}
1077
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -07001078static ssize_t show_no_turbo(struct kobject *kobj,
1079 struct attribute *attr, char *buf)
1080{
1081 ssize_t ret;
1082
1083 update_turbo_state();
Prarit Bhargava51443fb2015-10-15 07:34:15 -04001084 if (limits->turbo_disabled)
1085 ret = sprintf(buf, "%u\n", limits->turbo_disabled);
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -07001086 else
Prarit Bhargava51443fb2015-10-15 07:34:15 -04001087 ret = sprintf(buf, "%u\n", limits->no_turbo);
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -07001088
1089 return ret;
1090}
1091
Dirk Brandewie93f08222013-02-06 09:02:13 -08001092static ssize_t store_no_turbo(struct kobject *a, struct attribute *b,
Stratos Karafotisc4108332014-07-18 08:37:23 -07001093 const char *buf, size_t count)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001094{
1095 unsigned int input;
1096 int ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001097
Dirk Brandewie93f08222013-02-06 09:02:13 -08001098 ret = sscanf(buf, "%u", &input);
1099 if (ret != 1)
1100 return -EINVAL;
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -07001101
Srinivas Pandruvadaa410c03d2016-10-28 10:44:52 -07001102 mutex_lock(&intel_pstate_limits_lock);
1103
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -07001104 update_turbo_state();
Prarit Bhargava51443fb2015-10-15 07:34:15 -04001105 if (limits->turbo_disabled) {
Joe Perches4836df12016-04-05 13:28:23 -07001106 pr_warn("Turbo disabled by BIOS or unavailable on processor\n");
Srinivas Pandruvadaa410c03d2016-10-28 10:44:52 -07001107 mutex_unlock(&intel_pstate_limits_lock);
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -07001108 return -EPERM;
Dirk Brandewiedd5fbf72014-06-20 07:27:59 -07001109 }
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001110
Prarit Bhargava51443fb2015-10-15 07:34:15 -04001111 limits->no_turbo = clamp_t(int, input, 0, 1);
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -07001112
Srinivas Pandruvadab59fe542016-12-06 13:32:15 -08001113 mutex_unlock(&intel_pstate_limits_lock);
1114
Rafael J. Wysocki111b8b32016-12-30 15:58:21 +01001115 intel_pstate_update_policies();
1116
Dirk Brandewie93f08222013-02-06 09:02:13 -08001117 return count;
1118}
1119
1120static ssize_t store_max_perf_pct(struct kobject *a, struct attribute *b,
Stratos Karafotisc4108332014-07-18 08:37:23 -07001121 const char *buf, size_t count)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001122{
1123 unsigned int input;
1124 int ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001125
Dirk Brandewie93f08222013-02-06 09:02:13 -08001126 ret = sscanf(buf, "%u", &input);
1127 if (ret != 1)
1128 return -EINVAL;
1129
Srinivas Pandruvadaa410c03d2016-10-28 10:44:52 -07001130 mutex_lock(&intel_pstate_limits_lock);
1131
Prarit Bhargava51443fb2015-10-15 07:34:15 -04001132 limits->max_sysfs_pct = clamp_t(int, input, 0 , 100);
1133 limits->max_perf_pct = min(limits->max_policy_pct,
1134 limits->max_sysfs_pct);
1135 limits->max_perf_pct = max(limits->min_policy_pct,
1136 limits->max_perf_pct);
1137 limits->max_perf_pct = max(limits->min_perf_pct,
1138 limits->max_perf_pct);
Srinivas Pandruvadad5dd33d2016-11-21 16:33:20 -08001139 limits->max_perf = div_ext_fp(limits->max_perf_pct, 100);
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001140
Srinivas Pandruvadab59fe542016-12-06 13:32:15 -08001141 mutex_unlock(&intel_pstate_limits_lock);
1142
Rafael J. Wysocki111b8b32016-12-30 15:58:21 +01001143 intel_pstate_update_policies();
1144
Dirk Brandewie93f08222013-02-06 09:02:13 -08001145 return count;
1146}
1147
1148static ssize_t store_min_perf_pct(struct kobject *a, struct attribute *b,
Stratos Karafotisc4108332014-07-18 08:37:23 -07001149 const char *buf, size_t count)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001150{
1151 unsigned int input;
1152 int ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001153
Dirk Brandewie93f08222013-02-06 09:02:13 -08001154 ret = sscanf(buf, "%u", &input);
1155 if (ret != 1)
1156 return -EINVAL;
Kristen Carlson Accardia0475992015-01-29 13:03:52 -08001157
Srinivas Pandruvadaa410c03d2016-10-28 10:44:52 -07001158 mutex_lock(&intel_pstate_limits_lock);
1159
Prarit Bhargava51443fb2015-10-15 07:34:15 -04001160 limits->min_sysfs_pct = clamp_t(int, input, 0 , 100);
1161 limits->min_perf_pct = max(limits->min_policy_pct,
1162 limits->min_sysfs_pct);
1163 limits->min_perf_pct = min(limits->max_policy_pct,
1164 limits->min_perf_pct);
1165 limits->min_perf_pct = min(limits->max_perf_pct,
1166 limits->min_perf_pct);
Srinivas Pandruvadad5dd33d2016-11-21 16:33:20 -08001167 limits->min_perf = div_ext_fp(limits->min_perf_pct, 100);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001168
Srinivas Pandruvadab59fe542016-12-06 13:32:15 -08001169 mutex_unlock(&intel_pstate_limits_lock);
1170
Rafael J. Wysocki111b8b32016-12-30 15:58:21 +01001171 intel_pstate_update_policies();
1172
Dirk Brandewie93f08222013-02-06 09:02:13 -08001173 return count;
1174}
1175
Dirk Brandewie93f08222013-02-06 09:02:13 -08001176show_one(max_perf_pct, max_perf_pct);
1177show_one(min_perf_pct, min_perf_pct);
1178
1179define_one_global_rw(no_turbo);
1180define_one_global_rw(max_perf_pct);
1181define_one_global_rw(min_perf_pct);
Kristen Carlson Accardid01b1f42015-01-28 15:03:27 -08001182define_one_global_ro(turbo_pct);
Kristen Carlson Accardi05224242015-01-28 15:03:28 -08001183define_one_global_ro(num_pstates);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001184
1185static struct attribute *intel_pstate_attributes[] = {
1186 &no_turbo.attr,
Kristen Carlson Accardid01b1f42015-01-28 15:03:27 -08001187 &turbo_pct.attr,
Kristen Carlson Accardi05224242015-01-28 15:03:28 -08001188 &num_pstates.attr,
Dirk Brandewie93f08222013-02-06 09:02:13 -08001189 NULL
1190};
1191
1192static struct attribute_group intel_pstate_attr_group = {
1193 .attrs = intel_pstate_attributes,
1194};
Dirk Brandewie93f08222013-02-06 09:02:13 -08001195
Stratos Karafotis317dd502014-07-18 08:37:17 -07001196static void __init intel_pstate_sysfs_expose_params(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001197{
Stratos Karafotis317dd502014-07-18 08:37:17 -07001198 struct kobject *intel_pstate_kobject;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001199 int rc;
1200
1201 intel_pstate_kobject = kobject_create_and_add("intel_pstate",
1202 &cpu_subsys.dev_root->kobj);
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001203 if (WARN_ON(!intel_pstate_kobject))
1204 return;
1205
Stratos Karafotis2d8d1f12014-07-18 08:37:20 -07001206 rc = sysfs_create_group(intel_pstate_kobject, &intel_pstate_attr_group);
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001207 if (WARN_ON(rc))
1208 return;
1209
1210 /*
1211 * If per cpu limits are enforced there are no global limits, so
1212 * return without creating max/min_perf_pct attributes
1213 */
1214 if (per_cpu_limits)
1215 return;
1216
1217 rc = sysfs_create_file(intel_pstate_kobject, &max_perf_pct.attr);
1218 WARN_ON(rc);
1219
1220 rc = sysfs_create_file(intel_pstate_kobject, &min_perf_pct.attr);
1221 WARN_ON(rc);
1222
Dirk Brandewie93f08222013-02-06 09:02:13 -08001223}
Dirk Brandewie93f08222013-02-06 09:02:13 -08001224/************************** sysfs end ************************/
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001225
Kristen Carlson Accardiba88d432015-07-14 09:46:23 -07001226static void intel_pstate_hwp_enable(struct cpudata *cpudata)
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001227{
Srinivas Pandruvadaf05c9662016-02-25 15:09:31 -08001228 /* First disable HWP notification interrupt as we don't process them */
Srinivas Pandruvadada7de912016-07-19 16:52:01 -07001229 if (static_cpu_has(X86_FEATURE_HWP_NOTIFY))
1230 wrmsrl_on_cpu(cpudata->cpu, MSR_HWP_INTERRUPT, 0x00);
Srinivas Pandruvadaf05c9662016-02-25 15:09:31 -08001231
Kristen Carlson Accardiba88d432015-07-14 09:46:23 -07001232 wrmsrl_on_cpu(cpudata->cpu, MSR_PM_ENABLE, 0x1);
Srinivas Pandruvada84428852016-11-24 16:07:10 -08001233 cpudata->epp_policy = 0;
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -08001234 if (cpudata->epp_default == -EINVAL)
1235 cpudata->epp_default = intel_pstate_get_epp(cpudata, 0);
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001236}
1237
Philippe Longepe938d21a2015-11-09 17:40:46 -08001238static int atom_get_min_pstate(void)
Dirk Brandewie19e77c22013-10-21 09:20:35 -07001239{
1240 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001241
Philippe Longepe938d21a2015-11-09 17:40:46 -08001242 rdmsrl(ATOM_RATIOS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -07001243 return (value >> 8) & 0x7F;
Dirk Brandewie19e77c22013-10-21 09:20:35 -07001244}
Dirk Brandewie93f08222013-02-06 09:02:13 -08001245
Philippe Longepe938d21a2015-11-09 17:40:46 -08001246static int atom_get_max_pstate(void)
Dirk Brandewie19e77c22013-10-21 09:20:35 -07001247{
1248 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001249
Philippe Longepe938d21a2015-11-09 17:40:46 -08001250 rdmsrl(ATOM_RATIOS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -07001251 return (value >> 16) & 0x7F;
Dirk Brandewie19e77c22013-10-21 09:20:35 -07001252}
1253
Philippe Longepe938d21a2015-11-09 17:40:46 -08001254static int atom_get_turbo_pstate(void)
Dirk Brandewie61d8d2a2014-02-12 10:01:07 -08001255{
1256 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001257
Philippe Longepe938d21a2015-11-09 17:40:46 -08001258 rdmsrl(ATOM_TURBO_RATIOS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -07001259 return value & 0x7F;
Dirk Brandewie61d8d2a2014-02-12 10:01:07 -08001260}
1261
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001262static u64 atom_get_val(struct cpudata *cpudata, int pstate)
Dirk Brandewie007bea02013-12-18 10:32:39 -08001263{
1264 u64 val;
1265 int32_t vid_fp;
1266 u32 vid;
1267
Chen Yu144c8e12015-07-29 23:53:10 +08001268 val = (u64)pstate << 8;
Prarit Bhargava51443fb2015-10-15 07:34:15 -04001269 if (limits->no_turbo && !limits->turbo_disabled)
Dirk Brandewie007bea02013-12-18 10:32:39 -08001270 val |= (u64)1 << 32;
1271
1272 vid_fp = cpudata->vid.min + mul_fp(
1273 int_tofp(pstate - cpudata->pstate.min_pstate),
1274 cpudata->vid.ratio);
1275
1276 vid_fp = clamp_t(int32_t, vid_fp, cpudata->vid.min, cpudata->vid.max);
Dirk Brandewied022a652014-10-13 08:37:44 -07001277 vid = ceiling_fp(vid_fp);
Dirk Brandewie007bea02013-12-18 10:32:39 -08001278
Dirk Brandewie21855ff2014-05-08 12:57:23 -07001279 if (pstate > cpudata->pstate.max_pstate)
1280 vid = cpudata->vid.turbo;
1281
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001282 return val | vid;
Dirk Brandewie007bea02013-12-18 10:32:39 -08001283}
1284
Philippe Longepe1421df62015-11-09 17:40:47 -08001285static int silvermont_get_scaling(void)
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001286{
1287 u64 value;
1288 int i;
Philippe Longepe1421df62015-11-09 17:40:47 -08001289 /* Defined in Table 35-6 from SDM (Sept 2015) */
1290 static int silvermont_freq_table[] = {
1291 83300, 100000, 133300, 116700, 80000};
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001292
1293 rdmsrl(MSR_FSB_FREQ, value);
Philippe Longepe1421df62015-11-09 17:40:47 -08001294 i = value & 0x7;
1295 WARN_ON(i > 4);
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001296
Philippe Longepe1421df62015-11-09 17:40:47 -08001297 return silvermont_freq_table[i];
1298}
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001299
Philippe Longepe1421df62015-11-09 17:40:47 -08001300static int airmont_get_scaling(void)
1301{
1302 u64 value;
1303 int i;
1304 /* Defined in Table 35-10 from SDM (Sept 2015) */
1305 static int airmont_freq_table[] = {
1306 83300, 100000, 133300, 116700, 80000,
1307 93300, 90000, 88900, 87500};
1308
1309 rdmsrl(MSR_FSB_FREQ, value);
1310 i = value & 0xF;
1311 WARN_ON(i > 8);
1312
1313 return airmont_freq_table[i];
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001314}
1315
Philippe Longepe938d21a2015-11-09 17:40:46 -08001316static void atom_get_vid(struct cpudata *cpudata)
Dirk Brandewie007bea02013-12-18 10:32:39 -08001317{
1318 u64 value;
1319
Philippe Longepe938d21a2015-11-09 17:40:46 -08001320 rdmsrl(ATOM_VIDS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -07001321 cpudata->vid.min = int_tofp((value >> 8) & 0x7f);
1322 cpudata->vid.max = int_tofp((value >> 16) & 0x7f);
Dirk Brandewie007bea02013-12-18 10:32:39 -08001323 cpudata->vid.ratio = div_fp(
1324 cpudata->vid.max - cpudata->vid.min,
1325 int_tofp(cpudata->pstate.max_pstate -
1326 cpudata->pstate.min_pstate));
Dirk Brandewie21855ff2014-05-08 12:57:23 -07001327
Philippe Longepe938d21a2015-11-09 17:40:46 -08001328 rdmsrl(ATOM_TURBO_VIDS, value);
Dirk Brandewie21855ff2014-05-08 12:57:23 -07001329 cpudata->vid.turbo = value & 0x7f;
Dirk Brandewie007bea02013-12-18 10:32:39 -08001330}
1331
Dirk Brandewie016c8152013-10-21 09:20:34 -07001332static int core_get_min_pstate(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001333{
1334 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001335
Konrad Rzeszutek Wilk05e99c8cf2013-03-20 14:21:10 +00001336 rdmsrl(MSR_PLATFORM_INFO, value);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001337 return (value >> 40) & 0xFF;
1338}
1339
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -07001340static int core_get_max_pstate_physical(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001341{
1342 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001343
Konrad Rzeszutek Wilk05e99c8cf2013-03-20 14:21:10 +00001344 rdmsrl(MSR_PLATFORM_INFO, value);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001345 return (value >> 8) & 0xFF;
1346}
1347
Dirk Brandewie93f08222013-02-06 09:02:13 -08001348static int core_get_max_pstate(void)
1349{
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -07001350 u64 tar;
1351 u64 plat_info;
1352 int max_pstate;
1353 int err;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001354
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -07001355 rdmsrl(MSR_PLATFORM_INFO, plat_info);
1356 max_pstate = (plat_info >> 8) & 0xFF;
1357
1358 err = rdmsrl_safe(MSR_TURBO_ACTIVATION_RATIO, &tar);
1359 if (!err) {
1360 /* Do some sanity checking for safety */
1361 if (plat_info & 0x600000000) {
1362 u64 tdp_ctrl;
1363 u64 tdp_ratio;
1364 int tdp_msr;
1365
1366 err = rdmsrl_safe(MSR_CONFIG_TDP_CONTROL, &tdp_ctrl);
1367 if (err)
1368 goto skip_tar;
1369
Jan Kiszka5fc8f7072016-07-08 20:42:04 +02001370 tdp_msr = MSR_CONFIG_TDP_NOMINAL + (tdp_ctrl & 0x3);
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -07001371 err = rdmsrl_safe(tdp_msr, &tdp_ratio);
1372 if (err)
1373 goto skip_tar;
1374
Srinivas Pandruvada1becf032016-04-22 19:53:59 -07001375 /* For level 1 and 2, bits[23:16] contain the ratio */
1376 if (tdp_ctrl)
1377 tdp_ratio >>= 16;
1378
1379 tdp_ratio &= 0xff; /* ratios are only 8 bits long */
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -07001380 if (tdp_ratio - 1 == tar) {
1381 max_pstate = tar;
1382 pr_debug("max_pstate=TAC %x\n", max_pstate);
1383 } else {
1384 goto skip_tar;
1385 }
1386 }
1387 }
1388
1389skip_tar:
1390 return max_pstate;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001391}
1392
Dirk Brandewie016c8152013-10-21 09:20:34 -07001393static int core_get_turbo_pstate(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001394{
1395 u64 value;
1396 int nont, ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001397
Srinivas Pandruvada100cf6f2016-07-06 16:07:55 -07001398 rdmsrl(MSR_TURBO_RATIO_LIMIT, value);
Dirk Brandewie016c8152013-10-21 09:20:34 -07001399 nont = core_get_max_pstate();
Stratos Karafotis285cb992014-07-18 08:37:21 -07001400 ret = (value) & 255;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001401 if (ret <= nont)
1402 ret = nont;
1403 return ret;
1404}
1405
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001406static inline int core_get_scaling(void)
1407{
1408 return 100000;
1409}
1410
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001411static u64 core_get_val(struct cpudata *cpudata, int pstate)
Dirk Brandewie016c8152013-10-21 09:20:34 -07001412{
1413 u64 val;
1414
Chen Yu144c8e12015-07-29 23:53:10 +08001415 val = (u64)pstate << 8;
Prarit Bhargava51443fb2015-10-15 07:34:15 -04001416 if (limits->no_turbo && !limits->turbo_disabled)
Dirk Brandewie016c8152013-10-21 09:20:34 -07001417 val |= (u64)1 << 32;
1418
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001419 return val;
Dirk Brandewie016c8152013-10-21 09:20:34 -07001420}
1421
Dasaratharaman Chandramoulib34ef932015-04-10 10:22:18 -07001422static int knl_get_turbo_pstate(void)
1423{
1424 u64 value;
1425 int nont, ret;
1426
Srinivas Pandruvada100cf6f2016-07-06 16:07:55 -07001427 rdmsrl(MSR_TURBO_RATIO_LIMIT, value);
Dasaratharaman Chandramoulib34ef932015-04-10 10:22:18 -07001428 nont = core_get_max_pstate();
1429 ret = (((value) >> 8) & 0xFF);
1430 if (ret <= nont)
1431 ret = nont;
1432 return ret;
1433}
1434
Dirk Brandewie016c8152013-10-21 09:20:34 -07001435static struct cpu_defaults core_params = {
1436 .pid_policy = {
1437 .sample_rate_ms = 10,
1438 .deadband = 0,
1439 .setpoint = 97,
1440 .p_gain_pct = 20,
1441 .d_gain_pct = 0,
1442 .i_gain_pct = 0,
1443 },
1444 .funcs = {
1445 .get_max = core_get_max_pstate,
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -07001446 .get_max_physical = core_get_max_pstate_physical,
Dirk Brandewie016c8152013-10-21 09:20:34 -07001447 .get_min = core_get_min_pstate,
1448 .get_turbo = core_get_turbo_pstate,
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001449 .get_scaling = core_get_scaling,
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001450 .get_val = core_get_val,
Philippe Longepe157386b2015-12-04 17:40:30 +01001451 .get_target_pstate = get_target_pstate_use_performance,
Dirk Brandewie016c8152013-10-21 09:20:34 -07001452 },
1453};
1454
Julia Lawall42ce8922016-09-11 15:06:01 +02001455static const struct cpu_defaults silvermont_params = {
Dirk Brandewie19e77c22013-10-21 09:20:35 -07001456 .pid_policy = {
1457 .sample_rate_ms = 10,
1458 .deadband = 0,
Kristen Carlson Accardi6a82ba62015-04-10 11:06:43 -07001459 .setpoint = 60,
Dirk Brandewie19e77c22013-10-21 09:20:35 -07001460 .p_gain_pct = 14,
1461 .d_gain_pct = 0,
1462 .i_gain_pct = 4,
1463 },
1464 .funcs = {
Philippe Longepe938d21a2015-11-09 17:40:46 -08001465 .get_max = atom_get_max_pstate,
1466 .get_max_physical = atom_get_max_pstate,
1467 .get_min = atom_get_min_pstate,
1468 .get_turbo = atom_get_turbo_pstate,
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001469 .get_val = atom_get_val,
Philippe Longepe1421df62015-11-09 17:40:47 -08001470 .get_scaling = silvermont_get_scaling,
1471 .get_vid = atom_get_vid,
Philippe Longepee70eed22015-12-04 17:40:32 +01001472 .get_target_pstate = get_target_pstate_use_cpu_load,
Philippe Longepe1421df62015-11-09 17:40:47 -08001473 },
1474};
1475
Julia Lawall42ce8922016-09-11 15:06:01 +02001476static const struct cpu_defaults airmont_params = {
Philippe Longepe1421df62015-11-09 17:40:47 -08001477 .pid_policy = {
1478 .sample_rate_ms = 10,
1479 .deadband = 0,
1480 .setpoint = 60,
1481 .p_gain_pct = 14,
1482 .d_gain_pct = 0,
1483 .i_gain_pct = 4,
1484 },
1485 .funcs = {
1486 .get_max = atom_get_max_pstate,
1487 .get_max_physical = atom_get_max_pstate,
1488 .get_min = atom_get_min_pstate,
1489 .get_turbo = atom_get_turbo_pstate,
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001490 .get_val = atom_get_val,
Philippe Longepe1421df62015-11-09 17:40:47 -08001491 .get_scaling = airmont_get_scaling,
Philippe Longepe938d21a2015-11-09 17:40:46 -08001492 .get_vid = atom_get_vid,
Philippe Longepee70eed22015-12-04 17:40:32 +01001493 .get_target_pstate = get_target_pstate_use_cpu_load,
Dirk Brandewie19e77c22013-10-21 09:20:35 -07001494 },
1495};
1496
Julia Lawall42ce8922016-09-11 15:06:01 +02001497static const struct cpu_defaults knl_params = {
Dasaratharaman Chandramoulib34ef932015-04-10 10:22:18 -07001498 .pid_policy = {
1499 .sample_rate_ms = 10,
1500 .deadband = 0,
1501 .setpoint = 97,
1502 .p_gain_pct = 20,
1503 .d_gain_pct = 0,
1504 .i_gain_pct = 0,
1505 },
1506 .funcs = {
1507 .get_max = core_get_max_pstate,
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -07001508 .get_max_physical = core_get_max_pstate_physical,
Dasaratharaman Chandramoulib34ef932015-04-10 10:22:18 -07001509 .get_min = core_get_min_pstate,
1510 .get_turbo = knl_get_turbo_pstate,
Lukasz Anaczkowski69cefc22015-07-21 10:41:13 +02001511 .get_scaling = core_get_scaling,
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001512 .get_val = core_get_val,
Philippe Longepe157386b2015-12-04 17:40:30 +01001513 .get_target_pstate = get_target_pstate_use_performance,
Dasaratharaman Chandramoulib34ef932015-04-10 10:22:18 -07001514 },
1515};
1516
Julia Lawall42ce8922016-09-11 15:06:01 +02001517static const struct cpu_defaults bxt_params = {
Srinivas Pandruvada41bad472016-06-09 15:34:41 -07001518 .pid_policy = {
1519 .sample_rate_ms = 10,
1520 .deadband = 0,
1521 .setpoint = 60,
1522 .p_gain_pct = 14,
1523 .d_gain_pct = 0,
1524 .i_gain_pct = 4,
1525 },
1526 .funcs = {
1527 .get_max = core_get_max_pstate,
1528 .get_max_physical = core_get_max_pstate_physical,
1529 .get_min = core_get_min_pstate,
1530 .get_turbo = core_get_turbo_pstate,
1531 .get_scaling = core_get_scaling,
1532 .get_val = core_get_val,
1533 .get_target_pstate = get_target_pstate_use_cpu_load,
1534 },
1535};
1536
Dirk Brandewie93f08222013-02-06 09:02:13 -08001537static void intel_pstate_get_min_max(struct cpudata *cpu, int *min, int *max)
1538{
1539 int max_perf = cpu->pstate.turbo_pstate;
Dirk Brandewie7244cb62013-10-21 09:20:33 -07001540 int max_perf_adj;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001541 int min_perf;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001542 struct perf_limits *perf_limits = limits;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001543
Prarit Bhargava51443fb2015-10-15 07:34:15 -04001544 if (limits->no_turbo || limits->turbo_disabled)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001545 max_perf = cpu->pstate.max_pstate;
1546
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001547 if (per_cpu_limits)
1548 perf_limits = cpu->perf_limits;
1549
Kristen Carlson Accardie0d4c8f2014-12-10 12:39:38 -08001550 /*
1551 * performance can be limited by user through sysfs, by cpufreq
1552 * policy, or by cpu specific default values determined through
1553 * experimentation.
1554 */
Srinivas Pandruvadad5dd33d2016-11-21 16:33:20 -08001555 max_perf_adj = fp_ext_toint(max_perf * perf_limits->max_perf);
Rafael J. Wysocki799281a2015-11-18 23:29:56 +01001556 *max = clamp_t(int, max_perf_adj,
1557 cpu->pstate.min_pstate, cpu->pstate.turbo_pstate);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001558
Srinivas Pandruvadad5dd33d2016-11-21 16:33:20 -08001559 min_perf = fp_ext_toint(max_perf * perf_limits->min_perf);
Rafael J. Wysocki799281a2015-11-18 23:29:56 +01001560 *min = clamp_t(int, min_perf, cpu->pstate.min_pstate, max_perf);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001561}
1562
Rafael J. Wysockia6c6ead2016-10-19 02:57:22 +02001563static void intel_pstate_set_pstate(struct cpudata *cpu, int pstate)
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001564{
Rafael J. Wysockibc95a452016-07-19 15:10:37 +02001565 trace_cpu_frequency(pstate * cpu->pstate.scaling, cpu->cpu);
1566 cpu->pstate.current_pstate = pstate;
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001567 /*
1568 * Generally, there is no guarantee that this code will always run on
1569 * the CPU being updated, so force the register update to run on the
1570 * right CPU.
1571 */
1572 wrmsrl_on_cpu(cpu->cpu, MSR_IA32_PERF_CTL,
1573 pstate_funcs.get_val(cpu, pstate));
Dirk Brandewie93f08222013-02-06 09:02:13 -08001574}
1575
Rafael J. Wysockia6c6ead2016-10-19 02:57:22 +02001576static void intel_pstate_set_min_pstate(struct cpudata *cpu)
1577{
1578 intel_pstate_set_pstate(cpu, cpu->pstate.min_pstate);
1579}
1580
1581static void intel_pstate_max_within_limits(struct cpudata *cpu)
1582{
1583 int min_pstate, max_pstate;
1584
1585 update_turbo_state();
1586 intel_pstate_get_min_max(cpu, &min_pstate, &max_pstate);
1587 intel_pstate_set_pstate(cpu, max_pstate);
1588}
1589
Dirk Brandewie93f08222013-02-06 09:02:13 -08001590static void intel_pstate_get_cpu_pstates(struct cpudata *cpu)
1591{
Dirk Brandewie016c8152013-10-21 09:20:34 -07001592 cpu->pstate.min_pstate = pstate_funcs.get_min();
1593 cpu->pstate.max_pstate = pstate_funcs.get_max();
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -07001594 cpu->pstate.max_pstate_physical = pstate_funcs.get_max_physical();
Dirk Brandewie016c8152013-10-21 09:20:34 -07001595 cpu->pstate.turbo_pstate = pstate_funcs.get_turbo();
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001596 cpu->pstate.scaling = pstate_funcs.get_scaling();
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01001597 cpu->pstate.max_freq = cpu->pstate.max_pstate * cpu->pstate.scaling;
1598 cpu->pstate.turbo_freq = cpu->pstate.turbo_pstate * cpu->pstate.scaling;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001599
Dirk Brandewie007bea02013-12-18 10:32:39 -08001600 if (pstate_funcs.get_vid)
1601 pstate_funcs.get_vid(cpu);
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001602
1603 intel_pstate_set_min_pstate(cpu);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001604}
1605
Rafael J. Wysockia1c97872016-05-11 19:09:12 +02001606static inline void intel_pstate_calc_avg_perf(struct cpudata *cpu)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001607{
Stratos Karafotis6b17ddb2014-04-29 20:53:49 +03001608 struct sample *sample = &cpu->sample;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001609
Rafael J. Wysockia1c97872016-05-11 19:09:12 +02001610 sample->core_avg_perf = div_ext_fp(sample->aperf, sample->mperf);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001611}
1612
Rafael J. Wysocki4fec7ad2016-03-10 23:45:19 +01001613static inline bool intel_pstate_sample(struct cpudata *cpu, u64 time)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001614{
Dirk Brandewie93f08222013-02-06 09:02:13 -08001615 u64 aperf, mperf;
Stratos Karafotis4ab60c32014-07-18 08:37:24 -07001616 unsigned long flags;
Doug Smythies4055fad2015-04-11 21:10:26 -07001617 u64 tsc;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001618
Stratos Karafotis4ab60c32014-07-18 08:37:24 -07001619 local_irq_save(flags);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001620 rdmsrl(MSR_IA32_APERF, aperf);
1621 rdmsrl(MSR_IA32_MPERF, mperf);
Philippe Longepee70eed22015-12-04 17:40:32 +01001622 tsc = rdtsc();
Rafael J. Wysocki4fec7ad2016-03-10 23:45:19 +01001623 if (cpu->prev_mperf == mperf || cpu->prev_tsc == tsc) {
Srinivas Pandruvada8e601a92015-10-15 12:34:21 -07001624 local_irq_restore(flags);
Rafael J. Wysocki4fec7ad2016-03-10 23:45:19 +01001625 return false;
Srinivas Pandruvada8e601a92015-10-15 12:34:21 -07001626 }
Stratos Karafotis4ab60c32014-07-18 08:37:24 -07001627 local_irq_restore(flags);
Dirk Brandewieb69880f2014-01-16 10:32:25 -08001628
Dirk Brandewiec4ee8412014-05-29 09:32:24 -07001629 cpu->last_sample_time = cpu->sample.time;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001630 cpu->sample.time = time;
Dirk Brandewied37e2b72014-02-12 10:01:04 -08001631 cpu->sample.aperf = aperf;
1632 cpu->sample.mperf = mperf;
Doug Smythies4055fad2015-04-11 21:10:26 -07001633 cpu->sample.tsc = tsc;
Dirk Brandewied37e2b72014-02-12 10:01:04 -08001634 cpu->sample.aperf -= cpu->prev_aperf;
1635 cpu->sample.mperf -= cpu->prev_mperf;
Doug Smythies4055fad2015-04-11 21:10:26 -07001636 cpu->sample.tsc -= cpu->prev_tsc;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001637
Dirk Brandewie93f08222013-02-06 09:02:13 -08001638 cpu->prev_aperf = aperf;
1639 cpu->prev_mperf = mperf;
Doug Smythies4055fad2015-04-11 21:10:26 -07001640 cpu->prev_tsc = tsc;
Rafael J. Wysockifebce402016-04-02 01:06:21 +02001641 /*
1642 * First time this function is invoked in a given cycle, all of the
1643 * previous sample data fields are equal to zero or stale and they must
1644 * be populated with meaningful numbers for things to work, so assume
1645 * that sample.time will always be reset before setting the utilization
1646 * update hook and make the caller skip the sample then.
1647 */
1648 return !!cpu->last_sample_time;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001649}
1650
Philippe Longepe8fa520a2016-03-06 08:34:06 +01001651static inline int32_t get_avg_frequency(struct cpudata *cpu)
1652{
Rafael J. Wysockia1c97872016-05-11 19:09:12 +02001653 return mul_ext_fp(cpu->sample.core_avg_perf,
1654 cpu->pstate.max_pstate_physical * cpu->pstate.scaling);
Philippe Longepe8fa520a2016-03-06 08:34:06 +01001655}
1656
Philippe Longepebdcaa232016-04-22 11:46:09 -07001657static inline int32_t get_avg_pstate(struct cpudata *cpu)
1658{
Rafael J. Wysocki8edb0a62016-05-11 19:10:42 +02001659 return mul_ext_fp(cpu->pstate.max_pstate_physical,
1660 cpu->sample.core_avg_perf);
Philippe Longepebdcaa232016-04-22 11:46:09 -07001661}
1662
Philippe Longepee70eed22015-12-04 17:40:32 +01001663static inline int32_t get_target_pstate_use_cpu_load(struct cpudata *cpu)
1664{
1665 struct sample *sample = &cpu->sample;
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02001666 int32_t busy_frac, boost;
Rafael J. Wysocki0843e832016-10-06 14:07:51 +02001667 int target, avg_pstate;
Philippe Longepee70eed22015-12-04 17:40:32 +01001668
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02001669 busy_frac = div_fp(sample->mperf, sample->tsc);
Philippe Longepe63d1d652015-12-04 17:40:35 +01001670
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02001671 boost = cpu->iowait_boost;
1672 cpu->iowait_boost >>= 1;
Philippe Longepe63d1d652015-12-04 17:40:35 +01001673
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02001674 if (busy_frac < boost)
1675 busy_frac = boost;
Philippe Longepe63d1d652015-12-04 17:40:35 +01001676
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02001677 sample->busy_scaled = busy_frac * 100;
Rafael J. Wysocki0843e832016-10-06 14:07:51 +02001678
1679 target = limits->no_turbo || limits->turbo_disabled ?
1680 cpu->pstate.max_pstate : cpu->pstate.turbo_pstate;
1681 target += target >> 2;
1682 target = mul_fp(target, busy_frac);
1683 if (target < cpu->pstate.min_pstate)
1684 target = cpu->pstate.min_pstate;
1685
1686 /*
1687 * If the average P-state during the previous cycle was higher than the
1688 * current target, add 50% of the difference to the target to reduce
1689 * possible performance oscillations and offset possible performance
1690 * loss related to moving the workload from one CPU to another within
1691 * a package/module.
1692 */
1693 avg_pstate = get_avg_pstate(cpu);
1694 if (avg_pstate > target)
1695 target += (avg_pstate - target) >> 1;
1696
1697 return target;
Philippe Longepee70eed22015-12-04 17:40:32 +01001698}
1699
Philippe Longepe157386b2015-12-04 17:40:30 +01001700static inline int32_t get_target_pstate_use_performance(struct cpudata *cpu)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001701{
Rafael J. Wysocki1aa7a6e2016-05-11 19:11:26 +02001702 int32_t perf_scaled, max_pstate, current_pstate, sample_ratio;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001703 u64 duration_ns;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001704
Kristen Carlson Accardie0d4c8f2014-12-10 12:39:38 -08001705 /*
Rafael J. Wysockif00593a2016-09-30 03:13:34 +02001706 * perf_scaled is the ratio of the average P-state during the last
1707 * sampling period to the P-state requested last time (in percent).
1708 *
1709 * That measures the system's response to the previous P-state
1710 * selection.
Kristen Carlson Accardie0d4c8f2014-12-10 12:39:38 -08001711 */
Rafael J. Wysocki22590ef2016-04-09 01:25:58 +02001712 max_pstate = cpu->pstate.max_pstate_physical;
1713 current_pstate = cpu->pstate.current_pstate;
Rafael J. Wysocki1aa7a6e2016-05-11 19:11:26 +02001714 perf_scaled = mul_ext_fp(cpu->sample.core_avg_perf,
Rafael J. Wysockia1c97872016-05-11 19:09:12 +02001715 div_fp(100 * max_pstate, current_pstate));
Dirk Brandewiec4ee8412014-05-29 09:32:24 -07001716
Kristen Carlson Accardie0d4c8f2014-12-10 12:39:38 -08001717 /*
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001718 * Since our utilization update callback will not run unless we are
1719 * in C0, check if the actual elapsed time is significantly greater (3x)
1720 * than our sample interval. If it is, then we were idle for a long
Rafael J. Wysocki1aa7a6e2016-05-11 19:11:26 +02001721 * enough period of time to adjust our performance metric.
Kristen Carlson Accardie0d4c8f2014-12-10 12:39:38 -08001722 */
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001723 duration_ns = cpu->sample.time - cpu->last_sample_time;
Rafael J. Wysockifebce402016-04-02 01:06:21 +02001724 if ((s64)duration_ns > pid_params.sample_rate_ns * 3) {
Rafael J. Wysocki22590ef2016-04-09 01:25:58 +02001725 sample_ratio = div_fp(pid_params.sample_rate_ns, duration_ns);
Rafael J. Wysocki1aa7a6e2016-05-11 19:11:26 +02001726 perf_scaled = mul_fp(perf_scaled, sample_ratio);
Rafael J. Wysockiffb81052016-04-10 05:59:10 +02001727 } else {
1728 sample_ratio = div_fp(100 * cpu->sample.mperf, cpu->sample.tsc);
1729 if (sample_ratio < int_tofp(1))
Rafael J. Wysocki1aa7a6e2016-05-11 19:11:26 +02001730 perf_scaled = 0;
Dirk Brandewiec4ee8412014-05-29 09:32:24 -07001731 }
1732
Rafael J. Wysocki1aa7a6e2016-05-11 19:11:26 +02001733 cpu->sample.busy_scaled = perf_scaled;
1734 return cpu->pstate.current_pstate - pid_calc(&cpu->pid, perf_scaled);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001735}
1736
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01001737static int intel_pstate_prepare_request(struct cpudata *cpu, int pstate)
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001738{
1739 int max_perf, min_perf;
1740
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001741 intel_pstate_get_min_max(cpu, &min_perf, &max_perf);
1742 pstate = clamp_t(int, pstate, min_perf, max_perf);
Rafael J. Wysockibc95a452016-07-19 15:10:37 +02001743 trace_cpu_frequency(pstate * cpu->pstate.scaling, cpu->cpu);
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01001744 return pstate;
1745}
1746
1747static void intel_pstate_update_pstate(struct cpudata *cpu, int pstate)
1748{
1749 pstate = intel_pstate_prepare_request(cpu, pstate);
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001750 if (pstate == cpu->pstate.current_pstate)
1751 return;
1752
Rafael J. Wysockibc95a452016-07-19 15:10:37 +02001753 cpu->pstate.current_pstate = pstate;
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001754 wrmsrl(MSR_IA32_PERF_CTL, pstate_funcs.get_val(cpu, pstate));
1755}
1756
Dirk Brandewie93f08222013-02-06 09:02:13 -08001757static inline void intel_pstate_adjust_busy_pstate(struct cpudata *cpu)
1758{
Philippe Longepe157386b2015-12-04 17:40:30 +01001759 int from, target_pstate;
Doug Smythies4055fad2015-04-11 21:10:26 -07001760 struct sample *sample;
1761
1762 from = cpu->pstate.current_pstate;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001763
Rafael J. Wysocki2f1d4072016-10-24 23:20:25 +02001764 target_pstate = cpu->policy == CPUFREQ_POLICY_PERFORMANCE ?
1765 cpu->pstate.turbo_pstate : pstate_funcs.get_target_pstate(cpu);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001766
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01001767 update_turbo_state();
1768
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001769 intel_pstate_update_pstate(cpu, target_pstate);
Doug Smythies4055fad2015-04-11 21:10:26 -07001770
1771 sample = &cpu->sample;
Rafael J. Wysockia1c97872016-05-11 19:09:12 +02001772 trace_pstate_sample(mul_ext_fp(100, sample->core_avg_perf),
Philippe Longepe157386b2015-12-04 17:40:30 +01001773 fp_toint(sample->busy_scaled),
Doug Smythies4055fad2015-04-11 21:10:26 -07001774 from,
1775 cpu->pstate.current_pstate,
1776 sample->mperf,
1777 sample->aperf,
1778 sample->tsc,
Srinivas Pandruvada3ba7bca2016-09-13 17:41:33 -07001779 get_avg_frequency(cpu),
1780 fp_toint(cpu->iowait_boost * 100));
Dirk Brandewie93f08222013-02-06 09:02:13 -08001781}
1782
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001783static void intel_pstate_update_util(struct update_util_data *data, u64 time,
Rafael J. Wysocki58919e82016-08-16 22:14:55 +02001784 unsigned int flags)
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001785{
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001786 struct cpudata *cpu = container_of(data, struct cpudata, update_util);
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02001787 u64 delta_ns;
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001788
Rafael J. Wysocki1d298152016-10-19 02:53:26 +02001789 if (pstate_funcs.get_target_pstate == get_target_pstate_use_cpu_load) {
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02001790 if (flags & SCHED_CPUFREQ_IOWAIT) {
1791 cpu->iowait_boost = int_tofp(1);
1792 } else if (cpu->iowait_boost) {
1793 /* Clear iowait_boost if the CPU may have been idle. */
1794 delta_ns = time - cpu->last_update;
1795 if (delta_ns > TICK_NSEC)
1796 cpu->iowait_boost = 0;
1797 }
1798 cpu->last_update = time;
1799 }
1800
1801 delta_ns = time - cpu->sample.time;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001802 if ((s64)delta_ns >= pid_params.sample_rate_ns) {
Rafael J. Wysocki4fec7ad2016-03-10 23:45:19 +01001803 bool sample_taken = intel_pstate_sample(cpu, time);
1804
Rafael J. Wysocki6d45b712016-05-04 14:01:10 +02001805 if (sample_taken) {
Rafael J. Wysockia1c97872016-05-11 19:09:12 +02001806 intel_pstate_calc_avg_perf(cpu);
Rafael J. Wysocki6d45b712016-05-04 14:01:10 +02001807 if (!hwp_active)
1808 intel_pstate_adjust_busy_pstate(cpu);
1809 }
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001810 }
Dirk Brandewie93f08222013-02-06 09:02:13 -08001811}
1812
1813#define ICPU(model, policy) \
Dirk Brandewie6cbd7ee2014-01-06 10:59:16 -08001814 { X86_VENDOR_INTEL, 6, model, X86_FEATURE_APERFMPERF,\
1815 (unsigned long)&policy }
Dirk Brandewie93f08222013-02-06 09:02:13 -08001816
1817static const struct x86_cpu_id intel_pstate_cpu_ids[] = {
Dave Hansen5b20c942016-06-02 17:19:45 -07001818 ICPU(INTEL_FAM6_SANDYBRIDGE, core_params),
1819 ICPU(INTEL_FAM6_SANDYBRIDGE_X, core_params),
1820 ICPU(INTEL_FAM6_ATOM_SILVERMONT1, silvermont_params),
1821 ICPU(INTEL_FAM6_IVYBRIDGE, core_params),
1822 ICPU(INTEL_FAM6_HASWELL_CORE, core_params),
1823 ICPU(INTEL_FAM6_BROADWELL_CORE, core_params),
1824 ICPU(INTEL_FAM6_IVYBRIDGE_X, core_params),
1825 ICPU(INTEL_FAM6_HASWELL_X, core_params),
1826 ICPU(INTEL_FAM6_HASWELL_ULT, core_params),
1827 ICPU(INTEL_FAM6_HASWELL_GT3E, core_params),
1828 ICPU(INTEL_FAM6_BROADWELL_GT3E, core_params),
1829 ICPU(INTEL_FAM6_ATOM_AIRMONT, airmont_params),
1830 ICPU(INTEL_FAM6_SKYLAKE_MOBILE, core_params),
1831 ICPU(INTEL_FAM6_BROADWELL_X, core_params),
1832 ICPU(INTEL_FAM6_SKYLAKE_DESKTOP, core_params),
1833 ICPU(INTEL_FAM6_BROADWELL_XEON_D, core_params),
1834 ICPU(INTEL_FAM6_XEON_PHI_KNL, knl_params),
Piotr Luc58bf4542016-10-13 17:31:00 +02001835 ICPU(INTEL_FAM6_XEON_PHI_KNM, knl_params),
Srinivas Pandruvada41bad472016-06-09 15:34:41 -07001836 ICPU(INTEL_FAM6_ATOM_GOLDMONT, bxt_params),
Dirk Brandewie93f08222013-02-06 09:02:13 -08001837 {}
1838};
1839MODULE_DEVICE_TABLE(x86cpu, intel_pstate_cpu_ids);
1840
Jisheng Zhang29327c82016-06-27 18:07:17 +08001841static const struct x86_cpu_id intel_pstate_cpu_oob_ids[] __initconst = {
Dave Hansen5b20c942016-06-02 17:19:45 -07001842 ICPU(INTEL_FAM6_BROADWELL_XEON_D, core_params),
Srinivas Pandruvada65c12622016-07-23 15:12:06 -07001843 ICPU(INTEL_FAM6_BROADWELL_X, core_params),
1844 ICPU(INTEL_FAM6_SKYLAKE_X, core_params),
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001845 {}
1846};
1847
Dirk Brandewie93f08222013-02-06 09:02:13 -08001848static int intel_pstate_init_cpu(unsigned int cpunum)
1849{
Dirk Brandewie93f08222013-02-06 09:02:13 -08001850 struct cpudata *cpu;
1851
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001852 cpu = all_cpu_data[cpunum];
1853
1854 if (!cpu) {
1855 unsigned int size = sizeof(struct cpudata);
1856
1857 if (per_cpu_limits)
1858 size += sizeof(struct perf_limits);
1859
1860 cpu = kzalloc(size, GFP_KERNEL);
1861 if (!cpu)
1862 return -ENOMEM;
1863
1864 all_cpu_data[cpunum] = cpu;
1865 if (per_cpu_limits)
1866 cpu->perf_limits = (struct perf_limits *)(cpu + 1);
1867
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -08001868 cpu->epp_default = -EINVAL;
1869 cpu->epp_powersave = -EINVAL;
1870 cpu->epp_saved = -EINVAL;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001871 }
Dirk Brandewie93f08222013-02-06 09:02:13 -08001872
1873 cpu = all_cpu_data[cpunum];
1874
Dirk Brandewie93f08222013-02-06 09:02:13 -08001875 cpu->cpu = cpunum;
Kristen Carlson Accardiba88d432015-07-14 09:46:23 -07001876
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001877 if (hwp_active) {
Kristen Carlson Accardiba88d432015-07-14 09:46:23 -07001878 intel_pstate_hwp_enable(cpu);
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001879 pid_params.sample_rate_ms = 50;
1880 pid_params.sample_rate_ns = 50 * NSEC_PER_MSEC;
1881 }
Kristen Carlson Accardiba88d432015-07-14 09:46:23 -07001882
Vincent Minet179e8472014-07-05 01:51:33 +02001883 intel_pstate_get_cpu_pstates(cpu);
Dirk Brandewie016c8152013-10-21 09:20:34 -07001884
Dirk Brandewie93f08222013-02-06 09:02:13 -08001885 intel_pstate_busy_pid_reset(cpu);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001886
Joe Perches4836df12016-04-05 13:28:23 -07001887 pr_debug("controlling: cpu %d\n", cpunum);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001888
1889 return 0;
1890}
1891
1892static unsigned int intel_pstate_get(unsigned int cpu_num)
1893{
Rafael J. Wysockif96fd0c2016-05-07 02:24:48 +02001894 struct cpudata *cpu = all_cpu_data[cpu_num];
Dirk Brandewie93f08222013-02-06 09:02:13 -08001895
Rafael J. Wysockif96fd0c2016-05-07 02:24:48 +02001896 return cpu ? get_avg_frequency(cpu) : 0;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001897}
1898
Rafael J. Wysockifebce402016-04-02 01:06:21 +02001899static void intel_pstate_set_update_util_hook(unsigned int cpu_num)
Rafael J. Wysockibb6ab522016-03-31 17:42:15 +02001900{
Rafael J. Wysockifebce402016-04-02 01:06:21 +02001901 struct cpudata *cpu = all_cpu_data[cpu_num];
1902
Rafael J. Wysocki5ab666e2016-06-27 23:47:15 +02001903 if (cpu->update_util_set)
1904 return;
1905
Rafael J. Wysockifebce402016-04-02 01:06:21 +02001906 /* Prevent intel_pstate_update_util() from using stale data. */
1907 cpu->sample.time = 0;
Rafael J. Wysocki0bed6122016-04-02 01:08:43 +02001908 cpufreq_add_update_util_hook(cpu_num, &cpu->update_util,
1909 intel_pstate_update_util);
Chen Yu4578ee7e2016-05-11 14:33:08 +08001910 cpu->update_util_set = true;
Rafael J. Wysockibb6ab522016-03-31 17:42:15 +02001911}
1912
1913static void intel_pstate_clear_update_util_hook(unsigned int cpu)
1914{
Chen Yu4578ee7e2016-05-11 14:33:08 +08001915 struct cpudata *cpu_data = all_cpu_data[cpu];
1916
1917 if (!cpu_data->update_util_set)
1918 return;
1919
Rafael J. Wysocki0bed6122016-04-02 01:08:43 +02001920 cpufreq_remove_update_util_hook(cpu);
Chen Yu4578ee7e2016-05-11 14:33:08 +08001921 cpu_data->update_util_set = false;
Rafael J. Wysockibb6ab522016-03-31 17:42:15 +02001922 synchronize_sched();
1923}
1924
Srinivas Pandruvada30a39152016-04-03 19:42:11 -07001925static void intel_pstate_set_performance_limits(struct perf_limits *limits)
1926{
1927 limits->no_turbo = 0;
1928 limits->turbo_disabled = 0;
1929 limits->max_perf_pct = 100;
Srinivas Pandruvadad5dd33d2016-11-21 16:33:20 -08001930 limits->max_perf = int_ext_tofp(1);
Srinivas Pandruvada30a39152016-04-03 19:42:11 -07001931 limits->min_perf_pct = 100;
Srinivas Pandruvadad5dd33d2016-11-21 16:33:20 -08001932 limits->min_perf = int_ext_tofp(1);
Srinivas Pandruvada30a39152016-04-03 19:42:11 -07001933 limits->max_policy_pct = 100;
1934 limits->max_sysfs_pct = 100;
1935 limits->min_policy_pct = 0;
1936 limits->min_sysfs_pct = 0;
1937}
1938
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001939static void intel_pstate_update_perf_limits(struct cpufreq_policy *policy,
1940 struct perf_limits *limits)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001941{
Srinivas Pandruvadaa410c03d2016-10-28 10:44:52 -07001942
Prarit Bhargava8478f532015-11-20 18:47:56 -05001943 limits->max_policy_pct = DIV_ROUND_UP(policy->max * 100,
1944 policy->cpuinfo.max_freq);
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001945 limits->max_policy_pct = clamp_t(int, limits->max_policy_pct, 0, 100);
Srinivas Pandruvada5879f872016-10-25 13:20:41 -07001946 if (policy->max == policy->min) {
1947 limits->min_policy_pct = limits->max_policy_pct;
1948 } else {
Srinivas Pandruvada46992d62016-11-21 16:33:19 -08001949 limits->min_policy_pct = DIV_ROUND_UP(policy->min * 100,
1950 policy->cpuinfo.max_freq);
Srinivas Pandruvada5879f872016-10-25 13:20:41 -07001951 limits->min_policy_pct = clamp_t(int, limits->min_policy_pct,
1952 0, 100);
1953 }
Chen Yu43717aa2015-09-09 18:27:31 +08001954
1955 /* Normalize user input to [min_policy_pct, max_policy_pct] */
Prarit Bhargava51443fb2015-10-15 07:34:15 -04001956 limits->min_perf_pct = max(limits->min_policy_pct,
1957 limits->min_sysfs_pct);
1958 limits->min_perf_pct = min(limits->max_policy_pct,
1959 limits->min_perf_pct);
1960 limits->max_perf_pct = min(limits->max_policy_pct,
1961 limits->max_sysfs_pct);
1962 limits->max_perf_pct = max(limits->min_policy_pct,
1963 limits->max_perf_pct);
Chen Yu43717aa2015-09-09 18:27:31 +08001964
1965 /* Make sure min_perf_pct <= max_perf_pct */
Prarit Bhargava51443fb2015-10-15 07:34:15 -04001966 limits->min_perf_pct = min(limits->max_perf_pct, limits->min_perf_pct);
Chen Yu43717aa2015-09-09 18:27:31 +08001967
Srinivas Pandruvadad5dd33d2016-11-21 16:33:20 -08001968 limits->min_perf = div_ext_fp(limits->min_perf_pct, 100);
1969 limits->max_perf = div_ext_fp(limits->max_perf_pct, 100);
1970 limits->max_perf = round_up(limits->max_perf, EXT_FRAC_BITS);
1971 limits->min_perf = round_up(limits->min_perf, EXT_FRAC_BITS);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001972
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001973 pr_debug("cpu:%d max_perf_pct:%d min_perf_pct:%d\n", policy->cpu,
1974 limits->max_perf_pct, limits->min_perf_pct);
1975}
1976
Dirk Brandewie93f08222013-02-06 09:02:13 -08001977static int intel_pstate_set_policy(struct cpufreq_policy *policy)
1978{
1979 struct cpudata *cpu;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001980 struct perf_limits *perf_limits = NULL;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001981
1982 if (!policy->cpuinfo.max_freq)
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001983 return -ENODEV;
1984
1985 pr_debug("set_policy cpuinfo.max %u policy->max %u\n",
Dirk Brandewie93f08222013-02-06 09:02:13 -08001986 policy->cpuinfo.max_freq, policy->max);
1987
1988 cpu = all_cpu_data[policy->cpu];
1989 cpu->policy = policy->policy;
1990
Viresh Kumarbe49e342013-10-02 14:13:19 +05301991 if (cpu->pstate.max_pstate_physical > cpu->pstate.max_pstate &&
Dirk Brandewie93f08222013-02-06 09:02:13 -08001992 policy->max < policy->cpuinfo.max_freq &&
Stratos Karafotis285cb992014-07-18 08:37:21 -07001993 policy->max > cpu->pstate.max_pstate * cpu->pstate.scaling) {
Stratos Karafotisc4108332014-07-18 08:37:23 -07001994 pr_debug("policy->max > max non turbo frequency\n");
Dirk Brandewie93f08222013-02-06 09:02:13 -08001995 policy->max = policy->cpuinfo.max_freq;
1996 }
1997
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001998 if (per_cpu_limits)
1999 perf_limits = cpu->perf_limits;
2000
Srinivas Pandruvadab59fe542016-12-06 13:32:15 -08002001 mutex_lock(&intel_pstate_limits_lock);
2002
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07002003 if (policy->policy == CPUFREQ_POLICY_PERFORMANCE) {
2004 if (!perf_limits) {
2005 limits = &performance_limits;
2006 perf_limits = limits;
2007 }
Srinivas Pandruvada1443ebb2017-01-18 10:48:22 -08002008 if (policy->max >= policy->cpuinfo.max_freq &&
2009 !limits->no_turbo) {
Dirk Brandewie93f08222013-02-06 09:02:13 -08002010 pr_debug("set performance\n");
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07002011 intel_pstate_set_performance_limits(perf_limits);
Dirk Brandewie93f08222013-02-06 09:02:13 -08002012 goto out;
2013 }
2014 } else {
2015 pr_debug("set powersave\n");
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07002016 if (!perf_limits) {
2017 limits = &powersave_limits;
2018 perf_limits = limits;
2019 }
2020
Dirk Brandewie93f08222013-02-06 09:02:13 -08002021 }
2022
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07002023 intel_pstate_update_perf_limits(policy, perf_limits);
Rafael J. Wysockibb6ab522016-03-31 17:42:15 +02002024 out:
Rafael J. Wysocki2f1d4072016-10-24 23:20:25 +02002025 if (cpu->policy == CPUFREQ_POLICY_PERFORMANCE) {
Rafael J. Wysockia6c6ead2016-10-19 02:57:22 +02002026 /*
2027 * NOHZ_FULL CPUs need this as the governor callback may not
2028 * be invoked on them.
2029 */
2030 intel_pstate_clear_update_util_hook(policy->cpu);
2031 intel_pstate_max_within_limits(cpu);
2032 }
2033
Rafael J. Wysockibb6ab522016-03-31 17:42:15 +02002034 intel_pstate_set_update_util_hook(policy->cpu);
2035
Rafael J. Wysockiba41e1b2016-05-02 02:27:19 +02002036 intel_pstate_hwp_set_policy(policy);
Dirk Brandewie93f08222013-02-06 09:02:13 -08002037
Srinivas Pandruvadab59fe542016-12-06 13:32:15 -08002038 mutex_unlock(&intel_pstate_limits_lock);
2039
Dirk Brandewie93f08222013-02-06 09:02:13 -08002040 return 0;
2041}
2042
2043static int intel_pstate_verify_policy(struct cpufreq_policy *policy)
2044{
2045 cpufreq_verify_within_cpu_limits(policy);
2046
2047 if (policy->policy != CPUFREQ_POLICY_POWERSAVE &&
2048 policy->policy != CPUFREQ_POLICY_PERFORMANCE)
2049 return -EINVAL;
2050
Srinivas Pandruvada1443ebb2017-01-18 10:48:22 -08002051 /* When per-CPU limits are used, sysfs limits are not used */
2052 if (!per_cpu_limits) {
2053 unsigned int max_freq, min_freq;
2054
2055 max_freq = policy->cpuinfo.max_freq *
2056 limits->max_sysfs_pct / 100;
2057 min_freq = policy->cpuinfo.max_freq *
2058 limits->min_sysfs_pct / 100;
2059 cpufreq_verify_within_limits(policy, min_freq, max_freq);
2060 }
2061
Dirk Brandewie93f08222013-02-06 09:02:13 -08002062 return 0;
2063}
2064
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002065static void intel_cpufreq_stop_cpu(struct cpufreq_policy *policy)
Dirk Brandewie93f08222013-02-06 09:02:13 -08002066{
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002067 intel_pstate_set_min_pstate(all_cpu_data[policy->cpu]);
Dirk Brandewie93f08222013-02-06 09:02:13 -08002068}
2069
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002070static void intel_pstate_stop_cpu(struct cpufreq_policy *policy)
2071{
2072 pr_debug("CPU %d exiting\n", policy->cpu);
2073
2074 intel_pstate_clear_update_util_hook(policy->cpu);
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -08002075 if (hwp_active)
2076 intel_pstate_hwp_save_state(policy);
2077 else
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002078 intel_cpufreq_stop_cpu(policy);
2079}
2080
2081static int intel_pstate_cpu_exit(struct cpufreq_policy *policy)
2082{
2083 intel_pstate_exit_perf_limits(policy);
2084
2085 policy->fast_switch_possible = false;
2086
2087 return 0;
2088}
2089
2090static int __intel_pstate_cpu_init(struct cpufreq_policy *policy)
Dirk Brandewie93f08222013-02-06 09:02:13 -08002091{
Dirk Brandewie93f08222013-02-06 09:02:13 -08002092 struct cpudata *cpu;
Dirk Brandewie52e0a502013-10-15 11:06:14 -07002093 int rc;
Dirk Brandewie93f08222013-02-06 09:02:13 -08002094
2095 rc = intel_pstate_init_cpu(policy->cpu);
2096 if (rc)
2097 return rc;
2098
2099 cpu = all_cpu_data[policy->cpu];
2100
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07002101 /*
2102 * We need sane value in the cpu->perf_limits, so inherit from global
2103 * perf_limits limits, which are seeded with values based on the
2104 * CONFIG_CPU_FREQ_DEFAULT_GOV_*, during boot up.
2105 */
2106 if (per_cpu_limits)
2107 memcpy(cpu->perf_limits, limits, sizeof(struct perf_limits));
Dirk Brandewie93f08222013-02-06 09:02:13 -08002108
Dirk Brandewieb27580b2014-10-13 08:37:43 -07002109 policy->min = cpu->pstate.min_pstate * cpu->pstate.scaling;
2110 policy->max = cpu->pstate.turbo_pstate * cpu->pstate.scaling;
Dirk Brandewie93f08222013-02-06 09:02:13 -08002111
2112 /* cpuinfo and default policy values */
Dirk Brandewieb27580b2014-10-13 08:37:43 -07002113 policy->cpuinfo.min_freq = cpu->pstate.min_pstate * cpu->pstate.scaling;
Srinivas Pandruvada983e6002016-06-07 17:38:53 -07002114 update_turbo_state();
2115 policy->cpuinfo.max_freq = limits->turbo_disabled ?
2116 cpu->pstate.max_pstate : cpu->pstate.turbo_pstate;
2117 policy->cpuinfo.max_freq *= cpu->pstate.scaling;
2118
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07002119 intel_pstate_init_acpi_perf_limits(policy);
Dirk Brandewie93f08222013-02-06 09:02:13 -08002120 cpumask_set_cpu(policy->cpu, policy->cpus);
2121
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002122 policy->fast_switch_possible = true;
2123
Dirk Brandewie93f08222013-02-06 09:02:13 -08002124 return 0;
2125}
2126
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002127static int intel_pstate_cpu_init(struct cpufreq_policy *policy)
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07002128{
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002129 int ret = __intel_pstate_cpu_init(policy);
2130
2131 if (ret)
2132 return ret;
2133
2134 policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL;
2135 if (limits->min_perf_pct == 100 && limits->max_perf_pct == 100)
2136 policy->policy = CPUFREQ_POLICY_PERFORMANCE;
2137 else
2138 policy->policy = CPUFREQ_POLICY_POWERSAVE;
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07002139
2140 return 0;
2141}
2142
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002143static struct cpufreq_driver intel_pstate = {
Dirk Brandewie93f08222013-02-06 09:02:13 -08002144 .flags = CPUFREQ_CONST_LOOPS,
2145 .verify = intel_pstate_verify_policy,
2146 .setpolicy = intel_pstate_set_policy,
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -08002147 .suspend = intel_pstate_hwp_save_state,
Srinivas Pandruvada84428852016-11-24 16:07:10 -08002148 .resume = intel_pstate_resume,
Dirk Brandewie93f08222013-02-06 09:02:13 -08002149 .get = intel_pstate_get,
2150 .init = intel_pstate_cpu_init,
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07002151 .exit = intel_pstate_cpu_exit,
Dirk Brandewiebb180082014-03-19 08:45:54 -07002152 .stop_cpu = intel_pstate_stop_cpu,
Dirk Brandewie93f08222013-02-06 09:02:13 -08002153 .name = "intel_pstate",
Dirk Brandewie93f08222013-02-06 09:02:13 -08002154};
2155
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002156static int intel_cpufreq_verify_policy(struct cpufreq_policy *policy)
2157{
2158 struct cpudata *cpu = all_cpu_data[policy->cpu];
2159 struct perf_limits *perf_limits = limits;
2160
2161 update_turbo_state();
2162 policy->cpuinfo.max_freq = limits->turbo_disabled ?
2163 cpu->pstate.max_freq : cpu->pstate.turbo_freq;
2164
2165 cpufreq_verify_within_cpu_limits(policy);
2166
2167 if (per_cpu_limits)
2168 perf_limits = cpu->perf_limits;
2169
Rafael J. Wysockicad30462016-12-30 15:57:11 +01002170 mutex_lock(&intel_pstate_limits_lock);
2171
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002172 intel_pstate_update_perf_limits(policy, perf_limits);
2173
Rafael J. Wysockicad30462016-12-30 15:57:11 +01002174 mutex_unlock(&intel_pstate_limits_lock);
2175
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002176 return 0;
2177}
2178
2179static unsigned int intel_cpufreq_turbo_update(struct cpudata *cpu,
2180 struct cpufreq_policy *policy,
2181 unsigned int target_freq)
2182{
2183 unsigned int max_freq;
2184
2185 update_turbo_state();
2186
2187 max_freq = limits->no_turbo || limits->turbo_disabled ?
2188 cpu->pstate.max_freq : cpu->pstate.turbo_freq;
2189 policy->cpuinfo.max_freq = max_freq;
2190 if (policy->max > max_freq)
2191 policy->max = max_freq;
2192
2193 if (target_freq > max_freq)
2194 target_freq = max_freq;
2195
2196 return target_freq;
2197}
2198
2199static int intel_cpufreq_target(struct cpufreq_policy *policy,
2200 unsigned int target_freq,
2201 unsigned int relation)
2202{
2203 struct cpudata *cpu = all_cpu_data[policy->cpu];
2204 struct cpufreq_freqs freqs;
2205 int target_pstate;
2206
2207 freqs.old = policy->cur;
2208 freqs.new = intel_cpufreq_turbo_update(cpu, policy, target_freq);
2209
2210 cpufreq_freq_transition_begin(policy, &freqs);
2211 switch (relation) {
2212 case CPUFREQ_RELATION_L:
2213 target_pstate = DIV_ROUND_UP(freqs.new, cpu->pstate.scaling);
2214 break;
2215 case CPUFREQ_RELATION_H:
2216 target_pstate = freqs.new / cpu->pstate.scaling;
2217 break;
2218 default:
2219 target_pstate = DIV_ROUND_CLOSEST(freqs.new, cpu->pstate.scaling);
2220 break;
2221 }
2222 target_pstate = intel_pstate_prepare_request(cpu, target_pstate);
2223 if (target_pstate != cpu->pstate.current_pstate) {
2224 cpu->pstate.current_pstate = target_pstate;
2225 wrmsrl_on_cpu(policy->cpu, MSR_IA32_PERF_CTL,
2226 pstate_funcs.get_val(cpu, target_pstate));
2227 }
2228 cpufreq_freq_transition_end(policy, &freqs, false);
2229
2230 return 0;
2231}
2232
2233static unsigned int intel_cpufreq_fast_switch(struct cpufreq_policy *policy,
2234 unsigned int target_freq)
2235{
2236 struct cpudata *cpu = all_cpu_data[policy->cpu];
2237 int target_pstate;
2238
2239 target_freq = intel_cpufreq_turbo_update(cpu, policy, target_freq);
2240 target_pstate = DIV_ROUND_UP(target_freq, cpu->pstate.scaling);
2241 intel_pstate_update_pstate(cpu, target_pstate);
2242 return target_freq;
2243}
2244
2245static int intel_cpufreq_cpu_init(struct cpufreq_policy *policy)
2246{
2247 int ret = __intel_pstate_cpu_init(policy);
2248
2249 if (ret)
2250 return ret;
2251
2252 policy->cpuinfo.transition_latency = INTEL_CPUFREQ_TRANSITION_LATENCY;
2253 /* This reflects the intel_pstate_get_cpu_pstates() setting. */
2254 policy->cur = policy->cpuinfo.min_freq;
2255
2256 return 0;
2257}
2258
2259static struct cpufreq_driver intel_cpufreq = {
2260 .flags = CPUFREQ_CONST_LOOPS,
2261 .verify = intel_cpufreq_verify_policy,
2262 .target = intel_cpufreq_target,
2263 .fast_switch = intel_cpufreq_fast_switch,
2264 .init = intel_cpufreq_cpu_init,
2265 .exit = intel_pstate_cpu_exit,
2266 .stop_cpu = intel_cpufreq_stop_cpu,
2267 .name = "intel_cpufreq",
2268};
2269
2270static struct cpufreq_driver *intel_pstate_driver = &intel_pstate;
2271
Jisheng Zhangeed43602016-06-27 18:07:16 +08002272static int no_load __initdata;
2273static int no_hwp __initdata;
2274static int hwp_only __initdata;
Jisheng Zhang29327c82016-06-27 18:07:17 +08002275static unsigned int force_load __initdata;
Dirk Brandewie6be26492013-02-15 22:55:10 +01002276
Jisheng Zhang29327c82016-06-27 18:07:17 +08002277static int __init intel_pstate_msrs_not_valid(void)
Dirk Brandewieb563b4e2013-03-22 01:29:28 +01002278{
Dirk Brandewie016c8152013-10-21 09:20:34 -07002279 if (!pstate_funcs.get_max() ||
Stratos Karafotisc4108332014-07-18 08:37:23 -07002280 !pstate_funcs.get_min() ||
2281 !pstate_funcs.get_turbo())
Dirk Brandewieb563b4e2013-03-22 01:29:28 +01002282 return -ENODEV;
2283
Dirk Brandewieb563b4e2013-03-22 01:29:28 +01002284 return 0;
2285}
Dirk Brandewie016c8152013-10-21 09:20:34 -07002286
Jisheng Zhang29327c82016-06-27 18:07:17 +08002287static void __init copy_pid_params(struct pstate_adjust_policy *policy)
Dirk Brandewie016c8152013-10-21 09:20:34 -07002288{
2289 pid_params.sample_rate_ms = policy->sample_rate_ms;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01002290 pid_params.sample_rate_ns = pid_params.sample_rate_ms * NSEC_PER_MSEC;
Dirk Brandewie016c8152013-10-21 09:20:34 -07002291 pid_params.p_gain_pct = policy->p_gain_pct;
2292 pid_params.i_gain_pct = policy->i_gain_pct;
2293 pid_params.d_gain_pct = policy->d_gain_pct;
2294 pid_params.deadband = policy->deadband;
2295 pid_params.setpoint = policy->setpoint;
2296}
2297
Srinivas Pandruvada7f7a5162016-11-14 10:31:11 -08002298#ifdef CONFIG_ACPI
2299static void intel_pstate_use_acpi_profile(void)
2300{
2301 if (acpi_gbl_FADT.preferred_profile == PM_MOBILE)
2302 pstate_funcs.get_target_pstate =
2303 get_target_pstate_use_cpu_load;
2304}
2305#else
2306static void intel_pstate_use_acpi_profile(void)
2307{
2308}
2309#endif
2310
Jisheng Zhang29327c82016-06-27 18:07:17 +08002311static void __init copy_cpu_funcs(struct pstate_funcs *funcs)
Dirk Brandewie016c8152013-10-21 09:20:34 -07002312{
2313 pstate_funcs.get_max = funcs->get_max;
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -07002314 pstate_funcs.get_max_physical = funcs->get_max_physical;
Dirk Brandewie016c8152013-10-21 09:20:34 -07002315 pstate_funcs.get_min = funcs->get_min;
2316 pstate_funcs.get_turbo = funcs->get_turbo;
Dirk Brandewieb27580b2014-10-13 08:37:43 -07002317 pstate_funcs.get_scaling = funcs->get_scaling;
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01002318 pstate_funcs.get_val = funcs->get_val;
Dirk Brandewie007bea02013-12-18 10:32:39 -08002319 pstate_funcs.get_vid = funcs->get_vid;
Philippe Longepe157386b2015-12-04 17:40:30 +01002320 pstate_funcs.get_target_pstate = funcs->get_target_pstate;
2321
Srinivas Pandruvada7f7a5162016-11-14 10:31:11 -08002322 intel_pstate_use_acpi_profile();
Dirk Brandewie016c8152013-10-21 09:20:34 -07002323}
2324
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07002325#ifdef CONFIG_ACPI
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002326
Jisheng Zhang29327c82016-06-27 18:07:17 +08002327static bool __init intel_pstate_no_acpi_pss(void)
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002328{
2329 int i;
2330
2331 for_each_possible_cpu(i) {
2332 acpi_status status;
2333 union acpi_object *pss;
2334 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
2335 struct acpi_processor *pr = per_cpu(processors, i);
2336
2337 if (!pr)
2338 continue;
2339
2340 status = acpi_evaluate_object(pr->handle, "_PSS", NULL, &buffer);
2341 if (ACPI_FAILURE(status))
2342 continue;
2343
2344 pss = buffer.pointer;
2345 if (pss && pss->type == ACPI_TYPE_PACKAGE) {
2346 kfree(pss);
2347 return false;
2348 }
2349
2350 kfree(pss);
2351 }
2352
2353 return true;
2354}
2355
Jisheng Zhang29327c82016-06-27 18:07:17 +08002356static bool __init intel_pstate_has_acpi_ppc(void)
ethan zhao966916e2014-12-01 11:32:08 +09002357{
2358 int i;
2359
2360 for_each_possible_cpu(i) {
2361 struct acpi_processor *pr = per_cpu(processors, i);
2362
2363 if (!pr)
2364 continue;
2365 if (acpi_has_method(pr->handle, "_PPC"))
2366 return true;
2367 }
2368 return false;
2369}
2370
2371enum {
2372 PSS,
2373 PPC,
2374};
2375
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002376struct hw_vendor_info {
2377 u16 valid;
2378 char oem_id[ACPI_OEM_ID_SIZE];
2379 char oem_table_id[ACPI_OEM_TABLE_ID_SIZE];
ethan zhao966916e2014-12-01 11:32:08 +09002380 int oem_pwr_table;
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002381};
2382
2383/* Hardware vendor-specific info that has its own power management modes */
Jisheng Zhang29327c82016-06-27 18:07:17 +08002384static struct hw_vendor_info vendor_info[] __initdata = {
ethan zhao966916e2014-12-01 11:32:08 +09002385 {1, "HP ", "ProLiant", PSS},
2386 {1, "ORACLE", "X4-2 ", PPC},
2387 {1, "ORACLE", "X4-2L ", PPC},
2388 {1, "ORACLE", "X4-2B ", PPC},
2389 {1, "ORACLE", "X3-2 ", PPC},
2390 {1, "ORACLE", "X3-2L ", PPC},
2391 {1, "ORACLE", "X3-2B ", PPC},
2392 {1, "ORACLE", "X4470M2 ", PPC},
2393 {1, "ORACLE", "X4270M3 ", PPC},
2394 {1, "ORACLE", "X4270M2 ", PPC},
2395 {1, "ORACLE", "X4170M2 ", PPC},
Ethan Zhao5aecc3c2015-08-05 09:28:50 +09002396 {1, "ORACLE", "X4170 M3", PPC},
2397 {1, "ORACLE", "X4275 M3", PPC},
2398 {1, "ORACLE", "X6-2 ", PPC},
2399 {1, "ORACLE", "Sudbury ", PPC},
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002400 {0, "", ""},
2401};
2402
Jisheng Zhang29327c82016-06-27 18:07:17 +08002403static bool __init intel_pstate_platform_pwr_mgmt_exists(void)
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002404{
2405 struct acpi_table_header hdr;
2406 struct hw_vendor_info *v_info;
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08002407 const struct x86_cpu_id *id;
2408 u64 misc_pwr;
2409
2410 id = x86_match_cpu(intel_pstate_cpu_oob_ids);
2411 if (id) {
2412 rdmsrl(MSR_MISC_PWR_MGMT, misc_pwr);
2413 if ( misc_pwr & (1 << 8))
2414 return true;
2415 }
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002416
Stratos Karafotisc4108332014-07-18 08:37:23 -07002417 if (acpi_disabled ||
2418 ACPI_FAILURE(acpi_get_table_header(ACPI_SIG_FADT, 0, &hdr)))
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002419 return false;
2420
2421 for (v_info = vendor_info; v_info->valid; v_info++) {
Stratos Karafotisc4108332014-07-18 08:37:23 -07002422 if (!strncmp(hdr.oem_id, v_info->oem_id, ACPI_OEM_ID_SIZE) &&
ethan zhao966916e2014-12-01 11:32:08 +09002423 !strncmp(hdr.oem_table_id, v_info->oem_table_id,
2424 ACPI_OEM_TABLE_ID_SIZE))
2425 switch (v_info->oem_pwr_table) {
2426 case PSS:
2427 return intel_pstate_no_acpi_pss();
2428 case PPC:
Ethan Zhaoaa4ea342014-12-09 10:43:19 +09002429 return intel_pstate_has_acpi_ppc() &&
2430 (!force_load);
ethan zhao966916e2014-12-01 11:32:08 +09002431 }
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002432 }
2433
2434 return false;
2435}
Rafael J. Wysockid0ea59e2016-11-17 22:47:47 +01002436
2437static void intel_pstate_request_control_from_smm(void)
2438{
2439 /*
2440 * It may be unsafe to request P-states control from SMM if _PPC support
2441 * has not been enabled.
2442 */
2443 if (acpi_ppc)
2444 acpi_processor_pstate_control();
2445}
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002446#else /* CONFIG_ACPI not enabled */
2447static inline bool intel_pstate_platform_pwr_mgmt_exists(void) { return false; }
ethan zhao966916e2014-12-01 11:32:08 +09002448static inline bool intel_pstate_has_acpi_ppc(void) { return false; }
Rafael J. Wysockid0ea59e2016-11-17 22:47:47 +01002449static inline void intel_pstate_request_control_from_smm(void) {}
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002450#endif /* CONFIG_ACPI */
2451
Srinivas Pandruvada7791e4a2016-02-25 15:09:19 -08002452static const struct x86_cpu_id hwp_support_ids[] __initconst = {
2453 { X86_VENDOR_INTEL, 6, X86_MODEL_ANY, X86_FEATURE_HWP },
2454 {}
2455};
2456
Dirk Brandewie93f08222013-02-06 09:02:13 -08002457static int __init intel_pstate_init(void)
2458{
Dirk Brandewie907cc902013-03-05 14:15:27 -08002459 int cpu, rc = 0;
Dirk Brandewie93f08222013-02-06 09:02:13 -08002460 const struct x86_cpu_id *id;
Borislav Petkov64df1fd2015-04-03 15:19:53 +02002461 struct cpu_defaults *cpu_def;
Dirk Brandewie93f08222013-02-06 09:02:13 -08002462
Dirk Brandewie6be26492013-02-15 22:55:10 +01002463 if (no_load)
2464 return -ENODEV;
2465
Srinivas Pandruvada7791e4a2016-02-25 15:09:19 -08002466 if (x86_match_cpu(hwp_support_ids) && !no_hwp) {
2467 copy_cpu_funcs(&core_params.funcs);
2468 hwp_active++;
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -08002469 intel_pstate.attr = hwp_cpufreq_attrs;
Srinivas Pandruvada7791e4a2016-02-25 15:09:19 -08002470 goto hwp_cpu_matched;
2471 }
2472
Dirk Brandewie93f08222013-02-06 09:02:13 -08002473 id = x86_match_cpu(intel_pstate_cpu_ids);
2474 if (!id)
2475 return -ENODEV;
2476
Borislav Petkov64df1fd2015-04-03 15:19:53 +02002477 cpu_def = (struct cpu_defaults *)id->driver_data;
Dirk Brandewie016c8152013-10-21 09:20:34 -07002478
Borislav Petkov64df1fd2015-04-03 15:19:53 +02002479 copy_pid_params(&cpu_def->pid_policy);
2480 copy_cpu_funcs(&cpu_def->funcs);
Dirk Brandewie016c8152013-10-21 09:20:34 -07002481
Dirk Brandewieb563b4e2013-03-22 01:29:28 +01002482 if (intel_pstate_msrs_not_valid())
2483 return -ENODEV;
2484
Srinivas Pandruvada7791e4a2016-02-25 15:09:19 -08002485hwp_cpu_matched:
2486 /*
2487 * The Intel pstate driver will be ignored if the platform
2488 * firmware has its own power management modes.
2489 */
2490 if (intel_pstate_platform_pwr_mgmt_exists())
2491 return -ENODEV;
2492
Joe Perches4836df12016-04-05 13:28:23 -07002493 pr_info("Intel P-state driver initializing\n");
Dirk Brandewie93f08222013-02-06 09:02:13 -08002494
Wei Yongjunb57ffac2013-05-13 08:03:43 +00002495 all_cpu_data = vzalloc(sizeof(void *) * num_possible_cpus());
Dirk Brandewie93f08222013-02-06 09:02:13 -08002496 if (!all_cpu_data)
2497 return -ENOMEM;
Dirk Brandewie93f08222013-02-06 09:02:13 -08002498
Kristen Carlson Accardid64c3b02015-02-06 13:41:55 -08002499 if (!hwp_active && hwp_only)
2500 goto out;
2501
Rafael J. Wysockid0ea59e2016-11-17 22:47:47 +01002502 intel_pstate_request_control_from_smm();
2503
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002504 rc = cpufreq_register_driver(intel_pstate_driver);
Dirk Brandewie93f08222013-02-06 09:02:13 -08002505 if (rc)
2506 goto out;
2507
Rafael J. Wysocki366430b2016-12-24 00:29:56 +01002508 if (intel_pstate_driver == &intel_pstate && !hwp_active &&
2509 pstate_funcs.get_target_pstate != get_target_pstate_use_cpu_load)
2510 intel_pstate_debug_expose_params();
2511
Dirk Brandewie93f08222013-02-06 09:02:13 -08002512 intel_pstate_sysfs_expose_params();
Dirk Brandewieb69880f2014-01-16 10:32:25 -08002513
Srinivas Pandruvada7791e4a2016-02-25 15:09:19 -08002514 if (hwp_active)
Joe Perches4836df12016-04-05 13:28:23 -07002515 pr_info("HWP enabled\n");
Srinivas Pandruvada7791e4a2016-02-25 15:09:19 -08002516
Dirk Brandewie93f08222013-02-06 09:02:13 -08002517 return rc;
2518out:
Dirk Brandewie907cc902013-03-05 14:15:27 -08002519 get_online_cpus();
2520 for_each_online_cpu(cpu) {
2521 if (all_cpu_data[cpu]) {
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002522 if (intel_pstate_driver == &intel_pstate)
2523 intel_pstate_clear_update_util_hook(cpu);
2524
Dirk Brandewie907cc902013-03-05 14:15:27 -08002525 kfree(all_cpu_data[cpu]);
2526 }
2527 }
2528
2529 put_online_cpus();
2530 vfree(all_cpu_data);
Dirk Brandewie93f08222013-02-06 09:02:13 -08002531 return -ENODEV;
2532}
2533device_initcall(intel_pstate_init);
2534
Dirk Brandewie6be26492013-02-15 22:55:10 +01002535static int __init intel_pstate_setup(char *str)
2536{
2537 if (!str)
2538 return -EINVAL;
2539
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002540 if (!strcmp(str, "disable")) {
Dirk Brandewie6be26492013-02-15 22:55:10 +01002541 no_load = 1;
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002542 } else if (!strcmp(str, "passive")) {
2543 pr_info("Passive mode enabled\n");
2544 intel_pstate_driver = &intel_cpufreq;
2545 no_hwp = 1;
2546 }
Prarit Bhargava539342f2015-10-22 09:43:31 -04002547 if (!strcmp(str, "no_hwp")) {
Joe Perches4836df12016-04-05 13:28:23 -07002548 pr_info("HWP disabled\n");
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08002549 no_hwp = 1;
Prarit Bhargava539342f2015-10-22 09:43:31 -04002550 }
Ethan Zhaoaa4ea342014-12-09 10:43:19 +09002551 if (!strcmp(str, "force"))
2552 force_load = 1;
Kristen Carlson Accardid64c3b02015-02-06 13:41:55 -08002553 if (!strcmp(str, "hwp_only"))
2554 hwp_only = 1;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07002555 if (!strcmp(str, "per_cpu_perf_limits"))
2556 per_cpu_limits = true;
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07002557
2558#ifdef CONFIG_ACPI
2559 if (!strcmp(str, "support_acpi_ppc"))
2560 acpi_ppc = true;
2561#endif
2562
Dirk Brandewie6be26492013-02-15 22:55:10 +01002563 return 0;
2564}
2565early_param("intel_pstate", intel_pstate_setup);
2566
Dirk Brandewie93f08222013-02-06 09:02:13 -08002567MODULE_AUTHOR("Dirk Brandewie <dirk.j.brandewie@intel.com>");
2568MODULE_DESCRIPTION("'intel_pstate' - P state driver Intel Core processors");
2569MODULE_LICENSE("GPL");