blob: 8c176b7dae415bbb112b5721deb67faffa7c1de5 [file] [log] [blame]
Thomas Gleixnerb886d83c2019-06-01 10:08:55 +02001// SPDX-License-Identifier: GPL-2.0-only
Dirk Brandewie93f08222013-02-06 09:02:13 -08002/*
Srinivas Pandruvadad1b68482013-04-09 22:38:18 +00003 * intel_pstate.c: Native P state management for Intel processors
Dirk Brandewie93f08222013-02-06 09:02:13 -08004 *
5 * (C) Copyright 2012 Intel Corporation
6 * Author: Dirk Brandewie <dirk.j.brandewie@intel.com>
Dirk Brandewie93f08222013-02-06 09:02:13 -08007 */
8
Joe Perches4836df12016-04-05 13:28:23 -07009#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10
Dirk Brandewie93f08222013-02-06 09:02:13 -080011#include <linux/kernel.h>
12#include <linux/kernel_stat.h>
13#include <linux/module.h>
14#include <linux/ktime.h>
15#include <linux/hrtimer.h>
16#include <linux/tick.h>
17#include <linux/slab.h>
Ingo Molnar55687da2017-02-08 18:51:31 +010018#include <linux/sched/cpufreq.h>
Dirk Brandewie93f08222013-02-06 09:02:13 -080019#include <linux/list.h>
20#include <linux/cpu.h>
21#include <linux/cpufreq.h>
22#include <linux/sysfs.h>
23#include <linux/types.h>
24#include <linux/fs.h>
Adrian Huangfbbcdc02013-10-31 23:24:05 +080025#include <linux/acpi.h>
Stephen Rothwelld6472302015-06-02 19:01:38 +100026#include <linux/vmalloc.h>
Viresh Kumarda5c5042019-08-09 07:52:49 +053027#include <linux/pm_qos.h>
Dirk Brandewie93f08222013-02-06 09:02:13 -080028#include <trace/events/power.h>
29
30#include <asm/div64.h>
31#include <asm/msr.h>
32#include <asm/cpu_device_id.h>
Borislav Petkov64df1fd2015-04-03 15:19:53 +020033#include <asm/cpufeature.h>
Dave Hansen5b20c942016-06-02 17:19:45 -070034#include <asm/intel-family.h>
Dirk Brandewie93f08222013-02-06 09:02:13 -080035
Rafael J. Wysockid77d4882017-08-10 01:09:16 +020036#define INTEL_PSTATE_SAMPLING_INTERVAL (10 * NSEC_PER_MSEC)
Rafael J. Wysockieabd22c2017-03-28 00:15:37 +020037
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +010038#define INTEL_CPUFREQ_TRANSITION_LATENCY 20000
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +020039#define INTEL_CPUFREQ_TRANSITION_DELAY_HWP 5000
Rafael J. Wysocki1b72e7f2017-04-11 00:20:41 +020040#define INTEL_CPUFREQ_TRANSITION_DELAY 500
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +010041
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -070042#ifdef CONFIG_ACPI
43#include <acpi/processor.h>
Rafael J. Wysocki17669002016-11-22 12:24:00 -080044#include <acpi/cppc_acpi.h>
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -070045#endif
46
Dirk Brandewief0fe3cd2014-05-29 09:32:23 -070047#define FRAC_BITS 8
Dirk Brandewie93f08222013-02-06 09:02:13 -080048#define int_tofp(X) ((int64_t)(X) << FRAC_BITS)
49#define fp_toint(X) ((X) >> FRAC_BITS)
Dirk Brandewief0fe3cd2014-05-29 09:32:23 -070050
Rafael J. Wysockib8bd1582019-02-07 12:51:04 +010051#define ONE_EIGHTH_FP ((int64_t)1 << (FRAC_BITS - 3))
52
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. Wysockia1c97872016-05-11 19:09:12 +020079static inline u64 mul_ext_fp(u64 x, u64 y)
80{
81 return (x * y) >> EXT_FRAC_BITS;
82}
83
84static inline u64 div_ext_fp(u64 x, u64 y)
85{
86 return div64_u64(x << EXT_FRAC_BITS, y);
87}
88
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -070089/**
90 * struct sample - Store performance sample
Rafael J. Wysockia1c97872016-05-11 19:09:12 +020091 * @core_avg_perf: Ratio of APERF/MPERF which is the actual average
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -070092 * performance during last sample period
93 * @busy_scaled: Scaled busy value which is used to calculate next
Rafael J. Wysockia1c97872016-05-11 19:09:12 +020094 * P state. This can be different than core_avg_perf
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -070095 * to account for cpu idle period
96 * @aperf: Difference of actual performance frequency clock count
97 * read from APERF MSR between last and current sample
98 * @mperf: Difference of maximum performance frequency clock count
99 * read from MPERF MSR between last and current sample
100 * @tsc: Difference of time stamp counter between last and
101 * current sample
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700102 * @time: Current time from scheduler
103 *
104 * This structure is used in the cpudata structure to store performance sample
105 * data for choosing next P State.
106 */
Dirk Brandewie93f08222013-02-06 09:02:13 -0800107struct sample {
Rafael J. Wysockia1c97872016-05-11 19:09:12 +0200108 int32_t core_avg_perf;
Philippe Longepe157386b2015-12-04 17:40:30 +0100109 int32_t busy_scaled;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800110 u64 aperf;
111 u64 mperf;
Doug Smythies4055fad2015-04-11 21:10:26 -0700112 u64 tsc;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +0100113 u64 time;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800114};
115
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700116/**
117 * struct pstate_data - Store P state data
118 * @current_pstate: Current requested P state
119 * @min_pstate: Min P state possible for this platform
120 * @max_pstate: Max P state possible for this platform
121 * @max_pstate_physical:This is physical Max P state for a processor
122 * This can be higher than the max_pstate which can
123 * be limited by platform thermal design power limits
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +0200124 * @perf_ctl_scaling: PERF_CTL P-state to frequency scaling factor
125 * @scaling: Scaling factor between performance and frequency
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700126 * @turbo_pstate: Max Turbo P state possible for this platform
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +0200127 * @min_freq: @min_pstate frequency in cpufreq units
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +0100128 * @max_freq: @max_pstate frequency in cpufreq units
129 * @turbo_freq: @turbo_pstate frequency in cpufreq units
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700130 *
131 * Stores the per cpu model P state limits and current P state.
132 */
Dirk Brandewie93f08222013-02-06 09:02:13 -0800133struct pstate_data {
134 int current_pstate;
135 int min_pstate;
136 int max_pstate;
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -0700137 int max_pstate_physical;
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +0200138 int perf_ctl_scaling;
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700139 int scaling;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800140 int turbo_pstate;
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +0200141 unsigned int min_freq;
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +0100142 unsigned int max_freq;
143 unsigned int turbo_freq;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800144};
145
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700146/**
147 * struct vid_data - Stores voltage information data
148 * @min: VID data for this platform corresponding to
149 * the lowest P state
150 * @max: VID data corresponding to the highest P State.
151 * @turbo: VID data for turbo P state
152 * @ratio: Ratio of (vid max - vid min) /
153 * (max P state - Min P State)
154 *
155 * Stores the voltage data for DVFS (Dynamic Voltage and Frequency Scaling)
156 * This data is used in Atom platforms, where in addition to target P state,
157 * the voltage data needs to be specified to select next P State.
158 */
Dirk Brandewie007bea02013-12-18 10:32:39 -0800159struct vid_data {
Dirk Brandewie21855ff2014-05-08 12:57:23 -0700160 int min;
161 int max;
162 int turbo;
Dirk Brandewie007bea02013-12-18 10:32:39 -0800163 int32_t ratio;
164};
165
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700166/**
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +0100167 * struct global_params - Global parameters, mostly tunable via sysfs.
168 * @no_turbo: Whether or not to use turbo P-states.
Harry Pan731e6b92020-01-13 18:22:40 +0800169 * @turbo_disabled: Whether or not turbo P-states are available at all,
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +0100170 * based on the MSR_IA32_MISC_ENABLE value and whether or
171 * not the maximum reported turbo P-state is different from
172 * the maximum reported non-turbo one.
Rafael J. Wysocki9083e492019-03-26 12:19:52 +0100173 * @turbo_disabled_mf: The @turbo_disabled value reflected by cpuinfo.max_freq.
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +0100174 * @min_perf_pct: Minimum capacity limit in percent of the maximum turbo
175 * P-state capacity.
176 * @max_perf_pct: Maximum capacity limit in percent of the maximum turbo
177 * P-state capacity.
178 */
179struct global_params {
180 bool no_turbo;
181 bool turbo_disabled;
Rafael J. Wysocki9083e492019-03-26 12:19:52 +0100182 bool turbo_disabled_mf;
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +0100183 int max_perf_pct;
184 int min_perf_pct;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700185};
186
187/**
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700188 * struct cpudata - Per CPU instance data storage
189 * @cpu: CPU number for this instance data
Rafael J. Wysocki2f1d4072016-10-24 23:20:25 +0200190 * @policy: CPUFreq policy value
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700191 * @update_util: CPUFreq utility callback information
Chen Yu4578ee7e2016-05-11 14:33:08 +0800192 * @update_util_set: CPUFreq utility callback is set
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +0200193 * @iowait_boost: iowait-related boost fraction
194 * @last_update: Time of the last update.
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700195 * @pstate: Stores P state limits for this CPU
196 * @vid: Stores VID limits for this CPU
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700197 * @last_sample_time: Last Sample time
Rafael J. Wysocki23a522e2020-07-15 15:54:57 +0200198 * @aperf_mperf_shift: APERF vs MPERF counting frequency difference
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700199 * @prev_aperf: Last APERF value read from APERF MSR
200 * @prev_mperf: Last MPERF value read from MPERF MSR
201 * @prev_tsc: Last timestamp counter (TSC) value
202 * @prev_cummulative_iowait: IO Wait time difference from last and
203 * current sample
204 * @sample: Storage for storing last Sample data
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -0700205 * @min_perf_ratio: Minimum capacity in terms of PERF or HWP ratios
206 * @max_perf_ratio: Maximum capacity in terms of PERF or HWP ratios
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700207 * @acpi_perf_data: Stores ACPI perf information read from _PSS
208 * @valid_pss_table: Set to true for valid ACPI _PSS entries found
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800209 * @epp_powersave: Last saved HWP energy performance preference
210 * (EPP) or energy performance bias (EPB),
211 * when policy switched to performance
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800212 * @epp_policy: Last saved policy used to set EPP/EPB
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800213 * @epp_default: Power on default HWP energy performance
214 * preference/bias
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +0200215 * @epp_cached Cached HWP energy-performance preference value
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -0700216 * @hwp_req_cached: Cached value of the last HWP Request MSR
217 * @hwp_cap_cached: Cached value of the last HWP Capabilities MSR
Srinivas Pandruvada52ccc4312018-06-05 14:42:40 -0700218 * @last_io_update: Last time when IO wake flag was set
219 * @sched_flags: Store scheduler flags for possible cross CPU update
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -0700220 * @hwp_boost_min: Last HWP boosted min performance
Rafael J. Wysocki4adcf2e2020-09-01 18:33:21 +0200221 * @suspended: Whether or not the driver has been suspended.
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700222 *
223 * This structure stores per CPU instance data for all CPUs.
224 */
Dirk Brandewie93f08222013-02-06 09:02:13 -0800225struct cpudata {
226 int cpu;
227
Rafael J. Wysocki2f1d4072016-10-24 23:20:25 +0200228 unsigned int policy;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +0100229 struct update_util_data update_util;
Chen Yu4578ee7e2016-05-11 14:33:08 +0800230 bool update_util_set;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800231
Dirk Brandewie93f08222013-02-06 09:02:13 -0800232 struct pstate_data pstate;
Dirk Brandewie007bea02013-12-18 10:32:39 -0800233 struct vid_data vid;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800234
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +0200235 u64 last_update;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +0100236 u64 last_sample_time;
Srinivas Pandruvada6e34e1f2017-07-13 15:03:51 -0700237 u64 aperf_mperf_shift;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800238 u64 prev_aperf;
239 u64 prev_mperf;
Doug Smythies4055fad2015-04-11 21:10:26 -0700240 u64 prev_tsc;
Philippe Longepe63d1d652015-12-04 17:40:35 +0100241 u64 prev_cummulative_iowait;
Dirk Brandewied37e2b72014-02-12 10:01:04 -0800242 struct sample sample;
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -0700243 int32_t min_perf_ratio;
244 int32_t max_perf_ratio;
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700245#ifdef CONFIG_ACPI
246 struct acpi_processor_performance acpi_perf_data;
247 bool valid_pss_table;
248#endif
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +0200249 unsigned int iowait_boost;
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800250 s16 epp_powersave;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800251 s16 epp_policy;
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800252 s16 epp_default;
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +0200253 s16 epp_cached;
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -0700254 u64 hwp_req_cached;
255 u64 hwp_cap_cached;
Srinivas Pandruvada52ccc4312018-06-05 14:42:40 -0700256 u64 last_io_update;
257 unsigned int sched_flags;
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -0700258 u32 hwp_boost_min;
Rafael J. Wysocki4adcf2e2020-09-01 18:33:21 +0200259 bool suspended;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800260};
261
262static struct cpudata **all_cpu_data;
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700263
264/**
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700265 * struct pstate_funcs - Per CPU model specific callbacks
266 * @get_max: Callback to get maximum non turbo effective P state
267 * @get_max_physical: Callback to get maximum non turbo physical P state
268 * @get_min: Callback to get minimum P state
269 * @get_turbo: Callback to get turbo P state
270 * @get_scaling: Callback to get frequency scaling factor
Rafael J. Wysocki46573fd2021-09-04 15:53:39 +0200271 * @get_cpu_scaling: Get frequency scaling factor for a given cpu
Lee Jones8f23d1f2020-07-15 09:26:33 +0100272 * @get_aperf_mperf_shift: Callback to get the APERF vs MPERF frequency difference
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700273 * @get_val: Callback to convert P state to actual MSR write value
274 * @get_vid: Callback to get VID data for Atom platforms
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700275 *
276 * Core and Atom CPU models have different way to get P State limits. This
277 * structure is used to store those callbacks.
278 */
Dirk Brandewie016c8152013-10-21 09:20:34 -0700279struct pstate_funcs {
280 int (*get_max)(void);
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -0700281 int (*get_max_physical)(void);
Dirk Brandewie016c8152013-10-21 09:20:34 -0700282 int (*get_min)(void);
283 int (*get_turbo)(void);
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700284 int (*get_scaling)(void);
Rafael J. Wysocki46573fd2021-09-04 15:53:39 +0200285 int (*get_cpu_scaling)(int cpu);
Srinivas Pandruvada6e34e1f2017-07-13 15:03:51 -0700286 int (*get_aperf_mperf_shift)(void);
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +0100287 u64 (*get_val)(struct cpudata*, int pstate);
Dirk Brandewie007bea02013-12-18 10:32:39 -0800288 void (*get_vid)(struct cpudata *);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800289};
290
Jisheng Zhang4a7cb7a2016-06-27 18:07:18 +0800291static struct pstate_funcs pstate_funcs __read_mostly;
Rafael J. Wysocki5c439052017-03-28 00:05:44 +0200292
Jisheng Zhang4a7cb7a2016-06-27 18:07:18 +0800293static int hwp_active __read_mostly;
Srinivas Pandruvadaff7c9912018-06-18 12:47:45 -0700294static int hwp_mode_bdw __read_mostly;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700295static bool per_cpu_limits __read_mostly;
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -0700296static bool hwp_boost __read_mostly;
Dirk Brandewie016c8152013-10-21 09:20:34 -0700297
Rafael J. Wysockiee8df892017-03-28 00:13:00 +0200298static struct cpufreq_driver *intel_pstate_driver __read_mostly;
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +0100299
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700300#ifdef CONFIG_ACPI
301static bool acpi_ppc;
302#endif
Srinivas Pandruvada13ad7702016-04-03 13:06:46 -0700303
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +0100304static struct global_params global;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800305
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +0100306static DEFINE_MUTEX(intel_pstate_driver_lock);
Srinivas Pandruvadaa410c03d2016-10-28 10:44:52 -0700307static DEFINE_MUTEX(intel_pstate_limits_lock);
308
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700309#ifdef CONFIG_ACPI
Srinivas Pandruvada2b3ec762016-04-27 15:48:08 -0700310
Srinivas Pandruvada01e61a422018-07-30 15:00:29 -0700311static bool intel_pstate_acpi_pm_profile_server(void)
Srinivas Pandruvada2b3ec762016-04-27 15:48:08 -0700312{
313 if (acpi_gbl_FADT.preferred_profile == PM_ENTERPRISE_SERVER ||
314 acpi_gbl_FADT.preferred_profile == PM_PERFORMANCE_SERVER)
315 return true;
316
Srinivas Pandruvada01e61a422018-07-30 15:00:29 -0700317 return false;
318}
319
320static bool intel_pstate_get_ppc_enable_status(void)
321{
322 if (intel_pstate_acpi_pm_profile_server())
323 return true;
324
Srinivas Pandruvada2b3ec762016-04-27 15:48:08 -0700325 return acpi_ppc;
326}
327
Rafael J. Wysocki17669002016-11-22 12:24:00 -0800328#ifdef CONFIG_ACPI_CPPC_LIB
329
330/* The work item is needed to avoid CPU hotplug locking issues */
331static void intel_pstste_sched_itmt_work_fn(struct work_struct *work)
332{
333 sched_set_itmt_support();
334}
335
336static DECLARE_WORK(sched_itmt_work, intel_pstste_sched_itmt_work_fn);
337
338static void intel_pstate_set_itmt_prio(int cpu)
339{
340 struct cppc_perf_caps cppc_perf;
341 static u32 max_highest_perf = 0, min_highest_perf = U32_MAX;
342 int ret;
343
344 ret = cppc_get_perf_caps(cpu, &cppc_perf);
345 if (ret)
346 return;
347
348 /*
349 * The priorities can be set regardless of whether or not
350 * sched_set_itmt_support(true) has been called and it is valid to
351 * update them at any time after it has been called.
352 */
353 sched_set_itmt_core_prio(cppc_perf.highest_perf, cpu);
354
355 if (max_highest_perf <= min_highest_perf) {
356 if (cppc_perf.highest_perf > max_highest_perf)
357 max_highest_perf = cppc_perf.highest_perf;
358
359 if (cppc_perf.highest_perf < min_highest_perf)
360 min_highest_perf = cppc_perf.highest_perf;
361
362 if (max_highest_perf > min_highest_perf) {
363 /*
364 * This code can be run during CPU online under the
365 * CPU hotplug locks, so sched_set_itmt_support()
366 * cannot be called from here. Queue up a work item
367 * to invoke it.
368 */
369 schedule_work(&sched_itmt_work);
370 }
371 }
372}
Srinivas Pandruvada86d333a2018-10-15 10:37:20 -0700373
Rafael J. Wysocki8df71a72021-05-26 19:30:58 +0200374static int intel_pstate_get_cppc_guaranteed(int cpu)
Srinivas Pandruvada86d333a2018-10-15 10:37:20 -0700375{
376 struct cppc_perf_caps cppc_perf;
377 int ret;
378
379 ret = cppc_get_perf_caps(cpu, &cppc_perf);
380 if (ret)
381 return ret;
382
Srinivas Pandruvada92a3e422019-03-25 09:04:40 -0700383 if (cppc_perf.guaranteed_perf)
384 return cppc_perf.guaranteed_perf;
385
386 return cppc_perf.nominal_perf;
Srinivas Pandruvada86d333a2018-10-15 10:37:20 -0700387}
388
Rafael J. Wysocki46573fd2021-09-04 15:53:39 +0200389static u32 intel_pstate_cppc_nominal(int cpu)
390{
391 u64 nominal_perf;
392
393 if (cppc_get_nominal_perf(cpu, &nominal_perf))
394 return 0;
395
396 return nominal_perf;
397}
Dominik Brodowski59060562018-10-23 21:54:04 +0200398#else /* CONFIG_ACPI_CPPC_LIB */
Rafael J. Wysocki8df71a72021-05-26 19:30:58 +0200399static inline void intel_pstate_set_itmt_prio(int cpu)
Rafael J. Wysocki17669002016-11-22 12:24:00 -0800400{
401}
Dominik Brodowski59060562018-10-23 21:54:04 +0200402#endif /* CONFIG_ACPI_CPPC_LIB */
Rafael J. Wysocki17669002016-11-22 12:24:00 -0800403
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700404static void intel_pstate_init_acpi_perf_limits(struct cpufreq_policy *policy)
405{
406 struct cpudata *cpu;
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700407 int ret;
408 int i;
409
Rafael J. Wysocki17669002016-11-22 12:24:00 -0800410 if (hwp_active) {
411 intel_pstate_set_itmt_prio(policy->cpu);
Srinivas Pandruvadae59a8f72016-05-04 15:07:34 -0700412 return;
Rafael J. Wysocki17669002016-11-22 12:24:00 -0800413 }
Srinivas Pandruvadae59a8f72016-05-04 15:07:34 -0700414
Srinivas Pandruvada2b3ec762016-04-27 15:48:08 -0700415 if (!intel_pstate_get_ppc_enable_status())
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700416 return;
417
418 cpu = all_cpu_data[policy->cpu];
419
420 ret = acpi_processor_register_performance(&cpu->acpi_perf_data,
421 policy->cpu);
422 if (ret)
423 return;
424
425 /*
426 * Check if the control value in _PSS is for PERF_CTL MSR, which should
427 * guarantee that the states returned by it map to the states in our
428 * list directly.
429 */
430 if (cpu->acpi_perf_data.control_register.space_id !=
431 ACPI_ADR_SPACE_FIXED_HARDWARE)
432 goto err;
433
434 /*
435 * If there is only one entry _PSS, simply ignore _PSS and continue as
436 * usual without taking _PSS into account
437 */
438 if (cpu->acpi_perf_data.state_count < 2)
439 goto err;
440
441 pr_debug("CPU%u - ACPI _PSS perf data\n", policy->cpu);
442 for (i = 0; i < cpu->acpi_perf_data.state_count; i++) {
443 pr_debug(" %cP%d: %u MHz, %u mW, 0x%x\n",
444 (i == cpu->acpi_perf_data.state ? '*' : ' '), i,
445 (u32) cpu->acpi_perf_data.states[i].core_frequency,
446 (u32) cpu->acpi_perf_data.states[i].power,
447 (u32) cpu->acpi_perf_data.states[i].control);
448 }
449
450 /*
451 * The _PSS table doesn't contain whole turbo frequency range.
452 * This just contains +1 MHZ above the max non turbo frequency,
453 * with control value corresponding to max turbo ratio. But
454 * when cpufreq set policy is called, it will call with this
455 * max frequency, which will cause a reduced performance as
456 * this driver uses real max turbo frequency as the max
457 * frequency. So correct this frequency in _PSS table to
Srinivas Pandruvadab00345d2016-06-14 23:12:59 -0700458 * correct max turbo frequency based on the turbo state.
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700459 * Also need to convert to MHz as _PSS freq is in MHz.
460 */
Rafael J. Wysocki7de32552017-03-18 00:57:39 +0100461 if (!global.turbo_disabled)
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700462 cpu->acpi_perf_data.states[0].core_frequency =
463 policy->cpuinfo.max_freq / 1000;
464 cpu->valid_pss_table = true;
Srinivas Pandruvada6cacd112016-05-29 23:31:23 -0700465 pr_debug("_PPC limits will be enforced\n");
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700466
467 return;
468
469 err:
470 cpu->valid_pss_table = false;
471 acpi_processor_unregister_performance(policy->cpu);
472}
473
474static void intel_pstate_exit_perf_limits(struct cpufreq_policy *policy)
475{
476 struct cpudata *cpu;
477
478 cpu = all_cpu_data[policy->cpu];
479 if (!cpu->valid_pss_table)
480 return;
481
482 acpi_processor_unregister_performance(policy->cpu);
483}
Dominik Brodowski59060562018-10-23 21:54:04 +0200484#else /* CONFIG_ACPI */
Arnd Bergmann7a3ba762016-11-25 17:50:20 +0100485static inline void intel_pstate_init_acpi_perf_limits(struct cpufreq_policy *policy)
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700486{
487}
488
Arnd Bergmann7a3ba762016-11-25 17:50:20 +0100489static inline void intel_pstate_exit_perf_limits(struct cpufreq_policy *policy)
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700490{
491}
Srinivas Pandruvada01e61a422018-07-30 15:00:29 -0700492
493static inline bool intel_pstate_acpi_pm_profile_server(void)
494{
495 return false;
496}
Dominik Brodowski59060562018-10-23 21:54:04 +0200497#endif /* CONFIG_ACPI */
498
499#ifndef CONFIG_ACPI_CPPC_LIB
Rafael J. Wysocki8df71a72021-05-26 19:30:58 +0200500static inline int intel_pstate_get_cppc_guaranteed(int cpu)
Dominik Brodowski59060562018-10-23 21:54:04 +0200501{
502 return -ENOTSUPP;
503}
504#endif /* CONFIG_ACPI_CPPC_LIB */
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -0700505
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +0200506/**
Rafael J. Wysocki46573fd2021-09-04 15:53:39 +0200507 * intel_pstate_hybrid_hwp_adjust - Calibrate HWP performance levels.
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +0200508 * @cpu: Target CPU.
509 *
510 * On hybrid processors, HWP may expose more performance levels than there are
511 * P-states accessible through the PERF_CTL interface. If that happens, the
512 * scaling factor between HWP performance levels and CPU frequency will be less
513 * than the scaling factor between P-state values and CPU frequency.
514 *
Rafael J. Wysocki46573fd2021-09-04 15:53:39 +0200515 * In that case, adjust the CPU parameters used in computations accordingly.
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +0200516 */
Rafael J. Wysocki46573fd2021-09-04 15:53:39 +0200517static void intel_pstate_hybrid_hwp_adjust(struct cpudata *cpu)
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +0200518{
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +0200519 int perf_ctl_max_phys = cpu->pstate.max_pstate_physical;
520 int perf_ctl_scaling = cpu->pstate.perf_ctl_scaling;
521 int perf_ctl_turbo = pstate_funcs.get_turbo();
522 int turbo_freq = perf_ctl_turbo * perf_ctl_scaling;
Rafael J. Wysocki46573fd2021-09-04 15:53:39 +0200523 int scaling = cpu->pstate.scaling;
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +0200524
525 pr_debug("CPU%d: perf_ctl_max_phys = %d\n", cpu->cpu, perf_ctl_max_phys);
Rafael J. Wysocki46573fd2021-09-04 15:53:39 +0200526 pr_debug("CPU%d: perf_ctl_max = %d\n", cpu->cpu, pstate_funcs.get_max());
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +0200527 pr_debug("CPU%d: perf_ctl_turbo = %d\n", cpu->cpu, perf_ctl_turbo);
528 pr_debug("CPU%d: perf_ctl_scaling = %d\n", cpu->cpu, perf_ctl_scaling);
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +0200529 pr_debug("CPU%d: HWP_CAP guaranteed = %d\n", cpu->cpu, cpu->pstate.max_pstate);
530 pr_debug("CPU%d: HWP_CAP highest = %d\n", cpu->cpu, cpu->pstate.turbo_pstate);
Rafael J. Wysocki46573fd2021-09-04 15:53:39 +0200531 pr_debug("CPU%d: HWP-to-frequency scaling factor: %d\n", cpu->cpu, scaling);
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +0200532
533 /*
Rafael J. Wysocki46573fd2021-09-04 15:53:39 +0200534 * If the product of the HWP performance scaling factor and the HWP_CAP
535 * highest performance is greater than the maximum turbo frequency
536 * corresponding to the pstate_funcs.get_turbo() return value, the
537 * scaling factor is too high, so recompute it to make the HWP_CAP
538 * highest performance correspond to the maximum turbo frequency.
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +0200539 */
540 if (turbo_freq < cpu->pstate.turbo_pstate * scaling) {
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +0200541 cpu->pstate.turbo_freq = turbo_freq;
542 scaling = DIV_ROUND_UP(turbo_freq, cpu->pstate.turbo_pstate);
Rafael J. Wysocki46573fd2021-09-04 15:53:39 +0200543 cpu->pstate.scaling = scaling;
544
545 pr_debug("CPU%d: refined HWP-to-frequency scaling factor: %d\n",
546 cpu->cpu, scaling);
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +0200547 }
548
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +0200549 cpu->pstate.max_freq = rounddown(cpu->pstate.max_pstate * scaling,
550 perf_ctl_scaling);
551
Rafael J. Wysocki46573fd2021-09-04 15:53:39 +0200552 cpu->pstate.max_pstate_physical =
553 DIV_ROUND_UP(perf_ctl_max_phys * perf_ctl_scaling,
554 scaling);
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +0200555
556 cpu->pstate.min_freq = cpu->pstate.min_pstate * perf_ctl_scaling;
557 /*
558 * Cast the min P-state value retrieved via pstate_funcs.get_min() to
559 * the effective range of HWP performance levels.
560 */
561 cpu->pstate.min_pstate = DIV_ROUND_UP(cpu->pstate.min_freq, scaling);
562}
563
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700564static inline void update_turbo_state(void)
565{
566 u64 misc_en;
567 struct cpudata *cpu;
568
569 cpu = all_cpu_data[0];
570 rdmsrl(MSR_IA32_MISC_ENABLE, misc_en);
Rafael J. Wysocki7de32552017-03-18 00:57:39 +0100571 global.turbo_disabled =
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700572 (misc_en & MSR_IA32_MISC_ENABLE_TURBO_DISABLE ||
573 cpu->pstate.max_pstate == cpu->pstate.turbo_pstate);
574}
575
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +0100576static int min_perf_pct_min(void)
577{
578 struct cpudata *cpu = all_cpu_data[0];
Rafael J. Wysocki57caf4e2017-06-05 14:51:18 +0200579 int turbo_pstate = cpu->pstate.turbo_pstate;
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +0100580
Rafael J. Wysocki57caf4e2017-06-05 14:51:18 +0200581 return turbo_pstate ?
Srinivas Pandruvadad4436c02017-07-10 16:23:52 -0700582 (cpu->pstate.min_pstate * 100 / turbo_pstate) : 0;
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +0100583}
584
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800585static s16 intel_pstate_get_epb(struct cpudata *cpu_data)
586{
587 u64 epb;
588 int ret;
589
Borislav Petkov108ec362019-03-30 12:20:22 +0100590 if (!boot_cpu_has(X86_FEATURE_EPB))
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800591 return -ENXIO;
592
593 ret = rdmsrl_on_cpu(cpu_data->cpu, MSR_IA32_ENERGY_PERF_BIAS, &epb);
594 if (ret)
595 return (s16)ret;
596
597 return (s16)(epb & 0x0f);
598}
599
600static s16 intel_pstate_get_epp(struct cpudata *cpu_data, u64 hwp_req_data)
601{
602 s16 epp;
603
Borislav Petkov108ec362019-03-30 12:20:22 +0100604 if (boot_cpu_has(X86_FEATURE_HWP_EPP)) {
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800605 /*
606 * When hwp_req_data is 0, means that caller didn't read
607 * MSR_HWP_REQUEST, so need to read and get EPP.
608 */
609 if (!hwp_req_data) {
610 epp = rdmsrl_on_cpu(cpu_data->cpu, MSR_HWP_REQUEST,
611 &hwp_req_data);
612 if (epp)
613 return epp;
614 }
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800615 epp = (hwp_req_data >> 24) & 0xff;
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800616 } else {
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800617 /* When there is no EPP present, HWP uses EPB settings */
618 epp = intel_pstate_get_epb(cpu_data);
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800619 }
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800620
621 return epp;
622}
623
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800624static int intel_pstate_set_epb(int cpu, s16 pref)
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800625{
626 u64 epb;
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800627 int ret;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800628
Borislav Petkov108ec362019-03-30 12:20:22 +0100629 if (!boot_cpu_has(X86_FEATURE_EPB))
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800630 return -ENXIO;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800631
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800632 ret = rdmsrl_on_cpu(cpu, MSR_IA32_ENERGY_PERF_BIAS, &epb);
633 if (ret)
634 return ret;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800635
636 epb = (epb & ~0x0f) | pref;
637 wrmsrl_on_cpu(cpu, MSR_IA32_ENERGY_PERF_BIAS, epb);
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800638
639 return 0;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800640}
641
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800642/*
643 * EPP/EPB display strings corresponding to EPP index in the
644 * energy_perf_strings[]
645 * index String
646 *-------------------------------------
647 * 0 default
648 * 1 performance
649 * 2 balance_performance
650 * 3 balance_power
651 * 4 power
652 */
653static const char * const energy_perf_strings[] = {
654 "default",
655 "performance",
656 "balance_performance",
657 "balance_power",
658 "power",
659 NULL
660};
Len Brown3cedbc52017-05-01 23:06:08 -0400661static const unsigned int epp_values[] = {
662 HWP_EPP_PERFORMANCE,
663 HWP_EPP_BALANCE_PERFORMANCE,
664 HWP_EPP_BALANCE_POWERSAVE,
665 HWP_EPP_POWERSAVE
666};
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800667
Srinivas Pandruvadaf473bf32020-06-26 11:34:01 -0700668static int intel_pstate_get_energy_pref_index(struct cpudata *cpu_data, int *raw_epp)
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800669{
670 s16 epp;
671 int index = -EINVAL;
672
Srinivas Pandruvadaf473bf32020-06-26 11:34:01 -0700673 *raw_epp = 0;
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800674 epp = intel_pstate_get_epp(cpu_data, 0);
675 if (epp < 0)
676 return epp;
677
Borislav Petkov108ec362019-03-30 12:20:22 +0100678 if (boot_cpu_has(X86_FEATURE_HWP_EPP)) {
Len Brown3cedbc52017-05-01 23:06:08 -0400679 if (epp == HWP_EPP_PERFORMANCE)
680 return 1;
Srinivas Pandruvadaf473bf32020-06-26 11:34:01 -0700681 if (epp == HWP_EPP_BALANCE_PERFORMANCE)
Len Brown3cedbc52017-05-01 23:06:08 -0400682 return 2;
Srinivas Pandruvadaf473bf32020-06-26 11:34:01 -0700683 if (epp == HWP_EPP_BALANCE_POWERSAVE)
Len Brown3cedbc52017-05-01 23:06:08 -0400684 return 3;
Srinivas Pandruvadaf473bf32020-06-26 11:34:01 -0700685 if (epp == HWP_EPP_POWERSAVE)
Len Brown3cedbc52017-05-01 23:06:08 -0400686 return 4;
Srinivas Pandruvadaf473bf32020-06-26 11:34:01 -0700687 *raw_epp = epp;
688 return 0;
Borislav Petkov108ec362019-03-30 12:20:22 +0100689 } else if (boot_cpu_has(X86_FEATURE_EPB)) {
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800690 /*
691 * Range:
692 * 0x00-0x03 : Performance
693 * 0x04-0x07 : Balance performance
694 * 0x08-0x0B : Balance power
695 * 0x0C-0x0F : Power
696 * The EPB is a 4 bit value, but our ranges restrict the
697 * value which can be set. Here only using top two bits
698 * effectively.
699 */
700 index = (epp >> 2) + 1;
701 }
702
703 return index;
704}
705
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +0200706static int intel_pstate_set_epp(struct cpudata *cpu, u32 epp)
707{
Rafael J. Wysockic27a0cc2020-08-27 14:32:00 +0200708 int ret;
709
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +0200710 /*
711 * Use the cached HWP Request MSR value, because in the active mode the
712 * register itself may be updated by intel_pstate_hwp_boost_up() or
713 * intel_pstate_hwp_boost_down() at any time.
714 */
715 u64 value = READ_ONCE(cpu->hwp_req_cached);
716
717 value &= ~GENMASK_ULL(31, 24);
718 value |= (u64)epp << 24;
719 /*
720 * The only other updater of hwp_req_cached in the active mode,
721 * intel_pstate_hwp_set(), is called under the same lock as this
722 * function, so it cannot run in parallel with the update below.
723 */
724 WRITE_ONCE(cpu->hwp_req_cached, value);
Rafael J. Wysockic27a0cc2020-08-27 14:32:00 +0200725 ret = wrmsrl_on_cpu(cpu->cpu, MSR_HWP_REQUEST, value);
726 if (!ret)
727 cpu->epp_cached = epp;
728
729 return ret;
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +0200730}
731
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800732static int intel_pstate_set_energy_pref_index(struct cpudata *cpu_data,
Srinivas Pandruvadaf473bf32020-06-26 11:34:01 -0700733 int pref_index, bool use_raw,
734 u32 raw_epp)
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800735{
736 int epp = -EINVAL;
737 int ret;
738
739 if (!pref_index)
740 epp = cpu_data->epp_default;
741
Borislav Petkov108ec362019-03-30 12:20:22 +0100742 if (boot_cpu_has(X86_FEATURE_HWP_EPP)) {
Rafael J. Wysocki3a957172020-07-27 17:15:43 +0200743 if (use_raw)
744 epp = raw_epp;
745 else if (epp == -EINVAL)
Len Brown3cedbc52017-05-01 23:06:08 -0400746 epp = epp_values[pref_index - 1];
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800747
Rafael J. Wysockib388eb582020-08-27 14:32:12 +0200748 /*
749 * To avoid confusion, refuse to set EPP to any values different
750 * from 0 (performance) if the current policy is "performance",
751 * because those values would be overridden.
752 */
753 if (epp > 0 && cpu_data->policy == CPUFREQ_POLICY_PERFORMANCE)
754 return -EBUSY;
755
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +0200756 ret = intel_pstate_set_epp(cpu_data, epp);
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800757 } else {
758 if (epp == -EINVAL)
759 epp = (pref_index - 1) << 2;
760 ret = intel_pstate_set_epb(cpu_data->cpu, epp);
761 }
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800762
763 return ret;
764}
765
766static ssize_t show_energy_performance_available_preferences(
767 struct cpufreq_policy *policy, char *buf)
768{
769 int i = 0;
770 int ret = 0;
771
772 while (energy_perf_strings[i] != NULL)
773 ret += sprintf(&buf[ret], "%s ", energy_perf_strings[i++]);
774
775 ret += sprintf(&buf[ret], "\n");
776
777 return ret;
778}
779
780cpufreq_freq_attr_ro(energy_performance_available_preferences);
781
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +0200782static struct cpufreq_driver intel_pstate;
783
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800784static ssize_t store_energy_performance_preference(
785 struct cpufreq_policy *policy, const char *buf, size_t count)
786{
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +0200787 struct cpudata *cpu = all_cpu_data[policy->cpu];
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800788 char str_preference[21];
Srinivas Pandruvadaf473bf32020-06-26 11:34:01 -0700789 bool raw = false;
Rafael J. Wysocki3a957172020-07-27 17:15:43 +0200790 ssize_t ret;
Srinivas Pandruvada3ff79752020-07-09 13:05:22 -0700791 u32 epp = 0;
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800792
793 ret = sscanf(buf, "%20s", str_preference);
794 if (ret != 1)
795 return -EINVAL;
796
Xie Yisheng1111b782018-05-31 19:11:15 +0800797 ret = match_string(energy_perf_strings, -1, str_preference);
Srinivas Pandruvadaf473bf32020-06-26 11:34:01 -0700798 if (ret < 0) {
799 if (!boot_cpu_has(X86_FEATURE_HWP_EPP))
800 return ret;
801
802 ret = kstrtouint(buf, 10, &epp);
803 if (ret)
804 return ret;
805
Rafael J. Wysocki3a957172020-07-27 17:15:43 +0200806 if (epp > 255)
807 return -EINVAL;
808
Srinivas Pandruvadaf473bf32020-06-26 11:34:01 -0700809 raw = true;
810 }
811
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +0200812 /*
813 * This function runs with the policy R/W semaphore held, which
814 * guarantees that the driver pointer will not change while it is
815 * running.
816 */
817 if (!intel_pstate_driver)
818 return -EAGAIN;
819
Rafael J. Wysocki3a957172020-07-27 17:15:43 +0200820 mutex_lock(&intel_pstate_limits_lock);
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800821
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +0200822 if (intel_pstate_driver == &intel_pstate) {
823 ret = intel_pstate_set_energy_pref_index(cpu, ret, raw, epp);
824 } else {
825 /*
826 * In the passive mode the governor needs to be stopped on the
827 * target CPU before the EPP update and restarted after it,
828 * which is super-heavy-weight, so make sure it is worth doing
829 * upfront.
830 */
831 if (!raw)
832 epp = ret ? epp_values[ret - 1] : cpu->epp_default;
833
834 if (cpu->epp_cached != epp) {
835 int err;
836
837 cpufreq_stop_governor(policy);
838 ret = intel_pstate_set_epp(cpu, epp);
839 err = cpufreq_start_governor(policy);
Rafael J. Wysockic27a0cc2020-08-27 14:32:00 +0200840 if (!ret)
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +0200841 ret = err;
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +0200842 }
843 }
Rafael J. Wysocki3a957172020-07-27 17:15:43 +0200844
845 mutex_unlock(&intel_pstate_limits_lock);
846
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +0200847 return ret ?: count;
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800848}
849
850static ssize_t show_energy_performance_preference(
851 struct cpufreq_policy *policy, char *buf)
852{
853 struct cpudata *cpu_data = all_cpu_data[policy->cpu];
Srinivas Pandruvadaf473bf32020-06-26 11:34:01 -0700854 int preference, raw_epp;
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800855
Srinivas Pandruvadaf473bf32020-06-26 11:34:01 -0700856 preference = intel_pstate_get_energy_pref_index(cpu_data, &raw_epp);
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800857 if (preference < 0)
858 return preference;
859
Srinivas Pandruvadaf473bf32020-06-26 11:34:01 -0700860 if (raw_epp)
861 return sprintf(buf, "%d\n", raw_epp);
862 else
863 return sprintf(buf, "%s\n", energy_perf_strings[preference]);
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800864}
865
866cpufreq_freq_attr_rw(energy_performance_preference);
867
Srinivas Pandruvada86d333a2018-10-15 10:37:20 -0700868static ssize_t show_base_frequency(struct cpufreq_policy *policy, char *buf)
869{
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +0200870 struct cpudata *cpu = all_cpu_data[policy->cpu];
871 int ratio, freq;
Srinivas Pandruvada86d333a2018-10-15 10:37:20 -0700872
Rafael J. Wysocki8df71a72021-05-26 19:30:58 +0200873 ratio = intel_pstate_get_cppc_guaranteed(policy->cpu);
Srinivas Pandruvada86d333a2018-10-15 10:37:20 -0700874 if (ratio <= 0) {
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +0200875 u64 cap;
876
Srinivas Pandruvada86d333a2018-10-15 10:37:20 -0700877 rdmsrl_on_cpu(policy->cpu, MSR_HWP_CAPABILITIES, &cap);
878 ratio = HWP_GUARANTEED_PERF(cap);
879 }
880
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +0200881 freq = ratio * cpu->pstate.scaling;
882 if (cpu->pstate.scaling != cpu->pstate.perf_ctl_scaling)
883 freq = rounddown(freq, cpu->pstate.perf_ctl_scaling);
Srinivas Pandruvada86d333a2018-10-15 10:37:20 -0700884
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +0200885 return sprintf(buf, "%d\n", freq);
Srinivas Pandruvada86d333a2018-10-15 10:37:20 -0700886}
887
888cpufreq_freq_attr_ro(base_frequency);
889
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800890static struct freq_attr *hwp_cpufreq_attrs[] = {
891 &energy_performance_preference,
892 &energy_performance_available_preferences,
Srinivas Pandruvada86d333a2018-10-15 10:37:20 -0700893 &base_frequency,
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800894 NULL,
895};
896
Rafael J. Wysockide5bcf42021-03-16 16:52:43 +0100897static void __intel_pstate_get_hwp_cap(struct cpudata *cpu)
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -0700898{
899 u64 cap;
900
Rafael J. Wysockia45ee4d2021-01-07 19:43:30 +0100901 rdmsrl_on_cpu(cpu->cpu, MSR_HWP_CAPABILITIES, &cap);
902 WRITE_ONCE(cpu->hwp_cap_cached, cap);
Rafael J. Wysockide5bcf42021-03-16 16:52:43 +0100903 cpu->pstate.max_pstate = HWP_GUARANTEED_PERF(cap);
904 cpu->pstate.turbo_pstate = HWP_HIGHEST_PERF(cap);
905}
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -0700906
Rafael J. Wysockide5bcf42021-03-16 16:52:43 +0100907static void intel_pstate_get_hwp_cap(struct cpudata *cpu)
908{
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +0200909 int scaling = cpu->pstate.scaling;
910
Rafael J. Wysockide5bcf42021-03-16 16:52:43 +0100911 __intel_pstate_get_hwp_cap(cpu);
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +0200912
913 cpu->pstate.max_freq = cpu->pstate.max_pstate * scaling;
914 cpu->pstate.turbo_freq = cpu->pstate.turbo_pstate * scaling;
915 if (scaling != cpu->pstate.perf_ctl_scaling) {
916 int perf_ctl_scaling = cpu->pstate.perf_ctl_scaling;
917
918 cpu->pstate.max_freq = rounddown(cpu->pstate.max_freq,
919 perf_ctl_scaling);
920 cpu->pstate.turbo_freq = rounddown(cpu->pstate.turbo_freq,
921 perf_ctl_scaling);
922 }
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -0700923}
924
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200925static void intel_pstate_hwp_set(unsigned int cpu)
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800926{
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200927 struct cpudata *cpu_data = all_cpu_data[cpu];
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -0700928 int max, min;
929 u64 value;
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200930 s16 epp;
Kristen Carlson Accardi74da56c2015-09-09 11:41:22 -0700931
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -0700932 max = cpu_data->max_perf_ratio;
933 min = cpu_data->min_perf_ratio;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700934
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200935 if (cpu_data->policy == CPUFREQ_POLICY_PERFORMANCE)
936 min = max;
Srinivas Pandruvadaf9f48722016-10-08 12:42:38 -0700937
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200938 rdmsrl_on_cpu(cpu, MSR_HWP_REQUEST, &value);
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -0700939
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200940 value &= ~HWP_MIN_PERF(~0L);
941 value |= HWP_MIN_PERF(min);
Srinivas Pandruvada3f8ed542017-03-13 18:30:12 -0700942
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200943 value &= ~HWP_MAX_PERF(~0L);
944 value |= HWP_MAX_PERF(max);
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800945
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200946 if (cpu_data->epp_policy == cpu_data->policy)
947 goto skip_epp;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800948
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200949 cpu_data->epp_policy = cpu_data->policy;
950
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200951 if (cpu_data->policy == CPUFREQ_POLICY_PERFORMANCE) {
952 epp = intel_pstate_get_epp(cpu_data, value);
953 cpu_data->epp_powersave = epp;
954 /* If EPP read was failed, then don't try to write */
955 if (epp < 0)
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800956 goto skip_epp;
957
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200958 epp = 0;
959 } else {
960 /* skip setting EPP, when saved value is invalid */
961 if (cpu_data->epp_powersave < 0)
962 goto skip_epp;
Srinivas Pandruvada84428852016-11-24 16:07:10 -0800963
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200964 /*
965 * No need to restore EPP when it is not zero. This
966 * means:
967 * - Policy is not changed
968 * - user has manually changed
969 * - Error reading EPB
970 */
971 epp = intel_pstate_get_epp(cpu_data, value);
972 if (epp)
973 goto skip_epp;
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -0800974
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200975 epp = cpu_data->epp_powersave;
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800976 }
Borislav Petkov108ec362019-03-30 12:20:22 +0100977 if (boot_cpu_has(X86_FEATURE_HWP_EPP)) {
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200978 value &= ~GENMASK_ULL(31, 24);
979 value |= (u64)epp << 24;
980 } else {
981 intel_pstate_set_epb(cpu, epp);
982 }
983skip_epp:
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -0700984 WRITE_ONCE(cpu_data->hwp_req_cached, value);
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +0200985 wrmsrl_on_cpu(cpu, MSR_HWP_REQUEST, value);
Viresh Kumar41cfd642016-02-22 10:27:46 +0530986}
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800987
Rafael J. Wysocki4adcf2e2020-09-01 18:33:21 +0200988static void intel_pstate_hwp_offline(struct cpudata *cpu)
Srinivas Pandruvadaaf3b7372018-11-16 14:24:19 -0800989{
Rafael J. Wysocki4adcf2e2020-09-01 18:33:21 +0200990 u64 value = READ_ONCE(cpu->hwp_req_cached);
Srinivas Pandruvadaaf3b7372018-11-16 14:24:19 -0800991 int min_perf;
992
Rafael J. Wysocki4adcf2e2020-09-01 18:33:21 +0200993 if (boot_cpu_has(X86_FEATURE_HWP_EPP)) {
994 /*
995 * In case the EPP has been set to "performance" by the
996 * active mode "performance" scaling algorithm, replace that
997 * temporary value with the cached EPP one.
998 */
999 value &= ~GENMASK_ULL(31, 24);
1000 value |= HWP_ENERGY_PERF_PREFERENCE(cpu->epp_cached);
1001 WRITE_ONCE(cpu->hwp_req_cached, value);
1002 }
1003
Srinivas Pandruvadaaf3b7372018-11-16 14:24:19 -08001004 value &= ~GENMASK_ULL(31, 0);
Rafael J. Wysocki9dd04ec2021-01-07 19:42:15 +01001005 min_perf = HWP_LOWEST_PERF(READ_ONCE(cpu->hwp_cap_cached));
Srinivas Pandruvadaaf3b7372018-11-16 14:24:19 -08001006
1007 /* Set hwp_max = hwp_min */
1008 value |= HWP_MAX_PERF(min_perf);
1009 value |= HWP_MIN_PERF(min_perf);
1010
Srinivas Pandruvadac31432f2019-10-31 12:26:20 -07001011 /* Set EPP to min */
Borislav Petkov108ec362019-03-30 12:20:22 +01001012 if (boot_cpu_has(X86_FEATURE_HWP_EPP))
Srinivas Pandruvadaaf3b7372018-11-16 14:24:19 -08001013 value |= HWP_ENERGY_PERF_PREFERENCE(HWP_EPP_POWERSAVE);
Srinivas Pandruvadaaf3b7372018-11-16 14:24:19 -08001014
Rafael J. Wysocki4adcf2e2020-09-01 18:33:21 +02001015 wrmsrl_on_cpu(cpu->cpu, MSR_HWP_REQUEST, value);
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -08001016}
1017
Srinivas Pandruvadaed7bde72020-06-26 11:34:00 -07001018#define POWER_CTL_EE_ENABLE 1
1019#define POWER_CTL_EE_DISABLE 2
1020
1021static int power_ctl_ee_state;
1022
1023static void set_power_ctl_ee_state(bool input)
1024{
1025 u64 power_ctl;
1026
1027 mutex_lock(&intel_pstate_driver_lock);
1028 rdmsrl(MSR_IA32_POWER_CTL, power_ctl);
1029 if (input) {
1030 power_ctl &= ~BIT(MSR_IA32_POWER_CTL_BIT_EE);
1031 power_ctl_ee_state = POWER_CTL_EE_ENABLE;
1032 } else {
1033 power_ctl |= BIT(MSR_IA32_POWER_CTL_BIT_EE);
1034 power_ctl_ee_state = POWER_CTL_EE_DISABLE;
1035 }
1036 wrmsrl(MSR_IA32_POWER_CTL, power_ctl);
1037 mutex_unlock(&intel_pstate_driver_lock);
1038}
1039
Chen Yu70f6bf22018-01-29 10:27:57 +08001040static void intel_pstate_hwp_enable(struct cpudata *cpudata);
1041
Rafael J. Wysocki4adcf2e2020-09-01 18:33:21 +02001042static void intel_pstate_hwp_reenable(struct cpudata *cpu)
1043{
1044 intel_pstate_hwp_enable(cpu);
1045 wrmsrl_on_cpu(cpu->cpu, MSR_HWP_REQUEST, READ_ONCE(cpu->hwp_req_cached));
1046}
1047
1048static int intel_pstate_suspend(struct cpufreq_policy *policy)
1049{
1050 struct cpudata *cpu = all_cpu_data[policy->cpu];
1051
1052 pr_debug("CPU %d suspending\n", cpu->cpu);
1053
1054 cpu->suspended = true;
1055
1056 return 0;
1057}
1058
Srinivas Pandruvada84428852016-11-24 16:07:10 -08001059static int intel_pstate_resume(struct cpufreq_policy *policy)
1060{
Rafael J. Wysocki4adcf2e2020-09-01 18:33:21 +02001061 struct cpudata *cpu = all_cpu_data[policy->cpu];
1062
1063 pr_debug("CPU %d resuming\n", cpu->cpu);
Srinivas Pandruvadaed7bde72020-06-26 11:34:00 -07001064
1065 /* Only restore if the system default is changed */
1066 if (power_ctl_ee_state == POWER_CTL_EE_ENABLE)
1067 set_power_ctl_ee_state(true);
1068 else if (power_ctl_ee_state == POWER_CTL_EE_DISABLE)
1069 set_power_ctl_ee_state(false);
1070
Rafael J. Wysocki4adcf2e2020-09-01 18:33:21 +02001071 if (cpu->suspended && hwp_active) {
1072 mutex_lock(&intel_pstate_limits_lock);
Srinivas Pandruvada84428852016-11-24 16:07:10 -08001073
Rafael J. Wysocki4adcf2e2020-09-01 18:33:21 +02001074 /* Re-enable HWP, because "online" has not done that. */
1075 intel_pstate_hwp_reenable(cpu);
Rafael J. Wysockiaa439242016-12-30 15:56:14 +01001076
Rafael J. Wysocki4adcf2e2020-09-01 18:33:21 +02001077 mutex_unlock(&intel_pstate_limits_lock);
1078 }
Chen Yu70f6bf22018-01-29 10:27:57 +08001079
Rafael J. Wysocki4adcf2e2020-09-01 18:33:21 +02001080 cpu->suspended = false;
Rafael J. Wysockiaa439242016-12-30 15:56:14 +01001081
Rafael J. Wysocki5f98ced2017-03-09 16:30:38 +01001082 return 0;
Srinivas Pandruvada84428852016-11-24 16:07:10 -08001083}
1084
Rafael J. Wysocki111b8b32016-12-30 15:58:21 +01001085static void intel_pstate_update_policies(void)
Viresh Kumar41cfd642016-02-22 10:27:46 +05301086{
Rafael J. Wysocki111b8b32016-12-30 15:58:21 +01001087 int cpu;
1088
1089 for_each_possible_cpu(cpu)
1090 cpufreq_update_policy(cpu);
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001091}
1092
Rafael J. Wysocki9083e492019-03-26 12:19:52 +01001093static void intel_pstate_update_max_freq(unsigned int cpu)
1094{
1095 struct cpufreq_policy *policy = cpufreq_cpu_acquire(cpu);
Rafael J. Wysocki9083e492019-03-26 12:19:52 +01001096 struct cpudata *cpudata;
1097
1098 if (!policy)
1099 return;
1100
1101 cpudata = all_cpu_data[cpu];
1102 policy->cpuinfo.max_freq = global.turbo_disabled_mf ?
1103 cpudata->pstate.max_freq : cpudata->pstate.turbo_freq;
1104
Viresh Kumarc57b25b2019-07-04 13:06:22 +05301105 refresh_frequency_limits(policy);
Rafael J. Wysocki9083e492019-03-26 12:19:52 +01001106
1107 cpufreq_cpu_release(policy);
1108}
1109
Rafael J. Wysocki5a25e3f2019-03-26 12:15:13 +01001110static void intel_pstate_update_limits(unsigned int cpu)
1111{
1112 mutex_lock(&intel_pstate_driver_lock);
1113
1114 update_turbo_state();
1115 /*
1116 * If turbo has been turned on or off globally, policy limits for
1117 * all CPUs need to be updated to reflect that.
1118 */
Rafael J. Wysocki9083e492019-03-26 12:19:52 +01001119 if (global.turbo_disabled_mf != global.turbo_disabled) {
1120 global.turbo_disabled_mf = global.turbo_disabled;
Giovanni Gherdovich918229c2020-01-22 16:16:17 +01001121 arch_set_max_freq_ratio(global.turbo_disabled);
Rafael J. Wysocki9083e492019-03-26 12:19:52 +01001122 for_each_possible_cpu(cpu)
1123 intel_pstate_update_max_freq(cpu);
Rafael J. Wysocki5a25e3f2019-03-26 12:15:13 +01001124 } else {
1125 cpufreq_update_policy(cpu);
1126 }
1127
1128 mutex_unlock(&intel_pstate_driver_lock);
1129}
1130
Dirk Brandewie93f08222013-02-06 09:02:13 -08001131/************************** sysfs begin ************************/
1132#define show_one(file_name, object) \
1133 static ssize_t show_##file_name \
Viresh Kumar625c85a2019-01-25 12:53:07 +05301134 (struct kobject *kobj, struct kobj_attribute *attr, char *buf) \
Dirk Brandewie93f08222013-02-06 09:02:13 -08001135 { \
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01001136 return sprintf(buf, "%u\n", global.object); \
Dirk Brandewie93f08222013-02-06 09:02:13 -08001137 }
1138
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01001139static ssize_t intel_pstate_show_status(char *buf);
1140static int intel_pstate_update_status(const char *buf, size_t size);
1141
1142static ssize_t show_status(struct kobject *kobj,
Viresh Kumar625c85a2019-01-25 12:53:07 +05301143 struct kobj_attribute *attr, char *buf)
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01001144{
1145 ssize_t ret;
1146
1147 mutex_lock(&intel_pstate_driver_lock);
1148 ret = intel_pstate_show_status(buf);
1149 mutex_unlock(&intel_pstate_driver_lock);
1150
1151 return ret;
1152}
1153
Viresh Kumar625c85a2019-01-25 12:53:07 +05301154static ssize_t store_status(struct kobject *a, struct kobj_attribute *b,
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01001155 const char *buf, size_t count)
1156{
1157 char *p = memchr(buf, '\n', count);
1158 int ret;
1159
1160 mutex_lock(&intel_pstate_driver_lock);
1161 ret = intel_pstate_update_status(buf, p ? p - buf : count);
1162 mutex_unlock(&intel_pstate_driver_lock);
1163
1164 return ret < 0 ? ret : count;
1165}
1166
Kristen Carlson Accardid01b1f42015-01-28 15:03:27 -08001167static ssize_t show_turbo_pct(struct kobject *kobj,
Viresh Kumar625c85a2019-01-25 12:53:07 +05301168 struct kobj_attribute *attr, char *buf)
Kristen Carlson Accardid01b1f42015-01-28 15:03:27 -08001169{
1170 struct cpudata *cpu;
1171 int total, no_turbo, turbo_pct;
1172 uint32_t turbo_fp;
1173
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001174 mutex_lock(&intel_pstate_driver_lock);
1175
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02001176 if (!intel_pstate_driver) {
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001177 mutex_unlock(&intel_pstate_driver_lock);
1178 return -EAGAIN;
1179 }
1180
Kristen Carlson Accardid01b1f42015-01-28 15:03:27 -08001181 cpu = all_cpu_data[0];
1182
1183 total = cpu->pstate.turbo_pstate - cpu->pstate.min_pstate + 1;
1184 no_turbo = cpu->pstate.max_pstate - cpu->pstate.min_pstate + 1;
Rafael J. Wysocki22590ef2016-04-09 01:25:58 +02001185 turbo_fp = div_fp(no_turbo, total);
Kristen Carlson Accardid01b1f42015-01-28 15:03:27 -08001186 turbo_pct = 100 - fp_toint(mul_fp(turbo_fp, int_tofp(100)));
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001187
1188 mutex_unlock(&intel_pstate_driver_lock);
1189
Kristen Carlson Accardid01b1f42015-01-28 15:03:27 -08001190 return sprintf(buf, "%u\n", turbo_pct);
1191}
1192
Kristen Carlson Accardi05224242015-01-28 15:03:28 -08001193static ssize_t show_num_pstates(struct kobject *kobj,
Viresh Kumar625c85a2019-01-25 12:53:07 +05301194 struct kobj_attribute *attr, char *buf)
Kristen Carlson Accardi05224242015-01-28 15:03:28 -08001195{
1196 struct cpudata *cpu;
1197 int total;
1198
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001199 mutex_lock(&intel_pstate_driver_lock);
1200
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02001201 if (!intel_pstate_driver) {
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001202 mutex_unlock(&intel_pstate_driver_lock);
1203 return -EAGAIN;
1204 }
1205
Kristen Carlson Accardi05224242015-01-28 15:03:28 -08001206 cpu = all_cpu_data[0];
1207 total = cpu->pstate.turbo_pstate - cpu->pstate.min_pstate + 1;
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001208
1209 mutex_unlock(&intel_pstate_driver_lock);
1210
Kristen Carlson Accardi05224242015-01-28 15:03:28 -08001211 return sprintf(buf, "%u\n", total);
1212}
1213
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -07001214static ssize_t show_no_turbo(struct kobject *kobj,
Viresh Kumar625c85a2019-01-25 12:53:07 +05301215 struct kobj_attribute *attr, char *buf)
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -07001216{
1217 ssize_t ret;
1218
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001219 mutex_lock(&intel_pstate_driver_lock);
1220
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02001221 if (!intel_pstate_driver) {
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001222 mutex_unlock(&intel_pstate_driver_lock);
1223 return -EAGAIN;
1224 }
1225
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -07001226 update_turbo_state();
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01001227 if (global.turbo_disabled)
1228 ret = sprintf(buf, "%u\n", global.turbo_disabled);
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -07001229 else
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01001230 ret = sprintf(buf, "%u\n", global.no_turbo);
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -07001231
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001232 mutex_unlock(&intel_pstate_driver_lock);
1233
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -07001234 return ret;
1235}
1236
Viresh Kumar625c85a2019-01-25 12:53:07 +05301237static ssize_t store_no_turbo(struct kobject *a, struct kobj_attribute *b,
Stratos Karafotisc4108332014-07-18 08:37:23 -07001238 const char *buf, size_t count)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001239{
1240 unsigned int input;
1241 int ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001242
Dirk Brandewie93f08222013-02-06 09:02:13 -08001243 ret = sscanf(buf, "%u", &input);
1244 if (ret != 1)
1245 return -EINVAL;
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -07001246
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001247 mutex_lock(&intel_pstate_driver_lock);
1248
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02001249 if (!intel_pstate_driver) {
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001250 mutex_unlock(&intel_pstate_driver_lock);
1251 return -EAGAIN;
1252 }
1253
Srinivas Pandruvadaa410c03d2016-10-28 10:44:52 -07001254 mutex_lock(&intel_pstate_limits_lock);
1255
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -07001256 update_turbo_state();
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01001257 if (global.turbo_disabled) {
Chris Wilson8c539772020-04-10 20:26:29 +01001258 pr_notice_once("Turbo disabled by BIOS or unavailable on processor\n");
Srinivas Pandruvadaa410c03d2016-10-28 10:44:52 -07001259 mutex_unlock(&intel_pstate_limits_lock);
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001260 mutex_unlock(&intel_pstate_driver_lock);
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -07001261 return -EPERM;
Dirk Brandewiedd5fbf72014-06-20 07:27:59 -07001262 }
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001263
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01001264 global.no_turbo = clamp_t(int, input, 0, 1);
Rafael J. Wysocki111b8b32016-12-30 15:58:21 +01001265
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01001266 if (global.no_turbo) {
1267 struct cpudata *cpu = all_cpu_data[0];
1268 int pct = cpu->pstate.max_pstate * 100 / cpu->pstate.turbo_pstate;
1269
1270 /* Squash the global minimum into the permitted range. */
1271 if (global.min_perf_pct > pct)
1272 global.min_perf_pct = pct;
1273 }
1274
Rafael J. Wysockicd59b4be2017-03-01 00:07:36 +01001275 mutex_unlock(&intel_pstate_limits_lock);
1276
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01001277 intel_pstate_update_policies();
1278
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001279 mutex_unlock(&intel_pstate_driver_lock);
1280
Dirk Brandewie93f08222013-02-06 09:02:13 -08001281 return count;
1282}
1283
Rafael J. Wysocki3000ce32019-10-16 12:47:06 +02001284static void update_qos_request(enum freq_qos_req_type type)
Viresh Kumarda5c5042019-08-09 07:52:49 +05301285{
Rafael J. Wysocki3000ce32019-10-16 12:47:06 +02001286 struct freq_qos_request *req;
Viresh Kumarda5c5042019-08-09 07:52:49 +05301287 struct cpufreq_policy *policy;
Rafael J. Wysockide5bcf42021-03-16 16:52:43 +01001288 int i;
Viresh Kumarda5c5042019-08-09 07:52:49 +05301289
1290 for_each_possible_cpu(i) {
1291 struct cpudata *cpu = all_cpu_data[i];
Rafael J. Wysockide5bcf42021-03-16 16:52:43 +01001292 unsigned int freq, perf_pct;
Viresh Kumarda5c5042019-08-09 07:52:49 +05301293
1294 policy = cpufreq_cpu_get(i);
1295 if (!policy)
1296 continue;
1297
1298 req = policy->driver_data;
1299 cpufreq_cpu_put(policy);
1300
1301 if (!req)
1302 continue;
1303
1304 if (hwp_active)
Rafael J. Wysockide5bcf42021-03-16 16:52:43 +01001305 intel_pstate_get_hwp_cap(cpu);
Viresh Kumarda5c5042019-08-09 07:52:49 +05301306
Rafael J. Wysocki3000ce32019-10-16 12:47:06 +02001307 if (type == FREQ_QOS_MIN) {
Viresh Kumarda5c5042019-08-09 07:52:49 +05301308 perf_pct = global.min_perf_pct;
1309 } else {
1310 req++;
1311 perf_pct = global.max_perf_pct;
1312 }
1313
Rafael J. Wysockide5bcf42021-03-16 16:52:43 +01001314 freq = DIV_ROUND_UP(cpu->pstate.turbo_freq * perf_pct, 100);
Viresh Kumarda5c5042019-08-09 07:52:49 +05301315
Rafael J. Wysocki3000ce32019-10-16 12:47:06 +02001316 if (freq_qos_update_request(req, freq) < 0)
Viresh Kumarda5c5042019-08-09 07:52:49 +05301317 pr_warn("Failed to update freq constraint: CPU%d\n", i);
1318 }
1319}
1320
Viresh Kumar625c85a2019-01-25 12:53:07 +05301321static ssize_t store_max_perf_pct(struct kobject *a, struct kobj_attribute *b,
Stratos Karafotisc4108332014-07-18 08:37:23 -07001322 const char *buf, size_t count)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001323{
1324 unsigned int input;
1325 int ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001326
Dirk Brandewie93f08222013-02-06 09:02:13 -08001327 ret = sscanf(buf, "%u", &input);
1328 if (ret != 1)
1329 return -EINVAL;
1330
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001331 mutex_lock(&intel_pstate_driver_lock);
1332
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02001333 if (!intel_pstate_driver) {
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001334 mutex_unlock(&intel_pstate_driver_lock);
1335 return -EAGAIN;
1336 }
1337
Srinivas Pandruvadaa410c03d2016-10-28 10:44:52 -07001338 mutex_lock(&intel_pstate_limits_lock);
1339
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01001340 global.max_perf_pct = clamp_t(int, input, global.min_perf_pct, 100);
Rafael J. Wysocki111b8b32016-12-30 15:58:21 +01001341
Rafael J. Wysockicd59b4be2017-03-01 00:07:36 +01001342 mutex_unlock(&intel_pstate_limits_lock);
1343
Viresh Kumarda5c5042019-08-09 07:52:49 +05301344 if (intel_pstate_driver == &intel_pstate)
1345 intel_pstate_update_policies();
1346 else
Rafael J. Wysocki3000ce32019-10-16 12:47:06 +02001347 update_qos_request(FREQ_QOS_MAX);
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01001348
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001349 mutex_unlock(&intel_pstate_driver_lock);
1350
Dirk Brandewie93f08222013-02-06 09:02:13 -08001351 return count;
1352}
1353
Viresh Kumar625c85a2019-01-25 12:53:07 +05301354static ssize_t store_min_perf_pct(struct kobject *a, struct kobj_attribute *b,
Stratos Karafotisc4108332014-07-18 08:37:23 -07001355 const char *buf, size_t count)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001356{
1357 unsigned int input;
1358 int ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001359
Dirk Brandewie93f08222013-02-06 09:02:13 -08001360 ret = sscanf(buf, "%u", &input);
1361 if (ret != 1)
1362 return -EINVAL;
Kristen Carlson Accardia0475992015-01-29 13:03:52 -08001363
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001364 mutex_lock(&intel_pstate_driver_lock);
1365
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02001366 if (!intel_pstate_driver) {
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001367 mutex_unlock(&intel_pstate_driver_lock);
1368 return -EAGAIN;
1369 }
1370
Srinivas Pandruvadaa410c03d2016-10-28 10:44:52 -07001371 mutex_lock(&intel_pstate_limits_lock);
1372
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01001373 global.min_perf_pct = clamp_t(int, input,
1374 min_perf_pct_min(), global.max_perf_pct);
Rafael J. Wysocki111b8b32016-12-30 15:58:21 +01001375
Rafael J. Wysockicd59b4be2017-03-01 00:07:36 +01001376 mutex_unlock(&intel_pstate_limits_lock);
1377
Viresh Kumarda5c5042019-08-09 07:52:49 +05301378 if (intel_pstate_driver == &intel_pstate)
1379 intel_pstate_update_policies();
1380 else
Rafael J. Wysocki3000ce32019-10-16 12:47:06 +02001381 update_qos_request(FREQ_QOS_MIN);
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01001382
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01001383 mutex_unlock(&intel_pstate_driver_lock);
1384
Dirk Brandewie93f08222013-02-06 09:02:13 -08001385 return count;
1386}
1387
Srinivas Pandruvadaaaaece32018-06-05 14:42:41 -07001388static ssize_t show_hwp_dynamic_boost(struct kobject *kobj,
Viresh Kumar625c85a2019-01-25 12:53:07 +05301389 struct kobj_attribute *attr, char *buf)
Srinivas Pandruvadaaaaece32018-06-05 14:42:41 -07001390{
1391 return sprintf(buf, "%u\n", hwp_boost);
1392}
1393
Viresh Kumar625c85a2019-01-25 12:53:07 +05301394static ssize_t store_hwp_dynamic_boost(struct kobject *a,
1395 struct kobj_attribute *b,
Srinivas Pandruvadaaaaece32018-06-05 14:42:41 -07001396 const char *buf, size_t count)
1397{
1398 unsigned int input;
1399 int ret;
1400
1401 ret = kstrtouint(buf, 10, &input);
1402 if (ret)
1403 return ret;
1404
1405 mutex_lock(&intel_pstate_driver_lock);
1406 hwp_boost = !!input;
1407 intel_pstate_update_policies();
1408 mutex_unlock(&intel_pstate_driver_lock);
1409
1410 return count;
1411}
1412
Srinivas Pandruvadaed7bde72020-06-26 11:34:00 -07001413static ssize_t show_energy_efficiency(struct kobject *kobj, struct kobj_attribute *attr,
1414 char *buf)
1415{
1416 u64 power_ctl;
1417 int enable;
1418
1419 rdmsrl(MSR_IA32_POWER_CTL, power_ctl);
1420 enable = !!(power_ctl & BIT(MSR_IA32_POWER_CTL_BIT_EE));
1421 return sprintf(buf, "%d\n", !enable);
1422}
1423
1424static ssize_t store_energy_efficiency(struct kobject *a, struct kobj_attribute *b,
1425 const char *buf, size_t count)
1426{
1427 bool input;
1428 int ret;
1429
1430 ret = kstrtobool(buf, &input);
1431 if (ret)
1432 return ret;
1433
1434 set_power_ctl_ee_state(input);
1435
1436 return count;
1437}
1438
Dirk Brandewie93f08222013-02-06 09:02:13 -08001439show_one(max_perf_pct, max_perf_pct);
1440show_one(min_perf_pct, min_perf_pct);
1441
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01001442define_one_global_rw(status);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001443define_one_global_rw(no_turbo);
1444define_one_global_rw(max_perf_pct);
1445define_one_global_rw(min_perf_pct);
Kristen Carlson Accardid01b1f42015-01-28 15:03:27 -08001446define_one_global_ro(turbo_pct);
Kristen Carlson Accardi05224242015-01-28 15:03:28 -08001447define_one_global_ro(num_pstates);
Srinivas Pandruvadaaaaece32018-06-05 14:42:41 -07001448define_one_global_rw(hwp_dynamic_boost);
Srinivas Pandruvadaed7bde72020-06-26 11:34:00 -07001449define_one_global_rw(energy_efficiency);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001450
1451static struct attribute *intel_pstate_attributes[] = {
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01001452 &status.attr,
Dirk Brandewie93f08222013-02-06 09:02:13 -08001453 &no_turbo.attr,
Dirk Brandewie93f08222013-02-06 09:02:13 -08001454 NULL
1455};
1456
Arvind Yadav106c9c72017-07-03 13:40:33 +05301457static const struct attribute_group intel_pstate_attr_group = {
Dirk Brandewie93f08222013-02-06 09:02:13 -08001458 .attrs = intel_pstate_attributes,
1459};
Dirk Brandewie93f08222013-02-06 09:02:13 -08001460
Srinivas Pandruvadaed7bde72020-06-26 11:34:00 -07001461static const struct x86_cpu_id intel_pstate_cpu_ee_disable_ids[];
1462
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02001463static struct kobject *intel_pstate_kobject;
1464
Stratos Karafotis317dd502014-07-18 08:37:17 -07001465static void __init intel_pstate_sysfs_expose_params(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001466{
1467 int rc;
1468
1469 intel_pstate_kobject = kobject_create_and_add("intel_pstate",
1470 &cpu_subsys.dev_root->kobj);
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001471 if (WARN_ON(!intel_pstate_kobject))
1472 return;
1473
Stratos Karafotis2d8d1f12014-07-18 08:37:20 -07001474 rc = sysfs_create_group(intel_pstate_kobject, &intel_pstate_attr_group);
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001475 if (WARN_ON(rc))
1476 return;
1477
Rafael J. Wysockic3d175e2021-05-12 16:15:48 +02001478 if (!boot_cpu_has(X86_FEATURE_HYBRID_CPU)) {
1479 rc = sysfs_create_file(intel_pstate_kobject, &turbo_pct.attr);
1480 WARN_ON(rc);
1481
1482 rc = sysfs_create_file(intel_pstate_kobject, &num_pstates.attr);
1483 WARN_ON(rc);
1484 }
1485
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07001486 /*
1487 * If per cpu limits are enforced there are no global limits, so
1488 * return without creating max/min_perf_pct attributes
1489 */
1490 if (per_cpu_limits)
1491 return;
1492
1493 rc = sysfs_create_file(intel_pstate_kobject, &max_perf_pct.attr);
1494 WARN_ON(rc);
1495
1496 rc = sysfs_create_file(intel_pstate_kobject, &min_perf_pct.attr);
1497 WARN_ON(rc);
1498
Srinivas Pandruvadaed7bde72020-06-26 11:34:00 -07001499 if (x86_match_cpu(intel_pstate_cpu_ee_disable_ids)) {
1500 rc = sysfs_create_file(intel_pstate_kobject, &energy_efficiency.attr);
1501 WARN_ON(rc);
1502 }
Dirk Brandewie93f08222013-02-06 09:02:13 -08001503}
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02001504
Chen Yucdc17192020-10-09 11:30:38 +08001505static void __init intel_pstate_sysfs_remove(void)
1506{
1507 if (!intel_pstate_kobject)
1508 return;
1509
1510 sysfs_remove_group(intel_pstate_kobject, &intel_pstate_attr_group);
1511
Rafael J. Wysockic3d175e2021-05-12 16:15:48 +02001512 if (!boot_cpu_has(X86_FEATURE_HYBRID_CPU)) {
1513 sysfs_remove_file(intel_pstate_kobject, &num_pstates.attr);
1514 sysfs_remove_file(intel_pstate_kobject, &turbo_pct.attr);
1515 }
1516
Chen Yucdc17192020-10-09 11:30:38 +08001517 if (!per_cpu_limits) {
1518 sysfs_remove_file(intel_pstate_kobject, &max_perf_pct.attr);
1519 sysfs_remove_file(intel_pstate_kobject, &min_perf_pct.attr);
1520
1521 if (x86_match_cpu(intel_pstate_cpu_ee_disable_ids))
1522 sysfs_remove_file(intel_pstate_kobject, &energy_efficiency.attr);
1523 }
1524
1525 kobject_put(intel_pstate_kobject);
1526}
1527
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02001528static void intel_pstate_sysfs_expose_hwp_dynamic_boost(void)
1529{
1530 int rc;
1531
1532 if (!hwp_active)
1533 return;
1534
1535 rc = sysfs_create_file(intel_pstate_kobject, &hwp_dynamic_boost.attr);
1536 WARN_ON_ONCE(rc);
1537}
1538
1539static void intel_pstate_sysfs_hide_hwp_dynamic_boost(void)
1540{
1541 if (!hwp_active)
1542 return;
1543
1544 sysfs_remove_file(intel_pstate_kobject, &hwp_dynamic_boost.attr);
1545}
1546
Dirk Brandewie93f08222013-02-06 09:02:13 -08001547/************************** sysfs end ************************/
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001548
Kristen Carlson Accardiba88d432015-07-14 09:46:23 -07001549static void intel_pstate_hwp_enable(struct cpudata *cpudata)
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001550{
Srinivas Pandruvadaf05c9662016-02-25 15:09:31 -08001551 /* First disable HWP notification interrupt as we don't process them */
Borislav Petkov108ec362019-03-30 12:20:22 +01001552 if (boot_cpu_has(X86_FEATURE_HWP_NOTIFY))
Srinivas Pandruvadada7de912016-07-19 16:52:01 -07001553 wrmsrl_on_cpu(cpudata->cpu, MSR_HWP_INTERRUPT, 0x00);
Srinivas Pandruvadaf05c9662016-02-25 15:09:31 -08001554
Kristen Carlson Accardiba88d432015-07-14 09:46:23 -07001555 wrmsrl_on_cpu(cpudata->cpu, MSR_PM_ENABLE, 0x1);
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -08001556 if (cpudata->epp_default == -EINVAL)
1557 cpudata->epp_default = intel_pstate_get_epp(cpudata, 0);
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001558}
1559
Philippe Longepe938d21a2015-11-09 17:40:46 -08001560static int atom_get_min_pstate(void)
Dirk Brandewie19e77c22013-10-21 09:20:35 -07001561{
1562 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001563
Len Brown92134bd2017-02-25 16:55:17 -05001564 rdmsrl(MSR_ATOM_CORE_RATIOS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -07001565 return (value >> 8) & 0x7F;
Dirk Brandewie19e77c22013-10-21 09:20:35 -07001566}
Dirk Brandewie93f08222013-02-06 09:02:13 -08001567
Philippe Longepe938d21a2015-11-09 17:40:46 -08001568static int atom_get_max_pstate(void)
Dirk Brandewie19e77c22013-10-21 09:20:35 -07001569{
1570 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001571
Len Brown92134bd2017-02-25 16:55:17 -05001572 rdmsrl(MSR_ATOM_CORE_RATIOS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -07001573 return (value >> 16) & 0x7F;
Dirk Brandewie19e77c22013-10-21 09:20:35 -07001574}
1575
Philippe Longepe938d21a2015-11-09 17:40:46 -08001576static int atom_get_turbo_pstate(void)
Dirk Brandewie61d8d2a2014-02-12 10:01:07 -08001577{
1578 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001579
Len Brown92134bd2017-02-25 16:55:17 -05001580 rdmsrl(MSR_ATOM_CORE_TURBO_RATIOS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -07001581 return value & 0x7F;
Dirk Brandewie61d8d2a2014-02-12 10:01:07 -08001582}
1583
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001584static u64 atom_get_val(struct cpudata *cpudata, int pstate)
Dirk Brandewie007bea02013-12-18 10:32:39 -08001585{
1586 u64 val;
1587 int32_t vid_fp;
1588 u32 vid;
1589
Chen Yu144c8e12015-07-29 23:53:10 +08001590 val = (u64)pstate << 8;
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01001591 if (global.no_turbo && !global.turbo_disabled)
Dirk Brandewie007bea02013-12-18 10:32:39 -08001592 val |= (u64)1 << 32;
1593
1594 vid_fp = cpudata->vid.min + mul_fp(
1595 int_tofp(pstate - cpudata->pstate.min_pstate),
1596 cpudata->vid.ratio);
1597
1598 vid_fp = clamp_t(int32_t, vid_fp, cpudata->vid.min, cpudata->vid.max);
Dirk Brandewied022a652014-10-13 08:37:44 -07001599 vid = ceiling_fp(vid_fp);
Dirk Brandewie007bea02013-12-18 10:32:39 -08001600
Dirk Brandewie21855ff2014-05-08 12:57:23 -07001601 if (pstate > cpudata->pstate.max_pstate)
1602 vid = cpudata->vid.turbo;
1603
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001604 return val | vid;
Dirk Brandewie007bea02013-12-18 10:32:39 -08001605}
1606
Philippe Longepe1421df62015-11-09 17:40:47 -08001607static int silvermont_get_scaling(void)
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001608{
1609 u64 value;
1610 int i;
Philippe Longepe1421df62015-11-09 17:40:47 -08001611 /* Defined in Table 35-6 from SDM (Sept 2015) */
1612 static int silvermont_freq_table[] = {
1613 83300, 100000, 133300, 116700, 80000};
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001614
1615 rdmsrl(MSR_FSB_FREQ, value);
Philippe Longepe1421df62015-11-09 17:40:47 -08001616 i = value & 0x7;
1617 WARN_ON(i > 4);
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001618
Philippe Longepe1421df62015-11-09 17:40:47 -08001619 return silvermont_freq_table[i];
1620}
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001621
Philippe Longepe1421df62015-11-09 17:40:47 -08001622static int airmont_get_scaling(void)
1623{
1624 u64 value;
1625 int i;
1626 /* Defined in Table 35-10 from SDM (Sept 2015) */
1627 static int airmont_freq_table[] = {
1628 83300, 100000, 133300, 116700, 80000,
1629 93300, 90000, 88900, 87500};
1630
1631 rdmsrl(MSR_FSB_FREQ, value);
1632 i = value & 0xF;
1633 WARN_ON(i > 8);
1634
1635 return airmont_freq_table[i];
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001636}
1637
Philippe Longepe938d21a2015-11-09 17:40:46 -08001638static void atom_get_vid(struct cpudata *cpudata)
Dirk Brandewie007bea02013-12-18 10:32:39 -08001639{
1640 u64 value;
1641
Len Brown92134bd2017-02-25 16:55:17 -05001642 rdmsrl(MSR_ATOM_CORE_VIDS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -07001643 cpudata->vid.min = int_tofp((value >> 8) & 0x7f);
1644 cpudata->vid.max = int_tofp((value >> 16) & 0x7f);
Dirk Brandewie007bea02013-12-18 10:32:39 -08001645 cpudata->vid.ratio = div_fp(
1646 cpudata->vid.max - cpudata->vid.min,
1647 int_tofp(cpudata->pstate.max_pstate -
1648 cpudata->pstate.min_pstate));
Dirk Brandewie21855ff2014-05-08 12:57:23 -07001649
Len Brown92134bd2017-02-25 16:55:17 -05001650 rdmsrl(MSR_ATOM_CORE_TURBO_VIDS, value);
Dirk Brandewie21855ff2014-05-08 12:57:23 -07001651 cpudata->vid.turbo = value & 0x7f;
Dirk Brandewie007bea02013-12-18 10:32:39 -08001652}
1653
Dirk Brandewie016c8152013-10-21 09:20:34 -07001654static int core_get_min_pstate(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001655{
1656 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001657
Konrad Rzeszutek Wilk05e99c8cf2013-03-20 14:21:10 +00001658 rdmsrl(MSR_PLATFORM_INFO, value);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001659 return (value >> 40) & 0xFF;
1660}
1661
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -07001662static int core_get_max_pstate_physical(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001663{
1664 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001665
Konrad Rzeszutek Wilk05e99c8cf2013-03-20 14:21:10 +00001666 rdmsrl(MSR_PLATFORM_INFO, value);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001667 return (value >> 8) & 0xFF;
1668}
1669
Srinivas Pandruvada8fc75542017-01-19 15:03:14 -08001670static int core_get_tdp_ratio(u64 plat_info)
1671{
1672 /* Check how many TDP levels present */
1673 if (plat_info & 0x600000000) {
1674 u64 tdp_ctrl;
1675 u64 tdp_ratio;
1676 int tdp_msr;
1677 int err;
1678
1679 /* Get the TDP level (0, 1, 2) to get ratios */
1680 err = rdmsrl_safe(MSR_CONFIG_TDP_CONTROL, &tdp_ctrl);
1681 if (err)
1682 return err;
1683
1684 /* TDP MSR are continuous starting at 0x648 */
1685 tdp_msr = MSR_CONFIG_TDP_NOMINAL + (tdp_ctrl & 0x03);
1686 err = rdmsrl_safe(tdp_msr, &tdp_ratio);
1687 if (err)
1688 return err;
1689
1690 /* For level 1 and 2, bits[23:16] contain the ratio */
1691 if (tdp_ctrl & 0x03)
1692 tdp_ratio >>= 16;
1693
1694 tdp_ratio &= 0xff; /* ratios are only 8 bits long */
1695 pr_debug("tdp_ratio %x\n", (int)tdp_ratio);
1696
1697 return (int)tdp_ratio;
1698 }
1699
1700 return -ENXIO;
1701}
1702
Dirk Brandewie93f08222013-02-06 09:02:13 -08001703static int core_get_max_pstate(void)
1704{
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -07001705 u64 tar;
1706 u64 plat_info;
1707 int max_pstate;
Srinivas Pandruvada8fc75542017-01-19 15:03:14 -08001708 int tdp_ratio;
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -07001709 int err;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001710
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -07001711 rdmsrl(MSR_PLATFORM_INFO, plat_info);
1712 max_pstate = (plat_info >> 8) & 0xFF;
1713
Srinivas Pandruvada8fc75542017-01-19 15:03:14 -08001714 tdp_ratio = core_get_tdp_ratio(plat_info);
1715 if (tdp_ratio <= 0)
1716 return max_pstate;
1717
1718 if (hwp_active) {
1719 /* Turbo activation ratio is not used on HWP platforms */
1720 return tdp_ratio;
1721 }
1722
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -07001723 err = rdmsrl_safe(MSR_TURBO_ACTIVATION_RATIO, &tar);
1724 if (!err) {
Srinivas Pandruvada8fc75542017-01-19 15:03:14 -08001725 int tar_levels;
1726
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -07001727 /* Do some sanity checking for safety */
Srinivas Pandruvada8fc75542017-01-19 15:03:14 -08001728 tar_levels = tar & 0xff;
1729 if (tdp_ratio - 1 == tar_levels) {
1730 max_pstate = tar_levels;
1731 pr_debug("max_pstate=TAC %x\n", max_pstate);
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -07001732 }
1733 }
1734
Srinivas Pandruvada6a35fc22015-10-14 16:11:59 -07001735 return max_pstate;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001736}
1737
Dirk Brandewie016c8152013-10-21 09:20:34 -07001738static int core_get_turbo_pstate(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001739{
1740 u64 value;
1741 int nont, ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -07001742
Srinivas Pandruvada100cf6f2016-07-06 16:07:55 -07001743 rdmsrl(MSR_TURBO_RATIO_LIMIT, value);
Dirk Brandewie016c8152013-10-21 09:20:34 -07001744 nont = core_get_max_pstate();
Stratos Karafotis285cb992014-07-18 08:37:21 -07001745 ret = (value) & 255;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001746 if (ret <= nont)
1747 ret = nont;
1748 return ret;
1749}
1750
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001751static inline int core_get_scaling(void)
1752{
1753 return 100000;
1754}
1755
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001756static u64 core_get_val(struct cpudata *cpudata, int pstate)
Dirk Brandewie016c8152013-10-21 09:20:34 -07001757{
1758 u64 val;
1759
Chen Yu144c8e12015-07-29 23:53:10 +08001760 val = (u64)pstate << 8;
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01001761 if (global.no_turbo && !global.turbo_disabled)
Dirk Brandewie016c8152013-10-21 09:20:34 -07001762 val |= (u64)1 << 32;
1763
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001764 return val;
Dirk Brandewie016c8152013-10-21 09:20:34 -07001765}
1766
Srinivas Pandruvada6e34e1f2017-07-13 15:03:51 -07001767static int knl_get_aperf_mperf_shift(void)
1768{
1769 return 10;
1770}
1771
Dasaratharaman Chandramoulib34ef932015-04-10 10:22:18 -07001772static int knl_get_turbo_pstate(void)
1773{
1774 u64 value;
1775 int nont, ret;
1776
Srinivas Pandruvada100cf6f2016-07-06 16:07:55 -07001777 rdmsrl(MSR_TURBO_RATIO_LIMIT, value);
Dasaratharaman Chandramoulib34ef932015-04-10 10:22:18 -07001778 nont = core_get_max_pstate();
1779 ret = (((value) >> 8) & 0xFF);
1780 if (ret <= nont)
1781 ret = nont;
1782 return ret;
1783}
1784
Rafael J. Wysocki46573fd2021-09-04 15:53:39 +02001785#ifdef CONFIG_ACPI_CPPC_LIB
1786static u32 hybrid_ref_perf;
1787
1788static int hybrid_get_cpu_scaling(int cpu)
1789{
1790 return DIV_ROUND_UP(core_get_scaling() * hybrid_ref_perf,
1791 intel_pstate_cppc_nominal(cpu));
1792}
1793
1794static void intel_pstate_cppc_set_cpu_scaling(void)
1795{
1796 u32 min_nominal_perf = U32_MAX;
1797 int cpu;
1798
1799 for_each_present_cpu(cpu) {
1800 u32 nominal_perf = intel_pstate_cppc_nominal(cpu);
1801
1802 if (nominal_perf && nominal_perf < min_nominal_perf)
1803 min_nominal_perf = nominal_perf;
1804 }
1805
1806 if (min_nominal_perf < U32_MAX) {
1807 hybrid_ref_perf = min_nominal_perf;
1808 pstate_funcs.get_cpu_scaling = hybrid_get_cpu_scaling;
1809 }
1810}
1811#else
1812static inline void intel_pstate_cppc_set_cpu_scaling(void)
1813{
1814}
1815#endif /* CONFIG_ACPI_CPPC_LIB */
1816
Rafael J. Wysockia6c6ead2016-10-19 02:57:22 +02001817static void intel_pstate_set_pstate(struct cpudata *cpu, int pstate)
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001818{
Rafael J. Wysockibc95a452016-07-19 15:10:37 +02001819 trace_cpu_frequency(pstate * cpu->pstate.scaling, cpu->cpu);
1820 cpu->pstate.current_pstate = pstate;
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001821 /*
1822 * Generally, there is no guarantee that this code will always run on
1823 * the CPU being updated, so force the register update to run on the
1824 * right CPU.
1825 */
1826 wrmsrl_on_cpu(cpu->cpu, MSR_IA32_PERF_CTL,
1827 pstate_funcs.get_val(cpu, pstate));
Dirk Brandewie93f08222013-02-06 09:02:13 -08001828}
1829
Rafael J. Wysockia6c6ead2016-10-19 02:57:22 +02001830static void intel_pstate_set_min_pstate(struct cpudata *cpu)
1831{
1832 intel_pstate_set_pstate(cpu, cpu->pstate.min_pstate);
1833}
1834
1835static void intel_pstate_max_within_limits(struct cpudata *cpu)
1836{
Rafael J. Wysockifa93b512019-02-15 13:15:32 +01001837 int pstate = max(cpu->pstate.min_pstate, cpu->max_perf_ratio);
Rafael J. Wysockia6c6ead2016-10-19 02:57:22 +02001838
1839 update_turbo_state();
Rafael J. Wysockib02aabe2017-03-28 00:24:26 +02001840 intel_pstate_set_pstate(cpu, pstate);
Rafael J. Wysockia6c6ead2016-10-19 02:57:22 +02001841}
1842
Dirk Brandewie93f08222013-02-06 09:02:13 -08001843static void intel_pstate_get_cpu_pstates(struct cpudata *cpu)
1844{
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +02001845 int perf_ctl_max_phys = pstate_funcs.get_max_physical();
Rafael J. Wysocki46573fd2021-09-04 15:53:39 +02001846 int perf_ctl_scaling = pstate_funcs.get_scaling();
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +02001847
Dirk Brandewie016c8152013-10-21 09:20:34 -07001848 cpu->pstate.min_pstate = pstate_funcs.get_min();
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +02001849 cpu->pstate.max_pstate_physical = perf_ctl_max_phys;
1850 cpu->pstate.perf_ctl_scaling = perf_ctl_scaling;
Srinivas Pandruvadaff7c9912018-06-18 12:47:45 -07001851
1852 if (hwp_active && !hwp_mode_bdw) {
Rafael J. Wysockide5bcf42021-03-16 16:52:43 +01001853 __intel_pstate_get_hwp_cap(cpu);
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +02001854
Rafael J. Wysocki46573fd2021-09-04 15:53:39 +02001855 if (pstate_funcs.get_cpu_scaling) {
1856 cpu->pstate.scaling = pstate_funcs.get_cpu_scaling(cpu->cpu);
1857 if (cpu->pstate.scaling != perf_ctl_scaling)
1858 intel_pstate_hybrid_hwp_adjust(cpu);
1859 } else {
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +02001860 cpu->pstate.scaling = perf_ctl_scaling;
Rafael J. Wysocki46573fd2021-09-04 15:53:39 +02001861 }
Srinivas Pandruvadaff7c9912018-06-18 12:47:45 -07001862 } else {
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +02001863 cpu->pstate.scaling = perf_ctl_scaling;
Chen Yu6f67e062021-01-12 13:21:27 +08001864 cpu->pstate.max_pstate = pstate_funcs.get_max();
Rafael J. Wysockide5bcf42021-03-16 16:52:43 +01001865 cpu->pstate.turbo_pstate = pstate_funcs.get_turbo();
Srinivas Pandruvadaff7c9912018-06-18 12:47:45 -07001866 }
Rafael J. Wysockide5bcf42021-03-16 16:52:43 +01001867
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +02001868 if (cpu->pstate.scaling == perf_ctl_scaling) {
1869 cpu->pstate.min_freq = cpu->pstate.min_pstate * perf_ctl_scaling;
1870 cpu->pstate.max_freq = cpu->pstate.max_pstate * perf_ctl_scaling;
1871 cpu->pstate.turbo_freq = cpu->pstate.turbo_pstate * perf_ctl_scaling;
1872 }
Dirk Brandewie93f08222013-02-06 09:02:13 -08001873
Srinivas Pandruvada6e34e1f2017-07-13 15:03:51 -07001874 if (pstate_funcs.get_aperf_mperf_shift)
1875 cpu->aperf_mperf_shift = pstate_funcs.get_aperf_mperf_shift();
1876
Dirk Brandewie007bea02013-12-18 10:32:39 -08001877 if (pstate_funcs.get_vid)
1878 pstate_funcs.get_vid(cpu);
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01001879
1880 intel_pstate_set_min_pstate(cpu);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001881}
1882
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -07001883/*
1884 * Long hold time will keep high perf limits for long time,
1885 * which negatively impacts perf/watt for some workloads,
1886 * like specpower. 3ms is based on experiements on some
1887 * workoads.
1888 */
1889static int hwp_boost_hold_time_ns = 3 * NSEC_PER_MSEC;
1890
1891static inline void intel_pstate_hwp_boost_up(struct cpudata *cpu)
1892{
1893 u64 hwp_req = READ_ONCE(cpu->hwp_req_cached);
Rafael J. Wysocki9dd04ec2021-01-07 19:42:15 +01001894 u64 hwp_cap = READ_ONCE(cpu->hwp_cap_cached);
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -07001895 u32 max_limit = (hwp_req & 0xff00) >> 8;
1896 u32 min_limit = (hwp_req & 0xff);
1897 u32 boost_level1;
1898
1899 /*
1900 * Cases to consider (User changes via sysfs or boot time):
1901 * If, P0 (Turbo max) = P1 (Guaranteed max) = min:
1902 * No boost, return.
1903 * If, P0 (Turbo max) > P1 (Guaranteed max) = min:
1904 * Should result in one level boost only for P0.
1905 * If, P0 (Turbo max) = P1 (Guaranteed max) > min:
1906 * Should result in two level boost:
1907 * (min + p1)/2 and P1.
1908 * If, P0 (Turbo max) > P1 (Guaranteed max) > min:
1909 * Should result in three level boost:
1910 * (min + p1)/2, P1 and P0.
1911 */
1912
1913 /* If max and min are equal or already at max, nothing to boost */
1914 if (max_limit == min_limit || cpu->hwp_boost_min >= max_limit)
1915 return;
1916
1917 if (!cpu->hwp_boost_min)
1918 cpu->hwp_boost_min = min_limit;
1919
1920 /* level at half way mark between min and guranteed */
Rafael J. Wysocki9dd04ec2021-01-07 19:42:15 +01001921 boost_level1 = (HWP_GUARANTEED_PERF(hwp_cap) + min_limit) >> 1;
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -07001922
1923 if (cpu->hwp_boost_min < boost_level1)
1924 cpu->hwp_boost_min = boost_level1;
Rafael J. Wysocki9dd04ec2021-01-07 19:42:15 +01001925 else if (cpu->hwp_boost_min < HWP_GUARANTEED_PERF(hwp_cap))
1926 cpu->hwp_boost_min = HWP_GUARANTEED_PERF(hwp_cap);
1927 else if (cpu->hwp_boost_min == HWP_GUARANTEED_PERF(hwp_cap) &&
1928 max_limit != HWP_GUARANTEED_PERF(hwp_cap))
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -07001929 cpu->hwp_boost_min = max_limit;
1930 else
1931 return;
1932
1933 hwp_req = (hwp_req & ~GENMASK_ULL(7, 0)) | cpu->hwp_boost_min;
1934 wrmsrl(MSR_HWP_REQUEST, hwp_req);
1935 cpu->last_update = cpu->sample.time;
1936}
1937
1938static inline void intel_pstate_hwp_boost_down(struct cpudata *cpu)
1939{
1940 if (cpu->hwp_boost_min) {
1941 bool expired;
1942
1943 /* Check if we are idle for hold time to boost down */
1944 expired = time_after64(cpu->sample.time, cpu->last_update +
1945 hwp_boost_hold_time_ns);
1946 if (expired) {
1947 wrmsrl(MSR_HWP_REQUEST, cpu->hwp_req_cached);
1948 cpu->hwp_boost_min = 0;
1949 }
1950 }
1951 cpu->last_update = cpu->sample.time;
1952}
1953
Srinivas Pandruvada52ccc4312018-06-05 14:42:40 -07001954static inline void intel_pstate_update_util_hwp_local(struct cpudata *cpu,
1955 u64 time)
1956{
1957 cpu->sample.time = time;
1958
1959 if (cpu->sched_flags & SCHED_CPUFREQ_IOWAIT) {
1960 bool do_io = false;
1961
1962 cpu->sched_flags = 0;
1963 /*
1964 * Set iowait_boost flag and update time. Since IO WAIT flag
1965 * is set all the time, we can't just conclude that there is
1966 * some IO bound activity is scheduled on this CPU with just
1967 * one occurrence. If we receive at least two in two
1968 * consecutive ticks, then we treat as boost candidate.
1969 */
1970 if (time_before64(time, cpu->last_io_update + 2 * TICK_NSEC))
1971 do_io = true;
1972
1973 cpu->last_io_update = time;
1974
1975 if (do_io)
1976 intel_pstate_hwp_boost_up(cpu);
1977
1978 } else {
1979 intel_pstate_hwp_boost_down(cpu);
1980 }
1981}
1982
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -07001983static inline void intel_pstate_update_util_hwp(struct update_util_data *data,
1984 u64 time, unsigned int flags)
1985{
Srinivas Pandruvada52ccc4312018-06-05 14:42:40 -07001986 struct cpudata *cpu = container_of(data, struct cpudata, update_util);
1987
1988 cpu->sched_flags |= flags;
1989
1990 if (smp_processor_id() == cpu->cpu)
1991 intel_pstate_update_util_hwp_local(cpu, time);
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -07001992}
1993
Rafael J. Wysockia1c97872016-05-11 19:09:12 +02001994static inline void intel_pstate_calc_avg_perf(struct cpudata *cpu)
Dirk Brandewie93f08222013-02-06 09:02:13 -08001995{
Stratos Karafotis6b17ddb2014-04-29 20:53:49 +03001996 struct sample *sample = &cpu->sample;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001997
Rafael J. Wysockia1c97872016-05-11 19:09:12 +02001998 sample->core_avg_perf = div_ext_fp(sample->aperf, sample->mperf);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001999}
2000
Rafael J. Wysocki4fec7ad2016-03-10 23:45:19 +01002001static inline bool intel_pstate_sample(struct cpudata *cpu, u64 time)
Dirk Brandewie93f08222013-02-06 09:02:13 -08002002{
Dirk Brandewie93f08222013-02-06 09:02:13 -08002003 u64 aperf, mperf;
Stratos Karafotis4ab60c32014-07-18 08:37:24 -07002004 unsigned long flags;
Doug Smythies4055fad2015-04-11 21:10:26 -07002005 u64 tsc;
Dirk Brandewie93f08222013-02-06 09:02:13 -08002006
Stratos Karafotis4ab60c32014-07-18 08:37:24 -07002007 local_irq_save(flags);
Dirk Brandewie93f08222013-02-06 09:02:13 -08002008 rdmsrl(MSR_IA32_APERF, aperf);
2009 rdmsrl(MSR_IA32_MPERF, mperf);
Philippe Longepee70eed22015-12-04 17:40:32 +01002010 tsc = rdtsc();
Rafael J. Wysocki4fec7ad2016-03-10 23:45:19 +01002011 if (cpu->prev_mperf == mperf || cpu->prev_tsc == tsc) {
Srinivas Pandruvada8e601a92015-10-15 12:34:21 -07002012 local_irq_restore(flags);
Rafael J. Wysocki4fec7ad2016-03-10 23:45:19 +01002013 return false;
Srinivas Pandruvada8e601a92015-10-15 12:34:21 -07002014 }
Stratos Karafotis4ab60c32014-07-18 08:37:24 -07002015 local_irq_restore(flags);
Dirk Brandewieb69880f2014-01-16 10:32:25 -08002016
Dirk Brandewiec4ee8412014-05-29 09:32:24 -07002017 cpu->last_sample_time = cpu->sample.time;
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01002018 cpu->sample.time = time;
Dirk Brandewied37e2b72014-02-12 10:01:04 -08002019 cpu->sample.aperf = aperf;
2020 cpu->sample.mperf = mperf;
Doug Smythies4055fad2015-04-11 21:10:26 -07002021 cpu->sample.tsc = tsc;
Dirk Brandewied37e2b72014-02-12 10:01:04 -08002022 cpu->sample.aperf -= cpu->prev_aperf;
2023 cpu->sample.mperf -= cpu->prev_mperf;
Doug Smythies4055fad2015-04-11 21:10:26 -07002024 cpu->sample.tsc -= cpu->prev_tsc;
Dirk Brandewie93f08222013-02-06 09:02:13 -08002025
Dirk Brandewie93f08222013-02-06 09:02:13 -08002026 cpu->prev_aperf = aperf;
2027 cpu->prev_mperf = mperf;
Doug Smythies4055fad2015-04-11 21:10:26 -07002028 cpu->prev_tsc = tsc;
Rafael J. Wysockifebce402016-04-02 01:06:21 +02002029 /*
2030 * First time this function is invoked in a given cycle, all of the
2031 * previous sample data fields are equal to zero or stale and they must
2032 * be populated with meaningful numbers for things to work, so assume
2033 * that sample.time will always be reset before setting the utilization
2034 * update hook and make the caller skip the sample then.
2035 */
Rafael J. Wysockieabd22c2017-03-28 00:15:37 +02002036 if (cpu->last_sample_time) {
2037 intel_pstate_calc_avg_perf(cpu);
2038 return true;
2039 }
2040 return false;
Dirk Brandewie93f08222013-02-06 09:02:13 -08002041}
2042
Philippe Longepe8fa520a2016-03-06 08:34:06 +01002043static inline int32_t get_avg_frequency(struct cpudata *cpu)
2044{
Doug Smythiesc587c792017-08-08 14:05:12 -07002045 return mul_ext_fp(cpu->sample.core_avg_perf, cpu_khz);
Philippe Longepe8fa520a2016-03-06 08:34:06 +01002046}
2047
Philippe Longepebdcaa232016-04-22 11:46:09 -07002048static inline int32_t get_avg_pstate(struct cpudata *cpu)
2049{
Rafael J. Wysocki8edb0a62016-05-11 19:10:42 +02002050 return mul_ext_fp(cpu->pstate.max_pstate_physical,
2051 cpu->sample.core_avg_perf);
Philippe Longepebdcaa232016-04-22 11:46:09 -07002052}
2053
Rafael J. Wysockid77d4882017-08-10 01:09:16 +02002054static inline int32_t get_target_pstate(struct cpudata *cpu)
Philippe Longepee70eed22015-12-04 17:40:32 +01002055{
2056 struct sample *sample = &cpu->sample;
Rafael J. Wysockib8bd1582019-02-07 12:51:04 +01002057 int32_t busy_frac;
Rafael J. Wysocki0843e832016-10-06 14:07:51 +02002058 int target, avg_pstate;
Philippe Longepee70eed22015-12-04 17:40:32 +01002059
Srinivas Pandruvada6e34e1f2017-07-13 15:03:51 -07002060 busy_frac = div_fp(sample->mperf << cpu->aperf_mperf_shift,
2061 sample->tsc);
Philippe Longepe63d1d652015-12-04 17:40:35 +01002062
Rafael J. Wysockib8bd1582019-02-07 12:51:04 +01002063 if (busy_frac < cpu->iowait_boost)
2064 busy_frac = cpu->iowait_boost;
Philippe Longepe63d1d652015-12-04 17:40:35 +01002065
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02002066 sample->busy_scaled = busy_frac * 100;
Rafael J. Wysocki0843e832016-10-06 14:07:51 +02002067
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01002068 target = global.no_turbo || global.turbo_disabled ?
Rafael J. Wysocki0843e832016-10-06 14:07:51 +02002069 cpu->pstate.max_pstate : cpu->pstate.turbo_pstate;
2070 target += target >> 2;
2071 target = mul_fp(target, busy_frac);
2072 if (target < cpu->pstate.min_pstate)
2073 target = cpu->pstate.min_pstate;
2074
2075 /*
2076 * If the average P-state during the previous cycle was higher than the
2077 * current target, add 50% of the difference to the target to reduce
2078 * possible performance oscillations and offset possible performance
2079 * loss related to moving the workload from one CPU to another within
2080 * a package/module.
2081 */
2082 avg_pstate = get_avg_pstate(cpu);
2083 if (avg_pstate > target)
2084 target += (avg_pstate - target) >> 1;
2085
2086 return target;
Philippe Longepee70eed22015-12-04 17:40:32 +01002087}
2088
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002089static int intel_pstate_prepare_request(struct cpudata *cpu, int pstate)
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01002090{
Rafael J. Wysockifa93b512019-02-15 13:15:32 +01002091 int min_pstate = max(cpu->pstate.min_pstate, cpu->min_perf_ratio);
2092 int max_pstate = max(min_pstate, cpu->max_perf_ratio);
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01002093
Rafael J. Wysockib02aabe2017-03-28 00:24:26 +02002094 return clamp_t(int, pstate, min_pstate, max_pstate);
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002095}
2096
2097static void intel_pstate_update_pstate(struct cpudata *cpu, int pstate)
2098{
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01002099 if (pstate == cpu->pstate.current_pstate)
2100 return;
2101
Rafael J. Wysockibc95a452016-07-19 15:10:37 +02002102 cpu->pstate.current_pstate = pstate;
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01002103 wrmsrl(MSR_IA32_PERF_CTL, pstate_funcs.get_val(cpu, pstate));
2104}
2105
Rafael J. Wysockia8912832017-08-10 01:08:56 +02002106static void intel_pstate_adjust_pstate(struct cpudata *cpu)
Dirk Brandewie93f08222013-02-06 09:02:13 -08002107{
Rafael J. Wysocki67dd9bf2017-03-28 00:17:10 +02002108 int from = cpu->pstate.current_pstate;
Doug Smythies4055fad2015-04-11 21:10:26 -07002109 struct sample *sample;
Rafael J. Wysockia8912832017-08-10 01:08:56 +02002110 int target_pstate;
Doug Smythies4055fad2015-04-11 21:10:26 -07002111
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002112 update_turbo_state();
2113
Rafael J. Wysockid77d4882017-08-10 01:09:16 +02002114 target_pstate = get_target_pstate(cpu);
Rafael J. Wysocki64078292017-03-03 23:51:31 +01002115 target_pstate = intel_pstate_prepare_request(cpu, target_pstate);
2116 trace_cpu_frequency(target_pstate * cpu->pstate.scaling, cpu->cpu);
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01002117 intel_pstate_update_pstate(cpu, target_pstate);
Doug Smythies4055fad2015-04-11 21:10:26 -07002118
2119 sample = &cpu->sample;
Rafael J. Wysockia1c97872016-05-11 19:09:12 +02002120 trace_pstate_sample(mul_ext_fp(100, sample->core_avg_perf),
Philippe Longepe157386b2015-12-04 17:40:30 +01002121 fp_toint(sample->busy_scaled),
Doug Smythies4055fad2015-04-11 21:10:26 -07002122 from,
2123 cpu->pstate.current_pstate,
2124 sample->mperf,
2125 sample->aperf,
2126 sample->tsc,
Srinivas Pandruvada3ba7bca2016-09-13 17:41:33 -07002127 get_avg_frequency(cpu),
2128 fp_toint(cpu->iowait_boost * 100));
Dirk Brandewie93f08222013-02-06 09:02:13 -08002129}
2130
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01002131static void intel_pstate_update_util(struct update_util_data *data, u64 time,
Rafael J. Wysocki58919e82016-08-16 22:14:55 +02002132 unsigned int flags)
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08002133{
Rafael J. Wysockia4675fb2016-02-05 01:45:30 +01002134 struct cpudata *cpu = container_of(data, struct cpudata, update_util);
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02002135 u64 delta_ns;
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08002136
Viresh Kumar674e7542017-07-28 12:16:38 +05302137 /* Don't allow remote callbacks */
2138 if (smp_processor_id() != cpu->cpu)
2139 return;
2140
Rafael J. Wysockib8bd1582019-02-07 12:51:04 +01002141 delta_ns = time - cpu->last_update;
Rafael J. Wysockieabd22c2017-03-28 00:15:37 +02002142 if (flags & SCHED_CPUFREQ_IOWAIT) {
Rafael J. Wysockib8bd1582019-02-07 12:51:04 +01002143 /* Start over if the CPU may have been idle. */
2144 if (delta_ns > TICK_NSEC) {
2145 cpu->iowait_boost = ONE_EIGHTH_FP;
Rafael J. Wysocki8e3b4032019-03-11 12:57:25 +01002146 } else if (cpu->iowait_boost >= ONE_EIGHTH_FP) {
Rafael J. Wysockib8bd1582019-02-07 12:51:04 +01002147 cpu->iowait_boost <<= 1;
2148 if (cpu->iowait_boost > int_tofp(1))
2149 cpu->iowait_boost = int_tofp(1);
2150 } else {
2151 cpu->iowait_boost = ONE_EIGHTH_FP;
2152 }
Rafael J. Wysockieabd22c2017-03-28 00:15:37 +02002153 } else if (cpu->iowait_boost) {
2154 /* Clear iowait_boost if the CPU may have been idle. */
Rafael J. Wysockieabd22c2017-03-28 00:15:37 +02002155 if (delta_ns > TICK_NSEC)
2156 cpu->iowait_boost = 0;
Rafael J. Wysockib8bd1582019-02-07 12:51:04 +01002157 else
2158 cpu->iowait_boost >>= 1;
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02002159 }
Rafael J. Wysockieabd22c2017-03-28 00:15:37 +02002160 cpu->last_update = time;
Rafael J. Wysocki09c448d2016-09-14 02:28:13 +02002161 delta_ns = time - cpu->sample.time;
Rafael J. Wysockid77d4882017-08-10 01:09:16 +02002162 if ((s64)delta_ns < INTEL_PSTATE_SAMPLING_INTERVAL)
Rafael J. Wysockieabd22c2017-03-28 00:15:37 +02002163 return;
Rafael J. Wysocki4fec7ad2016-03-10 23:45:19 +01002164
Rafael J. Wysockia8912832017-08-10 01:08:56 +02002165 if (intel_pstate_sample(cpu, time))
2166 intel_pstate_adjust_pstate(cpu);
Rafael J. Wysocki67dd9bf2017-03-28 00:17:10 +02002167}
Rafael J. Wysockieabd22c2017-03-28 00:15:37 +02002168
Rafael J. Wysocki2f49afc2017-03-28 00:19:03 +02002169static struct pstate_funcs core_funcs = {
2170 .get_max = core_get_max_pstate,
2171 .get_max_physical = core_get_max_pstate_physical,
2172 .get_min = core_get_min_pstate,
2173 .get_turbo = core_get_turbo_pstate,
2174 .get_scaling = core_get_scaling,
2175 .get_val = core_get_val,
Rafael J. Wysockide4a76c2017-03-28 00:18:02 +02002176};
2177
Rafael J. Wysocki2f49afc2017-03-28 00:19:03 +02002178static const struct pstate_funcs silvermont_funcs = {
2179 .get_max = atom_get_max_pstate,
2180 .get_max_physical = atom_get_max_pstate,
2181 .get_min = atom_get_min_pstate,
2182 .get_turbo = atom_get_turbo_pstate,
2183 .get_val = atom_get_val,
2184 .get_scaling = silvermont_get_scaling,
2185 .get_vid = atom_get_vid,
Rafael J. Wysockide4a76c2017-03-28 00:18:02 +02002186};
2187
Rafael J. Wysocki2f49afc2017-03-28 00:19:03 +02002188static const struct pstate_funcs airmont_funcs = {
2189 .get_max = atom_get_max_pstate,
2190 .get_max_physical = atom_get_max_pstate,
2191 .get_min = atom_get_min_pstate,
2192 .get_turbo = atom_get_turbo_pstate,
2193 .get_val = atom_get_val,
2194 .get_scaling = airmont_get_scaling,
2195 .get_vid = atom_get_vid,
Rafael J. Wysockide4a76c2017-03-28 00:18:02 +02002196};
2197
Rafael J. Wysocki2f49afc2017-03-28 00:19:03 +02002198static const struct pstate_funcs knl_funcs = {
2199 .get_max = core_get_max_pstate,
2200 .get_max_physical = core_get_max_pstate_physical,
2201 .get_min = core_get_min_pstate,
2202 .get_turbo = knl_get_turbo_pstate,
Srinivas Pandruvada6e34e1f2017-07-13 15:03:51 -07002203 .get_aperf_mperf_shift = knl_get_aperf_mperf_shift,
Rafael J. Wysocki2f49afc2017-03-28 00:19:03 +02002204 .get_scaling = core_get_scaling,
2205 .get_val = core_get_val,
Rafael J. Wysockide4a76c2017-03-28 00:18:02 +02002206};
2207
Thomas Gleixnerb11d77f2020-03-24 14:51:51 +01002208#define X86_MATCH(model, policy) \
2209 X86_MATCH_VENDOR_FAM_MODEL_FEATURE(INTEL, 6, INTEL_FAM6_##model, \
2210 X86_FEATURE_APERFMPERF, &policy)
Dirk Brandewie93f08222013-02-06 09:02:13 -08002211
2212static const struct x86_cpu_id intel_pstate_cpu_ids[] = {
Thomas Gleixnerb11d77f2020-03-24 14:51:51 +01002213 X86_MATCH(SANDYBRIDGE, core_funcs),
2214 X86_MATCH(SANDYBRIDGE_X, core_funcs),
2215 X86_MATCH(ATOM_SILVERMONT, silvermont_funcs),
2216 X86_MATCH(IVYBRIDGE, core_funcs),
2217 X86_MATCH(HASWELL, core_funcs),
2218 X86_MATCH(BROADWELL, core_funcs),
2219 X86_MATCH(IVYBRIDGE_X, core_funcs),
2220 X86_MATCH(HASWELL_X, core_funcs),
2221 X86_MATCH(HASWELL_L, core_funcs),
2222 X86_MATCH(HASWELL_G, core_funcs),
2223 X86_MATCH(BROADWELL_G, core_funcs),
2224 X86_MATCH(ATOM_AIRMONT, airmont_funcs),
2225 X86_MATCH(SKYLAKE_L, core_funcs),
2226 X86_MATCH(BROADWELL_X, core_funcs),
2227 X86_MATCH(SKYLAKE, core_funcs),
2228 X86_MATCH(BROADWELL_D, core_funcs),
2229 X86_MATCH(XEON_PHI_KNL, knl_funcs),
2230 X86_MATCH(XEON_PHI_KNM, knl_funcs),
2231 X86_MATCH(ATOM_GOLDMONT, core_funcs),
2232 X86_MATCH(ATOM_GOLDMONT_PLUS, core_funcs),
2233 X86_MATCH(SKYLAKE_X, core_funcs),
Giovanni Gherdovich706c5322021-05-18 14:34:13 +02002234 X86_MATCH(COMETLAKE, core_funcs),
Giovanni Gherdovichfbdc21e2021-05-18 14:34:12 +02002235 X86_MATCH(ICELAKE_X, core_funcs),
Dirk Brandewie93f08222013-02-06 09:02:13 -08002236 {}
2237};
2238MODULE_DEVICE_TABLE(x86cpu, intel_pstate_cpu_ids);
2239
Jisheng Zhang29327c82016-06-27 18:07:17 +08002240static const struct x86_cpu_id intel_pstate_cpu_oob_ids[] __initconst = {
Thomas Gleixnerb11d77f2020-03-24 14:51:51 +01002241 X86_MATCH(BROADWELL_D, core_funcs),
2242 X86_MATCH(BROADWELL_X, core_funcs),
2243 X86_MATCH(SKYLAKE_X, core_funcs),
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08002244 {}
2245};
2246
Srinivas Pandruvada6e978b22017-02-03 14:18:39 -08002247static const struct x86_cpu_id intel_pstate_cpu_ee_disable_ids[] = {
Thomas Gleixnerb11d77f2020-03-24 14:51:51 +01002248 X86_MATCH(KABYLAKE, core_funcs),
Srinivas Pandruvada6e978b22017-02-03 14:18:39 -08002249 {}
2250};
2251
Srinivas Pandruvada41ab43c2018-06-05 14:42:42 -07002252static const struct x86_cpu_id intel_pstate_hwp_boost_ids[] = {
Thomas Gleixnerb11d77f2020-03-24 14:51:51 +01002253 X86_MATCH(SKYLAKE_X, core_funcs),
2254 X86_MATCH(SKYLAKE, core_funcs),
Srinivas Pandruvada41ab43c2018-06-05 14:42:42 -07002255 {}
2256};
2257
Dirk Brandewie93f08222013-02-06 09:02:13 -08002258static int intel_pstate_init_cpu(unsigned int cpunum)
2259{
Dirk Brandewie93f08222013-02-06 09:02:13 -08002260 struct cpudata *cpu;
2261
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07002262 cpu = all_cpu_data[cpunum];
2263
2264 if (!cpu) {
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01002265 cpu = kzalloc(sizeof(*cpu), GFP_KERNEL);
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07002266 if (!cpu)
2267 return -ENOMEM;
2268
2269 all_cpu_data[cpunum] = cpu;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07002270
Rafael J. Wysocki55671ea2020-09-01 18:33:41 +02002271 cpu->cpu = cpunum;
2272
Srinivas Pandruvada984edbd2016-12-06 13:32:16 -08002273 cpu->epp_default = -EINVAL;
Rafael J. Wysocki55671ea2020-09-01 18:33:41 +02002274
2275 if (hwp_active) {
2276 const struct x86_cpu_id *id;
2277
2278 intel_pstate_hwp_enable(cpu);
2279
2280 id = x86_match_cpu(intel_pstate_hwp_boost_ids);
2281 if (id && intel_pstate_acpi_pm_profile_server())
2282 hwp_boost = true;
2283 }
2284 } else if (hwp_active) {
2285 /*
2286 * Re-enable HWP in case this happens after a resume from ACPI
2287 * S3 if the CPU was offline during the whole system/resume
2288 * cycle.
2289 */
2290 intel_pstate_hwp_reenable(cpu);
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07002291 }
Dirk Brandewie93f08222013-02-06 09:02:13 -08002292
Rafael J. Wysocki55671ea2020-09-01 18:33:41 +02002293 cpu->epp_powersave = -EINVAL;
2294 cpu->epp_policy = 0;
Kristen Carlson Accardiba88d432015-07-14 09:46:23 -07002295
Vincent Minet179e8472014-07-05 01:51:33 +02002296 intel_pstate_get_cpu_pstates(cpu);
Dirk Brandewie016c8152013-10-21 09:20:34 -07002297
Joe Perches4836df12016-04-05 13:28:23 -07002298 pr_debug("controlling: cpu %d\n", cpunum);
Dirk Brandewie93f08222013-02-06 09:02:13 -08002299
2300 return 0;
2301}
2302
Rafael J. Wysockifebce402016-04-02 01:06:21 +02002303static void intel_pstate_set_update_util_hook(unsigned int cpu_num)
Rafael J. Wysockibb6ab522016-03-31 17:42:15 +02002304{
Rafael J. Wysockifebce402016-04-02 01:06:21 +02002305 struct cpudata *cpu = all_cpu_data[cpu_num];
2306
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -07002307 if (hwp_active && !hwp_boost)
Len Brown62611cb2017-06-23 22:11:53 -07002308 return;
2309
Rafael J. Wysocki5ab666e2016-06-27 23:47:15 +02002310 if (cpu->update_util_set)
2311 return;
2312
Rafael J. Wysockifebce402016-04-02 01:06:21 +02002313 /* Prevent intel_pstate_update_util() from using stale data. */
2314 cpu->sample.time = 0;
Rafael J. Wysocki67dd9bf2017-03-28 00:17:10 +02002315 cpufreq_add_update_util_hook(cpu_num, &cpu->update_util,
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -07002316 (hwp_active ?
2317 intel_pstate_update_util_hwp :
2318 intel_pstate_update_util));
Chen Yu4578ee7e2016-05-11 14:33:08 +08002319 cpu->update_util_set = true;
Rafael J. Wysockibb6ab522016-03-31 17:42:15 +02002320}
2321
2322static void intel_pstate_clear_update_util_hook(unsigned int cpu)
2323{
Chen Yu4578ee7e2016-05-11 14:33:08 +08002324 struct cpudata *cpu_data = all_cpu_data[cpu];
2325
2326 if (!cpu_data->update_util_set)
2327 return;
2328
Rafael J. Wysocki0bed6122016-04-02 01:08:43 +02002329 cpufreq_remove_update_util_hook(cpu);
Chen Yu4578ee7e2016-05-11 14:33:08 +08002330 cpu_data->update_util_set = false;
Paul E. McKenney09659af2018-11-05 17:17:47 -08002331 synchronize_rcu();
Rafael J. Wysockibb6ab522016-03-31 17:42:15 +02002332}
2333
Rafael J. Wysocki80b120c2017-03-23 00:00:47 +01002334static int intel_pstate_get_max_freq(struct cpudata *cpu)
2335{
2336 return global.turbo_disabled || global.no_turbo ?
2337 cpu->pstate.max_freq : cpu->pstate.turbo_freq;
2338}
2339
Rafael J. Wysocki1e4f63a2020-01-26 23:40:11 +01002340static void intel_pstate_update_perf_limits(struct cpudata *cpu,
2341 unsigned int policy_min,
2342 unsigned int policy_max)
Dirk Brandewie93f08222013-02-06 09:02:13 -08002343{
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +02002344 int perf_ctl_scaling = cpu->pstate.perf_ctl_scaling;
Rafael J. Wysockie4c204c2017-03-14 16:18:34 +01002345 int32_t max_policy_perf, min_policy_perf;
Srinivas Pandruvadaa410c03d2016-10-28 10:44:52 -07002346
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +02002347 max_policy_perf = policy_max / perf_ctl_scaling;
2348 if (policy_max == policy_min) {
2349 min_policy_perf = max_policy_perf;
2350 } else {
2351 min_policy_perf = policy_min / perf_ctl_scaling;
2352 min_policy_perf = clamp_t(int32_t, min_policy_perf,
2353 0, max_policy_perf);
2354 }
2355
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -07002356 /*
Rafael J. Wysockide5bcf42021-03-16 16:52:43 +01002357 * HWP needs some special consideration, because HWP_REQUEST uses
2358 * abstract values to represent performance rather than pure ratios.
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -07002359 */
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +02002360 if (hwp_active) {
Rafael J. Wysockide5bcf42021-03-16 16:52:43 +01002361 intel_pstate_get_hwp_cap(cpu);
2362
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +02002363 if (cpu->pstate.scaling != perf_ctl_scaling) {
2364 int scaling = cpu->pstate.scaling;
2365 int freq;
2366
2367 freq = max_policy_perf * perf_ctl_scaling;
2368 max_policy_perf = DIV_ROUND_UP(freq, scaling);
2369 freq = min_policy_perf * perf_ctl_scaling;
2370 min_policy_perf = DIV_ROUND_UP(freq, scaling);
2371 }
Srinivas Pandruvada5879f872016-10-25 13:20:41 -07002372 }
Chen Yu43717aa2015-09-09 18:27:31 +08002373
Rafael J. Wysockib989bc02021-04-07 16:21:55 +02002374 pr_debug("cpu:%d min_policy_perf:%d max_policy_perf:%d\n",
2375 cpu->cpu, min_policy_perf, max_policy_perf);
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -07002376
Rafael J. Wysockie4c204c2017-03-14 16:18:34 +01002377 /* Normalize user input to [min_perf, max_perf] */
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01002378 if (per_cpu_limits) {
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -07002379 cpu->min_perf_ratio = min_policy_perf;
2380 cpu->max_perf_ratio = max_policy_perf;
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01002381 } else {
Rafael J. Wysockib989bc02021-04-07 16:21:55 +02002382 int turbo_max = cpu->pstate.turbo_pstate;
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01002383 int32_t global_min, global_max;
Chen Yu43717aa2015-09-09 18:27:31 +08002384
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01002385 /* Global limits are in percent of the maximum turbo P-state. */
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -07002386 global_max = DIV_ROUND_UP(turbo_max * global.max_perf_pct, 100);
2387 global_min = DIV_ROUND_UP(turbo_max * global.min_perf_pct, 100);
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01002388 global_min = clamp_t(int32_t, global_min, 0, global_max);
2389
Rafael J. Wysocki1e4f63a2020-01-26 23:40:11 +01002390 pr_debug("cpu:%d global_min:%d global_max:%d\n", cpu->cpu,
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -07002391 global_min, global_max);
2392
2393 cpu->min_perf_ratio = max(min_policy_perf, global_min);
2394 cpu->min_perf_ratio = min(cpu->min_perf_ratio, max_policy_perf);
2395 cpu->max_perf_ratio = min(max_policy_perf, global_max);
2396 cpu->max_perf_ratio = max(min_policy_perf, cpu->max_perf_ratio);
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01002397
2398 /* Make sure min_perf <= max_perf */
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -07002399 cpu->min_perf_ratio = min(cpu->min_perf_ratio,
2400 cpu->max_perf_ratio);
2401
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01002402 }
Rafael J. Wysocki1e4f63a2020-01-26 23:40:11 +01002403 pr_debug("cpu:%d max_perf_ratio:%d min_perf_ratio:%d\n", cpu->cpu,
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -07002404 cpu->max_perf_ratio,
2405 cpu->min_perf_ratio);
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07002406}
2407
Dirk Brandewie93f08222013-02-06 09:02:13 -08002408static int intel_pstate_set_policy(struct cpufreq_policy *policy)
Pali Rohár36b4bed2014-10-16 01:16:51 +02002409{
Dirk Brandewie93f08222013-02-06 09:02:13 -08002410 struct cpudata *cpu;
2411
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -07002412 if (!policy->cpuinfo.max_freq)
Srinivas Pandruvadad1b68482013-04-09 22:38:18 +00002413 return -ENODEV;
Dirk Brandewie93f08222013-02-06 09:02:13 -08002414
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08002415 pr_debug("set_policy cpuinfo.max %u policy->max %u\n",
Kristen Carlson Accardia0475992015-01-29 13:03:52 -08002416 policy->cpuinfo.max_freq, policy->max);
2417
2418 cpu = all_cpu_data[policy->cpu];
Srinivas Pandruvadad1b68482013-04-09 22:38:18 +00002419 cpu->policy = policy->policy;
2420
Srinivas Pandruvadab59fe542016-12-06 13:32:15 -08002421 mutex_lock(&intel_pstate_limits_lock);
2422
Rafael J. Wysocki1e4f63a2020-01-26 23:40:11 +01002423 intel_pstate_update_perf_limits(cpu, policy->min, policy->max);
Rafael J. Wysockia240c4a2017-03-02 23:29:12 +01002424
Rafael J. Wysocki2f1d4072016-10-24 23:20:25 +02002425 if (cpu->policy == CPUFREQ_POLICY_PERFORMANCE) {
Rafael J. Wysockia6c6ead2016-10-19 02:57:22 +02002426 /*
2427 * NOHZ_FULL CPUs need this as the governor callback may not
2428 * be invoked on them.
2429 */
2430 intel_pstate_clear_update_util_hook(policy->cpu);
2431 intel_pstate_max_within_limits(cpu);
Len Brown82b4e032017-06-23 22:11:54 -07002432 } else {
2433 intel_pstate_set_update_util_hook(policy->cpu);
Rafael J. Wysockia6c6ead2016-10-19 02:57:22 +02002434 }
2435
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -07002436 if (hwp_active) {
2437 /*
2438 * When hwp_boost was active before and dynamically it
2439 * was turned off, in that case we need to clear the
2440 * update util hook.
2441 */
2442 if (!hwp_boost)
2443 intel_pstate_clear_update_util_hook(policy->cpu);
Rafael J. Wysocki2bfc4cb2017-03-28 00:22:16 +02002444 intel_pstate_hwp_set(policy->cpu);
Srinivas Pandruvadae0efd5b2018-06-05 14:42:39 -07002445 }
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08002446
Srinivas Pandruvadab59fe542016-12-06 13:32:15 -08002447 mutex_unlock(&intel_pstate_limits_lock);
2448
Dirk Brandewie93f08222013-02-06 09:02:13 -08002449 return 0;
2450}
2451
Rafael J. Wysocki1e4f63a2020-01-26 23:40:11 +01002452static void intel_pstate_adjust_policy_max(struct cpudata *cpu,
2453 struct cpufreq_policy_data *policy)
Rafael J. Wysocki80b120c2017-03-23 00:00:47 +01002454{
Srinivas Pandruvadad3264f72018-08-01 17:26:06 -07002455 if (!hwp_active &&
2456 cpu->pstate.max_pstate_physical > cpu->pstate.max_pstate &&
Rafael J. Wysocki80b120c2017-03-23 00:00:47 +01002457 policy->max < policy->cpuinfo.max_freq &&
2458 policy->max > cpu->pstate.max_freq) {
2459 pr_debug("policy->max > max non turbo frequency\n");
2460 policy->max = policy->cpuinfo.max_freq;
2461 }
2462}
2463
Rafael J. Wysockid5a2a6b2020-03-06 00:05:34 +01002464static void intel_pstate_verify_cpu_policy(struct cpudata *cpu,
2465 struct cpufreq_policy_data *policy)
Dirk Brandewie93f08222013-02-06 09:02:13 -08002466{
Rafael J. Wysockie40ad842020-12-17 20:17:49 +01002467 int max_freq;
2468
Srinivas Pandruvada7d9a8a92017-01-18 10:48:23 -08002469 update_turbo_state();
Rafael J. Wysockie40ad842020-12-17 20:17:49 +01002470 if (hwp_active) {
Rafael J. Wysockide5bcf42021-03-16 16:52:43 +01002471 intel_pstate_get_hwp_cap(cpu);
2472 max_freq = global.no_turbo || global.turbo_disabled ?
2473 cpu->pstate.max_freq : cpu->pstate.turbo_freq;
Rafael J. Wysockie40ad842020-12-17 20:17:49 +01002474 } else {
2475 max_freq = intel_pstate_get_max_freq(cpu);
2476 }
2477 cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq, max_freq);
Dirk Brandewie93f08222013-02-06 09:02:13 -08002478
Rafael J. Wysocki1e4f63a2020-01-26 23:40:11 +01002479 intel_pstate_adjust_policy_max(cpu, policy);
Rafael J. Wysockid5a2a6b2020-03-06 00:05:34 +01002480}
2481
2482static int intel_pstate_verify_policy(struct cpufreq_policy_data *policy)
2483{
2484 intel_pstate_verify_cpu_policy(all_cpu_data[policy->cpu], policy);
Rafael J. Wysocki80b120c2017-03-23 00:00:47 +01002485
Dirk Brandewie93f08222013-02-06 09:02:13 -08002486 return 0;
2487}
2488
Rafael J. Wysocki49d6fee2021-06-30 18:44:46 +02002489static int intel_cpufreq_cpu_offline(struct cpufreq_policy *policy)
Dirk Brandewie93f08222013-02-06 09:02:13 -08002490{
Rafael J. Wysocki4adcf2e2020-09-01 18:33:21 +02002491 struct cpudata *cpu = all_cpu_data[policy->cpu];
2492
2493 pr_debug("CPU %d going offline\n", cpu->cpu);
2494
2495 if (cpu->suspended)
2496 return 0;
2497
2498 /*
2499 * If the CPU is an SMT thread and it goes offline with the performance
2500 * settings different from the minimum, it will prevent its sibling
2501 * from getting to lower performance levels, so force the minimum
2502 * performance on CPU offline to prevent that from happening.
2503 */
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02002504 if (hwp_active)
Rafael J. Wysocki4adcf2e2020-09-01 18:33:21 +02002505 intel_pstate_hwp_offline(cpu);
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02002506 else
Rafael J. Wysocki4adcf2e2020-09-01 18:33:21 +02002507 intel_pstate_set_min_pstate(cpu);
2508
2509 intel_pstate_exit_perf_limits(policy);
2510
2511 return 0;
2512}
2513
2514static int intel_pstate_cpu_online(struct cpufreq_policy *policy)
2515{
2516 struct cpudata *cpu = all_cpu_data[policy->cpu];
2517
2518 pr_debug("CPU %d going online\n", cpu->cpu);
2519
2520 intel_pstate_init_acpi_perf_limits(policy);
2521
2522 if (hwp_active) {
2523 /*
2524 * Re-enable HWP and clear the "suspended" flag to let "resume"
2525 * know that it need not do that.
2526 */
2527 intel_pstate_hwp_reenable(cpu);
2528 cpu->suspended = false;
2529 }
2530
2531 return 0;
Dirk Brandewie93f08222013-02-06 09:02:13 -08002532}
2533
Rafael J. Wysocki49d6fee2021-06-30 18:44:46 +02002534static int intel_pstate_cpu_offline(struct cpufreq_policy *policy)
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002535{
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002536 intel_pstate_clear_update_util_hook(policy->cpu);
Rafael J. Wysocki49d6fee2021-06-30 18:44:46 +02002537
2538 return intel_cpufreq_cpu_offline(policy);
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002539}
2540
2541static int intel_pstate_cpu_exit(struct cpufreq_policy *policy)
2542{
Rafael J. Wysocki4adcf2e2020-09-01 18:33:21 +02002543 pr_debug("CPU %d exiting\n", policy->cpu);
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002544
2545 policy->fast_switch_possible = false;
2546
2547 return 0;
2548}
2549
2550static int __intel_pstate_cpu_init(struct cpufreq_policy *policy)
Dirk Brandewie93f08222013-02-06 09:02:13 -08002551{
Dirk Brandewie93f08222013-02-06 09:02:13 -08002552 struct cpudata *cpu;
Dirk Brandewie52e0a502013-10-15 11:06:14 -07002553 int rc;
Dirk Brandewie93f08222013-02-06 09:02:13 -08002554
2555 rc = intel_pstate_init_cpu(policy->cpu);
2556 if (rc)
2557 return rc;
2558
2559 cpu = all_cpu_data[policy->cpu];
2560
Srinivas Pandruvada1a4fe382017-06-12 16:30:27 -07002561 cpu->max_perf_ratio = 0xFF;
2562 cpu->min_perf_ratio = 0;
Dirk Brandewie93f08222013-02-06 09:02:13 -08002563
Dirk Brandewie93f08222013-02-06 09:02:13 -08002564 /* cpuinfo and default policy values */
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +02002565 policy->cpuinfo.min_freq = cpu->pstate.min_freq;
Srinivas Pandruvada983e6002016-06-07 17:38:53 -07002566 update_turbo_state();
Rafael J. Wysocki9083e492019-03-26 12:19:52 +01002567 global.turbo_disabled_mf = global.turbo_disabled;
Rafael J. Wysocki7de32552017-03-18 00:57:39 +01002568 policy->cpuinfo.max_freq = global.turbo_disabled ?
Srinivas Pandruvadaeea033d2018-07-18 14:51:59 -07002569 cpu->pstate.max_freq : cpu->pstate.turbo_freq;
Rafael J. Wysockide5bcf42021-03-16 16:52:43 +01002570
2571 policy->min = policy->cpuinfo.min_freq;
2572 policy->max = policy->cpuinfo.max_freq;
Srinivas Pandruvadaeea033d2018-07-18 14:51:59 -07002573
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07002574 intel_pstate_init_acpi_perf_limits(policy);
Dirk Brandewie93f08222013-02-06 09:02:13 -08002575
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002576 policy->fast_switch_possible = true;
2577
Dirk Brandewie93f08222013-02-06 09:02:13 -08002578 return 0;
2579}
2580
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002581static int intel_pstate_cpu_init(struct cpufreq_policy *policy)
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07002582{
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002583 int ret = __intel_pstate_cpu_init(policy);
2584
2585 if (ret)
2586 return ret;
2587
Rafael J. Wysocki5ac54112020-03-25 16:18:09 +01002588 /*
2589 * Set the policy to powersave to provide a valid fallback value in case
2590 * the default cpufreq governor is neither powersave nor performance.
2591 */
2592 policy->policy = CPUFREQ_POLICY_POWERSAVE;
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07002593
Rafael J. Wysockic27a0cc2020-08-27 14:32:00 +02002594 if (hwp_active) {
2595 struct cpudata *cpu = all_cpu_data[policy->cpu];
2596
2597 cpu->epp_cached = intel_pstate_get_epp(cpu, 0);
2598 }
2599
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07002600 return 0;
2601}
2602
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002603static struct cpufreq_driver intel_pstate = {
Dirk Brandewie93f08222013-02-06 09:02:13 -08002604 .flags = CPUFREQ_CONST_LOOPS,
2605 .verify = intel_pstate_verify_policy,
2606 .setpolicy = intel_pstate_set_policy,
Rafael J. Wysocki4adcf2e2020-09-01 18:33:21 +02002607 .suspend = intel_pstate_suspend,
Srinivas Pandruvada84428852016-11-24 16:07:10 -08002608 .resume = intel_pstate_resume,
Dirk Brandewie93f08222013-02-06 09:02:13 -08002609 .init = intel_pstate_cpu_init,
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07002610 .exit = intel_pstate_cpu_exit,
Rafael J. Wysocki4adcf2e2020-09-01 18:33:21 +02002611 .offline = intel_pstate_cpu_offline,
2612 .online = intel_pstate_cpu_online,
Rafael J. Wysocki5a25e3f2019-03-26 12:15:13 +01002613 .update_limits = intel_pstate_update_limits,
Dirk Brandewie93f08222013-02-06 09:02:13 -08002614 .name = "intel_pstate",
Dirk Brandewie93f08222013-02-06 09:02:13 -08002615};
2616
Rafael J. Wysocki1e4f63a2020-01-26 23:40:11 +01002617static int intel_cpufreq_verify_policy(struct cpufreq_policy_data *policy)
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002618{
2619 struct cpudata *cpu = all_cpu_data[policy->cpu];
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002620
Rafael J. Wysockid5a2a6b2020-03-06 00:05:34 +01002621 intel_pstate_verify_cpu_policy(cpu, policy);
Rafael J. Wysocki1e4f63a2020-01-26 23:40:11 +01002622 intel_pstate_update_perf_limits(cpu, policy->min, policy->max);
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01002623
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002624 return 0;
2625}
2626
Doug Smythies50e9ffa2018-05-14 08:35:49 -07002627/* Use of trace in passive mode:
2628 *
2629 * In passive mode the trace core_busy field (also known as the
2630 * performance field, and lablelled as such on the graphs; also known as
2631 * core_avg_perf) is not needed and so is re-assigned to indicate if the
2632 * driver call was via the normal or fast switch path. Various graphs
2633 * output from the intel_pstate_tracer.py utility that include core_busy
2634 * (or performance or core_avg_perf) have a fixed y-axis from 0 to 100%,
Nigel Christian75a8d872021-01-16 19:47:05 -05002635 * so we use 10 to indicate the normal path through the driver, and
Doug Smythies50e9ffa2018-05-14 08:35:49 -07002636 * 90 to indicate the fast switch path through the driver.
2637 * The scaled_busy field is not used, and is set to 0.
2638 */
2639
2640#define INTEL_PSTATE_TRACE_TARGET 10
2641#define INTEL_PSTATE_TRACE_FAST_SWITCH 90
2642
2643static void intel_cpufreq_trace(struct cpudata *cpu, unsigned int trace_type, int old_pstate)
2644{
2645 struct sample *sample;
2646
2647 if (!trace_pstate_sample_enabled())
2648 return;
2649
2650 if (!intel_pstate_sample(cpu, ktime_get()))
2651 return;
2652
2653 sample = &cpu->sample;
2654 trace_pstate_sample(trace_type,
2655 0,
2656 old_pstate,
2657 cpu->pstate.current_pstate,
2658 sample->mperf,
2659 sample->aperf,
2660 sample->tsc,
2661 get_avg_frequency(cpu),
2662 fp_toint(cpu->iowait_boost * 100));
2663}
2664
Rafael J. Wysocki597ffbc2021-01-07 19:44:18 +01002665static void intel_cpufreq_hwp_update(struct cpudata *cpu, u32 min, u32 max,
Rafael J. Wysockia365ab6b2020-12-14 21:09:26 +01002666 u32 desired, bool fast_switch)
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02002667{
2668 u64 prev = READ_ONCE(cpu->hwp_req_cached), value = prev;
2669
2670 value &= ~HWP_MIN_PERF(~0L);
Rafael J. Wysockia365ab6b2020-12-14 21:09:26 +01002671 value |= HWP_MIN_PERF(min);
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02002672
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02002673 value &= ~HWP_MAX_PERF(~0L);
Rafael J. Wysockia365ab6b2020-12-14 21:09:26 +01002674 value |= HWP_MAX_PERF(max);
2675
2676 value &= ~HWP_DESIRED_PERF(~0L);
2677 value |= HWP_DESIRED_PERF(desired);
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02002678
2679 if (value == prev)
2680 return;
2681
2682 WRITE_ONCE(cpu->hwp_req_cached, value);
2683 if (fast_switch)
2684 wrmsrl(MSR_HWP_REQUEST, value);
2685 else
2686 wrmsrl_on_cpu(cpu->cpu, MSR_HWP_REQUEST, value);
2687}
2688
Rafael J. Wysocki597ffbc2021-01-07 19:44:18 +01002689static void intel_cpufreq_perf_ctl_update(struct cpudata *cpu,
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02002690 u32 target_pstate, bool fast_switch)
2691{
2692 if (fast_switch)
2693 wrmsrl(MSR_IA32_PERF_CTL,
2694 pstate_funcs.get_val(cpu, target_pstate));
2695 else
2696 wrmsrl_on_cpu(cpu->cpu, MSR_IA32_PERF_CTL,
2697 pstate_funcs.get_val(cpu, target_pstate));
2698}
2699
Rafael J. Wysockifcb3a1a2020-11-10 18:27:40 +01002700static int intel_cpufreq_update_pstate(struct cpufreq_policy *policy,
2701 int target_pstate, bool fast_switch)
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02002702{
Rafael J. Wysockifcb3a1a2020-11-10 18:27:40 +01002703 struct cpudata *cpu = all_cpu_data[policy->cpu];
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02002704 int old_pstate = cpu->pstate.current_pstate;
2705
2706 target_pstate = intel_pstate_prepare_request(cpu, target_pstate);
Rafael J. Wysockia365ab6b2020-12-14 21:09:26 +01002707 if (hwp_active) {
2708 int max_pstate = policy->strict_target ?
2709 target_pstate : cpu->max_perf_ratio;
2710
Rafael J. Wysocki597ffbc2021-01-07 19:44:18 +01002711 intel_cpufreq_hwp_update(cpu, target_pstate, max_pstate, 0,
Rafael J. Wysockia365ab6b2020-12-14 21:09:26 +01002712 fast_switch);
2713 } else if (target_pstate != old_pstate) {
Rafael J. Wysocki597ffbc2021-01-07 19:44:18 +01002714 intel_cpufreq_perf_ctl_update(cpu, target_pstate, fast_switch);
Rafael J. Wysockia365ab6b2020-12-14 21:09:26 +01002715 }
Rafael J. Wysocki2554c322020-11-12 20:25:15 +01002716
2717 cpu->pstate.current_pstate = target_pstate;
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02002718
2719 intel_cpufreq_trace(cpu, fast_switch ? INTEL_PSTATE_TRACE_FAST_SWITCH :
2720 INTEL_PSTATE_TRACE_TARGET, old_pstate);
2721
2722 return target_pstate;
2723}
2724
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002725static int intel_cpufreq_target(struct cpufreq_policy *policy,
2726 unsigned int target_freq,
2727 unsigned int relation)
2728{
2729 struct cpudata *cpu = all_cpu_data[policy->cpu];
2730 struct cpufreq_freqs freqs;
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02002731 int target_pstate;
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002732
Rafael J. Wysocki64897b22017-03-21 22:19:07 +01002733 update_turbo_state();
2734
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002735 freqs.old = policy->cur;
Rafael J. Wysocki64897b22017-03-21 22:19:07 +01002736 freqs.new = target_freq;
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002737
2738 cpufreq_freq_transition_begin(policy, &freqs);
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02002739
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002740 switch (relation) {
2741 case CPUFREQ_RELATION_L:
2742 target_pstate = DIV_ROUND_UP(freqs.new, cpu->pstate.scaling);
2743 break;
2744 case CPUFREQ_RELATION_H:
2745 target_pstate = freqs.new / cpu->pstate.scaling;
2746 break;
2747 default:
2748 target_pstate = DIV_ROUND_CLOSEST(freqs.new, cpu->pstate.scaling);
2749 break;
2750 }
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02002751
Rafael J. Wysockifcb3a1a2020-11-10 18:27:40 +01002752 target_pstate = intel_cpufreq_update_pstate(policy, target_pstate, false);
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02002753
Rafael J. Wysocki64078292017-03-03 23:51:31 +01002754 freqs.new = target_pstate * cpu->pstate.scaling;
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02002755
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002756 cpufreq_freq_transition_end(policy, &freqs, false);
2757
2758 return 0;
2759}
2760
2761static unsigned int intel_cpufreq_fast_switch(struct cpufreq_policy *policy,
2762 unsigned int target_freq)
2763{
2764 struct cpudata *cpu = all_cpu_data[policy->cpu];
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02002765 int target_pstate;
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002766
Rafael J. Wysocki64897b22017-03-21 22:19:07 +01002767 update_turbo_state();
2768
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002769 target_pstate = DIV_ROUND_UP(target_freq, cpu->pstate.scaling);
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02002770
Rafael J. Wysockifcb3a1a2020-11-10 18:27:40 +01002771 target_pstate = intel_cpufreq_update_pstate(policy, target_pstate, true);
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02002772
Rafael J. Wysocki64078292017-03-03 23:51:31 +01002773 return target_pstate * cpu->pstate.scaling;
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002774}
2775
Rafael J. Wysockia365ab6b2020-12-14 21:09:26 +01002776static void intel_cpufreq_adjust_perf(unsigned int cpunum,
2777 unsigned long min_perf,
2778 unsigned long target_perf,
2779 unsigned long capacity)
2780{
2781 struct cpudata *cpu = all_cpu_data[cpunum];
Rafael J. Wysocki17ffd352021-01-05 19:20:29 +01002782 u64 hwp_cap = READ_ONCE(cpu->hwp_cap_cached);
Rafael J. Wysockia365ab6b2020-12-14 21:09:26 +01002783 int old_pstate = cpu->pstate.current_pstate;
2784 int cap_pstate, min_pstate, max_pstate, target_pstate;
2785
2786 update_turbo_state();
Rafael J. Wysocki17ffd352021-01-05 19:20:29 +01002787 cap_pstate = global.turbo_disabled ? HWP_GUARANTEED_PERF(hwp_cap) :
2788 HWP_HIGHEST_PERF(hwp_cap);
Rafael J. Wysockia365ab6b2020-12-14 21:09:26 +01002789
2790 /* Optimization: Avoid unnecessary divisions. */
2791
2792 target_pstate = cap_pstate;
2793 if (target_perf < capacity)
2794 target_pstate = DIV_ROUND_UP(cap_pstate * target_perf, capacity);
2795
2796 min_pstate = cap_pstate;
2797 if (min_perf < capacity)
2798 min_pstate = DIV_ROUND_UP(cap_pstate * min_perf, capacity);
2799
2800 if (min_pstate < cpu->pstate.min_pstate)
2801 min_pstate = cpu->pstate.min_pstate;
2802
2803 if (min_pstate < cpu->min_perf_ratio)
2804 min_pstate = cpu->min_perf_ratio;
2805
2806 max_pstate = min(cap_pstate, cpu->max_perf_ratio);
2807 if (max_pstate < min_pstate)
2808 max_pstate = min_pstate;
2809
2810 target_pstate = clamp_t(int, target_pstate, min_pstate, max_pstate);
2811
Rafael J. Wysocki597ffbc2021-01-07 19:44:18 +01002812 intel_cpufreq_hwp_update(cpu, min_pstate, max_pstate, target_pstate, true);
Rafael J. Wysockia365ab6b2020-12-14 21:09:26 +01002813
2814 cpu->pstate.current_pstate = target_pstate;
2815 intel_cpufreq_trace(cpu, INTEL_PSTATE_TRACE_FAST_SWITCH, old_pstate);
2816}
2817
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002818static int intel_cpufreq_cpu_init(struct cpufreq_policy *policy)
2819{
Rafael J. Wysocki3000ce32019-10-16 12:47:06 +02002820 struct freq_qos_request *req;
Viresh Kumarda5c5042019-08-09 07:52:49 +05302821 struct cpudata *cpu;
2822 struct device *dev;
Rafael J. Wysockide5bcf42021-03-16 16:52:43 +01002823 int ret, freq;
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002824
Viresh Kumarda5c5042019-08-09 07:52:49 +05302825 dev = get_cpu_device(policy->cpu);
2826 if (!dev)
2827 return -ENODEV;
2828
2829 ret = __intel_pstate_cpu_init(policy);
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002830 if (ret)
2831 return ret;
2832
2833 policy->cpuinfo.transition_latency = INTEL_CPUFREQ_TRANSITION_LATENCY;
2834 /* This reflects the intel_pstate_get_cpu_pstates() setting. */
2835 policy->cur = policy->cpuinfo.min_freq;
2836
Viresh Kumarda5c5042019-08-09 07:52:49 +05302837 req = kcalloc(2, sizeof(*req), GFP_KERNEL);
2838 if (!req) {
2839 ret = -ENOMEM;
2840 goto pstate_exit;
2841 }
2842
2843 cpu = all_cpu_data[policy->cpu];
2844
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02002845 if (hwp_active) {
2846 u64 value;
2847
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02002848 policy->transition_delay_us = INTEL_CPUFREQ_TRANSITION_DELAY_HWP;
Rafael J. Wysockide5bcf42021-03-16 16:52:43 +01002849
2850 intel_pstate_get_hwp_cap(cpu);
2851
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02002852 rdmsrl_on_cpu(cpu->cpu, MSR_HWP_REQUEST, &value);
2853 WRITE_ONCE(cpu->hwp_req_cached, value);
Rafael J. Wysockide5bcf42021-03-16 16:52:43 +01002854
Rafael J. Wysockic27a0cc2020-08-27 14:32:00 +02002855 cpu->epp_cached = intel_pstate_get_epp(cpu, value);
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02002856 } else {
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02002857 policy->transition_delay_us = INTEL_CPUFREQ_TRANSITION_DELAY;
2858 }
Viresh Kumarda5c5042019-08-09 07:52:49 +05302859
Rafael J. Wysockide5bcf42021-03-16 16:52:43 +01002860 freq = DIV_ROUND_UP(cpu->pstate.turbo_freq * global.min_perf_pct, 100);
Viresh Kumarda5c5042019-08-09 07:52:49 +05302861
Rafael J. Wysocki3000ce32019-10-16 12:47:06 +02002862 ret = freq_qos_add_request(&policy->constraints, req, FREQ_QOS_MIN,
Rafael J. Wysockide5bcf42021-03-16 16:52:43 +01002863 freq);
Viresh Kumarda5c5042019-08-09 07:52:49 +05302864 if (ret < 0) {
2865 dev_err(dev, "Failed to add min-freq constraint (%d)\n", ret);
2866 goto free_req;
2867 }
2868
Rafael J. Wysockide5bcf42021-03-16 16:52:43 +01002869 freq = DIV_ROUND_UP(cpu->pstate.turbo_freq * global.max_perf_pct, 100);
2870
Rafael J. Wysocki3000ce32019-10-16 12:47:06 +02002871 ret = freq_qos_add_request(&policy->constraints, req + 1, FREQ_QOS_MAX,
Rafael J. Wysockide5bcf42021-03-16 16:52:43 +01002872 freq);
Viresh Kumarda5c5042019-08-09 07:52:49 +05302873 if (ret < 0) {
2874 dev_err(dev, "Failed to add max-freq constraint (%d)\n", ret);
2875 goto remove_min_req;
2876 }
2877
2878 policy->driver_data = req;
2879
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002880 return 0;
Viresh Kumarda5c5042019-08-09 07:52:49 +05302881
2882remove_min_req:
Rafael J. Wysocki3000ce32019-10-16 12:47:06 +02002883 freq_qos_remove_request(req);
Viresh Kumarda5c5042019-08-09 07:52:49 +05302884free_req:
2885 kfree(req);
2886pstate_exit:
2887 intel_pstate_exit_perf_limits(policy);
2888
2889 return ret;
2890}
2891
2892static int intel_cpufreq_cpu_exit(struct cpufreq_policy *policy)
2893{
Rafael J. Wysocki3000ce32019-10-16 12:47:06 +02002894 struct freq_qos_request *req;
Viresh Kumarda5c5042019-08-09 07:52:49 +05302895
2896 req = policy->driver_data;
2897
Rafael J. Wysocki3000ce32019-10-16 12:47:06 +02002898 freq_qos_remove_request(req + 1);
2899 freq_qos_remove_request(req);
Viresh Kumarda5c5042019-08-09 07:52:49 +05302900 kfree(req);
2901
2902 return intel_pstate_cpu_exit(policy);
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002903}
2904
2905static struct cpufreq_driver intel_cpufreq = {
2906 .flags = CPUFREQ_CONST_LOOPS,
2907 .verify = intel_cpufreq_verify_policy,
2908 .target = intel_cpufreq_target,
2909 .fast_switch = intel_cpufreq_fast_switch,
2910 .init = intel_cpufreq_cpu_init,
Viresh Kumarda5c5042019-08-09 07:52:49 +05302911 .exit = intel_cpufreq_cpu_exit,
Rafael J. Wysocki49d6fee2021-06-30 18:44:46 +02002912 .offline = intel_cpufreq_cpu_offline,
Rafael J. Wysocki4adcf2e2020-09-01 18:33:21 +02002913 .online = intel_pstate_cpu_online,
2914 .suspend = intel_pstate_suspend,
2915 .resume = intel_pstate_resume,
Rafael J. Wysocki5a25e3f2019-03-26 12:15:13 +01002916 .update_limits = intel_pstate_update_limits,
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002917 .name = "intel_cpufreq",
2918};
2919
Rafael J. Wysocki39a188b2020-07-13 15:58:38 +02002920static struct cpufreq_driver *default_driver;
Rafael J. Wysocki001c76f2016-11-17 23:34:17 +01002921
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002922static void intel_pstate_driver_cleanup(void)
2923{
2924 unsigned int cpu;
2925
Sebastian Andrzej Siewior09681a02021-08-03 16:16:11 +02002926 cpus_read_lock();
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002927 for_each_online_cpu(cpu) {
2928 if (all_cpu_data[cpu]) {
2929 if (intel_pstate_driver == &intel_pstate)
2930 intel_pstate_clear_update_util_hook(cpu);
2931
2932 kfree(all_cpu_data[cpu]);
2933 all_cpu_data[cpu] = NULL;
2934 }
2935 }
Sebastian Andrzej Siewior09681a02021-08-03 16:16:11 +02002936 cpus_read_unlock();
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02002937
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02002938 intel_pstate_driver = NULL;
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002939}
2940
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02002941static int intel_pstate_register_driver(struct cpufreq_driver *driver)
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002942{
2943 int ret;
2944
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02002945 if (driver == &intel_pstate)
2946 intel_pstate_sysfs_expose_hwp_dynamic_boost();
2947
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01002948 memset(&global, 0, sizeof(global));
2949 global.max_perf_pct = 100;
Rafael J. Wysockic3a49c82017-02-28 00:05:01 +01002950
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02002951 intel_pstate_driver = driver;
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002952 ret = cpufreq_register_driver(intel_pstate_driver);
2953 if (ret) {
2954 intel_pstate_driver_cleanup();
2955 return ret;
2956 }
2957
Rafael J. Wysockic5a2ee72017-03-22 23:58:57 +01002958 global.min_perf_pct = min_perf_pct_min();
2959
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002960 return 0;
2961}
2962
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002963static ssize_t intel_pstate_show_status(char *buf)
2964{
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02002965 if (!intel_pstate_driver)
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002966 return sprintf(buf, "off\n");
2967
2968 return sprintf(buf, "%s\n", intel_pstate_driver == &intel_pstate ?
2969 "active" : "passive");
2970}
2971
2972static int intel_pstate_update_status(const char *buf, size_t size)
2973{
Rafael J. Wysocki43298db2020-08-20 17:40:02 +02002974 if (size == 3 && !strncmp(buf, "off", size)) {
2975 if (!intel_pstate_driver)
2976 return -EINVAL;
2977
2978 if (hwp_active)
2979 return -EBUSY;
2980
Rafael J. Wysocki55671ea2020-09-01 18:33:41 +02002981 cpufreq_unregister_driver(intel_pstate_driver);
2982 intel_pstate_driver_cleanup();
Zhang Ruifc7d1752020-09-28 11:33:42 +08002983 return 0;
Rafael J. Wysocki43298db2020-08-20 17:40:02 +02002984 }
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002985
2986 if (size == 6 && !strncmp(buf, "active", size)) {
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02002987 if (intel_pstate_driver) {
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002988 if (intel_pstate_driver == &intel_pstate)
2989 return 0;
2990
Rafael J. Wysocki55671ea2020-09-01 18:33:41 +02002991 cpufreq_unregister_driver(intel_pstate_driver);
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002992 }
2993
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02002994 return intel_pstate_register_driver(&intel_pstate);
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01002995 }
2996
2997 if (size == 7 && !strncmp(buf, "passive", size)) {
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02002998 if (intel_pstate_driver) {
Rafael J. Wysocki0042b2c2017-03-28 00:14:08 +02002999 if (intel_pstate_driver == &intel_cpufreq)
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01003000 return 0;
3001
Rafael J. Wysocki55671ea2020-09-01 18:33:41 +02003002 cpufreq_unregister_driver(intel_pstate_driver);
3003 intel_pstate_sysfs_hide_hwp_dynamic_boost();
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01003004 }
3005
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02003006 return intel_pstate_register_driver(&intel_cpufreq);
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01003007 }
3008
3009 return -EINVAL;
3010}
3011
Jisheng Zhangeed43602016-06-27 18:07:16 +08003012static int no_load __initdata;
3013static int no_hwp __initdata;
3014static int hwp_only __initdata;
Jisheng Zhang29327c82016-06-27 18:07:17 +08003015static unsigned int force_load __initdata;
Dirk Brandewie6be26492013-02-15 22:55:10 +01003016
Jisheng Zhang29327c82016-06-27 18:07:17 +08003017static int __init intel_pstate_msrs_not_valid(void)
Dirk Brandewieb563b4e2013-03-22 01:29:28 +01003018{
Dirk Brandewie016c8152013-10-21 09:20:34 -07003019 if (!pstate_funcs.get_max() ||
Stratos Karafotisc4108332014-07-18 08:37:23 -07003020 !pstate_funcs.get_min() ||
3021 !pstate_funcs.get_turbo())
Dirk Brandewieb563b4e2013-03-22 01:29:28 +01003022 return -ENODEV;
3023
Dirk Brandewieb563b4e2013-03-22 01:29:28 +01003024 return 0;
3025}
Dirk Brandewie016c8152013-10-21 09:20:34 -07003026
Jisheng Zhang29327c82016-06-27 18:07:17 +08003027static void __init copy_cpu_funcs(struct pstate_funcs *funcs)
Dirk Brandewie016c8152013-10-21 09:20:34 -07003028{
3029 pstate_funcs.get_max = funcs->get_max;
Srinivas Pandruvada3bcc6fa2015-10-14 16:12:00 -07003030 pstate_funcs.get_max_physical = funcs->get_max_physical;
Dirk Brandewie016c8152013-10-21 09:20:34 -07003031 pstate_funcs.get_min = funcs->get_min;
3032 pstate_funcs.get_turbo = funcs->get_turbo;
Dirk Brandewieb27580b2014-10-13 08:37:43 -07003033 pstate_funcs.get_scaling = funcs->get_scaling;
Rafael J. Wysockifdfdb2b2016-03-18 23:20:02 +01003034 pstate_funcs.get_val = funcs->get_val;
Dirk Brandewie007bea02013-12-18 10:32:39 -08003035 pstate_funcs.get_vid = funcs->get_vid;
Srinivas Pandruvada6e34e1f2017-07-13 15:03:51 -07003036 pstate_funcs.get_aperf_mperf_shift = funcs->get_aperf_mperf_shift;
Dirk Brandewie016c8152013-10-21 09:20:34 -07003037}
3038
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07003039#ifdef CONFIG_ACPI
Adrian Huangfbbcdc02013-10-31 23:24:05 +08003040
Jisheng Zhang29327c82016-06-27 18:07:17 +08003041static bool __init intel_pstate_no_acpi_pss(void)
Adrian Huangfbbcdc02013-10-31 23:24:05 +08003042{
3043 int i;
3044
3045 for_each_possible_cpu(i) {
3046 acpi_status status;
3047 union acpi_object *pss;
3048 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
3049 struct acpi_processor *pr = per_cpu(processors, i);
3050
3051 if (!pr)
3052 continue;
3053
3054 status = acpi_evaluate_object(pr->handle, "_PSS", NULL, &buffer);
3055 if (ACPI_FAILURE(status))
3056 continue;
3057
3058 pss = buffer.pointer;
3059 if (pss && pss->type == ACPI_TYPE_PACKAGE) {
3060 kfree(pss);
3061 return false;
3062 }
3063
3064 kfree(pss);
3065 }
3066
Erwan Velu076b8622019-02-13 09:58:35 +01003067 pr_debug("ACPI _PSS not found\n");
Adrian Huangfbbcdc02013-10-31 23:24:05 +08003068 return true;
3069}
3070
Rafael J. Wysocki95d6c082018-07-18 13:38:37 +02003071static bool __init intel_pstate_no_acpi_pcch(void)
3072{
3073 acpi_status status;
3074 acpi_handle handle;
3075
3076 status = acpi_get_handle(NULL, "\\_SB", &handle);
3077 if (ACPI_FAILURE(status))
Erwan Velu076b8622019-02-13 09:58:35 +01003078 goto not_found;
Rafael J. Wysocki95d6c082018-07-18 13:38:37 +02003079
Erwan Velu076b8622019-02-13 09:58:35 +01003080 if (acpi_has_method(handle, "PCCH"))
3081 return false;
3082
3083not_found:
3084 pr_debug("ACPI PCCH not found\n");
3085 return true;
Rafael J. Wysocki95d6c082018-07-18 13:38:37 +02003086}
3087
Jisheng Zhang29327c82016-06-27 18:07:17 +08003088static bool __init intel_pstate_has_acpi_ppc(void)
ethan zhao966916e2014-12-01 11:32:08 +09003089{
3090 int i;
3091
3092 for_each_possible_cpu(i) {
3093 struct acpi_processor *pr = per_cpu(processors, i);
3094
3095 if (!pr)
3096 continue;
3097 if (acpi_has_method(pr->handle, "_PPC"))
3098 return true;
3099 }
Erwan Velu076b8622019-02-13 09:58:35 +01003100 pr_debug("ACPI _PPC not found\n");
ethan zhao966916e2014-12-01 11:32:08 +09003101 return false;
3102}
3103
3104enum {
3105 PSS,
3106 PPC,
3107};
3108
Adrian Huangfbbcdc02013-10-31 23:24:05 +08003109/* Hardware vendor-specific info that has its own power management modes */
Toshi Kani5e932322017-08-23 16:54:44 -06003110static struct acpi_platform_list plat_info[] __initdata = {
Jamal Shareef8d2eece2019-11-04 21:54:27 -08003111 {"HP ", "ProLiant", 0, ACPI_SIG_FADT, all_versions, NULL, PSS},
3112 {"ORACLE", "X4-2 ", 0, ACPI_SIG_FADT, all_versions, NULL, PPC},
3113 {"ORACLE", "X4-2L ", 0, ACPI_SIG_FADT, all_versions, NULL, PPC},
3114 {"ORACLE", "X4-2B ", 0, ACPI_SIG_FADT, all_versions, NULL, PPC},
3115 {"ORACLE", "X3-2 ", 0, ACPI_SIG_FADT, all_versions, NULL, PPC},
3116 {"ORACLE", "X3-2L ", 0, ACPI_SIG_FADT, all_versions, NULL, PPC},
3117 {"ORACLE", "X3-2B ", 0, ACPI_SIG_FADT, all_versions, NULL, PPC},
3118 {"ORACLE", "X4470M2 ", 0, ACPI_SIG_FADT, all_versions, NULL, PPC},
3119 {"ORACLE", "X4270M3 ", 0, ACPI_SIG_FADT, all_versions, NULL, PPC},
3120 {"ORACLE", "X4270M2 ", 0, ACPI_SIG_FADT, all_versions, NULL, PPC},
3121 {"ORACLE", "X4170M2 ", 0, ACPI_SIG_FADT, all_versions, NULL, PPC},
3122 {"ORACLE", "X4170 M3", 0, ACPI_SIG_FADT, all_versions, NULL, PPC},
3123 {"ORACLE", "X4275 M3", 0, ACPI_SIG_FADT, all_versions, NULL, PPC},
3124 {"ORACLE", "X6-2 ", 0, ACPI_SIG_FADT, all_versions, NULL, PPC},
3125 {"ORACLE", "Sudbury ", 0, ACPI_SIG_FADT, all_versions, NULL, PPC},
Toshi Kani5e932322017-08-23 16:54:44 -06003126 { } /* End */
Adrian Huangfbbcdc02013-10-31 23:24:05 +08003127};
3128
Srinivas Pandruvada589bab62020-06-12 11:09:57 -07003129#define BITMASK_OOB (BIT(8) | BIT(18))
3130
Jisheng Zhang29327c82016-06-27 18:07:17 +08003131static bool __init intel_pstate_platform_pwr_mgmt_exists(void)
Adrian Huangfbbcdc02013-10-31 23:24:05 +08003132{
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08003133 const struct x86_cpu_id *id;
3134 u64 misc_pwr;
Toshi Kani5e932322017-08-23 16:54:44 -06003135 int idx;
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08003136
3137 id = x86_match_cpu(intel_pstate_cpu_oob_ids);
3138 if (id) {
3139 rdmsrl(MSR_MISC_PWR_MGMT, misc_pwr);
Srinivas Pandruvada589bab62020-06-12 11:09:57 -07003140 if (misc_pwr & BITMASK_OOB) {
3141 pr_debug("Bit 8 or 18 in the MISC_PWR_MGMT MSR set\n");
3142 pr_debug("P states are controlled in Out of Band mode by the firmware/hardware\n");
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08003143 return true;
Erwan Velu076b8622019-02-13 09:58:35 +01003144 }
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08003145 }
Adrian Huangfbbcdc02013-10-31 23:24:05 +08003146
Toshi Kani5e932322017-08-23 16:54:44 -06003147 idx = acpi_match_platform_list(plat_info);
3148 if (idx < 0)
Adrian Huangfbbcdc02013-10-31 23:24:05 +08003149 return false;
3150
Toshi Kani5e932322017-08-23 16:54:44 -06003151 switch (plat_info[idx].data) {
3152 case PSS:
Rafael J. Wysocki95d6c082018-07-18 13:38:37 +02003153 if (!intel_pstate_no_acpi_pss())
3154 return false;
3155
3156 return intel_pstate_no_acpi_pcch();
Toshi Kani5e932322017-08-23 16:54:44 -06003157 case PPC:
3158 return intel_pstate_has_acpi_ppc() && !force_load;
Adrian Huangfbbcdc02013-10-31 23:24:05 +08003159 }
3160
3161 return false;
3162}
Rafael J. Wysockid0ea59e2016-11-17 22:47:47 +01003163
3164static void intel_pstate_request_control_from_smm(void)
3165{
3166 /*
3167 * It may be unsafe to request P-states control from SMM if _PPC support
3168 * has not been enabled.
3169 */
3170 if (acpi_ppc)
3171 acpi_processor_pstate_control();
3172}
Adrian Huangfbbcdc02013-10-31 23:24:05 +08003173#else /* CONFIG_ACPI not enabled */
3174static inline bool intel_pstate_platform_pwr_mgmt_exists(void) { return false; }
ethan zhao966916e2014-12-01 11:32:08 +09003175static inline bool intel_pstate_has_acpi_ppc(void) { return false; }
Rafael J. Wysockid0ea59e2016-11-17 22:47:47 +01003176static inline void intel_pstate_request_control_from_smm(void) {}
Adrian Huangfbbcdc02013-10-31 23:24:05 +08003177#endif /* CONFIG_ACPI */
3178
Srinivas Pandruvadaff7c9912018-06-18 12:47:45 -07003179#define INTEL_PSTATE_HWP_BROADWELL 0x01
3180
Thomas Gleixnerb11d77f2020-03-24 14:51:51 +01003181#define X86_MATCH_HWP(model, hwp_mode) \
3182 X86_MATCH_VENDOR_FAM_MODEL_FEATURE(INTEL, 6, INTEL_FAM6_##model, \
Thomas Gleixnerd9782802020-03-25 13:21:55 +01003183 X86_FEATURE_HWP, hwp_mode)
Srinivas Pandruvadaff7c9912018-06-18 12:47:45 -07003184
Srinivas Pandruvada7791e4a2016-02-25 15:09:19 -08003185static const struct x86_cpu_id hwp_support_ids[] __initconst = {
Thomas Gleixnerb11d77f2020-03-24 14:51:51 +01003186 X86_MATCH_HWP(BROADWELL_X, INTEL_PSTATE_HWP_BROADWELL),
3187 X86_MATCH_HWP(BROADWELL_D, INTEL_PSTATE_HWP_BROADWELL),
3188 X86_MATCH_HWP(ANY, 0),
Srinivas Pandruvada7791e4a2016-02-25 15:09:19 -08003189 {}
3190};
3191
Rafael J. Wysockie5af36b2021-04-21 19:40:56 +02003192static bool intel_pstate_hwp_is_enabled(void)
3193{
3194 u64 value;
3195
3196 rdmsrl(MSR_PM_ENABLE, value);
3197 return !!(value & 0x1);
3198}
3199
Dirk Brandewie93f08222013-02-06 09:02:13 -08003200static int __init intel_pstate_init(void)
3201{
Srinivas Pandruvadaff7c9912018-06-18 12:47:45 -07003202 const struct x86_cpu_id *id;
Rafael J. Wysockieb5139d2017-03-22 23:52:18 +01003203 int rc;
Dirk Brandewie93f08222013-02-06 09:02:13 -08003204
Borislav Petkov4ab52642019-04-01 17:03:45 +02003205 if (boot_cpu_data.x86_vendor != X86_VENDOR_INTEL)
3206 return -ENODEV;
3207
Srinivas Pandruvadaff7c9912018-06-18 12:47:45 -07003208 id = x86_match_cpu(hwp_support_ids);
3209 if (id) {
Doug Smythiesd9a7e9d2021-09-12 11:50:29 -07003210 bool hwp_forced = intel_pstate_hwp_is_enabled();
3211
3212 if (hwp_forced)
3213 pr_info("HWP enabled by BIOS\n");
3214 else if (no_load)
3215 return -ENODEV;
3216
Rafael J. Wysocki2f49afc2017-03-28 00:19:03 +02003217 copy_cpu_funcs(&core_funcs);
Rafael J. Wysocki7aa10312020-07-14 20:17:24 +02003218 /*
3219 * Avoid enabling HWP for processors without EPP support,
3220 * because that means incomplete HWP implementation which is a
3221 * corner case and supporting it is generally problematic.
Rafael J. Wysockie5af36b2021-04-21 19:40:56 +02003222 *
3223 * If HWP is enabled already, though, there is no choice but to
3224 * deal with it.
Rafael J. Wysocki7aa10312020-07-14 20:17:24 +02003225 */
Doug Smythiesd9a7e9d2021-09-12 11:50:29 -07003226 if ((!no_hwp && boot_cpu_has(X86_FEATURE_HWP_EPP)) || hwp_forced) {
Rafael J. Wysockieb5139d2017-03-22 23:52:18 +01003227 hwp_active++;
Srinivas Pandruvadaff7c9912018-06-18 12:47:45 -07003228 hwp_mode_bdw = id->driver_data;
Rafael J. Wysockieb5139d2017-03-22 23:52:18 +01003229 intel_pstate.attr = hwp_cpufreq_attrs;
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02003230 intel_cpufreq.attr = hwp_cpufreq_attrs;
Rafael J. Wysockie0be38e2020-10-23 17:35:32 +02003231 intel_cpufreq.flags |= CPUFREQ_NEED_UPDATE_LIMITS;
Rafael J. Wysockia365ab6b2020-12-14 21:09:26 +01003232 intel_cpufreq.adjust_perf = intel_cpufreq_adjust_perf;
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02003233 if (!default_driver)
3234 default_driver = &intel_pstate;
3235
Rafael J. Wysocki46573fd2021-09-04 15:53:39 +02003236 if (boot_cpu_has(X86_FEATURE_HYBRID_CPU))
3237 intel_pstate_cppc_set_cpu_scaling();
3238
Rafael J. Wysockieb5139d2017-03-22 23:52:18 +01003239 goto hwp_cpu_matched;
3240 }
Doug Smythiesd9a7e9d2021-09-12 11:50:29 -07003241 pr_info("HWP not enabled\n");
Rafael J. Wysockieb5139d2017-03-22 23:52:18 +01003242 } else {
Doug Smythiesd9a7e9d2021-09-12 11:50:29 -07003243 if (no_load)
3244 return -ENODEV;
3245
Rafael J. Wysockieb5139d2017-03-22 23:52:18 +01003246 id = x86_match_cpu(intel_pstate_cpu_ids);
Erwan Velu076b8622019-02-13 09:58:35 +01003247 if (!id) {
Borislav Petkov4ab52642019-04-01 17:03:45 +02003248 pr_info("CPU model not supported\n");
Rafael J. Wysockieb5139d2017-03-22 23:52:18 +01003249 return -ENODEV;
Erwan Velu076b8622019-02-13 09:58:35 +01003250 }
Rafael J. Wysockieb5139d2017-03-22 23:52:18 +01003251
Rafael J. Wysocki2f49afc2017-03-28 00:19:03 +02003252 copy_cpu_funcs((struct pstate_funcs *)id->driver_data);
Srinivas Pandruvada7791e4a2016-02-25 15:09:19 -08003253 }
3254
Erwan Velu076b8622019-02-13 09:58:35 +01003255 if (intel_pstate_msrs_not_valid()) {
3256 pr_info("Invalid MSRs\n");
Dirk Brandewieb563b4e2013-03-22 01:29:28 +01003257 return -ENODEV;
Erwan Velu076b8622019-02-13 09:58:35 +01003258 }
Rafael J. Wysocki33aa46f2020-03-25 15:03:35 +01003259 /* Without HWP start in the passive mode. */
Rafael J. Wysocki39a188b2020-07-13 15:58:38 +02003260 if (!default_driver)
3261 default_driver = &intel_cpufreq;
Dirk Brandewieb563b4e2013-03-22 01:29:28 +01003262
Srinivas Pandruvada7791e4a2016-02-25 15:09:19 -08003263hwp_cpu_matched:
3264 /*
3265 * The Intel pstate driver will be ignored if the platform
3266 * firmware has its own power management modes.
3267 */
Erwan Velu076b8622019-02-13 09:58:35 +01003268 if (intel_pstate_platform_pwr_mgmt_exists()) {
3269 pr_info("P-states controlled by the platform\n");
Srinivas Pandruvada7791e4a2016-02-25 15:09:19 -08003270 return -ENODEV;
Erwan Velu076b8622019-02-13 09:58:35 +01003271 }
Srinivas Pandruvada7791e4a2016-02-25 15:09:19 -08003272
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01003273 if (!hwp_active && hwp_only)
3274 return -ENOTSUPP;
3275
Joe Perches4836df12016-04-05 13:28:23 -07003276 pr_info("Intel P-state driver initializing\n");
Dirk Brandewie93f08222013-02-06 09:02:13 -08003277
Kees Cookfad953c2018-06-12 14:27:37 -07003278 all_cpu_data = vzalloc(array_size(sizeof(void *), num_possible_cpus()));
Dirk Brandewie93f08222013-02-06 09:02:13 -08003279 if (!all_cpu_data)
3280 return -ENOMEM;
Dirk Brandewie93f08222013-02-06 09:02:13 -08003281
Rafael J. Wysockid0ea59e2016-11-17 22:47:47 +01003282 intel_pstate_request_control_from_smm();
3283
Dirk Brandewie93f08222013-02-06 09:02:13 -08003284 intel_pstate_sysfs_expose_params();
Dirk Brandewieb69880f2014-01-16 10:32:25 -08003285
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01003286 mutex_lock(&intel_pstate_driver_lock);
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02003287 rc = intel_pstate_register_driver(default_driver);
Rafael J. Wysocki0c30b652017-01-11 04:12:16 +01003288 mutex_unlock(&intel_pstate_driver_lock);
Chen Yucdc17192020-10-09 11:30:38 +08003289 if (rc) {
3290 intel_pstate_sysfs_remove();
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01003291 return rc;
Chen Yucdc17192020-10-09 11:30:38 +08003292 }
Dirk Brandewie907cc902013-03-05 14:15:27 -08003293
Srinivas Pandruvadaed7bde72020-06-26 11:34:00 -07003294 if (hwp_active) {
3295 const struct x86_cpu_id *id;
3296
3297 id = x86_match_cpu(intel_pstate_cpu_ee_disable_ids);
3298 if (id) {
3299 set_power_ctl_ee_state(false);
3300 pr_info("Disabling energy efficiency optimization\n");
3301 }
3302
Dirk Brandewie907cc902013-03-05 14:15:27 -08003303 pr_info("HWP enabled\n");
Rafael J. Wysockieb3693f2021-05-12 16:19:30 +02003304 } else if (boot_cpu_has(X86_FEATURE_HYBRID_CPU)) {
3305 pr_warn("Problematic setup: Hybrid processor with disabled HWP\n");
Srinivas Pandruvadaed7bde72020-06-26 11:34:00 -07003306 }
Dirk Brandewie907cc902013-03-05 14:15:27 -08003307
Rafael J. Wysockifb1fe102017-01-05 02:53:12 +01003308 return 0;
Dirk Brandewie93f08222013-02-06 09:02:13 -08003309}
3310device_initcall(intel_pstate_init);
3311
Dirk Brandewie6be26492013-02-15 22:55:10 +01003312static int __init intel_pstate_setup(char *str)
3313{
3314 if (!str)
3315 return -EINVAL;
3316
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02003317 if (!strcmp(str, "disable"))
Dirk Brandewie6be26492013-02-15 22:55:10 +01003318 no_load = 1;
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02003319 else if (!strcmp(str, "active"))
Rafael J. Wysocki39a188b2020-07-13 15:58:38 +02003320 default_driver = &intel_pstate;
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02003321 else if (!strcmp(str, "passive"))
Rafael J. Wysockiee8df892017-03-28 00:13:00 +02003322 default_driver = &intel_cpufreq;
Rafael J. Wysockif6ebbcf2020-08-06 14:03:55 +02003323
Doug Smythiesd9a7e9d2021-09-12 11:50:29 -07003324 if (!strcmp(str, "no_hwp"))
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08003325 no_hwp = 1;
Doug Smythiesd9a7e9d2021-09-12 11:50:29 -07003326
Ethan Zhaoaa4ea342014-12-09 10:43:19 +09003327 if (!strcmp(str, "force"))
3328 force_load = 1;
Kristen Carlson Accardid64c3b02015-02-06 13:41:55 -08003329 if (!strcmp(str, "hwp_only"))
3330 hwp_only = 1;
Srinivas Pandruvadaeae48f02016-10-25 13:20:40 -07003331 if (!strcmp(str, "per_cpu_perf_limits"))
3332 per_cpu_limits = true;
Srinivas Pandruvada9522a2f2016-04-27 15:48:06 -07003333
3334#ifdef CONFIG_ACPI
3335 if (!strcmp(str, "support_acpi_ppc"))
3336 acpi_ppc = true;
3337#endif
3338
Dirk Brandewie6be26492013-02-15 22:55:10 +01003339 return 0;
3340}
3341early_param("intel_pstate", intel_pstate_setup);
3342
Dirk Brandewie93f08222013-02-06 09:02:13 -08003343MODULE_AUTHOR("Dirk Brandewie <dirk.j.brandewie@intel.com>");
3344MODULE_DESCRIPTION("'intel_pstate' - P state driver Intel Core processors");
3345MODULE_LICENSE("GPL");