blob: 7d9f822f2031a944211722d35b592918fe55574a [file] [log] [blame]
Dirk Brandewie93f08222013-02-06 09:02:13 -08001/*
Srinivas Pandruvadad1b68482013-04-09 22:38:18 +00002 * intel_pstate.c: Native P state management for Intel processors
Dirk Brandewie93f08222013-02-06 09:02:13 -08003 *
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 Huangfbbcdc02013-10-31 23:24:05 +080028#include <linux/acpi.h>
Dirk Brandewie93f08222013-02-06 09:02:13 -080029#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 Brandewie61d8d2a2014-02-12 10:01:07 -080035#define BYT_RATIOS 0x66a
36#define BYT_VIDS 0x66b
37#define BYT_TURBO_RATIOS 0x66c
Dirk Brandewie21855ff2014-05-08 12:57:23 -070038#define BYT_TURBO_VIDS 0x66d
Dirk Brandewie61d8d2a2014-02-12 10:01:07 -080039
Dirk Brandewief0fe3cd2014-05-29 09:32:23 -070040#define FRAC_BITS 8
Dirk Brandewie93f08222013-02-06 09:02:13 -080041#define int_tofp(X) ((int64_t)(X) << FRAC_BITS)
42#define fp_toint(X) ((X) >> FRAC_BITS)
Dirk Brandewief0fe3cd2014-05-29 09:32:23 -070043
Dirk Brandewie93f08222013-02-06 09:02:13 -080044
45static inline int32_t mul_fp(int32_t x, int32_t y)
46{
47 return ((int64_t)x * (int64_t)y) >> FRAC_BITS;
48}
49
50static inline int32_t div_fp(int32_t x, int32_t y)
51{
Stratos Karafotisfa30dff2014-07-18 08:37:18 -070052 return div_s64((int64_t)x << FRAC_BITS, y);
Dirk Brandewie93f08222013-02-06 09:02:13 -080053}
54
Dirk Brandewied022a652014-10-13 08:37:44 -070055static inline int ceiling_fp(int32_t x)
56{
57 int mask, ret;
58
59 ret = fp_toint(x);
60 mask = (1 << FRAC_BITS) - 1;
61 if (x & mask)
62 ret += 1;
63 return ret;
64}
65
Dirk Brandewie93f08222013-02-06 09:02:13 -080066struct sample {
Brennan Shacklettd253d2a2013-10-21 09:20:32 -070067 int32_t core_pct_busy;
Dirk Brandewie93f08222013-02-06 09:02:13 -080068 u64 aperf;
69 u64 mperf;
70 int freq;
Dirk Brandewiec4ee8412014-05-29 09:32:24 -070071 ktime_t time;
Dirk Brandewie93f08222013-02-06 09:02:13 -080072};
73
74struct pstate_data {
75 int current_pstate;
76 int min_pstate;
77 int max_pstate;
Dirk Brandewieb27580b2014-10-13 08:37:43 -070078 int scaling;
Dirk Brandewie93f08222013-02-06 09:02:13 -080079 int turbo_pstate;
80};
81
Dirk Brandewie007bea02013-12-18 10:32:39 -080082struct vid_data {
Dirk Brandewie21855ff2014-05-08 12:57:23 -070083 int min;
84 int max;
85 int turbo;
Dirk Brandewie007bea02013-12-18 10:32:39 -080086 int32_t ratio;
87};
88
Dirk Brandewie93f08222013-02-06 09:02:13 -080089struct _pid {
90 int setpoint;
91 int32_t integral;
92 int32_t p_gain;
93 int32_t i_gain;
94 int32_t d_gain;
95 int deadband;
Brennan Shacklettd253d2a2013-10-21 09:20:32 -070096 int32_t last_err;
Dirk Brandewie93f08222013-02-06 09:02:13 -080097};
98
99struct cpudata {
100 int cpu;
101
Dirk Brandewie93f08222013-02-06 09:02:13 -0800102 struct timer_list timer;
103
Dirk Brandewie93f08222013-02-06 09:02:13 -0800104 struct pstate_data pstate;
Dirk Brandewie007bea02013-12-18 10:32:39 -0800105 struct vid_data vid;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800106 struct _pid pid;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800107
Dirk Brandewiec4ee8412014-05-29 09:32:24 -0700108 ktime_t last_sample_time;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800109 u64 prev_aperf;
110 u64 prev_mperf;
Dirk Brandewied37e2b72014-02-12 10:01:04 -0800111 struct sample sample;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800112};
113
114static struct cpudata **all_cpu_data;
115struct pstate_adjust_policy {
116 int sample_rate_ms;
117 int deadband;
118 int setpoint;
119 int p_gain_pct;
120 int d_gain_pct;
121 int i_gain_pct;
122};
123
Dirk Brandewie016c8152013-10-21 09:20:34 -0700124struct pstate_funcs {
125 int (*get_max)(void);
126 int (*get_min)(void);
127 int (*get_turbo)(void);
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700128 int (*get_scaling)(void);
Dirk Brandewie007bea02013-12-18 10:32:39 -0800129 void (*set)(struct cpudata*, int pstate);
130 void (*get_vid)(struct cpudata *);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800131};
132
Dirk Brandewie016c8152013-10-21 09:20:34 -0700133struct cpu_defaults {
134 struct pstate_adjust_policy pid_policy;
135 struct pstate_funcs funcs;
136};
137
138static struct pstate_adjust_policy pid_params;
139static struct pstate_funcs pstate_funcs;
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800140static int hwp_active;
Dirk Brandewie016c8152013-10-21 09:20:34 -0700141
Dirk Brandewie93f08222013-02-06 09:02:13 -0800142struct perf_limits {
143 int no_turbo;
Dirk Brandewiedd5fbf72014-06-20 07:27:59 -0700144 int turbo_disabled;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800145 int max_perf_pct;
146 int min_perf_pct;
147 int32_t max_perf;
148 int32_t min_perf;
Dirk Brandewied8f469e2013-05-07 08:20:26 -0700149 int max_policy_pct;
150 int max_sysfs_pct;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800151};
152
153static struct perf_limits limits = {
154 .no_turbo = 0,
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700155 .turbo_disabled = 0,
Dirk Brandewie93f08222013-02-06 09:02:13 -0800156 .max_perf_pct = 100,
157 .max_perf = int_tofp(1),
158 .min_perf_pct = 0,
159 .min_perf = 0,
Dirk Brandewied8f469e2013-05-07 08:20:26 -0700160 .max_policy_pct = 100,
161 .max_sysfs_pct = 100,
Dirk Brandewie93f08222013-02-06 09:02:13 -0800162};
163
164static inline void pid_reset(struct _pid *pid, int setpoint, int busy,
Stratos Karafotisc4108332014-07-18 08:37:23 -0700165 int deadband, int integral) {
Dirk Brandewie93f08222013-02-06 09:02:13 -0800166 pid->setpoint = setpoint;
167 pid->deadband = deadband;
168 pid->integral = int_tofp(integral);
Dirk Brandewied98d0992014-02-12 10:01:05 -0800169 pid->last_err = int_tofp(setpoint) - int_tofp(busy);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800170}
171
172static inline void pid_p_gain_set(struct _pid *pid, int percent)
173{
174 pid->p_gain = div_fp(int_tofp(percent), int_tofp(100));
175}
176
177static inline void pid_i_gain_set(struct _pid *pid, int percent)
178{
179 pid->i_gain = div_fp(int_tofp(percent), int_tofp(100));
180}
181
182static inline void pid_d_gain_set(struct _pid *pid, int percent)
183{
Dirk Brandewie93f08222013-02-06 09:02:13 -0800184 pid->d_gain = div_fp(int_tofp(percent), int_tofp(100));
185}
186
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700187static signed int pid_calc(struct _pid *pid, int32_t busy)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800188{
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700189 signed int result;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800190 int32_t pterm, dterm, fp_error;
191 int32_t integral_limit;
192
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700193 fp_error = int_tofp(pid->setpoint) - busy;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800194
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700195 if (abs(fp_error) <= int_tofp(pid->deadband))
Dirk Brandewie93f08222013-02-06 09:02:13 -0800196 return 0;
197
198 pterm = mul_fp(pid->p_gain, fp_error);
199
200 pid->integral += fp_error;
201
Kristen Carlson Accardie0d4c8f2014-12-10 12:39:38 -0800202 /*
203 * We limit the integral here so that it will never
204 * get higher than 30. This prevents it from becoming
205 * too large an input over long periods of time and allows
206 * it to get factored out sooner.
207 *
208 * The value of 30 was chosen through experimentation.
209 */
Dirk Brandewie93f08222013-02-06 09:02:13 -0800210 integral_limit = int_tofp(30);
211 if (pid->integral > integral_limit)
212 pid->integral = integral_limit;
213 if (pid->integral < -integral_limit)
214 pid->integral = -integral_limit;
215
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700216 dterm = mul_fp(pid->d_gain, fp_error - pid->last_err);
217 pid->last_err = fp_error;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800218
219 result = pterm + mul_fp(pid->integral, pid->i_gain) + dterm;
Doug Smythies51d211e2014-06-17 13:36:10 -0700220 result = result + (1 << (FRAC_BITS-1));
Dirk Brandewie93f08222013-02-06 09:02:13 -0800221 return (signed int)fp_toint(result);
222}
223
224static inline void intel_pstate_busy_pid_reset(struct cpudata *cpu)
225{
Dirk Brandewie016c8152013-10-21 09:20:34 -0700226 pid_p_gain_set(&cpu->pid, pid_params.p_gain_pct);
227 pid_d_gain_set(&cpu->pid, pid_params.d_gain_pct);
228 pid_i_gain_set(&cpu->pid, pid_params.i_gain_pct);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800229
Stratos Karafotis2d8d1f12014-07-18 08:37:20 -0700230 pid_reset(&cpu->pid, pid_params.setpoint, 100, pid_params.deadband, 0);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800231}
232
Dirk Brandewie93f08222013-02-06 09:02:13 -0800233static inline void intel_pstate_reset_all_pid(void)
234{
235 unsigned int cpu;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700236
Dirk Brandewie93f08222013-02-06 09:02:13 -0800237 for_each_online_cpu(cpu) {
238 if (all_cpu_data[cpu])
239 intel_pstate_busy_pid_reset(all_cpu_data[cpu]);
240 }
241}
242
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700243static inline void update_turbo_state(void)
244{
245 u64 misc_en;
246 struct cpudata *cpu;
247
248 cpu = all_cpu_data[0];
249 rdmsrl(MSR_IA32_MISC_ENABLE, misc_en);
250 limits.turbo_disabled =
251 (misc_en & MSR_IA32_MISC_ENABLE_TURBO_DISABLE ||
252 cpu->pstate.max_pstate == cpu->pstate.turbo_pstate);
253}
254
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800255#define PCT_TO_HWP(x) (x * 255 / 100)
256static void intel_pstate_hwp_set(void)
257{
258 int min, max, cpu;
259 u64 value, freq;
260
261 get_online_cpus();
262
263 for_each_online_cpu(cpu) {
264 rdmsrl_on_cpu(cpu, MSR_HWP_REQUEST, &value);
265 min = PCT_TO_HWP(limits.min_perf_pct);
266 value &= ~HWP_MIN_PERF(~0L);
267 value |= HWP_MIN_PERF(min);
268
269 max = PCT_TO_HWP(limits.max_perf_pct);
270 if (limits.no_turbo) {
271 rdmsrl( MSR_HWP_CAPABILITIES, freq);
272 max = HWP_GUARANTEED_PERF(freq);
273 }
274
275 value &= ~HWP_MAX_PERF(~0L);
276 value |= HWP_MAX_PERF(max);
277 wrmsrl_on_cpu(cpu, MSR_HWP_REQUEST, value);
278 }
279
280 put_online_cpus();
281}
282
Dirk Brandewie93f08222013-02-06 09:02:13 -0800283/************************** debugfs begin ************************/
284static int pid_param_set(void *data, u64 val)
285{
286 *(u32 *)data = val;
287 intel_pstate_reset_all_pid();
288 return 0;
289}
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700290
Dirk Brandewie93f08222013-02-06 09:02:13 -0800291static int pid_param_get(void *data, u64 *val)
292{
293 *val = *(u32 *)data;
294 return 0;
295}
Stratos Karafotis2d8d1f12014-07-18 08:37:20 -0700296DEFINE_SIMPLE_ATTRIBUTE(fops_pid_param, pid_param_get, pid_param_set, "%llu\n");
Dirk Brandewie93f08222013-02-06 09:02:13 -0800297
298struct pid_param {
299 char *name;
300 void *value;
301};
302
303static struct pid_param pid_files[] = {
Dirk Brandewie016c8152013-10-21 09:20:34 -0700304 {"sample_rate_ms", &pid_params.sample_rate_ms},
305 {"d_gain_pct", &pid_params.d_gain_pct},
306 {"i_gain_pct", &pid_params.i_gain_pct},
307 {"deadband", &pid_params.deadband},
308 {"setpoint", &pid_params.setpoint},
309 {"p_gain_pct", &pid_params.p_gain_pct},
Dirk Brandewie93f08222013-02-06 09:02:13 -0800310 {NULL, NULL}
311};
312
Stratos Karafotis317dd502014-07-18 08:37:17 -0700313static void __init intel_pstate_debug_expose_params(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800314{
Stratos Karafotis317dd502014-07-18 08:37:17 -0700315 struct dentry *debugfs_parent;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800316 int i = 0;
317
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800318 if (hwp_active)
319 return;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800320 debugfs_parent = debugfs_create_dir("pstate_snb", NULL);
321 if (IS_ERR_OR_NULL(debugfs_parent))
322 return;
323 while (pid_files[i].name) {
324 debugfs_create_file(pid_files[i].name, 0660,
Stratos Karafotisc4108332014-07-18 08:37:23 -0700325 debugfs_parent, pid_files[i].value,
326 &fops_pid_param);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800327 i++;
328 }
329}
330
331/************************** debugfs end ************************/
332
333/************************** sysfs begin ************************/
334#define show_one(file_name, object) \
335 static ssize_t show_##file_name \
336 (struct kobject *kobj, struct attribute *attr, char *buf) \
337 { \
338 return sprintf(buf, "%u\n", limits.object); \
339 }
340
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700341static ssize_t show_no_turbo(struct kobject *kobj,
342 struct attribute *attr, char *buf)
343{
344 ssize_t ret;
345
346 update_turbo_state();
347 if (limits.turbo_disabled)
348 ret = sprintf(buf, "%u\n", limits.turbo_disabled);
349 else
350 ret = sprintf(buf, "%u\n", limits.no_turbo);
351
352 return ret;
353}
354
Dirk Brandewie93f08222013-02-06 09:02:13 -0800355static ssize_t store_no_turbo(struct kobject *a, struct attribute *b,
Stratos Karafotisc4108332014-07-18 08:37:23 -0700356 const char *buf, size_t count)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800357{
358 unsigned int input;
359 int ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700360
Dirk Brandewie93f08222013-02-06 09:02:13 -0800361 ret = sscanf(buf, "%u", &input);
362 if (ret != 1)
363 return -EINVAL;
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700364
365 update_turbo_state();
Dirk Brandewiedd5fbf72014-06-20 07:27:59 -0700366 if (limits.turbo_disabled) {
367 pr_warn("Turbo disabled by BIOS or unavailable on processor\n");
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700368 return -EPERM;
Dirk Brandewiedd5fbf72014-06-20 07:27:59 -0700369 }
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800370
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700371 limits.no_turbo = clamp_t(int, input, 0, 1);
372
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800373 if (hwp_active)
374 intel_pstate_hwp_set();
375
Dirk Brandewie93f08222013-02-06 09:02:13 -0800376 return count;
377}
378
379static ssize_t store_max_perf_pct(struct kobject *a, struct attribute *b,
Stratos Karafotisc4108332014-07-18 08:37:23 -0700380 const char *buf, size_t count)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800381{
382 unsigned int input;
383 int ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700384
Dirk Brandewie93f08222013-02-06 09:02:13 -0800385 ret = sscanf(buf, "%u", &input);
386 if (ret != 1)
387 return -EINVAL;
388
Dirk Brandewied8f469e2013-05-07 08:20:26 -0700389 limits.max_sysfs_pct = clamp_t(int, input, 0 , 100);
390 limits.max_perf_pct = min(limits.max_policy_pct, limits.max_sysfs_pct);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800391 limits.max_perf = div_fp(int_tofp(limits.max_perf_pct), int_tofp(100));
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700392
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800393 if (hwp_active)
394 intel_pstate_hwp_set();
Dirk Brandewie93f08222013-02-06 09:02:13 -0800395 return count;
396}
397
398static ssize_t store_min_perf_pct(struct kobject *a, struct attribute *b,
Stratos Karafotisc4108332014-07-18 08:37:23 -0700399 const char *buf, size_t count)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800400{
401 unsigned int input;
402 int ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700403
Dirk Brandewie93f08222013-02-06 09:02:13 -0800404 ret = sscanf(buf, "%u", &input);
405 if (ret != 1)
406 return -EINVAL;
407 limits.min_perf_pct = clamp_t(int, input, 0 , 100);
408 limits.min_perf = div_fp(int_tofp(limits.min_perf_pct), int_tofp(100));
409
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800410 if (hwp_active)
411 intel_pstate_hwp_set();
Dirk Brandewie93f08222013-02-06 09:02:13 -0800412 return count;
413}
414
Dirk Brandewie93f08222013-02-06 09:02:13 -0800415show_one(max_perf_pct, max_perf_pct);
416show_one(min_perf_pct, min_perf_pct);
417
418define_one_global_rw(no_turbo);
419define_one_global_rw(max_perf_pct);
420define_one_global_rw(min_perf_pct);
421
422static struct attribute *intel_pstate_attributes[] = {
423 &no_turbo.attr,
424 &max_perf_pct.attr,
425 &min_perf_pct.attr,
426 NULL
427};
428
429static struct attribute_group intel_pstate_attr_group = {
430 .attrs = intel_pstate_attributes,
431};
Dirk Brandewie93f08222013-02-06 09:02:13 -0800432
Stratos Karafotis317dd502014-07-18 08:37:17 -0700433static void __init intel_pstate_sysfs_expose_params(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800434{
Stratos Karafotis317dd502014-07-18 08:37:17 -0700435 struct kobject *intel_pstate_kobject;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800436 int rc;
437
438 intel_pstate_kobject = kobject_create_and_add("intel_pstate",
439 &cpu_subsys.dev_root->kobj);
440 BUG_ON(!intel_pstate_kobject);
Stratos Karafotis2d8d1f12014-07-18 08:37:20 -0700441 rc = sysfs_create_group(intel_pstate_kobject, &intel_pstate_attr_group);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800442 BUG_ON(rc);
443}
Dirk Brandewie93f08222013-02-06 09:02:13 -0800444/************************** sysfs end ************************/
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800445
446static void intel_pstate_hwp_enable(void)
447{
448 hwp_active++;
449 pr_info("intel_pstate HWP enabled\n");
450
451 wrmsrl( MSR_PM_ENABLE, 0x1);
452}
453
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700454static int byt_get_min_pstate(void)
455{
456 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700457
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700458 rdmsrl(BYT_RATIOS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -0700459 return (value >> 8) & 0x7F;
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700460}
Dirk Brandewie93f08222013-02-06 09:02:13 -0800461
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700462static int byt_get_max_pstate(void)
463{
464 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700465
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700466 rdmsrl(BYT_RATIOS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -0700467 return (value >> 16) & 0x7F;
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700468}
469
Dirk Brandewie61d8d2a2014-02-12 10:01:07 -0800470static int byt_get_turbo_pstate(void)
471{
472 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700473
Dirk Brandewie61d8d2a2014-02-12 10:01:07 -0800474 rdmsrl(BYT_TURBO_RATIOS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -0700475 return value & 0x7F;
Dirk Brandewie61d8d2a2014-02-12 10:01:07 -0800476}
477
Dirk Brandewie007bea02013-12-18 10:32:39 -0800478static void byt_set_pstate(struct cpudata *cpudata, int pstate)
479{
480 u64 val;
481 int32_t vid_fp;
482 u32 vid;
483
484 val = pstate << 8;
Dirk Brandewiedd5fbf72014-06-20 07:27:59 -0700485 if (limits.no_turbo && !limits.turbo_disabled)
Dirk Brandewie007bea02013-12-18 10:32:39 -0800486 val |= (u64)1 << 32;
487
488 vid_fp = cpudata->vid.min + mul_fp(
489 int_tofp(pstate - cpudata->pstate.min_pstate),
490 cpudata->vid.ratio);
491
492 vid_fp = clamp_t(int32_t, vid_fp, cpudata->vid.min, cpudata->vid.max);
Dirk Brandewied022a652014-10-13 08:37:44 -0700493 vid = ceiling_fp(vid_fp);
Dirk Brandewie007bea02013-12-18 10:32:39 -0800494
Dirk Brandewie21855ff2014-05-08 12:57:23 -0700495 if (pstate > cpudata->pstate.max_pstate)
496 vid = cpudata->vid.turbo;
497
Dirk Brandewie007bea02013-12-18 10:32:39 -0800498 val |= vid;
499
500 wrmsrl(MSR_IA32_PERF_CTL, val);
501}
502
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700503#define BYT_BCLK_FREQS 5
504static int byt_freq_table[BYT_BCLK_FREQS] = { 833, 1000, 1333, 1167, 800};
505
506static int byt_get_scaling(void)
507{
508 u64 value;
509 int i;
510
511 rdmsrl(MSR_FSB_FREQ, value);
512 i = value & 0x3;
513
514 BUG_ON(i > BYT_BCLK_FREQS);
515
516 return byt_freq_table[i] * 100;
517}
518
Dirk Brandewie007bea02013-12-18 10:32:39 -0800519static void byt_get_vid(struct cpudata *cpudata)
520{
521 u64 value;
522
523 rdmsrl(BYT_VIDS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -0700524 cpudata->vid.min = int_tofp((value >> 8) & 0x7f);
525 cpudata->vid.max = int_tofp((value >> 16) & 0x7f);
Dirk Brandewie007bea02013-12-18 10:32:39 -0800526 cpudata->vid.ratio = div_fp(
527 cpudata->vid.max - cpudata->vid.min,
528 int_tofp(cpudata->pstate.max_pstate -
529 cpudata->pstate.min_pstate));
Dirk Brandewie21855ff2014-05-08 12:57:23 -0700530
531 rdmsrl(BYT_TURBO_VIDS, value);
532 cpudata->vid.turbo = value & 0x7f;
Dirk Brandewie007bea02013-12-18 10:32:39 -0800533}
534
Dirk Brandewie016c8152013-10-21 09:20:34 -0700535static int core_get_min_pstate(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800536{
537 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700538
Konrad Rzeszutek Wilk05e99c8cf2013-03-20 14:21:10 +0000539 rdmsrl(MSR_PLATFORM_INFO, value);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800540 return (value >> 40) & 0xFF;
541}
542
Dirk Brandewie016c8152013-10-21 09:20:34 -0700543static int core_get_max_pstate(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800544{
545 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700546
Konrad Rzeszutek Wilk05e99c8cf2013-03-20 14:21:10 +0000547 rdmsrl(MSR_PLATFORM_INFO, value);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800548 return (value >> 8) & 0xFF;
549}
550
Dirk Brandewie016c8152013-10-21 09:20:34 -0700551static int core_get_turbo_pstate(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800552{
553 u64 value;
554 int nont, ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700555
Konrad Rzeszutek Wilk05e99c8cf2013-03-20 14:21:10 +0000556 rdmsrl(MSR_NHM_TURBO_RATIO_LIMIT, value);
Dirk Brandewie016c8152013-10-21 09:20:34 -0700557 nont = core_get_max_pstate();
Stratos Karafotis285cb992014-07-18 08:37:21 -0700558 ret = (value) & 255;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800559 if (ret <= nont)
560 ret = nont;
561 return ret;
562}
563
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700564static inline int core_get_scaling(void)
565{
566 return 100000;
567}
568
Dirk Brandewie007bea02013-12-18 10:32:39 -0800569static void core_set_pstate(struct cpudata *cpudata, int pstate)
Dirk Brandewie016c8152013-10-21 09:20:34 -0700570{
571 u64 val;
572
573 val = pstate << 8;
Dirk Brandewiedd5fbf72014-06-20 07:27:59 -0700574 if (limits.no_turbo && !limits.turbo_disabled)
Dirk Brandewie016c8152013-10-21 09:20:34 -0700575 val |= (u64)1 << 32;
576
Dirk Brandewiebb180082014-03-19 08:45:54 -0700577 wrmsrl_on_cpu(cpudata->cpu, MSR_IA32_PERF_CTL, val);
Dirk Brandewie016c8152013-10-21 09:20:34 -0700578}
579
580static struct cpu_defaults core_params = {
581 .pid_policy = {
582 .sample_rate_ms = 10,
583 .deadband = 0,
584 .setpoint = 97,
585 .p_gain_pct = 20,
586 .d_gain_pct = 0,
587 .i_gain_pct = 0,
588 },
589 .funcs = {
590 .get_max = core_get_max_pstate,
591 .get_min = core_get_min_pstate,
592 .get_turbo = core_get_turbo_pstate,
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700593 .get_scaling = core_get_scaling,
Dirk Brandewie016c8152013-10-21 09:20:34 -0700594 .set = core_set_pstate,
595 },
596};
597
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700598static struct cpu_defaults byt_params = {
599 .pid_policy = {
600 .sample_rate_ms = 10,
601 .deadband = 0,
602 .setpoint = 97,
603 .p_gain_pct = 14,
604 .d_gain_pct = 0,
605 .i_gain_pct = 4,
606 },
607 .funcs = {
608 .get_max = byt_get_max_pstate,
609 .get_min = byt_get_min_pstate,
Dirk Brandewie61d8d2a2014-02-12 10:01:07 -0800610 .get_turbo = byt_get_turbo_pstate,
Dirk Brandewie007bea02013-12-18 10:32:39 -0800611 .set = byt_set_pstate,
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700612 .get_scaling = byt_get_scaling,
Dirk Brandewie007bea02013-12-18 10:32:39 -0800613 .get_vid = byt_get_vid,
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700614 },
615};
616
Dirk Brandewie93f08222013-02-06 09:02:13 -0800617static void intel_pstate_get_min_max(struct cpudata *cpu, int *min, int *max)
618{
619 int max_perf = cpu->pstate.turbo_pstate;
Dirk Brandewie7244cb62013-10-21 09:20:33 -0700620 int max_perf_adj;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800621 int min_perf;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700622
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700623 if (limits.no_turbo || limits.turbo_disabled)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800624 max_perf = cpu->pstate.max_pstate;
625
Kristen Carlson Accardie0d4c8f2014-12-10 12:39:38 -0800626 /*
627 * performance can be limited by user through sysfs, by cpufreq
628 * policy, or by cpu specific default values determined through
629 * experimentation.
630 */
Dirk Brandewie7244cb62013-10-21 09:20:33 -0700631 max_perf_adj = fp_toint(mul_fp(int_tofp(max_perf), limits.max_perf));
632 *max = clamp_t(int, max_perf_adj,
Dirk Brandewie93f08222013-02-06 09:02:13 -0800633 cpu->pstate.min_pstate, cpu->pstate.turbo_pstate);
634
635 min_perf = fp_toint(mul_fp(int_tofp(max_perf), limits.min_perf));
Stratos Karafotis2d8d1f12014-07-18 08:37:20 -0700636 *min = clamp_t(int, min_perf, cpu->pstate.min_pstate, max_perf);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800637}
638
639static void intel_pstate_set_pstate(struct cpudata *cpu, int pstate)
640{
641 int max_perf, min_perf;
642
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700643 update_turbo_state();
644
Dirk Brandewie93f08222013-02-06 09:02:13 -0800645 intel_pstate_get_min_max(cpu, &min_perf, &max_perf);
646
647 pstate = clamp_t(int, pstate, min_perf, max_perf);
648
649 if (pstate == cpu->pstate.current_pstate)
650 return;
651
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700652 trace_cpu_frequency(pstate * cpu->pstate.scaling, cpu->cpu);
Dirk Brandewie35363e92013-05-07 08:20:30 -0700653
Dirk Brandewie93f08222013-02-06 09:02:13 -0800654 cpu->pstate.current_pstate = pstate;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800655
Dirk Brandewie007bea02013-12-18 10:32:39 -0800656 pstate_funcs.set(cpu, pstate);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800657}
658
Dirk Brandewie93f08222013-02-06 09:02:13 -0800659static void intel_pstate_get_cpu_pstates(struct cpudata *cpu)
660{
Dirk Brandewie016c8152013-10-21 09:20:34 -0700661 cpu->pstate.min_pstate = pstate_funcs.get_min();
662 cpu->pstate.max_pstate = pstate_funcs.get_max();
663 cpu->pstate.turbo_pstate = pstate_funcs.get_turbo();
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700664 cpu->pstate.scaling = pstate_funcs.get_scaling();
Dirk Brandewie93f08222013-02-06 09:02:13 -0800665
Dirk Brandewie007bea02013-12-18 10:32:39 -0800666 if (pstate_funcs.get_vid)
667 pstate_funcs.get_vid(cpu);
Dirk Brandewied40a63c2014-05-08 12:57:24 -0700668 intel_pstate_set_pstate(cpu, cpu->pstate.min_pstate);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800669}
670
Stratos Karafotis6b17ddb2014-04-29 20:53:49 +0300671static inline void intel_pstate_calc_busy(struct cpudata *cpu)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800672{
Stratos Karafotis6b17ddb2014-04-29 20:53:49 +0300673 struct sample *sample = &cpu->sample;
Doug Smythiesbf810222014-05-30 10:10:57 -0700674 int64_t core_pct;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800675
Doug Smythiesbf810222014-05-30 10:10:57 -0700676 core_pct = int_tofp(sample->aperf) * int_tofp(100);
Stratos Karafotis78e27082014-07-18 08:37:27 -0700677 core_pct = div64_u64(core_pct, int_tofp(sample->mperf));
Dirk Brandewiefcb6a152014-02-03 08:55:31 -0800678
Dirk Brandewiefcb6a152014-02-03 08:55:31 -0800679 sample->freq = fp_toint(
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700680 mul_fp(int_tofp(
681 cpu->pstate.max_pstate * cpu->pstate.scaling / 100),
682 core_pct));
Dirk Brandewiefcb6a152014-02-03 08:55:31 -0800683
Doug Smythiesbf810222014-05-30 10:10:57 -0700684 sample->core_pct_busy = (int32_t)core_pct;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800685}
686
687static inline void intel_pstate_sample(struct cpudata *cpu)
688{
Dirk Brandewie93f08222013-02-06 09:02:13 -0800689 u64 aperf, mperf;
Stratos Karafotis4ab60c32014-07-18 08:37:24 -0700690 unsigned long flags;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800691
Stratos Karafotis4ab60c32014-07-18 08:37:24 -0700692 local_irq_save(flags);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800693 rdmsrl(MSR_IA32_APERF, aperf);
694 rdmsrl(MSR_IA32_MPERF, mperf);
Stratos Karafotis4ab60c32014-07-18 08:37:24 -0700695 local_irq_restore(flags);
Dirk Brandewieb69880f2014-01-16 10:32:25 -0800696
Dirk Brandewiec4ee8412014-05-29 09:32:24 -0700697 cpu->last_sample_time = cpu->sample.time;
698 cpu->sample.time = ktime_get();
Dirk Brandewied37e2b72014-02-12 10:01:04 -0800699 cpu->sample.aperf = aperf;
700 cpu->sample.mperf = mperf;
Dirk Brandewied37e2b72014-02-12 10:01:04 -0800701 cpu->sample.aperf -= cpu->prev_aperf;
702 cpu->sample.mperf -= cpu->prev_mperf;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800703
Stratos Karafotis6b17ddb2014-04-29 20:53:49 +0300704 intel_pstate_calc_busy(cpu);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800705
Dirk Brandewie93f08222013-02-06 09:02:13 -0800706 cpu->prev_aperf = aperf;
707 cpu->prev_mperf = mperf;
708}
709
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800710static inline void intel_hwp_set_sample_time(struct cpudata *cpu)
711{
712 int delay;
713
714 delay = msecs_to_jiffies(50);
715 mod_timer_pinned(&cpu->timer, jiffies + delay);
716}
717
Dirk Brandewie93f08222013-02-06 09:02:13 -0800718static inline void intel_pstate_set_sample_time(struct cpudata *cpu)
719{
Stratos Karafotisabf013b2014-07-18 08:37:22 -0700720 int delay;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800721
Stratos Karafotisabf013b2014-07-18 08:37:22 -0700722 delay = msecs_to_jiffies(pid_params.sample_rate_ms);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800723 mod_timer_pinned(&cpu->timer, jiffies + delay);
724}
725
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700726static inline int32_t intel_pstate_get_scaled_busy(struct cpudata *cpu)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800727{
Dirk Brandewiec4ee8412014-05-29 09:32:24 -0700728 int32_t core_busy, max_pstate, current_pstate, sample_ratio;
729 u32 duration_us;
730 u32 sample_time;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800731
Kristen Carlson Accardie0d4c8f2014-12-10 12:39:38 -0800732 /*
733 * core_busy is the ratio of actual performance to max
734 * max_pstate is the max non turbo pstate available
735 * current_pstate was the pstate that was requested during
736 * the last sample period.
737 *
738 * We normalize core_busy, which was our actual percent
739 * performance to what we requested during the last sample
740 * period. The result will be a percentage of busy at a
741 * specified pstate.
742 */
Dirk Brandewied37e2b72014-02-12 10:01:04 -0800743 core_busy = cpu->sample.core_pct_busy;
Dirk Brandewie2134ed42013-07-18 08:48:42 -0700744 max_pstate = int_tofp(cpu->pstate.max_pstate);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800745 current_pstate = int_tofp(cpu->pstate.current_pstate);
Dirk Brandewiee66c1762014-02-25 10:35:37 -0800746 core_busy = mul_fp(core_busy, div_fp(max_pstate, current_pstate));
Dirk Brandewiec4ee8412014-05-29 09:32:24 -0700747
Kristen Carlson Accardie0d4c8f2014-12-10 12:39:38 -0800748 /*
749 * Since we have a deferred timer, it will not fire unless
750 * we are in C0. So, determine if the actual elapsed time
751 * is significantly greater (3x) than our sample interval. If it
752 * is, then we were idle for a long enough period of time
753 * to adjust our busyness.
754 */
Stratos Karafotis285cb992014-07-18 08:37:21 -0700755 sample_time = pid_params.sample_rate_ms * USEC_PER_MSEC;
Dirk Brandewiec4ee8412014-05-29 09:32:24 -0700756 duration_us = (u32) ktime_us_delta(cpu->sample.time,
Stratos Karafotisc4108332014-07-18 08:37:23 -0700757 cpu->last_sample_time);
Dirk Brandewiec4ee8412014-05-29 09:32:24 -0700758 if (duration_us > sample_time * 3) {
759 sample_ratio = div_fp(int_tofp(sample_time),
Stratos Karafotisc4108332014-07-18 08:37:23 -0700760 int_tofp(duration_us));
Dirk Brandewiec4ee8412014-05-29 09:32:24 -0700761 core_busy = mul_fp(core_busy, sample_ratio);
762 }
763
Dirk Brandewief0fe3cd2014-05-29 09:32:23 -0700764 return core_busy;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800765}
766
767static inline void intel_pstate_adjust_busy_pstate(struct cpudata *cpu)
768{
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700769 int32_t busy_scaled;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800770 struct _pid *pid;
Stratos Karafotis4b707c82014-07-18 08:37:26 -0700771 signed int ctl;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800772
773 pid = &cpu->pid;
774 busy_scaled = intel_pstate_get_scaled_busy(cpu);
775
776 ctl = pid_calc(pid, busy_scaled);
777
Stratos Karafotis4b707c82014-07-18 08:37:26 -0700778 /* Negative values of ctl increase the pstate and vice versa */
779 intel_pstate_set_pstate(cpu, cpu->pstate.current_pstate - ctl);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800780}
781
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800782static void intel_hwp_timer_func(unsigned long __data)
783{
784 struct cpudata *cpu = (struct cpudata *) __data;
785
786 intel_pstate_sample(cpu);
787 intel_hwp_set_sample_time(cpu);
788}
789
Dirk Brandewie93f08222013-02-06 09:02:13 -0800790static void intel_pstate_timer_func(unsigned long __data)
791{
792 struct cpudata *cpu = (struct cpudata *) __data;
Dirk Brandewieb69880f2014-01-16 10:32:25 -0800793 struct sample *sample;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800794
795 intel_pstate_sample(cpu);
Dirk Brandewieb69880f2014-01-16 10:32:25 -0800796
Dirk Brandewied37e2b72014-02-12 10:01:04 -0800797 sample = &cpu->sample;
Dirk Brandewieb69880f2014-01-16 10:32:25 -0800798
Dirk Brandewieca182ae2013-05-07 08:20:27 -0700799 intel_pstate_adjust_busy_pstate(cpu);
Dirk Brandewieb69880f2014-01-16 10:32:25 -0800800
801 trace_pstate_sample(fp_toint(sample->core_pct_busy),
802 fp_toint(intel_pstate_get_scaled_busy(cpu)),
803 cpu->pstate.current_pstate,
804 sample->mperf,
805 sample->aperf,
Dirk Brandewieb69880f2014-01-16 10:32:25 -0800806 sample->freq);
807
Dirk Brandewie93f08222013-02-06 09:02:13 -0800808 intel_pstate_set_sample_time(cpu);
809}
810
811#define ICPU(model, policy) \
Dirk Brandewie6cbd7ee2014-01-06 10:59:16 -0800812 { X86_VENDOR_INTEL, 6, model, X86_FEATURE_APERFMPERF,\
813 (unsigned long)&policy }
Dirk Brandewie93f08222013-02-06 09:02:13 -0800814
815static const struct x86_cpu_id intel_pstate_cpu_ids[] = {
Dirk Brandewie016c8152013-10-21 09:20:34 -0700816 ICPU(0x2a, core_params),
817 ICPU(0x2d, core_params),
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700818 ICPU(0x37, byt_params),
Dirk Brandewie016c8152013-10-21 09:20:34 -0700819 ICPU(0x3a, core_params),
820 ICPU(0x3c, core_params),
Dirk Brandewiec7e241d2014-05-08 12:57:27 -0700821 ICPU(0x3d, core_params),
Dirk Brandewie016c8152013-10-21 09:20:34 -0700822 ICPU(0x3e, core_params),
823 ICPU(0x3f, core_params),
824 ICPU(0x45, core_params),
825 ICPU(0x46, core_params),
Dirk Brandewie43f8a962014-11-06 09:50:45 -0800826 ICPU(0x47, core_params),
Mika Westerberg16405f92014-08-22 13:05:44 +0300827 ICPU(0x4c, byt_params),
Kristen Carlson Accardi7ab02562015-01-28 13:53:28 -0800828 ICPU(0x4e, core_params),
Dirk Brandewiec7e241d2014-05-08 12:57:27 -0700829 ICPU(0x4f, core_params),
830 ICPU(0x56, core_params),
Dirk Brandewie93f08222013-02-06 09:02:13 -0800831 {}
832};
833MODULE_DEVICE_TABLE(x86cpu, intel_pstate_cpu_ids);
834
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800835static const struct x86_cpu_id intel_pstate_cpu_oob_ids[] = {
836 ICPU(0x56, core_params),
837 {}
838};
839
Dirk Brandewie93f08222013-02-06 09:02:13 -0800840static int intel_pstate_init_cpu(unsigned int cpunum)
841{
Dirk Brandewie93f08222013-02-06 09:02:13 -0800842 struct cpudata *cpu;
843
Dirk Brandewiec0348712014-10-13 08:37:42 -0700844 if (!all_cpu_data[cpunum])
845 all_cpu_data[cpunum] = kzalloc(sizeof(struct cpudata),
846 GFP_KERNEL);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800847 if (!all_cpu_data[cpunum])
848 return -ENOMEM;
849
850 cpu = all_cpu_data[cpunum];
851
Dirk Brandewie93f08222013-02-06 09:02:13 -0800852 cpu->cpu = cpunum;
Vincent Minet179e8472014-07-05 01:51:33 +0200853 intel_pstate_get_cpu_pstates(cpu);
Dirk Brandewie016c8152013-10-21 09:20:34 -0700854
Dirk Brandewie93f08222013-02-06 09:02:13 -0800855 init_timer_deferrable(&cpu->timer);
Stratos Karafotis2d8d1f12014-07-18 08:37:20 -0700856 cpu->timer.data = (unsigned long)cpu;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800857 cpu->timer.expires = jiffies + HZ/100;
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800858
859 if (!hwp_active)
860 cpu->timer.function = intel_pstate_timer_func;
861 else
862 cpu->timer.function = intel_hwp_timer_func;
863
Dirk Brandewie93f08222013-02-06 09:02:13 -0800864 intel_pstate_busy_pid_reset(cpu);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800865 intel_pstate_sample(cpu);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800866
867 add_timer_on(&cpu->timer, cpunum);
868
Andi Kleence717612014-08-27 10:17:08 -0700869 pr_debug("Intel pstate controlling: cpu %d\n", cpunum);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800870
871 return 0;
872}
873
874static unsigned int intel_pstate_get(unsigned int cpu_num)
875{
876 struct sample *sample;
877 struct cpudata *cpu;
878
879 cpu = all_cpu_data[cpu_num];
880 if (!cpu)
881 return 0;
Dirk Brandewied37e2b72014-02-12 10:01:04 -0800882 sample = &cpu->sample;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800883 return sample->freq;
884}
885
886static int intel_pstate_set_policy(struct cpufreq_policy *policy)
887{
Dirk Brandewied3929b82013-03-05 14:15:26 -0800888 if (!policy->cpuinfo.max_freq)
889 return -ENODEV;
890
Dirk Brandewie93f08222013-02-06 09:02:13 -0800891 if (policy->policy == CPUFREQ_POLICY_PERFORMANCE) {
892 limits.min_perf_pct = 100;
893 limits.min_perf = int_tofp(1);
Pali Rohár36b4bed2014-10-16 01:16:51 +0200894 limits.max_policy_pct = 100;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800895 limits.max_perf_pct = 100;
896 limits.max_perf = int_tofp(1);
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700897 limits.no_turbo = 0;
Srinivas Pandruvadad1b68482013-04-09 22:38:18 +0000898 return 0;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800899 }
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800900
Srinivas Pandruvadad1b68482013-04-09 22:38:18 +0000901 limits.min_perf_pct = (policy->min * 100) / policy->cpuinfo.max_freq;
902 limits.min_perf_pct = clamp_t(int, limits.min_perf_pct, 0 , 100);
903 limits.min_perf = div_fp(int_tofp(limits.min_perf_pct), int_tofp(100));
904
Stratos Karafotis285cb992014-07-18 08:37:21 -0700905 limits.max_policy_pct = (policy->max * 100) / policy->cpuinfo.max_freq;
Dirk Brandewied8f469e2013-05-07 08:20:26 -0700906 limits.max_policy_pct = clamp_t(int, limits.max_policy_pct, 0 , 100);
907 limits.max_perf_pct = min(limits.max_policy_pct, limits.max_sysfs_pct);
Srinivas Pandruvadad1b68482013-04-09 22:38:18 +0000908 limits.max_perf = div_fp(int_tofp(limits.max_perf_pct), int_tofp(100));
Dirk Brandewie93f08222013-02-06 09:02:13 -0800909
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800910 if (hwp_active)
911 intel_pstate_hwp_set();
912
Dirk Brandewie93f08222013-02-06 09:02:13 -0800913 return 0;
914}
915
916static int intel_pstate_verify_policy(struct cpufreq_policy *policy)
917{
Viresh Kumarbe49e342013-10-02 14:13:19 +0530918 cpufreq_verify_within_cpu_limits(policy);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800919
Stratos Karafotis285cb992014-07-18 08:37:21 -0700920 if (policy->policy != CPUFREQ_POLICY_POWERSAVE &&
Stratos Karafotisc4108332014-07-18 08:37:23 -0700921 policy->policy != CPUFREQ_POLICY_PERFORMANCE)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800922 return -EINVAL;
923
924 return 0;
925}
926
Dirk Brandewiebb180082014-03-19 08:45:54 -0700927static void intel_pstate_stop_cpu(struct cpufreq_policy *policy)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800928{
Dirk Brandewiebb180082014-03-19 08:45:54 -0700929 int cpu_num = policy->cpu;
930 struct cpudata *cpu = all_cpu_data[cpu_num];
Dirk Brandewie93f08222013-02-06 09:02:13 -0800931
Dirk Brandewiebb180082014-03-19 08:45:54 -0700932 pr_info("intel_pstate CPU %d exiting\n", cpu_num);
933
Dirk Brandewiec2294a22014-03-24 07:41:29 -0700934 del_timer_sync(&all_cpu_data[cpu_num]->timer);
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800935 if (hwp_active)
936 return;
937
Dirk Brandewiebb180082014-03-19 08:45:54 -0700938 intel_pstate_set_pstate(cpu, cpu->pstate.min_pstate);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800939}
940
Paul Gortmaker27609842013-06-19 13:54:04 -0400941static int intel_pstate_cpu_init(struct cpufreq_policy *policy)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800942{
Dirk Brandewie93f08222013-02-06 09:02:13 -0800943 struct cpudata *cpu;
Dirk Brandewie52e0a502013-10-15 11:06:14 -0700944 int rc;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800945
946 rc = intel_pstate_init_cpu(policy->cpu);
947 if (rc)
948 return rc;
949
950 cpu = all_cpu_data[policy->cpu];
951
Dirk Brandewiedd5fbf72014-06-20 07:27:59 -0700952 if (limits.min_perf_pct == 100 && limits.max_perf_pct == 100)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800953 policy->policy = CPUFREQ_POLICY_PERFORMANCE;
954 else
955 policy->policy = CPUFREQ_POLICY_POWERSAVE;
956
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700957 policy->min = cpu->pstate.min_pstate * cpu->pstate.scaling;
958 policy->max = cpu->pstate.turbo_pstate * cpu->pstate.scaling;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800959
960 /* cpuinfo and default policy values */
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700961 policy->cpuinfo.min_freq = cpu->pstate.min_pstate * cpu->pstate.scaling;
962 policy->cpuinfo.max_freq =
963 cpu->pstate.turbo_pstate * cpu->pstate.scaling;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800964 policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL;
965 cpumask_set_cpu(policy->cpu, policy->cpus);
966
967 return 0;
968}
969
970static struct cpufreq_driver intel_pstate_driver = {
971 .flags = CPUFREQ_CONST_LOOPS,
972 .verify = intel_pstate_verify_policy,
973 .setpolicy = intel_pstate_set_policy,
974 .get = intel_pstate_get,
975 .init = intel_pstate_cpu_init,
Dirk Brandewiebb180082014-03-19 08:45:54 -0700976 .stop_cpu = intel_pstate_stop_cpu,
Dirk Brandewie93f08222013-02-06 09:02:13 -0800977 .name = "intel_pstate",
Dirk Brandewie93f08222013-02-06 09:02:13 -0800978};
979
Dirk Brandewie6be26492013-02-15 22:55:10 +0100980static int __initdata no_load;
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800981static int __initdata no_hwp;
Ethan Zhaoaa4ea342014-12-09 10:43:19 +0900982static unsigned int force_load;
Dirk Brandewie6be26492013-02-15 22:55:10 +0100983
Dirk Brandewieb563b4e2013-03-22 01:29:28 +0100984static int intel_pstate_msrs_not_valid(void)
985{
986 /* Check that all the msr's we are using are valid. */
987 u64 aperf, mperf, tmp;
988
989 rdmsrl(MSR_IA32_APERF, aperf);
990 rdmsrl(MSR_IA32_MPERF, mperf);
991
Dirk Brandewie016c8152013-10-21 09:20:34 -0700992 if (!pstate_funcs.get_max() ||
Stratos Karafotisc4108332014-07-18 08:37:23 -0700993 !pstate_funcs.get_min() ||
994 !pstate_funcs.get_turbo())
Dirk Brandewieb563b4e2013-03-22 01:29:28 +0100995 return -ENODEV;
996
997 rdmsrl(MSR_IA32_APERF, tmp);
998 if (!(tmp - aperf))
999 return -ENODEV;
1000
1001 rdmsrl(MSR_IA32_MPERF, tmp);
1002 if (!(tmp - mperf))
1003 return -ENODEV;
1004
1005 return 0;
1006}
Dirk Brandewie016c8152013-10-21 09:20:34 -07001007
Dirk Brandewiee0a261a2013-10-30 08:38:32 -07001008static void copy_pid_params(struct pstate_adjust_policy *policy)
Dirk Brandewie016c8152013-10-21 09:20:34 -07001009{
1010 pid_params.sample_rate_ms = policy->sample_rate_ms;
1011 pid_params.p_gain_pct = policy->p_gain_pct;
1012 pid_params.i_gain_pct = policy->i_gain_pct;
1013 pid_params.d_gain_pct = policy->d_gain_pct;
1014 pid_params.deadband = policy->deadband;
1015 pid_params.setpoint = policy->setpoint;
1016}
1017
Dirk Brandewiee0a261a2013-10-30 08:38:32 -07001018static void copy_cpu_funcs(struct pstate_funcs *funcs)
Dirk Brandewie016c8152013-10-21 09:20:34 -07001019{
1020 pstate_funcs.get_max = funcs->get_max;
1021 pstate_funcs.get_min = funcs->get_min;
1022 pstate_funcs.get_turbo = funcs->get_turbo;
Dirk Brandewieb27580b2014-10-13 08:37:43 -07001023 pstate_funcs.get_scaling = funcs->get_scaling;
Dirk Brandewie016c8152013-10-21 09:20:34 -07001024 pstate_funcs.set = funcs->set;
Dirk Brandewie007bea02013-12-18 10:32:39 -08001025 pstate_funcs.get_vid = funcs->get_vid;
Dirk Brandewie016c8152013-10-21 09:20:34 -07001026}
1027
Adrian Huangfbbcdc02013-10-31 23:24:05 +08001028#if IS_ENABLED(CONFIG_ACPI)
1029#include <acpi/processor.h>
1030
1031static bool intel_pstate_no_acpi_pss(void)
1032{
1033 int i;
1034
1035 for_each_possible_cpu(i) {
1036 acpi_status status;
1037 union acpi_object *pss;
1038 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1039 struct acpi_processor *pr = per_cpu(processors, i);
1040
1041 if (!pr)
1042 continue;
1043
1044 status = acpi_evaluate_object(pr->handle, "_PSS", NULL, &buffer);
1045 if (ACPI_FAILURE(status))
1046 continue;
1047
1048 pss = buffer.pointer;
1049 if (pss && pss->type == ACPI_TYPE_PACKAGE) {
1050 kfree(pss);
1051 return false;
1052 }
1053
1054 kfree(pss);
1055 }
1056
1057 return true;
1058}
1059
ethan zhao966916e2014-12-01 11:32:08 +09001060static bool intel_pstate_has_acpi_ppc(void)
1061{
1062 int i;
1063
1064 for_each_possible_cpu(i) {
1065 struct acpi_processor *pr = per_cpu(processors, i);
1066
1067 if (!pr)
1068 continue;
1069 if (acpi_has_method(pr->handle, "_PPC"))
1070 return true;
1071 }
1072 return false;
1073}
1074
1075enum {
1076 PSS,
1077 PPC,
1078};
1079
Adrian Huangfbbcdc02013-10-31 23:24:05 +08001080struct hw_vendor_info {
1081 u16 valid;
1082 char oem_id[ACPI_OEM_ID_SIZE];
1083 char oem_table_id[ACPI_OEM_TABLE_ID_SIZE];
ethan zhao966916e2014-12-01 11:32:08 +09001084 int oem_pwr_table;
Adrian Huangfbbcdc02013-10-31 23:24:05 +08001085};
1086
1087/* Hardware vendor-specific info that has its own power management modes */
1088static struct hw_vendor_info vendor_info[] = {
ethan zhao966916e2014-12-01 11:32:08 +09001089 {1, "HP ", "ProLiant", PSS},
1090 {1, "ORACLE", "X4-2 ", PPC},
1091 {1, "ORACLE", "X4-2L ", PPC},
1092 {1, "ORACLE", "X4-2B ", PPC},
1093 {1, "ORACLE", "X3-2 ", PPC},
1094 {1, "ORACLE", "X3-2L ", PPC},
1095 {1, "ORACLE", "X3-2B ", PPC},
1096 {1, "ORACLE", "X4470M2 ", PPC},
1097 {1, "ORACLE", "X4270M3 ", PPC},
1098 {1, "ORACLE", "X4270M2 ", PPC},
1099 {1, "ORACLE", "X4170M2 ", PPC},
Adrian Huangfbbcdc02013-10-31 23:24:05 +08001100 {0, "", ""},
1101};
1102
1103static bool intel_pstate_platform_pwr_mgmt_exists(void)
1104{
1105 struct acpi_table_header hdr;
1106 struct hw_vendor_info *v_info;
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001107 const struct x86_cpu_id *id;
1108 u64 misc_pwr;
1109
1110 id = x86_match_cpu(intel_pstate_cpu_oob_ids);
1111 if (id) {
1112 rdmsrl(MSR_MISC_PWR_MGMT, misc_pwr);
1113 if ( misc_pwr & (1 << 8))
1114 return true;
1115 }
Adrian Huangfbbcdc02013-10-31 23:24:05 +08001116
Stratos Karafotisc4108332014-07-18 08:37:23 -07001117 if (acpi_disabled ||
1118 ACPI_FAILURE(acpi_get_table_header(ACPI_SIG_FADT, 0, &hdr)))
Adrian Huangfbbcdc02013-10-31 23:24:05 +08001119 return false;
1120
1121 for (v_info = vendor_info; v_info->valid; v_info++) {
Stratos Karafotisc4108332014-07-18 08:37:23 -07001122 if (!strncmp(hdr.oem_id, v_info->oem_id, ACPI_OEM_ID_SIZE) &&
ethan zhao966916e2014-12-01 11:32:08 +09001123 !strncmp(hdr.oem_table_id, v_info->oem_table_id,
1124 ACPI_OEM_TABLE_ID_SIZE))
1125 switch (v_info->oem_pwr_table) {
1126 case PSS:
1127 return intel_pstate_no_acpi_pss();
1128 case PPC:
Ethan Zhaoaa4ea342014-12-09 10:43:19 +09001129 return intel_pstate_has_acpi_ppc() &&
1130 (!force_load);
ethan zhao966916e2014-12-01 11:32:08 +09001131 }
Adrian Huangfbbcdc02013-10-31 23:24:05 +08001132 }
1133
1134 return false;
1135}
1136#else /* CONFIG_ACPI not enabled */
1137static inline bool intel_pstate_platform_pwr_mgmt_exists(void) { return false; }
ethan zhao966916e2014-12-01 11:32:08 +09001138static inline bool intel_pstate_has_acpi_ppc(void) { return false; }
Adrian Huangfbbcdc02013-10-31 23:24:05 +08001139#endif /* CONFIG_ACPI */
1140
Dirk Brandewie93f08222013-02-06 09:02:13 -08001141static int __init intel_pstate_init(void)
1142{
Dirk Brandewie907cc902013-03-05 14:15:27 -08001143 int cpu, rc = 0;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001144 const struct x86_cpu_id *id;
Dirk Brandewie016c8152013-10-21 09:20:34 -07001145 struct cpu_defaults *cpu_info;
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001146 struct cpuinfo_x86 *c = &boot_cpu_data;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001147
Dirk Brandewie6be26492013-02-15 22:55:10 +01001148 if (no_load)
1149 return -ENODEV;
1150
Dirk Brandewie93f08222013-02-06 09:02:13 -08001151 id = x86_match_cpu(intel_pstate_cpu_ids);
1152 if (!id)
1153 return -ENODEV;
1154
Adrian Huangfbbcdc02013-10-31 23:24:05 +08001155 /*
1156 * The Intel pstate driver will be ignored if the platform
1157 * firmware has its own power management modes.
1158 */
1159 if (intel_pstate_platform_pwr_mgmt_exists())
1160 return -ENODEV;
1161
Dirk Brandewie016c8152013-10-21 09:20:34 -07001162 cpu_info = (struct cpu_defaults *)id->driver_data;
1163
1164 copy_pid_params(&cpu_info->pid_policy);
1165 copy_cpu_funcs(&cpu_info->funcs);
1166
Dirk Brandewieb563b4e2013-03-22 01:29:28 +01001167 if (intel_pstate_msrs_not_valid())
1168 return -ENODEV;
1169
Dirk Brandewie93f08222013-02-06 09:02:13 -08001170 pr_info("Intel P-state driver initializing.\n");
1171
Wei Yongjunb57ffac2013-05-13 08:03:43 +00001172 all_cpu_data = vzalloc(sizeof(void *) * num_possible_cpus());
Dirk Brandewie93f08222013-02-06 09:02:13 -08001173 if (!all_cpu_data)
1174 return -ENOMEM;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001175
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001176 if (cpu_has(c,X86_FEATURE_HWP) && !no_hwp)
1177 intel_pstate_hwp_enable();
1178
Dirk Brandewie93f08222013-02-06 09:02:13 -08001179 rc = cpufreq_register_driver(&intel_pstate_driver);
1180 if (rc)
1181 goto out;
1182
1183 intel_pstate_debug_expose_params();
1184 intel_pstate_sysfs_expose_params();
Dirk Brandewieb69880f2014-01-16 10:32:25 -08001185
Dirk Brandewie93f08222013-02-06 09:02:13 -08001186 return rc;
1187out:
Dirk Brandewie907cc902013-03-05 14:15:27 -08001188 get_online_cpus();
1189 for_each_online_cpu(cpu) {
1190 if (all_cpu_data[cpu]) {
1191 del_timer_sync(&all_cpu_data[cpu]->timer);
1192 kfree(all_cpu_data[cpu]);
1193 }
1194 }
1195
1196 put_online_cpus();
1197 vfree(all_cpu_data);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001198 return -ENODEV;
1199}
1200device_initcall(intel_pstate_init);
1201
Dirk Brandewie6be26492013-02-15 22:55:10 +01001202static int __init intel_pstate_setup(char *str)
1203{
1204 if (!str)
1205 return -EINVAL;
1206
1207 if (!strcmp(str, "disable"))
1208 no_load = 1;
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001209 if (!strcmp(str, "no_hwp"))
1210 no_hwp = 1;
Ethan Zhaoaa4ea342014-12-09 10:43:19 +09001211 if (!strcmp(str, "force"))
1212 force_load = 1;
Dirk Brandewie6be26492013-02-15 22:55:10 +01001213 return 0;
1214}
1215early_param("intel_pstate", intel_pstate_setup);
1216
Dirk Brandewie93f08222013-02-06 09:02:13 -08001217MODULE_AUTHOR("Dirk Brandewie <dirk.j.brandewie@intel.com>");
1218MODULE_DESCRIPTION("'intel_pstate' - P state driver Intel Core processors");
1219MODULE_LICENSE("GPL");