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