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