Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1 | /* |
Srinivas Pandruvada | d1b6848 | 2013-04-09 22:38:18 +0000 | [diff] [blame] | 2 | * intel_pstate.c: Native P state management for Intel processors |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 3 | * |
| 4 | * (C) Copyright 2012 Intel Corporation |
| 5 | * Author: Dirk Brandewie <dirk.j.brandewie@intel.com> |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License |
| 9 | * as published by the Free Software Foundation; version 2 |
| 10 | * of the License. |
| 11 | */ |
| 12 | |
Joe Perches | 4836df1 | 2016-04-05 13:28:23 -0700 | [diff] [blame] | 13 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 14 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 15 | #include <linux/kernel.h> |
| 16 | #include <linux/kernel_stat.h> |
| 17 | #include <linux/module.h> |
| 18 | #include <linux/ktime.h> |
| 19 | #include <linux/hrtimer.h> |
| 20 | #include <linux/tick.h> |
| 21 | #include <linux/slab.h> |
Ingo Molnar | 55687da | 2017-02-08 18:51:31 +0100 | [diff] [blame] | 22 | #include <linux/sched/cpufreq.h> |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 23 | #include <linux/list.h> |
| 24 | #include <linux/cpu.h> |
| 25 | #include <linux/cpufreq.h> |
| 26 | #include <linux/sysfs.h> |
| 27 | #include <linux/types.h> |
| 28 | #include <linux/fs.h> |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 29 | #include <linux/acpi.h> |
Stephen Rothwell | d647230 | 2015-06-02 19:01:38 +1000 | [diff] [blame] | 30 | #include <linux/vmalloc.h> |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 31 | #include <trace/events/power.h> |
| 32 | |
| 33 | #include <asm/div64.h> |
| 34 | #include <asm/msr.h> |
| 35 | #include <asm/cpu_device_id.h> |
Borislav Petkov | 64df1fd | 2015-04-03 15:19:53 +0200 | [diff] [blame] | 36 | #include <asm/cpufeature.h> |
Dave Hansen | 5b20c94 | 2016-06-02 17:19:45 -0700 | [diff] [blame] | 37 | #include <asm/intel-family.h> |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 38 | |
Rafael J. Wysocki | d77d488 | 2017-08-10 01:09:16 +0200 | [diff] [blame] | 39 | #define INTEL_PSTATE_SAMPLING_INTERVAL (10 * NSEC_PER_MSEC) |
Rafael J. Wysocki | eabd22c | 2017-03-28 00:15:37 +0200 | [diff] [blame] | 40 | |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 41 | #define INTEL_CPUFREQ_TRANSITION_LATENCY 20000 |
Rafael J. Wysocki | 1b72e7f | 2017-04-11 00:20:41 +0200 | [diff] [blame] | 42 | #define INTEL_CPUFREQ_TRANSITION_DELAY 500 |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 43 | |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 44 | #ifdef CONFIG_ACPI |
| 45 | #include <acpi/processor.h> |
Rafael J. Wysocki | 1766900 | 2016-11-22 12:24:00 -0800 | [diff] [blame] | 46 | #include <acpi/cppc_acpi.h> |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 47 | #endif |
| 48 | |
Dirk Brandewie | f0fe3cd | 2014-05-29 09:32:23 -0700 | [diff] [blame] | 49 | #define FRAC_BITS 8 |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 50 | #define int_tofp(X) ((int64_t)(X) << FRAC_BITS) |
| 51 | #define fp_toint(X) ((X) >> FRAC_BITS) |
Dirk Brandewie | f0fe3cd | 2014-05-29 09:32:23 -0700 | [diff] [blame] | 52 | |
Rafael J. Wysocki | a1c9787 | 2016-05-11 19:09:12 +0200 | [diff] [blame] | 53 | #define EXT_BITS 6 |
| 54 | #define EXT_FRAC_BITS (EXT_BITS + FRAC_BITS) |
Srinivas Pandruvada | d5dd33d | 2016-11-21 16:33:20 -0800 | [diff] [blame] | 55 | #define fp_ext_toint(X) ((X) >> EXT_FRAC_BITS) |
| 56 | #define int_ext_tofp(X) ((int64_t)(X) << EXT_FRAC_BITS) |
Rafael J. Wysocki | a1c9787 | 2016-05-11 19:09:12 +0200 | [diff] [blame] | 57 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 58 | static 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 Bhargava | 7180ddd | 2015-06-15 13:43:29 -0400 | [diff] [blame] | 63 | static inline int32_t div_fp(s64 x, s64 y) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 64 | { |
Prarit Bhargava | 7180ddd | 2015-06-15 13:43:29 -0400 | [diff] [blame] | 65 | return div64_s64((int64_t)x << FRAC_BITS, y); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 66 | } |
| 67 | |
Dirk Brandewie | d022a65 | 2014-10-13 08:37:44 -0700 | [diff] [blame] | 68 | static 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. Wysocki | ff35f02 | 2017-03-28 00:09:18 +0200 | [diff] [blame] | 79 | static inline int32_t percent_fp(int percent) |
| 80 | { |
| 81 | return div_fp(percent, 100); |
| 82 | } |
| 83 | |
Rafael J. Wysocki | a1c9787 | 2016-05-11 19:09:12 +0200 | [diff] [blame] | 84 | static inline u64 mul_ext_fp(u64 x, u64 y) |
| 85 | { |
| 86 | return (x * y) >> EXT_FRAC_BITS; |
| 87 | } |
| 88 | |
| 89 | static inline u64 div_ext_fp(u64 x, u64 y) |
| 90 | { |
| 91 | return div64_u64(x << EXT_FRAC_BITS, y); |
| 92 | } |
| 93 | |
Rafael J. Wysocki | e4c204c | 2017-03-14 16:18:34 +0100 | [diff] [blame] | 94 | static inline int32_t percent_ext_fp(int percent) |
| 95 | { |
| 96 | return div_ext_fp(percent, 100); |
| 97 | } |
| 98 | |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 99 | /** |
| 100 | * struct sample - Store performance sample |
Rafael J. Wysocki | a1c9787 | 2016-05-11 19:09:12 +0200 | [diff] [blame] | 101 | * @core_avg_perf: Ratio of APERF/MPERF which is the actual average |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 102 | * performance during last sample period |
| 103 | * @busy_scaled: Scaled busy value which is used to calculate next |
Rafael J. Wysocki | a1c9787 | 2016-05-11 19:09:12 +0200 | [diff] [blame] | 104 | * P state. This can be different than core_avg_perf |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 105 | * to account for cpu idle period |
| 106 | * @aperf: Difference of actual performance frequency clock count |
| 107 | * read from APERF MSR between last and current sample |
| 108 | * @mperf: Difference of maximum performance frequency clock count |
| 109 | * read from MPERF MSR between last and current sample |
| 110 | * @tsc: Difference of time stamp counter between last and |
| 111 | * current sample |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 112 | * @time: Current time from scheduler |
| 113 | * |
| 114 | * This structure is used in the cpudata structure to store performance sample |
| 115 | * data for choosing next P State. |
| 116 | */ |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 117 | struct sample { |
Rafael J. Wysocki | a1c9787 | 2016-05-11 19:09:12 +0200 | [diff] [blame] | 118 | int32_t core_avg_perf; |
Philippe Longepe | 157386b | 2015-12-04 17:40:30 +0100 | [diff] [blame] | 119 | int32_t busy_scaled; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 120 | u64 aperf; |
| 121 | u64 mperf; |
Doug Smythies | 4055fad | 2015-04-11 21:10:26 -0700 | [diff] [blame] | 122 | u64 tsc; |
Rafael J. Wysocki | a4675fb | 2016-02-05 01:45:30 +0100 | [diff] [blame] | 123 | u64 time; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 124 | }; |
| 125 | |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 126 | /** |
| 127 | * struct pstate_data - Store P state data |
| 128 | * @current_pstate: Current requested P state |
| 129 | * @min_pstate: Min P state possible for this platform |
| 130 | * @max_pstate: Max P state possible for this platform |
| 131 | * @max_pstate_physical:This is physical Max P state for a processor |
| 132 | * This can be higher than the max_pstate which can |
| 133 | * be limited by platform thermal design power limits |
| 134 | * @scaling: Scaling factor to convert frequency to cpufreq |
| 135 | * frequency units |
| 136 | * @turbo_pstate: Max Turbo P state possible for this platform |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 137 | * @max_freq: @max_pstate frequency in cpufreq units |
| 138 | * @turbo_freq: @turbo_pstate frequency in cpufreq units |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 139 | * |
| 140 | * Stores the per cpu model P state limits and current P state. |
| 141 | */ |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 142 | struct pstate_data { |
| 143 | int current_pstate; |
| 144 | int min_pstate; |
| 145 | int max_pstate; |
Srinivas Pandruvada | 3bcc6fa | 2015-10-14 16:12:00 -0700 | [diff] [blame] | 146 | int max_pstate_physical; |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 147 | int scaling; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 148 | int turbo_pstate; |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 149 | unsigned int max_freq; |
| 150 | unsigned int turbo_freq; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 151 | }; |
| 152 | |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 153 | /** |
| 154 | * struct vid_data - Stores voltage information data |
| 155 | * @min: VID data for this platform corresponding to |
| 156 | * the lowest P state |
| 157 | * @max: VID data corresponding to the highest P State. |
| 158 | * @turbo: VID data for turbo P state |
| 159 | * @ratio: Ratio of (vid max - vid min) / |
| 160 | * (max P state - Min P State) |
| 161 | * |
| 162 | * Stores the voltage data for DVFS (Dynamic Voltage and Frequency Scaling) |
| 163 | * This data is used in Atom platforms, where in addition to target P state, |
| 164 | * the voltage data needs to be specified to select next P State. |
| 165 | */ |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 166 | struct vid_data { |
Dirk Brandewie | 21855ff | 2014-05-08 12:57:23 -0700 | [diff] [blame] | 167 | int min; |
| 168 | int max; |
| 169 | int turbo; |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 170 | int32_t ratio; |
| 171 | }; |
| 172 | |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 173 | /** |
Rafael J. Wysocki | c5a2ee7 | 2017-03-22 23:58:57 +0100 | [diff] [blame] | 174 | * struct global_params - Global parameters, mostly tunable via sysfs. |
| 175 | * @no_turbo: Whether or not to use turbo P-states. |
| 176 | * @turbo_disabled: Whethet or not turbo P-states are available at all, |
| 177 | * based on the MSR_IA32_MISC_ENABLE value and whether or |
| 178 | * not the maximum reported turbo P-state is different from |
| 179 | * the maximum reported non-turbo one. |
| 180 | * @min_perf_pct: Minimum capacity limit in percent of the maximum turbo |
| 181 | * P-state capacity. |
| 182 | * @max_perf_pct: Maximum capacity limit in percent of the maximum turbo |
| 183 | * P-state capacity. |
| 184 | */ |
| 185 | struct global_params { |
| 186 | bool no_turbo; |
| 187 | bool turbo_disabled; |
| 188 | int max_perf_pct; |
| 189 | int min_perf_pct; |
Srinivas Pandruvada | eae48f0 | 2016-10-25 13:20:40 -0700 | [diff] [blame] | 190 | }; |
| 191 | |
| 192 | /** |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 193 | * struct cpudata - Per CPU instance data storage |
| 194 | * @cpu: CPU number for this instance data |
Rafael J. Wysocki | 2f1d407 | 2016-10-24 23:20:25 +0200 | [diff] [blame] | 195 | * @policy: CPUFreq policy value |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 196 | * @update_util: CPUFreq utility callback information |
Chen Yu | 4578ee7e | 2016-05-11 14:33:08 +0800 | [diff] [blame] | 197 | * @update_util_set: CPUFreq utility callback is set |
Rafael J. Wysocki | 09c448d | 2016-09-14 02:28:13 +0200 | [diff] [blame] | 198 | * @iowait_boost: iowait-related boost fraction |
| 199 | * @last_update: Time of the last update. |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 200 | * @pstate: Stores P state limits for this CPU |
| 201 | * @vid: Stores VID limits for this CPU |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 202 | * @last_sample_time: Last Sample time |
Srinivas Pandruvada | 6e34e1f | 2017-07-13 15:03:51 -0700 | [diff] [blame] | 203 | * @aperf_mperf_shift: Number of clock cycles after aperf, merf is incremented |
| 204 | * This shift is a multiplier to mperf delta to |
| 205 | * calculate CPU busy. |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 206 | * @prev_aperf: Last APERF value read from APERF MSR |
| 207 | * @prev_mperf: Last MPERF value read from MPERF MSR |
| 208 | * @prev_tsc: Last timestamp counter (TSC) value |
| 209 | * @prev_cummulative_iowait: IO Wait time difference from last and |
| 210 | * current sample |
| 211 | * @sample: Storage for storing last Sample data |
Srinivas Pandruvada | 1a4fe38 | 2017-06-12 16:30:27 -0700 | [diff] [blame] | 212 | * @min_perf_ratio: Minimum capacity in terms of PERF or HWP ratios |
| 213 | * @max_perf_ratio: Maximum capacity in terms of PERF or HWP ratios |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 214 | * @acpi_perf_data: Stores ACPI perf information read from _PSS |
| 215 | * @valid_pss_table: Set to true for valid ACPI _PSS entries found |
Srinivas Pandruvada | 984edbd | 2016-12-06 13:32:16 -0800 | [diff] [blame] | 216 | * @epp_powersave: Last saved HWP energy performance preference |
| 217 | * (EPP) or energy performance bias (EPB), |
| 218 | * when policy switched to performance |
Srinivas Pandruvada | 8442885 | 2016-11-24 16:07:10 -0800 | [diff] [blame] | 219 | * @epp_policy: Last saved policy used to set EPP/EPB |
Srinivas Pandruvada | 984edbd | 2016-12-06 13:32:16 -0800 | [diff] [blame] | 220 | * @epp_default: Power on default HWP energy performance |
| 221 | * preference/bias |
| 222 | * @epp_saved: Saved EPP/EPB during system suspend or CPU offline |
| 223 | * operation |
Srinivas Pandruvada | e0efd5b | 2018-06-05 14:42:39 -0700 | [diff] [blame] | 224 | * @hwp_req_cached: Cached value of the last HWP Request MSR |
| 225 | * @hwp_cap_cached: Cached value of the last HWP Capabilities MSR |
Srinivas Pandruvada | 52ccc431 | 2018-06-05 14:42:40 -0700 | [diff] [blame] | 226 | * @last_io_update: Last time when IO wake flag was set |
| 227 | * @sched_flags: Store scheduler flags for possible cross CPU update |
Srinivas Pandruvada | e0efd5b | 2018-06-05 14:42:39 -0700 | [diff] [blame] | 228 | * @hwp_boost_min: Last HWP boosted min performance |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 229 | * |
| 230 | * This structure stores per CPU instance data for all CPUs. |
| 231 | */ |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 232 | struct cpudata { |
| 233 | int cpu; |
| 234 | |
Rafael J. Wysocki | 2f1d407 | 2016-10-24 23:20:25 +0200 | [diff] [blame] | 235 | unsigned int policy; |
Rafael J. Wysocki | a4675fb | 2016-02-05 01:45:30 +0100 | [diff] [blame] | 236 | struct update_util_data update_util; |
Chen Yu | 4578ee7e | 2016-05-11 14:33:08 +0800 | [diff] [blame] | 237 | bool update_util_set; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 238 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 239 | struct pstate_data pstate; |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 240 | struct vid_data vid; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 241 | |
Rafael J. Wysocki | 09c448d | 2016-09-14 02:28:13 +0200 | [diff] [blame] | 242 | u64 last_update; |
Rafael J. Wysocki | a4675fb | 2016-02-05 01:45:30 +0100 | [diff] [blame] | 243 | u64 last_sample_time; |
Srinivas Pandruvada | 6e34e1f | 2017-07-13 15:03:51 -0700 | [diff] [blame] | 244 | u64 aperf_mperf_shift; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 245 | u64 prev_aperf; |
| 246 | u64 prev_mperf; |
Doug Smythies | 4055fad | 2015-04-11 21:10:26 -0700 | [diff] [blame] | 247 | u64 prev_tsc; |
Philippe Longepe | 63d1d65 | 2015-12-04 17:40:35 +0100 | [diff] [blame] | 248 | u64 prev_cummulative_iowait; |
Dirk Brandewie | d37e2b7 | 2014-02-12 10:01:04 -0800 | [diff] [blame] | 249 | struct sample sample; |
Srinivas Pandruvada | 1a4fe38 | 2017-06-12 16:30:27 -0700 | [diff] [blame] | 250 | int32_t min_perf_ratio; |
| 251 | int32_t max_perf_ratio; |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 252 | #ifdef CONFIG_ACPI |
| 253 | struct acpi_processor_performance acpi_perf_data; |
| 254 | bool valid_pss_table; |
| 255 | #endif |
Rafael J. Wysocki | 09c448d | 2016-09-14 02:28:13 +0200 | [diff] [blame] | 256 | unsigned int iowait_boost; |
Srinivas Pandruvada | 984edbd | 2016-12-06 13:32:16 -0800 | [diff] [blame] | 257 | s16 epp_powersave; |
Srinivas Pandruvada | 8442885 | 2016-11-24 16:07:10 -0800 | [diff] [blame] | 258 | s16 epp_policy; |
Srinivas Pandruvada | 984edbd | 2016-12-06 13:32:16 -0800 | [diff] [blame] | 259 | s16 epp_default; |
| 260 | s16 epp_saved; |
Srinivas Pandruvada | e0efd5b | 2018-06-05 14:42:39 -0700 | [diff] [blame] | 261 | u64 hwp_req_cached; |
| 262 | u64 hwp_cap_cached; |
Srinivas Pandruvada | 52ccc431 | 2018-06-05 14:42:40 -0700 | [diff] [blame] | 263 | u64 last_io_update; |
| 264 | unsigned int sched_flags; |
Srinivas Pandruvada | e0efd5b | 2018-06-05 14:42:39 -0700 | [diff] [blame] | 265 | u32 hwp_boost_min; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 266 | }; |
| 267 | |
| 268 | static struct cpudata **all_cpu_data; |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 269 | |
| 270 | /** |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 271 | * struct pstate_funcs - Per CPU model specific callbacks |
| 272 | * @get_max: Callback to get maximum non turbo effective P state |
| 273 | * @get_max_physical: Callback to get maximum non turbo physical P state |
| 274 | * @get_min: Callback to get minimum P state |
| 275 | * @get_turbo: Callback to get turbo P state |
| 276 | * @get_scaling: Callback to get frequency scaling factor |
| 277 | * @get_val: Callback to convert P state to actual MSR write value |
| 278 | * @get_vid: Callback to get VID data for Atom platforms |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 279 | * |
| 280 | * Core and Atom CPU models have different way to get P State limits. This |
| 281 | * structure is used to store those callbacks. |
| 282 | */ |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 283 | struct pstate_funcs { |
| 284 | int (*get_max)(void); |
Srinivas Pandruvada | 3bcc6fa | 2015-10-14 16:12:00 -0700 | [diff] [blame] | 285 | int (*get_max_physical)(void); |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 286 | int (*get_min)(void); |
| 287 | int (*get_turbo)(void); |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 288 | int (*get_scaling)(void); |
Srinivas Pandruvada | 6e34e1f | 2017-07-13 15:03:51 -0700 | [diff] [blame] | 289 | int (*get_aperf_mperf_shift)(void); |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 290 | u64 (*get_val)(struct cpudata*, int pstate); |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 291 | void (*get_vid)(struct cpudata *); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 292 | }; |
| 293 | |
Jisheng Zhang | 4a7cb7a | 2016-06-27 18:07:18 +0800 | [diff] [blame] | 294 | static struct pstate_funcs pstate_funcs __read_mostly; |
Rafael J. Wysocki | 5c43905 | 2017-03-28 00:05:44 +0200 | [diff] [blame] | 295 | |
Jisheng Zhang | 4a7cb7a | 2016-06-27 18:07:18 +0800 | [diff] [blame] | 296 | static int hwp_active __read_mostly; |
Srinivas Pandruvada | ff7c991 | 2018-06-18 12:47:45 -0700 | [diff] [blame] | 297 | static int hwp_mode_bdw __read_mostly; |
Srinivas Pandruvada | eae48f0 | 2016-10-25 13:20:40 -0700 | [diff] [blame] | 298 | static bool per_cpu_limits __read_mostly; |
Srinivas Pandruvada | e0efd5b | 2018-06-05 14:42:39 -0700 | [diff] [blame] | 299 | static bool hwp_boost __read_mostly; |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 300 | |
Rafael J. Wysocki | ee8df89 | 2017-03-28 00:13:00 +0200 | [diff] [blame] | 301 | static struct cpufreq_driver *intel_pstate_driver __read_mostly; |
Rafael J. Wysocki | 0c30b65 | 2017-01-11 04:12:16 +0100 | [diff] [blame] | 302 | |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 303 | #ifdef CONFIG_ACPI |
| 304 | static bool acpi_ppc; |
| 305 | #endif |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 306 | |
Rafael J. Wysocki | c5a2ee7 | 2017-03-22 23:58:57 +0100 | [diff] [blame] | 307 | static struct global_params global; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 308 | |
Rafael J. Wysocki | 0c30b65 | 2017-01-11 04:12:16 +0100 | [diff] [blame] | 309 | static DEFINE_MUTEX(intel_pstate_driver_lock); |
Srinivas Pandruvada | a410c03d | 2016-10-28 10:44:52 -0700 | [diff] [blame] | 310 | static DEFINE_MUTEX(intel_pstate_limits_lock); |
| 311 | |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 312 | #ifdef CONFIG_ACPI |
Srinivas Pandruvada | 2b3ec76 | 2016-04-27 15:48:08 -0700 | [diff] [blame] | 313 | |
| 314 | static bool intel_pstate_get_ppc_enable_status(void) |
| 315 | { |
| 316 | if (acpi_gbl_FADT.preferred_profile == PM_ENTERPRISE_SERVER || |
| 317 | acpi_gbl_FADT.preferred_profile == PM_PERFORMANCE_SERVER) |
| 318 | return true; |
| 319 | |
| 320 | return acpi_ppc; |
| 321 | } |
| 322 | |
Rafael J. Wysocki | 1766900 | 2016-11-22 12:24:00 -0800 | [diff] [blame] | 323 | #ifdef CONFIG_ACPI_CPPC_LIB |
| 324 | |
| 325 | /* The work item is needed to avoid CPU hotplug locking issues */ |
| 326 | static void intel_pstste_sched_itmt_work_fn(struct work_struct *work) |
| 327 | { |
| 328 | sched_set_itmt_support(); |
| 329 | } |
| 330 | |
| 331 | static DECLARE_WORK(sched_itmt_work, intel_pstste_sched_itmt_work_fn); |
| 332 | |
| 333 | static void intel_pstate_set_itmt_prio(int cpu) |
| 334 | { |
| 335 | struct cppc_perf_caps cppc_perf; |
| 336 | static u32 max_highest_perf = 0, min_highest_perf = U32_MAX; |
| 337 | int ret; |
| 338 | |
| 339 | ret = cppc_get_perf_caps(cpu, &cppc_perf); |
| 340 | if (ret) |
| 341 | return; |
| 342 | |
| 343 | /* |
| 344 | * The priorities can be set regardless of whether or not |
| 345 | * sched_set_itmt_support(true) has been called and it is valid to |
| 346 | * update them at any time after it has been called. |
| 347 | */ |
| 348 | sched_set_itmt_core_prio(cppc_perf.highest_perf, cpu); |
| 349 | |
| 350 | if (max_highest_perf <= min_highest_perf) { |
| 351 | if (cppc_perf.highest_perf > max_highest_perf) |
| 352 | max_highest_perf = cppc_perf.highest_perf; |
| 353 | |
| 354 | if (cppc_perf.highest_perf < min_highest_perf) |
| 355 | min_highest_perf = cppc_perf.highest_perf; |
| 356 | |
| 357 | if (max_highest_perf > min_highest_perf) { |
| 358 | /* |
| 359 | * This code can be run during CPU online under the |
| 360 | * CPU hotplug locks, so sched_set_itmt_support() |
| 361 | * cannot be called from here. Queue up a work item |
| 362 | * to invoke it. |
| 363 | */ |
| 364 | schedule_work(&sched_itmt_work); |
| 365 | } |
| 366 | } |
| 367 | } |
| 368 | #else |
| 369 | static void intel_pstate_set_itmt_prio(int cpu) |
| 370 | { |
| 371 | } |
| 372 | #endif |
| 373 | |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 374 | static void intel_pstate_init_acpi_perf_limits(struct cpufreq_policy *policy) |
| 375 | { |
| 376 | struct cpudata *cpu; |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 377 | int ret; |
| 378 | int i; |
| 379 | |
Rafael J. Wysocki | 1766900 | 2016-11-22 12:24:00 -0800 | [diff] [blame] | 380 | if (hwp_active) { |
| 381 | intel_pstate_set_itmt_prio(policy->cpu); |
Srinivas Pandruvada | e59a8f7 | 2016-05-04 15:07:34 -0700 | [diff] [blame] | 382 | return; |
Rafael J. Wysocki | 1766900 | 2016-11-22 12:24:00 -0800 | [diff] [blame] | 383 | } |
Srinivas Pandruvada | e59a8f7 | 2016-05-04 15:07:34 -0700 | [diff] [blame] | 384 | |
Srinivas Pandruvada | 2b3ec76 | 2016-04-27 15:48:08 -0700 | [diff] [blame] | 385 | if (!intel_pstate_get_ppc_enable_status()) |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 386 | return; |
| 387 | |
| 388 | cpu = all_cpu_data[policy->cpu]; |
| 389 | |
| 390 | ret = acpi_processor_register_performance(&cpu->acpi_perf_data, |
| 391 | policy->cpu); |
| 392 | if (ret) |
| 393 | return; |
| 394 | |
| 395 | /* |
| 396 | * Check if the control value in _PSS is for PERF_CTL MSR, which should |
| 397 | * guarantee that the states returned by it map to the states in our |
| 398 | * list directly. |
| 399 | */ |
| 400 | if (cpu->acpi_perf_data.control_register.space_id != |
| 401 | ACPI_ADR_SPACE_FIXED_HARDWARE) |
| 402 | goto err; |
| 403 | |
| 404 | /* |
| 405 | * If there is only one entry _PSS, simply ignore _PSS and continue as |
| 406 | * usual without taking _PSS into account |
| 407 | */ |
| 408 | if (cpu->acpi_perf_data.state_count < 2) |
| 409 | goto err; |
| 410 | |
| 411 | pr_debug("CPU%u - ACPI _PSS perf data\n", policy->cpu); |
| 412 | for (i = 0; i < cpu->acpi_perf_data.state_count; i++) { |
| 413 | pr_debug(" %cP%d: %u MHz, %u mW, 0x%x\n", |
| 414 | (i == cpu->acpi_perf_data.state ? '*' : ' '), i, |
| 415 | (u32) cpu->acpi_perf_data.states[i].core_frequency, |
| 416 | (u32) cpu->acpi_perf_data.states[i].power, |
| 417 | (u32) cpu->acpi_perf_data.states[i].control); |
| 418 | } |
| 419 | |
| 420 | /* |
| 421 | * The _PSS table doesn't contain whole turbo frequency range. |
| 422 | * This just contains +1 MHZ above the max non turbo frequency, |
| 423 | * with control value corresponding to max turbo ratio. But |
| 424 | * when cpufreq set policy is called, it will call with this |
| 425 | * max frequency, which will cause a reduced performance as |
| 426 | * this driver uses real max turbo frequency as the max |
| 427 | * frequency. So correct this frequency in _PSS table to |
Srinivas Pandruvada | b00345d | 2016-06-14 23:12:59 -0700 | [diff] [blame] | 428 | * correct max turbo frequency based on the turbo state. |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 429 | * Also need to convert to MHz as _PSS freq is in MHz. |
| 430 | */ |
Rafael J. Wysocki | 7de3255 | 2017-03-18 00:57:39 +0100 | [diff] [blame] | 431 | if (!global.turbo_disabled) |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 432 | cpu->acpi_perf_data.states[0].core_frequency = |
| 433 | policy->cpuinfo.max_freq / 1000; |
| 434 | cpu->valid_pss_table = true; |
Srinivas Pandruvada | 6cacd11 | 2016-05-29 23:31:23 -0700 | [diff] [blame] | 435 | pr_debug("_PPC limits will be enforced\n"); |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 436 | |
| 437 | return; |
| 438 | |
| 439 | err: |
| 440 | cpu->valid_pss_table = false; |
| 441 | acpi_processor_unregister_performance(policy->cpu); |
| 442 | } |
| 443 | |
| 444 | static void intel_pstate_exit_perf_limits(struct cpufreq_policy *policy) |
| 445 | { |
| 446 | struct cpudata *cpu; |
| 447 | |
| 448 | cpu = all_cpu_data[policy->cpu]; |
| 449 | if (!cpu->valid_pss_table) |
| 450 | return; |
| 451 | |
| 452 | acpi_processor_unregister_performance(policy->cpu); |
| 453 | } |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 454 | #else |
Arnd Bergmann | 7a3ba76 | 2016-11-25 17:50:20 +0100 | [diff] [blame] | 455 | static inline void intel_pstate_init_acpi_perf_limits(struct cpufreq_policy *policy) |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 456 | { |
| 457 | } |
| 458 | |
Arnd Bergmann | 7a3ba76 | 2016-11-25 17:50:20 +0100 | [diff] [blame] | 459 | static inline void intel_pstate_exit_perf_limits(struct cpufreq_policy *policy) |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 460 | { |
| 461 | } |
| 462 | #endif |
| 463 | |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 464 | static inline void update_turbo_state(void) |
| 465 | { |
| 466 | u64 misc_en; |
| 467 | struct cpudata *cpu; |
| 468 | |
| 469 | cpu = all_cpu_data[0]; |
| 470 | rdmsrl(MSR_IA32_MISC_ENABLE, misc_en); |
Rafael J. Wysocki | 7de3255 | 2017-03-18 00:57:39 +0100 | [diff] [blame] | 471 | global.turbo_disabled = |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 472 | (misc_en & MSR_IA32_MISC_ENABLE_TURBO_DISABLE || |
| 473 | cpu->pstate.max_pstate == cpu->pstate.turbo_pstate); |
| 474 | } |
| 475 | |
Rafael J. Wysocki | c5a2ee7 | 2017-03-22 23:58:57 +0100 | [diff] [blame] | 476 | static int min_perf_pct_min(void) |
| 477 | { |
| 478 | struct cpudata *cpu = all_cpu_data[0]; |
Rafael J. Wysocki | 57caf4e | 2017-06-05 14:51:18 +0200 | [diff] [blame] | 479 | int turbo_pstate = cpu->pstate.turbo_pstate; |
Rafael J. Wysocki | c5a2ee7 | 2017-03-22 23:58:57 +0100 | [diff] [blame] | 480 | |
Rafael J. Wysocki | 57caf4e | 2017-06-05 14:51:18 +0200 | [diff] [blame] | 481 | return turbo_pstate ? |
Srinivas Pandruvada | d4436c0 | 2017-07-10 16:23:52 -0700 | [diff] [blame] | 482 | (cpu->pstate.min_pstate * 100 / turbo_pstate) : 0; |
Rafael J. Wysocki | c5a2ee7 | 2017-03-22 23:58:57 +0100 | [diff] [blame] | 483 | } |
| 484 | |
Srinivas Pandruvada | 8442885 | 2016-11-24 16:07:10 -0800 | [diff] [blame] | 485 | static s16 intel_pstate_get_epb(struct cpudata *cpu_data) |
| 486 | { |
| 487 | u64 epb; |
| 488 | int ret; |
| 489 | |
| 490 | if (!static_cpu_has(X86_FEATURE_EPB)) |
| 491 | return -ENXIO; |
| 492 | |
| 493 | ret = rdmsrl_on_cpu(cpu_data->cpu, MSR_IA32_ENERGY_PERF_BIAS, &epb); |
| 494 | if (ret) |
| 495 | return (s16)ret; |
| 496 | |
| 497 | return (s16)(epb & 0x0f); |
| 498 | } |
| 499 | |
| 500 | static s16 intel_pstate_get_epp(struct cpudata *cpu_data, u64 hwp_req_data) |
| 501 | { |
| 502 | s16 epp; |
| 503 | |
Srinivas Pandruvada | 984edbd | 2016-12-06 13:32:16 -0800 | [diff] [blame] | 504 | if (static_cpu_has(X86_FEATURE_HWP_EPP)) { |
| 505 | /* |
| 506 | * When hwp_req_data is 0, means that caller didn't read |
| 507 | * MSR_HWP_REQUEST, so need to read and get EPP. |
| 508 | */ |
| 509 | if (!hwp_req_data) { |
| 510 | epp = rdmsrl_on_cpu(cpu_data->cpu, MSR_HWP_REQUEST, |
| 511 | &hwp_req_data); |
| 512 | if (epp) |
| 513 | return epp; |
| 514 | } |
Srinivas Pandruvada | 8442885 | 2016-11-24 16:07:10 -0800 | [diff] [blame] | 515 | epp = (hwp_req_data >> 24) & 0xff; |
Srinivas Pandruvada | 984edbd | 2016-12-06 13:32:16 -0800 | [diff] [blame] | 516 | } else { |
Srinivas Pandruvada | 8442885 | 2016-11-24 16:07:10 -0800 | [diff] [blame] | 517 | /* When there is no EPP present, HWP uses EPB settings */ |
| 518 | epp = intel_pstate_get_epb(cpu_data); |
Srinivas Pandruvada | 984edbd | 2016-12-06 13:32:16 -0800 | [diff] [blame] | 519 | } |
Srinivas Pandruvada | 8442885 | 2016-11-24 16:07:10 -0800 | [diff] [blame] | 520 | |
| 521 | return epp; |
| 522 | } |
| 523 | |
Srinivas Pandruvada | 984edbd | 2016-12-06 13:32:16 -0800 | [diff] [blame] | 524 | static int intel_pstate_set_epb(int cpu, s16 pref) |
Srinivas Pandruvada | 8442885 | 2016-11-24 16:07:10 -0800 | [diff] [blame] | 525 | { |
| 526 | u64 epb; |
Srinivas Pandruvada | 984edbd | 2016-12-06 13:32:16 -0800 | [diff] [blame] | 527 | int ret; |
Srinivas Pandruvada | 8442885 | 2016-11-24 16:07:10 -0800 | [diff] [blame] | 528 | |
| 529 | if (!static_cpu_has(X86_FEATURE_EPB)) |
Srinivas Pandruvada | 984edbd | 2016-12-06 13:32:16 -0800 | [diff] [blame] | 530 | return -ENXIO; |
Srinivas Pandruvada | 8442885 | 2016-11-24 16:07:10 -0800 | [diff] [blame] | 531 | |
Srinivas Pandruvada | 984edbd | 2016-12-06 13:32:16 -0800 | [diff] [blame] | 532 | ret = rdmsrl_on_cpu(cpu, MSR_IA32_ENERGY_PERF_BIAS, &epb); |
| 533 | if (ret) |
| 534 | return ret; |
Srinivas Pandruvada | 8442885 | 2016-11-24 16:07:10 -0800 | [diff] [blame] | 535 | |
| 536 | epb = (epb & ~0x0f) | pref; |
| 537 | wrmsrl_on_cpu(cpu, MSR_IA32_ENERGY_PERF_BIAS, epb); |
Srinivas Pandruvada | 984edbd | 2016-12-06 13:32:16 -0800 | [diff] [blame] | 538 | |
| 539 | return 0; |
Srinivas Pandruvada | 8442885 | 2016-11-24 16:07:10 -0800 | [diff] [blame] | 540 | } |
| 541 | |
Srinivas Pandruvada | 984edbd | 2016-12-06 13:32:16 -0800 | [diff] [blame] | 542 | /* |
| 543 | * EPP/EPB display strings corresponding to EPP index in the |
| 544 | * energy_perf_strings[] |
| 545 | * index String |
| 546 | *------------------------------------- |
| 547 | * 0 default |
| 548 | * 1 performance |
| 549 | * 2 balance_performance |
| 550 | * 3 balance_power |
| 551 | * 4 power |
| 552 | */ |
| 553 | static const char * const energy_perf_strings[] = { |
| 554 | "default", |
| 555 | "performance", |
| 556 | "balance_performance", |
| 557 | "balance_power", |
| 558 | "power", |
| 559 | NULL |
| 560 | }; |
Len Brown | 3cedbc5 | 2017-05-01 23:06:08 -0400 | [diff] [blame] | 561 | static const unsigned int epp_values[] = { |
| 562 | HWP_EPP_PERFORMANCE, |
| 563 | HWP_EPP_BALANCE_PERFORMANCE, |
| 564 | HWP_EPP_BALANCE_POWERSAVE, |
| 565 | HWP_EPP_POWERSAVE |
| 566 | }; |
Srinivas Pandruvada | 984edbd | 2016-12-06 13:32:16 -0800 | [diff] [blame] | 567 | |
| 568 | static int intel_pstate_get_energy_pref_index(struct cpudata *cpu_data) |
| 569 | { |
| 570 | s16 epp; |
| 571 | int index = -EINVAL; |
| 572 | |
| 573 | epp = intel_pstate_get_epp(cpu_data, 0); |
| 574 | if (epp < 0) |
| 575 | return epp; |
| 576 | |
| 577 | if (static_cpu_has(X86_FEATURE_HWP_EPP)) { |
Len Brown | 3cedbc5 | 2017-05-01 23:06:08 -0400 | [diff] [blame] | 578 | if (epp == HWP_EPP_PERFORMANCE) |
| 579 | return 1; |
| 580 | if (epp <= HWP_EPP_BALANCE_PERFORMANCE) |
| 581 | return 2; |
| 582 | if (epp <= HWP_EPP_BALANCE_POWERSAVE) |
| 583 | return 3; |
| 584 | else |
| 585 | return 4; |
Srinivas Pandruvada | 984edbd | 2016-12-06 13:32:16 -0800 | [diff] [blame] | 586 | } else if (static_cpu_has(X86_FEATURE_EPB)) { |
| 587 | /* |
| 588 | * Range: |
| 589 | * 0x00-0x03 : Performance |
| 590 | * 0x04-0x07 : Balance performance |
| 591 | * 0x08-0x0B : Balance power |
| 592 | * 0x0C-0x0F : Power |
| 593 | * The EPB is a 4 bit value, but our ranges restrict the |
| 594 | * value which can be set. Here only using top two bits |
| 595 | * effectively. |
| 596 | */ |
| 597 | index = (epp >> 2) + 1; |
| 598 | } |
| 599 | |
| 600 | return index; |
| 601 | } |
| 602 | |
| 603 | static int intel_pstate_set_energy_pref_index(struct cpudata *cpu_data, |
| 604 | int pref_index) |
| 605 | { |
| 606 | int epp = -EINVAL; |
| 607 | int ret; |
| 608 | |
| 609 | if (!pref_index) |
| 610 | epp = cpu_data->epp_default; |
| 611 | |
| 612 | mutex_lock(&intel_pstate_limits_lock); |
| 613 | |
| 614 | if (static_cpu_has(X86_FEATURE_HWP_EPP)) { |
| 615 | u64 value; |
| 616 | |
| 617 | ret = rdmsrl_on_cpu(cpu_data->cpu, MSR_HWP_REQUEST, &value); |
| 618 | if (ret) |
| 619 | goto return_pref; |
| 620 | |
| 621 | value &= ~GENMASK_ULL(31, 24); |
| 622 | |
Srinivas Pandruvada | 984edbd | 2016-12-06 13:32:16 -0800 | [diff] [blame] | 623 | if (epp == -EINVAL) |
Len Brown | 3cedbc5 | 2017-05-01 23:06:08 -0400 | [diff] [blame] | 624 | epp = epp_values[pref_index - 1]; |
Srinivas Pandruvada | 984edbd | 2016-12-06 13:32:16 -0800 | [diff] [blame] | 625 | |
| 626 | value |= (u64)epp << 24; |
| 627 | ret = wrmsrl_on_cpu(cpu_data->cpu, MSR_HWP_REQUEST, value); |
| 628 | } else { |
| 629 | if (epp == -EINVAL) |
| 630 | epp = (pref_index - 1) << 2; |
| 631 | ret = intel_pstate_set_epb(cpu_data->cpu, epp); |
| 632 | } |
| 633 | return_pref: |
| 634 | mutex_unlock(&intel_pstate_limits_lock); |
| 635 | |
| 636 | return ret; |
| 637 | } |
| 638 | |
| 639 | static ssize_t show_energy_performance_available_preferences( |
| 640 | struct cpufreq_policy *policy, char *buf) |
| 641 | { |
| 642 | int i = 0; |
| 643 | int ret = 0; |
| 644 | |
| 645 | while (energy_perf_strings[i] != NULL) |
| 646 | ret += sprintf(&buf[ret], "%s ", energy_perf_strings[i++]); |
| 647 | |
| 648 | ret += sprintf(&buf[ret], "\n"); |
| 649 | |
| 650 | return ret; |
| 651 | } |
| 652 | |
| 653 | cpufreq_freq_attr_ro(energy_performance_available_preferences); |
| 654 | |
| 655 | static ssize_t store_energy_performance_preference( |
| 656 | struct cpufreq_policy *policy, const char *buf, size_t count) |
| 657 | { |
| 658 | struct cpudata *cpu_data = all_cpu_data[policy->cpu]; |
| 659 | char str_preference[21]; |
| 660 | int ret, i = 0; |
| 661 | |
| 662 | ret = sscanf(buf, "%20s", str_preference); |
| 663 | if (ret != 1) |
| 664 | return -EINVAL; |
| 665 | |
| 666 | while (energy_perf_strings[i] != NULL) { |
| 667 | if (!strcmp(str_preference, energy_perf_strings[i])) { |
| 668 | intel_pstate_set_energy_pref_index(cpu_data, i); |
| 669 | return count; |
| 670 | } |
| 671 | ++i; |
| 672 | } |
| 673 | |
| 674 | return -EINVAL; |
| 675 | } |
| 676 | |
| 677 | static ssize_t show_energy_performance_preference( |
| 678 | struct cpufreq_policy *policy, char *buf) |
| 679 | { |
| 680 | struct cpudata *cpu_data = all_cpu_data[policy->cpu]; |
| 681 | int preference; |
| 682 | |
| 683 | preference = intel_pstate_get_energy_pref_index(cpu_data); |
| 684 | if (preference < 0) |
| 685 | return preference; |
| 686 | |
| 687 | return sprintf(buf, "%s\n", energy_perf_strings[preference]); |
| 688 | } |
| 689 | |
| 690 | cpufreq_freq_attr_rw(energy_performance_preference); |
| 691 | |
| 692 | static struct freq_attr *hwp_cpufreq_attrs[] = { |
| 693 | &energy_performance_preference, |
| 694 | &energy_performance_available_preferences, |
| 695 | NULL, |
| 696 | }; |
| 697 | |
Srinivas Pandruvada | 1a4fe38 | 2017-06-12 16:30:27 -0700 | [diff] [blame] | 698 | static void intel_pstate_get_hwp_max(unsigned int cpu, int *phy_max, |
| 699 | int *current_max) |
| 700 | { |
| 701 | u64 cap; |
| 702 | |
| 703 | rdmsrl_on_cpu(cpu, MSR_HWP_CAPABILITIES, &cap); |
Srinivas Pandruvada | e0efd5b | 2018-06-05 14:42:39 -0700 | [diff] [blame] | 704 | WRITE_ONCE(all_cpu_data[cpu]->hwp_cap_cached, cap); |
Srinivas Pandruvada | 1a4fe38 | 2017-06-12 16:30:27 -0700 | [diff] [blame] | 705 | if (global.no_turbo) |
| 706 | *current_max = HWP_GUARANTEED_PERF(cap); |
| 707 | else |
| 708 | *current_max = HWP_HIGHEST_PERF(cap); |
| 709 | |
| 710 | *phy_max = HWP_HIGHEST_PERF(cap); |
| 711 | } |
| 712 | |
Rafael J. Wysocki | 2bfc4cb | 2017-03-28 00:22:16 +0200 | [diff] [blame] | 713 | static void intel_pstate_hwp_set(unsigned int cpu) |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 714 | { |
Rafael J. Wysocki | 2bfc4cb | 2017-03-28 00:22:16 +0200 | [diff] [blame] | 715 | struct cpudata *cpu_data = all_cpu_data[cpu]; |
Srinivas Pandruvada | 1a4fe38 | 2017-06-12 16:30:27 -0700 | [diff] [blame] | 716 | int max, min; |
| 717 | u64 value; |
Rafael J. Wysocki | 2bfc4cb | 2017-03-28 00:22:16 +0200 | [diff] [blame] | 718 | s16 epp; |
Kristen Carlson Accardi | 74da56c | 2015-09-09 11:41:22 -0700 | [diff] [blame] | 719 | |
Srinivas Pandruvada | 1a4fe38 | 2017-06-12 16:30:27 -0700 | [diff] [blame] | 720 | max = cpu_data->max_perf_ratio; |
| 721 | min = cpu_data->min_perf_ratio; |
Srinivas Pandruvada | eae48f0 | 2016-10-25 13:20:40 -0700 | [diff] [blame] | 722 | |
Rafael J. Wysocki | 2bfc4cb | 2017-03-28 00:22:16 +0200 | [diff] [blame] | 723 | if (cpu_data->policy == CPUFREQ_POLICY_PERFORMANCE) |
| 724 | min = max; |
Srinivas Pandruvada | f9f4872 | 2016-10-08 12:42:38 -0700 | [diff] [blame] | 725 | |
Rafael J. Wysocki | 2bfc4cb | 2017-03-28 00:22:16 +0200 | [diff] [blame] | 726 | rdmsrl_on_cpu(cpu, MSR_HWP_REQUEST, &value); |
Srinivas Pandruvada | eae48f0 | 2016-10-25 13:20:40 -0700 | [diff] [blame] | 727 | |
Rafael J. Wysocki | 2bfc4cb | 2017-03-28 00:22:16 +0200 | [diff] [blame] | 728 | value &= ~HWP_MIN_PERF(~0L); |
| 729 | value |= HWP_MIN_PERF(min); |
Srinivas Pandruvada | 3f8ed54 | 2017-03-13 18:30:12 -0700 | [diff] [blame] | 730 | |
Rafael J. Wysocki | 2bfc4cb | 2017-03-28 00:22:16 +0200 | [diff] [blame] | 731 | value &= ~HWP_MAX_PERF(~0L); |
| 732 | value |= HWP_MAX_PERF(max); |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 733 | |
Rafael J. Wysocki | 2bfc4cb | 2017-03-28 00:22:16 +0200 | [diff] [blame] | 734 | if (cpu_data->epp_policy == cpu_data->policy) |
| 735 | goto skip_epp; |
Srinivas Pandruvada | 8442885 | 2016-11-24 16:07:10 -0800 | [diff] [blame] | 736 | |
Rafael J. Wysocki | 2bfc4cb | 2017-03-28 00:22:16 +0200 | [diff] [blame] | 737 | cpu_data->epp_policy = cpu_data->policy; |
| 738 | |
| 739 | if (cpu_data->epp_saved >= 0) { |
| 740 | epp = cpu_data->epp_saved; |
| 741 | cpu_data->epp_saved = -EINVAL; |
| 742 | goto update_epp; |
| 743 | } |
| 744 | |
| 745 | if (cpu_data->policy == CPUFREQ_POLICY_PERFORMANCE) { |
| 746 | epp = intel_pstate_get_epp(cpu_data, value); |
| 747 | cpu_data->epp_powersave = epp; |
| 748 | /* If EPP read was failed, then don't try to write */ |
| 749 | if (epp < 0) |
Srinivas Pandruvada | 8442885 | 2016-11-24 16:07:10 -0800 | [diff] [blame] | 750 | goto skip_epp; |
| 751 | |
Rafael J. Wysocki | 2bfc4cb | 2017-03-28 00:22:16 +0200 | [diff] [blame] | 752 | epp = 0; |
| 753 | } else { |
| 754 | /* skip setting EPP, when saved value is invalid */ |
| 755 | if (cpu_data->epp_powersave < 0) |
| 756 | goto skip_epp; |
Srinivas Pandruvada | 8442885 | 2016-11-24 16:07:10 -0800 | [diff] [blame] | 757 | |
Rafael J. Wysocki | 2bfc4cb | 2017-03-28 00:22:16 +0200 | [diff] [blame] | 758 | /* |
| 759 | * No need to restore EPP when it is not zero. This |
| 760 | * means: |
| 761 | * - Policy is not changed |
| 762 | * - user has manually changed |
| 763 | * - Error reading EPB |
| 764 | */ |
| 765 | epp = intel_pstate_get_epp(cpu_data, value); |
| 766 | if (epp) |
| 767 | goto skip_epp; |
Srinivas Pandruvada | 984edbd | 2016-12-06 13:32:16 -0800 | [diff] [blame] | 768 | |
Rafael J. Wysocki | 2bfc4cb | 2017-03-28 00:22:16 +0200 | [diff] [blame] | 769 | epp = cpu_data->epp_powersave; |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 770 | } |
Rafael J. Wysocki | 2bfc4cb | 2017-03-28 00:22:16 +0200 | [diff] [blame] | 771 | update_epp: |
| 772 | if (static_cpu_has(X86_FEATURE_HWP_EPP)) { |
| 773 | value &= ~GENMASK_ULL(31, 24); |
| 774 | value |= (u64)epp << 24; |
| 775 | } else { |
| 776 | intel_pstate_set_epb(cpu, epp); |
| 777 | } |
| 778 | skip_epp: |
Srinivas Pandruvada | e0efd5b | 2018-06-05 14:42:39 -0700 | [diff] [blame] | 779 | WRITE_ONCE(cpu_data->hwp_req_cached, value); |
Rafael J. Wysocki | 2bfc4cb | 2017-03-28 00:22:16 +0200 | [diff] [blame] | 780 | wrmsrl_on_cpu(cpu, MSR_HWP_REQUEST, value); |
Viresh Kumar | 41cfd64 | 2016-02-22 10:27:46 +0530 | [diff] [blame] | 781 | } |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 782 | |
Srinivas Pandruvada | 984edbd | 2016-12-06 13:32:16 -0800 | [diff] [blame] | 783 | static int intel_pstate_hwp_save_state(struct cpufreq_policy *policy) |
| 784 | { |
| 785 | struct cpudata *cpu_data = all_cpu_data[policy->cpu]; |
| 786 | |
| 787 | if (!hwp_active) |
| 788 | return 0; |
| 789 | |
| 790 | cpu_data->epp_saved = intel_pstate_get_epp(cpu_data, 0); |
| 791 | |
| 792 | return 0; |
| 793 | } |
| 794 | |
Chen Yu | 70f6bf2 | 2018-01-29 10:27:57 +0800 | [diff] [blame] | 795 | static void intel_pstate_hwp_enable(struct cpudata *cpudata); |
| 796 | |
Srinivas Pandruvada | 8442885 | 2016-11-24 16:07:10 -0800 | [diff] [blame] | 797 | static int intel_pstate_resume(struct cpufreq_policy *policy) |
| 798 | { |
| 799 | if (!hwp_active) |
| 800 | return 0; |
| 801 | |
Rafael J. Wysocki | aa43924 | 2016-12-30 15:56:14 +0100 | [diff] [blame] | 802 | mutex_lock(&intel_pstate_limits_lock); |
| 803 | |
Chen Yu | 70f6bf2 | 2018-01-29 10:27:57 +0800 | [diff] [blame] | 804 | if (policy->cpu == 0) |
| 805 | intel_pstate_hwp_enable(all_cpu_data[policy->cpu]); |
| 806 | |
Srinivas Pandruvada | 8442885 | 2016-11-24 16:07:10 -0800 | [diff] [blame] | 807 | all_cpu_data[policy->cpu]->epp_policy = 0; |
Rafael J. Wysocki | 2bfc4cb | 2017-03-28 00:22:16 +0200 | [diff] [blame] | 808 | intel_pstate_hwp_set(policy->cpu); |
Rafael J. Wysocki | aa43924 | 2016-12-30 15:56:14 +0100 | [diff] [blame] | 809 | |
| 810 | mutex_unlock(&intel_pstate_limits_lock); |
| 811 | |
Rafael J. Wysocki | 5f98ced | 2017-03-09 16:30:38 +0100 | [diff] [blame] | 812 | return 0; |
Srinivas Pandruvada | 8442885 | 2016-11-24 16:07:10 -0800 | [diff] [blame] | 813 | } |
| 814 | |
Rafael J. Wysocki | 111b8b3 | 2016-12-30 15:58:21 +0100 | [diff] [blame] | 815 | static void intel_pstate_update_policies(void) |
Viresh Kumar | 41cfd64 | 2016-02-22 10:27:46 +0530 | [diff] [blame] | 816 | { |
Rafael J. Wysocki | 111b8b3 | 2016-12-30 15:58:21 +0100 | [diff] [blame] | 817 | int cpu; |
| 818 | |
| 819 | for_each_possible_cpu(cpu) |
| 820 | cpufreq_update_policy(cpu); |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 821 | } |
| 822 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 823 | /************************** sysfs begin ************************/ |
| 824 | #define show_one(file_name, object) \ |
| 825 | static ssize_t show_##file_name \ |
| 826 | (struct kobject *kobj, struct attribute *attr, char *buf) \ |
| 827 | { \ |
Rafael J. Wysocki | 7de3255 | 2017-03-18 00:57:39 +0100 | [diff] [blame] | 828 | return sprintf(buf, "%u\n", global.object); \ |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 829 | } |
| 830 | |
Rafael J. Wysocki | fb1fe10 | 2017-01-05 02:53:12 +0100 | [diff] [blame] | 831 | static ssize_t intel_pstate_show_status(char *buf); |
| 832 | static int intel_pstate_update_status(const char *buf, size_t size); |
| 833 | |
| 834 | static ssize_t show_status(struct kobject *kobj, |
| 835 | struct attribute *attr, char *buf) |
| 836 | { |
| 837 | ssize_t ret; |
| 838 | |
| 839 | mutex_lock(&intel_pstate_driver_lock); |
| 840 | ret = intel_pstate_show_status(buf); |
| 841 | mutex_unlock(&intel_pstate_driver_lock); |
| 842 | |
| 843 | return ret; |
| 844 | } |
| 845 | |
| 846 | static ssize_t store_status(struct kobject *a, struct attribute *b, |
| 847 | const char *buf, size_t count) |
| 848 | { |
| 849 | char *p = memchr(buf, '\n', count); |
| 850 | int ret; |
| 851 | |
| 852 | mutex_lock(&intel_pstate_driver_lock); |
| 853 | ret = intel_pstate_update_status(buf, p ? p - buf : count); |
| 854 | mutex_unlock(&intel_pstate_driver_lock); |
| 855 | |
| 856 | return ret < 0 ? ret : count; |
| 857 | } |
| 858 | |
Kristen Carlson Accardi | d01b1f4 | 2015-01-28 15:03:27 -0800 | [diff] [blame] | 859 | static ssize_t show_turbo_pct(struct kobject *kobj, |
| 860 | struct attribute *attr, char *buf) |
| 861 | { |
| 862 | struct cpudata *cpu; |
| 863 | int total, no_turbo, turbo_pct; |
| 864 | uint32_t turbo_fp; |
| 865 | |
Rafael J. Wysocki | 0c30b65 | 2017-01-11 04:12:16 +0100 | [diff] [blame] | 866 | mutex_lock(&intel_pstate_driver_lock); |
| 867 | |
Rafael J. Wysocki | ee8df89 | 2017-03-28 00:13:00 +0200 | [diff] [blame] | 868 | if (!intel_pstate_driver) { |
Rafael J. Wysocki | 0c30b65 | 2017-01-11 04:12:16 +0100 | [diff] [blame] | 869 | mutex_unlock(&intel_pstate_driver_lock); |
| 870 | return -EAGAIN; |
| 871 | } |
| 872 | |
Kristen Carlson Accardi | d01b1f4 | 2015-01-28 15:03:27 -0800 | [diff] [blame] | 873 | cpu = all_cpu_data[0]; |
| 874 | |
| 875 | total = cpu->pstate.turbo_pstate - cpu->pstate.min_pstate + 1; |
| 876 | no_turbo = cpu->pstate.max_pstate - cpu->pstate.min_pstate + 1; |
Rafael J. Wysocki | 22590ef | 2016-04-09 01:25:58 +0200 | [diff] [blame] | 877 | turbo_fp = div_fp(no_turbo, total); |
Kristen Carlson Accardi | d01b1f4 | 2015-01-28 15:03:27 -0800 | [diff] [blame] | 878 | turbo_pct = 100 - fp_toint(mul_fp(turbo_fp, int_tofp(100))); |
Rafael J. Wysocki | 0c30b65 | 2017-01-11 04:12:16 +0100 | [diff] [blame] | 879 | |
| 880 | mutex_unlock(&intel_pstate_driver_lock); |
| 881 | |
Kristen Carlson Accardi | d01b1f4 | 2015-01-28 15:03:27 -0800 | [diff] [blame] | 882 | return sprintf(buf, "%u\n", turbo_pct); |
| 883 | } |
| 884 | |
Kristen Carlson Accardi | 0522424 | 2015-01-28 15:03:28 -0800 | [diff] [blame] | 885 | static ssize_t show_num_pstates(struct kobject *kobj, |
| 886 | struct attribute *attr, char *buf) |
| 887 | { |
| 888 | struct cpudata *cpu; |
| 889 | int total; |
| 890 | |
Rafael J. Wysocki | 0c30b65 | 2017-01-11 04:12:16 +0100 | [diff] [blame] | 891 | mutex_lock(&intel_pstate_driver_lock); |
| 892 | |
Rafael J. Wysocki | ee8df89 | 2017-03-28 00:13:00 +0200 | [diff] [blame] | 893 | if (!intel_pstate_driver) { |
Rafael J. Wysocki | 0c30b65 | 2017-01-11 04:12:16 +0100 | [diff] [blame] | 894 | mutex_unlock(&intel_pstate_driver_lock); |
| 895 | return -EAGAIN; |
| 896 | } |
| 897 | |
Kristen Carlson Accardi | 0522424 | 2015-01-28 15:03:28 -0800 | [diff] [blame] | 898 | cpu = all_cpu_data[0]; |
| 899 | total = cpu->pstate.turbo_pstate - cpu->pstate.min_pstate + 1; |
Rafael J. Wysocki | 0c30b65 | 2017-01-11 04:12:16 +0100 | [diff] [blame] | 900 | |
| 901 | mutex_unlock(&intel_pstate_driver_lock); |
| 902 | |
Kristen Carlson Accardi | 0522424 | 2015-01-28 15:03:28 -0800 | [diff] [blame] | 903 | return sprintf(buf, "%u\n", total); |
| 904 | } |
| 905 | |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 906 | static ssize_t show_no_turbo(struct kobject *kobj, |
| 907 | struct attribute *attr, char *buf) |
| 908 | { |
| 909 | ssize_t ret; |
| 910 | |
Rafael J. Wysocki | 0c30b65 | 2017-01-11 04:12:16 +0100 | [diff] [blame] | 911 | mutex_lock(&intel_pstate_driver_lock); |
| 912 | |
Rafael J. Wysocki | ee8df89 | 2017-03-28 00:13:00 +0200 | [diff] [blame] | 913 | if (!intel_pstate_driver) { |
Rafael J. Wysocki | 0c30b65 | 2017-01-11 04:12:16 +0100 | [diff] [blame] | 914 | mutex_unlock(&intel_pstate_driver_lock); |
| 915 | return -EAGAIN; |
| 916 | } |
| 917 | |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 918 | update_turbo_state(); |
Rafael J. Wysocki | 7de3255 | 2017-03-18 00:57:39 +0100 | [diff] [blame] | 919 | if (global.turbo_disabled) |
| 920 | ret = sprintf(buf, "%u\n", global.turbo_disabled); |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 921 | else |
Rafael J. Wysocki | 7de3255 | 2017-03-18 00:57:39 +0100 | [diff] [blame] | 922 | ret = sprintf(buf, "%u\n", global.no_turbo); |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 923 | |
Rafael J. Wysocki | 0c30b65 | 2017-01-11 04:12:16 +0100 | [diff] [blame] | 924 | mutex_unlock(&intel_pstate_driver_lock); |
| 925 | |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 926 | return ret; |
| 927 | } |
| 928 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 929 | static ssize_t store_no_turbo(struct kobject *a, struct attribute *b, |
Stratos Karafotis | c410833 | 2014-07-18 08:37:23 -0700 | [diff] [blame] | 930 | const char *buf, size_t count) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 931 | { |
| 932 | unsigned int input; |
| 933 | int ret; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 934 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 935 | ret = sscanf(buf, "%u", &input); |
| 936 | if (ret != 1) |
| 937 | return -EINVAL; |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 938 | |
Rafael J. Wysocki | 0c30b65 | 2017-01-11 04:12:16 +0100 | [diff] [blame] | 939 | mutex_lock(&intel_pstate_driver_lock); |
| 940 | |
Rafael J. Wysocki | ee8df89 | 2017-03-28 00:13:00 +0200 | [diff] [blame] | 941 | if (!intel_pstate_driver) { |
Rafael J. Wysocki | 0c30b65 | 2017-01-11 04:12:16 +0100 | [diff] [blame] | 942 | mutex_unlock(&intel_pstate_driver_lock); |
| 943 | return -EAGAIN; |
| 944 | } |
| 945 | |
Srinivas Pandruvada | a410c03d | 2016-10-28 10:44:52 -0700 | [diff] [blame] | 946 | mutex_lock(&intel_pstate_limits_lock); |
| 947 | |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 948 | update_turbo_state(); |
Rafael J. Wysocki | 7de3255 | 2017-03-18 00:57:39 +0100 | [diff] [blame] | 949 | if (global.turbo_disabled) { |
Joe Perches | 4836df1 | 2016-04-05 13:28:23 -0700 | [diff] [blame] | 950 | pr_warn("Turbo disabled by BIOS or unavailable on processor\n"); |
Srinivas Pandruvada | a410c03d | 2016-10-28 10:44:52 -0700 | [diff] [blame] | 951 | mutex_unlock(&intel_pstate_limits_lock); |
Rafael J. Wysocki | 0c30b65 | 2017-01-11 04:12:16 +0100 | [diff] [blame] | 952 | mutex_unlock(&intel_pstate_driver_lock); |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 953 | return -EPERM; |
Dirk Brandewie | dd5fbf7 | 2014-06-20 07:27:59 -0700 | [diff] [blame] | 954 | } |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 955 | |
Rafael J. Wysocki | 7de3255 | 2017-03-18 00:57:39 +0100 | [diff] [blame] | 956 | global.no_turbo = clamp_t(int, input, 0, 1); |
Rafael J. Wysocki | 111b8b3 | 2016-12-30 15:58:21 +0100 | [diff] [blame] | 957 | |
Rafael J. Wysocki | c5a2ee7 | 2017-03-22 23:58:57 +0100 | [diff] [blame] | 958 | if (global.no_turbo) { |
| 959 | struct cpudata *cpu = all_cpu_data[0]; |
| 960 | int pct = cpu->pstate.max_pstate * 100 / cpu->pstate.turbo_pstate; |
| 961 | |
| 962 | /* Squash the global minimum into the permitted range. */ |
| 963 | if (global.min_perf_pct > pct) |
| 964 | global.min_perf_pct = pct; |
| 965 | } |
| 966 | |
Rafael J. Wysocki | cd59b4be | 2017-03-01 00:07:36 +0100 | [diff] [blame] | 967 | mutex_unlock(&intel_pstate_limits_lock); |
| 968 | |
Rafael J. Wysocki | 7de3255 | 2017-03-18 00:57:39 +0100 | [diff] [blame] | 969 | intel_pstate_update_policies(); |
| 970 | |
Rafael J. Wysocki | 0c30b65 | 2017-01-11 04:12:16 +0100 | [diff] [blame] | 971 | mutex_unlock(&intel_pstate_driver_lock); |
| 972 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 973 | return count; |
| 974 | } |
| 975 | |
| 976 | static ssize_t store_max_perf_pct(struct kobject *a, struct attribute *b, |
Stratos Karafotis | c410833 | 2014-07-18 08:37:23 -0700 | [diff] [blame] | 977 | const char *buf, size_t count) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 978 | { |
| 979 | unsigned int input; |
| 980 | int ret; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 981 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 982 | ret = sscanf(buf, "%u", &input); |
| 983 | if (ret != 1) |
| 984 | return -EINVAL; |
| 985 | |
Rafael J. Wysocki | 0c30b65 | 2017-01-11 04:12:16 +0100 | [diff] [blame] | 986 | mutex_lock(&intel_pstate_driver_lock); |
| 987 | |
Rafael J. Wysocki | ee8df89 | 2017-03-28 00:13:00 +0200 | [diff] [blame] | 988 | if (!intel_pstate_driver) { |
Rafael J. Wysocki | 0c30b65 | 2017-01-11 04:12:16 +0100 | [diff] [blame] | 989 | mutex_unlock(&intel_pstate_driver_lock); |
| 990 | return -EAGAIN; |
| 991 | } |
| 992 | |
Srinivas Pandruvada | a410c03d | 2016-10-28 10:44:52 -0700 | [diff] [blame] | 993 | mutex_lock(&intel_pstate_limits_lock); |
| 994 | |
Rafael J. Wysocki | c5a2ee7 | 2017-03-22 23:58:57 +0100 | [diff] [blame] | 995 | global.max_perf_pct = clamp_t(int, input, global.min_perf_pct, 100); |
Rafael J. Wysocki | 111b8b3 | 2016-12-30 15:58:21 +0100 | [diff] [blame] | 996 | |
Rafael J. Wysocki | cd59b4be | 2017-03-01 00:07:36 +0100 | [diff] [blame] | 997 | mutex_unlock(&intel_pstate_limits_lock); |
| 998 | |
Rafael J. Wysocki | 7de3255 | 2017-03-18 00:57:39 +0100 | [diff] [blame] | 999 | intel_pstate_update_policies(); |
| 1000 | |
Rafael J. Wysocki | 0c30b65 | 2017-01-11 04:12:16 +0100 | [diff] [blame] | 1001 | mutex_unlock(&intel_pstate_driver_lock); |
| 1002 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1003 | return count; |
| 1004 | } |
| 1005 | |
| 1006 | static ssize_t store_min_perf_pct(struct kobject *a, struct attribute *b, |
Stratos Karafotis | c410833 | 2014-07-18 08:37:23 -0700 | [diff] [blame] | 1007 | const char *buf, size_t count) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1008 | { |
| 1009 | unsigned int input; |
| 1010 | int ret; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 1011 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1012 | ret = sscanf(buf, "%u", &input); |
| 1013 | if (ret != 1) |
| 1014 | return -EINVAL; |
Kristen Carlson Accardi | a047599 | 2015-01-29 13:03:52 -0800 | [diff] [blame] | 1015 | |
Rafael J. Wysocki | 0c30b65 | 2017-01-11 04:12:16 +0100 | [diff] [blame] | 1016 | mutex_lock(&intel_pstate_driver_lock); |
| 1017 | |
Rafael J. Wysocki | ee8df89 | 2017-03-28 00:13:00 +0200 | [diff] [blame] | 1018 | if (!intel_pstate_driver) { |
Rafael J. Wysocki | 0c30b65 | 2017-01-11 04:12:16 +0100 | [diff] [blame] | 1019 | mutex_unlock(&intel_pstate_driver_lock); |
| 1020 | return -EAGAIN; |
| 1021 | } |
| 1022 | |
Srinivas Pandruvada | a410c03d | 2016-10-28 10:44:52 -0700 | [diff] [blame] | 1023 | mutex_lock(&intel_pstate_limits_lock); |
| 1024 | |
Rafael J. Wysocki | c5a2ee7 | 2017-03-22 23:58:57 +0100 | [diff] [blame] | 1025 | global.min_perf_pct = clamp_t(int, input, |
| 1026 | min_perf_pct_min(), global.max_perf_pct); |
Rafael J. Wysocki | 111b8b3 | 2016-12-30 15:58:21 +0100 | [diff] [blame] | 1027 | |
Rafael J. Wysocki | cd59b4be | 2017-03-01 00:07:36 +0100 | [diff] [blame] | 1028 | mutex_unlock(&intel_pstate_limits_lock); |
| 1029 | |
Rafael J. Wysocki | 7de3255 | 2017-03-18 00:57:39 +0100 | [diff] [blame] | 1030 | intel_pstate_update_policies(); |
| 1031 | |
Rafael J. Wysocki | 0c30b65 | 2017-01-11 04:12:16 +0100 | [diff] [blame] | 1032 | mutex_unlock(&intel_pstate_driver_lock); |
| 1033 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1034 | return count; |
| 1035 | } |
| 1036 | |
Srinivas Pandruvada | aaaece3 | 2018-06-05 14:42:41 -0700 | [diff] [blame] | 1037 | static ssize_t show_hwp_dynamic_boost(struct kobject *kobj, |
| 1038 | struct attribute *attr, char *buf) |
| 1039 | { |
| 1040 | return sprintf(buf, "%u\n", hwp_boost); |
| 1041 | } |
| 1042 | |
| 1043 | static ssize_t store_hwp_dynamic_boost(struct kobject *a, struct attribute *b, |
| 1044 | const char *buf, size_t count) |
| 1045 | { |
| 1046 | unsigned int input; |
| 1047 | int ret; |
| 1048 | |
| 1049 | ret = kstrtouint(buf, 10, &input); |
| 1050 | if (ret) |
| 1051 | return ret; |
| 1052 | |
| 1053 | mutex_lock(&intel_pstate_driver_lock); |
| 1054 | hwp_boost = !!input; |
| 1055 | intel_pstate_update_policies(); |
| 1056 | mutex_unlock(&intel_pstate_driver_lock); |
| 1057 | |
| 1058 | return count; |
| 1059 | } |
| 1060 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1061 | show_one(max_perf_pct, max_perf_pct); |
| 1062 | show_one(min_perf_pct, min_perf_pct); |
| 1063 | |
Rafael J. Wysocki | fb1fe10 | 2017-01-05 02:53:12 +0100 | [diff] [blame] | 1064 | define_one_global_rw(status); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1065 | define_one_global_rw(no_turbo); |
| 1066 | define_one_global_rw(max_perf_pct); |
| 1067 | define_one_global_rw(min_perf_pct); |
Kristen Carlson Accardi | d01b1f4 | 2015-01-28 15:03:27 -0800 | [diff] [blame] | 1068 | define_one_global_ro(turbo_pct); |
Kristen Carlson Accardi | 0522424 | 2015-01-28 15:03:28 -0800 | [diff] [blame] | 1069 | define_one_global_ro(num_pstates); |
Srinivas Pandruvada | aaaece3 | 2018-06-05 14:42:41 -0700 | [diff] [blame] | 1070 | define_one_global_rw(hwp_dynamic_boost); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1071 | |
| 1072 | static struct attribute *intel_pstate_attributes[] = { |
Rafael J. Wysocki | fb1fe10 | 2017-01-05 02:53:12 +0100 | [diff] [blame] | 1073 | &status.attr, |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1074 | &no_turbo.attr, |
Kristen Carlson Accardi | d01b1f4 | 2015-01-28 15:03:27 -0800 | [diff] [blame] | 1075 | &turbo_pct.attr, |
Kristen Carlson Accardi | 0522424 | 2015-01-28 15:03:28 -0800 | [diff] [blame] | 1076 | &num_pstates.attr, |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1077 | NULL |
| 1078 | }; |
| 1079 | |
Arvind Yadav | 106c9c7 | 2017-07-03 13:40:33 +0530 | [diff] [blame] | 1080 | static const struct attribute_group intel_pstate_attr_group = { |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1081 | .attrs = intel_pstate_attributes, |
| 1082 | }; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1083 | |
Stratos Karafotis | 317dd50 | 2014-07-18 08:37:17 -0700 | [diff] [blame] | 1084 | static void __init intel_pstate_sysfs_expose_params(void) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1085 | { |
Stratos Karafotis | 317dd50 | 2014-07-18 08:37:17 -0700 | [diff] [blame] | 1086 | struct kobject *intel_pstate_kobject; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1087 | int rc; |
| 1088 | |
| 1089 | intel_pstate_kobject = kobject_create_and_add("intel_pstate", |
| 1090 | &cpu_subsys.dev_root->kobj); |
Srinivas Pandruvada | eae48f0 | 2016-10-25 13:20:40 -0700 | [diff] [blame] | 1091 | if (WARN_ON(!intel_pstate_kobject)) |
| 1092 | return; |
| 1093 | |
Stratos Karafotis | 2d8d1f1 | 2014-07-18 08:37:20 -0700 | [diff] [blame] | 1094 | rc = sysfs_create_group(intel_pstate_kobject, &intel_pstate_attr_group); |
Srinivas Pandruvada | eae48f0 | 2016-10-25 13:20:40 -0700 | [diff] [blame] | 1095 | if (WARN_ON(rc)) |
| 1096 | return; |
| 1097 | |
| 1098 | /* |
| 1099 | * If per cpu limits are enforced there are no global limits, so |
| 1100 | * return without creating max/min_perf_pct attributes |
| 1101 | */ |
| 1102 | if (per_cpu_limits) |
| 1103 | return; |
| 1104 | |
| 1105 | rc = sysfs_create_file(intel_pstate_kobject, &max_perf_pct.attr); |
| 1106 | WARN_ON(rc); |
| 1107 | |
| 1108 | rc = sysfs_create_file(intel_pstate_kobject, &min_perf_pct.attr); |
| 1109 | WARN_ON(rc); |
| 1110 | |
Srinivas Pandruvada | aaaece3 | 2018-06-05 14:42:41 -0700 | [diff] [blame] | 1111 | if (hwp_active) { |
| 1112 | rc = sysfs_create_file(intel_pstate_kobject, |
| 1113 | &hwp_dynamic_boost.attr); |
| 1114 | WARN_ON(rc); |
| 1115 | } |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1116 | } |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1117 | /************************** sysfs end ************************/ |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 1118 | |
Kristen Carlson Accardi | ba88d43 | 2015-07-14 09:46:23 -0700 | [diff] [blame] | 1119 | static void intel_pstate_hwp_enable(struct cpudata *cpudata) |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 1120 | { |
Srinivas Pandruvada | f05c966 | 2016-02-25 15:09:31 -0800 | [diff] [blame] | 1121 | /* First disable HWP notification interrupt as we don't process them */ |
Srinivas Pandruvada | da7de91 | 2016-07-19 16:52:01 -0700 | [diff] [blame] | 1122 | if (static_cpu_has(X86_FEATURE_HWP_NOTIFY)) |
| 1123 | wrmsrl_on_cpu(cpudata->cpu, MSR_HWP_INTERRUPT, 0x00); |
Srinivas Pandruvada | f05c966 | 2016-02-25 15:09:31 -0800 | [diff] [blame] | 1124 | |
Kristen Carlson Accardi | ba88d43 | 2015-07-14 09:46:23 -0700 | [diff] [blame] | 1125 | wrmsrl_on_cpu(cpudata->cpu, MSR_PM_ENABLE, 0x1); |
Srinivas Pandruvada | 8442885 | 2016-11-24 16:07:10 -0800 | [diff] [blame] | 1126 | cpudata->epp_policy = 0; |
Srinivas Pandruvada | 984edbd | 2016-12-06 13:32:16 -0800 | [diff] [blame] | 1127 | if (cpudata->epp_default == -EINVAL) |
| 1128 | cpudata->epp_default = intel_pstate_get_epp(cpudata, 0); |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 1129 | } |
| 1130 | |
Srinivas Pandruvada | 6e978b2 | 2017-02-03 14:18:39 -0800 | [diff] [blame] | 1131 | #define MSR_IA32_POWER_CTL_BIT_EE 19 |
| 1132 | |
| 1133 | /* Disable energy efficiency optimization */ |
| 1134 | static void intel_pstate_disable_ee(int cpu) |
| 1135 | { |
| 1136 | u64 power_ctl; |
| 1137 | int ret; |
| 1138 | |
| 1139 | ret = rdmsrl_on_cpu(cpu, MSR_IA32_POWER_CTL, &power_ctl); |
| 1140 | if (ret) |
| 1141 | return; |
| 1142 | |
| 1143 | if (!(power_ctl & BIT(MSR_IA32_POWER_CTL_BIT_EE))) { |
| 1144 | pr_info("Disabling energy efficiency optimization\n"); |
| 1145 | power_ctl |= BIT(MSR_IA32_POWER_CTL_BIT_EE); |
| 1146 | wrmsrl_on_cpu(cpu, MSR_IA32_POWER_CTL, power_ctl); |
| 1147 | } |
| 1148 | } |
| 1149 | |
Philippe Longepe | 938d21a | 2015-11-09 17:40:46 -0800 | [diff] [blame] | 1150 | static int atom_get_min_pstate(void) |
Dirk Brandewie | 19e77c2 | 2013-10-21 09:20:35 -0700 | [diff] [blame] | 1151 | { |
| 1152 | u64 value; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 1153 | |
Len Brown | 92134bd | 2017-02-25 16:55:17 -0500 | [diff] [blame] | 1154 | rdmsrl(MSR_ATOM_CORE_RATIOS, value); |
Dirk Brandewie | c16ed06 | 2014-06-20 07:27:58 -0700 | [diff] [blame] | 1155 | return (value >> 8) & 0x7F; |
Dirk Brandewie | 19e77c2 | 2013-10-21 09:20:35 -0700 | [diff] [blame] | 1156 | } |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1157 | |
Philippe Longepe | 938d21a | 2015-11-09 17:40:46 -0800 | [diff] [blame] | 1158 | static int atom_get_max_pstate(void) |
Dirk Brandewie | 19e77c2 | 2013-10-21 09:20:35 -0700 | [diff] [blame] | 1159 | { |
| 1160 | u64 value; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 1161 | |
Len Brown | 92134bd | 2017-02-25 16:55:17 -0500 | [diff] [blame] | 1162 | rdmsrl(MSR_ATOM_CORE_RATIOS, value); |
Dirk Brandewie | c16ed06 | 2014-06-20 07:27:58 -0700 | [diff] [blame] | 1163 | return (value >> 16) & 0x7F; |
Dirk Brandewie | 19e77c2 | 2013-10-21 09:20:35 -0700 | [diff] [blame] | 1164 | } |
| 1165 | |
Philippe Longepe | 938d21a | 2015-11-09 17:40:46 -0800 | [diff] [blame] | 1166 | static int atom_get_turbo_pstate(void) |
Dirk Brandewie | 61d8d2a | 2014-02-12 10:01:07 -0800 | [diff] [blame] | 1167 | { |
| 1168 | u64 value; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 1169 | |
Len Brown | 92134bd | 2017-02-25 16:55:17 -0500 | [diff] [blame] | 1170 | rdmsrl(MSR_ATOM_CORE_TURBO_RATIOS, value); |
Dirk Brandewie | c16ed06 | 2014-06-20 07:27:58 -0700 | [diff] [blame] | 1171 | return value & 0x7F; |
Dirk Brandewie | 61d8d2a | 2014-02-12 10:01:07 -0800 | [diff] [blame] | 1172 | } |
| 1173 | |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 1174 | static u64 atom_get_val(struct cpudata *cpudata, int pstate) |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 1175 | { |
| 1176 | u64 val; |
| 1177 | int32_t vid_fp; |
| 1178 | u32 vid; |
| 1179 | |
Chen Yu | 144c8e1 | 2015-07-29 23:53:10 +0800 | [diff] [blame] | 1180 | val = (u64)pstate << 8; |
Rafael J. Wysocki | 7de3255 | 2017-03-18 00:57:39 +0100 | [diff] [blame] | 1181 | if (global.no_turbo && !global.turbo_disabled) |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 1182 | val |= (u64)1 << 32; |
| 1183 | |
| 1184 | vid_fp = cpudata->vid.min + mul_fp( |
| 1185 | int_tofp(pstate - cpudata->pstate.min_pstate), |
| 1186 | cpudata->vid.ratio); |
| 1187 | |
| 1188 | vid_fp = clamp_t(int32_t, vid_fp, cpudata->vid.min, cpudata->vid.max); |
Dirk Brandewie | d022a65 | 2014-10-13 08:37:44 -0700 | [diff] [blame] | 1189 | vid = ceiling_fp(vid_fp); |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 1190 | |
Dirk Brandewie | 21855ff | 2014-05-08 12:57:23 -0700 | [diff] [blame] | 1191 | if (pstate > cpudata->pstate.max_pstate) |
| 1192 | vid = cpudata->vid.turbo; |
| 1193 | |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 1194 | return val | vid; |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 1195 | } |
| 1196 | |
Philippe Longepe | 1421df6 | 2015-11-09 17:40:47 -0800 | [diff] [blame] | 1197 | static int silvermont_get_scaling(void) |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 1198 | { |
| 1199 | u64 value; |
| 1200 | int i; |
Philippe Longepe | 1421df6 | 2015-11-09 17:40:47 -0800 | [diff] [blame] | 1201 | /* Defined in Table 35-6 from SDM (Sept 2015) */ |
| 1202 | static int silvermont_freq_table[] = { |
| 1203 | 83300, 100000, 133300, 116700, 80000}; |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 1204 | |
| 1205 | rdmsrl(MSR_FSB_FREQ, value); |
Philippe Longepe | 1421df6 | 2015-11-09 17:40:47 -0800 | [diff] [blame] | 1206 | i = value & 0x7; |
| 1207 | WARN_ON(i > 4); |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 1208 | |
Philippe Longepe | 1421df6 | 2015-11-09 17:40:47 -0800 | [diff] [blame] | 1209 | return silvermont_freq_table[i]; |
| 1210 | } |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 1211 | |
Philippe Longepe | 1421df6 | 2015-11-09 17:40:47 -0800 | [diff] [blame] | 1212 | static int airmont_get_scaling(void) |
| 1213 | { |
| 1214 | u64 value; |
| 1215 | int i; |
| 1216 | /* Defined in Table 35-10 from SDM (Sept 2015) */ |
| 1217 | static int airmont_freq_table[] = { |
| 1218 | 83300, 100000, 133300, 116700, 80000, |
| 1219 | 93300, 90000, 88900, 87500}; |
| 1220 | |
| 1221 | rdmsrl(MSR_FSB_FREQ, value); |
| 1222 | i = value & 0xF; |
| 1223 | WARN_ON(i > 8); |
| 1224 | |
| 1225 | return airmont_freq_table[i]; |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 1226 | } |
| 1227 | |
Philippe Longepe | 938d21a | 2015-11-09 17:40:46 -0800 | [diff] [blame] | 1228 | static void atom_get_vid(struct cpudata *cpudata) |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 1229 | { |
| 1230 | u64 value; |
| 1231 | |
Len Brown | 92134bd | 2017-02-25 16:55:17 -0500 | [diff] [blame] | 1232 | rdmsrl(MSR_ATOM_CORE_VIDS, value); |
Dirk Brandewie | c16ed06 | 2014-06-20 07:27:58 -0700 | [diff] [blame] | 1233 | cpudata->vid.min = int_tofp((value >> 8) & 0x7f); |
| 1234 | cpudata->vid.max = int_tofp((value >> 16) & 0x7f); |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 1235 | cpudata->vid.ratio = div_fp( |
| 1236 | cpudata->vid.max - cpudata->vid.min, |
| 1237 | int_tofp(cpudata->pstate.max_pstate - |
| 1238 | cpudata->pstate.min_pstate)); |
Dirk Brandewie | 21855ff | 2014-05-08 12:57:23 -0700 | [diff] [blame] | 1239 | |
Len Brown | 92134bd | 2017-02-25 16:55:17 -0500 | [diff] [blame] | 1240 | rdmsrl(MSR_ATOM_CORE_TURBO_VIDS, value); |
Dirk Brandewie | 21855ff | 2014-05-08 12:57:23 -0700 | [diff] [blame] | 1241 | cpudata->vid.turbo = value & 0x7f; |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 1242 | } |
| 1243 | |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 1244 | static int core_get_min_pstate(void) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1245 | { |
| 1246 | u64 value; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 1247 | |
Konrad Rzeszutek Wilk | 05e99c8cf | 2013-03-20 14:21:10 +0000 | [diff] [blame] | 1248 | rdmsrl(MSR_PLATFORM_INFO, value); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1249 | return (value >> 40) & 0xFF; |
| 1250 | } |
| 1251 | |
Srinivas Pandruvada | 3bcc6fa | 2015-10-14 16:12:00 -0700 | [diff] [blame] | 1252 | static int core_get_max_pstate_physical(void) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1253 | { |
| 1254 | u64 value; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 1255 | |
Konrad Rzeszutek Wilk | 05e99c8cf | 2013-03-20 14:21:10 +0000 | [diff] [blame] | 1256 | rdmsrl(MSR_PLATFORM_INFO, value); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1257 | return (value >> 8) & 0xFF; |
| 1258 | } |
| 1259 | |
Srinivas Pandruvada | 8fc7554 | 2017-01-19 15:03:14 -0800 | [diff] [blame] | 1260 | static int core_get_tdp_ratio(u64 plat_info) |
| 1261 | { |
| 1262 | /* Check how many TDP levels present */ |
| 1263 | if (plat_info & 0x600000000) { |
| 1264 | u64 tdp_ctrl; |
| 1265 | u64 tdp_ratio; |
| 1266 | int tdp_msr; |
| 1267 | int err; |
| 1268 | |
| 1269 | /* Get the TDP level (0, 1, 2) to get ratios */ |
| 1270 | err = rdmsrl_safe(MSR_CONFIG_TDP_CONTROL, &tdp_ctrl); |
| 1271 | if (err) |
| 1272 | return err; |
| 1273 | |
| 1274 | /* TDP MSR are continuous starting at 0x648 */ |
| 1275 | tdp_msr = MSR_CONFIG_TDP_NOMINAL + (tdp_ctrl & 0x03); |
| 1276 | err = rdmsrl_safe(tdp_msr, &tdp_ratio); |
| 1277 | if (err) |
| 1278 | return err; |
| 1279 | |
| 1280 | /* For level 1 and 2, bits[23:16] contain the ratio */ |
| 1281 | if (tdp_ctrl & 0x03) |
| 1282 | tdp_ratio >>= 16; |
| 1283 | |
| 1284 | tdp_ratio &= 0xff; /* ratios are only 8 bits long */ |
| 1285 | pr_debug("tdp_ratio %x\n", (int)tdp_ratio); |
| 1286 | |
| 1287 | return (int)tdp_ratio; |
| 1288 | } |
| 1289 | |
| 1290 | return -ENXIO; |
| 1291 | } |
| 1292 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1293 | static int core_get_max_pstate(void) |
| 1294 | { |
Srinivas Pandruvada | 6a35fc2 | 2015-10-14 16:11:59 -0700 | [diff] [blame] | 1295 | u64 tar; |
| 1296 | u64 plat_info; |
| 1297 | int max_pstate; |
Srinivas Pandruvada | 8fc7554 | 2017-01-19 15:03:14 -0800 | [diff] [blame] | 1298 | int tdp_ratio; |
Srinivas Pandruvada | 6a35fc2 | 2015-10-14 16:11:59 -0700 | [diff] [blame] | 1299 | int err; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1300 | |
Srinivas Pandruvada | 6a35fc2 | 2015-10-14 16:11:59 -0700 | [diff] [blame] | 1301 | rdmsrl(MSR_PLATFORM_INFO, plat_info); |
| 1302 | max_pstate = (plat_info >> 8) & 0xFF; |
| 1303 | |
Srinivas Pandruvada | 8fc7554 | 2017-01-19 15:03:14 -0800 | [diff] [blame] | 1304 | tdp_ratio = core_get_tdp_ratio(plat_info); |
| 1305 | if (tdp_ratio <= 0) |
| 1306 | return max_pstate; |
| 1307 | |
| 1308 | if (hwp_active) { |
| 1309 | /* Turbo activation ratio is not used on HWP platforms */ |
| 1310 | return tdp_ratio; |
| 1311 | } |
| 1312 | |
Srinivas Pandruvada | 6a35fc2 | 2015-10-14 16:11:59 -0700 | [diff] [blame] | 1313 | err = rdmsrl_safe(MSR_TURBO_ACTIVATION_RATIO, &tar); |
| 1314 | if (!err) { |
Srinivas Pandruvada | 8fc7554 | 2017-01-19 15:03:14 -0800 | [diff] [blame] | 1315 | int tar_levels; |
| 1316 | |
Srinivas Pandruvada | 6a35fc2 | 2015-10-14 16:11:59 -0700 | [diff] [blame] | 1317 | /* Do some sanity checking for safety */ |
Srinivas Pandruvada | 8fc7554 | 2017-01-19 15:03:14 -0800 | [diff] [blame] | 1318 | tar_levels = tar & 0xff; |
| 1319 | if (tdp_ratio - 1 == tar_levels) { |
| 1320 | max_pstate = tar_levels; |
| 1321 | pr_debug("max_pstate=TAC %x\n", max_pstate); |
Srinivas Pandruvada | 6a35fc2 | 2015-10-14 16:11:59 -0700 | [diff] [blame] | 1322 | } |
| 1323 | } |
| 1324 | |
Srinivas Pandruvada | 6a35fc2 | 2015-10-14 16:11:59 -0700 | [diff] [blame] | 1325 | return max_pstate; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1326 | } |
| 1327 | |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 1328 | static int core_get_turbo_pstate(void) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1329 | { |
| 1330 | u64 value; |
| 1331 | int nont, ret; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 1332 | |
Srinivas Pandruvada | 100cf6f | 2016-07-06 16:07:55 -0700 | [diff] [blame] | 1333 | rdmsrl(MSR_TURBO_RATIO_LIMIT, value); |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 1334 | nont = core_get_max_pstate(); |
Stratos Karafotis | 285cb99 | 2014-07-18 08:37:21 -0700 | [diff] [blame] | 1335 | ret = (value) & 255; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1336 | if (ret <= nont) |
| 1337 | ret = nont; |
| 1338 | return ret; |
| 1339 | } |
| 1340 | |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 1341 | static inline int core_get_scaling(void) |
| 1342 | { |
| 1343 | return 100000; |
| 1344 | } |
| 1345 | |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 1346 | static u64 core_get_val(struct cpudata *cpudata, int pstate) |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 1347 | { |
| 1348 | u64 val; |
| 1349 | |
Chen Yu | 144c8e1 | 2015-07-29 23:53:10 +0800 | [diff] [blame] | 1350 | val = (u64)pstate << 8; |
Rafael J. Wysocki | 7de3255 | 2017-03-18 00:57:39 +0100 | [diff] [blame] | 1351 | if (global.no_turbo && !global.turbo_disabled) |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 1352 | val |= (u64)1 << 32; |
| 1353 | |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 1354 | return val; |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 1355 | } |
| 1356 | |
Srinivas Pandruvada | 6e34e1f | 2017-07-13 15:03:51 -0700 | [diff] [blame] | 1357 | static int knl_get_aperf_mperf_shift(void) |
| 1358 | { |
| 1359 | return 10; |
| 1360 | } |
| 1361 | |
Dasaratharaman Chandramouli | b34ef93 | 2015-04-10 10:22:18 -0700 | [diff] [blame] | 1362 | static int knl_get_turbo_pstate(void) |
| 1363 | { |
| 1364 | u64 value; |
| 1365 | int nont, ret; |
| 1366 | |
Srinivas Pandruvada | 100cf6f | 2016-07-06 16:07:55 -0700 | [diff] [blame] | 1367 | rdmsrl(MSR_TURBO_RATIO_LIMIT, value); |
Dasaratharaman Chandramouli | b34ef93 | 2015-04-10 10:22:18 -0700 | [diff] [blame] | 1368 | nont = core_get_max_pstate(); |
| 1369 | ret = (((value) >> 8) & 0xFF); |
| 1370 | if (ret <= nont) |
| 1371 | ret = nont; |
| 1372 | return ret; |
| 1373 | } |
| 1374 | |
Rafael J. Wysocki | b02aabe | 2017-03-28 00:24:26 +0200 | [diff] [blame] | 1375 | static int intel_pstate_get_base_pstate(struct cpudata *cpu) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1376 | { |
Rafael J. Wysocki | b02aabe | 2017-03-28 00:24:26 +0200 | [diff] [blame] | 1377 | return global.no_turbo || global.turbo_disabled ? |
| 1378 | cpu->pstate.max_pstate : cpu->pstate.turbo_pstate; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1379 | } |
| 1380 | |
Rafael J. Wysocki | a6c6ead | 2016-10-19 02:57:22 +0200 | [diff] [blame] | 1381 | static void intel_pstate_set_pstate(struct cpudata *cpu, int pstate) |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 1382 | { |
Rafael J. Wysocki | bc95a45 | 2016-07-19 15:10:37 +0200 | [diff] [blame] | 1383 | trace_cpu_frequency(pstate * cpu->pstate.scaling, cpu->cpu); |
| 1384 | cpu->pstate.current_pstate = pstate; |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 1385 | /* |
| 1386 | * Generally, there is no guarantee that this code will always run on |
| 1387 | * the CPU being updated, so force the register update to run on the |
| 1388 | * right CPU. |
| 1389 | */ |
| 1390 | wrmsrl_on_cpu(cpu->cpu, MSR_IA32_PERF_CTL, |
| 1391 | pstate_funcs.get_val(cpu, pstate)); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1392 | } |
| 1393 | |
Rafael J. Wysocki | a6c6ead | 2016-10-19 02:57:22 +0200 | [diff] [blame] | 1394 | static void intel_pstate_set_min_pstate(struct cpudata *cpu) |
| 1395 | { |
| 1396 | intel_pstate_set_pstate(cpu, cpu->pstate.min_pstate); |
| 1397 | } |
| 1398 | |
| 1399 | static void intel_pstate_max_within_limits(struct cpudata *cpu) |
| 1400 | { |
Rafael J. Wysocki | b02aabe | 2017-03-28 00:24:26 +0200 | [diff] [blame] | 1401 | int pstate; |
Rafael J. Wysocki | a6c6ead | 2016-10-19 02:57:22 +0200 | [diff] [blame] | 1402 | |
| 1403 | update_turbo_state(); |
Rafael J. Wysocki | b02aabe | 2017-03-28 00:24:26 +0200 | [diff] [blame] | 1404 | pstate = intel_pstate_get_base_pstate(cpu); |
Srinivas Pandruvada | 1a4fe38 | 2017-06-12 16:30:27 -0700 | [diff] [blame] | 1405 | pstate = max(cpu->pstate.min_pstate, cpu->max_perf_ratio); |
Rafael J. Wysocki | b02aabe | 2017-03-28 00:24:26 +0200 | [diff] [blame] | 1406 | intel_pstate_set_pstate(cpu, pstate); |
Rafael J. Wysocki | a6c6ead | 2016-10-19 02:57:22 +0200 | [diff] [blame] | 1407 | } |
| 1408 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1409 | static void intel_pstate_get_cpu_pstates(struct cpudata *cpu) |
| 1410 | { |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 1411 | cpu->pstate.min_pstate = pstate_funcs.get_min(); |
| 1412 | cpu->pstate.max_pstate = pstate_funcs.get_max(); |
Srinivas Pandruvada | 3bcc6fa | 2015-10-14 16:12:00 -0700 | [diff] [blame] | 1413 | cpu->pstate.max_pstate_physical = pstate_funcs.get_max_physical(); |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 1414 | cpu->pstate.turbo_pstate = pstate_funcs.get_turbo(); |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 1415 | cpu->pstate.scaling = pstate_funcs.get_scaling(); |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 1416 | cpu->pstate.max_freq = cpu->pstate.max_pstate * cpu->pstate.scaling; |
Srinivas Pandruvada | ff7c991 | 2018-06-18 12:47:45 -0700 | [diff] [blame] | 1417 | |
| 1418 | if (hwp_active && !hwp_mode_bdw) { |
| 1419 | unsigned int phy_max, current_max; |
| 1420 | |
| 1421 | intel_pstate_get_hwp_max(cpu->cpu, &phy_max, ¤t_max); |
| 1422 | cpu->pstate.turbo_freq = phy_max * cpu->pstate.scaling; |
| 1423 | } else { |
| 1424 | cpu->pstate.turbo_freq = cpu->pstate.turbo_pstate * cpu->pstate.scaling; |
| 1425 | } |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1426 | |
Srinivas Pandruvada | 6e34e1f | 2017-07-13 15:03:51 -0700 | [diff] [blame] | 1427 | if (pstate_funcs.get_aperf_mperf_shift) |
| 1428 | cpu->aperf_mperf_shift = pstate_funcs.get_aperf_mperf_shift(); |
| 1429 | |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 1430 | if (pstate_funcs.get_vid) |
| 1431 | pstate_funcs.get_vid(cpu); |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 1432 | |
| 1433 | intel_pstate_set_min_pstate(cpu); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1434 | } |
| 1435 | |
Srinivas Pandruvada | e0efd5b | 2018-06-05 14:42:39 -0700 | [diff] [blame] | 1436 | /* |
| 1437 | * Long hold time will keep high perf limits for long time, |
| 1438 | * which negatively impacts perf/watt for some workloads, |
| 1439 | * like specpower. 3ms is based on experiements on some |
| 1440 | * workoads. |
| 1441 | */ |
| 1442 | static int hwp_boost_hold_time_ns = 3 * NSEC_PER_MSEC; |
| 1443 | |
| 1444 | static inline void intel_pstate_hwp_boost_up(struct cpudata *cpu) |
| 1445 | { |
| 1446 | u64 hwp_req = READ_ONCE(cpu->hwp_req_cached); |
| 1447 | u32 max_limit = (hwp_req & 0xff00) >> 8; |
| 1448 | u32 min_limit = (hwp_req & 0xff); |
| 1449 | u32 boost_level1; |
| 1450 | |
| 1451 | /* |
| 1452 | * Cases to consider (User changes via sysfs or boot time): |
| 1453 | * If, P0 (Turbo max) = P1 (Guaranteed max) = min: |
| 1454 | * No boost, return. |
| 1455 | * If, P0 (Turbo max) > P1 (Guaranteed max) = min: |
| 1456 | * Should result in one level boost only for P0. |
| 1457 | * If, P0 (Turbo max) = P1 (Guaranteed max) > min: |
| 1458 | * Should result in two level boost: |
| 1459 | * (min + p1)/2 and P1. |
| 1460 | * If, P0 (Turbo max) > P1 (Guaranteed max) > min: |
| 1461 | * Should result in three level boost: |
| 1462 | * (min + p1)/2, P1 and P0. |
| 1463 | */ |
| 1464 | |
| 1465 | /* If max and min are equal or already at max, nothing to boost */ |
| 1466 | if (max_limit == min_limit || cpu->hwp_boost_min >= max_limit) |
| 1467 | return; |
| 1468 | |
| 1469 | if (!cpu->hwp_boost_min) |
| 1470 | cpu->hwp_boost_min = min_limit; |
| 1471 | |
| 1472 | /* level at half way mark between min and guranteed */ |
| 1473 | boost_level1 = (HWP_GUARANTEED_PERF(cpu->hwp_cap_cached) + min_limit) >> 1; |
| 1474 | |
| 1475 | if (cpu->hwp_boost_min < boost_level1) |
| 1476 | cpu->hwp_boost_min = boost_level1; |
| 1477 | else if (cpu->hwp_boost_min < HWP_GUARANTEED_PERF(cpu->hwp_cap_cached)) |
| 1478 | cpu->hwp_boost_min = HWP_GUARANTEED_PERF(cpu->hwp_cap_cached); |
| 1479 | else if (cpu->hwp_boost_min == HWP_GUARANTEED_PERF(cpu->hwp_cap_cached) && |
| 1480 | max_limit != HWP_GUARANTEED_PERF(cpu->hwp_cap_cached)) |
| 1481 | cpu->hwp_boost_min = max_limit; |
| 1482 | else |
| 1483 | return; |
| 1484 | |
| 1485 | hwp_req = (hwp_req & ~GENMASK_ULL(7, 0)) | cpu->hwp_boost_min; |
| 1486 | wrmsrl(MSR_HWP_REQUEST, hwp_req); |
| 1487 | cpu->last_update = cpu->sample.time; |
| 1488 | } |
| 1489 | |
| 1490 | static inline void intel_pstate_hwp_boost_down(struct cpudata *cpu) |
| 1491 | { |
| 1492 | if (cpu->hwp_boost_min) { |
| 1493 | bool expired; |
| 1494 | |
| 1495 | /* Check if we are idle for hold time to boost down */ |
| 1496 | expired = time_after64(cpu->sample.time, cpu->last_update + |
| 1497 | hwp_boost_hold_time_ns); |
| 1498 | if (expired) { |
| 1499 | wrmsrl(MSR_HWP_REQUEST, cpu->hwp_req_cached); |
| 1500 | cpu->hwp_boost_min = 0; |
| 1501 | } |
| 1502 | } |
| 1503 | cpu->last_update = cpu->sample.time; |
| 1504 | } |
| 1505 | |
Srinivas Pandruvada | 52ccc431 | 2018-06-05 14:42:40 -0700 | [diff] [blame] | 1506 | static inline void intel_pstate_update_util_hwp_local(struct cpudata *cpu, |
| 1507 | u64 time) |
| 1508 | { |
| 1509 | cpu->sample.time = time; |
| 1510 | |
| 1511 | if (cpu->sched_flags & SCHED_CPUFREQ_IOWAIT) { |
| 1512 | bool do_io = false; |
| 1513 | |
| 1514 | cpu->sched_flags = 0; |
| 1515 | /* |
| 1516 | * Set iowait_boost flag and update time. Since IO WAIT flag |
| 1517 | * is set all the time, we can't just conclude that there is |
| 1518 | * some IO bound activity is scheduled on this CPU with just |
| 1519 | * one occurrence. If we receive at least two in two |
| 1520 | * consecutive ticks, then we treat as boost candidate. |
| 1521 | */ |
| 1522 | if (time_before64(time, cpu->last_io_update + 2 * TICK_NSEC)) |
| 1523 | do_io = true; |
| 1524 | |
| 1525 | cpu->last_io_update = time; |
| 1526 | |
| 1527 | if (do_io) |
| 1528 | intel_pstate_hwp_boost_up(cpu); |
| 1529 | |
| 1530 | } else { |
| 1531 | intel_pstate_hwp_boost_down(cpu); |
| 1532 | } |
| 1533 | } |
| 1534 | |
Srinivas Pandruvada | e0efd5b | 2018-06-05 14:42:39 -0700 | [diff] [blame] | 1535 | static inline void intel_pstate_update_util_hwp(struct update_util_data *data, |
| 1536 | u64 time, unsigned int flags) |
| 1537 | { |
Srinivas Pandruvada | 52ccc431 | 2018-06-05 14:42:40 -0700 | [diff] [blame] | 1538 | struct cpudata *cpu = container_of(data, struct cpudata, update_util); |
| 1539 | |
| 1540 | cpu->sched_flags |= flags; |
| 1541 | |
| 1542 | if (smp_processor_id() == cpu->cpu) |
| 1543 | intel_pstate_update_util_hwp_local(cpu, time); |
Srinivas Pandruvada | e0efd5b | 2018-06-05 14:42:39 -0700 | [diff] [blame] | 1544 | } |
| 1545 | |
Rafael J. Wysocki | a1c9787 | 2016-05-11 19:09:12 +0200 | [diff] [blame] | 1546 | static inline void intel_pstate_calc_avg_perf(struct cpudata *cpu) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1547 | { |
Stratos Karafotis | 6b17ddb | 2014-04-29 20:53:49 +0300 | [diff] [blame] | 1548 | struct sample *sample = &cpu->sample; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1549 | |
Rafael J. Wysocki | a1c9787 | 2016-05-11 19:09:12 +0200 | [diff] [blame] | 1550 | sample->core_avg_perf = div_ext_fp(sample->aperf, sample->mperf); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1551 | } |
| 1552 | |
Rafael J. Wysocki | 4fec7ad | 2016-03-10 23:45:19 +0100 | [diff] [blame] | 1553 | static inline bool intel_pstate_sample(struct cpudata *cpu, u64 time) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1554 | { |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1555 | u64 aperf, mperf; |
Stratos Karafotis | 4ab60c3 | 2014-07-18 08:37:24 -0700 | [diff] [blame] | 1556 | unsigned long flags; |
Doug Smythies | 4055fad | 2015-04-11 21:10:26 -0700 | [diff] [blame] | 1557 | u64 tsc; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1558 | |
Stratos Karafotis | 4ab60c3 | 2014-07-18 08:37:24 -0700 | [diff] [blame] | 1559 | local_irq_save(flags); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1560 | rdmsrl(MSR_IA32_APERF, aperf); |
| 1561 | rdmsrl(MSR_IA32_MPERF, mperf); |
Philippe Longepe | e70eed2 | 2015-12-04 17:40:32 +0100 | [diff] [blame] | 1562 | tsc = rdtsc(); |
Rafael J. Wysocki | 4fec7ad | 2016-03-10 23:45:19 +0100 | [diff] [blame] | 1563 | if (cpu->prev_mperf == mperf || cpu->prev_tsc == tsc) { |
Srinivas Pandruvada | 8e601a9 | 2015-10-15 12:34:21 -0700 | [diff] [blame] | 1564 | local_irq_restore(flags); |
Rafael J. Wysocki | 4fec7ad | 2016-03-10 23:45:19 +0100 | [diff] [blame] | 1565 | return false; |
Srinivas Pandruvada | 8e601a9 | 2015-10-15 12:34:21 -0700 | [diff] [blame] | 1566 | } |
Stratos Karafotis | 4ab60c3 | 2014-07-18 08:37:24 -0700 | [diff] [blame] | 1567 | local_irq_restore(flags); |
Dirk Brandewie | b69880f | 2014-01-16 10:32:25 -0800 | [diff] [blame] | 1568 | |
Dirk Brandewie | c4ee841 | 2014-05-29 09:32:24 -0700 | [diff] [blame] | 1569 | cpu->last_sample_time = cpu->sample.time; |
Rafael J. Wysocki | a4675fb | 2016-02-05 01:45:30 +0100 | [diff] [blame] | 1570 | cpu->sample.time = time; |
Dirk Brandewie | d37e2b7 | 2014-02-12 10:01:04 -0800 | [diff] [blame] | 1571 | cpu->sample.aperf = aperf; |
| 1572 | cpu->sample.mperf = mperf; |
Doug Smythies | 4055fad | 2015-04-11 21:10:26 -0700 | [diff] [blame] | 1573 | cpu->sample.tsc = tsc; |
Dirk Brandewie | d37e2b7 | 2014-02-12 10:01:04 -0800 | [diff] [blame] | 1574 | cpu->sample.aperf -= cpu->prev_aperf; |
| 1575 | cpu->sample.mperf -= cpu->prev_mperf; |
Doug Smythies | 4055fad | 2015-04-11 21:10:26 -0700 | [diff] [blame] | 1576 | cpu->sample.tsc -= cpu->prev_tsc; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1577 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1578 | cpu->prev_aperf = aperf; |
| 1579 | cpu->prev_mperf = mperf; |
Doug Smythies | 4055fad | 2015-04-11 21:10:26 -0700 | [diff] [blame] | 1580 | cpu->prev_tsc = tsc; |
Rafael J. Wysocki | febce40 | 2016-04-02 01:06:21 +0200 | [diff] [blame] | 1581 | /* |
| 1582 | * First time this function is invoked in a given cycle, all of the |
| 1583 | * previous sample data fields are equal to zero or stale and they must |
| 1584 | * be populated with meaningful numbers for things to work, so assume |
| 1585 | * that sample.time will always be reset before setting the utilization |
| 1586 | * update hook and make the caller skip the sample then. |
| 1587 | */ |
Rafael J. Wysocki | eabd22c | 2017-03-28 00:15:37 +0200 | [diff] [blame] | 1588 | if (cpu->last_sample_time) { |
| 1589 | intel_pstate_calc_avg_perf(cpu); |
| 1590 | return true; |
| 1591 | } |
| 1592 | return false; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1593 | } |
| 1594 | |
Philippe Longepe | 8fa520a | 2016-03-06 08:34:06 +0100 | [diff] [blame] | 1595 | static inline int32_t get_avg_frequency(struct cpudata *cpu) |
| 1596 | { |
Doug Smythies | c587c79 | 2017-08-08 14:05:12 -0700 | [diff] [blame] | 1597 | return mul_ext_fp(cpu->sample.core_avg_perf, cpu_khz); |
Philippe Longepe | 8fa520a | 2016-03-06 08:34:06 +0100 | [diff] [blame] | 1598 | } |
| 1599 | |
Philippe Longepe | bdcaa23 | 2016-04-22 11:46:09 -0700 | [diff] [blame] | 1600 | static inline int32_t get_avg_pstate(struct cpudata *cpu) |
| 1601 | { |
Rafael J. Wysocki | 8edb0a6 | 2016-05-11 19:10:42 +0200 | [diff] [blame] | 1602 | return mul_ext_fp(cpu->pstate.max_pstate_physical, |
| 1603 | cpu->sample.core_avg_perf); |
Philippe Longepe | bdcaa23 | 2016-04-22 11:46:09 -0700 | [diff] [blame] | 1604 | } |
| 1605 | |
Rafael J. Wysocki | d77d488 | 2017-08-10 01:09:16 +0200 | [diff] [blame] | 1606 | static inline int32_t get_target_pstate(struct cpudata *cpu) |
Philippe Longepe | e70eed2 | 2015-12-04 17:40:32 +0100 | [diff] [blame] | 1607 | { |
| 1608 | struct sample *sample = &cpu->sample; |
Rafael J. Wysocki | 09c448d | 2016-09-14 02:28:13 +0200 | [diff] [blame] | 1609 | int32_t busy_frac, boost; |
Rafael J. Wysocki | 0843e83 | 2016-10-06 14:07:51 +0200 | [diff] [blame] | 1610 | int target, avg_pstate; |
Philippe Longepe | e70eed2 | 2015-12-04 17:40:32 +0100 | [diff] [blame] | 1611 | |
Srinivas Pandruvada | 6e34e1f | 2017-07-13 15:03:51 -0700 | [diff] [blame] | 1612 | busy_frac = div_fp(sample->mperf << cpu->aperf_mperf_shift, |
| 1613 | sample->tsc); |
Philippe Longepe | 63d1d65 | 2015-12-04 17:40:35 +0100 | [diff] [blame] | 1614 | |
Rafael J. Wysocki | 09c448d | 2016-09-14 02:28:13 +0200 | [diff] [blame] | 1615 | boost = cpu->iowait_boost; |
| 1616 | cpu->iowait_boost >>= 1; |
Philippe Longepe | 63d1d65 | 2015-12-04 17:40:35 +0100 | [diff] [blame] | 1617 | |
Rafael J. Wysocki | 09c448d | 2016-09-14 02:28:13 +0200 | [diff] [blame] | 1618 | if (busy_frac < boost) |
| 1619 | busy_frac = boost; |
Philippe Longepe | 63d1d65 | 2015-12-04 17:40:35 +0100 | [diff] [blame] | 1620 | |
Rafael J. Wysocki | 09c448d | 2016-09-14 02:28:13 +0200 | [diff] [blame] | 1621 | sample->busy_scaled = busy_frac * 100; |
Rafael J. Wysocki | 0843e83 | 2016-10-06 14:07:51 +0200 | [diff] [blame] | 1622 | |
Rafael J. Wysocki | 7de3255 | 2017-03-18 00:57:39 +0100 | [diff] [blame] | 1623 | target = global.no_turbo || global.turbo_disabled ? |
Rafael J. Wysocki | 0843e83 | 2016-10-06 14:07:51 +0200 | [diff] [blame] | 1624 | cpu->pstate.max_pstate : cpu->pstate.turbo_pstate; |
| 1625 | target += target >> 2; |
| 1626 | target = mul_fp(target, busy_frac); |
| 1627 | if (target < cpu->pstate.min_pstate) |
| 1628 | target = cpu->pstate.min_pstate; |
| 1629 | |
| 1630 | /* |
| 1631 | * If the average P-state during the previous cycle was higher than the |
| 1632 | * current target, add 50% of the difference to the target to reduce |
| 1633 | * possible performance oscillations and offset possible performance |
| 1634 | * loss related to moving the workload from one CPU to another within |
| 1635 | * a package/module. |
| 1636 | */ |
| 1637 | avg_pstate = get_avg_pstate(cpu); |
| 1638 | if (avg_pstate > target) |
| 1639 | target += (avg_pstate - target) >> 1; |
| 1640 | |
| 1641 | return target; |
Philippe Longepe | e70eed2 | 2015-12-04 17:40:32 +0100 | [diff] [blame] | 1642 | } |
| 1643 | |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 1644 | static int intel_pstate_prepare_request(struct cpudata *cpu, int pstate) |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 1645 | { |
Rafael J. Wysocki | b02aabe | 2017-03-28 00:24:26 +0200 | [diff] [blame] | 1646 | int max_pstate = intel_pstate_get_base_pstate(cpu); |
| 1647 | int min_pstate; |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 1648 | |
Srinivas Pandruvada | 1a4fe38 | 2017-06-12 16:30:27 -0700 | [diff] [blame] | 1649 | min_pstate = max(cpu->pstate.min_pstate, cpu->min_perf_ratio); |
| 1650 | max_pstate = max(min_pstate, cpu->max_perf_ratio); |
Rafael J. Wysocki | b02aabe | 2017-03-28 00:24:26 +0200 | [diff] [blame] | 1651 | return clamp_t(int, pstate, min_pstate, max_pstate); |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 1652 | } |
| 1653 | |
| 1654 | static void intel_pstate_update_pstate(struct cpudata *cpu, int pstate) |
| 1655 | { |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 1656 | if (pstate == cpu->pstate.current_pstate) |
| 1657 | return; |
| 1658 | |
Rafael J. Wysocki | bc95a45 | 2016-07-19 15:10:37 +0200 | [diff] [blame] | 1659 | cpu->pstate.current_pstate = pstate; |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 1660 | wrmsrl(MSR_IA32_PERF_CTL, pstate_funcs.get_val(cpu, pstate)); |
| 1661 | } |
| 1662 | |
Rafael J. Wysocki | a891283 | 2017-08-10 01:08:56 +0200 | [diff] [blame] | 1663 | static void intel_pstate_adjust_pstate(struct cpudata *cpu) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1664 | { |
Rafael J. Wysocki | 67dd9bf | 2017-03-28 00:17:10 +0200 | [diff] [blame] | 1665 | int from = cpu->pstate.current_pstate; |
Doug Smythies | 4055fad | 2015-04-11 21:10:26 -0700 | [diff] [blame] | 1666 | struct sample *sample; |
Rafael J. Wysocki | a891283 | 2017-08-10 01:08:56 +0200 | [diff] [blame] | 1667 | int target_pstate; |
Doug Smythies | 4055fad | 2015-04-11 21:10:26 -0700 | [diff] [blame] | 1668 | |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 1669 | update_turbo_state(); |
| 1670 | |
Rafael J. Wysocki | d77d488 | 2017-08-10 01:09:16 +0200 | [diff] [blame] | 1671 | target_pstate = get_target_pstate(cpu); |
Rafael J. Wysocki | 6407829 | 2017-03-03 23:51:31 +0100 | [diff] [blame] | 1672 | target_pstate = intel_pstate_prepare_request(cpu, target_pstate); |
| 1673 | trace_cpu_frequency(target_pstate * cpu->pstate.scaling, cpu->cpu); |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 1674 | intel_pstate_update_pstate(cpu, target_pstate); |
Doug Smythies | 4055fad | 2015-04-11 21:10:26 -0700 | [diff] [blame] | 1675 | |
| 1676 | sample = &cpu->sample; |
Rafael J. Wysocki | a1c9787 | 2016-05-11 19:09:12 +0200 | [diff] [blame] | 1677 | trace_pstate_sample(mul_ext_fp(100, sample->core_avg_perf), |
Philippe Longepe | 157386b | 2015-12-04 17:40:30 +0100 | [diff] [blame] | 1678 | fp_toint(sample->busy_scaled), |
Doug Smythies | 4055fad | 2015-04-11 21:10:26 -0700 | [diff] [blame] | 1679 | from, |
| 1680 | cpu->pstate.current_pstate, |
| 1681 | sample->mperf, |
| 1682 | sample->aperf, |
| 1683 | sample->tsc, |
Srinivas Pandruvada | 3ba7bca | 2016-09-13 17:41:33 -0700 | [diff] [blame] | 1684 | get_avg_frequency(cpu), |
| 1685 | fp_toint(cpu->iowait_boost * 100)); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1686 | } |
| 1687 | |
Rafael J. Wysocki | a4675fb | 2016-02-05 01:45:30 +0100 | [diff] [blame] | 1688 | static void intel_pstate_update_util(struct update_util_data *data, u64 time, |
Rafael J. Wysocki | 58919e8 | 2016-08-16 22:14:55 +0200 | [diff] [blame] | 1689 | unsigned int flags) |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 1690 | { |
Rafael J. Wysocki | a4675fb | 2016-02-05 01:45:30 +0100 | [diff] [blame] | 1691 | struct cpudata *cpu = container_of(data, struct cpudata, update_util); |
Rafael J. Wysocki | 09c448d | 2016-09-14 02:28:13 +0200 | [diff] [blame] | 1692 | u64 delta_ns; |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 1693 | |
Viresh Kumar | 674e754 | 2017-07-28 12:16:38 +0530 | [diff] [blame] | 1694 | /* Don't allow remote callbacks */ |
| 1695 | if (smp_processor_id() != cpu->cpu) |
| 1696 | return; |
| 1697 | |
Rafael J. Wysocki | eabd22c | 2017-03-28 00:15:37 +0200 | [diff] [blame] | 1698 | if (flags & SCHED_CPUFREQ_IOWAIT) { |
| 1699 | cpu->iowait_boost = int_tofp(1); |
Srinivas Pandruvada | 7bde2d5 | 2017-08-03 19:03:14 -0700 | [diff] [blame] | 1700 | cpu->last_update = time; |
| 1701 | /* |
| 1702 | * The last time the busy was 100% so P-state was max anyway |
| 1703 | * so avoid overhead of computation. |
| 1704 | */ |
| 1705 | if (fp_toint(cpu->sample.busy_scaled) == 100) |
| 1706 | return; |
| 1707 | |
| 1708 | goto set_pstate; |
Rafael J. Wysocki | eabd22c | 2017-03-28 00:15:37 +0200 | [diff] [blame] | 1709 | } else if (cpu->iowait_boost) { |
| 1710 | /* Clear iowait_boost if the CPU may have been idle. */ |
| 1711 | delta_ns = time - cpu->last_update; |
| 1712 | if (delta_ns > TICK_NSEC) |
| 1713 | cpu->iowait_boost = 0; |
Rafael J. Wysocki | 09c448d | 2016-09-14 02:28:13 +0200 | [diff] [blame] | 1714 | } |
Rafael J. Wysocki | eabd22c | 2017-03-28 00:15:37 +0200 | [diff] [blame] | 1715 | cpu->last_update = time; |
Rafael J. Wysocki | 09c448d | 2016-09-14 02:28:13 +0200 | [diff] [blame] | 1716 | delta_ns = time - cpu->sample.time; |
Rafael J. Wysocki | d77d488 | 2017-08-10 01:09:16 +0200 | [diff] [blame] | 1717 | if ((s64)delta_ns < INTEL_PSTATE_SAMPLING_INTERVAL) |
Rafael J. Wysocki | eabd22c | 2017-03-28 00:15:37 +0200 | [diff] [blame] | 1718 | return; |
Rafael J. Wysocki | 4fec7ad | 2016-03-10 23:45:19 +0100 | [diff] [blame] | 1719 | |
Srinivas Pandruvada | 7bde2d5 | 2017-08-03 19:03:14 -0700 | [diff] [blame] | 1720 | set_pstate: |
Rafael J. Wysocki | a891283 | 2017-08-10 01:08:56 +0200 | [diff] [blame] | 1721 | if (intel_pstate_sample(cpu, time)) |
| 1722 | intel_pstate_adjust_pstate(cpu); |
Rafael J. Wysocki | 67dd9bf | 2017-03-28 00:17:10 +0200 | [diff] [blame] | 1723 | } |
Rafael J. Wysocki | eabd22c | 2017-03-28 00:15:37 +0200 | [diff] [blame] | 1724 | |
Rafael J. Wysocki | 2f49afc | 2017-03-28 00:19:03 +0200 | [diff] [blame] | 1725 | static struct pstate_funcs core_funcs = { |
| 1726 | .get_max = core_get_max_pstate, |
| 1727 | .get_max_physical = core_get_max_pstate_physical, |
| 1728 | .get_min = core_get_min_pstate, |
| 1729 | .get_turbo = core_get_turbo_pstate, |
| 1730 | .get_scaling = core_get_scaling, |
| 1731 | .get_val = core_get_val, |
Rafael J. Wysocki | de4a76c | 2017-03-28 00:18:02 +0200 | [diff] [blame] | 1732 | }; |
| 1733 | |
Rafael J. Wysocki | 2f49afc | 2017-03-28 00:19:03 +0200 | [diff] [blame] | 1734 | static const struct pstate_funcs silvermont_funcs = { |
| 1735 | .get_max = atom_get_max_pstate, |
| 1736 | .get_max_physical = atom_get_max_pstate, |
| 1737 | .get_min = atom_get_min_pstate, |
| 1738 | .get_turbo = atom_get_turbo_pstate, |
| 1739 | .get_val = atom_get_val, |
| 1740 | .get_scaling = silvermont_get_scaling, |
| 1741 | .get_vid = atom_get_vid, |
Rafael J. Wysocki | de4a76c | 2017-03-28 00:18:02 +0200 | [diff] [blame] | 1742 | }; |
| 1743 | |
Rafael J. Wysocki | 2f49afc | 2017-03-28 00:19:03 +0200 | [diff] [blame] | 1744 | static const struct pstate_funcs airmont_funcs = { |
| 1745 | .get_max = atom_get_max_pstate, |
| 1746 | .get_max_physical = atom_get_max_pstate, |
| 1747 | .get_min = atom_get_min_pstate, |
| 1748 | .get_turbo = atom_get_turbo_pstate, |
| 1749 | .get_val = atom_get_val, |
| 1750 | .get_scaling = airmont_get_scaling, |
| 1751 | .get_vid = atom_get_vid, |
Rafael J. Wysocki | de4a76c | 2017-03-28 00:18:02 +0200 | [diff] [blame] | 1752 | }; |
| 1753 | |
Rafael J. Wysocki | 2f49afc | 2017-03-28 00:19:03 +0200 | [diff] [blame] | 1754 | static const struct pstate_funcs knl_funcs = { |
| 1755 | .get_max = core_get_max_pstate, |
| 1756 | .get_max_physical = core_get_max_pstate_physical, |
| 1757 | .get_min = core_get_min_pstate, |
| 1758 | .get_turbo = knl_get_turbo_pstate, |
Srinivas Pandruvada | 6e34e1f | 2017-07-13 15:03:51 -0700 | [diff] [blame] | 1759 | .get_aperf_mperf_shift = knl_get_aperf_mperf_shift, |
Rafael J. Wysocki | 2f49afc | 2017-03-28 00:19:03 +0200 | [diff] [blame] | 1760 | .get_scaling = core_get_scaling, |
| 1761 | .get_val = core_get_val, |
Rafael J. Wysocki | de4a76c | 2017-03-28 00:18:02 +0200 | [diff] [blame] | 1762 | }; |
| 1763 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1764 | #define ICPU(model, policy) \ |
Dirk Brandewie | 6cbd7ee | 2014-01-06 10:59:16 -0800 | [diff] [blame] | 1765 | { X86_VENDOR_INTEL, 6, model, X86_FEATURE_APERFMPERF,\ |
| 1766 | (unsigned long)&policy } |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1767 | |
| 1768 | static const struct x86_cpu_id intel_pstate_cpu_ids[] = { |
Rafael J. Wysocki | 2f49afc | 2017-03-28 00:19:03 +0200 | [diff] [blame] | 1769 | ICPU(INTEL_FAM6_SANDYBRIDGE, core_funcs), |
| 1770 | ICPU(INTEL_FAM6_SANDYBRIDGE_X, core_funcs), |
| 1771 | ICPU(INTEL_FAM6_ATOM_SILVERMONT1, silvermont_funcs), |
| 1772 | ICPU(INTEL_FAM6_IVYBRIDGE, core_funcs), |
| 1773 | ICPU(INTEL_FAM6_HASWELL_CORE, core_funcs), |
| 1774 | ICPU(INTEL_FAM6_BROADWELL_CORE, core_funcs), |
| 1775 | ICPU(INTEL_FAM6_IVYBRIDGE_X, core_funcs), |
| 1776 | ICPU(INTEL_FAM6_HASWELL_X, core_funcs), |
| 1777 | ICPU(INTEL_FAM6_HASWELL_ULT, core_funcs), |
| 1778 | ICPU(INTEL_FAM6_HASWELL_GT3E, core_funcs), |
| 1779 | ICPU(INTEL_FAM6_BROADWELL_GT3E, core_funcs), |
| 1780 | ICPU(INTEL_FAM6_ATOM_AIRMONT, airmont_funcs), |
| 1781 | ICPU(INTEL_FAM6_SKYLAKE_MOBILE, core_funcs), |
| 1782 | ICPU(INTEL_FAM6_BROADWELL_X, core_funcs), |
| 1783 | ICPU(INTEL_FAM6_SKYLAKE_DESKTOP, core_funcs), |
| 1784 | ICPU(INTEL_FAM6_BROADWELL_XEON_D, core_funcs), |
| 1785 | ICPU(INTEL_FAM6_XEON_PHI_KNL, knl_funcs), |
| 1786 | ICPU(INTEL_FAM6_XEON_PHI_KNM, knl_funcs), |
Srinivas Pandruvada | dbd49b8 | 2018-01-10 11:38:51 -0800 | [diff] [blame] | 1787 | ICPU(INTEL_FAM6_ATOM_GOLDMONT, core_funcs), |
| 1788 | ICPU(INTEL_FAM6_ATOM_GEMINI_LAKE, core_funcs), |
Srinivas Pandruvada | d8de7a4 | 2018-01-10 11:38:52 -0800 | [diff] [blame] | 1789 | ICPU(INTEL_FAM6_SKYLAKE_X, core_funcs), |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1790 | {} |
| 1791 | }; |
| 1792 | MODULE_DEVICE_TABLE(x86cpu, intel_pstate_cpu_ids); |
| 1793 | |
Jisheng Zhang | 29327c8 | 2016-06-27 18:07:17 +0800 | [diff] [blame] | 1794 | static const struct x86_cpu_id intel_pstate_cpu_oob_ids[] __initconst = { |
Rafael J. Wysocki | 2f49afc | 2017-03-28 00:19:03 +0200 | [diff] [blame] | 1795 | ICPU(INTEL_FAM6_BROADWELL_XEON_D, core_funcs), |
| 1796 | ICPU(INTEL_FAM6_BROADWELL_X, core_funcs), |
| 1797 | ICPU(INTEL_FAM6_SKYLAKE_X, core_funcs), |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 1798 | {} |
| 1799 | }; |
| 1800 | |
Srinivas Pandruvada | 6e978b2 | 2017-02-03 14:18:39 -0800 | [diff] [blame] | 1801 | static const struct x86_cpu_id intel_pstate_cpu_ee_disable_ids[] = { |
Rafael J. Wysocki | 2f49afc | 2017-03-28 00:19:03 +0200 | [diff] [blame] | 1802 | ICPU(INTEL_FAM6_KABYLAKE_DESKTOP, core_funcs), |
Srinivas Pandruvada | 6e978b2 | 2017-02-03 14:18:39 -0800 | [diff] [blame] | 1803 | {} |
| 1804 | }; |
| 1805 | |
Srinivas Pandruvada | 41ab43c | 2018-06-05 14:42:42 -0700 | [diff] [blame] | 1806 | static const struct x86_cpu_id intel_pstate_hwp_boost_ids[] = { |
| 1807 | ICPU(INTEL_FAM6_SKYLAKE_X, core_funcs), |
| 1808 | ICPU(INTEL_FAM6_SKYLAKE_DESKTOP, core_funcs), |
| 1809 | {} |
| 1810 | }; |
| 1811 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1812 | static int intel_pstate_init_cpu(unsigned int cpunum) |
| 1813 | { |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1814 | struct cpudata *cpu; |
| 1815 | |
Srinivas Pandruvada | eae48f0 | 2016-10-25 13:20:40 -0700 | [diff] [blame] | 1816 | cpu = all_cpu_data[cpunum]; |
| 1817 | |
| 1818 | if (!cpu) { |
Rafael J. Wysocki | c5a2ee7 | 2017-03-22 23:58:57 +0100 | [diff] [blame] | 1819 | cpu = kzalloc(sizeof(*cpu), GFP_KERNEL); |
Srinivas Pandruvada | eae48f0 | 2016-10-25 13:20:40 -0700 | [diff] [blame] | 1820 | if (!cpu) |
| 1821 | return -ENOMEM; |
| 1822 | |
| 1823 | all_cpu_data[cpunum] = cpu; |
Srinivas Pandruvada | eae48f0 | 2016-10-25 13:20:40 -0700 | [diff] [blame] | 1824 | |
Srinivas Pandruvada | 984edbd | 2016-12-06 13:32:16 -0800 | [diff] [blame] | 1825 | cpu->epp_default = -EINVAL; |
| 1826 | cpu->epp_powersave = -EINVAL; |
| 1827 | cpu->epp_saved = -EINVAL; |
Srinivas Pandruvada | eae48f0 | 2016-10-25 13:20:40 -0700 | [diff] [blame] | 1828 | } |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1829 | |
| 1830 | cpu = all_cpu_data[cpunum]; |
| 1831 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1832 | cpu->cpu = cpunum; |
Kristen Carlson Accardi | ba88d43 | 2015-07-14 09:46:23 -0700 | [diff] [blame] | 1833 | |
Rafael J. Wysocki | a4675fb | 2016-02-05 01:45:30 +0100 | [diff] [blame] | 1834 | if (hwp_active) { |
Srinivas Pandruvada | 6e978b2 | 2017-02-03 14:18:39 -0800 | [diff] [blame] | 1835 | const struct x86_cpu_id *id; |
| 1836 | |
| 1837 | id = x86_match_cpu(intel_pstate_cpu_ee_disable_ids); |
| 1838 | if (id) |
| 1839 | intel_pstate_disable_ee(cpunum); |
| 1840 | |
Kristen Carlson Accardi | ba88d43 | 2015-07-14 09:46:23 -0700 | [diff] [blame] | 1841 | intel_pstate_hwp_enable(cpu); |
Srinivas Pandruvada | 41ab43c | 2018-06-05 14:42:42 -0700 | [diff] [blame] | 1842 | |
| 1843 | id = x86_match_cpu(intel_pstate_hwp_boost_ids); |
| 1844 | if (id) |
| 1845 | hwp_boost = true; |
Rafael J. Wysocki | a4675fb | 2016-02-05 01:45:30 +0100 | [diff] [blame] | 1846 | } |
Kristen Carlson Accardi | ba88d43 | 2015-07-14 09:46:23 -0700 | [diff] [blame] | 1847 | |
Vincent Minet | 179e847 | 2014-07-05 01:51:33 +0200 | [diff] [blame] | 1848 | intel_pstate_get_cpu_pstates(cpu); |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 1849 | |
Joe Perches | 4836df1 | 2016-04-05 13:28:23 -0700 | [diff] [blame] | 1850 | pr_debug("controlling: cpu %d\n", cpunum); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1851 | |
| 1852 | return 0; |
| 1853 | } |
| 1854 | |
Rafael J. Wysocki | febce40 | 2016-04-02 01:06:21 +0200 | [diff] [blame] | 1855 | static void intel_pstate_set_update_util_hook(unsigned int cpu_num) |
Rafael J. Wysocki | bb6ab52 | 2016-03-31 17:42:15 +0200 | [diff] [blame] | 1856 | { |
Rafael J. Wysocki | febce40 | 2016-04-02 01:06:21 +0200 | [diff] [blame] | 1857 | struct cpudata *cpu = all_cpu_data[cpu_num]; |
| 1858 | |
Srinivas Pandruvada | e0efd5b | 2018-06-05 14:42:39 -0700 | [diff] [blame] | 1859 | if (hwp_active && !hwp_boost) |
Len Brown | 62611cb | 2017-06-23 22:11:53 -0700 | [diff] [blame] | 1860 | return; |
| 1861 | |
Rafael J. Wysocki | 5ab666e | 2016-06-27 23:47:15 +0200 | [diff] [blame] | 1862 | if (cpu->update_util_set) |
| 1863 | return; |
| 1864 | |
Rafael J. Wysocki | febce40 | 2016-04-02 01:06:21 +0200 | [diff] [blame] | 1865 | /* Prevent intel_pstate_update_util() from using stale data. */ |
| 1866 | cpu->sample.time = 0; |
Rafael J. Wysocki | 67dd9bf | 2017-03-28 00:17:10 +0200 | [diff] [blame] | 1867 | cpufreq_add_update_util_hook(cpu_num, &cpu->update_util, |
Srinivas Pandruvada | e0efd5b | 2018-06-05 14:42:39 -0700 | [diff] [blame] | 1868 | (hwp_active ? |
| 1869 | intel_pstate_update_util_hwp : |
| 1870 | intel_pstate_update_util)); |
Chen Yu | 4578ee7e | 2016-05-11 14:33:08 +0800 | [diff] [blame] | 1871 | cpu->update_util_set = true; |
Rafael J. Wysocki | bb6ab52 | 2016-03-31 17:42:15 +0200 | [diff] [blame] | 1872 | } |
| 1873 | |
| 1874 | static void intel_pstate_clear_update_util_hook(unsigned int cpu) |
| 1875 | { |
Chen Yu | 4578ee7e | 2016-05-11 14:33:08 +0800 | [diff] [blame] | 1876 | struct cpudata *cpu_data = all_cpu_data[cpu]; |
| 1877 | |
| 1878 | if (!cpu_data->update_util_set) |
| 1879 | return; |
| 1880 | |
Rafael J. Wysocki | 0bed612 | 2016-04-02 01:08:43 +0200 | [diff] [blame] | 1881 | cpufreq_remove_update_util_hook(cpu); |
Chen Yu | 4578ee7e | 2016-05-11 14:33:08 +0800 | [diff] [blame] | 1882 | cpu_data->update_util_set = false; |
Rafael J. Wysocki | bb6ab52 | 2016-03-31 17:42:15 +0200 | [diff] [blame] | 1883 | synchronize_sched(); |
| 1884 | } |
| 1885 | |
Rafael J. Wysocki | 80b120c | 2017-03-23 00:00:47 +0100 | [diff] [blame] | 1886 | static int intel_pstate_get_max_freq(struct cpudata *cpu) |
| 1887 | { |
| 1888 | return global.turbo_disabled || global.no_turbo ? |
| 1889 | cpu->pstate.max_freq : cpu->pstate.turbo_freq; |
| 1890 | } |
| 1891 | |
Srinivas Pandruvada | eae48f0 | 2016-10-25 13:20:40 -0700 | [diff] [blame] | 1892 | static void intel_pstate_update_perf_limits(struct cpufreq_policy *policy, |
Rafael J. Wysocki | c5a2ee7 | 2017-03-22 23:58:57 +0100 | [diff] [blame] | 1893 | struct cpudata *cpu) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1894 | { |
Rafael J. Wysocki | 80b120c | 2017-03-23 00:00:47 +0100 | [diff] [blame] | 1895 | int max_freq = intel_pstate_get_max_freq(cpu); |
Rafael J. Wysocki | e4c204c | 2017-03-14 16:18:34 +0100 | [diff] [blame] | 1896 | int32_t max_policy_perf, min_policy_perf; |
Srinivas Pandruvada | 1a4fe38 | 2017-06-12 16:30:27 -0700 | [diff] [blame] | 1897 | int max_state, turbo_max; |
Srinivas Pandruvada | a410c03d | 2016-10-28 10:44:52 -0700 | [diff] [blame] | 1898 | |
Srinivas Pandruvada | 1a4fe38 | 2017-06-12 16:30:27 -0700 | [diff] [blame] | 1899 | /* |
| 1900 | * HWP needs some special consideration, because on BDX the |
| 1901 | * HWP_REQUEST uses abstract value to represent performance |
| 1902 | * rather than pure ratios. |
| 1903 | */ |
| 1904 | if (hwp_active) { |
| 1905 | intel_pstate_get_hwp_max(cpu->cpu, &turbo_max, &max_state); |
| 1906 | } else { |
| 1907 | max_state = intel_pstate_get_base_pstate(cpu); |
| 1908 | turbo_max = cpu->pstate.turbo_pstate; |
| 1909 | } |
| 1910 | |
| 1911 | max_policy_perf = max_state * policy->max / max_freq; |
Srinivas Pandruvada | 5879f87 | 2016-10-25 13:20:41 -0700 | [diff] [blame] | 1912 | if (policy->max == policy->min) { |
Rafael J. Wysocki | e4c204c | 2017-03-14 16:18:34 +0100 | [diff] [blame] | 1913 | min_policy_perf = max_policy_perf; |
Srinivas Pandruvada | 5879f87 | 2016-10-25 13:20:41 -0700 | [diff] [blame] | 1914 | } else { |
Srinivas Pandruvada | 1a4fe38 | 2017-06-12 16:30:27 -0700 | [diff] [blame] | 1915 | min_policy_perf = max_state * policy->min / max_freq; |
Rafael J. Wysocki | e4c204c | 2017-03-14 16:18:34 +0100 | [diff] [blame] | 1916 | min_policy_perf = clamp_t(int32_t, min_policy_perf, |
| 1917 | 0, max_policy_perf); |
Srinivas Pandruvada | 5879f87 | 2016-10-25 13:20:41 -0700 | [diff] [blame] | 1918 | } |
Chen Yu | 43717aa | 2015-09-09 18:27:31 +0800 | [diff] [blame] | 1919 | |
Srinivas Pandruvada | 1a4fe38 | 2017-06-12 16:30:27 -0700 | [diff] [blame] | 1920 | pr_debug("cpu:%d max_state %d min_policy_perf:%d max_policy_perf:%d\n", |
| 1921 | policy->cpu, max_state, |
| 1922 | min_policy_perf, max_policy_perf); |
| 1923 | |
Rafael J. Wysocki | e4c204c | 2017-03-14 16:18:34 +0100 | [diff] [blame] | 1924 | /* Normalize user input to [min_perf, max_perf] */ |
Rafael J. Wysocki | c5a2ee7 | 2017-03-22 23:58:57 +0100 | [diff] [blame] | 1925 | if (per_cpu_limits) { |
Srinivas Pandruvada | 1a4fe38 | 2017-06-12 16:30:27 -0700 | [diff] [blame] | 1926 | cpu->min_perf_ratio = min_policy_perf; |
| 1927 | cpu->max_perf_ratio = max_policy_perf; |
Rafael J. Wysocki | c5a2ee7 | 2017-03-22 23:58:57 +0100 | [diff] [blame] | 1928 | } else { |
| 1929 | int32_t global_min, global_max; |
Chen Yu | 43717aa | 2015-09-09 18:27:31 +0800 | [diff] [blame] | 1930 | |
Rafael J. Wysocki | c5a2ee7 | 2017-03-22 23:58:57 +0100 | [diff] [blame] | 1931 | /* Global limits are in percent of the maximum turbo P-state. */ |
Srinivas Pandruvada | 1a4fe38 | 2017-06-12 16:30:27 -0700 | [diff] [blame] | 1932 | global_max = DIV_ROUND_UP(turbo_max * global.max_perf_pct, 100); |
| 1933 | global_min = DIV_ROUND_UP(turbo_max * global.min_perf_pct, 100); |
Rafael J. Wysocki | c5a2ee7 | 2017-03-22 23:58:57 +0100 | [diff] [blame] | 1934 | global_min = clamp_t(int32_t, global_min, 0, global_max); |
| 1935 | |
Srinivas Pandruvada | 1a4fe38 | 2017-06-12 16:30:27 -0700 | [diff] [blame] | 1936 | pr_debug("cpu:%d global_min:%d global_max:%d\n", policy->cpu, |
| 1937 | global_min, global_max); |
| 1938 | |
| 1939 | cpu->min_perf_ratio = max(min_policy_perf, global_min); |
| 1940 | cpu->min_perf_ratio = min(cpu->min_perf_ratio, max_policy_perf); |
| 1941 | cpu->max_perf_ratio = min(max_policy_perf, global_max); |
| 1942 | cpu->max_perf_ratio = max(min_policy_perf, cpu->max_perf_ratio); |
Rafael J. Wysocki | c5a2ee7 | 2017-03-22 23:58:57 +0100 | [diff] [blame] | 1943 | |
| 1944 | /* Make sure min_perf <= max_perf */ |
Srinivas Pandruvada | 1a4fe38 | 2017-06-12 16:30:27 -0700 | [diff] [blame] | 1945 | cpu->min_perf_ratio = min(cpu->min_perf_ratio, |
| 1946 | cpu->max_perf_ratio); |
| 1947 | |
Rafael J. Wysocki | c5a2ee7 | 2017-03-22 23:58:57 +0100 | [diff] [blame] | 1948 | } |
Srinivas Pandruvada | 1a4fe38 | 2017-06-12 16:30:27 -0700 | [diff] [blame] | 1949 | pr_debug("cpu:%d max_perf_ratio:%d min_perf_ratio:%d\n", policy->cpu, |
| 1950 | cpu->max_perf_ratio, |
| 1951 | cpu->min_perf_ratio); |
Srinivas Pandruvada | eae48f0 | 2016-10-25 13:20:40 -0700 | [diff] [blame] | 1952 | } |
| 1953 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1954 | static int intel_pstate_set_policy(struct cpufreq_policy *policy) |
Pali Rohár | 36b4bed | 2014-10-16 01:16:51 +0200 | [diff] [blame] | 1955 | { |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1956 | struct cpudata *cpu; |
| 1957 | |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 1958 | if (!policy->cpuinfo.max_freq) |
Srinivas Pandruvada | d1b6848 | 2013-04-09 22:38:18 +0000 | [diff] [blame] | 1959 | return -ENODEV; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1960 | |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 1961 | pr_debug("set_policy cpuinfo.max %u policy->max %u\n", |
Kristen Carlson Accardi | a047599 | 2015-01-29 13:03:52 -0800 | [diff] [blame] | 1962 | policy->cpuinfo.max_freq, policy->max); |
| 1963 | |
| 1964 | cpu = all_cpu_data[policy->cpu]; |
Srinivas Pandruvada | d1b6848 | 2013-04-09 22:38:18 +0000 | [diff] [blame] | 1965 | cpu->policy = policy->policy; |
| 1966 | |
Srinivas Pandruvada | b59fe54 | 2016-12-06 13:32:15 -0800 | [diff] [blame] | 1967 | mutex_lock(&intel_pstate_limits_lock); |
| 1968 | |
Rafael J. Wysocki | c5a2ee7 | 2017-03-22 23:58:57 +0100 | [diff] [blame] | 1969 | intel_pstate_update_perf_limits(policy, cpu); |
Rafael J. Wysocki | a240c4a | 2017-03-02 23:29:12 +0100 | [diff] [blame] | 1970 | |
Rafael J. Wysocki | 2f1d407 | 2016-10-24 23:20:25 +0200 | [diff] [blame] | 1971 | if (cpu->policy == CPUFREQ_POLICY_PERFORMANCE) { |
Rafael J. Wysocki | a6c6ead | 2016-10-19 02:57:22 +0200 | [diff] [blame] | 1972 | /* |
| 1973 | * NOHZ_FULL CPUs need this as the governor callback may not |
| 1974 | * be invoked on them. |
| 1975 | */ |
| 1976 | intel_pstate_clear_update_util_hook(policy->cpu); |
| 1977 | intel_pstate_max_within_limits(cpu); |
Len Brown | 82b4e03 | 2017-06-23 22:11:54 -0700 | [diff] [blame] | 1978 | } else { |
| 1979 | intel_pstate_set_update_util_hook(policy->cpu); |
Rafael J. Wysocki | a6c6ead | 2016-10-19 02:57:22 +0200 | [diff] [blame] | 1980 | } |
| 1981 | |
Srinivas Pandruvada | e0efd5b | 2018-06-05 14:42:39 -0700 | [diff] [blame] | 1982 | if (hwp_active) { |
| 1983 | /* |
| 1984 | * When hwp_boost was active before and dynamically it |
| 1985 | * was turned off, in that case we need to clear the |
| 1986 | * update util hook. |
| 1987 | */ |
| 1988 | if (!hwp_boost) |
| 1989 | intel_pstate_clear_update_util_hook(policy->cpu); |
Rafael J. Wysocki | 2bfc4cb | 2017-03-28 00:22:16 +0200 | [diff] [blame] | 1990 | intel_pstate_hwp_set(policy->cpu); |
Srinivas Pandruvada | e0efd5b | 2018-06-05 14:42:39 -0700 | [diff] [blame] | 1991 | } |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 1992 | |
Srinivas Pandruvada | b59fe54 | 2016-12-06 13:32:15 -0800 | [diff] [blame] | 1993 | mutex_unlock(&intel_pstate_limits_lock); |
| 1994 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1995 | return 0; |
| 1996 | } |
| 1997 | |
Rafael J. Wysocki | 80b120c | 2017-03-23 00:00:47 +0100 | [diff] [blame] | 1998 | static void intel_pstate_adjust_policy_max(struct cpufreq_policy *policy, |
| 1999 | struct cpudata *cpu) |
| 2000 | { |
| 2001 | if (cpu->pstate.max_pstate_physical > cpu->pstate.max_pstate && |
| 2002 | policy->max < policy->cpuinfo.max_freq && |
| 2003 | policy->max > cpu->pstate.max_freq) { |
| 2004 | pr_debug("policy->max > max non turbo frequency\n"); |
| 2005 | policy->max = policy->cpuinfo.max_freq; |
| 2006 | } |
| 2007 | } |
| 2008 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 2009 | static int intel_pstate_verify_policy(struct cpufreq_policy *policy) |
| 2010 | { |
Srinivas Pandruvada | 7d9a8a9 | 2017-01-18 10:48:23 -0800 | [diff] [blame] | 2011 | struct cpudata *cpu = all_cpu_data[policy->cpu]; |
Srinivas Pandruvada | 7d9a8a9 | 2017-01-18 10:48:23 -0800 | [diff] [blame] | 2012 | |
| 2013 | update_turbo_state(); |
Rafael J. Wysocki | 80b120c | 2017-03-23 00:00:47 +0100 | [diff] [blame] | 2014 | cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq, |
| 2015 | intel_pstate_get_max_freq(cpu)); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 2016 | |
Stratos Karafotis | 285cb99 | 2014-07-18 08:37:21 -0700 | [diff] [blame] | 2017 | if (policy->policy != CPUFREQ_POLICY_POWERSAVE && |
Stratos Karafotis | c410833 | 2014-07-18 08:37:23 -0700 | [diff] [blame] | 2018 | policy->policy != CPUFREQ_POLICY_PERFORMANCE) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 2019 | return -EINVAL; |
| 2020 | |
Rafael J. Wysocki | 80b120c | 2017-03-23 00:00:47 +0100 | [diff] [blame] | 2021 | intel_pstate_adjust_policy_max(policy, cpu); |
| 2022 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 2023 | return 0; |
| 2024 | } |
| 2025 | |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2026 | static void intel_cpufreq_stop_cpu(struct cpufreq_policy *policy) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 2027 | { |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2028 | intel_pstate_set_min_pstate(all_cpu_data[policy->cpu]); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 2029 | } |
| 2030 | |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2031 | static void intel_pstate_stop_cpu(struct cpufreq_policy *policy) |
| 2032 | { |
| 2033 | pr_debug("CPU %d exiting\n", policy->cpu); |
| 2034 | |
| 2035 | intel_pstate_clear_update_util_hook(policy->cpu); |
Srinivas Pandruvada | 984edbd | 2016-12-06 13:32:16 -0800 | [diff] [blame] | 2036 | if (hwp_active) |
| 2037 | intel_pstate_hwp_save_state(policy); |
| 2038 | else |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2039 | intel_cpufreq_stop_cpu(policy); |
| 2040 | } |
| 2041 | |
| 2042 | static int intel_pstate_cpu_exit(struct cpufreq_policy *policy) |
| 2043 | { |
| 2044 | intel_pstate_exit_perf_limits(policy); |
| 2045 | |
| 2046 | policy->fast_switch_possible = false; |
| 2047 | |
| 2048 | return 0; |
| 2049 | } |
| 2050 | |
| 2051 | static int __intel_pstate_cpu_init(struct cpufreq_policy *policy) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 2052 | { |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 2053 | struct cpudata *cpu; |
Dirk Brandewie | 52e0a50 | 2013-10-15 11:06:14 -0700 | [diff] [blame] | 2054 | int rc; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 2055 | |
| 2056 | rc = intel_pstate_init_cpu(policy->cpu); |
| 2057 | if (rc) |
| 2058 | return rc; |
| 2059 | |
| 2060 | cpu = all_cpu_data[policy->cpu]; |
| 2061 | |
Srinivas Pandruvada | 1a4fe38 | 2017-06-12 16:30:27 -0700 | [diff] [blame] | 2062 | cpu->max_perf_ratio = 0xFF; |
| 2063 | cpu->min_perf_ratio = 0; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 2064 | |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 2065 | policy->min = cpu->pstate.min_pstate * cpu->pstate.scaling; |
| 2066 | policy->max = cpu->pstate.turbo_pstate * cpu->pstate.scaling; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 2067 | |
| 2068 | /* cpuinfo and default policy values */ |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 2069 | policy->cpuinfo.min_freq = cpu->pstate.min_pstate * cpu->pstate.scaling; |
Srinivas Pandruvada | 983e600 | 2016-06-07 17:38:53 -0700 | [diff] [blame] | 2070 | update_turbo_state(); |
Rafael J. Wysocki | 7de3255 | 2017-03-18 00:57:39 +0100 | [diff] [blame] | 2071 | policy->cpuinfo.max_freq = global.turbo_disabled ? |
Srinivas Pandruvada | 983e600 | 2016-06-07 17:38:53 -0700 | [diff] [blame] | 2072 | cpu->pstate.max_pstate : cpu->pstate.turbo_pstate; |
| 2073 | policy->cpuinfo.max_freq *= cpu->pstate.scaling; |
| 2074 | |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 2075 | intel_pstate_init_acpi_perf_limits(policy); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 2076 | |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2077 | policy->fast_switch_possible = true; |
| 2078 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 2079 | return 0; |
| 2080 | } |
| 2081 | |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2082 | static int intel_pstate_cpu_init(struct cpufreq_policy *policy) |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 2083 | { |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2084 | int ret = __intel_pstate_cpu_init(policy); |
| 2085 | |
| 2086 | if (ret) |
| 2087 | return ret; |
| 2088 | |
Rafael J. Wysocki | 7de3255 | 2017-03-18 00:57:39 +0100 | [diff] [blame] | 2089 | if (IS_ENABLED(CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE)) |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2090 | policy->policy = CPUFREQ_POLICY_PERFORMANCE; |
| 2091 | else |
| 2092 | policy->policy = CPUFREQ_POLICY_POWERSAVE; |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 2093 | |
| 2094 | return 0; |
| 2095 | } |
| 2096 | |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2097 | static struct cpufreq_driver intel_pstate = { |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 2098 | .flags = CPUFREQ_CONST_LOOPS, |
| 2099 | .verify = intel_pstate_verify_policy, |
| 2100 | .setpolicy = intel_pstate_set_policy, |
Srinivas Pandruvada | 984edbd | 2016-12-06 13:32:16 -0800 | [diff] [blame] | 2101 | .suspend = intel_pstate_hwp_save_state, |
Srinivas Pandruvada | 8442885 | 2016-11-24 16:07:10 -0800 | [diff] [blame] | 2102 | .resume = intel_pstate_resume, |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 2103 | .init = intel_pstate_cpu_init, |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 2104 | .exit = intel_pstate_cpu_exit, |
Dirk Brandewie | bb18008 | 2014-03-19 08:45:54 -0700 | [diff] [blame] | 2105 | .stop_cpu = intel_pstate_stop_cpu, |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 2106 | .name = "intel_pstate", |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 2107 | }; |
| 2108 | |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2109 | static int intel_cpufreq_verify_policy(struct cpufreq_policy *policy) |
| 2110 | { |
| 2111 | struct cpudata *cpu = all_cpu_data[policy->cpu]; |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2112 | |
| 2113 | update_turbo_state(); |
Rafael J. Wysocki | 80b120c | 2017-03-23 00:00:47 +0100 | [diff] [blame] | 2114 | cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq, |
| 2115 | intel_pstate_get_max_freq(cpu)); |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2116 | |
Rafael J. Wysocki | 80b120c | 2017-03-23 00:00:47 +0100 | [diff] [blame] | 2117 | intel_pstate_adjust_policy_max(policy, cpu); |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2118 | |
Rafael J. Wysocki | c5a2ee7 | 2017-03-22 23:58:57 +0100 | [diff] [blame] | 2119 | intel_pstate_update_perf_limits(policy, cpu); |
| 2120 | |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2121 | return 0; |
| 2122 | } |
| 2123 | |
Doug Smythies | 50e9ffa | 2018-05-14 08:35:49 -0700 | [diff] [blame] | 2124 | /* Use of trace in passive mode: |
| 2125 | * |
| 2126 | * In passive mode the trace core_busy field (also known as the |
| 2127 | * performance field, and lablelled as such on the graphs; also known as |
| 2128 | * core_avg_perf) is not needed and so is re-assigned to indicate if the |
| 2129 | * driver call was via the normal or fast switch path. Various graphs |
| 2130 | * output from the intel_pstate_tracer.py utility that include core_busy |
| 2131 | * (or performance or core_avg_perf) have a fixed y-axis from 0 to 100%, |
| 2132 | * so we use 10 to indicate the the normal path through the driver, and |
| 2133 | * 90 to indicate the fast switch path through the driver. |
| 2134 | * The scaled_busy field is not used, and is set to 0. |
| 2135 | */ |
| 2136 | |
| 2137 | #define INTEL_PSTATE_TRACE_TARGET 10 |
| 2138 | #define INTEL_PSTATE_TRACE_FAST_SWITCH 90 |
| 2139 | |
| 2140 | static void intel_cpufreq_trace(struct cpudata *cpu, unsigned int trace_type, int old_pstate) |
| 2141 | { |
| 2142 | struct sample *sample; |
| 2143 | |
| 2144 | if (!trace_pstate_sample_enabled()) |
| 2145 | return; |
| 2146 | |
| 2147 | if (!intel_pstate_sample(cpu, ktime_get())) |
| 2148 | return; |
| 2149 | |
| 2150 | sample = &cpu->sample; |
| 2151 | trace_pstate_sample(trace_type, |
| 2152 | 0, |
| 2153 | old_pstate, |
| 2154 | cpu->pstate.current_pstate, |
| 2155 | sample->mperf, |
| 2156 | sample->aperf, |
| 2157 | sample->tsc, |
| 2158 | get_avg_frequency(cpu), |
| 2159 | fp_toint(cpu->iowait_boost * 100)); |
| 2160 | } |
| 2161 | |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2162 | static int intel_cpufreq_target(struct cpufreq_policy *policy, |
| 2163 | unsigned int target_freq, |
| 2164 | unsigned int relation) |
| 2165 | { |
| 2166 | struct cpudata *cpu = all_cpu_data[policy->cpu]; |
| 2167 | struct cpufreq_freqs freqs; |
Doug Smythies | 50e9ffa | 2018-05-14 08:35:49 -0700 | [diff] [blame] | 2168 | int target_pstate, old_pstate; |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2169 | |
Rafael J. Wysocki | 64897b2 | 2017-03-21 22:19:07 +0100 | [diff] [blame] | 2170 | update_turbo_state(); |
| 2171 | |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2172 | freqs.old = policy->cur; |
Rafael J. Wysocki | 64897b2 | 2017-03-21 22:19:07 +0100 | [diff] [blame] | 2173 | freqs.new = target_freq; |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2174 | |
| 2175 | cpufreq_freq_transition_begin(policy, &freqs); |
| 2176 | switch (relation) { |
| 2177 | case CPUFREQ_RELATION_L: |
| 2178 | target_pstate = DIV_ROUND_UP(freqs.new, cpu->pstate.scaling); |
| 2179 | break; |
| 2180 | case CPUFREQ_RELATION_H: |
| 2181 | target_pstate = freqs.new / cpu->pstate.scaling; |
| 2182 | break; |
| 2183 | default: |
| 2184 | target_pstate = DIV_ROUND_CLOSEST(freqs.new, cpu->pstate.scaling); |
| 2185 | break; |
| 2186 | } |
| 2187 | target_pstate = intel_pstate_prepare_request(cpu, target_pstate); |
Doug Smythies | 50e9ffa | 2018-05-14 08:35:49 -0700 | [diff] [blame] | 2188 | old_pstate = cpu->pstate.current_pstate; |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2189 | if (target_pstate != cpu->pstate.current_pstate) { |
| 2190 | cpu->pstate.current_pstate = target_pstate; |
| 2191 | wrmsrl_on_cpu(policy->cpu, MSR_IA32_PERF_CTL, |
| 2192 | pstate_funcs.get_val(cpu, target_pstate)); |
| 2193 | } |
Rafael J. Wysocki | 6407829 | 2017-03-03 23:51:31 +0100 | [diff] [blame] | 2194 | freqs.new = target_pstate * cpu->pstate.scaling; |
Doug Smythies | 50e9ffa | 2018-05-14 08:35:49 -0700 | [diff] [blame] | 2195 | intel_cpufreq_trace(cpu, INTEL_PSTATE_TRACE_TARGET, old_pstate); |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2196 | cpufreq_freq_transition_end(policy, &freqs, false); |
| 2197 | |
| 2198 | return 0; |
| 2199 | } |
| 2200 | |
| 2201 | static unsigned int intel_cpufreq_fast_switch(struct cpufreq_policy *policy, |
| 2202 | unsigned int target_freq) |
| 2203 | { |
| 2204 | struct cpudata *cpu = all_cpu_data[policy->cpu]; |
Doug Smythies | 50e9ffa | 2018-05-14 08:35:49 -0700 | [diff] [blame] | 2205 | int target_pstate, old_pstate; |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2206 | |
Rafael J. Wysocki | 64897b2 | 2017-03-21 22:19:07 +0100 | [diff] [blame] | 2207 | update_turbo_state(); |
| 2208 | |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2209 | target_pstate = DIV_ROUND_UP(target_freq, cpu->pstate.scaling); |
Rafael J. Wysocki | 6407829 | 2017-03-03 23:51:31 +0100 | [diff] [blame] | 2210 | target_pstate = intel_pstate_prepare_request(cpu, target_pstate); |
Doug Smythies | 50e9ffa | 2018-05-14 08:35:49 -0700 | [diff] [blame] | 2211 | old_pstate = cpu->pstate.current_pstate; |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2212 | intel_pstate_update_pstate(cpu, target_pstate); |
Doug Smythies | 50e9ffa | 2018-05-14 08:35:49 -0700 | [diff] [blame] | 2213 | intel_cpufreq_trace(cpu, INTEL_PSTATE_TRACE_FAST_SWITCH, old_pstate); |
Rafael J. Wysocki | 6407829 | 2017-03-03 23:51:31 +0100 | [diff] [blame] | 2214 | return target_pstate * cpu->pstate.scaling; |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2215 | } |
| 2216 | |
| 2217 | static int intel_cpufreq_cpu_init(struct cpufreq_policy *policy) |
| 2218 | { |
| 2219 | int ret = __intel_pstate_cpu_init(policy); |
| 2220 | |
| 2221 | if (ret) |
| 2222 | return ret; |
| 2223 | |
| 2224 | policy->cpuinfo.transition_latency = INTEL_CPUFREQ_TRANSITION_LATENCY; |
Rafael J. Wysocki | 1b72e7f | 2017-04-11 00:20:41 +0200 | [diff] [blame] | 2225 | policy->transition_delay_us = INTEL_CPUFREQ_TRANSITION_DELAY; |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2226 | /* This reflects the intel_pstate_get_cpu_pstates() setting. */ |
| 2227 | policy->cur = policy->cpuinfo.min_freq; |
| 2228 | |
| 2229 | return 0; |
| 2230 | } |
| 2231 | |
| 2232 | static struct cpufreq_driver intel_cpufreq = { |
| 2233 | .flags = CPUFREQ_CONST_LOOPS, |
| 2234 | .verify = intel_cpufreq_verify_policy, |
| 2235 | .target = intel_cpufreq_target, |
| 2236 | .fast_switch = intel_cpufreq_fast_switch, |
| 2237 | .init = intel_cpufreq_cpu_init, |
| 2238 | .exit = intel_pstate_cpu_exit, |
| 2239 | .stop_cpu = intel_cpufreq_stop_cpu, |
| 2240 | .name = "intel_cpufreq", |
| 2241 | }; |
| 2242 | |
Rafael J. Wysocki | ee8df89 | 2017-03-28 00:13:00 +0200 | [diff] [blame] | 2243 | static struct cpufreq_driver *default_driver = &intel_pstate; |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2244 | |
Rafael J. Wysocki | fb1fe10 | 2017-01-05 02:53:12 +0100 | [diff] [blame] | 2245 | static void intel_pstate_driver_cleanup(void) |
| 2246 | { |
| 2247 | unsigned int cpu; |
| 2248 | |
| 2249 | get_online_cpus(); |
| 2250 | for_each_online_cpu(cpu) { |
| 2251 | if (all_cpu_data[cpu]) { |
| 2252 | if (intel_pstate_driver == &intel_pstate) |
| 2253 | intel_pstate_clear_update_util_hook(cpu); |
| 2254 | |
| 2255 | kfree(all_cpu_data[cpu]); |
| 2256 | all_cpu_data[cpu] = NULL; |
| 2257 | } |
| 2258 | } |
| 2259 | put_online_cpus(); |
Rafael J. Wysocki | ee8df89 | 2017-03-28 00:13:00 +0200 | [diff] [blame] | 2260 | intel_pstate_driver = NULL; |
Rafael J. Wysocki | fb1fe10 | 2017-01-05 02:53:12 +0100 | [diff] [blame] | 2261 | } |
| 2262 | |
Rafael J. Wysocki | ee8df89 | 2017-03-28 00:13:00 +0200 | [diff] [blame] | 2263 | static int intel_pstate_register_driver(struct cpufreq_driver *driver) |
Rafael J. Wysocki | fb1fe10 | 2017-01-05 02:53:12 +0100 | [diff] [blame] | 2264 | { |
| 2265 | int ret; |
| 2266 | |
Rafael J. Wysocki | c5a2ee7 | 2017-03-22 23:58:57 +0100 | [diff] [blame] | 2267 | memset(&global, 0, sizeof(global)); |
| 2268 | global.max_perf_pct = 100; |
Rafael J. Wysocki | c3a49c8 | 2017-02-28 00:05:01 +0100 | [diff] [blame] | 2269 | |
Rafael J. Wysocki | ee8df89 | 2017-03-28 00:13:00 +0200 | [diff] [blame] | 2270 | intel_pstate_driver = driver; |
Rafael J. Wysocki | fb1fe10 | 2017-01-05 02:53:12 +0100 | [diff] [blame] | 2271 | ret = cpufreq_register_driver(intel_pstate_driver); |
| 2272 | if (ret) { |
| 2273 | intel_pstate_driver_cleanup(); |
| 2274 | return ret; |
| 2275 | } |
| 2276 | |
Rafael J. Wysocki | c5a2ee7 | 2017-03-22 23:58:57 +0100 | [diff] [blame] | 2277 | global.min_perf_pct = min_perf_pct_min(); |
| 2278 | |
Rafael J. Wysocki | fb1fe10 | 2017-01-05 02:53:12 +0100 | [diff] [blame] | 2279 | return 0; |
| 2280 | } |
| 2281 | |
| 2282 | static int intel_pstate_unregister_driver(void) |
| 2283 | { |
| 2284 | if (hwp_active) |
| 2285 | return -EBUSY; |
| 2286 | |
Rafael J. Wysocki | fb1fe10 | 2017-01-05 02:53:12 +0100 | [diff] [blame] | 2287 | cpufreq_unregister_driver(intel_pstate_driver); |
| 2288 | intel_pstate_driver_cleanup(); |
| 2289 | |
| 2290 | return 0; |
| 2291 | } |
| 2292 | |
| 2293 | static ssize_t intel_pstate_show_status(char *buf) |
| 2294 | { |
Rafael J. Wysocki | ee8df89 | 2017-03-28 00:13:00 +0200 | [diff] [blame] | 2295 | if (!intel_pstate_driver) |
Rafael J. Wysocki | fb1fe10 | 2017-01-05 02:53:12 +0100 | [diff] [blame] | 2296 | return sprintf(buf, "off\n"); |
| 2297 | |
| 2298 | return sprintf(buf, "%s\n", intel_pstate_driver == &intel_pstate ? |
| 2299 | "active" : "passive"); |
| 2300 | } |
| 2301 | |
| 2302 | static int intel_pstate_update_status(const char *buf, size_t size) |
| 2303 | { |
| 2304 | int ret; |
| 2305 | |
| 2306 | if (size == 3 && !strncmp(buf, "off", size)) |
Rafael J. Wysocki | ee8df89 | 2017-03-28 00:13:00 +0200 | [diff] [blame] | 2307 | return intel_pstate_driver ? |
Rafael J. Wysocki | fb1fe10 | 2017-01-05 02:53:12 +0100 | [diff] [blame] | 2308 | intel_pstate_unregister_driver() : -EINVAL; |
| 2309 | |
| 2310 | if (size == 6 && !strncmp(buf, "active", size)) { |
Rafael J. Wysocki | ee8df89 | 2017-03-28 00:13:00 +0200 | [diff] [blame] | 2311 | if (intel_pstate_driver) { |
Rafael J. Wysocki | fb1fe10 | 2017-01-05 02:53:12 +0100 | [diff] [blame] | 2312 | if (intel_pstate_driver == &intel_pstate) |
| 2313 | return 0; |
| 2314 | |
| 2315 | ret = intel_pstate_unregister_driver(); |
| 2316 | if (ret) |
| 2317 | return ret; |
| 2318 | } |
| 2319 | |
Rafael J. Wysocki | ee8df89 | 2017-03-28 00:13:00 +0200 | [diff] [blame] | 2320 | return intel_pstate_register_driver(&intel_pstate); |
Rafael J. Wysocki | fb1fe10 | 2017-01-05 02:53:12 +0100 | [diff] [blame] | 2321 | } |
| 2322 | |
| 2323 | if (size == 7 && !strncmp(buf, "passive", size)) { |
Rafael J. Wysocki | ee8df89 | 2017-03-28 00:13:00 +0200 | [diff] [blame] | 2324 | if (intel_pstate_driver) { |
Rafael J. Wysocki | 0042b2c | 2017-03-28 00:14:08 +0200 | [diff] [blame] | 2325 | if (intel_pstate_driver == &intel_cpufreq) |
Rafael J. Wysocki | fb1fe10 | 2017-01-05 02:53:12 +0100 | [diff] [blame] | 2326 | return 0; |
| 2327 | |
| 2328 | ret = intel_pstate_unregister_driver(); |
| 2329 | if (ret) |
| 2330 | return ret; |
| 2331 | } |
| 2332 | |
Rafael J. Wysocki | ee8df89 | 2017-03-28 00:13:00 +0200 | [diff] [blame] | 2333 | return intel_pstate_register_driver(&intel_cpufreq); |
Rafael J. Wysocki | fb1fe10 | 2017-01-05 02:53:12 +0100 | [diff] [blame] | 2334 | } |
| 2335 | |
| 2336 | return -EINVAL; |
| 2337 | } |
| 2338 | |
Jisheng Zhang | eed4360 | 2016-06-27 18:07:16 +0800 | [diff] [blame] | 2339 | static int no_load __initdata; |
| 2340 | static int no_hwp __initdata; |
| 2341 | static int hwp_only __initdata; |
Jisheng Zhang | 29327c8 | 2016-06-27 18:07:17 +0800 | [diff] [blame] | 2342 | static unsigned int force_load __initdata; |
Dirk Brandewie | 6be2649 | 2013-02-15 22:55:10 +0100 | [diff] [blame] | 2343 | |
Jisheng Zhang | 29327c8 | 2016-06-27 18:07:17 +0800 | [diff] [blame] | 2344 | static int __init intel_pstate_msrs_not_valid(void) |
Dirk Brandewie | b563b4e | 2013-03-22 01:29:28 +0100 | [diff] [blame] | 2345 | { |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 2346 | if (!pstate_funcs.get_max() || |
Stratos Karafotis | c410833 | 2014-07-18 08:37:23 -0700 | [diff] [blame] | 2347 | !pstate_funcs.get_min() || |
| 2348 | !pstate_funcs.get_turbo()) |
Dirk Brandewie | b563b4e | 2013-03-22 01:29:28 +0100 | [diff] [blame] | 2349 | return -ENODEV; |
| 2350 | |
Dirk Brandewie | b563b4e | 2013-03-22 01:29:28 +0100 | [diff] [blame] | 2351 | return 0; |
| 2352 | } |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 2353 | |
Jisheng Zhang | 29327c8 | 2016-06-27 18:07:17 +0800 | [diff] [blame] | 2354 | static void __init copy_cpu_funcs(struct pstate_funcs *funcs) |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 2355 | { |
| 2356 | pstate_funcs.get_max = funcs->get_max; |
Srinivas Pandruvada | 3bcc6fa | 2015-10-14 16:12:00 -0700 | [diff] [blame] | 2357 | pstate_funcs.get_max_physical = funcs->get_max_physical; |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 2358 | pstate_funcs.get_min = funcs->get_min; |
| 2359 | pstate_funcs.get_turbo = funcs->get_turbo; |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 2360 | pstate_funcs.get_scaling = funcs->get_scaling; |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 2361 | pstate_funcs.get_val = funcs->get_val; |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 2362 | pstate_funcs.get_vid = funcs->get_vid; |
Srinivas Pandruvada | 6e34e1f | 2017-07-13 15:03:51 -0700 | [diff] [blame] | 2363 | pstate_funcs.get_aperf_mperf_shift = funcs->get_aperf_mperf_shift; |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 2364 | } |
| 2365 | |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 2366 | #ifdef CONFIG_ACPI |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 2367 | |
Jisheng Zhang | 29327c8 | 2016-06-27 18:07:17 +0800 | [diff] [blame] | 2368 | static bool __init intel_pstate_no_acpi_pss(void) |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 2369 | { |
| 2370 | int i; |
| 2371 | |
| 2372 | for_each_possible_cpu(i) { |
| 2373 | acpi_status status; |
| 2374 | union acpi_object *pss; |
| 2375 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 2376 | struct acpi_processor *pr = per_cpu(processors, i); |
| 2377 | |
| 2378 | if (!pr) |
| 2379 | continue; |
| 2380 | |
| 2381 | status = acpi_evaluate_object(pr->handle, "_PSS", NULL, &buffer); |
| 2382 | if (ACPI_FAILURE(status)) |
| 2383 | continue; |
| 2384 | |
| 2385 | pss = buffer.pointer; |
| 2386 | if (pss && pss->type == ACPI_TYPE_PACKAGE) { |
| 2387 | kfree(pss); |
| 2388 | return false; |
| 2389 | } |
| 2390 | |
| 2391 | kfree(pss); |
| 2392 | } |
| 2393 | |
| 2394 | return true; |
| 2395 | } |
| 2396 | |
Jisheng Zhang | 29327c8 | 2016-06-27 18:07:17 +0800 | [diff] [blame] | 2397 | static bool __init intel_pstate_has_acpi_ppc(void) |
ethan zhao | 966916e | 2014-12-01 11:32:08 +0900 | [diff] [blame] | 2398 | { |
| 2399 | int i; |
| 2400 | |
| 2401 | for_each_possible_cpu(i) { |
| 2402 | struct acpi_processor *pr = per_cpu(processors, i); |
| 2403 | |
| 2404 | if (!pr) |
| 2405 | continue; |
| 2406 | if (acpi_has_method(pr->handle, "_PPC")) |
| 2407 | return true; |
| 2408 | } |
| 2409 | return false; |
| 2410 | } |
| 2411 | |
| 2412 | enum { |
| 2413 | PSS, |
| 2414 | PPC, |
| 2415 | }; |
| 2416 | |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 2417 | /* Hardware vendor-specific info that has its own power management modes */ |
Toshi Kani | 5e93232 | 2017-08-23 16:54:44 -0600 | [diff] [blame] | 2418 | static struct acpi_platform_list plat_info[] __initdata = { |
| 2419 | {"HP ", "ProLiant", 0, ACPI_SIG_FADT, all_versions, 0, PSS}, |
| 2420 | {"ORACLE", "X4-2 ", 0, ACPI_SIG_FADT, all_versions, 0, PPC}, |
| 2421 | {"ORACLE", "X4-2L ", 0, ACPI_SIG_FADT, all_versions, 0, PPC}, |
| 2422 | {"ORACLE", "X4-2B ", 0, ACPI_SIG_FADT, all_versions, 0, PPC}, |
| 2423 | {"ORACLE", "X3-2 ", 0, ACPI_SIG_FADT, all_versions, 0, PPC}, |
| 2424 | {"ORACLE", "X3-2L ", 0, ACPI_SIG_FADT, all_versions, 0, PPC}, |
| 2425 | {"ORACLE", "X3-2B ", 0, ACPI_SIG_FADT, all_versions, 0, PPC}, |
| 2426 | {"ORACLE", "X4470M2 ", 0, ACPI_SIG_FADT, all_versions, 0, PPC}, |
| 2427 | {"ORACLE", "X4270M3 ", 0, ACPI_SIG_FADT, all_versions, 0, PPC}, |
| 2428 | {"ORACLE", "X4270M2 ", 0, ACPI_SIG_FADT, all_versions, 0, PPC}, |
| 2429 | {"ORACLE", "X4170M2 ", 0, ACPI_SIG_FADT, all_versions, 0, PPC}, |
| 2430 | {"ORACLE", "X4170 M3", 0, ACPI_SIG_FADT, all_versions, 0, PPC}, |
| 2431 | {"ORACLE", "X4275 M3", 0, ACPI_SIG_FADT, all_versions, 0, PPC}, |
| 2432 | {"ORACLE", "X6-2 ", 0, ACPI_SIG_FADT, all_versions, 0, PPC}, |
| 2433 | {"ORACLE", "Sudbury ", 0, ACPI_SIG_FADT, all_versions, 0, PPC}, |
| 2434 | { } /* End */ |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 2435 | }; |
| 2436 | |
Jisheng Zhang | 29327c8 | 2016-06-27 18:07:17 +0800 | [diff] [blame] | 2437 | static bool __init intel_pstate_platform_pwr_mgmt_exists(void) |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 2438 | { |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 2439 | const struct x86_cpu_id *id; |
| 2440 | u64 misc_pwr; |
Toshi Kani | 5e93232 | 2017-08-23 16:54:44 -0600 | [diff] [blame] | 2441 | int idx; |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 2442 | |
| 2443 | id = x86_match_cpu(intel_pstate_cpu_oob_ids); |
| 2444 | if (id) { |
| 2445 | rdmsrl(MSR_MISC_PWR_MGMT, misc_pwr); |
| 2446 | if ( misc_pwr & (1 << 8)) |
| 2447 | return true; |
| 2448 | } |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 2449 | |
Toshi Kani | 5e93232 | 2017-08-23 16:54:44 -0600 | [diff] [blame] | 2450 | idx = acpi_match_platform_list(plat_info); |
| 2451 | if (idx < 0) |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 2452 | return false; |
| 2453 | |
Toshi Kani | 5e93232 | 2017-08-23 16:54:44 -0600 | [diff] [blame] | 2454 | switch (plat_info[idx].data) { |
| 2455 | case PSS: |
| 2456 | return intel_pstate_no_acpi_pss(); |
| 2457 | case PPC: |
| 2458 | return intel_pstate_has_acpi_ppc() && !force_load; |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 2459 | } |
| 2460 | |
| 2461 | return false; |
| 2462 | } |
Rafael J. Wysocki | d0ea59e | 2016-11-17 22:47:47 +0100 | [diff] [blame] | 2463 | |
| 2464 | static void intel_pstate_request_control_from_smm(void) |
| 2465 | { |
| 2466 | /* |
| 2467 | * It may be unsafe to request P-states control from SMM if _PPC support |
| 2468 | * has not been enabled. |
| 2469 | */ |
| 2470 | if (acpi_ppc) |
| 2471 | acpi_processor_pstate_control(); |
| 2472 | } |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 2473 | #else /* CONFIG_ACPI not enabled */ |
| 2474 | static inline bool intel_pstate_platform_pwr_mgmt_exists(void) { return false; } |
ethan zhao | 966916e | 2014-12-01 11:32:08 +0900 | [diff] [blame] | 2475 | static inline bool intel_pstate_has_acpi_ppc(void) { return false; } |
Rafael J. Wysocki | d0ea59e | 2016-11-17 22:47:47 +0100 | [diff] [blame] | 2476 | static inline void intel_pstate_request_control_from_smm(void) {} |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 2477 | #endif /* CONFIG_ACPI */ |
| 2478 | |
Srinivas Pandruvada | ff7c991 | 2018-06-18 12:47:45 -0700 | [diff] [blame] | 2479 | #define INTEL_PSTATE_HWP_BROADWELL 0x01 |
| 2480 | |
| 2481 | #define ICPU_HWP(model, hwp_mode) \ |
| 2482 | { X86_VENDOR_INTEL, 6, model, X86_FEATURE_HWP, hwp_mode } |
| 2483 | |
Srinivas Pandruvada | 7791e4a | 2016-02-25 15:09:19 -0800 | [diff] [blame] | 2484 | static const struct x86_cpu_id hwp_support_ids[] __initconst = { |
Srinivas Pandruvada | ff7c991 | 2018-06-18 12:47:45 -0700 | [diff] [blame] | 2485 | ICPU_HWP(INTEL_FAM6_BROADWELL_X, INTEL_PSTATE_HWP_BROADWELL), |
| 2486 | ICPU_HWP(INTEL_FAM6_BROADWELL_XEON_D, INTEL_PSTATE_HWP_BROADWELL), |
| 2487 | ICPU_HWP(X86_MODEL_ANY, 0), |
Srinivas Pandruvada | 7791e4a | 2016-02-25 15:09:19 -0800 | [diff] [blame] | 2488 | {} |
| 2489 | }; |
| 2490 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 2491 | static int __init intel_pstate_init(void) |
| 2492 | { |
Srinivas Pandruvada | ff7c991 | 2018-06-18 12:47:45 -0700 | [diff] [blame] | 2493 | const struct x86_cpu_id *id; |
Rafael J. Wysocki | eb5139d | 2017-03-22 23:52:18 +0100 | [diff] [blame] | 2494 | int rc; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 2495 | |
Dirk Brandewie | 6be2649 | 2013-02-15 22:55:10 +0100 | [diff] [blame] | 2496 | if (no_load) |
| 2497 | return -ENODEV; |
| 2498 | |
Srinivas Pandruvada | ff7c991 | 2018-06-18 12:47:45 -0700 | [diff] [blame] | 2499 | id = x86_match_cpu(hwp_support_ids); |
| 2500 | if (id) { |
Rafael J. Wysocki | 2f49afc | 2017-03-28 00:19:03 +0200 | [diff] [blame] | 2501 | copy_cpu_funcs(&core_funcs); |
Rafael J. Wysocki | c4f3f70 | 2017-07-25 00:12:20 +0200 | [diff] [blame] | 2502 | if (!no_hwp) { |
Rafael J. Wysocki | eb5139d | 2017-03-22 23:52:18 +0100 | [diff] [blame] | 2503 | hwp_active++; |
Srinivas Pandruvada | ff7c991 | 2018-06-18 12:47:45 -0700 | [diff] [blame] | 2504 | hwp_mode_bdw = id->driver_data; |
Rafael J. Wysocki | eb5139d | 2017-03-22 23:52:18 +0100 | [diff] [blame] | 2505 | intel_pstate.attr = hwp_cpufreq_attrs; |
| 2506 | goto hwp_cpu_matched; |
| 2507 | } |
| 2508 | } else { |
Rafael J. Wysocki | eb5139d | 2017-03-22 23:52:18 +0100 | [diff] [blame] | 2509 | id = x86_match_cpu(intel_pstate_cpu_ids); |
| 2510 | if (!id) |
| 2511 | return -ENODEV; |
| 2512 | |
Rafael J. Wysocki | 2f49afc | 2017-03-28 00:19:03 +0200 | [diff] [blame] | 2513 | copy_cpu_funcs((struct pstate_funcs *)id->driver_data); |
Srinivas Pandruvada | 7791e4a | 2016-02-25 15:09:19 -0800 | [diff] [blame] | 2514 | } |
| 2515 | |
Dirk Brandewie | b563b4e | 2013-03-22 01:29:28 +0100 | [diff] [blame] | 2516 | if (intel_pstate_msrs_not_valid()) |
| 2517 | return -ENODEV; |
| 2518 | |
Srinivas Pandruvada | 7791e4a | 2016-02-25 15:09:19 -0800 | [diff] [blame] | 2519 | hwp_cpu_matched: |
| 2520 | /* |
| 2521 | * The Intel pstate driver will be ignored if the platform |
| 2522 | * firmware has its own power management modes. |
| 2523 | */ |
| 2524 | if (intel_pstate_platform_pwr_mgmt_exists()) |
| 2525 | return -ENODEV; |
| 2526 | |
Rafael J. Wysocki | fb1fe10 | 2017-01-05 02:53:12 +0100 | [diff] [blame] | 2527 | if (!hwp_active && hwp_only) |
| 2528 | return -ENOTSUPP; |
| 2529 | |
Joe Perches | 4836df1 | 2016-04-05 13:28:23 -0700 | [diff] [blame] | 2530 | pr_info("Intel P-state driver initializing\n"); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 2531 | |
Kees Cook | fad953c | 2018-06-12 14:27:37 -0700 | [diff] [blame] | 2532 | all_cpu_data = vzalloc(array_size(sizeof(void *), num_possible_cpus())); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 2533 | if (!all_cpu_data) |
| 2534 | return -ENOMEM; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 2535 | |
Rafael J. Wysocki | d0ea59e | 2016-11-17 22:47:47 +0100 | [diff] [blame] | 2536 | intel_pstate_request_control_from_smm(); |
| 2537 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 2538 | intel_pstate_sysfs_expose_params(); |
Dirk Brandewie | b69880f | 2014-01-16 10:32:25 -0800 | [diff] [blame] | 2539 | |
Rafael J. Wysocki | 0c30b65 | 2017-01-11 04:12:16 +0100 | [diff] [blame] | 2540 | mutex_lock(&intel_pstate_driver_lock); |
Rafael J. Wysocki | ee8df89 | 2017-03-28 00:13:00 +0200 | [diff] [blame] | 2541 | rc = intel_pstate_register_driver(default_driver); |
Rafael J. Wysocki | 0c30b65 | 2017-01-11 04:12:16 +0100 | [diff] [blame] | 2542 | mutex_unlock(&intel_pstate_driver_lock); |
Rafael J. Wysocki | fb1fe10 | 2017-01-05 02:53:12 +0100 | [diff] [blame] | 2543 | if (rc) |
| 2544 | return rc; |
Dirk Brandewie | 907cc90 | 2013-03-05 14:15:27 -0800 | [diff] [blame] | 2545 | |
Dirk Brandewie | 907cc90 | 2013-03-05 14:15:27 -0800 | [diff] [blame] | 2546 | if (hwp_active) |
| 2547 | pr_info("HWP enabled\n"); |
| 2548 | |
Rafael J. Wysocki | fb1fe10 | 2017-01-05 02:53:12 +0100 | [diff] [blame] | 2549 | return 0; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 2550 | } |
| 2551 | device_initcall(intel_pstate_init); |
| 2552 | |
Dirk Brandewie | 6be2649 | 2013-02-15 22:55:10 +0100 | [diff] [blame] | 2553 | static int __init intel_pstate_setup(char *str) |
| 2554 | { |
| 2555 | if (!str) |
| 2556 | return -EINVAL; |
| 2557 | |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2558 | if (!strcmp(str, "disable")) { |
Dirk Brandewie | 6be2649 | 2013-02-15 22:55:10 +0100 | [diff] [blame] | 2559 | no_load = 1; |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2560 | } else if (!strcmp(str, "passive")) { |
| 2561 | pr_info("Passive mode enabled\n"); |
Rafael J. Wysocki | ee8df89 | 2017-03-28 00:13:00 +0200 | [diff] [blame] | 2562 | default_driver = &intel_cpufreq; |
Rafael J. Wysocki | 001c76f | 2016-11-17 23:34:17 +0100 | [diff] [blame] | 2563 | no_hwp = 1; |
| 2564 | } |
Prarit Bhargava | 539342f | 2015-10-22 09:43:31 -0400 | [diff] [blame] | 2565 | if (!strcmp(str, "no_hwp")) { |
Joe Perches | 4836df1 | 2016-04-05 13:28:23 -0700 | [diff] [blame] | 2566 | pr_info("HWP disabled\n"); |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 2567 | no_hwp = 1; |
Prarit Bhargava | 539342f | 2015-10-22 09:43:31 -0400 | [diff] [blame] | 2568 | } |
Ethan Zhao | aa4ea34 | 2014-12-09 10:43:19 +0900 | [diff] [blame] | 2569 | if (!strcmp(str, "force")) |
| 2570 | force_load = 1; |
Kristen Carlson Accardi | d64c3b0 | 2015-02-06 13:41:55 -0800 | [diff] [blame] | 2571 | if (!strcmp(str, "hwp_only")) |
| 2572 | hwp_only = 1; |
Srinivas Pandruvada | eae48f0 | 2016-10-25 13:20:40 -0700 | [diff] [blame] | 2573 | if (!strcmp(str, "per_cpu_perf_limits")) |
| 2574 | per_cpu_limits = true; |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 2575 | |
| 2576 | #ifdef CONFIG_ACPI |
| 2577 | if (!strcmp(str, "support_acpi_ppc")) |
| 2578 | acpi_ppc = true; |
| 2579 | #endif |
| 2580 | |
Dirk Brandewie | 6be2649 | 2013-02-15 22:55:10 +0100 | [diff] [blame] | 2581 | return 0; |
| 2582 | } |
| 2583 | early_param("intel_pstate", intel_pstate_setup); |
| 2584 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 2585 | MODULE_AUTHOR("Dirk Brandewie <dirk.j.brandewie@intel.com>"); |
| 2586 | MODULE_DESCRIPTION("'intel_pstate' - P state driver Intel Core processors"); |
| 2587 | MODULE_LICENSE("GPL"); |