Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 1 | /* |
| 2 | * linux/drivers/thermal/cpu_cooling.c |
| 3 | * |
| 4 | * Copyright (C) 2012 Samsung Electronics Co., Ltd(http://www.samsung.com) |
| 5 | * Copyright (C) 2012 Amit Daniel <amit.kachhap@linaro.org> |
| 6 | * |
Viresh Kumar | 73904cb | 2014-12-04 09:42:08 +0530 | [diff] [blame] | 7 | * Copyright (C) 2014 Viresh Kumar <viresh.kumar@linaro.org> |
| 8 | * |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 9 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License as published by |
| 12 | * the Free Software Foundation; version 2 of the License. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, but |
| 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 17 | * General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License along |
| 20 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 21 | * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. |
| 22 | * |
| 23 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 24 | */ |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 25 | #include <linux/module.h> |
| 26 | #include <linux/thermal.h> |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 27 | #include <linux/cpufreq.h> |
| 28 | #include <linux/err.h> |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 29 | #include <linux/pm_opp.h> |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 30 | #include <linux/slab.h> |
| 31 | #include <linux/cpu.h> |
| 32 | #include <linux/cpu_cooling.h> |
| 33 | |
Javi Merino | 6828a47 | 2015-03-02 17:17:20 +0000 | [diff] [blame] | 34 | #include <trace/events/thermal.h> |
| 35 | |
Viresh Kumar | 07d888d | 2014-12-04 09:41:49 +0530 | [diff] [blame] | 36 | /* |
| 37 | * Cooling state <-> CPUFreq frequency |
| 38 | * |
| 39 | * Cooling states are translated to frequencies throughout this driver and this |
| 40 | * is the relation between them. |
| 41 | * |
| 42 | * Highest cooling state corresponds to lowest possible frequency. |
| 43 | * |
| 44 | * i.e. |
| 45 | * level 0 --> 1st Max Freq |
| 46 | * level 1 --> 2nd Max Freq |
| 47 | * ... |
| 48 | */ |
| 49 | |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 50 | /** |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 51 | * struct power_table - frequency to power conversion |
| 52 | * @frequency: frequency in KHz |
| 53 | * @power: power in mW |
| 54 | * |
| 55 | * This structure is built when the cooling device registers and helps |
| 56 | * in translating frequency to power and viceversa. |
| 57 | */ |
| 58 | struct power_table { |
| 59 | u32 frequency; |
| 60 | u32 power; |
| 61 | }; |
| 62 | |
| 63 | /** |
Eduardo Valentin | 3b3c074 | 2013-04-17 17:11:56 +0000 | [diff] [blame] | 64 | * struct cpufreq_cooling_device - data for cooling device with cpufreq |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 65 | * @id: unique integer value corresponding to each cpufreq_cooling_device |
| 66 | * registered. |
Eduardo Valentin | 3b3c074 | 2013-04-17 17:11:56 +0000 | [diff] [blame] | 67 | * @cool_dev: thermal_cooling_device pointer to keep track of the |
| 68 | * registered cooling device. |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 69 | * @cpufreq_state: integer value representing the current state of cpufreq |
| 70 | * cooling devices. |
Viresh Kumar | 59f0d21 | 2015-07-30 12:40:33 +0530 | [diff] [blame] | 71 | * @clipped_freq: integer value representing the absolute value of the clipped |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 72 | * frequency. |
Viresh Kumar | dcc6c7f | 2014-12-04 09:42:02 +0530 | [diff] [blame] | 73 | * @max_level: maximum cooling level. One less than total number of valid |
| 74 | * cpufreq frequencies. |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 75 | * @allowed_cpus: all the cpus involved for this cpufreq_cooling_device. |
Javi Merino | fc4de35 | 2014-12-15 16:55:52 +0000 | [diff] [blame] | 76 | * @node: list_head to link all cpufreq_cooling_device together. |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 77 | * @last_load: load measured by the latest call to cpufreq_get_actual_power() |
| 78 | * @time_in_idle: previous reading of the absolute time that this cpu was idle |
| 79 | * @time_in_idle_timestamp: wall time of the last invocation of |
| 80 | * get_cpu_idle_time_us() |
| 81 | * @dyn_power_table: array of struct power_table for frequency to power |
| 82 | * conversion, sorted in ascending order. |
| 83 | * @dyn_power_table_entries: number of entries in the @dyn_power_table array |
| 84 | * @cpu_dev: the first cpu_device from @allowed_cpus that has OPPs registered |
| 85 | * @plat_get_static_power: callback to calculate the static power |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 86 | * |
Viresh Kumar | beca605 | 2014-12-04 09:41:48 +0530 | [diff] [blame] | 87 | * This structure is required for keeping information of each registered |
| 88 | * cpufreq_cooling_device. |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 89 | */ |
| 90 | struct cpufreq_cooling_device { |
| 91 | int id; |
| 92 | struct thermal_cooling_device *cool_dev; |
| 93 | unsigned int cpufreq_state; |
Viresh Kumar | 59f0d21 | 2015-07-30 12:40:33 +0530 | [diff] [blame] | 94 | unsigned int clipped_freq; |
Viresh Kumar | dcc6c7f | 2014-12-04 09:42:02 +0530 | [diff] [blame] | 95 | unsigned int max_level; |
Viresh Kumar | f685901 | 2014-12-04 09:42:06 +0530 | [diff] [blame] | 96 | unsigned int *freq_table; /* In descending order */ |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 97 | struct cpumask allowed_cpus; |
Yadwinder Singh Brar | 2dcd851 | 2014-11-07 19:12:29 +0530 | [diff] [blame] | 98 | struct list_head node; |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 99 | u32 last_load; |
| 100 | u64 *time_in_idle; |
| 101 | u64 *time_in_idle_timestamp; |
| 102 | struct power_table *dyn_power_table; |
| 103 | int dyn_power_table_entries; |
| 104 | struct device *cpu_dev; |
| 105 | get_static_t plat_get_static_power; |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 106 | }; |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 107 | static DEFINE_IDR(cpufreq_idr); |
hongbo.zhang | 160b7d8 | 2012-10-30 17:48:59 +0100 | [diff] [blame] | 108 | static DEFINE_MUTEX(cooling_cpufreq_lock); |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 109 | |
Russell King | 02373d7 | 2015-08-12 15:22:16 +0530 | [diff] [blame] | 110 | static unsigned int cpufreq_dev_count; |
| 111 | |
| 112 | static DEFINE_MUTEX(cooling_list_lock); |
Yadwinder Singh Brar | 2dcd851 | 2014-11-07 19:12:29 +0530 | [diff] [blame] | 113 | static LIST_HEAD(cpufreq_dev_list); |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 114 | |
| 115 | /** |
| 116 | * get_idr - function to get a unique id. |
| 117 | * @idr: struct idr * handle used to create a id. |
| 118 | * @id: int * value generated by this function. |
Eduardo Valentin | 79491e5 | 2013-04-17 17:11:59 +0000 | [diff] [blame] | 119 | * |
| 120 | * This function will populate @id with an unique |
| 121 | * id, using the idr API. |
| 122 | * |
| 123 | * Return: 0 on success, an error code on failure. |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 124 | */ |
| 125 | static int get_idr(struct idr *idr, int *id) |
| 126 | { |
Tejun Heo | 6deb69f | 2013-02-27 17:04:46 -0800 | [diff] [blame] | 127 | int ret; |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 128 | |
| 129 | mutex_lock(&cooling_cpufreq_lock); |
Tejun Heo | 6deb69f | 2013-02-27 17:04:46 -0800 | [diff] [blame] | 130 | ret = idr_alloc(idr, NULL, 0, 0, GFP_KERNEL); |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 131 | mutex_unlock(&cooling_cpufreq_lock); |
Tejun Heo | 6deb69f | 2013-02-27 17:04:46 -0800 | [diff] [blame] | 132 | if (unlikely(ret < 0)) |
| 133 | return ret; |
| 134 | *id = ret; |
Eduardo Valentin | 79491e5 | 2013-04-17 17:11:59 +0000 | [diff] [blame] | 135 | |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 136 | return 0; |
| 137 | } |
| 138 | |
| 139 | /** |
| 140 | * release_idr - function to free the unique id. |
| 141 | * @idr: struct idr * handle used for creating the id. |
| 142 | * @id: int value representing the unique id. |
| 143 | */ |
| 144 | static void release_idr(struct idr *idr, int id) |
| 145 | { |
| 146 | mutex_lock(&cooling_cpufreq_lock); |
| 147 | idr_remove(idr, id); |
| 148 | mutex_unlock(&cooling_cpufreq_lock); |
| 149 | } |
| 150 | |
| 151 | /* Below code defines functions to be used for cpufreq as cooling device */ |
| 152 | |
| 153 | /** |
Viresh Kumar | 4843c4a | 2014-12-04 09:42:07 +0530 | [diff] [blame] | 154 | * get_level: Find the level for a particular frequency |
Viresh Kumar | b9f8b41 | 2014-12-04 09:42:05 +0530 | [diff] [blame] | 155 | * @cpufreq_dev: cpufreq_dev for which the property is required |
Viresh Kumar | 4843c4a | 2014-12-04 09:42:07 +0530 | [diff] [blame] | 156 | * @freq: Frequency |
Eduardo Valentin | 82b9ee4 | 2013-04-17 17:12:00 +0000 | [diff] [blame] | 157 | * |
Viresh Kumar | 4843c4a | 2014-12-04 09:42:07 +0530 | [diff] [blame] | 158 | * Return: level on success, THERMAL_CSTATE_INVALID on error. |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 159 | */ |
Viresh Kumar | 4843c4a | 2014-12-04 09:42:07 +0530 | [diff] [blame] | 160 | static unsigned long get_level(struct cpufreq_cooling_device *cpufreq_dev, |
| 161 | unsigned int freq) |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 162 | { |
Viresh Kumar | 4843c4a | 2014-12-04 09:42:07 +0530 | [diff] [blame] | 163 | unsigned long level; |
Eduardo Valentin | 79491e5 | 2013-04-17 17:11:59 +0000 | [diff] [blame] | 164 | |
Viresh Kumar | 4843c4a | 2014-12-04 09:42:07 +0530 | [diff] [blame] | 165 | for (level = 0; level <= cpufreq_dev->max_level; level++) { |
| 166 | if (freq == cpufreq_dev->freq_table[level]) |
| 167 | return level; |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 168 | |
Viresh Kumar | 4843c4a | 2014-12-04 09:42:07 +0530 | [diff] [blame] | 169 | if (freq > cpufreq_dev->freq_table[level]) |
| 170 | break; |
Zhang Rui | fc35b35 | 2013-02-08 13:09:32 +0800 | [diff] [blame] | 171 | } |
Zhang Rui | a116776 | 2014-01-02 11:57:48 +0800 | [diff] [blame] | 172 | |
Viresh Kumar | 4843c4a | 2014-12-04 09:42:07 +0530 | [diff] [blame] | 173 | return THERMAL_CSTATE_INVALID; |
Zhang Rui | fc35b35 | 2013-02-08 13:09:32 +0800 | [diff] [blame] | 174 | } |
| 175 | |
Eduardo Valentin | 44952d3 | 2013-04-17 17:12:05 +0000 | [diff] [blame] | 176 | /** |
Viresh Kumar | 728c03c | 2014-12-04 09:41:47 +0530 | [diff] [blame] | 177 | * cpufreq_cooling_get_level - for a given cpu, return the cooling level. |
Eduardo Valentin | 44952d3 | 2013-04-17 17:12:05 +0000 | [diff] [blame] | 178 | * @cpu: cpu for which the level is required |
| 179 | * @freq: the frequency of interest |
| 180 | * |
| 181 | * This function will match the cooling level corresponding to the |
| 182 | * requested @freq and return it. |
| 183 | * |
| 184 | * Return: The matched cooling level on success or THERMAL_CSTATE_INVALID |
| 185 | * otherwise. |
| 186 | */ |
Zhang Rui | 57df810 | 2013-02-08 14:52:06 +0800 | [diff] [blame] | 187 | unsigned long cpufreq_cooling_get_level(unsigned int cpu, unsigned int freq) |
| 188 | { |
Viresh Kumar | b9f8b41 | 2014-12-04 09:42:05 +0530 | [diff] [blame] | 189 | struct cpufreq_cooling_device *cpufreq_dev; |
Zhang Rui | 57df810 | 2013-02-08 14:52:06 +0800 | [diff] [blame] | 190 | |
Russell King | 02373d7 | 2015-08-12 15:22:16 +0530 | [diff] [blame] | 191 | mutex_lock(&cooling_list_lock); |
Viresh Kumar | b9f8b41 | 2014-12-04 09:42:05 +0530 | [diff] [blame] | 192 | list_for_each_entry(cpufreq_dev, &cpufreq_dev_list, node) { |
| 193 | if (cpumask_test_cpu(cpu, &cpufreq_dev->allowed_cpus)) { |
Russell King | 02373d7 | 2015-08-12 15:22:16 +0530 | [diff] [blame] | 194 | mutex_unlock(&cooling_list_lock); |
Viresh Kumar | 4843c4a | 2014-12-04 09:42:07 +0530 | [diff] [blame] | 195 | return get_level(cpufreq_dev, freq); |
Viresh Kumar | b9f8b41 | 2014-12-04 09:42:05 +0530 | [diff] [blame] | 196 | } |
| 197 | } |
Russell King | 02373d7 | 2015-08-12 15:22:16 +0530 | [diff] [blame] | 198 | mutex_unlock(&cooling_list_lock); |
Eduardo Valentin | 79491e5 | 2013-04-17 17:11:59 +0000 | [diff] [blame] | 199 | |
Viresh Kumar | b9f8b41 | 2014-12-04 09:42:05 +0530 | [diff] [blame] | 200 | pr_err("%s: cpu:%d not part of any cooling device\n", __func__, cpu); |
| 201 | return THERMAL_CSTATE_INVALID; |
Zhang Rui | 57df810 | 2013-02-08 14:52:06 +0800 | [diff] [blame] | 202 | } |
Eduardo Valentin | 243dbd9 | 2013-04-17 17:11:57 +0000 | [diff] [blame] | 203 | EXPORT_SYMBOL_GPL(cpufreq_cooling_get_level); |
Zhang Rui | 57df810 | 2013-02-08 14:52:06 +0800 | [diff] [blame] | 204 | |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 205 | /** |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 206 | * cpufreq_thermal_notifier - notifier callback for cpufreq policy change. |
| 207 | * @nb: struct notifier_block * with callback info. |
| 208 | * @event: value showing cpufreq event for which this function invoked. |
| 209 | * @data: callback-specific data |
Eduardo Valentin | bab3055 | 2013-04-17 17:12:09 +0000 | [diff] [blame] | 210 | * |
Javi Merino | 9746b6e | 2014-06-25 18:11:17 +0100 | [diff] [blame] | 211 | * Callback to hijack the notification on cpufreq policy transition. |
Eduardo Valentin | bab3055 | 2013-04-17 17:12:09 +0000 | [diff] [blame] | 212 | * Every time there is a change in policy, we will intercept and |
| 213 | * update the cpufreq policy with thermal constraints. |
| 214 | * |
| 215 | * Return: 0 (success) |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 216 | */ |
| 217 | static int cpufreq_thermal_notifier(struct notifier_block *nb, |
Eduardo Valentin | 5fda7f6 | 2013-04-17 17:12:11 +0000 | [diff] [blame] | 218 | unsigned long event, void *data) |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 219 | { |
| 220 | struct cpufreq_policy *policy = data; |
Viresh Kumar | abcbcc2 | 2015-07-30 12:40:34 +0530 | [diff] [blame] | 221 | unsigned long clipped_freq; |
Yadwinder Singh Brar | 2dcd851 | 2014-11-07 19:12:29 +0530 | [diff] [blame] | 222 | struct cpufreq_cooling_device *cpufreq_dev; |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 223 | |
Viresh Kumar | a24af23 | 2015-07-30 12:40:32 +0530 | [diff] [blame] | 224 | if (event != CPUFREQ_ADJUST) |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 225 | return NOTIFY_DONE; |
Viresh Kumar | a24af23 | 2015-07-30 12:40:32 +0530 | [diff] [blame] | 226 | |
| 227 | mutex_lock(&cooling_list_lock); |
| 228 | list_for_each_entry(cpufreq_dev, &cpufreq_dev_list, node) { |
| 229 | if (!cpumask_test_cpu(policy->cpu, &cpufreq_dev->allowed_cpus)) |
| 230 | continue; |
| 231 | |
Viresh Kumar | 1afb9c5 | 2015-07-30 12:40:35 +0530 | [diff] [blame] | 232 | /* |
| 233 | * policy->max is the maximum allowed frequency defined by user |
| 234 | * and clipped_freq is the maximum that thermal constraints |
| 235 | * allow. |
| 236 | * |
| 237 | * If clipped_freq is lower than policy->max, then we need to |
| 238 | * readjust policy->max. |
| 239 | * |
| 240 | * But, if clipped_freq is greater than policy->max, we don't |
| 241 | * need to do anything. |
| 242 | */ |
Viresh Kumar | abcbcc2 | 2015-07-30 12:40:34 +0530 | [diff] [blame] | 243 | clipped_freq = cpufreq_dev->clipped_freq; |
Viresh Kumar | a24af23 | 2015-07-30 12:40:32 +0530 | [diff] [blame] | 244 | |
Viresh Kumar | 1afb9c5 | 2015-07-30 12:40:35 +0530 | [diff] [blame] | 245 | if (policy->max > clipped_freq) |
Viresh Kumar | abcbcc2 | 2015-07-30 12:40:34 +0530 | [diff] [blame] | 246 | cpufreq_verify_within_limits(policy, 0, clipped_freq); |
Viresh Kumar | a24af23 | 2015-07-30 12:40:32 +0530 | [diff] [blame] | 247 | break; |
Yadwinder Singh Brar | 2dcd851 | 2014-11-07 19:12:29 +0530 | [diff] [blame] | 248 | } |
Viresh Kumar | a24af23 | 2015-07-30 12:40:32 +0530 | [diff] [blame] | 249 | mutex_unlock(&cooling_list_lock); |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 250 | |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 251 | return NOTIFY_OK; |
| 252 | } |
| 253 | |
| 254 | /** |
| 255 | * build_dyn_power_table() - create a dynamic power to frequency table |
| 256 | * @cpufreq_device: the cpufreq cooling device in which to store the table |
| 257 | * @capacitance: dynamic power coefficient for these cpus |
| 258 | * |
| 259 | * Build a dynamic power to frequency table for this cpu and store it |
| 260 | * in @cpufreq_device. This table will be used in cpu_power_to_freq() and |
| 261 | * cpu_freq_to_power() to convert between power and frequency |
| 262 | * efficiently. Power is stored in mW, frequency in KHz. The |
| 263 | * resulting table is in ascending order. |
| 264 | * |
Javi Merino | 459ac37 | 2015-08-17 19:21:42 +0100 | [diff] [blame] | 265 | * Return: 0 on success, -EINVAL if there are no OPPs for any CPUs, |
| 266 | * -ENOMEM if we run out of memory or -EAGAIN if an OPP was |
| 267 | * added/enabled while the function was executing. |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 268 | */ |
| 269 | static int build_dyn_power_table(struct cpufreq_cooling_device *cpufreq_device, |
| 270 | u32 capacitance) |
| 271 | { |
| 272 | struct power_table *power_table; |
| 273 | struct dev_pm_opp *opp; |
| 274 | struct device *dev = NULL; |
Javi Merino | eba4f88 | 2015-08-17 19:21:43 +0100 | [diff] [blame] | 275 | int num_opps = 0, cpu, i, ret = 0; |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 276 | unsigned long freq; |
| 277 | |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 278 | for_each_cpu(cpu, &cpufreq_device->allowed_cpus) { |
| 279 | dev = get_cpu_device(cpu); |
| 280 | if (!dev) { |
| 281 | dev_warn(&cpufreq_device->cool_dev->device, |
| 282 | "No cpu device for cpu %d\n", cpu); |
| 283 | continue; |
| 284 | } |
| 285 | |
| 286 | num_opps = dev_pm_opp_get_opp_count(dev); |
Javi Merino | 459ac37 | 2015-08-17 19:21:42 +0100 | [diff] [blame] | 287 | if (num_opps > 0) |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 288 | break; |
Javi Merino | 459ac37 | 2015-08-17 19:21:42 +0100 | [diff] [blame] | 289 | else if (num_opps < 0) |
| 290 | return num_opps; |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 291 | } |
| 292 | |
Javi Merino | 459ac37 | 2015-08-17 19:21:42 +0100 | [diff] [blame] | 293 | if (num_opps == 0) |
| 294 | return -EINVAL; |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 295 | |
| 296 | power_table = kcalloc(num_opps, sizeof(*power_table), GFP_KERNEL); |
Javi Merino | 459ac37 | 2015-08-17 19:21:42 +0100 | [diff] [blame] | 297 | if (!power_table) |
| 298 | return -ENOMEM; |
| 299 | |
| 300 | rcu_read_lock(); |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 301 | |
| 302 | for (freq = 0, i = 0; |
| 303 | opp = dev_pm_opp_find_freq_ceil(dev, &freq), !IS_ERR(opp); |
| 304 | freq++, i++) { |
| 305 | u32 freq_mhz, voltage_mv; |
| 306 | u64 power; |
| 307 | |
Javi Merino | 459ac37 | 2015-08-17 19:21:42 +0100 | [diff] [blame] | 308 | if (i >= num_opps) { |
| 309 | rcu_read_unlock(); |
Javi Merino | eba4f88 | 2015-08-17 19:21:43 +0100 | [diff] [blame] | 310 | ret = -EAGAIN; |
| 311 | goto free_power_table; |
Javi Merino | 459ac37 | 2015-08-17 19:21:42 +0100 | [diff] [blame] | 312 | } |
| 313 | |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 314 | freq_mhz = freq / 1000000; |
| 315 | voltage_mv = dev_pm_opp_get_voltage(opp) / 1000; |
| 316 | |
| 317 | /* |
| 318 | * Do the multiplication with MHz and millivolt so as |
| 319 | * to not overflow. |
| 320 | */ |
| 321 | power = (u64)capacitance * freq_mhz * voltage_mv * voltage_mv; |
| 322 | do_div(power, 1000000000); |
| 323 | |
| 324 | /* frequency is stored in power_table in KHz */ |
| 325 | power_table[i].frequency = freq / 1000; |
| 326 | |
| 327 | /* power is stored in mW */ |
| 328 | power_table[i].power = power; |
| 329 | } |
| 330 | |
Javi Merino | 459ac37 | 2015-08-17 19:21:42 +0100 | [diff] [blame] | 331 | rcu_read_unlock(); |
| 332 | |
Javi Merino | eba4f88 | 2015-08-17 19:21:43 +0100 | [diff] [blame] | 333 | if (i != num_opps) { |
| 334 | ret = PTR_ERR(opp); |
| 335 | goto free_power_table; |
| 336 | } |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 337 | |
| 338 | cpufreq_device->cpu_dev = dev; |
| 339 | cpufreq_device->dyn_power_table = power_table; |
| 340 | cpufreq_device->dyn_power_table_entries = i; |
| 341 | |
Javi Merino | 459ac37 | 2015-08-17 19:21:42 +0100 | [diff] [blame] | 342 | return 0; |
Javi Merino | eba4f88 | 2015-08-17 19:21:43 +0100 | [diff] [blame] | 343 | |
| 344 | free_power_table: |
| 345 | kfree(power_table); |
| 346 | |
| 347 | return ret; |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | static u32 cpu_freq_to_power(struct cpufreq_cooling_device *cpufreq_device, |
| 351 | u32 freq) |
| 352 | { |
| 353 | int i; |
| 354 | struct power_table *pt = cpufreq_device->dyn_power_table; |
| 355 | |
| 356 | for (i = 1; i < cpufreq_device->dyn_power_table_entries; i++) |
| 357 | if (freq < pt[i].frequency) |
| 358 | break; |
| 359 | |
| 360 | return pt[i - 1].power; |
| 361 | } |
| 362 | |
| 363 | static u32 cpu_power_to_freq(struct cpufreq_cooling_device *cpufreq_device, |
| 364 | u32 power) |
| 365 | { |
| 366 | int i; |
| 367 | struct power_table *pt = cpufreq_device->dyn_power_table; |
| 368 | |
| 369 | for (i = 1; i < cpufreq_device->dyn_power_table_entries; i++) |
| 370 | if (power < pt[i].power) |
| 371 | break; |
| 372 | |
| 373 | return pt[i - 1].frequency; |
| 374 | } |
| 375 | |
| 376 | /** |
| 377 | * get_load() - get load for a cpu since last updated |
| 378 | * @cpufreq_device: &struct cpufreq_cooling_device for this cpu |
| 379 | * @cpu: cpu number |
Javi Merino | a53b839 | 2016-02-11 12:00:51 +0000 | [diff] [blame] | 380 | * @cpu_idx: index of the cpu in cpufreq_device->allowed_cpus |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 381 | * |
| 382 | * Return: The average load of cpu @cpu in percentage since this |
| 383 | * function was last called. |
| 384 | */ |
Javi Merino | a53b839 | 2016-02-11 12:00:51 +0000 | [diff] [blame] | 385 | static u32 get_load(struct cpufreq_cooling_device *cpufreq_device, int cpu, |
| 386 | int cpu_idx) |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 387 | { |
| 388 | u32 load; |
| 389 | u64 now, now_idle, delta_time, delta_idle; |
| 390 | |
| 391 | now_idle = get_cpu_idle_time(cpu, &now, 0); |
Javi Merino | a53b839 | 2016-02-11 12:00:51 +0000 | [diff] [blame] | 392 | delta_idle = now_idle - cpufreq_device->time_in_idle[cpu_idx]; |
| 393 | delta_time = now - cpufreq_device->time_in_idle_timestamp[cpu_idx]; |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 394 | |
| 395 | if (delta_time <= delta_idle) |
| 396 | load = 0; |
| 397 | else |
| 398 | load = div64_u64(100 * (delta_time - delta_idle), delta_time); |
| 399 | |
Javi Merino | a53b839 | 2016-02-11 12:00:51 +0000 | [diff] [blame] | 400 | cpufreq_device->time_in_idle[cpu_idx] = now_idle; |
| 401 | cpufreq_device->time_in_idle_timestamp[cpu_idx] = now; |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 402 | |
| 403 | return load; |
| 404 | } |
| 405 | |
| 406 | /** |
| 407 | * get_static_power() - calculate the static power consumed by the cpus |
| 408 | * @cpufreq_device: struct &cpufreq_cooling_device for this cpu cdev |
| 409 | * @tz: thermal zone device in which we're operating |
| 410 | * @freq: frequency in KHz |
| 411 | * @power: pointer in which to store the calculated static power |
| 412 | * |
| 413 | * Calculate the static power consumed by the cpus described by |
| 414 | * @cpu_actor running at frequency @freq. This function relies on a |
| 415 | * platform specific function that should have been provided when the |
| 416 | * actor was registered. If it wasn't, the static power is assumed to |
| 417 | * be negligible. The calculated static power is stored in @power. |
| 418 | * |
| 419 | * Return: 0 on success, -E* on failure. |
| 420 | */ |
| 421 | static int get_static_power(struct cpufreq_cooling_device *cpufreq_device, |
| 422 | struct thermal_zone_device *tz, unsigned long freq, |
| 423 | u32 *power) |
| 424 | { |
| 425 | struct dev_pm_opp *opp; |
| 426 | unsigned long voltage; |
| 427 | struct cpumask *cpumask = &cpufreq_device->allowed_cpus; |
| 428 | unsigned long freq_hz = freq * 1000; |
| 429 | |
| 430 | if (!cpufreq_device->plat_get_static_power || |
| 431 | !cpufreq_device->cpu_dev) { |
| 432 | *power = 0; |
| 433 | return 0; |
| 434 | } |
| 435 | |
| 436 | rcu_read_lock(); |
| 437 | |
| 438 | opp = dev_pm_opp_find_freq_exact(cpufreq_device->cpu_dev, freq_hz, |
| 439 | true); |
| 440 | voltage = dev_pm_opp_get_voltage(opp); |
| 441 | |
| 442 | rcu_read_unlock(); |
| 443 | |
| 444 | if (voltage == 0) { |
| 445 | dev_warn_ratelimited(cpufreq_device->cpu_dev, |
| 446 | "Failed to get voltage for frequency %lu: %ld\n", |
| 447 | freq_hz, IS_ERR(opp) ? PTR_ERR(opp) : 0); |
| 448 | return -EINVAL; |
| 449 | } |
| 450 | |
| 451 | return cpufreq_device->plat_get_static_power(cpumask, tz->passive_delay, |
| 452 | voltage, power); |
| 453 | } |
| 454 | |
| 455 | /** |
| 456 | * get_dynamic_power() - calculate the dynamic power |
| 457 | * @cpufreq_device: &cpufreq_cooling_device for this cdev |
| 458 | * @freq: current frequency |
| 459 | * |
| 460 | * Return: the dynamic power consumed by the cpus described by |
| 461 | * @cpufreq_device. |
| 462 | */ |
| 463 | static u32 get_dynamic_power(struct cpufreq_cooling_device *cpufreq_device, |
| 464 | unsigned long freq) |
| 465 | { |
| 466 | u32 raw_cpu_power; |
| 467 | |
| 468 | raw_cpu_power = cpu_freq_to_power(cpufreq_device, freq); |
| 469 | return (raw_cpu_power * cpufreq_device->last_load) / 100; |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 470 | } |
| 471 | |
Eduardo Valentin | 1b9e352 | 2013-04-17 17:12:02 +0000 | [diff] [blame] | 472 | /* cpufreq cooling device callback functions are defined below */ |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 473 | |
| 474 | /** |
| 475 | * cpufreq_get_max_state - callback function to get the max cooling state. |
| 476 | * @cdev: thermal cooling device pointer. |
| 477 | * @state: fill this variable with the max cooling state. |
Eduardo Valentin | 62c0042 | 2013-04-17 17:12:12 +0000 | [diff] [blame] | 478 | * |
| 479 | * Callback for the thermal cooling device to return the cpufreq |
| 480 | * max cooling state. |
| 481 | * |
| 482 | * Return: 0 on success, an error code otherwise. |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 483 | */ |
| 484 | static int cpufreq_get_max_state(struct thermal_cooling_device *cdev, |
| 485 | unsigned long *state) |
| 486 | { |
hongbo.zhang | 160b7d8 | 2012-10-30 17:48:59 +0100 | [diff] [blame] | 487 | struct cpufreq_cooling_device *cpufreq_device = cdev->devdata; |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 488 | |
Viresh Kumar | dcc6c7f | 2014-12-04 09:42:02 +0530 | [diff] [blame] | 489 | *state = cpufreq_device->max_level; |
| 490 | return 0; |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 491 | } |
| 492 | |
| 493 | /** |
| 494 | * cpufreq_get_cur_state - callback function to get the current cooling state. |
| 495 | * @cdev: thermal cooling device pointer. |
| 496 | * @state: fill this variable with the current cooling state. |
Eduardo Valentin | 3672552 | 2013-04-17 17:12:13 +0000 | [diff] [blame] | 497 | * |
| 498 | * Callback for the thermal cooling device to return the cpufreq |
| 499 | * current cooling state. |
| 500 | * |
| 501 | * Return: 0 on success, an error code otherwise. |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 502 | */ |
| 503 | static int cpufreq_get_cur_state(struct thermal_cooling_device *cdev, |
| 504 | unsigned long *state) |
| 505 | { |
hongbo.zhang | 160b7d8 | 2012-10-30 17:48:59 +0100 | [diff] [blame] | 506 | struct cpufreq_cooling_device *cpufreq_device = cdev->devdata; |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 507 | |
hongbo.zhang | 160b7d8 | 2012-10-30 17:48:59 +0100 | [diff] [blame] | 508 | *state = cpufreq_device->cpufreq_state; |
Eduardo Valentin | 79491e5 | 2013-04-17 17:11:59 +0000 | [diff] [blame] | 509 | |
hongbo.zhang | 160b7d8 | 2012-10-30 17:48:59 +0100 | [diff] [blame] | 510 | return 0; |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 511 | } |
| 512 | |
| 513 | /** |
| 514 | * cpufreq_set_cur_state - callback function to set the current cooling state. |
| 515 | * @cdev: thermal cooling device pointer. |
| 516 | * @state: set this variable to the current cooling state. |
Eduardo Valentin | 56e05fdb | 2013-04-17 17:12:14 +0000 | [diff] [blame] | 517 | * |
| 518 | * Callback for the thermal cooling device to change the cpufreq |
| 519 | * current cooling state. |
| 520 | * |
| 521 | * Return: 0 on success, an error code otherwise. |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 522 | */ |
| 523 | static int cpufreq_set_cur_state(struct thermal_cooling_device *cdev, |
| 524 | unsigned long state) |
| 525 | { |
hongbo.zhang | 160b7d8 | 2012-10-30 17:48:59 +0100 | [diff] [blame] | 526 | struct cpufreq_cooling_device *cpufreq_device = cdev->devdata; |
Viresh Kumar | 5194fe4 | 2014-12-04 09:42:00 +0530 | [diff] [blame] | 527 | unsigned int cpu = cpumask_any(&cpufreq_device->allowed_cpus); |
| 528 | unsigned int clip_freq; |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 529 | |
Viresh Kumar | 4843c4a | 2014-12-04 09:42:07 +0530 | [diff] [blame] | 530 | /* Request state should be less than max_level */ |
| 531 | if (WARN_ON(state > cpufreq_device->max_level)) |
| 532 | return -EINVAL; |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 533 | |
Viresh Kumar | 5194fe4 | 2014-12-04 09:42:00 +0530 | [diff] [blame] | 534 | /* Check if the old cooling action is same as new cooling action */ |
| 535 | if (cpufreq_device->cpufreq_state == state) |
| 536 | return 0; |
| 537 | |
Viresh Kumar | 4843c4a | 2014-12-04 09:42:07 +0530 | [diff] [blame] | 538 | clip_freq = cpufreq_device->freq_table[state]; |
Viresh Kumar | 5194fe4 | 2014-12-04 09:42:00 +0530 | [diff] [blame] | 539 | cpufreq_device->cpufreq_state = state; |
Viresh Kumar | 59f0d21 | 2015-07-30 12:40:33 +0530 | [diff] [blame] | 540 | cpufreq_device->clipped_freq = clip_freq; |
Viresh Kumar | 5194fe4 | 2014-12-04 09:42:00 +0530 | [diff] [blame] | 541 | |
| 542 | cpufreq_update_policy(cpu); |
| 543 | |
| 544 | return 0; |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 545 | } |
| 546 | |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 547 | /** |
| 548 | * cpufreq_get_requested_power() - get the current power |
| 549 | * @cdev: &thermal_cooling_device pointer |
| 550 | * @tz: a valid thermal zone device pointer |
| 551 | * @power: pointer in which to store the resulting power |
| 552 | * |
| 553 | * Calculate the current power consumption of the cpus in milliwatts |
| 554 | * and store it in @power. This function should actually calculate |
| 555 | * the requested power, but it's hard to get the frequency that |
| 556 | * cpufreq would have assigned if there were no thermal limits. |
| 557 | * Instead, we calculate the current power on the assumption that the |
| 558 | * immediate future will look like the immediate past. |
| 559 | * |
| 560 | * We use the current frequency and the average load since this |
| 561 | * function was last called. In reality, there could have been |
| 562 | * multiple opps since this function was last called and that affects |
| 563 | * the load calculation. While it's not perfectly accurate, this |
| 564 | * simplification is good enough and works. REVISIT this, as more |
| 565 | * complex code may be needed if experiments show that it's not |
| 566 | * accurate enough. |
| 567 | * |
| 568 | * Return: 0 on success, -E* if getting the static power failed. |
| 569 | */ |
| 570 | static int cpufreq_get_requested_power(struct thermal_cooling_device *cdev, |
| 571 | struct thermal_zone_device *tz, |
| 572 | u32 *power) |
| 573 | { |
| 574 | unsigned long freq; |
Javi Merino | 6828a47 | 2015-03-02 17:17:20 +0000 | [diff] [blame] | 575 | int i = 0, cpu, ret; |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 576 | u32 static_power, dynamic_power, total_load = 0; |
| 577 | struct cpufreq_cooling_device *cpufreq_device = cdev->devdata; |
Javi Merino | 6828a47 | 2015-03-02 17:17:20 +0000 | [diff] [blame] | 578 | u32 *load_cpu = NULL; |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 579 | |
Kapileshwar Singh | dd658e0 | 2015-03-16 12:00:51 +0000 | [diff] [blame] | 580 | cpu = cpumask_any_and(&cpufreq_device->allowed_cpus, cpu_online_mask); |
| 581 | |
| 582 | /* |
| 583 | * All the CPUs are offline, thus the requested power by |
| 584 | * the cdev is 0 |
| 585 | */ |
| 586 | if (cpu >= nr_cpu_ids) { |
| 587 | *power = 0; |
| 588 | return 0; |
| 589 | } |
| 590 | |
| 591 | freq = cpufreq_quick_get(cpu); |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 592 | |
Javi Merino | 6828a47 | 2015-03-02 17:17:20 +0000 | [diff] [blame] | 593 | if (trace_thermal_power_cpu_get_power_enabled()) { |
| 594 | u32 ncpus = cpumask_weight(&cpufreq_device->allowed_cpus); |
| 595 | |
Vaishali Thakkar | a71544c | 2015-08-19 11:52:19 +0530 | [diff] [blame] | 596 | load_cpu = kcalloc(ncpus, sizeof(*load_cpu), GFP_KERNEL); |
Javi Merino | 6828a47 | 2015-03-02 17:17:20 +0000 | [diff] [blame] | 597 | } |
| 598 | |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 599 | for_each_cpu(cpu, &cpufreq_device->allowed_cpus) { |
| 600 | u32 load; |
| 601 | |
| 602 | if (cpu_online(cpu)) |
Javi Merino | a53b839 | 2016-02-11 12:00:51 +0000 | [diff] [blame] | 603 | load = get_load(cpufreq_device, cpu, i); |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 604 | else |
| 605 | load = 0; |
| 606 | |
| 607 | total_load += load; |
Javi Merino | 6828a47 | 2015-03-02 17:17:20 +0000 | [diff] [blame] | 608 | if (trace_thermal_power_cpu_limit_enabled() && load_cpu) |
| 609 | load_cpu[i] = load; |
| 610 | |
| 611 | i++; |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 612 | } |
| 613 | |
| 614 | cpufreq_device->last_load = total_load; |
| 615 | |
| 616 | dynamic_power = get_dynamic_power(cpufreq_device, freq); |
| 617 | ret = get_static_power(cpufreq_device, tz, freq, &static_power); |
Javi Merino | 6828a47 | 2015-03-02 17:17:20 +0000 | [diff] [blame] | 618 | if (ret) { |
Vaishali Thakkar | a71544c | 2015-08-19 11:52:19 +0530 | [diff] [blame] | 619 | kfree(load_cpu); |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 620 | return ret; |
Javi Merino | 6828a47 | 2015-03-02 17:17:20 +0000 | [diff] [blame] | 621 | } |
| 622 | |
| 623 | if (load_cpu) { |
| 624 | trace_thermal_power_cpu_get_power( |
| 625 | &cpufreq_device->allowed_cpus, |
| 626 | freq, load_cpu, i, dynamic_power, static_power); |
| 627 | |
Vaishali Thakkar | a71544c | 2015-08-19 11:52:19 +0530 | [diff] [blame] | 628 | kfree(load_cpu); |
Javi Merino | 6828a47 | 2015-03-02 17:17:20 +0000 | [diff] [blame] | 629 | } |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 630 | |
| 631 | *power = static_power + dynamic_power; |
| 632 | return 0; |
| 633 | } |
| 634 | |
| 635 | /** |
| 636 | * cpufreq_state2power() - convert a cpu cdev state to power consumed |
| 637 | * @cdev: &thermal_cooling_device pointer |
| 638 | * @tz: a valid thermal zone device pointer |
| 639 | * @state: cooling device state to be converted |
| 640 | * @power: pointer in which to store the resulting power |
| 641 | * |
| 642 | * Convert cooling device state @state into power consumption in |
| 643 | * milliwatts assuming 100% load. Store the calculated power in |
| 644 | * @power. |
| 645 | * |
| 646 | * Return: 0 on success, -EINVAL if the cooling device state could not |
| 647 | * be converted into a frequency or other -E* if there was an error |
| 648 | * when calculating the static power. |
| 649 | */ |
| 650 | static int cpufreq_state2power(struct thermal_cooling_device *cdev, |
| 651 | struct thermal_zone_device *tz, |
| 652 | unsigned long state, u32 *power) |
| 653 | { |
| 654 | unsigned int freq, num_cpus; |
| 655 | cpumask_t cpumask; |
| 656 | u32 static_power, dynamic_power; |
| 657 | int ret; |
| 658 | struct cpufreq_cooling_device *cpufreq_device = cdev->devdata; |
| 659 | |
| 660 | cpumask_and(&cpumask, &cpufreq_device->allowed_cpus, cpu_online_mask); |
| 661 | num_cpus = cpumask_weight(&cpumask); |
| 662 | |
| 663 | /* None of our cpus are online, so no power */ |
| 664 | if (num_cpus == 0) { |
| 665 | *power = 0; |
| 666 | return 0; |
| 667 | } |
| 668 | |
| 669 | freq = cpufreq_device->freq_table[state]; |
| 670 | if (!freq) |
| 671 | return -EINVAL; |
| 672 | |
| 673 | dynamic_power = cpu_freq_to_power(cpufreq_device, freq) * num_cpus; |
| 674 | ret = get_static_power(cpufreq_device, tz, freq, &static_power); |
| 675 | if (ret) |
| 676 | return ret; |
| 677 | |
| 678 | *power = static_power + dynamic_power; |
| 679 | return 0; |
| 680 | } |
| 681 | |
| 682 | /** |
| 683 | * cpufreq_power2state() - convert power to a cooling device state |
| 684 | * @cdev: &thermal_cooling_device pointer |
| 685 | * @tz: a valid thermal zone device pointer |
| 686 | * @power: power in milliwatts to be converted |
| 687 | * @state: pointer in which to store the resulting state |
| 688 | * |
| 689 | * Calculate a cooling device state for the cpus described by @cdev |
| 690 | * that would allow them to consume at most @power mW and store it in |
| 691 | * @state. Note that this calculation depends on external factors |
| 692 | * such as the cpu load or the current static power. Calling this |
| 693 | * function with the same power as input can yield different cooling |
| 694 | * device states depending on those external factors. |
| 695 | * |
| 696 | * Return: 0 on success, -ENODEV if no cpus are online or -EINVAL if |
| 697 | * the calculated frequency could not be converted to a valid state. |
| 698 | * The latter should not happen unless the frequencies available to |
| 699 | * cpufreq have changed since the initialization of the cpu cooling |
| 700 | * device. |
| 701 | */ |
| 702 | static int cpufreq_power2state(struct thermal_cooling_device *cdev, |
| 703 | struct thermal_zone_device *tz, u32 power, |
| 704 | unsigned long *state) |
| 705 | { |
| 706 | unsigned int cpu, cur_freq, target_freq; |
| 707 | int ret; |
| 708 | s32 dyn_power; |
| 709 | u32 last_load, normalised_power, static_power; |
| 710 | struct cpufreq_cooling_device *cpufreq_device = cdev->devdata; |
| 711 | |
| 712 | cpu = cpumask_any_and(&cpufreq_device->allowed_cpus, cpu_online_mask); |
| 713 | |
| 714 | /* None of our cpus are online */ |
| 715 | if (cpu >= nr_cpu_ids) |
| 716 | return -ENODEV; |
| 717 | |
| 718 | cur_freq = cpufreq_quick_get(cpu); |
| 719 | ret = get_static_power(cpufreq_device, tz, cur_freq, &static_power); |
| 720 | if (ret) |
| 721 | return ret; |
| 722 | |
| 723 | dyn_power = power - static_power; |
| 724 | dyn_power = dyn_power > 0 ? dyn_power : 0; |
| 725 | last_load = cpufreq_device->last_load ?: 1; |
| 726 | normalised_power = (dyn_power * 100) / last_load; |
| 727 | target_freq = cpu_power_to_freq(cpufreq_device, normalised_power); |
| 728 | |
| 729 | *state = cpufreq_cooling_get_level(cpu, target_freq); |
| 730 | if (*state == THERMAL_CSTATE_INVALID) { |
| 731 | dev_warn_ratelimited(&cdev->device, |
| 732 | "Failed to convert %dKHz for cpu %d into a cdev state\n", |
| 733 | target_freq, cpu); |
| 734 | return -EINVAL; |
| 735 | } |
| 736 | |
Javi Merino | 6828a47 | 2015-03-02 17:17:20 +0000 | [diff] [blame] | 737 | trace_thermal_power_cpu_limit(&cpufreq_device->allowed_cpus, |
| 738 | target_freq, *state, power); |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 739 | return 0; |
| 740 | } |
| 741 | |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 742 | /* Bind cpufreq callbacks to thermal cooling device ops */ |
Brendan Jackman | a305a43 | 2016-08-17 16:14:59 +0100 | [diff] [blame] | 743 | |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 744 | static struct thermal_cooling_device_ops cpufreq_cooling_ops = { |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 745 | .get_max_state = cpufreq_get_max_state, |
| 746 | .get_cur_state = cpufreq_get_cur_state, |
| 747 | .set_cur_state = cpufreq_set_cur_state, |
| 748 | }; |
| 749 | |
Brendan Jackman | a305a43 | 2016-08-17 16:14:59 +0100 | [diff] [blame] | 750 | static struct thermal_cooling_device_ops cpufreq_power_cooling_ops = { |
| 751 | .get_max_state = cpufreq_get_max_state, |
| 752 | .get_cur_state = cpufreq_get_cur_state, |
| 753 | .set_cur_state = cpufreq_set_cur_state, |
| 754 | .get_requested_power = cpufreq_get_requested_power, |
| 755 | .state2power = cpufreq_state2power, |
| 756 | .power2state = cpufreq_power2state, |
| 757 | }; |
| 758 | |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 759 | /* Notifier for cpufreq policy change */ |
| 760 | static struct notifier_block thermal_cpufreq_notifier_block = { |
| 761 | .notifier_call = cpufreq_thermal_notifier, |
| 762 | }; |
| 763 | |
Viresh Kumar | f685901 | 2014-12-04 09:42:06 +0530 | [diff] [blame] | 764 | static unsigned int find_next_max(struct cpufreq_frequency_table *table, |
| 765 | unsigned int prev_max) |
| 766 | { |
| 767 | struct cpufreq_frequency_table *pos; |
| 768 | unsigned int max = 0; |
| 769 | |
| 770 | cpufreq_for_each_valid_entry(pos, table) { |
| 771 | if (pos->frequency > max && pos->frequency < prev_max) |
| 772 | max = pos->frequency; |
| 773 | } |
| 774 | |
| 775 | return max; |
| 776 | } |
| 777 | |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 778 | /** |
Eduardo Valentin | 39d99cf | 2013-09-12 19:26:45 -0400 | [diff] [blame] | 779 | * __cpufreq_cooling_register - helper function to create cpufreq cooling device |
| 780 | * @np: a valid struct device_node to the cooling device device tree node |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 781 | * @clip_cpus: cpumask of cpus where the frequency constraints will happen. |
Viresh Kumar | 405fb82 | 2014-12-04 09:41:55 +0530 | [diff] [blame] | 782 | * Normally this should be same as cpufreq policy->related_cpus. |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 783 | * @capacitance: dynamic power coefficient for these cpus |
| 784 | * @plat_static_func: function to calculate the static power consumed by these |
| 785 | * cpus (optional) |
Eduardo Valentin | 12cb08b | 2013-04-17 17:12:15 +0000 | [diff] [blame] | 786 | * |
| 787 | * This interface function registers the cpufreq cooling device with the name |
| 788 | * "thermal-cpufreq-%x". This api can support multiple instances of cpufreq |
Eduardo Valentin | 39d99cf | 2013-09-12 19:26:45 -0400 | [diff] [blame] | 789 | * cooling devices. It also gives the opportunity to link the cooling device |
| 790 | * with a device tree node, in order to bind it via the thermal DT code. |
Eduardo Valentin | 12cb08b | 2013-04-17 17:12:15 +0000 | [diff] [blame] | 791 | * |
| 792 | * Return: a valid struct thermal_cooling_device pointer on success, |
| 793 | * on failure, it returns a corresponding ERR_PTR(). |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 794 | */ |
Eduardo Valentin | 39d99cf | 2013-09-12 19:26:45 -0400 | [diff] [blame] | 795 | static struct thermal_cooling_device * |
| 796 | __cpufreq_cooling_register(struct device_node *np, |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 797 | const struct cpumask *clip_cpus, u32 capacitance, |
| 798 | get_static_t plat_static_func) |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 799 | { |
Viresh Kumar | f8bfc11 | 2016-06-03 10:58:47 +0530 | [diff] [blame] | 800 | struct cpufreq_policy *policy; |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 801 | struct thermal_cooling_device *cool_dev; |
Viresh Kumar | 5d3bdb8 | 2014-12-04 09:41:52 +0530 | [diff] [blame] | 802 | struct cpufreq_cooling_device *cpufreq_dev; |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 803 | char dev_name[THERMAL_NAME_LENGTH]; |
Viresh Kumar | dcc6c7f | 2014-12-04 09:42:02 +0530 | [diff] [blame] | 804 | struct cpufreq_frequency_table *pos, *table; |
Viresh Kumar | f8bfc11 | 2016-06-03 10:58:47 +0530 | [diff] [blame] | 805 | struct cpumask temp_mask; |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 806 | unsigned int freq, i, num_cpus; |
Viresh Kumar | 405fb82 | 2014-12-04 09:41:55 +0530 | [diff] [blame] | 807 | int ret; |
Brendan Jackman | a305a43 | 2016-08-17 16:14:59 +0100 | [diff] [blame] | 808 | struct thermal_cooling_device_ops *cooling_ops; |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 809 | |
Viresh Kumar | f8bfc11 | 2016-06-03 10:58:47 +0530 | [diff] [blame] | 810 | cpumask_and(&temp_mask, clip_cpus, cpu_online_mask); |
| 811 | policy = cpufreq_cpu_get(cpumask_first(&temp_mask)); |
| 812 | if (!policy) { |
| 813 | pr_debug("%s: CPUFreq policy not found\n", __func__); |
Eduardo Valentin | 0f1be51 | 2014-12-04 09:41:43 +0530 | [diff] [blame] | 814 | return ERR_PTR(-EPROBE_DEFER); |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 815 | } |
Eduardo Valentin | 0f1be51 | 2014-12-04 09:41:43 +0530 | [diff] [blame] | 816 | |
Viresh Kumar | f8bfc11 | 2016-06-03 10:58:47 +0530 | [diff] [blame] | 817 | table = policy->freq_table; |
| 818 | if (!table) { |
| 819 | pr_debug("%s: CPUFreq table not found\n", __func__); |
| 820 | cool_dev = ERR_PTR(-ENODEV); |
| 821 | goto put_policy; |
| 822 | } |
| 823 | |
Viresh Kumar | 98d522f | 2014-12-04 09:41:50 +0530 | [diff] [blame] | 824 | cpufreq_dev = kzalloc(sizeof(*cpufreq_dev), GFP_KERNEL); |
Viresh Kumar | f8bfc11 | 2016-06-03 10:58:47 +0530 | [diff] [blame] | 825 | if (!cpufreq_dev) { |
| 826 | cool_dev = ERR_PTR(-ENOMEM); |
| 827 | goto put_policy; |
| 828 | } |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 829 | |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 830 | num_cpus = cpumask_weight(clip_cpus); |
| 831 | cpufreq_dev->time_in_idle = kcalloc(num_cpus, |
| 832 | sizeof(*cpufreq_dev->time_in_idle), |
| 833 | GFP_KERNEL); |
| 834 | if (!cpufreq_dev->time_in_idle) { |
| 835 | cool_dev = ERR_PTR(-ENOMEM); |
| 836 | goto free_cdev; |
| 837 | } |
| 838 | |
| 839 | cpufreq_dev->time_in_idle_timestamp = |
| 840 | kcalloc(num_cpus, sizeof(*cpufreq_dev->time_in_idle_timestamp), |
| 841 | GFP_KERNEL); |
| 842 | if (!cpufreq_dev->time_in_idle_timestamp) { |
| 843 | cool_dev = ERR_PTR(-ENOMEM); |
| 844 | goto free_time_in_idle; |
| 845 | } |
| 846 | |
Viresh Kumar | dcc6c7f | 2014-12-04 09:42:02 +0530 | [diff] [blame] | 847 | /* Find max levels */ |
| 848 | cpufreq_for_each_valid_entry(pos, table) |
| 849 | cpufreq_dev->max_level++; |
| 850 | |
Viresh Kumar | f685901 | 2014-12-04 09:42:06 +0530 | [diff] [blame] | 851 | cpufreq_dev->freq_table = kmalloc(sizeof(*cpufreq_dev->freq_table) * |
| 852 | cpufreq_dev->max_level, GFP_KERNEL); |
| 853 | if (!cpufreq_dev->freq_table) { |
Viresh Kumar | f685901 | 2014-12-04 09:42:06 +0530 | [diff] [blame] | 854 | cool_dev = ERR_PTR(-ENOMEM); |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 855 | goto free_time_in_idle_timestamp; |
Viresh Kumar | f685901 | 2014-12-04 09:42:06 +0530 | [diff] [blame] | 856 | } |
| 857 | |
Viresh Kumar | dcc6c7f | 2014-12-04 09:42:02 +0530 | [diff] [blame] | 858 | /* max_level is an index, not a counter */ |
| 859 | cpufreq_dev->max_level--; |
| 860 | |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 861 | cpumask_copy(&cpufreq_dev->allowed_cpus, clip_cpus); |
| 862 | |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 863 | if (capacitance) { |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 864 | cpufreq_dev->plat_get_static_power = plat_static_func; |
| 865 | |
| 866 | ret = build_dyn_power_table(cpufreq_dev, capacitance); |
| 867 | if (ret) { |
| 868 | cool_dev = ERR_PTR(ret); |
| 869 | goto free_table; |
| 870 | } |
Brendan Jackman | a305a43 | 2016-08-17 16:14:59 +0100 | [diff] [blame] | 871 | |
| 872 | cooling_ops = &cpufreq_power_cooling_ops; |
| 873 | } else { |
| 874 | cooling_ops = &cpufreq_cooling_ops; |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 875 | } |
| 876 | |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 877 | ret = get_idr(&cpufreq_idr, &cpufreq_dev->id); |
| 878 | if (ret) { |
Viresh Kumar | 730abe0 | 2014-12-04 09:41:58 +0530 | [diff] [blame] | 879 | cool_dev = ERR_PTR(ret); |
Javi Merino | eba4f88 | 2015-08-17 19:21:43 +0100 | [diff] [blame] | 880 | goto free_power_table; |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 881 | } |
| 882 | |
Viresh Kumar | f685901 | 2014-12-04 09:42:06 +0530 | [diff] [blame] | 883 | /* Fill freq-table in descending order of frequencies */ |
| 884 | for (i = 0, freq = -1; i <= cpufreq_dev->max_level; i++) { |
| 885 | freq = find_next_max(table, freq); |
| 886 | cpufreq_dev->freq_table[i] = freq; |
| 887 | |
| 888 | /* Warn for duplicate entries */ |
| 889 | if (!freq) |
| 890 | pr_warn("%s: table has duplicate entries\n", __func__); |
| 891 | else |
| 892 | pr_debug("%s: freq:%u KHz\n", __func__, freq); |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 893 | } |
Viresh Kumar | f685901 | 2014-12-04 09:42:06 +0530 | [diff] [blame] | 894 | |
Lukasz Luba | f840ab1 | 2016-05-31 11:32:02 +0100 | [diff] [blame] | 895 | snprintf(dev_name, sizeof(dev_name), "thermal-cpufreq-%d", |
| 896 | cpufreq_dev->id); |
| 897 | |
| 898 | cool_dev = thermal_of_cooling_device_register(np, dev_name, cpufreq_dev, |
Brendan Jackman | a305a43 | 2016-08-17 16:14:59 +0100 | [diff] [blame] | 899 | cooling_ops); |
Lukasz Luba | f840ab1 | 2016-05-31 11:32:02 +0100 | [diff] [blame] | 900 | if (IS_ERR(cool_dev)) |
| 901 | goto remove_idr; |
| 902 | |
Viresh Kumar | 59f0d21 | 2015-07-30 12:40:33 +0530 | [diff] [blame] | 903 | cpufreq_dev->clipped_freq = cpufreq_dev->freq_table[0]; |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 904 | cpufreq_dev->cool_dev = cool_dev; |
Viresh Kumar | 92e615e | 2014-12-04 09:41:51 +0530 | [diff] [blame] | 905 | |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 906 | mutex_lock(&cooling_cpufreq_lock); |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 907 | |
Russell King | 02373d7 | 2015-08-12 15:22:16 +0530 | [diff] [blame] | 908 | mutex_lock(&cooling_list_lock); |
| 909 | list_add(&cpufreq_dev->node, &cpufreq_dev_list); |
| 910 | mutex_unlock(&cooling_list_lock); |
| 911 | |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 912 | /* Register the notifier for first cpufreq cooling device */ |
Russell King | 02373d7 | 2015-08-12 15:22:16 +0530 | [diff] [blame] | 913 | if (!cpufreq_dev_count++) |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 914 | cpufreq_register_notifier(&thermal_cpufreq_notifier_block, |
Eduardo Valentin | 5fda7f6 | 2013-04-17 17:12:11 +0000 | [diff] [blame] | 915 | CPUFREQ_POLICY_NOTIFIER); |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 916 | mutex_unlock(&cooling_cpufreq_lock); |
Eduardo Valentin | 79491e5 | 2013-04-17 17:11:59 +0000 | [diff] [blame] | 917 | |
Viresh Kumar | f8bfc11 | 2016-06-03 10:58:47 +0530 | [diff] [blame] | 918 | goto put_policy; |
Viresh Kumar | 730abe0 | 2014-12-04 09:41:58 +0530 | [diff] [blame] | 919 | |
| 920 | remove_idr: |
| 921 | release_idr(&cpufreq_idr, cpufreq_dev->id); |
Javi Merino | eba4f88 | 2015-08-17 19:21:43 +0100 | [diff] [blame] | 922 | free_power_table: |
| 923 | kfree(cpufreq_dev->dyn_power_table); |
Viresh Kumar | f685901 | 2014-12-04 09:42:06 +0530 | [diff] [blame] | 924 | free_table: |
| 925 | kfree(cpufreq_dev->freq_table); |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 926 | free_time_in_idle_timestamp: |
| 927 | kfree(cpufreq_dev->time_in_idle_timestamp); |
| 928 | free_time_in_idle: |
| 929 | kfree(cpufreq_dev->time_in_idle); |
Viresh Kumar | 730abe0 | 2014-12-04 09:41:58 +0530 | [diff] [blame] | 930 | free_cdev: |
| 931 | kfree(cpufreq_dev); |
Viresh Kumar | f8bfc11 | 2016-06-03 10:58:47 +0530 | [diff] [blame] | 932 | put_policy: |
| 933 | cpufreq_cpu_put(policy); |
Viresh Kumar | 730abe0 | 2014-12-04 09:41:58 +0530 | [diff] [blame] | 934 | |
| 935 | return cool_dev; |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 936 | } |
Eduardo Valentin | 39d99cf | 2013-09-12 19:26:45 -0400 | [diff] [blame] | 937 | |
| 938 | /** |
| 939 | * cpufreq_cooling_register - function to create cpufreq cooling device. |
| 940 | * @clip_cpus: cpumask of cpus where the frequency constraints will happen. |
| 941 | * |
| 942 | * This interface function registers the cpufreq cooling device with the name |
| 943 | * "thermal-cpufreq-%x". This api can support multiple instances of cpufreq |
| 944 | * cooling devices. |
| 945 | * |
| 946 | * Return: a valid struct thermal_cooling_device pointer on success, |
| 947 | * on failure, it returns a corresponding ERR_PTR(). |
| 948 | */ |
| 949 | struct thermal_cooling_device * |
| 950 | cpufreq_cooling_register(const struct cpumask *clip_cpus) |
| 951 | { |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 952 | return __cpufreq_cooling_register(NULL, clip_cpus, 0, NULL); |
Eduardo Valentin | 39d99cf | 2013-09-12 19:26:45 -0400 | [diff] [blame] | 953 | } |
Eduardo Valentin | 243dbd9 | 2013-04-17 17:11:57 +0000 | [diff] [blame] | 954 | EXPORT_SYMBOL_GPL(cpufreq_cooling_register); |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 955 | |
| 956 | /** |
Eduardo Valentin | 39d99cf | 2013-09-12 19:26:45 -0400 | [diff] [blame] | 957 | * of_cpufreq_cooling_register - function to create cpufreq cooling device. |
| 958 | * @np: a valid struct device_node to the cooling device device tree node |
| 959 | * @clip_cpus: cpumask of cpus where the frequency constraints will happen. |
| 960 | * |
| 961 | * This interface function registers the cpufreq cooling device with the name |
| 962 | * "thermal-cpufreq-%x". This api can support multiple instances of cpufreq |
| 963 | * cooling devices. Using this API, the cpufreq cooling device will be |
| 964 | * linked to the device tree node provided. |
| 965 | * |
| 966 | * Return: a valid struct thermal_cooling_device pointer on success, |
| 967 | * on failure, it returns a corresponding ERR_PTR(). |
| 968 | */ |
| 969 | struct thermal_cooling_device * |
| 970 | of_cpufreq_cooling_register(struct device_node *np, |
| 971 | const struct cpumask *clip_cpus) |
| 972 | { |
| 973 | if (!np) |
| 974 | return ERR_PTR(-EINVAL); |
| 975 | |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 976 | return __cpufreq_cooling_register(np, clip_cpus, 0, NULL); |
Eduardo Valentin | 39d99cf | 2013-09-12 19:26:45 -0400 | [diff] [blame] | 977 | } |
| 978 | EXPORT_SYMBOL_GPL(of_cpufreq_cooling_register); |
| 979 | |
| 980 | /** |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 981 | * cpufreq_power_cooling_register() - create cpufreq cooling device with power extensions |
| 982 | * @clip_cpus: cpumask of cpus where the frequency constraints will happen |
| 983 | * @capacitance: dynamic power coefficient for these cpus |
| 984 | * @plat_static_func: function to calculate the static power consumed by these |
| 985 | * cpus (optional) |
| 986 | * |
| 987 | * This interface function registers the cpufreq cooling device with |
| 988 | * the name "thermal-cpufreq-%x". This api can support multiple |
| 989 | * instances of cpufreq cooling devices. Using this function, the |
| 990 | * cooling device will implement the power extensions by using a |
| 991 | * simple cpu power model. The cpus must have registered their OPPs |
| 992 | * using the OPP library. |
| 993 | * |
| 994 | * An optional @plat_static_func may be provided to calculate the |
| 995 | * static power consumed by these cpus. If the platform's static |
| 996 | * power consumption is unknown or negligible, make it NULL. |
| 997 | * |
| 998 | * Return: a valid struct thermal_cooling_device pointer on success, |
| 999 | * on failure, it returns a corresponding ERR_PTR(). |
| 1000 | */ |
| 1001 | struct thermal_cooling_device * |
| 1002 | cpufreq_power_cooling_register(const struct cpumask *clip_cpus, u32 capacitance, |
| 1003 | get_static_t plat_static_func) |
| 1004 | { |
| 1005 | return __cpufreq_cooling_register(NULL, clip_cpus, capacitance, |
| 1006 | plat_static_func); |
| 1007 | } |
| 1008 | EXPORT_SYMBOL(cpufreq_power_cooling_register); |
| 1009 | |
| 1010 | /** |
| 1011 | * of_cpufreq_power_cooling_register() - create cpufreq cooling device with power extensions |
| 1012 | * @np: a valid struct device_node to the cooling device device tree node |
| 1013 | * @clip_cpus: cpumask of cpus where the frequency constraints will happen |
| 1014 | * @capacitance: dynamic power coefficient for these cpus |
| 1015 | * @plat_static_func: function to calculate the static power consumed by these |
| 1016 | * cpus (optional) |
| 1017 | * |
| 1018 | * This interface function registers the cpufreq cooling device with |
| 1019 | * the name "thermal-cpufreq-%x". This api can support multiple |
| 1020 | * instances of cpufreq cooling devices. Using this API, the cpufreq |
| 1021 | * cooling device will be linked to the device tree node provided. |
| 1022 | * Using this function, the cooling device will implement the power |
| 1023 | * extensions by using a simple cpu power model. The cpus must have |
| 1024 | * registered their OPPs using the OPP library. |
| 1025 | * |
| 1026 | * An optional @plat_static_func may be provided to calculate the |
| 1027 | * static power consumed by these cpus. If the platform's static |
| 1028 | * power consumption is unknown or negligible, make it NULL. |
| 1029 | * |
| 1030 | * Return: a valid struct thermal_cooling_device pointer on success, |
| 1031 | * on failure, it returns a corresponding ERR_PTR(). |
| 1032 | */ |
| 1033 | struct thermal_cooling_device * |
| 1034 | of_cpufreq_power_cooling_register(struct device_node *np, |
| 1035 | const struct cpumask *clip_cpus, |
| 1036 | u32 capacitance, |
| 1037 | get_static_t plat_static_func) |
| 1038 | { |
| 1039 | if (!np) |
| 1040 | return ERR_PTR(-EINVAL); |
| 1041 | |
| 1042 | return __cpufreq_cooling_register(np, clip_cpus, capacitance, |
| 1043 | plat_static_func); |
| 1044 | } |
| 1045 | EXPORT_SYMBOL(of_cpufreq_power_cooling_register); |
| 1046 | |
| 1047 | /** |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 1048 | * cpufreq_cooling_unregister - function to remove cpufreq cooling device. |
| 1049 | * @cdev: thermal cooling device pointer. |
Eduardo Valentin | 135266b | 2013-04-17 17:12:16 +0000 | [diff] [blame] | 1050 | * |
| 1051 | * This interface function unregisters the "thermal-cpufreq-%x" cooling device. |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 1052 | */ |
| 1053 | void cpufreq_cooling_unregister(struct thermal_cooling_device *cdev) |
| 1054 | { |
Eduardo Valentin | 50e66c7 | 2013-08-15 10:54:46 -0400 | [diff] [blame] | 1055 | struct cpufreq_cooling_device *cpufreq_dev; |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 1056 | |
Eduardo Valentin | 50e66c7 | 2013-08-15 10:54:46 -0400 | [diff] [blame] | 1057 | if (!cdev) |
| 1058 | return; |
| 1059 | |
| 1060 | cpufreq_dev = cdev->devdata; |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 1061 | |
| 1062 | /* Unregister the notifier for the last cpufreq cooling device */ |
Russell King | 02373d7 | 2015-08-12 15:22:16 +0530 | [diff] [blame] | 1063 | mutex_lock(&cooling_cpufreq_lock); |
| 1064 | if (!--cpufreq_dev_count) |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 1065 | cpufreq_unregister_notifier(&thermal_cpufreq_notifier_block, |
Eduardo Valentin | 5fda7f6 | 2013-04-17 17:12:11 +0000 | [diff] [blame] | 1066 | CPUFREQ_POLICY_NOTIFIER); |
Russell King | 02373d7 | 2015-08-12 15:22:16 +0530 | [diff] [blame] | 1067 | |
| 1068 | mutex_lock(&cooling_list_lock); |
| 1069 | list_del(&cpufreq_dev->node); |
| 1070 | mutex_unlock(&cooling_list_lock); |
| 1071 | |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 1072 | mutex_unlock(&cooling_cpufreq_lock); |
hongbo.zhang | 160b7d8 | 2012-10-30 17:48:59 +0100 | [diff] [blame] | 1073 | |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 1074 | thermal_cooling_device_unregister(cpufreq_dev->cool_dev); |
| 1075 | release_idr(&cpufreq_idr, cpufreq_dev->id); |
Javi Merino | eba4f88 | 2015-08-17 19:21:43 +0100 | [diff] [blame] | 1076 | kfree(cpufreq_dev->dyn_power_table); |
Javi Merino | c36cf07 | 2015-02-26 19:00:29 +0000 | [diff] [blame] | 1077 | kfree(cpufreq_dev->time_in_idle_timestamp); |
| 1078 | kfree(cpufreq_dev->time_in_idle); |
Viresh Kumar | f685901 | 2014-12-04 09:42:06 +0530 | [diff] [blame] | 1079 | kfree(cpufreq_dev->freq_table); |
Amit Daniel Kachhap | 0236141 | 2012-08-16 17:11:40 +0530 | [diff] [blame] | 1080 | kfree(cpufreq_dev); |
| 1081 | } |
Eduardo Valentin | 243dbd9 | 2013-04-17 17:11:57 +0000 | [diff] [blame] | 1082 | EXPORT_SYMBOL_GPL(cpufreq_cooling_unregister); |