blob: ece120da33538d2333c9f0082196b3080d364e2a [file] [log] [blame]
Dirk Brandewie93f08222013-02-06 09:02:13 -08001/*
Srinivas Pandruvadad1b68482013-04-09 22:38:18 +00002 * intel_pstate.c: Native P state management for Intel processors
Dirk Brandewie93f08222013-02-06 09:02:13 -08003 *
4 * (C) Copyright 2012 Intel Corporation
5 * Author: Dirk Brandewie <dirk.j.brandewie@intel.com>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; version 2
10 * of the License.
11 */
12
Joe Perches4836df12016-04-05 13:28:23 -070013#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14
Dirk Brandewie93f08222013-02-06 09:02:13 -080015#include <linux/kernel.h>
16#include <linux/kernel_stat.h>
17#include <linux/module.h>
18#include <linux/ktime.h>
19#include <linux/hrtimer.h>
20#include <linux/tick.h>
21#include <linux/slab.h>
Ingo Molnar55687da2017-02-08 18:51:31 +010022#include <linux/sched/cpufreq.h>
Dirk Brandewie93f08222013-02-06 09:02:13 -080023#include <linux/list.h>
24#include <linux/cpu.h>
25#include <linux/cpufreq.h>
26#include <linux/sysfs.h>
27#include <linux/types.h>
28#include <linux/fs.h>
Adrian Huangfbbcdc02013-10-31 23:24:05 +080029#include <linux/acpi.h>
Stephen Rothwelld6472302015-06-02 19:01:38 +100030#include <linux/vmalloc.h>
Dirk Brandewie93f08222013-02-06 09:02:13 -080031#include <trace/events/power.h>
32
33#include <asm/div64.h>
34#include <asm/msr.h>
35#include <asm/cpu_device_id.h>
Borislav Petkov64df1fd2015-04-03 15:19:53 +020036#include <asm/cpufeature.h>
Dave Hansen5b20c942016-06-02 17:19:45 -070037#include <asm/intel-family.h>
Dirk Brandewie93f08222013-02-06 09:02:13 -080038
Rafael J. Wysockid77d4882017-08-10 01:09:16 +020039#define INTEL_PSTATE_SAMPLING_INTERVAL (10 * NSEC_PER_MSEC)
Rafael J. Wysockieabd22c2017-03-28 00:15:37 +020040
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +010041#define INTEL_CPUFREQ_TRANSITION_LATENCY 20000
Rafael J. Wysocki1b72e7f2017-04-11 00:20:41 +020042#define INTEL_CPUFREQ_TRANSITION_DELAY 500
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +010043
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -070044#ifdef CONFIG_ACPI
45#include <acpi/processor.h>
Rafael J. Wysocki17669002016-11-22 12:24:00 -080046#include <acpi/cppc_acpi.h>
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -070047#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)
Srinivas Pandruvadad5dd33d2016-11-21 16:33:20 -080055#define fp_ext_toint(X) ((X) >> EXT_FRAC_BITS)
56#define int_ext_tofp(X) ((int64_t)(X) << EXT_FRAC_BITS)
Rafael J. Wysockia1c97872016-05-11 19:09:12 +020057
Dirk Brandewie93f08222013-02-06 09:02:13 -080058static inline int32_t mul_fp(int32_t x, int32_t y)
59{
60 return ((int64_t)x * (int64_t)y) >> FRAC_BITS;
61}
62
Prarit Bhargava7180ddd2015-06-15 13:43:29 -040063static inline int32_t div_fp(s64 x, s64 y)
Dirk Brandewie93f08222013-02-06 09:02:13 -080064{
Prarit Bhargava7180ddd2015-06-15 13:43:29 -040065 return div64_s64((int64_t)x << FRAC_BITS, y);
Dirk Brandewie93f08222013-02-06 09:02:13 -080066}
67
Dirk Brandewied022a652014-10-13 08:37:44 -070068static inline int ceiling_fp(int32_t x)
69{
70 int mask, ret;
71
72 ret = fp_toint(x);
73 mask = (1 << FRAC_BITS) - 1;
74 if (x & mask)
75 ret += 1;
76 return ret;
77}
78
Rafael J. Wysockiff35f022017-03-28 00:09:18 +020079static inline int32_t percent_fp(int percent)
80{
81 return div_fp(percent, 100);
82}
83
Rafael J. Wysockia1c97872016-05-11 19:09:12 +020084static inline u64 mul_ext_fp(u64 x, u64 y)
85{
86 return (x * y) >> EXT_FRAC_BITS;
87}
88
89static inline u64 div_ext_fp(u64 x, u64 y)
90{
91 return div64_u64(x << EXT_FRAC_BITS, y);
92}
93
Rafael J. Wysockie4c204c2017-03-14 16:18:34 +010094static inline int32_t percent_ext_fp(int percent)
95{
96 return div_ext_fp(percent, 100);
97}
98
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -070099/**
100 * struct sample - Store performance sample
Rafael J. Wysockia1c97872016-05-11 19:09:12 +0200101 * @core_avg_perf: Ratio of APERF/MPERF which is the actual average
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700102 * performance during last sample period
103 * @busy_scaled: Scaled busy value which is used to calculate next
Rafael J. Wysockia1c97872016-05-11 19:09:12 +0200104 * P state. This can be different than core_avg_perf
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700105 * to account for cpu idle period
106 * @aperf: Difference of actual performance frequency clock count
107 * read from APERF MSR between last and current sample
108 * @mperf: Difference of maximum performance frequency clock count
109 * read from MPERF MSR between last and current sample
110 * @tsc: Difference of time stamp counter between last and
111 * current sample
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700112 * @time: Current time from scheduler
113 *
114 * This structure is used in the cpudata structure to store performance sample
115 * data for choosing next P State.
116 */
Dirk Brandewie93f08222013-02-06 09:02:13 -0800117struct sample {
Rafael J. Wysockia1c97872016-05-11 19:09:12 +0200118 int32_t core_avg_perf;
Philippe Longepe157386b2015-12-04 17:40:30 +0100119 int32_t busy_scaled;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800120 u64 aperf;
121 u64 mperf;
Doug Smythies4055fad2015-04-11 21:10:26 -0700122 u64 tsc;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +0100123 u64 time;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800124};
125
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700126/**
127 * struct pstate_data - Store P state data
128 * @current_pstate: Current requested P state
129 * @min_pstate: Min P state possible for this platform
130 * @max_pstate: Max P state possible for this platform
131 * @max_pstate_physical:This is physical Max P state for a processor
132 * This can be higher than the max_pstate which can
133 * be limited by platform thermal design power limits
134 * @scaling: Scaling factor to convert frequency to cpufreq
135 * frequency units
136 * @turbo_pstate: Max Turbo P state possible for this platform
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +0100137 * @max_freq: @max_pstate frequency in cpufreq units
138 * @turbo_freq: @turbo_pstate frequency in cpufreq units
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700139 *
140 * Stores the per cpu model P state limits and current P state.
141 */
Dirk Brandewie93f08222013-02-06 09:02:13 -0800142struct pstate_data {
143 int current_pstate;
144 int min_pstate;
145 int max_pstate;
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -0700146 int max_pstate_physical;
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700147 int scaling;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800148 int turbo_pstate;
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +0100149 unsigned int max_freq;
150 unsigned int turbo_freq;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800151};
152
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700153/**
154 * struct vid_data - Stores voltage information data
155 * @min: VID data for this platform corresponding to
156 * the lowest P state
157 * @max: VID data corresponding to the highest P State.
158 * @turbo: VID data for turbo P state
159 * @ratio: Ratio of (vid max - vid min) /
160 * (max P state - Min P State)
161 *
162 * Stores the voltage data for DVFS (Dynamic Voltage and Frequency Scaling)
163 * This data is used in Atom platforms, where in addition to target P state,
164 * the voltage data needs to be specified to select next P State.
165 */
Dirk Brandewie007bea02013-12-18 10:32:39 -0800166struct vid_data {
Dirk Brandewie21855ff2014-05-08 12:57:23 -0700167 int min;
168 int max;
169 int turbo;
Dirk Brandewie007bea02013-12-18 10:32:39 -0800170 int32_t ratio;
171};
172
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700173/**
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +0100174 * struct global_params - Global parameters, mostly tunable via sysfs.
175 * @no_turbo: Whether or not to use turbo P-states.
176 * @turbo_disabled: Whethet or not turbo P-states are available at all,
177 * based on the MSR_IA32_MISC_ENABLE value and whether or
178 * not the maximum reported turbo P-state is different from
179 * the maximum reported non-turbo one.
180 * @min_perf_pct: Minimum capacity limit in percent of the maximum turbo
181 * P-state capacity.
182 * @max_perf_pct: Maximum capacity limit in percent of the maximum turbo
183 * P-state capacity.
184 */
185struct global_params {
186 bool no_turbo;
187 bool turbo_disabled;
188 int max_perf_pct;
189 int min_perf_pct;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700190};
191
192/**
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700193 * struct cpudata - Per CPU instance data storage
194 * @cpu: CPU number for this instance data
Rafael J. Wysocki2f1d4072016-10-24 23:20:25 +0200195 * @policy: CPUFreq policy value
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700196 * @update_util: CPUFreq utility callback information
Chen Yu4578ee7e2016-05-11 14:33:08 +0800197 * @update_util_set: CPUFreq utility callback is set
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +0200198 * @iowait_boost: iowait-related boost fraction
199 * @last_update: Time of the last update.
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700200 * @pstate: Stores P state limits for this CPU
201 * @vid: Stores VID limits for this CPU
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700202 * @last_sample_time: Last Sample time
Srinivas Pandruvada6e34e1f2017-07-13 15:03:51 -0700203 * @aperf_mperf_shift: Number of clock cycles after aperf, merf is incremented
204 * This shift is a multiplier to mperf delta to
205 * calculate CPU busy.
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700206 * @prev_aperf: Last APERF value read from APERF MSR
207 * @prev_mperf: Last MPERF value read from MPERF MSR
208 * @prev_tsc: Last timestamp counter (TSC) value
209 * @prev_cummulative_iowait: IO Wait time difference from last and
210 * current sample
211 * @sample: Storage for storing last Sample data
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -0700212 * @min_perf_ratio: Minimum capacity in terms of PERF or HWP ratios
213 * @max_perf_ratio: Maximum capacity in terms of PERF or HWP ratios
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700214 * @acpi_perf_data: Stores ACPI perf information read from _PSS
215 * @valid_pss_table: Set to true for valid ACPI _PSS entries found
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800216 * @epp_powersave: Last saved HWP energy performance preference
217 * (EPP) or energy performance bias (EPB),
218 * when policy switched to performance
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800219 * @epp_policy: Last saved policy used to set EPP/EPB
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800220 * @epp_default: Power on default HWP energy performance
221 * preference/bias
222 * @epp_saved: Saved EPP/EPB during system suspend or CPU offline
223 * operation
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -0700224 * @hwp_req_cached: Cached value of the last HWP Request MSR
225 * @hwp_cap_cached: Cached value of the last HWP Capabilities MSR
Srinivas Pandruvada52ccc4312018-06-05 14:42:40 -0700226 * @last_io_update: Last time when IO wake flag was set
227 * @sched_flags: Store scheduler flags for possible cross CPU update
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -0700228 * @hwp_boost_min: Last HWP boosted min performance
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700229 *
230 * This structure stores per CPU instance data for all CPUs.
231 */
Dirk Brandewie93f08222013-02-06 09:02:13 -0800232struct cpudata {
233 int cpu;
234
Rafael J. Wysocki2f1d4072016-10-24 23:20:25 +0200235 unsigned int policy;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +0100236 struct update_util_data update_util;
Chen Yu4578ee7e2016-05-11 14:33:08 +0800237 bool update_util_set;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800238
Dirk Brandewie93f08222013-02-06 09:02:13 -0800239 struct pstate_data pstate;
Dirk Brandewie007bea02013-12-18 10:32:39 -0800240 struct vid_data vid;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800241
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +0200242 u64 last_update;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +0100243 u64 last_sample_time;
Srinivas Pandruvada6e34e1f2017-07-13 15:03:51 -0700244 u64 aperf_mperf_shift;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800245 u64 prev_aperf;
246 u64 prev_mperf;
Doug Smythies4055fad2015-04-11 21:10:26 -0700247 u64 prev_tsc;
Philippe Longepe63d1d652015-12-04 17:40:35 +0100248 u64 prev_cummulative_iowait;
Dirk Brandewied37e2b72014-02-12 10:01:04 -0800249 struct sample sample;
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -0700250 int32_t min_perf_ratio;
251 int32_t max_perf_ratio;
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700252#ifdef CONFIG_ACPI
253 struct acpi_processor_performance acpi_perf_data;
254 bool valid_pss_table;
255#endif
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +0200256 unsigned int iowait_boost;
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800257 s16 epp_powersave;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800258 s16 epp_policy;
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800259 s16 epp_default;
260 s16 epp_saved;
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -0700261 u64 hwp_req_cached;
262 u64 hwp_cap_cached;
Srinivas Pandruvada52ccc4312018-06-05 14:42:40 -0700263 u64 last_io_update;
264 unsigned int sched_flags;
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -0700265 u32 hwp_boost_min;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800266};
267
268static struct cpudata **all_cpu_data;
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700269
270/**
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700271 * struct pstate_funcs - Per CPU model specific callbacks
272 * @get_max: Callback to get maximum non turbo effective P state
273 * @get_max_physical: Callback to get maximum non turbo physical P state
274 * @get_min: Callback to get minimum P state
275 * @get_turbo: Callback to get turbo P state
276 * @get_scaling: Callback to get frequency scaling factor
277 * @get_val: Callback to convert P state to actual MSR write value
278 * @get_vid: Callback to get VID data for Atom platforms
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700279 *
280 * Core and Atom CPU models have different way to get P State limits. This
281 * structure is used to store those callbacks.
282 */
Dirk Brandewie016c8152013-10-21 09:20:34 -0700283struct pstate_funcs {
284 int (*get_max)(void);
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -0700285 int (*get_max_physical)(void);
Dirk Brandewie016c8152013-10-21 09:20:34 -0700286 int (*get_min)(void);
287 int (*get_turbo)(void);
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700288 int (*get_scaling)(void);
Srinivas Pandruvada6e34e1f2017-07-13 15:03:51 -0700289 int (*get_aperf_mperf_shift)(void);
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +0100290 u64 (*get_val)(struct cpudata*, int pstate);
Dirk Brandewie007bea02013-12-18 10:32:39 -0800291 void (*get_vid)(struct cpudata *);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800292};
293
Jisheng Zhang4a7cb7a2016-06-27 18:07:18 +0800294static struct pstate_funcs pstate_funcs __read_mostly;
Rafael J. Wysocki5c439052017-03-28 00:05:44 +0200295
Jisheng Zhang4a7cb7a2016-06-27 18:07:18 +0800296static int hwp_active __read_mostly;
Srinivas Pandruvadaff7c9912018-06-18 12:47:45 -0700297static int hwp_mode_bdw __read_mostly;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700298static bool per_cpu_limits __read_mostly;
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -0700299static bool hwp_boost __read_mostly;
Dirk Brandewie016c8152013-10-21 09:20:34 -0700300
Rafael J. Wysockiee8df892017-03-28 00:13:00 +0200301static struct cpufreq_driver *intel_pstate_driver __read_mostly;
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +0100302
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700303#ifdef CONFIG_ACPI
304static bool acpi_ppc;
305#endif
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700306
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +0100307static struct global_params global;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800308
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +0100309static DEFINE_MUTEX(intel_pstate_driver_lock);
Srinivas Pandruvadaa410c03d2016-10-28 10:44:52 -0700310static DEFINE_MUTEX(intel_pstate_limits_lock);
311
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700312#ifdef CONFIG_ACPI
Srinivas Pandruvada2b3ec762016-04-27 15:48:08 -0700313
314static bool intel_pstate_get_ppc_enable_status(void)
315{
316 if (acpi_gbl_FADT.preferred_profile == PM_ENTERPRISE_SERVER ||
317 acpi_gbl_FADT.preferred_profile == PM_PERFORMANCE_SERVER)
318 return true;
319
320 return acpi_ppc;
321}
322
Rafael J. Wysocki17669002016-11-22 12:24:00 -0800323#ifdef CONFIG_ACPI_CPPC_LIB
324
325/* The work item is needed to avoid CPU hotplug locking issues */
326static void intel_pstste_sched_itmt_work_fn(struct work_struct *work)
327{
328 sched_set_itmt_support();
329}
330
331static DECLARE_WORK(sched_itmt_work, intel_pstste_sched_itmt_work_fn);
332
333static void intel_pstate_set_itmt_prio(int cpu)
334{
335 struct cppc_perf_caps cppc_perf;
336 static u32 max_highest_perf = 0, min_highest_perf = U32_MAX;
337 int ret;
338
339 ret = cppc_get_perf_caps(cpu, &cppc_perf);
340 if (ret)
341 return;
342
343 /*
344 * The priorities can be set regardless of whether or not
345 * sched_set_itmt_support(true) has been called and it is valid to
346 * update them at any time after it has been called.
347 */
348 sched_set_itmt_core_prio(cppc_perf.highest_perf, cpu);
349
350 if (max_highest_perf <= min_highest_perf) {
351 if (cppc_perf.highest_perf > max_highest_perf)
352 max_highest_perf = cppc_perf.highest_perf;
353
354 if (cppc_perf.highest_perf < min_highest_perf)
355 min_highest_perf = cppc_perf.highest_perf;
356
357 if (max_highest_perf > min_highest_perf) {
358 /*
359 * This code can be run during CPU online under the
360 * CPU hotplug locks, so sched_set_itmt_support()
361 * cannot be called from here. Queue up a work item
362 * to invoke it.
363 */
364 schedule_work(&sched_itmt_work);
365 }
366 }
367}
368#else
369static void intel_pstate_set_itmt_prio(int cpu)
370{
371}
372#endif
373
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700374static void intel_pstate_init_acpi_perf_limits(struct cpufreq_policy *policy)
375{
376 struct cpudata *cpu;
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700377 int ret;
378 int i;
379
Rafael J. Wysocki17669002016-11-22 12:24:00 -0800380 if (hwp_active) {
381 intel_pstate_set_itmt_prio(policy->cpu);
Srinivas Pandruvadae59a8f72016-05-04 15:07:34 -0700382 return;
Rafael J. Wysocki17669002016-11-22 12:24:00 -0800383 }
Srinivas Pandruvadae59a8f72016-05-04 15:07:34 -0700384
Srinivas Pandruvada2b3ec762016-04-27 15:48:08 -0700385 if (!intel_pstate_get_ppc_enable_status())
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700386 return;
387
388 cpu = all_cpu_data[policy->cpu];
389
390 ret = acpi_processor_register_performance(&cpu->acpi_perf_data,
391 policy->cpu);
392 if (ret)
393 return;
394
395 /*
396 * Check if the control value in _PSS is for PERF_CTL MSR, which should
397 * guarantee that the states returned by it map to the states in our
398 * list directly.
399 */
400 if (cpu->acpi_perf_data.control_register.space_id !=
401 ACPI_ADR_SPACE_FIXED_HARDWARE)
402 goto err;
403
404 /*
405 * If there is only one entry _PSS, simply ignore _PSS and continue as
406 * usual without taking _PSS into account
407 */
408 if (cpu->acpi_perf_data.state_count < 2)
409 goto err;
410
411 pr_debug("CPU%u - ACPI _PSS perf data\n", policy->cpu);
412 for (i = 0; i < cpu->acpi_perf_data.state_count; i++) {
413 pr_debug(" %cP%d: %u MHz, %u mW, 0x%x\n",
414 (i == cpu->acpi_perf_data.state ? '*' : ' '), i,
415 (u32) cpu->acpi_perf_data.states[i].core_frequency,
416 (u32) cpu->acpi_perf_data.states[i].power,
417 (u32) cpu->acpi_perf_data.states[i].control);
418 }
419
420 /*
421 * The _PSS table doesn't contain whole turbo frequency range.
422 * This just contains +1 MHZ above the max non turbo frequency,
423 * with control value corresponding to max turbo ratio. But
424 * when cpufreq set policy is called, it will call with this
425 * max frequency, which will cause a reduced performance as
426 * this driver uses real max turbo frequency as the max
427 * frequency. So correct this frequency in _PSS table to
Srinivas Pandruvadab00345d2016-06-14 23:12:59 -0700428 * correct max turbo frequency based on the turbo state.
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700429 * Also need to convert to MHz as _PSS freq is in MHz.
430 */
Rafael J. Wysocki7de32552017-03-18 00:57:39 +0100431 if (!global.turbo_disabled)
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700432 cpu->acpi_perf_data.states[0].core_frequency =
433 policy->cpuinfo.max_freq / 1000;
434 cpu->valid_pss_table = true;
Srinivas Pandruvada6cacd112016-05-29 23:31:23 -0700435 pr_debug("_PPC limits will be enforced\n");
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700436
437 return;
438
439 err:
440 cpu->valid_pss_table = false;
441 acpi_processor_unregister_performance(policy->cpu);
442}
443
444static void intel_pstate_exit_perf_limits(struct cpufreq_policy *policy)
445{
446 struct cpudata *cpu;
447
448 cpu = all_cpu_data[policy->cpu];
449 if (!cpu->valid_pss_table)
450 return;
451
452 acpi_processor_unregister_performance(policy->cpu);
453}
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700454#else
Arnd Bergmann7a3ba762016-11-25 17:50:20 +0100455static inline void intel_pstate_init_acpi_perf_limits(struct cpufreq_policy *policy)
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700456{
457}
458
Arnd Bergmann7a3ba762016-11-25 17:50:20 +0100459static inline void intel_pstate_exit_perf_limits(struct cpufreq_policy *policy)
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700460{
461}
462#endif
463
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700464static inline void update_turbo_state(void)
465{
466 u64 misc_en;
467 struct cpudata *cpu;
468
469 cpu = all_cpu_data[0];
470 rdmsrl(MSR_IA32_MISC_ENABLE, misc_en);
Rafael J. Wysocki7de32552017-03-18 00:57:39 +0100471 global.turbo_disabled =
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700472 (misc_en & MSR_IA32_MISC_ENABLE_TURBO_DISABLE ||
473 cpu->pstate.max_pstate == cpu->pstate.turbo_pstate);
474}
475
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +0100476static int min_perf_pct_min(void)
477{
478 struct cpudata *cpu = all_cpu_data[0];
Rafael J. Wysocki57caf4e2017-06-05 14:51:18 +0200479 int turbo_pstate = cpu->pstate.turbo_pstate;
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +0100480
Rafael J. Wysocki57caf4e2017-06-05 14:51:18 +0200481 return turbo_pstate ?
Srinivas Pandruvadad4436c02017-07-10 16:23:52 -0700482 (cpu->pstate.min_pstate * 100 / turbo_pstate) : 0;
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +0100483}
484
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800485static s16 intel_pstate_get_epb(struct cpudata *cpu_data)
486{
487 u64 epb;
488 int ret;
489
490 if (!static_cpu_has(X86_FEATURE_EPB))
491 return -ENXIO;
492
493 ret = rdmsrl_on_cpu(cpu_data->cpu, MSR_IA32_ENERGY_PERF_BIAS, &epb);
494 if (ret)
495 return (s16)ret;
496
497 return (s16)(epb & 0x0f);
498}
499
500static s16 intel_pstate_get_epp(struct cpudata *cpu_data, u64 hwp_req_data)
501{
502 s16 epp;
503
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800504 if (static_cpu_has(X86_FEATURE_HWP_EPP)) {
505 /*
506 * When hwp_req_data is 0, means that caller didn't read
507 * MSR_HWP_REQUEST, so need to read and get EPP.
508 */
509 if (!hwp_req_data) {
510 epp = rdmsrl_on_cpu(cpu_data->cpu, MSR_HWP_REQUEST,
511 &hwp_req_data);
512 if (epp)
513 return epp;
514 }
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800515 epp = (hwp_req_data >> 24) & 0xff;
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800516 } else {
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800517 /* When there is no EPP present, HWP uses EPB settings */
518 epp = intel_pstate_get_epb(cpu_data);
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800519 }
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800520
521 return epp;
522}
523
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800524static int intel_pstate_set_epb(int cpu, s16 pref)
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800525{
526 u64 epb;
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800527 int ret;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800528
529 if (!static_cpu_has(X86_FEATURE_EPB))
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800530 return -ENXIO;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800531
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800532 ret = rdmsrl_on_cpu(cpu, MSR_IA32_ENERGY_PERF_BIAS, &epb);
533 if (ret)
534 return ret;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800535
536 epb = (epb & ~0x0f) | pref;
537 wrmsrl_on_cpu(cpu, MSR_IA32_ENERGY_PERF_BIAS, epb);
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800538
539 return 0;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800540}
541
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800542/*
543 * EPP/EPB display strings corresponding to EPP index in the
544 * energy_perf_strings[]
545 * index String
546 *-------------------------------------
547 * 0 default
548 * 1 performance
549 * 2 balance_performance
550 * 3 balance_power
551 * 4 power
552 */
553static const char * const energy_perf_strings[] = {
554 "default",
555 "performance",
556 "balance_performance",
557 "balance_power",
558 "power",
559 NULL
560};
Len Brown3cedbc52017-05-01 23:06:08 -0400561static const unsigned int epp_values[] = {
562 HWP_EPP_PERFORMANCE,
563 HWP_EPP_BALANCE_PERFORMANCE,
564 HWP_EPP_BALANCE_POWERSAVE,
565 HWP_EPP_POWERSAVE
566};
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800567
568static int intel_pstate_get_energy_pref_index(struct cpudata *cpu_data)
569{
570 s16 epp;
571 int index = -EINVAL;
572
573 epp = intel_pstate_get_epp(cpu_data, 0);
574 if (epp < 0)
575 return epp;
576
577 if (static_cpu_has(X86_FEATURE_HWP_EPP)) {
Len Brown3cedbc52017-05-01 23:06:08 -0400578 if (epp == HWP_EPP_PERFORMANCE)
579 return 1;
580 if (epp <= HWP_EPP_BALANCE_PERFORMANCE)
581 return 2;
582 if (epp <= HWP_EPP_BALANCE_POWERSAVE)
583 return 3;
584 else
585 return 4;
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800586 } else if (static_cpu_has(X86_FEATURE_EPB)) {
587 /*
588 * Range:
589 * 0x00-0x03 : Performance
590 * 0x04-0x07 : Balance performance
591 * 0x08-0x0B : Balance power
592 * 0x0C-0x0F : Power
593 * The EPB is a 4 bit value, but our ranges restrict the
594 * value which can be set. Here only using top two bits
595 * effectively.
596 */
597 index = (epp >> 2) + 1;
598 }
599
600 return index;
601}
602
603static int intel_pstate_set_energy_pref_index(struct cpudata *cpu_data,
604 int pref_index)
605{
606 int epp = -EINVAL;
607 int ret;
608
609 if (!pref_index)
610 epp = cpu_data->epp_default;
611
612 mutex_lock(&intel_pstate_limits_lock);
613
614 if (static_cpu_has(X86_FEATURE_HWP_EPP)) {
615 u64 value;
616
617 ret = rdmsrl_on_cpu(cpu_data->cpu, MSR_HWP_REQUEST, &value);
618 if (ret)
619 goto return_pref;
620
621 value &= ~GENMASK_ULL(31, 24);
622
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800623 if (epp == -EINVAL)
Len Brown3cedbc52017-05-01 23:06:08 -0400624 epp = epp_values[pref_index - 1];
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800625
626 value |= (u64)epp << 24;
627 ret = wrmsrl_on_cpu(cpu_data->cpu, MSR_HWP_REQUEST, value);
628 } else {
629 if (epp == -EINVAL)
630 epp = (pref_index - 1) << 2;
631 ret = intel_pstate_set_epb(cpu_data->cpu, epp);
632 }
633return_pref:
634 mutex_unlock(&intel_pstate_limits_lock);
635
636 return ret;
637}
638
639static ssize_t show_energy_performance_available_preferences(
640 struct cpufreq_policy *policy, char *buf)
641{
642 int i = 0;
643 int ret = 0;
644
645 while (energy_perf_strings[i] != NULL)
646 ret += sprintf(&buf[ret], "%s ", energy_perf_strings[i++]);
647
648 ret += sprintf(&buf[ret], "\n");
649
650 return ret;
651}
652
653cpufreq_freq_attr_ro(energy_performance_available_preferences);
654
655static ssize_t store_energy_performance_preference(
656 struct cpufreq_policy *policy, const char *buf, size_t count)
657{
658 struct cpudata *cpu_data = all_cpu_data[policy->cpu];
659 char str_preference[21];
660 int ret, i = 0;
661
662 ret = sscanf(buf, "%20s", str_preference);
663 if (ret != 1)
664 return -EINVAL;
665
666 while (energy_perf_strings[i] != NULL) {
667 if (!strcmp(str_preference, energy_perf_strings[i])) {
668 intel_pstate_set_energy_pref_index(cpu_data, i);
669 return count;
670 }
671 ++i;
672 }
673
674 return -EINVAL;
675}
676
677static ssize_t show_energy_performance_preference(
678 struct cpufreq_policy *policy, char *buf)
679{
680 struct cpudata *cpu_data = all_cpu_data[policy->cpu];
681 int preference;
682
683 preference = intel_pstate_get_energy_pref_index(cpu_data);
684 if (preference < 0)
685 return preference;
686
687 return sprintf(buf, "%s\n", energy_perf_strings[preference]);
688}
689
690cpufreq_freq_attr_rw(energy_performance_preference);
691
692static struct freq_attr *hwp_cpufreq_attrs[] = {
693 &energy_performance_preference,
694 &energy_performance_available_preferences,
695 NULL,
696};
697
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -0700698static void intel_pstate_get_hwp_max(unsigned int cpu, int *phy_max,
699 int *current_max)
700{
701 u64 cap;
702
703 rdmsrl_on_cpu(cpu, MSR_HWP_CAPABILITIES, &cap);
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -0700704 WRITE_ONCE(all_cpu_data[cpu]->hwp_cap_cached, cap);
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -0700705 if (global.no_turbo)
706 *current_max = HWP_GUARANTEED_PERF(cap);
707 else
708 *current_max = HWP_HIGHEST_PERF(cap);
709
710 *phy_max = HWP_HIGHEST_PERF(cap);
711}
712
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200713static void intel_pstate_hwp_set(unsigned int cpu)
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800714{
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200715 struct cpudata *cpu_data = all_cpu_data[cpu];
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -0700716 int max, min;
717 u64 value;
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200718 s16 epp;
Kristen Carlson Accardi74da56c2015-09-09 11:41:22 -0700719
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -0700720 max = cpu_data->max_perf_ratio;
721 min = cpu_data->min_perf_ratio;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700722
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200723 if (cpu_data->policy == CPUFREQ_POLICY_PERFORMANCE)
724 min = max;
Srinivas Pandruvadaf9f48722016-10-08 12:42:38 -0700725
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200726 rdmsrl_on_cpu(cpu, MSR_HWP_REQUEST, &value);
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700727
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200728 value &= ~HWP_MIN_PERF(~0L);
729 value |= HWP_MIN_PERF(min);
Srinivas Pandruvada3f8ed542017-03-13 18:30:12 -0700730
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200731 value &= ~HWP_MAX_PERF(~0L);
732 value |= HWP_MAX_PERF(max);
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800733
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200734 if (cpu_data->epp_policy == cpu_data->policy)
735 goto skip_epp;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800736
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200737 cpu_data->epp_policy = cpu_data->policy;
738
739 if (cpu_data->epp_saved >= 0) {
740 epp = cpu_data->epp_saved;
741 cpu_data->epp_saved = -EINVAL;
742 goto update_epp;
743 }
744
745 if (cpu_data->policy == CPUFREQ_POLICY_PERFORMANCE) {
746 epp = intel_pstate_get_epp(cpu_data, value);
747 cpu_data->epp_powersave = epp;
748 /* If EPP read was failed, then don't try to write */
749 if (epp < 0)
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800750 goto skip_epp;
751
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200752 epp = 0;
753 } else {
754 /* skip setting EPP, when saved value is invalid */
755 if (cpu_data->epp_powersave < 0)
756 goto skip_epp;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800757
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200758 /*
759 * No need to restore EPP when it is not zero. This
760 * means:
761 * - Policy is not changed
762 * - user has manually changed
763 * - Error reading EPB
764 */
765 epp = intel_pstate_get_epp(cpu_data, value);
766 if (epp)
767 goto skip_epp;
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800768
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200769 epp = cpu_data->epp_powersave;
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800770 }
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200771update_epp:
772 if (static_cpu_has(X86_FEATURE_HWP_EPP)) {
773 value &= ~GENMASK_ULL(31, 24);
774 value |= (u64)epp << 24;
775 } else {
776 intel_pstate_set_epb(cpu, epp);
777 }
778skip_epp:
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -0700779 WRITE_ONCE(cpu_data->hwp_req_cached, value);
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200780 wrmsrl_on_cpu(cpu, MSR_HWP_REQUEST, value);
Viresh Kumar41cfd642016-02-22 10:27:46 +0530781}
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800782
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800783static int intel_pstate_hwp_save_state(struct cpufreq_policy *policy)
784{
785 struct cpudata *cpu_data = all_cpu_data[policy->cpu];
786
787 if (!hwp_active)
788 return 0;
789
790 cpu_data->epp_saved = intel_pstate_get_epp(cpu_data, 0);
791
792 return 0;
793}
794
Chen Yu70f6bf22018-01-29 10:27:57 +0800795static void intel_pstate_hwp_enable(struct cpudata *cpudata);
796
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800797static int intel_pstate_resume(struct cpufreq_policy *policy)
798{
799 if (!hwp_active)
800 return 0;
801
Rafael J. Wysockiaa439242016-12-30 15:56:14 +0100802 mutex_lock(&intel_pstate_limits_lock);
803
Chen Yu70f6bf22018-01-29 10:27:57 +0800804 if (policy->cpu == 0)
805 intel_pstate_hwp_enable(all_cpu_data[policy->cpu]);
806
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800807 all_cpu_data[policy->cpu]->epp_policy = 0;
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200808 intel_pstate_hwp_set(policy->cpu);
Rafael J. Wysockiaa439242016-12-30 15:56:14 +0100809
810 mutex_unlock(&intel_pstate_limits_lock);
811
Rafael J. Wysocki5f98ced2017-03-09 16:30:38 +0100812 return 0;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800813}
814
Rafael J. Wysocki111b8b32016-12-30 15:58:21 +0100815static void intel_pstate_update_policies(void)
Viresh Kumar41cfd642016-02-22 10:27:46 +0530816{
Rafael J. Wysocki111b8b32016-12-30 15:58:21 +0100817 int cpu;
818
819 for_each_possible_cpu(cpu)
820 cpufreq_update_policy(cpu);
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800821}
822
Dirk Brandewie93f08222013-02-06 09:02:13 -0800823/************************** sysfs begin ************************/
824#define show_one(file_name, object) \
825 static ssize_t show_##file_name \
826 (struct kobject *kobj, struct attribute *attr, char *buf) \
827 { \
Rafael J. Wysocki7de32552017-03-18 00:57:39 +0100828 return sprintf(buf, "%u\n", global.object); \
Dirk Brandewie93f08222013-02-06 09:02:13 -0800829 }
830
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +0100831static ssize_t intel_pstate_show_status(char *buf);
832static int intel_pstate_update_status(const char *buf, size_t size);
833
834static ssize_t show_status(struct kobject *kobj,
835 struct attribute *attr, char *buf)
836{
837 ssize_t ret;
838
839 mutex_lock(&intel_pstate_driver_lock);
840 ret = intel_pstate_show_status(buf);
841 mutex_unlock(&intel_pstate_driver_lock);
842
843 return ret;
844}
845
846static ssize_t store_status(struct kobject *a, struct attribute *b,
847 const char *buf, size_t count)
848{
849 char *p = memchr(buf, '\n', count);
850 int ret;
851
852 mutex_lock(&intel_pstate_driver_lock);
853 ret = intel_pstate_update_status(buf, p ? p - buf : count);
854 mutex_unlock(&intel_pstate_driver_lock);
855
856 return ret < 0 ? ret : count;
857}
858
Kristen Carlson Accardid01b1f42015-01-28 15:03:27 -0800859static ssize_t show_turbo_pct(struct kobject *kobj,
860 struct attribute *attr, char *buf)
861{
862 struct cpudata *cpu;
863 int total, no_turbo, turbo_pct;
864 uint32_t turbo_fp;
865
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +0100866 mutex_lock(&intel_pstate_driver_lock);
867
Rafael J. Wysockiee8df892017-03-28 00:13:00 +0200868 if (!intel_pstate_driver) {
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +0100869 mutex_unlock(&intel_pstate_driver_lock);
870 return -EAGAIN;
871 }
872
Kristen Carlson Accardid01b1f42015-01-28 15:03:27 -0800873 cpu = all_cpu_data[0];
874
875 total = cpu->pstate.turbo_pstate - cpu->pstate.min_pstate + 1;
876 no_turbo = cpu->pstate.max_pstate - cpu->pstate.min_pstate + 1;
Rafael J. Wysocki22590ef2016-04-09 01:25:58 +0200877 turbo_fp = div_fp(no_turbo, total);
Kristen Carlson Accardid01b1f42015-01-28 15:03:27 -0800878 turbo_pct = 100 - fp_toint(mul_fp(turbo_fp, int_tofp(100)));
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +0100879
880 mutex_unlock(&intel_pstate_driver_lock);
881
Kristen Carlson Accardid01b1f42015-01-28 15:03:27 -0800882 return sprintf(buf, "%u\n", turbo_pct);
883}
884
Kristen Carlson Accardi05224242015-01-28 15:03:28 -0800885static ssize_t show_num_pstates(struct kobject *kobj,
886 struct attribute *attr, char *buf)
887{
888 struct cpudata *cpu;
889 int total;
890
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +0100891 mutex_lock(&intel_pstate_driver_lock);
892
Rafael J. Wysockiee8df892017-03-28 00:13:00 +0200893 if (!intel_pstate_driver) {
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +0100894 mutex_unlock(&intel_pstate_driver_lock);
895 return -EAGAIN;
896 }
897
Kristen Carlson Accardi05224242015-01-28 15:03:28 -0800898 cpu = all_cpu_data[0];
899 total = cpu->pstate.turbo_pstate - cpu->pstate.min_pstate + 1;
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +0100900
901 mutex_unlock(&intel_pstate_driver_lock);
902
Kristen Carlson Accardi05224242015-01-28 15:03:28 -0800903 return sprintf(buf, "%u\n", total);
904}
905
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700906static ssize_t show_no_turbo(struct kobject *kobj,
907 struct attribute *attr, char *buf)
908{
909 ssize_t ret;
910
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +0100911 mutex_lock(&intel_pstate_driver_lock);
912
Rafael J. Wysockiee8df892017-03-28 00:13:00 +0200913 if (!intel_pstate_driver) {
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +0100914 mutex_unlock(&intel_pstate_driver_lock);
915 return -EAGAIN;
916 }
917
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700918 update_turbo_state();
Rafael J. Wysocki7de32552017-03-18 00:57:39 +0100919 if (global.turbo_disabled)
920 ret = sprintf(buf, "%u\n", global.turbo_disabled);
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700921 else
Rafael J. Wysocki7de32552017-03-18 00:57:39 +0100922 ret = sprintf(buf, "%u\n", global.no_turbo);
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700923
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +0100924 mutex_unlock(&intel_pstate_driver_lock);
925
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700926 return ret;
927}
928
Dirk Brandewie93f08222013-02-06 09:02:13 -0800929static ssize_t store_no_turbo(struct kobject *a, struct attribute *b,
Stratos Karafotisc4108332014-07-18 08:37:23 -0700930 const char *buf, size_t count)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800931{
932 unsigned int input;
933 int ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700934
Dirk Brandewie93f08222013-02-06 09:02:13 -0800935 ret = sscanf(buf, "%u", &input);
936 if (ret != 1)
937 return -EINVAL;
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700938
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +0100939 mutex_lock(&intel_pstate_driver_lock);
940
Rafael J. Wysockiee8df892017-03-28 00:13:00 +0200941 if (!intel_pstate_driver) {
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +0100942 mutex_unlock(&intel_pstate_driver_lock);
943 return -EAGAIN;
944 }
945
Srinivas Pandruvadaa410c03d2016-10-28 10:44:52 -0700946 mutex_lock(&intel_pstate_limits_lock);
947
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700948 update_turbo_state();
Rafael J. Wysocki7de32552017-03-18 00:57:39 +0100949 if (global.turbo_disabled) {
Joe Perches4836df12016-04-05 13:28:23 -0700950 pr_warn("Turbo disabled by BIOS or unavailable on processor\n");
Srinivas Pandruvadaa410c03d2016-10-28 10:44:52 -0700951 mutex_unlock(&intel_pstate_limits_lock);
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +0100952 mutex_unlock(&intel_pstate_driver_lock);
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700953 return -EPERM;
Dirk Brandewiedd5fbf72014-06-20 07:27:59 -0700954 }
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800955
Rafael J. Wysocki7de32552017-03-18 00:57:39 +0100956 global.no_turbo = clamp_t(int, input, 0, 1);
Rafael J. Wysocki111b8b32016-12-30 15:58:21 +0100957
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +0100958 if (global.no_turbo) {
959 struct cpudata *cpu = all_cpu_data[0];
960 int pct = cpu->pstate.max_pstate * 100 / cpu->pstate.turbo_pstate;
961
962 /* Squash the global minimum into the permitted range. */
963 if (global.min_perf_pct > pct)
964 global.min_perf_pct = pct;
965 }
966
Rafael J. Wysockicd59b4be2017-03-01 00:07:36 +0100967 mutex_unlock(&intel_pstate_limits_lock);
968
Rafael J. Wysocki7de32552017-03-18 00:57:39 +0100969 intel_pstate_update_policies();
970
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +0100971 mutex_unlock(&intel_pstate_driver_lock);
972
Dirk Brandewie93f08222013-02-06 09:02:13 -0800973 return count;
974}
975
976static ssize_t store_max_perf_pct(struct kobject *a, struct attribute *b,
Stratos Karafotisc4108332014-07-18 08:37:23 -0700977 const char *buf, size_t count)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800978{
979 unsigned int input;
980 int ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700981
Dirk Brandewie93f08222013-02-06 09:02:13 -0800982 ret = sscanf(buf, "%u", &input);
983 if (ret != 1)
984 return -EINVAL;
985
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +0100986 mutex_lock(&intel_pstate_driver_lock);
987
Rafael J. Wysockiee8df892017-03-28 00:13:00 +0200988 if (!intel_pstate_driver) {
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +0100989 mutex_unlock(&intel_pstate_driver_lock);
990 return -EAGAIN;
991 }
992
Srinivas Pandruvadaa410c03d2016-10-28 10:44:52 -0700993 mutex_lock(&intel_pstate_limits_lock);
994
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +0100995 global.max_perf_pct = clamp_t(int, input, global.min_perf_pct, 100);
Rafael J. Wysocki111b8b32016-12-30 15:58:21 +0100996
Rafael J. Wysockicd59b4be2017-03-01 00:07:36 +0100997 mutex_unlock(&intel_pstate_limits_lock);
998
Rafael J. Wysocki7de32552017-03-18 00:57:39 +0100999 intel_pstate_update_policies();
1000
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001001 mutex_unlock(&intel_pstate_driver_lock);
1002
Dirk Brandewie93f08222013-02-06 09:02:13 -08001003 return count;
1004}
1005
1006static ssize_t store_min_perf_pct(struct kobject *a, struct attribute *b,
Stratos Karafotisc4108332014-07-18 08:37:23 -07001007 const char *buf, size_t count)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001008{
1009 unsigned int input;
1010 int ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001011
Dirk Brandewie93f08222013-02-06 09:02:13 -08001012 ret = sscanf(buf, "%u", &input);
1013 if (ret != 1)
1014 return -EINVAL;
Kristen Carlson Accardia0475992015-01-29 13:03:52 -08001015
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001016 mutex_lock(&intel_pstate_driver_lock);
1017
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02001018 if (!intel_pstate_driver) {
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001019 mutex_unlock(&intel_pstate_driver_lock);
1020 return -EAGAIN;
1021 }
1022
Srinivas Pandruvadaa410c03d2016-10-28 10:44:52 -07001023 mutex_lock(&intel_pstate_limits_lock);
1024
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01001025 global.min_perf_pct = clamp_t(int, input,
1026 min_perf_pct_min(), global.max_perf_pct);
Rafael J. Wysocki111b8b32016-12-30 15:58:21 +01001027
Rafael J. Wysockicd59b4be2017-03-01 00:07:36 +01001028 mutex_unlock(&intel_pstate_limits_lock);
1029
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01001030 intel_pstate_update_policies();
1031
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001032 mutex_unlock(&intel_pstate_driver_lock);
1033
Dirk Brandewie93f08222013-02-06 09:02:13 -08001034 return count;
1035}
1036
Srinivas Pandruvadaaaaece32018-06-05 14:42:41 -07001037static ssize_t show_hwp_dynamic_boost(struct kobject *kobj,
1038 struct attribute *attr, char *buf)
1039{
1040 return sprintf(buf, "%u\n", hwp_boost);
1041}
1042
1043static ssize_t store_hwp_dynamic_boost(struct kobject *a, struct attribute *b,
1044 const char *buf, size_t count)
1045{
1046 unsigned int input;
1047 int ret;
1048
1049 ret = kstrtouint(buf, 10, &input);
1050 if (ret)
1051 return ret;
1052
1053 mutex_lock(&intel_pstate_driver_lock);
1054 hwp_boost = !!input;
1055 intel_pstate_update_policies();
1056 mutex_unlock(&intel_pstate_driver_lock);
1057
1058 return count;
1059}
1060
Dirk Brandewie93f08222013-02-06 09:02:13 -08001061show_one(max_perf_pct, max_perf_pct);
1062show_one(min_perf_pct, min_perf_pct);
1063
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01001064define_one_global_rw(status);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001065define_one_global_rw(no_turbo);
1066define_one_global_rw(max_perf_pct);
1067define_one_global_rw(min_perf_pct);
Kristen Carlson Accardid01b1f42015-01-28 15:03:27 -08001068define_one_global_ro(turbo_pct);
Kristen Carlson Accardi05224242015-01-28 15:03:28 -08001069define_one_global_ro(num_pstates);
Srinivas Pandruvadaaaaece32018-06-05 14:42:41 -07001070define_one_global_rw(hwp_dynamic_boost);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001071
1072static struct attribute *intel_pstate_attributes[] = {
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01001073 &status.attr,
Dirk Brandewie93f08222013-02-06 09:02:13 -08001074 &no_turbo.attr,
Kristen Carlson Accardid01b1f42015-01-28 15:03:27 -08001075 &turbo_pct.attr,
Kristen Carlson Accardi05224242015-01-28 15:03:28 -08001076 &num_pstates.attr,
Dirk Brandewie93f08222013-02-06 09:02:13 -08001077 NULL
1078};
1079
Arvind Yadav106c9c72017-07-03 13:40:33 +05301080static const struct attribute_group intel_pstate_attr_group = {
Dirk Brandewie93f08222013-02-06 09:02:13 -08001081 .attrs = intel_pstate_attributes,
1082};
Dirk Brandewie93f08222013-02-06 09:02:13 -08001083
Stratos Karafotis317dd502014-07-18 08:37:17 -07001084static void __init intel_pstate_sysfs_expose_params(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001085{
Stratos Karafotis317dd502014-07-18 08:37:17 -07001086 struct kobject *intel_pstate_kobject;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001087 int rc;
1088
1089 intel_pstate_kobject = kobject_create_and_add("intel_pstate",
1090 &cpu_subsys.dev_root->kobj);
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001091 if (WARN_ON(!intel_pstate_kobject))
1092 return;
1093
Stratos Karafotis2d8d1f12014-07-18 08:37:20 -07001094 rc = sysfs_create_group(intel_pstate_kobject, &intel_pstate_attr_group);
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001095 if (WARN_ON(rc))
1096 return;
1097
1098 /*
1099 * If per cpu limits are enforced there are no global limits, so
1100 * return without creating max/min_perf_pct attributes
1101 */
1102 if (per_cpu_limits)
1103 return;
1104
1105 rc = sysfs_create_file(intel_pstate_kobject, &max_perf_pct.attr);
1106 WARN_ON(rc);
1107
1108 rc = sysfs_create_file(intel_pstate_kobject, &min_perf_pct.attr);
1109 WARN_ON(rc);
1110
Srinivas Pandruvadaaaaece32018-06-05 14:42:41 -07001111 if (hwp_active) {
1112 rc = sysfs_create_file(intel_pstate_kobject,
1113 &hwp_dynamic_boost.attr);
1114 WARN_ON(rc);
1115 }
Dirk Brandewie93f08222013-02-06 09:02:13 -08001116}
Dirk Brandewie93f08222013-02-06 09:02:13 -08001117/************************** sysfs end ************************/
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001118
Kristen Carlson Accardiba88d432015-07-14 09:46:23 -07001119static void intel_pstate_hwp_enable(struct cpudata *cpudata)
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001120{
Srinivas Pandruvadaf05c9662016-02-25 15:09:31 -08001121 /* First disable HWP notification interrupt as we don't process them */
Srinivas Pandruvadada7de912016-07-19 16:52:01 -07001122 if (static_cpu_has(X86_FEATURE_HWP_NOTIFY))
1123 wrmsrl_on_cpu(cpudata->cpu, MSR_HWP_INTERRUPT, 0x00);
Srinivas Pandruvadaf05c9662016-02-25 15:09:31 -08001124
Kristen Carlson Accardiba88d432015-07-14 09:46:23 -07001125 wrmsrl_on_cpu(cpudata->cpu, MSR_PM_ENABLE, 0x1);
Srinivas Pandruvada84428852016-11-24 16:07:10 -08001126 cpudata->epp_policy = 0;
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -08001127 if (cpudata->epp_default == -EINVAL)
1128 cpudata->epp_default = intel_pstate_get_epp(cpudata, 0);
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001129}
1130
Srinivas Pandruvada6e978b22017-02-03 14:18:39 -08001131#define MSR_IA32_POWER_CTL_BIT_EE 19
1132
1133/* Disable energy efficiency optimization */
1134static void intel_pstate_disable_ee(int cpu)
1135{
1136 u64 power_ctl;
1137 int ret;
1138
1139 ret = rdmsrl_on_cpu(cpu, MSR_IA32_POWER_CTL, &power_ctl);
1140 if (ret)
1141 return;
1142
1143 if (!(power_ctl & BIT(MSR_IA32_POWER_CTL_BIT_EE))) {
1144 pr_info("Disabling energy efficiency optimization\n");
1145 power_ctl |= BIT(MSR_IA32_POWER_CTL_BIT_EE);
1146 wrmsrl_on_cpu(cpu, MSR_IA32_POWER_CTL, power_ctl);
1147 }
1148}
1149
Philippe Longepe938d21a2015-11-09 17:40:46 -08001150static int atom_get_min_pstate(void)
Dirk Brandewie19e77c22013-10-21 09:20:35 -07001151{
1152 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001153
Len Brown92134bd2017-02-25 16:55:17 -05001154 rdmsrl(MSR_ATOM_CORE_RATIOS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -07001155 return (value >> 8) & 0x7F;
Dirk Brandewie19e77c22013-10-21 09:20:35 -07001156}
Dirk Brandewie93f08222013-02-06 09:02:13 -08001157
Philippe Longepe938d21a2015-11-09 17:40:46 -08001158static int atom_get_max_pstate(void)
Dirk Brandewie19e77c22013-10-21 09:20:35 -07001159{
1160 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001161
Len Brown92134bd2017-02-25 16:55:17 -05001162 rdmsrl(MSR_ATOM_CORE_RATIOS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -07001163 return (value >> 16) & 0x7F;
Dirk Brandewie19e77c22013-10-21 09:20:35 -07001164}
1165
Philippe Longepe938d21a2015-11-09 17:40:46 -08001166static int atom_get_turbo_pstate(void)
Dirk Brandewie61d8d2a2014-02-12 10:01:07 -08001167{
1168 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001169
Len Brown92134bd2017-02-25 16:55:17 -05001170 rdmsrl(MSR_ATOM_CORE_TURBO_RATIOS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -07001171 return value & 0x7F;
Dirk Brandewie61d8d2a2014-02-12 10:01:07 -08001172}
1173
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001174static u64 atom_get_val(struct cpudata *cpudata, int pstate)
Dirk Brandewie007bea02013-12-18 10:32:39 -08001175{
1176 u64 val;
1177 int32_t vid_fp;
1178 u32 vid;
1179
Chen Yu144c8e12015-07-29 23:53:10 +08001180 val = (u64)pstate << 8;
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01001181 if (global.no_turbo && !global.turbo_disabled)
Dirk Brandewie007bea02013-12-18 10:32:39 -08001182 val |= (u64)1 << 32;
1183
1184 vid_fp = cpudata->vid.min + mul_fp(
1185 int_tofp(pstate - cpudata->pstate.min_pstate),
1186 cpudata->vid.ratio);
1187
1188 vid_fp = clamp_t(int32_t, vid_fp, cpudata->vid.min, cpudata->vid.max);
Dirk Brandewied022a652014-10-13 08:37:44 -07001189 vid = ceiling_fp(vid_fp);
Dirk Brandewie007bea02013-12-18 10:32:39 -08001190
Dirk Brandewie21855ff2014-05-08 12:57:23 -07001191 if (pstate > cpudata->pstate.max_pstate)
1192 vid = cpudata->vid.turbo;
1193
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001194 return val | vid;
Dirk Brandewie007bea02013-12-18 10:32:39 -08001195}
1196
Philippe Longepe1421df62015-11-09 17:40:47 -08001197static int silvermont_get_scaling(void)
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001198{
1199 u64 value;
1200 int i;
Philippe Longepe1421df62015-11-09 17:40:47 -08001201 /* Defined in Table 35-6 from SDM (Sept 2015) */
1202 static int silvermont_freq_table[] = {
1203 83300, 100000, 133300, 116700, 80000};
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001204
1205 rdmsrl(MSR_FSB_FREQ, value);
Philippe Longepe1421df62015-11-09 17:40:47 -08001206 i = value & 0x7;
1207 WARN_ON(i > 4);
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001208
Philippe Longepe1421df62015-11-09 17:40:47 -08001209 return silvermont_freq_table[i];
1210}
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001211
Philippe Longepe1421df62015-11-09 17:40:47 -08001212static int airmont_get_scaling(void)
1213{
1214 u64 value;
1215 int i;
1216 /* Defined in Table 35-10 from SDM (Sept 2015) */
1217 static int airmont_freq_table[] = {
1218 83300, 100000, 133300, 116700, 80000,
1219 93300, 90000, 88900, 87500};
1220
1221 rdmsrl(MSR_FSB_FREQ, value);
1222 i = value & 0xF;
1223 WARN_ON(i > 8);
1224
1225 return airmont_freq_table[i];
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001226}
1227
Philippe Longepe938d21a2015-11-09 17:40:46 -08001228static void atom_get_vid(struct cpudata *cpudata)
Dirk Brandewie007bea02013-12-18 10:32:39 -08001229{
1230 u64 value;
1231
Len Brown92134bd2017-02-25 16:55:17 -05001232 rdmsrl(MSR_ATOM_CORE_VIDS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -07001233 cpudata->vid.min = int_tofp((value >> 8) & 0x7f);
1234 cpudata->vid.max = int_tofp((value >> 16) & 0x7f);
Dirk Brandewie007bea02013-12-18 10:32:39 -08001235 cpudata->vid.ratio = div_fp(
1236 cpudata->vid.max - cpudata->vid.min,
1237 int_tofp(cpudata->pstate.max_pstate -
1238 cpudata->pstate.min_pstate));
Dirk Brandewie21855ff2014-05-08 12:57:23 -07001239
Len Brown92134bd2017-02-25 16:55:17 -05001240 rdmsrl(MSR_ATOM_CORE_TURBO_VIDS, value);
Dirk Brandewie21855ff2014-05-08 12:57:23 -07001241 cpudata->vid.turbo = value & 0x7f;
Dirk Brandewie007bea02013-12-18 10:32:39 -08001242}
1243
Dirk Brandewie016c8152013-10-21 09:20:34 -07001244static int core_get_min_pstate(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001245{
1246 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001247
Konrad Rzeszutek Wilk05e99c8cf2013-03-20 14:21:10 +00001248 rdmsrl(MSR_PLATFORM_INFO, value);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001249 return (value >> 40) & 0xFF;
1250}
1251
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -07001252static int core_get_max_pstate_physical(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001253{
1254 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001255
Konrad Rzeszutek Wilk05e99c8cf2013-03-20 14:21:10 +00001256 rdmsrl(MSR_PLATFORM_INFO, value);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001257 return (value >> 8) & 0xFF;
1258}
1259
Srinivas Pandruvada8fc75542017-01-19 15:03:14 -08001260static int core_get_tdp_ratio(u64 plat_info)
1261{
1262 /* Check how many TDP levels present */
1263 if (plat_info & 0x600000000) {
1264 u64 tdp_ctrl;
1265 u64 tdp_ratio;
1266 int tdp_msr;
1267 int err;
1268
1269 /* Get the TDP level (0, 1, 2) to get ratios */
1270 err = rdmsrl_safe(MSR_CONFIG_TDP_CONTROL, &tdp_ctrl);
1271 if (err)
1272 return err;
1273
1274 /* TDP MSR are continuous starting at 0x648 */
1275 tdp_msr = MSR_CONFIG_TDP_NOMINAL + (tdp_ctrl & 0x03);
1276 err = rdmsrl_safe(tdp_msr, &tdp_ratio);
1277 if (err)
1278 return err;
1279
1280 /* For level 1 and 2, bits[23:16] contain the ratio */
1281 if (tdp_ctrl & 0x03)
1282 tdp_ratio >>= 16;
1283
1284 tdp_ratio &= 0xff; /* ratios are only 8 bits long */
1285 pr_debug("tdp_ratio %x\n", (int)tdp_ratio);
1286
1287 return (int)tdp_ratio;
1288 }
1289
1290 return -ENXIO;
1291}
1292
Dirk Brandewie93f08222013-02-06 09:02:13 -08001293static int core_get_max_pstate(void)
1294{
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -07001295 u64 tar;
1296 u64 plat_info;
1297 int max_pstate;
Srinivas Pandruvada8fc75542017-01-19 15:03:14 -08001298 int tdp_ratio;
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -07001299 int err;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001300
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -07001301 rdmsrl(MSR_PLATFORM_INFO, plat_info);
1302 max_pstate = (plat_info >> 8) & 0xFF;
1303
Srinivas Pandruvada8fc75542017-01-19 15:03:14 -08001304 tdp_ratio = core_get_tdp_ratio(plat_info);
1305 if (tdp_ratio <= 0)
1306 return max_pstate;
1307
1308 if (hwp_active) {
1309 /* Turbo activation ratio is not used on HWP platforms */
1310 return tdp_ratio;
1311 }
1312
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -07001313 err = rdmsrl_safe(MSR_TURBO_ACTIVATION_RATIO, &tar);
1314 if (!err) {
Srinivas Pandruvada8fc75542017-01-19 15:03:14 -08001315 int tar_levels;
1316
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -07001317 /* Do some sanity checking for safety */
Srinivas Pandruvada8fc75542017-01-19 15:03:14 -08001318 tar_levels = tar & 0xff;
1319 if (tdp_ratio - 1 == tar_levels) {
1320 max_pstate = tar_levels;
1321 pr_debug("max_pstate=TAC %x\n", max_pstate);
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -07001322 }
1323 }
1324
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -07001325 return max_pstate;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001326}
1327
Dirk Brandewie016c8152013-10-21 09:20:34 -07001328static int core_get_turbo_pstate(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001329{
1330 u64 value;
1331 int nont, ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001332
Srinivas Pandruvada100cf6f2016-07-06 16:07:55 -07001333 rdmsrl(MSR_TURBO_RATIO_LIMIT, value);
Dirk Brandewie016c8152013-10-21 09:20:34 -07001334 nont = core_get_max_pstate();
Stratos Karafotis285cb992014-07-18 08:37:21 -07001335 ret = (value) & 255;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001336 if (ret <= nont)
1337 ret = nont;
1338 return ret;
1339}
1340
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001341static inline int core_get_scaling(void)
1342{
1343 return 100000;
1344}
1345
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001346static u64 core_get_val(struct cpudata *cpudata, int pstate)
Dirk Brandewie016c8152013-10-21 09:20:34 -07001347{
1348 u64 val;
1349
Chen Yu144c8e12015-07-29 23:53:10 +08001350 val = (u64)pstate << 8;
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01001351 if (global.no_turbo && !global.turbo_disabled)
Dirk Brandewie016c8152013-10-21 09:20:34 -07001352 val |= (u64)1 << 32;
1353
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001354 return val;
Dirk Brandewie016c8152013-10-21 09:20:34 -07001355}
1356
Srinivas Pandruvada6e34e1f2017-07-13 15:03:51 -07001357static int knl_get_aperf_mperf_shift(void)
1358{
1359 return 10;
1360}
1361
Dasaratharaman Chandramoulib34ef932015-04-10 10:22:18 -07001362static int knl_get_turbo_pstate(void)
1363{
1364 u64 value;
1365 int nont, ret;
1366
Srinivas Pandruvada100cf6f2016-07-06 16:07:55 -07001367 rdmsrl(MSR_TURBO_RATIO_LIMIT, value);
Dasaratharaman Chandramoulib34ef932015-04-10 10:22:18 -07001368 nont = core_get_max_pstate();
1369 ret = (((value) >> 8) & 0xFF);
1370 if (ret <= nont)
1371 ret = nont;
1372 return ret;
1373}
1374
Rafael J. Wysockib02aabe2017-03-28 00:24:26 +02001375static int intel_pstate_get_base_pstate(struct cpudata *cpu)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001376{
Rafael J. Wysockib02aabe2017-03-28 00:24:26 +02001377 return global.no_turbo || global.turbo_disabled ?
1378 cpu->pstate.max_pstate : cpu->pstate.turbo_pstate;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001379}
1380
Rafael J. Wysockia6c6ead2016-10-19 02:57:22 +02001381static void intel_pstate_set_pstate(struct cpudata *cpu, int pstate)
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001382{
Rafael J. Wysockibc95a452016-07-19 15:10:37 +02001383 trace_cpu_frequency(pstate * cpu->pstate.scaling, cpu->cpu);
1384 cpu->pstate.current_pstate = pstate;
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001385 /*
1386 * Generally, there is no guarantee that this code will always run on
1387 * the CPU being updated, so force the register update to run on the
1388 * right CPU.
1389 */
1390 wrmsrl_on_cpu(cpu->cpu, MSR_IA32_PERF_CTL,
1391 pstate_funcs.get_val(cpu, pstate));
Dirk Brandewie93f08222013-02-06 09:02:13 -08001392}
1393
Rafael J. Wysockia6c6ead2016-10-19 02:57:22 +02001394static void intel_pstate_set_min_pstate(struct cpudata *cpu)
1395{
1396 intel_pstate_set_pstate(cpu, cpu->pstate.min_pstate);
1397}
1398
1399static void intel_pstate_max_within_limits(struct cpudata *cpu)
1400{
Rafael J. Wysockib02aabe2017-03-28 00:24:26 +02001401 int pstate;
Rafael J. Wysockia6c6ead2016-10-19 02:57:22 +02001402
1403 update_turbo_state();
Rafael J. Wysockib02aabe2017-03-28 00:24:26 +02001404 pstate = intel_pstate_get_base_pstate(cpu);
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -07001405 pstate = max(cpu->pstate.min_pstate, cpu->max_perf_ratio);
Rafael J. Wysockib02aabe2017-03-28 00:24:26 +02001406 intel_pstate_set_pstate(cpu, pstate);
Rafael J. Wysockia6c6ead2016-10-19 02:57:22 +02001407}
1408
Dirk Brandewie93f08222013-02-06 09:02:13 -08001409static void intel_pstate_get_cpu_pstates(struct cpudata *cpu)
1410{
Dirk Brandewie016c8152013-10-21 09:20:34 -07001411 cpu->pstate.min_pstate = pstate_funcs.get_min();
1412 cpu->pstate.max_pstate = pstate_funcs.get_max();
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -07001413 cpu->pstate.max_pstate_physical = pstate_funcs.get_max_physical();
Dirk Brandewie016c8152013-10-21 09:20:34 -07001414 cpu->pstate.turbo_pstate = pstate_funcs.get_turbo();
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001415 cpu->pstate.scaling = pstate_funcs.get_scaling();
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01001416 cpu->pstate.max_freq = cpu->pstate.max_pstate * cpu->pstate.scaling;
Srinivas Pandruvadaff7c9912018-06-18 12:47:45 -07001417
1418 if (hwp_active && !hwp_mode_bdw) {
1419 unsigned int phy_max, current_max;
1420
1421 intel_pstate_get_hwp_max(cpu->cpu, &phy_max, &current_max);
1422 cpu->pstate.turbo_freq = phy_max * cpu->pstate.scaling;
1423 } else {
1424 cpu->pstate.turbo_freq = cpu->pstate.turbo_pstate * cpu->pstate.scaling;
1425 }
Dirk Brandewie93f08222013-02-06 09:02:13 -08001426
Srinivas Pandruvada6e34e1f2017-07-13 15:03:51 -07001427 if (pstate_funcs.get_aperf_mperf_shift)
1428 cpu->aperf_mperf_shift = pstate_funcs.get_aperf_mperf_shift();
1429
Dirk Brandewie007bea02013-12-18 10:32:39 -08001430 if (pstate_funcs.get_vid)
1431 pstate_funcs.get_vid(cpu);
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001432
1433 intel_pstate_set_min_pstate(cpu);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001434}
1435
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -07001436/*
1437 * Long hold time will keep high perf limits for long time,
1438 * which negatively impacts perf/watt for some workloads,
1439 * like specpower. 3ms is based on experiements on some
1440 * workoads.
1441 */
1442static int hwp_boost_hold_time_ns = 3 * NSEC_PER_MSEC;
1443
1444static inline void intel_pstate_hwp_boost_up(struct cpudata *cpu)
1445{
1446 u64 hwp_req = READ_ONCE(cpu->hwp_req_cached);
1447 u32 max_limit = (hwp_req & 0xff00) >> 8;
1448 u32 min_limit = (hwp_req & 0xff);
1449 u32 boost_level1;
1450
1451 /*
1452 * Cases to consider (User changes via sysfs or boot time):
1453 * If, P0 (Turbo max) = P1 (Guaranteed max) = min:
1454 * No boost, return.
1455 * If, P0 (Turbo max) > P1 (Guaranteed max) = min:
1456 * Should result in one level boost only for P0.
1457 * If, P0 (Turbo max) = P1 (Guaranteed max) > min:
1458 * Should result in two level boost:
1459 * (min + p1)/2 and P1.
1460 * If, P0 (Turbo max) > P1 (Guaranteed max) > min:
1461 * Should result in three level boost:
1462 * (min + p1)/2, P1 and P0.
1463 */
1464
1465 /* If max and min are equal or already at max, nothing to boost */
1466 if (max_limit == min_limit || cpu->hwp_boost_min >= max_limit)
1467 return;
1468
1469 if (!cpu->hwp_boost_min)
1470 cpu->hwp_boost_min = min_limit;
1471
1472 /* level at half way mark between min and guranteed */
1473 boost_level1 = (HWP_GUARANTEED_PERF(cpu->hwp_cap_cached) + min_limit) >> 1;
1474
1475 if (cpu->hwp_boost_min < boost_level1)
1476 cpu->hwp_boost_min = boost_level1;
1477 else if (cpu->hwp_boost_min < HWP_GUARANTEED_PERF(cpu->hwp_cap_cached))
1478 cpu->hwp_boost_min = HWP_GUARANTEED_PERF(cpu->hwp_cap_cached);
1479 else if (cpu->hwp_boost_min == HWP_GUARANTEED_PERF(cpu->hwp_cap_cached) &&
1480 max_limit != HWP_GUARANTEED_PERF(cpu->hwp_cap_cached))
1481 cpu->hwp_boost_min = max_limit;
1482 else
1483 return;
1484
1485 hwp_req = (hwp_req & ~GENMASK_ULL(7, 0)) | cpu->hwp_boost_min;
1486 wrmsrl(MSR_HWP_REQUEST, hwp_req);
1487 cpu->last_update = cpu->sample.time;
1488}
1489
1490static inline void intel_pstate_hwp_boost_down(struct cpudata *cpu)
1491{
1492 if (cpu->hwp_boost_min) {
1493 bool expired;
1494
1495 /* Check if we are idle for hold time to boost down */
1496 expired = time_after64(cpu->sample.time, cpu->last_update +
1497 hwp_boost_hold_time_ns);
1498 if (expired) {
1499 wrmsrl(MSR_HWP_REQUEST, cpu->hwp_req_cached);
1500 cpu->hwp_boost_min = 0;
1501 }
1502 }
1503 cpu->last_update = cpu->sample.time;
1504}
1505
Srinivas Pandruvada52ccc4312018-06-05 14:42:40 -07001506static inline void intel_pstate_update_util_hwp_local(struct cpudata *cpu,
1507 u64 time)
1508{
1509 cpu->sample.time = time;
1510
1511 if (cpu->sched_flags & SCHED_CPUFREQ_IOWAIT) {
1512 bool do_io = false;
1513
1514 cpu->sched_flags = 0;
1515 /*
1516 * Set iowait_boost flag and update time. Since IO WAIT flag
1517 * is set all the time, we can't just conclude that there is
1518 * some IO bound activity is scheduled on this CPU with just
1519 * one occurrence. If we receive at least two in two
1520 * consecutive ticks, then we treat as boost candidate.
1521 */
1522 if (time_before64(time, cpu->last_io_update + 2 * TICK_NSEC))
1523 do_io = true;
1524
1525 cpu->last_io_update = time;
1526
1527 if (do_io)
1528 intel_pstate_hwp_boost_up(cpu);
1529
1530 } else {
1531 intel_pstate_hwp_boost_down(cpu);
1532 }
1533}
1534
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -07001535static inline void intel_pstate_update_util_hwp(struct update_util_data *data,
1536 u64 time, unsigned int flags)
1537{
Srinivas Pandruvada52ccc4312018-06-05 14:42:40 -07001538 struct cpudata *cpu = container_of(data, struct cpudata, update_util);
1539
1540 cpu->sched_flags |= flags;
1541
1542 if (smp_processor_id() == cpu->cpu)
1543 intel_pstate_update_util_hwp_local(cpu, time);
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -07001544}
1545
Rafael J. Wysockia1c97872016-05-11 19:09:12 +02001546static inline void intel_pstate_calc_avg_perf(struct cpudata *cpu)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001547{
Stratos Karafotis6b17ddb2014-04-29 20:53:49 +03001548 struct sample *sample = &cpu->sample;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001549
Rafael J. Wysockia1c97872016-05-11 19:09:12 +02001550 sample->core_avg_perf = div_ext_fp(sample->aperf, sample->mperf);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001551}
1552
Rafael J. Wysocki4fec7ad2016-03-10 23:45:19 +01001553static inline bool intel_pstate_sample(struct cpudata *cpu, u64 time)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001554{
Dirk Brandewie93f08222013-02-06 09:02:13 -08001555 u64 aperf, mperf;
Stratos Karafotis4ab60c32014-07-18 08:37:24 -07001556 unsigned long flags;
Doug Smythies4055fad2015-04-11 21:10:26 -07001557 u64 tsc;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001558
Stratos Karafotis4ab60c32014-07-18 08:37:24 -07001559 local_irq_save(flags);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001560 rdmsrl(MSR_IA32_APERF, aperf);
1561 rdmsrl(MSR_IA32_MPERF, mperf);
Philippe Longepee70eed22015-12-04 17:40:32 +01001562 tsc = rdtsc();
Rafael J. Wysocki4fec7ad2016-03-10 23:45:19 +01001563 if (cpu->prev_mperf == mperf || cpu->prev_tsc == tsc) {
Srinivas Pandruvada8e601a92015-10-15 12:34:21 -07001564 local_irq_restore(flags);
Rafael J. Wysocki4fec7ad2016-03-10 23:45:19 +01001565 return false;
Srinivas Pandruvada8e601a92015-10-15 12:34:21 -07001566 }
Stratos Karafotis4ab60c32014-07-18 08:37:24 -07001567 local_irq_restore(flags);
Dirk Brandewieb69880f2014-01-16 10:32:25 -08001568
Dirk Brandewiec4ee8412014-05-29 09:32:24 -07001569 cpu->last_sample_time = cpu->sample.time;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001570 cpu->sample.time = time;
Dirk Brandewied37e2b72014-02-12 10:01:04 -08001571 cpu->sample.aperf = aperf;
1572 cpu->sample.mperf = mperf;
Doug Smythies4055fad2015-04-11 21:10:26 -07001573 cpu->sample.tsc = tsc;
Dirk Brandewied37e2b72014-02-12 10:01:04 -08001574 cpu->sample.aperf -= cpu->prev_aperf;
1575 cpu->sample.mperf -= cpu->prev_mperf;
Doug Smythies4055fad2015-04-11 21:10:26 -07001576 cpu->sample.tsc -= cpu->prev_tsc;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001577
Dirk Brandewie93f08222013-02-06 09:02:13 -08001578 cpu->prev_aperf = aperf;
1579 cpu->prev_mperf = mperf;
Doug Smythies4055fad2015-04-11 21:10:26 -07001580 cpu->prev_tsc = tsc;
Rafael J. Wysockifebce402016-04-02 01:06:21 +02001581 /*
1582 * First time this function is invoked in a given cycle, all of the
1583 * previous sample data fields are equal to zero or stale and they must
1584 * be populated with meaningful numbers for things to work, so assume
1585 * that sample.time will always be reset before setting the utilization
1586 * update hook and make the caller skip the sample then.
1587 */
Rafael J. Wysockieabd22c2017-03-28 00:15:37 +02001588 if (cpu->last_sample_time) {
1589 intel_pstate_calc_avg_perf(cpu);
1590 return true;
1591 }
1592 return false;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001593}
1594
Philippe Longepe8fa520a2016-03-06 08:34:06 +01001595static inline int32_t get_avg_frequency(struct cpudata *cpu)
1596{
Doug Smythiesc587c792017-08-08 14:05:12 -07001597 return mul_ext_fp(cpu->sample.core_avg_perf, cpu_khz);
Philippe Longepe8fa520a2016-03-06 08:34:06 +01001598}
1599
Philippe Longepebdcaa232016-04-22 11:46:09 -07001600static inline int32_t get_avg_pstate(struct cpudata *cpu)
1601{
Rafael J. Wysocki8edb0a62016-05-11 19:10:42 +02001602 return mul_ext_fp(cpu->pstate.max_pstate_physical,
1603 cpu->sample.core_avg_perf);
Philippe Longepebdcaa232016-04-22 11:46:09 -07001604}
1605
Rafael J. Wysockid77d4882017-08-10 01:09:16 +02001606static inline int32_t get_target_pstate(struct cpudata *cpu)
Philippe Longepee70eed22015-12-04 17:40:32 +01001607{
1608 struct sample *sample = &cpu->sample;
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02001609 int32_t busy_frac, boost;
Rafael J. Wysocki0843e832016-10-06 14:07:51 +02001610 int target, avg_pstate;
Philippe Longepee70eed22015-12-04 17:40:32 +01001611
Srinivas Pandruvada6e34e1f2017-07-13 15:03:51 -07001612 busy_frac = div_fp(sample->mperf << cpu->aperf_mperf_shift,
1613 sample->tsc);
Philippe Longepe63d1d652015-12-04 17:40:35 +01001614
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02001615 boost = cpu->iowait_boost;
1616 cpu->iowait_boost >>= 1;
Philippe Longepe63d1d652015-12-04 17:40:35 +01001617
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02001618 if (busy_frac < boost)
1619 busy_frac = boost;
Philippe Longepe63d1d652015-12-04 17:40:35 +01001620
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02001621 sample->busy_scaled = busy_frac * 100;
Rafael J. Wysocki0843e832016-10-06 14:07:51 +02001622
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01001623 target = global.no_turbo || global.turbo_disabled ?
Rafael J. Wysocki0843e832016-10-06 14:07:51 +02001624 cpu->pstate.max_pstate : cpu->pstate.turbo_pstate;
1625 target += target >> 2;
1626 target = mul_fp(target, busy_frac);
1627 if (target < cpu->pstate.min_pstate)
1628 target = cpu->pstate.min_pstate;
1629
1630 /*
1631 * If the average P-state during the previous cycle was higher than the
1632 * current target, add 50% of the difference to the target to reduce
1633 * possible performance oscillations and offset possible performance
1634 * loss related to moving the workload from one CPU to another within
1635 * a package/module.
1636 */
1637 avg_pstate = get_avg_pstate(cpu);
1638 if (avg_pstate > target)
1639 target += (avg_pstate - target) >> 1;
1640
1641 return target;
Philippe Longepee70eed22015-12-04 17:40:32 +01001642}
1643
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01001644static int intel_pstate_prepare_request(struct cpudata *cpu, int pstate)
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001645{
Rafael J. Wysockib02aabe2017-03-28 00:24:26 +02001646 int max_pstate = intel_pstate_get_base_pstate(cpu);
1647 int min_pstate;
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001648
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -07001649 min_pstate = max(cpu->pstate.min_pstate, cpu->min_perf_ratio);
1650 max_pstate = max(min_pstate, cpu->max_perf_ratio);
Rafael J. Wysockib02aabe2017-03-28 00:24:26 +02001651 return clamp_t(int, pstate, min_pstate, max_pstate);
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01001652}
1653
1654static void intel_pstate_update_pstate(struct cpudata *cpu, int pstate)
1655{
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001656 if (pstate == cpu->pstate.current_pstate)
1657 return;
1658
Rafael J. Wysockibc95a452016-07-19 15:10:37 +02001659 cpu->pstate.current_pstate = pstate;
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001660 wrmsrl(MSR_IA32_PERF_CTL, pstate_funcs.get_val(cpu, pstate));
1661}
1662
Rafael J. Wysockia8912832017-08-10 01:08:56 +02001663static void intel_pstate_adjust_pstate(struct cpudata *cpu)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001664{
Rafael J. Wysocki67dd9bf2017-03-28 00:17:10 +02001665 int from = cpu->pstate.current_pstate;
Doug Smythies4055fad2015-04-11 21:10:26 -07001666 struct sample *sample;
Rafael J. Wysockia8912832017-08-10 01:08:56 +02001667 int target_pstate;
Doug Smythies4055fad2015-04-11 21:10:26 -07001668
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01001669 update_turbo_state();
1670
Rafael J. Wysockid77d4882017-08-10 01:09:16 +02001671 target_pstate = get_target_pstate(cpu);
Rafael J. Wysocki64078292017-03-03 23:51:31 +01001672 target_pstate = intel_pstate_prepare_request(cpu, target_pstate);
1673 trace_cpu_frequency(target_pstate * cpu->pstate.scaling, cpu->cpu);
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001674 intel_pstate_update_pstate(cpu, target_pstate);
Doug Smythies4055fad2015-04-11 21:10:26 -07001675
1676 sample = &cpu->sample;
Rafael J. Wysockia1c97872016-05-11 19:09:12 +02001677 trace_pstate_sample(mul_ext_fp(100, sample->core_avg_perf),
Philippe Longepe157386b2015-12-04 17:40:30 +01001678 fp_toint(sample->busy_scaled),
Doug Smythies4055fad2015-04-11 21:10:26 -07001679 from,
1680 cpu->pstate.current_pstate,
1681 sample->mperf,
1682 sample->aperf,
1683 sample->tsc,
Srinivas Pandruvada3ba7bca2016-09-13 17:41:33 -07001684 get_avg_frequency(cpu),
1685 fp_toint(cpu->iowait_boost * 100));
Dirk Brandewie93f08222013-02-06 09:02:13 -08001686}
1687
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001688static void intel_pstate_update_util(struct update_util_data *data, u64 time,
Rafael J. Wysocki58919e82016-08-16 22:14:55 +02001689 unsigned int flags)
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001690{
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001691 struct cpudata *cpu = container_of(data, struct cpudata, update_util);
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02001692 u64 delta_ns;
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001693
Viresh Kumar674e7542017-07-28 12:16:38 +05301694 /* Don't allow remote callbacks */
1695 if (smp_processor_id() != cpu->cpu)
1696 return;
1697
Rafael J. Wysockieabd22c2017-03-28 00:15:37 +02001698 if (flags & SCHED_CPUFREQ_IOWAIT) {
1699 cpu->iowait_boost = int_tofp(1);
Srinivas Pandruvada7bde2d52017-08-03 19:03:14 -07001700 cpu->last_update = time;
1701 /*
1702 * The last time the busy was 100% so P-state was max anyway
1703 * so avoid overhead of computation.
1704 */
1705 if (fp_toint(cpu->sample.busy_scaled) == 100)
1706 return;
1707
1708 goto set_pstate;
Rafael J. Wysockieabd22c2017-03-28 00:15:37 +02001709 } else if (cpu->iowait_boost) {
1710 /* Clear iowait_boost if the CPU may have been idle. */
1711 delta_ns = time - cpu->last_update;
1712 if (delta_ns > TICK_NSEC)
1713 cpu->iowait_boost = 0;
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02001714 }
Rafael J. Wysockieabd22c2017-03-28 00:15:37 +02001715 cpu->last_update = time;
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02001716 delta_ns = time - cpu->sample.time;
Rafael J. Wysockid77d4882017-08-10 01:09:16 +02001717 if ((s64)delta_ns < INTEL_PSTATE_SAMPLING_INTERVAL)
Rafael J. Wysockieabd22c2017-03-28 00:15:37 +02001718 return;
Rafael J. Wysocki4fec7ad2016-03-10 23:45:19 +01001719
Srinivas Pandruvada7bde2d52017-08-03 19:03:14 -07001720set_pstate:
Rafael J. Wysockia8912832017-08-10 01:08:56 +02001721 if (intel_pstate_sample(cpu, time))
1722 intel_pstate_adjust_pstate(cpu);
Rafael J. Wysocki67dd9bf2017-03-28 00:17:10 +02001723}
Rafael J. Wysockieabd22c2017-03-28 00:15:37 +02001724
Rafael J. Wysocki2f49afc2017-03-28 00:19:03 +02001725static struct pstate_funcs core_funcs = {
1726 .get_max = core_get_max_pstate,
1727 .get_max_physical = core_get_max_pstate_physical,
1728 .get_min = core_get_min_pstate,
1729 .get_turbo = core_get_turbo_pstate,
1730 .get_scaling = core_get_scaling,
1731 .get_val = core_get_val,
Rafael J. Wysockide4a76c2017-03-28 00:18:02 +02001732};
1733
Rafael J. Wysocki2f49afc2017-03-28 00:19:03 +02001734static const struct pstate_funcs silvermont_funcs = {
1735 .get_max = atom_get_max_pstate,
1736 .get_max_physical = atom_get_max_pstate,
1737 .get_min = atom_get_min_pstate,
1738 .get_turbo = atom_get_turbo_pstate,
1739 .get_val = atom_get_val,
1740 .get_scaling = silvermont_get_scaling,
1741 .get_vid = atom_get_vid,
Rafael J. Wysockide4a76c2017-03-28 00:18:02 +02001742};
1743
Rafael J. Wysocki2f49afc2017-03-28 00:19:03 +02001744static const struct pstate_funcs airmont_funcs = {
1745 .get_max = atom_get_max_pstate,
1746 .get_max_physical = atom_get_max_pstate,
1747 .get_min = atom_get_min_pstate,
1748 .get_turbo = atom_get_turbo_pstate,
1749 .get_val = atom_get_val,
1750 .get_scaling = airmont_get_scaling,
1751 .get_vid = atom_get_vid,
Rafael J. Wysockide4a76c2017-03-28 00:18:02 +02001752};
1753
Rafael J. Wysocki2f49afc2017-03-28 00:19:03 +02001754static const struct pstate_funcs knl_funcs = {
1755 .get_max = core_get_max_pstate,
1756 .get_max_physical = core_get_max_pstate_physical,
1757 .get_min = core_get_min_pstate,
1758 .get_turbo = knl_get_turbo_pstate,
Srinivas Pandruvada6e34e1f2017-07-13 15:03:51 -07001759 .get_aperf_mperf_shift = knl_get_aperf_mperf_shift,
Rafael J. Wysocki2f49afc2017-03-28 00:19:03 +02001760 .get_scaling = core_get_scaling,
1761 .get_val = core_get_val,
Rafael J. Wysockide4a76c2017-03-28 00:18:02 +02001762};
1763
Dirk Brandewie93f08222013-02-06 09:02:13 -08001764#define ICPU(model, policy) \
Dirk Brandewie6cbd7ee2014-01-06 10:59:16 -08001765 { X86_VENDOR_INTEL, 6, model, X86_FEATURE_APERFMPERF,\
1766 (unsigned long)&policy }
Dirk Brandewie93f08222013-02-06 09:02:13 -08001767
1768static const struct x86_cpu_id intel_pstate_cpu_ids[] = {
Rafael J. Wysocki2f49afc2017-03-28 00:19:03 +02001769 ICPU(INTEL_FAM6_SANDYBRIDGE, core_funcs),
1770 ICPU(INTEL_FAM6_SANDYBRIDGE_X, core_funcs),
1771 ICPU(INTEL_FAM6_ATOM_SILVERMONT1, silvermont_funcs),
1772 ICPU(INTEL_FAM6_IVYBRIDGE, core_funcs),
1773 ICPU(INTEL_FAM6_HASWELL_CORE, core_funcs),
1774 ICPU(INTEL_FAM6_BROADWELL_CORE, core_funcs),
1775 ICPU(INTEL_FAM6_IVYBRIDGE_X, core_funcs),
1776 ICPU(INTEL_FAM6_HASWELL_X, core_funcs),
1777 ICPU(INTEL_FAM6_HASWELL_ULT, core_funcs),
1778 ICPU(INTEL_FAM6_HASWELL_GT3E, core_funcs),
1779 ICPU(INTEL_FAM6_BROADWELL_GT3E, core_funcs),
1780 ICPU(INTEL_FAM6_ATOM_AIRMONT, airmont_funcs),
1781 ICPU(INTEL_FAM6_SKYLAKE_MOBILE, core_funcs),
1782 ICPU(INTEL_FAM6_BROADWELL_X, core_funcs),
1783 ICPU(INTEL_FAM6_SKYLAKE_DESKTOP, core_funcs),
1784 ICPU(INTEL_FAM6_BROADWELL_XEON_D, core_funcs),
1785 ICPU(INTEL_FAM6_XEON_PHI_KNL, knl_funcs),
1786 ICPU(INTEL_FAM6_XEON_PHI_KNM, knl_funcs),
Srinivas Pandruvadadbd49b82018-01-10 11:38:51 -08001787 ICPU(INTEL_FAM6_ATOM_GOLDMONT, core_funcs),
1788 ICPU(INTEL_FAM6_ATOM_GEMINI_LAKE, core_funcs),
Srinivas Pandruvadad8de7a42018-01-10 11:38:52 -08001789 ICPU(INTEL_FAM6_SKYLAKE_X, core_funcs),
Dirk Brandewie93f08222013-02-06 09:02:13 -08001790 {}
1791};
1792MODULE_DEVICE_TABLE(x86cpu, intel_pstate_cpu_ids);
1793
Jisheng Zhang29327c82016-06-27 18:07:17 +08001794static const struct x86_cpu_id intel_pstate_cpu_oob_ids[] __initconst = {
Rafael J. Wysocki2f49afc2017-03-28 00:19:03 +02001795 ICPU(INTEL_FAM6_BROADWELL_XEON_D, core_funcs),
1796 ICPU(INTEL_FAM6_BROADWELL_X, core_funcs),
1797 ICPU(INTEL_FAM6_SKYLAKE_X, core_funcs),
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001798 {}
1799};
1800
Srinivas Pandruvada6e978b22017-02-03 14:18:39 -08001801static const struct x86_cpu_id intel_pstate_cpu_ee_disable_ids[] = {
Rafael J. Wysocki2f49afc2017-03-28 00:19:03 +02001802 ICPU(INTEL_FAM6_KABYLAKE_DESKTOP, core_funcs),
Srinivas Pandruvada6e978b22017-02-03 14:18:39 -08001803 {}
1804};
1805
Srinivas Pandruvada41ab43c2018-06-05 14:42:42 -07001806static const struct x86_cpu_id intel_pstate_hwp_boost_ids[] = {
1807 ICPU(INTEL_FAM6_SKYLAKE_X, core_funcs),
1808 ICPU(INTEL_FAM6_SKYLAKE_DESKTOP, core_funcs),
1809 {}
1810};
1811
Dirk Brandewie93f08222013-02-06 09:02:13 -08001812static int intel_pstate_init_cpu(unsigned int cpunum)
1813{
Dirk Brandewie93f08222013-02-06 09:02:13 -08001814 struct cpudata *cpu;
1815
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001816 cpu = all_cpu_data[cpunum];
1817
1818 if (!cpu) {
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01001819 cpu = kzalloc(sizeof(*cpu), GFP_KERNEL);
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001820 if (!cpu)
1821 return -ENOMEM;
1822
1823 all_cpu_data[cpunum] = cpu;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001824
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -08001825 cpu->epp_default = -EINVAL;
1826 cpu->epp_powersave = -EINVAL;
1827 cpu->epp_saved = -EINVAL;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001828 }
Dirk Brandewie93f08222013-02-06 09:02:13 -08001829
1830 cpu = all_cpu_data[cpunum];
1831
Dirk Brandewie93f08222013-02-06 09:02:13 -08001832 cpu->cpu = cpunum;
Kristen Carlson Accardiba88d432015-07-14 09:46:23 -07001833
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001834 if (hwp_active) {
Srinivas Pandruvada6e978b22017-02-03 14:18:39 -08001835 const struct x86_cpu_id *id;
1836
1837 id = x86_match_cpu(intel_pstate_cpu_ee_disable_ids);
1838 if (id)
1839 intel_pstate_disable_ee(cpunum);
1840
Kristen Carlson Accardiba88d432015-07-14 09:46:23 -07001841 intel_pstate_hwp_enable(cpu);
Srinivas Pandruvada41ab43c2018-06-05 14:42:42 -07001842
1843 id = x86_match_cpu(intel_pstate_hwp_boost_ids);
1844 if (id)
1845 hwp_boost = true;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01001846 }
Kristen Carlson Accardiba88d432015-07-14 09:46:23 -07001847
Vincent Minet179e8472014-07-05 01:51:33 +02001848 intel_pstate_get_cpu_pstates(cpu);
Dirk Brandewie016c8152013-10-21 09:20:34 -07001849
Joe Perches4836df12016-04-05 13:28:23 -07001850 pr_debug("controlling: cpu %d\n", cpunum);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001851
1852 return 0;
1853}
1854
Rafael J. Wysockifebce402016-04-02 01:06:21 +02001855static void intel_pstate_set_update_util_hook(unsigned int cpu_num)
Rafael J. Wysockibb6ab522016-03-31 17:42:15 +02001856{
Rafael J. Wysockifebce402016-04-02 01:06:21 +02001857 struct cpudata *cpu = all_cpu_data[cpu_num];
1858
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -07001859 if (hwp_active && !hwp_boost)
Len Brown62611cb2017-06-23 22:11:53 -07001860 return;
1861
Rafael J. Wysocki5ab666e2016-06-27 23:47:15 +02001862 if (cpu->update_util_set)
1863 return;
1864
Rafael J. Wysockifebce402016-04-02 01:06:21 +02001865 /* Prevent intel_pstate_update_util() from using stale data. */
1866 cpu->sample.time = 0;
Rafael J. Wysocki67dd9bf2017-03-28 00:17:10 +02001867 cpufreq_add_update_util_hook(cpu_num, &cpu->update_util,
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -07001868 (hwp_active ?
1869 intel_pstate_update_util_hwp :
1870 intel_pstate_update_util));
Chen Yu4578ee7e2016-05-11 14:33:08 +08001871 cpu->update_util_set = true;
Rafael J. Wysockibb6ab522016-03-31 17:42:15 +02001872}
1873
1874static void intel_pstate_clear_update_util_hook(unsigned int cpu)
1875{
Chen Yu4578ee7e2016-05-11 14:33:08 +08001876 struct cpudata *cpu_data = all_cpu_data[cpu];
1877
1878 if (!cpu_data->update_util_set)
1879 return;
1880
Rafael J. Wysocki0bed6122016-04-02 01:08:43 +02001881 cpufreq_remove_update_util_hook(cpu);
Chen Yu4578ee7e2016-05-11 14:33:08 +08001882 cpu_data->update_util_set = false;
Rafael J. Wysockibb6ab522016-03-31 17:42:15 +02001883 synchronize_sched();
1884}
1885
Rafael J. Wysocki80b120c2017-03-23 00:00:47 +01001886static int intel_pstate_get_max_freq(struct cpudata *cpu)
1887{
1888 return global.turbo_disabled || global.no_turbo ?
1889 cpu->pstate.max_freq : cpu->pstate.turbo_freq;
1890}
1891
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001892static void intel_pstate_update_perf_limits(struct cpufreq_policy *policy,
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01001893 struct cpudata *cpu)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001894{
Rafael J. Wysocki80b120c2017-03-23 00:00:47 +01001895 int max_freq = intel_pstate_get_max_freq(cpu);
Rafael J. Wysockie4c204c2017-03-14 16:18:34 +01001896 int32_t max_policy_perf, min_policy_perf;
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -07001897 int max_state, turbo_max;
Srinivas Pandruvadaa410c03d2016-10-28 10:44:52 -07001898
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -07001899 /*
1900 * HWP needs some special consideration, because on BDX the
1901 * HWP_REQUEST uses abstract value to represent performance
1902 * rather than pure ratios.
1903 */
1904 if (hwp_active) {
1905 intel_pstate_get_hwp_max(cpu->cpu, &turbo_max, &max_state);
1906 } else {
1907 max_state = intel_pstate_get_base_pstate(cpu);
1908 turbo_max = cpu->pstate.turbo_pstate;
1909 }
1910
1911 max_policy_perf = max_state * policy->max / max_freq;
Srinivas Pandruvada5879f872016-10-25 13:20:41 -07001912 if (policy->max == policy->min) {
Rafael J. Wysockie4c204c2017-03-14 16:18:34 +01001913 min_policy_perf = max_policy_perf;
Srinivas Pandruvada5879f872016-10-25 13:20:41 -07001914 } else {
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -07001915 min_policy_perf = max_state * policy->min / max_freq;
Rafael J. Wysockie4c204c2017-03-14 16:18:34 +01001916 min_policy_perf = clamp_t(int32_t, min_policy_perf,
1917 0, max_policy_perf);
Srinivas Pandruvada5879f872016-10-25 13:20:41 -07001918 }
Chen Yu43717aa2015-09-09 18:27:31 +08001919
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -07001920 pr_debug("cpu:%d max_state %d min_policy_perf:%d max_policy_perf:%d\n",
1921 policy->cpu, max_state,
1922 min_policy_perf, max_policy_perf);
1923
Rafael J. Wysockie4c204c2017-03-14 16:18:34 +01001924 /* Normalize user input to [min_perf, max_perf] */
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01001925 if (per_cpu_limits) {
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -07001926 cpu->min_perf_ratio = min_policy_perf;
1927 cpu->max_perf_ratio = max_policy_perf;
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01001928 } else {
1929 int32_t global_min, global_max;
Chen Yu43717aa2015-09-09 18:27:31 +08001930
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01001931 /* Global limits are in percent of the maximum turbo P-state. */
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -07001932 global_max = DIV_ROUND_UP(turbo_max * global.max_perf_pct, 100);
1933 global_min = DIV_ROUND_UP(turbo_max * global.min_perf_pct, 100);
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01001934 global_min = clamp_t(int32_t, global_min, 0, global_max);
1935
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -07001936 pr_debug("cpu:%d global_min:%d global_max:%d\n", policy->cpu,
1937 global_min, global_max);
1938
1939 cpu->min_perf_ratio = max(min_policy_perf, global_min);
1940 cpu->min_perf_ratio = min(cpu->min_perf_ratio, max_policy_perf);
1941 cpu->max_perf_ratio = min(max_policy_perf, global_max);
1942 cpu->max_perf_ratio = max(min_policy_perf, cpu->max_perf_ratio);
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01001943
1944 /* Make sure min_perf <= max_perf */
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -07001945 cpu->min_perf_ratio = min(cpu->min_perf_ratio,
1946 cpu->max_perf_ratio);
1947
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01001948 }
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -07001949 pr_debug("cpu:%d max_perf_ratio:%d min_perf_ratio:%d\n", policy->cpu,
1950 cpu->max_perf_ratio,
1951 cpu->min_perf_ratio);
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001952}
1953
Dirk Brandewie93f08222013-02-06 09:02:13 -08001954static int intel_pstate_set_policy(struct cpufreq_policy *policy)
Pali Rohár36b4bed2014-10-16 01:16:51 +02001955{
Dirk Brandewie93f08222013-02-06 09:02:13 -08001956 struct cpudata *cpu;
1957
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -07001958 if (!policy->cpuinfo.max_freq)
Srinivas Pandruvadad1b68482013-04-09 22:38:18 +00001959 return -ENODEV;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001960
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001961 pr_debug("set_policy cpuinfo.max %u policy->max %u\n",
Kristen Carlson Accardia0475992015-01-29 13:03:52 -08001962 policy->cpuinfo.max_freq, policy->max);
1963
1964 cpu = all_cpu_data[policy->cpu];
Srinivas Pandruvadad1b68482013-04-09 22:38:18 +00001965 cpu->policy = policy->policy;
1966
Srinivas Pandruvadab59fe542016-12-06 13:32:15 -08001967 mutex_lock(&intel_pstate_limits_lock);
1968
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01001969 intel_pstate_update_perf_limits(policy, cpu);
Rafael J. Wysockia240c4a2017-03-02 23:29:12 +01001970
Rafael J. Wysocki2f1d4072016-10-24 23:20:25 +02001971 if (cpu->policy == CPUFREQ_POLICY_PERFORMANCE) {
Rafael J. Wysockia6c6ead2016-10-19 02:57:22 +02001972 /*
1973 * NOHZ_FULL CPUs need this as the governor callback may not
1974 * be invoked on them.
1975 */
1976 intel_pstate_clear_update_util_hook(policy->cpu);
1977 intel_pstate_max_within_limits(cpu);
Len Brown82b4e032017-06-23 22:11:54 -07001978 } else {
1979 intel_pstate_set_update_util_hook(policy->cpu);
Rafael J. Wysockia6c6ead2016-10-19 02:57:22 +02001980 }
1981
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -07001982 if (hwp_active) {
1983 /*
1984 * When hwp_boost was active before and dynamically it
1985 * was turned off, in that case we need to clear the
1986 * update util hook.
1987 */
1988 if (!hwp_boost)
1989 intel_pstate_clear_update_util_hook(policy->cpu);
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +02001990 intel_pstate_hwp_set(policy->cpu);
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -07001991 }
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001992
Srinivas Pandruvadab59fe542016-12-06 13:32:15 -08001993 mutex_unlock(&intel_pstate_limits_lock);
1994
Dirk Brandewie93f08222013-02-06 09:02:13 -08001995 return 0;
1996}
1997
Rafael J. Wysocki80b120c2017-03-23 00:00:47 +01001998static void intel_pstate_adjust_policy_max(struct cpufreq_policy *policy,
1999 struct cpudata *cpu)
2000{
2001 if (cpu->pstate.max_pstate_physical > cpu->pstate.max_pstate &&
2002 policy->max < policy->cpuinfo.max_freq &&
2003 policy->max > cpu->pstate.max_freq) {
2004 pr_debug("policy->max > max non turbo frequency\n");
2005 policy->max = policy->cpuinfo.max_freq;
2006 }
2007}
2008
Dirk Brandewie93f08222013-02-06 09:02:13 -08002009static int intel_pstate_verify_policy(struct cpufreq_policy *policy)
2010{
Srinivas Pandruvada7d9a8a92017-01-18 10:48:23 -08002011 struct cpudata *cpu = all_cpu_data[policy->cpu];
Srinivas Pandruvada7d9a8a92017-01-18 10:48:23 -08002012
2013 update_turbo_state();
Rafael J. Wysocki80b120c2017-03-23 00:00:47 +01002014 cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq,
2015 intel_pstate_get_max_freq(cpu));
Dirk Brandewie93f08222013-02-06 09:02:13 -08002016
Stratos Karafotis285cb992014-07-18 08:37:21 -07002017 if (policy->policy != CPUFREQ_POLICY_POWERSAVE &&
Stratos Karafotisc4108332014-07-18 08:37:23 -07002018 policy->policy != CPUFREQ_POLICY_PERFORMANCE)
Dirk Brandewie93f08222013-02-06 09:02:13 -08002019 return -EINVAL;
2020
Rafael J. Wysocki80b120c2017-03-23 00:00:47 +01002021 intel_pstate_adjust_policy_max(policy, cpu);
2022
Dirk Brandewie93f08222013-02-06 09:02:13 -08002023 return 0;
2024}
2025
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002026static void intel_cpufreq_stop_cpu(struct cpufreq_policy *policy)
Dirk Brandewie93f08222013-02-06 09:02:13 -08002027{
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002028 intel_pstate_set_min_pstate(all_cpu_data[policy->cpu]);
Dirk Brandewie93f08222013-02-06 09:02:13 -08002029}
2030
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002031static void intel_pstate_stop_cpu(struct cpufreq_policy *policy)
2032{
2033 pr_debug("CPU %d exiting\n", policy->cpu);
2034
2035 intel_pstate_clear_update_util_hook(policy->cpu);
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -08002036 if (hwp_active)
2037 intel_pstate_hwp_save_state(policy);
2038 else
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002039 intel_cpufreq_stop_cpu(policy);
2040}
2041
2042static int intel_pstate_cpu_exit(struct cpufreq_policy *policy)
2043{
2044 intel_pstate_exit_perf_limits(policy);
2045
2046 policy->fast_switch_possible = false;
2047
2048 return 0;
2049}
2050
2051static int __intel_pstate_cpu_init(struct cpufreq_policy *policy)
Dirk Brandewie93f08222013-02-06 09:02:13 -08002052{
Dirk Brandewie93f08222013-02-06 09:02:13 -08002053 struct cpudata *cpu;
Dirk Brandewie52e0a502013-10-15 11:06:14 -07002054 int rc;
Dirk Brandewie93f08222013-02-06 09:02:13 -08002055
2056 rc = intel_pstate_init_cpu(policy->cpu);
2057 if (rc)
2058 return rc;
2059
2060 cpu = all_cpu_data[policy->cpu];
2061
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -07002062 cpu->max_perf_ratio = 0xFF;
2063 cpu->min_perf_ratio = 0;
Dirk Brandewie93f08222013-02-06 09:02:13 -08002064
Dirk Brandewieb27580b2014-10-13 08:37:43 -07002065 policy->min = cpu->pstate.min_pstate * cpu->pstate.scaling;
2066 policy->max = cpu->pstate.turbo_pstate * cpu->pstate.scaling;
Dirk Brandewie93f08222013-02-06 09:02:13 -08002067
2068 /* cpuinfo and default policy values */
Dirk Brandewieb27580b2014-10-13 08:37:43 -07002069 policy->cpuinfo.min_freq = cpu->pstate.min_pstate * cpu->pstate.scaling;
Srinivas Pandruvada983e6002016-06-07 17:38:53 -07002070 update_turbo_state();
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01002071 policy->cpuinfo.max_freq = global.turbo_disabled ?
Srinivas Pandruvada983e6002016-06-07 17:38:53 -07002072 cpu->pstate.max_pstate : cpu->pstate.turbo_pstate;
2073 policy->cpuinfo.max_freq *= cpu->pstate.scaling;
2074
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07002075 intel_pstate_init_acpi_perf_limits(policy);
Dirk Brandewie93f08222013-02-06 09:02:13 -08002076
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002077 policy->fast_switch_possible = true;
2078
Dirk Brandewie93f08222013-02-06 09:02:13 -08002079 return 0;
2080}
2081
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002082static int intel_pstate_cpu_init(struct cpufreq_policy *policy)
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07002083{
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002084 int ret = __intel_pstate_cpu_init(policy);
2085
2086 if (ret)
2087 return ret;
2088
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01002089 if (IS_ENABLED(CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE))
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002090 policy->policy = CPUFREQ_POLICY_PERFORMANCE;
2091 else
2092 policy->policy = CPUFREQ_POLICY_POWERSAVE;
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07002093
2094 return 0;
2095}
2096
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002097static struct cpufreq_driver intel_pstate = {
Dirk Brandewie93f08222013-02-06 09:02:13 -08002098 .flags = CPUFREQ_CONST_LOOPS,
2099 .verify = intel_pstate_verify_policy,
2100 .setpolicy = intel_pstate_set_policy,
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -08002101 .suspend = intel_pstate_hwp_save_state,
Srinivas Pandruvada84428852016-11-24 16:07:10 -08002102 .resume = intel_pstate_resume,
Dirk Brandewie93f08222013-02-06 09:02:13 -08002103 .init = intel_pstate_cpu_init,
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07002104 .exit = intel_pstate_cpu_exit,
Dirk Brandewiebb180082014-03-19 08:45:54 -07002105 .stop_cpu = intel_pstate_stop_cpu,
Dirk Brandewie93f08222013-02-06 09:02:13 -08002106 .name = "intel_pstate",
Dirk Brandewie93f08222013-02-06 09:02:13 -08002107};
2108
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002109static int intel_cpufreq_verify_policy(struct cpufreq_policy *policy)
2110{
2111 struct cpudata *cpu = all_cpu_data[policy->cpu];
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002112
2113 update_turbo_state();
Rafael J. Wysocki80b120c2017-03-23 00:00:47 +01002114 cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq,
2115 intel_pstate_get_max_freq(cpu));
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002116
Rafael J. Wysocki80b120c2017-03-23 00:00:47 +01002117 intel_pstate_adjust_policy_max(policy, cpu);
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002118
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01002119 intel_pstate_update_perf_limits(policy, cpu);
2120
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002121 return 0;
2122}
2123
Doug Smythies50e9ffa2018-05-14 08:35:49 -07002124/* Use of trace in passive mode:
2125 *
2126 * In passive mode the trace core_busy field (also known as the
2127 * performance field, and lablelled as such on the graphs; also known as
2128 * core_avg_perf) is not needed and so is re-assigned to indicate if the
2129 * driver call was via the normal or fast switch path. Various graphs
2130 * output from the intel_pstate_tracer.py utility that include core_busy
2131 * (or performance or core_avg_perf) have a fixed y-axis from 0 to 100%,
2132 * so we use 10 to indicate the the normal path through the driver, and
2133 * 90 to indicate the fast switch path through the driver.
2134 * The scaled_busy field is not used, and is set to 0.
2135 */
2136
2137#define INTEL_PSTATE_TRACE_TARGET 10
2138#define INTEL_PSTATE_TRACE_FAST_SWITCH 90
2139
2140static void intel_cpufreq_trace(struct cpudata *cpu, unsigned int trace_type, int old_pstate)
2141{
2142 struct sample *sample;
2143
2144 if (!trace_pstate_sample_enabled())
2145 return;
2146
2147 if (!intel_pstate_sample(cpu, ktime_get()))
2148 return;
2149
2150 sample = &cpu->sample;
2151 trace_pstate_sample(trace_type,
2152 0,
2153 old_pstate,
2154 cpu->pstate.current_pstate,
2155 sample->mperf,
2156 sample->aperf,
2157 sample->tsc,
2158 get_avg_frequency(cpu),
2159 fp_toint(cpu->iowait_boost * 100));
2160}
2161
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002162static int intel_cpufreq_target(struct cpufreq_policy *policy,
2163 unsigned int target_freq,
2164 unsigned int relation)
2165{
2166 struct cpudata *cpu = all_cpu_data[policy->cpu];
2167 struct cpufreq_freqs freqs;
Doug Smythies50e9ffa2018-05-14 08:35:49 -07002168 int target_pstate, old_pstate;
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002169
Rafael J. Wysocki64897b22017-03-21 22:19:07 +01002170 update_turbo_state();
2171
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002172 freqs.old = policy->cur;
Rafael J. Wysocki64897b22017-03-21 22:19:07 +01002173 freqs.new = target_freq;
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002174
2175 cpufreq_freq_transition_begin(policy, &freqs);
2176 switch (relation) {
2177 case CPUFREQ_RELATION_L:
2178 target_pstate = DIV_ROUND_UP(freqs.new, cpu->pstate.scaling);
2179 break;
2180 case CPUFREQ_RELATION_H:
2181 target_pstate = freqs.new / cpu->pstate.scaling;
2182 break;
2183 default:
2184 target_pstate = DIV_ROUND_CLOSEST(freqs.new, cpu->pstate.scaling);
2185 break;
2186 }
2187 target_pstate = intel_pstate_prepare_request(cpu, target_pstate);
Doug Smythies50e9ffa2018-05-14 08:35:49 -07002188 old_pstate = cpu->pstate.current_pstate;
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002189 if (target_pstate != cpu->pstate.current_pstate) {
2190 cpu->pstate.current_pstate = target_pstate;
2191 wrmsrl_on_cpu(policy->cpu, MSR_IA32_PERF_CTL,
2192 pstate_funcs.get_val(cpu, target_pstate));
2193 }
Rafael J. Wysocki64078292017-03-03 23:51:31 +01002194 freqs.new = target_pstate * cpu->pstate.scaling;
Doug Smythies50e9ffa2018-05-14 08:35:49 -07002195 intel_cpufreq_trace(cpu, INTEL_PSTATE_TRACE_TARGET, old_pstate);
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002196 cpufreq_freq_transition_end(policy, &freqs, false);
2197
2198 return 0;
2199}
2200
2201static unsigned int intel_cpufreq_fast_switch(struct cpufreq_policy *policy,
2202 unsigned int target_freq)
2203{
2204 struct cpudata *cpu = all_cpu_data[policy->cpu];
Doug Smythies50e9ffa2018-05-14 08:35:49 -07002205 int target_pstate, old_pstate;
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002206
Rafael J. Wysocki64897b22017-03-21 22:19:07 +01002207 update_turbo_state();
2208
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002209 target_pstate = DIV_ROUND_UP(target_freq, cpu->pstate.scaling);
Rafael J. Wysocki64078292017-03-03 23:51:31 +01002210 target_pstate = intel_pstate_prepare_request(cpu, target_pstate);
Doug Smythies50e9ffa2018-05-14 08:35:49 -07002211 old_pstate = cpu->pstate.current_pstate;
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002212 intel_pstate_update_pstate(cpu, target_pstate);
Doug Smythies50e9ffa2018-05-14 08:35:49 -07002213 intel_cpufreq_trace(cpu, INTEL_PSTATE_TRACE_FAST_SWITCH, old_pstate);
Rafael J. Wysocki64078292017-03-03 23:51:31 +01002214 return target_pstate * cpu->pstate.scaling;
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002215}
2216
2217static int intel_cpufreq_cpu_init(struct cpufreq_policy *policy)
2218{
2219 int ret = __intel_pstate_cpu_init(policy);
2220
2221 if (ret)
2222 return ret;
2223
2224 policy->cpuinfo.transition_latency = INTEL_CPUFREQ_TRANSITION_LATENCY;
Rafael J. Wysocki1b72e7f2017-04-11 00:20:41 +02002225 policy->transition_delay_us = INTEL_CPUFREQ_TRANSITION_DELAY;
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002226 /* This reflects the intel_pstate_get_cpu_pstates() setting. */
2227 policy->cur = policy->cpuinfo.min_freq;
2228
2229 return 0;
2230}
2231
2232static struct cpufreq_driver intel_cpufreq = {
2233 .flags = CPUFREQ_CONST_LOOPS,
2234 .verify = intel_cpufreq_verify_policy,
2235 .target = intel_cpufreq_target,
2236 .fast_switch = intel_cpufreq_fast_switch,
2237 .init = intel_cpufreq_cpu_init,
2238 .exit = intel_pstate_cpu_exit,
2239 .stop_cpu = intel_cpufreq_stop_cpu,
2240 .name = "intel_cpufreq",
2241};
2242
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02002243static struct cpufreq_driver *default_driver = &intel_pstate;
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002244
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002245static void intel_pstate_driver_cleanup(void)
2246{
2247 unsigned int cpu;
2248
2249 get_online_cpus();
2250 for_each_online_cpu(cpu) {
2251 if (all_cpu_data[cpu]) {
2252 if (intel_pstate_driver == &intel_pstate)
2253 intel_pstate_clear_update_util_hook(cpu);
2254
2255 kfree(all_cpu_data[cpu]);
2256 all_cpu_data[cpu] = NULL;
2257 }
2258 }
2259 put_online_cpus();
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02002260 intel_pstate_driver = NULL;
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002261}
2262
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02002263static int intel_pstate_register_driver(struct cpufreq_driver *driver)
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002264{
2265 int ret;
2266
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01002267 memset(&global, 0, sizeof(global));
2268 global.max_perf_pct = 100;
Rafael J. Wysockic3a49c82017-02-28 00:05:01 +01002269
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02002270 intel_pstate_driver = driver;
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002271 ret = cpufreq_register_driver(intel_pstate_driver);
2272 if (ret) {
2273 intel_pstate_driver_cleanup();
2274 return ret;
2275 }
2276
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01002277 global.min_perf_pct = min_perf_pct_min();
2278
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002279 return 0;
2280}
2281
2282static int intel_pstate_unregister_driver(void)
2283{
2284 if (hwp_active)
2285 return -EBUSY;
2286
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002287 cpufreq_unregister_driver(intel_pstate_driver);
2288 intel_pstate_driver_cleanup();
2289
2290 return 0;
2291}
2292
2293static ssize_t intel_pstate_show_status(char *buf)
2294{
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02002295 if (!intel_pstate_driver)
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002296 return sprintf(buf, "off\n");
2297
2298 return sprintf(buf, "%s\n", intel_pstate_driver == &intel_pstate ?
2299 "active" : "passive");
2300}
2301
2302static int intel_pstate_update_status(const char *buf, size_t size)
2303{
2304 int ret;
2305
2306 if (size == 3 && !strncmp(buf, "off", size))
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02002307 return intel_pstate_driver ?
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002308 intel_pstate_unregister_driver() : -EINVAL;
2309
2310 if (size == 6 && !strncmp(buf, "active", size)) {
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02002311 if (intel_pstate_driver) {
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002312 if (intel_pstate_driver == &intel_pstate)
2313 return 0;
2314
2315 ret = intel_pstate_unregister_driver();
2316 if (ret)
2317 return ret;
2318 }
2319
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02002320 return intel_pstate_register_driver(&intel_pstate);
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002321 }
2322
2323 if (size == 7 && !strncmp(buf, "passive", size)) {
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02002324 if (intel_pstate_driver) {
Rafael J. Wysocki0042b2c2017-03-28 00:14:08 +02002325 if (intel_pstate_driver == &intel_cpufreq)
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002326 return 0;
2327
2328 ret = intel_pstate_unregister_driver();
2329 if (ret)
2330 return ret;
2331 }
2332
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02002333 return intel_pstate_register_driver(&intel_cpufreq);
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002334 }
2335
2336 return -EINVAL;
2337}
2338
Jisheng Zhangeed43602016-06-27 18:07:16 +08002339static int no_load __initdata;
2340static int no_hwp __initdata;
2341static int hwp_only __initdata;
Jisheng Zhang29327c82016-06-27 18:07:17 +08002342static unsigned int force_load __initdata;
Dirk Brandewie6be26492013-02-15 22:55:10 +01002343
Jisheng Zhang29327c82016-06-27 18:07:17 +08002344static int __init intel_pstate_msrs_not_valid(void)
Dirk Brandewieb563b4e2013-03-22 01:29:28 +01002345{
Dirk Brandewie016c8152013-10-21 09:20:34 -07002346 if (!pstate_funcs.get_max() ||
Stratos Karafotisc4108332014-07-18 08:37:23 -07002347 !pstate_funcs.get_min() ||
2348 !pstate_funcs.get_turbo())
Dirk Brandewieb563b4e2013-03-22 01:29:28 +01002349 return -ENODEV;
2350
Dirk Brandewieb563b4e2013-03-22 01:29:28 +01002351 return 0;
2352}
Dirk Brandewie016c8152013-10-21 09:20:34 -07002353
Jisheng Zhang29327c82016-06-27 18:07:17 +08002354static void __init copy_cpu_funcs(struct pstate_funcs *funcs)
Dirk Brandewie016c8152013-10-21 09:20:34 -07002355{
2356 pstate_funcs.get_max = funcs->get_max;
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -07002357 pstate_funcs.get_max_physical = funcs->get_max_physical;
Dirk Brandewie016c8152013-10-21 09:20:34 -07002358 pstate_funcs.get_min = funcs->get_min;
2359 pstate_funcs.get_turbo = funcs->get_turbo;
Dirk Brandewieb27580b2014-10-13 08:37:43 -07002360 pstate_funcs.get_scaling = funcs->get_scaling;
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01002361 pstate_funcs.get_val = funcs->get_val;
Dirk Brandewie007bea02013-12-18 10:32:39 -08002362 pstate_funcs.get_vid = funcs->get_vid;
Srinivas Pandruvada6e34e1f2017-07-13 15:03:51 -07002363 pstate_funcs.get_aperf_mperf_shift = funcs->get_aperf_mperf_shift;
Dirk Brandewie016c8152013-10-21 09:20:34 -07002364}
2365
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07002366#ifdef CONFIG_ACPI
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002367
Jisheng Zhang29327c82016-06-27 18:07:17 +08002368static bool __init intel_pstate_no_acpi_pss(void)
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002369{
2370 int i;
2371
2372 for_each_possible_cpu(i) {
2373 acpi_status status;
2374 union acpi_object *pss;
2375 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
2376 struct acpi_processor *pr = per_cpu(processors, i);
2377
2378 if (!pr)
2379 continue;
2380
2381 status = acpi_evaluate_object(pr->handle, "_PSS", NULL, &buffer);
2382 if (ACPI_FAILURE(status))
2383 continue;
2384
2385 pss = buffer.pointer;
2386 if (pss && pss->type == ACPI_TYPE_PACKAGE) {
2387 kfree(pss);
2388 return false;
2389 }
2390
2391 kfree(pss);
2392 }
2393
2394 return true;
2395}
2396
Jisheng Zhang29327c82016-06-27 18:07:17 +08002397static bool __init intel_pstate_has_acpi_ppc(void)
ethan zhao966916e2014-12-01 11:32:08 +09002398{
2399 int i;
2400
2401 for_each_possible_cpu(i) {
2402 struct acpi_processor *pr = per_cpu(processors, i);
2403
2404 if (!pr)
2405 continue;
2406 if (acpi_has_method(pr->handle, "_PPC"))
2407 return true;
2408 }
2409 return false;
2410}
2411
2412enum {
2413 PSS,
2414 PPC,
2415};
2416
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002417/* Hardware vendor-specific info that has its own power management modes */
Toshi Kani5e932322017-08-23 16:54:44 -06002418static struct acpi_platform_list plat_info[] __initdata = {
2419 {"HP ", "ProLiant", 0, ACPI_SIG_FADT, all_versions, 0, PSS},
2420 {"ORACLE", "X4-2 ", 0, ACPI_SIG_FADT, all_versions, 0, PPC},
2421 {"ORACLE", "X4-2L ", 0, ACPI_SIG_FADT, all_versions, 0, PPC},
2422 {"ORACLE", "X4-2B ", 0, ACPI_SIG_FADT, all_versions, 0, PPC},
2423 {"ORACLE", "X3-2 ", 0, ACPI_SIG_FADT, all_versions, 0, PPC},
2424 {"ORACLE", "X3-2L ", 0, ACPI_SIG_FADT, all_versions, 0, PPC},
2425 {"ORACLE", "X3-2B ", 0, ACPI_SIG_FADT, all_versions, 0, PPC},
2426 {"ORACLE", "X4470M2 ", 0, ACPI_SIG_FADT, all_versions, 0, PPC},
2427 {"ORACLE", "X4270M3 ", 0, ACPI_SIG_FADT, all_versions, 0, PPC},
2428 {"ORACLE", "X4270M2 ", 0, ACPI_SIG_FADT, all_versions, 0, PPC},
2429 {"ORACLE", "X4170M2 ", 0, ACPI_SIG_FADT, all_versions, 0, PPC},
2430 {"ORACLE", "X4170 M3", 0, ACPI_SIG_FADT, all_versions, 0, PPC},
2431 {"ORACLE", "X4275 M3", 0, ACPI_SIG_FADT, all_versions, 0, PPC},
2432 {"ORACLE", "X6-2 ", 0, ACPI_SIG_FADT, all_versions, 0, PPC},
2433 {"ORACLE", "Sudbury ", 0, ACPI_SIG_FADT, all_versions, 0, PPC},
2434 { } /* End */
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002435};
2436
Jisheng Zhang29327c82016-06-27 18:07:17 +08002437static bool __init intel_pstate_platform_pwr_mgmt_exists(void)
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002438{
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08002439 const struct x86_cpu_id *id;
2440 u64 misc_pwr;
Toshi Kani5e932322017-08-23 16:54:44 -06002441 int idx;
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08002442
2443 id = x86_match_cpu(intel_pstate_cpu_oob_ids);
2444 if (id) {
2445 rdmsrl(MSR_MISC_PWR_MGMT, misc_pwr);
2446 if ( misc_pwr & (1 << 8))
2447 return true;
2448 }
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002449
Toshi Kani5e932322017-08-23 16:54:44 -06002450 idx = acpi_match_platform_list(plat_info);
2451 if (idx < 0)
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002452 return false;
2453
Toshi Kani5e932322017-08-23 16:54:44 -06002454 switch (plat_info[idx].data) {
2455 case PSS:
2456 return intel_pstate_no_acpi_pss();
2457 case PPC:
2458 return intel_pstate_has_acpi_ppc() && !force_load;
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002459 }
2460
2461 return false;
2462}
Rafael J. Wysockid0ea59e2016-11-17 22:47:47 +01002463
2464static void intel_pstate_request_control_from_smm(void)
2465{
2466 /*
2467 * It may be unsafe to request P-states control from SMM if _PPC support
2468 * has not been enabled.
2469 */
2470 if (acpi_ppc)
2471 acpi_processor_pstate_control();
2472}
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002473#else /* CONFIG_ACPI not enabled */
2474static inline bool intel_pstate_platform_pwr_mgmt_exists(void) { return false; }
ethan zhao966916e2014-12-01 11:32:08 +09002475static inline bool intel_pstate_has_acpi_ppc(void) { return false; }
Rafael J. Wysockid0ea59e2016-11-17 22:47:47 +01002476static inline void intel_pstate_request_control_from_smm(void) {}
Adrian Huangfbbcdc02013-10-31 23:24:05 +08002477#endif /* CONFIG_ACPI */
2478
Srinivas Pandruvadaff7c9912018-06-18 12:47:45 -07002479#define INTEL_PSTATE_HWP_BROADWELL 0x01
2480
2481#define ICPU_HWP(model, hwp_mode) \
2482 { X86_VENDOR_INTEL, 6, model, X86_FEATURE_HWP, hwp_mode }
2483
Srinivas Pandruvada7791e4a2016-02-25 15:09:19 -08002484static const struct x86_cpu_id hwp_support_ids[] __initconst = {
Srinivas Pandruvadaff7c9912018-06-18 12:47:45 -07002485 ICPU_HWP(INTEL_FAM6_BROADWELL_X, INTEL_PSTATE_HWP_BROADWELL),
2486 ICPU_HWP(INTEL_FAM6_BROADWELL_XEON_D, INTEL_PSTATE_HWP_BROADWELL),
2487 ICPU_HWP(X86_MODEL_ANY, 0),
Srinivas Pandruvada7791e4a2016-02-25 15:09:19 -08002488 {}
2489};
2490
Dirk Brandewie93f08222013-02-06 09:02:13 -08002491static int __init intel_pstate_init(void)
2492{
Srinivas Pandruvadaff7c9912018-06-18 12:47:45 -07002493 const struct x86_cpu_id *id;
Rafael J. Wysockieb5139d2017-03-22 23:52:18 +01002494 int rc;
Dirk Brandewie93f08222013-02-06 09:02:13 -08002495
Dirk Brandewie6be26492013-02-15 22:55:10 +01002496 if (no_load)
2497 return -ENODEV;
2498
Srinivas Pandruvadaff7c9912018-06-18 12:47:45 -07002499 id = x86_match_cpu(hwp_support_ids);
2500 if (id) {
Rafael J. Wysocki2f49afc2017-03-28 00:19:03 +02002501 copy_cpu_funcs(&core_funcs);
Rafael J. Wysockic4f3f702017-07-25 00:12:20 +02002502 if (!no_hwp) {
Rafael J. Wysockieb5139d2017-03-22 23:52:18 +01002503 hwp_active++;
Srinivas Pandruvadaff7c9912018-06-18 12:47:45 -07002504 hwp_mode_bdw = id->driver_data;
Rafael J. Wysockieb5139d2017-03-22 23:52:18 +01002505 intel_pstate.attr = hwp_cpufreq_attrs;
2506 goto hwp_cpu_matched;
2507 }
2508 } else {
Rafael J. Wysockieb5139d2017-03-22 23:52:18 +01002509 id = x86_match_cpu(intel_pstate_cpu_ids);
2510 if (!id)
2511 return -ENODEV;
2512
Rafael J. Wysocki2f49afc2017-03-28 00:19:03 +02002513 copy_cpu_funcs((struct pstate_funcs *)id->driver_data);
Srinivas Pandruvada7791e4a2016-02-25 15:09:19 -08002514 }
2515
Dirk Brandewieb563b4e2013-03-22 01:29:28 +01002516 if (intel_pstate_msrs_not_valid())
2517 return -ENODEV;
2518
Srinivas Pandruvada7791e4a2016-02-25 15:09:19 -08002519hwp_cpu_matched:
2520 /*
2521 * The Intel pstate driver will be ignored if the platform
2522 * firmware has its own power management modes.
2523 */
2524 if (intel_pstate_platform_pwr_mgmt_exists())
2525 return -ENODEV;
2526
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002527 if (!hwp_active && hwp_only)
2528 return -ENOTSUPP;
2529
Joe Perches4836df12016-04-05 13:28:23 -07002530 pr_info("Intel P-state driver initializing\n");
Dirk Brandewie93f08222013-02-06 09:02:13 -08002531
Kees Cookfad953c2018-06-12 14:27:37 -07002532 all_cpu_data = vzalloc(array_size(sizeof(void *), num_possible_cpus()));
Dirk Brandewie93f08222013-02-06 09:02:13 -08002533 if (!all_cpu_data)
2534 return -ENOMEM;
Dirk Brandewie93f08222013-02-06 09:02:13 -08002535
Rafael J. Wysockid0ea59e2016-11-17 22:47:47 +01002536 intel_pstate_request_control_from_smm();
2537
Dirk Brandewie93f08222013-02-06 09:02:13 -08002538 intel_pstate_sysfs_expose_params();
Dirk Brandewieb69880f2014-01-16 10:32:25 -08002539
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01002540 mutex_lock(&intel_pstate_driver_lock);
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02002541 rc = intel_pstate_register_driver(default_driver);
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01002542 mutex_unlock(&intel_pstate_driver_lock);
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002543 if (rc)
2544 return rc;
Dirk Brandewie907cc902013-03-05 14:15:27 -08002545
Dirk Brandewie907cc902013-03-05 14:15:27 -08002546 if (hwp_active)
2547 pr_info("HWP enabled\n");
2548
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002549 return 0;
Dirk Brandewie93f08222013-02-06 09:02:13 -08002550}
2551device_initcall(intel_pstate_init);
2552
Dirk Brandewie6be26492013-02-15 22:55:10 +01002553static int __init intel_pstate_setup(char *str)
2554{
2555 if (!str)
2556 return -EINVAL;
2557
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002558 if (!strcmp(str, "disable")) {
Dirk Brandewie6be26492013-02-15 22:55:10 +01002559 no_load = 1;
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002560 } else if (!strcmp(str, "passive")) {
2561 pr_info("Passive mode enabled\n");
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02002562 default_driver = &intel_cpufreq;
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002563 no_hwp = 1;
2564 }
Prarit Bhargava539342f2015-10-22 09:43:31 -04002565 if (!strcmp(str, "no_hwp")) {
Joe Perches4836df12016-04-05 13:28:23 -07002566 pr_info("HWP disabled\n");
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08002567 no_hwp = 1;
Prarit Bhargava539342f2015-10-22 09:43:31 -04002568 }
Ethan Zhaoaa4ea342014-12-09 10:43:19 +09002569 if (!strcmp(str, "force"))
2570 force_load = 1;
Kristen Carlson Accardid64c3b02015-02-06 13:41:55 -08002571 if (!strcmp(str, "hwp_only"))
2572 hwp_only = 1;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07002573 if (!strcmp(str, "per_cpu_perf_limits"))
2574 per_cpu_limits = true;
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07002575
2576#ifdef CONFIG_ACPI
2577 if (!strcmp(str, "support_acpi_ppc"))
2578 acpi_ppc = true;
2579#endif
2580
Dirk Brandewie6be26492013-02-15 22:55:10 +01002581 return 0;
2582}
2583early_param("intel_pstate", intel_pstate_setup);
2584
Dirk Brandewie93f08222013-02-06 09:02:13 -08002585MODULE_AUTHOR("Dirk Brandewie <dirk.j.brandewie@intel.com>");
2586MODULE_DESCRIPTION("'intel_pstate' - P state driver Intel Core processors");
2587MODULE_LICENSE("GPL");