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