cpufreq_governor.h 5.6 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
#include <linux/sched/cpufreq.h>
24 25
#include <linux/kernel_stat.h>
#include <linux/module.h>
26 27 28 29 30 31 32 33 34 35
#include <linux/mutex.h>

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

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

40 41
/* Governor demand based switching data (per-policy or global). */
struct dbs_data {
42
	struct gov_attr_set attr_set;
43
	void *tuners;
44 45 46 47
	unsigned int ignore_nice_load;
	unsigned int sampling_rate;
	unsigned int sampling_down_factor;
	unsigned int up_threshold;
48
	unsigned int io_is_busy;
49 50
};

51 52 53 54 55
static inline struct dbs_data *to_dbs_data(struct gov_attr_set *attr_set)
{
	return container_of(attr_set, struct dbs_data, attr_set);
}

56 57
#define gov_show_one(_gov, file_name)					\
static ssize_t show_##file_name						\
58
(struct gov_attr_set *attr_set, char *buf)				\
59
{									\
60
	struct dbs_data *dbs_data = to_dbs_data(attr_set);		\
61 62 63 64 65 66
	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						\
67
(struct gov_attr_set *attr_set, char *buf)				\
68
{									\
69
	struct dbs_data *dbs_data = to_dbs_data(attr_set);		\
70 71 72 73 74 75 76 77 78 79 80
	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)

81
/* Common to all CPUs of a policy */
82
struct policy_dbs_info {
83 84
	struct cpufreq_policy *policy;
	/*
85 86
	 * Per policy mutex that serializes load evaluation from limit-change
	 * and work-handler.
87
	 */
88
	struct mutex update_mutex;
89

90 91
	u64 last_sample_time;
	s64 sample_delay_ns;
92
	atomic_t work_count;
93
	struct irq_work irq_work;
94
	struct work_struct work;
95 96
	/* dbs_data may be shared between multiple policy objects */
	struct dbs_data *dbs_data;
97
	struct list_head list;
98 99
	/* Multiplier for increasing sample delay temporarily. */
	unsigned int rate_mult;
100
	unsigned int idle_periods;	/* For conservative */
101 102 103
	/* Status indicators */
	bool is_shared;		/* This object is used by multiple CPUs */
	bool work_in_progress;	/* Work is being queued up or in progress */
104 105
};

106
static inline void gov_update_sample_delay(struct policy_dbs_info *policy_dbs,
107 108
					   unsigned int delay_us)
{
109
	policy_dbs->sample_delay_ns = delay_us * NSEC_PER_USEC;
110 111
}

112
/* Per cpu structures */
113
struct cpu_dbs_info {
114
	u64 prev_cpu_idle;
115
	u64 prev_update_time;
116
	u64 prev_cpu_nice;
117
	/*
118 119 120 121
	 * 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.
122
	 */
123
	unsigned int prev_load;
124
	struct update_util_data update_util;
125
	struct policy_dbs_info *policy_dbs;
126 127
};

128
/* Common Governor data across policies */
129
struct dbs_governor {
130
	struct cpufreq_governor gov;
131
	struct kobj_type kobj_type;
132

133 134 135 136
	/*
	 * Common data for platforms that don't set
	 * CPUFREQ_HAVE_GOVERNOR_PER_POLICY
	 */
137
	struct dbs_data *gdbs_data;
138

139
	unsigned int (*gov_dbs_update)(struct cpufreq_policy *policy);
140 141
	struct policy_dbs_info *(*alloc)(void);
	void (*free)(struct policy_dbs_info *policy_dbs);
142 143
	int (*init)(struct dbs_data *dbs_data);
	void (*exit)(struct dbs_data *dbs_data);
144
	void (*start)(struct cpufreq_policy *policy);
145 146
};

147 148 149 150 151
static inline struct dbs_governor *dbs_governor_of(struct cpufreq_policy *policy)
{
	return container_of(policy->governor, struct dbs_governor, gov);
}

152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
/* Governor callback routines */
int cpufreq_dbs_governor_init(struct cpufreq_policy *policy);
void cpufreq_dbs_governor_exit(struct cpufreq_policy *policy);
int cpufreq_dbs_governor_start(struct cpufreq_policy *policy);
void cpufreq_dbs_governor_stop(struct cpufreq_policy *policy);
void cpufreq_dbs_governor_limits(struct cpufreq_policy *policy);

#define CPUFREQ_DBS_GOVERNOR_INITIALIZER(_name_)			\
	{								\
		.name = _name_,						\
		.max_transition_latency	= TRANSITION_LATENCY_LIMIT,	\
		.owner = THIS_MODULE,					\
		.init = cpufreq_dbs_governor_init,			\
		.exit = cpufreq_dbs_governor_exit,			\
		.start = cpufreq_dbs_governor_start,			\
		.stop = cpufreq_dbs_governor_stop,			\
		.limits = cpufreq_dbs_governor_limits,			\
	}

171
/* Governor specific operations */
172 173 174 175 176
struct od_ops {
	unsigned int (*powersave_bias_target)(struct cpufreq_policy *policy,
			unsigned int freq_next, unsigned int relation);
};

177
unsigned int dbs_update(struct cpufreq_policy *policy);
178 179 180 181
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);
182
ssize_t store_sampling_rate(struct gov_attr_set *attr_set, const char *buf,
183
			    size_t count);
184
void gov_update_cpu_data(struct dbs_data *dbs_data);
185
#endif /* _CPUFREQ_GOVERNOR_H */