blob: f82563d7a7fd693f890adb3cb7f3380c7b5a49d3 [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>
28#include <trace/events/power.h>
29
30#include <asm/div64.h>
31#include <asm/msr.h>
32#include <asm/cpu_device_id.h>
33
34#define SAMPLE_COUNT 3
35
36#define FRAC_BITS 8
37#define int_tofp(X) ((int64_t)(X) << FRAC_BITS)
38#define fp_toint(X) ((X) >> FRAC_BITS)
39
40static inline int32_t mul_fp(int32_t x, int32_t y)
41{
42 return ((int64_t)x * (int64_t)y) >> FRAC_BITS;
43}
44
45static inline int32_t div_fp(int32_t x, int32_t y)
46{
47 return div_s64((int64_t)x << FRAC_BITS, (int64_t)y);
48}
49
50struct sample {
Brennan Shacklette34ce302013-10-21 09:20:32 -070051 int32_t core_pct_busy;
Dirk Brandewie93f08222013-02-06 09:02:13 -080052 u64 aperf;
53 u64 mperf;
54 int freq;
55};
56
57struct pstate_data {
58 int current_pstate;
59 int min_pstate;
60 int max_pstate;
61 int turbo_pstate;
62};
63
64struct _pid {
65 int setpoint;
66 int32_t integral;
67 int32_t p_gain;
68 int32_t i_gain;
69 int32_t d_gain;
70 int deadband;
Brennan Shacklette34ce302013-10-21 09:20:32 -070071 int32_t last_err;
Dirk Brandewie93f08222013-02-06 09:02:13 -080072};
73
74struct cpudata {
75 int cpu;
76
77 char name[64];
78
79 struct timer_list timer;
80
81 struct pstate_adjust_policy *pstate_policy;
82 struct pstate_data pstate;
83 struct _pid pid;
Dirk Brandewie93f08222013-02-06 09:02:13 -080084
85 int min_pstate_count;
Dirk Brandewie93f08222013-02-06 09:02:13 -080086
Dirk Brandewie93f08222013-02-06 09:02:13 -080087 u64 prev_aperf;
88 u64 prev_mperf;
89 int sample_ptr;
90 struct sample samples[SAMPLE_COUNT];
91};
92
93static struct cpudata **all_cpu_data;
94struct pstate_adjust_policy {
95 int sample_rate_ms;
96 int deadband;
97 int setpoint;
98 int p_gain_pct;
99 int d_gain_pct;
100 int i_gain_pct;
101};
102
103static struct pstate_adjust_policy default_policy = {
104 .sample_rate_ms = 10,
105 .deadband = 0,
Dirk Brandewiecb631ac2013-07-18 08:48:42 -0700106 .setpoint = 97,
107 .p_gain_pct = 20,
Dirk Brandewie93f08222013-02-06 09:02:13 -0800108 .d_gain_pct = 0,
Dirk Brandewiecb631ac2013-07-18 08:48:42 -0700109 .i_gain_pct = 0,
Dirk Brandewie93f08222013-02-06 09:02:13 -0800110};
111
112struct perf_limits {
113 int no_turbo;
114 int max_perf_pct;
115 int min_perf_pct;
116 int32_t max_perf;
117 int32_t min_perf;
Dirk Brandewied8f469e2013-05-07 08:20:26 -0700118 int max_policy_pct;
119 int max_sysfs_pct;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800120};
121
122static struct perf_limits limits = {
123 .no_turbo = 0,
124 .max_perf_pct = 100,
125 .max_perf = int_tofp(1),
126 .min_perf_pct = 0,
127 .min_perf = 0,
Dirk Brandewied8f469e2013-05-07 08:20:26 -0700128 .max_policy_pct = 100,
129 .max_sysfs_pct = 100,
Dirk Brandewie93f08222013-02-06 09:02:13 -0800130};
131
132static inline void pid_reset(struct _pid *pid, int setpoint, int busy,
133 int deadband, int integral) {
134 pid->setpoint = setpoint;
135 pid->deadband = deadband;
136 pid->integral = int_tofp(integral);
137 pid->last_err = setpoint - busy;
138}
139
140static inline void pid_p_gain_set(struct _pid *pid, int percent)
141{
142 pid->p_gain = div_fp(int_tofp(percent), int_tofp(100));
143}
144
145static inline void pid_i_gain_set(struct _pid *pid, int percent)
146{
147 pid->i_gain = div_fp(int_tofp(percent), int_tofp(100));
148}
149
150static inline void pid_d_gain_set(struct _pid *pid, int percent)
151{
152
153 pid->d_gain = div_fp(int_tofp(percent), int_tofp(100));
154}
155
Brennan Shacklette34ce302013-10-21 09:20:32 -0700156static signed int pid_calc(struct _pid *pid, int32_t busy)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800157{
Brennan Shacklette34ce302013-10-21 09:20:32 -0700158 signed int result;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800159 int32_t pterm, dterm, fp_error;
160 int32_t integral_limit;
161
Brennan Shacklette34ce302013-10-21 09:20:32 -0700162 fp_error = int_tofp(pid->setpoint) - busy;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800163
Brennan Shacklette34ce302013-10-21 09:20:32 -0700164 if (abs(fp_error) <= int_tofp(pid->deadband))
Dirk Brandewie93f08222013-02-06 09:02:13 -0800165 return 0;
166
167 pterm = mul_fp(pid->p_gain, fp_error);
168
169 pid->integral += fp_error;
170
171 /* limit the integral term */
172 integral_limit = int_tofp(30);
173 if (pid->integral > integral_limit)
174 pid->integral = integral_limit;
175 if (pid->integral < -integral_limit)
176 pid->integral = -integral_limit;
177
Brennan Shacklette34ce302013-10-21 09:20:32 -0700178 dterm = mul_fp(pid->d_gain, fp_error - pid->last_err);
179 pid->last_err = fp_error;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800180
181 result = pterm + mul_fp(pid->integral, pid->i_gain) + dterm;
182
183 return (signed int)fp_toint(result);
184}
185
186static inline void intel_pstate_busy_pid_reset(struct cpudata *cpu)
187{
188 pid_p_gain_set(&cpu->pid, cpu->pstate_policy->p_gain_pct);
189 pid_d_gain_set(&cpu->pid, cpu->pstate_policy->d_gain_pct);
190 pid_i_gain_set(&cpu->pid, cpu->pstate_policy->i_gain_pct);
191
192 pid_reset(&cpu->pid,
193 cpu->pstate_policy->setpoint,
194 100,
195 cpu->pstate_policy->deadband,
196 0);
197}
198
Dirk Brandewie93f08222013-02-06 09:02:13 -0800199static inline void intel_pstate_reset_all_pid(void)
200{
201 unsigned int cpu;
202 for_each_online_cpu(cpu) {
203 if (all_cpu_data[cpu])
204 intel_pstate_busy_pid_reset(all_cpu_data[cpu]);
205 }
206}
207
208/************************** debugfs begin ************************/
209static int pid_param_set(void *data, u64 val)
210{
211 *(u32 *)data = val;
212 intel_pstate_reset_all_pid();
213 return 0;
214}
215static int pid_param_get(void *data, u64 *val)
216{
217 *val = *(u32 *)data;
218 return 0;
219}
220DEFINE_SIMPLE_ATTRIBUTE(fops_pid_param, pid_param_get,
221 pid_param_set, "%llu\n");
222
223struct pid_param {
224 char *name;
225 void *value;
226};
227
228static struct pid_param pid_files[] = {
229 {"sample_rate_ms", &default_policy.sample_rate_ms},
230 {"d_gain_pct", &default_policy.d_gain_pct},
231 {"i_gain_pct", &default_policy.i_gain_pct},
232 {"deadband", &default_policy.deadband},
233 {"setpoint", &default_policy.setpoint},
234 {"p_gain_pct", &default_policy.p_gain_pct},
235 {NULL, NULL}
236};
237
238static struct dentry *debugfs_parent;
239static void intel_pstate_debug_expose_params(void)
240{
241 int i = 0;
242
243 debugfs_parent = debugfs_create_dir("pstate_snb", NULL);
244 if (IS_ERR_OR_NULL(debugfs_parent))
245 return;
246 while (pid_files[i].name) {
247 debugfs_create_file(pid_files[i].name, 0660,
248 debugfs_parent, pid_files[i].value,
249 &fops_pid_param);
250 i++;
251 }
252}
253
254/************************** debugfs end ************************/
255
256/************************** sysfs begin ************************/
257#define show_one(file_name, object) \
258 static ssize_t show_##file_name \
259 (struct kobject *kobj, struct attribute *attr, char *buf) \
260 { \
261 return sprintf(buf, "%u\n", limits.object); \
262 }
263
264static ssize_t store_no_turbo(struct kobject *a, struct attribute *b,
265 const char *buf, size_t count)
266{
267 unsigned int input;
268 int ret;
269 ret = sscanf(buf, "%u", &input);
270 if (ret != 1)
271 return -EINVAL;
272 limits.no_turbo = clamp_t(int, input, 0 , 1);
273
274 return count;
275}
276
277static ssize_t store_max_perf_pct(struct kobject *a, struct attribute *b,
278 const char *buf, size_t count)
279{
280 unsigned int input;
281 int ret;
282 ret = sscanf(buf, "%u", &input);
283 if (ret != 1)
284 return -EINVAL;
285
Dirk Brandewied8f469e2013-05-07 08:20:26 -0700286 limits.max_sysfs_pct = clamp_t(int, input, 0 , 100);
287 limits.max_perf_pct = min(limits.max_policy_pct, limits.max_sysfs_pct);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800288 limits.max_perf = div_fp(int_tofp(limits.max_perf_pct), int_tofp(100));
289 return count;
290}
291
292static ssize_t store_min_perf_pct(struct kobject *a, struct attribute *b,
293 const char *buf, size_t count)
294{
295 unsigned int input;
296 int ret;
297 ret = sscanf(buf, "%u", &input);
298 if (ret != 1)
299 return -EINVAL;
300 limits.min_perf_pct = clamp_t(int, input, 0 , 100);
301 limits.min_perf = div_fp(int_tofp(limits.min_perf_pct), int_tofp(100));
302
303 return count;
304}
305
306show_one(no_turbo, no_turbo);
307show_one(max_perf_pct, max_perf_pct);
308show_one(min_perf_pct, min_perf_pct);
309
310define_one_global_rw(no_turbo);
311define_one_global_rw(max_perf_pct);
312define_one_global_rw(min_perf_pct);
313
314static struct attribute *intel_pstate_attributes[] = {
315 &no_turbo.attr,
316 &max_perf_pct.attr,
317 &min_perf_pct.attr,
318 NULL
319};
320
321static struct attribute_group intel_pstate_attr_group = {
322 .attrs = intel_pstate_attributes,
323};
324static struct kobject *intel_pstate_kobject;
325
326static void intel_pstate_sysfs_expose_params(void)
327{
328 int rc;
329
330 intel_pstate_kobject = kobject_create_and_add("intel_pstate",
331 &cpu_subsys.dev_root->kobj);
332 BUG_ON(!intel_pstate_kobject);
333 rc = sysfs_create_group(intel_pstate_kobject,
334 &intel_pstate_attr_group);
335 BUG_ON(rc);
336}
337
338/************************** sysfs end ************************/
339
340static int intel_pstate_min_pstate(void)
341{
342 u64 value;
Konrad Rzeszutek Wilk05e99c8cf2013-03-20 14:21:10 +0000343 rdmsrl(MSR_PLATFORM_INFO, value);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800344 return (value >> 40) & 0xFF;
345}
346
347static int intel_pstate_max_pstate(void)
348{
349 u64 value;
Konrad Rzeszutek Wilk05e99c8cf2013-03-20 14:21:10 +0000350 rdmsrl(MSR_PLATFORM_INFO, value);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800351 return (value >> 8) & 0xFF;
352}
353
354static int intel_pstate_turbo_pstate(void)
355{
356 u64 value;
357 int nont, ret;
Konrad Rzeszutek Wilk05e99c8cf2013-03-20 14:21:10 +0000358 rdmsrl(MSR_NHM_TURBO_RATIO_LIMIT, value);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800359 nont = intel_pstate_max_pstate();
360 ret = ((value) & 255);
361 if (ret <= nont)
362 ret = nont;
363 return ret;
364}
365
366static void intel_pstate_get_min_max(struct cpudata *cpu, int *min, int *max)
367{
368 int max_perf = cpu->pstate.turbo_pstate;
369 int min_perf;
370 if (limits.no_turbo)
371 max_perf = cpu->pstate.max_pstate;
372
373 max_perf = fp_toint(mul_fp(int_tofp(max_perf), limits.max_perf));
374 *max = clamp_t(int, max_perf,
375 cpu->pstate.min_pstate, cpu->pstate.turbo_pstate);
376
377 min_perf = fp_toint(mul_fp(int_tofp(max_perf), limits.min_perf));
378 *min = clamp_t(int, min_perf,
379 cpu->pstate.min_pstate, max_perf);
380}
381
382static void intel_pstate_set_pstate(struct cpudata *cpu, int pstate)
383{
384 int max_perf, min_perf;
385
386 intel_pstate_get_min_max(cpu, &min_perf, &max_perf);
387
388 pstate = clamp_t(int, pstate, min_perf, max_perf);
389
390 if (pstate == cpu->pstate.current_pstate)
391 return;
392
Dirk Brandewie93f08222013-02-06 09:02:13 -0800393 trace_cpu_frequency(pstate * 100000, cpu->cpu);
Dirk Brandewie35363e92013-05-07 08:20:30 -0700394
Dirk Brandewie93f08222013-02-06 09:02:13 -0800395 cpu->pstate.current_pstate = pstate;
Srinivas Pandruvada3dc642a2013-10-01 10:28:41 -0700396 if (limits.no_turbo)
397 wrmsrl(MSR_IA32_PERF_CTL, BIT(32) | (pstate << 8));
398 else
399 wrmsrl(MSR_IA32_PERF_CTL, pstate << 8);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800400
401}
402
403static inline void intel_pstate_pstate_increase(struct cpudata *cpu, int steps)
404{
405 int target;
406 target = cpu->pstate.current_pstate + steps;
407
408 intel_pstate_set_pstate(cpu, target);
409}
410
411static inline void intel_pstate_pstate_decrease(struct cpudata *cpu, int steps)
412{
413 int target;
414 target = cpu->pstate.current_pstate - steps;
415 intel_pstate_set_pstate(cpu, target);
416}
417
418static void intel_pstate_get_cpu_pstates(struct cpudata *cpu)
419{
420 sprintf(cpu->name, "Intel 2nd generation core");
421
422 cpu->pstate.min_pstate = intel_pstate_min_pstate();
423 cpu->pstate.max_pstate = intel_pstate_max_pstate();
424 cpu->pstate.turbo_pstate = intel_pstate_turbo_pstate();
425
426 /*
427 * goto max pstate so we don't slow up boot if we are built-in if we are
428 * a module we will take care of it during normal operation
429 */
430 intel_pstate_set_pstate(cpu, cpu->pstate.max_pstate);
431}
432
433static inline void intel_pstate_calc_busy(struct cpudata *cpu,
434 struct sample *sample)
435{
436 u64 core_pct;
Brennan Shacklette34ce302013-10-21 09:20:32 -0700437 core_pct = div64_u64(int_tofp(sample->aperf * 100),
438 sample->mperf);
439 sample->freq = fp_toint(cpu->pstate.max_pstate * core_pct * 1000);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800440
Dirk Brandewie1abc4b22013-05-07 08:20:25 -0700441 sample->core_pct_busy = core_pct;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800442}
443
444static inline void intel_pstate_sample(struct cpudata *cpu)
445{
Dirk Brandewie93f08222013-02-06 09:02:13 -0800446 u64 aperf, mperf;
447
Dirk Brandewie93f08222013-02-06 09:02:13 -0800448 rdmsrl(MSR_IA32_APERF, aperf);
449 rdmsrl(MSR_IA32_MPERF, mperf);
Dirk Brandewie1abc4b22013-05-07 08:20:25 -0700450 cpu->sample_ptr = (cpu->sample_ptr + 1) % SAMPLE_COUNT;
451 cpu->samples[cpu->sample_ptr].aperf = aperf;
452 cpu->samples[cpu->sample_ptr].mperf = mperf;
453 cpu->samples[cpu->sample_ptr].aperf -= cpu->prev_aperf;
454 cpu->samples[cpu->sample_ptr].mperf -= cpu->prev_mperf;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800455
Dirk Brandewie1abc4b22013-05-07 08:20:25 -0700456 intel_pstate_calc_busy(cpu, &cpu->samples[cpu->sample_ptr]);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800457
Dirk Brandewie93f08222013-02-06 09:02:13 -0800458 cpu->prev_aperf = aperf;
459 cpu->prev_mperf = mperf;
460}
461
462static inline void intel_pstate_set_sample_time(struct cpudata *cpu)
463{
464 int sample_time, delay;
465
466 sample_time = cpu->pstate_policy->sample_rate_ms;
467 delay = msecs_to_jiffies(sample_time);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800468 mod_timer_pinned(&cpu->timer, jiffies + delay);
469}
470
Brennan Shacklette34ce302013-10-21 09:20:32 -0700471static inline int32_t intel_pstate_get_scaled_busy(struct cpudata *cpu)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800472{
Dirk Brandewiecb631ac2013-07-18 08:48:42 -0700473 int32_t core_busy, max_pstate, current_pstate;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800474
Brennan Shacklette34ce302013-10-21 09:20:32 -0700475 core_busy = cpu->samples[cpu->sample_ptr].core_pct_busy;
Dirk Brandewiecb631ac2013-07-18 08:48:42 -0700476 max_pstate = int_tofp(cpu->pstate.max_pstate);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800477 current_pstate = int_tofp(cpu->pstate.current_pstate);
Brennan Shacklette34ce302013-10-21 09:20:32 -0700478 return mul_fp(core_busy, div_fp(max_pstate, current_pstate));
Dirk Brandewie93f08222013-02-06 09:02:13 -0800479}
480
481static inline void intel_pstate_adjust_busy_pstate(struct cpudata *cpu)
482{
Brennan Shacklette34ce302013-10-21 09:20:32 -0700483 int32_t busy_scaled;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800484 struct _pid *pid;
485 signed int ctl = 0;
486 int steps;
487
488 pid = &cpu->pid;
489 busy_scaled = intel_pstate_get_scaled_busy(cpu);
490
491 ctl = pid_calc(pid, busy_scaled);
492
493 steps = abs(ctl);
494 if (ctl < 0)
495 intel_pstate_pstate_increase(cpu, steps);
496 else
497 intel_pstate_pstate_decrease(cpu, steps);
498}
499
Dirk Brandewie93f08222013-02-06 09:02:13 -0800500static void intel_pstate_timer_func(unsigned long __data)
501{
502 struct cpudata *cpu = (struct cpudata *) __data;
503
504 intel_pstate_sample(cpu);
Dirk Brandewieca182ae2013-05-07 08:20:27 -0700505 intel_pstate_adjust_busy_pstate(cpu);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800506
Dirk Brandewie93f08222013-02-06 09:02:13 -0800507 if (cpu->pstate.current_pstate == cpu->pstate.min_pstate) {
508 cpu->min_pstate_count++;
509 if (!(cpu->min_pstate_count % 5)) {
510 intel_pstate_set_pstate(cpu, cpu->pstate.max_pstate);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800511 }
512 } else
513 cpu->min_pstate_count = 0;
Dirk Brandewieca182ae2013-05-07 08:20:27 -0700514
Dirk Brandewie93f08222013-02-06 09:02:13 -0800515 intel_pstate_set_sample_time(cpu);
516}
517
518#define ICPU(model, policy) \
Dirk Brandewied0ccf8a2014-01-06 10:59:16 -0800519 { X86_VENDOR_INTEL, 6, model, X86_FEATURE_APERFMPERF,\
520 (unsigned long)&policy }
Dirk Brandewie93f08222013-02-06 09:02:13 -0800521
522static const struct x86_cpu_id intel_pstate_cpu_ids[] = {
523 ICPU(0x2a, default_policy),
524 ICPU(0x2d, default_policy),
Dirk Brandewiec96d53d2013-05-17 16:10:24 +0000525 ICPU(0x3a, default_policy),
Nell Hardcastle0b977de2013-06-30 15:58:57 -0700526 ICPU(0x3c, default_policy),
527 ICPU(0x3e, default_policy),
528 ICPU(0x3f, default_policy),
529 ICPU(0x45, default_policy),
530 ICPU(0x46, default_policy),
Dirk Brandewie93f08222013-02-06 09:02:13 -0800531 {}
532};
533MODULE_DEVICE_TABLE(x86cpu, intel_pstate_cpu_ids);
534
535static int intel_pstate_init_cpu(unsigned int cpunum)
536{
537
538 const struct x86_cpu_id *id;
539 struct cpudata *cpu;
540
541 id = x86_match_cpu(intel_pstate_cpu_ids);
542 if (!id)
543 return -ENODEV;
544
545 all_cpu_data[cpunum] = kzalloc(sizeof(struct cpudata), GFP_KERNEL);
546 if (!all_cpu_data[cpunum])
547 return -ENOMEM;
548
549 cpu = all_cpu_data[cpunum];
550
551 intel_pstate_get_cpu_pstates(cpu);
Rafael J. Wysockiec84b712013-12-31 13:37:46 +0100552 if (!cpu->pstate.current_pstate) {
553 all_cpu_data[cpunum] = NULL;
554 kfree(cpu);
555 return -ENODATA;
556 }
Dirk Brandewie93f08222013-02-06 09:02:13 -0800557
558 cpu->cpu = cpunum;
559 cpu->pstate_policy =
560 (struct pstate_adjust_policy *)id->driver_data;
561 init_timer_deferrable(&cpu->timer);
562 cpu->timer.function = intel_pstate_timer_func;
563 cpu->timer.data =
564 (unsigned long)cpu;
565 cpu->timer.expires = jiffies + HZ/100;
566 intel_pstate_busy_pid_reset(cpu);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800567 intel_pstate_sample(cpu);
568 intel_pstate_set_pstate(cpu, cpu->pstate.max_pstate);
569
570 add_timer_on(&cpu->timer, cpunum);
571
572 pr_info("Intel pstate controlling: cpu %d\n", cpunum);
573
574 return 0;
575}
576
577static unsigned int intel_pstate_get(unsigned int cpu_num)
578{
579 struct sample *sample;
580 struct cpudata *cpu;
581
582 cpu = all_cpu_data[cpu_num];
583 if (!cpu)
584 return 0;
585 sample = &cpu->samples[cpu->sample_ptr];
586 return sample->freq;
587}
588
589static int intel_pstate_set_policy(struct cpufreq_policy *policy)
590{
591 struct cpudata *cpu;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800592
593 cpu = all_cpu_data[policy->cpu];
594
Dirk Brandewied3929b82013-03-05 14:15:26 -0800595 if (!policy->cpuinfo.max_freq)
596 return -ENODEV;
597
Dirk Brandewie93f08222013-02-06 09:02:13 -0800598 if (policy->policy == CPUFREQ_POLICY_PERFORMANCE) {
599 limits.min_perf_pct = 100;
600 limits.min_perf = int_tofp(1);
601 limits.max_perf_pct = 100;
602 limits.max_perf = int_tofp(1);
603 limits.no_turbo = 0;
Srinivas Pandruvadad1b68482013-04-09 22:38:18 +0000604 return 0;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800605 }
Srinivas Pandruvadad1b68482013-04-09 22:38:18 +0000606 limits.min_perf_pct = (policy->min * 100) / policy->cpuinfo.max_freq;
607 limits.min_perf_pct = clamp_t(int, limits.min_perf_pct, 0 , 100);
608 limits.min_perf = div_fp(int_tofp(limits.min_perf_pct), int_tofp(100));
609
Dirk Brandewied8f469e2013-05-07 08:20:26 -0700610 limits.max_policy_pct = policy->max * 100 / policy->cpuinfo.max_freq;
611 limits.max_policy_pct = clamp_t(int, limits.max_policy_pct, 0 , 100);
612 limits.max_perf_pct = min(limits.max_policy_pct, limits.max_sysfs_pct);
Srinivas Pandruvadad1b68482013-04-09 22:38:18 +0000613 limits.max_perf = div_fp(int_tofp(limits.max_perf_pct), int_tofp(100));
Dirk Brandewie93f08222013-02-06 09:02:13 -0800614
615 return 0;
616}
617
618static int intel_pstate_verify_policy(struct cpufreq_policy *policy)
619{
620 cpufreq_verify_within_limits(policy,
621 policy->cpuinfo.min_freq,
622 policy->cpuinfo.max_freq);
623
624 if ((policy->policy != CPUFREQ_POLICY_POWERSAVE) &&
625 (policy->policy != CPUFREQ_POLICY_PERFORMANCE))
626 return -EINVAL;
627
628 return 0;
629}
630
631static int __cpuinit intel_pstate_cpu_exit(struct cpufreq_policy *policy)
632{
633 int cpu = policy->cpu;
634
635 del_timer(&all_cpu_data[cpu]->timer);
636 kfree(all_cpu_data[cpu]);
637 all_cpu_data[cpu] = NULL;
638 return 0;
639}
640
641static int __cpuinit intel_pstate_cpu_init(struct cpufreq_policy *policy)
642{
Dirk Brandewie93f08222013-02-06 09:02:13 -0800643 struct cpudata *cpu;
Dirk Brandewief606b352013-10-15 11:06:14 -0700644 int rc;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800645
646 rc = intel_pstate_init_cpu(policy->cpu);
647 if (rc)
648 return rc;
649
650 cpu = all_cpu_data[policy->cpu];
651
652 if (!limits.no_turbo &&
653 limits.min_perf_pct == 100 && limits.max_perf_pct == 100)
654 policy->policy = CPUFREQ_POLICY_PERFORMANCE;
655 else
656 policy->policy = CPUFREQ_POLICY_POWERSAVE;
657
Dirk Brandewief606b352013-10-15 11:06:14 -0700658 policy->min = cpu->pstate.min_pstate * 100000;
659 policy->max = cpu->pstate.turbo_pstate * 100000;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800660
661 /* cpuinfo and default policy values */
662 policy->cpuinfo.min_freq = cpu->pstate.min_pstate * 100000;
663 policy->cpuinfo.max_freq = cpu->pstate.turbo_pstate * 100000;
664 policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL;
665 cpumask_set_cpu(policy->cpu, policy->cpus);
666
667 return 0;
668}
669
670static struct cpufreq_driver intel_pstate_driver = {
671 .flags = CPUFREQ_CONST_LOOPS,
672 .verify = intel_pstate_verify_policy,
673 .setpolicy = intel_pstate_set_policy,
674 .get = intel_pstate_get,
675 .init = intel_pstate_cpu_init,
676 .exit = intel_pstate_cpu_exit,
677 .name = "intel_pstate",
678 .owner = THIS_MODULE,
679};
680
Dirk Brandewie6be26492013-02-15 22:55:10 +0100681static int __initdata no_load;
682
Dirk Brandewieb563b4e2013-03-22 01:29:28 +0100683static int intel_pstate_msrs_not_valid(void)
684{
685 /* Check that all the msr's we are using are valid. */
686 u64 aperf, mperf, tmp;
687
688 rdmsrl(MSR_IA32_APERF, aperf);
689 rdmsrl(MSR_IA32_MPERF, mperf);
690
691 if (!intel_pstate_min_pstate() ||
692 !intel_pstate_max_pstate() ||
693 !intel_pstate_turbo_pstate())
694 return -ENODEV;
695
696 rdmsrl(MSR_IA32_APERF, tmp);
697 if (!(tmp - aperf))
698 return -ENODEV;
699
700 rdmsrl(MSR_IA32_MPERF, tmp);
701 if (!(tmp - mperf))
702 return -ENODEV;
703
704 return 0;
705}
Dirk Brandewie93f08222013-02-06 09:02:13 -0800706static int __init intel_pstate_init(void)
707{
Dirk Brandewie907cc902013-03-05 14:15:27 -0800708 int cpu, rc = 0;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800709 const struct x86_cpu_id *id;
710
Dirk Brandewie6be26492013-02-15 22:55:10 +0100711 if (no_load)
712 return -ENODEV;
713
Dirk Brandewie93f08222013-02-06 09:02:13 -0800714 id = x86_match_cpu(intel_pstate_cpu_ids);
715 if (!id)
716 return -ENODEV;
717
Dirk Brandewieb563b4e2013-03-22 01:29:28 +0100718 if (intel_pstate_msrs_not_valid())
719 return -ENODEV;
720
Dirk Brandewie93f08222013-02-06 09:02:13 -0800721 pr_info("Intel P-state driver initializing.\n");
722
Wei Yongjunb57ffac2013-05-13 08:03:43 +0000723 all_cpu_data = vzalloc(sizeof(void *) * num_possible_cpus());
Dirk Brandewie93f08222013-02-06 09:02:13 -0800724 if (!all_cpu_data)
725 return -ENOMEM;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800726
727 rc = cpufreq_register_driver(&intel_pstate_driver);
728 if (rc)
729 goto out;
730
731 intel_pstate_debug_expose_params();
732 intel_pstate_sysfs_expose_params();
733 return rc;
734out:
Dirk Brandewie907cc902013-03-05 14:15:27 -0800735 get_online_cpus();
736 for_each_online_cpu(cpu) {
737 if (all_cpu_data[cpu]) {
738 del_timer_sync(&all_cpu_data[cpu]->timer);
739 kfree(all_cpu_data[cpu]);
740 }
741 }
742
743 put_online_cpus();
744 vfree(all_cpu_data);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800745 return -ENODEV;
746}
747device_initcall(intel_pstate_init);
748
Dirk Brandewie6be26492013-02-15 22:55:10 +0100749static int __init intel_pstate_setup(char *str)
750{
751 if (!str)
752 return -EINVAL;
753
754 if (!strcmp(str, "disable"))
755 no_load = 1;
756 return 0;
757}
758early_param("intel_pstate", intel_pstate_setup);
759
Dirk Brandewie93f08222013-02-06 09:02:13 -0800760MODULE_AUTHOR("Dirk Brandewie <dirk.j.brandewie@intel.com>");
761MODULE_DESCRIPTION("'intel_pstate' - P state driver Intel Core processors");
762MODULE_LICENSE("GPL");