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> |
Ingo Molnar | 55687da | 2017-02-08 18:51:31 +0100 | [diff] [blame] | 23 | #include <linux/sched/cpufreq.h> |
Viresh Kumar | 5ff0a26 | 2013-08-06 22:53:03 +0530 | [diff] [blame] | 24 | #include <linux/kernel_stat.h> |
| 25 | #include <linux/module.h> |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 26 | #include <linux/mutex.h> |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 27 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 28 | /* Ondemand Sampling types */ |
| 29 | enum {OD_NORMAL_SAMPLE, OD_SUB_SAMPLE}; |
| 30 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 31 | /* |
| 32 | * Abbreviations: |
| 33 | * dbs: used as a shortform for demand based switching It helps to keep variable |
| 34 | * names smaller, simpler |
| 35 | * cdbs: common dbs |
Namhyung Kim | e5dde92 | 2013-02-28 05:38:00 +0000 | [diff] [blame] | 36 | * od_*: On-demand governor |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 37 | * cs_*: Conservative governor |
| 38 | */ |
| 39 | |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 40 | /* Governor demand based switching data (per-policy or global). */ |
| 41 | struct dbs_data { |
Rafael J. Wysocki | 0dd3c1d | 2016-03-22 02:47:51 +0100 | [diff] [blame] | 42 | struct gov_attr_set attr_set; |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 43 | void *tuners; |
Viresh Kumar | ff4b178 | 2016-02-09 09:01:32 +0530 | [diff] [blame] | 44 | unsigned int min_sampling_rate; |
| 45 | unsigned int ignore_nice_load; |
| 46 | unsigned int sampling_rate; |
| 47 | unsigned int sampling_down_factor; |
| 48 | unsigned int up_threshold; |
Rafael J. Wysocki | 8847e03 | 2016-02-18 02:20:13 +0100 | [diff] [blame] | 49 | unsigned int io_is_busy; |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 50 | }; |
| 51 | |
Rafael J. Wysocki | 0dd3c1d | 2016-03-22 02:47:51 +0100 | [diff] [blame] | 52 | static inline struct dbs_data *to_dbs_data(struct gov_attr_set *attr_set) |
| 53 | { |
| 54 | return container_of(attr_set, struct dbs_data, attr_set); |
| 55 | } |
| 56 | |
Viresh Kumar | c443563 | 2016-02-09 09:01:33 +0530 | [diff] [blame] | 57 | #define gov_show_one(_gov, file_name) \ |
| 58 | static ssize_t show_##file_name \ |
Rafael J. Wysocki | 0dd3c1d | 2016-03-22 02:47:51 +0100 | [diff] [blame] | 59 | (struct gov_attr_set *attr_set, char *buf) \ |
Viresh Kumar | c443563 | 2016-02-09 09:01:33 +0530 | [diff] [blame] | 60 | { \ |
Rafael J. Wysocki | 0dd3c1d | 2016-03-22 02:47:51 +0100 | [diff] [blame] | 61 | struct dbs_data *dbs_data = to_dbs_data(attr_set); \ |
Viresh Kumar | c443563 | 2016-02-09 09:01:33 +0530 | [diff] [blame] | 62 | struct _gov##_dbs_tuners *tuners = dbs_data->tuners; \ |
| 63 | return sprintf(buf, "%u\n", tuners->file_name); \ |
| 64 | } |
| 65 | |
| 66 | #define gov_show_one_common(file_name) \ |
| 67 | static ssize_t show_##file_name \ |
Rafael J. Wysocki | 0dd3c1d | 2016-03-22 02:47:51 +0100 | [diff] [blame] | 68 | (struct gov_attr_set *attr_set, char *buf) \ |
Viresh Kumar | c443563 | 2016-02-09 09:01:33 +0530 | [diff] [blame] | 69 | { \ |
Rafael J. Wysocki | 0dd3c1d | 2016-03-22 02:47:51 +0100 | [diff] [blame] | 70 | struct dbs_data *dbs_data = to_dbs_data(attr_set); \ |
Viresh Kumar | c443563 | 2016-02-09 09:01:33 +0530 | [diff] [blame] | 71 | return sprintf(buf, "%u\n", dbs_data->file_name); \ |
| 72 | } |
| 73 | |
| 74 | #define gov_attr_ro(_name) \ |
| 75 | static struct governor_attr _name = \ |
| 76 | __ATTR(_name, 0444, show_##_name, NULL) |
| 77 | |
| 78 | #define gov_attr_rw(_name) \ |
| 79 | static struct governor_attr _name = \ |
| 80 | __ATTR(_name, 0644, show_##_name, store_##_name) |
| 81 | |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 82 | /* Common to all CPUs of a policy */ |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 83 | struct policy_dbs_info { |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 84 | struct cpufreq_policy *policy; |
| 85 | /* |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 86 | * Per policy mutex that serializes load evaluation from limit-change |
| 87 | * and work-handler. |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 88 | */ |
Viresh Kumar | 26f0dbc | 2016-11-08 11:06:33 +0530 | [diff] [blame] | 89 | struct mutex update_mutex; |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 90 | |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 91 | u64 last_sample_time; |
| 92 | s64 sample_delay_ns; |
Rafael J. Wysocki | 686cc63 | 2016-02-08 23:41:10 +0100 | [diff] [blame] | 93 | atomic_t work_count; |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 94 | struct irq_work irq_work; |
Viresh Kumar | 70f43e5 | 2015-12-09 07:34:42 +0530 | [diff] [blame] | 95 | struct work_struct work; |
Rafael J. Wysocki | bc50547 | 2016-02-07 16:24:26 +0100 | [diff] [blame] | 96 | /* dbs_data may be shared between multiple policy objects */ |
| 97 | struct dbs_data *dbs_data; |
Viresh Kumar | c54df07 | 2016-02-10 11:00:25 +0530 | [diff] [blame] | 98 | struct list_head list; |
Rafael J. Wysocki | 57dc3bc | 2016-02-15 02:20:51 +0100 | [diff] [blame] | 99 | /* Multiplier for increasing sample delay temporarily. */ |
| 100 | unsigned int rate_mult; |
Stratos Karafotis | 00bfe05 | 2016-11-16 19:26:29 +0200 | [diff] [blame] | 101 | unsigned int idle_periods; /* For conservative */ |
Rafael J. Wysocki | e4db281 | 2016-02-15 02:13:42 +0100 | [diff] [blame] | 102 | /* Status indicators */ |
| 103 | bool is_shared; /* This object is used by multiple CPUs */ |
| 104 | bool work_in_progress; /* Work is being queued up or in progress */ |
Viresh Kumar | 44152cb | 2015-07-18 11:30:59 +0530 | [diff] [blame] | 105 | }; |
| 106 | |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 107 | 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] | 108 | unsigned int delay_us) |
| 109 | { |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 110 | policy_dbs->sample_delay_ns = delay_us * NSEC_PER_USEC; |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 111 | } |
| 112 | |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 113 | /* Per cpu structures */ |
Viresh Kumar | 875b850 | 2015-06-19 17:18:03 +0530 | [diff] [blame] | 114 | struct cpu_dbs_info { |
Viresh Kumar | 1e7586a | 2012-10-26 00:51:21 +0200 | [diff] [blame] | 115 | u64 prev_cpu_idle; |
Rafael J. Wysocki | b4f4b4b | 2016-04-28 01:19:03 +0200 | [diff] [blame] | 116 | u64 prev_update_time; |
Viresh Kumar | 1e7586a | 2012-10-26 00:51:21 +0200 | [diff] [blame] | 117 | u64 prev_cpu_nice; |
Srivatsa S. Bhat | 18b46ab | 2014-06-08 02:11:43 +0530 | [diff] [blame] | 118 | /* |
Viresh Kumar | c8ae481 | 2014-06-09 14:21:24 +0530 | [diff] [blame] | 119 | * Used to keep track of load in the previous interval. However, when |
| 120 | * explicitly set to zero, it is used as a flag to ensure that we copy |
| 121 | * the previous load to the current interval only once, upon the first |
| 122 | * wake-up from idle. |
Srivatsa S. Bhat | 18b46ab | 2014-06-08 02:11:43 +0530 | [diff] [blame] | 123 | */ |
Viresh Kumar | c8ae481 | 2014-06-09 14:21:24 +0530 | [diff] [blame] | 124 | unsigned int prev_load; |
Rafael J. Wysocki | 9be4fd2 | 2016-02-10 16:53:50 +0100 | [diff] [blame] | 125 | struct update_util_data update_util; |
Rafael J. Wysocki | e40e7b2 | 2016-02-10 17:07:44 +0100 | [diff] [blame] | 126 | struct policy_dbs_info *policy_dbs; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 127 | }; |
| 128 | |
Stratos Karafotis | c4afc41 | 2013-08-26 21:42:21 +0300 | [diff] [blame] | 129 | /* Common Governor data across policies */ |
Rafael J. Wysocki | 7bdad34 | 2016-02-07 16:05:07 +0100 | [diff] [blame] | 130 | struct dbs_governor { |
Rafael J. Wysocki | af92618 | 2016-02-05 03:16:08 +0100 | [diff] [blame] | 131 | struct cpufreq_governor gov; |
Viresh Kumar | c443563 | 2016-02-09 09:01:33 +0530 | [diff] [blame] | 132 | struct kobj_type kobj_type; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 133 | |
Viresh Kumar | 0b981e7 | 2013-10-02 14:13:18 +0530 | [diff] [blame] | 134 | /* |
| 135 | * Common data for platforms that don't set |
| 136 | * CPUFREQ_HAVE_GOVERNOR_PER_POLICY |
| 137 | */ |
Viresh Kumar | 4d5dcc4 | 2013-03-27 15:58:58 +0000 | [diff] [blame] | 138 | struct dbs_data *gdbs_data; |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 139 | |
Viresh Kumar | 26f0dbc | 2016-11-08 11:06:33 +0530 | [diff] [blame] | 140 | unsigned int (*gov_dbs_update)(struct cpufreq_policy *policy); |
Rafael J. Wysocki | 7d5a995 | 2016-02-18 18:40:14 +0100 | [diff] [blame] | 141 | struct policy_dbs_info *(*alloc)(void); |
| 142 | void (*free)(struct policy_dbs_info *policy_dbs); |
Rafael J. Wysocki | 9a15fb2 | 2016-05-18 22:59:49 +0200 | [diff] [blame] | 143 | int (*init)(struct dbs_data *dbs_data); |
| 144 | void (*exit)(struct dbs_data *dbs_data); |
Rafael J. Wysocki | 702c9e5 | 2016-02-18 02:21:21 +0100 | [diff] [blame] | 145 | void (*start)(struct cpufreq_policy *policy); |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 146 | }; |
| 147 | |
Rafael J. Wysocki | ea59ee0d | 2016-02-07 16:09:51 +0100 | [diff] [blame] | 148 | static inline struct dbs_governor *dbs_governor_of(struct cpufreq_policy *policy) |
| 149 | { |
| 150 | return container_of(policy->governor, struct dbs_governor, gov); |
| 151 | } |
| 152 | |
Rafael J. Wysocki | e788892 | 2016-06-02 23:24:15 +0200 | [diff] [blame] | 153 | /* Governor callback routines */ |
| 154 | int cpufreq_dbs_governor_init(struct cpufreq_policy *policy); |
| 155 | void cpufreq_dbs_governor_exit(struct cpufreq_policy *policy); |
| 156 | int cpufreq_dbs_governor_start(struct cpufreq_policy *policy); |
| 157 | void cpufreq_dbs_governor_stop(struct cpufreq_policy *policy); |
| 158 | void cpufreq_dbs_governor_limits(struct cpufreq_policy *policy); |
| 159 | |
| 160 | #define CPUFREQ_DBS_GOVERNOR_INITIALIZER(_name_) \ |
| 161 | { \ |
| 162 | .name = _name_, \ |
| 163 | .max_transition_latency = TRANSITION_LATENCY_LIMIT, \ |
| 164 | .owner = THIS_MODULE, \ |
| 165 | .init = cpufreq_dbs_governor_init, \ |
| 166 | .exit = cpufreq_dbs_governor_exit, \ |
| 167 | .start = cpufreq_dbs_governor_start, \ |
| 168 | .stop = cpufreq_dbs_governor_stop, \ |
| 169 | .limits = cpufreq_dbs_governor_limits, \ |
| 170 | } |
| 171 | |
Rafael J. Wysocki | 8434dad | 2016-02-18 02:22:42 +0100 | [diff] [blame] | 172 | /* Governor specific operations */ |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 173 | struct od_ops { |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 174 | unsigned int (*powersave_bias_target)(struct cpufreq_policy *policy, |
| 175 | unsigned int freq_next, unsigned int relation); |
Viresh Kumar | 4471a34 | 2012-10-26 00:47:42 +0200 | [diff] [blame] | 176 | }; |
| 177 | |
Rafael J. Wysocki | 4cccf75 | 2016-02-15 02:19:31 +0100 | [diff] [blame] | 178 | unsigned int dbs_update(struct cpufreq_policy *policy); |
Jacob Shin | fb30809 | 2013-04-02 09:56:56 -0500 | [diff] [blame] | 179 | void od_register_powersave_bias_handler(unsigned int (*f) |
| 180 | (struct cpufreq_policy *, unsigned int, unsigned int), |
| 181 | unsigned int powersave_bias); |
| 182 | void od_unregister_powersave_bias_handler(void); |
Rafael J. Wysocki | 0dd3c1d | 2016-03-22 02:47:51 +0100 | [diff] [blame] | 183 | ssize_t store_sampling_rate(struct gov_attr_set *attr_set, const char *buf, |
Viresh Kumar | aded387 | 2016-02-11 17:31:15 +0530 | [diff] [blame] | 184 | size_t count); |
Rafael J. Wysocki | 8c8f77f | 2016-02-21 00:51:27 +0100 | [diff] [blame] | 185 | void gov_update_cpu_data(struct dbs_data *dbs_data); |
Borislav Petkov | beb0ff3 | 2013-04-02 12:26:15 +0000 | [diff] [blame] | 186 | #endif /* _CPUFREQ_GOVERNOR_H */ |