blob: 58749da97099af760c82a9d387aaaaa7e32afef8 [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 Kumar4471a342012-10-26 00:47:42 +020044/*
45 * Abbreviations:
46 * dbs: used as a shortform for demand based switching It helps to keep variable
47 * names smaller, simpler
48 * cdbs: common dbs
Namhyung Kime5dde922013-02-28 05:38:00 +000049 * od_*: On-demand governor
Viresh Kumar4471a342012-10-26 00:47:42 +020050 * cs_*: Conservative governor
51 */
52
Rafael J. Wysockibc505472016-02-07 16:24:26 +010053/* Governor demand based switching data (per-policy or global). */
54struct dbs_data {
Rafael J. Wysockibc505472016-02-07 16:24:26 +010055 int usage_count;
56 void *tuners;
Viresh Kumarff4b1782016-02-09 09:01:32 +053057 unsigned int min_sampling_rate;
58 unsigned int ignore_nice_load;
59 unsigned int sampling_rate;
60 unsigned int sampling_down_factor;
61 unsigned int up_threshold;
Rafael J. Wysocki8847e032016-02-18 02:20:13 +010062 unsigned int io_is_busy;
Viresh Kumarc4435632016-02-09 09:01:33 +053063
64 struct kobject kobj;
Viresh Kumarc54df072016-02-10 11:00:25 +053065 struct list_head policy_dbs_list;
66 /*
67 * Protect concurrent updates to governor tunables from sysfs,
68 * policy_dbs_list and usage_count.
69 */
Viresh Kumarc4435632016-02-09 09:01:33 +053070 struct mutex mutex;
Rafael J. Wysockibc505472016-02-07 16:24:26 +010071};
72
Viresh Kumarc4435632016-02-09 09:01:33 +053073/* Governor's specific attributes */
74struct dbs_data;
75struct governor_attr {
76 struct attribute attr;
77 ssize_t (*show)(struct dbs_data *dbs_data, char *buf);
78 ssize_t (*store)(struct dbs_data *dbs_data, const char *buf,
79 size_t count);
80};
81
82#define gov_show_one(_gov, file_name) \
83static ssize_t show_##file_name \
84(struct dbs_data *dbs_data, char *buf) \
85{ \
86 struct _gov##_dbs_tuners *tuners = dbs_data->tuners; \
87 return sprintf(buf, "%u\n", tuners->file_name); \
88}
89
90#define gov_show_one_common(file_name) \
91static ssize_t show_##file_name \
92(struct dbs_data *dbs_data, char *buf) \
93{ \
94 return sprintf(buf, "%u\n", dbs_data->file_name); \
95}
96
97#define gov_attr_ro(_name) \
98static struct governor_attr _name = \
99__ATTR(_name, 0444, show_##_name, NULL)
100
101#define gov_attr_rw(_name) \
102static struct governor_attr _name = \
103__ATTR(_name, 0644, show_##_name, store_##_name)
104
Viresh Kumar44152cb2015-07-18 11:30:59 +0530105/* Common to all CPUs of a policy */
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100106struct policy_dbs_info {
Viresh Kumar44152cb2015-07-18 11:30:59 +0530107 struct cpufreq_policy *policy;
108 /*
Viresh Kumar70f43e52015-12-09 07:34:42 +0530109 * Per policy mutex that serializes load evaluation from limit-change
110 * and work-handler.
Viresh Kumar44152cb2015-07-18 11:30:59 +0530111 */
112 struct mutex timer_mutex;
Viresh Kumar70f43e52015-12-09 07:34:42 +0530113
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100114 u64 last_sample_time;
115 s64 sample_delay_ns;
Rafael J. Wysocki686cc632016-02-08 23:41:10 +0100116 atomic_t work_count;
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100117 struct irq_work irq_work;
Viresh Kumar70f43e52015-12-09 07:34:42 +0530118 struct work_struct work;
Rafael J. Wysockibc505472016-02-07 16:24:26 +0100119 /* dbs_data may be shared between multiple policy objects */
120 struct dbs_data *dbs_data;
Viresh Kumarc54df072016-02-10 11:00:25 +0530121 struct list_head list;
Rafael J. Wysocki57dc3bc2016-02-15 02:20:51 +0100122 /* Multiplier for increasing sample delay temporarily. */
123 unsigned int rate_mult;
Rafael J. Wysockie4db2812016-02-15 02:13:42 +0100124 /* Status indicators */
125 bool is_shared; /* This object is used by multiple CPUs */
126 bool work_in_progress; /* Work is being queued up or in progress */
Viresh Kumar44152cb2015-07-18 11:30:59 +0530127};
128
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100129static inline void gov_update_sample_delay(struct policy_dbs_info *policy_dbs,
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100130 unsigned int delay_us)
131{
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100132 policy_dbs->sample_delay_ns = delay_us * NSEC_PER_USEC;
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100133}
134
Viresh Kumar4471a342012-10-26 00:47:42 +0200135/* Per cpu structures */
Viresh Kumar875b8502015-06-19 17:18:03 +0530136struct cpu_dbs_info {
Viresh Kumar1e7586a2012-10-26 00:51:21 +0200137 u64 prev_cpu_idle;
138 u64 prev_cpu_wall;
139 u64 prev_cpu_nice;
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530140 /*
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530141 * Used to keep track of load in the previous interval. However, when
142 * explicitly set to zero, it is used as a flag to ensure that we copy
143 * the previous load to the current interval only once, upon the first
144 * wake-up from idle.
Srivatsa S. Bhat18b46ab2014-06-08 02:11:43 +0530145 */
Viresh Kumarc8ae4812014-06-09 14:21:24 +0530146 unsigned int prev_load;
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100147 struct update_util_data update_util;
Rafael J. Wysockie40e7b22016-02-10 17:07:44 +0100148 struct policy_dbs_info *policy_dbs;
Viresh Kumar4471a342012-10-26 00:47:42 +0200149};
150
Stratos Karafotisc4afc412013-08-26 21:42:21 +0300151/* Per policy Governors sysfs tunables */
Viresh Kumar4471a342012-10-26 00:47:42 +0200152struct od_dbs_tuners {
Viresh Kumar4471a342012-10-26 00:47:42 +0200153 unsigned int powersave_bias;
Viresh Kumar4471a342012-10-26 00:47:42 +0200154};
155
156struct cs_dbs_tuners {
Viresh Kumar4471a342012-10-26 00:47:42 +0200157 unsigned int down_threshold;
158 unsigned int freq_step;
159};
160
Stratos Karafotisc4afc412013-08-26 21:42:21 +0300161/* Common Governor data across policies */
Rafael J. Wysocki7bdad342016-02-07 16:05:07 +0100162struct dbs_governor {
Rafael J. Wysockiaf926182016-02-05 03:16:08 +0100163 struct cpufreq_governor gov;
Viresh Kumarc4435632016-02-09 09:01:33 +0530164 struct kobj_type kobj_type;
Viresh Kumar4471a342012-10-26 00:47:42 +0200165
Viresh Kumar0b981e72013-10-02 14:13:18 +0530166 /*
167 * Common data for platforms that don't set
168 * CPUFREQ_HAVE_GOVERNOR_PER_POLICY
169 */
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000170 struct dbs_data *gdbs_data;
Viresh Kumar4471a342012-10-26 00:47:42 +0200171
Rafael J. Wysocki9be4fd22016-02-10 16:53:50 +0100172 unsigned int (*gov_dbs_timer)(struct cpufreq_policy *policy);
Rafael J. Wysocki7d5a9952016-02-18 18:40:14 +0100173 struct policy_dbs_info *(*alloc)(void);
174 void (*free)(struct policy_dbs_info *policy_dbs);
Viresh Kumar8e0484d2015-06-03 15:57:11 +0530175 int (*init)(struct dbs_data *dbs_data, bool notify);
176 void (*exit)(struct dbs_data *dbs_data, bool notify);
Rafael J. Wysocki702c9e52016-02-18 02:21:21 +0100177 void (*start)(struct cpufreq_policy *policy);
Viresh Kumar4471a342012-10-26 00:47:42 +0200178};
179
Rafael J. Wysockiea59ee0d2016-02-07 16:09:51 +0100180static inline struct dbs_governor *dbs_governor_of(struct cpufreq_policy *policy)
181{
182 return container_of(policy->governor, struct dbs_governor, gov);
183}
184
Rafael J. Wysocki8434dad2016-02-18 02:22:42 +0100185/* Governor specific operations */
Viresh Kumar4471a342012-10-26 00:47:42 +0200186struct od_ops {
Viresh Kumar4471a342012-10-26 00:47:42 +0200187 unsigned int (*powersave_bias_target)(struct cpufreq_policy *policy,
188 unsigned int freq_next, unsigned int relation);
Viresh Kumar4471a342012-10-26 00:47:42 +0200189};
190
Rafael J. Wysocki2bb8d942016-02-07 16:01:31 +0100191extern struct mutex dbs_data_mutex;
Rafael J. Wysocki4cccf752016-02-15 02:19:31 +0100192unsigned int dbs_update(struct cpufreq_policy *policy);
Rafael J. Wysocki906a6e52016-02-07 16:07:51 +0100193int cpufreq_governor_dbs(struct cpufreq_policy *policy, unsigned int event);
Jacob Shinfb308092013-04-02 09:56:56 -0500194void od_register_powersave_bias_handler(unsigned int (*f)
195 (struct cpufreq_policy *, unsigned int, unsigned int),
196 unsigned int powersave_bias);
197void od_unregister_powersave_bias_handler(void);
Viresh Kumaraded3872016-02-11 17:31:15 +0530198ssize_t store_sampling_rate(struct dbs_data *dbs_data, const char *buf,
199 size_t count);
Rafael J. Wysocki8c8f77f2016-02-21 00:51:27 +0100200void gov_update_cpu_data(struct dbs_data *dbs_data);
Borislav Petkovbeb0ff32013-04-02 12:26:15 +0000201#endif /* _CPUFREQ_GOVERNOR_H */