Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * drivers/cpufreq/cpufreq_ondemand.c |
| 3 | * |
| 4 | * Copyright (C) 2001 Russell King |
| 5 | * (C) 2003 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>. |
| 6 | * Jun Nakajima <jun.nakajima@intel.com> |
Rohit Gupta | c496cdd | 2013-04-04 15:45:16 -0700 | [diff] [blame] | 7 | * (c) 2013 The Linux Foundation. All rights reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License version 2 as |
| 11 | * published by the Free Software Foundation. |
| 12 | */ |
| 13 | |
| 14 | #include <linux/kernel.h> |
| 15 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/cpufreq.h> |
Andrew Morton | 138a0128 | 2006-06-23 03:31:19 -0700 | [diff] [blame] | 18 | #include <linux/cpu.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/jiffies.h> |
| 20 | #include <linux/kernel_stat.h> |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 21 | #include <linux/mutex.h> |
venkatesh.pallipadi@intel.com | 8080091 | 2008-08-04 11:59:12 -0700 | [diff] [blame] | 22 | #include <linux/hrtimer.h> |
| 23 | #include <linux/tick.h> |
| 24 | #include <linux/ktime.h> |
Thomas Renninger | 9411b4e | 2009-02-04 11:54:04 +0100 | [diff] [blame] | 25 | #include <linux/sched.h> |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 26 | #include <linux/input.h> |
| 27 | #include <linux/workqueue.h> |
| 28 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
| 30 | /* |
| 31 | * dbs is used in this file as a shortform for demandbased switching |
| 32 | * It helps to keep variable names smaller, simpler |
| 33 | */ |
| 34 | |
venkatesh.pallipadi@intel.com | e9d95bf | 2008-08-04 11:59:10 -0700 | [diff] [blame] | 35 | #define DEF_FREQUENCY_DOWN_DIFFERENTIAL (10) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #define DEF_FREQUENCY_UP_THRESHOLD (80) |
David C Niemi | 3f78a9f | 2010-10-06 16:54:24 -0400 | [diff] [blame] | 37 | #define DEF_SAMPLING_DOWN_FACTOR (1) |
| 38 | #define MAX_SAMPLING_DOWN_FACTOR (100000) |
venkatesh.pallipadi@intel.com | 8080091 | 2008-08-04 11:59:12 -0700 | [diff] [blame] | 39 | #define MICRO_FREQUENCY_DOWN_DIFFERENTIAL (3) |
| 40 | #define MICRO_FREQUENCY_UP_THRESHOLD (95) |
Thomas Renninger | cef9615 | 2009-04-22 13:48:29 +0200 | [diff] [blame] | 41 | #define MICRO_FREQUENCY_MIN_SAMPLE_RATE (10000) |
Dave Jones | c29f140 | 2005-05-31 19:03:50 -0700 | [diff] [blame] | 42 | #define MIN_FREQUENCY_UP_THRESHOLD (11) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #define MAX_FREQUENCY_UP_THRESHOLD (100) |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 44 | #define MIN_FREQUENCY_DOWN_DIFFERENTIAL (1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 46 | /* |
| 47 | * The polling frequency of this governor depends on the capability of |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | * the processor. Default polling frequency is 1000 times the transition |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 49 | * latency of the processor. The governor will work on any processor with |
| 50 | * transition latency <= 10mS, using appropriate sampling |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | * rate. |
| 52 | * For CPUs with transition latency > 10mS (mostly drivers with CPUFREQ_ETERNAL) |
| 53 | * this governor will not work. |
| 54 | * All times here are in uS. |
| 55 | */ |
Dave Jones | df8b59b | 2005-09-20 12:39:35 -0700 | [diff] [blame] | 56 | #define MIN_SAMPLING_RATE_RATIO (2) |
Thomas Renninger | 112124a | 2009-02-04 11:55:12 +0100 | [diff] [blame] | 57 | |
Thomas Renninger | cef9615 | 2009-04-22 13:48:29 +0200 | [diff] [blame] | 58 | static unsigned int min_sampling_rate; |
| 59 | |
Thomas Renninger | 112124a | 2009-02-04 11:55:12 +0100 | [diff] [blame] | 60 | #define LATENCY_MULTIPLIER (1000) |
Thomas Renninger | cef9615 | 2009-04-22 13:48:29 +0200 | [diff] [blame] | 61 | #define MIN_LATENCY_MULTIPLIER (100) |
Thomas Renninger | 1c25624 | 2007-10-02 13:28:12 -0700 | [diff] [blame] | 62 | #define TRANSITION_LATENCY_LIMIT (10 * 1000 * 1000) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
David Ng | 8192a2f | 2012-01-19 14:16:19 -0800 | [diff] [blame] | 64 | #define POWERSAVE_BIAS_MAXLEVEL (1000) |
| 65 | #define POWERSAVE_BIAS_MINLEVEL (-1000) |
| 66 | |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 67 | static void do_dbs_timer(struct work_struct *work); |
Thomas Renninger | 0e625ac | 2009-07-24 15:25:06 +0200 | [diff] [blame] | 68 | static int cpufreq_governor_dbs(struct cpufreq_policy *policy, |
| 69 | unsigned int event); |
| 70 | |
| 71 | #ifndef CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND |
| 72 | static |
| 73 | #endif |
| 74 | struct cpufreq_governor cpufreq_gov_ondemand = { |
| 75 | .name = "ondemand", |
| 76 | .governor = cpufreq_governor_dbs, |
| 77 | .max_transition_latency = TRANSITION_LATENCY_LIMIT, |
| 78 | .owner = THIS_MODULE, |
| 79 | }; |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 80 | |
| 81 | /* Sampling types */ |
Venkatesh Pallipadi | 529af7a | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 82 | enum {DBS_NORMAL_SAMPLE, DBS_SUB_SAMPLE}; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
| 84 | struct cpu_dbs_info_s { |
Venkatesh Pallipadi | ccb2fe2 | 2006-06-28 13:49:52 -0700 | [diff] [blame] | 85 | cputime64_t prev_cpu_idle; |
Arjan van de Ven | 6b8fcd9 | 2010-05-09 08:26:06 -0700 | [diff] [blame] | 86 | cputime64_t prev_cpu_iowait; |
Venkatesh Pallipadi | ccb2fe2 | 2006-06-28 13:49:52 -0700 | [diff] [blame] | 87 | cputime64_t prev_cpu_wall; |
venkatesh.pallipadi@intel.com | 8080091 | 2008-08-04 11:59:12 -0700 | [diff] [blame] | 88 | cputime64_t prev_cpu_nice; |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 89 | struct cpufreq_policy *cur_policy; |
Dave Jones | 2b03f89 | 2009-01-18 01:43:44 -0500 | [diff] [blame] | 90 | struct delayed_work work; |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame] | 91 | struct cpufreq_frequency_table *freq_table; |
| 92 | unsigned int freq_lo; |
| 93 | unsigned int freq_lo_jiffies; |
| 94 | unsigned int freq_hi_jiffies; |
David C Niemi | 3f78a9f | 2010-10-06 16:54:24 -0400 | [diff] [blame] | 95 | unsigned int rate_mult; |
Narayanan Gopalakrishnan | d3ca783 | 2012-10-19 17:24:53 -0700 | [diff] [blame] | 96 | unsigned int prev_load; |
| 97 | unsigned int max_load; |
Venkatesh Pallipadi | 529af7a | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 98 | int cpu; |
venkatesh.pallipadi@intel.com | 5a75c82 | 2009-07-02 17:08:32 -0700 | [diff] [blame] | 99 | unsigned int sample_type:1; |
| 100 | /* |
| 101 | * percpu mutex that serializes governor limit change with |
| 102 | * do_dbs_timer invocation. We do not want do_dbs_timer to run |
| 103 | * when user is changing the governor or limits. |
| 104 | */ |
| 105 | struct mutex timer_mutex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | }; |
Tejun Heo | 245b2e7 | 2009-06-24 15:13:48 +0900 | [diff] [blame] | 107 | static DEFINE_PER_CPU(struct cpu_dbs_info_s, od_cpu_dbs_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
David Ng | 8192a2f | 2012-01-19 14:16:19 -0800 | [diff] [blame] | 109 | static inline void dbs_timer_init(struct cpu_dbs_info_s *dbs_info); |
| 110 | static inline void dbs_timer_exit(struct cpu_dbs_info_s *dbs_info); |
| 111 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | static unsigned int dbs_enable; /* number of CPUs using this policy */ |
| 113 | |
Venkatesh Pallipadi | 4ec223d | 2006-06-21 15:18:34 -0700 | [diff] [blame] | 114 | /* |
Matt Wagantall | 46aa066 | 2013-05-31 20:02:01 -0700 | [diff] [blame] | 115 | * dbs_mutex protects dbs_enable and dbs_info during start/stop. |
Venkatesh Pallipadi | 4ec223d | 2006-06-21 15:18:34 -0700 | [diff] [blame] | 116 | */ |
Venkatesh Pallipadi | ffac80e | 2006-06-28 13:52:18 -0700 | [diff] [blame] | 117 | static DEFINE_MUTEX(dbs_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
Matt Wagantall | 2aa4f05 | 2013-05-23 15:52:49 -0700 | [diff] [blame] | 119 | static struct workqueue_struct *dbs_wq; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 120 | |
Stephen Boyd | c8fc301 | 2012-10-31 17:43:08 -0700 | [diff] [blame] | 121 | struct dbs_work_struct { |
| 122 | struct work_struct work; |
| 123 | unsigned int cpu; |
| 124 | }; |
| 125 | |
| 126 | static DEFINE_PER_CPU(struct dbs_work_struct, dbs_refresh_work); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 127 | |
Rohit Gupta | c496cdd | 2013-04-04 15:45:16 -0700 | [diff] [blame] | 128 | struct dbs_sync_work_struct { |
| 129 | struct work_struct work; |
| 130 | unsigned int src_cpu; |
| 131 | unsigned int targ_cpu; |
| 132 | }; |
| 133 | |
| 134 | static DEFINE_PER_CPU(struct dbs_sync_work_struct, dbs_sync_work); |
| 135 | |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame] | 136 | static struct dbs_tuners { |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 137 | unsigned int sampling_rate; |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 138 | unsigned int up_threshold; |
Narayanan Gopalakrishnan | d3ca783 | 2012-10-19 17:24:53 -0700 | [diff] [blame] | 139 | unsigned int up_threshold_multi_core; |
venkatesh.pallipadi@intel.com | e9d95bf | 2008-08-04 11:59:10 -0700 | [diff] [blame] | 140 | unsigned int down_differential; |
Narayanan Gopalakrishnan | d3ca783 | 2012-10-19 17:24:53 -0700 | [diff] [blame] | 141 | unsigned int down_differential_multi_core; |
| 142 | unsigned int optimal_freq; |
| 143 | unsigned int up_threshold_any_cpu_load; |
| 144 | unsigned int sync_freq; |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 145 | unsigned int ignore_nice; |
David C Niemi | 3f78a9f | 2010-10-06 16:54:24 -0400 | [diff] [blame] | 146 | unsigned int sampling_down_factor; |
David Ng | 8192a2f | 2012-01-19 14:16:19 -0800 | [diff] [blame] | 147 | int powersave_bias; |
Arjan van de Ven | 19379b1 | 2010-05-09 08:26:51 -0700 | [diff] [blame] | 148 | unsigned int io_is_busy; |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame] | 149 | } dbs_tuners_ins = { |
Narayanan Gopalakrishnan | d3ca783 | 2012-10-19 17:24:53 -0700 | [diff] [blame] | 150 | .up_threshold_multi_core = DEF_FREQUENCY_UP_THRESHOLD, |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 151 | .up_threshold = DEF_FREQUENCY_UP_THRESHOLD, |
David C Niemi | 3f78a9f | 2010-10-06 16:54:24 -0400 | [diff] [blame] | 152 | .sampling_down_factor = DEF_SAMPLING_DOWN_FACTOR, |
venkatesh.pallipadi@intel.com | e9d95bf | 2008-08-04 11:59:10 -0700 | [diff] [blame] | 153 | .down_differential = DEF_FREQUENCY_DOWN_DIFFERENTIAL, |
Narayanan Gopalakrishnan | d3ca783 | 2012-10-19 17:24:53 -0700 | [diff] [blame] | 154 | .down_differential_multi_core = MICRO_FREQUENCY_DOWN_DIFFERENTIAL, |
| 155 | .up_threshold_any_cpu_load = DEF_FREQUENCY_UP_THRESHOLD, |
Eric Piel | 9cbad61 | 2006-03-10 11:35:27 +0200 | [diff] [blame] | 156 | .ignore_nice = 0, |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame] | 157 | .powersave_bias = 0, |
Narayanan Gopalakrishnan | d3ca783 | 2012-10-19 17:24:53 -0700 | [diff] [blame] | 158 | .sync_freq = 0, |
| 159 | .optimal_freq = 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | }; |
| 161 | |
Glauber Costa | 3292beb | 2011-11-28 14:45:17 -0200 | [diff] [blame] | 162 | static inline u64 get_cpu_idle_time_jiffy(unsigned int cpu, u64 *wall) |
Dave Jones | dac1c1a | 2005-05-31 19:03:49 -0700 | [diff] [blame] | 163 | { |
Glauber Costa | 3292beb | 2011-11-28 14:45:17 -0200 | [diff] [blame] | 164 | u64 idle_time; |
Martin Schwidefsky | 612ef28 | 2011-12-19 19:23:15 +0100 | [diff] [blame] | 165 | u64 cur_wall_time; |
Glauber Costa | 3292beb | 2011-11-28 14:45:17 -0200 | [diff] [blame] | 166 | u64 busy_time; |
Venkatesh Pallipadi | ccb2fe2 | 2006-06-28 13:49:52 -0700 | [diff] [blame] | 167 | |
venkatesh.pallipadi@intel.com | 3430502 | 2008-08-04 11:59:09 -0700 | [diff] [blame] | 168 | cur_wall_time = jiffies64_to_cputime64(get_jiffies_64()); |
Venkatesh Pallipadi | ccb2fe2 | 2006-06-28 13:49:52 -0700 | [diff] [blame] | 169 | |
Martin Schwidefsky | 612ef28 | 2011-12-19 19:23:15 +0100 | [diff] [blame] | 170 | busy_time = kcpustat_cpu(cpu).cpustat[CPUTIME_USER]; |
| 171 | busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SYSTEM]; |
Glauber Costa | 3292beb | 2011-11-28 14:45:17 -0200 | [diff] [blame] | 172 | busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_IRQ]; |
| 173 | busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SOFTIRQ]; |
| 174 | busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_STEAL]; |
| 175 | busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_NICE]; |
Venkatesh Pallipadi | ccb2fe2 | 2006-06-28 13:49:52 -0700 | [diff] [blame] | 176 | |
Martin Schwidefsky | 6486163 | 2011-12-15 14:56:09 +0100 | [diff] [blame] | 177 | idle_time = cur_wall_time - busy_time; |
venkatesh.pallipadi@intel.com | 3430502 | 2008-08-04 11:59:09 -0700 | [diff] [blame] | 178 | if (wall) |
Glauber Costa | 3292beb | 2011-11-28 14:45:17 -0200 | [diff] [blame] | 179 | *wall = jiffies_to_usecs(cur_wall_time); |
venkatesh.pallipadi@intel.com | 3430502 | 2008-08-04 11:59:09 -0700 | [diff] [blame] | 180 | |
Glauber Costa | 3292beb | 2011-11-28 14:45:17 -0200 | [diff] [blame] | 181 | return jiffies_to_usecs(idle_time); |
Dave Jones | dac1c1a | 2005-05-31 19:03:49 -0700 | [diff] [blame] | 182 | } |
| 183 | |
venkatesh.pallipadi@intel.com | 8080091 | 2008-08-04 11:59:12 -0700 | [diff] [blame] | 184 | static inline cputime64_t get_cpu_idle_time(unsigned int cpu, cputime64_t *wall) |
| 185 | { |
Michal Hocko | 6beea0c | 2011-08-24 09:37:48 +0200 | [diff] [blame] | 186 | u64 idle_time = get_cpu_idle_time_us(cpu, NULL); |
venkatesh.pallipadi@intel.com | 8080091 | 2008-08-04 11:59:12 -0700 | [diff] [blame] | 187 | |
| 188 | if (idle_time == -1ULL) |
| 189 | return get_cpu_idle_time_jiffy(cpu, wall); |
Michal Hocko | 6beea0c | 2011-08-24 09:37:48 +0200 | [diff] [blame] | 190 | else |
| 191 | idle_time += get_cpu_iowait_time_us(cpu, wall); |
venkatesh.pallipadi@intel.com | 8080091 | 2008-08-04 11:59:12 -0700 | [diff] [blame] | 192 | |
venkatesh.pallipadi@intel.com | 8080091 | 2008-08-04 11:59:12 -0700 | [diff] [blame] | 193 | return idle_time; |
| 194 | } |
| 195 | |
Arjan van de Ven | 6b8fcd9 | 2010-05-09 08:26:06 -0700 | [diff] [blame] | 196 | static inline cputime64_t get_cpu_iowait_time(unsigned int cpu, cputime64_t *wall) |
| 197 | { |
| 198 | u64 iowait_time = get_cpu_iowait_time_us(cpu, wall); |
| 199 | |
| 200 | if (iowait_time == -1ULL) |
| 201 | return 0; |
| 202 | |
| 203 | return iowait_time; |
| 204 | } |
| 205 | |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame] | 206 | /* |
| 207 | * Find right freq to be set now with powersave_bias on. |
| 208 | * Returns the freq_hi to be used right now and will set freq_hi_jiffies, |
| 209 | * freq_lo, and freq_lo_jiffies in percpu area for averaging freqs. |
| 210 | */ |
Adrian Bunk | b5ecf60 | 2006-08-13 23:00:08 +0200 | [diff] [blame] | 211 | static unsigned int powersave_bias_target(struct cpufreq_policy *policy, |
| 212 | unsigned int freq_next, |
| 213 | unsigned int relation) |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame] | 214 | { |
David Ng | 8192a2f | 2012-01-19 14:16:19 -0800 | [diff] [blame] | 215 | unsigned int freq_req, freq_avg; |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame] | 216 | unsigned int freq_hi, freq_lo; |
| 217 | unsigned int index = 0; |
| 218 | unsigned int jiffies_total, jiffies_hi, jiffies_lo; |
David Ng | 8192a2f | 2012-01-19 14:16:19 -0800 | [diff] [blame] | 219 | int freq_reduc; |
Tejun Heo | 245b2e7 | 2009-06-24 15:13:48 +0900 | [diff] [blame] | 220 | struct cpu_dbs_info_s *dbs_info = &per_cpu(od_cpu_dbs_info, |
| 221 | policy->cpu); |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame] | 222 | |
| 223 | if (!dbs_info->freq_table) { |
| 224 | dbs_info->freq_lo = 0; |
| 225 | dbs_info->freq_lo_jiffies = 0; |
| 226 | return freq_next; |
| 227 | } |
| 228 | |
| 229 | cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_next, |
| 230 | relation, &index); |
| 231 | freq_req = dbs_info->freq_table[index].frequency; |
| 232 | freq_reduc = freq_req * dbs_tuners_ins.powersave_bias / 1000; |
| 233 | freq_avg = freq_req - freq_reduc; |
| 234 | |
| 235 | /* Find freq bounds for freq_avg in freq_table */ |
| 236 | index = 0; |
| 237 | cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_avg, |
| 238 | CPUFREQ_RELATION_H, &index); |
| 239 | freq_lo = dbs_info->freq_table[index].frequency; |
| 240 | index = 0; |
| 241 | cpufreq_frequency_table_target(policy, dbs_info->freq_table, freq_avg, |
| 242 | CPUFREQ_RELATION_L, &index); |
| 243 | freq_hi = dbs_info->freq_table[index].frequency; |
| 244 | |
| 245 | /* Find out how long we have to be in hi and lo freqs */ |
| 246 | if (freq_hi == freq_lo) { |
| 247 | dbs_info->freq_lo = 0; |
| 248 | dbs_info->freq_lo_jiffies = 0; |
| 249 | return freq_lo; |
| 250 | } |
| 251 | jiffies_total = usecs_to_jiffies(dbs_tuners_ins.sampling_rate); |
| 252 | jiffies_hi = (freq_avg - freq_lo) * jiffies_total; |
| 253 | jiffies_hi += ((freq_hi - freq_lo) / 2); |
| 254 | jiffies_hi /= (freq_hi - freq_lo); |
| 255 | jiffies_lo = jiffies_total - jiffies_hi; |
| 256 | dbs_info->freq_lo = freq_lo; |
| 257 | dbs_info->freq_lo_jiffies = jiffies_lo; |
| 258 | dbs_info->freq_hi_jiffies = jiffies_hi; |
| 259 | return freq_hi; |
| 260 | } |
| 261 | |
David Ng | 8192a2f | 2012-01-19 14:16:19 -0800 | [diff] [blame] | 262 | static int ondemand_powersave_bias_setspeed(struct cpufreq_policy *policy, |
| 263 | struct cpufreq_policy *altpolicy, |
| 264 | int level) |
| 265 | { |
| 266 | if (level == POWERSAVE_BIAS_MAXLEVEL) { |
| 267 | /* maximum powersave; set to lowest frequency */ |
| 268 | __cpufreq_driver_target(policy, |
| 269 | (altpolicy) ? altpolicy->min : policy->min, |
| 270 | CPUFREQ_RELATION_L); |
| 271 | return 1; |
| 272 | } else if (level == POWERSAVE_BIAS_MINLEVEL) { |
| 273 | /* minimum powersave; set to highest frequency */ |
| 274 | __cpufreq_driver_target(policy, |
| 275 | (altpolicy) ? altpolicy->max : policy->max, |
| 276 | CPUFREQ_RELATION_H); |
| 277 | return 1; |
| 278 | } |
| 279 | return 0; |
| 280 | } |
| 281 | |
venkatesh.pallipadi@intel.com | 5a75c82 | 2009-07-02 17:08:32 -0700 | [diff] [blame] | 282 | static void ondemand_powersave_bias_init_cpu(int cpu) |
| 283 | { |
Tejun Heo | 384be2b | 2009-08-14 14:41:02 +0900 | [diff] [blame] | 284 | struct cpu_dbs_info_s *dbs_info = &per_cpu(od_cpu_dbs_info, cpu); |
venkatesh.pallipadi@intel.com | 5a75c82 | 2009-07-02 17:08:32 -0700 | [diff] [blame] | 285 | dbs_info->freq_table = cpufreq_frequency_get_table(cpu); |
| 286 | dbs_info->freq_lo = 0; |
| 287 | } |
| 288 | |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame] | 289 | static void ondemand_powersave_bias_init(void) |
| 290 | { |
| 291 | int i; |
| 292 | for_each_online_cpu(i) { |
venkatesh.pallipadi@intel.com | 5a75c82 | 2009-07-02 17:08:32 -0700 | [diff] [blame] | 293 | ondemand_powersave_bias_init_cpu(i); |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame] | 294 | } |
| 295 | } |
| 296 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | /************************** sysfs interface ************************/ |
Thomas Renninger | 0e625ac | 2009-07-24 15:25:06 +0200 | [diff] [blame] | 298 | |
Thomas Renninger | 0e625ac | 2009-07-24 15:25:06 +0200 | [diff] [blame] | 299 | static ssize_t show_sampling_rate_min(struct kobject *kobj, |
| 300 | struct attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | { |
Thomas Renninger | cef9615 | 2009-04-22 13:48:29 +0200 | [diff] [blame] | 302 | return sprintf(buf, "%u\n", min_sampling_rate); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | } |
| 304 | |
Borislav Petkov | 6dad2a2 | 2010-03-31 21:56:46 +0200 | [diff] [blame] | 305 | define_one_global_ro(sampling_rate_min); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | |
| 307 | /* cpufreq_ondemand Governor Tunables */ |
| 308 | #define show_one(file_name, object) \ |
| 309 | static ssize_t show_##file_name \ |
Thomas Renninger | 0e625ac | 2009-07-24 15:25:06 +0200 | [diff] [blame] | 310 | (struct kobject *kobj, struct attribute *attr, char *buf) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | { \ |
| 312 | return sprintf(buf, "%u\n", dbs_tuners_ins.object); \ |
| 313 | } |
| 314 | show_one(sampling_rate, sampling_rate); |
Arjan van de Ven | 19379b1 | 2010-05-09 08:26:51 -0700 | [diff] [blame] | 315 | show_one(io_is_busy, io_is_busy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | show_one(up_threshold, up_threshold); |
Narayanan Gopalakrishnan | d3ca783 | 2012-10-19 17:24:53 -0700 | [diff] [blame] | 317 | show_one(up_threshold_multi_core, up_threshold_multi_core); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 318 | show_one(down_differential, down_differential); |
David C Niemi | 3f78a9f | 2010-10-06 16:54:24 -0400 | [diff] [blame] | 319 | show_one(sampling_down_factor, sampling_down_factor); |
Alexander Clouter | 001893c | 2005-12-01 01:09:25 -0800 | [diff] [blame] | 320 | show_one(ignore_nice_load, ignore_nice); |
Narayanan Gopalakrishnan | d3ca783 | 2012-10-19 17:24:53 -0700 | [diff] [blame] | 321 | show_one(optimal_freq, optimal_freq); |
| 322 | show_one(up_threshold_any_cpu_load, up_threshold_any_cpu_load); |
| 323 | show_one(sync_freq, sync_freq); |
David Ng | 8192a2f | 2012-01-19 14:16:19 -0800 | [diff] [blame] | 324 | |
| 325 | static ssize_t show_powersave_bias |
| 326 | (struct kobject *kobj, struct attribute *attr, char *buf) |
| 327 | { |
| 328 | return snprintf(buf, PAGE_SIZE, "%d\n", dbs_tuners_ins.powersave_bias); |
| 329 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | |
MyungJoo Ham | fd0ef7a | 2012-02-29 17:54:41 +0900 | [diff] [blame] | 331 | /** |
| 332 | * update_sampling_rate - update sampling rate effective immediately if needed. |
| 333 | * @new_rate: new sampling rate |
| 334 | * |
| 335 | * If new rate is smaller than the old, simply updaing |
| 336 | * dbs_tuners_int.sampling_rate might not be appropriate. For example, |
| 337 | * if the original sampling_rate was 1 second and the requested new sampling |
| 338 | * rate is 10 ms because the user needs immediate reaction from ondemand |
| 339 | * governor, but not sure if higher frequency will be required or not, |
| 340 | * then, the governor may change the sampling rate too late; up to 1 second |
| 341 | * later. Thus, if we are reducing the sampling rate, we need to make the |
| 342 | * new value effective immediately. |
| 343 | */ |
| 344 | static void update_sampling_rate(unsigned int new_rate) |
| 345 | { |
| 346 | int cpu; |
| 347 | |
| 348 | dbs_tuners_ins.sampling_rate = new_rate |
| 349 | = max(new_rate, min_sampling_rate); |
| 350 | |
| 351 | for_each_online_cpu(cpu) { |
| 352 | struct cpufreq_policy *policy; |
| 353 | struct cpu_dbs_info_s *dbs_info; |
| 354 | unsigned long next_sampling, appointed_at; |
| 355 | |
| 356 | policy = cpufreq_cpu_get(cpu); |
| 357 | if (!policy) |
| 358 | continue; |
| 359 | dbs_info = &per_cpu(od_cpu_dbs_info, policy->cpu); |
| 360 | cpufreq_cpu_put(policy); |
| 361 | |
| 362 | mutex_lock(&dbs_info->timer_mutex); |
| 363 | |
| 364 | if (!delayed_work_pending(&dbs_info->work)) { |
| 365 | mutex_unlock(&dbs_info->timer_mutex); |
| 366 | continue; |
| 367 | } |
| 368 | |
| 369 | next_sampling = jiffies + usecs_to_jiffies(new_rate); |
| 370 | appointed_at = dbs_info->work.timer.expires; |
| 371 | |
| 372 | |
| 373 | if (time_before(next_sampling, appointed_at)) { |
| 374 | |
| 375 | mutex_unlock(&dbs_info->timer_mutex); |
| 376 | cancel_delayed_work_sync(&dbs_info->work); |
| 377 | mutex_lock(&dbs_info->timer_mutex); |
| 378 | |
Matt Wagantall | 2aa4f05 | 2013-05-23 15:52:49 -0700 | [diff] [blame] | 379 | queue_delayed_work_on(dbs_info->cpu, dbs_wq, |
| 380 | &dbs_info->work, usecs_to_jiffies(new_rate)); |
MyungJoo Ham | fd0ef7a | 2012-02-29 17:54:41 +0900 | [diff] [blame] | 381 | |
| 382 | } |
| 383 | mutex_unlock(&dbs_info->timer_mutex); |
| 384 | } |
| 385 | } |
| 386 | |
Thomas Renninger | 0e625ac | 2009-07-24 15:25:06 +0200 | [diff] [blame] | 387 | static ssize_t store_sampling_rate(struct kobject *a, struct attribute *b, |
| 388 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | { |
| 390 | unsigned int input; |
| 391 | int ret; |
Venkatesh Pallipadi | ffac80e | 2006-06-28 13:52:18 -0700 | [diff] [blame] | 392 | ret = sscanf(buf, "%u", &input); |
venkatesh.pallipadi@intel.com | 5a75c82 | 2009-07-02 17:08:32 -0700 | [diff] [blame] | 393 | if (ret != 1) |
| 394 | return -EINVAL; |
MyungJoo Ham | fd0ef7a | 2012-02-29 17:54:41 +0900 | [diff] [blame] | 395 | update_sampling_rate(input); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | return count; |
| 397 | } |
| 398 | |
Narayanan Gopalakrishnan | d3ca783 | 2012-10-19 17:24:53 -0700 | [diff] [blame] | 399 | static ssize_t store_sync_freq(struct kobject *a, struct attribute *b, |
| 400 | const char *buf, size_t count) |
| 401 | { |
| 402 | unsigned int input; |
| 403 | int ret; |
| 404 | |
| 405 | ret = sscanf(buf, "%u", &input); |
| 406 | if (ret != 1) |
| 407 | return -EINVAL; |
| 408 | dbs_tuners_ins.sync_freq = input; |
| 409 | return count; |
| 410 | } |
| 411 | |
Arjan van de Ven | 19379b1 | 2010-05-09 08:26:51 -0700 | [diff] [blame] | 412 | static ssize_t store_io_is_busy(struct kobject *a, struct attribute *b, |
| 413 | const char *buf, size_t count) |
| 414 | { |
| 415 | unsigned int input; |
| 416 | int ret; |
| 417 | |
| 418 | ret = sscanf(buf, "%u", &input); |
| 419 | if (ret != 1) |
| 420 | return -EINVAL; |
Arjan van de Ven | 19379b1 | 2010-05-09 08:26:51 -0700 | [diff] [blame] | 421 | dbs_tuners_ins.io_is_busy = !!input; |
Arjan van de Ven | 19379b1 | 2010-05-09 08:26:51 -0700 | [diff] [blame] | 422 | return count; |
| 423 | } |
| 424 | |
Narayanan Gopalakrishnan | d3ca783 | 2012-10-19 17:24:53 -0700 | [diff] [blame] | 425 | static ssize_t store_optimal_freq(struct kobject *a, struct attribute *b, |
| 426 | const char *buf, size_t count) |
| 427 | { |
| 428 | unsigned int input; |
| 429 | int ret; |
| 430 | |
| 431 | ret = sscanf(buf, "%u", &input); |
| 432 | if (ret != 1) |
| 433 | return -EINVAL; |
| 434 | dbs_tuners_ins.optimal_freq = input; |
| 435 | return count; |
| 436 | } |
| 437 | |
Thomas Renninger | 0e625ac | 2009-07-24 15:25:06 +0200 | [diff] [blame] | 438 | static ssize_t store_up_threshold(struct kobject *a, struct attribute *b, |
| 439 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | { |
| 441 | unsigned int input; |
| 442 | int ret; |
Venkatesh Pallipadi | ffac80e | 2006-06-28 13:52:18 -0700 | [diff] [blame] | 443 | ret = sscanf(buf, "%u", &input); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 445 | if (ret != 1 || input > MAX_FREQUENCY_UP_THRESHOLD || |
Dave Jones | c29f140 | 2005-05-31 19:03:50 -0700 | [diff] [blame] | 446 | input < MIN_FREQUENCY_UP_THRESHOLD) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | return -EINVAL; |
| 448 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | dbs_tuners_ins.up_threshold = input; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | return count; |
| 451 | } |
| 452 | |
Narayanan Gopalakrishnan | d3ca783 | 2012-10-19 17:24:53 -0700 | [diff] [blame] | 453 | static ssize_t store_up_threshold_multi_core(struct kobject *a, |
| 454 | struct attribute *b, const char *buf, size_t count) |
| 455 | { |
| 456 | unsigned int input; |
| 457 | int ret; |
| 458 | ret = sscanf(buf, "%u", &input); |
| 459 | |
| 460 | if (ret != 1 || input > MAX_FREQUENCY_UP_THRESHOLD || |
| 461 | input < MIN_FREQUENCY_UP_THRESHOLD) { |
| 462 | return -EINVAL; |
| 463 | } |
| 464 | dbs_tuners_ins.up_threshold_multi_core = input; |
| 465 | return count; |
| 466 | } |
| 467 | |
| 468 | static ssize_t store_up_threshold_any_cpu_load(struct kobject *a, |
| 469 | struct attribute *b, const char *buf, size_t count) |
| 470 | { |
| 471 | unsigned int input; |
| 472 | int ret; |
| 473 | ret = sscanf(buf, "%u", &input); |
| 474 | |
| 475 | if (ret != 1 || input > MAX_FREQUENCY_UP_THRESHOLD || |
| 476 | input < MIN_FREQUENCY_UP_THRESHOLD) { |
| 477 | return -EINVAL; |
| 478 | } |
| 479 | dbs_tuners_ins.up_threshold_any_cpu_load = input; |
| 480 | return count; |
| 481 | } |
| 482 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 483 | static ssize_t store_down_differential(struct kobject *a, struct attribute *b, |
| 484 | const char *buf, size_t count) |
| 485 | { |
| 486 | unsigned int input; |
| 487 | int ret; |
| 488 | ret = sscanf(buf, "%u", &input); |
| 489 | |
| 490 | if (ret != 1 || input >= dbs_tuners_ins.up_threshold || |
| 491 | input < MIN_FREQUENCY_DOWN_DIFFERENTIAL) { |
| 492 | return -EINVAL; |
| 493 | } |
| 494 | |
| 495 | dbs_tuners_ins.down_differential = input; |
| 496 | |
| 497 | return count; |
| 498 | } |
| 499 | |
David C Niemi | 3f78a9f | 2010-10-06 16:54:24 -0400 | [diff] [blame] | 500 | static ssize_t store_sampling_down_factor(struct kobject *a, |
| 501 | struct attribute *b, const char *buf, size_t count) |
| 502 | { |
| 503 | unsigned int input, j; |
| 504 | int ret; |
| 505 | ret = sscanf(buf, "%u", &input); |
| 506 | |
| 507 | if (ret != 1 || input > MAX_SAMPLING_DOWN_FACTOR || input < 1) |
| 508 | return -EINVAL; |
David C Niemi | 3f78a9f | 2010-10-06 16:54:24 -0400 | [diff] [blame] | 509 | dbs_tuners_ins.sampling_down_factor = input; |
| 510 | |
| 511 | /* Reset down sampling multiplier in case it was active */ |
| 512 | for_each_online_cpu(j) { |
| 513 | struct cpu_dbs_info_s *dbs_info; |
| 514 | dbs_info = &per_cpu(od_cpu_dbs_info, j); |
| 515 | dbs_info->rate_mult = 1; |
| 516 | } |
David C Niemi | 3f78a9f | 2010-10-06 16:54:24 -0400 | [diff] [blame] | 517 | return count; |
| 518 | } |
| 519 | |
Thomas Renninger | 0e625ac | 2009-07-24 15:25:06 +0200 | [diff] [blame] | 520 | static ssize_t store_ignore_nice_load(struct kobject *a, struct attribute *b, |
| 521 | const char *buf, size_t count) |
Dave Jones | 3d5ee9e | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 522 | { |
| 523 | unsigned int input; |
| 524 | int ret; |
| 525 | |
| 526 | unsigned int j; |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 527 | |
Venkatesh Pallipadi | ffac80e | 2006-06-28 13:52:18 -0700 | [diff] [blame] | 528 | ret = sscanf(buf, "%u", &input); |
Dave Jones | 2b03f89 | 2009-01-18 01:43:44 -0500 | [diff] [blame] | 529 | if (ret != 1) |
Dave Jones | 3d5ee9e | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 530 | return -EINVAL; |
| 531 | |
Dave Jones | 2b03f89 | 2009-01-18 01:43:44 -0500 | [diff] [blame] | 532 | if (input > 1) |
Dave Jones | 3d5ee9e | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 533 | input = 1; |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 534 | |
Dave Jones | 2b03f89 | 2009-01-18 01:43:44 -0500 | [diff] [blame] | 535 | if (input == dbs_tuners_ins.ignore_nice) { /* nothing to do */ |
Dave Jones | 3d5ee9e | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 536 | return count; |
| 537 | } |
| 538 | dbs_tuners_ins.ignore_nice = input; |
| 539 | |
Venkatesh Pallipadi | ccb2fe2 | 2006-06-28 13:49:52 -0700 | [diff] [blame] | 540 | /* we need to re-evaluate prev_cpu_idle */ |
Dave Jones | dac1c1a | 2005-05-31 19:03:49 -0700 | [diff] [blame] | 541 | for_each_online_cpu(j) { |
Venkatesh Pallipadi | ccb2fe2 | 2006-06-28 13:49:52 -0700 | [diff] [blame] | 542 | struct cpu_dbs_info_s *dbs_info; |
Tejun Heo | 245b2e7 | 2009-06-24 15:13:48 +0900 | [diff] [blame] | 543 | dbs_info = &per_cpu(od_cpu_dbs_info, j); |
venkatesh.pallipadi@intel.com | 3430502 | 2008-08-04 11:59:09 -0700 | [diff] [blame] | 544 | dbs_info->prev_cpu_idle = get_cpu_idle_time(j, |
| 545 | &dbs_info->prev_cpu_wall); |
Venkatesh Pallipadi | 1ca3abd | 2009-01-23 09:25:02 -0500 | [diff] [blame] | 546 | if (dbs_tuners_ins.ignore_nice) |
Glauber Costa | 3292beb | 2011-11-28 14:45:17 -0200 | [diff] [blame] | 547 | dbs_info->prev_cpu_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE]; |
Venkatesh Pallipadi | 1ca3abd | 2009-01-23 09:25:02 -0500 | [diff] [blame] | 548 | |
Dave Jones | 3d5ee9e | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 549 | } |
Dave Jones | 3d5ee9e | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 550 | return count; |
| 551 | } |
| 552 | |
Thomas Renninger | 0e625ac | 2009-07-24 15:25:06 +0200 | [diff] [blame] | 553 | static ssize_t store_powersave_bias(struct kobject *a, struct attribute *b, |
| 554 | const char *buf, size_t count) |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame] | 555 | { |
David Ng | 8192a2f | 2012-01-19 14:16:19 -0800 | [diff] [blame] | 556 | int input = 0; |
| 557 | int bypass = 0; |
Krishna Vanka | ebf80eb | 2012-04-19 13:11:20 +0530 | [diff] [blame] | 558 | int ret, cpu, reenable_timer, j; |
David Ng | 8192a2f | 2012-01-19 14:16:19 -0800 | [diff] [blame] | 559 | struct cpu_dbs_info_s *dbs_info; |
| 560 | |
Krishna Vanka | ebf80eb | 2012-04-19 13:11:20 +0530 | [diff] [blame] | 561 | struct cpumask cpus_timer_done; |
| 562 | cpumask_clear(&cpus_timer_done); |
| 563 | |
David Ng | 8192a2f | 2012-01-19 14:16:19 -0800 | [diff] [blame] | 564 | ret = sscanf(buf, "%d", &input); |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame] | 565 | |
| 566 | if (ret != 1) |
| 567 | return -EINVAL; |
| 568 | |
David Ng | 8192a2f | 2012-01-19 14:16:19 -0800 | [diff] [blame] | 569 | if (input >= POWERSAVE_BIAS_MAXLEVEL) { |
| 570 | input = POWERSAVE_BIAS_MAXLEVEL; |
| 571 | bypass = 1; |
| 572 | } else if (input <= POWERSAVE_BIAS_MINLEVEL) { |
| 573 | input = POWERSAVE_BIAS_MINLEVEL; |
| 574 | bypass = 1; |
| 575 | } |
| 576 | |
| 577 | if (input == dbs_tuners_ins.powersave_bias) { |
| 578 | /* no change */ |
| 579 | return count; |
| 580 | } |
| 581 | |
| 582 | reenable_timer = ((dbs_tuners_ins.powersave_bias == |
| 583 | POWERSAVE_BIAS_MAXLEVEL) || |
| 584 | (dbs_tuners_ins.powersave_bias == |
| 585 | POWERSAVE_BIAS_MINLEVEL)); |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame] | 586 | |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame] | 587 | dbs_tuners_ins.powersave_bias = input; |
Matt Wagantall | 46aa066 | 2013-05-31 20:02:01 -0700 | [diff] [blame] | 588 | |
| 589 | mutex_lock(&dbs_mutex); |
Matt Wagantall | 0afbad1 | 2013-05-31 13:14:44 -0700 | [diff] [blame] | 590 | get_online_cpus(); |
Matt Wagantall | 46aa066 | 2013-05-31 20:02:01 -0700 | [diff] [blame] | 591 | |
David Ng | 8192a2f | 2012-01-19 14:16:19 -0800 | [diff] [blame] | 592 | if (!bypass) { |
| 593 | if (reenable_timer) { |
| 594 | /* reinstate dbs timer */ |
| 595 | for_each_online_cpu(cpu) { |
| 596 | if (lock_policy_rwsem_write(cpu) < 0) |
| 597 | continue; |
| 598 | |
| 599 | dbs_info = &per_cpu(od_cpu_dbs_info, cpu); |
Krishna Vanka | ebf80eb | 2012-04-19 13:11:20 +0530 | [diff] [blame] | 600 | |
| 601 | for_each_cpu(j, &cpus_timer_done) { |
| 602 | if (!dbs_info->cur_policy) { |
| 603 | pr_err("Dbs policy is NULL\n"); |
| 604 | goto skip_this_cpu; |
| 605 | } |
| 606 | if (cpumask_test_cpu(j, dbs_info-> |
| 607 | cur_policy->cpus)) |
| 608 | goto skip_this_cpu; |
| 609 | } |
| 610 | |
| 611 | cpumask_set_cpu(cpu, &cpus_timer_done); |
David Ng | 8192a2f | 2012-01-19 14:16:19 -0800 | [diff] [blame] | 612 | if (dbs_info->cur_policy) { |
| 613 | /* restart dbs timer */ |
| 614 | dbs_timer_init(dbs_info); |
| 615 | } |
Krishna Vanka | ebf80eb | 2012-04-19 13:11:20 +0530 | [diff] [blame] | 616 | skip_this_cpu: |
David Ng | 8192a2f | 2012-01-19 14:16:19 -0800 | [diff] [blame] | 617 | unlock_policy_rwsem_write(cpu); |
| 618 | } |
| 619 | } |
| 620 | ondemand_powersave_bias_init(); |
| 621 | } else { |
| 622 | /* running at maximum or minimum frequencies; cancel |
| 623 | dbs timer as periodic load sampling is not necessary */ |
| 624 | for_each_online_cpu(cpu) { |
| 625 | if (lock_policy_rwsem_write(cpu) < 0) |
| 626 | continue; |
| 627 | |
| 628 | dbs_info = &per_cpu(od_cpu_dbs_info, cpu); |
Krishna Vanka | ebf80eb | 2012-04-19 13:11:20 +0530 | [diff] [blame] | 629 | |
| 630 | for_each_cpu(j, &cpus_timer_done) { |
| 631 | if (!dbs_info->cur_policy) { |
| 632 | pr_err("Dbs policy is NULL\n"); |
| 633 | goto skip_this_cpu_bypass; |
| 634 | } |
| 635 | if (cpumask_test_cpu(j, dbs_info-> |
| 636 | cur_policy->cpus)) |
| 637 | goto skip_this_cpu_bypass; |
| 638 | } |
| 639 | |
| 640 | cpumask_set_cpu(cpu, &cpus_timer_done); |
| 641 | |
David Ng | 8192a2f | 2012-01-19 14:16:19 -0800 | [diff] [blame] | 642 | if (dbs_info->cur_policy) { |
| 643 | /* cpu using ondemand, cancel dbs timer */ |
| 644 | mutex_lock(&dbs_info->timer_mutex); |
| 645 | dbs_timer_exit(dbs_info); |
| 646 | |
| 647 | ondemand_powersave_bias_setspeed( |
| 648 | dbs_info->cur_policy, |
| 649 | NULL, |
| 650 | input); |
| 651 | |
| 652 | mutex_unlock(&dbs_info->timer_mutex); |
| 653 | } |
Krishna Vanka | ebf80eb | 2012-04-19 13:11:20 +0530 | [diff] [blame] | 654 | skip_this_cpu_bypass: |
David Ng | 8192a2f | 2012-01-19 14:16:19 -0800 | [diff] [blame] | 655 | unlock_policy_rwsem_write(cpu); |
| 656 | } |
| 657 | } |
Matt Wagantall | 46aa066 | 2013-05-31 20:02:01 -0700 | [diff] [blame] | 658 | |
Matt Wagantall | 0afbad1 | 2013-05-31 13:14:44 -0700 | [diff] [blame] | 659 | put_online_cpus(); |
Matt Wagantall | 46aa066 | 2013-05-31 20:02:01 -0700 | [diff] [blame] | 660 | mutex_unlock(&dbs_mutex); |
David Ng | 8192a2f | 2012-01-19 14:16:19 -0800 | [diff] [blame] | 661 | |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame] | 662 | return count; |
| 663 | } |
| 664 | |
Borislav Petkov | 6dad2a2 | 2010-03-31 21:56:46 +0200 | [diff] [blame] | 665 | define_one_global_rw(sampling_rate); |
Linus Torvalds | 07d7775 | 2010-05-18 08:49:13 -0700 | [diff] [blame] | 666 | define_one_global_rw(io_is_busy); |
Borislav Petkov | 6dad2a2 | 2010-03-31 21:56:46 +0200 | [diff] [blame] | 667 | define_one_global_rw(up_threshold); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 668 | define_one_global_rw(down_differential); |
David C Niemi | 3f78a9f | 2010-10-06 16:54:24 -0400 | [diff] [blame] | 669 | define_one_global_rw(sampling_down_factor); |
Borislav Petkov | 6dad2a2 | 2010-03-31 21:56:46 +0200 | [diff] [blame] | 670 | define_one_global_rw(ignore_nice_load); |
| 671 | define_one_global_rw(powersave_bias); |
Narayanan Gopalakrishnan | d3ca783 | 2012-10-19 17:24:53 -0700 | [diff] [blame] | 672 | define_one_global_rw(up_threshold_multi_core); |
| 673 | define_one_global_rw(optimal_freq); |
| 674 | define_one_global_rw(up_threshold_any_cpu_load); |
| 675 | define_one_global_rw(sync_freq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | |
Dave Jones | 2b03f89 | 2009-01-18 01:43:44 -0500 | [diff] [blame] | 677 | static struct attribute *dbs_attributes[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | &sampling_rate_min.attr, |
| 679 | &sampling_rate.attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | &up_threshold.attr, |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 681 | &down_differential.attr, |
David C Niemi | 3f78a9f | 2010-10-06 16:54:24 -0400 | [diff] [blame] | 682 | &sampling_down_factor.attr, |
Alexander Clouter | 001893c | 2005-12-01 01:09:25 -0800 | [diff] [blame] | 683 | &ignore_nice_load.attr, |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame] | 684 | &powersave_bias.attr, |
Arjan van de Ven | 19379b1 | 2010-05-09 08:26:51 -0700 | [diff] [blame] | 685 | &io_is_busy.attr, |
Narayanan Gopalakrishnan | d3ca783 | 2012-10-19 17:24:53 -0700 | [diff] [blame] | 686 | &up_threshold_multi_core.attr, |
| 687 | &optimal_freq.attr, |
| 688 | &up_threshold_any_cpu_load.attr, |
| 689 | &sync_freq.attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | NULL |
| 691 | }; |
| 692 | |
| 693 | static struct attribute_group dbs_attr_group = { |
| 694 | .attrs = dbs_attributes, |
| 695 | .name = "ondemand", |
| 696 | }; |
| 697 | |
| 698 | /************************** sysfs end ************************/ |
| 699 | |
Mike Chan | 00e299f | 2010-01-26 17:06:47 -0800 | [diff] [blame] | 700 | static void dbs_freq_increase(struct cpufreq_policy *p, unsigned int freq) |
| 701 | { |
| 702 | if (dbs_tuners_ins.powersave_bias) |
| 703 | freq = powersave_bias_target(p, freq, CPUFREQ_RELATION_H); |
| 704 | else if (p->cur == p->max) |
| 705 | return; |
| 706 | |
| 707 | __cpufreq_driver_target(p, freq, dbs_tuners_ins.powersave_bias ? |
| 708 | CPUFREQ_RELATION_L : CPUFREQ_RELATION_H); |
| 709 | } |
| 710 | |
Venkatesh Pallipadi | 2f8a835 | 2006-06-28 13:51:19 -0700 | [diff] [blame] | 711 | static void dbs_check_cpu(struct cpu_dbs_info_s *this_dbs_info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | { |
Anitha Anand | cbeef6a | 2012-03-05 18:10:52 -0800 | [diff] [blame] | 713 | /* Extrapolated load of this CPU */ |
| 714 | unsigned int load_at_max_freq = 0; |
venkatesh.pallipadi@intel.com | c43aa3b | 2008-08-04 11:59:08 -0700 | [diff] [blame] | 715 | unsigned int max_load_freq; |
Anitha Anand | cbeef6a | 2012-03-05 18:10:52 -0800 | [diff] [blame] | 716 | /* Current load across this CPU */ |
| 717 | unsigned int cur_load = 0; |
Narayanan Gopalakrishnan | d3ca783 | 2012-10-19 17:24:53 -0700 | [diff] [blame] | 718 | unsigned int max_load_other_cpu = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | struct cpufreq_policy *policy; |
| 720 | unsigned int j; |
| 721 | |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame] | 722 | this_dbs_info->freq_lo = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | policy = this_dbs_info->cur_policy; |
Venki Pallipadi | ea48761 | 2007-06-20 14:26:24 -0700 | [diff] [blame] | 724 | |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 725 | /* |
Dave Jones | c29f140 | 2005-05-31 19:03:50 -0700 | [diff] [blame] | 726 | * Every sampling_rate, we check, if current idle time is less |
| 727 | * than 20% (default), then we try to increase frequency |
Venkatesh Pallipadi | ccb2fe2 | 2006-06-28 13:49:52 -0700 | [diff] [blame] | 728 | * Every sampling_rate, we look for a the lowest |
Dave Jones | c29f140 | 2005-05-31 19:03:50 -0700 | [diff] [blame] | 729 | * frequency which can sustain the load while keeping idle time over |
| 730 | * 30%. If such a frequency exist, we try to decrease to this frequency. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | * |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 732 | * Any frequency increase takes it to the maximum frequency. |
| 733 | * Frequency reduction happens at minimum steps of |
| 734 | * 5% (default) of current frequency |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | */ |
| 736 | |
venkatesh.pallipadi@intel.com | c43aa3b | 2008-08-04 11:59:08 -0700 | [diff] [blame] | 737 | /* Get Absolute Load - in terms of freq */ |
| 738 | max_load_freq = 0; |
| 739 | |
Rusty Russell | 835481d | 2009-01-04 05:18:06 -0800 | [diff] [blame] | 740 | for_each_cpu(j, policy->cpus) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | struct cpu_dbs_info_s *j_dbs_info; |
Arjan van de Ven | 6b8fcd9 | 2010-05-09 08:26:06 -0700 | [diff] [blame] | 742 | cputime64_t cur_wall_time, cur_idle_time, cur_iowait_time; |
| 743 | unsigned int idle_time, wall_time, iowait_time; |
Anitha Anand | cbeef6a | 2012-03-05 18:10:52 -0800 | [diff] [blame] | 744 | unsigned int load_freq; |
venkatesh.pallipadi@intel.com | c43aa3b | 2008-08-04 11:59:08 -0700 | [diff] [blame] | 745 | int freq_avg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | |
Tejun Heo | 245b2e7 | 2009-06-24 15:13:48 +0900 | [diff] [blame] | 747 | j_dbs_info = &per_cpu(od_cpu_dbs_info, j); |
venkatesh.pallipadi@intel.com | 3430502 | 2008-08-04 11:59:09 -0700 | [diff] [blame] | 748 | |
| 749 | cur_idle_time = get_cpu_idle_time(j, &cur_wall_time); |
Arjan van de Ven | 6b8fcd9 | 2010-05-09 08:26:06 -0700 | [diff] [blame] | 750 | cur_iowait_time = get_cpu_iowait_time(j, &cur_wall_time); |
venkatesh.pallipadi@intel.com | 3430502 | 2008-08-04 11:59:09 -0700 | [diff] [blame] | 751 | |
Martin Schwidefsky | 6486163 | 2011-12-15 14:56:09 +0100 | [diff] [blame] | 752 | wall_time = (unsigned int) |
| 753 | (cur_wall_time - j_dbs_info->prev_cpu_wall); |
venkatesh.pallipadi@intel.com | c43aa3b | 2008-08-04 11:59:08 -0700 | [diff] [blame] | 754 | j_dbs_info->prev_cpu_wall = cur_wall_time; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | |
Martin Schwidefsky | 6486163 | 2011-12-15 14:56:09 +0100 | [diff] [blame] | 756 | idle_time = (unsigned int) |
| 757 | (cur_idle_time - j_dbs_info->prev_cpu_idle); |
venkatesh.pallipadi@intel.com | c43aa3b | 2008-08-04 11:59:08 -0700 | [diff] [blame] | 758 | j_dbs_info->prev_cpu_idle = cur_idle_time; |
| 759 | |
Martin Schwidefsky | 6486163 | 2011-12-15 14:56:09 +0100 | [diff] [blame] | 760 | iowait_time = (unsigned int) |
| 761 | (cur_iowait_time - j_dbs_info->prev_cpu_iowait); |
Arjan van de Ven | 6b8fcd9 | 2010-05-09 08:26:06 -0700 | [diff] [blame] | 762 | j_dbs_info->prev_cpu_iowait = cur_iowait_time; |
| 763 | |
Venkatesh Pallipadi | 1ca3abd | 2009-01-23 09:25:02 -0500 | [diff] [blame] | 764 | if (dbs_tuners_ins.ignore_nice) { |
Glauber Costa | 3292beb | 2011-11-28 14:45:17 -0200 | [diff] [blame] | 765 | u64 cur_nice; |
Venkatesh Pallipadi | 1ca3abd | 2009-01-23 09:25:02 -0500 | [diff] [blame] | 766 | unsigned long cur_nice_jiffies; |
| 767 | |
Glauber Costa | 3292beb | 2011-11-28 14:45:17 -0200 | [diff] [blame] | 768 | cur_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE] - |
| 769 | j_dbs_info->prev_cpu_nice; |
Venkatesh Pallipadi | 1ca3abd | 2009-01-23 09:25:02 -0500 | [diff] [blame] | 770 | /* |
| 771 | * Assumption: nice time between sampling periods will |
| 772 | * be less than 2^32 jiffies for 32 bit sys |
| 773 | */ |
| 774 | cur_nice_jiffies = (unsigned long) |
| 775 | cputime64_to_jiffies64(cur_nice); |
| 776 | |
Glauber Costa | 3292beb | 2011-11-28 14:45:17 -0200 | [diff] [blame] | 777 | j_dbs_info->prev_cpu_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE]; |
Venkatesh Pallipadi | 1ca3abd | 2009-01-23 09:25:02 -0500 | [diff] [blame] | 778 | idle_time += jiffies_to_usecs(cur_nice_jiffies); |
| 779 | } |
| 780 | |
Arjan van de Ven | 6b8fcd9 | 2010-05-09 08:26:06 -0700 | [diff] [blame] | 781 | /* |
| 782 | * For the purpose of ondemand, waiting for disk IO is an |
| 783 | * indication that you're performance critical, and not that |
| 784 | * the system is actually idle. So subtract the iowait time |
| 785 | * from the cpu idle time. |
| 786 | */ |
| 787 | |
Arjan van de Ven | 19379b1 | 2010-05-09 08:26:51 -0700 | [diff] [blame] | 788 | if (dbs_tuners_ins.io_is_busy && idle_time >= iowait_time) |
Arjan van de Ven | 6b8fcd9 | 2010-05-09 08:26:06 -0700 | [diff] [blame] | 789 | idle_time -= iowait_time; |
| 790 | |
venkatesh.pallipadi@intel.com | 3430502 | 2008-08-04 11:59:09 -0700 | [diff] [blame] | 791 | if (unlikely(!wall_time || wall_time < idle_time)) |
venkatesh.pallipadi@intel.com | c43aa3b | 2008-08-04 11:59:08 -0700 | [diff] [blame] | 792 | continue; |
venkatesh.pallipadi@intel.com | c43aa3b | 2008-08-04 11:59:08 -0700 | [diff] [blame] | 793 | |
Anitha Anand | cbeef6a | 2012-03-05 18:10:52 -0800 | [diff] [blame] | 794 | cur_load = 100 * (wall_time - idle_time) / wall_time; |
Narayanan Gopalakrishnan | d3ca783 | 2012-10-19 17:24:53 -0700 | [diff] [blame] | 795 | j_dbs_info->max_load = max(cur_load, j_dbs_info->prev_load); |
| 796 | j_dbs_info->prev_load = cur_load; |
venkatesh.pallipadi@intel.com | c43aa3b | 2008-08-04 11:59:08 -0700 | [diff] [blame] | 797 | freq_avg = __cpufreq_driver_getavg(policy, j); |
| 798 | if (freq_avg <= 0) |
| 799 | freq_avg = policy->cur; |
| 800 | |
Anitha Anand | cbeef6a | 2012-03-05 18:10:52 -0800 | [diff] [blame] | 801 | load_freq = cur_load * freq_avg; |
venkatesh.pallipadi@intel.com | c43aa3b | 2008-08-04 11:59:08 -0700 | [diff] [blame] | 802 | if (load_freq > max_load_freq) |
| 803 | max_load_freq = load_freq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | } |
Narayanan Gopalakrishnan | d3ca783 | 2012-10-19 17:24:53 -0700 | [diff] [blame] | 805 | |
| 806 | for_each_online_cpu(j) { |
| 807 | struct cpu_dbs_info_s *j_dbs_info; |
| 808 | j_dbs_info = &per_cpu(od_cpu_dbs_info, j); |
| 809 | |
| 810 | if (j == policy->cpu) |
| 811 | continue; |
| 812 | |
| 813 | if (max_load_other_cpu < j_dbs_info->max_load) |
| 814 | max_load_other_cpu = j_dbs_info->max_load; |
| 815 | /* |
| 816 | * The other cpu could be running at higher frequency |
| 817 | * but may not have completed it's sampling_down_factor. |
| 818 | * For that case consider other cpu is loaded so that |
| 819 | * frequency imbalance does not occur. |
| 820 | */ |
| 821 | |
| 822 | if ((j_dbs_info->cur_policy != NULL) |
| 823 | && (j_dbs_info->cur_policy->cur == |
| 824 | j_dbs_info->cur_policy->max)) { |
| 825 | |
| 826 | if (policy->cur >= dbs_tuners_ins.optimal_freq) |
| 827 | max_load_other_cpu = |
| 828 | dbs_tuners_ins.up_threshold_any_cpu_load; |
| 829 | } |
| 830 | } |
| 831 | |
Anitha Anand | cbeef6a | 2012-03-05 18:10:52 -0800 | [diff] [blame] | 832 | /* calculate the scaled load across CPU */ |
| 833 | load_at_max_freq = (cur_load * policy->cur)/policy->cpuinfo.max_freq; |
| 834 | |
| 835 | cpufreq_notify_utilization(policy, load_at_max_freq); |
Venkatesh Pallipadi | ccb2fe2 | 2006-06-28 13:49:52 -0700 | [diff] [blame] | 836 | /* Check for frequency increase */ |
venkatesh.pallipadi@intel.com | c43aa3b | 2008-08-04 11:59:08 -0700 | [diff] [blame] | 837 | if (max_load_freq > dbs_tuners_ins.up_threshold * policy->cur) { |
David C Niemi | 3f78a9f | 2010-10-06 16:54:24 -0400 | [diff] [blame] | 838 | /* If switching to max speed, apply sampling_down_factor */ |
| 839 | if (policy->cur < policy->max) |
| 840 | this_dbs_info->rate_mult = |
| 841 | dbs_tuners_ins.sampling_down_factor; |
Mike Chan | 00e299f | 2010-01-26 17:06:47 -0800 | [diff] [blame] | 842 | dbs_freq_increase(policy, policy->max); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | return; |
| 844 | } |
| 845 | |
Narayanan Gopalakrishnan | d3ca783 | 2012-10-19 17:24:53 -0700 | [diff] [blame] | 846 | if (num_online_cpus() > 1) { |
| 847 | |
| 848 | if (max_load_other_cpu > |
| 849 | dbs_tuners_ins.up_threshold_any_cpu_load) { |
| 850 | if (policy->cur < dbs_tuners_ins.sync_freq) |
| 851 | dbs_freq_increase(policy, |
| 852 | dbs_tuners_ins.sync_freq); |
| 853 | return; |
| 854 | } |
| 855 | |
| 856 | if (max_load_freq > dbs_tuners_ins.up_threshold_multi_core * |
| 857 | policy->cur) { |
| 858 | if (policy->cur < dbs_tuners_ins.optimal_freq) |
| 859 | dbs_freq_increase(policy, |
| 860 | dbs_tuners_ins.optimal_freq); |
| 861 | return; |
| 862 | } |
| 863 | } |
| 864 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | /* Check for frequency decrease */ |
Dave Jones | c29f140 | 2005-05-31 19:03:50 -0700 | [diff] [blame] | 866 | /* if we cannot reduce the frequency anymore, break out early */ |
| 867 | if (policy->cur == policy->min) |
| 868 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | |
Dave Jones | c29f140 | 2005-05-31 19:03:50 -0700 | [diff] [blame] | 870 | /* |
| 871 | * The optimal frequency is the frequency that is the lowest that |
| 872 | * can support the current CPU usage without triggering the up |
| 873 | * policy. To be safe, we focus 10 points under the threshold. |
| 874 | */ |
venkatesh.pallipadi@intel.com | e9d95bf | 2008-08-04 11:59:10 -0700 | [diff] [blame] | 875 | if (max_load_freq < |
| 876 | (dbs_tuners_ins.up_threshold - dbs_tuners_ins.down_differential) * |
| 877 | policy->cur) { |
venkatesh.pallipadi@intel.com | c43aa3b | 2008-08-04 11:59:08 -0700 | [diff] [blame] | 878 | unsigned int freq_next; |
venkatesh.pallipadi@intel.com | e9d95bf | 2008-08-04 11:59:10 -0700 | [diff] [blame] | 879 | freq_next = max_load_freq / |
| 880 | (dbs_tuners_ins.up_threshold - |
| 881 | dbs_tuners_ins.down_differential); |
Venkatesh Pallipadi | dfde5d6 | 2006-10-03 12:38:45 -0700 | [diff] [blame] | 882 | |
David C Niemi | 3f78a9f | 2010-10-06 16:54:24 -0400 | [diff] [blame] | 883 | /* No longer fully busy, reset rate_mult */ |
| 884 | this_dbs_info->rate_mult = 1; |
| 885 | |
Nagananda.Chumbalkar@hp.com | 1dbf588 | 2009-12-21 23:40:52 +0100 | [diff] [blame] | 886 | if (freq_next < policy->min) |
| 887 | freq_next = policy->min; |
| 888 | |
Narayanan Gopalakrishnan | d3ca783 | 2012-10-19 17:24:53 -0700 | [diff] [blame] | 889 | if (num_online_cpus() > 1) { |
| 890 | if (max_load_other_cpu > |
| 891 | (dbs_tuners_ins.up_threshold_multi_core - |
| 892 | dbs_tuners_ins.down_differential) && |
| 893 | freq_next < dbs_tuners_ins.sync_freq) |
| 894 | freq_next = dbs_tuners_ins.sync_freq; |
| 895 | |
| 896 | if (max_load_freq > |
Veena Sambasivan | 8aa2486 | 2013-05-14 12:36:48 -0700 | [diff] [blame] | 897 | ((dbs_tuners_ins.up_threshold_multi_core - |
Narayanan Gopalakrishnan | d3ca783 | 2012-10-19 17:24:53 -0700 | [diff] [blame] | 898 | dbs_tuners_ins.down_differential_multi_core) * |
Veena Sambasivan | 8aa2486 | 2013-05-14 12:36:48 -0700 | [diff] [blame] | 899 | policy->cur) && |
| 900 | freq_next < dbs_tuners_ins.optimal_freq) |
Narayanan Gopalakrishnan | d3ca783 | 2012-10-19 17:24:53 -0700 | [diff] [blame] | 901 | freq_next = dbs_tuners_ins.optimal_freq; |
| 902 | |
| 903 | } |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame] | 904 | if (!dbs_tuners_ins.powersave_bias) { |
| 905 | __cpufreq_driver_target(policy, freq_next, |
| 906 | CPUFREQ_RELATION_L); |
| 907 | } else { |
| 908 | int freq = powersave_bias_target(policy, freq_next, |
| 909 | CPUFREQ_RELATION_L); |
| 910 | __cpufreq_driver_target(policy, freq, |
| 911 | CPUFREQ_RELATION_L); |
| 912 | } |
Venkatesh Pallipadi | ccb2fe2 | 2006-06-28 13:49:52 -0700 | [diff] [blame] | 913 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | } |
| 915 | |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 916 | static void do_dbs_timer(struct work_struct *work) |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 917 | { |
Venkatesh Pallipadi | 529af7a | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 918 | struct cpu_dbs_info_s *dbs_info = |
| 919 | container_of(work, struct cpu_dbs_info_s, work.work); |
| 920 | unsigned int cpu = dbs_info->cpu; |
| 921 | int sample_type = dbs_info->sample_type; |
| 922 | |
Vincent Guittot | 5cb2c3b | 2011-02-07 17:14:25 +0100 | [diff] [blame] | 923 | int delay; |
Jocelyn Falempe | a665df9 | 2010-03-11 14:01:11 -0800 | [diff] [blame] | 924 | |
venkatesh.pallipadi@intel.com | 5a75c82 | 2009-07-02 17:08:32 -0700 | [diff] [blame] | 925 | mutex_lock(&dbs_info->timer_mutex); |
Venkatesh Pallipadi | 56463b7 | 2007-02-05 16:12:45 -0800 | [diff] [blame] | 926 | |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame] | 927 | /* Common NORMAL_SAMPLE setup */ |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 928 | dbs_info->sample_type = DBS_NORMAL_SAMPLE; |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame] | 929 | if (!dbs_tuners_ins.powersave_bias || |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 930 | sample_type == DBS_NORMAL_SAMPLE) { |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame] | 931 | dbs_check_cpu(dbs_info); |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame] | 932 | if (dbs_info->freq_lo) { |
| 933 | /* Setup timer for SUB_SAMPLE */ |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 934 | dbs_info->sample_type = DBS_SUB_SAMPLE; |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame] | 935 | delay = dbs_info->freq_hi_jiffies; |
Vincent Guittot | 5cb2c3b | 2011-02-07 17:14:25 +0100 | [diff] [blame] | 936 | } else { |
| 937 | /* We want all CPUs to do sampling nearly on |
| 938 | * same jiffy |
| 939 | */ |
| 940 | delay = usecs_to_jiffies(dbs_tuners_ins.sampling_rate |
| 941 | * dbs_info->rate_mult); |
| 942 | |
| 943 | if (num_online_cpus() > 1) |
| 944 | delay -= jiffies % delay; |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame] | 945 | } |
| 946 | } else { |
| 947 | __cpufreq_driver_target(dbs_info->cur_policy, |
Dave Jones | 2b03f89 | 2009-01-18 01:43:44 -0500 | [diff] [blame] | 948 | dbs_info->freq_lo, CPUFREQ_RELATION_H); |
Vincent Guittot | 5cb2c3b | 2011-02-07 17:14:25 +0100 | [diff] [blame] | 949 | delay = dbs_info->freq_lo_jiffies; |
Alexey Starikovskiy | 05ca035 | 2006-07-31 22:28:12 +0400 | [diff] [blame] | 950 | } |
Matt Wagantall | 2aa4f05 | 2013-05-23 15:52:49 -0700 | [diff] [blame] | 951 | queue_delayed_work_on(cpu, dbs_wq, &dbs_info->work, delay); |
venkatesh.pallipadi@intel.com | 5a75c82 | 2009-07-02 17:08:32 -0700 | [diff] [blame] | 952 | mutex_unlock(&dbs_info->timer_mutex); |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 953 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | |
Venkatesh Pallipadi | 529af7a | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 955 | static inline void dbs_timer_init(struct cpu_dbs_info_s *dbs_info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | { |
Alexey Starikovskiy | 1ce28d6 | 2006-07-31 22:25:20 +0400 | [diff] [blame] | 957 | /* We want all CPUs to do sampling nearly on same jiffy */ |
| 958 | int delay = usecs_to_jiffies(dbs_tuners_ins.sampling_rate); |
Jocelyn Falempe | a665df9 | 2010-03-11 14:01:11 -0800 | [diff] [blame] | 959 | |
| 960 | if (num_online_cpus() > 1) |
| 961 | delay -= jiffies % delay; |
Venkatesh Pallipadi | 2f8a835 | 2006-06-28 13:51:19 -0700 | [diff] [blame] | 962 | |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 963 | dbs_info->sample_type = DBS_NORMAL_SAMPLE; |
Venki Pallipadi | 2828703 | 2007-05-08 00:27:47 -0700 | [diff] [blame] | 964 | INIT_DELAYED_WORK_DEFERRABLE(&dbs_info->work, do_dbs_timer); |
Matt Wagantall | 2aa4f05 | 2013-05-23 15:52:49 -0700 | [diff] [blame] | 965 | queue_delayed_work_on(dbs_info->cpu, dbs_wq, &dbs_info->work, delay); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | } |
| 967 | |
Linus Torvalds | 2cd7cbd | 2006-07-23 12:05:00 -0700 | [diff] [blame] | 968 | static inline void dbs_timer_exit(struct cpu_dbs_info_s *dbs_info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | { |
Mathieu Desnoyers | b14893a | 2009-05-17 10:30:45 -0400 | [diff] [blame] | 970 | cancel_delayed_work_sync(&dbs_info->work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | } |
| 972 | |
Arjan van de Ven | 19379b1 | 2010-05-09 08:26:51 -0700 | [diff] [blame] | 973 | /* |
| 974 | * Not all CPUs want IO time to be accounted as busy; this dependson how |
| 975 | * efficient idling at a higher frequency/voltage is. |
| 976 | * Pavel Machek says this is not so for various generations of AMD and old |
| 977 | * Intel systems. |
| 978 | * Mike Chan (androidlcom) calis this is also not true for ARM. |
| 979 | * Because of this, whitelist specific known (series) of CPUs by default, and |
| 980 | * leave all others up to the user. |
| 981 | */ |
| 982 | static int should_io_be_busy(void) |
| 983 | { |
| 984 | #if defined(CONFIG_X86) |
| 985 | /* |
| 986 | * For Intel, Core 2 (model 15) andl later have an efficient idle. |
| 987 | */ |
| 988 | if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL && |
| 989 | boot_cpu_data.x86 == 6 && |
| 990 | boot_cpu_data.x86_model >= 15) |
| 991 | return 1; |
| 992 | #endif |
| 993 | return 0; |
| 994 | } |
| 995 | |
Stephen Boyd | c8fc301 | 2012-10-31 17:43:08 -0700 | [diff] [blame] | 996 | static void dbs_refresh_callback(struct work_struct *work) |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 997 | { |
| 998 | struct cpufreq_policy *policy; |
| 999 | struct cpu_dbs_info_s *this_dbs_info; |
Stephen Boyd | c8fc301 | 2012-10-31 17:43:08 -0700 | [diff] [blame] | 1000 | struct dbs_work_struct *dbs_work; |
| 1001 | unsigned int cpu; |
| 1002 | |
| 1003 | dbs_work = container_of(work, struct dbs_work_struct, work); |
| 1004 | cpu = dbs_work->cpu; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 1005 | |
Krishna Vanka | a3e04d8 | 2012-06-08 11:35:43 +0530 | [diff] [blame] | 1006 | get_online_cpus(); |
| 1007 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 1008 | if (lock_policy_rwsem_write(cpu) < 0) |
Krishna Vanka | a3e04d8 | 2012-06-08 11:35:43 +0530 | [diff] [blame] | 1009 | goto bail_acq_sema_failed; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 1010 | |
| 1011 | this_dbs_info = &per_cpu(od_cpu_dbs_info, cpu); |
| 1012 | policy = this_dbs_info->cur_policy; |
David Ng | 4a0a023 | 2011-08-03 14:04:43 -0700 | [diff] [blame] | 1013 | if (!policy) { |
| 1014 | /* CPU not using ondemand governor */ |
Krishna Vanka | a3e04d8 | 2012-06-08 11:35:43 +0530 | [diff] [blame] | 1015 | goto bail_incorrect_governor; |
David Ng | 4a0a023 | 2011-08-03 14:04:43 -0700 | [diff] [blame] | 1016 | } |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 1017 | |
| 1018 | if (policy->cur < policy->max) { |
Anji Jonnala | f873232 | 2012-12-13 14:03:54 +0530 | [diff] [blame] | 1019 | /* |
| 1020 | * Arch specific cpufreq driver may fail. |
| 1021 | * Don't update governor frequency upon failure. |
| 1022 | */ |
| 1023 | if (__cpufreq_driver_target(policy, policy->max, |
| 1024 | CPUFREQ_RELATION_L) >= 0) |
| 1025 | policy->cur = policy->max; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 1026 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 1027 | this_dbs_info->prev_cpu_idle = get_cpu_idle_time(cpu, |
| 1028 | &this_dbs_info->prev_cpu_wall); |
| 1029 | } |
Krishna Vanka | a3e04d8 | 2012-06-08 11:35:43 +0530 | [diff] [blame] | 1030 | |
| 1031 | bail_incorrect_governor: |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 1032 | unlock_policy_rwsem_write(cpu); |
Krishna Vanka | a3e04d8 | 2012-06-08 11:35:43 +0530 | [diff] [blame] | 1033 | |
| 1034 | bail_acq_sema_failed: |
| 1035 | put_online_cpus(); |
| 1036 | return; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 1037 | } |
| 1038 | |
Rohit Gupta | c496cdd | 2013-04-04 15:45:16 -0700 | [diff] [blame] | 1039 | static int dbs_migration_notify(struct notifier_block *nb, |
| 1040 | unsigned long target_cpu, void *arg) |
| 1041 | { |
| 1042 | struct dbs_sync_work_struct *sync_work = |
| 1043 | &per_cpu(dbs_sync_work, target_cpu); |
| 1044 | sync_work->src_cpu = (unsigned int)arg; |
| 1045 | |
Matt Wagantall | 2aa4f05 | 2013-05-23 15:52:49 -0700 | [diff] [blame] | 1046 | queue_work_on(target_cpu, dbs_wq, |
Rohit Gupta | c496cdd | 2013-04-04 15:45:16 -0700 | [diff] [blame] | 1047 | &per_cpu(dbs_sync_work, target_cpu).work); |
| 1048 | |
| 1049 | return NOTIFY_OK; |
| 1050 | } |
| 1051 | |
| 1052 | static struct notifier_block dbs_migration_nb = { |
| 1053 | .notifier_call = dbs_migration_notify, |
| 1054 | }; |
| 1055 | |
| 1056 | void dbs_synchronize(struct work_struct *work) |
| 1057 | { |
| 1058 | struct cpufreq_policy *policy; |
| 1059 | struct cpu_dbs_info_s *this_dbs_info, *src_dbs_info; |
| 1060 | struct dbs_sync_work_struct *dbs_work; |
| 1061 | unsigned int cpu, src_cpu; |
| 1062 | unsigned int src_freq, src_max_load; |
| 1063 | int delay; |
| 1064 | |
| 1065 | dbs_work = container_of(work, struct dbs_sync_work_struct, work); |
| 1066 | cpu = dbs_work->targ_cpu; |
| 1067 | src_cpu = dbs_work->src_cpu; |
| 1068 | |
| 1069 | get_online_cpus(); |
| 1070 | |
| 1071 | /* Getting source cpu info */ |
| 1072 | src_dbs_info = &per_cpu(od_cpu_dbs_info, src_cpu); |
| 1073 | if (src_dbs_info != NULL && src_dbs_info->cur_policy != NULL) { |
| 1074 | src_freq = src_dbs_info->cur_policy->cur; |
| 1075 | src_max_load = src_dbs_info->max_load; |
| 1076 | } else { |
| 1077 | src_freq = dbs_tuners_ins.sync_freq; |
| 1078 | src_max_load = 0; |
| 1079 | } |
| 1080 | |
| 1081 | if (lock_policy_rwsem_write(cpu) < 0) |
| 1082 | goto bail_acq_sema_failed; |
| 1083 | |
| 1084 | this_dbs_info = &per_cpu(od_cpu_dbs_info, cpu); |
| 1085 | policy = this_dbs_info->cur_policy; |
| 1086 | if (!policy) { |
| 1087 | /* CPU not using ondemand governor */ |
| 1088 | goto bail_incorrect_governor; |
| 1089 | } |
| 1090 | |
| 1091 | delay = usecs_to_jiffies(dbs_tuners_ins.sampling_rate); |
| 1092 | |
| 1093 | if (policy->cur < src_freq) { |
| 1094 | |
| 1095 | /* Cancelling the next ondemand sample */ |
| 1096 | cancel_delayed_work_sync(&this_dbs_info->work); |
| 1097 | |
| 1098 | /* |
| 1099 | * Arch specific cpufreq driver may fail. |
| 1100 | * Don't update governor frequency upon failure. |
| 1101 | */ |
| 1102 | if (__cpufreq_driver_target(policy, src_freq, |
| 1103 | CPUFREQ_RELATION_L) >= 0) { |
| 1104 | policy->cur = src_freq; |
| 1105 | if (src_max_load > this_dbs_info->max_load) { |
| 1106 | this_dbs_info->max_load = src_max_load; |
| 1107 | this_dbs_info->prev_load = src_max_load; |
| 1108 | } |
| 1109 | } |
| 1110 | |
| 1111 | /* Rescheduling the next ondemand sample */ |
| 1112 | mutex_lock(&this_dbs_info->timer_mutex); |
| 1113 | schedule_delayed_work_on(cpu, &this_dbs_info->work, |
| 1114 | delay); |
| 1115 | mutex_unlock(&this_dbs_info->timer_mutex); |
| 1116 | } |
| 1117 | bail_incorrect_governor: |
| 1118 | unlock_policy_rwsem_write(cpu); |
| 1119 | |
| 1120 | bail_acq_sema_failed: |
| 1121 | put_online_cpus(); |
| 1122 | return; |
| 1123 | } |
| 1124 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 1125 | static void dbs_input_event(struct input_handle *handle, unsigned int type, |
| 1126 | unsigned int code, int value) |
| 1127 | { |
Matt Wagantall | 2100f00 | 2012-10-19 15:26:48 -0700 | [diff] [blame] | 1128 | int i; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 1129 | |
David Ng | 8192a2f | 2012-01-19 14:16:19 -0800 | [diff] [blame] | 1130 | if ((dbs_tuners_ins.powersave_bias == POWERSAVE_BIAS_MAXLEVEL) || |
| 1131 | (dbs_tuners_ins.powersave_bias == POWERSAVE_BIAS_MINLEVEL)) { |
| 1132 | /* nothing to do */ |
| 1133 | return; |
| 1134 | } |
| 1135 | |
Stephen Boyd | c8fc301 | 2012-10-31 17:43:08 -0700 | [diff] [blame] | 1136 | for_each_online_cpu(i) |
Matt Wagantall | 2aa4f05 | 2013-05-23 15:52:49 -0700 | [diff] [blame] | 1137 | queue_work_on(i, dbs_wq, &per_cpu(dbs_refresh_work, i).work); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 1138 | } |
| 1139 | |
| 1140 | static int dbs_input_connect(struct input_handler *handler, |
| 1141 | struct input_dev *dev, const struct input_device_id *id) |
| 1142 | { |
| 1143 | struct input_handle *handle; |
| 1144 | int error; |
| 1145 | |
| 1146 | handle = kzalloc(sizeof(struct input_handle), GFP_KERNEL); |
| 1147 | if (!handle) |
| 1148 | return -ENOMEM; |
| 1149 | |
| 1150 | handle->dev = dev; |
| 1151 | handle->handler = handler; |
| 1152 | handle->name = "cpufreq"; |
| 1153 | |
| 1154 | error = input_register_handle(handle); |
| 1155 | if (error) |
| 1156 | goto err2; |
| 1157 | |
| 1158 | error = input_open_device(handle); |
| 1159 | if (error) |
| 1160 | goto err1; |
| 1161 | |
| 1162 | return 0; |
| 1163 | err1: |
| 1164 | input_unregister_handle(handle); |
| 1165 | err2: |
| 1166 | kfree(handle); |
| 1167 | return error; |
| 1168 | } |
| 1169 | |
| 1170 | static void dbs_input_disconnect(struct input_handle *handle) |
| 1171 | { |
| 1172 | input_close_device(handle); |
| 1173 | input_unregister_handle(handle); |
| 1174 | kfree(handle); |
| 1175 | } |
| 1176 | |
| 1177 | static const struct input_device_id dbs_ids[] = { |
| 1178 | { .driver_info = 1 }, |
| 1179 | { }, |
| 1180 | }; |
| 1181 | |
| 1182 | static struct input_handler dbs_input_handler = { |
| 1183 | .event = dbs_input_event, |
| 1184 | .connect = dbs_input_connect, |
| 1185 | .disconnect = dbs_input_disconnect, |
| 1186 | .name = "cpufreq_ond", |
| 1187 | .id_table = dbs_ids, |
| 1188 | }; |
| 1189 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1190 | static int cpufreq_governor_dbs(struct cpufreq_policy *policy, |
| 1191 | unsigned int event) |
| 1192 | { |
| 1193 | unsigned int cpu = policy->cpu; |
| 1194 | struct cpu_dbs_info_s *this_dbs_info; |
| 1195 | unsigned int j; |
Jeff Garzik | 914f7c3 | 2006-10-20 14:31:00 -0700 | [diff] [blame] | 1196 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1197 | |
Tejun Heo | 245b2e7 | 2009-06-24 15:13:48 +0900 | [diff] [blame] | 1198 | this_dbs_info = &per_cpu(od_cpu_dbs_info, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1199 | |
| 1200 | switch (event) { |
| 1201 | case CPUFREQ_GOV_START: |
Venkatesh Pallipadi | ffac80e | 2006-06-28 13:52:18 -0700 | [diff] [blame] | 1202 | if ((!cpu_online(cpu)) || (!policy->cur)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1203 | return -EINVAL; |
| 1204 | |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 1205 | mutex_lock(&dbs_mutex); |
Jeff Garzik | 914f7c3 | 2006-10-20 14:31:00 -0700 | [diff] [blame] | 1206 | |
venkatesh.pallipadi@intel.com | 5a75c82 | 2009-07-02 17:08:32 -0700 | [diff] [blame] | 1207 | dbs_enable++; |
Rusty Russell | 835481d | 2009-01-04 05:18:06 -0800 | [diff] [blame] | 1208 | for_each_cpu(j, policy->cpus) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | struct cpu_dbs_info_s *j_dbs_info; |
Tejun Heo | 245b2e7 | 2009-06-24 15:13:48 +0900 | [diff] [blame] | 1210 | j_dbs_info = &per_cpu(od_cpu_dbs_info, j); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1211 | j_dbs_info->cur_policy = policy; |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 1212 | |
venkatesh.pallipadi@intel.com | 3430502 | 2008-08-04 11:59:09 -0700 | [diff] [blame] | 1213 | j_dbs_info->prev_cpu_idle = get_cpu_idle_time(j, |
| 1214 | &j_dbs_info->prev_cpu_wall); |
Glauber Costa | 3292beb | 2011-11-28 14:45:17 -0200 | [diff] [blame] | 1215 | if (dbs_tuners_ins.ignore_nice) |
Venkatesh Pallipadi | 1ca3abd | 2009-01-23 09:25:02 -0500 | [diff] [blame] | 1216 | j_dbs_info->prev_cpu_nice = |
Glauber Costa | 3292beb | 2011-11-28 14:45:17 -0200 | [diff] [blame] | 1217 | kcpustat_cpu(j).cpustat[CPUTIME_NICE]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1218 | } |
Venkatesh Pallipadi | 529af7a | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1219 | this_dbs_info->cpu = cpu; |
David C Niemi | 3f78a9f | 2010-10-06 16:54:24 -0400 | [diff] [blame] | 1220 | this_dbs_info->rate_mult = 1; |
venkatesh.pallipadi@intel.com | 5a75c82 | 2009-07-02 17:08:32 -0700 | [diff] [blame] | 1221 | ondemand_powersave_bias_init_cpu(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | /* |
| 1223 | * Start the timerschedule work, when this governor |
| 1224 | * is used for first time |
| 1225 | */ |
| 1226 | if (dbs_enable == 1) { |
| 1227 | unsigned int latency; |
Thomas Renninger | 0e625ac | 2009-07-24 15:25:06 +0200 | [diff] [blame] | 1228 | |
| 1229 | rc = sysfs_create_group(cpufreq_global_kobject, |
| 1230 | &dbs_attr_group); |
| 1231 | if (rc) { |
| 1232 | mutex_unlock(&dbs_mutex); |
| 1233 | return rc; |
| 1234 | } |
| 1235 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1236 | /* policy latency is in nS. Convert it to uS first */ |
Dave Jones | df8b59b | 2005-09-20 12:39:35 -0700 | [diff] [blame] | 1237 | latency = policy->cpuinfo.transition_latency / 1000; |
| 1238 | if (latency == 0) |
| 1239 | latency = 1; |
Thomas Renninger | cef9615 | 2009-04-22 13:48:29 +0200 | [diff] [blame] | 1240 | /* Bring kernel and HW constraints together */ |
| 1241 | min_sampling_rate = max(min_sampling_rate, |
| 1242 | MIN_LATENCY_MULTIPLIER * latency); |
| 1243 | dbs_tuners_ins.sampling_rate = |
| 1244 | max(min_sampling_rate, |
| 1245 | latency * LATENCY_MULTIPLIER); |
Arjan van de Ven | 19379b1 | 2010-05-09 08:26:51 -0700 | [diff] [blame] | 1246 | dbs_tuners_ins.io_is_busy = should_io_be_busy(); |
Narayanan Gopalakrishnan | d3ca783 | 2012-10-19 17:24:53 -0700 | [diff] [blame] | 1247 | |
| 1248 | if (dbs_tuners_ins.optimal_freq == 0) |
| 1249 | dbs_tuners_ins.optimal_freq = policy->min; |
| 1250 | |
| 1251 | if (dbs_tuners_ins.sync_freq == 0) |
| 1252 | dbs_tuners_ins.sync_freq = policy->min; |
Rohit Gupta | c496cdd | 2013-04-04 15:45:16 -0700 | [diff] [blame] | 1253 | |
| 1254 | atomic_notifier_chain_register(&migration_notifier_head, |
| 1255 | &dbs_migration_nb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1256 | } |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 1257 | if (!cpu) |
| 1258 | rc = input_register_handler(&dbs_input_handler); |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 1259 | mutex_unlock(&dbs_mutex); |
venkatesh.pallipadi@intel.com | 7d26e2d | 2009-07-02 17:08:30 -0700 | [diff] [blame] | 1260 | |
David Ng | 8192a2f | 2012-01-19 14:16:19 -0800 | [diff] [blame] | 1261 | |
| 1262 | if (!ondemand_powersave_bias_setspeed( |
| 1263 | this_dbs_info->cur_policy, |
| 1264 | NULL, |
| 1265 | dbs_tuners_ins.powersave_bias)) |
| 1266 | dbs_timer_init(this_dbs_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1267 | break; |
| 1268 | |
| 1269 | case CPUFREQ_GOV_STOP: |
Linus Torvalds | 2cd7cbd | 2006-07-23 12:05:00 -0700 | [diff] [blame] | 1270 | dbs_timer_exit(this_dbs_info); |
venkatesh.pallipadi@intel.com | 7d26e2d | 2009-07-02 17:08:30 -0700 | [diff] [blame] | 1271 | |
| 1272 | mutex_lock(&dbs_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1273 | dbs_enable--; |
Anitha Anand | 3dd6509 | 2012-01-18 17:17:40 -0800 | [diff] [blame] | 1274 | /* If device is being removed, policy is no longer |
| 1275 | * valid. */ |
| 1276 | this_dbs_info->cur_policy = NULL; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 1277 | if (!cpu) |
| 1278 | input_unregister_handler(&dbs_input_handler); |
Rohit Gupta | c496cdd | 2013-04-04 15:45:16 -0700 | [diff] [blame] | 1279 | if (!dbs_enable) { |
Thomas Renninger | 0e625ac | 2009-07-24 15:25:06 +0200 | [diff] [blame] | 1280 | sysfs_remove_group(cpufreq_global_kobject, |
| 1281 | &dbs_attr_group); |
Rohit Gupta | c496cdd | 2013-04-04 15:45:16 -0700 | [diff] [blame] | 1282 | atomic_notifier_chain_unregister( |
| 1283 | &migration_notifier_head, |
| 1284 | &dbs_migration_nb); |
| 1285 | } |
| 1286 | |
Venkat Devarasetty | 4edc766 | 2013-01-30 18:08:51 +0530 | [diff] [blame] | 1287 | mutex_unlock(&dbs_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1288 | |
| 1289 | break; |
| 1290 | |
| 1291 | case CPUFREQ_GOV_LIMITS: |
venkatesh.pallipadi@intel.com | 5a75c82 | 2009-07-02 17:08:32 -0700 | [diff] [blame] | 1292 | mutex_lock(&this_dbs_info->timer_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1293 | if (policy->max < this_dbs_info->cur_policy->cur) |
Venkatesh Pallipadi | ffac80e | 2006-06-28 13:52:18 -0700 | [diff] [blame] | 1294 | __cpufreq_driver_target(this_dbs_info->cur_policy, |
Dave Jones | 2b03f89 | 2009-01-18 01:43:44 -0500 | [diff] [blame] | 1295 | policy->max, CPUFREQ_RELATION_H); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1296 | else if (policy->min > this_dbs_info->cur_policy->cur) |
Venkatesh Pallipadi | ffac80e | 2006-06-28 13:52:18 -0700 | [diff] [blame] | 1297 | __cpufreq_driver_target(this_dbs_info->cur_policy, |
Dave Jones | 2b03f89 | 2009-01-18 01:43:44 -0500 | [diff] [blame] | 1298 | policy->min, CPUFREQ_RELATION_L); |
David Ng | 8192a2f | 2012-01-19 14:16:19 -0800 | [diff] [blame] | 1299 | else if (dbs_tuners_ins.powersave_bias != 0) |
| 1300 | ondemand_powersave_bias_setspeed( |
| 1301 | this_dbs_info->cur_policy, |
| 1302 | policy, |
| 1303 | dbs_tuners_ins.powersave_bias); |
venkatesh.pallipadi@intel.com | 5a75c82 | 2009-07-02 17:08:32 -0700 | [diff] [blame] | 1304 | mutex_unlock(&this_dbs_info->timer_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1305 | break; |
| 1306 | } |
| 1307 | return 0; |
| 1308 | } |
| 1309 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1310 | static int __init cpufreq_gov_dbs_init(void) |
| 1311 | { |
Andrea Righi | 4f6e6b9 | 2008-09-18 10:43:40 +0000 | [diff] [blame] | 1312 | u64 idle_time; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 1313 | unsigned int i; |
Andrea Righi | 4f6e6b9 | 2008-09-18 10:43:40 +0000 | [diff] [blame] | 1314 | int cpu = get_cpu(); |
venkatesh.pallipadi@intel.com | 8080091 | 2008-08-04 11:59:12 -0700 | [diff] [blame] | 1315 | |
Kamalesh Babulal | 21f2e3c | 2011-12-09 16:18:42 +0530 | [diff] [blame] | 1316 | idle_time = get_cpu_idle_time_us(cpu, NULL); |
Andrea Righi | 4f6e6b9 | 2008-09-18 10:43:40 +0000 | [diff] [blame] | 1317 | put_cpu(); |
venkatesh.pallipadi@intel.com | 8080091 | 2008-08-04 11:59:12 -0700 | [diff] [blame] | 1318 | if (idle_time != -1ULL) { |
| 1319 | /* Idle micro accounting is supported. Use finer thresholds */ |
| 1320 | dbs_tuners_ins.up_threshold = MICRO_FREQUENCY_UP_THRESHOLD; |
| 1321 | dbs_tuners_ins.down_differential = |
| 1322 | MICRO_FREQUENCY_DOWN_DIFFERENTIAL; |
Thomas Renninger | cef9615 | 2009-04-22 13:48:29 +0200 | [diff] [blame] | 1323 | /* |
Paul Bolle | bd74b32 | 2011-08-06 14:33:43 +0200 | [diff] [blame] | 1324 | * In nohz/micro accounting case we set the minimum frequency |
Thomas Renninger | cef9615 | 2009-04-22 13:48:29 +0200 | [diff] [blame] | 1325 | * not depending on HZ, but fixed (very low). The deferred |
| 1326 | * timer might skip some samples if idle/sleeping as needed. |
| 1327 | */ |
| 1328 | min_sampling_rate = MICRO_FREQUENCY_MIN_SAMPLE_RATE; |
| 1329 | } else { |
| 1330 | /* For correct statistics, we need 10 ticks for each measure */ |
| 1331 | min_sampling_rate = |
| 1332 | MIN_SAMPLING_RATE_RATIO * jiffies_to_usecs(10); |
venkatesh.pallipadi@intel.com | 8080091 | 2008-08-04 11:59:12 -0700 | [diff] [blame] | 1333 | } |
Akinobu Mita | 888a794 | 2008-07-14 12:00:45 +0900 | [diff] [blame] | 1334 | |
Matt Wagantall | 2aa4f05 | 2013-05-23 15:52:49 -0700 | [diff] [blame] | 1335 | dbs_wq = alloc_workqueue("ondemand_dbs_wq", WQ_HIGHPRI, 0); |
| 1336 | if (!dbs_wq) { |
| 1337 | printk(KERN_ERR "Failed to create ondemand_dbs_wq workqueue\n"); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 1338 | return -EFAULT; |
| 1339 | } |
| 1340 | for_each_possible_cpu(i) { |
Praveen Chidambaram | 457a445 | 2012-07-19 10:45:07 -0600 | [diff] [blame] | 1341 | struct cpu_dbs_info_s *this_dbs_info = |
| 1342 | &per_cpu(od_cpu_dbs_info, i); |
Stephen Boyd | c8fc301 | 2012-10-31 17:43:08 -0700 | [diff] [blame] | 1343 | struct dbs_work_struct *dbs_work = |
| 1344 | &per_cpu(dbs_refresh_work, i); |
Rohit Gupta | c496cdd | 2013-04-04 15:45:16 -0700 | [diff] [blame] | 1345 | struct dbs_sync_work_struct *dbs_sync = |
| 1346 | &per_cpu(dbs_sync_work, i); |
Stephen Boyd | c8fc301 | 2012-10-31 17:43:08 -0700 | [diff] [blame] | 1347 | |
Praveen Chidambaram | 457a445 | 2012-07-19 10:45:07 -0600 | [diff] [blame] | 1348 | mutex_init(&this_dbs_info->timer_mutex); |
Stephen Boyd | c8fc301 | 2012-10-31 17:43:08 -0700 | [diff] [blame] | 1349 | INIT_WORK(&dbs_work->work, dbs_refresh_callback); |
| 1350 | dbs_work->cpu = i; |
Rohit Gupta | c496cdd | 2013-04-04 15:45:16 -0700 | [diff] [blame] | 1351 | |
| 1352 | INIT_WORK(&dbs_sync->work, dbs_synchronize); |
| 1353 | dbs_sync->src_cpu = 0; |
| 1354 | dbs_sync->targ_cpu = i; |
| 1355 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 1356 | } |
| 1357 | |
Tejun Heo | 57df557 | 2011-01-26 12:12:50 +0100 | [diff] [blame] | 1358 | return cpufreq_register_governor(&cpufreq_gov_ondemand); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1359 | } |
| 1360 | |
| 1361 | static void __exit cpufreq_gov_dbs_exit(void) |
| 1362 | { |
Anji Jonnala | 4c1485f | 2012-11-14 13:34:54 +0530 | [diff] [blame] | 1363 | unsigned int i; |
| 1364 | |
Thomas Renninger | 1c25624 | 2007-10-02 13:28:12 -0700 | [diff] [blame] | 1365 | cpufreq_unregister_governor(&cpufreq_gov_ondemand); |
Anji Jonnala | 4c1485f | 2012-11-14 13:34:54 +0530 | [diff] [blame] | 1366 | for_each_possible_cpu(i) { |
| 1367 | struct cpu_dbs_info_s *this_dbs_info = |
| 1368 | &per_cpu(od_cpu_dbs_info, i); |
| 1369 | mutex_destroy(&this_dbs_info->timer_mutex); |
| 1370 | } |
Matt Wagantall | 2aa4f05 | 2013-05-23 15:52:49 -0700 | [diff] [blame] | 1371 | destroy_workqueue(dbs_wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1372 | } |
| 1373 | |
| 1374 | |
Venkatesh Pallipadi | ffac80e | 2006-06-28 13:52:18 -0700 | [diff] [blame] | 1375 | MODULE_AUTHOR("Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>"); |
| 1376 | MODULE_AUTHOR("Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>"); |
| 1377 | MODULE_DESCRIPTION("'cpufreq_ondemand' - A dynamic cpufreq governor for " |
Dave Jones | 2b03f89 | 2009-01-18 01:43:44 -0500 | [diff] [blame] | 1378 | "Low Latency Frequency Transition capable processors"); |
Venkatesh Pallipadi | ffac80e | 2006-06-28 13:52:18 -0700 | [diff] [blame] | 1379 | MODULE_LICENSE("GPL"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1380 | |
Johannes Weiner | 6915719 | 2008-01-17 15:21:08 -0800 | [diff] [blame] | 1381 | #ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND |
| 1382 | fs_initcall(cpufreq_gov_dbs_init); |
| 1383 | #else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1384 | module_init(cpufreq_gov_dbs_init); |
Johannes Weiner | 6915719 | 2008-01-17 15:21:08 -0800 | [diff] [blame] | 1385 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1386 | module_exit(cpufreq_gov_dbs_exit); |