blob: ba35db092239d3aaeb39842e28581b980c054b60 [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
202 /* limit the integral term */
203 integral_limit = int_tofp(30);
204 if (pid->integral > integral_limit)
205 pid->integral = integral_limit;
206 if (pid->integral < -integral_limit)
207 pid->integral = -integral_limit;
208
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700209 dterm = mul_fp(pid->d_gain, fp_error - pid->last_err);
210 pid->last_err = fp_error;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800211
212 result = pterm + mul_fp(pid->integral, pid->i_gain) + dterm;
Doug Smythies51d211e2014-06-17 13:36:10 -0700213 result = result + (1 << (FRAC_BITS-1));
Dirk Brandewie93f08222013-02-06 09:02:13 -0800214 return (signed int)fp_toint(result);
215}
216
217static inline void intel_pstate_busy_pid_reset(struct cpudata *cpu)
218{
Dirk Brandewie016c8152013-10-21 09:20:34 -0700219 pid_p_gain_set(&cpu->pid, pid_params.p_gain_pct);
220 pid_d_gain_set(&cpu->pid, pid_params.d_gain_pct);
221 pid_i_gain_set(&cpu->pid, pid_params.i_gain_pct);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800222
Stratos Karafotis2d8d1f12014-07-18 08:37:20 -0700223 pid_reset(&cpu->pid, pid_params.setpoint, 100, pid_params.deadband, 0);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800224}
225
Dirk Brandewie93f08222013-02-06 09:02:13 -0800226static inline void intel_pstate_reset_all_pid(void)
227{
228 unsigned int cpu;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700229
Dirk Brandewie93f08222013-02-06 09:02:13 -0800230 for_each_online_cpu(cpu) {
231 if (all_cpu_data[cpu])
232 intel_pstate_busy_pid_reset(all_cpu_data[cpu]);
233 }
234}
235
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700236static inline void update_turbo_state(void)
237{
238 u64 misc_en;
239 struct cpudata *cpu;
240
241 cpu = all_cpu_data[0];
242 rdmsrl(MSR_IA32_MISC_ENABLE, misc_en);
243 limits.turbo_disabled =
244 (misc_en & MSR_IA32_MISC_ENABLE_TURBO_DISABLE ||
245 cpu->pstate.max_pstate == cpu->pstate.turbo_pstate);
246}
247
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800248#define PCT_TO_HWP(x) (x * 255 / 100)
249static void intel_pstate_hwp_set(void)
250{
251 int min, max, cpu;
252 u64 value, freq;
253
254 get_online_cpus();
255
256 for_each_online_cpu(cpu) {
257 rdmsrl_on_cpu(cpu, MSR_HWP_REQUEST, &value);
258 min = PCT_TO_HWP(limits.min_perf_pct);
259 value &= ~HWP_MIN_PERF(~0L);
260 value |= HWP_MIN_PERF(min);
261
262 max = PCT_TO_HWP(limits.max_perf_pct);
263 if (limits.no_turbo) {
264 rdmsrl( MSR_HWP_CAPABILITIES, freq);
265 max = HWP_GUARANTEED_PERF(freq);
266 }
267
268 value &= ~HWP_MAX_PERF(~0L);
269 value |= HWP_MAX_PERF(max);
270 wrmsrl_on_cpu(cpu, MSR_HWP_REQUEST, value);
271 }
272
273 put_online_cpus();
274}
275
Dirk Brandewie93f08222013-02-06 09:02:13 -0800276/************************** debugfs begin ************************/
277static int pid_param_set(void *data, u64 val)
278{
279 *(u32 *)data = val;
280 intel_pstate_reset_all_pid();
281 return 0;
282}
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700283
Dirk Brandewie93f08222013-02-06 09:02:13 -0800284static int pid_param_get(void *data, u64 *val)
285{
286 *val = *(u32 *)data;
287 return 0;
288}
Stratos Karafotis2d8d1f12014-07-18 08:37:20 -0700289DEFINE_SIMPLE_ATTRIBUTE(fops_pid_param, pid_param_get, pid_param_set, "%llu\n");
Dirk Brandewie93f08222013-02-06 09:02:13 -0800290
291struct pid_param {
292 char *name;
293 void *value;
294};
295
296static struct pid_param pid_files[] = {
Dirk Brandewie016c8152013-10-21 09:20:34 -0700297 {"sample_rate_ms", &pid_params.sample_rate_ms},
298 {"d_gain_pct", &pid_params.d_gain_pct},
299 {"i_gain_pct", &pid_params.i_gain_pct},
300 {"deadband", &pid_params.deadband},
301 {"setpoint", &pid_params.setpoint},
302 {"p_gain_pct", &pid_params.p_gain_pct},
Dirk Brandewie93f08222013-02-06 09:02:13 -0800303 {NULL, NULL}
304};
305
Stratos Karafotis317dd502014-07-18 08:37:17 -0700306static void __init intel_pstate_debug_expose_params(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800307{
Stratos Karafotis317dd502014-07-18 08:37:17 -0700308 struct dentry *debugfs_parent;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800309 int i = 0;
310
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800311 if (hwp_active)
312 return;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800313 debugfs_parent = debugfs_create_dir("pstate_snb", NULL);
314 if (IS_ERR_OR_NULL(debugfs_parent))
315 return;
316 while (pid_files[i].name) {
317 debugfs_create_file(pid_files[i].name, 0660,
Stratos Karafotisc4108332014-07-18 08:37:23 -0700318 debugfs_parent, pid_files[i].value,
319 &fops_pid_param);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800320 i++;
321 }
322}
323
324/************************** debugfs end ************************/
325
326/************************** sysfs begin ************************/
327#define show_one(file_name, object) \
328 static ssize_t show_##file_name \
329 (struct kobject *kobj, struct attribute *attr, char *buf) \
330 { \
331 return sprintf(buf, "%u\n", limits.object); \
332 }
333
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700334static ssize_t show_no_turbo(struct kobject *kobj,
335 struct attribute *attr, char *buf)
336{
337 ssize_t ret;
338
339 update_turbo_state();
340 if (limits.turbo_disabled)
341 ret = sprintf(buf, "%u\n", limits.turbo_disabled);
342 else
343 ret = sprintf(buf, "%u\n", limits.no_turbo);
344
345 return ret;
346}
347
Dirk Brandewie93f08222013-02-06 09:02:13 -0800348static ssize_t store_no_turbo(struct kobject *a, struct attribute *b,
Stratos Karafotisc4108332014-07-18 08:37:23 -0700349 const char *buf, size_t count)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800350{
351 unsigned int input;
352 int ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700353
Dirk Brandewie93f08222013-02-06 09:02:13 -0800354 ret = sscanf(buf, "%u", &input);
355 if (ret != 1)
356 return -EINVAL;
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700357
358 update_turbo_state();
Dirk Brandewiedd5fbf72014-06-20 07:27:59 -0700359 if (limits.turbo_disabled) {
360 pr_warn("Turbo disabled by BIOS or unavailable on processor\n");
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700361 return -EPERM;
Dirk Brandewiedd5fbf72014-06-20 07:27:59 -0700362 }
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800363
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700364 limits.no_turbo = clamp_t(int, input, 0, 1);
365
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800366 if (hwp_active)
367 intel_pstate_hwp_set();
368
Dirk Brandewie93f08222013-02-06 09:02:13 -0800369 return count;
370}
371
372static ssize_t store_max_perf_pct(struct kobject *a, struct attribute *b,
Stratos Karafotisc4108332014-07-18 08:37:23 -0700373 const char *buf, size_t count)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800374{
375 unsigned int input;
376 int ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700377
Dirk Brandewie93f08222013-02-06 09:02:13 -0800378 ret = sscanf(buf, "%u", &input);
379 if (ret != 1)
380 return -EINVAL;
381
Dirk Brandewied8f469e2013-05-07 08:20:26 -0700382 limits.max_sysfs_pct = clamp_t(int, input, 0 , 100);
383 limits.max_perf_pct = min(limits.max_policy_pct, limits.max_sysfs_pct);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800384 limits.max_perf = div_fp(int_tofp(limits.max_perf_pct), int_tofp(100));
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700385
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800386 if (hwp_active)
387 intel_pstate_hwp_set();
Dirk Brandewie93f08222013-02-06 09:02:13 -0800388 return count;
389}
390
391static ssize_t store_min_perf_pct(struct kobject *a, struct attribute *b,
Stratos Karafotisc4108332014-07-18 08:37:23 -0700392 const char *buf, size_t count)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800393{
394 unsigned int input;
395 int ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700396
Dirk Brandewie93f08222013-02-06 09:02:13 -0800397 ret = sscanf(buf, "%u", &input);
398 if (ret != 1)
399 return -EINVAL;
400 limits.min_perf_pct = clamp_t(int, input, 0 , 100);
401 limits.min_perf = div_fp(int_tofp(limits.min_perf_pct), int_tofp(100));
402
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800403 if (hwp_active)
404 intel_pstate_hwp_set();
Dirk Brandewie93f08222013-02-06 09:02:13 -0800405 return count;
406}
407
Dirk Brandewie93f08222013-02-06 09:02:13 -0800408show_one(max_perf_pct, max_perf_pct);
409show_one(min_perf_pct, min_perf_pct);
410
411define_one_global_rw(no_turbo);
412define_one_global_rw(max_perf_pct);
413define_one_global_rw(min_perf_pct);
414
415static struct attribute *intel_pstate_attributes[] = {
416 &no_turbo.attr,
417 &max_perf_pct.attr,
418 &min_perf_pct.attr,
419 NULL
420};
421
422static struct attribute_group intel_pstate_attr_group = {
423 .attrs = intel_pstate_attributes,
424};
Dirk Brandewie93f08222013-02-06 09:02:13 -0800425
Stratos Karafotis317dd502014-07-18 08:37:17 -0700426static void __init intel_pstate_sysfs_expose_params(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800427{
Stratos Karafotis317dd502014-07-18 08:37:17 -0700428 struct kobject *intel_pstate_kobject;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800429 int rc;
430
431 intel_pstate_kobject = kobject_create_and_add("intel_pstate",
432 &cpu_subsys.dev_root->kobj);
433 BUG_ON(!intel_pstate_kobject);
Stratos Karafotis2d8d1f12014-07-18 08:37:20 -0700434 rc = sysfs_create_group(intel_pstate_kobject, &intel_pstate_attr_group);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800435 BUG_ON(rc);
436}
Dirk Brandewie93f08222013-02-06 09:02:13 -0800437/************************** sysfs end ************************/
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800438
439static void intel_pstate_hwp_enable(void)
440{
441 hwp_active++;
442 pr_info("intel_pstate HWP enabled\n");
443
444 wrmsrl( MSR_PM_ENABLE, 0x1);
445}
446
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700447static int byt_get_min_pstate(void)
448{
449 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700450
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700451 rdmsrl(BYT_RATIOS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -0700452 return (value >> 8) & 0x7F;
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700453}
Dirk Brandewie93f08222013-02-06 09:02:13 -0800454
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700455static int byt_get_max_pstate(void)
456{
457 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700458
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700459 rdmsrl(BYT_RATIOS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -0700460 return (value >> 16) & 0x7F;
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700461}
462
Dirk Brandewie61d8d2a2014-02-12 10:01:07 -0800463static int byt_get_turbo_pstate(void)
464{
465 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700466
Dirk Brandewie61d8d2a2014-02-12 10:01:07 -0800467 rdmsrl(BYT_TURBO_RATIOS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -0700468 return value & 0x7F;
Dirk Brandewie61d8d2a2014-02-12 10:01:07 -0800469}
470
Dirk Brandewie007bea02013-12-18 10:32:39 -0800471static void byt_set_pstate(struct cpudata *cpudata, int pstate)
472{
473 u64 val;
474 int32_t vid_fp;
475 u32 vid;
476
477 val = pstate << 8;
Dirk Brandewiedd5fbf72014-06-20 07:27:59 -0700478 if (limits.no_turbo && !limits.turbo_disabled)
Dirk Brandewie007bea02013-12-18 10:32:39 -0800479 val |= (u64)1 << 32;
480
481 vid_fp = cpudata->vid.min + mul_fp(
482 int_tofp(pstate - cpudata->pstate.min_pstate),
483 cpudata->vid.ratio);
484
485 vid_fp = clamp_t(int32_t, vid_fp, cpudata->vid.min, cpudata->vid.max);
Dirk Brandewied022a652014-10-13 08:37:44 -0700486 vid = ceiling_fp(vid_fp);
Dirk Brandewie007bea02013-12-18 10:32:39 -0800487
Dirk Brandewie21855ff2014-05-08 12:57:23 -0700488 if (pstate > cpudata->pstate.max_pstate)
489 vid = cpudata->vid.turbo;
490
Dirk Brandewie007bea02013-12-18 10:32:39 -0800491 val |= vid;
492
493 wrmsrl(MSR_IA32_PERF_CTL, val);
494}
495
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700496#define BYT_BCLK_FREQS 5
497static int byt_freq_table[BYT_BCLK_FREQS] = { 833, 1000, 1333, 1167, 800};
498
499static int byt_get_scaling(void)
500{
501 u64 value;
502 int i;
503
504 rdmsrl(MSR_FSB_FREQ, value);
505 i = value & 0x3;
506
507 BUG_ON(i > BYT_BCLK_FREQS);
508
509 return byt_freq_table[i] * 100;
510}
511
Dirk Brandewie007bea02013-12-18 10:32:39 -0800512static void byt_get_vid(struct cpudata *cpudata)
513{
514 u64 value;
515
516 rdmsrl(BYT_VIDS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -0700517 cpudata->vid.min = int_tofp((value >> 8) & 0x7f);
518 cpudata->vid.max = int_tofp((value >> 16) & 0x7f);
Dirk Brandewie007bea02013-12-18 10:32:39 -0800519 cpudata->vid.ratio = div_fp(
520 cpudata->vid.max - cpudata->vid.min,
521 int_tofp(cpudata->pstate.max_pstate -
522 cpudata->pstate.min_pstate));
Dirk Brandewie21855ff2014-05-08 12:57:23 -0700523
524 rdmsrl(BYT_TURBO_VIDS, value);
525 cpudata->vid.turbo = value & 0x7f;
Dirk Brandewie007bea02013-12-18 10:32:39 -0800526}
527
Dirk Brandewie016c8152013-10-21 09:20:34 -0700528static int core_get_min_pstate(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800529{
530 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700531
Konrad Rzeszutek Wilk05e99c8cf2013-03-20 14:21:10 +0000532 rdmsrl(MSR_PLATFORM_INFO, value);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800533 return (value >> 40) & 0xFF;
534}
535
Dirk Brandewie016c8152013-10-21 09:20:34 -0700536static int core_get_max_pstate(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800537{
538 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700539
Konrad Rzeszutek Wilk05e99c8cf2013-03-20 14:21:10 +0000540 rdmsrl(MSR_PLATFORM_INFO, value);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800541 return (value >> 8) & 0xFF;
542}
543
Dirk Brandewie016c8152013-10-21 09:20:34 -0700544static int core_get_turbo_pstate(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800545{
546 u64 value;
547 int nont, ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700548
Konrad Rzeszutek Wilk05e99c8cf2013-03-20 14:21:10 +0000549 rdmsrl(MSR_NHM_TURBO_RATIO_LIMIT, value);
Dirk Brandewie016c8152013-10-21 09:20:34 -0700550 nont = core_get_max_pstate();
Stratos Karafotis285cb992014-07-18 08:37:21 -0700551 ret = (value) & 255;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800552 if (ret <= nont)
553 ret = nont;
554 return ret;
555}
556
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700557static inline int core_get_scaling(void)
558{
559 return 100000;
560}
561
Dirk Brandewie007bea02013-12-18 10:32:39 -0800562static void core_set_pstate(struct cpudata *cpudata, int pstate)
Dirk Brandewie016c8152013-10-21 09:20:34 -0700563{
564 u64 val;
565
566 val = pstate << 8;
Dirk Brandewiedd5fbf72014-06-20 07:27:59 -0700567 if (limits.no_turbo && !limits.turbo_disabled)
Dirk Brandewie016c8152013-10-21 09:20:34 -0700568 val |= (u64)1 << 32;
569
Dirk Brandewiebb180082014-03-19 08:45:54 -0700570 wrmsrl_on_cpu(cpudata->cpu, MSR_IA32_PERF_CTL, val);
Dirk Brandewie016c8152013-10-21 09:20:34 -0700571}
572
573static struct cpu_defaults core_params = {
574 .pid_policy = {
575 .sample_rate_ms = 10,
576 .deadband = 0,
577 .setpoint = 97,
578 .p_gain_pct = 20,
579 .d_gain_pct = 0,
580 .i_gain_pct = 0,
581 },
582 .funcs = {
583 .get_max = core_get_max_pstate,
584 .get_min = core_get_min_pstate,
585 .get_turbo = core_get_turbo_pstate,
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700586 .get_scaling = core_get_scaling,
Dirk Brandewie016c8152013-10-21 09:20:34 -0700587 .set = core_set_pstate,
588 },
589};
590
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700591static struct cpu_defaults byt_params = {
592 .pid_policy = {
593 .sample_rate_ms = 10,
594 .deadband = 0,
595 .setpoint = 97,
596 .p_gain_pct = 14,
597 .d_gain_pct = 0,
598 .i_gain_pct = 4,
599 },
600 .funcs = {
601 .get_max = byt_get_max_pstate,
602 .get_min = byt_get_min_pstate,
Dirk Brandewie61d8d2a2014-02-12 10:01:07 -0800603 .get_turbo = byt_get_turbo_pstate,
Dirk Brandewie007bea02013-12-18 10:32:39 -0800604 .set = byt_set_pstate,
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700605 .get_scaling = byt_get_scaling,
Dirk Brandewie007bea02013-12-18 10:32:39 -0800606 .get_vid = byt_get_vid,
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700607 },
608};
609
Dirk Brandewie93f08222013-02-06 09:02:13 -0800610static void intel_pstate_get_min_max(struct cpudata *cpu, int *min, int *max)
611{
612 int max_perf = cpu->pstate.turbo_pstate;
Dirk Brandewie7244cb62013-10-21 09:20:33 -0700613 int max_perf_adj;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800614 int min_perf;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700615
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700616 if (limits.no_turbo || limits.turbo_disabled)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800617 max_perf = cpu->pstate.max_pstate;
618
Dirk Brandewie7244cb62013-10-21 09:20:33 -0700619 max_perf_adj = fp_toint(mul_fp(int_tofp(max_perf), limits.max_perf));
620 *max = clamp_t(int, max_perf_adj,
Dirk Brandewie93f08222013-02-06 09:02:13 -0800621 cpu->pstate.min_pstate, cpu->pstate.turbo_pstate);
622
623 min_perf = fp_toint(mul_fp(int_tofp(max_perf), limits.min_perf));
Stratos Karafotis2d8d1f12014-07-18 08:37:20 -0700624 *min = clamp_t(int, min_perf, cpu->pstate.min_pstate, max_perf);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800625}
626
627static void intel_pstate_set_pstate(struct cpudata *cpu, int pstate)
628{
629 int max_perf, min_perf;
630
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700631 update_turbo_state();
632
Dirk Brandewie93f08222013-02-06 09:02:13 -0800633 intel_pstate_get_min_max(cpu, &min_perf, &max_perf);
634
635 pstate = clamp_t(int, pstate, min_perf, max_perf);
636
637 if (pstate == cpu->pstate.current_pstate)
638 return;
639
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700640 trace_cpu_frequency(pstate * cpu->pstate.scaling, cpu->cpu);
Dirk Brandewie35363e92013-05-07 08:20:30 -0700641
Dirk Brandewie93f08222013-02-06 09:02:13 -0800642 cpu->pstate.current_pstate = pstate;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800643
Dirk Brandewie007bea02013-12-18 10:32:39 -0800644 pstate_funcs.set(cpu, pstate);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800645}
646
Dirk Brandewie93f08222013-02-06 09:02:13 -0800647static void intel_pstate_get_cpu_pstates(struct cpudata *cpu)
648{
Dirk Brandewie016c8152013-10-21 09:20:34 -0700649 cpu->pstate.min_pstate = pstate_funcs.get_min();
650 cpu->pstate.max_pstate = pstate_funcs.get_max();
651 cpu->pstate.turbo_pstate = pstate_funcs.get_turbo();
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700652 cpu->pstate.scaling = pstate_funcs.get_scaling();
Dirk Brandewie93f08222013-02-06 09:02:13 -0800653
Dirk Brandewie007bea02013-12-18 10:32:39 -0800654 if (pstate_funcs.get_vid)
655 pstate_funcs.get_vid(cpu);
Dirk Brandewied40a63c2014-05-08 12:57:24 -0700656 intel_pstate_set_pstate(cpu, cpu->pstate.min_pstate);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800657}
658
Stratos Karafotis6b17ddb2014-04-29 20:53:49 +0300659static inline void intel_pstate_calc_busy(struct cpudata *cpu)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800660{
Stratos Karafotis6b17ddb2014-04-29 20:53:49 +0300661 struct sample *sample = &cpu->sample;
Doug Smythiesbf810222014-05-30 10:10:57 -0700662 int64_t core_pct;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800663
Doug Smythiesbf810222014-05-30 10:10:57 -0700664 core_pct = int_tofp(sample->aperf) * int_tofp(100);
Stratos Karafotis78e27082014-07-18 08:37:27 -0700665 core_pct = div64_u64(core_pct, int_tofp(sample->mperf));
Dirk Brandewiefcb6a152014-02-03 08:55:31 -0800666
Dirk Brandewiefcb6a152014-02-03 08:55:31 -0800667 sample->freq = fp_toint(
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700668 mul_fp(int_tofp(
669 cpu->pstate.max_pstate * cpu->pstate.scaling / 100),
670 core_pct));
Dirk Brandewiefcb6a152014-02-03 08:55:31 -0800671
Doug Smythiesbf810222014-05-30 10:10:57 -0700672 sample->core_pct_busy = (int32_t)core_pct;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800673}
674
675static inline void intel_pstate_sample(struct cpudata *cpu)
676{
Dirk Brandewie93f08222013-02-06 09:02:13 -0800677 u64 aperf, mperf;
Stratos Karafotis4ab60c32014-07-18 08:37:24 -0700678 unsigned long flags;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800679
Stratos Karafotis4ab60c32014-07-18 08:37:24 -0700680 local_irq_save(flags);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800681 rdmsrl(MSR_IA32_APERF, aperf);
682 rdmsrl(MSR_IA32_MPERF, mperf);
Stratos Karafotis4ab60c32014-07-18 08:37:24 -0700683 local_irq_restore(flags);
Dirk Brandewieb69880f2014-01-16 10:32:25 -0800684
Dirk Brandewiec4ee8412014-05-29 09:32:24 -0700685 cpu->last_sample_time = cpu->sample.time;
686 cpu->sample.time = ktime_get();
Dirk Brandewied37e2b72014-02-12 10:01:04 -0800687 cpu->sample.aperf = aperf;
688 cpu->sample.mperf = mperf;
Dirk Brandewied37e2b72014-02-12 10:01:04 -0800689 cpu->sample.aperf -= cpu->prev_aperf;
690 cpu->sample.mperf -= cpu->prev_mperf;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800691
Stratos Karafotis6b17ddb2014-04-29 20:53:49 +0300692 intel_pstate_calc_busy(cpu);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800693
Dirk Brandewie93f08222013-02-06 09:02:13 -0800694 cpu->prev_aperf = aperf;
695 cpu->prev_mperf = mperf;
696}
697
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800698static inline void intel_hwp_set_sample_time(struct cpudata *cpu)
699{
700 int delay;
701
702 delay = msecs_to_jiffies(50);
703 mod_timer_pinned(&cpu->timer, jiffies + delay);
704}
705
Dirk Brandewie93f08222013-02-06 09:02:13 -0800706static inline void intel_pstate_set_sample_time(struct cpudata *cpu)
707{
Stratos Karafotisabf013b2014-07-18 08:37:22 -0700708 int delay;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800709
Stratos Karafotisabf013b2014-07-18 08:37:22 -0700710 delay = msecs_to_jiffies(pid_params.sample_rate_ms);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800711 mod_timer_pinned(&cpu->timer, jiffies + delay);
712}
713
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700714static inline int32_t intel_pstate_get_scaled_busy(struct cpudata *cpu)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800715{
Dirk Brandewiec4ee8412014-05-29 09:32:24 -0700716 int32_t core_busy, max_pstate, current_pstate, sample_ratio;
717 u32 duration_us;
718 u32 sample_time;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800719
Dirk Brandewied37e2b72014-02-12 10:01:04 -0800720 core_busy = cpu->sample.core_pct_busy;
Dirk Brandewie2134ed42013-07-18 08:48:42 -0700721 max_pstate = int_tofp(cpu->pstate.max_pstate);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800722 current_pstate = int_tofp(cpu->pstate.current_pstate);
Dirk Brandewiee66c1762014-02-25 10:35:37 -0800723 core_busy = mul_fp(core_busy, div_fp(max_pstate, current_pstate));
Dirk Brandewiec4ee8412014-05-29 09:32:24 -0700724
Stratos Karafotis285cb992014-07-18 08:37:21 -0700725 sample_time = pid_params.sample_rate_ms * USEC_PER_MSEC;
Dirk Brandewiec4ee8412014-05-29 09:32:24 -0700726 duration_us = (u32) ktime_us_delta(cpu->sample.time,
Stratos Karafotisc4108332014-07-18 08:37:23 -0700727 cpu->last_sample_time);
Dirk Brandewiec4ee8412014-05-29 09:32:24 -0700728 if (duration_us > sample_time * 3) {
729 sample_ratio = div_fp(int_tofp(sample_time),
Stratos Karafotisc4108332014-07-18 08:37:23 -0700730 int_tofp(duration_us));
Dirk Brandewiec4ee8412014-05-29 09:32:24 -0700731 core_busy = mul_fp(core_busy, sample_ratio);
732 }
733
Dirk Brandewief0fe3cd2014-05-29 09:32:23 -0700734 return core_busy;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800735}
736
737static inline void intel_pstate_adjust_busy_pstate(struct cpudata *cpu)
738{
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700739 int32_t busy_scaled;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800740 struct _pid *pid;
Stratos Karafotis4b707c82014-07-18 08:37:26 -0700741 signed int ctl;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800742
743 pid = &cpu->pid;
744 busy_scaled = intel_pstate_get_scaled_busy(cpu);
745
746 ctl = pid_calc(pid, busy_scaled);
747
Stratos Karafotis4b707c82014-07-18 08:37:26 -0700748 /* Negative values of ctl increase the pstate and vice versa */
749 intel_pstate_set_pstate(cpu, cpu->pstate.current_pstate - ctl);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800750}
751
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800752static void intel_hwp_timer_func(unsigned long __data)
753{
754 struct cpudata *cpu = (struct cpudata *) __data;
755
756 intel_pstate_sample(cpu);
757 intel_hwp_set_sample_time(cpu);
758}
759
Dirk Brandewie93f08222013-02-06 09:02:13 -0800760static void intel_pstate_timer_func(unsigned long __data)
761{
762 struct cpudata *cpu = (struct cpudata *) __data;
Dirk Brandewieb69880f2014-01-16 10:32:25 -0800763 struct sample *sample;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800764
765 intel_pstate_sample(cpu);
Dirk Brandewieb69880f2014-01-16 10:32:25 -0800766
Dirk Brandewied37e2b72014-02-12 10:01:04 -0800767 sample = &cpu->sample;
Dirk Brandewieb69880f2014-01-16 10:32:25 -0800768
Dirk Brandewieca182ae2013-05-07 08:20:27 -0700769 intel_pstate_adjust_busy_pstate(cpu);
Dirk Brandewieb69880f2014-01-16 10:32:25 -0800770
771 trace_pstate_sample(fp_toint(sample->core_pct_busy),
772 fp_toint(intel_pstate_get_scaled_busy(cpu)),
773 cpu->pstate.current_pstate,
774 sample->mperf,
775 sample->aperf,
Dirk Brandewieb69880f2014-01-16 10:32:25 -0800776 sample->freq);
777
Dirk Brandewie93f08222013-02-06 09:02:13 -0800778 intel_pstate_set_sample_time(cpu);
779}
780
781#define ICPU(model, policy) \
Dirk Brandewie6cbd7ee2014-01-06 10:59:16 -0800782 { X86_VENDOR_INTEL, 6, model, X86_FEATURE_APERFMPERF,\
783 (unsigned long)&policy }
Dirk Brandewie93f08222013-02-06 09:02:13 -0800784
785static const struct x86_cpu_id intel_pstate_cpu_ids[] = {
Dirk Brandewie016c8152013-10-21 09:20:34 -0700786 ICPU(0x2a, core_params),
787 ICPU(0x2d, core_params),
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700788 ICPU(0x37, byt_params),
Dirk Brandewie016c8152013-10-21 09:20:34 -0700789 ICPU(0x3a, core_params),
790 ICPU(0x3c, core_params),
Dirk Brandewiec7e241d2014-05-08 12:57:27 -0700791 ICPU(0x3d, core_params),
Dirk Brandewie016c8152013-10-21 09:20:34 -0700792 ICPU(0x3e, core_params),
793 ICPU(0x3f, core_params),
794 ICPU(0x45, core_params),
795 ICPU(0x46, core_params),
Mika Westerberg16405f92014-08-22 13:05:44 +0300796 ICPU(0x4c, byt_params),
Dirk Brandewiec7e241d2014-05-08 12:57:27 -0700797 ICPU(0x4f, core_params),
798 ICPU(0x56, core_params),
Dirk Brandewie93f08222013-02-06 09:02:13 -0800799 {}
800};
801MODULE_DEVICE_TABLE(x86cpu, intel_pstate_cpu_ids);
802
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800803static const struct x86_cpu_id intel_pstate_cpu_oob_ids[] = {
804 ICPU(0x56, core_params),
805 {}
806};
807
Dirk Brandewie93f08222013-02-06 09:02:13 -0800808static int intel_pstate_init_cpu(unsigned int cpunum)
809{
Dirk Brandewie93f08222013-02-06 09:02:13 -0800810 struct cpudata *cpu;
811
Dirk Brandewiec0348712014-10-13 08:37:42 -0700812 if (!all_cpu_data[cpunum])
813 all_cpu_data[cpunum] = kzalloc(sizeof(struct cpudata),
814 GFP_KERNEL);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800815 if (!all_cpu_data[cpunum])
816 return -ENOMEM;
817
818 cpu = all_cpu_data[cpunum];
819
Dirk Brandewie93f08222013-02-06 09:02:13 -0800820 cpu->cpu = cpunum;
Vincent Minet179e8472014-07-05 01:51:33 +0200821 intel_pstate_get_cpu_pstates(cpu);
Dirk Brandewie016c8152013-10-21 09:20:34 -0700822
Dirk Brandewie93f08222013-02-06 09:02:13 -0800823 init_timer_deferrable(&cpu->timer);
Stratos Karafotis2d8d1f12014-07-18 08:37:20 -0700824 cpu->timer.data = (unsigned long)cpu;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800825 cpu->timer.expires = jiffies + HZ/100;
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800826
827 if (!hwp_active)
828 cpu->timer.function = intel_pstate_timer_func;
829 else
830 cpu->timer.function = intel_hwp_timer_func;
831
Dirk Brandewie93f08222013-02-06 09:02:13 -0800832 intel_pstate_busy_pid_reset(cpu);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800833 intel_pstate_sample(cpu);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800834
835 add_timer_on(&cpu->timer, cpunum);
836
Andi Kleence717612014-08-27 10:17:08 -0700837 pr_debug("Intel pstate controlling: cpu %d\n", cpunum);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800838
839 return 0;
840}
841
842static unsigned int intel_pstate_get(unsigned int cpu_num)
843{
844 struct sample *sample;
845 struct cpudata *cpu;
846
847 cpu = all_cpu_data[cpu_num];
848 if (!cpu)
849 return 0;
Dirk Brandewied37e2b72014-02-12 10:01:04 -0800850 sample = &cpu->sample;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800851 return sample->freq;
852}
853
854static int intel_pstate_set_policy(struct cpufreq_policy *policy)
855{
Dirk Brandewied3929b82013-03-05 14:15:26 -0800856 if (!policy->cpuinfo.max_freq)
857 return -ENODEV;
858
Dirk Brandewie93f08222013-02-06 09:02:13 -0800859 if (policy->policy == CPUFREQ_POLICY_PERFORMANCE) {
860 limits.min_perf_pct = 100;
861 limits.min_perf = int_tofp(1);
Pali Rohár36b4bed2014-10-16 01:16:51 +0200862 limits.max_policy_pct = 100;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800863 limits.max_perf_pct = 100;
864 limits.max_perf = int_tofp(1);
Gabriele Mazzotta4521e1a02014-10-13 08:37:41 -0700865 limits.no_turbo = 0;
Srinivas Pandruvadad1b68482013-04-09 22:38:18 +0000866 return 0;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800867 }
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800868
Srinivas Pandruvadad1b68482013-04-09 22:38:18 +0000869 limits.min_perf_pct = (policy->min * 100) / policy->cpuinfo.max_freq;
870 limits.min_perf_pct = clamp_t(int, limits.min_perf_pct, 0 , 100);
871 limits.min_perf = div_fp(int_tofp(limits.min_perf_pct), int_tofp(100));
872
Stratos Karafotis285cb992014-07-18 08:37:21 -0700873 limits.max_policy_pct = (policy->max * 100) / policy->cpuinfo.max_freq;
Dirk Brandewied8f469e2013-05-07 08:20:26 -0700874 limits.max_policy_pct = clamp_t(int, limits.max_policy_pct, 0 , 100);
875 limits.max_perf_pct = min(limits.max_policy_pct, limits.max_sysfs_pct);
Srinivas Pandruvadad1b68482013-04-09 22:38:18 +0000876 limits.max_perf = div_fp(int_tofp(limits.max_perf_pct), int_tofp(100));
Dirk Brandewie93f08222013-02-06 09:02:13 -0800877
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800878 if (hwp_active)
879 intel_pstate_hwp_set();
880
Dirk Brandewie93f08222013-02-06 09:02:13 -0800881 return 0;
882}
883
884static int intel_pstate_verify_policy(struct cpufreq_policy *policy)
885{
Viresh Kumarbe49e342013-10-02 14:13:19 +0530886 cpufreq_verify_within_cpu_limits(policy);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800887
Stratos Karafotis285cb992014-07-18 08:37:21 -0700888 if (policy->policy != CPUFREQ_POLICY_POWERSAVE &&
Stratos Karafotisc4108332014-07-18 08:37:23 -0700889 policy->policy != CPUFREQ_POLICY_PERFORMANCE)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800890 return -EINVAL;
891
892 return 0;
893}
894
Dirk Brandewiebb180082014-03-19 08:45:54 -0700895static void intel_pstate_stop_cpu(struct cpufreq_policy *policy)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800896{
Dirk Brandewiebb180082014-03-19 08:45:54 -0700897 int cpu_num = policy->cpu;
898 struct cpudata *cpu = all_cpu_data[cpu_num];
Dirk Brandewie93f08222013-02-06 09:02:13 -0800899
Dirk Brandewiebb180082014-03-19 08:45:54 -0700900 pr_info("intel_pstate CPU %d exiting\n", cpu_num);
901
Dirk Brandewiec2294a22014-03-24 07:41:29 -0700902 del_timer_sync(&all_cpu_data[cpu_num]->timer);
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800903 if (hwp_active)
904 return;
905
Dirk Brandewiebb180082014-03-19 08:45:54 -0700906 intel_pstate_set_pstate(cpu, cpu->pstate.min_pstate);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800907}
908
Paul Gortmaker27609842013-06-19 13:54:04 -0400909static int intel_pstate_cpu_init(struct cpufreq_policy *policy)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800910{
Dirk Brandewie93f08222013-02-06 09:02:13 -0800911 struct cpudata *cpu;
Dirk Brandewie52e0a502013-10-15 11:06:14 -0700912 int rc;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800913
914 rc = intel_pstate_init_cpu(policy->cpu);
915 if (rc)
916 return rc;
917
918 cpu = all_cpu_data[policy->cpu];
919
Dirk Brandewiedd5fbf72014-06-20 07:27:59 -0700920 if (limits.min_perf_pct == 100 && limits.max_perf_pct == 100)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800921 policy->policy = CPUFREQ_POLICY_PERFORMANCE;
922 else
923 policy->policy = CPUFREQ_POLICY_POWERSAVE;
924
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700925 policy->min = cpu->pstate.min_pstate * cpu->pstate.scaling;
926 policy->max = cpu->pstate.turbo_pstate * cpu->pstate.scaling;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800927
928 /* cpuinfo and default policy values */
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700929 policy->cpuinfo.min_freq = cpu->pstate.min_pstate * cpu->pstate.scaling;
930 policy->cpuinfo.max_freq =
931 cpu->pstate.turbo_pstate * cpu->pstate.scaling;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800932 policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL;
933 cpumask_set_cpu(policy->cpu, policy->cpus);
934
935 return 0;
936}
937
938static struct cpufreq_driver intel_pstate_driver = {
939 .flags = CPUFREQ_CONST_LOOPS,
940 .verify = intel_pstate_verify_policy,
941 .setpolicy = intel_pstate_set_policy,
942 .get = intel_pstate_get,
943 .init = intel_pstate_cpu_init,
Dirk Brandewiebb180082014-03-19 08:45:54 -0700944 .stop_cpu = intel_pstate_stop_cpu,
Dirk Brandewie93f08222013-02-06 09:02:13 -0800945 .name = "intel_pstate",
Dirk Brandewie93f08222013-02-06 09:02:13 -0800946};
947
Dirk Brandewie6be26492013-02-15 22:55:10 +0100948static int __initdata no_load;
Dirk Brandewie2f86dc42014-11-06 09:40:47 -0800949static int __initdata no_hwp;
Dirk Brandewie6be26492013-02-15 22:55:10 +0100950
Dirk Brandewieb563b4e2013-03-22 01:29:28 +0100951static int intel_pstate_msrs_not_valid(void)
952{
953 /* Check that all the msr's we are using are valid. */
954 u64 aperf, mperf, tmp;
955
956 rdmsrl(MSR_IA32_APERF, aperf);
957 rdmsrl(MSR_IA32_MPERF, mperf);
958
Dirk Brandewie016c8152013-10-21 09:20:34 -0700959 if (!pstate_funcs.get_max() ||
Stratos Karafotisc4108332014-07-18 08:37:23 -0700960 !pstate_funcs.get_min() ||
961 !pstate_funcs.get_turbo())
Dirk Brandewieb563b4e2013-03-22 01:29:28 +0100962 return -ENODEV;
963
964 rdmsrl(MSR_IA32_APERF, tmp);
965 if (!(tmp - aperf))
966 return -ENODEV;
967
968 rdmsrl(MSR_IA32_MPERF, tmp);
969 if (!(tmp - mperf))
970 return -ENODEV;
971
972 return 0;
973}
Dirk Brandewie016c8152013-10-21 09:20:34 -0700974
Dirk Brandewiee0a261a2013-10-30 08:38:32 -0700975static void copy_pid_params(struct pstate_adjust_policy *policy)
Dirk Brandewie016c8152013-10-21 09:20:34 -0700976{
977 pid_params.sample_rate_ms = policy->sample_rate_ms;
978 pid_params.p_gain_pct = policy->p_gain_pct;
979 pid_params.i_gain_pct = policy->i_gain_pct;
980 pid_params.d_gain_pct = policy->d_gain_pct;
981 pid_params.deadband = policy->deadband;
982 pid_params.setpoint = policy->setpoint;
983}
984
Dirk Brandewiee0a261a2013-10-30 08:38:32 -0700985static void copy_cpu_funcs(struct pstate_funcs *funcs)
Dirk Brandewie016c8152013-10-21 09:20:34 -0700986{
987 pstate_funcs.get_max = funcs->get_max;
988 pstate_funcs.get_min = funcs->get_min;
989 pstate_funcs.get_turbo = funcs->get_turbo;
Dirk Brandewieb27580b2014-10-13 08:37:43 -0700990 pstate_funcs.get_scaling = funcs->get_scaling;
Dirk Brandewie016c8152013-10-21 09:20:34 -0700991 pstate_funcs.set = funcs->set;
Dirk Brandewie007bea02013-12-18 10:32:39 -0800992 pstate_funcs.get_vid = funcs->get_vid;
Dirk Brandewie016c8152013-10-21 09:20:34 -0700993}
994
Adrian Huangfbbcdc02013-10-31 23:24:05 +0800995#if IS_ENABLED(CONFIG_ACPI)
996#include <acpi/processor.h>
997
998static bool intel_pstate_no_acpi_pss(void)
999{
1000 int i;
1001
1002 for_each_possible_cpu(i) {
1003 acpi_status status;
1004 union acpi_object *pss;
1005 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1006 struct acpi_processor *pr = per_cpu(processors, i);
1007
1008 if (!pr)
1009 continue;
1010
1011 status = acpi_evaluate_object(pr->handle, "_PSS", NULL, &buffer);
1012 if (ACPI_FAILURE(status))
1013 continue;
1014
1015 pss = buffer.pointer;
1016 if (pss && pss->type == ACPI_TYPE_PACKAGE) {
1017 kfree(pss);
1018 return false;
1019 }
1020
1021 kfree(pss);
1022 }
1023
1024 return true;
1025}
1026
1027struct hw_vendor_info {
1028 u16 valid;
1029 char oem_id[ACPI_OEM_ID_SIZE];
1030 char oem_table_id[ACPI_OEM_TABLE_ID_SIZE];
1031};
1032
1033/* Hardware vendor-specific info that has its own power management modes */
1034static struct hw_vendor_info vendor_info[] = {
1035 {1, "HP ", "ProLiant"},
1036 {0, "", ""},
1037};
1038
1039static bool intel_pstate_platform_pwr_mgmt_exists(void)
1040{
1041 struct acpi_table_header hdr;
1042 struct hw_vendor_info *v_info;
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001043 const struct x86_cpu_id *id;
1044 u64 misc_pwr;
1045
1046 id = x86_match_cpu(intel_pstate_cpu_oob_ids);
1047 if (id) {
1048 rdmsrl(MSR_MISC_PWR_MGMT, misc_pwr);
1049 if ( misc_pwr & (1 << 8))
1050 return true;
1051 }
Adrian Huangfbbcdc02013-10-31 23:24:05 +08001052
Stratos Karafotisc4108332014-07-18 08:37:23 -07001053 if (acpi_disabled ||
1054 ACPI_FAILURE(acpi_get_table_header(ACPI_SIG_FADT, 0, &hdr)))
Adrian Huangfbbcdc02013-10-31 23:24:05 +08001055 return false;
1056
1057 for (v_info = vendor_info; v_info->valid; v_info++) {
Stratos Karafotisc4108332014-07-18 08:37:23 -07001058 if (!strncmp(hdr.oem_id, v_info->oem_id, ACPI_OEM_ID_SIZE) &&
1059 !strncmp(hdr.oem_table_id, v_info->oem_table_id, ACPI_OEM_TABLE_ID_SIZE) &&
1060 intel_pstate_no_acpi_pss())
Adrian Huangfbbcdc02013-10-31 23:24:05 +08001061 return true;
1062 }
1063
1064 return false;
1065}
1066#else /* CONFIG_ACPI not enabled */
1067static inline bool intel_pstate_platform_pwr_mgmt_exists(void) { return false; }
1068#endif /* CONFIG_ACPI */
1069
Dirk Brandewie93f08222013-02-06 09:02:13 -08001070static int __init intel_pstate_init(void)
1071{
Dirk Brandewie907cc902013-03-05 14:15:27 -08001072 int cpu, rc = 0;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001073 const struct x86_cpu_id *id;
Dirk Brandewie016c8152013-10-21 09:20:34 -07001074 struct cpu_defaults *cpu_info;
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001075 struct cpuinfo_x86 *c = &boot_cpu_data;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001076
Dirk Brandewie6be26492013-02-15 22:55:10 +01001077 if (no_load)
1078 return -ENODEV;
1079
Dirk Brandewie93f08222013-02-06 09:02:13 -08001080 id = x86_match_cpu(intel_pstate_cpu_ids);
1081 if (!id)
1082 return -ENODEV;
1083
Adrian Huangfbbcdc02013-10-31 23:24:05 +08001084 /*
1085 * The Intel pstate driver will be ignored if the platform
1086 * firmware has its own power management modes.
1087 */
1088 if (intel_pstate_platform_pwr_mgmt_exists())
1089 return -ENODEV;
1090
Dirk Brandewie016c8152013-10-21 09:20:34 -07001091 cpu_info = (struct cpu_defaults *)id->driver_data;
1092
1093 copy_pid_params(&cpu_info->pid_policy);
1094 copy_cpu_funcs(&cpu_info->funcs);
1095
Dirk Brandewieb563b4e2013-03-22 01:29:28 +01001096 if (intel_pstate_msrs_not_valid())
1097 return -ENODEV;
1098
Dirk Brandewie93f08222013-02-06 09:02:13 -08001099 pr_info("Intel P-state driver initializing.\n");
1100
Wei Yongjunb57ffac2013-05-13 08:03:43 +00001101 all_cpu_data = vzalloc(sizeof(void *) * num_possible_cpus());
Dirk Brandewie93f08222013-02-06 09:02:13 -08001102 if (!all_cpu_data)
1103 return -ENOMEM;
Dirk Brandewie93f08222013-02-06 09:02:13 -08001104
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001105 if (cpu_has(c,X86_FEATURE_HWP) && !no_hwp)
1106 intel_pstate_hwp_enable();
1107
Dirk Brandewie93f08222013-02-06 09:02:13 -08001108 rc = cpufreq_register_driver(&intel_pstate_driver);
1109 if (rc)
1110 goto out;
1111
1112 intel_pstate_debug_expose_params();
1113 intel_pstate_sysfs_expose_params();
Dirk Brandewieb69880f2014-01-16 10:32:25 -08001114
Dirk Brandewie93f08222013-02-06 09:02:13 -08001115 return rc;
1116out:
Dirk Brandewie907cc902013-03-05 14:15:27 -08001117 get_online_cpus();
1118 for_each_online_cpu(cpu) {
1119 if (all_cpu_data[cpu]) {
1120 del_timer_sync(&all_cpu_data[cpu]->timer);
1121 kfree(all_cpu_data[cpu]);
1122 }
1123 }
1124
1125 put_online_cpus();
1126 vfree(all_cpu_data);
Dirk Brandewie93f08222013-02-06 09:02:13 -08001127 return -ENODEV;
1128}
1129device_initcall(intel_pstate_init);
1130
Dirk Brandewie6be26492013-02-15 22:55:10 +01001131static int __init intel_pstate_setup(char *str)
1132{
1133 if (!str)
1134 return -EINVAL;
1135
1136 if (!strcmp(str, "disable"))
1137 no_load = 1;
Dirk Brandewie2f86dc42014-11-06 09:40:47 -08001138 if (!strcmp(str, "no_hwp"))
1139 no_hwp = 1;
Dirk Brandewie6be26492013-02-15 22:55:10 +01001140 return 0;
1141}
1142early_param("intel_pstate", intel_pstate_setup);
1143
Dirk Brandewie93f08222013-02-06 09:02:13 -08001144MODULE_AUTHOR("Dirk Brandewie <dirk.j.brandewie@intel.com>");
1145MODULE_DESCRIPTION("'intel_pstate' - P state driver Intel Core processors");
1146MODULE_LICENSE("GPL");