blob: c84b280238a4aacf08980392f2ad8caff6abc6fe [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
35#define SAMPLE_COUNT 3
36
Dirk Brandewie19e77c22013-10-21 09:20:35 -070037#define BYT_RATIOS 0x66a
Dirk Brandewie007bea02013-12-18 10:32:39 -080038#define BYT_VIDS 0x66b
Dirk Brandewie19e77c22013-10-21 09:20:35 -070039
Dirk Brandewie93f08222013-02-06 09:02:13 -080040#define FRAC_BITS 8
41#define int_tofp(X) ((int64_t)(X) << FRAC_BITS)
42#define fp_toint(X) ((X) >> FRAC_BITS)
43
44static inline int32_t mul_fp(int32_t x, int32_t y)
45{
46 return ((int64_t)x * (int64_t)y) >> FRAC_BITS;
47}
48
49static inline int32_t div_fp(int32_t x, int32_t y)
50{
51 return div_s64((int64_t)x << FRAC_BITS, (int64_t)y);
52}
53
54struct sample {
Brennan Shacklettd253d2a2013-10-21 09:20:32 -070055 int32_t core_pct_busy;
Dirk Brandewie93f08222013-02-06 09:02:13 -080056 u64 aperf;
57 u64 mperf;
58 int freq;
59};
60
61struct pstate_data {
62 int current_pstate;
63 int min_pstate;
64 int max_pstate;
65 int turbo_pstate;
66};
67
Dirk Brandewie007bea02013-12-18 10:32:39 -080068struct vid_data {
69 int32_t min;
70 int32_t max;
71 int32_t ratio;
72};
73
Dirk Brandewie93f08222013-02-06 09:02:13 -080074struct _pid {
75 int setpoint;
76 int32_t integral;
77 int32_t p_gain;
78 int32_t i_gain;
79 int32_t d_gain;
80 int deadband;
Brennan Shacklettd253d2a2013-10-21 09:20:32 -070081 int32_t last_err;
Dirk Brandewie93f08222013-02-06 09:02:13 -080082};
83
84struct cpudata {
85 int cpu;
86
87 char name[64];
88
89 struct timer_list timer;
90
Dirk Brandewie93f08222013-02-06 09:02:13 -080091 struct pstate_data pstate;
Dirk Brandewie007bea02013-12-18 10:32:39 -080092 struct vid_data vid;
Dirk Brandewie93f08222013-02-06 09:02:13 -080093 struct _pid pid;
Dirk Brandewie93f08222013-02-06 09:02:13 -080094
95 int min_pstate_count;
Dirk Brandewie93f08222013-02-06 09:02:13 -080096
Dirk Brandewie93f08222013-02-06 09:02:13 -080097 u64 prev_aperf;
98 u64 prev_mperf;
99 int sample_ptr;
100 struct sample samples[SAMPLE_COUNT];
101};
102
103static struct cpudata **all_cpu_data;
104struct pstate_adjust_policy {
105 int sample_rate_ms;
106 int deadband;
107 int setpoint;
108 int p_gain_pct;
109 int d_gain_pct;
110 int i_gain_pct;
111};
112
Dirk Brandewie016c8152013-10-21 09:20:34 -0700113struct pstate_funcs {
114 int (*get_max)(void);
115 int (*get_min)(void);
116 int (*get_turbo)(void);
Dirk Brandewie007bea02013-12-18 10:32:39 -0800117 void (*set)(struct cpudata*, int pstate);
118 void (*get_vid)(struct cpudata *);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800119};
120
Dirk Brandewie016c8152013-10-21 09:20:34 -0700121struct cpu_defaults {
122 struct pstate_adjust_policy pid_policy;
123 struct pstate_funcs funcs;
124};
125
126static struct pstate_adjust_policy pid_params;
127static struct pstate_funcs pstate_funcs;
128
Dirk Brandewie93f08222013-02-06 09:02:13 -0800129struct perf_limits {
130 int no_turbo;
131 int max_perf_pct;
132 int min_perf_pct;
133 int32_t max_perf;
134 int32_t min_perf;
Dirk Brandewied8f469e2013-05-07 08:20:26 -0700135 int max_policy_pct;
136 int max_sysfs_pct;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800137};
138
139static struct perf_limits limits = {
140 .no_turbo = 0,
141 .max_perf_pct = 100,
142 .max_perf = int_tofp(1),
143 .min_perf_pct = 0,
144 .min_perf = 0,
Dirk Brandewied8f469e2013-05-07 08:20:26 -0700145 .max_policy_pct = 100,
146 .max_sysfs_pct = 100,
Dirk Brandewie93f08222013-02-06 09:02:13 -0800147};
148
149static inline void pid_reset(struct _pid *pid, int setpoint, int busy,
150 int deadband, int integral) {
151 pid->setpoint = setpoint;
152 pid->deadband = deadband;
153 pid->integral = int_tofp(integral);
154 pid->last_err = setpoint - busy;
155}
156
157static inline void pid_p_gain_set(struct _pid *pid, int percent)
158{
159 pid->p_gain = div_fp(int_tofp(percent), int_tofp(100));
160}
161
162static inline void pid_i_gain_set(struct _pid *pid, int percent)
163{
164 pid->i_gain = div_fp(int_tofp(percent), int_tofp(100));
165}
166
167static inline void pid_d_gain_set(struct _pid *pid, int percent)
168{
169
170 pid->d_gain = div_fp(int_tofp(percent), int_tofp(100));
171}
172
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700173static signed int pid_calc(struct _pid *pid, int32_t busy)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800174{
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700175 signed int result;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800176 int32_t pterm, dterm, fp_error;
177 int32_t integral_limit;
178
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700179 fp_error = int_tofp(pid->setpoint) - busy;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800180
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700181 if (abs(fp_error) <= int_tofp(pid->deadband))
Dirk Brandewie93f08222013-02-06 09:02:13 -0800182 return 0;
183
184 pterm = mul_fp(pid->p_gain, fp_error);
185
186 pid->integral += fp_error;
187
188 /* limit the integral term */
189 integral_limit = int_tofp(30);
190 if (pid->integral > integral_limit)
191 pid->integral = integral_limit;
192 if (pid->integral < -integral_limit)
193 pid->integral = -integral_limit;
194
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700195 dterm = mul_fp(pid->d_gain, fp_error - pid->last_err);
196 pid->last_err = fp_error;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800197
198 result = pterm + mul_fp(pid->integral, pid->i_gain) + dterm;
199
200 return (signed int)fp_toint(result);
201}
202
203static inline void intel_pstate_busy_pid_reset(struct cpudata *cpu)
204{
Dirk Brandewie016c8152013-10-21 09:20:34 -0700205 pid_p_gain_set(&cpu->pid, pid_params.p_gain_pct);
206 pid_d_gain_set(&cpu->pid, pid_params.d_gain_pct);
207 pid_i_gain_set(&cpu->pid, pid_params.i_gain_pct);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800208
209 pid_reset(&cpu->pid,
Dirk Brandewie016c8152013-10-21 09:20:34 -0700210 pid_params.setpoint,
Dirk Brandewie93f08222013-02-06 09:02:13 -0800211 100,
Dirk Brandewie016c8152013-10-21 09:20:34 -0700212 pid_params.deadband,
Dirk Brandewie93f08222013-02-06 09:02:13 -0800213 0);
214}
215
Dirk Brandewie93f08222013-02-06 09:02:13 -0800216static inline void intel_pstate_reset_all_pid(void)
217{
218 unsigned int cpu;
219 for_each_online_cpu(cpu) {
220 if (all_cpu_data[cpu])
221 intel_pstate_busy_pid_reset(all_cpu_data[cpu]);
222 }
223}
224
225/************************** debugfs begin ************************/
226static int pid_param_set(void *data, u64 val)
227{
228 *(u32 *)data = val;
229 intel_pstate_reset_all_pid();
230 return 0;
231}
232static int pid_param_get(void *data, u64 *val)
233{
234 *val = *(u32 *)data;
235 return 0;
236}
237DEFINE_SIMPLE_ATTRIBUTE(fops_pid_param, pid_param_get,
238 pid_param_set, "%llu\n");
239
240struct pid_param {
241 char *name;
242 void *value;
243};
244
245static struct pid_param pid_files[] = {
Dirk Brandewie016c8152013-10-21 09:20:34 -0700246 {"sample_rate_ms", &pid_params.sample_rate_ms},
247 {"d_gain_pct", &pid_params.d_gain_pct},
248 {"i_gain_pct", &pid_params.i_gain_pct},
249 {"deadband", &pid_params.deadband},
250 {"setpoint", &pid_params.setpoint},
251 {"p_gain_pct", &pid_params.p_gain_pct},
Dirk Brandewie93f08222013-02-06 09:02:13 -0800252 {NULL, NULL}
253};
254
255static struct dentry *debugfs_parent;
256static void intel_pstate_debug_expose_params(void)
257{
258 int i = 0;
259
260 debugfs_parent = debugfs_create_dir("pstate_snb", NULL);
261 if (IS_ERR_OR_NULL(debugfs_parent))
262 return;
263 while (pid_files[i].name) {
264 debugfs_create_file(pid_files[i].name, 0660,
265 debugfs_parent, pid_files[i].value,
266 &fops_pid_param);
267 i++;
268 }
269}
270
271/************************** debugfs end ************************/
272
273/************************** sysfs begin ************************/
274#define show_one(file_name, object) \
275 static ssize_t show_##file_name \
276 (struct kobject *kobj, struct attribute *attr, char *buf) \
277 { \
278 return sprintf(buf, "%u\n", limits.object); \
279 }
280
281static ssize_t store_no_turbo(struct kobject *a, struct attribute *b,
282 const char *buf, size_t count)
283{
284 unsigned int input;
285 int ret;
286 ret = sscanf(buf, "%u", &input);
287 if (ret != 1)
288 return -EINVAL;
289 limits.no_turbo = clamp_t(int, input, 0 , 1);
290
291 return count;
292}
293
294static ssize_t store_max_perf_pct(struct kobject *a, struct attribute *b,
295 const char *buf, size_t count)
296{
297 unsigned int input;
298 int ret;
299 ret = sscanf(buf, "%u", &input);
300 if (ret != 1)
301 return -EINVAL;
302
Dirk Brandewied8f469e2013-05-07 08:20:26 -0700303 limits.max_sysfs_pct = clamp_t(int, input, 0 , 100);
304 limits.max_perf_pct = min(limits.max_policy_pct, limits.max_sysfs_pct);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800305 limits.max_perf = div_fp(int_tofp(limits.max_perf_pct), int_tofp(100));
306 return count;
307}
308
309static ssize_t store_min_perf_pct(struct kobject *a, struct attribute *b,
310 const char *buf, size_t count)
311{
312 unsigned int input;
313 int ret;
314 ret = sscanf(buf, "%u", &input);
315 if (ret != 1)
316 return -EINVAL;
317 limits.min_perf_pct = clamp_t(int, input, 0 , 100);
318 limits.min_perf = div_fp(int_tofp(limits.min_perf_pct), int_tofp(100));
319
320 return count;
321}
322
323show_one(no_turbo, no_turbo);
324show_one(max_perf_pct, max_perf_pct);
325show_one(min_perf_pct, min_perf_pct);
326
327define_one_global_rw(no_turbo);
328define_one_global_rw(max_perf_pct);
329define_one_global_rw(min_perf_pct);
330
331static struct attribute *intel_pstate_attributes[] = {
332 &no_turbo.attr,
333 &max_perf_pct.attr,
334 &min_perf_pct.attr,
335 NULL
336};
337
338static struct attribute_group intel_pstate_attr_group = {
339 .attrs = intel_pstate_attributes,
340};
341static struct kobject *intel_pstate_kobject;
342
343static void intel_pstate_sysfs_expose_params(void)
344{
345 int rc;
346
347 intel_pstate_kobject = kobject_create_and_add("intel_pstate",
348 &cpu_subsys.dev_root->kobj);
349 BUG_ON(!intel_pstate_kobject);
350 rc = sysfs_create_group(intel_pstate_kobject,
351 &intel_pstate_attr_group);
352 BUG_ON(rc);
353}
354
355/************************** sysfs end ************************/
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700356static int byt_get_min_pstate(void)
357{
358 u64 value;
359 rdmsrl(BYT_RATIOS, value);
360 return value & 0xFF;
361}
Dirk Brandewie93f08222013-02-06 09:02:13 -0800362
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700363static int byt_get_max_pstate(void)
364{
365 u64 value;
366 rdmsrl(BYT_RATIOS, value);
367 return (value >> 16) & 0xFF;
368}
369
Dirk Brandewie007bea02013-12-18 10:32:39 -0800370static void byt_set_pstate(struct cpudata *cpudata, int pstate)
371{
372 u64 val;
373 int32_t vid_fp;
374 u32 vid;
375
376 val = pstate << 8;
377 if (limits.no_turbo)
378 val |= (u64)1 << 32;
379
380 vid_fp = cpudata->vid.min + mul_fp(
381 int_tofp(pstate - cpudata->pstate.min_pstate),
382 cpudata->vid.ratio);
383
384 vid_fp = clamp_t(int32_t, vid_fp, cpudata->vid.min, cpudata->vid.max);
385 vid = fp_toint(vid_fp);
386
387 val |= vid;
388
389 wrmsrl(MSR_IA32_PERF_CTL, val);
390}
391
392static void byt_get_vid(struct cpudata *cpudata)
393{
394 u64 value;
395
396 rdmsrl(BYT_VIDS, value);
397 cpudata->vid.min = int_tofp((value >> 8) & 0x7f);
398 cpudata->vid.max = int_tofp((value >> 16) & 0x7f);
399 cpudata->vid.ratio = div_fp(
400 cpudata->vid.max - cpudata->vid.min,
401 int_tofp(cpudata->pstate.max_pstate -
402 cpudata->pstate.min_pstate));
403}
404
405
Dirk Brandewie016c8152013-10-21 09:20:34 -0700406static int core_get_min_pstate(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800407{
408 u64 value;
Konrad Rzeszutek Wilk05e99c8cf2013-03-20 14:21:10 +0000409 rdmsrl(MSR_PLATFORM_INFO, value);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800410 return (value >> 40) & 0xFF;
411}
412
Dirk Brandewie016c8152013-10-21 09:20:34 -0700413static int core_get_max_pstate(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800414{
415 u64 value;
Konrad Rzeszutek Wilk05e99c8cf2013-03-20 14:21:10 +0000416 rdmsrl(MSR_PLATFORM_INFO, value);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800417 return (value >> 8) & 0xFF;
418}
419
Dirk Brandewie016c8152013-10-21 09:20:34 -0700420static int core_get_turbo_pstate(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800421{
422 u64 value;
423 int nont, ret;
Konrad Rzeszutek Wilk05e99c8cf2013-03-20 14:21:10 +0000424 rdmsrl(MSR_NHM_TURBO_RATIO_LIMIT, value);
Dirk Brandewie016c8152013-10-21 09:20:34 -0700425 nont = core_get_max_pstate();
Dirk Brandewie93f08222013-02-06 09:02:13 -0800426 ret = ((value) & 255);
427 if (ret <= nont)
428 ret = nont;
429 return ret;
430}
431
Dirk Brandewie007bea02013-12-18 10:32:39 -0800432static void core_set_pstate(struct cpudata *cpudata, int pstate)
Dirk Brandewie016c8152013-10-21 09:20:34 -0700433{
434 u64 val;
435
436 val = pstate << 8;
437 if (limits.no_turbo)
438 val |= (u64)1 << 32;
439
440 wrmsrl(MSR_IA32_PERF_CTL, val);
441}
442
443static struct cpu_defaults core_params = {
444 .pid_policy = {
445 .sample_rate_ms = 10,
446 .deadband = 0,
447 .setpoint = 97,
448 .p_gain_pct = 20,
449 .d_gain_pct = 0,
450 .i_gain_pct = 0,
451 },
452 .funcs = {
453 .get_max = core_get_max_pstate,
454 .get_min = core_get_min_pstate,
455 .get_turbo = core_get_turbo_pstate,
456 .set = core_set_pstate,
457 },
458};
459
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700460static struct cpu_defaults byt_params = {
461 .pid_policy = {
462 .sample_rate_ms = 10,
463 .deadband = 0,
464 .setpoint = 97,
465 .p_gain_pct = 14,
466 .d_gain_pct = 0,
467 .i_gain_pct = 4,
468 },
469 .funcs = {
470 .get_max = byt_get_max_pstate,
471 .get_min = byt_get_min_pstate,
472 .get_turbo = byt_get_max_pstate,
Dirk Brandewie007bea02013-12-18 10:32:39 -0800473 .set = byt_set_pstate,
474 .get_vid = byt_get_vid,
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700475 },
476};
477
478
Dirk Brandewie93f08222013-02-06 09:02:13 -0800479static void intel_pstate_get_min_max(struct cpudata *cpu, int *min, int *max)
480{
481 int max_perf = cpu->pstate.turbo_pstate;
Dirk Brandewie7244cb62013-10-21 09:20:33 -0700482 int max_perf_adj;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800483 int min_perf;
484 if (limits.no_turbo)
485 max_perf = cpu->pstate.max_pstate;
486
Dirk Brandewie7244cb62013-10-21 09:20:33 -0700487 max_perf_adj = fp_toint(mul_fp(int_tofp(max_perf), limits.max_perf));
488 *max = clamp_t(int, max_perf_adj,
Dirk Brandewie93f08222013-02-06 09:02:13 -0800489 cpu->pstate.min_pstate, cpu->pstate.turbo_pstate);
490
491 min_perf = fp_toint(mul_fp(int_tofp(max_perf), limits.min_perf));
492 *min = clamp_t(int, min_perf,
493 cpu->pstate.min_pstate, max_perf);
494}
495
496static void intel_pstate_set_pstate(struct cpudata *cpu, int pstate)
497{
498 int max_perf, min_perf;
499
500 intel_pstate_get_min_max(cpu, &min_perf, &max_perf);
501
502 pstate = clamp_t(int, pstate, min_perf, max_perf);
503
504 if (pstate == cpu->pstate.current_pstate)
505 return;
506
Dirk Brandewie93f08222013-02-06 09:02:13 -0800507 trace_cpu_frequency(pstate * 100000, cpu->cpu);
Dirk Brandewie35363e92013-05-07 08:20:30 -0700508
Dirk Brandewie93f08222013-02-06 09:02:13 -0800509 cpu->pstate.current_pstate = pstate;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800510
Dirk Brandewie007bea02013-12-18 10:32:39 -0800511 pstate_funcs.set(cpu, pstate);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800512}
513
514static inline void intel_pstate_pstate_increase(struct cpudata *cpu, int steps)
515{
516 int target;
517 target = cpu->pstate.current_pstate + steps;
518
519 intel_pstate_set_pstate(cpu, target);
520}
521
522static inline void intel_pstate_pstate_decrease(struct cpudata *cpu, int steps)
523{
524 int target;
525 target = cpu->pstate.current_pstate - steps;
526 intel_pstate_set_pstate(cpu, target);
527}
528
529static void intel_pstate_get_cpu_pstates(struct cpudata *cpu)
530{
531 sprintf(cpu->name, "Intel 2nd generation core");
532
Dirk Brandewie016c8152013-10-21 09:20:34 -0700533 cpu->pstate.min_pstate = pstate_funcs.get_min();
534 cpu->pstate.max_pstate = pstate_funcs.get_max();
535 cpu->pstate.turbo_pstate = pstate_funcs.get_turbo();
Dirk Brandewie93f08222013-02-06 09:02:13 -0800536
Dirk Brandewie007bea02013-12-18 10:32:39 -0800537 if (pstate_funcs.get_vid)
538 pstate_funcs.get_vid(cpu);
539
Dirk Brandewie93f08222013-02-06 09:02:13 -0800540 /*
541 * goto max pstate so we don't slow up boot if we are built-in if we are
542 * a module we will take care of it during normal operation
543 */
544 intel_pstate_set_pstate(cpu, cpu->pstate.max_pstate);
545}
546
547static inline void intel_pstate_calc_busy(struct cpudata *cpu,
548 struct sample *sample)
549{
550 u64 core_pct;
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700551 core_pct = div64_u64(int_tofp(sample->aperf * 100),
552 sample->mperf);
553 sample->freq = fp_toint(cpu->pstate.max_pstate * core_pct * 1000);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800554
Dirk Brandewie1abc4b22013-05-07 08:20:25 -0700555 sample->core_pct_busy = core_pct;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800556}
557
558static inline void intel_pstate_sample(struct cpudata *cpu)
559{
Dirk Brandewie93f08222013-02-06 09:02:13 -0800560 u64 aperf, mperf;
561
Dirk Brandewie93f08222013-02-06 09:02:13 -0800562 rdmsrl(MSR_IA32_APERF, aperf);
563 rdmsrl(MSR_IA32_MPERF, mperf);
Dirk Brandewie1abc4b22013-05-07 08:20:25 -0700564 cpu->sample_ptr = (cpu->sample_ptr + 1) % SAMPLE_COUNT;
565 cpu->samples[cpu->sample_ptr].aperf = aperf;
566 cpu->samples[cpu->sample_ptr].mperf = mperf;
567 cpu->samples[cpu->sample_ptr].aperf -= cpu->prev_aperf;
568 cpu->samples[cpu->sample_ptr].mperf -= cpu->prev_mperf;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800569
Dirk Brandewie1abc4b22013-05-07 08:20:25 -0700570 intel_pstate_calc_busy(cpu, &cpu->samples[cpu->sample_ptr]);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800571
Dirk Brandewie93f08222013-02-06 09:02:13 -0800572 cpu->prev_aperf = aperf;
573 cpu->prev_mperf = mperf;
574}
575
576static inline void intel_pstate_set_sample_time(struct cpudata *cpu)
577{
578 int sample_time, delay;
579
Dirk Brandewie016c8152013-10-21 09:20:34 -0700580 sample_time = pid_params.sample_rate_ms;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800581 delay = msecs_to_jiffies(sample_time);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800582 mod_timer_pinned(&cpu->timer, jiffies + delay);
583}
584
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700585static inline int32_t intel_pstate_get_scaled_busy(struct cpudata *cpu)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800586{
Dirk Brandewie2134ed42013-07-18 08:48:42 -0700587 int32_t core_busy, max_pstate, current_pstate;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800588
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700589 core_busy = cpu->samples[cpu->sample_ptr].core_pct_busy;
Dirk Brandewie2134ed42013-07-18 08:48:42 -0700590 max_pstate = int_tofp(cpu->pstate.max_pstate);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800591 current_pstate = int_tofp(cpu->pstate.current_pstate);
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700592 return mul_fp(core_busy, div_fp(max_pstate, current_pstate));
Dirk Brandewie93f08222013-02-06 09:02:13 -0800593}
594
595static inline void intel_pstate_adjust_busy_pstate(struct cpudata *cpu)
596{
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700597 int32_t busy_scaled;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800598 struct _pid *pid;
599 signed int ctl = 0;
600 int steps;
601
602 pid = &cpu->pid;
603 busy_scaled = intel_pstate_get_scaled_busy(cpu);
604
605 ctl = pid_calc(pid, busy_scaled);
606
607 steps = abs(ctl);
608 if (ctl < 0)
609 intel_pstate_pstate_increase(cpu, steps);
610 else
611 intel_pstate_pstate_decrease(cpu, steps);
612}
613
Dirk Brandewie93f08222013-02-06 09:02:13 -0800614static void intel_pstate_timer_func(unsigned long __data)
615{
616 struct cpudata *cpu = (struct cpudata *) __data;
617
618 intel_pstate_sample(cpu);
Dirk Brandewieca182ae2013-05-07 08:20:27 -0700619 intel_pstate_adjust_busy_pstate(cpu);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800620
Dirk Brandewie93f08222013-02-06 09:02:13 -0800621 if (cpu->pstate.current_pstate == cpu->pstate.min_pstate) {
622 cpu->min_pstate_count++;
623 if (!(cpu->min_pstate_count % 5)) {
624 intel_pstate_set_pstate(cpu, cpu->pstate.max_pstate);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800625 }
626 } else
627 cpu->min_pstate_count = 0;
Dirk Brandewieca182ae2013-05-07 08:20:27 -0700628
Dirk Brandewie93f08222013-02-06 09:02:13 -0800629 intel_pstate_set_sample_time(cpu);
630}
631
632#define ICPU(model, policy) \
633 { X86_VENDOR_INTEL, 6, model, X86_FEATURE_ANY, (unsigned long)&policy }
634
635static const struct x86_cpu_id intel_pstate_cpu_ids[] = {
Dirk Brandewie016c8152013-10-21 09:20:34 -0700636 ICPU(0x2a, core_params),
637 ICPU(0x2d, core_params),
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700638 ICPU(0x37, byt_params),
Dirk Brandewie016c8152013-10-21 09:20:34 -0700639 ICPU(0x3a, core_params),
640 ICPU(0x3c, core_params),
641 ICPU(0x3e, core_params),
642 ICPU(0x3f, core_params),
643 ICPU(0x45, core_params),
644 ICPU(0x46, core_params),
Dirk Brandewie93f08222013-02-06 09:02:13 -0800645 {}
646};
647MODULE_DEVICE_TABLE(x86cpu, intel_pstate_cpu_ids);
648
649static int intel_pstate_init_cpu(unsigned int cpunum)
650{
651
652 const struct x86_cpu_id *id;
653 struct cpudata *cpu;
654
655 id = x86_match_cpu(intel_pstate_cpu_ids);
656 if (!id)
657 return -ENODEV;
658
659 all_cpu_data[cpunum] = kzalloc(sizeof(struct cpudata), GFP_KERNEL);
660 if (!all_cpu_data[cpunum])
661 return -ENOMEM;
662
663 cpu = all_cpu_data[cpunum];
664
665 intel_pstate_get_cpu_pstates(cpu);
666
667 cpu->cpu = cpunum;
Dirk Brandewie016c8152013-10-21 09:20:34 -0700668
Dirk Brandewie93f08222013-02-06 09:02:13 -0800669 init_timer_deferrable(&cpu->timer);
670 cpu->timer.function = intel_pstate_timer_func;
671 cpu->timer.data =
672 (unsigned long)cpu;
673 cpu->timer.expires = jiffies + HZ/100;
674 intel_pstate_busy_pid_reset(cpu);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800675 intel_pstate_sample(cpu);
676 intel_pstate_set_pstate(cpu, cpu->pstate.max_pstate);
677
678 add_timer_on(&cpu->timer, cpunum);
679
680 pr_info("Intel pstate controlling: cpu %d\n", cpunum);
681
682 return 0;
683}
684
685static unsigned int intel_pstate_get(unsigned int cpu_num)
686{
687 struct sample *sample;
688 struct cpudata *cpu;
689
690 cpu = all_cpu_data[cpu_num];
691 if (!cpu)
692 return 0;
693 sample = &cpu->samples[cpu->sample_ptr];
694 return sample->freq;
695}
696
697static int intel_pstate_set_policy(struct cpufreq_policy *policy)
698{
699 struct cpudata *cpu;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800700
701 cpu = all_cpu_data[policy->cpu];
702
Dirk Brandewied3929b82013-03-05 14:15:26 -0800703 if (!policy->cpuinfo.max_freq)
704 return -ENODEV;
705
Dirk Brandewie93f08222013-02-06 09:02:13 -0800706 if (policy->policy == CPUFREQ_POLICY_PERFORMANCE) {
707 limits.min_perf_pct = 100;
708 limits.min_perf = int_tofp(1);
709 limits.max_perf_pct = 100;
710 limits.max_perf = int_tofp(1);
711 limits.no_turbo = 0;
Srinivas Pandruvadad1b68482013-04-09 22:38:18 +0000712 return 0;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800713 }
Srinivas Pandruvadad1b68482013-04-09 22:38:18 +0000714 limits.min_perf_pct = (policy->min * 100) / policy->cpuinfo.max_freq;
715 limits.min_perf_pct = clamp_t(int, limits.min_perf_pct, 0 , 100);
716 limits.min_perf = div_fp(int_tofp(limits.min_perf_pct), int_tofp(100));
717
Dirk Brandewied8f469e2013-05-07 08:20:26 -0700718 limits.max_policy_pct = policy->max * 100 / policy->cpuinfo.max_freq;
719 limits.max_policy_pct = clamp_t(int, limits.max_policy_pct, 0 , 100);
720 limits.max_perf_pct = min(limits.max_policy_pct, limits.max_sysfs_pct);
Srinivas Pandruvadad1b68482013-04-09 22:38:18 +0000721 limits.max_perf = div_fp(int_tofp(limits.max_perf_pct), int_tofp(100));
Dirk Brandewie93f08222013-02-06 09:02:13 -0800722
723 return 0;
724}
725
726static int intel_pstate_verify_policy(struct cpufreq_policy *policy)
727{
Viresh Kumarbe49e342013-10-02 14:13:19 +0530728 cpufreq_verify_within_cpu_limits(policy);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800729
730 if ((policy->policy != CPUFREQ_POLICY_POWERSAVE) &&
731 (policy->policy != CPUFREQ_POLICY_PERFORMANCE))
732 return -EINVAL;
733
734 return 0;
735}
736
Paul Gortmaker27609842013-06-19 13:54:04 -0400737static int intel_pstate_cpu_exit(struct cpufreq_policy *policy)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800738{
739 int cpu = policy->cpu;
740
741 del_timer(&all_cpu_data[cpu]->timer);
742 kfree(all_cpu_data[cpu]);
743 all_cpu_data[cpu] = NULL;
744 return 0;
745}
746
Paul Gortmaker27609842013-06-19 13:54:04 -0400747static int intel_pstate_cpu_init(struct cpufreq_policy *policy)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800748{
Dirk Brandewie93f08222013-02-06 09:02:13 -0800749 struct cpudata *cpu;
Dirk Brandewie52e0a502013-10-15 11:06:14 -0700750 int rc;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800751
752 rc = intel_pstate_init_cpu(policy->cpu);
753 if (rc)
754 return rc;
755
756 cpu = all_cpu_data[policy->cpu];
757
758 if (!limits.no_turbo &&
759 limits.min_perf_pct == 100 && limits.max_perf_pct == 100)
760 policy->policy = CPUFREQ_POLICY_PERFORMANCE;
761 else
762 policy->policy = CPUFREQ_POLICY_POWERSAVE;
763
Dirk Brandewie52e0a502013-10-15 11:06:14 -0700764 policy->min = cpu->pstate.min_pstate * 100000;
765 policy->max = cpu->pstate.turbo_pstate * 100000;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800766
767 /* cpuinfo and default policy values */
768 policy->cpuinfo.min_freq = cpu->pstate.min_pstate * 100000;
769 policy->cpuinfo.max_freq = cpu->pstate.turbo_pstate * 100000;
770 policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL;
771 cpumask_set_cpu(policy->cpu, policy->cpus);
772
773 return 0;
774}
775
776static struct cpufreq_driver intel_pstate_driver = {
777 .flags = CPUFREQ_CONST_LOOPS,
778 .verify = intel_pstate_verify_policy,
779 .setpolicy = intel_pstate_set_policy,
780 .get = intel_pstate_get,
781 .init = intel_pstate_cpu_init,
782 .exit = intel_pstate_cpu_exit,
783 .name = "intel_pstate",
Dirk Brandewie93f08222013-02-06 09:02:13 -0800784};
785
Dirk Brandewie6be26492013-02-15 22:55:10 +0100786static int __initdata no_load;
787
Dirk Brandewieb563b4e2013-03-22 01:29:28 +0100788static int intel_pstate_msrs_not_valid(void)
789{
790 /* Check that all the msr's we are using are valid. */
791 u64 aperf, mperf, tmp;
792
793 rdmsrl(MSR_IA32_APERF, aperf);
794 rdmsrl(MSR_IA32_MPERF, mperf);
795
Dirk Brandewie016c8152013-10-21 09:20:34 -0700796 if (!pstate_funcs.get_max() ||
797 !pstate_funcs.get_min() ||
798 !pstate_funcs.get_turbo())
Dirk Brandewieb563b4e2013-03-22 01:29:28 +0100799 return -ENODEV;
800
801 rdmsrl(MSR_IA32_APERF, tmp);
802 if (!(tmp - aperf))
803 return -ENODEV;
804
805 rdmsrl(MSR_IA32_MPERF, tmp);
806 if (!(tmp - mperf))
807 return -ENODEV;
808
809 return 0;
810}
Dirk Brandewie016c8152013-10-21 09:20:34 -0700811
Dirk Brandewiee0a261a2013-10-30 08:38:32 -0700812static void copy_pid_params(struct pstate_adjust_policy *policy)
Dirk Brandewie016c8152013-10-21 09:20:34 -0700813{
814 pid_params.sample_rate_ms = policy->sample_rate_ms;
815 pid_params.p_gain_pct = policy->p_gain_pct;
816 pid_params.i_gain_pct = policy->i_gain_pct;
817 pid_params.d_gain_pct = policy->d_gain_pct;
818 pid_params.deadband = policy->deadband;
819 pid_params.setpoint = policy->setpoint;
820}
821
Dirk Brandewiee0a261a2013-10-30 08:38:32 -0700822static void copy_cpu_funcs(struct pstate_funcs *funcs)
Dirk Brandewie016c8152013-10-21 09:20:34 -0700823{
824 pstate_funcs.get_max = funcs->get_max;
825 pstate_funcs.get_min = funcs->get_min;
826 pstate_funcs.get_turbo = funcs->get_turbo;
827 pstate_funcs.set = funcs->set;
Dirk Brandewie007bea02013-12-18 10:32:39 -0800828 pstate_funcs.get_vid = funcs->get_vid;
Dirk Brandewie016c8152013-10-21 09:20:34 -0700829}
830
Adrian Huangfbbcdc02013-10-31 23:24:05 +0800831#if IS_ENABLED(CONFIG_ACPI)
832#include <acpi/processor.h>
833
834static bool intel_pstate_no_acpi_pss(void)
835{
836 int i;
837
838 for_each_possible_cpu(i) {
839 acpi_status status;
840 union acpi_object *pss;
841 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
842 struct acpi_processor *pr = per_cpu(processors, i);
843
844 if (!pr)
845 continue;
846
847 status = acpi_evaluate_object(pr->handle, "_PSS", NULL, &buffer);
848 if (ACPI_FAILURE(status))
849 continue;
850
851 pss = buffer.pointer;
852 if (pss && pss->type == ACPI_TYPE_PACKAGE) {
853 kfree(pss);
854 return false;
855 }
856
857 kfree(pss);
858 }
859
860 return true;
861}
862
863struct hw_vendor_info {
864 u16 valid;
865 char oem_id[ACPI_OEM_ID_SIZE];
866 char oem_table_id[ACPI_OEM_TABLE_ID_SIZE];
867};
868
869/* Hardware vendor-specific info that has its own power management modes */
870static struct hw_vendor_info vendor_info[] = {
871 {1, "HP ", "ProLiant"},
872 {0, "", ""},
873};
874
875static bool intel_pstate_platform_pwr_mgmt_exists(void)
876{
877 struct acpi_table_header hdr;
878 struct hw_vendor_info *v_info;
879
880 if (acpi_disabled
881 || ACPI_FAILURE(acpi_get_table_header(ACPI_SIG_FADT, 0, &hdr)))
882 return false;
883
884 for (v_info = vendor_info; v_info->valid; v_info++) {
885 if (!strncmp(hdr.oem_id, v_info->oem_id, ACPI_OEM_ID_SIZE)
886 && !strncmp(hdr.oem_table_id, v_info->oem_table_id, ACPI_OEM_TABLE_ID_SIZE)
887 && intel_pstate_no_acpi_pss())
888 return true;
889 }
890
891 return false;
892}
893#else /* CONFIG_ACPI not enabled */
894static inline bool intel_pstate_platform_pwr_mgmt_exists(void) { return false; }
895#endif /* CONFIG_ACPI */
896
Dirk Brandewie93f08222013-02-06 09:02:13 -0800897static int __init intel_pstate_init(void)
898{
Dirk Brandewie907cc902013-03-05 14:15:27 -0800899 int cpu, rc = 0;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800900 const struct x86_cpu_id *id;
Dirk Brandewie016c8152013-10-21 09:20:34 -0700901 struct cpu_defaults *cpu_info;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800902
Dirk Brandewie6be26492013-02-15 22:55:10 +0100903 if (no_load)
904 return -ENODEV;
905
Dirk Brandewie93f08222013-02-06 09:02:13 -0800906 id = x86_match_cpu(intel_pstate_cpu_ids);
907 if (!id)
908 return -ENODEV;
909
Adrian Huangfbbcdc02013-10-31 23:24:05 +0800910 /*
911 * The Intel pstate driver will be ignored if the platform
912 * firmware has its own power management modes.
913 */
914 if (intel_pstate_platform_pwr_mgmt_exists())
915 return -ENODEV;
916
Dirk Brandewie016c8152013-10-21 09:20:34 -0700917 cpu_info = (struct cpu_defaults *)id->driver_data;
918
919 copy_pid_params(&cpu_info->pid_policy);
920 copy_cpu_funcs(&cpu_info->funcs);
921
Dirk Brandewieb563b4e2013-03-22 01:29:28 +0100922 if (intel_pstate_msrs_not_valid())
923 return -ENODEV;
924
Dirk Brandewie93f08222013-02-06 09:02:13 -0800925 pr_info("Intel P-state driver initializing.\n");
926
Wei Yongjunb57ffac2013-05-13 08:03:43 +0000927 all_cpu_data = vzalloc(sizeof(void *) * num_possible_cpus());
Dirk Brandewie93f08222013-02-06 09:02:13 -0800928 if (!all_cpu_data)
929 return -ENOMEM;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800930
931 rc = cpufreq_register_driver(&intel_pstate_driver);
932 if (rc)
933 goto out;
934
935 intel_pstate_debug_expose_params();
936 intel_pstate_sysfs_expose_params();
937 return rc;
938out:
Dirk Brandewie907cc902013-03-05 14:15:27 -0800939 get_online_cpus();
940 for_each_online_cpu(cpu) {
941 if (all_cpu_data[cpu]) {
942 del_timer_sync(&all_cpu_data[cpu]->timer);
943 kfree(all_cpu_data[cpu]);
944 }
945 }
946
947 put_online_cpus();
948 vfree(all_cpu_data);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800949 return -ENODEV;
950}
951device_initcall(intel_pstate_init);
952
Dirk Brandewie6be26492013-02-15 22:55:10 +0100953static int __init intel_pstate_setup(char *str)
954{
955 if (!str)
956 return -EINVAL;
957
958 if (!strcmp(str, "disable"))
959 no_load = 1;
960 return 0;
961}
962early_param("intel_pstate", intel_pstate_setup);
963
Dirk Brandewie93f08222013-02-06 09:02:13 -0800964MODULE_AUTHOR("Dirk Brandewie <dirk.j.brandewie@intel.com>");
965MODULE_DESCRIPTION("'intel_pstate' - P state driver Intel Core processors");
966MODULE_LICENSE("GPL");