blob: a7c5b79371a7c015211328e123cccd9e706c8e2f [file] [log] [blame]
Nishanth Menone1f60b22010-10-13 00:13:10 +02001/*
2 * Generic OPP Interface
3 *
4 * Copyright (C) 2009-2010 Texas Instruments Incorporated.
5 * Nishanth Menon
6 * Romit Dasgupta
7 * Kevin Hilman
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
Viresh Kumard6d2a522015-10-17 09:45:18 +053014#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15
Viresh Kumard54974c2016-02-09 10:30:38 +053016#include <linux/clk.h>
Nishanth Menone1f60b22010-10-13 00:13:10 +020017#include <linux/errno.h>
18#include <linux/err.h>
Nishanth Menone1f60b22010-10-13 00:13:10 +020019#include <linux/slab.h>
Paul Gortmaker51990e82012-01-22 11:23:42 -050020#include <linux/device.h>
Liam Girdwood80126ce2012-10-23 01:27:44 +020021#include <linux/export.h>
Viresh Kumar9f8ea962016-02-09 10:30:33 +053022#include <linux/regulator/consumer.h>
Nishanth Menone1f60b22010-10-13 00:13:10 +020023
Viresh Kumarf59d3ee2015-09-04 13:47:26 +053024#include "opp.h"
Nishanth Menone1f60b22010-10-13 00:13:10 +020025
26/*
Viresh Kumar2c2709d2016-02-16 14:17:53 +053027 * The root of the list of all opp-tables. All opp_table structures branch off
28 * from here, with each opp_table containing the list of opps it supports in
Nishanth Menone1f60b22010-10-13 00:13:10 +020029 * various states of availability.
30 */
Viresh Kumarf47b72a2016-05-05 16:20:33 +053031LIST_HEAD(opp_tables);
Nishanth Menone1f60b22010-10-13 00:13:10 +020032/* Lock to allow exclusive modification to the device and opp lists */
Viresh Kumar2c2709d2016-02-16 14:17:53 +053033DEFINE_MUTEX(opp_table_lock);
Nishanth Menone1f60b22010-10-13 00:13:10 +020034
Dmitry Torokhovb02ded22014-12-16 15:09:36 -080035#define opp_rcu_lockdep_assert() \
36do { \
Paul E. McKenneyf78f5b92015-06-18 15:50:02 -070037 RCU_LOCKDEP_WARN(!rcu_read_lock_held() && \
Viresh Kumar2c2709d2016-02-16 14:17:53 +053038 !lockdep_is_held(&opp_table_lock), \
39 "Missing rcu_read_lock() or " \
40 "opp_table_lock protection"); \
Dmitry Torokhovb02ded22014-12-16 15:09:36 -080041} while (0)
42
Viresh Kumar2c2709d2016-02-16 14:17:53 +053043static struct opp_device *_find_opp_dev(const struct device *dev,
44 struct opp_table *opp_table)
Viresh Kumar06441652015-07-29 16:23:04 +053045{
Viresh Kumar2c2709d2016-02-16 14:17:53 +053046 struct opp_device *opp_dev;
Viresh Kumar06441652015-07-29 16:23:04 +053047
Viresh Kumar2c2709d2016-02-16 14:17:53 +053048 list_for_each_entry(opp_dev, &opp_table->dev_list, node)
49 if (opp_dev->dev == dev)
50 return opp_dev;
Viresh Kumar06441652015-07-29 16:23:04 +053051
52 return NULL;
53}
54
Nishanth Menone1f60b22010-10-13 00:13:10 +020055/**
Viresh Kumar2c2709d2016-02-16 14:17:53 +053056 * _find_opp_table() - find opp_table struct using device pointer
57 * @dev: device pointer used to lookup OPP table
Nishanth Menone1f60b22010-10-13 00:13:10 +020058 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +053059 * Search OPP table for one containing matching device. Does a RCU reader
60 * operation to grab the pointer needed.
Nishanth Menone1f60b22010-10-13 00:13:10 +020061 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +053062 * Return: pointer to 'struct opp_table' if found, otherwise -ENODEV or
Nishanth Menone1f60b22010-10-13 00:13:10 +020063 * -EINVAL based on type of error.
64 *
Viresh Kumar0597e812015-11-05 14:21:21 +053065 * Locking: For readers, this function must be called under rcu_read_lock().
Viresh Kumar2c2709d2016-02-16 14:17:53 +053066 * opp_table is a RCU protected pointer, which means that opp_table is valid
Viresh Kumar0597e812015-11-05 14:21:21 +053067 * as long as we are under RCU lock.
68 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +053069 * For Writers, this function must be called with opp_table_lock held.
Nishanth Menone1f60b22010-10-13 00:13:10 +020070 */
Viresh Kumar2c2709d2016-02-16 14:17:53 +053071struct opp_table *_find_opp_table(struct device *dev)
Nishanth Menone1f60b22010-10-13 00:13:10 +020072{
Viresh Kumar2c2709d2016-02-16 14:17:53 +053073 struct opp_table *opp_table;
Nishanth Menone1f60b22010-10-13 00:13:10 +020074
Viresh Kumar0597e812015-11-05 14:21:21 +053075 opp_rcu_lockdep_assert();
76
Viresh Kumar50a3cb02015-08-12 15:59:39 +053077 if (IS_ERR_OR_NULL(dev)) {
Nishanth Menone1f60b22010-10-13 00:13:10 +020078 pr_err("%s: Invalid parameters\n", __func__);
79 return ERR_PTR(-EINVAL);
80 }
81
Viresh Kumar2c2709d2016-02-16 14:17:53 +053082 list_for_each_entry_rcu(opp_table, &opp_tables, node)
83 if (_find_opp_dev(dev, opp_table))
84 return opp_table;
Nishanth Menone1f60b22010-10-13 00:13:10 +020085
Viresh Kumar06441652015-07-29 16:23:04 +053086 return ERR_PTR(-ENODEV);
Nishanth Menone1f60b22010-10-13 00:13:10 +020087}
88
89/**
Linus Torvaldsbaf51c42015-11-11 09:03:01 -080090 * dev_pm_opp_get_voltage() - Gets the voltage corresponding to an opp
Nishanth Menone1f60b22010-10-13 00:13:10 +020091 * @opp: opp for which voltage has to be returned for
92 *
Nishanth Menon984f16c2014-12-24 11:22:57 -060093 * Return: voltage in micro volt corresponding to the opp, else
Nishanth Menone1f60b22010-10-13 00:13:10 +020094 * return 0
95 *
96 * Locking: This function must be called under rcu_read_lock(). opp is a rcu
97 * protected pointer. This means that opp which could have been fetched by
98 * opp_find_freq_{exact,ceil,floor} functions is valid as long as we are
99 * under RCU lock. The pointer returned by the opp_find_freq family must be
100 * used in the same section as the usage of this function with the pointer
101 * prior to unlocking with rcu_read_unlock() to maintain the integrity of the
102 * pointer.
103 */
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500104unsigned long dev_pm_opp_get_voltage(struct dev_pm_opp *opp)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200105{
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500106 struct dev_pm_opp *tmp_opp;
Nishanth Menone1f60b22010-10-13 00:13:10 +0200107 unsigned long v = 0;
108
Krzysztof Kozlowski04bf1c72015-01-09 09:27:57 +0100109 opp_rcu_lockdep_assert();
110
Nishanth Menone1f60b22010-10-13 00:13:10 +0200111 tmp_opp = rcu_dereference(opp);
Linus Torvaldsbaf51c42015-11-11 09:03:01 -0800112 if (IS_ERR_OR_NULL(tmp_opp))
Nishanth Menone1f60b22010-10-13 00:13:10 +0200113 pr_err("%s: Invalid parameters\n", __func__);
114 else
115 v = tmp_opp->u_volt;
116
117 return v;
118}
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500119EXPORT_SYMBOL_GPL(dev_pm_opp_get_voltage);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200120
121/**
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500122 * dev_pm_opp_get_freq() - Gets the frequency corresponding to an available opp
Nishanth Menone1f60b22010-10-13 00:13:10 +0200123 * @opp: opp for which frequency has to be returned for
124 *
Nishanth Menon984f16c2014-12-24 11:22:57 -0600125 * Return: frequency in hertz corresponding to the opp, else
Nishanth Menone1f60b22010-10-13 00:13:10 +0200126 * return 0
127 *
128 * Locking: This function must be called under rcu_read_lock(). opp is a rcu
129 * protected pointer. This means that opp which could have been fetched by
130 * opp_find_freq_{exact,ceil,floor} functions is valid as long as we are
131 * under RCU lock. The pointer returned by the opp_find_freq family must be
132 * used in the same section as the usage of this function with the pointer
133 * prior to unlocking with rcu_read_unlock() to maintain the integrity of the
134 * pointer.
135 */
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500136unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200137{
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500138 struct dev_pm_opp *tmp_opp;
Nishanth Menone1f60b22010-10-13 00:13:10 +0200139 unsigned long f = 0;
140
Krzysztof Kozlowski04bf1c72015-01-09 09:27:57 +0100141 opp_rcu_lockdep_assert();
142
Nishanth Menone1f60b22010-10-13 00:13:10 +0200143 tmp_opp = rcu_dereference(opp);
Viresh Kumar50a3cb02015-08-12 15:59:39 +0530144 if (IS_ERR_OR_NULL(tmp_opp) || !tmp_opp->available)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200145 pr_err("%s: Invalid parameters\n", __func__);
146 else
147 f = tmp_opp->rate;
148
149 return f;
150}
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500151EXPORT_SYMBOL_GPL(dev_pm_opp_get_freq);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200152
153/**
Bartlomiej Zolnierkiewicz19445b22015-07-09 17:43:35 +0200154 * dev_pm_opp_is_turbo() - Returns if opp is turbo OPP or not
155 * @opp: opp for which turbo mode is being verified
156 *
157 * Turbo OPPs are not for normal use, and can be enabled (under certain
158 * conditions) for short duration of times to finish high throughput work
159 * quickly. Running on them for longer times may overheat the chip.
160 *
161 * Return: true if opp is turbo opp, else false.
162 *
163 * Locking: This function must be called under rcu_read_lock(). opp is a rcu
164 * protected pointer. This means that opp which could have been fetched by
165 * opp_find_freq_{exact,ceil,floor} functions is valid as long as we are
166 * under RCU lock. The pointer returned by the opp_find_freq family must be
167 * used in the same section as the usage of this function with the pointer
168 * prior to unlocking with rcu_read_unlock() to maintain the integrity of the
169 * pointer.
170 */
171bool dev_pm_opp_is_turbo(struct dev_pm_opp *opp)
172{
173 struct dev_pm_opp *tmp_opp;
174
175 opp_rcu_lockdep_assert();
176
177 tmp_opp = rcu_dereference(opp);
178 if (IS_ERR_OR_NULL(tmp_opp) || !tmp_opp->available) {
179 pr_err("%s: Invalid parameters\n", __func__);
180 return false;
181 }
182
183 return tmp_opp->turbo;
184}
185EXPORT_SYMBOL_GPL(dev_pm_opp_is_turbo);
186
187/**
Viresh Kumar3ca9bb32015-07-29 16:23:03 +0530188 * dev_pm_opp_get_max_clock_latency() - Get max clock latency in nanoseconds
189 * @dev: device for which we do this operation
190 *
191 * Return: This function returns the max clock latency in nanoseconds.
192 *
193 * Locking: This function takes rcu_read_lock().
194 */
195unsigned long dev_pm_opp_get_max_clock_latency(struct device *dev)
196{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530197 struct opp_table *opp_table;
Viresh Kumar3ca9bb32015-07-29 16:23:03 +0530198 unsigned long clock_latency_ns;
199
200 rcu_read_lock();
201
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530202 opp_table = _find_opp_table(dev);
203 if (IS_ERR(opp_table))
Viresh Kumar3ca9bb32015-07-29 16:23:03 +0530204 clock_latency_ns = 0;
205 else
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530206 clock_latency_ns = opp_table->clock_latency_ns_max;
Viresh Kumar3ca9bb32015-07-29 16:23:03 +0530207
208 rcu_read_unlock();
209 return clock_latency_ns;
210}
211EXPORT_SYMBOL_GPL(dev_pm_opp_get_max_clock_latency);
212
213/**
Viresh Kumar655c9df2016-02-09 10:30:35 +0530214 * dev_pm_opp_get_max_volt_latency() - Get max voltage latency in nanoseconds
215 * @dev: device for which we do this operation
216 *
217 * Return: This function returns the max voltage latency in nanoseconds.
218 *
219 * Locking: This function takes rcu_read_lock().
220 */
221unsigned long dev_pm_opp_get_max_volt_latency(struct device *dev)
222{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530223 struct opp_table *opp_table;
Viresh Kumar655c9df2016-02-09 10:30:35 +0530224 struct dev_pm_opp *opp;
225 struct regulator *reg;
226 unsigned long latency_ns = 0;
227 unsigned long min_uV = ~0, max_uV = 0;
228 int ret;
229
230 rcu_read_lock();
231
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530232 opp_table = _find_opp_table(dev);
233 if (IS_ERR(opp_table)) {
Viresh Kumar655c9df2016-02-09 10:30:35 +0530234 rcu_read_unlock();
235 return 0;
236 }
237
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530238 reg = opp_table->regulator;
Viresh Kumar0c717d02016-02-15 21:56:42 +0530239 if (IS_ERR(reg)) {
Viresh Kumar655c9df2016-02-09 10:30:35 +0530240 /* Regulator may not be required for device */
Viresh Kumar655c9df2016-02-09 10:30:35 +0530241 rcu_read_unlock();
242 return 0;
243 }
244
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530245 list_for_each_entry_rcu(opp, &opp_table->opp_list, node) {
Viresh Kumar655c9df2016-02-09 10:30:35 +0530246 if (!opp->available)
247 continue;
248
249 if (opp->u_volt_min < min_uV)
250 min_uV = opp->u_volt_min;
251 if (opp->u_volt_max > max_uV)
252 max_uV = opp->u_volt_max;
253 }
254
255 rcu_read_unlock();
256
257 /*
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530258 * The caller needs to ensure that opp_table (and hence the regulator)
Viresh Kumar655c9df2016-02-09 10:30:35 +0530259 * isn't freed, while we are executing this routine.
260 */
261 ret = regulator_set_voltage_time(reg, min_uV, max_uV);
262 if (ret > 0)
263 latency_ns = ret * 1000;
264
265 return latency_ns;
266}
267EXPORT_SYMBOL_GPL(dev_pm_opp_get_max_volt_latency);
268
269/**
Viresh Kumar21743442016-02-09 10:30:36 +0530270 * dev_pm_opp_get_max_transition_latency() - Get max transition latency in
271 * nanoseconds
272 * @dev: device for which we do this operation
273 *
274 * Return: This function returns the max transition latency, in nanoseconds, to
275 * switch from one OPP to other.
276 *
277 * Locking: This function takes rcu_read_lock().
278 */
279unsigned long dev_pm_opp_get_max_transition_latency(struct device *dev)
280{
281 return dev_pm_opp_get_max_volt_latency(dev) +
282 dev_pm_opp_get_max_clock_latency(dev);
283}
284EXPORT_SYMBOL_GPL(dev_pm_opp_get_max_transition_latency);
285
286/**
Bartlomiej Zolnierkiewicz4eafbd12015-09-08 18:41:01 +0200287 * dev_pm_opp_get_suspend_opp() - Get suspend opp
288 * @dev: device for which we do this operation
289 *
290 * Return: This function returns pointer to the suspend opp if it is
Viresh Kumar1b2b90c2015-09-09 16:58:22 +0530291 * defined and available, otherwise it returns NULL.
Bartlomiej Zolnierkiewicz4eafbd12015-09-08 18:41:01 +0200292 *
293 * Locking: This function must be called under rcu_read_lock(). opp is a rcu
294 * protected pointer. The reason for the same is that the opp pointer which is
295 * returned will remain valid for use with opp_get_{voltage, freq} only while
296 * under the locked area. The pointer returned must be used prior to unlocking
297 * with rcu_read_unlock() to maintain the integrity of the pointer.
298 */
299struct dev_pm_opp *dev_pm_opp_get_suspend_opp(struct device *dev)
300{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530301 struct opp_table *opp_table;
Bartlomiej Zolnierkiewicz4eafbd12015-09-08 18:41:01 +0200302
303 opp_rcu_lockdep_assert();
304
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530305 opp_table = _find_opp_table(dev);
306 if (IS_ERR(opp_table) || !opp_table->suspend_opp ||
307 !opp_table->suspend_opp->available)
Viresh Kumar1b2b90c2015-09-09 16:58:22 +0530308 return NULL;
Bartlomiej Zolnierkiewicz4eafbd12015-09-08 18:41:01 +0200309
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530310 return opp_table->suspend_opp;
Bartlomiej Zolnierkiewicz4eafbd12015-09-08 18:41:01 +0200311}
312EXPORT_SYMBOL_GPL(dev_pm_opp_get_suspend_opp);
313
314/**
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530315 * dev_pm_opp_get_opp_count() - Get number of opps available in the opp table
Nishanth Menone1f60b22010-10-13 00:13:10 +0200316 * @dev: device for which we do this operation
317 *
Nishanth Menon984f16c2014-12-24 11:22:57 -0600318 * Return: This function returns the number of available opps if there are any,
Nishanth Menone1f60b22010-10-13 00:13:10 +0200319 * else returns 0 if none or the corresponding error value.
320 *
Dmitry Torokhovb4718c02014-12-16 15:09:38 -0800321 * Locking: This function takes rcu_read_lock().
Nishanth Menone1f60b22010-10-13 00:13:10 +0200322 */
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500323int dev_pm_opp_get_opp_count(struct device *dev)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200324{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530325 struct opp_table *opp_table;
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500326 struct dev_pm_opp *temp_opp;
Nishanth Menone1f60b22010-10-13 00:13:10 +0200327 int count = 0;
328
Dmitry Torokhovb4718c02014-12-16 15:09:38 -0800329 rcu_read_lock();
Dmitry Torokhovb02ded22014-12-16 15:09:36 -0800330
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530331 opp_table = _find_opp_table(dev);
332 if (IS_ERR(opp_table)) {
333 count = PTR_ERR(opp_table);
Fabio Estevamc2365252017-09-29 14:39:49 -0300334 dev_dbg(dev, "%s: OPP table not found (%d)\n",
Dmitry Torokhovb4718c02014-12-16 15:09:38 -0800335 __func__, count);
336 goto out_unlock;
Nishanth Menone1f60b22010-10-13 00:13:10 +0200337 }
338
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530339 list_for_each_entry_rcu(temp_opp, &opp_table->opp_list, node) {
Nishanth Menone1f60b22010-10-13 00:13:10 +0200340 if (temp_opp->available)
341 count++;
342 }
343
Dmitry Torokhovb4718c02014-12-16 15:09:38 -0800344out_unlock:
345 rcu_read_unlock();
Nishanth Menone1f60b22010-10-13 00:13:10 +0200346 return count;
347}
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500348EXPORT_SYMBOL_GPL(dev_pm_opp_get_opp_count);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200349
350/**
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500351 * dev_pm_opp_find_freq_exact() - search for an exact frequency
Nishanth Menone1f60b22010-10-13 00:13:10 +0200352 * @dev: device for which we do this operation
353 * @freq: frequency to search for
Nishanth Menon7ae49612011-02-25 23:46:18 +0100354 * @available: true/false - match for available opp
Nishanth Menone1f60b22010-10-13 00:13:10 +0200355 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530356 * Return: Searches for exact match in the opp table and returns pointer to the
Nishanth Menon984f16c2014-12-24 11:22:57 -0600357 * matching opp if found, else returns ERR_PTR in case of error and should
358 * be handled using IS_ERR. Error return values can be:
Nishanth Menon07797262012-10-24 22:00:12 +0200359 * EINVAL: for bad pointer
360 * ERANGE: no match found for search
361 * ENODEV: if device not found in list of registered devices
Nishanth Menone1f60b22010-10-13 00:13:10 +0200362 *
363 * Note: available is a modifier for the search. if available=true, then the
364 * match is for exact matching frequency and is available in the stored OPP
365 * table. if false, the match is for exact frequency which is not available.
366 *
367 * This provides a mechanism to enable an opp which is not available currently
368 * or the opposite as well.
369 *
370 * Locking: This function must be called under rcu_read_lock(). opp is a rcu
371 * protected pointer. The reason for the same is that the opp pointer which is
372 * returned will remain valid for use with opp_get_{voltage, freq} only while
373 * under the locked area. The pointer returned must be used prior to unlocking
374 * with rcu_read_unlock() to maintain the integrity of the pointer.
375 */
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500376struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
377 unsigned long freq,
378 bool available)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200379{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530380 struct opp_table *opp_table;
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500381 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200382
Dmitry Torokhovb02ded22014-12-16 15:09:36 -0800383 opp_rcu_lockdep_assert();
384
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530385 opp_table = _find_opp_table(dev);
386 if (IS_ERR(opp_table)) {
387 int r = PTR_ERR(opp_table);
388
389 dev_err(dev, "%s: OPP table not found (%d)\n", __func__, r);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200390 return ERR_PTR(r);
391 }
392
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530393 list_for_each_entry_rcu(temp_opp, &opp_table->opp_list, node) {
Nishanth Menone1f60b22010-10-13 00:13:10 +0200394 if (temp_opp->available == available &&
395 temp_opp->rate == freq) {
396 opp = temp_opp;
397 break;
398 }
399 }
400
401 return opp;
402}
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500403EXPORT_SYMBOL_GPL(dev_pm_opp_find_freq_exact);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200404
Jisheng Zhang067b7ce2016-07-25 14:11:16 +0800405static noinline struct dev_pm_opp *_find_freq_ceil(struct opp_table *opp_table,
406 unsigned long *freq)
407{
408 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
409
410 list_for_each_entry_rcu(temp_opp, &opp_table->opp_list, node) {
411 if (temp_opp->available && temp_opp->rate >= *freq) {
412 opp = temp_opp;
413 *freq = opp->rate;
414 break;
415 }
416 }
417
418 return opp;
419}
420
Nishanth Menone1f60b22010-10-13 00:13:10 +0200421/**
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500422 * dev_pm_opp_find_freq_ceil() - Search for an rounded ceil freq
Nishanth Menone1f60b22010-10-13 00:13:10 +0200423 * @dev: device for which we do this operation
424 * @freq: Start frequency
425 *
426 * Search for the matching ceil *available* OPP from a starting freq
427 * for a device.
428 *
Nishanth Menon984f16c2014-12-24 11:22:57 -0600429 * Return: matching *opp and refreshes *freq accordingly, else returns
Nishanth Menon07797262012-10-24 22:00:12 +0200430 * ERR_PTR in case of error and should be handled using IS_ERR. Error return
431 * values can be:
432 * EINVAL: for bad pointer
433 * ERANGE: no match found for search
434 * ENODEV: if device not found in list of registered devices
Nishanth Menone1f60b22010-10-13 00:13:10 +0200435 *
436 * Locking: This function must be called under rcu_read_lock(). opp is a rcu
437 * protected pointer. The reason for the same is that the opp pointer which is
438 * returned will remain valid for use with opp_get_{voltage, freq} only while
439 * under the locked area. The pointer returned must be used prior to unlocking
440 * with rcu_read_unlock() to maintain the integrity of the pointer.
441 */
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500442struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
443 unsigned long *freq)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200444{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530445 struct opp_table *opp_table;
Nishanth Menone1f60b22010-10-13 00:13:10 +0200446
Dmitry Torokhovb02ded22014-12-16 15:09:36 -0800447 opp_rcu_lockdep_assert();
448
Nishanth Menone1f60b22010-10-13 00:13:10 +0200449 if (!dev || !freq) {
450 dev_err(dev, "%s: Invalid argument freq=%p\n", __func__, freq);
451 return ERR_PTR(-EINVAL);
452 }
453
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530454 opp_table = _find_opp_table(dev);
455 if (IS_ERR(opp_table))
456 return ERR_CAST(opp_table);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200457
Jisheng Zhang067b7ce2016-07-25 14:11:16 +0800458 return _find_freq_ceil(opp_table, freq);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200459}
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500460EXPORT_SYMBOL_GPL(dev_pm_opp_find_freq_ceil);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200461
462/**
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500463 * dev_pm_opp_find_freq_floor() - Search for a rounded floor freq
Nishanth Menone1f60b22010-10-13 00:13:10 +0200464 * @dev: device for which we do this operation
465 * @freq: Start frequency
466 *
467 * Search for the matching floor *available* OPP from a starting freq
468 * for a device.
469 *
Nishanth Menon984f16c2014-12-24 11:22:57 -0600470 * Return: matching *opp and refreshes *freq accordingly, else returns
Nishanth Menon07797262012-10-24 22:00:12 +0200471 * ERR_PTR in case of error and should be handled using IS_ERR. Error return
472 * values can be:
473 * EINVAL: for bad pointer
474 * ERANGE: no match found for search
475 * ENODEV: if device not found in list of registered devices
Nishanth Menone1f60b22010-10-13 00:13:10 +0200476 *
477 * Locking: This function must be called under rcu_read_lock(). opp is a rcu
478 * protected pointer. The reason for the same is that the opp pointer which is
479 * returned will remain valid for use with opp_get_{voltage, freq} only while
480 * under the locked area. The pointer returned must be used prior to unlocking
481 * with rcu_read_unlock() to maintain the integrity of the pointer.
482 */
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500483struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
484 unsigned long *freq)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200485{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530486 struct opp_table *opp_table;
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500487 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200488
Dmitry Torokhovb02ded22014-12-16 15:09:36 -0800489 opp_rcu_lockdep_assert();
490
Nishanth Menone1f60b22010-10-13 00:13:10 +0200491 if (!dev || !freq) {
492 dev_err(dev, "%s: Invalid argument freq=%p\n", __func__, freq);
493 return ERR_PTR(-EINVAL);
494 }
495
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530496 opp_table = _find_opp_table(dev);
497 if (IS_ERR(opp_table))
498 return ERR_CAST(opp_table);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200499
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530500 list_for_each_entry_rcu(temp_opp, &opp_table->opp_list, node) {
Nishanth Menone1f60b22010-10-13 00:13:10 +0200501 if (temp_opp->available) {
502 /* go to the next node, before choosing prev */
503 if (temp_opp->rate > *freq)
504 break;
505 else
506 opp = temp_opp;
507 }
508 }
509 if (!IS_ERR(opp))
510 *freq = opp->rate;
511
512 return opp;
513}
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500514EXPORT_SYMBOL_GPL(dev_pm_opp_find_freq_floor);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200515
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530516/*
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530517 * The caller needs to ensure that opp_table (and hence the clk) isn't freed,
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530518 * while clk returned here is used.
519 */
520static struct clk *_get_opp_clk(struct device *dev)
521{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530522 struct opp_table *opp_table;
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530523 struct clk *clk;
524
525 rcu_read_lock();
526
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530527 opp_table = _find_opp_table(dev);
528 if (IS_ERR(opp_table)) {
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530529 dev_err(dev, "%s: device opp doesn't exist\n", __func__);
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530530 clk = ERR_CAST(opp_table);
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530531 goto unlock;
532 }
533
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530534 clk = opp_table->clk;
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530535 if (IS_ERR(clk))
536 dev_err(dev, "%s: No clock available for the device\n",
537 __func__);
538
539unlock:
540 rcu_read_unlock();
541 return clk;
542}
543
544static int _set_opp_voltage(struct device *dev, struct regulator *reg,
545 unsigned long u_volt, unsigned long u_volt_min,
546 unsigned long u_volt_max)
547{
548 int ret;
549
550 /* Regulator not available for device */
551 if (IS_ERR(reg)) {
552 dev_dbg(dev, "%s: regulator not available: %ld\n", __func__,
553 PTR_ERR(reg));
554 return 0;
555 }
556
557 dev_dbg(dev, "%s: voltages (mV): %lu %lu %lu\n", __func__, u_volt_min,
558 u_volt, u_volt_max);
559
560 ret = regulator_set_voltage_triplet(reg, u_volt_min, u_volt,
561 u_volt_max);
562 if (ret)
563 dev_err(dev, "%s: failed to set voltage (%lu %lu %lu mV): %d\n",
564 __func__, u_volt_min, u_volt, u_volt_max, ret);
565
566 return ret;
567}
568
569/**
570 * dev_pm_opp_set_rate() - Configure new OPP based on frequency
571 * @dev: device for which we do this operation
572 * @target_freq: frequency to achieve
573 *
574 * This configures the power-supplies and clock source to the levels specified
575 * by the OPP corresponding to the target_freq.
576 *
577 * Locking: This function takes rcu_read_lock().
578 */
579int dev_pm_opp_set_rate(struct device *dev, unsigned long target_freq)
580{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530581 struct opp_table *opp_table;
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530582 struct dev_pm_opp *old_opp, *opp;
583 struct regulator *reg;
584 struct clk *clk;
585 unsigned long freq, old_freq;
586 unsigned long u_volt, u_volt_min, u_volt_max;
Viresh Kumar7ac62bc2016-12-01 16:28:16 +0530587 unsigned long old_u_volt, old_u_volt_min, old_u_volt_max;
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530588 int ret;
589
590 if (unlikely(!target_freq)) {
591 dev_err(dev, "%s: Invalid target frequency %lu\n", __func__,
592 target_freq);
593 return -EINVAL;
594 }
595
596 clk = _get_opp_clk(dev);
597 if (IS_ERR(clk))
598 return PTR_ERR(clk);
599
600 freq = clk_round_rate(clk, target_freq);
601 if ((long)freq <= 0)
602 freq = target_freq;
603
604 old_freq = clk_get_rate(clk);
605
606 /* Return early if nothing to do */
607 if (old_freq == freq) {
608 dev_dbg(dev, "%s: old/new frequencies (%lu Hz) are same, nothing to do\n",
609 __func__, freq);
610 return 0;
611 }
612
613 rcu_read_lock();
614
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530615 opp_table = _find_opp_table(dev);
616 if (IS_ERR(opp_table)) {
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530617 dev_err(dev, "%s: device opp doesn't exist\n", __func__);
618 rcu_read_unlock();
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530619 return PTR_ERR(opp_table);
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530620 }
621
Jisheng Zhang067b7ce2016-07-25 14:11:16 +0800622 old_opp = _find_freq_ceil(opp_table, &old_freq);
Arnd Bergmann4df27c92016-09-15 17:38:38 +0200623 if (IS_ERR(old_opp)) {
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530624 dev_err(dev, "%s: failed to find current OPP for freq %lu (%ld)\n",
625 __func__, old_freq, PTR_ERR(old_opp));
626 }
627
Jisheng Zhang067b7ce2016-07-25 14:11:16 +0800628 opp = _find_freq_ceil(opp_table, &freq);
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530629 if (IS_ERR(opp)) {
630 ret = PTR_ERR(opp);
631 dev_err(dev, "%s: failed to find OPP for freq %lu (%d)\n",
632 __func__, freq, ret);
633 rcu_read_unlock();
634 return ret;
635 }
636
Viresh Kumar7ac62bc2016-12-01 16:28:16 +0530637 if (IS_ERR(old_opp)) {
638 old_u_volt = 0;
639 } else {
640 old_u_volt = old_opp->u_volt;
641 old_u_volt_min = old_opp->u_volt_min;
642 old_u_volt_max = old_opp->u_volt_max;
643 }
644
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530645 u_volt = opp->u_volt;
646 u_volt_min = opp->u_volt_min;
647 u_volt_max = opp->u_volt_max;
648
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530649 reg = opp_table->regulator;
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530650
651 rcu_read_unlock();
652
653 /* Scaling up? Scale voltage before frequency */
654 if (freq > old_freq) {
655 ret = _set_opp_voltage(dev, reg, u_volt, u_volt_min,
656 u_volt_max);
657 if (ret)
658 goto restore_voltage;
659 }
660
661 /* Change frequency */
662
663 dev_dbg(dev, "%s: switching OPP: %lu Hz --> %lu Hz\n",
664 __func__, old_freq, freq);
665
666 ret = clk_set_rate(clk, freq);
667 if (ret) {
668 dev_err(dev, "%s: failed to set clock rate: %d\n", __func__,
669 ret);
670 goto restore_voltage;
671 }
672
673 /* Scaling down? Scale voltage after frequency */
674 if (freq < old_freq) {
675 ret = _set_opp_voltage(dev, reg, u_volt, u_volt_min,
676 u_volt_max);
677 if (ret)
678 goto restore_freq;
679 }
680
681 return 0;
682
683restore_freq:
684 if (clk_set_rate(clk, old_freq))
685 dev_err(dev, "%s: failed to restore old-freq (%lu Hz)\n",
686 __func__, old_freq);
687restore_voltage:
688 /* This shouldn't harm even if the voltages weren't updated earlier */
Viresh Kumar7ac62bc2016-12-01 16:28:16 +0530689 if (old_u_volt) {
690 _set_opp_voltage(dev, reg, old_u_volt, old_u_volt_min,
691 old_u_volt_max);
692 }
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530693
694 return ret;
695}
696EXPORT_SYMBOL_GPL(dev_pm_opp_set_rate);
697
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530698/* OPP-dev Helpers */
699static void _kfree_opp_dev_rcu(struct rcu_head *head)
Viresh Kumar06441652015-07-29 16:23:04 +0530700{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530701 struct opp_device *opp_dev;
Viresh Kumar06441652015-07-29 16:23:04 +0530702
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530703 opp_dev = container_of(head, struct opp_device, rcu_head);
704 kfree_rcu(opp_dev, rcu_head);
Viresh Kumar06441652015-07-29 16:23:04 +0530705}
706
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530707static void _remove_opp_dev(struct opp_device *opp_dev,
708 struct opp_table *opp_table)
Viresh Kumar06441652015-07-29 16:23:04 +0530709{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530710 opp_debug_unregister(opp_dev, opp_table);
711 list_del(&opp_dev->node);
712 call_srcu(&opp_table->srcu_head.srcu, &opp_dev->rcu_head,
713 _kfree_opp_dev_rcu);
Viresh Kumar06441652015-07-29 16:23:04 +0530714}
715
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530716struct opp_device *_add_opp_dev(const struct device *dev,
717 struct opp_table *opp_table)
Viresh Kumar06441652015-07-29 16:23:04 +0530718{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530719 struct opp_device *opp_dev;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530720 int ret;
Viresh Kumar06441652015-07-29 16:23:04 +0530721
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530722 opp_dev = kzalloc(sizeof(*opp_dev), GFP_KERNEL);
723 if (!opp_dev)
Viresh Kumar06441652015-07-29 16:23:04 +0530724 return NULL;
725
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530726 /* Initialize opp-dev */
727 opp_dev->dev = dev;
728 list_add_rcu(&opp_dev->node, &opp_table->dev_list);
Viresh Kumar06441652015-07-29 16:23:04 +0530729
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530730 /* Create debugfs entries for the opp_table */
731 ret = opp_debug_register(opp_dev, opp_table);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530732 if (ret)
733 dev_err(dev, "%s: Failed to register opp debugfs (%d)\n",
734 __func__, ret);
735
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530736 return opp_dev;
Viresh Kumar06441652015-07-29 16:23:04 +0530737}
738
Nishanth Menon984f16c2014-12-24 11:22:57 -0600739/**
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530740 * _add_opp_table() - Find OPP table or allocate a new one
Nishanth Menon984f16c2014-12-24 11:22:57 -0600741 * @dev: device for which we do this operation
742 *
Viresh Kumaraa5f2f82015-07-29 16:23:00 +0530743 * It tries to find an existing table first, if it couldn't find one, it
744 * allocates a new OPP table and returns that.
Nishanth Menon984f16c2014-12-24 11:22:57 -0600745 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530746 * Return: valid opp_table pointer if success, else NULL.
Nishanth Menon984f16c2014-12-24 11:22:57 -0600747 */
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530748static struct opp_table *_add_opp_table(struct device *dev)
Viresh Kumar07cce742014-12-10 09:45:34 +0530749{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530750 struct opp_table *opp_table;
751 struct opp_device *opp_dev;
Viresh Kumard54974c2016-02-09 10:30:38 +0530752 int ret;
Viresh Kumar07cce742014-12-10 09:45:34 +0530753
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530754 /* Check for existing table for 'dev' first */
755 opp_table = _find_opp_table(dev);
756 if (!IS_ERR(opp_table))
757 return opp_table;
Viresh Kumar07cce742014-12-10 09:45:34 +0530758
759 /*
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530760 * Allocate a new OPP table. In the infrequent case where a new
Viresh Kumar07cce742014-12-10 09:45:34 +0530761 * device is needed to be added, we pay this penalty.
762 */
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530763 opp_table = kzalloc(sizeof(*opp_table), GFP_KERNEL);
764 if (!opp_table)
Viresh Kumar07cce742014-12-10 09:45:34 +0530765 return NULL;
766
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530767 INIT_LIST_HEAD(&opp_table->dev_list);
Viresh Kumar06441652015-07-29 16:23:04 +0530768
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530769 opp_dev = _add_opp_dev(dev, opp_table);
770 if (!opp_dev) {
771 kfree(opp_table);
Viresh Kumar06441652015-07-29 16:23:04 +0530772 return NULL;
773 }
774
Viresh Kumarf47b72a2016-05-05 16:20:33 +0530775 _of_init_opp_table(opp_table, dev);
Viresh Kumar50f8cfb2016-02-09 10:30:37 +0530776
Viresh Kumar0c717d02016-02-15 21:56:42 +0530777 /* Set regulator to a non-NULL error value */
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530778 opp_table->regulator = ERR_PTR(-ENXIO);
Viresh Kumar0c717d02016-02-15 21:56:42 +0530779
Viresh Kumard54974c2016-02-09 10:30:38 +0530780 /* Find clk for the device */
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530781 opp_table->clk = clk_get(dev, NULL);
782 if (IS_ERR(opp_table->clk)) {
783 ret = PTR_ERR(opp_table->clk);
Viresh Kumard54974c2016-02-09 10:30:38 +0530784 if (ret != -EPROBE_DEFER)
785 dev_dbg(dev, "%s: Couldn't find clock: %d\n", __func__,
786 ret);
787 }
788
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530789 srcu_init_notifier_head(&opp_table->srcu_head);
790 INIT_LIST_HEAD(&opp_table->opp_list);
Viresh Kumar07cce742014-12-10 09:45:34 +0530791
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530792 /* Secure the device table modification */
793 list_add_rcu(&opp_table->node, &opp_tables);
794 return opp_table;
Viresh Kumar07cce742014-12-10 09:45:34 +0530795}
796
Nishanth Menon984f16c2014-12-24 11:22:57 -0600797/**
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530798 * _kfree_device_rcu() - Free opp_table RCU handler
Nishanth Menon984f16c2014-12-24 11:22:57 -0600799 * @head: RCU head
800 */
Nishanth Menon327854c2014-12-24 11:22:56 -0600801static void _kfree_device_rcu(struct rcu_head *head)
Viresh Kumar129eec52014-11-27 08:54:06 +0530802{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530803 struct opp_table *opp_table = container_of(head, struct opp_table,
804 rcu_head);
Viresh Kumar129eec52014-11-27 08:54:06 +0530805
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530806 kfree_rcu(opp_table, rcu_head);
Viresh Kumar129eec52014-11-27 08:54:06 +0530807}
808
Nishanth Menon984f16c2014-12-24 11:22:57 -0600809/**
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530810 * _remove_opp_table() - Removes a OPP table
811 * @opp_table: OPP table to be removed.
Viresh Kumar3bac42c2015-07-29 16:22:59 +0530812 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530813 * Removes/frees OPP table if it doesn't contain any OPPs.
Viresh Kumar3bac42c2015-07-29 16:22:59 +0530814 */
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530815static void _remove_opp_table(struct opp_table *opp_table)
Viresh Kumar3bac42c2015-07-29 16:22:59 +0530816{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530817 struct opp_device *opp_dev;
Viresh Kumar06441652015-07-29 16:23:04 +0530818
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530819 if (!list_empty(&opp_table->opp_list))
Viresh Kumar3bac42c2015-07-29 16:22:59 +0530820 return;
821
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530822 if (opp_table->supported_hw)
Viresh Kumar7de36b02015-12-09 08:01:46 +0530823 return;
824
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530825 if (opp_table->prop_name)
Viresh Kumar01fb4d32015-12-09 08:01:47 +0530826 return;
827
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530828 if (!IS_ERR(opp_table->regulator))
Viresh Kumar9f8ea962016-02-09 10:30:33 +0530829 return;
830
Viresh Kumard54974c2016-02-09 10:30:38 +0530831 /* Release clk */
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530832 if (!IS_ERR(opp_table->clk))
833 clk_put(opp_table->clk);
Viresh Kumard54974c2016-02-09 10:30:38 +0530834
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530835 opp_dev = list_first_entry(&opp_table->dev_list, struct opp_device,
836 node);
Viresh Kumar06441652015-07-29 16:23:04 +0530837
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530838 _remove_opp_dev(opp_dev, opp_table);
Viresh Kumar06441652015-07-29 16:23:04 +0530839
840 /* dev_list must be empty now */
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530841 WARN_ON(!list_empty(&opp_table->dev_list));
Viresh Kumar06441652015-07-29 16:23:04 +0530842
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530843 list_del_rcu(&opp_table->node);
844 call_srcu(&opp_table->srcu_head.srcu, &opp_table->rcu_head,
Viresh Kumar3bac42c2015-07-29 16:22:59 +0530845 _kfree_device_rcu);
846}
847
848/**
Viresh Kumar737002b2015-07-29 16:22:58 +0530849 * _kfree_opp_rcu() - Free OPP RCU handler
850 * @head: RCU head
851 */
852static void _kfree_opp_rcu(struct rcu_head *head)
853{
854 struct dev_pm_opp *opp = container_of(head, struct dev_pm_opp, rcu_head);
855
856 kfree_rcu(opp, rcu_head);
857}
858
859/**
Nishanth Menon984f16c2014-12-24 11:22:57 -0600860 * _opp_remove() - Remove an OPP from a table definition
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530861 * @opp_table: points back to the opp_table struct this opp belongs to
Nishanth Menon984f16c2014-12-24 11:22:57 -0600862 * @opp: pointer to the OPP to remove
Viresh Kumar23dacf62015-07-29 16:23:01 +0530863 * @notify: OPP_EVENT_REMOVE notification should be sent or not
Nishanth Menon984f16c2014-12-24 11:22:57 -0600864 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530865 * This function removes an opp definition from the opp table.
Nishanth Menon984f16c2014-12-24 11:22:57 -0600866 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530867 * Locking: The internal opp_table and opp structures are RCU protected.
Nishanth Menon984f16c2014-12-24 11:22:57 -0600868 * It is assumed that the caller holds required mutex for an RCU updater
869 * strategy.
870 */
Viresh Kumarf47b72a2016-05-05 16:20:33 +0530871void _opp_remove(struct opp_table *opp_table, struct dev_pm_opp *opp,
872 bool notify)
Viresh Kumar129eec52014-11-27 08:54:06 +0530873{
874 /*
875 * Notify the changes in the availability of the operable
876 * frequency/voltage list.
877 */
Viresh Kumar23dacf62015-07-29 16:23:01 +0530878 if (notify)
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530879 srcu_notifier_call_chain(&opp_table->srcu_head,
880 OPP_EVENT_REMOVE, opp);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530881 opp_debug_remove_one(opp);
Viresh Kumar129eec52014-11-27 08:54:06 +0530882 list_del_rcu(&opp->node);
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530883 call_srcu(&opp_table->srcu_head.srcu, &opp->rcu_head, _kfree_opp_rcu);
Viresh Kumar129eec52014-11-27 08:54:06 +0530884
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530885 _remove_opp_table(opp_table);
Viresh Kumar129eec52014-11-27 08:54:06 +0530886}
887
888/**
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530889 * dev_pm_opp_remove() - Remove an OPP from OPP table
Viresh Kumar129eec52014-11-27 08:54:06 +0530890 * @dev: device for which we do this operation
891 * @freq: OPP to remove with matching 'freq'
892 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530893 * This function removes an opp from the opp table.
Nishanth Menon984f16c2014-12-24 11:22:57 -0600894 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530895 * Locking: The internal opp_table and opp structures are RCU protected.
Nishanth Menon984f16c2014-12-24 11:22:57 -0600896 * Hence this function internally uses RCU updater strategy with mutex locks
897 * to keep the integrity of the internal data structures. Callers should ensure
898 * that this function is *NOT* called under RCU protection or in contexts where
899 * mutex cannot be locked.
Viresh Kumar129eec52014-11-27 08:54:06 +0530900 */
901void dev_pm_opp_remove(struct device *dev, unsigned long freq)
902{
903 struct dev_pm_opp *opp;
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530904 struct opp_table *opp_table;
Viresh Kumar129eec52014-11-27 08:54:06 +0530905 bool found = false;
906
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530907 /* Hold our table modification lock here */
908 mutex_lock(&opp_table_lock);
Viresh Kumar129eec52014-11-27 08:54:06 +0530909
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530910 opp_table = _find_opp_table(dev);
911 if (IS_ERR(opp_table))
Viresh Kumar129eec52014-11-27 08:54:06 +0530912 goto unlock;
913
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530914 list_for_each_entry(opp, &opp_table->opp_list, node) {
Viresh Kumar129eec52014-11-27 08:54:06 +0530915 if (opp->rate == freq) {
916 found = true;
917 break;
918 }
919 }
920
921 if (!found) {
922 dev_warn(dev, "%s: Couldn't find OPP with freq: %lu\n",
923 __func__, freq);
924 goto unlock;
925 }
926
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530927 _opp_remove(opp_table, opp, true);
Viresh Kumar129eec52014-11-27 08:54:06 +0530928unlock:
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530929 mutex_unlock(&opp_table_lock);
Viresh Kumar129eec52014-11-27 08:54:06 +0530930}
931EXPORT_SYMBOL_GPL(dev_pm_opp_remove);
932
Viresh Kumarf47b72a2016-05-05 16:20:33 +0530933struct dev_pm_opp *_allocate_opp(struct device *dev,
934 struct opp_table **opp_table)
Viresh Kumar23dacf62015-07-29 16:23:01 +0530935{
936 struct dev_pm_opp *opp;
937
938 /* allocate new OPP node */
939 opp = kzalloc(sizeof(*opp), GFP_KERNEL);
940 if (!opp)
941 return NULL;
942
943 INIT_LIST_HEAD(&opp->node);
944
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530945 *opp_table = _add_opp_table(dev);
946 if (!*opp_table) {
Viresh Kumar23dacf62015-07-29 16:23:01 +0530947 kfree(opp);
948 return NULL;
949 }
950
951 return opp;
952}
953
Viresh Kumar7d34d562016-02-09 10:30:34 +0530954static bool _opp_supported_by_regulators(struct dev_pm_opp *opp,
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530955 struct opp_table *opp_table)
Viresh Kumar7d34d562016-02-09 10:30:34 +0530956{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530957 struct regulator *reg = opp_table->regulator;
Viresh Kumar7d34d562016-02-09 10:30:34 +0530958
Viresh Kumar0c717d02016-02-15 21:56:42 +0530959 if (!IS_ERR(reg) &&
Viresh Kumar7d34d562016-02-09 10:30:34 +0530960 !regulator_is_supported_voltage(reg, opp->u_volt_min,
961 opp->u_volt_max)) {
962 pr_warn("%s: OPP minuV: %lu maxuV: %lu, not supported by regulator\n",
963 __func__, opp->u_volt_min, opp->u_volt_max);
964 return false;
965 }
966
967 return true;
968}
969
Viresh Kumarf47b72a2016-05-05 16:20:33 +0530970int _opp_add(struct device *dev, struct dev_pm_opp *new_opp,
971 struct opp_table *opp_table)
Viresh Kumar23dacf62015-07-29 16:23:01 +0530972{
973 struct dev_pm_opp *opp;
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530974 struct list_head *head = &opp_table->opp_list;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530975 int ret;
Viresh Kumar23dacf62015-07-29 16:23:01 +0530976
977 /*
978 * Insert new OPP in order of increasing frequency and discard if
979 * already present.
980 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530981 * Need to use &opp_table->opp_list in the condition part of the 'for'
Viresh Kumar23dacf62015-07-29 16:23:01 +0530982 * loop, don't replace it with head otherwise it will become an infinite
983 * loop.
984 */
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530985 list_for_each_entry_rcu(opp, &opp_table->opp_list, node) {
Viresh Kumar23dacf62015-07-29 16:23:01 +0530986 if (new_opp->rate > opp->rate) {
987 head = &opp->node;
988 continue;
989 }
990
991 if (new_opp->rate < opp->rate)
992 break;
993
994 /* Duplicate OPPs */
Viresh Kumar06441652015-07-29 16:23:04 +0530995 dev_warn(dev, "%s: duplicate OPPs detected. Existing: freq: %lu, volt: %lu, enabled: %d. New: freq: %lu, volt: %lu, enabled: %d\n",
Viresh Kumar23dacf62015-07-29 16:23:01 +0530996 __func__, opp->rate, opp->u_volt, opp->available,
997 new_opp->rate, new_opp->u_volt, new_opp->available);
998
999 return opp->available && new_opp->u_volt == opp->u_volt ?
1000 0 : -EEXIST;
1001 }
1002
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301003 new_opp->opp_table = opp_table;
Viresh Kumar23dacf62015-07-29 16:23:01 +05301004 list_add_rcu(&new_opp->node, head);
1005
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301006 ret = opp_debug_create_one(new_opp, opp_table);
Viresh Kumardeaa5142015-11-11 07:59:01 +05301007 if (ret)
1008 dev_err(dev, "%s: Failed to register opp to debugfs (%d)\n",
1009 __func__, ret);
1010
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301011 if (!_opp_supported_by_regulators(new_opp, opp_table)) {
Viresh Kumar7d34d562016-02-09 10:30:34 +05301012 new_opp->available = false;
1013 dev_warn(dev, "%s: OPP not supported by regulators (%lu)\n",
1014 __func__, new_opp->rate);
1015 }
1016
Viresh Kumar23dacf62015-07-29 16:23:01 +05301017 return 0;
1018}
1019
Viresh Kumar737002b2015-07-29 16:22:58 +05301020/**
Viresh Kumarb64b9c32015-10-15 21:42:44 +05301021 * _opp_add_v1() - Allocate a OPP based on v1 bindings.
Nishanth Menone1f60b22010-10-13 00:13:10 +02001022 * @dev: device for which we do this operation
1023 * @freq: Frequency in Hz for this OPP
1024 * @u_volt: Voltage in uVolts for this OPP
1025 * @dynamic: Dynamically added OPPs.
1026 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301027 * This function adds an opp definition to the opp table and returns status.
Nishanth Menone1f60b22010-10-13 00:13:10 +02001028 * The opp is made available by default and it can be controlled using
1029 * dev_pm_opp_enable/disable functions and may be removed by dev_pm_opp_remove.
1030 *
Viresh Kumar8f8d37b2015-09-04 13:47:24 +05301031 * NOTE: "dynamic" parameter impacts OPPs added by the dev_pm_opp_of_add_table
1032 * and freed by dev_pm_opp_of_remove_table.
Nishanth Menone1f60b22010-10-13 00:13:10 +02001033 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301034 * Locking: The internal opp_table and opp structures are RCU protected.
Nishanth Menone1f60b22010-10-13 00:13:10 +02001035 * Hence this function internally uses RCU updater strategy with mutex locks
1036 * to keep the integrity of the internal data structures. Callers should ensure
1037 * that this function is *NOT* called under RCU protection or in contexts where
1038 * mutex cannot be locked.
1039 *
1040 * Return:
1041 * 0 On success OR
1042 * Duplicate OPPs (both freq and volt are same) and opp->available
1043 * -EEXIST Freq are same and volt are different OR
1044 * Duplicate OPPs (both freq and volt are same) and !opp->available
1045 * -ENOMEM Memory allocation failure
1046 */
Viresh Kumarf47b72a2016-05-05 16:20:33 +05301047int _opp_add_v1(struct device *dev, unsigned long freq, long u_volt,
1048 bool dynamic)
Nishanth Menone1f60b22010-10-13 00:13:10 +02001049{
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301050 struct opp_table *opp_table;
Viresh Kumar23dacf62015-07-29 16:23:01 +05301051 struct dev_pm_opp *new_opp;
Viresh Kumar50f8cfb2016-02-09 10:30:37 +05301052 unsigned long tol;
Nishanth Menone1f60b22010-10-13 00:13:10 +02001053 int ret;
1054
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301055 /* Hold our table modification lock here */
1056 mutex_lock(&opp_table_lock);
Nishanth Menone1f60b22010-10-13 00:13:10 +02001057
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301058 new_opp = _allocate_opp(dev, &opp_table);
Viresh Kumar23dacf62015-07-29 16:23:01 +05301059 if (!new_opp) {
1060 ret = -ENOMEM;
1061 goto unlock;
1062 }
1063
Nishanth Menone1f60b22010-10-13 00:13:10 +02001064 /* populate the opp table */
1065 new_opp->rate = freq;
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301066 tol = u_volt * opp_table->voltage_tolerance_v1 / 100;
Nishanth Menone1f60b22010-10-13 00:13:10 +02001067 new_opp->u_volt = u_volt;
Viresh Kumar50f8cfb2016-02-09 10:30:37 +05301068 new_opp->u_volt_min = u_volt - tol;
1069 new_opp->u_volt_max = u_volt + tol;
Nishanth Menone1f60b22010-10-13 00:13:10 +02001070 new_opp->available = true;
Viresh Kumaraa5f2f82015-07-29 16:23:00 +05301071 new_opp->dynamic = dynamic;
Viresh Kumar23dacf62015-07-29 16:23:01 +05301072
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301073 ret = _opp_add(dev, new_opp, opp_table);
Viresh Kumar23dacf62015-07-29 16:23:01 +05301074 if (ret)
1075 goto free_opp;
1076
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301077 mutex_unlock(&opp_table_lock);
Nishanth Menone1f60b22010-10-13 00:13:10 +02001078
1079 /*
1080 * Notify the changes in the availability of the operable
1081 * frequency/voltage list.
1082 */
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301083 srcu_notifier_call_chain(&opp_table->srcu_head, OPP_EVENT_ADD, new_opp);
Nishanth Menone1f60b22010-10-13 00:13:10 +02001084 return 0;
1085
1086free_opp:
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301087 _opp_remove(opp_table, new_opp, false);
Viresh Kumar23dacf62015-07-29 16:23:01 +05301088unlock:
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301089 mutex_unlock(&opp_table_lock);
Nishanth Menone1f60b22010-10-13 00:13:10 +02001090 return ret;
1091}
Viresh Kumar383934092014-11-25 16:04:18 +05301092
Viresh Kumar27465902015-07-29 16:23:02 +05301093/**
Viresh Kumar7de36b02015-12-09 08:01:46 +05301094 * dev_pm_opp_set_supported_hw() - Set supported platforms
1095 * @dev: Device for which supported-hw has to be set.
1096 * @versions: Array of hierarchy of versions to match.
1097 * @count: Number of elements in the array.
1098 *
1099 * This is required only for the V2 bindings, and it enables a platform to
1100 * specify the hierarchy of versions it supports. OPP layer will then enable
1101 * OPPs, which are available for those versions, based on its 'opp-supported-hw'
1102 * property.
1103 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301104 * Locking: The internal opp_table and opp structures are RCU protected.
Viresh Kumar7de36b02015-12-09 08:01:46 +05301105 * Hence this function internally uses RCU updater strategy with mutex locks
1106 * to keep the integrity of the internal data structures. Callers should ensure
1107 * that this function is *NOT* called under RCU protection or in contexts where
1108 * mutex cannot be locked.
1109 */
1110int dev_pm_opp_set_supported_hw(struct device *dev, const u32 *versions,
1111 unsigned int count)
1112{
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301113 struct opp_table *opp_table;
Viresh Kumar7de36b02015-12-09 08:01:46 +05301114 int ret = 0;
1115
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301116 /* Hold our table modification lock here */
1117 mutex_lock(&opp_table_lock);
Viresh Kumar7de36b02015-12-09 08:01:46 +05301118
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301119 opp_table = _add_opp_table(dev);
1120 if (!opp_table) {
Viresh Kumar7de36b02015-12-09 08:01:46 +05301121 ret = -ENOMEM;
1122 goto unlock;
1123 }
1124
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301125 /* Make sure there are no concurrent readers while updating opp_table */
1126 WARN_ON(!list_empty(&opp_table->opp_list));
Viresh Kumar7de36b02015-12-09 08:01:46 +05301127
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301128 /* Do we already have a version hierarchy associated with opp_table? */
1129 if (opp_table->supported_hw) {
Viresh Kumar7de36b02015-12-09 08:01:46 +05301130 dev_err(dev, "%s: Already have supported hardware list\n",
1131 __func__);
1132 ret = -EBUSY;
1133 goto err;
1134 }
1135
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301136 opp_table->supported_hw = kmemdup(versions, count * sizeof(*versions),
Viresh Kumar7de36b02015-12-09 08:01:46 +05301137 GFP_KERNEL);
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301138 if (!opp_table->supported_hw) {
Viresh Kumar7de36b02015-12-09 08:01:46 +05301139 ret = -ENOMEM;
1140 goto err;
1141 }
1142
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301143 opp_table->supported_hw_count = count;
1144 mutex_unlock(&opp_table_lock);
Viresh Kumar7de36b02015-12-09 08:01:46 +05301145 return 0;
1146
1147err:
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301148 _remove_opp_table(opp_table);
Viresh Kumar7de36b02015-12-09 08:01:46 +05301149unlock:
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301150 mutex_unlock(&opp_table_lock);
Viresh Kumar7de36b02015-12-09 08:01:46 +05301151
1152 return ret;
1153}
1154EXPORT_SYMBOL_GPL(dev_pm_opp_set_supported_hw);
1155
1156/**
1157 * dev_pm_opp_put_supported_hw() - Releases resources blocked for supported hw
Viresh Kumara5da6442016-02-16 14:17:52 +05301158 * @dev: Device for which supported-hw has to be put.
Viresh Kumar7de36b02015-12-09 08:01:46 +05301159 *
1160 * This is required only for the V2 bindings, and is called for a matching
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301161 * dev_pm_opp_set_supported_hw(). Until this is called, the opp_table structure
Viresh Kumar7de36b02015-12-09 08:01:46 +05301162 * will not be freed.
1163 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301164 * Locking: The internal opp_table and opp structures are RCU protected.
Viresh Kumar7de36b02015-12-09 08:01:46 +05301165 * Hence this function internally uses RCU updater strategy with mutex locks
1166 * to keep the integrity of the internal data structures. Callers should ensure
1167 * that this function is *NOT* called under RCU protection or in contexts where
1168 * mutex cannot be locked.
1169 */
1170void dev_pm_opp_put_supported_hw(struct device *dev)
1171{
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301172 struct opp_table *opp_table;
Viresh Kumar7de36b02015-12-09 08:01:46 +05301173
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301174 /* Hold our table modification lock here */
1175 mutex_lock(&opp_table_lock);
Viresh Kumar7de36b02015-12-09 08:01:46 +05301176
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301177 /* Check for existing table for 'dev' first */
1178 opp_table = _find_opp_table(dev);
1179 if (IS_ERR(opp_table)) {
1180 dev_err(dev, "Failed to find opp_table: %ld\n",
1181 PTR_ERR(opp_table));
Viresh Kumar7de36b02015-12-09 08:01:46 +05301182 goto unlock;
1183 }
1184
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301185 /* Make sure there are no concurrent readers while updating opp_table */
1186 WARN_ON(!list_empty(&opp_table->opp_list));
Viresh Kumar7de36b02015-12-09 08:01:46 +05301187
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301188 if (!opp_table->supported_hw) {
Viresh Kumar7de36b02015-12-09 08:01:46 +05301189 dev_err(dev, "%s: Doesn't have supported hardware list\n",
1190 __func__);
1191 goto unlock;
1192 }
1193
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301194 kfree(opp_table->supported_hw);
1195 opp_table->supported_hw = NULL;
1196 opp_table->supported_hw_count = 0;
Viresh Kumar7de36b02015-12-09 08:01:46 +05301197
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301198 /* Try freeing opp_table if this was the last blocking resource */
1199 _remove_opp_table(opp_table);
Viresh Kumar7de36b02015-12-09 08:01:46 +05301200
1201unlock:
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301202 mutex_unlock(&opp_table_lock);
Viresh Kumar7de36b02015-12-09 08:01:46 +05301203}
1204EXPORT_SYMBOL_GPL(dev_pm_opp_put_supported_hw);
1205
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301206/**
1207 * dev_pm_opp_set_prop_name() - Set prop-extn name
Viresh Kumara5da6442016-02-16 14:17:52 +05301208 * @dev: Device for which the prop-name has to be set.
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301209 * @name: name to postfix to properties.
1210 *
1211 * This is required only for the V2 bindings, and it enables a platform to
1212 * specify the extn to be used for certain property names. The properties to
1213 * which the extension will apply are opp-microvolt and opp-microamp. OPP core
1214 * should postfix the property name with -<name> while looking for them.
1215 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301216 * Locking: The internal opp_table and opp structures are RCU protected.
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301217 * Hence this function internally uses RCU updater strategy with mutex locks
1218 * to keep the integrity of the internal data structures. Callers should ensure
1219 * that this function is *NOT* called under RCU protection or in contexts where
1220 * mutex cannot be locked.
1221 */
1222int dev_pm_opp_set_prop_name(struct device *dev, const char *name)
1223{
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301224 struct opp_table *opp_table;
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301225 int ret = 0;
1226
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301227 /* Hold our table modification lock here */
1228 mutex_lock(&opp_table_lock);
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301229
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301230 opp_table = _add_opp_table(dev);
1231 if (!opp_table) {
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301232 ret = -ENOMEM;
1233 goto unlock;
1234 }
1235
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301236 /* Make sure there are no concurrent readers while updating opp_table */
1237 WARN_ON(!list_empty(&opp_table->opp_list));
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301238
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301239 /* Do we already have a prop-name associated with opp_table? */
1240 if (opp_table->prop_name) {
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301241 dev_err(dev, "%s: Already have prop-name %s\n", __func__,
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301242 opp_table->prop_name);
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301243 ret = -EBUSY;
1244 goto err;
1245 }
1246
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301247 opp_table->prop_name = kstrdup(name, GFP_KERNEL);
1248 if (!opp_table->prop_name) {
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301249 ret = -ENOMEM;
1250 goto err;
1251 }
1252
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301253 mutex_unlock(&opp_table_lock);
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301254 return 0;
1255
1256err:
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301257 _remove_opp_table(opp_table);
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301258unlock:
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301259 mutex_unlock(&opp_table_lock);
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301260
1261 return ret;
1262}
1263EXPORT_SYMBOL_GPL(dev_pm_opp_set_prop_name);
1264
1265/**
1266 * dev_pm_opp_put_prop_name() - Releases resources blocked for prop-name
Viresh Kumara5da6442016-02-16 14:17:52 +05301267 * @dev: Device for which the prop-name has to be put.
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301268 *
1269 * This is required only for the V2 bindings, and is called for a matching
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301270 * dev_pm_opp_set_prop_name(). Until this is called, the opp_table structure
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301271 * will not be freed.
1272 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301273 * Locking: The internal opp_table and opp structures are RCU protected.
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301274 * Hence this function internally uses RCU updater strategy with mutex locks
1275 * to keep the integrity of the internal data structures. Callers should ensure
1276 * that this function is *NOT* called under RCU protection or in contexts where
1277 * mutex cannot be locked.
1278 */
1279void dev_pm_opp_put_prop_name(struct device *dev)
1280{
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301281 struct opp_table *opp_table;
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301282
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301283 /* Hold our table modification lock here */
1284 mutex_lock(&opp_table_lock);
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301285
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301286 /* Check for existing table for 'dev' first */
1287 opp_table = _find_opp_table(dev);
1288 if (IS_ERR(opp_table)) {
1289 dev_err(dev, "Failed to find opp_table: %ld\n",
1290 PTR_ERR(opp_table));
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301291 goto unlock;
1292 }
1293
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301294 /* Make sure there are no concurrent readers while updating opp_table */
1295 WARN_ON(!list_empty(&opp_table->opp_list));
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301296
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301297 if (!opp_table->prop_name) {
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301298 dev_err(dev, "%s: Doesn't have a prop-name\n", __func__);
1299 goto unlock;
1300 }
1301
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301302 kfree(opp_table->prop_name);
1303 opp_table->prop_name = NULL;
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301304
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301305 /* Try freeing opp_table if this was the last blocking resource */
1306 _remove_opp_table(opp_table);
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301307
1308unlock:
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301309 mutex_unlock(&opp_table_lock);
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301310}
1311EXPORT_SYMBOL_GPL(dev_pm_opp_put_prop_name);
1312
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301313/**
1314 * dev_pm_opp_set_regulator() - Set regulator name for the device
1315 * @dev: Device for which regulator name is being set.
1316 * @name: Name of the regulator.
1317 *
1318 * In order to support OPP switching, OPP layer needs to know the name of the
1319 * device's regulator, as the core would be required to switch voltages as well.
1320 *
1321 * This must be called before any OPPs are initialized for the device.
1322 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301323 * Locking: The internal opp_table and opp structures are RCU protected.
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301324 * Hence this function internally uses RCU updater strategy with mutex locks
1325 * to keep the integrity of the internal data structures. Callers should ensure
1326 * that this function is *NOT* called under RCU protection or in contexts where
1327 * mutex cannot be locked.
1328 */
Stephen Boydc7a8a0a2016-11-30 16:21:25 +05301329struct opp_table *dev_pm_opp_set_regulator(struct device *dev, const char *name)
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301330{
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301331 struct opp_table *opp_table;
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301332 struct regulator *reg;
1333 int ret;
1334
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301335 mutex_lock(&opp_table_lock);
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301336
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301337 opp_table = _add_opp_table(dev);
1338 if (!opp_table) {
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301339 ret = -ENOMEM;
1340 goto unlock;
1341 }
1342
1343 /* This should be called before OPPs are initialized */
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301344 if (WARN_ON(!list_empty(&opp_table->opp_list))) {
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301345 ret = -EBUSY;
1346 goto err;
1347 }
1348
1349 /* Already have a regulator set */
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301350 if (WARN_ON(!IS_ERR(opp_table->regulator))) {
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301351 ret = -EBUSY;
1352 goto err;
1353 }
1354 /* Allocate the regulator */
1355 reg = regulator_get_optional(dev, name);
1356 if (IS_ERR(reg)) {
1357 ret = PTR_ERR(reg);
1358 if (ret != -EPROBE_DEFER)
1359 dev_err(dev, "%s: no regulator (%s) found: %d\n",
1360 __func__, name, ret);
1361 goto err;
1362 }
1363
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301364 opp_table->regulator = reg;
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301365
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301366 mutex_unlock(&opp_table_lock);
Stephen Boydc7a8a0a2016-11-30 16:21:25 +05301367 return opp_table;
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301368
1369err:
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301370 _remove_opp_table(opp_table);
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301371unlock:
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301372 mutex_unlock(&opp_table_lock);
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301373
Stephen Boydc7a8a0a2016-11-30 16:21:25 +05301374 return ERR_PTR(ret);
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301375}
1376EXPORT_SYMBOL_GPL(dev_pm_opp_set_regulator);
1377
1378/**
1379 * dev_pm_opp_put_regulator() - Releases resources blocked for regulator
Stephen Boydc7a8a0a2016-11-30 16:21:25 +05301380 * @opp_table: OPP table returned from dev_pm_opp_set_regulator().
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301381 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301382 * Locking: The internal opp_table and opp structures are RCU protected.
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301383 * Hence this function internally uses RCU updater strategy with mutex locks
1384 * to keep the integrity of the internal data structures. Callers should ensure
1385 * that this function is *NOT* called under RCU protection or in contexts where
1386 * mutex cannot be locked.
1387 */
Stephen Boydc7a8a0a2016-11-30 16:21:25 +05301388void dev_pm_opp_put_regulator(struct opp_table *opp_table)
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301389{
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301390 mutex_lock(&opp_table_lock);
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301391
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301392 if (IS_ERR(opp_table->regulator)) {
Stephen Boydc7a8a0a2016-11-30 16:21:25 +05301393 pr_err("%s: Doesn't have regulator set\n", __func__);
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301394 goto unlock;
1395 }
1396
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301397 /* Make sure there are no concurrent readers while updating opp_table */
1398 WARN_ON(!list_empty(&opp_table->opp_list));
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301399
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301400 regulator_put(opp_table->regulator);
1401 opp_table->regulator = ERR_PTR(-ENXIO);
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301402
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301403 /* Try freeing opp_table if this was the last blocking resource */
1404 _remove_opp_table(opp_table);
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301405
1406unlock:
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301407 mutex_unlock(&opp_table_lock);
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301408}
1409EXPORT_SYMBOL_GPL(dev_pm_opp_put_regulator);
1410
Viresh Kumar383934092014-11-25 16:04:18 +05301411/**
Nishanth Menone1f60b22010-10-13 00:13:10 +02001412 * dev_pm_opp_add() - Add an OPP table from a table definitions
1413 * @dev: device for which we do this operation
Nishanth Menon47d43ba2013-09-19 16:03:51 -05001414 * @freq: Frequency in Hz for this OPP
Nishanth Menone1f60b22010-10-13 00:13:10 +02001415 * @u_volt: Voltage in uVolts for this OPP
1416 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301417 * This function adds an opp definition to the opp table and returns status.
Nishanth Menon47d43ba2013-09-19 16:03:51 -05001418 * The opp is made available by default and it can be controlled using
Nishanth Menone1f60b22010-10-13 00:13:10 +02001419 * dev_pm_opp_enable/disable functions.
1420 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301421 * Locking: The internal opp_table and opp structures are RCU protected.
Nishanth Menone1f60b22010-10-13 00:13:10 +02001422 * Hence this function internally uses RCU updater strategy with mutex locks
1423 * to keep the integrity of the internal data structures. Callers should ensure
1424 * that this function is *NOT* called under RCU protection or in contexts where
1425 * mutex cannot be locked.
1426 *
Viresh Kumara7470db2014-11-25 16:04:17 +05301427 * Return:
1428 * 0 On success OR
1429 * Duplicate OPPs (both freq and volt are same) and opp->available
1430 * -EEXIST Freq are same and volt are different OR
1431 * Duplicate OPPs (both freq and volt are same) and !opp->available
Viresh Kumar383934092014-11-25 16:04:18 +05301432 * -ENOMEM Memory allocation failure
Viresh Kumara7470db2014-11-25 16:04:17 +05301433 */
Nishanth Menone1f60b22010-10-13 00:13:10 +02001434int dev_pm_opp_add(struct device *dev, unsigned long freq, unsigned long u_volt)
1435{
Viresh Kumarb64b9c32015-10-15 21:42:44 +05301436 return _opp_add_v1(dev, freq, u_volt, true);
Nishanth Menone1f60b22010-10-13 00:13:10 +02001437}
1438EXPORT_SYMBOL_GPL(dev_pm_opp_add);
1439
Nishanth Menone1f60b22010-10-13 00:13:10 +02001440/**
Nishanth Menon327854c2014-12-24 11:22:56 -06001441 * _opp_set_availability() - helper to set the availability of an opp
Nishanth Menone1f60b22010-10-13 00:13:10 +02001442 * @dev: device for which we do this operation
1443 * @freq: OPP frequency to modify availability
1444 * @availability_req: availability status requested for this opp
1445 *
1446 * Set the availability of an OPP with an RCU operation, opp_{enable,disable}
1447 * share a common logic which is isolated here.
1448 *
Nishanth Menon984f16c2014-12-24 11:22:57 -06001449 * Return: -EINVAL for bad pointers, -ENOMEM if no memory available for the
Stephen Boyde1a2d492015-09-24 12:28:44 -07001450 * copy operation, returns 0 if no modification was done OR modification was
Nishanth Menone1f60b22010-10-13 00:13:10 +02001451 * successful.
1452 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301453 * Locking: The internal opp_table and opp structures are RCU protected.
Nishanth Menone1f60b22010-10-13 00:13:10 +02001454 * Hence this function internally uses RCU updater strategy with mutex locks to
1455 * keep the integrity of the internal data structures. Callers should ensure
1456 * that this function is *NOT* called under RCU protection or in contexts where
1457 * mutex locking or synchronize_rcu() blocking calls cannot be used.
1458 */
Nishanth Menon327854c2014-12-24 11:22:56 -06001459static int _opp_set_availability(struct device *dev, unsigned long freq,
1460 bool availability_req)
Nishanth Menone1f60b22010-10-13 00:13:10 +02001461{
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301462 struct opp_table *opp_table;
Nishanth Menon47d43ba2013-09-19 16:03:51 -05001463 struct dev_pm_opp *new_opp, *tmp_opp, *opp = ERR_PTR(-ENODEV);
Nishanth Menone1f60b22010-10-13 00:13:10 +02001464 int r = 0;
1465
1466 /* keep the node allocated */
Nishanth Menon47d43ba2013-09-19 16:03:51 -05001467 new_opp = kmalloc(sizeof(*new_opp), GFP_KERNEL);
Quentin Lambert59d84ca2015-02-09 10:45:32 +01001468 if (!new_opp)
Nishanth Menone1f60b22010-10-13 00:13:10 +02001469 return -ENOMEM;
Nishanth Menone1f60b22010-10-13 00:13:10 +02001470
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301471 mutex_lock(&opp_table_lock);
Nishanth Menone1f60b22010-10-13 00:13:10 +02001472
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301473 /* Find the opp_table */
1474 opp_table = _find_opp_table(dev);
1475 if (IS_ERR(opp_table)) {
1476 r = PTR_ERR(opp_table);
Nishanth Menone1f60b22010-10-13 00:13:10 +02001477 dev_warn(dev, "%s: Device OPP not found (%d)\n", __func__, r);
1478 goto unlock;
1479 }
1480
1481 /* Do we have the frequency? */
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301482 list_for_each_entry(tmp_opp, &opp_table->opp_list, node) {
Nishanth Menone1f60b22010-10-13 00:13:10 +02001483 if (tmp_opp->rate == freq) {
1484 opp = tmp_opp;
1485 break;
1486 }
1487 }
1488 if (IS_ERR(opp)) {
1489 r = PTR_ERR(opp);
1490 goto unlock;
1491 }
1492
1493 /* Is update really needed? */
1494 if (opp->available == availability_req)
1495 goto unlock;
1496 /* copy the old data over */
1497 *new_opp = *opp;
1498
1499 /* plug in new node */
1500 new_opp->available = availability_req;
1501
1502 list_replace_rcu(&opp->node, &new_opp->node);
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301503 mutex_unlock(&opp_table_lock);
1504 call_srcu(&opp_table->srcu_head.srcu, &opp->rcu_head, _kfree_opp_rcu);
Nishanth Menone1f60b22010-10-13 00:13:10 +02001505
MyungJoo Ham03ca3702011-09-30 22:35:12 +02001506 /* Notify the change of the OPP availability */
1507 if (availability_req)
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301508 srcu_notifier_call_chain(&opp_table->srcu_head,
1509 OPP_EVENT_ENABLE, new_opp);
MyungJoo Ham03ca3702011-09-30 22:35:12 +02001510 else
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301511 srcu_notifier_call_chain(&opp_table->srcu_head,
1512 OPP_EVENT_DISABLE, new_opp);
MyungJoo Ham03ca3702011-09-30 22:35:12 +02001513
Vincent Guittotdde84372012-10-23 01:21:49 +02001514 return 0;
Nishanth Menone1f60b22010-10-13 00:13:10 +02001515
1516unlock:
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301517 mutex_unlock(&opp_table_lock);
Nishanth Menone1f60b22010-10-13 00:13:10 +02001518 kfree(new_opp);
1519 return r;
1520}
1521
1522/**
Nishanth Menon5d4879c2013-09-19 16:03:50 -05001523 * dev_pm_opp_enable() - Enable a specific OPP
Nishanth Menone1f60b22010-10-13 00:13:10 +02001524 * @dev: device for which we do this operation
1525 * @freq: OPP frequency to enable
1526 *
1527 * Enables a provided opp. If the operation is valid, this returns 0, else the
1528 * corresponding error value. It is meant to be used for users an OPP available
Nishanth Menon5d4879c2013-09-19 16:03:50 -05001529 * after being temporarily made unavailable with dev_pm_opp_disable.
Nishanth Menone1f60b22010-10-13 00:13:10 +02001530 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301531 * Locking: The internal opp_table and opp structures are RCU protected.
Nishanth Menone1f60b22010-10-13 00:13:10 +02001532 * Hence this function indirectly uses RCU and mutex locks to keep the
1533 * integrity of the internal data structures. Callers should ensure that
1534 * this function is *NOT* called under RCU protection or in contexts where
1535 * mutex locking or synchronize_rcu() blocking calls cannot be used.
Nishanth Menon984f16c2014-12-24 11:22:57 -06001536 *
1537 * Return: -EINVAL for bad pointers, -ENOMEM if no memory available for the
Stephen Boyde1a2d492015-09-24 12:28:44 -07001538 * copy operation, returns 0 if no modification was done OR modification was
Nishanth Menon984f16c2014-12-24 11:22:57 -06001539 * successful.
Nishanth Menone1f60b22010-10-13 00:13:10 +02001540 */
Nishanth Menon5d4879c2013-09-19 16:03:50 -05001541int dev_pm_opp_enable(struct device *dev, unsigned long freq)
Nishanth Menone1f60b22010-10-13 00:13:10 +02001542{
Nishanth Menon327854c2014-12-24 11:22:56 -06001543 return _opp_set_availability(dev, freq, true);
Nishanth Menone1f60b22010-10-13 00:13:10 +02001544}
Nishanth Menon5d4879c2013-09-19 16:03:50 -05001545EXPORT_SYMBOL_GPL(dev_pm_opp_enable);
Nishanth Menone1f60b22010-10-13 00:13:10 +02001546
1547/**
Nishanth Menon5d4879c2013-09-19 16:03:50 -05001548 * dev_pm_opp_disable() - Disable a specific OPP
Nishanth Menone1f60b22010-10-13 00:13:10 +02001549 * @dev: device for which we do this operation
1550 * @freq: OPP frequency to disable
1551 *
1552 * Disables a provided opp. If the operation is valid, this returns
1553 * 0, else the corresponding error value. It is meant to be a temporary
1554 * control by users to make this OPP not available until the circumstances are
Nishanth Menon5d4879c2013-09-19 16:03:50 -05001555 * right to make it available again (with a call to dev_pm_opp_enable).
Nishanth Menone1f60b22010-10-13 00:13:10 +02001556 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301557 * Locking: The internal opp_table and opp structures are RCU protected.
Nishanth Menone1f60b22010-10-13 00:13:10 +02001558 * Hence this function indirectly uses RCU and mutex locks to keep the
1559 * integrity of the internal data structures. Callers should ensure that
1560 * this function is *NOT* called under RCU protection or in contexts where
1561 * mutex locking or synchronize_rcu() blocking calls cannot be used.
Nishanth Menon984f16c2014-12-24 11:22:57 -06001562 *
1563 * Return: -EINVAL for bad pointers, -ENOMEM if no memory available for the
Stephen Boyde1a2d492015-09-24 12:28:44 -07001564 * copy operation, returns 0 if no modification was done OR modification was
Nishanth Menon984f16c2014-12-24 11:22:57 -06001565 * successful.
Nishanth Menone1f60b22010-10-13 00:13:10 +02001566 */
Nishanth Menon5d4879c2013-09-19 16:03:50 -05001567int dev_pm_opp_disable(struct device *dev, unsigned long freq)
Nishanth Menone1f60b22010-10-13 00:13:10 +02001568{
Nishanth Menon327854c2014-12-24 11:22:56 -06001569 return _opp_set_availability(dev, freq, false);
Nishanth Menone1f60b22010-10-13 00:13:10 +02001570}
Nishanth Menon5d4879c2013-09-19 16:03:50 -05001571EXPORT_SYMBOL_GPL(dev_pm_opp_disable);
Nishanth Menone1f60b22010-10-13 00:13:10 +02001572
MyungJoo Ham03ca3702011-09-30 22:35:12 +02001573/**
Nishanth Menon5d4879c2013-09-19 16:03:50 -05001574 * dev_pm_opp_get_notifier() - find notifier_head of the device with opp
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301575 * @dev: device pointer used to lookup OPP table.
Nishanth Menon984f16c2014-12-24 11:22:57 -06001576 *
1577 * Return: pointer to notifier head if found, otherwise -ENODEV or
1578 * -EINVAL based on type of error casted as pointer. value must be checked
1579 * with IS_ERR to determine valid pointer or error result.
1580 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301581 * Locking: This function must be called under rcu_read_lock(). opp_table is a
1582 * RCU protected pointer. The reason for the same is that the opp pointer which
1583 * is returned will remain valid for use with opp_get_{voltage, freq} only while
Nishanth Menon984f16c2014-12-24 11:22:57 -06001584 * under the locked area. The pointer returned must be used prior to unlocking
1585 * with rcu_read_unlock() to maintain the integrity of the pointer.
MyungJoo Ham03ca3702011-09-30 22:35:12 +02001586 */
Nishanth Menon5d4879c2013-09-19 16:03:50 -05001587struct srcu_notifier_head *dev_pm_opp_get_notifier(struct device *dev)
MyungJoo Ham03ca3702011-09-30 22:35:12 +02001588{
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301589 struct opp_table *opp_table = _find_opp_table(dev);
MyungJoo Ham03ca3702011-09-30 22:35:12 +02001590
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301591 if (IS_ERR(opp_table))
1592 return ERR_CAST(opp_table); /* matching type */
MyungJoo Ham03ca3702011-09-30 22:35:12 +02001593
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301594 return &opp_table->srcu_head;
MyungJoo Ham03ca3702011-09-30 22:35:12 +02001595}
Nishanth Menon4679ec32014-12-24 11:22:55 -06001596EXPORT_SYMBOL_GPL(dev_pm_opp_get_notifier);
Shawn Guob496dfb2012-09-05 01:09:12 +02001597
Sudeep Holla411466c2016-05-03 15:05:04 +01001598/*
1599 * Free OPPs either created using static entries present in DT or even the
1600 * dynamically added entries based on remove_all param.
Shawn Guob496dfb2012-09-05 01:09:12 +02001601 */
Viresh Kumarf47b72a2016-05-05 16:20:33 +05301602void _dev_pm_opp_remove_table(struct device *dev, bool remove_all)
Viresh Kumar737002b2015-07-29 16:22:58 +05301603{
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301604 struct opp_table *opp_table;
Viresh Kumar737002b2015-07-29 16:22:58 +05301605 struct dev_pm_opp *opp, *tmp;
1606
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301607 /* Hold our table modification lock here */
1608 mutex_lock(&opp_table_lock);
Viresh Kumar06441652015-07-29 16:23:04 +05301609
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301610 /* Check for existing table for 'dev' */
1611 opp_table = _find_opp_table(dev);
1612 if (IS_ERR(opp_table)) {
1613 int error = PTR_ERR(opp_table);
Viresh Kumar737002b2015-07-29 16:22:58 +05301614
1615 if (error != -ENODEV)
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301616 WARN(1, "%s: opp_table: %d\n",
Viresh Kumar737002b2015-07-29 16:22:58 +05301617 IS_ERR_OR_NULL(dev) ?
1618 "Invalid device" : dev_name(dev),
1619 error);
Viresh Kumar06441652015-07-29 16:23:04 +05301620 goto unlock;
Viresh Kumar737002b2015-07-29 16:22:58 +05301621 }
1622
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301623 /* Find if opp_table manages a single device */
1624 if (list_is_singular(&opp_table->dev_list)) {
Viresh Kumar06441652015-07-29 16:23:04 +05301625 /* Free static OPPs */
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301626 list_for_each_entry_safe(opp, tmp, &opp_table->opp_list, node) {
Sudeep Holla411466c2016-05-03 15:05:04 +01001627 if (remove_all || !opp->dynamic)
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301628 _opp_remove(opp_table, opp, true);
Viresh Kumar06441652015-07-29 16:23:04 +05301629 }
1630 } else {
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301631 _remove_opp_dev(_find_opp_dev(dev, opp_table), opp_table);
Viresh Kumar737002b2015-07-29 16:22:58 +05301632 }
1633
Viresh Kumar06441652015-07-29 16:23:04 +05301634unlock:
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301635 mutex_unlock(&opp_table_lock);
Viresh Kumar737002b2015-07-29 16:22:58 +05301636}
Viresh Kumar129eec52014-11-27 08:54:06 +05301637
1638/**
Sudeep Holla411466c2016-05-03 15:05:04 +01001639 * dev_pm_opp_remove_table() - Free all OPPs associated with the device
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301640 * @dev: device pointer used to lookup OPP table.
Viresh Kumar129eec52014-11-27 08:54:06 +05301641 *
Sudeep Holla411466c2016-05-03 15:05:04 +01001642 * Free both OPPs created using static entries present in DT and the
1643 * dynamically added entries.
Nishanth Menon984f16c2014-12-24 11:22:57 -06001644 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301645 * Locking: The internal opp_table and opp structures are RCU protected.
Nishanth Menon984f16c2014-12-24 11:22:57 -06001646 * Hence this function indirectly uses RCU updater strategy with mutex locks
1647 * to keep the integrity of the internal data structures. Callers should ensure
1648 * that this function is *NOT* called under RCU protection or in contexts where
1649 * mutex cannot be locked.
Viresh Kumar129eec52014-11-27 08:54:06 +05301650 */
Sudeep Holla411466c2016-05-03 15:05:04 +01001651void dev_pm_opp_remove_table(struct device *dev)
Viresh Kumar129eec52014-11-27 08:54:06 +05301652{
Sudeep Holla411466c2016-05-03 15:05:04 +01001653 _dev_pm_opp_remove_table(dev, true);
Viresh Kumar8d4d4e92015-06-12 17:10:38 +05301654}
Sudeep Holla411466c2016-05-03 15:05:04 +01001655EXPORT_SYMBOL_GPL(dev_pm_opp_remove_table);