Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 1 | /* |
| 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 Petkov | beb0ff3 | 2013-04-02 12:26:15 +0000 | [diff] [blame] | 17 | #ifndef _CPUFREQ_GOVERNOR_H |
| 18 | #define _CPUFREQ_GOVERNOR_H |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 19 | |
Rafael J. Wysocki | 2dd3e72 | 2015-12-08 21:44:05 +0100 | [diff] [blame] | 20 | #include <linux/atomic.h> |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 21 | #include <linux/irq_work.h> |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 22 | #include <linux/cpufreq.h> |
Viresh Kumar | 5ff0a26 | 2013-08-06 22:53:03 +0530 | [diff] [blame] | 23 | #include <linux/kernel_stat.h> |
| 24 | #include <linux/module.h> |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 25 | #include <linux/mutex.h> |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 26 | |
| 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 Karafotis | c4afc41 | 2013-08-26 21:42:21 +0300 | [diff] [blame] | 30 | * governor will work on any processor with transition latency <= 10ms, using |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 31 | * appropriate sampling rate. |
| 32 | * |
Stratos Karafotis | c4afc41 | 2013-08-26 21:42:21 +0300 | [diff] [blame] | 33 | * 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 Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 35 | */ |
| 36 | #define MIN_SAMPLING_RATE_RATIO (2) |
| 37 | #define LATENCY_MULTIPLIER (1000) |
Viresh Kumar | 98104ee | 2013-02-26 15:07:24 +0530 | [diff] [blame] | 38 | #define MIN_LATENCY_MULTIPLIER (20) |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 39 | #define TRANSITION_LATENCY_LIMIT (10 * 1000 * 1000) |
| 40 | |
| 41 | /* Ondemand Sampling types */ |
| 42 | enum {OD_NORMAL_SAMPLE, OD_SUB_SAMPLE}; |
| 43 | |
Viresh Kumar | 4d5dcc4 | 2013-03-27 15:58:58 +0000 | [diff] [blame] | 44 | /* create helper routines */ |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 45 | #define define_get_cpu_dbs_routines(_dbs_info) \ |
Viresh Kumar | 875b850 | 2015-06-19 17:18:03 +0530 | [diff] [blame] | 46 | static struct cpu_dbs_info *get_cpu_cdbs(int cpu) \ |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 47 | { \ |
| 48 | return &per_cpu(_dbs_info, cpu).cdbs; \ |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 49 | } |
| 50 | |
| 51 | /* |
| 52 | * Abbreviations: |
| 53 | * dbs: used as a shortform for demand based switching It helps to keep variable |
| 54 | * names smaller, simpler |
| 55 | * cdbs: common dbs |
Namhyung Kim | e5dde92 | 2013-02-28 05:38:00 +0000 | [diff] [blame] | 56 | * od_*: On-demand governor |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 57 | * cs_*: Conservative governor |
| 58 | */ |
| 59 | |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 60 | /* Governor demand based switching data (per-policy or global). */ |
| 61 | struct dbs_data { |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 62 | int usage_count; |
| 63 | void *tuners; |
Viresh Kumar | ff4b178 | 2016-02-09 09:01:32 +0530 | [diff] [blame] | 64 | unsigned int min_sampling_rate; |
| 65 | unsigned int ignore_nice_load; |
| 66 | unsigned int sampling_rate; |
| 67 | unsigned int sampling_down_factor; |
| 68 | unsigned int up_threshold; |
Rafael J. Wysocki | 8847e03 | 2016-02-18 02:20:13 +0100 | [diff] [blame] | 69 | unsigned int io_is_busy; |
Viresh Kumar | c443563 | 2016-02-09 09:01:33 +0530 | [diff] [blame] | 70 | |
| 71 | struct kobject kobj; |
Viresh Kumar | c54df07 | 2016-02-10 11:00:25 +0530 | [diff] [blame] | 72 | struct list_head policy_dbs_list; |
| 73 | /* |
| 74 | * Protect concurrent updates to governor tunables from sysfs, |
| 75 | * policy_dbs_list and usage_count. |
| 76 | */ |
Viresh Kumar | c443563 | 2016-02-09 09:01:33 +0530 | [diff] [blame] | 77 | struct mutex mutex; |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 78 | }; |
| 79 | |
Viresh Kumar | c443563 | 2016-02-09 09:01:33 +0530 | [diff] [blame] | 80 | /* Governor's specific attributes */ |
| 81 | struct dbs_data; |
| 82 | struct governor_attr { |
| 83 | struct attribute attr; |
| 84 | ssize_t (*show)(struct dbs_data *dbs_data, char *buf); |
| 85 | ssize_t (*store)(struct dbs_data *dbs_data, const char *buf, |
| 86 | size_t count); |
| 87 | }; |
| 88 | |
| 89 | #define gov_show_one(_gov, file_name) \ |
| 90 | static ssize_t show_##file_name \ |
| 91 | (struct dbs_data *dbs_data, char *buf) \ |
| 92 | { \ |
| 93 | struct _gov##_dbs_tuners *tuners = dbs_data->tuners; \ |
| 94 | return sprintf(buf, "%u\n", tuners->file_name); \ |
| 95 | } |
| 96 | |
| 97 | #define gov_show_one_common(file_name) \ |
| 98 | static ssize_t show_##file_name \ |
| 99 | (struct dbs_data *dbs_data, char *buf) \ |
| 100 | { \ |
| 101 | return sprintf(buf, "%u\n", dbs_data->file_name); \ |
| 102 | } |
| 103 | |
| 104 | #define gov_attr_ro(_name) \ |
| 105 | static struct governor_attr _name = \ |
| 106 | __ATTR(_name, 0444, show_##_name, NULL) |
| 107 | |
| 108 | #define gov_attr_rw(_name) \ |
| 109 | static struct governor_attr _name = \ |
| 110 | __ATTR(_name, 0644, show_##_name, store_##_name) |
| 111 | |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 112 | /* Common to all CPUs of a policy */ |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 113 | struct policy_dbs_info { |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 114 | struct cpufreq_policy *policy; |
| 115 | /* |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 116 | * Per policy mutex that serializes load evaluation from limit-change |
| 117 | * and work-handler. |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 118 | */ |
| 119 | struct mutex timer_mutex; |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 120 | |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 121 | u64 last_sample_time; |
| 122 | s64 sample_delay_ns; |
Rafael J. Wysocki | 686cc63 | 2016-02-08 23:41:10 +0100 | [diff] [blame] | 123 | atomic_t work_count; |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 124 | struct irq_work irq_work; |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 125 | struct work_struct work; |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 126 | /* dbs_data may be shared between multiple policy objects */ |
| 127 | struct dbs_data *dbs_data; |
Viresh Kumar | c54df07 | 2016-02-10 11:00:25 +0530 | [diff] [blame] | 128 | struct list_head list; |
Rafael J. Wysocki | 57dc3bc | 2016-02-15 02:20:51 +0100 | [diff] [blame] | 129 | /* Multiplier for increasing sample delay temporarily. */ |
| 130 | unsigned int rate_mult; |
Rafael J. Wysocki | e4db281 | 2016-02-15 02:13:42 +0100 | [diff] [blame] | 131 | /* Status indicators */ |
| 132 | bool is_shared; /* This object is used by multiple CPUs */ |
| 133 | bool work_in_progress; /* Work is being queued up or in progress */ |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 134 | }; |
| 135 | |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 136 | static inline void gov_update_sample_delay(struct policy_dbs_info *policy_dbs, |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 137 | unsigned int delay_us) |
| 138 | { |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 139 | policy_dbs->sample_delay_ns = delay_us * NSEC_PER_USEC; |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 140 | } |
| 141 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 142 | /* Per cpu structures */ |
Viresh Kumar | 875b850 | 2015-06-19 17:18:03 +0530 | [diff] [blame] | 143 | struct cpu_dbs_info { |
Viresh Kumar | 1e7586a | 2012-10-26 00:51:21 +0200 | [diff] [blame] | 144 | u64 prev_cpu_idle; |
| 145 | u64 prev_cpu_wall; |
| 146 | u64 prev_cpu_nice; |
Srivatsa S. Bhat | 18b46ab | 2014-06-08 02:11:43 +0530 | [diff] [blame] | 147 | /* |
Viresh Kumar | c8ae481 | 2014-06-09 14:21:24 +0530 | [diff] [blame] | 148 | * Used to keep track of load in the previous interval. However, when |
| 149 | * explicitly set to zero, it is used as a flag to ensure that we copy |
| 150 | * the previous load to the current interval only once, upon the first |
| 151 | * wake-up from idle. |
Srivatsa S. Bhat | 18b46ab | 2014-06-08 02:11:43 +0530 | [diff] [blame] | 152 | */ |
Viresh Kumar | c8ae481 | 2014-06-09 14:21:24 +0530 | [diff] [blame] | 153 | unsigned int prev_load; |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 154 | struct update_util_data update_util; |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 155 | struct policy_dbs_info *policy_dbs; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 156 | }; |
| 157 | |
| 158 | struct od_cpu_dbs_info_s { |
Viresh Kumar | 875b850 | 2015-06-19 17:18:03 +0530 | [diff] [blame] | 159 | struct cpu_dbs_info cdbs; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 160 | }; |
| 161 | |
| 162 | struct cs_cpu_dbs_info_s { |
Viresh Kumar | 875b850 | 2015-06-19 17:18:03 +0530 | [diff] [blame] | 163 | struct cpu_dbs_info cdbs; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 164 | }; |
| 165 | |
Stratos Karafotis | c4afc41 | 2013-08-26 21:42:21 +0300 | [diff] [blame] | 166 | /* Per policy Governors sysfs tunables */ |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 167 | struct od_dbs_tuners { |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 168 | unsigned int powersave_bias; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 169 | }; |
| 170 | |
| 171 | struct cs_dbs_tuners { |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 172 | unsigned int down_threshold; |
| 173 | unsigned int freq_step; |
| 174 | }; |
| 175 | |
Stratos Karafotis | c4afc41 | 2013-08-26 21:42:21 +0300 | [diff] [blame] | 176 | /* Common Governor data across policies */ |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 177 | struct dbs_governor { |
Rafael J. Wysocki | af92618 | 2016-02-05 03:16:08 +0100 | [diff] [blame] | 178 | struct cpufreq_governor gov; |
Viresh Kumar | c443563 | 2016-02-09 09:01:33 +0530 | [diff] [blame] | 179 | struct kobj_type kobj_type; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 180 | |
Viresh Kumar | 0b981e7 | 2013-10-02 14:13:18 +0530 | [diff] [blame] | 181 | /* |
| 182 | * Common data for platforms that don't set |
| 183 | * CPUFREQ_HAVE_GOVERNOR_PER_POLICY |
| 184 | */ |
Viresh Kumar | 4d5dcc4 | 2013-03-27 15:58:58 +0000 | [diff] [blame] | 185 | struct dbs_data *gdbs_data; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 186 | |
Viresh Kumar | 875b850 | 2015-06-19 17:18:03 +0530 | [diff] [blame] | 187 | struct cpu_dbs_info *(*get_cpu_cdbs)(int cpu); |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 188 | unsigned int (*gov_dbs_timer)(struct cpufreq_policy *policy); |
Rafael J. Wysocki | 7d5a995 | 2016-02-18 18:40:14 +0100 | [diff] [blame^] | 189 | struct policy_dbs_info *(*alloc)(void); |
| 190 | void (*free)(struct policy_dbs_info *policy_dbs); |
Viresh Kumar | 8e0484d | 2015-06-03 15:57:11 +0530 | [diff] [blame] | 191 | int (*init)(struct dbs_data *dbs_data, bool notify); |
| 192 | void (*exit)(struct dbs_data *dbs_data, bool notify); |
Rafael J. Wysocki | 702c9e5 | 2016-02-18 02:21:21 +0100 | [diff] [blame] | 193 | void (*start)(struct cpufreq_policy *policy); |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 194 | }; |
| 195 | |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 196 | static inline struct dbs_governor *dbs_governor_of(struct cpufreq_policy *policy) |
| 197 | { |
| 198 | return container_of(policy->governor, struct dbs_governor, gov); |
| 199 | } |
| 200 | |
Rafael J. Wysocki | 8434dad | 2016-02-18 02:22:42 +0100 | [diff] [blame] | 201 | /* Governor specific operations */ |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 202 | struct od_ops { |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 203 | unsigned int (*powersave_bias_target)(struct cpufreq_policy *policy, |
| 204 | unsigned int freq_next, unsigned int relation); |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 205 | }; |
| 206 | |
Rafael J. Wysocki | 2bb8d94 | 2016-02-07 16:01:31 +0100 | [diff] [blame] | 207 | extern struct mutex dbs_data_mutex; |
Rafael J. Wysocki | 4cccf75 | 2016-02-15 02:19:31 +0100 | [diff] [blame] | 208 | unsigned int dbs_update(struct cpufreq_policy *policy); |
Rafael J. Wysocki | 906a6e5 | 2016-02-07 16:07:51 +0100 | [diff] [blame] | 209 | int cpufreq_governor_dbs(struct cpufreq_policy *policy, unsigned int event); |
Jacob Shin | fb30809 | 2013-04-02 09:56:56 -0500 | [diff] [blame] | 210 | void od_register_powersave_bias_handler(unsigned int (*f) |
| 211 | (struct cpufreq_policy *, unsigned int, unsigned int), |
| 212 | unsigned int powersave_bias); |
| 213 | void od_unregister_powersave_bias_handler(void); |
Viresh Kumar | aded387 | 2016-02-11 17:31:15 +0530 | [diff] [blame] | 214 | ssize_t store_sampling_rate(struct dbs_data *dbs_data, const char *buf, |
| 215 | size_t count); |
Rafael J. Wysocki | a33cce1 | 2016-02-18 02:26:55 +0100 | [diff] [blame] | 216 | void gov_update_cpu_data(struct dbs_governor *gov, struct dbs_data *dbs_data); |
Borislav Petkov | beb0ff3 | 2013-04-02 12:26:15 +0000 | [diff] [blame] | 217 | #endif /* _CPUFREQ_GOVERNOR_H */ |