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> |
| 22 | #include <linux/sched.h> |
| 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 | |
Philippe Longepe | 938d21a | 2015-11-09 17:40:46 -0800 | [diff] [blame] | 40 | #define ATOM_RATIOS 0x66a |
| 41 | #define ATOM_VIDS 0x66b |
| 42 | #define ATOM_TURBO_RATIOS 0x66c |
| 43 | #define ATOM_TURBO_VIDS 0x66d |
Dirk Brandewie | 61d8d2a | 2014-02-12 10:01:07 -0800 | [diff] [blame] | 44 | |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 45 | #ifdef CONFIG_ACPI |
| 46 | #include <acpi/processor.h> |
| 47 | #endif |
| 48 | |
Dirk Brandewie | f0fe3cd | 2014-05-29 09:32:23 -0700 | [diff] [blame] | 49 | #define FRAC_BITS 8 |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 50 | #define int_tofp(X) ((int64_t)(X) << FRAC_BITS) |
| 51 | #define fp_toint(X) ((X) >> FRAC_BITS) |
Dirk Brandewie | f0fe3cd | 2014-05-29 09:32:23 -0700 | [diff] [blame] | 52 | |
Rafael J. Wysocki | a1c9787 | 2016-05-11 19:09:12 +0200 | [diff] [blame] | 53 | #define EXT_BITS 6 |
| 54 | #define EXT_FRAC_BITS (EXT_BITS + FRAC_BITS) |
| 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 | |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 87 | /** |
| 88 | * struct sample - Store performance sample |
Rafael J. Wysocki | a1c9787 | 2016-05-11 19:09:12 +0200 | [diff] [blame] | 89 | * @core_avg_perf: Ratio of APERF/MPERF which is the actual average |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 90 | * performance during last sample period |
| 91 | * @busy_scaled: Scaled busy value which is used to calculate next |
Rafael J. Wysocki | a1c9787 | 2016-05-11 19:09:12 +0200 | [diff] [blame] | 92 | * P state. This can be different than core_avg_perf |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 93 | * to account for cpu idle period |
| 94 | * @aperf: Difference of actual performance frequency clock count |
| 95 | * read from APERF MSR between last and current sample |
| 96 | * @mperf: Difference of maximum performance frequency clock count |
| 97 | * read from MPERF MSR between last and current sample |
| 98 | * @tsc: Difference of time stamp counter between last and |
| 99 | * current sample |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 100 | * @time: Current time from scheduler |
| 101 | * |
| 102 | * This structure is used in the cpudata structure to store performance sample |
| 103 | * data for choosing next P State. |
| 104 | */ |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 105 | struct sample { |
Rafael J. Wysocki | a1c9787 | 2016-05-11 19:09:12 +0200 | [diff] [blame] | 106 | int32_t core_avg_perf; |
Philippe Longepe | 157386b | 2015-12-04 17:40:30 +0100 | [diff] [blame] | 107 | int32_t busy_scaled; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 108 | u64 aperf; |
| 109 | u64 mperf; |
Doug Smythies | 4055fad | 2015-04-11 21:10:26 -0700 | [diff] [blame] | 110 | u64 tsc; |
Rafael J. Wysocki | a4675fb | 2016-02-05 01:45:30 +0100 | [diff] [blame] | 111 | u64 time; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 112 | }; |
| 113 | |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 114 | /** |
| 115 | * struct pstate_data - Store P state data |
| 116 | * @current_pstate: Current requested P state |
| 117 | * @min_pstate: Min P state possible for this platform |
| 118 | * @max_pstate: Max P state possible for this platform |
| 119 | * @max_pstate_physical:This is physical Max P state for a processor |
| 120 | * This can be higher than the max_pstate which can |
| 121 | * be limited by platform thermal design power limits |
| 122 | * @scaling: Scaling factor to convert frequency to cpufreq |
| 123 | * frequency units |
| 124 | * @turbo_pstate: Max Turbo P state possible for this platform |
| 125 | * |
| 126 | * Stores the per cpu model P state limits and current P state. |
| 127 | */ |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 128 | struct pstate_data { |
| 129 | int current_pstate; |
| 130 | int min_pstate; |
| 131 | int max_pstate; |
Srinivas Pandruvada | 3bcc6fa | 2015-10-14 16:12:00 -0700 | [diff] [blame] | 132 | int max_pstate_physical; |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 133 | int scaling; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 134 | int turbo_pstate; |
| 135 | }; |
| 136 | |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 137 | /** |
| 138 | * struct vid_data - Stores voltage information data |
| 139 | * @min: VID data for this platform corresponding to |
| 140 | * the lowest P state |
| 141 | * @max: VID data corresponding to the highest P State. |
| 142 | * @turbo: VID data for turbo P state |
| 143 | * @ratio: Ratio of (vid max - vid min) / |
| 144 | * (max P state - Min P State) |
| 145 | * |
| 146 | * Stores the voltage data for DVFS (Dynamic Voltage and Frequency Scaling) |
| 147 | * This data is used in Atom platforms, where in addition to target P state, |
| 148 | * the voltage data needs to be specified to select next P State. |
| 149 | */ |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 150 | struct vid_data { |
Dirk Brandewie | 21855ff | 2014-05-08 12:57:23 -0700 | [diff] [blame] | 151 | int min; |
| 152 | int max; |
| 153 | int turbo; |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 154 | int32_t ratio; |
| 155 | }; |
| 156 | |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 157 | /** |
| 158 | * struct _pid - Stores PID data |
| 159 | * @setpoint: Target set point for busyness or performance |
| 160 | * @integral: Storage for accumulated error values |
| 161 | * @p_gain: PID proportional gain |
| 162 | * @i_gain: PID integral gain |
| 163 | * @d_gain: PID derivative gain |
| 164 | * @deadband: PID deadband |
| 165 | * @last_err: Last error storage for integral part of PID calculation |
| 166 | * |
| 167 | * Stores PID coefficients and last error for PID controller. |
| 168 | */ |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 169 | struct _pid { |
| 170 | int setpoint; |
| 171 | int32_t integral; |
| 172 | int32_t p_gain; |
| 173 | int32_t i_gain; |
| 174 | int32_t d_gain; |
| 175 | int deadband; |
Brennan Shacklett | d253d2a | 2013-10-21 09:20:32 -0700 | [diff] [blame] | 176 | int32_t last_err; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 177 | }; |
| 178 | |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 179 | /** |
| 180 | * struct cpudata - Per CPU instance data storage |
| 181 | * @cpu: CPU number for this instance data |
| 182 | * @update_util: CPUFreq utility callback information |
Chen Yu | 4578ee7e | 2016-05-11 14:33:08 +0800 | [diff] [blame] | 183 | * @update_util_set: CPUFreq utility callback is set |
Rafael J. Wysocki | 09c448d | 2016-09-14 02:28:13 +0200 | [diff] [blame] | 184 | * @iowait_boost: iowait-related boost fraction |
| 185 | * @last_update: Time of the last update. |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 186 | * @pstate: Stores P state limits for this CPU |
| 187 | * @vid: Stores VID limits for this CPU |
| 188 | * @pid: Stores PID parameters for this CPU |
| 189 | * @last_sample_time: Last Sample time |
| 190 | * @prev_aperf: Last APERF value read from APERF MSR |
| 191 | * @prev_mperf: Last MPERF value read from MPERF MSR |
| 192 | * @prev_tsc: Last timestamp counter (TSC) value |
| 193 | * @prev_cummulative_iowait: IO Wait time difference from last and |
| 194 | * current sample |
| 195 | * @sample: Storage for storing last Sample data |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 196 | * @acpi_perf_data: Stores ACPI perf information read from _PSS |
| 197 | * @valid_pss_table: Set to true for valid ACPI _PSS entries found |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 198 | * |
| 199 | * This structure stores per CPU instance data for all CPUs. |
| 200 | */ |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 201 | struct cpudata { |
| 202 | int cpu; |
| 203 | |
Rafael J. Wysocki | a4675fb | 2016-02-05 01:45:30 +0100 | [diff] [blame] | 204 | struct update_util_data update_util; |
Chen Yu | 4578ee7e | 2016-05-11 14:33:08 +0800 | [diff] [blame] | 205 | bool update_util_set; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 206 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 207 | struct pstate_data pstate; |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 208 | struct vid_data vid; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 209 | struct _pid pid; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 210 | |
Rafael J. Wysocki | 09c448d | 2016-09-14 02:28:13 +0200 | [diff] [blame] | 211 | u64 last_update; |
Rafael J. Wysocki | a4675fb | 2016-02-05 01:45:30 +0100 | [diff] [blame] | 212 | u64 last_sample_time; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 213 | u64 prev_aperf; |
| 214 | u64 prev_mperf; |
Doug Smythies | 4055fad | 2015-04-11 21:10:26 -0700 | [diff] [blame] | 215 | u64 prev_tsc; |
Philippe Longepe | 63d1d65 | 2015-12-04 17:40:35 +0100 | [diff] [blame] | 216 | u64 prev_cummulative_iowait; |
Dirk Brandewie | d37e2b7 | 2014-02-12 10:01:04 -0800 | [diff] [blame] | 217 | struct sample sample; |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 218 | #ifdef CONFIG_ACPI |
| 219 | struct acpi_processor_performance acpi_perf_data; |
| 220 | bool valid_pss_table; |
| 221 | #endif |
Rafael J. Wysocki | 09c448d | 2016-09-14 02:28:13 +0200 | [diff] [blame] | 222 | unsigned int iowait_boost; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 223 | }; |
| 224 | |
| 225 | static struct cpudata **all_cpu_data; |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 226 | |
| 227 | /** |
| 228 | * struct pid_adjust_policy - Stores static PID configuration data |
| 229 | * @sample_rate_ms: PID calculation sample rate in ms |
| 230 | * @sample_rate_ns: Sample rate calculation in ns |
| 231 | * @deadband: PID deadband |
| 232 | * @setpoint: PID Setpoint |
| 233 | * @p_gain_pct: PID proportional gain |
| 234 | * @i_gain_pct: PID integral gain |
| 235 | * @d_gain_pct: PID derivative gain |
Rafael J. Wysocki | 09c448d | 2016-09-14 02:28:13 +0200 | [diff] [blame] | 236 | * @boost_iowait: Whether or not to use iowait boosting. |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 237 | * |
| 238 | * Stores per CPU model static PID configuration data. |
| 239 | */ |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 240 | struct pstate_adjust_policy { |
| 241 | int sample_rate_ms; |
Rafael J. Wysocki | a4675fb | 2016-02-05 01:45:30 +0100 | [diff] [blame] | 242 | s64 sample_rate_ns; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 243 | int deadband; |
| 244 | int setpoint; |
| 245 | int p_gain_pct; |
| 246 | int d_gain_pct; |
| 247 | int i_gain_pct; |
Rafael J. Wysocki | 09c448d | 2016-09-14 02:28:13 +0200 | [diff] [blame] | 248 | bool boost_iowait; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 249 | }; |
| 250 | |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 251 | /** |
| 252 | * struct pstate_funcs - Per CPU model specific callbacks |
| 253 | * @get_max: Callback to get maximum non turbo effective P state |
| 254 | * @get_max_physical: Callback to get maximum non turbo physical P state |
| 255 | * @get_min: Callback to get minimum P state |
| 256 | * @get_turbo: Callback to get turbo P state |
| 257 | * @get_scaling: Callback to get frequency scaling factor |
| 258 | * @get_val: Callback to convert P state to actual MSR write value |
| 259 | * @get_vid: Callback to get VID data for Atom platforms |
| 260 | * @get_target_pstate: Callback to a function to calculate next P state to use |
| 261 | * |
| 262 | * Core and Atom CPU models have different way to get P State limits. This |
| 263 | * structure is used to store those callbacks. |
| 264 | */ |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 265 | struct pstate_funcs { |
| 266 | int (*get_max)(void); |
Srinivas Pandruvada | 3bcc6fa | 2015-10-14 16:12:00 -0700 | [diff] [blame] | 267 | int (*get_max_physical)(void); |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 268 | int (*get_min)(void); |
| 269 | int (*get_turbo)(void); |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 270 | int (*get_scaling)(void); |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 271 | u64 (*get_val)(struct cpudata*, int pstate); |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 272 | void (*get_vid)(struct cpudata *); |
Philippe Longepe | 157386b | 2015-12-04 17:40:30 +0100 | [diff] [blame] | 273 | int32_t (*get_target_pstate)(struct cpudata *); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 274 | }; |
| 275 | |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 276 | /** |
| 277 | * struct cpu_defaults- Per CPU model default config data |
| 278 | * @pid_policy: PID config data |
| 279 | * @funcs: Callback function data |
| 280 | */ |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 281 | struct cpu_defaults { |
| 282 | struct pstate_adjust_policy pid_policy; |
| 283 | struct pstate_funcs funcs; |
| 284 | }; |
| 285 | |
Philippe Longepe | 157386b | 2015-12-04 17:40:30 +0100 | [diff] [blame] | 286 | static inline int32_t get_target_pstate_use_performance(struct cpudata *cpu); |
Philippe Longepe | e70eed2 | 2015-12-04 17:40:32 +0100 | [diff] [blame] | 287 | 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] | 288 | |
Jisheng Zhang | 4a7cb7a | 2016-06-27 18:07:18 +0800 | [diff] [blame] | 289 | static struct pstate_adjust_policy pid_params __read_mostly; |
| 290 | static struct pstate_funcs pstate_funcs __read_mostly; |
| 291 | static int hwp_active __read_mostly; |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 292 | |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 293 | #ifdef CONFIG_ACPI |
| 294 | static bool acpi_ppc; |
| 295 | #endif |
Srinivas Pandruvada | 13ad770 | 2016-04-03 13:06:46 -0700 | [diff] [blame] | 296 | |
| 297 | /** |
| 298 | * struct perf_limits - Store user and policy limits |
| 299 | * @no_turbo: User requested turbo state from intel_pstate sysfs |
| 300 | * @turbo_disabled: Platform turbo status either from msr |
| 301 | * MSR_IA32_MISC_ENABLE or when maximum available pstate |
| 302 | * matches the maximum turbo pstate |
| 303 | * @max_perf_pct: Effective maximum performance limit in percentage, this |
| 304 | * is minimum of either limits enforced by cpufreq policy |
| 305 | * or limits from user set limits via intel_pstate sysfs |
| 306 | * @min_perf_pct: Effective minimum performance limit in percentage, this |
| 307 | * is maximum of either limits enforced by cpufreq policy |
| 308 | * or limits from user set limits via intel_pstate sysfs |
| 309 | * @max_perf: This is a scaled value between 0 to 255 for max_perf_pct |
| 310 | * This value is used to limit max pstate |
| 311 | * @min_perf: This is a scaled value between 0 to 255 for min_perf_pct |
| 312 | * This value is used to limit min pstate |
| 313 | * @max_policy_pct: The maximum performance in percentage enforced by |
| 314 | * cpufreq setpolicy interface |
| 315 | * @max_sysfs_pct: The maximum performance in percentage enforced by |
| 316 | * intel pstate sysfs interface |
| 317 | * @min_policy_pct: The minimum performance in percentage enforced by |
| 318 | * cpufreq setpolicy interface |
| 319 | * @min_sysfs_pct: The minimum performance in percentage enforced by |
| 320 | * intel pstate sysfs interface |
| 321 | * |
| 322 | * Storage for user and policy defined limits. |
| 323 | */ |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 324 | struct perf_limits { |
| 325 | int no_turbo; |
Dirk Brandewie | dd5fbf7 | 2014-06-20 07:27:59 -0700 | [diff] [blame] | 326 | int turbo_disabled; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 327 | int max_perf_pct; |
| 328 | int min_perf_pct; |
| 329 | int32_t max_perf; |
| 330 | int32_t min_perf; |
Dirk Brandewie | d8f469e | 2013-05-07 08:20:26 -0700 | [diff] [blame] | 331 | int max_policy_pct; |
| 332 | int max_sysfs_pct; |
Kristen Carlson Accardi | a047599 | 2015-01-29 13:03:52 -0800 | [diff] [blame] | 333 | int min_policy_pct; |
| 334 | int min_sysfs_pct; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 335 | }; |
| 336 | |
Prarit Bhargava | 51443fb | 2015-10-15 07:34:15 -0400 | [diff] [blame] | 337 | static struct perf_limits performance_limits = { |
| 338 | .no_turbo = 0, |
| 339 | .turbo_disabled = 0, |
| 340 | .max_perf_pct = 100, |
| 341 | .max_perf = int_tofp(1), |
| 342 | .min_perf_pct = 100, |
| 343 | .min_perf = int_tofp(1), |
| 344 | .max_policy_pct = 100, |
| 345 | .max_sysfs_pct = 100, |
| 346 | .min_policy_pct = 0, |
| 347 | .min_sysfs_pct = 0, |
| 348 | }; |
| 349 | |
| 350 | static struct perf_limits powersave_limits = { |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 351 | .no_turbo = 0, |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 352 | .turbo_disabled = 0, |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 353 | .max_perf_pct = 100, |
| 354 | .max_perf = int_tofp(1), |
| 355 | .min_perf_pct = 0, |
| 356 | .min_perf = 0, |
Dirk Brandewie | d8f469e | 2013-05-07 08:20:26 -0700 | [diff] [blame] | 357 | .max_policy_pct = 100, |
| 358 | .max_sysfs_pct = 100, |
Kristen Carlson Accardi | a047599 | 2015-01-29 13:03:52 -0800 | [diff] [blame] | 359 | .min_policy_pct = 0, |
| 360 | .min_sysfs_pct = 0, |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 361 | }; |
| 362 | |
Prarit Bhargava | 51443fb | 2015-10-15 07:34:15 -0400 | [diff] [blame] | 363 | #ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE |
| 364 | static struct perf_limits *limits = &performance_limits; |
| 365 | #else |
| 366 | static struct perf_limits *limits = &powersave_limits; |
| 367 | #endif |
| 368 | |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 369 | #ifdef CONFIG_ACPI |
Srinivas Pandruvada | 2b3ec76 | 2016-04-27 15:48:08 -0700 | [diff] [blame] | 370 | |
| 371 | static bool intel_pstate_get_ppc_enable_status(void) |
| 372 | { |
| 373 | if (acpi_gbl_FADT.preferred_profile == PM_ENTERPRISE_SERVER || |
| 374 | acpi_gbl_FADT.preferred_profile == PM_PERFORMANCE_SERVER) |
| 375 | return true; |
| 376 | |
| 377 | return acpi_ppc; |
| 378 | } |
| 379 | |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 380 | static void intel_pstate_init_acpi_perf_limits(struct cpufreq_policy *policy) |
| 381 | { |
| 382 | struct cpudata *cpu; |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 383 | int ret; |
| 384 | int i; |
| 385 | |
Srinivas Pandruvada | e59a8f7 | 2016-05-04 15:07:34 -0700 | [diff] [blame] | 386 | if (hwp_active) |
| 387 | return; |
| 388 | |
Srinivas Pandruvada | 2b3ec76 | 2016-04-27 15:48:08 -0700 | [diff] [blame] | 389 | if (!intel_pstate_get_ppc_enable_status()) |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 390 | return; |
| 391 | |
| 392 | cpu = all_cpu_data[policy->cpu]; |
| 393 | |
| 394 | ret = acpi_processor_register_performance(&cpu->acpi_perf_data, |
| 395 | policy->cpu); |
| 396 | if (ret) |
| 397 | return; |
| 398 | |
| 399 | /* |
| 400 | * Check if the control value in _PSS is for PERF_CTL MSR, which should |
| 401 | * guarantee that the states returned by it map to the states in our |
| 402 | * list directly. |
| 403 | */ |
| 404 | if (cpu->acpi_perf_data.control_register.space_id != |
| 405 | ACPI_ADR_SPACE_FIXED_HARDWARE) |
| 406 | goto err; |
| 407 | |
| 408 | /* |
| 409 | * If there is only one entry _PSS, simply ignore _PSS and continue as |
| 410 | * usual without taking _PSS into account |
| 411 | */ |
| 412 | if (cpu->acpi_perf_data.state_count < 2) |
| 413 | goto err; |
| 414 | |
| 415 | pr_debug("CPU%u - ACPI _PSS perf data\n", policy->cpu); |
| 416 | for (i = 0; i < cpu->acpi_perf_data.state_count; i++) { |
| 417 | pr_debug(" %cP%d: %u MHz, %u mW, 0x%x\n", |
| 418 | (i == cpu->acpi_perf_data.state ? '*' : ' '), i, |
| 419 | (u32) cpu->acpi_perf_data.states[i].core_frequency, |
| 420 | (u32) cpu->acpi_perf_data.states[i].power, |
| 421 | (u32) cpu->acpi_perf_data.states[i].control); |
| 422 | } |
| 423 | |
| 424 | /* |
| 425 | * The _PSS table doesn't contain whole turbo frequency range. |
| 426 | * This just contains +1 MHZ above the max non turbo frequency, |
| 427 | * with control value corresponding to max turbo ratio. But |
| 428 | * when cpufreq set policy is called, it will call with this |
| 429 | * max frequency, which will cause a reduced performance as |
| 430 | * this driver uses real max turbo frequency as the max |
| 431 | * frequency. So correct this frequency in _PSS table to |
Srinivas Pandruvada | b00345d | 2016-06-14 23:12:59 -0700 | [diff] [blame] | 432 | * correct max turbo frequency based on the turbo state. |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 433 | * Also need to convert to MHz as _PSS freq is in MHz. |
| 434 | */ |
Srinivas Pandruvada | b00345d | 2016-06-14 23:12:59 -0700 | [diff] [blame] | 435 | if (!limits->turbo_disabled) |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 436 | cpu->acpi_perf_data.states[0].core_frequency = |
| 437 | policy->cpuinfo.max_freq / 1000; |
| 438 | cpu->valid_pss_table = true; |
Srinivas Pandruvada | 6cacd11 | 2016-05-29 23:31:23 -0700 | [diff] [blame] | 439 | pr_debug("_PPC limits will be enforced\n"); |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 440 | |
| 441 | return; |
| 442 | |
| 443 | err: |
| 444 | cpu->valid_pss_table = false; |
| 445 | acpi_processor_unregister_performance(policy->cpu); |
| 446 | } |
| 447 | |
| 448 | static void intel_pstate_exit_perf_limits(struct cpufreq_policy *policy) |
| 449 | { |
| 450 | struct cpudata *cpu; |
| 451 | |
| 452 | cpu = all_cpu_data[policy->cpu]; |
| 453 | if (!cpu->valid_pss_table) |
| 454 | return; |
| 455 | |
| 456 | acpi_processor_unregister_performance(policy->cpu); |
| 457 | } |
| 458 | |
| 459 | #else |
| 460 | static void intel_pstate_init_acpi_perf_limits(struct cpufreq_policy *policy) |
| 461 | { |
| 462 | } |
| 463 | |
| 464 | static void intel_pstate_exit_perf_limits(struct cpufreq_policy *policy) |
| 465 | { |
| 466 | } |
| 467 | #endif |
| 468 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 469 | static inline void pid_reset(struct _pid *pid, int setpoint, int busy, |
Stratos Karafotis | c410833 | 2014-07-18 08:37:23 -0700 | [diff] [blame] | 470 | int deadband, int integral) { |
Philippe Longepe | b54a0df | 2016-03-08 10:31:14 +0100 | [diff] [blame] | 471 | pid->setpoint = int_tofp(setpoint); |
| 472 | pid->deadband = int_tofp(deadband); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 473 | pid->integral = int_tofp(integral); |
Dirk Brandewie | d98d099 | 2014-02-12 10:01:05 -0800 | [diff] [blame] | 474 | pid->last_err = int_tofp(setpoint) - int_tofp(busy); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 475 | } |
| 476 | |
| 477 | static inline void pid_p_gain_set(struct _pid *pid, int percent) |
| 478 | { |
Rafael J. Wysocki | 22590ef | 2016-04-09 01:25:58 +0200 | [diff] [blame] | 479 | pid->p_gain = div_fp(percent, 100); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 480 | } |
| 481 | |
| 482 | static inline void pid_i_gain_set(struct _pid *pid, int percent) |
| 483 | { |
Rafael J. Wysocki | 22590ef | 2016-04-09 01:25:58 +0200 | [diff] [blame] | 484 | pid->i_gain = div_fp(percent, 100); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 485 | } |
| 486 | |
| 487 | static inline void pid_d_gain_set(struct _pid *pid, int percent) |
| 488 | { |
Rafael J. Wysocki | 22590ef | 2016-04-09 01:25:58 +0200 | [diff] [blame] | 489 | pid->d_gain = div_fp(percent, 100); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 490 | } |
| 491 | |
Brennan Shacklett | d253d2a | 2013-10-21 09:20:32 -0700 | [diff] [blame] | 492 | static signed int pid_calc(struct _pid *pid, int32_t busy) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 493 | { |
Brennan Shacklett | d253d2a | 2013-10-21 09:20:32 -0700 | [diff] [blame] | 494 | signed int result; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 495 | int32_t pterm, dterm, fp_error; |
| 496 | int32_t integral_limit; |
| 497 | |
Philippe Longepe | b54a0df | 2016-03-08 10:31:14 +0100 | [diff] [blame] | 498 | fp_error = pid->setpoint - busy; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 499 | |
Philippe Longepe | b54a0df | 2016-03-08 10:31:14 +0100 | [diff] [blame] | 500 | if (abs(fp_error) <= pid->deadband) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 501 | return 0; |
| 502 | |
| 503 | pterm = mul_fp(pid->p_gain, fp_error); |
| 504 | |
| 505 | pid->integral += fp_error; |
| 506 | |
Kristen Carlson Accardi | e0d4c8f | 2014-12-10 12:39:38 -0800 | [diff] [blame] | 507 | /* |
| 508 | * We limit the integral here so that it will never |
| 509 | * get higher than 30. This prevents it from becoming |
| 510 | * too large an input over long periods of time and allows |
| 511 | * it to get factored out sooner. |
| 512 | * |
| 513 | * The value of 30 was chosen through experimentation. |
| 514 | */ |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 515 | integral_limit = int_tofp(30); |
| 516 | if (pid->integral > integral_limit) |
| 517 | pid->integral = integral_limit; |
| 518 | if (pid->integral < -integral_limit) |
| 519 | pid->integral = -integral_limit; |
| 520 | |
Brennan Shacklett | d253d2a | 2013-10-21 09:20:32 -0700 | [diff] [blame] | 521 | dterm = mul_fp(pid->d_gain, fp_error - pid->last_err); |
| 522 | pid->last_err = fp_error; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 523 | |
| 524 | result = pterm + mul_fp(pid->integral, pid->i_gain) + dterm; |
Doug Smythies | 51d211e | 2014-06-17 13:36:10 -0700 | [diff] [blame] | 525 | result = result + (1 << (FRAC_BITS-1)); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 526 | return (signed int)fp_toint(result); |
| 527 | } |
| 528 | |
| 529 | static inline void intel_pstate_busy_pid_reset(struct cpudata *cpu) |
| 530 | { |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 531 | pid_p_gain_set(&cpu->pid, pid_params.p_gain_pct); |
| 532 | pid_d_gain_set(&cpu->pid, pid_params.d_gain_pct); |
| 533 | pid_i_gain_set(&cpu->pid, pid_params.i_gain_pct); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 534 | |
Stratos Karafotis | 2d8d1f1 | 2014-07-18 08:37:20 -0700 | [diff] [blame] | 535 | pid_reset(&cpu->pid, pid_params.setpoint, 100, pid_params.deadband, 0); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 536 | } |
| 537 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 538 | static inline void intel_pstate_reset_all_pid(void) |
| 539 | { |
| 540 | unsigned int cpu; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 541 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 542 | for_each_online_cpu(cpu) { |
| 543 | if (all_cpu_data[cpu]) |
| 544 | intel_pstate_busy_pid_reset(all_cpu_data[cpu]); |
| 545 | } |
| 546 | } |
| 547 | |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 548 | static inline void update_turbo_state(void) |
| 549 | { |
| 550 | u64 misc_en; |
| 551 | struct cpudata *cpu; |
| 552 | |
| 553 | cpu = all_cpu_data[0]; |
| 554 | rdmsrl(MSR_IA32_MISC_ENABLE, misc_en); |
Prarit Bhargava | 51443fb | 2015-10-15 07:34:15 -0400 | [diff] [blame] | 555 | limits->turbo_disabled = |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 556 | (misc_en & MSR_IA32_MISC_ENABLE_TURBO_DISABLE || |
| 557 | cpu->pstate.max_pstate == cpu->pstate.turbo_pstate); |
| 558 | } |
| 559 | |
Viresh Kumar | 41cfd64 | 2016-02-22 10:27:46 +0530 | [diff] [blame] | 560 | static void intel_pstate_hwp_set(const struct cpumask *cpumask) |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 561 | { |
Kristen Carlson Accardi | 74da56c | 2015-09-09 11:41:22 -0700 | [diff] [blame] | 562 | int min, hw_min, max, hw_max, cpu, range, adj_range; |
| 563 | u64 value, cap; |
| 564 | |
Viresh Kumar | 41cfd64 | 2016-02-22 10:27:46 +0530 | [diff] [blame] | 565 | for_each_cpu(cpu, cpumask) { |
Srinivas Pandruvada | f9f4872 | 2016-10-08 12:42:38 -0700 | [diff] [blame] | 566 | rdmsrl_on_cpu(cpu, MSR_HWP_CAPABILITIES, &cap); |
| 567 | hw_min = HWP_LOWEST_PERF(cap); |
| 568 | hw_max = HWP_HIGHEST_PERF(cap); |
| 569 | range = hw_max - hw_min; |
| 570 | |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 571 | rdmsrl_on_cpu(cpu, MSR_HWP_REQUEST, &value); |
Prarit Bhargava | 51443fb | 2015-10-15 07:34:15 -0400 | [diff] [blame] | 572 | adj_range = limits->min_perf_pct * range / 100; |
Kristen Carlson Accardi | 74da56c | 2015-09-09 11:41:22 -0700 | [diff] [blame] | 573 | min = hw_min + adj_range; |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 574 | value &= ~HWP_MIN_PERF(~0L); |
| 575 | value |= HWP_MIN_PERF(min); |
| 576 | |
Prarit Bhargava | 51443fb | 2015-10-15 07:34:15 -0400 | [diff] [blame] | 577 | adj_range = limits->max_perf_pct * range / 100; |
Kristen Carlson Accardi | 74da56c | 2015-09-09 11:41:22 -0700 | [diff] [blame] | 578 | max = hw_min + adj_range; |
Prarit Bhargava | 51443fb | 2015-10-15 07:34:15 -0400 | [diff] [blame] | 579 | if (limits->no_turbo) { |
Kristen Carlson Accardi | 74da56c | 2015-09-09 11:41:22 -0700 | [diff] [blame] | 580 | hw_max = HWP_GUARANTEED_PERF(cap); |
| 581 | if (hw_max < max) |
| 582 | max = hw_max; |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 583 | } |
| 584 | |
| 585 | value &= ~HWP_MAX_PERF(~0L); |
| 586 | value |= HWP_MAX_PERF(max); |
| 587 | wrmsrl_on_cpu(cpu, MSR_HWP_REQUEST, value); |
| 588 | } |
Viresh Kumar | 41cfd64 | 2016-02-22 10:27:46 +0530 | [diff] [blame] | 589 | } |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 590 | |
Rafael J. Wysocki | ba41e1b | 2016-05-02 02:27:19 +0200 | [diff] [blame] | 591 | static int intel_pstate_hwp_set_policy(struct cpufreq_policy *policy) |
| 592 | { |
| 593 | if (hwp_active) |
| 594 | intel_pstate_hwp_set(policy->cpus); |
| 595 | |
| 596 | return 0; |
| 597 | } |
| 598 | |
Viresh Kumar | 41cfd64 | 2016-02-22 10:27:46 +0530 | [diff] [blame] | 599 | static void intel_pstate_hwp_set_online_cpus(void) |
| 600 | { |
| 601 | get_online_cpus(); |
| 602 | intel_pstate_hwp_set(cpu_online_mask); |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 603 | put_online_cpus(); |
| 604 | } |
| 605 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 606 | /************************** debugfs begin ************************/ |
| 607 | static int pid_param_set(void *data, u64 val) |
| 608 | { |
| 609 | *(u32 *)data = val; |
| 610 | intel_pstate_reset_all_pid(); |
| 611 | return 0; |
| 612 | } |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 613 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 614 | static int pid_param_get(void *data, u64 *val) |
| 615 | { |
| 616 | *val = *(u32 *)data; |
| 617 | return 0; |
| 618 | } |
Stratos Karafotis | 2d8d1f1 | 2014-07-18 08:37:20 -0700 | [diff] [blame] | 619 | 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] | 620 | |
| 621 | struct pid_param { |
| 622 | char *name; |
| 623 | void *value; |
| 624 | }; |
| 625 | |
| 626 | static struct pid_param pid_files[] = { |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 627 | {"sample_rate_ms", &pid_params.sample_rate_ms}, |
| 628 | {"d_gain_pct", &pid_params.d_gain_pct}, |
| 629 | {"i_gain_pct", &pid_params.i_gain_pct}, |
| 630 | {"deadband", &pid_params.deadband}, |
| 631 | {"setpoint", &pid_params.setpoint}, |
| 632 | {"p_gain_pct", &pid_params.p_gain_pct}, |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 633 | {NULL, NULL} |
| 634 | }; |
| 635 | |
Stratos Karafotis | 317dd50 | 2014-07-18 08:37:17 -0700 | [diff] [blame] | 636 | static void __init intel_pstate_debug_expose_params(void) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 637 | { |
Stratos Karafotis | 317dd50 | 2014-07-18 08:37:17 -0700 | [diff] [blame] | 638 | struct dentry *debugfs_parent; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 639 | int i = 0; |
| 640 | |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 641 | if (hwp_active) |
| 642 | return; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 643 | debugfs_parent = debugfs_create_dir("pstate_snb", NULL); |
| 644 | if (IS_ERR_OR_NULL(debugfs_parent)) |
| 645 | return; |
| 646 | while (pid_files[i].name) { |
| 647 | debugfs_create_file(pid_files[i].name, 0660, |
Stratos Karafotis | c410833 | 2014-07-18 08:37:23 -0700 | [diff] [blame] | 648 | debugfs_parent, pid_files[i].value, |
| 649 | &fops_pid_param); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 650 | i++; |
| 651 | } |
| 652 | } |
| 653 | |
| 654 | /************************** debugfs end ************************/ |
| 655 | |
| 656 | /************************** sysfs begin ************************/ |
| 657 | #define show_one(file_name, object) \ |
| 658 | static ssize_t show_##file_name \ |
| 659 | (struct kobject *kobj, struct attribute *attr, char *buf) \ |
| 660 | { \ |
Prarit Bhargava | 51443fb | 2015-10-15 07:34:15 -0400 | [diff] [blame] | 661 | return sprintf(buf, "%u\n", limits->object); \ |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 662 | } |
| 663 | |
Kristen Carlson Accardi | d01b1f4 | 2015-01-28 15:03:27 -0800 | [diff] [blame] | 664 | static ssize_t show_turbo_pct(struct kobject *kobj, |
| 665 | struct attribute *attr, char *buf) |
| 666 | { |
| 667 | struct cpudata *cpu; |
| 668 | int total, no_turbo, turbo_pct; |
| 669 | uint32_t turbo_fp; |
| 670 | |
| 671 | cpu = all_cpu_data[0]; |
| 672 | |
| 673 | total = cpu->pstate.turbo_pstate - cpu->pstate.min_pstate + 1; |
| 674 | no_turbo = cpu->pstate.max_pstate - cpu->pstate.min_pstate + 1; |
Rafael J. Wysocki | 22590ef | 2016-04-09 01:25:58 +0200 | [diff] [blame] | 675 | turbo_fp = div_fp(no_turbo, total); |
Kristen Carlson Accardi | d01b1f4 | 2015-01-28 15:03:27 -0800 | [diff] [blame] | 676 | turbo_pct = 100 - fp_toint(mul_fp(turbo_fp, int_tofp(100))); |
| 677 | return sprintf(buf, "%u\n", turbo_pct); |
| 678 | } |
| 679 | |
Kristen Carlson Accardi | 0522424 | 2015-01-28 15:03:28 -0800 | [diff] [blame] | 680 | static ssize_t show_num_pstates(struct kobject *kobj, |
| 681 | struct attribute *attr, char *buf) |
| 682 | { |
| 683 | struct cpudata *cpu; |
| 684 | int total; |
| 685 | |
| 686 | cpu = all_cpu_data[0]; |
| 687 | total = cpu->pstate.turbo_pstate - cpu->pstate.min_pstate + 1; |
| 688 | return sprintf(buf, "%u\n", total); |
| 689 | } |
| 690 | |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 691 | static ssize_t show_no_turbo(struct kobject *kobj, |
| 692 | struct attribute *attr, char *buf) |
| 693 | { |
| 694 | ssize_t ret; |
| 695 | |
| 696 | update_turbo_state(); |
Prarit Bhargava | 51443fb | 2015-10-15 07:34:15 -0400 | [diff] [blame] | 697 | if (limits->turbo_disabled) |
| 698 | ret = sprintf(buf, "%u\n", limits->turbo_disabled); |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 699 | else |
Prarit Bhargava | 51443fb | 2015-10-15 07:34:15 -0400 | [diff] [blame] | 700 | ret = sprintf(buf, "%u\n", limits->no_turbo); |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 701 | |
| 702 | return ret; |
| 703 | } |
| 704 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 705 | static ssize_t store_no_turbo(struct kobject *a, struct attribute *b, |
Stratos Karafotis | c410833 | 2014-07-18 08:37:23 -0700 | [diff] [blame] | 706 | const char *buf, size_t count) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 707 | { |
| 708 | unsigned int input; |
| 709 | int ret; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 710 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 711 | ret = sscanf(buf, "%u", &input); |
| 712 | if (ret != 1) |
| 713 | return -EINVAL; |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 714 | |
| 715 | update_turbo_state(); |
Prarit Bhargava | 51443fb | 2015-10-15 07:34:15 -0400 | [diff] [blame] | 716 | if (limits->turbo_disabled) { |
Joe Perches | 4836df1 | 2016-04-05 13:28:23 -0700 | [diff] [blame] | 717 | pr_warn("Turbo disabled by BIOS or unavailable on processor\n"); |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 718 | return -EPERM; |
Dirk Brandewie | dd5fbf7 | 2014-06-20 07:27:59 -0700 | [diff] [blame] | 719 | } |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 720 | |
Prarit Bhargava | 51443fb | 2015-10-15 07:34:15 -0400 | [diff] [blame] | 721 | limits->no_turbo = clamp_t(int, input, 0, 1); |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 722 | |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 723 | if (hwp_active) |
Viresh Kumar | 41cfd64 | 2016-02-22 10:27:46 +0530 | [diff] [blame] | 724 | intel_pstate_hwp_set_online_cpus(); |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 725 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 726 | return count; |
| 727 | } |
| 728 | |
| 729 | 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] | 730 | const char *buf, size_t count) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 731 | { |
| 732 | unsigned int input; |
| 733 | int ret; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 734 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 735 | ret = sscanf(buf, "%u", &input); |
| 736 | if (ret != 1) |
| 737 | return -EINVAL; |
| 738 | |
Prarit Bhargava | 51443fb | 2015-10-15 07:34:15 -0400 | [diff] [blame] | 739 | limits->max_sysfs_pct = clamp_t(int, input, 0 , 100); |
| 740 | limits->max_perf_pct = min(limits->max_policy_pct, |
| 741 | limits->max_sysfs_pct); |
| 742 | limits->max_perf_pct = max(limits->min_policy_pct, |
| 743 | limits->max_perf_pct); |
| 744 | limits->max_perf_pct = max(limits->min_perf_pct, |
| 745 | limits->max_perf_pct); |
Rafael J. Wysocki | 22590ef | 2016-04-09 01:25:58 +0200 | [diff] [blame] | 746 | limits->max_perf = div_fp(limits->max_perf_pct, 100); |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 747 | |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 748 | if (hwp_active) |
Viresh Kumar | 41cfd64 | 2016-02-22 10:27:46 +0530 | [diff] [blame] | 749 | intel_pstate_hwp_set_online_cpus(); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 750 | return count; |
| 751 | } |
| 752 | |
| 753 | 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] | 754 | const char *buf, size_t count) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 755 | { |
| 756 | unsigned int input; |
| 757 | int ret; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 758 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 759 | ret = sscanf(buf, "%u", &input); |
| 760 | if (ret != 1) |
| 761 | return -EINVAL; |
Kristen Carlson Accardi | a047599 | 2015-01-29 13:03:52 -0800 | [diff] [blame] | 762 | |
Prarit Bhargava | 51443fb | 2015-10-15 07:34:15 -0400 | [diff] [blame] | 763 | limits->min_sysfs_pct = clamp_t(int, input, 0 , 100); |
| 764 | limits->min_perf_pct = max(limits->min_policy_pct, |
| 765 | limits->min_sysfs_pct); |
| 766 | limits->min_perf_pct = min(limits->max_policy_pct, |
| 767 | limits->min_perf_pct); |
| 768 | limits->min_perf_pct = min(limits->max_perf_pct, |
| 769 | limits->min_perf_pct); |
Rafael J. Wysocki | 22590ef | 2016-04-09 01:25:58 +0200 | [diff] [blame] | 770 | limits->min_perf = div_fp(limits->min_perf_pct, 100); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 771 | |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 772 | if (hwp_active) |
Viresh Kumar | 41cfd64 | 2016-02-22 10:27:46 +0530 | [diff] [blame] | 773 | intel_pstate_hwp_set_online_cpus(); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 774 | return count; |
| 775 | } |
| 776 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 777 | show_one(max_perf_pct, max_perf_pct); |
| 778 | show_one(min_perf_pct, min_perf_pct); |
| 779 | |
| 780 | define_one_global_rw(no_turbo); |
| 781 | define_one_global_rw(max_perf_pct); |
| 782 | define_one_global_rw(min_perf_pct); |
Kristen Carlson Accardi | d01b1f4 | 2015-01-28 15:03:27 -0800 | [diff] [blame] | 783 | define_one_global_ro(turbo_pct); |
Kristen Carlson Accardi | 0522424 | 2015-01-28 15:03:28 -0800 | [diff] [blame] | 784 | define_one_global_ro(num_pstates); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 785 | |
| 786 | static struct attribute *intel_pstate_attributes[] = { |
| 787 | &no_turbo.attr, |
| 788 | &max_perf_pct.attr, |
| 789 | &min_perf_pct.attr, |
Kristen Carlson Accardi | d01b1f4 | 2015-01-28 15:03:27 -0800 | [diff] [blame] | 790 | &turbo_pct.attr, |
Kristen Carlson Accardi | 0522424 | 2015-01-28 15:03:28 -0800 | [diff] [blame] | 791 | &num_pstates.attr, |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 792 | NULL |
| 793 | }; |
| 794 | |
| 795 | static struct attribute_group intel_pstate_attr_group = { |
| 796 | .attrs = intel_pstate_attributes, |
| 797 | }; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 798 | |
Stratos Karafotis | 317dd50 | 2014-07-18 08:37:17 -0700 | [diff] [blame] | 799 | static void __init intel_pstate_sysfs_expose_params(void) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 800 | { |
Stratos Karafotis | 317dd50 | 2014-07-18 08:37:17 -0700 | [diff] [blame] | 801 | struct kobject *intel_pstate_kobject; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 802 | int rc; |
| 803 | |
| 804 | intel_pstate_kobject = kobject_create_and_add("intel_pstate", |
| 805 | &cpu_subsys.dev_root->kobj); |
| 806 | BUG_ON(!intel_pstate_kobject); |
Stratos Karafotis | 2d8d1f1 | 2014-07-18 08:37:20 -0700 | [diff] [blame] | 807 | rc = sysfs_create_group(intel_pstate_kobject, &intel_pstate_attr_group); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 808 | BUG_ON(rc); |
| 809 | } |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 810 | /************************** sysfs end ************************/ |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 811 | |
Kristen Carlson Accardi | ba88d43 | 2015-07-14 09:46:23 -0700 | [diff] [blame] | 812 | static void intel_pstate_hwp_enable(struct cpudata *cpudata) |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 813 | { |
Srinivas Pandruvada | f05c966 | 2016-02-25 15:09:31 -0800 | [diff] [blame] | 814 | /* First disable HWP notification interrupt as we don't process them */ |
Srinivas Pandruvada | da7de91 | 2016-07-19 16:52:01 -0700 | [diff] [blame] | 815 | if (static_cpu_has(X86_FEATURE_HWP_NOTIFY)) |
| 816 | wrmsrl_on_cpu(cpudata->cpu, MSR_HWP_INTERRUPT, 0x00); |
Srinivas Pandruvada | f05c966 | 2016-02-25 15:09:31 -0800 | [diff] [blame] | 817 | |
Kristen Carlson Accardi | ba88d43 | 2015-07-14 09:46:23 -0700 | [diff] [blame] | 818 | wrmsrl_on_cpu(cpudata->cpu, MSR_PM_ENABLE, 0x1); |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 819 | } |
| 820 | |
Philippe Longepe | 938d21a | 2015-11-09 17:40:46 -0800 | [diff] [blame] | 821 | static int atom_get_min_pstate(void) |
Dirk Brandewie | 19e77c2 | 2013-10-21 09:20:35 -0700 | [diff] [blame] | 822 | { |
| 823 | u64 value; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 824 | |
Philippe Longepe | 938d21a | 2015-11-09 17:40:46 -0800 | [diff] [blame] | 825 | rdmsrl(ATOM_RATIOS, value); |
Dirk Brandewie | c16ed06 | 2014-06-20 07:27:58 -0700 | [diff] [blame] | 826 | return (value >> 8) & 0x7F; |
Dirk Brandewie | 19e77c2 | 2013-10-21 09:20:35 -0700 | [diff] [blame] | 827 | } |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 828 | |
Philippe Longepe | 938d21a | 2015-11-09 17:40:46 -0800 | [diff] [blame] | 829 | static int atom_get_max_pstate(void) |
Dirk Brandewie | 19e77c2 | 2013-10-21 09:20:35 -0700 | [diff] [blame] | 830 | { |
| 831 | u64 value; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 832 | |
Philippe Longepe | 938d21a | 2015-11-09 17:40:46 -0800 | [diff] [blame] | 833 | rdmsrl(ATOM_RATIOS, value); |
Dirk Brandewie | c16ed06 | 2014-06-20 07:27:58 -0700 | [diff] [blame] | 834 | return (value >> 16) & 0x7F; |
Dirk Brandewie | 19e77c2 | 2013-10-21 09:20:35 -0700 | [diff] [blame] | 835 | } |
| 836 | |
Philippe Longepe | 938d21a | 2015-11-09 17:40:46 -0800 | [diff] [blame] | 837 | static int atom_get_turbo_pstate(void) |
Dirk Brandewie | 61d8d2a | 2014-02-12 10:01:07 -0800 | [diff] [blame] | 838 | { |
| 839 | u64 value; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 840 | |
Philippe Longepe | 938d21a | 2015-11-09 17:40:46 -0800 | [diff] [blame] | 841 | rdmsrl(ATOM_TURBO_RATIOS, value); |
Dirk Brandewie | c16ed06 | 2014-06-20 07:27:58 -0700 | [diff] [blame] | 842 | return value & 0x7F; |
Dirk Brandewie | 61d8d2a | 2014-02-12 10:01:07 -0800 | [diff] [blame] | 843 | } |
| 844 | |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 845 | static u64 atom_get_val(struct cpudata *cpudata, int pstate) |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 846 | { |
| 847 | u64 val; |
| 848 | int32_t vid_fp; |
| 849 | u32 vid; |
| 850 | |
Chen Yu | 144c8e1 | 2015-07-29 23:53:10 +0800 | [diff] [blame] | 851 | val = (u64)pstate << 8; |
Prarit Bhargava | 51443fb | 2015-10-15 07:34:15 -0400 | [diff] [blame] | 852 | if (limits->no_turbo && !limits->turbo_disabled) |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 853 | val |= (u64)1 << 32; |
| 854 | |
| 855 | vid_fp = cpudata->vid.min + mul_fp( |
| 856 | int_tofp(pstate - cpudata->pstate.min_pstate), |
| 857 | cpudata->vid.ratio); |
| 858 | |
| 859 | 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] | 860 | vid = ceiling_fp(vid_fp); |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 861 | |
Dirk Brandewie | 21855ff | 2014-05-08 12:57:23 -0700 | [diff] [blame] | 862 | if (pstate > cpudata->pstate.max_pstate) |
| 863 | vid = cpudata->vid.turbo; |
| 864 | |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 865 | return val | vid; |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 866 | } |
| 867 | |
Philippe Longepe | 1421df6 | 2015-11-09 17:40:47 -0800 | [diff] [blame] | 868 | static int silvermont_get_scaling(void) |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 869 | { |
| 870 | u64 value; |
| 871 | int i; |
Philippe Longepe | 1421df6 | 2015-11-09 17:40:47 -0800 | [diff] [blame] | 872 | /* Defined in Table 35-6 from SDM (Sept 2015) */ |
| 873 | static int silvermont_freq_table[] = { |
| 874 | 83300, 100000, 133300, 116700, 80000}; |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 875 | |
| 876 | rdmsrl(MSR_FSB_FREQ, value); |
Philippe Longepe | 1421df6 | 2015-11-09 17:40:47 -0800 | [diff] [blame] | 877 | i = value & 0x7; |
| 878 | WARN_ON(i > 4); |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 879 | |
Philippe Longepe | 1421df6 | 2015-11-09 17:40:47 -0800 | [diff] [blame] | 880 | return silvermont_freq_table[i]; |
| 881 | } |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 882 | |
Philippe Longepe | 1421df6 | 2015-11-09 17:40:47 -0800 | [diff] [blame] | 883 | static int airmont_get_scaling(void) |
| 884 | { |
| 885 | u64 value; |
| 886 | int i; |
| 887 | /* Defined in Table 35-10 from SDM (Sept 2015) */ |
| 888 | static int airmont_freq_table[] = { |
| 889 | 83300, 100000, 133300, 116700, 80000, |
| 890 | 93300, 90000, 88900, 87500}; |
| 891 | |
| 892 | rdmsrl(MSR_FSB_FREQ, value); |
| 893 | i = value & 0xF; |
| 894 | WARN_ON(i > 8); |
| 895 | |
| 896 | return airmont_freq_table[i]; |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 897 | } |
| 898 | |
Philippe Longepe | 938d21a | 2015-11-09 17:40:46 -0800 | [diff] [blame] | 899 | static void atom_get_vid(struct cpudata *cpudata) |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 900 | { |
| 901 | u64 value; |
| 902 | |
Philippe Longepe | 938d21a | 2015-11-09 17:40:46 -0800 | [diff] [blame] | 903 | rdmsrl(ATOM_VIDS, value); |
Dirk Brandewie | c16ed06 | 2014-06-20 07:27:58 -0700 | [diff] [blame] | 904 | cpudata->vid.min = int_tofp((value >> 8) & 0x7f); |
| 905 | cpudata->vid.max = int_tofp((value >> 16) & 0x7f); |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 906 | cpudata->vid.ratio = div_fp( |
| 907 | cpudata->vid.max - cpudata->vid.min, |
| 908 | int_tofp(cpudata->pstate.max_pstate - |
| 909 | cpudata->pstate.min_pstate)); |
Dirk Brandewie | 21855ff | 2014-05-08 12:57:23 -0700 | [diff] [blame] | 910 | |
Philippe Longepe | 938d21a | 2015-11-09 17:40:46 -0800 | [diff] [blame] | 911 | rdmsrl(ATOM_TURBO_VIDS, value); |
Dirk Brandewie | 21855ff | 2014-05-08 12:57:23 -0700 | [diff] [blame] | 912 | cpudata->vid.turbo = value & 0x7f; |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 913 | } |
| 914 | |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 915 | static int core_get_min_pstate(void) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 916 | { |
| 917 | u64 value; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 918 | |
Konrad Rzeszutek Wilk | 05e99c8cf | 2013-03-20 14:21:10 +0000 | [diff] [blame] | 919 | rdmsrl(MSR_PLATFORM_INFO, value); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 920 | return (value >> 40) & 0xFF; |
| 921 | } |
| 922 | |
Srinivas Pandruvada | 3bcc6fa | 2015-10-14 16:12:00 -0700 | [diff] [blame] | 923 | static int core_get_max_pstate_physical(void) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 924 | { |
| 925 | u64 value; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 926 | |
Konrad Rzeszutek Wilk | 05e99c8cf | 2013-03-20 14:21:10 +0000 | [diff] [blame] | 927 | rdmsrl(MSR_PLATFORM_INFO, value); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 928 | return (value >> 8) & 0xFF; |
| 929 | } |
| 930 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 931 | static int core_get_max_pstate(void) |
| 932 | { |
Srinivas Pandruvada | 6a35fc2 | 2015-10-14 16:11:59 -0700 | [diff] [blame] | 933 | u64 tar; |
| 934 | u64 plat_info; |
| 935 | int max_pstate; |
| 936 | int err; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 937 | |
Srinivas Pandruvada | 6a35fc2 | 2015-10-14 16:11:59 -0700 | [diff] [blame] | 938 | rdmsrl(MSR_PLATFORM_INFO, plat_info); |
| 939 | max_pstate = (plat_info >> 8) & 0xFF; |
| 940 | |
| 941 | err = rdmsrl_safe(MSR_TURBO_ACTIVATION_RATIO, &tar); |
| 942 | if (!err) { |
| 943 | /* Do some sanity checking for safety */ |
| 944 | if (plat_info & 0x600000000) { |
| 945 | u64 tdp_ctrl; |
| 946 | u64 tdp_ratio; |
| 947 | int tdp_msr; |
| 948 | |
| 949 | err = rdmsrl_safe(MSR_CONFIG_TDP_CONTROL, &tdp_ctrl); |
| 950 | if (err) |
| 951 | goto skip_tar; |
| 952 | |
Jan Kiszka | 5fc8f707 | 2016-07-08 20:42:04 +0200 | [diff] [blame] | 953 | tdp_msr = MSR_CONFIG_TDP_NOMINAL + (tdp_ctrl & 0x3); |
Srinivas Pandruvada | 6a35fc2 | 2015-10-14 16:11:59 -0700 | [diff] [blame] | 954 | err = rdmsrl_safe(tdp_msr, &tdp_ratio); |
| 955 | if (err) |
| 956 | goto skip_tar; |
| 957 | |
Srinivas Pandruvada | 1becf03 | 2016-04-22 19:53:59 -0700 | [diff] [blame] | 958 | /* For level 1 and 2, bits[23:16] contain the ratio */ |
| 959 | if (tdp_ctrl) |
| 960 | tdp_ratio >>= 16; |
| 961 | |
| 962 | tdp_ratio &= 0xff; /* ratios are only 8 bits long */ |
Srinivas Pandruvada | 6a35fc2 | 2015-10-14 16:11:59 -0700 | [diff] [blame] | 963 | if (tdp_ratio - 1 == tar) { |
| 964 | max_pstate = tar; |
| 965 | pr_debug("max_pstate=TAC %x\n", max_pstate); |
| 966 | } else { |
| 967 | goto skip_tar; |
| 968 | } |
| 969 | } |
| 970 | } |
| 971 | |
| 972 | skip_tar: |
| 973 | return max_pstate; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 974 | } |
| 975 | |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 976 | static int core_get_turbo_pstate(void) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 977 | { |
| 978 | u64 value; |
| 979 | int nont, ret; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 980 | |
Srinivas Pandruvada | 100cf6f | 2016-07-06 16:07:55 -0700 | [diff] [blame] | 981 | rdmsrl(MSR_TURBO_RATIO_LIMIT, value); |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 982 | nont = core_get_max_pstate(); |
Stratos Karafotis | 285cb99 | 2014-07-18 08:37:21 -0700 | [diff] [blame] | 983 | ret = (value) & 255; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 984 | if (ret <= nont) |
| 985 | ret = nont; |
| 986 | return ret; |
| 987 | } |
| 988 | |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 989 | static inline int core_get_scaling(void) |
| 990 | { |
| 991 | return 100000; |
| 992 | } |
| 993 | |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 994 | static u64 core_get_val(struct cpudata *cpudata, int pstate) |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 995 | { |
| 996 | u64 val; |
| 997 | |
Chen Yu | 144c8e1 | 2015-07-29 23:53:10 +0800 | [diff] [blame] | 998 | val = (u64)pstate << 8; |
Prarit Bhargava | 51443fb | 2015-10-15 07:34:15 -0400 | [diff] [blame] | 999 | if (limits->no_turbo && !limits->turbo_disabled) |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 1000 | val |= (u64)1 << 32; |
| 1001 | |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 1002 | return val; |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 1003 | } |
| 1004 | |
Dasaratharaman Chandramouli | b34ef93 | 2015-04-10 10:22:18 -0700 | [diff] [blame] | 1005 | static int knl_get_turbo_pstate(void) |
| 1006 | { |
| 1007 | u64 value; |
| 1008 | int nont, ret; |
| 1009 | |
Srinivas Pandruvada | 100cf6f | 2016-07-06 16:07:55 -0700 | [diff] [blame] | 1010 | rdmsrl(MSR_TURBO_RATIO_LIMIT, value); |
Dasaratharaman Chandramouli | b34ef93 | 2015-04-10 10:22:18 -0700 | [diff] [blame] | 1011 | nont = core_get_max_pstate(); |
| 1012 | ret = (((value) >> 8) & 0xFF); |
| 1013 | if (ret <= nont) |
| 1014 | ret = nont; |
| 1015 | return ret; |
| 1016 | } |
| 1017 | |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 1018 | static struct cpu_defaults core_params = { |
| 1019 | .pid_policy = { |
| 1020 | .sample_rate_ms = 10, |
| 1021 | .deadband = 0, |
| 1022 | .setpoint = 97, |
| 1023 | .p_gain_pct = 20, |
| 1024 | .d_gain_pct = 0, |
| 1025 | .i_gain_pct = 0, |
| 1026 | }, |
| 1027 | .funcs = { |
| 1028 | .get_max = core_get_max_pstate, |
Srinivas Pandruvada | 3bcc6fa | 2015-10-14 16:12:00 -0700 | [diff] [blame] | 1029 | .get_max_physical = core_get_max_pstate_physical, |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 1030 | .get_min = core_get_min_pstate, |
| 1031 | .get_turbo = core_get_turbo_pstate, |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 1032 | .get_scaling = core_get_scaling, |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 1033 | .get_val = core_get_val, |
Philippe Longepe | 157386b | 2015-12-04 17:40:30 +0100 | [diff] [blame] | 1034 | .get_target_pstate = get_target_pstate_use_performance, |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 1035 | }, |
| 1036 | }; |
| 1037 | |
Julia Lawall | 42ce892 | 2016-09-11 15:06:01 +0200 | [diff] [blame] | 1038 | static const struct cpu_defaults silvermont_params = { |
Dirk Brandewie | 19e77c2 | 2013-10-21 09:20:35 -0700 | [diff] [blame] | 1039 | .pid_policy = { |
| 1040 | .sample_rate_ms = 10, |
| 1041 | .deadband = 0, |
Kristen Carlson Accardi | 6a82ba6 | 2015-04-10 11:06:43 -0700 | [diff] [blame] | 1042 | .setpoint = 60, |
Dirk Brandewie | 19e77c2 | 2013-10-21 09:20:35 -0700 | [diff] [blame] | 1043 | .p_gain_pct = 14, |
| 1044 | .d_gain_pct = 0, |
| 1045 | .i_gain_pct = 4, |
Rafael J. Wysocki | 09c448d | 2016-09-14 02:28:13 +0200 | [diff] [blame] | 1046 | .boost_iowait = true, |
Dirk Brandewie | 19e77c2 | 2013-10-21 09:20:35 -0700 | [diff] [blame] | 1047 | }, |
| 1048 | .funcs = { |
Philippe Longepe | 938d21a | 2015-11-09 17:40:46 -0800 | [diff] [blame] | 1049 | .get_max = atom_get_max_pstate, |
| 1050 | .get_max_physical = atom_get_max_pstate, |
| 1051 | .get_min = atom_get_min_pstate, |
| 1052 | .get_turbo = atom_get_turbo_pstate, |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 1053 | .get_val = atom_get_val, |
Philippe Longepe | 1421df6 | 2015-11-09 17:40:47 -0800 | [diff] [blame] | 1054 | .get_scaling = silvermont_get_scaling, |
| 1055 | .get_vid = atom_get_vid, |
Philippe Longepe | e70eed2 | 2015-12-04 17:40:32 +0100 | [diff] [blame] | 1056 | .get_target_pstate = get_target_pstate_use_cpu_load, |
Philippe Longepe | 1421df6 | 2015-11-09 17:40:47 -0800 | [diff] [blame] | 1057 | }, |
| 1058 | }; |
| 1059 | |
Julia Lawall | 42ce892 | 2016-09-11 15:06:01 +0200 | [diff] [blame] | 1060 | static const struct cpu_defaults airmont_params = { |
Philippe Longepe | 1421df6 | 2015-11-09 17:40:47 -0800 | [diff] [blame] | 1061 | .pid_policy = { |
| 1062 | .sample_rate_ms = 10, |
| 1063 | .deadband = 0, |
| 1064 | .setpoint = 60, |
| 1065 | .p_gain_pct = 14, |
| 1066 | .d_gain_pct = 0, |
| 1067 | .i_gain_pct = 4, |
Rafael J. Wysocki | 09c448d | 2016-09-14 02:28:13 +0200 | [diff] [blame] | 1068 | .boost_iowait = true, |
Philippe Longepe | 1421df6 | 2015-11-09 17:40:47 -0800 | [diff] [blame] | 1069 | }, |
| 1070 | .funcs = { |
| 1071 | .get_max = atom_get_max_pstate, |
| 1072 | .get_max_physical = atom_get_max_pstate, |
| 1073 | .get_min = atom_get_min_pstate, |
| 1074 | .get_turbo = atom_get_turbo_pstate, |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 1075 | .get_val = atom_get_val, |
Philippe Longepe | 1421df6 | 2015-11-09 17:40:47 -0800 | [diff] [blame] | 1076 | .get_scaling = airmont_get_scaling, |
Philippe Longepe | 938d21a | 2015-11-09 17:40:46 -0800 | [diff] [blame] | 1077 | .get_vid = atom_get_vid, |
Philippe Longepe | e70eed2 | 2015-12-04 17:40:32 +0100 | [diff] [blame] | 1078 | .get_target_pstate = get_target_pstate_use_cpu_load, |
Dirk Brandewie | 19e77c2 | 2013-10-21 09:20:35 -0700 | [diff] [blame] | 1079 | }, |
| 1080 | }; |
| 1081 | |
Julia Lawall | 42ce892 | 2016-09-11 15:06:01 +0200 | [diff] [blame] | 1082 | static const struct cpu_defaults knl_params = { |
Dasaratharaman Chandramouli | b34ef93 | 2015-04-10 10:22:18 -0700 | [diff] [blame] | 1083 | .pid_policy = { |
| 1084 | .sample_rate_ms = 10, |
| 1085 | .deadband = 0, |
| 1086 | .setpoint = 97, |
| 1087 | .p_gain_pct = 20, |
| 1088 | .d_gain_pct = 0, |
| 1089 | .i_gain_pct = 0, |
| 1090 | }, |
| 1091 | .funcs = { |
| 1092 | .get_max = core_get_max_pstate, |
Srinivas Pandruvada | 3bcc6fa | 2015-10-14 16:12:00 -0700 | [diff] [blame] | 1093 | .get_max_physical = core_get_max_pstate_physical, |
Dasaratharaman Chandramouli | b34ef93 | 2015-04-10 10:22:18 -0700 | [diff] [blame] | 1094 | .get_min = core_get_min_pstate, |
| 1095 | .get_turbo = knl_get_turbo_pstate, |
Lukasz Anaczkowski | 69cefc2 | 2015-07-21 10:41:13 +0200 | [diff] [blame] | 1096 | .get_scaling = core_get_scaling, |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 1097 | .get_val = core_get_val, |
Philippe Longepe | 157386b | 2015-12-04 17:40:30 +0100 | [diff] [blame] | 1098 | .get_target_pstate = get_target_pstate_use_performance, |
Dasaratharaman Chandramouli | b34ef93 | 2015-04-10 10:22:18 -0700 | [diff] [blame] | 1099 | }, |
| 1100 | }; |
| 1101 | |
Julia Lawall | 42ce892 | 2016-09-11 15:06:01 +0200 | [diff] [blame] | 1102 | static const struct cpu_defaults bxt_params = { |
Srinivas Pandruvada | 41bad47 | 2016-06-09 15:34:41 -0700 | [diff] [blame] | 1103 | .pid_policy = { |
| 1104 | .sample_rate_ms = 10, |
| 1105 | .deadband = 0, |
| 1106 | .setpoint = 60, |
| 1107 | .p_gain_pct = 14, |
| 1108 | .d_gain_pct = 0, |
| 1109 | .i_gain_pct = 4, |
Rafael J. Wysocki | 09c448d | 2016-09-14 02:28:13 +0200 | [diff] [blame] | 1110 | .boost_iowait = true, |
Srinivas Pandruvada | 41bad47 | 2016-06-09 15:34:41 -0700 | [diff] [blame] | 1111 | }, |
| 1112 | .funcs = { |
| 1113 | .get_max = core_get_max_pstate, |
| 1114 | .get_max_physical = core_get_max_pstate_physical, |
| 1115 | .get_min = core_get_min_pstate, |
| 1116 | .get_turbo = core_get_turbo_pstate, |
| 1117 | .get_scaling = core_get_scaling, |
| 1118 | .get_val = core_get_val, |
| 1119 | .get_target_pstate = get_target_pstate_use_cpu_load, |
| 1120 | }, |
| 1121 | }; |
| 1122 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1123 | static void intel_pstate_get_min_max(struct cpudata *cpu, int *min, int *max) |
| 1124 | { |
| 1125 | int max_perf = cpu->pstate.turbo_pstate; |
Dirk Brandewie | 7244cb6 | 2013-10-21 09:20:33 -0700 | [diff] [blame] | 1126 | int max_perf_adj; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1127 | int min_perf; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 1128 | |
Prarit Bhargava | 51443fb | 2015-10-15 07:34:15 -0400 | [diff] [blame] | 1129 | if (limits->no_turbo || limits->turbo_disabled) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1130 | max_perf = cpu->pstate.max_pstate; |
| 1131 | |
Kristen Carlson Accardi | e0d4c8f | 2014-12-10 12:39:38 -0800 | [diff] [blame] | 1132 | /* |
| 1133 | * performance can be limited by user through sysfs, by cpufreq |
| 1134 | * policy, or by cpu specific default values determined through |
| 1135 | * experimentation. |
| 1136 | */ |
Philippe Longepe | a158bed | 2016-03-06 08:34:04 +0100 | [diff] [blame] | 1137 | max_perf_adj = fp_toint(max_perf * limits->max_perf); |
Rafael J. Wysocki | 799281a | 2015-11-18 23:29:56 +0100 | [diff] [blame] | 1138 | *max = clamp_t(int, max_perf_adj, |
| 1139 | cpu->pstate.min_pstate, cpu->pstate.turbo_pstate); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1140 | |
Philippe Longepe | a158bed | 2016-03-06 08:34:04 +0100 | [diff] [blame] | 1141 | min_perf = fp_toint(max_perf * limits->min_perf); |
Rafael J. Wysocki | 799281a | 2015-11-18 23:29:56 +0100 | [diff] [blame] | 1142 | *min = clamp_t(int, min_perf, cpu->pstate.min_pstate, max_perf); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1143 | } |
| 1144 | |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 1145 | static void intel_pstate_set_min_pstate(struct cpudata *cpu) |
| 1146 | { |
| 1147 | int pstate = cpu->pstate.min_pstate; |
| 1148 | |
Rafael J. Wysocki | bc95a45 | 2016-07-19 15:10:37 +0200 | [diff] [blame] | 1149 | trace_cpu_frequency(pstate * cpu->pstate.scaling, cpu->cpu); |
| 1150 | cpu->pstate.current_pstate = pstate; |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 1151 | /* |
| 1152 | * Generally, there is no guarantee that this code will always run on |
| 1153 | * the CPU being updated, so force the register update to run on the |
| 1154 | * right CPU. |
| 1155 | */ |
| 1156 | wrmsrl_on_cpu(cpu->cpu, MSR_IA32_PERF_CTL, |
| 1157 | pstate_funcs.get_val(cpu, pstate)); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1158 | } |
| 1159 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1160 | static void intel_pstate_get_cpu_pstates(struct cpudata *cpu) |
| 1161 | { |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 1162 | cpu->pstate.min_pstate = pstate_funcs.get_min(); |
| 1163 | cpu->pstate.max_pstate = pstate_funcs.get_max(); |
Srinivas Pandruvada | 3bcc6fa | 2015-10-14 16:12:00 -0700 | [diff] [blame] | 1164 | cpu->pstate.max_pstate_physical = pstate_funcs.get_max_physical(); |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 1165 | cpu->pstate.turbo_pstate = pstate_funcs.get_turbo(); |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 1166 | cpu->pstate.scaling = pstate_funcs.get_scaling(); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1167 | |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 1168 | if (pstate_funcs.get_vid) |
| 1169 | pstate_funcs.get_vid(cpu); |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 1170 | |
| 1171 | intel_pstate_set_min_pstate(cpu); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1172 | } |
| 1173 | |
Rafael J. Wysocki | a1c9787 | 2016-05-11 19:09:12 +0200 | [diff] [blame] | 1174 | static inline void intel_pstate_calc_avg_perf(struct cpudata *cpu) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1175 | { |
Stratos Karafotis | 6b17ddb | 2014-04-29 20:53:49 +0300 | [diff] [blame] | 1176 | struct sample *sample = &cpu->sample; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1177 | |
Rafael J. Wysocki | a1c9787 | 2016-05-11 19:09:12 +0200 | [diff] [blame] | 1178 | sample->core_avg_perf = div_ext_fp(sample->aperf, sample->mperf); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1179 | } |
| 1180 | |
Rafael J. Wysocki | 4fec7ad | 2016-03-10 23:45:19 +0100 | [diff] [blame] | 1181 | static inline bool intel_pstate_sample(struct cpudata *cpu, u64 time) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1182 | { |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1183 | u64 aperf, mperf; |
Stratos Karafotis | 4ab60c3 | 2014-07-18 08:37:24 -0700 | [diff] [blame] | 1184 | unsigned long flags; |
Doug Smythies | 4055fad | 2015-04-11 21:10:26 -0700 | [diff] [blame] | 1185 | u64 tsc; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1186 | |
Stratos Karafotis | 4ab60c3 | 2014-07-18 08:37:24 -0700 | [diff] [blame] | 1187 | local_irq_save(flags); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1188 | rdmsrl(MSR_IA32_APERF, aperf); |
| 1189 | rdmsrl(MSR_IA32_MPERF, mperf); |
Philippe Longepe | e70eed2 | 2015-12-04 17:40:32 +0100 | [diff] [blame] | 1190 | tsc = rdtsc(); |
Rafael J. Wysocki | 4fec7ad | 2016-03-10 23:45:19 +0100 | [diff] [blame] | 1191 | if (cpu->prev_mperf == mperf || cpu->prev_tsc == tsc) { |
Srinivas Pandruvada | 8e601a9 | 2015-10-15 12:34:21 -0700 | [diff] [blame] | 1192 | local_irq_restore(flags); |
Rafael J. Wysocki | 4fec7ad | 2016-03-10 23:45:19 +0100 | [diff] [blame] | 1193 | return false; |
Srinivas Pandruvada | 8e601a9 | 2015-10-15 12:34:21 -0700 | [diff] [blame] | 1194 | } |
Stratos Karafotis | 4ab60c3 | 2014-07-18 08:37:24 -0700 | [diff] [blame] | 1195 | local_irq_restore(flags); |
Dirk Brandewie | b69880f | 2014-01-16 10:32:25 -0800 | [diff] [blame] | 1196 | |
Dirk Brandewie | c4ee841 | 2014-05-29 09:32:24 -0700 | [diff] [blame] | 1197 | cpu->last_sample_time = cpu->sample.time; |
Rafael J. Wysocki | a4675fb | 2016-02-05 01:45:30 +0100 | [diff] [blame] | 1198 | cpu->sample.time = time; |
Dirk Brandewie | d37e2b7 | 2014-02-12 10:01:04 -0800 | [diff] [blame] | 1199 | cpu->sample.aperf = aperf; |
| 1200 | cpu->sample.mperf = mperf; |
Doug Smythies | 4055fad | 2015-04-11 21:10:26 -0700 | [diff] [blame] | 1201 | cpu->sample.tsc = tsc; |
Dirk Brandewie | d37e2b7 | 2014-02-12 10:01:04 -0800 | [diff] [blame] | 1202 | cpu->sample.aperf -= cpu->prev_aperf; |
| 1203 | cpu->sample.mperf -= cpu->prev_mperf; |
Doug Smythies | 4055fad | 2015-04-11 21:10:26 -0700 | [diff] [blame] | 1204 | cpu->sample.tsc -= cpu->prev_tsc; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1205 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1206 | cpu->prev_aperf = aperf; |
| 1207 | cpu->prev_mperf = mperf; |
Doug Smythies | 4055fad | 2015-04-11 21:10:26 -0700 | [diff] [blame] | 1208 | cpu->prev_tsc = tsc; |
Rafael J. Wysocki | febce40 | 2016-04-02 01:06:21 +0200 | [diff] [blame] | 1209 | /* |
| 1210 | * First time this function is invoked in a given cycle, all of the |
| 1211 | * previous sample data fields are equal to zero or stale and they must |
| 1212 | * be populated with meaningful numbers for things to work, so assume |
| 1213 | * that sample.time will always be reset before setting the utilization |
| 1214 | * update hook and make the caller skip the sample then. |
| 1215 | */ |
| 1216 | return !!cpu->last_sample_time; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1217 | } |
| 1218 | |
Philippe Longepe | 8fa520a | 2016-03-06 08:34:06 +0100 | [diff] [blame] | 1219 | static inline int32_t get_avg_frequency(struct cpudata *cpu) |
| 1220 | { |
Rafael J. Wysocki | a1c9787 | 2016-05-11 19:09:12 +0200 | [diff] [blame] | 1221 | return mul_ext_fp(cpu->sample.core_avg_perf, |
| 1222 | cpu->pstate.max_pstate_physical * cpu->pstate.scaling); |
Philippe Longepe | 8fa520a | 2016-03-06 08:34:06 +0100 | [diff] [blame] | 1223 | } |
| 1224 | |
Philippe Longepe | bdcaa23 | 2016-04-22 11:46:09 -0700 | [diff] [blame] | 1225 | static inline int32_t get_avg_pstate(struct cpudata *cpu) |
| 1226 | { |
Rafael J. Wysocki | 8edb0a6 | 2016-05-11 19:10:42 +0200 | [diff] [blame] | 1227 | return mul_ext_fp(cpu->pstate.max_pstate_physical, |
| 1228 | cpu->sample.core_avg_perf); |
Philippe Longepe | bdcaa23 | 2016-04-22 11:46:09 -0700 | [diff] [blame] | 1229 | } |
| 1230 | |
Philippe Longepe | e70eed2 | 2015-12-04 17:40:32 +0100 | [diff] [blame] | 1231 | static inline int32_t get_target_pstate_use_cpu_load(struct cpudata *cpu) |
| 1232 | { |
| 1233 | struct sample *sample = &cpu->sample; |
Rafael J. Wysocki | 09c448d | 2016-09-14 02:28:13 +0200 | [diff] [blame] | 1234 | int32_t busy_frac, boost; |
Philippe Longepe | e70eed2 | 2015-12-04 17:40:32 +0100 | [diff] [blame] | 1235 | |
Rafael J. Wysocki | 09c448d | 2016-09-14 02:28:13 +0200 | [diff] [blame] | 1236 | busy_frac = div_fp(sample->mperf, sample->tsc); |
Philippe Longepe | 63d1d65 | 2015-12-04 17:40:35 +0100 | [diff] [blame] | 1237 | |
Rafael J. Wysocki | 09c448d | 2016-09-14 02:28:13 +0200 | [diff] [blame] | 1238 | boost = cpu->iowait_boost; |
| 1239 | cpu->iowait_boost >>= 1; |
Philippe Longepe | 63d1d65 | 2015-12-04 17:40:35 +0100 | [diff] [blame] | 1240 | |
Rafael J. Wysocki | 09c448d | 2016-09-14 02:28:13 +0200 | [diff] [blame] | 1241 | if (busy_frac < boost) |
| 1242 | busy_frac = boost; |
Philippe Longepe | 63d1d65 | 2015-12-04 17:40:35 +0100 | [diff] [blame] | 1243 | |
Rafael J. Wysocki | 09c448d | 2016-09-14 02:28:13 +0200 | [diff] [blame] | 1244 | sample->busy_scaled = busy_frac * 100; |
| 1245 | return get_avg_pstate(cpu) - pid_calc(&cpu->pid, sample->busy_scaled); |
Philippe Longepe | e70eed2 | 2015-12-04 17:40:32 +0100 | [diff] [blame] | 1246 | } |
| 1247 | |
Philippe Longepe | 157386b | 2015-12-04 17:40:30 +0100 | [diff] [blame] | 1248 | static inline int32_t get_target_pstate_use_performance(struct cpudata *cpu) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1249 | { |
Rafael J. Wysocki | 1aa7a6e | 2016-05-11 19:11:26 +0200 | [diff] [blame] | 1250 | int32_t perf_scaled, max_pstate, current_pstate, sample_ratio; |
Rafael J. Wysocki | a4675fb | 2016-02-05 01:45:30 +0100 | [diff] [blame] | 1251 | u64 duration_ns; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1252 | |
Kristen Carlson Accardi | e0d4c8f | 2014-12-10 12:39:38 -0800 | [diff] [blame] | 1253 | /* |
Rafael J. Wysocki | f00593a | 2016-09-30 03:13:34 +0200 | [diff] [blame^] | 1254 | * perf_scaled is the ratio of the average P-state during the last |
| 1255 | * sampling period to the P-state requested last time (in percent). |
| 1256 | * |
| 1257 | * That measures the system's response to the previous P-state |
| 1258 | * selection. |
Kristen Carlson Accardi | e0d4c8f | 2014-12-10 12:39:38 -0800 | [diff] [blame] | 1259 | */ |
Rafael J. Wysocki | 22590ef | 2016-04-09 01:25:58 +0200 | [diff] [blame] | 1260 | max_pstate = cpu->pstate.max_pstate_physical; |
| 1261 | current_pstate = cpu->pstate.current_pstate; |
Rafael J. Wysocki | 1aa7a6e | 2016-05-11 19:11:26 +0200 | [diff] [blame] | 1262 | perf_scaled = mul_ext_fp(cpu->sample.core_avg_perf, |
Rafael J. Wysocki | a1c9787 | 2016-05-11 19:09:12 +0200 | [diff] [blame] | 1263 | div_fp(100 * max_pstate, current_pstate)); |
Dirk Brandewie | c4ee841 | 2014-05-29 09:32:24 -0700 | [diff] [blame] | 1264 | |
Kristen Carlson Accardi | e0d4c8f | 2014-12-10 12:39:38 -0800 | [diff] [blame] | 1265 | /* |
Rafael J. Wysocki | a4675fb | 2016-02-05 01:45:30 +0100 | [diff] [blame] | 1266 | * Since our utilization update callback will not run unless we are |
| 1267 | * in C0, check if the actual elapsed time is significantly greater (3x) |
| 1268 | * 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] | 1269 | * enough period of time to adjust our performance metric. |
Kristen Carlson Accardi | e0d4c8f | 2014-12-10 12:39:38 -0800 | [diff] [blame] | 1270 | */ |
Rafael J. Wysocki | a4675fb | 2016-02-05 01:45:30 +0100 | [diff] [blame] | 1271 | duration_ns = cpu->sample.time - cpu->last_sample_time; |
Rafael J. Wysocki | febce40 | 2016-04-02 01:06:21 +0200 | [diff] [blame] | 1272 | if ((s64)duration_ns > pid_params.sample_rate_ns * 3) { |
Rafael J. Wysocki | 22590ef | 2016-04-09 01:25:58 +0200 | [diff] [blame] | 1273 | sample_ratio = div_fp(pid_params.sample_rate_ns, duration_ns); |
Rafael J. Wysocki | 1aa7a6e | 2016-05-11 19:11:26 +0200 | [diff] [blame] | 1274 | perf_scaled = mul_fp(perf_scaled, sample_ratio); |
Rafael J. Wysocki | ffb8105 | 2016-04-10 05:59:10 +0200 | [diff] [blame] | 1275 | } else { |
| 1276 | sample_ratio = div_fp(100 * cpu->sample.mperf, cpu->sample.tsc); |
| 1277 | if (sample_ratio < int_tofp(1)) |
Rafael J. Wysocki | 1aa7a6e | 2016-05-11 19:11:26 +0200 | [diff] [blame] | 1278 | perf_scaled = 0; |
Dirk Brandewie | c4ee841 | 2014-05-29 09:32:24 -0700 | [diff] [blame] | 1279 | } |
| 1280 | |
Rafael J. Wysocki | 1aa7a6e | 2016-05-11 19:11:26 +0200 | [diff] [blame] | 1281 | cpu->sample.busy_scaled = perf_scaled; |
| 1282 | return cpu->pstate.current_pstate - pid_calc(&cpu->pid, perf_scaled); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1283 | } |
| 1284 | |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 1285 | static inline void intel_pstate_update_pstate(struct cpudata *cpu, int pstate) |
| 1286 | { |
| 1287 | int max_perf, min_perf; |
| 1288 | |
| 1289 | update_turbo_state(); |
| 1290 | |
| 1291 | intel_pstate_get_min_max(cpu, &min_perf, &max_perf); |
| 1292 | pstate = clamp_t(int, pstate, min_perf, max_perf); |
Rafael J. Wysocki | bc95a45 | 2016-07-19 15:10:37 +0200 | [diff] [blame] | 1293 | trace_cpu_frequency(pstate * cpu->pstate.scaling, cpu->cpu); |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 1294 | if (pstate == cpu->pstate.current_pstate) |
| 1295 | return; |
| 1296 | |
Rafael J. Wysocki | bc95a45 | 2016-07-19 15:10:37 +0200 | [diff] [blame] | 1297 | cpu->pstate.current_pstate = pstate; |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 1298 | wrmsrl(MSR_IA32_PERF_CTL, pstate_funcs.get_val(cpu, pstate)); |
| 1299 | } |
| 1300 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1301 | static inline void intel_pstate_adjust_busy_pstate(struct cpudata *cpu) |
| 1302 | { |
Philippe Longepe | 157386b | 2015-12-04 17:40:30 +0100 | [diff] [blame] | 1303 | int from, target_pstate; |
Doug Smythies | 4055fad | 2015-04-11 21:10:26 -0700 | [diff] [blame] | 1304 | struct sample *sample; |
| 1305 | |
| 1306 | from = cpu->pstate.current_pstate; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1307 | |
Philippe Longepe | 157386b | 2015-12-04 17:40:30 +0100 | [diff] [blame] | 1308 | target_pstate = pstate_funcs.get_target_pstate(cpu); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1309 | |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 1310 | intel_pstate_update_pstate(cpu, target_pstate); |
Doug Smythies | 4055fad | 2015-04-11 21:10:26 -0700 | [diff] [blame] | 1311 | |
| 1312 | sample = &cpu->sample; |
Rafael J. Wysocki | a1c9787 | 2016-05-11 19:09:12 +0200 | [diff] [blame] | 1313 | trace_pstate_sample(mul_ext_fp(100, sample->core_avg_perf), |
Philippe Longepe | 157386b | 2015-12-04 17:40:30 +0100 | [diff] [blame] | 1314 | fp_toint(sample->busy_scaled), |
Doug Smythies | 4055fad | 2015-04-11 21:10:26 -0700 | [diff] [blame] | 1315 | from, |
| 1316 | cpu->pstate.current_pstate, |
| 1317 | sample->mperf, |
| 1318 | sample->aperf, |
| 1319 | sample->tsc, |
Srinivas Pandruvada | 3ba7bca | 2016-09-13 17:41:33 -0700 | [diff] [blame] | 1320 | get_avg_frequency(cpu), |
| 1321 | fp_toint(cpu->iowait_boost * 100)); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1322 | } |
| 1323 | |
Rafael J. Wysocki | a4675fb | 2016-02-05 01:45:30 +0100 | [diff] [blame] | 1324 | 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] | 1325 | unsigned int flags) |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 1326 | { |
Rafael J. Wysocki | a4675fb | 2016-02-05 01:45:30 +0100 | [diff] [blame] | 1327 | struct cpudata *cpu = container_of(data, struct cpudata, update_util); |
Rafael J. Wysocki | 09c448d | 2016-09-14 02:28:13 +0200 | [diff] [blame] | 1328 | u64 delta_ns; |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 1329 | |
Rafael J. Wysocki | 09c448d | 2016-09-14 02:28:13 +0200 | [diff] [blame] | 1330 | if (pid_params.boost_iowait) { |
| 1331 | if (flags & SCHED_CPUFREQ_IOWAIT) { |
| 1332 | cpu->iowait_boost = int_tofp(1); |
| 1333 | } else if (cpu->iowait_boost) { |
| 1334 | /* Clear iowait_boost if the CPU may have been idle. */ |
| 1335 | delta_ns = time - cpu->last_update; |
| 1336 | if (delta_ns > TICK_NSEC) |
| 1337 | cpu->iowait_boost = 0; |
| 1338 | } |
| 1339 | cpu->last_update = time; |
| 1340 | } |
| 1341 | |
| 1342 | delta_ns = time - cpu->sample.time; |
Rafael J. Wysocki | a4675fb | 2016-02-05 01:45:30 +0100 | [diff] [blame] | 1343 | if ((s64)delta_ns >= pid_params.sample_rate_ns) { |
Rafael J. Wysocki | 4fec7ad | 2016-03-10 23:45:19 +0100 | [diff] [blame] | 1344 | bool sample_taken = intel_pstate_sample(cpu, time); |
| 1345 | |
Rafael J. Wysocki | 6d45b71 | 2016-05-04 14:01:10 +0200 | [diff] [blame] | 1346 | if (sample_taken) { |
Rafael J. Wysocki | a1c9787 | 2016-05-11 19:09:12 +0200 | [diff] [blame] | 1347 | intel_pstate_calc_avg_perf(cpu); |
Rafael J. Wysocki | 6d45b71 | 2016-05-04 14:01:10 +0200 | [diff] [blame] | 1348 | if (!hwp_active) |
| 1349 | intel_pstate_adjust_busy_pstate(cpu); |
| 1350 | } |
Rafael J. Wysocki | a4675fb | 2016-02-05 01:45:30 +0100 | [diff] [blame] | 1351 | } |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1352 | } |
| 1353 | |
| 1354 | #define ICPU(model, policy) \ |
Dirk Brandewie | 6cbd7ee | 2014-01-06 10:59:16 -0800 | [diff] [blame] | 1355 | { X86_VENDOR_INTEL, 6, model, X86_FEATURE_APERFMPERF,\ |
| 1356 | (unsigned long)&policy } |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1357 | |
| 1358 | static const struct x86_cpu_id intel_pstate_cpu_ids[] = { |
Dave Hansen | 5b20c94 | 2016-06-02 17:19:45 -0700 | [diff] [blame] | 1359 | ICPU(INTEL_FAM6_SANDYBRIDGE, core_params), |
| 1360 | ICPU(INTEL_FAM6_SANDYBRIDGE_X, core_params), |
| 1361 | ICPU(INTEL_FAM6_ATOM_SILVERMONT1, silvermont_params), |
| 1362 | ICPU(INTEL_FAM6_IVYBRIDGE, core_params), |
| 1363 | ICPU(INTEL_FAM6_HASWELL_CORE, core_params), |
| 1364 | ICPU(INTEL_FAM6_BROADWELL_CORE, core_params), |
| 1365 | ICPU(INTEL_FAM6_IVYBRIDGE_X, core_params), |
| 1366 | ICPU(INTEL_FAM6_HASWELL_X, core_params), |
| 1367 | ICPU(INTEL_FAM6_HASWELL_ULT, core_params), |
| 1368 | ICPU(INTEL_FAM6_HASWELL_GT3E, core_params), |
| 1369 | ICPU(INTEL_FAM6_BROADWELL_GT3E, core_params), |
| 1370 | ICPU(INTEL_FAM6_ATOM_AIRMONT, airmont_params), |
| 1371 | ICPU(INTEL_FAM6_SKYLAKE_MOBILE, core_params), |
| 1372 | ICPU(INTEL_FAM6_BROADWELL_X, core_params), |
| 1373 | ICPU(INTEL_FAM6_SKYLAKE_DESKTOP, core_params), |
| 1374 | ICPU(INTEL_FAM6_BROADWELL_XEON_D, core_params), |
| 1375 | ICPU(INTEL_FAM6_XEON_PHI_KNL, knl_params), |
Srinivas Pandruvada | 41bad47 | 2016-06-09 15:34:41 -0700 | [diff] [blame] | 1376 | ICPU(INTEL_FAM6_ATOM_GOLDMONT, bxt_params), |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1377 | {} |
| 1378 | }; |
| 1379 | MODULE_DEVICE_TABLE(x86cpu, intel_pstate_cpu_ids); |
| 1380 | |
Jisheng Zhang | 29327c8 | 2016-06-27 18:07:17 +0800 | [diff] [blame] | 1381 | static const struct x86_cpu_id intel_pstate_cpu_oob_ids[] __initconst = { |
Dave Hansen | 5b20c94 | 2016-06-02 17:19:45 -0700 | [diff] [blame] | 1382 | ICPU(INTEL_FAM6_BROADWELL_XEON_D, core_params), |
Srinivas Pandruvada | 65c1262 | 2016-07-23 15:12:06 -0700 | [diff] [blame] | 1383 | ICPU(INTEL_FAM6_BROADWELL_X, core_params), |
| 1384 | ICPU(INTEL_FAM6_SKYLAKE_X, core_params), |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 1385 | {} |
| 1386 | }; |
| 1387 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1388 | static int intel_pstate_init_cpu(unsigned int cpunum) |
| 1389 | { |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1390 | struct cpudata *cpu; |
| 1391 | |
Dirk Brandewie | c034871 | 2014-10-13 08:37:42 -0700 | [diff] [blame] | 1392 | if (!all_cpu_data[cpunum]) |
| 1393 | all_cpu_data[cpunum] = kzalloc(sizeof(struct cpudata), |
| 1394 | GFP_KERNEL); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1395 | if (!all_cpu_data[cpunum]) |
| 1396 | return -ENOMEM; |
| 1397 | |
| 1398 | cpu = all_cpu_data[cpunum]; |
| 1399 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1400 | cpu->cpu = cpunum; |
Kristen Carlson Accardi | ba88d43 | 2015-07-14 09:46:23 -0700 | [diff] [blame] | 1401 | |
Rafael J. Wysocki | a4675fb | 2016-02-05 01:45:30 +0100 | [diff] [blame] | 1402 | if (hwp_active) { |
Kristen Carlson Accardi | ba88d43 | 2015-07-14 09:46:23 -0700 | [diff] [blame] | 1403 | intel_pstate_hwp_enable(cpu); |
Rafael J. Wysocki | a4675fb | 2016-02-05 01:45:30 +0100 | [diff] [blame] | 1404 | pid_params.sample_rate_ms = 50; |
| 1405 | pid_params.sample_rate_ns = 50 * NSEC_PER_MSEC; |
| 1406 | } |
Kristen Carlson Accardi | ba88d43 | 2015-07-14 09:46:23 -0700 | [diff] [blame] | 1407 | |
Vincent Minet | 179e847 | 2014-07-05 01:51:33 +0200 | [diff] [blame] | 1408 | intel_pstate_get_cpu_pstates(cpu); |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 1409 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1410 | intel_pstate_busy_pid_reset(cpu); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1411 | |
Joe Perches | 4836df1 | 2016-04-05 13:28:23 -0700 | [diff] [blame] | 1412 | pr_debug("controlling: cpu %d\n", cpunum); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1413 | |
| 1414 | return 0; |
| 1415 | } |
| 1416 | |
| 1417 | static unsigned int intel_pstate_get(unsigned int cpu_num) |
| 1418 | { |
Rafael J. Wysocki | f96fd0c | 2016-05-07 02:24:48 +0200 | [diff] [blame] | 1419 | struct cpudata *cpu = all_cpu_data[cpu_num]; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1420 | |
Rafael J. Wysocki | f96fd0c | 2016-05-07 02:24:48 +0200 | [diff] [blame] | 1421 | return cpu ? get_avg_frequency(cpu) : 0; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1422 | } |
| 1423 | |
Rafael J. Wysocki | febce40 | 2016-04-02 01:06:21 +0200 | [diff] [blame] | 1424 | 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] | 1425 | { |
Rafael J. Wysocki | febce40 | 2016-04-02 01:06:21 +0200 | [diff] [blame] | 1426 | struct cpudata *cpu = all_cpu_data[cpu_num]; |
| 1427 | |
Rafael J. Wysocki | 5ab666e | 2016-06-27 23:47:15 +0200 | [diff] [blame] | 1428 | if (cpu->update_util_set) |
| 1429 | return; |
| 1430 | |
Rafael J. Wysocki | febce40 | 2016-04-02 01:06:21 +0200 | [diff] [blame] | 1431 | /* Prevent intel_pstate_update_util() from using stale data. */ |
| 1432 | cpu->sample.time = 0; |
Rafael J. Wysocki | 0bed612 | 2016-04-02 01:08:43 +0200 | [diff] [blame] | 1433 | cpufreq_add_update_util_hook(cpu_num, &cpu->update_util, |
| 1434 | intel_pstate_update_util); |
Chen Yu | 4578ee7e | 2016-05-11 14:33:08 +0800 | [diff] [blame] | 1435 | cpu->update_util_set = true; |
Rafael J. Wysocki | bb6ab52 | 2016-03-31 17:42:15 +0200 | [diff] [blame] | 1436 | } |
| 1437 | |
| 1438 | static void intel_pstate_clear_update_util_hook(unsigned int cpu) |
| 1439 | { |
Chen Yu | 4578ee7e | 2016-05-11 14:33:08 +0800 | [diff] [blame] | 1440 | struct cpudata *cpu_data = all_cpu_data[cpu]; |
| 1441 | |
| 1442 | if (!cpu_data->update_util_set) |
| 1443 | return; |
| 1444 | |
Rafael J. Wysocki | 0bed612 | 2016-04-02 01:08:43 +0200 | [diff] [blame] | 1445 | cpufreq_remove_update_util_hook(cpu); |
Chen Yu | 4578ee7e | 2016-05-11 14:33:08 +0800 | [diff] [blame] | 1446 | cpu_data->update_util_set = false; |
Rafael J. Wysocki | bb6ab52 | 2016-03-31 17:42:15 +0200 | [diff] [blame] | 1447 | synchronize_sched(); |
| 1448 | } |
| 1449 | |
Srinivas Pandruvada | 30a3915 | 2016-04-03 19:42:11 -0700 | [diff] [blame] | 1450 | static void intel_pstate_set_performance_limits(struct perf_limits *limits) |
| 1451 | { |
| 1452 | limits->no_turbo = 0; |
| 1453 | limits->turbo_disabled = 0; |
| 1454 | limits->max_perf_pct = 100; |
| 1455 | limits->max_perf = int_tofp(1); |
| 1456 | limits->min_perf_pct = 100; |
| 1457 | limits->min_perf = int_tofp(1); |
| 1458 | limits->max_policy_pct = 100; |
| 1459 | limits->max_sysfs_pct = 100; |
| 1460 | limits->min_policy_pct = 0; |
| 1461 | limits->min_sysfs_pct = 0; |
| 1462 | } |
| 1463 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1464 | static int intel_pstate_set_policy(struct cpufreq_policy *policy) |
| 1465 | { |
Srinivas Pandruvada | 3be9200 | 2016-04-27 15:48:07 -0700 | [diff] [blame] | 1466 | struct cpudata *cpu; |
| 1467 | |
Dirk Brandewie | d3929b8 | 2013-03-05 14:15:26 -0800 | [diff] [blame] | 1468 | if (!policy->cpuinfo.max_freq) |
| 1469 | return -ENODEV; |
| 1470 | |
Srinivas Pandruvada | 2c2c1af | 2016-06-07 17:38:52 -0700 | [diff] [blame] | 1471 | pr_debug("set_policy cpuinfo.max %u policy->max %u\n", |
| 1472 | policy->cpuinfo.max_freq, policy->max); |
| 1473 | |
Srinivas Pandruvada | 3be9200 | 2016-04-27 15:48:07 -0700 | [diff] [blame] | 1474 | cpu = all_cpu_data[0]; |
Rafael J. Wysocki | c749c64 | 2016-05-12 00:46:45 +0200 | [diff] [blame] | 1475 | if (cpu->pstate.max_pstate_physical > cpu->pstate.max_pstate && |
| 1476 | policy->max < policy->cpuinfo.max_freq && |
| 1477 | policy->max > cpu->pstate.max_pstate * cpu->pstate.scaling) { |
| 1478 | pr_debug("policy->max > max non turbo frequency\n"); |
| 1479 | policy->max = policy->cpuinfo.max_freq; |
Srinivas Pandruvada | 3be9200 | 2016-04-27 15:48:07 -0700 | [diff] [blame] | 1480 | } |
| 1481 | |
Srinivas Pandruvada | 30a3915 | 2016-04-03 19:42:11 -0700 | [diff] [blame] | 1482 | if (policy->policy == CPUFREQ_POLICY_PERFORMANCE) { |
Prarit Bhargava | 51443fb | 2015-10-15 07:34:15 -0400 | [diff] [blame] | 1483 | limits = &performance_limits; |
Srinivas Pandruvada | 30a3915 | 2016-04-03 19:42:11 -0700 | [diff] [blame] | 1484 | if (policy->max >= policy->cpuinfo.max_freq) { |
Joe Perches | 4836df1 | 2016-04-05 13:28:23 -0700 | [diff] [blame] | 1485 | pr_debug("set performance\n"); |
Srinivas Pandruvada | 30a3915 | 2016-04-03 19:42:11 -0700 | [diff] [blame] | 1486 | intel_pstate_set_performance_limits(limits); |
| 1487 | goto out; |
| 1488 | } |
| 1489 | } else { |
Joe Perches | 4836df1 | 2016-04-05 13:28:23 -0700 | [diff] [blame] | 1490 | pr_debug("set powersave\n"); |
Srinivas Pandruvada | 30a3915 | 2016-04-03 19:42:11 -0700 | [diff] [blame] | 1491 | limits = &powersave_limits; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1492 | } |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 1493 | |
Prarit Bhargava | 51443fb | 2015-10-15 07:34:15 -0400 | [diff] [blame] | 1494 | limits->min_policy_pct = (policy->min * 100) / policy->cpuinfo.max_freq; |
| 1495 | limits->min_policy_pct = clamp_t(int, limits->min_policy_pct, 0 , 100); |
Prarit Bhargava | 8478f53 | 2015-11-20 18:47:56 -0500 | [diff] [blame] | 1496 | limits->max_policy_pct = DIV_ROUND_UP(policy->max * 100, |
| 1497 | policy->cpuinfo.max_freq); |
Prarit Bhargava | 51443fb | 2015-10-15 07:34:15 -0400 | [diff] [blame] | 1498 | limits->max_policy_pct = clamp_t(int, limits->max_policy_pct, 0 , 100); |
Chen Yu | 43717aa | 2015-09-09 18:27:31 +0800 | [diff] [blame] | 1499 | |
| 1500 | /* Normalize user input to [min_policy_pct, max_policy_pct] */ |
Prarit Bhargava | 51443fb | 2015-10-15 07:34:15 -0400 | [diff] [blame] | 1501 | limits->min_perf_pct = max(limits->min_policy_pct, |
| 1502 | limits->min_sysfs_pct); |
| 1503 | limits->min_perf_pct = min(limits->max_policy_pct, |
| 1504 | limits->min_perf_pct); |
| 1505 | limits->max_perf_pct = min(limits->max_policy_pct, |
| 1506 | limits->max_sysfs_pct); |
| 1507 | limits->max_perf_pct = max(limits->min_policy_pct, |
| 1508 | limits->max_perf_pct); |
Chen Yu | 43717aa | 2015-09-09 18:27:31 +0800 | [diff] [blame] | 1509 | |
| 1510 | /* Make sure min_perf_pct <= max_perf_pct */ |
Prarit Bhargava | 51443fb | 2015-10-15 07:34:15 -0400 | [diff] [blame] | 1511 | limits->min_perf_pct = min(limits->max_perf_pct, limits->min_perf_pct); |
Chen Yu | 43717aa | 2015-09-09 18:27:31 +0800 | [diff] [blame] | 1512 | |
Rafael J. Wysocki | 22590ef | 2016-04-09 01:25:58 +0200 | [diff] [blame] | 1513 | limits->min_perf = div_fp(limits->min_perf_pct, 100); |
| 1514 | limits->max_perf = div_fp(limits->max_perf_pct, 100); |
Srinivas Pandruvada | 2c2c1af | 2016-06-07 17:38:52 -0700 | [diff] [blame] | 1515 | limits->max_perf = round_up(limits->max_perf, FRAC_BITS); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1516 | |
Rafael J. Wysocki | bb6ab52 | 2016-03-31 17:42:15 +0200 | [diff] [blame] | 1517 | out: |
| 1518 | intel_pstate_set_update_util_hook(policy->cpu); |
| 1519 | |
Rafael J. Wysocki | ba41e1b | 2016-05-02 02:27:19 +0200 | [diff] [blame] | 1520 | intel_pstate_hwp_set_policy(policy); |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 1521 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1522 | return 0; |
| 1523 | } |
| 1524 | |
| 1525 | static int intel_pstate_verify_policy(struct cpufreq_policy *policy) |
| 1526 | { |
Viresh Kumar | be49e34 | 2013-10-02 14:13:19 +0530 | [diff] [blame] | 1527 | cpufreq_verify_within_cpu_limits(policy); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1528 | |
Stratos Karafotis | 285cb99 | 2014-07-18 08:37:21 -0700 | [diff] [blame] | 1529 | if (policy->policy != CPUFREQ_POLICY_POWERSAVE && |
Stratos Karafotis | c410833 | 2014-07-18 08:37:23 -0700 | [diff] [blame] | 1530 | policy->policy != CPUFREQ_POLICY_PERFORMANCE) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1531 | return -EINVAL; |
| 1532 | |
| 1533 | return 0; |
| 1534 | } |
| 1535 | |
Dirk Brandewie | bb18008 | 2014-03-19 08:45:54 -0700 | [diff] [blame] | 1536 | static void intel_pstate_stop_cpu(struct cpufreq_policy *policy) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1537 | { |
Dirk Brandewie | bb18008 | 2014-03-19 08:45:54 -0700 | [diff] [blame] | 1538 | int cpu_num = policy->cpu; |
| 1539 | struct cpudata *cpu = all_cpu_data[cpu_num]; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1540 | |
Joe Perches | 4836df1 | 2016-04-05 13:28:23 -0700 | [diff] [blame] | 1541 | pr_debug("CPU %d exiting\n", cpu_num); |
Dirk Brandewie | bb18008 | 2014-03-19 08:45:54 -0700 | [diff] [blame] | 1542 | |
Rafael J. Wysocki | bb6ab52 | 2016-03-31 17:42:15 +0200 | [diff] [blame] | 1543 | intel_pstate_clear_update_util_hook(cpu_num); |
Rafael J. Wysocki | a4675fb | 2016-02-05 01:45:30 +0100 | [diff] [blame] | 1544 | |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 1545 | if (hwp_active) |
| 1546 | return; |
| 1547 | |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 1548 | intel_pstate_set_min_pstate(cpu); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1549 | } |
| 1550 | |
Paul Gortmaker | 2760984 | 2013-06-19 13:54:04 -0400 | [diff] [blame] | 1551 | static int intel_pstate_cpu_init(struct cpufreq_policy *policy) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1552 | { |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1553 | struct cpudata *cpu; |
Dirk Brandewie | 52e0a50 | 2013-10-15 11:06:14 -0700 | [diff] [blame] | 1554 | int rc; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1555 | |
| 1556 | rc = intel_pstate_init_cpu(policy->cpu); |
| 1557 | if (rc) |
| 1558 | return rc; |
| 1559 | |
| 1560 | cpu = all_cpu_data[policy->cpu]; |
| 1561 | |
Prarit Bhargava | 51443fb | 2015-10-15 07:34:15 -0400 | [diff] [blame] | 1562 | if (limits->min_perf_pct == 100 && limits->max_perf_pct == 100) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1563 | policy->policy = CPUFREQ_POLICY_PERFORMANCE; |
| 1564 | else |
| 1565 | policy->policy = CPUFREQ_POLICY_POWERSAVE; |
| 1566 | |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 1567 | policy->min = cpu->pstate.min_pstate * cpu->pstate.scaling; |
| 1568 | policy->max = cpu->pstate.turbo_pstate * cpu->pstate.scaling; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1569 | |
| 1570 | /* cpuinfo and default policy values */ |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 1571 | policy->cpuinfo.min_freq = cpu->pstate.min_pstate * cpu->pstate.scaling; |
Srinivas Pandruvada | 983e600 | 2016-06-07 17:38:53 -0700 | [diff] [blame] | 1572 | update_turbo_state(); |
| 1573 | policy->cpuinfo.max_freq = limits->turbo_disabled ? |
| 1574 | cpu->pstate.max_pstate : cpu->pstate.turbo_pstate; |
| 1575 | policy->cpuinfo.max_freq *= cpu->pstate.scaling; |
| 1576 | |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 1577 | intel_pstate_init_acpi_perf_limits(policy); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1578 | policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL; |
| 1579 | cpumask_set_cpu(policy->cpu, policy->cpus); |
| 1580 | |
| 1581 | return 0; |
| 1582 | } |
| 1583 | |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 1584 | static int intel_pstate_cpu_exit(struct cpufreq_policy *policy) |
| 1585 | { |
| 1586 | intel_pstate_exit_perf_limits(policy); |
| 1587 | |
| 1588 | return 0; |
| 1589 | } |
| 1590 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1591 | static struct cpufreq_driver intel_pstate_driver = { |
| 1592 | .flags = CPUFREQ_CONST_LOOPS, |
| 1593 | .verify = intel_pstate_verify_policy, |
| 1594 | .setpolicy = intel_pstate_set_policy, |
Rafael J. Wysocki | ba41e1b | 2016-05-02 02:27:19 +0200 | [diff] [blame] | 1595 | .resume = intel_pstate_hwp_set_policy, |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1596 | .get = intel_pstate_get, |
| 1597 | .init = intel_pstate_cpu_init, |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 1598 | .exit = intel_pstate_cpu_exit, |
Dirk Brandewie | bb18008 | 2014-03-19 08:45:54 -0700 | [diff] [blame] | 1599 | .stop_cpu = intel_pstate_stop_cpu, |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1600 | .name = "intel_pstate", |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1601 | }; |
| 1602 | |
Jisheng Zhang | eed4360 | 2016-06-27 18:07:16 +0800 | [diff] [blame] | 1603 | static int no_load __initdata; |
| 1604 | static int no_hwp __initdata; |
| 1605 | static int hwp_only __initdata; |
Jisheng Zhang | 29327c8 | 2016-06-27 18:07:17 +0800 | [diff] [blame] | 1606 | static unsigned int force_load __initdata; |
Dirk Brandewie | 6be2649 | 2013-02-15 22:55:10 +0100 | [diff] [blame] | 1607 | |
Jisheng Zhang | 29327c8 | 2016-06-27 18:07:17 +0800 | [diff] [blame] | 1608 | static int __init intel_pstate_msrs_not_valid(void) |
Dirk Brandewie | b563b4e | 2013-03-22 01:29:28 +0100 | [diff] [blame] | 1609 | { |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 1610 | if (!pstate_funcs.get_max() || |
Stratos Karafotis | c410833 | 2014-07-18 08:37:23 -0700 | [diff] [blame] | 1611 | !pstate_funcs.get_min() || |
| 1612 | !pstate_funcs.get_turbo()) |
Dirk Brandewie | b563b4e | 2013-03-22 01:29:28 +0100 | [diff] [blame] | 1613 | return -ENODEV; |
| 1614 | |
Dirk Brandewie | b563b4e | 2013-03-22 01:29:28 +0100 | [diff] [blame] | 1615 | return 0; |
| 1616 | } |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 1617 | |
Jisheng Zhang | 29327c8 | 2016-06-27 18:07:17 +0800 | [diff] [blame] | 1618 | static void __init copy_pid_params(struct pstate_adjust_policy *policy) |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 1619 | { |
| 1620 | pid_params.sample_rate_ms = policy->sample_rate_ms; |
Rafael J. Wysocki | a4675fb | 2016-02-05 01:45:30 +0100 | [diff] [blame] | 1621 | pid_params.sample_rate_ns = pid_params.sample_rate_ms * NSEC_PER_MSEC; |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 1622 | pid_params.p_gain_pct = policy->p_gain_pct; |
| 1623 | pid_params.i_gain_pct = policy->i_gain_pct; |
| 1624 | pid_params.d_gain_pct = policy->d_gain_pct; |
| 1625 | pid_params.deadband = policy->deadband; |
| 1626 | pid_params.setpoint = policy->setpoint; |
| 1627 | } |
| 1628 | |
Jisheng Zhang | 29327c8 | 2016-06-27 18:07:17 +0800 | [diff] [blame] | 1629 | static void __init copy_cpu_funcs(struct pstate_funcs *funcs) |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 1630 | { |
| 1631 | pstate_funcs.get_max = funcs->get_max; |
Srinivas Pandruvada | 3bcc6fa | 2015-10-14 16:12:00 -0700 | [diff] [blame] | 1632 | pstate_funcs.get_max_physical = funcs->get_max_physical; |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 1633 | pstate_funcs.get_min = funcs->get_min; |
| 1634 | pstate_funcs.get_turbo = funcs->get_turbo; |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 1635 | pstate_funcs.get_scaling = funcs->get_scaling; |
Rafael J. Wysocki | fdfdb2b | 2016-03-18 23:20:02 +0100 | [diff] [blame] | 1636 | pstate_funcs.get_val = funcs->get_val; |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 1637 | pstate_funcs.get_vid = funcs->get_vid; |
Philippe Longepe | 157386b | 2015-12-04 17:40:30 +0100 | [diff] [blame] | 1638 | pstate_funcs.get_target_pstate = funcs->get_target_pstate; |
| 1639 | |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 1640 | } |
| 1641 | |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 1642 | #ifdef CONFIG_ACPI |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 1643 | |
Jisheng Zhang | 29327c8 | 2016-06-27 18:07:17 +0800 | [diff] [blame] | 1644 | static bool __init intel_pstate_no_acpi_pss(void) |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 1645 | { |
| 1646 | int i; |
| 1647 | |
| 1648 | for_each_possible_cpu(i) { |
| 1649 | acpi_status status; |
| 1650 | union acpi_object *pss; |
| 1651 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 1652 | struct acpi_processor *pr = per_cpu(processors, i); |
| 1653 | |
| 1654 | if (!pr) |
| 1655 | continue; |
| 1656 | |
| 1657 | status = acpi_evaluate_object(pr->handle, "_PSS", NULL, &buffer); |
| 1658 | if (ACPI_FAILURE(status)) |
| 1659 | continue; |
| 1660 | |
| 1661 | pss = buffer.pointer; |
| 1662 | if (pss && pss->type == ACPI_TYPE_PACKAGE) { |
| 1663 | kfree(pss); |
| 1664 | return false; |
| 1665 | } |
| 1666 | |
| 1667 | kfree(pss); |
| 1668 | } |
| 1669 | |
| 1670 | return true; |
| 1671 | } |
| 1672 | |
Jisheng Zhang | 29327c8 | 2016-06-27 18:07:17 +0800 | [diff] [blame] | 1673 | static bool __init intel_pstate_has_acpi_ppc(void) |
ethan zhao | 966916e | 2014-12-01 11:32:08 +0900 | [diff] [blame] | 1674 | { |
| 1675 | int i; |
| 1676 | |
| 1677 | for_each_possible_cpu(i) { |
| 1678 | struct acpi_processor *pr = per_cpu(processors, i); |
| 1679 | |
| 1680 | if (!pr) |
| 1681 | continue; |
| 1682 | if (acpi_has_method(pr->handle, "_PPC")) |
| 1683 | return true; |
| 1684 | } |
| 1685 | return false; |
| 1686 | } |
| 1687 | |
| 1688 | enum { |
| 1689 | PSS, |
| 1690 | PPC, |
| 1691 | }; |
| 1692 | |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 1693 | struct hw_vendor_info { |
| 1694 | u16 valid; |
| 1695 | char oem_id[ACPI_OEM_ID_SIZE]; |
| 1696 | char oem_table_id[ACPI_OEM_TABLE_ID_SIZE]; |
ethan zhao | 966916e | 2014-12-01 11:32:08 +0900 | [diff] [blame] | 1697 | int oem_pwr_table; |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 1698 | }; |
| 1699 | |
| 1700 | /* Hardware vendor-specific info that has its own power management modes */ |
Jisheng Zhang | 29327c8 | 2016-06-27 18:07:17 +0800 | [diff] [blame] | 1701 | static struct hw_vendor_info vendor_info[] __initdata = { |
ethan zhao | 966916e | 2014-12-01 11:32:08 +0900 | [diff] [blame] | 1702 | {1, "HP ", "ProLiant", PSS}, |
| 1703 | {1, "ORACLE", "X4-2 ", PPC}, |
| 1704 | {1, "ORACLE", "X4-2L ", PPC}, |
| 1705 | {1, "ORACLE", "X4-2B ", PPC}, |
| 1706 | {1, "ORACLE", "X3-2 ", PPC}, |
| 1707 | {1, "ORACLE", "X3-2L ", PPC}, |
| 1708 | {1, "ORACLE", "X3-2B ", PPC}, |
| 1709 | {1, "ORACLE", "X4470M2 ", PPC}, |
| 1710 | {1, "ORACLE", "X4270M3 ", PPC}, |
| 1711 | {1, "ORACLE", "X4270M2 ", PPC}, |
| 1712 | {1, "ORACLE", "X4170M2 ", PPC}, |
Ethan Zhao | 5aecc3c | 2015-08-05 09:28:50 +0900 | [diff] [blame] | 1713 | {1, "ORACLE", "X4170 M3", PPC}, |
| 1714 | {1, "ORACLE", "X4275 M3", PPC}, |
| 1715 | {1, "ORACLE", "X6-2 ", PPC}, |
| 1716 | {1, "ORACLE", "Sudbury ", PPC}, |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 1717 | {0, "", ""}, |
| 1718 | }; |
| 1719 | |
Jisheng Zhang | 29327c8 | 2016-06-27 18:07:17 +0800 | [diff] [blame] | 1720 | static bool __init intel_pstate_platform_pwr_mgmt_exists(void) |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 1721 | { |
| 1722 | struct acpi_table_header hdr; |
| 1723 | struct hw_vendor_info *v_info; |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 1724 | const struct x86_cpu_id *id; |
| 1725 | u64 misc_pwr; |
| 1726 | |
| 1727 | id = x86_match_cpu(intel_pstate_cpu_oob_ids); |
| 1728 | if (id) { |
| 1729 | rdmsrl(MSR_MISC_PWR_MGMT, misc_pwr); |
| 1730 | if ( misc_pwr & (1 << 8)) |
| 1731 | return true; |
| 1732 | } |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 1733 | |
Stratos Karafotis | c410833 | 2014-07-18 08:37:23 -0700 | [diff] [blame] | 1734 | if (acpi_disabled || |
| 1735 | ACPI_FAILURE(acpi_get_table_header(ACPI_SIG_FADT, 0, &hdr))) |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 1736 | return false; |
| 1737 | |
| 1738 | for (v_info = vendor_info; v_info->valid; v_info++) { |
Stratos Karafotis | c410833 | 2014-07-18 08:37:23 -0700 | [diff] [blame] | 1739 | 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] | 1740 | !strncmp(hdr.oem_table_id, v_info->oem_table_id, |
| 1741 | ACPI_OEM_TABLE_ID_SIZE)) |
| 1742 | switch (v_info->oem_pwr_table) { |
| 1743 | case PSS: |
| 1744 | return intel_pstate_no_acpi_pss(); |
| 1745 | case PPC: |
Ethan Zhao | aa4ea34 | 2014-12-09 10:43:19 +0900 | [diff] [blame] | 1746 | return intel_pstate_has_acpi_ppc() && |
| 1747 | (!force_load); |
ethan zhao | 966916e | 2014-12-01 11:32:08 +0900 | [diff] [blame] | 1748 | } |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 1749 | } |
| 1750 | |
| 1751 | return false; |
| 1752 | } |
| 1753 | #else /* CONFIG_ACPI not enabled */ |
| 1754 | static inline bool intel_pstate_platform_pwr_mgmt_exists(void) { return false; } |
ethan zhao | 966916e | 2014-12-01 11:32:08 +0900 | [diff] [blame] | 1755 | static inline bool intel_pstate_has_acpi_ppc(void) { return false; } |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 1756 | #endif /* CONFIG_ACPI */ |
| 1757 | |
Srinivas Pandruvada | 7791e4a | 2016-02-25 15:09:19 -0800 | [diff] [blame] | 1758 | static const struct x86_cpu_id hwp_support_ids[] __initconst = { |
| 1759 | { X86_VENDOR_INTEL, 6, X86_MODEL_ANY, X86_FEATURE_HWP }, |
| 1760 | {} |
| 1761 | }; |
| 1762 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1763 | static int __init intel_pstate_init(void) |
| 1764 | { |
Dirk Brandewie | 907cc90 | 2013-03-05 14:15:27 -0800 | [diff] [blame] | 1765 | int cpu, rc = 0; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1766 | const struct x86_cpu_id *id; |
Borislav Petkov | 64df1fd | 2015-04-03 15:19:53 +0200 | [diff] [blame] | 1767 | struct cpu_defaults *cpu_def; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1768 | |
Dirk Brandewie | 6be2649 | 2013-02-15 22:55:10 +0100 | [diff] [blame] | 1769 | if (no_load) |
| 1770 | return -ENODEV; |
| 1771 | |
Srinivas Pandruvada | 7791e4a | 2016-02-25 15:09:19 -0800 | [diff] [blame] | 1772 | if (x86_match_cpu(hwp_support_ids) && !no_hwp) { |
| 1773 | copy_cpu_funcs(&core_params.funcs); |
| 1774 | hwp_active++; |
| 1775 | goto hwp_cpu_matched; |
| 1776 | } |
| 1777 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1778 | id = x86_match_cpu(intel_pstate_cpu_ids); |
| 1779 | if (!id) |
| 1780 | return -ENODEV; |
| 1781 | |
Borislav Petkov | 64df1fd | 2015-04-03 15:19:53 +0200 | [diff] [blame] | 1782 | cpu_def = (struct cpu_defaults *)id->driver_data; |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 1783 | |
Borislav Petkov | 64df1fd | 2015-04-03 15:19:53 +0200 | [diff] [blame] | 1784 | copy_pid_params(&cpu_def->pid_policy); |
| 1785 | copy_cpu_funcs(&cpu_def->funcs); |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 1786 | |
Dirk Brandewie | b563b4e | 2013-03-22 01:29:28 +0100 | [diff] [blame] | 1787 | if (intel_pstate_msrs_not_valid()) |
| 1788 | return -ENODEV; |
| 1789 | |
Srinivas Pandruvada | 7791e4a | 2016-02-25 15:09:19 -0800 | [diff] [blame] | 1790 | hwp_cpu_matched: |
| 1791 | /* |
| 1792 | * The Intel pstate driver will be ignored if the platform |
| 1793 | * firmware has its own power management modes. |
| 1794 | */ |
| 1795 | if (intel_pstate_platform_pwr_mgmt_exists()) |
| 1796 | return -ENODEV; |
| 1797 | |
Joe Perches | 4836df1 | 2016-04-05 13:28:23 -0700 | [diff] [blame] | 1798 | pr_info("Intel P-state driver initializing\n"); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1799 | |
Wei Yongjun | b57ffac | 2013-05-13 08:03:43 +0000 | [diff] [blame] | 1800 | all_cpu_data = vzalloc(sizeof(void *) * num_possible_cpus()); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1801 | if (!all_cpu_data) |
| 1802 | return -ENOMEM; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1803 | |
Kristen Carlson Accardi | d64c3b0 | 2015-02-06 13:41:55 -0800 | [diff] [blame] | 1804 | if (!hwp_active && hwp_only) |
| 1805 | goto out; |
| 1806 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1807 | rc = cpufreq_register_driver(&intel_pstate_driver); |
| 1808 | if (rc) |
| 1809 | goto out; |
| 1810 | |
| 1811 | intel_pstate_debug_expose_params(); |
| 1812 | intel_pstate_sysfs_expose_params(); |
Dirk Brandewie | b69880f | 2014-01-16 10:32:25 -0800 | [diff] [blame] | 1813 | |
Srinivas Pandruvada | 7791e4a | 2016-02-25 15:09:19 -0800 | [diff] [blame] | 1814 | if (hwp_active) |
Joe Perches | 4836df1 | 2016-04-05 13:28:23 -0700 | [diff] [blame] | 1815 | pr_info("HWP enabled\n"); |
Srinivas Pandruvada | 7791e4a | 2016-02-25 15:09:19 -0800 | [diff] [blame] | 1816 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1817 | return rc; |
| 1818 | out: |
Dirk Brandewie | 907cc90 | 2013-03-05 14:15:27 -0800 | [diff] [blame] | 1819 | get_online_cpus(); |
| 1820 | for_each_online_cpu(cpu) { |
| 1821 | if (all_cpu_data[cpu]) { |
Rafael J. Wysocki | bb6ab52 | 2016-03-31 17:42:15 +0200 | [diff] [blame] | 1822 | intel_pstate_clear_update_util_hook(cpu); |
Dirk Brandewie | 907cc90 | 2013-03-05 14:15:27 -0800 | [diff] [blame] | 1823 | kfree(all_cpu_data[cpu]); |
| 1824 | } |
| 1825 | } |
| 1826 | |
| 1827 | put_online_cpus(); |
| 1828 | vfree(all_cpu_data); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1829 | return -ENODEV; |
| 1830 | } |
| 1831 | device_initcall(intel_pstate_init); |
| 1832 | |
Dirk Brandewie | 6be2649 | 2013-02-15 22:55:10 +0100 | [diff] [blame] | 1833 | static int __init intel_pstate_setup(char *str) |
| 1834 | { |
| 1835 | if (!str) |
| 1836 | return -EINVAL; |
| 1837 | |
| 1838 | if (!strcmp(str, "disable")) |
| 1839 | no_load = 1; |
Prarit Bhargava | 539342f | 2015-10-22 09:43:31 -0400 | [diff] [blame] | 1840 | if (!strcmp(str, "no_hwp")) { |
Joe Perches | 4836df1 | 2016-04-05 13:28:23 -0700 | [diff] [blame] | 1841 | pr_info("HWP disabled\n"); |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 1842 | no_hwp = 1; |
Prarit Bhargava | 539342f | 2015-10-22 09:43:31 -0400 | [diff] [blame] | 1843 | } |
Ethan Zhao | aa4ea34 | 2014-12-09 10:43:19 +0900 | [diff] [blame] | 1844 | if (!strcmp(str, "force")) |
| 1845 | force_load = 1; |
Kristen Carlson Accardi | d64c3b0 | 2015-02-06 13:41:55 -0800 | [diff] [blame] | 1846 | if (!strcmp(str, "hwp_only")) |
| 1847 | hwp_only = 1; |
Srinivas Pandruvada | 9522a2f | 2016-04-27 15:48:06 -0700 | [diff] [blame] | 1848 | |
| 1849 | #ifdef CONFIG_ACPI |
| 1850 | if (!strcmp(str, "support_acpi_ppc")) |
| 1851 | acpi_ppc = true; |
| 1852 | #endif |
| 1853 | |
Dirk Brandewie | 6be2649 | 2013-02-15 22:55:10 +0100 | [diff] [blame] | 1854 | return 0; |
| 1855 | } |
| 1856 | early_param("intel_pstate", intel_pstate_setup); |
| 1857 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1858 | MODULE_AUTHOR("Dirk Brandewie <dirk.j.brandewie@intel.com>"); |
| 1859 | MODULE_DESCRIPTION("'intel_pstate' - P state driver Intel Core processors"); |
| 1860 | MODULE_LICENSE("GPL"); |