blob: ff3c5624972c372c251a6864447fb82bfd570001 [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
55struct sample {
Brennan Shacklettd253d2a2013-10-21 09:20:32 -070056 int32_t core_pct_busy;
Dirk Brandewie93f08222013-02-06 09:02:13 -080057 u64 aperf;
58 u64 mperf;
59 int freq;
Dirk Brandewiec4ee8412014-05-29 09:32:24 -070060 ktime_t time;
Dirk Brandewie93f08222013-02-06 09:02:13 -080061};
62
63struct pstate_data {
64 int current_pstate;
65 int min_pstate;
66 int max_pstate;
67 int turbo_pstate;
68};
69
Dirk Brandewie007bea02013-12-18 10:32:39 -080070struct vid_data {
Dirk Brandewie21855ff2014-05-08 12:57:23 -070071 int min;
72 int max;
73 int turbo;
Dirk Brandewie007bea02013-12-18 10:32:39 -080074 int32_t ratio;
75};
76
Dirk Brandewie93f08222013-02-06 09:02:13 -080077struct _pid {
78 int setpoint;
79 int32_t integral;
80 int32_t p_gain;
81 int32_t i_gain;
82 int32_t d_gain;
83 int deadband;
Brennan Shacklettd253d2a2013-10-21 09:20:32 -070084 int32_t last_err;
Dirk Brandewie93f08222013-02-06 09:02:13 -080085};
86
87struct cpudata {
88 int cpu;
89
Dirk Brandewie93f08222013-02-06 09:02:13 -080090 struct timer_list timer;
91
Dirk Brandewie93f08222013-02-06 09:02:13 -080092 struct pstate_data pstate;
Dirk Brandewie007bea02013-12-18 10:32:39 -080093 struct vid_data vid;
Dirk Brandewie93f08222013-02-06 09:02:13 -080094 struct _pid pid;
Dirk Brandewie93f08222013-02-06 09:02:13 -080095
Dirk Brandewiec4ee8412014-05-29 09:32:24 -070096 ktime_t last_sample_time;
Dirk Brandewie93f08222013-02-06 09:02:13 -080097 u64 prev_aperf;
98 u64 prev_mperf;
Dirk Brandewied37e2b72014-02-12 10:01:04 -080099 struct sample sample;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800100};
101
102static struct cpudata **all_cpu_data;
103struct pstate_adjust_policy {
104 int sample_rate_ms;
105 int deadband;
106 int setpoint;
107 int p_gain_pct;
108 int d_gain_pct;
109 int i_gain_pct;
110};
111
Dirk Brandewie016c8152013-10-21 09:20:34 -0700112struct pstate_funcs {
113 int (*get_max)(void);
114 int (*get_min)(void);
115 int (*get_turbo)(void);
Dirk Brandewie007bea02013-12-18 10:32:39 -0800116 void (*set)(struct cpudata*, int pstate);
117 void (*get_vid)(struct cpudata *);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800118};
119
Dirk Brandewie016c8152013-10-21 09:20:34 -0700120struct cpu_defaults {
121 struct pstate_adjust_policy pid_policy;
122 struct pstate_funcs funcs;
123};
124
125static struct pstate_adjust_policy pid_params;
126static struct pstate_funcs pstate_funcs;
127
Dirk Brandewie93f08222013-02-06 09:02:13 -0800128struct perf_limits {
129 int no_turbo;
Dirk Brandewiedd5fbf72014-06-20 07:27:59 -0700130 int turbo_disabled;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800131 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,
Stratos Karafotisc4108332014-07-18 08:37:23 -0700150 int deadband, int integral) {
Dirk Brandewie93f08222013-02-06 09:02:13 -0800151 pid->setpoint = setpoint;
152 pid->deadband = deadband;
153 pid->integral = int_tofp(integral);
Dirk Brandewied98d0992014-02-12 10:01:05 -0800154 pid->last_err = int_tofp(setpoint) - int_tofp(busy);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800155}
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{
Dirk Brandewie93f08222013-02-06 09:02:13 -0800169 pid->d_gain = div_fp(int_tofp(percent), int_tofp(100));
170}
171
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700172static signed int pid_calc(struct _pid *pid, int32_t busy)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800173{
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700174 signed int result;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800175 int32_t pterm, dterm, fp_error;
176 int32_t integral_limit;
177
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700178 fp_error = int_tofp(pid->setpoint) - busy;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800179
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700180 if (abs(fp_error) <= int_tofp(pid->deadband))
Dirk Brandewie93f08222013-02-06 09:02:13 -0800181 return 0;
182
183 pterm = mul_fp(pid->p_gain, fp_error);
184
185 pid->integral += fp_error;
186
187 /* limit the integral term */
188 integral_limit = int_tofp(30);
189 if (pid->integral > integral_limit)
190 pid->integral = integral_limit;
191 if (pid->integral < -integral_limit)
192 pid->integral = -integral_limit;
193
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700194 dterm = mul_fp(pid->d_gain, fp_error - pid->last_err);
195 pid->last_err = fp_error;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800196
197 result = pterm + mul_fp(pid->integral, pid->i_gain) + dterm;
Doug Smythies51d211e2014-06-17 13:36:10 -0700198 result = result + (1 << (FRAC_BITS-1));
Dirk Brandewie93f08222013-02-06 09:02:13 -0800199 return (signed int)fp_toint(result);
200}
201
202static inline void intel_pstate_busy_pid_reset(struct cpudata *cpu)
203{
Dirk Brandewie016c8152013-10-21 09:20:34 -0700204 pid_p_gain_set(&cpu->pid, pid_params.p_gain_pct);
205 pid_d_gain_set(&cpu->pid, pid_params.d_gain_pct);
206 pid_i_gain_set(&cpu->pid, pid_params.i_gain_pct);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800207
Stratos Karafotis2d8d1f12014-07-18 08:37:20 -0700208 pid_reset(&cpu->pid, pid_params.setpoint, 100, pid_params.deadband, 0);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800209}
210
Dirk Brandewie93f08222013-02-06 09:02:13 -0800211static inline void intel_pstate_reset_all_pid(void)
212{
213 unsigned int cpu;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700214
Dirk Brandewie93f08222013-02-06 09:02:13 -0800215 for_each_online_cpu(cpu) {
216 if (all_cpu_data[cpu])
217 intel_pstate_busy_pid_reset(all_cpu_data[cpu]);
218 }
219}
220
221/************************** debugfs begin ************************/
222static int pid_param_set(void *data, u64 val)
223{
224 *(u32 *)data = val;
225 intel_pstate_reset_all_pid();
226 return 0;
227}
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700228
Dirk Brandewie93f08222013-02-06 09:02:13 -0800229static int pid_param_get(void *data, u64 *val)
230{
231 *val = *(u32 *)data;
232 return 0;
233}
Stratos Karafotis2d8d1f12014-07-18 08:37:20 -0700234DEFINE_SIMPLE_ATTRIBUTE(fops_pid_param, pid_param_get, pid_param_set, "%llu\n");
Dirk Brandewie93f08222013-02-06 09:02:13 -0800235
236struct pid_param {
237 char *name;
238 void *value;
239};
240
241static struct pid_param pid_files[] = {
Dirk Brandewie016c8152013-10-21 09:20:34 -0700242 {"sample_rate_ms", &pid_params.sample_rate_ms},
243 {"d_gain_pct", &pid_params.d_gain_pct},
244 {"i_gain_pct", &pid_params.i_gain_pct},
245 {"deadband", &pid_params.deadband},
246 {"setpoint", &pid_params.setpoint},
247 {"p_gain_pct", &pid_params.p_gain_pct},
Dirk Brandewie93f08222013-02-06 09:02:13 -0800248 {NULL, NULL}
249};
250
Stratos Karafotis317dd502014-07-18 08:37:17 -0700251static void __init intel_pstate_debug_expose_params(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800252{
Stratos Karafotis317dd502014-07-18 08:37:17 -0700253 struct dentry *debugfs_parent;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800254 int i = 0;
255
256 debugfs_parent = debugfs_create_dir("pstate_snb", NULL);
257 if (IS_ERR_OR_NULL(debugfs_parent))
258 return;
259 while (pid_files[i].name) {
260 debugfs_create_file(pid_files[i].name, 0660,
Stratos Karafotisc4108332014-07-18 08:37:23 -0700261 debugfs_parent, pid_files[i].value,
262 &fops_pid_param);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800263 i++;
264 }
265}
266
267/************************** debugfs end ************************/
268
269/************************** sysfs begin ************************/
270#define show_one(file_name, object) \
271 static ssize_t show_##file_name \
272 (struct kobject *kobj, struct attribute *attr, char *buf) \
273 { \
274 return sprintf(buf, "%u\n", limits.object); \
275 }
276
277static ssize_t store_no_turbo(struct kobject *a, struct attribute *b,
Stratos Karafotisc4108332014-07-18 08:37:23 -0700278 const char *buf, size_t count)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800279{
280 unsigned int input;
281 int ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700282
Dirk Brandewie93f08222013-02-06 09:02:13 -0800283 ret = sscanf(buf, "%u", &input);
284 if (ret != 1)
285 return -EINVAL;
286 limits.no_turbo = clamp_t(int, input, 0 , 1);
Dirk Brandewiedd5fbf72014-06-20 07:27:59 -0700287 if (limits.turbo_disabled) {
288 pr_warn("Turbo disabled by BIOS or unavailable on processor\n");
289 limits.no_turbo = limits.turbo_disabled;
290 }
Dirk Brandewie93f08222013-02-06 09:02:13 -0800291 return count;
292}
293
294static ssize_t store_max_perf_pct(struct kobject *a, struct attribute *b,
Stratos Karafotisc4108332014-07-18 08:37:23 -0700295 const char *buf, size_t count)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800296{
297 unsigned int input;
298 int ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700299
Dirk Brandewie93f08222013-02-06 09:02:13 -0800300 ret = sscanf(buf, "%u", &input);
301 if (ret != 1)
302 return -EINVAL;
303
Dirk Brandewied8f469e2013-05-07 08:20:26 -0700304 limits.max_sysfs_pct = clamp_t(int, input, 0 , 100);
305 limits.max_perf_pct = min(limits.max_policy_pct, limits.max_sysfs_pct);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800306 limits.max_perf = div_fp(int_tofp(limits.max_perf_pct), int_tofp(100));
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700307
Dirk Brandewie93f08222013-02-06 09:02:13 -0800308 return count;
309}
310
311static ssize_t store_min_perf_pct(struct kobject *a, struct attribute *b,
Stratos Karafotisc4108332014-07-18 08:37:23 -0700312 const char *buf, size_t count)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800313{
314 unsigned int input;
315 int ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700316
Dirk Brandewie93f08222013-02-06 09:02:13 -0800317 ret = sscanf(buf, "%u", &input);
318 if (ret != 1)
319 return -EINVAL;
320 limits.min_perf_pct = clamp_t(int, input, 0 , 100);
321 limits.min_perf = div_fp(int_tofp(limits.min_perf_pct), int_tofp(100));
322
323 return count;
324}
325
326show_one(no_turbo, no_turbo);
327show_one(max_perf_pct, max_perf_pct);
328show_one(min_perf_pct, min_perf_pct);
329
330define_one_global_rw(no_turbo);
331define_one_global_rw(max_perf_pct);
332define_one_global_rw(min_perf_pct);
333
334static struct attribute *intel_pstate_attributes[] = {
335 &no_turbo.attr,
336 &max_perf_pct.attr,
337 &min_perf_pct.attr,
338 NULL
339};
340
341static struct attribute_group intel_pstate_attr_group = {
342 .attrs = intel_pstate_attributes,
343};
Dirk Brandewie93f08222013-02-06 09:02:13 -0800344
Stratos Karafotis317dd502014-07-18 08:37:17 -0700345static void __init intel_pstate_sysfs_expose_params(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800346{
Stratos Karafotis317dd502014-07-18 08:37:17 -0700347 struct kobject *intel_pstate_kobject;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800348 int rc;
349
350 intel_pstate_kobject = kobject_create_and_add("intel_pstate",
351 &cpu_subsys.dev_root->kobj);
352 BUG_ON(!intel_pstate_kobject);
Stratos Karafotis2d8d1f12014-07-18 08:37:20 -0700353 rc = sysfs_create_group(intel_pstate_kobject, &intel_pstate_attr_group);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800354 BUG_ON(rc);
355}
356
357/************************** sysfs end ************************/
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700358static int byt_get_min_pstate(void)
359{
360 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700361
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700362 rdmsrl(BYT_RATIOS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -0700363 return (value >> 8) & 0x7F;
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700364}
Dirk Brandewie93f08222013-02-06 09:02:13 -0800365
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700366static int byt_get_max_pstate(void)
367{
368 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700369
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700370 rdmsrl(BYT_RATIOS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -0700371 return (value >> 16) & 0x7F;
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700372}
373
Dirk Brandewie61d8d2a2014-02-12 10:01:07 -0800374static int byt_get_turbo_pstate(void)
375{
376 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700377
Dirk Brandewie61d8d2a2014-02-12 10:01:07 -0800378 rdmsrl(BYT_TURBO_RATIOS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -0700379 return value & 0x7F;
Dirk Brandewie61d8d2a2014-02-12 10:01:07 -0800380}
381
Dirk Brandewie007bea02013-12-18 10:32:39 -0800382static void byt_set_pstate(struct cpudata *cpudata, int pstate)
383{
384 u64 val;
385 int32_t vid_fp;
386 u32 vid;
387
388 val = pstate << 8;
Dirk Brandewiedd5fbf72014-06-20 07:27:59 -0700389 if (limits.no_turbo && !limits.turbo_disabled)
Dirk Brandewie007bea02013-12-18 10:32:39 -0800390 val |= (u64)1 << 32;
391
392 vid_fp = cpudata->vid.min + mul_fp(
393 int_tofp(pstate - cpudata->pstate.min_pstate),
394 cpudata->vid.ratio);
395
396 vid_fp = clamp_t(int32_t, vid_fp, cpudata->vid.min, cpudata->vid.max);
397 vid = fp_toint(vid_fp);
398
Dirk Brandewie21855ff2014-05-08 12:57:23 -0700399 if (pstate > cpudata->pstate.max_pstate)
400 vid = cpudata->vid.turbo;
401
Dirk Brandewie007bea02013-12-18 10:32:39 -0800402 val |= vid;
403
404 wrmsrl(MSR_IA32_PERF_CTL, val);
405}
406
407static void byt_get_vid(struct cpudata *cpudata)
408{
409 u64 value;
410
411 rdmsrl(BYT_VIDS, value);
Dirk Brandewiec16ed062014-06-20 07:27:58 -0700412 cpudata->vid.min = int_tofp((value >> 8) & 0x7f);
413 cpudata->vid.max = int_tofp((value >> 16) & 0x7f);
Dirk Brandewie007bea02013-12-18 10:32:39 -0800414 cpudata->vid.ratio = div_fp(
415 cpudata->vid.max - cpudata->vid.min,
416 int_tofp(cpudata->pstate.max_pstate -
417 cpudata->pstate.min_pstate));
Dirk Brandewie21855ff2014-05-08 12:57:23 -0700418
419 rdmsrl(BYT_TURBO_VIDS, value);
420 cpudata->vid.turbo = value & 0x7f;
Dirk Brandewie007bea02013-12-18 10:32:39 -0800421}
422
Dirk Brandewie016c8152013-10-21 09:20:34 -0700423static int core_get_min_pstate(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800424{
425 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700426
Konrad Rzeszutek Wilk05e99c8cf2013-03-20 14:21:10 +0000427 rdmsrl(MSR_PLATFORM_INFO, value);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800428 return (value >> 40) & 0xFF;
429}
430
Dirk Brandewie016c8152013-10-21 09:20:34 -0700431static int core_get_max_pstate(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800432{
433 u64 value;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700434
Konrad Rzeszutek Wilk05e99c8cf2013-03-20 14:21:10 +0000435 rdmsrl(MSR_PLATFORM_INFO, value);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800436 return (value >> 8) & 0xFF;
437}
438
Dirk Brandewie016c8152013-10-21 09:20:34 -0700439static int core_get_turbo_pstate(void)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800440{
441 u64 value;
442 int nont, ret;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700443
Konrad Rzeszutek Wilk05e99c8cf2013-03-20 14:21:10 +0000444 rdmsrl(MSR_NHM_TURBO_RATIO_LIMIT, value);
Dirk Brandewie016c8152013-10-21 09:20:34 -0700445 nont = core_get_max_pstate();
Stratos Karafotis285cb992014-07-18 08:37:21 -0700446 ret = (value) & 255;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800447 if (ret <= nont)
448 ret = nont;
449 return ret;
450}
451
Dirk Brandewie007bea02013-12-18 10:32:39 -0800452static void core_set_pstate(struct cpudata *cpudata, int pstate)
Dirk Brandewie016c8152013-10-21 09:20:34 -0700453{
454 u64 val;
455
456 val = pstate << 8;
Dirk Brandewiedd5fbf72014-06-20 07:27:59 -0700457 if (limits.no_turbo && !limits.turbo_disabled)
Dirk Brandewie016c8152013-10-21 09:20:34 -0700458 val |= (u64)1 << 32;
459
Dirk Brandewiebb180082014-03-19 08:45:54 -0700460 wrmsrl_on_cpu(cpudata->cpu, MSR_IA32_PERF_CTL, val);
Dirk Brandewie016c8152013-10-21 09:20:34 -0700461}
462
463static struct cpu_defaults core_params = {
464 .pid_policy = {
465 .sample_rate_ms = 10,
466 .deadband = 0,
467 .setpoint = 97,
468 .p_gain_pct = 20,
469 .d_gain_pct = 0,
470 .i_gain_pct = 0,
471 },
472 .funcs = {
473 .get_max = core_get_max_pstate,
474 .get_min = core_get_min_pstate,
475 .get_turbo = core_get_turbo_pstate,
476 .set = core_set_pstate,
477 },
478};
479
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700480static struct cpu_defaults byt_params = {
481 .pid_policy = {
482 .sample_rate_ms = 10,
483 .deadband = 0,
484 .setpoint = 97,
485 .p_gain_pct = 14,
486 .d_gain_pct = 0,
487 .i_gain_pct = 4,
488 },
489 .funcs = {
490 .get_max = byt_get_max_pstate,
491 .get_min = byt_get_min_pstate,
Dirk Brandewie61d8d2a2014-02-12 10:01:07 -0800492 .get_turbo = byt_get_turbo_pstate,
Dirk Brandewie007bea02013-12-18 10:32:39 -0800493 .set = byt_set_pstate,
494 .get_vid = byt_get_vid,
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700495 },
496};
497
Dirk Brandewie93f08222013-02-06 09:02:13 -0800498static void intel_pstate_get_min_max(struct cpudata *cpu, int *min, int *max)
499{
500 int max_perf = cpu->pstate.turbo_pstate;
Dirk Brandewie7244cb62013-10-21 09:20:33 -0700501 int max_perf_adj;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800502 int min_perf;
Stratos Karafotis845c1cb2014-07-18 08:37:19 -0700503
Dirk Brandewie93f08222013-02-06 09:02:13 -0800504 if (limits.no_turbo)
505 max_perf = cpu->pstate.max_pstate;
506
Dirk Brandewie7244cb62013-10-21 09:20:33 -0700507 max_perf_adj = fp_toint(mul_fp(int_tofp(max_perf), limits.max_perf));
508 *max = clamp_t(int, max_perf_adj,
Dirk Brandewie93f08222013-02-06 09:02:13 -0800509 cpu->pstate.min_pstate, cpu->pstate.turbo_pstate);
510
511 min_perf = fp_toint(mul_fp(int_tofp(max_perf), limits.min_perf));
Stratos Karafotis2d8d1f12014-07-18 08:37:20 -0700512 *min = clamp_t(int, min_perf, cpu->pstate.min_pstate, max_perf);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800513}
514
515static void intel_pstate_set_pstate(struct cpudata *cpu, int pstate)
516{
517 int max_perf, min_perf;
518
519 intel_pstate_get_min_max(cpu, &min_perf, &max_perf);
520
521 pstate = clamp_t(int, pstate, min_perf, max_perf);
522
523 if (pstate == cpu->pstate.current_pstate)
524 return;
525
Dirk Brandewie93f08222013-02-06 09:02:13 -0800526 trace_cpu_frequency(pstate * 100000, cpu->cpu);
Dirk Brandewie35363e92013-05-07 08:20:30 -0700527
Dirk Brandewie93f08222013-02-06 09:02:13 -0800528 cpu->pstate.current_pstate = pstate;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800529
Dirk Brandewie007bea02013-12-18 10:32:39 -0800530 pstate_funcs.set(cpu, pstate);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800531}
532
533static inline void intel_pstate_pstate_increase(struct cpudata *cpu, int steps)
534{
535 int target;
536 target = cpu->pstate.current_pstate + steps;
537
538 intel_pstate_set_pstate(cpu, target);
539}
540
541static inline void intel_pstate_pstate_decrease(struct cpudata *cpu, int steps)
542{
543 int target;
544 target = cpu->pstate.current_pstate - steps;
545 intel_pstate_set_pstate(cpu, target);
546}
547
548static void intel_pstate_get_cpu_pstates(struct cpudata *cpu)
549{
Dirk Brandewie016c8152013-10-21 09:20:34 -0700550 cpu->pstate.min_pstate = pstate_funcs.get_min();
551 cpu->pstate.max_pstate = pstate_funcs.get_max();
552 cpu->pstate.turbo_pstate = pstate_funcs.get_turbo();
Dirk Brandewie93f08222013-02-06 09:02:13 -0800553
Dirk Brandewie007bea02013-12-18 10:32:39 -0800554 if (pstate_funcs.get_vid)
555 pstate_funcs.get_vid(cpu);
Dirk Brandewied40a63c2014-05-08 12:57:24 -0700556 intel_pstate_set_pstate(cpu, cpu->pstate.min_pstate);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800557}
558
Stratos Karafotis6b17ddb2014-04-29 20:53:49 +0300559static inline void intel_pstate_calc_busy(struct cpudata *cpu)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800560{
Stratos Karafotis6b17ddb2014-04-29 20:53:49 +0300561 struct sample *sample = &cpu->sample;
Doug Smythiesbf810222014-05-30 10:10:57 -0700562 int64_t core_pct;
563 int32_t rem;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800564
Doug Smythiesbf810222014-05-30 10:10:57 -0700565 core_pct = int_tofp(sample->aperf) * int_tofp(100);
566 core_pct = div_u64_rem(core_pct, int_tofp(sample->mperf), &rem);
567
568 if ((rem << 1) >= int_tofp(sample->mperf))
569 core_pct += 1;
Dirk Brandewiefcb6a152014-02-03 08:55:31 -0800570
Dirk Brandewiefcb6a152014-02-03 08:55:31 -0800571 sample->freq = fp_toint(
Dirk Brandewiee66c1762014-02-25 10:35:37 -0800572 mul_fp(int_tofp(cpu->pstate.max_pstate * 1000), core_pct));
Dirk Brandewiefcb6a152014-02-03 08:55:31 -0800573
Doug Smythiesbf810222014-05-30 10:10:57 -0700574 sample->core_pct_busy = (int32_t)core_pct;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800575}
576
577static inline void intel_pstate_sample(struct cpudata *cpu)
578{
Dirk Brandewie93f08222013-02-06 09:02:13 -0800579 u64 aperf, mperf;
Stratos Karafotis4ab60c32014-07-18 08:37:24 -0700580 unsigned long flags;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800581
Stratos Karafotis4ab60c32014-07-18 08:37:24 -0700582 local_irq_save(flags);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800583 rdmsrl(MSR_IA32_APERF, aperf);
584 rdmsrl(MSR_IA32_MPERF, mperf);
Stratos Karafotis4ab60c32014-07-18 08:37:24 -0700585 local_irq_restore(flags);
Dirk Brandewieb69880f2014-01-16 10:32:25 -0800586
Dirk Brandewiee66c1762014-02-25 10:35:37 -0800587 aperf = aperf >> FRAC_BITS;
588 mperf = mperf >> FRAC_BITS;
Dirk Brandewiee66c1762014-02-25 10:35:37 -0800589
Dirk Brandewiec4ee8412014-05-29 09:32:24 -0700590 cpu->last_sample_time = cpu->sample.time;
591 cpu->sample.time = ktime_get();
Dirk Brandewied37e2b72014-02-12 10:01:04 -0800592 cpu->sample.aperf = aperf;
593 cpu->sample.mperf = mperf;
Dirk Brandewied37e2b72014-02-12 10:01:04 -0800594 cpu->sample.aperf -= cpu->prev_aperf;
595 cpu->sample.mperf -= cpu->prev_mperf;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800596
Stratos Karafotis6b17ddb2014-04-29 20:53:49 +0300597 intel_pstate_calc_busy(cpu);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800598
Dirk Brandewie93f08222013-02-06 09:02:13 -0800599 cpu->prev_aperf = aperf;
600 cpu->prev_mperf = mperf;
601}
602
603static inline void intel_pstate_set_sample_time(struct cpudata *cpu)
604{
Stratos Karafotisabf013b2014-07-18 08:37:22 -0700605 int delay;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800606
Stratos Karafotisabf013b2014-07-18 08:37:22 -0700607 delay = msecs_to_jiffies(pid_params.sample_rate_ms);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800608 mod_timer_pinned(&cpu->timer, jiffies + delay);
609}
610
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700611static inline int32_t intel_pstate_get_scaled_busy(struct cpudata *cpu)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800612{
Dirk Brandewiec4ee8412014-05-29 09:32:24 -0700613 int32_t core_busy, max_pstate, current_pstate, sample_ratio;
614 u32 duration_us;
615 u32 sample_time;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800616
Dirk Brandewied37e2b72014-02-12 10:01:04 -0800617 core_busy = cpu->sample.core_pct_busy;
Dirk Brandewie2134ed42013-07-18 08:48:42 -0700618 max_pstate = int_tofp(cpu->pstate.max_pstate);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800619 current_pstate = int_tofp(cpu->pstate.current_pstate);
Dirk Brandewiee66c1762014-02-25 10:35:37 -0800620 core_busy = mul_fp(core_busy, div_fp(max_pstate, current_pstate));
Dirk Brandewiec4ee8412014-05-29 09:32:24 -0700621
Stratos Karafotis285cb992014-07-18 08:37:21 -0700622 sample_time = pid_params.sample_rate_ms * USEC_PER_MSEC;
Dirk Brandewiec4ee8412014-05-29 09:32:24 -0700623 duration_us = (u32) ktime_us_delta(cpu->sample.time,
Stratos Karafotisc4108332014-07-18 08:37:23 -0700624 cpu->last_sample_time);
Dirk Brandewiec4ee8412014-05-29 09:32:24 -0700625 if (duration_us > sample_time * 3) {
626 sample_ratio = div_fp(int_tofp(sample_time),
Stratos Karafotisc4108332014-07-18 08:37:23 -0700627 int_tofp(duration_us));
Dirk Brandewiec4ee8412014-05-29 09:32:24 -0700628 core_busy = mul_fp(core_busy, sample_ratio);
629 }
630
Dirk Brandewief0fe3cd2014-05-29 09:32:23 -0700631 return core_busy;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800632}
633
634static inline void intel_pstate_adjust_busy_pstate(struct cpudata *cpu)
635{
Brennan Shacklettd253d2a2013-10-21 09:20:32 -0700636 int32_t busy_scaled;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800637 struct _pid *pid;
638 signed int ctl = 0;
639 int steps;
640
641 pid = &cpu->pid;
642 busy_scaled = intel_pstate_get_scaled_busy(cpu);
643
644 ctl = pid_calc(pid, busy_scaled);
645
646 steps = abs(ctl);
Dirk Brandewieb69880f2014-01-16 10:32:25 -0800647
Dirk Brandewie93f08222013-02-06 09:02:13 -0800648 if (ctl < 0)
649 intel_pstate_pstate_increase(cpu, steps);
650 else
651 intel_pstate_pstate_decrease(cpu, steps);
652}
653
Dirk Brandewie93f08222013-02-06 09:02:13 -0800654static void intel_pstate_timer_func(unsigned long __data)
655{
656 struct cpudata *cpu = (struct cpudata *) __data;
Dirk Brandewieb69880f2014-01-16 10:32:25 -0800657 struct sample *sample;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800658
659 intel_pstate_sample(cpu);
Dirk Brandewieb69880f2014-01-16 10:32:25 -0800660
Dirk Brandewied37e2b72014-02-12 10:01:04 -0800661 sample = &cpu->sample;
Dirk Brandewieb69880f2014-01-16 10:32:25 -0800662
Dirk Brandewieca182ae2013-05-07 08:20:27 -0700663 intel_pstate_adjust_busy_pstate(cpu);
Dirk Brandewieb69880f2014-01-16 10:32:25 -0800664
665 trace_pstate_sample(fp_toint(sample->core_pct_busy),
666 fp_toint(intel_pstate_get_scaled_busy(cpu)),
667 cpu->pstate.current_pstate,
668 sample->mperf,
669 sample->aperf,
Dirk Brandewieb69880f2014-01-16 10:32:25 -0800670 sample->freq);
671
Dirk Brandewie93f08222013-02-06 09:02:13 -0800672 intel_pstate_set_sample_time(cpu);
673}
674
675#define ICPU(model, policy) \
Dirk Brandewie6cbd7ee2014-01-06 10:59:16 -0800676 { X86_VENDOR_INTEL, 6, model, X86_FEATURE_APERFMPERF,\
677 (unsigned long)&policy }
Dirk Brandewie93f08222013-02-06 09:02:13 -0800678
679static const struct x86_cpu_id intel_pstate_cpu_ids[] = {
Dirk Brandewie016c8152013-10-21 09:20:34 -0700680 ICPU(0x2a, core_params),
681 ICPU(0x2d, core_params),
Dirk Brandewie19e77c22013-10-21 09:20:35 -0700682 ICPU(0x37, byt_params),
Dirk Brandewie016c8152013-10-21 09:20:34 -0700683 ICPU(0x3a, core_params),
684 ICPU(0x3c, core_params),
Dirk Brandewiec7e241d2014-05-08 12:57:27 -0700685 ICPU(0x3d, core_params),
Dirk Brandewie016c8152013-10-21 09:20:34 -0700686 ICPU(0x3e, core_params),
687 ICPU(0x3f, core_params),
688 ICPU(0x45, core_params),
689 ICPU(0x46, core_params),
Dirk Brandewiec7e241d2014-05-08 12:57:27 -0700690 ICPU(0x4f, core_params),
691 ICPU(0x56, core_params),
Dirk Brandewie93f08222013-02-06 09:02:13 -0800692 {}
693};
694MODULE_DEVICE_TABLE(x86cpu, intel_pstate_cpu_ids);
695
696static int intel_pstate_init_cpu(unsigned int cpunum)
697{
Dirk Brandewie93f08222013-02-06 09:02:13 -0800698 struct cpudata *cpu;
699
Dirk Brandewie93f08222013-02-06 09:02:13 -0800700 all_cpu_data[cpunum] = kzalloc(sizeof(struct cpudata), GFP_KERNEL);
701 if (!all_cpu_data[cpunum])
702 return -ENOMEM;
703
704 cpu = all_cpu_data[cpunum];
705
Dirk Brandewie93f08222013-02-06 09:02:13 -0800706 cpu->cpu = cpunum;
Vincent Minet179e8472014-07-05 01:51:33 +0200707 intel_pstate_get_cpu_pstates(cpu);
Dirk Brandewie016c8152013-10-21 09:20:34 -0700708
Dirk Brandewie93f08222013-02-06 09:02:13 -0800709 init_timer_deferrable(&cpu->timer);
710 cpu->timer.function = intel_pstate_timer_func;
Stratos Karafotis2d8d1f12014-07-18 08:37:20 -0700711 cpu->timer.data = (unsigned long)cpu;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800712 cpu->timer.expires = jiffies + HZ/100;
713 intel_pstate_busy_pid_reset(cpu);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800714 intel_pstate_sample(cpu);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800715
716 add_timer_on(&cpu->timer, cpunum);
717
718 pr_info("Intel pstate controlling: cpu %d\n", cpunum);
719
720 return 0;
721}
722
723static unsigned int intel_pstate_get(unsigned int cpu_num)
724{
725 struct sample *sample;
726 struct cpudata *cpu;
727
728 cpu = all_cpu_data[cpu_num];
729 if (!cpu)
730 return 0;
Dirk Brandewied37e2b72014-02-12 10:01:04 -0800731 sample = &cpu->sample;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800732 return sample->freq;
733}
734
735static int intel_pstate_set_policy(struct cpufreq_policy *policy)
736{
737 struct cpudata *cpu;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800738
739 cpu = all_cpu_data[policy->cpu];
740
Dirk Brandewied3929b82013-03-05 14:15:26 -0800741 if (!policy->cpuinfo.max_freq)
742 return -ENODEV;
743
Dirk Brandewie93f08222013-02-06 09:02:13 -0800744 if (policy->policy == CPUFREQ_POLICY_PERFORMANCE) {
745 limits.min_perf_pct = 100;
746 limits.min_perf = int_tofp(1);
747 limits.max_perf_pct = 100;
748 limits.max_perf = int_tofp(1);
Dirk Brandewiedd5fbf72014-06-20 07:27:59 -0700749 limits.no_turbo = limits.turbo_disabled;
Srinivas Pandruvadad1b68482013-04-09 22:38:18 +0000750 return 0;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800751 }
Srinivas Pandruvadad1b68482013-04-09 22:38:18 +0000752 limits.min_perf_pct = (policy->min * 100) / policy->cpuinfo.max_freq;
753 limits.min_perf_pct = clamp_t(int, limits.min_perf_pct, 0 , 100);
754 limits.min_perf = div_fp(int_tofp(limits.min_perf_pct), int_tofp(100));
755
Stratos Karafotis285cb992014-07-18 08:37:21 -0700756 limits.max_policy_pct = (policy->max * 100) / policy->cpuinfo.max_freq;
Dirk Brandewied8f469e2013-05-07 08:20:26 -0700757 limits.max_policy_pct = clamp_t(int, limits.max_policy_pct, 0 , 100);
758 limits.max_perf_pct = min(limits.max_policy_pct, limits.max_sysfs_pct);
Srinivas Pandruvadad1b68482013-04-09 22:38:18 +0000759 limits.max_perf = div_fp(int_tofp(limits.max_perf_pct), int_tofp(100));
Dirk Brandewie93f08222013-02-06 09:02:13 -0800760
761 return 0;
762}
763
764static int intel_pstate_verify_policy(struct cpufreq_policy *policy)
765{
Viresh Kumarbe49e342013-10-02 14:13:19 +0530766 cpufreq_verify_within_cpu_limits(policy);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800767
Stratos Karafotis285cb992014-07-18 08:37:21 -0700768 if (policy->policy != CPUFREQ_POLICY_POWERSAVE &&
Stratos Karafotisc4108332014-07-18 08:37:23 -0700769 policy->policy != CPUFREQ_POLICY_PERFORMANCE)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800770 return -EINVAL;
771
772 return 0;
773}
774
Dirk Brandewiebb180082014-03-19 08:45:54 -0700775static void intel_pstate_stop_cpu(struct cpufreq_policy *policy)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800776{
Dirk Brandewiebb180082014-03-19 08:45:54 -0700777 int cpu_num = policy->cpu;
778 struct cpudata *cpu = all_cpu_data[cpu_num];
Dirk Brandewie93f08222013-02-06 09:02:13 -0800779
Dirk Brandewiebb180082014-03-19 08:45:54 -0700780 pr_info("intel_pstate CPU %d exiting\n", cpu_num);
781
Dirk Brandewiec2294a22014-03-24 07:41:29 -0700782 del_timer_sync(&all_cpu_data[cpu_num]->timer);
Dirk Brandewiebb180082014-03-19 08:45:54 -0700783 intel_pstate_set_pstate(cpu, cpu->pstate.min_pstate);
784 kfree(all_cpu_data[cpu_num]);
785 all_cpu_data[cpu_num] = NULL;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800786}
787
Paul Gortmaker27609842013-06-19 13:54:04 -0400788static int intel_pstate_cpu_init(struct cpufreq_policy *policy)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800789{
Dirk Brandewie93f08222013-02-06 09:02:13 -0800790 struct cpudata *cpu;
Dirk Brandewie52e0a502013-10-15 11:06:14 -0700791 int rc;
Dirk Brandewiedd5fbf72014-06-20 07:27:59 -0700792 u64 misc_en;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800793
794 rc = intel_pstate_init_cpu(policy->cpu);
795 if (rc)
796 return rc;
797
798 cpu = all_cpu_data[policy->cpu];
799
Dirk Brandewiedd5fbf72014-06-20 07:27:59 -0700800 rdmsrl(MSR_IA32_MISC_ENABLE, misc_en);
801 if (misc_en & MSR_IA32_MISC_ENABLE_TURBO_DISABLE ||
Stratos Karafotisc4108332014-07-18 08:37:23 -0700802 cpu->pstate.max_pstate == cpu->pstate.turbo_pstate) {
Dirk Brandewiedd5fbf72014-06-20 07:27:59 -0700803 limits.turbo_disabled = 1;
804 limits.no_turbo = 1;
805 }
806 if (limits.min_perf_pct == 100 && limits.max_perf_pct == 100)
Dirk Brandewie93f08222013-02-06 09:02:13 -0800807 policy->policy = CPUFREQ_POLICY_PERFORMANCE;
808 else
809 policy->policy = CPUFREQ_POLICY_POWERSAVE;
810
Dirk Brandewie52e0a502013-10-15 11:06:14 -0700811 policy->min = cpu->pstate.min_pstate * 100000;
812 policy->max = cpu->pstate.turbo_pstate * 100000;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800813
814 /* cpuinfo and default policy values */
815 policy->cpuinfo.min_freq = cpu->pstate.min_pstate * 100000;
816 policy->cpuinfo.max_freq = cpu->pstate.turbo_pstate * 100000;
817 policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL;
818 cpumask_set_cpu(policy->cpu, policy->cpus);
819
820 return 0;
821}
822
823static struct cpufreq_driver intel_pstate_driver = {
824 .flags = CPUFREQ_CONST_LOOPS,
825 .verify = intel_pstate_verify_policy,
826 .setpolicy = intel_pstate_set_policy,
827 .get = intel_pstate_get,
828 .init = intel_pstate_cpu_init,
Dirk Brandewiebb180082014-03-19 08:45:54 -0700829 .stop_cpu = intel_pstate_stop_cpu,
Dirk Brandewie93f08222013-02-06 09:02:13 -0800830 .name = "intel_pstate",
Dirk Brandewie93f08222013-02-06 09:02:13 -0800831};
832
Dirk Brandewie6be26492013-02-15 22:55:10 +0100833static int __initdata no_load;
834
Dirk Brandewieb563b4e2013-03-22 01:29:28 +0100835static int intel_pstate_msrs_not_valid(void)
836{
837 /* Check that all the msr's we are using are valid. */
838 u64 aperf, mperf, tmp;
839
840 rdmsrl(MSR_IA32_APERF, aperf);
841 rdmsrl(MSR_IA32_MPERF, mperf);
842
Dirk Brandewie016c8152013-10-21 09:20:34 -0700843 if (!pstate_funcs.get_max() ||
Stratos Karafotisc4108332014-07-18 08:37:23 -0700844 !pstate_funcs.get_min() ||
845 !pstate_funcs.get_turbo())
Dirk Brandewieb563b4e2013-03-22 01:29:28 +0100846 return -ENODEV;
847
848 rdmsrl(MSR_IA32_APERF, tmp);
849 if (!(tmp - aperf))
850 return -ENODEV;
851
852 rdmsrl(MSR_IA32_MPERF, tmp);
853 if (!(tmp - mperf))
854 return -ENODEV;
855
856 return 0;
857}
Dirk Brandewie016c8152013-10-21 09:20:34 -0700858
Dirk Brandewiee0a261a2013-10-30 08:38:32 -0700859static void copy_pid_params(struct pstate_adjust_policy *policy)
Dirk Brandewie016c8152013-10-21 09:20:34 -0700860{
861 pid_params.sample_rate_ms = policy->sample_rate_ms;
862 pid_params.p_gain_pct = policy->p_gain_pct;
863 pid_params.i_gain_pct = policy->i_gain_pct;
864 pid_params.d_gain_pct = policy->d_gain_pct;
865 pid_params.deadband = policy->deadband;
866 pid_params.setpoint = policy->setpoint;
867}
868
Dirk Brandewiee0a261a2013-10-30 08:38:32 -0700869static void copy_cpu_funcs(struct pstate_funcs *funcs)
Dirk Brandewie016c8152013-10-21 09:20:34 -0700870{
871 pstate_funcs.get_max = funcs->get_max;
872 pstate_funcs.get_min = funcs->get_min;
873 pstate_funcs.get_turbo = funcs->get_turbo;
874 pstate_funcs.set = funcs->set;
Dirk Brandewie007bea02013-12-18 10:32:39 -0800875 pstate_funcs.get_vid = funcs->get_vid;
Dirk Brandewie016c8152013-10-21 09:20:34 -0700876}
877
Adrian Huangfbbcdc02013-10-31 23:24:05 +0800878#if IS_ENABLED(CONFIG_ACPI)
879#include <acpi/processor.h>
880
881static bool intel_pstate_no_acpi_pss(void)
882{
883 int i;
884
885 for_each_possible_cpu(i) {
886 acpi_status status;
887 union acpi_object *pss;
888 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
889 struct acpi_processor *pr = per_cpu(processors, i);
890
891 if (!pr)
892 continue;
893
894 status = acpi_evaluate_object(pr->handle, "_PSS", NULL, &buffer);
895 if (ACPI_FAILURE(status))
896 continue;
897
898 pss = buffer.pointer;
899 if (pss && pss->type == ACPI_TYPE_PACKAGE) {
900 kfree(pss);
901 return false;
902 }
903
904 kfree(pss);
905 }
906
907 return true;
908}
909
910struct hw_vendor_info {
911 u16 valid;
912 char oem_id[ACPI_OEM_ID_SIZE];
913 char oem_table_id[ACPI_OEM_TABLE_ID_SIZE];
914};
915
916/* Hardware vendor-specific info that has its own power management modes */
917static struct hw_vendor_info vendor_info[] = {
918 {1, "HP ", "ProLiant"},
919 {0, "", ""},
920};
921
922static bool intel_pstate_platform_pwr_mgmt_exists(void)
923{
924 struct acpi_table_header hdr;
925 struct hw_vendor_info *v_info;
926
Stratos Karafotisc4108332014-07-18 08:37:23 -0700927 if (acpi_disabled ||
928 ACPI_FAILURE(acpi_get_table_header(ACPI_SIG_FADT, 0, &hdr)))
Adrian Huangfbbcdc02013-10-31 23:24:05 +0800929 return false;
930
931 for (v_info = vendor_info; v_info->valid; v_info++) {
Stratos Karafotisc4108332014-07-18 08:37:23 -0700932 if (!strncmp(hdr.oem_id, v_info->oem_id, ACPI_OEM_ID_SIZE) &&
933 !strncmp(hdr.oem_table_id, v_info->oem_table_id, ACPI_OEM_TABLE_ID_SIZE) &&
934 intel_pstate_no_acpi_pss())
Adrian Huangfbbcdc02013-10-31 23:24:05 +0800935 return true;
936 }
937
938 return false;
939}
940#else /* CONFIG_ACPI not enabled */
941static inline bool intel_pstate_platform_pwr_mgmt_exists(void) { return false; }
942#endif /* CONFIG_ACPI */
943
Dirk Brandewie93f08222013-02-06 09:02:13 -0800944static int __init intel_pstate_init(void)
945{
Dirk Brandewie907cc902013-03-05 14:15:27 -0800946 int cpu, rc = 0;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800947 const struct x86_cpu_id *id;
Dirk Brandewie016c8152013-10-21 09:20:34 -0700948 struct cpu_defaults *cpu_info;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800949
Dirk Brandewie6be26492013-02-15 22:55:10 +0100950 if (no_load)
951 return -ENODEV;
952
Dirk Brandewie93f08222013-02-06 09:02:13 -0800953 id = x86_match_cpu(intel_pstate_cpu_ids);
954 if (!id)
955 return -ENODEV;
956
Adrian Huangfbbcdc02013-10-31 23:24:05 +0800957 /*
958 * The Intel pstate driver will be ignored if the platform
959 * firmware has its own power management modes.
960 */
961 if (intel_pstate_platform_pwr_mgmt_exists())
962 return -ENODEV;
963
Dirk Brandewie016c8152013-10-21 09:20:34 -0700964 cpu_info = (struct cpu_defaults *)id->driver_data;
965
966 copy_pid_params(&cpu_info->pid_policy);
967 copy_cpu_funcs(&cpu_info->funcs);
968
Dirk Brandewieb563b4e2013-03-22 01:29:28 +0100969 if (intel_pstate_msrs_not_valid())
970 return -ENODEV;
971
Dirk Brandewie93f08222013-02-06 09:02:13 -0800972 pr_info("Intel P-state driver initializing.\n");
973
Wei Yongjunb57ffac2013-05-13 08:03:43 +0000974 all_cpu_data = vzalloc(sizeof(void *) * num_possible_cpus());
Dirk Brandewie93f08222013-02-06 09:02:13 -0800975 if (!all_cpu_data)
976 return -ENOMEM;
Dirk Brandewie93f08222013-02-06 09:02:13 -0800977
978 rc = cpufreq_register_driver(&intel_pstate_driver);
979 if (rc)
980 goto out;
981
982 intel_pstate_debug_expose_params();
983 intel_pstate_sysfs_expose_params();
Dirk Brandewieb69880f2014-01-16 10:32:25 -0800984
Dirk Brandewie93f08222013-02-06 09:02:13 -0800985 return rc;
986out:
Dirk Brandewie907cc902013-03-05 14:15:27 -0800987 get_online_cpus();
988 for_each_online_cpu(cpu) {
989 if (all_cpu_data[cpu]) {
990 del_timer_sync(&all_cpu_data[cpu]->timer);
991 kfree(all_cpu_data[cpu]);
992 }
993 }
994
995 put_online_cpus();
996 vfree(all_cpu_data);
Dirk Brandewie93f08222013-02-06 09:02:13 -0800997 return -ENODEV;
998}
999device_initcall(intel_pstate_init);
1000
Dirk Brandewie6be26492013-02-15 22:55:10 +01001001static int __init intel_pstate_setup(char *str)
1002{
1003 if (!str)
1004 return -EINVAL;
1005
1006 if (!strcmp(str, "disable"))
1007 no_load = 1;
1008 return 0;
1009}
1010early_param("intel_pstate", intel_pstate_setup);
1011
Dirk Brandewie93f08222013-02-06 09:02:13 -08001012MODULE_AUTHOR("Dirk Brandewie <dirk.j.brandewie@intel.com>");
1013MODULE_DESCRIPTION("'intel_pstate' - P state driver Intel Core processors");
1014MODULE_LICENSE("GPL");