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