blob: 8e7390bb217589f6b65118bebcf16c44c6731048 [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
Philippe Longepe938d21a2015-11-09 17:40:46 -080040#define ATOM_RATIOS 0x66a
41#define ATOM_VIDS 0x66b
42#define ATOM_TURBO_RATIOS 0x66c
43#define ATOM_TURBO_VIDS 0x66d
Dirk Brandewie61d8d2a2014-02-12 10:01:07 -080044
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -070045#ifdef CONFIG_ACPI
46#include <acpi/processor.h>
47#endif
48
Dirk Brandewief0fe3cd2014-05-29 09:32:23 -070049#define FRAC_BITS 8
Dirk Brandewie93f08222013-02-06 09:02:13 -080050#define int_tofp(X) ((int64_t)(X) << FRAC_BITS)
51#define fp_toint(X) ((X) >> FRAC_BITS)
Dirk Brandewief0fe3cd2014-05-29 09:32:23 -070052
Rafael J. Wysockia1c97872016-05-11 19:09:12 +020053#define EXT_BITS 6
54#define EXT_FRAC_BITS (EXT_BITS + FRAC_BITS)
55
Dirk Brandewie93f08222013-02-06 09:02:13 -080056static inline int32_t mul_fp(int32_t x, int32_t y)
57{
58 return ((int64_t)x * (int64_t)y) >> FRAC_BITS;
59}
60
Prarit Bhargava7180ddd2015-06-15 13:43:29 -040061static inline int32_t div_fp(s64 x, s64 y)
Dirk Brandewie93f08222013-02-06 09:02:13 -080062{
Prarit Bhargava7180ddd2015-06-15 13:43:29 -040063 return div64_s64((int64_t)x << FRAC_BITS, y);
Dirk Brandewie93f08222013-02-06 09:02:13 -080064}
65
Dirk Brandewied022a652014-10-13 08:37:44 -070066static inline int ceiling_fp(int32_t x)
67{
68 int mask, ret;
69
70 ret = fp_toint(x);
71 mask = (1 << FRAC_BITS) - 1;
72 if (x & mask)
73 ret += 1;
74 return ret;
75}
76
Rafael J. Wysockia1c97872016-05-11 19:09:12 +020077static inline u64 mul_ext_fp(u64 x, u64 y)
78{
79 return (x * y) >> EXT_FRAC_BITS;
80}
81
82static inline u64 div_ext_fp(u64 x, u64 y)
83{
84 return div64_u64(x << EXT_FRAC_BITS, y);
85}
86
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -070087/**
88 * struct sample - Store performance sample
Rafael J. Wysockia1c97872016-05-11 19:09:12 +020089 * @core_avg_perf: Ratio of APERF/MPERF which is the actual average
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -070090 * performance during last sample period
91 * @busy_scaled: Scaled busy value which is used to calculate next
Rafael J. Wysockia1c97872016-05-11 19:09:12 +020092 * P state. This can be different than core_avg_perf
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -070093 * to account for cpu idle period
94 * @aperf: Difference of actual performance frequency clock count
95 * read from APERF MSR between last and current sample
96 * @mperf: Difference of maximum performance frequency clock count
97 * read from MPERF MSR between last and current sample
98 * @tsc: Difference of time stamp counter between last and
99 * current sample
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700100 * @time: Current time from scheduler
101 *
102 * This structure is used in the cpudata structure to store performance sample
103 * data for choosing next P State.
104 */
Dirk Brandewie93f08222013-02-06 09:02:13 -0800105struct sample {
Rafael J. Wysockia1c97872016-05-11 19:09:12 +0200106 int32_t core_avg_perf;
Philippe Longepe157386b2015-12-04 17:40:30 +0100107 int32_t busy_scaled;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800108 u64 aperf;
109 u64 mperf;
Doug Smythies4055fad2015-04-11 21:10:26 -0700110 u64 tsc;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +0100111 u64 time;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800112};
113
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700114/**
115 * struct pstate_data - Store P state data
116 * @current_pstate: Current requested P state
117 * @min_pstate: Min P state possible for this platform
118 * @max_pstate: Max P state possible for this platform
119 * @max_pstate_physical:This is physical Max P state for a processor
120 * This can be higher than the max_pstate which can
121 * be limited by platform thermal design power limits
122 * @scaling: Scaling factor to convert frequency to cpufreq
123 * frequency units
124 * @turbo_pstate: Max Turbo P state possible for this platform
125 *
126 * Stores the per cpu model P state limits and current P state.
127 */
Dirk Brandewie93f08222013-02-06 09:02:13 -0800128struct pstate_data {
129 int current_pstate;
130 int min_pstate;
131 int max_pstate;
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -0700132 int max_pstate_physical;
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700133 int scaling;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800134 int turbo_pstate;
135};
136
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700137/**
138 * struct vid_data - Stores voltage information data
139 * @min: VID data for this platform corresponding to
140 * the lowest P state
141 * @max: VID data corresponding to the highest P State.
142 * @turbo: VID data for turbo P state
143 * @ratio: Ratio of (vid max - vid min) /
144 * (max P state - Min P State)
145 *
146 * Stores the voltage data for DVFS (Dynamic Voltage and Frequency Scaling)
147 * This data is used in Atom platforms, where in addition to target P state,
148 * the voltage data needs to be specified to select next P State.
149 */
Dirk Brandewie007bea02013-12-18 10:32:39 -0800150struct vid_data {
Dirk Brandewie21855ff2014-05-08 12:57:23 -0700151 int min;
152 int max;
153 int turbo;
Dirk Brandewie007bea02013-12-18 10:32:39 -0800154 int32_t ratio;
155};
156
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700157/**
158 * struct _pid - Stores PID data
159 * @setpoint: Target set point for busyness or performance
160 * @integral: Storage for accumulated error values
161 * @p_gain: PID proportional gain
162 * @i_gain: PID integral gain
163 * @d_gain: PID derivative gain
164 * @deadband: PID deadband
165 * @last_err: Last error storage for integral part of PID calculation
166 *
167 * Stores PID coefficients and last error for PID controller.
168 */
Dirk Brandewie93f08222013-02-06 09:02:13 -0800169struct _pid {
170 int setpoint;
171 int32_t integral;
172 int32_t p_gain;
173 int32_t i_gain;
174 int32_t d_gain;
175 int deadband;
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700176 int32_t last_err;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800177};
178
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700179/**
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700180 * struct perf_limits - Store user and policy limits
181 * @no_turbo: User requested turbo state from intel_pstate sysfs
182 * @turbo_disabled: Platform turbo status either from msr
183 * MSR_IA32_MISC_ENABLE or when maximum available pstate
184 * matches the maximum turbo pstate
185 * @max_perf_pct: Effective maximum performance limit in percentage, this
186 * is minimum of either limits enforced by cpufreq policy
187 * or limits from user set limits via intel_pstate sysfs
188 * @min_perf_pct: Effective minimum performance limit in percentage, this
189 * is maximum of either limits enforced by cpufreq policy
190 * or limits from user set limits via intel_pstate sysfs
191 * @max_perf: This is a scaled value between 0 to 255 for max_perf_pct
192 * This value is used to limit max pstate
193 * @min_perf: This is a scaled value between 0 to 255 for min_perf_pct
194 * This value is used to limit min pstate
195 * @max_policy_pct: The maximum performance in percentage enforced by
196 * cpufreq setpolicy interface
197 * @max_sysfs_pct: The maximum performance in percentage enforced by
198 * intel pstate sysfs interface, unused when per cpu
199 * controls are enforced
200 * @min_policy_pct: The minimum performance in percentage enforced by
201 * cpufreq setpolicy interface
202 * @min_sysfs_pct: The minimum performance in percentage enforced by
203 * intel pstate sysfs interface, unused when per cpu
204 * controls are enforced
205 *
206 * Storage for user and policy defined limits.
207 */
208struct perf_limits {
209 int no_turbo;
210 int turbo_disabled;
211 int max_perf_pct;
212 int min_perf_pct;
213 int32_t max_perf;
214 int32_t min_perf;
215 int max_policy_pct;
216 int max_sysfs_pct;
217 int min_policy_pct;
218 int min_sysfs_pct;
219};
220
221/**
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700222 * struct cpudata - Per CPU instance data storage
223 * @cpu: CPU number for this instance data
Rafael J. Wysocki2f1d4072016-10-24 23:20:25 +0200224 * @policy: CPUFreq policy value
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700225 * @update_util: CPUFreq utility callback information
Chen Yu4578ee7e2016-05-11 14:33:08 +0800226 * @update_util_set: CPUFreq utility callback is set
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +0200227 * @iowait_boost: iowait-related boost fraction
228 * @last_update: Time of the last update.
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700229 * @pstate: Stores P state limits for this CPU
230 * @vid: Stores VID limits for this CPU
231 * @pid: Stores PID parameters for this CPU
232 * @last_sample_time: Last Sample time
233 * @prev_aperf: Last APERF value read from APERF MSR
234 * @prev_mperf: Last MPERF value read from MPERF MSR
235 * @prev_tsc: Last timestamp counter (TSC) value
236 * @prev_cummulative_iowait: IO Wait time difference from last and
237 * current sample
238 * @sample: Storage for storing last Sample data
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700239 * @perf_limits: Pointer to perf_limit unique to this CPU
240 * Not all field in the structure are applicable
241 * when per cpu controls are enforced
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700242 * @acpi_perf_data: Stores ACPI perf information read from _PSS
243 * @valid_pss_table: Set to true for valid ACPI _PSS entries found
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700244 *
245 * This structure stores per CPU instance data for all CPUs.
246 */
Dirk Brandewie93f08222013-02-06 09:02:13 -0800247struct cpudata {
248 int cpu;
249
Rafael J. Wysocki2f1d4072016-10-24 23:20:25 +0200250 unsigned int policy;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +0100251 struct update_util_data update_util;
Chen Yu4578ee7e2016-05-11 14:33:08 +0800252 bool update_util_set;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800253
Dirk Brandewie93f08222013-02-06 09:02:13 -0800254 struct pstate_data pstate;
Dirk Brandewie007bea02013-12-18 10:32:39 -0800255 struct vid_data vid;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800256 struct _pid pid;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800257
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +0200258 u64 last_update;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +0100259 u64 last_sample_time;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800260 u64 prev_aperf;
261 u64 prev_mperf;
Doug Smythies4055fad2015-04-11 21:10:26 -0700262 u64 prev_tsc;
Philippe Longepe63d1d652015-12-04 17:40:35 +0100263 u64 prev_cummulative_iowait;
Dirk Brandewied37e2b72014-02-12 10:01:04 -0800264 struct sample sample;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700265 struct perf_limits *perf_limits;
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700266#ifdef CONFIG_ACPI
267 struct acpi_processor_performance acpi_perf_data;
268 bool valid_pss_table;
269#endif
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +0200270 unsigned int iowait_boost;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800271};
272
273static struct cpudata **all_cpu_data;
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700274
275/**
Rafael J. Wysocki39545172016-10-11 23:07:38 +0200276 * struct pstate_adjust_policy - Stores static PID configuration data
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700277 * @sample_rate_ms: PID calculation sample rate in ms
278 * @sample_rate_ns: Sample rate calculation in ns
279 * @deadband: PID deadband
280 * @setpoint: PID Setpoint
281 * @p_gain_pct: PID proportional gain
282 * @i_gain_pct: PID integral gain
283 * @d_gain_pct: PID derivative gain
284 *
285 * Stores per CPU model static PID configuration data.
286 */
Dirk Brandewie93f08222013-02-06 09:02:13 -0800287struct pstate_adjust_policy {
288 int sample_rate_ms;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +0100289 s64 sample_rate_ns;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800290 int deadband;
291 int setpoint;
292 int p_gain_pct;
293 int d_gain_pct;
294 int i_gain_pct;
295};
296
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700297/**
298 * struct pstate_funcs - Per CPU model specific callbacks
299 * @get_max: Callback to get maximum non turbo effective P state
300 * @get_max_physical: Callback to get maximum non turbo physical P state
301 * @get_min: Callback to get minimum P state
302 * @get_turbo: Callback to get turbo P state
303 * @get_scaling: Callback to get frequency scaling factor
304 * @get_val: Callback to convert P state to actual MSR write value
305 * @get_vid: Callback to get VID data for Atom platforms
306 * @get_target_pstate: Callback to a function to calculate next P state to use
307 *
308 * Core and Atom CPU models have different way to get P State limits. This
309 * structure is used to store those callbacks.
310 */
Dirk Brandewie016c8152013-10-21 09:20:34 -0700311struct pstate_funcs {
312 int (*get_max)(void);
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -0700313 int (*get_max_physical)(void);
Dirk Brandewie016c8152013-10-21 09:20:34 -0700314 int (*get_min)(void);
315 int (*get_turbo)(void);
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700316 int (*get_scaling)(void);
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +0100317 u64 (*get_val)(struct cpudata*, int pstate);
Dirk Brandewie007bea02013-12-18 10:32:39 -0800318 void (*get_vid)(struct cpudata *);
Philippe Longepe157386b2015-12-04 17:40:30 +0100319 int32_t (*get_target_pstate)(struct cpudata *);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800320};
321
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700322/**
323 * struct cpu_defaults- Per CPU model default config data
324 * @pid_policy: PID config data
325 * @funcs: Callback function data
326 */
Dirk Brandewie016c8152013-10-21 09:20:34 -0700327struct cpu_defaults {
328 struct pstate_adjust_policy pid_policy;
329 struct pstate_funcs funcs;
330};
331
Philippe Longepe157386b2015-12-04 17:40:30 +0100332static inline int32_t get_target_pstate_use_performance(struct cpudata *cpu);
Philippe Longepee70eed22015-12-04 17:40:32 +0100333static inline int32_t get_target_pstate_use_cpu_load(struct cpudata *cpu);
Philippe Longepe157386b2015-12-04 17:40:30 +0100334
Jisheng Zhang4a7cb7a2016-06-27 18:07:18 +0800335static struct pstate_adjust_policy pid_params __read_mostly;
336static struct pstate_funcs pstate_funcs __read_mostly;
337static int hwp_active __read_mostly;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700338static bool per_cpu_limits __read_mostly;
Dirk Brandewie016c8152013-10-21 09:20:34 -0700339
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700340#ifdef CONFIG_ACPI
341static bool acpi_ppc;
342#endif
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700343
Prarit Bhargava51443fb2015-10-15 07:34:15 -0400344static struct perf_limits performance_limits = {
345 .no_turbo = 0,
346 .turbo_disabled = 0,
347 .max_perf_pct = 100,
348 .max_perf = int_tofp(1),
349 .min_perf_pct = 100,
350 .min_perf = int_tofp(1),
351 .max_policy_pct = 100,
352 .max_sysfs_pct = 100,
353 .min_policy_pct = 0,
354 .min_sysfs_pct = 0,
355};
356
357static struct perf_limits powersave_limits = {
Dirk Brandewie93f08222013-02-06 09:02:13 -0800358 .no_turbo = 0,
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700359 .turbo_disabled = 0,
Dirk Brandewie93f08222013-02-06 09:02:13 -0800360 .max_perf_pct = 100,
361 .max_perf = int_tofp(1),
362 .min_perf_pct = 0,
363 .min_perf = 0,
Dirk Brandewied8f469e2013-05-07 08:20:26 -0700364 .max_policy_pct = 100,
365 .max_sysfs_pct = 100,
Kristen Carlson Accardia0475992015-01-29 13:03:52 -0800366 .min_policy_pct = 0,
367 .min_sysfs_pct = 0,
Dirk Brandewie93f08222013-02-06 09:02:13 -0800368};
369
Prarit Bhargava51443fb2015-10-15 07:34:15 -0400370#ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE
371static struct perf_limits *limits = &performance_limits;
372#else
373static struct perf_limits *limits = &powersave_limits;
374#endif
375
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700376#ifdef CONFIG_ACPI
Srinivas Pandruvada2b3ec762016-04-27 15:48:08 -0700377
378static bool intel_pstate_get_ppc_enable_status(void)
379{
380 if (acpi_gbl_FADT.preferred_profile == PM_ENTERPRISE_SERVER ||
381 acpi_gbl_FADT.preferred_profile == PM_PERFORMANCE_SERVER)
382 return true;
383
384 return acpi_ppc;
385}
386
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700387static void intel_pstate_init_acpi_perf_limits(struct cpufreq_policy *policy)
388{
389 struct cpudata *cpu;
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700390 int ret;
391 int i;
392
Srinivas Pandruvadae59a8f72016-05-04 15:07:34 -0700393 if (hwp_active)
394 return;
395
Srinivas Pandruvada2b3ec762016-04-27 15:48:08 -0700396 if (!intel_pstate_get_ppc_enable_status())
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700397 return;
398
399 cpu = all_cpu_data[policy->cpu];
400
401 ret = acpi_processor_register_performance(&cpu->acpi_perf_data,
402 policy->cpu);
403 if (ret)
404 return;
405
406 /*
407 * Check if the control value in _PSS is for PERF_CTL MSR, which should
408 * guarantee that the states returned by it map to the states in our
409 * list directly.
410 */
411 if (cpu->acpi_perf_data.control_register.space_id !=
412 ACPI_ADR_SPACE_FIXED_HARDWARE)
413 goto err;
414
415 /*
416 * If there is only one entry _PSS, simply ignore _PSS and continue as
417 * usual without taking _PSS into account
418 */
419 if (cpu->acpi_perf_data.state_count < 2)
420 goto err;
421
422 pr_debug("CPU%u - ACPI _PSS perf data\n", policy->cpu);
423 for (i = 0; i < cpu->acpi_perf_data.state_count; i++) {
424 pr_debug(" %cP%d: %u MHz, %u mW, 0x%x\n",
425 (i == cpu->acpi_perf_data.state ? '*' : ' '), i,
426 (u32) cpu->acpi_perf_data.states[i].core_frequency,
427 (u32) cpu->acpi_perf_data.states[i].power,
428 (u32) cpu->acpi_perf_data.states[i].control);
429 }
430
431 /*
432 * The _PSS table doesn't contain whole turbo frequency range.
433 * This just contains +1 MHZ above the max non turbo frequency,
434 * with control value corresponding to max turbo ratio. But
435 * when cpufreq set policy is called, it will call with this
436 * max frequency, which will cause a reduced performance as
437 * this driver uses real max turbo frequency as the max
438 * frequency. So correct this frequency in _PSS table to
Srinivas Pandruvadab00345d2016-06-14 23:12:59 -0700439 * correct max turbo frequency based on the turbo state.
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700440 * Also need to convert to MHz as _PSS freq is in MHz.
441 */
Srinivas Pandruvadab00345d2016-06-14 23:12:59 -0700442 if (!limits->turbo_disabled)
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700443 cpu->acpi_perf_data.states[0].core_frequency =
444 policy->cpuinfo.max_freq / 1000;
445 cpu->valid_pss_table = true;
Srinivas Pandruvada6cacd112016-05-29 23:31:23 -0700446 pr_debug("_PPC limits will be enforced\n");
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700447
448 return;
449
450 err:
451 cpu->valid_pss_table = false;
452 acpi_processor_unregister_performance(policy->cpu);
453}
454
455static void intel_pstate_exit_perf_limits(struct cpufreq_policy *policy)
456{
457 struct cpudata *cpu;
458
459 cpu = all_cpu_data[policy->cpu];
460 if (!cpu->valid_pss_table)
461 return;
462
463 acpi_processor_unregister_performance(policy->cpu);
464}
465
466#else
467static void intel_pstate_init_acpi_perf_limits(struct cpufreq_policy *policy)
468{
469}
470
471static void intel_pstate_exit_perf_limits(struct cpufreq_policy *policy)
472{
473}
474#endif
475
Dirk Brandewie93f08222013-02-06 09:02:13 -0800476static inline void pid_reset(struct _pid *pid, int setpoint, int busy,
Stratos Karafotisc4108332014-07-18 08:37:23 -0700477 int deadband, int integral) {
Philippe Longepeb54a0df2016-03-08 10:31:14 +0100478 pid->setpoint = int_tofp(setpoint);
479 pid->deadband = int_tofp(deadband);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800480 pid->integral = int_tofp(integral);
Dirk Brandewied98d0992014-02-12 10:01:05 -0800481 pid->last_err = int_tofp(setpoint) - int_tofp(busy);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800482}
483
484static inline void pid_p_gain_set(struct _pid *pid, int percent)
485{
Rafael J. Wysocki22590ef2016-04-09 01:25:58 +0200486 pid->p_gain = div_fp(percent, 100);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800487}
488
489static inline void pid_i_gain_set(struct _pid *pid, int percent)
490{
Rafael J. Wysocki22590ef2016-04-09 01:25:58 +0200491 pid->i_gain = div_fp(percent, 100);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800492}
493
494static inline void pid_d_gain_set(struct _pid *pid, int percent)
495{
Rafael J. Wysocki22590ef2016-04-09 01:25:58 +0200496 pid->d_gain = div_fp(percent, 100);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800497}
498
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700499static signed int pid_calc(struct _pid *pid, int32_t busy)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800500{
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700501 signed int result;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800502 int32_t pterm, dterm, fp_error;
503 int32_t integral_limit;
504
Philippe Longepeb54a0df2016-03-08 10:31:14 +0100505 fp_error = pid->setpoint - busy;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800506
Philippe Longepeb54a0df2016-03-08 10:31:14 +0100507 if (abs(fp_error) <= pid->deadband)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800508 return 0;
509
510 pterm = mul_fp(pid->p_gain, fp_error);
511
512 pid->integral += fp_error;
513
Kristen Carlson Accardie0d4c8f2014-12-10 12:39:38 -0800514 /*
515 * We limit the integral here so that it will never
516 * get higher than 30. This prevents it from becoming
517 * too large an input over long periods of time and allows
518 * it to get factored out sooner.
519 *
520 * The value of 30 was chosen through experimentation.
521 */
Dirk Brandewie93f08222013-02-06 09:02:13 -0800522 integral_limit = int_tofp(30);
523 if (pid->integral > integral_limit)
524 pid->integral = integral_limit;
525 if (pid->integral < -integral_limit)
526 pid->integral = -integral_limit;
527
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700528 dterm = mul_fp(pid->d_gain, fp_error - pid->last_err);
529 pid->last_err = fp_error;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800530
531 result = pterm + mul_fp(pid->integral, pid->i_gain) + dterm;
Doug Smythies51d211e2014-06-17 13:36:10 -0700532 result = result + (1 << (FRAC_BITS-1));
Dirk Brandewie93f08222013-02-06 09:02:13 -0800533 return (signed int)fp_toint(result);
534}
535
536static inline void intel_pstate_busy_pid_reset(struct cpudata *cpu)
537{
Dirk Brandewie016c8152013-10-21 09:20:34 -0700538 pid_p_gain_set(&cpu->pid, pid_params.p_gain_pct);
539 pid_d_gain_set(&cpu->pid, pid_params.d_gain_pct);
540 pid_i_gain_set(&cpu->pid, pid_params.i_gain_pct);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800541
Stratos Karafotis2d8d1f12014-07-18 08:37:20 -0700542 pid_reset(&cpu->pid, pid_params.setpoint, 100, pid_params.deadband, 0);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800543}
544
Dirk Brandewie93f08222013-02-06 09:02:13 -0800545static inline void intel_pstate_reset_all_pid(void)
546{
547 unsigned int cpu;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700548
Dirk Brandewie93f08222013-02-06 09:02:13 -0800549 for_each_online_cpu(cpu) {
550 if (all_cpu_data[cpu])
551 intel_pstate_busy_pid_reset(all_cpu_data[cpu]);
552 }
553}
554
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700555static inline void update_turbo_state(void)
556{
557 u64 misc_en;
558 struct cpudata *cpu;
559
560 cpu = all_cpu_data[0];
561 rdmsrl(MSR_IA32_MISC_ENABLE, misc_en);
Prarit Bhargava51443fb2015-10-15 07:34:15 -0400562 limits->turbo_disabled =
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700563 (misc_en & MSR_IA32_MISC_ENABLE_TURBO_DISABLE ||
564 cpu->pstate.max_pstate == cpu->pstate.turbo_pstate);
565}
566
Viresh Kumar41cfd642016-02-22 10:27:46 +0530567static void intel_pstate_hwp_set(const struct cpumask *cpumask)
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800568{
Kristen Carlson Accardi74da56c2015-09-09 11:41:22 -0700569 int min, hw_min, max, hw_max, cpu, range, adj_range;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700570 struct perf_limits *perf_limits = limits;
Kristen Carlson Accardi74da56c2015-09-09 11:41:22 -0700571 u64 value, cap;
572
Viresh Kumar41cfd642016-02-22 10:27:46 +0530573 for_each_cpu(cpu, cpumask) {
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700574 int max_perf_pct, min_perf_pct;
575
576 if (per_cpu_limits)
577 perf_limits = all_cpu_data[cpu]->perf_limits;
578
Srinivas Pandruvadaf9f48722016-10-08 12:42:38 -0700579 rdmsrl_on_cpu(cpu, MSR_HWP_CAPABILITIES, &cap);
580 hw_min = HWP_LOWEST_PERF(cap);
581 hw_max = HWP_HIGHEST_PERF(cap);
582 range = hw_max - hw_min;
583
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700584 max_perf_pct = perf_limits->max_perf_pct;
585 min_perf_pct = perf_limits->min_perf_pct;
586
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800587 rdmsrl_on_cpu(cpu, MSR_HWP_REQUEST, &value);
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700588 adj_range = min_perf_pct * range / 100;
Kristen Carlson Accardi74da56c2015-09-09 11:41:22 -0700589 min = hw_min + adj_range;
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800590 value &= ~HWP_MIN_PERF(~0L);
591 value |= HWP_MIN_PERF(min);
592
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700593 adj_range = max_perf_pct * range / 100;
Kristen Carlson Accardi74da56c2015-09-09 11:41:22 -0700594 max = hw_min + adj_range;
Prarit Bhargava51443fb2015-10-15 07:34:15 -0400595 if (limits->no_turbo) {
Kristen Carlson Accardi74da56c2015-09-09 11:41:22 -0700596 hw_max = HWP_GUARANTEED_PERF(cap);
597 if (hw_max < max)
598 max = hw_max;
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800599 }
600
601 value &= ~HWP_MAX_PERF(~0L);
602 value |= HWP_MAX_PERF(max);
603 wrmsrl_on_cpu(cpu, MSR_HWP_REQUEST, value);
604 }
Viresh Kumar41cfd642016-02-22 10:27:46 +0530605}
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800606
Rafael J. Wysockiba41e1b2016-05-02 02:27:19 +0200607static int intel_pstate_hwp_set_policy(struct cpufreq_policy *policy)
608{
609 if (hwp_active)
610 intel_pstate_hwp_set(policy->cpus);
611
612 return 0;
613}
614
Viresh Kumar41cfd642016-02-22 10:27:46 +0530615static void intel_pstate_hwp_set_online_cpus(void)
616{
617 get_online_cpus();
618 intel_pstate_hwp_set(cpu_online_mask);
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800619 put_online_cpus();
620}
621
Dirk Brandewie93f08222013-02-06 09:02:13 -0800622/************************** debugfs begin ************************/
623static int pid_param_set(void *data, u64 val)
624{
625 *(u32 *)data = val;
626 intel_pstate_reset_all_pid();
627 return 0;
628}
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700629
Dirk Brandewie93f08222013-02-06 09:02:13 -0800630static int pid_param_get(void *data, u64 *val)
631{
632 *val = *(u32 *)data;
633 return 0;
634}
Stratos Karafotis2d8d1f12014-07-18 08:37:20 -0700635DEFINE_SIMPLE_ATTRIBUTE(fops_pid_param, pid_param_get, pid_param_set, "%llu\n");
Dirk Brandewie93f08222013-02-06 09:02:13 -0800636
637struct pid_param {
638 char *name;
639 void *value;
640};
641
642static struct pid_param pid_files[] = {
Dirk Brandewie016c8152013-10-21 09:20:34 -0700643 {"sample_rate_ms", &pid_params.sample_rate_ms},
644 {"d_gain_pct", &pid_params.d_gain_pct},
645 {"i_gain_pct", &pid_params.i_gain_pct},
646 {"deadband", &pid_params.deadband},
647 {"setpoint", &pid_params.setpoint},
648 {"p_gain_pct", &pid_params.p_gain_pct},
Dirk Brandewie93f08222013-02-06 09:02:13 -0800649 {NULL, NULL}
650};
651
Stratos Karafotis317dd502014-07-18 08:37:17 -0700652static void __init intel_pstate_debug_expose_params(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800653{
Stratos Karafotis317dd502014-07-18 08:37:17 -0700654 struct dentry *debugfs_parent;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800655 int i = 0;
656
Srinivas Pandruvada185d8242016-10-21 09:38:20 -0700657 if (hwp_active ||
658 pstate_funcs.get_target_pstate == get_target_pstate_use_cpu_load)
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800659 return;
Srinivas Pandruvada185d8242016-10-21 09:38:20 -0700660
Dirk Brandewie93f08222013-02-06 09:02:13 -0800661 debugfs_parent = debugfs_create_dir("pstate_snb", NULL);
662 if (IS_ERR_OR_NULL(debugfs_parent))
663 return;
664 while (pid_files[i].name) {
665 debugfs_create_file(pid_files[i].name, 0660,
Stratos Karafotisc4108332014-07-18 08:37:23 -0700666 debugfs_parent, pid_files[i].value,
667 &fops_pid_param);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800668 i++;
669 }
670}
671
672/************************** debugfs end ************************/
673
674/************************** sysfs begin ************************/
675#define show_one(file_name, object) \
676 static ssize_t show_##file_name \
677 (struct kobject *kobj, struct attribute *attr, char *buf) \
678 { \
Prarit Bhargava51443fb2015-10-15 07:34:15 -0400679 return sprintf(buf, "%u\n", limits->object); \
Dirk Brandewie93f08222013-02-06 09:02:13 -0800680 }
681
Kristen Carlson Accardid01b1f42015-01-28 15:03:27 -0800682static ssize_t show_turbo_pct(struct kobject *kobj,
683 struct attribute *attr, char *buf)
684{
685 struct cpudata *cpu;
686 int total, no_turbo, turbo_pct;
687 uint32_t turbo_fp;
688
689 cpu = all_cpu_data[0];
690
691 total = cpu->pstate.turbo_pstate - cpu->pstate.min_pstate + 1;
692 no_turbo = cpu->pstate.max_pstate - cpu->pstate.min_pstate + 1;
Rafael J. Wysocki22590ef2016-04-09 01:25:58 +0200693 turbo_fp = div_fp(no_turbo, total);
Kristen Carlson Accardid01b1f42015-01-28 15:03:27 -0800694 turbo_pct = 100 - fp_toint(mul_fp(turbo_fp, int_tofp(100)));
695 return sprintf(buf, "%u\n", turbo_pct);
696}
697
Kristen Carlson Accardi05224242015-01-28 15:03:28 -0800698static ssize_t show_num_pstates(struct kobject *kobj,
699 struct attribute *attr, char *buf)
700{
701 struct cpudata *cpu;
702 int total;
703
704 cpu = all_cpu_data[0];
705 total = cpu->pstate.turbo_pstate - cpu->pstate.min_pstate + 1;
706 return sprintf(buf, "%u\n", total);
707}
708
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700709static ssize_t show_no_turbo(struct kobject *kobj,
710 struct attribute *attr, char *buf)
711{
712 ssize_t ret;
713
714 update_turbo_state();
Prarit Bhargava51443fb2015-10-15 07:34:15 -0400715 if (limits->turbo_disabled)
716 ret = sprintf(buf, "%u\n", limits->turbo_disabled);
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700717 else
Prarit Bhargava51443fb2015-10-15 07:34:15 -0400718 ret = sprintf(buf, "%u\n", limits->no_turbo);
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700719
720 return ret;
721}
722
Dirk Brandewie93f08222013-02-06 09:02:13 -0800723static ssize_t store_no_turbo(struct kobject *a, struct attribute *b,
Stratos Karafotisc4108332014-07-18 08:37:23 -0700724 const char *buf, size_t count)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800725{
726 unsigned int input;
727 int ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700728
Dirk Brandewie93f08222013-02-06 09:02:13 -0800729 ret = sscanf(buf, "%u", &input);
730 if (ret != 1)
731 return -EINVAL;
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700732
733 update_turbo_state();
Prarit Bhargava51443fb2015-10-15 07:34:15 -0400734 if (limits->turbo_disabled) {
Joe Perches4836df12016-04-05 13:28:23 -0700735 pr_warn("Turbo disabled by BIOS or unavailable on processor\n");
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700736 return -EPERM;
Dirk Brandewiedd5fbf72014-06-20 07:27:59 -0700737 }
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800738
Prarit Bhargava51443fb2015-10-15 07:34:15 -0400739 limits->no_turbo = clamp_t(int, input, 0, 1);
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700740
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800741 if (hwp_active)
Viresh Kumar41cfd642016-02-22 10:27:46 +0530742 intel_pstate_hwp_set_online_cpus();
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800743
Dirk Brandewie93f08222013-02-06 09:02:13 -0800744 return count;
745}
746
747static ssize_t store_max_perf_pct(struct kobject *a, struct attribute *b,
Stratos Karafotisc4108332014-07-18 08:37:23 -0700748 const char *buf, size_t count)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800749{
750 unsigned int input;
751 int ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700752
Dirk Brandewie93f08222013-02-06 09:02:13 -0800753 ret = sscanf(buf, "%u", &input);
754 if (ret != 1)
755 return -EINVAL;
756
Prarit Bhargava51443fb2015-10-15 07:34:15 -0400757 limits->max_sysfs_pct = clamp_t(int, input, 0 , 100);
758 limits->max_perf_pct = min(limits->max_policy_pct,
759 limits->max_sysfs_pct);
760 limits->max_perf_pct = max(limits->min_policy_pct,
761 limits->max_perf_pct);
762 limits->max_perf_pct = max(limits->min_perf_pct,
763 limits->max_perf_pct);
Rafael J. Wysocki22590ef2016-04-09 01:25:58 +0200764 limits->max_perf = div_fp(limits->max_perf_pct, 100);
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700765
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800766 if (hwp_active)
Viresh Kumar41cfd642016-02-22 10:27:46 +0530767 intel_pstate_hwp_set_online_cpus();
Dirk Brandewie93f08222013-02-06 09:02:13 -0800768 return count;
769}
770
771static ssize_t store_min_perf_pct(struct kobject *a, struct attribute *b,
Stratos Karafotisc4108332014-07-18 08:37:23 -0700772 const char *buf, size_t count)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800773{
774 unsigned int input;
775 int ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700776
Dirk Brandewie93f08222013-02-06 09:02:13 -0800777 ret = sscanf(buf, "%u", &input);
778 if (ret != 1)
779 return -EINVAL;
Kristen Carlson Accardia0475992015-01-29 13:03:52 -0800780
Prarit Bhargava51443fb2015-10-15 07:34:15 -0400781 limits->min_sysfs_pct = clamp_t(int, input, 0 , 100);
782 limits->min_perf_pct = max(limits->min_policy_pct,
783 limits->min_sysfs_pct);
784 limits->min_perf_pct = min(limits->max_policy_pct,
785 limits->min_perf_pct);
786 limits->min_perf_pct = min(limits->max_perf_pct,
787 limits->min_perf_pct);
Rafael J. Wysocki22590ef2016-04-09 01:25:58 +0200788 limits->min_perf = div_fp(limits->min_perf_pct, 100);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800789
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800790 if (hwp_active)
Viresh Kumar41cfd642016-02-22 10:27:46 +0530791 intel_pstate_hwp_set_online_cpus();
Dirk Brandewie93f08222013-02-06 09:02:13 -0800792 return count;
793}
794
Dirk Brandewie93f08222013-02-06 09:02:13 -0800795show_one(max_perf_pct, max_perf_pct);
796show_one(min_perf_pct, min_perf_pct);
797
798define_one_global_rw(no_turbo);
799define_one_global_rw(max_perf_pct);
800define_one_global_rw(min_perf_pct);
Kristen Carlson Accardid01b1f42015-01-28 15:03:27 -0800801define_one_global_ro(turbo_pct);
Kristen Carlson Accardi05224242015-01-28 15:03:28 -0800802define_one_global_ro(num_pstates);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800803
804static struct attribute *intel_pstate_attributes[] = {
805 &no_turbo.attr,
Kristen Carlson Accardid01b1f42015-01-28 15:03:27 -0800806 &turbo_pct.attr,
Kristen Carlson Accardi05224242015-01-28 15:03:28 -0800807 &num_pstates.attr,
Dirk Brandewie93f08222013-02-06 09:02:13 -0800808 NULL
809};
810
811static struct attribute_group intel_pstate_attr_group = {
812 .attrs = intel_pstate_attributes,
813};
Dirk Brandewie93f08222013-02-06 09:02:13 -0800814
Stratos Karafotis317dd502014-07-18 08:37:17 -0700815static void __init intel_pstate_sysfs_expose_params(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800816{
Stratos Karafotis317dd502014-07-18 08:37:17 -0700817 struct kobject *intel_pstate_kobject;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800818 int rc;
819
820 intel_pstate_kobject = kobject_create_and_add("intel_pstate",
821 &cpu_subsys.dev_root->kobj);
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700822 if (WARN_ON(!intel_pstate_kobject))
823 return;
824
Stratos Karafotis2d8d1f12014-07-18 08:37:20 -0700825 rc = sysfs_create_group(intel_pstate_kobject, &intel_pstate_attr_group);
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700826 if (WARN_ON(rc))
827 return;
828
829 /*
830 * If per cpu limits are enforced there are no global limits, so
831 * return without creating max/min_perf_pct attributes
832 */
833 if (per_cpu_limits)
834 return;
835
836 rc = sysfs_create_file(intel_pstate_kobject, &max_perf_pct.attr);
837 WARN_ON(rc);
838
839 rc = sysfs_create_file(intel_pstate_kobject, &min_perf_pct.attr);
840 WARN_ON(rc);
841
Dirk Brandewie93f08222013-02-06 09:02:13 -0800842}
Dirk Brandewie93f08222013-02-06 09:02:13 -0800843/************************** sysfs end ************************/
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800844
Kristen Carlson Accardiba88d432015-07-14 09:46:23 -0700845static void intel_pstate_hwp_enable(struct cpudata *cpudata)
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800846{
Srinivas Pandruvadaf05c9662016-02-25 15:09:31 -0800847 /* First disable HWP notification interrupt as we don't process them */
Srinivas Pandruvadada7de912016-07-19 16:52:01 -0700848 if (static_cpu_has(X86_FEATURE_HWP_NOTIFY))
849 wrmsrl_on_cpu(cpudata->cpu, MSR_HWP_INTERRUPT, 0x00);
Srinivas Pandruvadaf05c9662016-02-25 15:09:31 -0800850
Kristen Carlson Accardiba88d432015-07-14 09:46:23 -0700851 wrmsrl_on_cpu(cpudata->cpu, MSR_PM_ENABLE, 0x1);
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800852}
853
Philippe Longepe938d21a2015-11-09 17:40:46 -0800854static int atom_get_min_pstate(void)
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700855{
856 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700857
Philippe Longepe938d21a2015-11-09 17:40:46 -0800858 rdmsrl(ATOM_RATIOS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -0700859 return (value >> 8) & 0x7F;
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700860}
Dirk Brandewie93f08222013-02-06 09:02:13 -0800861
Philippe Longepe938d21a2015-11-09 17:40:46 -0800862static int atom_get_max_pstate(void)
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700863{
864 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700865
Philippe Longepe938d21a2015-11-09 17:40:46 -0800866 rdmsrl(ATOM_RATIOS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -0700867 return (value >> 16) & 0x7F;
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700868}
869
Philippe Longepe938d21a2015-11-09 17:40:46 -0800870static int atom_get_turbo_pstate(void)
Dirk Brandewie61d8d2a2014-02-12 10:01:07 -0800871{
872 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700873
Philippe Longepe938d21a2015-11-09 17:40:46 -0800874 rdmsrl(ATOM_TURBO_RATIOS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -0700875 return value & 0x7F;
Dirk Brandewie61d8d2a2014-02-12 10:01:07 -0800876}
877
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +0100878static u64 atom_get_val(struct cpudata *cpudata, int pstate)
Dirk Brandewie007bea02013-12-18 10:32:39 -0800879{
880 u64 val;
881 int32_t vid_fp;
882 u32 vid;
883
Chen Yu144c8e12015-07-29 23:53:10 +0800884 val = (u64)pstate << 8;
Prarit Bhargava51443fb2015-10-15 07:34:15 -0400885 if (limits->no_turbo && !limits->turbo_disabled)
Dirk Brandewie007bea02013-12-18 10:32:39 -0800886 val |= (u64)1 << 32;
887
888 vid_fp = cpudata->vid.min + mul_fp(
889 int_tofp(pstate - cpudata->pstate.min_pstate),
890 cpudata->vid.ratio);
891
892 vid_fp = clamp_t(int32_t, vid_fp, cpudata->vid.min, cpudata->vid.max);
Dirk Brandewied022a652014-10-13 08:37:44 -0700893 vid = ceiling_fp(vid_fp);
Dirk Brandewie007bea02013-12-18 10:32:39 -0800894
Dirk Brandewie21855ff2014-05-08 12:57:23 -0700895 if (pstate > cpudata->pstate.max_pstate)
896 vid = cpudata->vid.turbo;
897
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +0100898 return val | vid;
Dirk Brandewie007bea02013-12-18 10:32:39 -0800899}
900
Philippe Longepe1421df62015-11-09 17:40:47 -0800901static int silvermont_get_scaling(void)
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700902{
903 u64 value;
904 int i;
Philippe Longepe1421df62015-11-09 17:40:47 -0800905 /* Defined in Table 35-6 from SDM (Sept 2015) */
906 static int silvermont_freq_table[] = {
907 83300, 100000, 133300, 116700, 80000};
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700908
909 rdmsrl(MSR_FSB_FREQ, value);
Philippe Longepe1421df62015-11-09 17:40:47 -0800910 i = value & 0x7;
911 WARN_ON(i > 4);
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700912
Philippe Longepe1421df62015-11-09 17:40:47 -0800913 return silvermont_freq_table[i];
914}
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700915
Philippe Longepe1421df62015-11-09 17:40:47 -0800916static int airmont_get_scaling(void)
917{
918 u64 value;
919 int i;
920 /* Defined in Table 35-10 from SDM (Sept 2015) */
921 static int airmont_freq_table[] = {
922 83300, 100000, 133300, 116700, 80000,
923 93300, 90000, 88900, 87500};
924
925 rdmsrl(MSR_FSB_FREQ, value);
926 i = value & 0xF;
927 WARN_ON(i > 8);
928
929 return airmont_freq_table[i];
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700930}
931
Philippe Longepe938d21a2015-11-09 17:40:46 -0800932static void atom_get_vid(struct cpudata *cpudata)
Dirk Brandewie007bea02013-12-18 10:32:39 -0800933{
934 u64 value;
935
Philippe Longepe938d21a2015-11-09 17:40:46 -0800936 rdmsrl(ATOM_VIDS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -0700937 cpudata->vid.min = int_tofp((value >> 8) & 0x7f);
938 cpudata->vid.max = int_tofp((value >> 16) & 0x7f);
Dirk Brandewie007bea02013-12-18 10:32:39 -0800939 cpudata->vid.ratio = div_fp(
940 cpudata->vid.max - cpudata->vid.min,
941 int_tofp(cpudata->pstate.max_pstate -
942 cpudata->pstate.min_pstate));
Dirk Brandewie21855ff2014-05-08 12:57:23 -0700943
Philippe Longepe938d21a2015-11-09 17:40:46 -0800944 rdmsrl(ATOM_TURBO_VIDS, value);
Dirk Brandewie21855ff2014-05-08 12:57:23 -0700945 cpudata->vid.turbo = value & 0x7f;
Dirk Brandewie007bea02013-12-18 10:32:39 -0800946}
947
Dirk Brandewie016c8152013-10-21 09:20:34 -0700948static int core_get_min_pstate(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800949{
950 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700951
Konrad Rzeszutek Wilk05e99c8cf2013-03-20 14:21:10 +0000952 rdmsrl(MSR_PLATFORM_INFO, value);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800953 return (value >> 40) & 0xFF;
954}
955
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -0700956static int core_get_max_pstate_physical(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800957{
958 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700959
Konrad Rzeszutek Wilk05e99c8cf2013-03-20 14:21:10 +0000960 rdmsrl(MSR_PLATFORM_INFO, value);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800961 return (value >> 8) & 0xFF;
962}
963
Dirk Brandewie93f08222013-02-06 09:02:13 -0800964static int core_get_max_pstate(void)
965{
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -0700966 u64 tar;
967 u64 plat_info;
968 int max_pstate;
969 int err;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800970
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -0700971 rdmsrl(MSR_PLATFORM_INFO, plat_info);
972 max_pstate = (plat_info >> 8) & 0xFF;
973
974 err = rdmsrl_safe(MSR_TURBO_ACTIVATION_RATIO, &tar);
975 if (!err) {
976 /* Do some sanity checking for safety */
977 if (plat_info & 0x600000000) {
978 u64 tdp_ctrl;
979 u64 tdp_ratio;
980 int tdp_msr;
981
982 err = rdmsrl_safe(MSR_CONFIG_TDP_CONTROL, &tdp_ctrl);
983 if (err)
984 goto skip_tar;
985
Jan Kiszka5fc8f7072016-07-08 20:42:04 +0200986 tdp_msr = MSR_CONFIG_TDP_NOMINAL + (tdp_ctrl & 0x3);
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -0700987 err = rdmsrl_safe(tdp_msr, &tdp_ratio);
988 if (err)
989 goto skip_tar;
990
Srinivas Pandruvada1becf032016-04-22 19:53:59 -0700991 /* For level 1 and 2, bits[23:16] contain the ratio */
992 if (tdp_ctrl)
993 tdp_ratio >>= 16;
994
995 tdp_ratio &= 0xff; /* ratios are only 8 bits long */
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -0700996 if (tdp_ratio - 1 == tar) {
997 max_pstate = tar;
998 pr_debug("max_pstate=TAC %x\n", max_pstate);
999 } else {
1000 goto skip_tar;
1001 }
1002 }
1003 }
1004
1005skip_tar:
1006 return max_pstate;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001007}
1008
Dirk Brandewie016c8152013-10-21 09:20:34 -07001009static int core_get_turbo_pstate(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001010{
1011 u64 value;
1012 int nont, ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001013
Srinivas Pandruvada100cf6f2016-07-06 16:07:55 -07001014 rdmsrl(MSR_TURBO_RATIO_LIMIT, value);
Dirk Brandewie016c8152013-10-21 09:20:34 -07001015 nont = core_get_max_pstate();
Stratos Karafotis285cb992014-07-18 08:37:21 -07001016 ret = (value) & 255;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001017 if (ret <= nont)
1018 ret = nont;
1019 return ret;
1020}
1021
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001022static inline int core_get_scaling(void)
1023{
1024 return 100000;
1025}
1026
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001027static u64 core_get_val(struct cpudata *cpudata, int pstate)
Dirk Brandewie016c8152013-10-21 09:20:34 -07001028{
1029 u64 val;
1030
Chen Yu144c8e12015-07-29 23:53:10 +08001031 val = (u64)pstate << 8;
Prarit Bhargava51443fb2015-10-15 07:34:15 -04001032 if (limits->no_turbo && !limits->turbo_disabled)
Dirk Brandewie016c8152013-10-21 09:20:34 -07001033 val |= (u64)1 << 32;
1034
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001035 return val;
Dirk Brandewie016c8152013-10-21 09:20:34 -07001036}
1037
Dasaratharaman Chandramoulib34ef932015-04-10 10:22:18 -07001038static int knl_get_turbo_pstate(void)
1039{
1040 u64 value;
1041 int nont, ret;
1042
Srinivas Pandruvada100cf6f2016-07-06 16:07:55 -07001043 rdmsrl(MSR_TURBO_RATIO_LIMIT, value);
Dasaratharaman Chandramoulib34ef932015-04-10 10:22:18 -07001044 nont = core_get_max_pstate();
1045 ret = (((value) >> 8) & 0xFF);
1046 if (ret <= nont)
1047 ret = nont;
1048 return ret;
1049}
1050
Dirk Brandewie016c8152013-10-21 09:20:34 -07001051static struct cpu_defaults core_params = {
1052 .pid_policy = {
1053 .sample_rate_ms = 10,
1054 .deadband = 0,
1055 .setpoint = 97,
1056 .p_gain_pct = 20,
1057 .d_gain_pct = 0,
1058 .i_gain_pct = 0,
1059 },
1060 .funcs = {
1061 .get_max = core_get_max_pstate,
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -07001062 .get_max_physical = core_get_max_pstate_physical,
Dirk Brandewie016c8152013-10-21 09:20:34 -07001063 .get_min = core_get_min_pstate,
1064 .get_turbo = core_get_turbo_pstate,
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001065 .get_scaling = core_get_scaling,
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001066 .get_val = core_get_val,
Philippe Longepe157386b2015-12-04 17:40:30 +01001067 .get_target_pstate = get_target_pstate_use_performance,
Dirk Brandewie016c8152013-10-21 09:20:34 -07001068 },
1069};
1070
Julia Lawall42ce8922016-09-11 15:06:01 +02001071static const struct cpu_defaults silvermont_params = {
Dirk Brandewie19e77c22013-10-21 09:20:35 -07001072 .pid_policy = {
1073 .sample_rate_ms = 10,
1074 .deadband = 0,
Kristen Carlson Accardi6a82ba62015-04-10 11:06:43 -07001075 .setpoint = 60,
Dirk Brandewie19e77c22013-10-21 09:20:35 -07001076 .p_gain_pct = 14,
1077 .d_gain_pct = 0,
1078 .i_gain_pct = 4,
1079 },
1080 .funcs = {
Philippe Longepe938d21a2015-11-09 17:40:46 -08001081 .get_max = atom_get_max_pstate,
1082 .get_max_physical = atom_get_max_pstate,
1083 .get_min = atom_get_min_pstate,
1084 .get_turbo = atom_get_turbo_pstate,
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001085 .get_val = atom_get_val,
Philippe Longepe1421df62015-11-09 17:40:47 -08001086 .get_scaling = silvermont_get_scaling,
1087 .get_vid = atom_get_vid,
Philippe Longepee70eed22015-12-04 17:40:32 +01001088 .get_target_pstate = get_target_pstate_use_cpu_load,
Philippe Longepe1421df62015-11-09 17:40:47 -08001089 },
1090};
1091
Julia Lawall42ce8922016-09-11 15:06:01 +02001092static const struct cpu_defaults airmont_params = {
Philippe Longepe1421df62015-11-09 17:40:47 -08001093 .pid_policy = {
1094 .sample_rate_ms = 10,
1095 .deadband = 0,
1096 .setpoint = 60,
1097 .p_gain_pct = 14,
1098 .d_gain_pct = 0,
1099 .i_gain_pct = 4,
1100 },
1101 .funcs = {
1102 .get_max = atom_get_max_pstate,
1103 .get_max_physical = atom_get_max_pstate,
1104 .get_min = atom_get_min_pstate,
1105 .get_turbo = atom_get_turbo_pstate,
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001106 .get_val = atom_get_val,
Philippe Longepe1421df62015-11-09 17:40:47 -08001107 .get_scaling = airmont_get_scaling,
Philippe Longepe938d21a2015-11-09 17:40:46 -08001108 .get_vid = atom_get_vid,
Philippe Longepee70eed22015-12-04 17:40:32 +01001109 .get_target_pstate = get_target_pstate_use_cpu_load,
Dirk Brandewie19e77c22013-10-21 09:20:35 -07001110 },
1111};
1112
Julia Lawall42ce8922016-09-11 15:06:01 +02001113static const struct cpu_defaults knl_params = {
Dasaratharaman Chandramoulib34ef932015-04-10 10:22:18 -07001114 .pid_policy = {
1115 .sample_rate_ms = 10,
1116 .deadband = 0,
1117 .setpoint = 97,
1118 .p_gain_pct = 20,
1119 .d_gain_pct = 0,
1120 .i_gain_pct = 0,
1121 },
1122 .funcs = {
1123 .get_max = core_get_max_pstate,
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -07001124 .get_max_physical = core_get_max_pstate_physical,
Dasaratharaman Chandramoulib34ef932015-04-10 10:22:18 -07001125 .get_min = core_get_min_pstate,
1126 .get_turbo = knl_get_turbo_pstate,
Lukasz Anaczkowski69cefc22015-07-21 10:41:13 +02001127 .get_scaling = core_get_scaling,
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001128 .get_val = core_get_val,
Philippe Longepe157386b2015-12-04 17:40:30 +01001129 .get_target_pstate = get_target_pstate_use_performance,
Dasaratharaman Chandramoulib34ef932015-04-10 10:22:18 -07001130 },
1131};
1132
Julia Lawall42ce8922016-09-11 15:06:01 +02001133static const struct cpu_defaults bxt_params = {
Srinivas Pandruvada41bad472016-06-09 15:34:41 -07001134 .pid_policy = {
1135 .sample_rate_ms = 10,
1136 .deadband = 0,
1137 .setpoint = 60,
1138 .p_gain_pct = 14,
1139 .d_gain_pct = 0,
1140 .i_gain_pct = 4,
1141 },
1142 .funcs = {
1143 .get_max = core_get_max_pstate,
1144 .get_max_physical = core_get_max_pstate_physical,
1145 .get_min = core_get_min_pstate,
1146 .get_turbo = core_get_turbo_pstate,
1147 .get_scaling = core_get_scaling,
1148 .get_val = core_get_val,
1149 .get_target_pstate = get_target_pstate_use_cpu_load,
1150 },
1151};
1152
Dirk Brandewie93f08222013-02-06 09:02:13 -08001153static void intel_pstate_get_min_max(struct cpudata *cpu, int *min, int *max)
1154{
1155 int max_perf = cpu->pstate.turbo_pstate;
Dirk Brandewie7244cb62013-10-21 09:20:33 -07001156 int max_perf_adj;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001157 int min_perf;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001158 struct perf_limits *perf_limits = limits;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001159
Prarit Bhargava51443fb2015-10-15 07:34:15 -04001160 if (limits->no_turbo || limits->turbo_disabled)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001161 max_perf = cpu->pstate.max_pstate;
1162
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001163 if (per_cpu_limits)
1164 perf_limits = cpu->perf_limits;
1165
Kristen Carlson Accardie0d4c8f2014-12-10 12:39:38 -08001166 /*
1167 * performance can be limited by user through sysfs, by cpufreq
1168 * policy, or by cpu specific default values determined through
1169 * experimentation.
1170 */
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001171 max_perf_adj = fp_toint(max_perf * perf_limits->max_perf);
Rafael J. Wysocki799281a2015-11-18 23:29:56 +01001172 *max = clamp_t(int, max_perf_adj,
1173 cpu->pstate.min_pstate, cpu->pstate.turbo_pstate);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001174
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001175 min_perf = fp_toint(max_perf * perf_limits->min_perf);
Rafael J. Wysocki799281a2015-11-18 23:29:56 +01001176 *min = clamp_t(int, min_perf, cpu->pstate.min_pstate, max_perf);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001177}
1178
Rafael J. Wysockia6c6ead2016-10-19 02:57:22 +02001179static void intel_pstate_set_pstate(struct cpudata *cpu, int pstate)
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001180{
Rafael J. Wysockibc95a452016-07-19 15:10:37 +02001181 trace_cpu_frequency(pstate * cpu->pstate.scaling, cpu->cpu);
1182 cpu->pstate.current_pstate = pstate;
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001183 /*
1184 * Generally, there is no guarantee that this code will always run on
1185 * the CPU being updated, so force the register update to run on the
1186 * right CPU.
1187 */
1188 wrmsrl_on_cpu(cpu->cpu, MSR_IA32_PERF_CTL,
1189 pstate_funcs.get_val(cpu, pstate));
Dirk Brandewie93f08222013-02-06 09:02:13 -08001190}
1191
Rafael J. Wysockia6c6ead2016-10-19 02:57:22 +02001192static void intel_pstate_set_min_pstate(struct cpudata *cpu)
1193{
1194 intel_pstate_set_pstate(cpu, cpu->pstate.min_pstate);
1195}
1196
1197static void intel_pstate_max_within_limits(struct cpudata *cpu)
1198{
1199 int min_pstate, max_pstate;
1200
1201 update_turbo_state();
1202 intel_pstate_get_min_max(cpu, &min_pstate, &max_pstate);
1203 intel_pstate_set_pstate(cpu, max_pstate);
1204}
1205
Dirk Brandewie93f08222013-02-06 09:02:13 -08001206static void intel_pstate_get_cpu_pstates(struct cpudata *cpu)
1207{
Dirk Brandewie016c8152013-10-21 09:20:34 -07001208 cpu->pstate.min_pstate = pstate_funcs.get_min();
1209 cpu->pstate.max_pstate = pstate_funcs.get_max();
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -07001210 cpu->pstate.max_pstate_physical = pstate_funcs.get_max_physical();
Dirk Brandewie016c8152013-10-21 09:20:34 -07001211 cpu->pstate.turbo_pstate = pstate_funcs.get_turbo();
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001212 cpu->pstate.scaling = pstate_funcs.get_scaling();
Dirk Brandewie93f08222013-02-06 09:02:13 -08001213
Dirk Brandewie007bea02013-12-18 10:32:39 -08001214 if (pstate_funcs.get_vid)
1215 pstate_funcs.get_vid(cpu);
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001216
1217 intel_pstate_set_min_pstate(cpu);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001218}
1219
Rafael J. Wysockia1c97872016-05-11 19:09:12 +02001220static inline void intel_pstate_calc_avg_perf(struct cpudata *cpu)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001221{
Stratos Karafotis6b17ddb2014-04-29 20:53:49 +03001222 struct sample *sample = &cpu->sample;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001223
Rafael J. Wysockia1c97872016-05-11 19:09:12 +02001224 sample->core_avg_perf = div_ext_fp(sample->aperf, sample->mperf);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001225}
1226
Rafael J. Wysocki4fec7ad2016-03-10 23:45:19 +01001227static inline bool intel_pstate_sample(struct cpudata *cpu, u64 time)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001228{
Dirk Brandewie93f08222013-02-06 09:02:13 -08001229 u64 aperf, mperf;
Stratos Karafotis4ab60c32014-07-18 08:37:24 -07001230 unsigned long flags;
Doug Smythies4055fad2015-04-11 21:10:26 -07001231 u64 tsc;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001232
Stratos Karafotis4ab60c32014-07-18 08:37:24 -07001233 local_irq_save(flags);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001234 rdmsrl(MSR_IA32_APERF, aperf);
1235 rdmsrl(MSR_IA32_MPERF, mperf);
Philippe Longepee70eed22015-12-04 17:40:32 +01001236 tsc = rdtsc();
Rafael J. Wysocki4fec7ad2016-03-10 23:45:19 +01001237 if (cpu->prev_mperf == mperf || cpu->prev_tsc == tsc) {
Srinivas Pandruvada8e601a92015-10-15 12:34:21 -07001238 local_irq_restore(flags);
Rafael J. Wysocki4fec7ad2016-03-10 23:45:19 +01001239 return false;
Srinivas Pandruvada8e601a92015-10-15 12:34:21 -07001240 }
Stratos Karafotis4ab60c32014-07-18 08:37:24 -07001241 local_irq_restore(flags);
Dirk Brandewieb69880f2014-01-16 10:32:25 -08001242
Dirk Brandewiec4ee8412014-05-29 09:32:24 -07001243 cpu->last_sample_time = cpu->sample.time;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001244 cpu->sample.time = time;
Dirk Brandewied37e2b72014-02-12 10:01:04 -08001245 cpu->sample.aperf = aperf;
1246 cpu->sample.mperf = mperf;
Doug Smythies4055fad2015-04-11 21:10:26 -07001247 cpu->sample.tsc = tsc;
Dirk Brandewied37e2b72014-02-12 10:01:04 -08001248 cpu->sample.aperf -= cpu->prev_aperf;
1249 cpu->sample.mperf -= cpu->prev_mperf;
Doug Smythies4055fad2015-04-11 21:10:26 -07001250 cpu->sample.tsc -= cpu->prev_tsc;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001251
Dirk Brandewie93f08222013-02-06 09:02:13 -08001252 cpu->prev_aperf = aperf;
1253 cpu->prev_mperf = mperf;
Doug Smythies4055fad2015-04-11 21:10:26 -07001254 cpu->prev_tsc = tsc;
Rafael J. Wysockifebce402016-04-02 01:06:21 +02001255 /*
1256 * First time this function is invoked in a given cycle, all of the
1257 * previous sample data fields are equal to zero or stale and they must
1258 * be populated with meaningful numbers for things to work, so assume
1259 * that sample.time will always be reset before setting the utilization
1260 * update hook and make the caller skip the sample then.
1261 */
1262 return !!cpu->last_sample_time;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001263}
1264
Philippe Longepe8fa520a2016-03-06 08:34:06 +01001265static inline int32_t get_avg_frequency(struct cpudata *cpu)
1266{
Rafael J. Wysockia1c97872016-05-11 19:09:12 +02001267 return mul_ext_fp(cpu->sample.core_avg_perf,
1268 cpu->pstate.max_pstate_physical * cpu->pstate.scaling);
Philippe Longepe8fa520a2016-03-06 08:34:06 +01001269}
1270
Philippe Longepebdcaa232016-04-22 11:46:09 -07001271static inline int32_t get_avg_pstate(struct cpudata *cpu)
1272{
Rafael J. Wysocki8edb0a62016-05-11 19:10:42 +02001273 return mul_ext_fp(cpu->pstate.max_pstate_physical,
1274 cpu->sample.core_avg_perf);
Philippe Longepebdcaa232016-04-22 11:46:09 -07001275}
1276
Philippe Longepee70eed22015-12-04 17:40:32 +01001277static inline int32_t get_target_pstate_use_cpu_load(struct cpudata *cpu)
1278{
1279 struct sample *sample = &cpu->sample;
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02001280 int32_t busy_frac, boost;
Rafael J. Wysocki0843e832016-10-06 14:07:51 +02001281 int target, avg_pstate;
Philippe Longepee70eed22015-12-04 17:40:32 +01001282
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02001283 busy_frac = div_fp(sample->mperf, sample->tsc);
Philippe Longepe63d1d652015-12-04 17:40:35 +01001284
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02001285 boost = cpu->iowait_boost;
1286 cpu->iowait_boost >>= 1;
Philippe Longepe63d1d652015-12-04 17:40:35 +01001287
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02001288 if (busy_frac < boost)
1289 busy_frac = boost;
Philippe Longepe63d1d652015-12-04 17:40:35 +01001290
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02001291 sample->busy_scaled = busy_frac * 100;
Rafael J. Wysocki0843e832016-10-06 14:07:51 +02001292
1293 target = limits->no_turbo || limits->turbo_disabled ?
1294 cpu->pstate.max_pstate : cpu->pstate.turbo_pstate;
1295 target += target >> 2;
1296 target = mul_fp(target, busy_frac);
1297 if (target < cpu->pstate.min_pstate)
1298 target = cpu->pstate.min_pstate;
1299
1300 /*
1301 * If the average P-state during the previous cycle was higher than the
1302 * current target, add 50% of the difference to the target to reduce
1303 * possible performance oscillations and offset possible performance
1304 * loss related to moving the workload from one CPU to another within
1305 * a package/module.
1306 */
1307 avg_pstate = get_avg_pstate(cpu);
1308 if (avg_pstate > target)
1309 target += (avg_pstate - target) >> 1;
1310
1311 return target;
Philippe Longepee70eed22015-12-04 17:40:32 +01001312}
1313
Philippe Longepe157386b2015-12-04 17:40:30 +01001314static inline int32_t get_target_pstate_use_performance(struct cpudata *cpu)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001315{
Rafael J. Wysocki1aa7a6e2016-05-11 19:11:26 +02001316 int32_t perf_scaled, max_pstate, current_pstate, sample_ratio;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001317 u64 duration_ns;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001318
Kristen Carlson Accardie0d4c8f2014-12-10 12:39:38 -08001319 /*
Rafael J. Wysockif00593a2016-09-30 03:13:34 +02001320 * perf_scaled is the ratio of the average P-state during the last
1321 * sampling period to the P-state requested last time (in percent).
1322 *
1323 * That measures the system's response to the previous P-state
1324 * selection.
Kristen Carlson Accardie0d4c8f2014-12-10 12:39:38 -08001325 */
Rafael J. Wysocki22590ef2016-04-09 01:25:58 +02001326 max_pstate = cpu->pstate.max_pstate_physical;
1327 current_pstate = cpu->pstate.current_pstate;
Rafael J. Wysocki1aa7a6e2016-05-11 19:11:26 +02001328 perf_scaled = mul_ext_fp(cpu->sample.core_avg_perf,
Rafael J. Wysockia1c97872016-05-11 19:09:12 +02001329 div_fp(100 * max_pstate, current_pstate));
Dirk Brandewiec4ee8412014-05-29 09:32:24 -07001330
Kristen Carlson Accardie0d4c8f2014-12-10 12:39:38 -08001331 /*
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001332 * Since our utilization update callback will not run unless we are
1333 * in C0, check if the actual elapsed time is significantly greater (3x)
1334 * than our sample interval. If it is, then we were idle for a long
Rafael J. Wysocki1aa7a6e2016-05-11 19:11:26 +02001335 * enough period of time to adjust our performance metric.
Kristen Carlson Accardie0d4c8f2014-12-10 12:39:38 -08001336 */
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001337 duration_ns = cpu->sample.time - cpu->last_sample_time;
Rafael J. Wysockifebce402016-04-02 01:06:21 +02001338 if ((s64)duration_ns > pid_params.sample_rate_ns * 3) {
Rafael J. Wysocki22590ef2016-04-09 01:25:58 +02001339 sample_ratio = div_fp(pid_params.sample_rate_ns, duration_ns);
Rafael J. Wysocki1aa7a6e2016-05-11 19:11:26 +02001340 perf_scaled = mul_fp(perf_scaled, sample_ratio);
Rafael J. Wysockiffb81052016-04-10 05:59:10 +02001341 } else {
1342 sample_ratio = div_fp(100 * cpu->sample.mperf, cpu->sample.tsc);
1343 if (sample_ratio < int_tofp(1))
Rafael J. Wysocki1aa7a6e2016-05-11 19:11:26 +02001344 perf_scaled = 0;
Dirk Brandewiec4ee8412014-05-29 09:32:24 -07001345 }
1346
Rafael J. Wysocki1aa7a6e2016-05-11 19:11:26 +02001347 cpu->sample.busy_scaled = perf_scaled;
1348 return cpu->pstate.current_pstate - pid_calc(&cpu->pid, perf_scaled);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001349}
1350
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001351static inline void intel_pstate_update_pstate(struct cpudata *cpu, int pstate)
1352{
1353 int max_perf, min_perf;
1354
1355 update_turbo_state();
1356
1357 intel_pstate_get_min_max(cpu, &min_perf, &max_perf);
1358 pstate = clamp_t(int, pstate, min_perf, max_perf);
Rafael J. Wysockibc95a452016-07-19 15:10:37 +02001359 trace_cpu_frequency(pstate * cpu->pstate.scaling, cpu->cpu);
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001360 if (pstate == cpu->pstate.current_pstate)
1361 return;
1362
Rafael J. Wysockibc95a452016-07-19 15:10:37 +02001363 cpu->pstate.current_pstate = pstate;
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001364 wrmsrl(MSR_IA32_PERF_CTL, pstate_funcs.get_val(cpu, pstate));
1365}
1366
Dirk Brandewie93f08222013-02-06 09:02:13 -08001367static inline void intel_pstate_adjust_busy_pstate(struct cpudata *cpu)
1368{
Philippe Longepe157386b2015-12-04 17:40:30 +01001369 int from, target_pstate;
Doug Smythies4055fad2015-04-11 21:10:26 -07001370 struct sample *sample;
1371
1372 from = cpu->pstate.current_pstate;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001373
Rafael J. Wysocki2f1d4072016-10-24 23:20:25 +02001374 target_pstate = cpu->policy == CPUFREQ_POLICY_PERFORMANCE ?
1375 cpu->pstate.turbo_pstate : pstate_funcs.get_target_pstate(cpu);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001376
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001377 intel_pstate_update_pstate(cpu, target_pstate);
Doug Smythies4055fad2015-04-11 21:10:26 -07001378
1379 sample = &cpu->sample;
Rafael J. Wysockia1c97872016-05-11 19:09:12 +02001380 trace_pstate_sample(mul_ext_fp(100, sample->core_avg_perf),
Philippe Longepe157386b2015-12-04 17:40:30 +01001381 fp_toint(sample->busy_scaled),
Doug Smythies4055fad2015-04-11 21:10:26 -07001382 from,
1383 cpu->pstate.current_pstate,
1384 sample->mperf,
1385 sample->aperf,
1386 sample->tsc,
Srinivas Pandruvada3ba7bca2016-09-13 17:41:33 -07001387 get_avg_frequency(cpu),
1388 fp_toint(cpu->iowait_boost * 100));
Dirk Brandewie93f08222013-02-06 09:02:13 -08001389}
1390
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001391static void intel_pstate_update_util(struct update_util_data *data, u64 time,
Rafael J. Wysocki58919e82016-08-16 22:14:55 +02001392 unsigned int flags)
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001393{
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001394 struct cpudata *cpu = container_of(data, struct cpudata, update_util);
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02001395 u64 delta_ns;
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001396
Rafael J. Wysocki1d298152016-10-19 02:53:26 +02001397 if (pstate_funcs.get_target_pstate == get_target_pstate_use_cpu_load) {
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02001398 if (flags & SCHED_CPUFREQ_IOWAIT) {
1399 cpu->iowait_boost = int_tofp(1);
1400 } else if (cpu->iowait_boost) {
1401 /* Clear iowait_boost if the CPU may have been idle. */
1402 delta_ns = time - cpu->last_update;
1403 if (delta_ns > TICK_NSEC)
1404 cpu->iowait_boost = 0;
1405 }
1406 cpu->last_update = time;
1407 }
1408
1409 delta_ns = time - cpu->sample.time;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001410 if ((s64)delta_ns >= pid_params.sample_rate_ns) {
Rafael J. Wysocki4fec7ad2016-03-10 23:45:19 +01001411 bool sample_taken = intel_pstate_sample(cpu, time);
1412
Rafael J. Wysocki6d45b712016-05-04 14:01:10 +02001413 if (sample_taken) {
Rafael J. Wysockia1c97872016-05-11 19:09:12 +02001414 intel_pstate_calc_avg_perf(cpu);
Rafael J. Wysocki6d45b712016-05-04 14:01:10 +02001415 if (!hwp_active)
1416 intel_pstate_adjust_busy_pstate(cpu);
1417 }
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001418 }
Dirk Brandewie93f08222013-02-06 09:02:13 -08001419}
1420
1421#define ICPU(model, policy) \
Dirk Brandewie6cbd7ee2014-01-06 10:59:16 -08001422 { X86_VENDOR_INTEL, 6, model, X86_FEATURE_APERFMPERF,\
1423 (unsigned long)&policy }
Dirk Brandewie93f08222013-02-06 09:02:13 -08001424
1425static const struct x86_cpu_id intel_pstate_cpu_ids[] = {
Dave Hansen5b20c942016-06-02 17:19:45 -07001426 ICPU(INTEL_FAM6_SANDYBRIDGE, core_params),
1427 ICPU(INTEL_FAM6_SANDYBRIDGE_X, core_params),
1428 ICPU(INTEL_FAM6_ATOM_SILVERMONT1, silvermont_params),
1429 ICPU(INTEL_FAM6_IVYBRIDGE, core_params),
1430 ICPU(INTEL_FAM6_HASWELL_CORE, core_params),
1431 ICPU(INTEL_FAM6_BROADWELL_CORE, core_params),
1432 ICPU(INTEL_FAM6_IVYBRIDGE_X, core_params),
1433 ICPU(INTEL_FAM6_HASWELL_X, core_params),
1434 ICPU(INTEL_FAM6_HASWELL_ULT, core_params),
1435 ICPU(INTEL_FAM6_HASWELL_GT3E, core_params),
1436 ICPU(INTEL_FAM6_BROADWELL_GT3E, core_params),
1437 ICPU(INTEL_FAM6_ATOM_AIRMONT, airmont_params),
1438 ICPU(INTEL_FAM6_SKYLAKE_MOBILE, core_params),
1439 ICPU(INTEL_FAM6_BROADWELL_X, core_params),
1440 ICPU(INTEL_FAM6_SKYLAKE_DESKTOP, core_params),
1441 ICPU(INTEL_FAM6_BROADWELL_XEON_D, core_params),
1442 ICPU(INTEL_FAM6_XEON_PHI_KNL, knl_params),
Srinivas Pandruvada41bad472016-06-09 15:34:41 -07001443 ICPU(INTEL_FAM6_ATOM_GOLDMONT, bxt_params),
Dirk Brandewie93f08222013-02-06 09:02:13 -08001444 {}
1445};
1446MODULE_DEVICE_TABLE(x86cpu, intel_pstate_cpu_ids);
1447
Jisheng Zhang29327c82016-06-27 18:07:17 +08001448static const struct x86_cpu_id intel_pstate_cpu_oob_ids[] __initconst = {
Dave Hansen5b20c942016-06-02 17:19:45 -07001449 ICPU(INTEL_FAM6_BROADWELL_XEON_D, core_params),
Srinivas Pandruvada65c12622016-07-23 15:12:06 -07001450 ICPU(INTEL_FAM6_BROADWELL_X, core_params),
1451 ICPU(INTEL_FAM6_SKYLAKE_X, core_params),
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001452 {}
1453};
1454
Dirk Brandewie93f08222013-02-06 09:02:13 -08001455static int intel_pstate_init_cpu(unsigned int cpunum)
1456{
Dirk Brandewie93f08222013-02-06 09:02:13 -08001457 struct cpudata *cpu;
1458
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001459 cpu = all_cpu_data[cpunum];
1460
1461 if (!cpu) {
1462 unsigned int size = sizeof(struct cpudata);
1463
1464 if (per_cpu_limits)
1465 size += sizeof(struct perf_limits);
1466
1467 cpu = kzalloc(size, GFP_KERNEL);
1468 if (!cpu)
1469 return -ENOMEM;
1470
1471 all_cpu_data[cpunum] = cpu;
1472 if (per_cpu_limits)
1473 cpu->perf_limits = (struct perf_limits *)(cpu + 1);
1474
1475 }
Dirk Brandewie93f08222013-02-06 09:02:13 -08001476
1477 cpu = all_cpu_data[cpunum];
1478
Dirk Brandewie93f08222013-02-06 09:02:13 -08001479 cpu->cpu = cpunum;
Kristen Carlson Accardiba88d432015-07-14 09:46:23 -07001480
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001481 if (hwp_active) {
Kristen Carlson Accardiba88d432015-07-14 09:46:23 -07001482 intel_pstate_hwp_enable(cpu);
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001483 pid_params.sample_rate_ms = 50;
1484 pid_params.sample_rate_ns = 50 * NSEC_PER_MSEC;
1485 }
Kristen Carlson Accardiba88d432015-07-14 09:46:23 -07001486
Vincent Minet179e8472014-07-05 01:51:33 +02001487 intel_pstate_get_cpu_pstates(cpu);
Dirk Brandewie016c8152013-10-21 09:20:34 -07001488
Dirk Brandewie93f08222013-02-06 09:02:13 -08001489 intel_pstate_busy_pid_reset(cpu);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001490
Joe Perches4836df12016-04-05 13:28:23 -07001491 pr_debug("controlling: cpu %d\n", cpunum);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001492
1493 return 0;
1494}
1495
1496static unsigned int intel_pstate_get(unsigned int cpu_num)
1497{
Rafael J. Wysockif96fd0c2016-05-07 02:24:48 +02001498 struct cpudata *cpu = all_cpu_data[cpu_num];
Dirk Brandewie93f08222013-02-06 09:02:13 -08001499
Rafael J. Wysockif96fd0c2016-05-07 02:24:48 +02001500 return cpu ? get_avg_frequency(cpu) : 0;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001501}
1502
Rafael J. Wysockifebce402016-04-02 01:06:21 +02001503static void intel_pstate_set_update_util_hook(unsigned int cpu_num)
Rafael J. Wysockibb6ab522016-03-31 17:42:15 +02001504{
Rafael J. Wysockifebce402016-04-02 01:06:21 +02001505 struct cpudata *cpu = all_cpu_data[cpu_num];
1506
Rafael J. Wysocki5ab666e2016-06-27 23:47:15 +02001507 if (cpu->update_util_set)
1508 return;
1509
Rafael J. Wysockifebce402016-04-02 01:06:21 +02001510 /* Prevent intel_pstate_update_util() from using stale data. */
1511 cpu->sample.time = 0;
Rafael J. Wysocki0bed6122016-04-02 01:08:43 +02001512 cpufreq_add_update_util_hook(cpu_num, &cpu->update_util,
1513 intel_pstate_update_util);
Chen Yu4578ee7e2016-05-11 14:33:08 +08001514 cpu->update_util_set = true;
Rafael J. Wysockibb6ab522016-03-31 17:42:15 +02001515}
1516
1517static void intel_pstate_clear_update_util_hook(unsigned int cpu)
1518{
Chen Yu4578ee7e2016-05-11 14:33:08 +08001519 struct cpudata *cpu_data = all_cpu_data[cpu];
1520
1521 if (!cpu_data->update_util_set)
1522 return;
1523
Rafael J. Wysocki0bed6122016-04-02 01:08:43 +02001524 cpufreq_remove_update_util_hook(cpu);
Chen Yu4578ee7e2016-05-11 14:33:08 +08001525 cpu_data->update_util_set = false;
Rafael J. Wysockibb6ab522016-03-31 17:42:15 +02001526 synchronize_sched();
1527}
1528
Srinivas Pandruvada30a39152016-04-03 19:42:11 -07001529static void intel_pstate_set_performance_limits(struct perf_limits *limits)
1530{
1531 limits->no_turbo = 0;
1532 limits->turbo_disabled = 0;
1533 limits->max_perf_pct = 100;
1534 limits->max_perf = int_tofp(1);
1535 limits->min_perf_pct = 100;
1536 limits->min_perf = int_tofp(1);
1537 limits->max_policy_pct = 100;
1538 limits->max_sysfs_pct = 100;
1539 limits->min_policy_pct = 0;
1540 limits->min_sysfs_pct = 0;
1541}
1542
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001543static void intel_pstate_update_perf_limits(struct cpufreq_policy *policy,
1544 struct perf_limits *limits)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001545{
Prarit Bhargava8478f532015-11-20 18:47:56 -05001546 limits->max_policy_pct = DIV_ROUND_UP(policy->max * 100,
1547 policy->cpuinfo.max_freq);
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001548 limits->max_policy_pct = clamp_t(int, limits->max_policy_pct, 0, 100);
Srinivas Pandruvada5879f872016-10-25 13:20:41 -07001549 if (policy->max == policy->min) {
1550 limits->min_policy_pct = limits->max_policy_pct;
1551 } else {
1552 limits->min_policy_pct = (policy->min * 100) /
1553 policy->cpuinfo.max_freq;
1554 limits->min_policy_pct = clamp_t(int, limits->min_policy_pct,
1555 0, 100);
1556 }
Chen Yu43717aa2015-09-09 18:27:31 +08001557
1558 /* Normalize user input to [min_policy_pct, max_policy_pct] */
Prarit Bhargava51443fb2015-10-15 07:34:15 -04001559 limits->min_perf_pct = max(limits->min_policy_pct,
1560 limits->min_sysfs_pct);
1561 limits->min_perf_pct = min(limits->max_policy_pct,
1562 limits->min_perf_pct);
1563 limits->max_perf_pct = min(limits->max_policy_pct,
1564 limits->max_sysfs_pct);
1565 limits->max_perf_pct = max(limits->min_policy_pct,
1566 limits->max_perf_pct);
Chen Yu43717aa2015-09-09 18:27:31 +08001567
1568 /* Make sure min_perf_pct <= max_perf_pct */
Prarit Bhargava51443fb2015-10-15 07:34:15 -04001569 limits->min_perf_pct = min(limits->max_perf_pct, limits->min_perf_pct);
Chen Yu43717aa2015-09-09 18:27:31 +08001570
Rafael J. Wysocki22590ef2016-04-09 01:25:58 +02001571 limits->min_perf = div_fp(limits->min_perf_pct, 100);
1572 limits->max_perf = div_fp(limits->max_perf_pct, 100);
Srinivas Pandruvada2c2c1af2016-06-07 17:38:52 -07001573 limits->max_perf = round_up(limits->max_perf, FRAC_BITS);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001574
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001575 pr_debug("cpu:%d max_perf_pct:%d min_perf_pct:%d\n", policy->cpu,
1576 limits->max_perf_pct, limits->min_perf_pct);
1577}
1578
1579static int intel_pstate_set_policy(struct cpufreq_policy *policy)
1580{
1581 struct cpudata *cpu;
1582 struct perf_limits *perf_limits = NULL;
1583
1584 if (!policy->cpuinfo.max_freq)
1585 return -ENODEV;
1586
1587 pr_debug("set_policy cpuinfo.max %u policy->max %u\n",
1588 policy->cpuinfo.max_freq, policy->max);
1589
1590 cpu = all_cpu_data[policy->cpu];
1591 cpu->policy = policy->policy;
1592
1593 if (cpu->pstate.max_pstate_physical > cpu->pstate.max_pstate &&
1594 policy->max < policy->cpuinfo.max_freq &&
1595 policy->max > cpu->pstate.max_pstate * cpu->pstate.scaling) {
1596 pr_debug("policy->max > max non turbo frequency\n");
1597 policy->max = policy->cpuinfo.max_freq;
1598 }
1599
1600 if (per_cpu_limits)
1601 perf_limits = cpu->perf_limits;
1602
1603 if (policy->policy == CPUFREQ_POLICY_PERFORMANCE) {
1604 if (!perf_limits) {
1605 limits = &performance_limits;
1606 perf_limits = limits;
1607 }
1608 if (policy->max >= policy->cpuinfo.max_freq) {
1609 pr_debug("set performance\n");
1610 intel_pstate_set_performance_limits(perf_limits);
1611 goto out;
1612 }
1613 } else {
1614 pr_debug("set powersave\n");
1615 if (!perf_limits) {
1616 limits = &powersave_limits;
1617 perf_limits = limits;
1618 }
1619
1620 }
1621
1622 intel_pstate_update_perf_limits(policy, perf_limits);
Rafael J. Wysockibb6ab522016-03-31 17:42:15 +02001623 out:
Rafael J. Wysocki2f1d4072016-10-24 23:20:25 +02001624 if (cpu->policy == CPUFREQ_POLICY_PERFORMANCE) {
Rafael J. Wysockia6c6ead2016-10-19 02:57:22 +02001625 /*
1626 * NOHZ_FULL CPUs need this as the governor callback may not
1627 * be invoked on them.
1628 */
1629 intel_pstate_clear_update_util_hook(policy->cpu);
1630 intel_pstate_max_within_limits(cpu);
1631 }
1632
Rafael J. Wysockibb6ab522016-03-31 17:42:15 +02001633 intel_pstate_set_update_util_hook(policy->cpu);
1634
Rafael J. Wysockiba41e1b2016-05-02 02:27:19 +02001635 intel_pstate_hwp_set_policy(policy);
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001636
Dirk Brandewie93f08222013-02-06 09:02:13 -08001637 return 0;
1638}
1639
1640static int intel_pstate_verify_policy(struct cpufreq_policy *policy)
1641{
Viresh Kumarbe49e342013-10-02 14:13:19 +05301642 cpufreq_verify_within_cpu_limits(policy);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001643
Stratos Karafotis285cb992014-07-18 08:37:21 -07001644 if (policy->policy != CPUFREQ_POLICY_POWERSAVE &&
Stratos Karafotisc4108332014-07-18 08:37:23 -07001645 policy->policy != CPUFREQ_POLICY_PERFORMANCE)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001646 return -EINVAL;
1647
1648 return 0;
1649}
1650
Dirk Brandewiebb180082014-03-19 08:45:54 -07001651static void intel_pstate_stop_cpu(struct cpufreq_policy *policy)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001652{
Dirk Brandewiebb180082014-03-19 08:45:54 -07001653 int cpu_num = policy->cpu;
1654 struct cpudata *cpu = all_cpu_data[cpu_num];
Dirk Brandewie93f08222013-02-06 09:02:13 -08001655
Joe Perches4836df12016-04-05 13:28:23 -07001656 pr_debug("CPU %d exiting\n", cpu_num);
Dirk Brandewiebb180082014-03-19 08:45:54 -07001657
Rafael J. Wysockibb6ab522016-03-31 17:42:15 +02001658 intel_pstate_clear_update_util_hook(cpu_num);
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001659
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001660 if (hwp_active)
1661 return;
1662
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001663 intel_pstate_set_min_pstate(cpu);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001664}
1665
Paul Gortmaker27609842013-06-19 13:54:04 -04001666static int intel_pstate_cpu_init(struct cpufreq_policy *policy)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001667{
Dirk Brandewie93f08222013-02-06 09:02:13 -08001668 struct cpudata *cpu;
Dirk Brandewie52e0a502013-10-15 11:06:14 -07001669 int rc;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001670
1671 rc = intel_pstate_init_cpu(policy->cpu);
1672 if (rc)
1673 return rc;
1674
1675 cpu = all_cpu_data[policy->cpu];
1676
Prarit Bhargava51443fb2015-10-15 07:34:15 -04001677 if (limits->min_perf_pct == 100 && limits->max_perf_pct == 100)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001678 policy->policy = CPUFREQ_POLICY_PERFORMANCE;
1679 else
1680 policy->policy = CPUFREQ_POLICY_POWERSAVE;
1681
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001682 /*
1683 * We need sane value in the cpu->perf_limits, so inherit from global
1684 * perf_limits limits, which are seeded with values based on the
1685 * CONFIG_CPU_FREQ_DEFAULT_GOV_*, during boot up.
1686 */
1687 if (per_cpu_limits)
1688 memcpy(cpu->perf_limits, limits, sizeof(struct perf_limits));
1689
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001690 policy->min = cpu->pstate.min_pstate * cpu->pstate.scaling;
1691 policy->max = cpu->pstate.turbo_pstate * cpu->pstate.scaling;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001692
1693 /* cpuinfo and default policy values */
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001694 policy->cpuinfo.min_freq = cpu->pstate.min_pstate * cpu->pstate.scaling;
Srinivas Pandruvada983e6002016-06-07 17:38:53 -07001695 update_turbo_state();
1696 policy->cpuinfo.max_freq = limits->turbo_disabled ?
1697 cpu->pstate.max_pstate : cpu->pstate.turbo_pstate;
1698 policy->cpuinfo.max_freq *= cpu->pstate.scaling;
1699
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07001700 intel_pstate_init_acpi_perf_limits(policy);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001701 policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL;
1702 cpumask_set_cpu(policy->cpu, policy->cpus);
1703
1704 return 0;
1705}
1706
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07001707static int intel_pstate_cpu_exit(struct cpufreq_policy *policy)
1708{
1709 intel_pstate_exit_perf_limits(policy);
1710
1711 return 0;
1712}
1713
Dirk Brandewie93f08222013-02-06 09:02:13 -08001714static struct cpufreq_driver intel_pstate_driver = {
1715 .flags = CPUFREQ_CONST_LOOPS,
1716 .verify = intel_pstate_verify_policy,
1717 .setpolicy = intel_pstate_set_policy,
Rafael J. Wysockiba41e1b2016-05-02 02:27:19 +02001718 .resume = intel_pstate_hwp_set_policy,
Dirk Brandewie93f08222013-02-06 09:02:13 -08001719 .get = intel_pstate_get,
1720 .init = intel_pstate_cpu_init,
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07001721 .exit = intel_pstate_cpu_exit,
Dirk Brandewiebb180082014-03-19 08:45:54 -07001722 .stop_cpu = intel_pstate_stop_cpu,
Dirk Brandewie93f08222013-02-06 09:02:13 -08001723 .name = "intel_pstate",
Dirk Brandewie93f08222013-02-06 09:02:13 -08001724};
1725
Jisheng Zhangeed43602016-06-27 18:07:16 +08001726static int no_load __initdata;
1727static int no_hwp __initdata;
1728static int hwp_only __initdata;
Jisheng Zhang29327c82016-06-27 18:07:17 +08001729static unsigned int force_load __initdata;
Dirk Brandewie6be26492013-02-15 22:55:10 +01001730
Jisheng Zhang29327c82016-06-27 18:07:17 +08001731static int __init intel_pstate_msrs_not_valid(void)
Dirk Brandewieb563b4e2013-03-22 01:29:28 +01001732{
Dirk Brandewie016c8152013-10-21 09:20:34 -07001733 if (!pstate_funcs.get_max() ||
Stratos Karafotisc4108332014-07-18 08:37:23 -07001734 !pstate_funcs.get_min() ||
1735 !pstate_funcs.get_turbo())
Dirk Brandewieb563b4e2013-03-22 01:29:28 +01001736 return -ENODEV;
1737
Dirk Brandewieb563b4e2013-03-22 01:29:28 +01001738 return 0;
1739}
Dirk Brandewie016c8152013-10-21 09:20:34 -07001740
Jisheng Zhang29327c82016-06-27 18:07:17 +08001741static void __init copy_pid_params(struct pstate_adjust_policy *policy)
Dirk Brandewie016c8152013-10-21 09:20:34 -07001742{
1743 pid_params.sample_rate_ms = policy->sample_rate_ms;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001744 pid_params.sample_rate_ns = pid_params.sample_rate_ms * NSEC_PER_MSEC;
Dirk Brandewie016c8152013-10-21 09:20:34 -07001745 pid_params.p_gain_pct = policy->p_gain_pct;
1746 pid_params.i_gain_pct = policy->i_gain_pct;
1747 pid_params.d_gain_pct = policy->d_gain_pct;
1748 pid_params.deadband = policy->deadband;
1749 pid_params.setpoint = policy->setpoint;
1750}
1751
Jisheng Zhang29327c82016-06-27 18:07:17 +08001752static void __init copy_cpu_funcs(struct pstate_funcs *funcs)
Dirk Brandewie016c8152013-10-21 09:20:34 -07001753{
1754 pstate_funcs.get_max = funcs->get_max;
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -07001755 pstate_funcs.get_max_physical = funcs->get_max_physical;
Dirk Brandewie016c8152013-10-21 09:20:34 -07001756 pstate_funcs.get_min = funcs->get_min;
1757 pstate_funcs.get_turbo = funcs->get_turbo;
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001758 pstate_funcs.get_scaling = funcs->get_scaling;
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001759 pstate_funcs.get_val = funcs->get_val;
Dirk Brandewie007bea02013-12-18 10:32:39 -08001760 pstate_funcs.get_vid = funcs->get_vid;
Philippe Longepe157386b2015-12-04 17:40:30 +01001761 pstate_funcs.get_target_pstate = funcs->get_target_pstate;
1762
Dirk Brandewie016c8152013-10-21 09:20:34 -07001763}
1764
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07001765#ifdef CONFIG_ACPI
Adrian Huangfbbcdc02013-10-31 23:24:05 +08001766
Jisheng Zhang29327c82016-06-27 18:07:17 +08001767static bool __init intel_pstate_no_acpi_pss(void)
Adrian Huangfbbcdc02013-10-31 23:24:05 +08001768{
1769 int i;
1770
1771 for_each_possible_cpu(i) {
1772 acpi_status status;
1773 union acpi_object *pss;
1774 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1775 struct acpi_processor *pr = per_cpu(processors, i);
1776
1777 if (!pr)
1778 continue;
1779
1780 status = acpi_evaluate_object(pr->handle, "_PSS", NULL, &buffer);
1781 if (ACPI_FAILURE(status))
1782 continue;
1783
1784 pss = buffer.pointer;
1785 if (pss && pss->type == ACPI_TYPE_PACKAGE) {
1786 kfree(pss);
1787 return false;
1788 }
1789
1790 kfree(pss);
1791 }
1792
1793 return true;
1794}
1795
Jisheng Zhang29327c82016-06-27 18:07:17 +08001796static bool __init intel_pstate_has_acpi_ppc(void)
ethan zhao966916e2014-12-01 11:32:08 +09001797{
1798 int i;
1799
1800 for_each_possible_cpu(i) {
1801 struct acpi_processor *pr = per_cpu(processors, i);
1802
1803 if (!pr)
1804 continue;
1805 if (acpi_has_method(pr->handle, "_PPC"))
1806 return true;
1807 }
1808 return false;
1809}
1810
1811enum {
1812 PSS,
1813 PPC,
1814};
1815
Adrian Huangfbbcdc02013-10-31 23:24:05 +08001816struct hw_vendor_info {
1817 u16 valid;
1818 char oem_id[ACPI_OEM_ID_SIZE];
1819 char oem_table_id[ACPI_OEM_TABLE_ID_SIZE];
ethan zhao966916e2014-12-01 11:32:08 +09001820 int oem_pwr_table;
Adrian Huangfbbcdc02013-10-31 23:24:05 +08001821};
1822
1823/* Hardware vendor-specific info that has its own power management modes */
Jisheng Zhang29327c82016-06-27 18:07:17 +08001824static struct hw_vendor_info vendor_info[] __initdata = {
ethan zhao966916e2014-12-01 11:32:08 +09001825 {1, "HP ", "ProLiant", PSS},
1826 {1, "ORACLE", "X4-2 ", PPC},
1827 {1, "ORACLE", "X4-2L ", PPC},
1828 {1, "ORACLE", "X4-2B ", PPC},
1829 {1, "ORACLE", "X3-2 ", PPC},
1830 {1, "ORACLE", "X3-2L ", PPC},
1831 {1, "ORACLE", "X3-2B ", PPC},
1832 {1, "ORACLE", "X4470M2 ", PPC},
1833 {1, "ORACLE", "X4270M3 ", PPC},
1834 {1, "ORACLE", "X4270M2 ", PPC},
1835 {1, "ORACLE", "X4170M2 ", PPC},
Ethan Zhao5aecc3c2015-08-05 09:28:50 +09001836 {1, "ORACLE", "X4170 M3", PPC},
1837 {1, "ORACLE", "X4275 M3", PPC},
1838 {1, "ORACLE", "X6-2 ", PPC},
1839 {1, "ORACLE", "Sudbury ", PPC},
Adrian Huangfbbcdc02013-10-31 23:24:05 +08001840 {0, "", ""},
1841};
1842
Jisheng Zhang29327c82016-06-27 18:07:17 +08001843static bool __init intel_pstate_platform_pwr_mgmt_exists(void)
Adrian Huangfbbcdc02013-10-31 23:24:05 +08001844{
1845 struct acpi_table_header hdr;
1846 struct hw_vendor_info *v_info;
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001847 const struct x86_cpu_id *id;
1848 u64 misc_pwr;
1849
1850 id = x86_match_cpu(intel_pstate_cpu_oob_ids);
1851 if (id) {
1852 rdmsrl(MSR_MISC_PWR_MGMT, misc_pwr);
1853 if ( misc_pwr & (1 << 8))
1854 return true;
1855 }
Adrian Huangfbbcdc02013-10-31 23:24:05 +08001856
Stratos Karafotisc4108332014-07-18 08:37:23 -07001857 if (acpi_disabled ||
1858 ACPI_FAILURE(acpi_get_table_header(ACPI_SIG_FADT, 0, &hdr)))
Adrian Huangfbbcdc02013-10-31 23:24:05 +08001859 return false;
1860
1861 for (v_info = vendor_info; v_info->valid; v_info++) {
Stratos Karafotisc4108332014-07-18 08:37:23 -07001862 if (!strncmp(hdr.oem_id, v_info->oem_id, ACPI_OEM_ID_SIZE) &&
ethan zhao966916e2014-12-01 11:32:08 +09001863 !strncmp(hdr.oem_table_id, v_info->oem_table_id,
1864 ACPI_OEM_TABLE_ID_SIZE))
1865 switch (v_info->oem_pwr_table) {
1866 case PSS:
1867 return intel_pstate_no_acpi_pss();
1868 case PPC:
Ethan Zhaoaa4ea342014-12-09 10:43:19 +09001869 return intel_pstate_has_acpi_ppc() &&
1870 (!force_load);
ethan zhao966916e2014-12-01 11:32:08 +09001871 }
Adrian Huangfbbcdc02013-10-31 23:24:05 +08001872 }
1873
1874 return false;
1875}
1876#else /* CONFIG_ACPI not enabled */
1877static inline bool intel_pstate_platform_pwr_mgmt_exists(void) { return false; }
ethan zhao966916e2014-12-01 11:32:08 +09001878static inline bool intel_pstate_has_acpi_ppc(void) { return false; }
Adrian Huangfbbcdc02013-10-31 23:24:05 +08001879#endif /* CONFIG_ACPI */
1880
Srinivas Pandruvada7791e4a2016-02-25 15:09:19 -08001881static const struct x86_cpu_id hwp_support_ids[] __initconst = {
1882 { X86_VENDOR_INTEL, 6, X86_MODEL_ANY, X86_FEATURE_HWP },
1883 {}
1884};
1885
Dirk Brandewie93f08222013-02-06 09:02:13 -08001886static int __init intel_pstate_init(void)
1887{
Dirk Brandewie907cc902013-03-05 14:15:27 -08001888 int cpu, rc = 0;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001889 const struct x86_cpu_id *id;
Borislav Petkov64df1fd2015-04-03 15:19:53 +02001890 struct cpu_defaults *cpu_def;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001891
Dirk Brandewie6be26492013-02-15 22:55:10 +01001892 if (no_load)
1893 return -ENODEV;
1894
Srinivas Pandruvada7791e4a2016-02-25 15:09:19 -08001895 if (x86_match_cpu(hwp_support_ids) && !no_hwp) {
1896 copy_cpu_funcs(&core_params.funcs);
1897 hwp_active++;
1898 goto hwp_cpu_matched;
1899 }
1900
Dirk Brandewie93f08222013-02-06 09:02:13 -08001901 id = x86_match_cpu(intel_pstate_cpu_ids);
1902 if (!id)
1903 return -ENODEV;
1904
Borislav Petkov64df1fd2015-04-03 15:19:53 +02001905 cpu_def = (struct cpu_defaults *)id->driver_data;
Dirk Brandewie016c8152013-10-21 09:20:34 -07001906
Borislav Petkov64df1fd2015-04-03 15:19:53 +02001907 copy_pid_params(&cpu_def->pid_policy);
1908 copy_cpu_funcs(&cpu_def->funcs);
Dirk Brandewie016c8152013-10-21 09:20:34 -07001909
Dirk Brandewieb563b4e2013-03-22 01:29:28 +01001910 if (intel_pstate_msrs_not_valid())
1911 return -ENODEV;
1912
Srinivas Pandruvada7791e4a2016-02-25 15:09:19 -08001913hwp_cpu_matched:
1914 /*
1915 * The Intel pstate driver will be ignored if the platform
1916 * firmware has its own power management modes.
1917 */
1918 if (intel_pstate_platform_pwr_mgmt_exists())
1919 return -ENODEV;
1920
Joe Perches4836df12016-04-05 13:28:23 -07001921 pr_info("Intel P-state driver initializing\n");
Dirk Brandewie93f08222013-02-06 09:02:13 -08001922
Wei Yongjunb57ffac2013-05-13 08:03:43 +00001923 all_cpu_data = vzalloc(sizeof(void *) * num_possible_cpus());
Dirk Brandewie93f08222013-02-06 09:02:13 -08001924 if (!all_cpu_data)
1925 return -ENOMEM;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001926
Kristen Carlson Accardid64c3b02015-02-06 13:41:55 -08001927 if (!hwp_active && hwp_only)
1928 goto out;
1929
Dirk Brandewie93f08222013-02-06 09:02:13 -08001930 rc = cpufreq_register_driver(&intel_pstate_driver);
1931 if (rc)
1932 goto out;
1933
1934 intel_pstate_debug_expose_params();
1935 intel_pstate_sysfs_expose_params();
Dirk Brandewieb69880f2014-01-16 10:32:25 -08001936
Srinivas Pandruvada7791e4a2016-02-25 15:09:19 -08001937 if (hwp_active)
Joe Perches4836df12016-04-05 13:28:23 -07001938 pr_info("HWP enabled\n");
Srinivas Pandruvada7791e4a2016-02-25 15:09:19 -08001939
Dirk Brandewie93f08222013-02-06 09:02:13 -08001940 return rc;
1941out:
Dirk Brandewie907cc902013-03-05 14:15:27 -08001942 get_online_cpus();
1943 for_each_online_cpu(cpu) {
1944 if (all_cpu_data[cpu]) {
Rafael J. Wysockibb6ab522016-03-31 17:42:15 +02001945 intel_pstate_clear_update_util_hook(cpu);
Dirk Brandewie907cc902013-03-05 14:15:27 -08001946 kfree(all_cpu_data[cpu]);
1947 }
1948 }
1949
1950 put_online_cpus();
1951 vfree(all_cpu_data);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001952 return -ENODEV;
1953}
1954device_initcall(intel_pstate_init);
1955
Dirk Brandewie6be26492013-02-15 22:55:10 +01001956static int __init intel_pstate_setup(char *str)
1957{
1958 if (!str)
1959 return -EINVAL;
1960
1961 if (!strcmp(str, "disable"))
1962 no_load = 1;
Prarit Bhargava539342f2015-10-22 09:43:31 -04001963 if (!strcmp(str, "no_hwp")) {
Joe Perches4836df12016-04-05 13:28:23 -07001964 pr_info("HWP disabled\n");
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001965 no_hwp = 1;
Prarit Bhargava539342f2015-10-22 09:43:31 -04001966 }
Ethan Zhaoaa4ea342014-12-09 10:43:19 +09001967 if (!strcmp(str, "force"))
1968 force_load = 1;
Kristen Carlson Accardid64c3b02015-02-06 13:41:55 -08001969 if (!strcmp(str, "hwp_only"))
1970 hwp_only = 1;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001971 if (!strcmp(str, "per_cpu_perf_limits"))
1972 per_cpu_limits = true;
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07001973
1974#ifdef CONFIG_ACPI
1975 if (!strcmp(str, "support_acpi_ppc"))
1976 acpi_ppc = true;
1977#endif
1978
Dirk Brandewie6be26492013-02-15 22:55:10 +01001979 return 0;
1980}
1981early_param("intel_pstate", intel_pstate_setup);
1982
Dirk Brandewie93f08222013-02-06 09:02:13 -08001983MODULE_AUTHOR("Dirk Brandewie <dirk.j.brandewie@intel.com>");
1984MODULE_DESCRIPTION("'intel_pstate' - P state driver Intel Core processors");
1985MODULE_LICENSE("GPL");