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 | |
| 35 | #define SAMPLE_COUNT 3 |
| 36 | |
Dirk Brandewie | 61d8d2a | 2014-02-12 10:01:07 -0800 | [diff] [blame] | 37 | #define BYT_RATIOS 0x66a |
| 38 | #define BYT_VIDS 0x66b |
| 39 | #define BYT_TURBO_RATIOS 0x66c |
Dirk Brandewie | 21855ff | 2014-05-08 12:57:23 -0700 | [diff] [blame] | 40 | #define BYT_TURBO_VIDS 0x66d |
Dirk Brandewie | 61d8d2a | 2014-02-12 10:01:07 -0800 | [diff] [blame] | 41 | |
Dirk Brandewie | 19e77c2 | 2013-10-21 09:20:35 -0700 | [diff] [blame] | 42 | |
Dirk Brandewie | e66c176 | 2014-02-25 10:35:37 -0800 | [diff] [blame] | 43 | #define FRAC_BITS 6 |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 44 | #define int_tofp(X) ((int64_t)(X) << FRAC_BITS) |
| 45 | #define fp_toint(X) ((X) >> FRAC_BITS) |
Dirk Brandewie | e66c176 | 2014-02-25 10:35:37 -0800 | [diff] [blame] | 46 | #define FP_ROUNDUP(X) ((X) += 1 << FRAC_BITS) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 47 | |
| 48 | static inline int32_t mul_fp(int32_t x, int32_t y) |
| 49 | { |
| 50 | return ((int64_t)x * (int64_t)y) >> FRAC_BITS; |
| 51 | } |
| 52 | |
| 53 | static inline int32_t div_fp(int32_t x, int32_t y) |
| 54 | { |
| 55 | return div_s64((int64_t)x << FRAC_BITS, (int64_t)y); |
| 56 | } |
| 57 | |
| 58 | struct sample { |
Brennan Shacklett | d253d2a | 2013-10-21 09:20:32 -0700 | [diff] [blame] | 59 | int32_t core_pct_busy; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 60 | u64 aperf; |
| 61 | u64 mperf; |
Dirk Brandewie | fcb6a15 | 2014-02-03 08:55:31 -0800 | [diff] [blame] | 62 | unsigned long long tsc; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 63 | int freq; |
| 64 | }; |
| 65 | |
| 66 | struct pstate_data { |
| 67 | int current_pstate; |
| 68 | int min_pstate; |
| 69 | int max_pstate; |
| 70 | int turbo_pstate; |
| 71 | }; |
| 72 | |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 73 | struct vid_data { |
Dirk Brandewie | 21855ff | 2014-05-08 12:57:23 -0700 | [diff] [blame] | 74 | int min; |
| 75 | int max; |
| 76 | int turbo; |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 77 | int32_t ratio; |
| 78 | }; |
| 79 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 80 | struct _pid { |
| 81 | int setpoint; |
| 82 | int32_t integral; |
| 83 | int32_t p_gain; |
| 84 | int32_t i_gain; |
| 85 | int32_t d_gain; |
| 86 | int deadband; |
Brennan Shacklett | d253d2a | 2013-10-21 09:20:32 -0700 | [diff] [blame] | 87 | int32_t last_err; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 88 | }; |
| 89 | |
| 90 | struct cpudata { |
| 91 | int cpu; |
| 92 | |
| 93 | char name[64]; |
| 94 | |
| 95 | struct timer_list timer; |
| 96 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 97 | struct pstate_data pstate; |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 98 | struct vid_data vid; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 99 | struct _pid pid; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 100 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 101 | u64 prev_aperf; |
| 102 | u64 prev_mperf; |
Dirk Brandewie | fcb6a15 | 2014-02-03 08:55:31 -0800 | [diff] [blame] | 103 | unsigned long long prev_tsc; |
Dirk Brandewie | d37e2b7 | 2014-02-12 10:01:04 -0800 | [diff] [blame] | 104 | struct sample sample; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 105 | }; |
| 106 | |
| 107 | static struct cpudata **all_cpu_data; |
| 108 | struct pstate_adjust_policy { |
| 109 | int sample_rate_ms; |
| 110 | int deadband; |
| 111 | int setpoint; |
| 112 | int p_gain_pct; |
| 113 | int d_gain_pct; |
| 114 | int i_gain_pct; |
| 115 | }; |
| 116 | |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 117 | struct pstate_funcs { |
| 118 | int (*get_max)(void); |
| 119 | int (*get_min)(void); |
| 120 | int (*get_turbo)(void); |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 121 | void (*set)(struct cpudata*, int pstate); |
| 122 | void (*get_vid)(struct cpudata *); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 123 | }; |
| 124 | |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 125 | struct cpu_defaults { |
| 126 | struct pstate_adjust_policy pid_policy; |
| 127 | struct pstate_funcs funcs; |
| 128 | }; |
| 129 | |
| 130 | static struct pstate_adjust_policy pid_params; |
| 131 | static struct pstate_funcs pstate_funcs; |
| 132 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 133 | struct perf_limits { |
| 134 | int no_turbo; |
| 135 | int max_perf_pct; |
| 136 | int min_perf_pct; |
| 137 | int32_t max_perf; |
| 138 | int32_t min_perf; |
Dirk Brandewie | d8f469e | 2013-05-07 08:20:26 -0700 | [diff] [blame] | 139 | int max_policy_pct; |
| 140 | int max_sysfs_pct; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 141 | }; |
| 142 | |
| 143 | static struct perf_limits limits = { |
| 144 | .no_turbo = 0, |
| 145 | .max_perf_pct = 100, |
| 146 | .max_perf = int_tofp(1), |
| 147 | .min_perf_pct = 0, |
| 148 | .min_perf = 0, |
Dirk Brandewie | d8f469e | 2013-05-07 08:20:26 -0700 | [diff] [blame] | 149 | .max_policy_pct = 100, |
| 150 | .max_sysfs_pct = 100, |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 151 | }; |
| 152 | |
| 153 | static inline void pid_reset(struct _pid *pid, int setpoint, int busy, |
| 154 | int deadband, int integral) { |
| 155 | pid->setpoint = setpoint; |
| 156 | pid->deadband = deadband; |
| 157 | pid->integral = int_tofp(integral); |
Dirk Brandewie | d98d099 | 2014-02-12 10:01:05 -0800 | [diff] [blame] | 158 | pid->last_err = int_tofp(setpoint) - int_tofp(busy); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 159 | } |
| 160 | |
| 161 | static inline void pid_p_gain_set(struct _pid *pid, int percent) |
| 162 | { |
| 163 | pid->p_gain = div_fp(int_tofp(percent), int_tofp(100)); |
| 164 | } |
| 165 | |
| 166 | static inline void pid_i_gain_set(struct _pid *pid, int percent) |
| 167 | { |
| 168 | pid->i_gain = div_fp(int_tofp(percent), int_tofp(100)); |
| 169 | } |
| 170 | |
| 171 | static inline void pid_d_gain_set(struct _pid *pid, int percent) |
| 172 | { |
| 173 | |
| 174 | pid->d_gain = div_fp(int_tofp(percent), int_tofp(100)); |
| 175 | } |
| 176 | |
Brennan Shacklett | d253d2a | 2013-10-21 09:20:32 -0700 | [diff] [blame] | 177 | static signed int pid_calc(struct _pid *pid, int32_t busy) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 178 | { |
Brennan Shacklett | d253d2a | 2013-10-21 09:20:32 -0700 | [diff] [blame] | 179 | signed int result; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 180 | int32_t pterm, dterm, fp_error; |
| 181 | int32_t integral_limit; |
| 182 | |
Brennan Shacklett | d253d2a | 2013-10-21 09:20:32 -0700 | [diff] [blame] | 183 | fp_error = int_tofp(pid->setpoint) - busy; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 184 | |
Brennan Shacklett | d253d2a | 2013-10-21 09:20:32 -0700 | [diff] [blame] | 185 | if (abs(fp_error) <= int_tofp(pid->deadband)) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 186 | return 0; |
| 187 | |
| 188 | pterm = mul_fp(pid->p_gain, fp_error); |
| 189 | |
| 190 | pid->integral += fp_error; |
| 191 | |
| 192 | /* limit the integral term */ |
| 193 | integral_limit = int_tofp(30); |
| 194 | if (pid->integral > integral_limit) |
| 195 | pid->integral = integral_limit; |
| 196 | if (pid->integral < -integral_limit) |
| 197 | pid->integral = -integral_limit; |
| 198 | |
Brennan Shacklett | d253d2a | 2013-10-21 09:20:32 -0700 | [diff] [blame] | 199 | dterm = mul_fp(pid->d_gain, fp_error - pid->last_err); |
| 200 | pid->last_err = fp_error; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 201 | |
| 202 | result = pterm + mul_fp(pid->integral, pid->i_gain) + dterm; |
| 203 | |
| 204 | return (signed int)fp_toint(result); |
| 205 | } |
| 206 | |
| 207 | static inline void intel_pstate_busy_pid_reset(struct cpudata *cpu) |
| 208 | { |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 209 | pid_p_gain_set(&cpu->pid, pid_params.p_gain_pct); |
| 210 | pid_d_gain_set(&cpu->pid, pid_params.d_gain_pct); |
| 211 | pid_i_gain_set(&cpu->pid, pid_params.i_gain_pct); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 212 | |
| 213 | pid_reset(&cpu->pid, |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 214 | pid_params.setpoint, |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 215 | 100, |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 216 | pid_params.deadband, |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 217 | 0); |
| 218 | } |
| 219 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 220 | static inline void intel_pstate_reset_all_pid(void) |
| 221 | { |
| 222 | unsigned int cpu; |
| 223 | for_each_online_cpu(cpu) { |
| 224 | if (all_cpu_data[cpu]) |
| 225 | intel_pstate_busy_pid_reset(all_cpu_data[cpu]); |
| 226 | } |
| 227 | } |
| 228 | |
| 229 | /************************** debugfs begin ************************/ |
| 230 | static int pid_param_set(void *data, u64 val) |
| 231 | { |
| 232 | *(u32 *)data = val; |
| 233 | intel_pstate_reset_all_pid(); |
| 234 | return 0; |
| 235 | } |
| 236 | static int pid_param_get(void *data, u64 *val) |
| 237 | { |
| 238 | *val = *(u32 *)data; |
| 239 | return 0; |
| 240 | } |
| 241 | DEFINE_SIMPLE_ATTRIBUTE(fops_pid_param, pid_param_get, |
| 242 | pid_param_set, "%llu\n"); |
| 243 | |
| 244 | struct pid_param { |
| 245 | char *name; |
| 246 | void *value; |
| 247 | }; |
| 248 | |
| 249 | static struct pid_param pid_files[] = { |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 250 | {"sample_rate_ms", &pid_params.sample_rate_ms}, |
| 251 | {"d_gain_pct", &pid_params.d_gain_pct}, |
| 252 | {"i_gain_pct", &pid_params.i_gain_pct}, |
| 253 | {"deadband", &pid_params.deadband}, |
| 254 | {"setpoint", &pid_params.setpoint}, |
| 255 | {"p_gain_pct", &pid_params.p_gain_pct}, |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 256 | {NULL, NULL} |
| 257 | }; |
| 258 | |
| 259 | static struct dentry *debugfs_parent; |
| 260 | static void intel_pstate_debug_expose_params(void) |
| 261 | { |
| 262 | int i = 0; |
| 263 | |
| 264 | debugfs_parent = debugfs_create_dir("pstate_snb", NULL); |
| 265 | if (IS_ERR_OR_NULL(debugfs_parent)) |
| 266 | return; |
| 267 | while (pid_files[i].name) { |
| 268 | debugfs_create_file(pid_files[i].name, 0660, |
| 269 | debugfs_parent, pid_files[i].value, |
| 270 | &fops_pid_param); |
| 271 | i++; |
| 272 | } |
| 273 | } |
| 274 | |
| 275 | /************************** debugfs end ************************/ |
| 276 | |
| 277 | /************************** sysfs begin ************************/ |
| 278 | #define show_one(file_name, object) \ |
| 279 | static ssize_t show_##file_name \ |
| 280 | (struct kobject *kobj, struct attribute *attr, char *buf) \ |
| 281 | { \ |
| 282 | return sprintf(buf, "%u\n", limits.object); \ |
| 283 | } |
| 284 | |
| 285 | static ssize_t store_no_turbo(struct kobject *a, struct attribute *b, |
| 286 | const char *buf, size_t count) |
| 287 | { |
| 288 | unsigned int input; |
| 289 | int ret; |
| 290 | ret = sscanf(buf, "%u", &input); |
| 291 | if (ret != 1) |
| 292 | return -EINVAL; |
| 293 | limits.no_turbo = clamp_t(int, input, 0 , 1); |
| 294 | |
| 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 | 21855ff | 2014-05-08 12:57:23 -0700 | [diff] [blame] | 364 | return (value >> 8) & 0x3F; |
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 | 21855ff | 2014-05-08 12:57:23 -0700 | [diff] [blame] | 371 | return (value >> 16) & 0x3F; |
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); |
| 378 | return value & 0x3F; |
| 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; |
| 388 | if (limits.no_turbo) |
| 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 | 21855ff | 2014-05-08 12:57:23 -0700 | [diff] [blame] | 412 | cpudata->vid.min = int_tofp((value >> 8) & 0x3f); |
| 413 | cpudata->vid.max = int_tofp((value >> 16) & 0x3f); |
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; |
| 455 | if (limits.no_turbo) |
| 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 | { |
| 549 | sprintf(cpu->name, "Intel 2nd generation core"); |
| 550 | |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 551 | cpu->pstate.min_pstate = pstate_funcs.get_min(); |
| 552 | cpu->pstate.max_pstate = pstate_funcs.get_max(); |
| 553 | cpu->pstate.turbo_pstate = pstate_funcs.get_turbo(); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 554 | |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 555 | if (pstate_funcs.get_vid) |
| 556 | pstate_funcs.get_vid(cpu); |
Dirk Brandewie | d40a63c | 2014-05-08 12:57:24 -0700 | [diff] [blame] | 557 | intel_pstate_set_pstate(cpu, cpu->pstate.min_pstate); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 558 | } |
| 559 | |
| 560 | static inline void intel_pstate_calc_busy(struct cpudata *cpu, |
| 561 | struct sample *sample) |
| 562 | { |
Dirk Brandewie | e66c176 | 2014-02-25 10:35:37 -0800 | [diff] [blame] | 563 | int32_t core_pct; |
| 564 | int32_t c0_pct; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 565 | |
Dirk Brandewie | e66c176 | 2014-02-25 10:35:37 -0800 | [diff] [blame] | 566 | core_pct = div_fp(int_tofp((sample->aperf)), |
| 567 | int_tofp((sample->mperf))); |
| 568 | core_pct = mul_fp(core_pct, int_tofp(100)); |
| 569 | FP_ROUNDUP(core_pct); |
Dirk Brandewie | fcb6a15 | 2014-02-03 08:55:31 -0800 | [diff] [blame] | 570 | |
Dirk Brandewie | e66c176 | 2014-02-25 10:35:37 -0800 | [diff] [blame] | 571 | c0_pct = div_fp(int_tofp(sample->mperf), int_tofp(sample->tsc)); |
| 572 | |
Dirk Brandewie | fcb6a15 | 2014-02-03 08:55:31 -0800 | [diff] [blame] | 573 | sample->freq = fp_toint( |
Dirk Brandewie | e66c176 | 2014-02-25 10:35:37 -0800 | [diff] [blame] | 574 | mul_fp(int_tofp(cpu->pstate.max_pstate * 1000), core_pct)); |
Dirk Brandewie | fcb6a15 | 2014-02-03 08:55:31 -0800 | [diff] [blame] | 575 | |
Dirk Brandewie | e66c176 | 2014-02-25 10:35:37 -0800 | [diff] [blame] | 576 | sample->core_pct_busy = mul_fp(core_pct, c0_pct); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 577 | } |
| 578 | |
| 579 | static inline void intel_pstate_sample(struct cpudata *cpu) |
| 580 | { |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 581 | u64 aperf, mperf; |
Dirk Brandewie | fcb6a15 | 2014-02-03 08:55:31 -0800 | [diff] [blame] | 582 | unsigned long long tsc; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 583 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 584 | rdmsrl(MSR_IA32_APERF, aperf); |
| 585 | rdmsrl(MSR_IA32_MPERF, mperf); |
Dirk Brandewie | fcb6a15 | 2014-02-03 08:55:31 -0800 | [diff] [blame] | 586 | tsc = native_read_tsc(); |
Dirk Brandewie | b69880f | 2014-01-16 10:32:25 -0800 | [diff] [blame] | 587 | |
Dirk Brandewie | e66c176 | 2014-02-25 10:35:37 -0800 | [diff] [blame] | 588 | aperf = aperf >> FRAC_BITS; |
| 589 | mperf = mperf >> FRAC_BITS; |
| 590 | tsc = tsc >> FRAC_BITS; |
| 591 | |
Dirk Brandewie | d37e2b7 | 2014-02-12 10:01:04 -0800 | [diff] [blame] | 592 | cpu->sample.aperf = aperf; |
| 593 | cpu->sample.mperf = mperf; |
| 594 | cpu->sample.tsc = tsc; |
| 595 | cpu->sample.aperf -= cpu->prev_aperf; |
| 596 | cpu->sample.mperf -= cpu->prev_mperf; |
| 597 | cpu->sample.tsc -= cpu->prev_tsc; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 598 | |
Dirk Brandewie | d37e2b7 | 2014-02-12 10:01:04 -0800 | [diff] [blame] | 599 | intel_pstate_calc_busy(cpu, &cpu->sample); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 600 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 601 | cpu->prev_aperf = aperf; |
| 602 | cpu->prev_mperf = mperf; |
Dirk Brandewie | fcb6a15 | 2014-02-03 08:55:31 -0800 | [diff] [blame] | 603 | cpu->prev_tsc = tsc; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 604 | } |
| 605 | |
| 606 | static inline void intel_pstate_set_sample_time(struct cpudata *cpu) |
| 607 | { |
| 608 | int sample_time, delay; |
| 609 | |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 610 | sample_time = pid_params.sample_rate_ms; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 611 | delay = msecs_to_jiffies(sample_time); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 612 | mod_timer_pinned(&cpu->timer, jiffies + delay); |
| 613 | } |
| 614 | |
Brennan Shacklett | d253d2a | 2013-10-21 09:20:32 -0700 | [diff] [blame] | 615 | static inline int32_t intel_pstate_get_scaled_busy(struct cpudata *cpu) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 616 | { |
Dirk Brandewie | 2134ed4 | 2013-07-18 08:48:42 -0700 | [diff] [blame] | 617 | int32_t core_busy, max_pstate, current_pstate; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 618 | |
Dirk Brandewie | d37e2b7 | 2014-02-12 10:01:04 -0800 | [diff] [blame] | 619 | core_busy = cpu->sample.core_pct_busy; |
Dirk Brandewie | 2134ed4 | 2013-07-18 08:48:42 -0700 | [diff] [blame] | 620 | max_pstate = int_tofp(cpu->pstate.max_pstate); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 621 | current_pstate = int_tofp(cpu->pstate.current_pstate); |
Dirk Brandewie | e66c176 | 2014-02-25 10:35:37 -0800 | [diff] [blame] | 622 | core_busy = mul_fp(core_busy, div_fp(max_pstate, current_pstate)); |
| 623 | return FP_ROUNDUP(core_busy); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 624 | } |
| 625 | |
| 626 | static inline void intel_pstate_adjust_busy_pstate(struct cpudata *cpu) |
| 627 | { |
Brennan Shacklett | d253d2a | 2013-10-21 09:20:32 -0700 | [diff] [blame] | 628 | int32_t busy_scaled; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 629 | struct _pid *pid; |
| 630 | signed int ctl = 0; |
| 631 | int steps; |
| 632 | |
| 633 | pid = &cpu->pid; |
| 634 | busy_scaled = intel_pstate_get_scaled_busy(cpu); |
| 635 | |
| 636 | ctl = pid_calc(pid, busy_scaled); |
| 637 | |
| 638 | steps = abs(ctl); |
Dirk Brandewie | b69880f | 2014-01-16 10:32:25 -0800 | [diff] [blame] | 639 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 640 | if (ctl < 0) |
| 641 | intel_pstate_pstate_increase(cpu, steps); |
| 642 | else |
| 643 | intel_pstate_pstate_decrease(cpu, steps); |
| 644 | } |
| 645 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 646 | static void intel_pstate_timer_func(unsigned long __data) |
| 647 | { |
| 648 | struct cpudata *cpu = (struct cpudata *) __data; |
Dirk Brandewie | b69880f | 2014-01-16 10:32:25 -0800 | [diff] [blame] | 649 | struct sample *sample; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 650 | |
| 651 | intel_pstate_sample(cpu); |
Dirk Brandewie | b69880f | 2014-01-16 10:32:25 -0800 | [diff] [blame] | 652 | |
Dirk Brandewie | d37e2b7 | 2014-02-12 10:01:04 -0800 | [diff] [blame] | 653 | sample = &cpu->sample; |
Dirk Brandewie | b69880f | 2014-01-16 10:32:25 -0800 | [diff] [blame] | 654 | |
Dirk Brandewie | ca182ae | 2013-05-07 08:20:27 -0700 | [diff] [blame] | 655 | intel_pstate_adjust_busy_pstate(cpu); |
Dirk Brandewie | b69880f | 2014-01-16 10:32:25 -0800 | [diff] [blame] | 656 | |
| 657 | trace_pstate_sample(fp_toint(sample->core_pct_busy), |
| 658 | fp_toint(intel_pstate_get_scaled_busy(cpu)), |
| 659 | cpu->pstate.current_pstate, |
| 660 | sample->mperf, |
| 661 | sample->aperf, |
Dirk Brandewie | b69880f | 2014-01-16 10:32:25 -0800 | [diff] [blame] | 662 | sample->freq); |
| 663 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 664 | intel_pstate_set_sample_time(cpu); |
| 665 | } |
| 666 | |
| 667 | #define ICPU(model, policy) \ |
Dirk Brandewie | 6cbd7ee | 2014-01-06 10:59:16 -0800 | [diff] [blame] | 668 | { X86_VENDOR_INTEL, 6, model, X86_FEATURE_APERFMPERF,\ |
| 669 | (unsigned long)&policy } |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 670 | |
| 671 | static const struct x86_cpu_id intel_pstate_cpu_ids[] = { |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 672 | ICPU(0x2a, core_params), |
| 673 | ICPU(0x2d, core_params), |
Dirk Brandewie | 19e77c2 | 2013-10-21 09:20:35 -0700 | [diff] [blame] | 674 | ICPU(0x37, byt_params), |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 675 | ICPU(0x3a, core_params), |
| 676 | ICPU(0x3c, core_params), |
| 677 | ICPU(0x3e, core_params), |
| 678 | ICPU(0x3f, core_params), |
| 679 | ICPU(0x45, core_params), |
| 680 | ICPU(0x46, core_params), |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 681 | {} |
| 682 | }; |
| 683 | MODULE_DEVICE_TABLE(x86cpu, intel_pstate_cpu_ids); |
| 684 | |
| 685 | static int intel_pstate_init_cpu(unsigned int cpunum) |
| 686 | { |
| 687 | |
| 688 | const struct x86_cpu_id *id; |
| 689 | struct cpudata *cpu; |
| 690 | |
| 691 | id = x86_match_cpu(intel_pstate_cpu_ids); |
| 692 | if (!id) |
| 693 | return -ENODEV; |
| 694 | |
| 695 | all_cpu_data[cpunum] = kzalloc(sizeof(struct cpudata), GFP_KERNEL); |
| 696 | if (!all_cpu_data[cpunum]) |
| 697 | return -ENOMEM; |
| 698 | |
| 699 | cpu = all_cpu_data[cpunum]; |
| 700 | |
| 701 | intel_pstate_get_cpu_pstates(cpu); |
| 702 | |
| 703 | cpu->cpu = cpunum; |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 704 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 705 | init_timer_deferrable(&cpu->timer); |
| 706 | cpu->timer.function = intel_pstate_timer_func; |
| 707 | cpu->timer.data = |
| 708 | (unsigned long)cpu; |
| 709 | cpu->timer.expires = jiffies + HZ/100; |
| 710 | intel_pstate_busy_pid_reset(cpu); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 711 | intel_pstate_sample(cpu); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 712 | |
| 713 | add_timer_on(&cpu->timer, cpunum); |
| 714 | |
| 715 | pr_info("Intel pstate controlling: cpu %d\n", cpunum); |
| 716 | |
| 717 | return 0; |
| 718 | } |
| 719 | |
| 720 | static unsigned int intel_pstate_get(unsigned int cpu_num) |
| 721 | { |
| 722 | struct sample *sample; |
| 723 | struct cpudata *cpu; |
| 724 | |
| 725 | cpu = all_cpu_data[cpu_num]; |
| 726 | if (!cpu) |
| 727 | return 0; |
Dirk Brandewie | d37e2b7 | 2014-02-12 10:01:04 -0800 | [diff] [blame] | 728 | sample = &cpu->sample; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 729 | return sample->freq; |
| 730 | } |
| 731 | |
| 732 | static int intel_pstate_set_policy(struct cpufreq_policy *policy) |
| 733 | { |
| 734 | struct cpudata *cpu; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 735 | |
| 736 | cpu = all_cpu_data[policy->cpu]; |
| 737 | |
Dirk Brandewie | d3929b8 | 2013-03-05 14:15:26 -0800 | [diff] [blame] | 738 | if (!policy->cpuinfo.max_freq) |
| 739 | return -ENODEV; |
| 740 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 741 | if (policy->policy == CPUFREQ_POLICY_PERFORMANCE) { |
| 742 | limits.min_perf_pct = 100; |
| 743 | limits.min_perf = int_tofp(1); |
| 744 | limits.max_perf_pct = 100; |
| 745 | limits.max_perf = int_tofp(1); |
| 746 | limits.no_turbo = 0; |
Srinivas Pandruvada | d1b6848 | 2013-04-09 22:38:18 +0000 | [diff] [blame] | 747 | return 0; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 748 | } |
Srinivas Pandruvada | d1b6848 | 2013-04-09 22:38:18 +0000 | [diff] [blame] | 749 | limits.min_perf_pct = (policy->min * 100) / policy->cpuinfo.max_freq; |
| 750 | limits.min_perf_pct = clamp_t(int, limits.min_perf_pct, 0 , 100); |
| 751 | limits.min_perf = div_fp(int_tofp(limits.min_perf_pct), int_tofp(100)); |
| 752 | |
Dirk Brandewie | d8f469e | 2013-05-07 08:20:26 -0700 | [diff] [blame] | 753 | limits.max_policy_pct = policy->max * 100 / policy->cpuinfo.max_freq; |
| 754 | limits.max_policy_pct = clamp_t(int, limits.max_policy_pct, 0 , 100); |
| 755 | 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] | 756 | 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] | 757 | |
| 758 | return 0; |
| 759 | } |
| 760 | |
| 761 | static int intel_pstate_verify_policy(struct cpufreq_policy *policy) |
| 762 | { |
Viresh Kumar | be49e34 | 2013-10-02 14:13:19 +0530 | [diff] [blame] | 763 | cpufreq_verify_within_cpu_limits(policy); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 764 | |
| 765 | if ((policy->policy != CPUFREQ_POLICY_POWERSAVE) && |
| 766 | (policy->policy != CPUFREQ_POLICY_PERFORMANCE)) |
| 767 | return -EINVAL; |
| 768 | |
| 769 | return 0; |
| 770 | } |
| 771 | |
Dirk Brandewie | bb18008 | 2014-03-19 08:45:54 -0700 | [diff] [blame] | 772 | static void intel_pstate_stop_cpu(struct cpufreq_policy *policy) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 773 | { |
Dirk Brandewie | bb18008 | 2014-03-19 08:45:54 -0700 | [diff] [blame] | 774 | int cpu_num = policy->cpu; |
| 775 | struct cpudata *cpu = all_cpu_data[cpu_num]; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 776 | |
Dirk Brandewie | bb18008 | 2014-03-19 08:45:54 -0700 | [diff] [blame] | 777 | pr_info("intel_pstate CPU %d exiting\n", cpu_num); |
| 778 | |
Dirk Brandewie | c2294a2 | 2014-03-24 07:41:29 -0700 | [diff] [blame] | 779 | del_timer_sync(&all_cpu_data[cpu_num]->timer); |
Dirk Brandewie | bb18008 | 2014-03-19 08:45:54 -0700 | [diff] [blame] | 780 | intel_pstate_set_pstate(cpu, cpu->pstate.min_pstate); |
| 781 | kfree(all_cpu_data[cpu_num]); |
| 782 | all_cpu_data[cpu_num] = NULL; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 783 | } |
| 784 | |
Paul Gortmaker | 2760984 | 2013-06-19 13:54:04 -0400 | [diff] [blame] | 785 | static int intel_pstate_cpu_init(struct cpufreq_policy *policy) |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 786 | { |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 787 | struct cpudata *cpu; |
Dirk Brandewie | 52e0a50 | 2013-10-15 11:06:14 -0700 | [diff] [blame] | 788 | int rc; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 789 | |
| 790 | rc = intel_pstate_init_cpu(policy->cpu); |
| 791 | if (rc) |
| 792 | return rc; |
| 793 | |
| 794 | cpu = all_cpu_data[policy->cpu]; |
| 795 | |
| 796 | if (!limits.no_turbo && |
| 797 | limits.min_perf_pct == 100 && limits.max_perf_pct == 100) |
| 798 | policy->policy = CPUFREQ_POLICY_PERFORMANCE; |
| 799 | else |
| 800 | policy->policy = CPUFREQ_POLICY_POWERSAVE; |
| 801 | |
Dirk Brandewie | 52e0a50 | 2013-10-15 11:06:14 -0700 | [diff] [blame] | 802 | policy->min = cpu->pstate.min_pstate * 100000; |
| 803 | policy->max = cpu->pstate.turbo_pstate * 100000; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 804 | |
| 805 | /* cpuinfo and default policy values */ |
| 806 | policy->cpuinfo.min_freq = cpu->pstate.min_pstate * 100000; |
| 807 | policy->cpuinfo.max_freq = cpu->pstate.turbo_pstate * 100000; |
| 808 | policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL; |
| 809 | cpumask_set_cpu(policy->cpu, policy->cpus); |
| 810 | |
| 811 | return 0; |
| 812 | } |
| 813 | |
| 814 | static struct cpufreq_driver intel_pstate_driver = { |
| 815 | .flags = CPUFREQ_CONST_LOOPS, |
| 816 | .verify = intel_pstate_verify_policy, |
| 817 | .setpolicy = intel_pstate_set_policy, |
| 818 | .get = intel_pstate_get, |
| 819 | .init = intel_pstate_cpu_init, |
Dirk Brandewie | bb18008 | 2014-03-19 08:45:54 -0700 | [diff] [blame] | 820 | .stop_cpu = intel_pstate_stop_cpu, |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 821 | .name = "intel_pstate", |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 822 | }; |
| 823 | |
Dirk Brandewie | 6be2649 | 2013-02-15 22:55:10 +0100 | [diff] [blame] | 824 | static int __initdata no_load; |
| 825 | |
Dirk Brandewie | b563b4e | 2013-03-22 01:29:28 +0100 | [diff] [blame] | 826 | static int intel_pstate_msrs_not_valid(void) |
| 827 | { |
| 828 | /* Check that all the msr's we are using are valid. */ |
| 829 | u64 aperf, mperf, tmp; |
| 830 | |
| 831 | rdmsrl(MSR_IA32_APERF, aperf); |
| 832 | rdmsrl(MSR_IA32_MPERF, mperf); |
| 833 | |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 834 | if (!pstate_funcs.get_max() || |
| 835 | !pstate_funcs.get_min() || |
| 836 | !pstate_funcs.get_turbo()) |
Dirk Brandewie | b563b4e | 2013-03-22 01:29:28 +0100 | [diff] [blame] | 837 | return -ENODEV; |
| 838 | |
| 839 | rdmsrl(MSR_IA32_APERF, tmp); |
| 840 | if (!(tmp - aperf)) |
| 841 | return -ENODEV; |
| 842 | |
| 843 | rdmsrl(MSR_IA32_MPERF, tmp); |
| 844 | if (!(tmp - mperf)) |
| 845 | return -ENODEV; |
| 846 | |
| 847 | return 0; |
| 848 | } |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 849 | |
Dirk Brandewie | e0a261a | 2013-10-30 08:38:32 -0700 | [diff] [blame] | 850 | static void copy_pid_params(struct pstate_adjust_policy *policy) |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 851 | { |
| 852 | pid_params.sample_rate_ms = policy->sample_rate_ms; |
| 853 | pid_params.p_gain_pct = policy->p_gain_pct; |
| 854 | pid_params.i_gain_pct = policy->i_gain_pct; |
| 855 | pid_params.d_gain_pct = policy->d_gain_pct; |
| 856 | pid_params.deadband = policy->deadband; |
| 857 | pid_params.setpoint = policy->setpoint; |
| 858 | } |
| 859 | |
Dirk Brandewie | e0a261a | 2013-10-30 08:38:32 -0700 | [diff] [blame] | 860 | static void copy_cpu_funcs(struct pstate_funcs *funcs) |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 861 | { |
| 862 | pstate_funcs.get_max = funcs->get_max; |
| 863 | pstate_funcs.get_min = funcs->get_min; |
| 864 | pstate_funcs.get_turbo = funcs->get_turbo; |
| 865 | pstate_funcs.set = funcs->set; |
Dirk Brandewie | 007bea0 | 2013-12-18 10:32:39 -0800 | [diff] [blame] | 866 | pstate_funcs.get_vid = funcs->get_vid; |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 867 | } |
| 868 | |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 869 | #if IS_ENABLED(CONFIG_ACPI) |
| 870 | #include <acpi/processor.h> |
| 871 | |
| 872 | static bool intel_pstate_no_acpi_pss(void) |
| 873 | { |
| 874 | int i; |
| 875 | |
| 876 | for_each_possible_cpu(i) { |
| 877 | acpi_status status; |
| 878 | union acpi_object *pss; |
| 879 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 880 | struct acpi_processor *pr = per_cpu(processors, i); |
| 881 | |
| 882 | if (!pr) |
| 883 | continue; |
| 884 | |
| 885 | status = acpi_evaluate_object(pr->handle, "_PSS", NULL, &buffer); |
| 886 | if (ACPI_FAILURE(status)) |
| 887 | continue; |
| 888 | |
| 889 | pss = buffer.pointer; |
| 890 | if (pss && pss->type == ACPI_TYPE_PACKAGE) { |
| 891 | kfree(pss); |
| 892 | return false; |
| 893 | } |
| 894 | |
| 895 | kfree(pss); |
| 896 | } |
| 897 | |
| 898 | return true; |
| 899 | } |
| 900 | |
| 901 | struct hw_vendor_info { |
| 902 | u16 valid; |
| 903 | char oem_id[ACPI_OEM_ID_SIZE]; |
| 904 | char oem_table_id[ACPI_OEM_TABLE_ID_SIZE]; |
| 905 | }; |
| 906 | |
| 907 | /* Hardware vendor-specific info that has its own power management modes */ |
| 908 | static struct hw_vendor_info vendor_info[] = { |
| 909 | {1, "HP ", "ProLiant"}, |
| 910 | {0, "", ""}, |
| 911 | }; |
| 912 | |
| 913 | static bool intel_pstate_platform_pwr_mgmt_exists(void) |
| 914 | { |
| 915 | struct acpi_table_header hdr; |
| 916 | struct hw_vendor_info *v_info; |
| 917 | |
| 918 | if (acpi_disabled |
| 919 | || ACPI_FAILURE(acpi_get_table_header(ACPI_SIG_FADT, 0, &hdr))) |
| 920 | return false; |
| 921 | |
| 922 | for (v_info = vendor_info; v_info->valid; v_info++) { |
| 923 | if (!strncmp(hdr.oem_id, v_info->oem_id, ACPI_OEM_ID_SIZE) |
| 924 | && !strncmp(hdr.oem_table_id, v_info->oem_table_id, ACPI_OEM_TABLE_ID_SIZE) |
| 925 | && intel_pstate_no_acpi_pss()) |
| 926 | return true; |
| 927 | } |
| 928 | |
| 929 | return false; |
| 930 | } |
| 931 | #else /* CONFIG_ACPI not enabled */ |
| 932 | static inline bool intel_pstate_platform_pwr_mgmt_exists(void) { return false; } |
| 933 | #endif /* CONFIG_ACPI */ |
| 934 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 935 | static int __init intel_pstate_init(void) |
| 936 | { |
Dirk Brandewie | 907cc90 | 2013-03-05 14:15:27 -0800 | [diff] [blame] | 937 | int cpu, rc = 0; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 938 | const struct x86_cpu_id *id; |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 939 | struct cpu_defaults *cpu_info; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 940 | |
Dirk Brandewie | 6be2649 | 2013-02-15 22:55:10 +0100 | [diff] [blame] | 941 | if (no_load) |
| 942 | return -ENODEV; |
| 943 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 944 | id = x86_match_cpu(intel_pstate_cpu_ids); |
| 945 | if (!id) |
| 946 | return -ENODEV; |
| 947 | |
Adrian Huang | fbbcdc0 | 2013-10-31 23:24:05 +0800 | [diff] [blame] | 948 | /* |
| 949 | * The Intel pstate driver will be ignored if the platform |
| 950 | * firmware has its own power management modes. |
| 951 | */ |
| 952 | if (intel_pstate_platform_pwr_mgmt_exists()) |
| 953 | return -ENODEV; |
| 954 | |
Dirk Brandewie | 016c815 | 2013-10-21 09:20:34 -0700 | [diff] [blame] | 955 | cpu_info = (struct cpu_defaults *)id->driver_data; |
| 956 | |
| 957 | copy_pid_params(&cpu_info->pid_policy); |
| 958 | copy_cpu_funcs(&cpu_info->funcs); |
| 959 | |
Dirk Brandewie | b563b4e | 2013-03-22 01:29:28 +0100 | [diff] [blame] | 960 | if (intel_pstate_msrs_not_valid()) |
| 961 | return -ENODEV; |
| 962 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 963 | pr_info("Intel P-state driver initializing.\n"); |
| 964 | |
Wei Yongjun | b57ffac | 2013-05-13 08:03:43 +0000 | [diff] [blame] | 965 | all_cpu_data = vzalloc(sizeof(void *) * num_possible_cpus()); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 966 | if (!all_cpu_data) |
| 967 | return -ENOMEM; |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 968 | |
| 969 | rc = cpufreq_register_driver(&intel_pstate_driver); |
| 970 | if (rc) |
| 971 | goto out; |
| 972 | |
| 973 | intel_pstate_debug_expose_params(); |
| 974 | intel_pstate_sysfs_expose_params(); |
Dirk Brandewie | b69880f | 2014-01-16 10:32:25 -0800 | [diff] [blame] | 975 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 976 | return rc; |
| 977 | out: |
Dirk Brandewie | 907cc90 | 2013-03-05 14:15:27 -0800 | [diff] [blame] | 978 | get_online_cpus(); |
| 979 | for_each_online_cpu(cpu) { |
| 980 | if (all_cpu_data[cpu]) { |
| 981 | del_timer_sync(&all_cpu_data[cpu]->timer); |
| 982 | kfree(all_cpu_data[cpu]); |
| 983 | } |
| 984 | } |
| 985 | |
| 986 | put_online_cpus(); |
| 987 | vfree(all_cpu_data); |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 988 | return -ENODEV; |
| 989 | } |
| 990 | device_initcall(intel_pstate_init); |
| 991 | |
Dirk Brandewie | 6be2649 | 2013-02-15 22:55:10 +0100 | [diff] [blame] | 992 | static int __init intel_pstate_setup(char *str) |
| 993 | { |
| 994 | if (!str) |
| 995 | return -EINVAL; |
| 996 | |
| 997 | if (!strcmp(str, "disable")) |
| 998 | no_load = 1; |
| 999 | return 0; |
| 1000 | } |
| 1001 | early_param("intel_pstate", intel_pstate_setup); |
| 1002 | |
Dirk Brandewie | 93f0822 | 2013-02-06 09:02:13 -0800 | [diff] [blame] | 1003 | MODULE_AUTHOR("Dirk Brandewie <dirk.j.brandewie@intel.com>"); |
| 1004 | MODULE_DESCRIPTION("'intel_pstate' - P state driver Intel Core processors"); |
| 1005 | MODULE_LICENSE("GPL"); |