cpufreq_governor.h 6.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * drivers/cpufreq/cpufreq_governor.h
 *
 * Header file for CPUFreq governors common code
 *
 * Copyright	(C) 2001 Russell King
 *		(C) 2003 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>.
 *		(C) 2003 Jun Nakajima <jun.nakajima@intel.com>
 *		(C) 2009 Alexander Clouter <alex@digriz.org.uk>
 *		(c) 2012 Viresh Kumar <viresh.kumar@linaro.org>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

17 18
#ifndef _CPUFREQ_GOVERNOR_H
#define _CPUFREQ_GOVERNOR_H
19

20
#include <linux/atomic.h>
21
#include <linux/irq_work.h>
22
#include <linux/cpufreq.h>
23 24
#include <linux/kernel_stat.h>
#include <linux/module.h>
25 26 27 28 29
#include <linux/mutex.h>

/*
 * The polling frequency depends on the capability of the processor. Default
 * polling frequency is 1000 times the transition latency of the processor. The
30
 * governor will work on any processor with transition latency <= 10ms, using
31 32
 * appropriate sampling rate.
 *
33 34
 * For CPUs with transition latency > 10ms (mostly drivers with CPUFREQ_ETERNAL)
 * this governor will not work. All times here are in us (micro seconds).
35 36 37
 */
#define MIN_SAMPLING_RATE_RATIO			(2)
#define LATENCY_MULTIPLIER			(1000)
38
#define MIN_LATENCY_MULTIPLIER			(20)
39 40 41 42 43
#define TRANSITION_LATENCY_LIMIT		(10 * 1000 * 1000)

/* Ondemand Sampling types */
enum {OD_NORMAL_SAMPLE, OD_SUB_SAMPLE};

44
/* create helper routines */
45
#define define_get_cpu_dbs_routines(_dbs_info)				\
46
static struct cpu_dbs_info *get_cpu_cdbs(int cpu)			\
47 48 49 50 51 52 53 54 55 56 57 58 59 60
{									\
	return &per_cpu(_dbs_info, cpu).cdbs;				\
}									\
									\
static void *get_cpu_dbs_info_s(int cpu)				\
{									\
	return &per_cpu(_dbs_info, cpu);				\
}

/*
 * Abbreviations:
 * dbs: used as a shortform for demand based switching It helps to keep variable
 *	names smaller, simpler
 * cdbs: common dbs
N
Namhyung Kim 已提交
61
 * od_*: On-demand governor
62 63 64
 * cs_*: Conservative governor
 */

65 66 67 68
/* Governor demand based switching data (per-policy or global). */
struct dbs_data {
	int usage_count;
	void *tuners;
69 70 71 72 73
	unsigned int min_sampling_rate;
	unsigned int ignore_nice_load;
	unsigned int sampling_rate;
	unsigned int sampling_down_factor;
	unsigned int up_threshold;
74 75

	struct kobject kobj;
76 77 78 79 80
	struct list_head policy_dbs_list;
	/*
	 * Protect concurrent updates to governor tunables from sysfs,
	 * policy_dbs_list and usage_count.
	 */
81 82 83 84 85 86 87 88 89 90
	struct mutex mutex;
};

/* Governor's specific attributes */
struct dbs_data;
struct governor_attr {
	struct attribute attr;
	ssize_t (*show)(struct dbs_data *dbs_data, char *buf);
	ssize_t (*store)(struct dbs_data *dbs_data, const char *buf,
			 size_t count);
91 92
};

93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
#define gov_show_one(_gov, file_name)					\
static ssize_t show_##file_name						\
(struct dbs_data *dbs_data, char *buf)					\
{									\
	struct _gov##_dbs_tuners *tuners = dbs_data->tuners;		\
	return sprintf(buf, "%u\n", tuners->file_name);			\
}

#define gov_show_one_common(file_name)					\
static ssize_t show_##file_name						\
(struct dbs_data *dbs_data, char *buf)					\
{									\
	return sprintf(buf, "%u\n", dbs_data->file_name);		\
}

