blob: 37537220e48cc7421399db34b5b09e66f13cdf7b [file] [log] [blame]
Viresh Kumar4471a342012-10-26 00:47:42 +02001/*
2 * drivers/cpufreq/cpufreq_governor.h
3 *
4 * Header file for CPUFreq governors common code
5 *
6 * Copyright (C) 2001 Russell King
7 * (C) 2003 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>.
8 * (C) 2003 Jun Nakajima <jun.nakajima@intel.com>
9 * (C) 2009 Alexander Clouter <alex@digriz.org.uk>
10 * (c) 2012 Viresh Kumar <viresh.kumar@linaro.org>
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
15 */
16
Borislav Petkovbeb0ff32013-04-02 12:26:15 +000017#ifndef _CPUFREQ_GOVERNOR_H
18#define _CPUFREQ_GOVERNOR_H
Viresh Kumar4471a342012-10-26 00:47:42 +020019
Rafael J. Wysocki2dd3e722015-12-08 21:44:05 +010020#include <linux/atomic.h>
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +010021#include <linux/irq_work.h>
Viresh Kumar4471a342012-10-26 00:47:42 +020022#include <linux/cpufreq.h>
Viresh Kumar5ff0a262013-08-06 22:53:03 +053023#include <linux/kernel_stat.h>
24#include <linux/module.h>
Viresh Kumar4471a342012-10-26 00:47:42 +020025#include <linux/mutex.h>
Viresh Kumar4471a342012-10-26 00:47:42 +020026
27/*
28 * The polling frequency depends on the capability of the processor. Default
29 * polling frequency is 1000 times the transition latency of the processor. The
Stratos Karafotisc4afc412013-08-26 21:42:21 +030030 * governor will work on any processor with transition latency <= 10ms, using
Viresh Kumar4471a342012-10-26 00:47:42 +020031 * appropriate sampling rate.
32 *
Stratos Karafotisc4afc412013-08-26 21:42:21 +030033 * For CPUs with transition latency > 10ms (mostly drivers with CPUFREQ_ETERNAL)
34 * this governor will not work. All times here are in us (micro seconds).
Viresh Kumar4471a342012-10-26 00:47:42 +020035 */
36#define MIN_SAMPLING_RATE_RATIO (2)
37#define LATENCY_MULTIPLIER (1000)
Viresh Kumar98104ee2013-02-26 15:07:24 +053038#define MIN_LATENCY_MULTIPLIER (20)
Viresh Kumar4471a342012-10-26 00:47:42 +020039#define TRANSITION_LATENCY_LIMIT (10 * 1000 * 1000)
40
41/* Ondemand Sampling types */
42enum {OD_NORMAL_SAMPLE, OD_SUB_SAMPLE};
43
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000044/*
45 * Macro for creating governors sysfs routines
46 *
47 * - gov_sys: One governor instance per whole system
48 * - gov_pol: One governor instance per policy
49 */
50
51/* Create attributes */
52#define gov_sys_attr_ro(_name) \
53static struct global_attr _name##_gov_sys = \
54__ATTR(_name, 0444, show_##_name##_gov_sys, NULL)
55
56#define gov_sys_attr_rw(_name) \
57static struct global_attr _name##_gov_sys = \
58__ATTR(_name, 0644, show_##_name##_gov_sys, store_##_name##_gov_sys)
59
60#define gov_pol_attr_ro(_name) \
61static struct freq_attr _name##_gov_pol = \
62__ATTR(_name, 0444, show_##_name##_gov_pol, NULL)
63
64#define gov_pol_attr_rw(_name) \
65static struct freq_attr _name##_gov_pol = \
66__ATTR(_name, 0644, show_##_name##_gov_pol, store_##_name##_gov_pol)
67
68#define gov_sys_pol_attr_rw(_name) \
69 gov_sys_attr_rw(_name); \
70 gov_pol_attr_rw(_name)
71
72#define gov_sys_pol_attr_ro(_name) \
73 gov_sys_attr_ro(_name); \
74 gov_pol_attr_ro(_name)
75
76/* Create show/store routines */
77#define show_one(_gov, file_name) \
78static ssize_t show_##file_name##_gov_sys \
Viresh Kumar4471a342012-10-26 00:47:42 +020079(struct kobject *kobj, struct attribute *attr, char *buf) \
80{ \
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +010081 struct _gov##_dbs_tuners *tuners = _gov##_dbs_gov.gdbs_data->tuners; \
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000082 return sprintf(buf, "%u\n", tuners->file_name); \
83} \
84 \
Viresh Kumarbb176f72013-06-19 14:19:33 +053085static ssize_t show_##file_name##_gov_pol \
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000086(struct cpufreq_policy *policy, char *buf) \
87{ \
Rafael J. Wysockibc505472016-02-07 16:24:26 +010088 struct policy_dbs_info *policy_dbs = policy->governor_data; \
89 struct dbs_data *dbs_data = policy_dbs->dbs_data; \
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000090 struct _gov##_dbs_tuners *tuners = dbs_data->tuners; \
91 return sprintf(buf, "%u\n", tuners->file_name); \
Viresh Kumar4471a342012-10-26 00:47:42 +020092}
93
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000094#define store_one(_gov, file_name) \
95static ssize_t store_##file_name##_gov_sys \
Viresh Kumarbb176f72013-06-19 14:19:33 +053096(struct kobject *kobj, struct attribute *attr, const char *buf, size_t count) \
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000097{ \
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +010098 struct dbs_data *dbs_data = _gov##_dbs_gov.gdbs_data; \
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000099 return store_##file_name(dbs_data, buf, count); \
100} \
101 \
102static ssize_t store_##file_name##_gov_pol \
103(struct cpufreq_policy *policy, const char *buf, size_t count) \
104{ \
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100105 struct policy_dbs_info *policy_dbs = policy->governor_data; \
106 return store_##file_name(policy_dbs->dbs_data, buf, count); \
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000107}
108
109#define show_store_one(_gov, file_name) \
110show_one(_gov, file_name); \
111store_one(_gov, file_name)
112
113/* create helper routines */
Viresh Kumar4471a342012-10-26 00:47:42 +0200114#define define_get_cpu_dbs_routines(_dbs_info) \
Viresh Kumar875b8502015-06-19 17:18:03 +0530115static struct cpu_dbs_info *get_cpu_cdbs(int cpu) \
Viresh Kumar4471a342012-10-26 00:47:42 +0200116{ \
117 return &per_cpu(_dbs_info, cpu).cdbs; \
118} \
119 \
120static void *get_cpu_dbs_info_s(int cpu) \
121{ \
122 return &per_cpu(_dbs_info, cpu); \
123}
124
125/*
126 * Abbreviations:
127 * dbs: used as a shortform for demand based switching It helps to keep variable
128 * names smaller, simpler
129 * cdbs: common dbs
Namhyung Kime5dde922013-02-28 05:38:00 +0000130 * od_*: On-demand governor
Viresh Kumar4471a342012-10-26 00:47:42 +0200131 * cs_*: Conservative governor
132 */
133
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100134/* Governor demand based switching data (per-policy or global). */
135struct dbs_data {
136 unsigned int min_sampling_rate;
137 int usage_count;
138 void *tuners;
139};
140
Viresh Kumar44152cb2015-07-18 11:30:59 +0530141/* Common to all CPUs of a policy */
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100142struct policy_dbs_info {
Viresh Kumar44152cb2015-07-18 11:30:59 +0530143 struct cpufreq_policy *policy;
144 /*
Viresh Kumar70f43e52015-12-09 07:34:42 +0530145 * Per policy mutex that serializes load evaluation from limit-change
146 * and work-handler.
Viresh Kumar44152cb2015-07-18 11:30:59 +0530147 */
148 struct mutex timer_mutex;
Viresh Kumar70f43e52015-12-09 07:34:42 +0530149
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100150 u64 last_sample_time;
151 s64 sample_delay_ns;
Rafael J. Wysocki686cc632016-02-08 23:41:10 +0100152 atomic_t work_count;
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100153 struct irq_work irq_work;
Viresh Kumar70f43e52015-12-09 07:34:42 +0530154 struct work_struct work;
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100155 /* dbs_data may be shared between multiple policy objects */
156 struct dbs_data *dbs_data;
Viresh Kumar44152cb2015-07-18 11:30:59 +0530157};
158
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100159static inline void gov_update_sample_delay(struct policy_dbs_info *policy_dbs,
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100160 unsigned int delay_us)
161{
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100162 policy_dbs->sample_delay_ns = delay_us * NSEC_PER_USEC;
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100163}
164
Viresh Kumar4471a342012-10-26 00:47:42 +0200165/* Per cpu structures */
Viresh Kumar875b8502015-06-19 17:18:03 +0530166struct cpu_dbs_info {
Viresh Kumar1e7586a2012-10-26 00:51:21 +0200167 u64 prev_cpu_idle;
168 u64 prev_cpu_wall;
169 u64 prev_cpu_nice;
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530170 /*
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530171 * Used to keep track of load in the previous interval. However, when
172 * explicitly set to zero, it is used as a flag to ensure that we copy
173 * the previous load to the current interval only once, upon the first
174 * wake-up from idle.
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530175 */
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530176 unsigned int prev_load;
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100177 struct update_util_data update_util;
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100178 struct policy_dbs_info *policy_dbs;
Viresh Kumar4471a342012-10-26 00:47:42 +0200179};
180
181struct od_cpu_dbs_info_s {
Viresh Kumar875b8502015-06-19 17:18:03 +0530182 struct cpu_dbs_info cdbs;
Viresh Kumar4471a342012-10-26 00:47:42 +0200183 struct cpufreq_frequency_table *freq_table;
184 unsigned int freq_lo;
185 unsigned int freq_lo_jiffies;
186 unsigned int freq_hi_jiffies;
187 unsigned int rate_mult;
188 unsigned int sample_type:1;
189};
190
191struct cs_cpu_dbs_info_s {
Viresh Kumar875b8502015-06-19 17:18:03 +0530192 struct cpu_dbs_info cdbs;
Viresh Kumar4471a342012-10-26 00:47:42 +0200193 unsigned int down_skip;
194 unsigned int requested_freq;
Viresh Kumar4471a342012-10-26 00:47:42 +0200195};
196
Stratos Karafotisc4afc412013-08-26 21:42:21 +0300197/* Per policy Governors sysfs tunables */
Viresh Kumar4471a342012-10-26 00:47:42 +0200198struct od_dbs_tuners {
Viresh Kumar6c4640c2013-08-05 12:28:02 +0530199 unsigned int ignore_nice_load;
Viresh Kumar4471a342012-10-26 00:47:42 +0200200 unsigned int sampling_rate;
201 unsigned int sampling_down_factor;
202 unsigned int up_threshold;
Viresh Kumar4471a342012-10-26 00:47:42 +0200203 unsigned int powersave_bias;
204 unsigned int io_is_busy;
205};
206
207struct cs_dbs_tuners {
Viresh Kumar6c4640c2013-08-05 12:28:02 +0530208 unsigned int ignore_nice_load;
Viresh Kumar4471a342012-10-26 00:47:42 +0200209 unsigned int sampling_rate;
210 unsigned int sampling_down_factor;
211 unsigned int up_threshold;
212 unsigned int down_threshold;
213 unsigned int freq_step;
214};
215
Stratos Karafotisc4afc412013-08-26 21:42:21 +0300216/* Common Governor data across policies */
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100217struct dbs_governor {
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100218 struct cpufreq_governor gov;
219
Viresh Kumar4471a342012-10-26 00:47:42 +0200220 #define GOV_ONDEMAND 0
221 #define GOV_CONSERVATIVE 1
222 int governor;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000223 struct attribute_group *attr_group_gov_sys; /* one governor - system */
224 struct attribute_group *attr_group_gov_pol; /* one governor - policy */
Viresh Kumar4471a342012-10-26 00:47:42 +0200225
Viresh Kumar0b981e72013-10-02 14:13:18 +0530226 /*
227 * Common data for platforms that don't set
228 * CPUFREQ_HAVE_GOVERNOR_PER_POLICY
229 */
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000230 struct dbs_data *gdbs_data;
Viresh Kumar4471a342012-10-26 00:47:42 +0200231
Viresh Kumar875b8502015-06-19 17:18:03 +0530232 struct cpu_dbs_info *(*get_cpu_cdbs)(int cpu);
Viresh Kumar4471a342012-10-26 00:47:42 +0200233 void *(*get_cpu_dbs_info_s)(int cpu);
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100234 unsigned int (*gov_dbs_timer)(struct cpufreq_policy *policy);
Viresh Kumar4471a342012-10-26 00:47:42 +0200235 void (*gov_check_cpu)(int cpu, unsigned int load);
Viresh Kumar8e0484d2015-06-03 15:57:11 +0530236 int (*init)(struct dbs_data *dbs_data, bool notify);
237 void (*exit)(struct dbs_data *dbs_data, bool notify);
Viresh Kumar4471a342012-10-26 00:47:42 +0200238
239 /* Governor specific ops, see below */
240 void *gov_ops;
241};
242
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100243static inline struct dbs_governor *dbs_governor_of(struct cpufreq_policy *policy)
244{
245 return container_of(policy->governor, struct dbs_governor, gov);
246}
247
Viresh Kumar4471a342012-10-26 00:47:42 +0200248/* Governor specific ops, will be passed to dbs_data->gov_ops */
249struct od_ops {
Viresh Kumar4471a342012-10-26 00:47:42 +0200250 void (*powersave_bias_init_cpu)(int cpu);
251 unsigned int (*powersave_bias_target)(struct cpufreq_policy *policy,
252 unsigned int freq_next, unsigned int relation);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530253 void (*freq_increase)(struct cpufreq_policy *policy, unsigned int freq);
Viresh Kumar4471a342012-10-26 00:47:42 +0200254};
255
Viresh Kumar4471a342012-10-26 00:47:42 +0200256static inline int delay_for_sampling_rate(unsigned int sampling_rate)
257{
258 int delay = usecs_to_jiffies(sampling_rate);
259
260 /* We want all CPUs to do sampling nearly on same jiffy */
261 if (num_online_cpus() > 1)
262 delay -= jiffies % delay;
263
264 return delay;
265}
266
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000267#define declare_show_sampling_rate_min(_gov) \
268static ssize_t show_sampling_rate_min_gov_sys \
269(struct kobject *kobj, struct attribute *attr, char *buf) \
270{ \
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100271 struct dbs_data *dbs_data = _gov##_dbs_gov.gdbs_data; \
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000272 return sprintf(buf, "%u\n", dbs_data->min_sampling_rate); \
273} \
274 \
275static ssize_t show_sampling_rate_min_gov_pol \
276(struct cpufreq_policy *policy, char *buf) \
277{ \
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100278 struct policy_dbs_info *policy_dbs = policy->governor_data; \
279 struct dbs_data *dbs_data = policy_dbs->dbs_data; \
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000280 return sprintf(buf, "%u\n", dbs_data->min_sampling_rate); \
281}
282
Rafael J. Wysocki2bb8d942016-02-07 16:01:31 +0100283extern struct mutex dbs_data_mutex;
Jane Li6f1e4ef2014-01-03 17:17:41 +0800284extern struct mutex cpufreq_governor_lock;
Rafael J. Wysockid10b5eb2016-02-06 13:50:24 +0100285void dbs_check_cpu(struct cpufreq_policy *policy);
Rafael J. Wysocki906a6e52016-02-07 16:07:51 +0100286int cpufreq_governor_dbs(struct cpufreq_policy *policy, unsigned int event);
Jacob Shinfb308092013-04-02 09:56:56 -0500287void od_register_powersave_bias_handler(unsigned int (*f)
288 (struct cpufreq_policy *, unsigned int, unsigned int),
289 unsigned int powersave_bias);
290void od_unregister_powersave_bias_handler(void);
Borislav Petkovbeb0ff32013-04-02 12:26:15 +0000291#endif /* _CPUFREQ_GOVERNOR_H */