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 | |
| 13 | #include <linux/kernel.h> |
| 14 | #include <linux/kernel_stat.h> |
| 15 | #include <linux/module.h> |
| 16 | #include <linux/ktime.h> |
| 17 | #include <linux/hrtimer.h> |
| 18 | #include <linux/tick.h> |
| 19 | #include <linux/slab.h> |
| 20 | #include <linux/sched.h> |
| 21 | #include <linux/list.h> |
| 22 | #include <linux/cpu.h> |
| 23 | #include <linux/cpufreq.h> |
| 24 | #include <linux/sysfs.h> |
| 25 | #include <linux/types.h> |
| 26 | #include <linux/fs.h> |
| 27 | #include <linux/debugfs.h> |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 28 | #include <linux/acpi.h> |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 29 | #include <trace/events/power.h> |
| 30 | |
| 31 | #include <asm/div64.h> |
| 32 | #include <asm/msr.h> |
| 33 | #include <asm/cpu_device_id.h> |
| 34 | |
Dirk Brandewie | 61d8d2a | 2014-02-12 10:01:07 -0800 | [diff] [blame] | 35 | #define BYT_RATIOS 0x66a |
| 36 | #define BYT_VIDS 0x66b |
| 37 | #define BYT_TURBO_RATIOS 0x66c |
Dirk Brandewie | 21855ff | 2014-05-08 12:57:23 -0700 | [diff] [blame] | 38 | #define BYT_TURBO_VIDS 0x66d |
Dirk Brandewie | 61d8d2a | 2014-02-12 10:01:07 -0800 | [diff] [blame] | 39 | |
Dirk Brandewie | f0fe3cd | 2014-05-29 09:32:23 -0700 | [diff] [blame] | 40 | #define FRAC_BITS 8 |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 41 | #define int_tofp(X) ((int64_t)(X) << FRAC_BITS) |
| 42 | #define fp_toint(X) ((X) >> FRAC_BITS) |
Dirk Brandewie | f0fe3cd | 2014-05-29 09:32:23 -0700 | [diff] [blame] | 43 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 44 | |
| 45 | static inline int32_t mul_fp(int32_t x, int32_t y) |
| 46 | { |
| 47 | return ((int64_t)x * (int64_t)y) >> FRAC_BITS; |
| 48 | } |
| 49 | |
| 50 | static inline int32_t div_fp(int32_t x, int32_t y) |
| 51 | { |
Stratos Karafotis | fa30dff | 2014-07-18 08:37:18 -0700 | [diff] [blame] | 52 | return div_s64((int64_t)x << FRAC_BITS, y); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 53 | } |
| 54 | |
Dirk Brandewie | d022a65 | 2014-10-13 08:37:44 -0700 | [diff] [blame] | 55 | static inline int ceiling_fp(int32_t x) |
| 56 | { |
| 57 | int mask, ret; |
| 58 | |
| 59 | ret = fp_toint(x); |
| 60 | mask = (1 << FRAC_BITS) - 1; |
| 61 | if (x & mask) |
| 62 | ret += 1; |
| 63 | return ret; |
| 64 | } |
| 65 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 66 | struct sample { |
Brennan Shacklett | d253d2a | 2013-10-21 09:20:32 -0700 | [diff] [blame] | 67 | int32_t core_pct_busy; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 68 | u64 aperf; |
| 69 | u64 mperf; |
| 70 | int freq; |
Dirk Brandewie | c4ee841 | 2014-05-29 09:32:24 -0700 | [diff] [blame] | 71 | ktime_t time; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 72 | }; |
| 73 | |
| 74 | struct pstate_data { |
| 75 | int current_pstate; |
| 76 | int min_pstate; |
| 77 | int max_pstate; |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 78 | int scaling; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 79 | int turbo_pstate; |
| 80 | }; |
| 81 | |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 82 | struct vid_data { |
Dirk Brandewie | 21855ff | 2014-05-08 12:57:23 -0700 | [diff] [blame] | 83 | int min; |
| 84 | int max; |
| 85 | int turbo; |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 86 | int32_t ratio; |
| 87 | }; |
| 88 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 89 | struct _pid { |
| 90 | int setpoint; |
| 91 | int32_t integral; |
| 92 | int32_t p_gain; |
| 93 | int32_t i_gain; |
| 94 | int32_t d_gain; |
| 95 | int deadband; |
Brennan Shacklett | d253d2a | 2013-10-21 09:20:32 -0700 | [diff] [blame] | 96 | int32_t last_err; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 97 | }; |
| 98 | |
| 99 | struct cpudata { |
| 100 | int cpu; |
| 101 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 102 | struct timer_list timer; |
| 103 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 104 | struct pstate_data pstate; |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 105 | struct vid_data vid; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 106 | struct _pid pid; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 107 | |
Dirk Brandewie | c4ee841 | 2014-05-29 09:32:24 -0700 | [diff] [blame] | 108 | ktime_t last_sample_time; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 109 | u64 prev_aperf; |
| 110 | u64 prev_mperf; |
Dirk Brandewie | d37e2b7 | 2014-02-12 10:01:04 -0800 | [diff] [blame] | 111 | struct sample sample; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 112 | }; |
| 113 | |
| 114 | static struct cpudata **all_cpu_data; |
| 115 | struct pstate_adjust_policy { |
| 116 | int sample_rate_ms; |
| 117 | int deadband; |
| 118 | int setpoint; |
| 119 | int p_gain_pct; |
| 120 | int d_gain_pct; |
| 121 | int i_gain_pct; |
| 122 | }; |
| 123 | |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 124 | struct pstate_funcs { |
| 125 | int (*get_max)(void); |
| 126 | int (*get_min)(void); |
| 127 | int (*get_turbo)(void); |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 128 | int (*get_scaling)(void); |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 129 | void (*set)(struct cpudata*, int pstate); |
| 130 | void (*get_vid)(struct cpudata *); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 131 | }; |
| 132 | |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 133 | struct cpu_defaults { |
| 134 | struct pstate_adjust_policy pid_policy; |
| 135 | struct pstate_funcs funcs; |
| 136 | }; |
| 137 | |
| 138 | static struct pstate_adjust_policy pid_params; |
| 139 | static struct pstate_funcs pstate_funcs; |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 140 | static int hwp_active; |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 141 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 142 | struct perf_limits { |
| 143 | int no_turbo; |
Dirk Brandewie | dd5fbf7 | 2014-06-20 07:27:59 -0700 | [diff] [blame] | 144 | int turbo_disabled; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 145 | int max_perf_pct; |
| 146 | int min_perf_pct; |
| 147 | int32_t max_perf; |
| 148 | int32_t min_perf; |
Dirk Brandewie | d8f469e | 2013-05-07 08:20:26 -0700 | [diff] [blame] | 149 | int max_policy_pct; |
| 150 | int max_sysfs_pct; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 151 | }; |
| 152 | |
| 153 | static struct perf_limits limits = { |
| 154 | .no_turbo = 0, |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 155 | .turbo_disabled = 0, |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 156 | .max_perf_pct = 100, |
| 157 | .max_perf = int_tofp(1), |
| 158 | .min_perf_pct = 0, |
| 159 | .min_perf = 0, |
Dirk Brandewie | d8f469e | 2013-05-07 08:20:26 -0700 | [diff] [blame] | 160 | .max_policy_pct = 100, |
| 161 | .max_sysfs_pct = 100, |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 162 | }; |
| 163 | |
| 164 | static inline void pid_reset(struct _pid *pid, int setpoint, int busy, |
Stratos Karafotis | c410833 | 2014-07-18 08:37:23 -0700 | [diff] [blame] | 165 | int deadband, int integral) { |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 166 | pid->setpoint = setpoint; |
| 167 | pid->deadband = deadband; |
| 168 | pid->integral = int_tofp(integral); |
Dirk Brandewie | d98d099 | 2014-02-12 10:01:05 -0800 | [diff] [blame] | 169 | pid->last_err = int_tofp(setpoint) - int_tofp(busy); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | static inline void pid_p_gain_set(struct _pid *pid, int percent) |
| 173 | { |
| 174 | pid->p_gain = div_fp(int_tofp(percent), int_tofp(100)); |
| 175 | } |
| 176 | |
| 177 | static inline void pid_i_gain_set(struct _pid *pid, int percent) |
| 178 | { |
| 179 | pid->i_gain = div_fp(int_tofp(percent), int_tofp(100)); |
| 180 | } |
| 181 | |
| 182 | static inline void pid_d_gain_set(struct _pid *pid, int percent) |
| 183 | { |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 184 | pid->d_gain = div_fp(int_tofp(percent), int_tofp(100)); |
| 185 | } |
| 186 | |
Brennan Shacklett | d253d2a | 2013-10-21 09:20:32 -0700 | [diff] [blame] | 187 | static signed int pid_calc(struct _pid *pid, int32_t busy) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 188 | { |
Brennan Shacklett | d253d2a | 2013-10-21 09:20:32 -0700 | [diff] [blame] | 189 | signed int result; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 190 | int32_t pterm, dterm, fp_error; |
| 191 | int32_t integral_limit; |
| 192 | |
Brennan Shacklett | d253d2a | 2013-10-21 09:20:32 -0700 | [diff] [blame] | 193 | fp_error = int_tofp(pid->setpoint) - busy; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 194 | |
Brennan Shacklett | d253d2a | 2013-10-21 09:20:32 -0700 | [diff] [blame] | 195 | if (abs(fp_error) <= int_tofp(pid->deadband)) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 196 | return 0; |
| 197 | |
| 198 | pterm = mul_fp(pid->p_gain, fp_error); |
| 199 | |
| 200 | pid->integral += fp_error; |
| 201 | |
| 202 | /* limit the integral term */ |
| 203 | integral_limit = int_tofp(30); |
| 204 | if (pid->integral > integral_limit) |
| 205 | pid->integral = integral_limit; |
| 206 | if (pid->integral < -integral_limit) |
| 207 | pid->integral = -integral_limit; |
| 208 | |
Brennan Shacklett | d253d2a | 2013-10-21 09:20:32 -0700 | [diff] [blame] | 209 | dterm = mul_fp(pid->d_gain, fp_error - pid->last_err); |
| 210 | pid->last_err = fp_error; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 211 | |
| 212 | result = pterm + mul_fp(pid->integral, pid->i_gain) + dterm; |
Doug Smythies | 51d211e | 2014-06-17 13:36:10 -0700 | [diff] [blame] | 213 | result = result + (1 << (FRAC_BITS-1)); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 214 | return (signed int)fp_toint(result); |
| 215 | } |
| 216 | |
| 217 | static inline void intel_pstate_busy_pid_reset(struct cpudata *cpu) |
| 218 | { |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 219 | pid_p_gain_set(&cpu->pid, pid_params.p_gain_pct); |
| 220 | pid_d_gain_set(&cpu->pid, pid_params.d_gain_pct); |
| 221 | pid_i_gain_set(&cpu->pid, pid_params.i_gain_pct); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 222 | |
Stratos Karafotis | 2d8d1f1 | 2014-07-18 08:37:20 -0700 | [diff] [blame] | 223 | pid_reset(&cpu->pid, pid_params.setpoint, 100, pid_params.deadband, 0); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 224 | } |
| 225 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 226 | static inline void intel_pstate_reset_all_pid(void) |
| 227 | { |
| 228 | unsigned int cpu; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 229 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 230 | for_each_online_cpu(cpu) { |
| 231 | if (all_cpu_data[cpu]) |
| 232 | intel_pstate_busy_pid_reset(all_cpu_data[cpu]); |
| 233 | } |
| 234 | } |
| 235 | |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 236 | static inline void update_turbo_state(void) |
| 237 | { |
| 238 | u64 misc_en; |
| 239 | struct cpudata *cpu; |
| 240 | |
| 241 | cpu = all_cpu_data[0]; |
| 242 | rdmsrl(MSR_IA32_MISC_ENABLE, misc_en); |
| 243 | limits.turbo_disabled = |
| 244 | (misc_en & MSR_IA32_MISC_ENABLE_TURBO_DISABLE || |
| 245 | cpu->pstate.max_pstate == cpu->pstate.turbo_pstate); |
| 246 | } |
| 247 | |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 248 | #define PCT_TO_HWP(x) (x * 255 / 100) |
| 249 | static void intel_pstate_hwp_set(void) |
| 250 | { |
| 251 | int min, max, cpu; |
| 252 | u64 value, freq; |
| 253 | |
| 254 | get_online_cpus(); |
| 255 | |
| 256 | for_each_online_cpu(cpu) { |
| 257 | rdmsrl_on_cpu(cpu, MSR_HWP_REQUEST, &value); |
| 258 | min = PCT_TO_HWP(limits.min_perf_pct); |
| 259 | value &= ~HWP_MIN_PERF(~0L); |
| 260 | value |= HWP_MIN_PERF(min); |
| 261 | |
| 262 | max = PCT_TO_HWP(limits.max_perf_pct); |
| 263 | if (limits.no_turbo) { |
| 264 | rdmsrl( MSR_HWP_CAPABILITIES, freq); |
| 265 | max = HWP_GUARANTEED_PERF(freq); |
| 266 | } |
| 267 | |
| 268 | value &= ~HWP_MAX_PERF(~0L); |
| 269 | value |= HWP_MAX_PERF(max); |
| 270 | wrmsrl_on_cpu(cpu, MSR_HWP_REQUEST, value); |
| 271 | } |
| 272 | |
| 273 | put_online_cpus(); |
| 274 | } |
| 275 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 276 | /************************** debugfs begin ************************/ |
| 277 | static int pid_param_set(void *data, u64 val) |
| 278 | { |
| 279 | *(u32 *)data = val; |
| 280 | intel_pstate_reset_all_pid(); |
| 281 | return 0; |
| 282 | } |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 283 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 284 | static int pid_param_get(void *data, u64 *val) |
| 285 | { |
| 286 | *val = *(u32 *)data; |
| 287 | return 0; |
| 288 | } |
Stratos Karafotis | 2d8d1f1 | 2014-07-18 08:37:20 -0700 | [diff] [blame] | 289 | 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] | 290 | |
| 291 | struct pid_param { |
| 292 | char *name; |
| 293 | void *value; |
| 294 | }; |
| 295 | |
| 296 | static struct pid_param pid_files[] = { |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 297 | {"sample_rate_ms", &pid_params.sample_rate_ms}, |
| 298 | {"d_gain_pct", &pid_params.d_gain_pct}, |
| 299 | {"i_gain_pct", &pid_params.i_gain_pct}, |
| 300 | {"deadband", &pid_params.deadband}, |
| 301 | {"setpoint", &pid_params.setpoint}, |
| 302 | {"p_gain_pct", &pid_params.p_gain_pct}, |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 303 | {NULL, NULL} |
| 304 | }; |
| 305 | |
Stratos Karafotis | 317dd50 | 2014-07-18 08:37:17 -0700 | [diff] [blame] | 306 | static void __init intel_pstate_debug_expose_params(void) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 307 | { |
Stratos Karafotis | 317dd50 | 2014-07-18 08:37:17 -0700 | [diff] [blame] | 308 | struct dentry *debugfs_parent; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 309 | int i = 0; |
| 310 | |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 311 | if (hwp_active) |
| 312 | return; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 313 | debugfs_parent = debugfs_create_dir("pstate_snb", NULL); |
| 314 | if (IS_ERR_OR_NULL(debugfs_parent)) |
| 315 | return; |
| 316 | while (pid_files[i].name) { |
| 317 | debugfs_create_file(pid_files[i].name, 0660, |
Stratos Karafotis | c410833 | 2014-07-18 08:37:23 -0700 | [diff] [blame] | 318 | debugfs_parent, pid_files[i].value, |
| 319 | &fops_pid_param); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 320 | i++; |
| 321 | } |
| 322 | } |
| 323 | |
| 324 | /************************** debugfs end ************************/ |
| 325 | |
| 326 | /************************** sysfs begin ************************/ |
| 327 | #define show_one(file_name, object) \ |
| 328 | static ssize_t show_##file_name \ |
| 329 | (struct kobject *kobj, struct attribute *attr, char *buf) \ |
| 330 | { \ |
| 331 | return sprintf(buf, "%u\n", limits.object); \ |
| 332 | } |
| 333 | |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 334 | static ssize_t show_no_turbo(struct kobject *kobj, |
| 335 | struct attribute *attr, char *buf) |
| 336 | { |
| 337 | ssize_t ret; |
| 338 | |
| 339 | update_turbo_state(); |
| 340 | if (limits.turbo_disabled) |
| 341 | ret = sprintf(buf, "%u\n", limits.turbo_disabled); |
| 342 | else |
| 343 | ret = sprintf(buf, "%u\n", limits.no_turbo); |
| 344 | |
| 345 | return ret; |
| 346 | } |
| 347 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 348 | static ssize_t store_no_turbo(struct kobject *a, struct attribute *b, |
Stratos Karafotis | c410833 | 2014-07-18 08:37:23 -0700 | [diff] [blame] | 349 | const char *buf, size_t count) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 350 | { |
| 351 | unsigned int input; |
| 352 | int ret; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 353 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 354 | ret = sscanf(buf, "%u", &input); |
| 355 | if (ret != 1) |
| 356 | return -EINVAL; |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 357 | |
| 358 | update_turbo_state(); |
Dirk Brandewie | dd5fbf7 | 2014-06-20 07:27:59 -0700 | [diff] [blame] | 359 | if (limits.turbo_disabled) { |
| 360 | pr_warn("Turbo disabled by BIOS or unavailable on processor\n"); |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 361 | return -EPERM; |
Dirk Brandewie | dd5fbf7 | 2014-06-20 07:27:59 -0700 | [diff] [blame] | 362 | } |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 363 | |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 364 | limits.no_turbo = clamp_t(int, input, 0, 1); |
| 365 | |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 366 | if (hwp_active) |
| 367 | intel_pstate_hwp_set(); |
| 368 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 369 | return count; |
| 370 | } |
| 371 | |
| 372 | 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] | 373 | const char *buf, size_t count) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 374 | { |
| 375 | unsigned int input; |
| 376 | int ret; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 377 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 378 | ret = sscanf(buf, "%u", &input); |
| 379 | if (ret != 1) |
| 380 | return -EINVAL; |
| 381 | |
Dirk Brandewie | d8f469e | 2013-05-07 08:20:26 -0700 | [diff] [blame] | 382 | limits.max_sysfs_pct = clamp_t(int, input, 0 , 100); |
| 383 | limits.max_perf_pct = min(limits.max_policy_pct, limits.max_sysfs_pct); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 384 | limits.max_perf = div_fp(int_tofp(limits.max_perf_pct), int_tofp(100)); |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 385 | |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 386 | if (hwp_active) |
| 387 | intel_pstate_hwp_set(); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 388 | return count; |
| 389 | } |
| 390 | |
| 391 | 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] | 392 | const char *buf, size_t count) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 393 | { |
| 394 | unsigned int input; |
| 395 | int ret; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 396 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 397 | ret = sscanf(buf, "%u", &input); |
| 398 | if (ret != 1) |
| 399 | return -EINVAL; |
| 400 | limits.min_perf_pct = clamp_t(int, input, 0 , 100); |
| 401 | limits.min_perf = div_fp(int_tofp(limits.min_perf_pct), int_tofp(100)); |
| 402 | |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 403 | if (hwp_active) |
| 404 | intel_pstate_hwp_set(); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 405 | return count; |
| 406 | } |
| 407 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 408 | show_one(max_perf_pct, max_perf_pct); |
| 409 | show_one(min_perf_pct, min_perf_pct); |
| 410 | |
| 411 | define_one_global_rw(no_turbo); |
| 412 | define_one_global_rw(max_perf_pct); |
| 413 | define_one_global_rw(min_perf_pct); |
| 414 | |
| 415 | static struct attribute *intel_pstate_attributes[] = { |
| 416 | &no_turbo.attr, |
| 417 | &max_perf_pct.attr, |
| 418 | &min_perf_pct.attr, |
| 419 | NULL |
| 420 | }; |
| 421 | |
| 422 | static struct attribute_group intel_pstate_attr_group = { |
| 423 | .attrs = intel_pstate_attributes, |
| 424 | }; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 425 | |
Stratos Karafotis | 317dd50 | 2014-07-18 08:37:17 -0700 | [diff] [blame] | 426 | static void __init intel_pstate_sysfs_expose_params(void) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 427 | { |
Stratos Karafotis | 317dd50 | 2014-07-18 08:37:17 -0700 | [diff] [blame] | 428 | struct kobject *intel_pstate_kobject; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 429 | int rc; |
| 430 | |
| 431 | intel_pstate_kobject = kobject_create_and_add("intel_pstate", |
| 432 | &cpu_subsys.dev_root->kobj); |
| 433 | BUG_ON(!intel_pstate_kobject); |
Stratos Karafotis | 2d8d1f1 | 2014-07-18 08:37:20 -0700 | [diff] [blame] | 434 | rc = sysfs_create_group(intel_pstate_kobject, &intel_pstate_attr_group); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 435 | BUG_ON(rc); |
| 436 | } |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 437 | /************************** sysfs end ************************/ |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 438 | |
| 439 | static void intel_pstate_hwp_enable(void) |
| 440 | { |
| 441 | hwp_active++; |
| 442 | pr_info("intel_pstate HWP enabled\n"); |
| 443 | |
| 444 | wrmsrl( MSR_PM_ENABLE, 0x1); |
| 445 | } |
| 446 | |
Dirk Brandewie | 19e77c2 | 2013-10-21 09:20:35 -0700 | [diff] [blame] | 447 | static int byt_get_min_pstate(void) |
| 448 | { |
| 449 | u64 value; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 450 | |
Dirk Brandewie | 19e77c2 | 2013-10-21 09:20:35 -0700 | [diff] [blame] | 451 | rdmsrl(BYT_RATIOS, value); |
Dirk Brandewie | c16ed06 | 2014-06-20 07:27:58 -0700 | [diff] [blame] | 452 | return (value >> 8) & 0x7F; |
Dirk Brandewie | 19e77c2 | 2013-10-21 09:20:35 -0700 | [diff] [blame] | 453 | } |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 454 | |
Dirk Brandewie | 19e77c2 | 2013-10-21 09:20:35 -0700 | [diff] [blame] | 455 | static int byt_get_max_pstate(void) |
| 456 | { |
| 457 | u64 value; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 458 | |
Dirk Brandewie | 19e77c2 | 2013-10-21 09:20:35 -0700 | [diff] [blame] | 459 | rdmsrl(BYT_RATIOS, value); |
Dirk Brandewie | c16ed06 | 2014-06-20 07:27:58 -0700 | [diff] [blame] | 460 | return (value >> 16) & 0x7F; |
Dirk Brandewie | 19e77c2 | 2013-10-21 09:20:35 -0700 | [diff] [blame] | 461 | } |
| 462 | |
Dirk Brandewie | 61d8d2a | 2014-02-12 10:01:07 -0800 | [diff] [blame] | 463 | static int byt_get_turbo_pstate(void) |
| 464 | { |
| 465 | u64 value; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 466 | |
Dirk Brandewie | 61d8d2a | 2014-02-12 10:01:07 -0800 | [diff] [blame] | 467 | rdmsrl(BYT_TURBO_RATIOS, value); |
Dirk Brandewie | c16ed06 | 2014-06-20 07:27:58 -0700 | [diff] [blame] | 468 | return value & 0x7F; |
Dirk Brandewie | 61d8d2a | 2014-02-12 10:01:07 -0800 | [diff] [blame] | 469 | } |
| 470 | |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 471 | static void byt_set_pstate(struct cpudata *cpudata, int pstate) |
| 472 | { |
| 473 | u64 val; |
| 474 | int32_t vid_fp; |
| 475 | u32 vid; |
| 476 | |
| 477 | val = pstate << 8; |
Dirk Brandewie | dd5fbf7 | 2014-06-20 07:27:59 -0700 | [diff] [blame] | 478 | if (limits.no_turbo && !limits.turbo_disabled) |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 479 | val |= (u64)1 << 32; |
| 480 | |
| 481 | vid_fp = cpudata->vid.min + mul_fp( |
| 482 | int_tofp(pstate - cpudata->pstate.min_pstate), |
| 483 | cpudata->vid.ratio); |
| 484 | |
| 485 | 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] | 486 | vid = ceiling_fp(vid_fp); |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 487 | |
Dirk Brandewie | 21855ff | 2014-05-08 12:57:23 -0700 | [diff] [blame] | 488 | if (pstate > cpudata->pstate.max_pstate) |
| 489 | vid = cpudata->vid.turbo; |
| 490 | |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 491 | val |= vid; |
| 492 | |
| 493 | wrmsrl(MSR_IA32_PERF_CTL, val); |
| 494 | } |
| 495 | |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 496 | #define BYT_BCLK_FREQS 5 |
| 497 | static int byt_freq_table[BYT_BCLK_FREQS] = { 833, 1000, 1333, 1167, 800}; |
| 498 | |
| 499 | static int byt_get_scaling(void) |
| 500 | { |
| 501 | u64 value; |
| 502 | int i; |
| 503 | |
| 504 | rdmsrl(MSR_FSB_FREQ, value); |
| 505 | i = value & 0x3; |
| 506 | |
| 507 | BUG_ON(i > BYT_BCLK_FREQS); |
| 508 | |
| 509 | return byt_freq_table[i] * 100; |
| 510 | } |
| 511 | |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 512 | static void byt_get_vid(struct cpudata *cpudata) |
| 513 | { |
| 514 | u64 value; |
| 515 | |
| 516 | rdmsrl(BYT_VIDS, value); |
Dirk Brandewie | c16ed06 | 2014-06-20 07:27:58 -0700 | [diff] [blame] | 517 | cpudata->vid.min = int_tofp((value >> 8) & 0x7f); |
| 518 | cpudata->vid.max = int_tofp((value >> 16) & 0x7f); |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 519 | cpudata->vid.ratio = div_fp( |
| 520 | cpudata->vid.max - cpudata->vid.min, |
| 521 | int_tofp(cpudata->pstate.max_pstate - |
| 522 | cpudata->pstate.min_pstate)); |
Dirk Brandewie | 21855ff | 2014-05-08 12:57:23 -0700 | [diff] [blame] | 523 | |
| 524 | rdmsrl(BYT_TURBO_VIDS, value); |
| 525 | cpudata->vid.turbo = value & 0x7f; |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 526 | } |
| 527 | |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 528 | static int core_get_min_pstate(void) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 529 | { |
| 530 | u64 value; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 531 | |
Konrad Rzeszutek Wilk | 05e99c8cf | 2013-03-20 14:21:10 +0000 | [diff] [blame] | 532 | rdmsrl(MSR_PLATFORM_INFO, value); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 533 | return (value >> 40) & 0xFF; |
| 534 | } |
| 535 | |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 536 | static int core_get_max_pstate(void) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 537 | { |
| 538 | u64 value; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 539 | |
Konrad Rzeszutek Wilk | 05e99c8cf | 2013-03-20 14:21:10 +0000 | [diff] [blame] | 540 | rdmsrl(MSR_PLATFORM_INFO, value); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 541 | return (value >> 8) & 0xFF; |
| 542 | } |
| 543 | |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 544 | static int core_get_turbo_pstate(void) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 545 | { |
| 546 | u64 value; |
| 547 | int nont, ret; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 548 | |
Konrad Rzeszutek Wilk | 05e99c8cf | 2013-03-20 14:21:10 +0000 | [diff] [blame] | 549 | rdmsrl(MSR_NHM_TURBO_RATIO_LIMIT, value); |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 550 | nont = core_get_max_pstate(); |
Stratos Karafotis | 285cb99 | 2014-07-18 08:37:21 -0700 | [diff] [blame] | 551 | ret = (value) & 255; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 552 | if (ret <= nont) |
| 553 | ret = nont; |
| 554 | return ret; |
| 555 | } |
| 556 | |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 557 | static inline int core_get_scaling(void) |
| 558 | { |
| 559 | return 100000; |
| 560 | } |
| 561 | |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 562 | static void core_set_pstate(struct cpudata *cpudata, int pstate) |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 563 | { |
| 564 | u64 val; |
| 565 | |
| 566 | val = pstate << 8; |
Dirk Brandewie | dd5fbf7 | 2014-06-20 07:27:59 -0700 | [diff] [blame] | 567 | if (limits.no_turbo && !limits.turbo_disabled) |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 568 | val |= (u64)1 << 32; |
| 569 | |
Dirk Brandewie | bb18008 | 2014-03-19 08:45:54 -0700 | [diff] [blame] | 570 | wrmsrl_on_cpu(cpudata->cpu, MSR_IA32_PERF_CTL, val); |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 571 | } |
| 572 | |
| 573 | static struct cpu_defaults core_params = { |
| 574 | .pid_policy = { |
| 575 | .sample_rate_ms = 10, |
| 576 | .deadband = 0, |
| 577 | .setpoint = 97, |
| 578 | .p_gain_pct = 20, |
| 579 | .d_gain_pct = 0, |
| 580 | .i_gain_pct = 0, |
| 581 | }, |
| 582 | .funcs = { |
| 583 | .get_max = core_get_max_pstate, |
| 584 | .get_min = core_get_min_pstate, |
| 585 | .get_turbo = core_get_turbo_pstate, |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 586 | .get_scaling = core_get_scaling, |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 587 | .set = core_set_pstate, |
| 588 | }, |
| 589 | }; |
| 590 | |
Dirk Brandewie | 19e77c2 | 2013-10-21 09:20:35 -0700 | [diff] [blame] | 591 | static struct cpu_defaults byt_params = { |
| 592 | .pid_policy = { |
| 593 | .sample_rate_ms = 10, |
| 594 | .deadband = 0, |
| 595 | .setpoint = 97, |
| 596 | .p_gain_pct = 14, |
| 597 | .d_gain_pct = 0, |
| 598 | .i_gain_pct = 4, |
| 599 | }, |
| 600 | .funcs = { |
| 601 | .get_max = byt_get_max_pstate, |
| 602 | .get_min = byt_get_min_pstate, |
Dirk Brandewie | 61d8d2a | 2014-02-12 10:01:07 -0800 | [diff] [blame] | 603 | .get_turbo = byt_get_turbo_pstate, |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 604 | .set = byt_set_pstate, |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 605 | .get_scaling = byt_get_scaling, |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 606 | .get_vid = byt_get_vid, |
Dirk Brandewie | 19e77c2 | 2013-10-21 09:20:35 -0700 | [diff] [blame] | 607 | }, |
| 608 | }; |
| 609 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 610 | static void intel_pstate_get_min_max(struct cpudata *cpu, int *min, int *max) |
| 611 | { |
| 612 | int max_perf = cpu->pstate.turbo_pstate; |
Dirk Brandewie | 7244cb6 | 2013-10-21 09:20:33 -0700 | [diff] [blame] | 613 | int max_perf_adj; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 614 | int min_perf; |
Stratos Karafotis | 845c1cb | 2014-07-18 08:37:19 -0700 | [diff] [blame] | 615 | |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 616 | if (limits.no_turbo || limits.turbo_disabled) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 617 | max_perf = cpu->pstate.max_pstate; |
| 618 | |
Dirk Brandewie | 7244cb6 | 2013-10-21 09:20:33 -0700 | [diff] [blame] | 619 | max_perf_adj = fp_toint(mul_fp(int_tofp(max_perf), limits.max_perf)); |
| 620 | *max = clamp_t(int, max_perf_adj, |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 621 | cpu->pstate.min_pstate, cpu->pstate.turbo_pstate); |
| 622 | |
| 623 | min_perf = fp_toint(mul_fp(int_tofp(max_perf), limits.min_perf)); |
Stratos Karafotis | 2d8d1f1 | 2014-07-18 08:37:20 -0700 | [diff] [blame] | 624 | *min = clamp_t(int, min_perf, cpu->pstate.min_pstate, max_perf); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 625 | } |
| 626 | |
| 627 | static void intel_pstate_set_pstate(struct cpudata *cpu, int pstate) |
| 628 | { |
| 629 | int max_perf, min_perf; |
| 630 | |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 631 | update_turbo_state(); |
| 632 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 633 | intel_pstate_get_min_max(cpu, &min_perf, &max_perf); |
| 634 | |
| 635 | pstate = clamp_t(int, pstate, min_perf, max_perf); |
| 636 | |
| 637 | if (pstate == cpu->pstate.current_pstate) |
| 638 | return; |
| 639 | |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 640 | trace_cpu_frequency(pstate * cpu->pstate.scaling, cpu->cpu); |
Dirk Brandewie | 35363e9 | 2013-05-07 08:20:30 -0700 | [diff] [blame] | 641 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 642 | cpu->pstate.current_pstate = pstate; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 643 | |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 644 | pstate_funcs.set(cpu, pstate); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 645 | } |
| 646 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 647 | static void intel_pstate_get_cpu_pstates(struct cpudata *cpu) |
| 648 | { |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 649 | cpu->pstate.min_pstate = pstate_funcs.get_min(); |
| 650 | cpu->pstate.max_pstate = pstate_funcs.get_max(); |
| 651 | cpu->pstate.turbo_pstate = pstate_funcs.get_turbo(); |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 652 | cpu->pstate.scaling = pstate_funcs.get_scaling(); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 653 | |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 654 | if (pstate_funcs.get_vid) |
| 655 | pstate_funcs.get_vid(cpu); |
Dirk Brandewie | d40a63c | 2014-05-08 12:57:24 -0700 | [diff] [blame] | 656 | intel_pstate_set_pstate(cpu, cpu->pstate.min_pstate); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 657 | } |
| 658 | |
Stratos Karafotis | 6b17ddb | 2014-04-29 20:53:49 +0300 | [diff] [blame] | 659 | static inline void intel_pstate_calc_busy(struct cpudata *cpu) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 660 | { |
Stratos Karafotis | 6b17ddb | 2014-04-29 20:53:49 +0300 | [diff] [blame] | 661 | struct sample *sample = &cpu->sample; |
Doug Smythies | bf81022 | 2014-05-30 10:10:57 -0700 | [diff] [blame] | 662 | int64_t core_pct; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 663 | |
Doug Smythies | bf81022 | 2014-05-30 10:10:57 -0700 | [diff] [blame] | 664 | core_pct = int_tofp(sample->aperf) * int_tofp(100); |
Stratos Karafotis | 78e2708 | 2014-07-18 08:37:27 -0700 | [diff] [blame] | 665 | core_pct = div64_u64(core_pct, int_tofp(sample->mperf)); |
Dirk Brandewie | fcb6a15 | 2014-02-03 08:55:31 -0800 | [diff] [blame] | 666 | |
Dirk Brandewie | fcb6a15 | 2014-02-03 08:55:31 -0800 | [diff] [blame] | 667 | sample->freq = fp_toint( |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 668 | mul_fp(int_tofp( |
| 669 | cpu->pstate.max_pstate * cpu->pstate.scaling / 100), |
| 670 | core_pct)); |
Dirk Brandewie | fcb6a15 | 2014-02-03 08:55:31 -0800 | [diff] [blame] | 671 | |
Doug Smythies | bf81022 | 2014-05-30 10:10:57 -0700 | [diff] [blame] | 672 | sample->core_pct_busy = (int32_t)core_pct; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 673 | } |
| 674 | |
| 675 | static inline void intel_pstate_sample(struct cpudata *cpu) |
| 676 | { |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 677 | u64 aperf, mperf; |
Stratos Karafotis | 4ab60c3 | 2014-07-18 08:37:24 -0700 | [diff] [blame] | 678 | unsigned long flags; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 679 | |
Stratos Karafotis | 4ab60c3 | 2014-07-18 08:37:24 -0700 | [diff] [blame] | 680 | local_irq_save(flags); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 681 | rdmsrl(MSR_IA32_APERF, aperf); |
| 682 | rdmsrl(MSR_IA32_MPERF, mperf); |
Stratos Karafotis | 4ab60c3 | 2014-07-18 08:37:24 -0700 | [diff] [blame] | 683 | local_irq_restore(flags); |
Dirk Brandewie | b69880f | 2014-01-16 10:32:25 -0800 | [diff] [blame] | 684 | |
Dirk Brandewie | c4ee841 | 2014-05-29 09:32:24 -0700 | [diff] [blame] | 685 | cpu->last_sample_time = cpu->sample.time; |
| 686 | cpu->sample.time = ktime_get(); |
Dirk Brandewie | d37e2b7 | 2014-02-12 10:01:04 -0800 | [diff] [blame] | 687 | cpu->sample.aperf = aperf; |
| 688 | cpu->sample.mperf = mperf; |
Dirk Brandewie | d37e2b7 | 2014-02-12 10:01:04 -0800 | [diff] [blame] | 689 | cpu->sample.aperf -= cpu->prev_aperf; |
| 690 | cpu->sample.mperf -= cpu->prev_mperf; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 691 | |
Stratos Karafotis | 6b17ddb | 2014-04-29 20:53:49 +0300 | [diff] [blame] | 692 | intel_pstate_calc_busy(cpu); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 693 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 694 | cpu->prev_aperf = aperf; |
| 695 | cpu->prev_mperf = mperf; |
| 696 | } |
| 697 | |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 698 | static inline void intel_hwp_set_sample_time(struct cpudata *cpu) |
| 699 | { |
| 700 | int delay; |
| 701 | |
| 702 | delay = msecs_to_jiffies(50); |
| 703 | mod_timer_pinned(&cpu->timer, jiffies + delay); |
| 704 | } |
| 705 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 706 | static inline void intel_pstate_set_sample_time(struct cpudata *cpu) |
| 707 | { |
Stratos Karafotis | abf013b | 2014-07-18 08:37:22 -0700 | [diff] [blame] | 708 | int delay; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 709 | |
Stratos Karafotis | abf013b | 2014-07-18 08:37:22 -0700 | [diff] [blame] | 710 | delay = msecs_to_jiffies(pid_params.sample_rate_ms); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 711 | mod_timer_pinned(&cpu->timer, jiffies + delay); |
| 712 | } |
| 713 | |
Brennan Shacklett | d253d2a | 2013-10-21 09:20:32 -0700 | [diff] [blame] | 714 | static inline int32_t intel_pstate_get_scaled_busy(struct cpudata *cpu) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 715 | { |
Dirk Brandewie | c4ee841 | 2014-05-29 09:32:24 -0700 | [diff] [blame] | 716 | int32_t core_busy, max_pstate, current_pstate, sample_ratio; |
| 717 | u32 duration_us; |
| 718 | u32 sample_time; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 719 | |
Dirk Brandewie | d37e2b7 | 2014-02-12 10:01:04 -0800 | [diff] [blame] | 720 | core_busy = cpu->sample.core_pct_busy; |
Dirk Brandewie | 2134ed4 | 2013-07-18 08:48:42 -0700 | [diff] [blame] | 721 | max_pstate = int_tofp(cpu->pstate.max_pstate); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 722 | current_pstate = int_tofp(cpu->pstate.current_pstate); |
Dirk Brandewie | e66c176 | 2014-02-25 10:35:37 -0800 | [diff] [blame] | 723 | core_busy = mul_fp(core_busy, div_fp(max_pstate, current_pstate)); |
Dirk Brandewie | c4ee841 | 2014-05-29 09:32:24 -0700 | [diff] [blame] | 724 | |
Stratos Karafotis | 285cb99 | 2014-07-18 08:37:21 -0700 | [diff] [blame] | 725 | sample_time = pid_params.sample_rate_ms * USEC_PER_MSEC; |
Dirk Brandewie | c4ee841 | 2014-05-29 09:32:24 -0700 | [diff] [blame] | 726 | duration_us = (u32) ktime_us_delta(cpu->sample.time, |
Stratos Karafotis | c410833 | 2014-07-18 08:37:23 -0700 | [diff] [blame] | 727 | cpu->last_sample_time); |
Dirk Brandewie | c4ee841 | 2014-05-29 09:32:24 -0700 | [diff] [blame] | 728 | if (duration_us > sample_time * 3) { |
| 729 | sample_ratio = div_fp(int_tofp(sample_time), |
Stratos Karafotis | c410833 | 2014-07-18 08:37:23 -0700 | [diff] [blame] | 730 | int_tofp(duration_us)); |
Dirk Brandewie | c4ee841 | 2014-05-29 09:32:24 -0700 | [diff] [blame] | 731 | core_busy = mul_fp(core_busy, sample_ratio); |
| 732 | } |
| 733 | |
Dirk Brandewie | f0fe3cd | 2014-05-29 09:32:23 -0700 | [diff] [blame] | 734 | return core_busy; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 735 | } |
| 736 | |
| 737 | static inline void intel_pstate_adjust_busy_pstate(struct cpudata *cpu) |
| 738 | { |
Brennan Shacklett | d253d2a | 2013-10-21 09:20:32 -0700 | [diff] [blame] | 739 | int32_t busy_scaled; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 740 | struct _pid *pid; |
Stratos Karafotis | 4b707c8 | 2014-07-18 08:37:26 -0700 | [diff] [blame] | 741 | signed int ctl; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 742 | |
| 743 | pid = &cpu->pid; |
| 744 | busy_scaled = intel_pstate_get_scaled_busy(cpu); |
| 745 | |
| 746 | ctl = pid_calc(pid, busy_scaled); |
| 747 | |
Stratos Karafotis | 4b707c8 | 2014-07-18 08:37:26 -0700 | [diff] [blame] | 748 | /* Negative values of ctl increase the pstate and vice versa */ |
| 749 | intel_pstate_set_pstate(cpu, cpu->pstate.current_pstate - ctl); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 750 | } |
| 751 | |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 752 | static void intel_hwp_timer_func(unsigned long __data) |
| 753 | { |
| 754 | struct cpudata *cpu = (struct cpudata *) __data; |
| 755 | |
| 756 | intel_pstate_sample(cpu); |
| 757 | intel_hwp_set_sample_time(cpu); |
| 758 | } |
| 759 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 760 | static void intel_pstate_timer_func(unsigned long __data) |
| 761 | { |
| 762 | struct cpudata *cpu = (struct cpudata *) __data; |
Dirk Brandewie | b69880f | 2014-01-16 10:32:25 -0800 | [diff] [blame] | 763 | struct sample *sample; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 764 | |
| 765 | intel_pstate_sample(cpu); |
Dirk Brandewie | b69880f | 2014-01-16 10:32:25 -0800 | [diff] [blame] | 766 | |
Dirk Brandewie | d37e2b7 | 2014-02-12 10:01:04 -0800 | [diff] [blame] | 767 | sample = &cpu->sample; |
Dirk Brandewie | b69880f | 2014-01-16 10:32:25 -0800 | [diff] [blame] | 768 | |
Dirk Brandewie | ca182ae | 2013-05-07 08:20:27 -0700 | [diff] [blame] | 769 | intel_pstate_adjust_busy_pstate(cpu); |
Dirk Brandewie | b69880f | 2014-01-16 10:32:25 -0800 | [diff] [blame] | 770 | |
| 771 | trace_pstate_sample(fp_toint(sample->core_pct_busy), |
| 772 | fp_toint(intel_pstate_get_scaled_busy(cpu)), |
| 773 | cpu->pstate.current_pstate, |
| 774 | sample->mperf, |
| 775 | sample->aperf, |
Dirk Brandewie | b69880f | 2014-01-16 10:32:25 -0800 | [diff] [blame] | 776 | sample->freq); |
| 777 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 778 | intel_pstate_set_sample_time(cpu); |
| 779 | } |
| 780 | |
| 781 | #define ICPU(model, policy) \ |
Dirk Brandewie | 6cbd7ee | 2014-01-06 10:59:16 -0800 | [diff] [blame] | 782 | { X86_VENDOR_INTEL, 6, model, X86_FEATURE_APERFMPERF,\ |
| 783 | (unsigned long)&policy } |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 784 | |
| 785 | static const struct x86_cpu_id intel_pstate_cpu_ids[] = { |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 786 | ICPU(0x2a, core_params), |
| 787 | ICPU(0x2d, core_params), |
Dirk Brandewie | 19e77c2 | 2013-10-21 09:20:35 -0700 | [diff] [blame] | 788 | ICPU(0x37, byt_params), |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 789 | ICPU(0x3a, core_params), |
| 790 | ICPU(0x3c, core_params), |
Dirk Brandewie | c7e241d | 2014-05-08 12:57:27 -0700 | [diff] [blame] | 791 | ICPU(0x3d, core_params), |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 792 | ICPU(0x3e, core_params), |
| 793 | ICPU(0x3f, core_params), |
| 794 | ICPU(0x45, core_params), |
| 795 | ICPU(0x46, core_params), |
Dirk Brandewie | 43f8a96 | 2014-11-06 09:50:45 -0800 | [diff] [blame^] | 796 | ICPU(0x47, core_params), |
Mika Westerberg | 16405f9 | 2014-08-22 13:05:44 +0300 | [diff] [blame] | 797 | ICPU(0x4c, byt_params), |
Dirk Brandewie | c7e241d | 2014-05-08 12:57:27 -0700 | [diff] [blame] | 798 | ICPU(0x4f, core_params), |
| 799 | ICPU(0x56, core_params), |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 800 | {} |
| 801 | }; |
| 802 | MODULE_DEVICE_TABLE(x86cpu, intel_pstate_cpu_ids); |
| 803 | |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 804 | static const struct x86_cpu_id intel_pstate_cpu_oob_ids[] = { |
| 805 | ICPU(0x56, core_params), |
| 806 | {} |
| 807 | }; |
| 808 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 809 | static int intel_pstate_init_cpu(unsigned int cpunum) |
| 810 | { |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 811 | struct cpudata *cpu; |
| 812 | |
Dirk Brandewie | c034871 | 2014-10-13 08:37:42 -0700 | [diff] [blame] | 813 | if (!all_cpu_data[cpunum]) |
| 814 | all_cpu_data[cpunum] = kzalloc(sizeof(struct cpudata), |
| 815 | GFP_KERNEL); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 816 | if (!all_cpu_data[cpunum]) |
| 817 | return -ENOMEM; |
| 818 | |
| 819 | cpu = all_cpu_data[cpunum]; |
| 820 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 821 | cpu->cpu = cpunum; |
Vincent Minet | 179e847 | 2014-07-05 01:51:33 +0200 | [diff] [blame] | 822 | intel_pstate_get_cpu_pstates(cpu); |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 823 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 824 | init_timer_deferrable(&cpu->timer); |
Stratos Karafotis | 2d8d1f1 | 2014-07-18 08:37:20 -0700 | [diff] [blame] | 825 | cpu->timer.data = (unsigned long)cpu; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 826 | cpu->timer.expires = jiffies + HZ/100; |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 827 | |
| 828 | if (!hwp_active) |
| 829 | cpu->timer.function = intel_pstate_timer_func; |
| 830 | else |
| 831 | cpu->timer.function = intel_hwp_timer_func; |
| 832 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 833 | intel_pstate_busy_pid_reset(cpu); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 834 | intel_pstate_sample(cpu); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 835 | |
| 836 | add_timer_on(&cpu->timer, cpunum); |
| 837 | |
Andi Kleen | ce71761 | 2014-08-27 10:17:08 -0700 | [diff] [blame] | 838 | pr_debug("Intel pstate controlling: cpu %d\n", cpunum); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 839 | |
| 840 | return 0; |
| 841 | } |
| 842 | |
| 843 | static unsigned int intel_pstate_get(unsigned int cpu_num) |
| 844 | { |
| 845 | struct sample *sample; |
| 846 | struct cpudata *cpu; |
| 847 | |
| 848 | cpu = all_cpu_data[cpu_num]; |
| 849 | if (!cpu) |
| 850 | return 0; |
Dirk Brandewie | d37e2b7 | 2014-02-12 10:01:04 -0800 | [diff] [blame] | 851 | sample = &cpu->sample; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 852 | return sample->freq; |
| 853 | } |
| 854 | |
| 855 | static int intel_pstate_set_policy(struct cpufreq_policy *policy) |
| 856 | { |
Dirk Brandewie | d3929b8 | 2013-03-05 14:15:26 -0800 | [diff] [blame] | 857 | if (!policy->cpuinfo.max_freq) |
| 858 | return -ENODEV; |
| 859 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 860 | if (policy->policy == CPUFREQ_POLICY_PERFORMANCE) { |
| 861 | limits.min_perf_pct = 100; |
| 862 | limits.min_perf = int_tofp(1); |
Pali Rohár | 36b4bed | 2014-10-16 01:16:51 +0200 | [diff] [blame] | 863 | limits.max_policy_pct = 100; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 864 | limits.max_perf_pct = 100; |
| 865 | limits.max_perf = int_tofp(1); |
Gabriele Mazzotta | 4521e1a0 | 2014-10-13 08:37:41 -0700 | [diff] [blame] | 866 | limits.no_turbo = 0; |
Srinivas Pandruvada | d1b6848 | 2013-04-09 22:38:18 +0000 | [diff] [blame] | 867 | return 0; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 868 | } |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 869 | |
Srinivas Pandruvada | d1b6848 | 2013-04-09 22:38:18 +0000 | [diff] [blame] | 870 | limits.min_perf_pct = (policy->min * 100) / policy->cpuinfo.max_freq; |
| 871 | limits.min_perf_pct = clamp_t(int, limits.min_perf_pct, 0 , 100); |
| 872 | limits.min_perf = div_fp(int_tofp(limits.min_perf_pct), int_tofp(100)); |
| 873 | |
Stratos Karafotis | 285cb99 | 2014-07-18 08:37:21 -0700 | [diff] [blame] | 874 | limits.max_policy_pct = (policy->max * 100) / policy->cpuinfo.max_freq; |
Dirk Brandewie | d8f469e | 2013-05-07 08:20:26 -0700 | [diff] [blame] | 875 | limits.max_policy_pct = clamp_t(int, limits.max_policy_pct, 0 , 100); |
| 876 | limits.max_perf_pct = min(limits.max_policy_pct, limits.max_sysfs_pct); |
Srinivas Pandruvada | d1b6848 | 2013-04-09 22:38:18 +0000 | [diff] [blame] | 877 | limits.max_perf = div_fp(int_tofp(limits.max_perf_pct), int_tofp(100)); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 878 | |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 879 | if (hwp_active) |
| 880 | intel_pstate_hwp_set(); |
| 881 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 882 | return 0; |
| 883 | } |
| 884 | |
| 885 | static int intel_pstate_verify_policy(struct cpufreq_policy *policy) |
| 886 | { |
Viresh Kumar | be49e34 | 2013-10-02 14:13:19 +0530 | [diff] [blame] | 887 | cpufreq_verify_within_cpu_limits(policy); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 888 | |
Stratos Karafotis | 285cb99 | 2014-07-18 08:37:21 -0700 | [diff] [blame] | 889 | if (policy->policy != CPUFREQ_POLICY_POWERSAVE && |
Stratos Karafotis | c410833 | 2014-07-18 08:37:23 -0700 | [diff] [blame] | 890 | policy->policy != CPUFREQ_POLICY_PERFORMANCE) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 891 | return -EINVAL; |
| 892 | |
| 893 | return 0; |
| 894 | } |
| 895 | |
Dirk Brandewie | bb18008 | 2014-03-19 08:45:54 -0700 | [diff] [blame] | 896 | static void intel_pstate_stop_cpu(struct cpufreq_policy *policy) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 897 | { |
Dirk Brandewie | bb18008 | 2014-03-19 08:45:54 -0700 | [diff] [blame] | 898 | int cpu_num = policy->cpu; |
| 899 | struct cpudata *cpu = all_cpu_data[cpu_num]; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 900 | |
Dirk Brandewie | bb18008 | 2014-03-19 08:45:54 -0700 | [diff] [blame] | 901 | pr_info("intel_pstate CPU %d exiting\n", cpu_num); |
| 902 | |
Dirk Brandewie | c2294a2 | 2014-03-24 07:41:29 -0700 | [diff] [blame] | 903 | del_timer_sync(&all_cpu_data[cpu_num]->timer); |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 904 | if (hwp_active) |
| 905 | return; |
| 906 | |
Dirk Brandewie | bb18008 | 2014-03-19 08:45:54 -0700 | [diff] [blame] | 907 | intel_pstate_set_pstate(cpu, cpu->pstate.min_pstate); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 908 | } |
| 909 | |
Paul Gortmaker | 2760984 | 2013-06-19 13:54:04 -0400 | [diff] [blame] | 910 | static int intel_pstate_cpu_init(struct cpufreq_policy *policy) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 911 | { |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 912 | struct cpudata *cpu; |
Dirk Brandewie | 52e0a50 | 2013-10-15 11:06:14 -0700 | [diff] [blame] | 913 | int rc; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 914 | |
| 915 | rc = intel_pstate_init_cpu(policy->cpu); |
| 916 | if (rc) |
| 917 | return rc; |
| 918 | |
| 919 | cpu = all_cpu_data[policy->cpu]; |
| 920 | |
Dirk Brandewie | dd5fbf7 | 2014-06-20 07:27:59 -0700 | [diff] [blame] | 921 | if (limits.min_perf_pct == 100 && limits.max_perf_pct == 100) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 922 | policy->policy = CPUFREQ_POLICY_PERFORMANCE; |
| 923 | else |
| 924 | policy->policy = CPUFREQ_POLICY_POWERSAVE; |
| 925 | |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 926 | policy->min = cpu->pstate.min_pstate * cpu->pstate.scaling; |
| 927 | policy->max = cpu->pstate.turbo_pstate * cpu->pstate.scaling; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 928 | |
| 929 | /* cpuinfo and default policy values */ |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 930 | policy->cpuinfo.min_freq = cpu->pstate.min_pstate * cpu->pstate.scaling; |
| 931 | policy->cpuinfo.max_freq = |
| 932 | cpu->pstate.turbo_pstate * cpu->pstate.scaling; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 933 | policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL; |
| 934 | cpumask_set_cpu(policy->cpu, policy->cpus); |
| 935 | |
| 936 | return 0; |
| 937 | } |
| 938 | |
| 939 | static struct cpufreq_driver intel_pstate_driver = { |
| 940 | .flags = CPUFREQ_CONST_LOOPS, |
| 941 | .verify = intel_pstate_verify_policy, |
| 942 | .setpolicy = intel_pstate_set_policy, |
| 943 | .get = intel_pstate_get, |
| 944 | .init = intel_pstate_cpu_init, |
Dirk Brandewie | bb18008 | 2014-03-19 08:45:54 -0700 | [diff] [blame] | 945 | .stop_cpu = intel_pstate_stop_cpu, |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 946 | .name = "intel_pstate", |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 947 | }; |
| 948 | |
Dirk Brandewie | 6be2649 | 2013-02-15 22:55:10 +0100 | [diff] [blame] | 949 | static int __initdata no_load; |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 950 | static int __initdata no_hwp; |
Dirk Brandewie | 6be2649 | 2013-02-15 22:55:10 +0100 | [diff] [blame] | 951 | |
Dirk Brandewie | b563b4e | 2013-03-22 01:29:28 +0100 | [diff] [blame] | 952 | static int intel_pstate_msrs_not_valid(void) |
| 953 | { |
| 954 | /* Check that all the msr's we are using are valid. */ |
| 955 | u64 aperf, mperf, tmp; |
| 956 | |
| 957 | rdmsrl(MSR_IA32_APERF, aperf); |
| 958 | rdmsrl(MSR_IA32_MPERF, mperf); |
| 959 | |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 960 | if (!pstate_funcs.get_max() || |
Stratos Karafotis | c410833 | 2014-07-18 08:37:23 -0700 | [diff] [blame] | 961 | !pstate_funcs.get_min() || |
| 962 | !pstate_funcs.get_turbo()) |
Dirk Brandewie | b563b4e | 2013-03-22 01:29:28 +0100 | [diff] [blame] | 963 | return -ENODEV; |
| 964 | |
| 965 | rdmsrl(MSR_IA32_APERF, tmp); |
| 966 | if (!(tmp - aperf)) |
| 967 | return -ENODEV; |
| 968 | |
| 969 | rdmsrl(MSR_IA32_MPERF, tmp); |
| 970 | if (!(tmp - mperf)) |
| 971 | return -ENODEV; |
| 972 | |
| 973 | return 0; |
| 974 | } |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 975 | |
Dirk Brandewie | e0a261a | 2013-10-30 08:38:32 -0700 | [diff] [blame] | 976 | static void copy_pid_params(struct pstate_adjust_policy *policy) |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 977 | { |
| 978 | pid_params.sample_rate_ms = policy->sample_rate_ms; |
| 979 | pid_params.p_gain_pct = policy->p_gain_pct; |
| 980 | pid_params.i_gain_pct = policy->i_gain_pct; |
| 981 | pid_params.d_gain_pct = policy->d_gain_pct; |
| 982 | pid_params.deadband = policy->deadband; |
| 983 | pid_params.setpoint = policy->setpoint; |
| 984 | } |
| 985 | |
Dirk Brandewie | e0a261a | 2013-10-30 08:38:32 -0700 | [diff] [blame] | 986 | static void copy_cpu_funcs(struct pstate_funcs *funcs) |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 987 | { |
| 988 | pstate_funcs.get_max = funcs->get_max; |
| 989 | pstate_funcs.get_min = funcs->get_min; |
| 990 | pstate_funcs.get_turbo = funcs->get_turbo; |
Dirk Brandewie | b27580b | 2014-10-13 08:37:43 -0700 | [diff] [blame] | 991 | pstate_funcs.get_scaling = funcs->get_scaling; |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 992 | pstate_funcs.set = funcs->set; |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 993 | pstate_funcs.get_vid = funcs->get_vid; |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 994 | } |
| 995 | |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 996 | #if IS_ENABLED(CONFIG_ACPI) |
| 997 | #include <acpi/processor.h> |
| 998 | |
| 999 | static bool intel_pstate_no_acpi_pss(void) |
| 1000 | { |
| 1001 | int i; |
| 1002 | |
| 1003 | for_each_possible_cpu(i) { |
| 1004 | acpi_status status; |
| 1005 | union acpi_object *pss; |
| 1006 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 1007 | struct acpi_processor *pr = per_cpu(processors, i); |
| 1008 | |
| 1009 | if (!pr) |
| 1010 | continue; |
| 1011 | |
| 1012 | status = acpi_evaluate_object(pr->handle, "_PSS", NULL, &buffer); |
| 1013 | if (ACPI_FAILURE(status)) |
| 1014 | continue; |
| 1015 | |
| 1016 | pss = buffer.pointer; |
| 1017 | if (pss && pss->type == ACPI_TYPE_PACKAGE) { |
| 1018 | kfree(pss); |
| 1019 | return false; |
| 1020 | } |
| 1021 | |
| 1022 | kfree(pss); |
| 1023 | } |
| 1024 | |
| 1025 | return true; |
| 1026 | } |
| 1027 | |
| 1028 | struct hw_vendor_info { |
| 1029 | u16 valid; |
| 1030 | char oem_id[ACPI_OEM_ID_SIZE]; |
| 1031 | char oem_table_id[ACPI_OEM_TABLE_ID_SIZE]; |
| 1032 | }; |
| 1033 | |
| 1034 | /* Hardware vendor-specific info that has its own power management modes */ |
| 1035 | static struct hw_vendor_info vendor_info[] = { |
| 1036 | {1, "HP ", "ProLiant"}, |
| 1037 | {0, "", ""}, |
| 1038 | }; |
| 1039 | |
| 1040 | static bool intel_pstate_platform_pwr_mgmt_exists(void) |
| 1041 | { |
| 1042 | struct acpi_table_header hdr; |
| 1043 | struct hw_vendor_info *v_info; |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 1044 | const struct x86_cpu_id *id; |
| 1045 | u64 misc_pwr; |
| 1046 | |
| 1047 | id = x86_match_cpu(intel_pstate_cpu_oob_ids); |
| 1048 | if (id) { |
| 1049 | rdmsrl(MSR_MISC_PWR_MGMT, misc_pwr); |
| 1050 | if ( misc_pwr & (1 << 8)) |
| 1051 | return true; |
| 1052 | } |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 1053 | |
Stratos Karafotis | c410833 | 2014-07-18 08:37:23 -0700 | [diff] [blame] | 1054 | if (acpi_disabled || |
| 1055 | ACPI_FAILURE(acpi_get_table_header(ACPI_SIG_FADT, 0, &hdr))) |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 1056 | return false; |
| 1057 | |
| 1058 | for (v_info = vendor_info; v_info->valid; v_info++) { |
Stratos Karafotis | c410833 | 2014-07-18 08:37:23 -0700 | [diff] [blame] | 1059 | if (!strncmp(hdr.oem_id, v_info->oem_id, ACPI_OEM_ID_SIZE) && |
| 1060 | !strncmp(hdr.oem_table_id, v_info->oem_table_id, ACPI_OEM_TABLE_ID_SIZE) && |
| 1061 | intel_pstate_no_acpi_pss()) |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 1062 | return true; |
| 1063 | } |
| 1064 | |
| 1065 | return false; |
| 1066 | } |
| 1067 | #else /* CONFIG_ACPI not enabled */ |
| 1068 | static inline bool intel_pstate_platform_pwr_mgmt_exists(void) { return false; } |
| 1069 | #endif /* CONFIG_ACPI */ |
| 1070 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1071 | static int __init intel_pstate_init(void) |
| 1072 | { |
Dirk Brandewie | 907cc90 | 2013-03-05 14:15:27 -0800 | [diff] [blame] | 1073 | int cpu, rc = 0; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1074 | const struct x86_cpu_id *id; |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 1075 | struct cpu_defaults *cpu_info; |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 1076 | struct cpuinfo_x86 *c = &boot_cpu_data; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1077 | |
Dirk Brandewie | 6be2649 | 2013-02-15 22:55:10 +0100 | [diff] [blame] | 1078 | if (no_load) |
| 1079 | return -ENODEV; |
| 1080 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1081 | id = x86_match_cpu(intel_pstate_cpu_ids); |
| 1082 | if (!id) |
| 1083 | return -ENODEV; |
| 1084 | |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 1085 | /* |
| 1086 | * The Intel pstate driver will be ignored if the platform |
| 1087 | * firmware has its own power management modes. |
| 1088 | */ |
| 1089 | if (intel_pstate_platform_pwr_mgmt_exists()) |
| 1090 | return -ENODEV; |
| 1091 | |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 1092 | cpu_info = (struct cpu_defaults *)id->driver_data; |
| 1093 | |
| 1094 | copy_pid_params(&cpu_info->pid_policy); |
| 1095 | copy_cpu_funcs(&cpu_info->funcs); |
| 1096 | |
Dirk Brandewie | b563b4e | 2013-03-22 01:29:28 +0100 | [diff] [blame] | 1097 | if (intel_pstate_msrs_not_valid()) |
| 1098 | return -ENODEV; |
| 1099 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1100 | pr_info("Intel P-state driver initializing.\n"); |
| 1101 | |
Wei Yongjun | b57ffac | 2013-05-13 08:03:43 +0000 | [diff] [blame] | 1102 | all_cpu_data = vzalloc(sizeof(void *) * num_possible_cpus()); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1103 | if (!all_cpu_data) |
| 1104 | return -ENOMEM; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1105 | |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 1106 | if (cpu_has(c,X86_FEATURE_HWP) && !no_hwp) |
| 1107 | intel_pstate_hwp_enable(); |
| 1108 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1109 | rc = cpufreq_register_driver(&intel_pstate_driver); |
| 1110 | if (rc) |
| 1111 | goto out; |
| 1112 | |
| 1113 | intel_pstate_debug_expose_params(); |
| 1114 | intel_pstate_sysfs_expose_params(); |
Dirk Brandewie | b69880f | 2014-01-16 10:32:25 -0800 | [diff] [blame] | 1115 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1116 | return rc; |
| 1117 | out: |
Dirk Brandewie | 907cc90 | 2013-03-05 14:15:27 -0800 | [diff] [blame] | 1118 | get_online_cpus(); |
| 1119 | for_each_online_cpu(cpu) { |
| 1120 | if (all_cpu_data[cpu]) { |
| 1121 | del_timer_sync(&all_cpu_data[cpu]->timer); |
| 1122 | kfree(all_cpu_data[cpu]); |
| 1123 | } |
| 1124 | } |
| 1125 | |
| 1126 | put_online_cpus(); |
| 1127 | vfree(all_cpu_data); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1128 | return -ENODEV; |
| 1129 | } |
| 1130 | device_initcall(intel_pstate_init); |
| 1131 | |
Dirk Brandewie | 6be2649 | 2013-02-15 22:55:10 +0100 | [diff] [blame] | 1132 | static int __init intel_pstate_setup(char *str) |
| 1133 | { |
| 1134 | if (!str) |
| 1135 | return -EINVAL; |
| 1136 | |
| 1137 | if (!strcmp(str, "disable")) |
| 1138 | no_load = 1; |
Dirk Brandewie | 2f86dc4 | 2014-11-06 09:40:47 -0800 | [diff] [blame] | 1139 | if (!strcmp(str, "no_hwp")) |
| 1140 | no_hwp = 1; |
Dirk Brandewie | 6be2649 | 2013-02-15 22:55:10 +0100 | [diff] [blame] | 1141 | return 0; |
| 1142 | } |
| 1143 | early_param("intel_pstate", intel_pstate_setup); |
| 1144 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1145 | MODULE_AUTHOR("Dirk Brandewie <dirk.j.brandewie@intel.com>"); |
| 1146 | MODULE_DESCRIPTION("'intel_pstate' - P state driver Intel Core processors"); |
| 1147 | MODULE_LICENSE("GPL"); |