#define gov_attr_ro(_name)						\
static struct governor_attr _name =					\
__ATTR(_name, 0444, show_##_name, NULL)

#define gov_attr_rw(_name)						\
static struct governor_attr _name =					\
__ATTR(_name, 0644, show_##_name, store_##_name)

116
/* Common to all CPUs of a policy */
117
struct policy_dbs_info {
118 119
	struct cpufreq_policy *policy;
	/*
120 121
	 * Per policy mutex that serializes load evaluation from limit-change
	 * and work-handler.
122 123
	 */
	struct mutex timer_mutex;
124

125 126
	u64 last_sample_time;
	s64 sample_delay_ns;
127
	atomic_t work_count;
128
	struct irq_work irq_work;
129
	struct work_struct work;
130 131
	/* dbs_data may be shared between multiple policy objects */
	struct dbs_data *dbs_data;
132
	struct list_head list;
133 134 135
	/* Status indicators */
	bool is_shared;		/* This object is used by multiple CPUs */
	bool work_in_progress;	/* Work is being queued up or in progress */
136 137
};

138
static inline void gov_update_sample_delay(struct policy_dbs_info *policy_dbs,
139 140
					   unsigned int delay_us)
{
141
	policy_dbs->sample_delay_ns = delay_us * NSEC_PER_USEC;
142 143
}

144
/* Per cpu structures */
145
struct cpu_dbs_info {
146 147 148
	u64 prev_cpu_idle;
	u64 prev_cpu_wall;
	u64 prev_cpu_nice;
149
	/*
150 151 152 153
	 * Used to keep track of load in the previous interval. However, when
	 * explicitly set to zero, it is used as a flag to ensure that we copy
	 * the previous load to the current interval only once, upon the first
	 * wake-up from idle.
154
	 */
155
	unsigned int prev_load;
156
	struct update_util_data update_util;
157
	struct policy_dbs_info *policy_dbs;
158 159 160
};

struct od_cpu_dbs_info_s {
161
	struct cpu_dbs_info cdbs;
162 163 164 165 166 167 168 169 170
	struct cpufreq_frequency_table *freq_table;
	unsigned int freq_lo;
	unsigned int freq_lo_jiffies;
	unsigned int freq_hi_jiffies;
	unsigned int rate_mult;
	unsigned int sample_type:1;
};

struct cs_cpu_dbs_info_s {
171
	struct cpu_dbs_info cdbs;
172 173 174 175
	unsigned int down_skip;
	unsigned int requested_freq;
};

176
/* Per policy Governors sysfs tunables */
177 178 179 180 181 182 183 184 185 186
struct od_dbs_tuners {
	unsigned int powersave_bias;
	unsigned int io_is_busy;
};

struct cs_dbs_tuners {
	unsigned int down_threshold;
	unsigned int freq_step;
};

187
/* Common Governor data across policies */
188
struct dbs_governor {
189 190
	struct cpufreq_governor gov;

191 192 193
	#define GOV_ONDEMAND		0
	#define GOV_CONSERVATIVE	1
	int governor;
194
	struct kobj_type kobj_type;
195

196 197 198 199
	/*
	 * Common data for platforms that don't set
	 * CPUFREQ_HAVE_GOVERNOR_PER_POLICY
	 */
200
	struct dbs_data *gdbs_data;
201

202
	struct cpu_dbs_info *(*get_cpu_cdbs)(int cpu);
203
	void *(*get_cpu_dbs_info_s)(int cpu);
204
	unsigned int (*gov_dbs_timer)(struct cpufreq_policy *policy);
205 206
	int (*init)(struct dbs_data *dbs_data, bool notify);
	void (*exit)(struct dbs_data *dbs_data, bool notify);
207 208 209 210 211

	/* Governor specific ops, see below */
	void *gov_ops;
};

212 213 214 215 216
static inline struct dbs_governor *dbs_governor_of(struct cpufreq_policy *policy)
{
	return container_of(policy->governor, struct dbs_governor, gov);
}

217 218 219 220 221
/* Governor specific ops, will be passed to dbs_data->gov_ops */
struct od_ops {
	void (*powersave_bias_init_cpu)(int cpu);
	unsigned int (*powersave_bias_target)(struct cpufreq_policy *policy,
			unsigned int freq_next, unsigned int relation);
222
	void (*freq_increase)(struct cpufreq_policy *policy, unsigned int freq);
223 224 225 226 227 228 229 230 231 232 233 234 235
};

static inline int delay_for_sampling_rate(unsigned int sampling_rate)
{
	int delay = usecs_to_jiffies(sampling_rate);

	/* We want all CPUs to do sampling nearly on same jiffy */
	if (num_online_cpus() > 1)
		delay -= jiffies % delay;

	return delay;
}

236
extern struct mutex dbs_data_mutex;
237
unsigned int dbs_update(struct cpufreq_policy *policy);
238
int cpufreq_governor_dbs(struct cpufreq_policy *policy, unsigned int event);
239 240 241 242
void od_register_powersave_bias_handler(unsigned int (*f)
		(struct cpufreq_policy *, unsigned int, unsigned int),
		unsigned int powersave_bias);
void od_unregister_powersave_bias_handler(void);
243 244
ssize_t store_sampling_rate(struct dbs_data *dbs_data, const char *buf,
			    size_t count);
245
#endif /* _CPUFREQ_GOVERNOR_H */