Linux 5.19-rc1
[linux-block.git] / drivers / opp / core.c
CommitLineData
d2912cb1 1// SPDX-License-Identifier: GPL-2.0-only
e1f60b29
NM
2/*
3 * Generic OPP Interface
4 *
5 * Copyright (C) 2009-2010 Texas Instruments Incorporated.
6 * Nishanth Menon
7 * Romit Dasgupta
8 * Kevin Hilman
e1f60b29
NM
9 */
10
d6d2a528
VK
11#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12
d54974c2 13#include <linux/clk.h>
e1f60b29
NM
14#include <linux/errno.h>
15#include <linux/err.h>
e1f60b29 16#include <linux/slab.h>
51990e82 17#include <linux/device.h>
80126ce7 18#include <linux/export.h>
009acd19 19#include <linux/pm_domain.h>
9f8ea969 20#include <linux/regulator/consumer.h>
e1f60b29 21
f59d3ee8 22#include "opp.h"
e1f60b29
NM
23
24/*
2c2709dc
VK
25 * The root of the list of all opp-tables. All opp_table structures branch off
26 * from here, with each opp_table containing the list of opps it supports in
e1f60b29
NM
27 * various states of availability.
28 */
f47b72a1 29LIST_HEAD(opp_tables);
7eba0c76
VK
30
31/* OPP tables with uninitialized required OPPs */
32LIST_HEAD(lazy_opp_tables);
33
e1f60b29 34/* Lock to allow exclusive modification to the device and opp lists */
2c2709dc 35DEFINE_MUTEX(opp_table_lock);
27c09484
VK
36/* Flag indicating that opp_tables list is being updated at the moment */
37static bool opp_tables_busy;
e1f60b29 38
9e62edac 39static bool _find_opp_dev(const struct device *dev, struct opp_table *opp_table)
06441658 40{
2c2709dc 41 struct opp_device *opp_dev;
9e62edac 42 bool found = false;
06441658 43
9e62edac 44 mutex_lock(&opp_table->lock);
2c2709dc 45 list_for_each_entry(opp_dev, &opp_table->dev_list, node)
9e62edac
VK
46 if (opp_dev->dev == dev) {
47 found = true;
48 break;
49 }
06441658 50
9e62edac
VK
51 mutex_unlock(&opp_table->lock);
52 return found;
06441658
VK
53}
54
6ac42397 55static struct opp_table *_find_opp_table_unlocked(struct device *dev)
5b650b38
VK
56{
57 struct opp_table *opp_table;
58
59 list_for_each_entry(opp_table, &opp_tables, node) {
9e62edac 60 if (_find_opp_dev(dev, opp_table)) {
5b650b38 61 _get_opp_table_kref(opp_table);
5b650b38
VK
62 return opp_table;
63 }
64 }
65
66 return ERR_PTR(-ENODEV);
67}
68
e1f60b29 69/**
2c2709dc
VK
70 * _find_opp_table() - find opp_table struct using device pointer
71 * @dev: device pointer used to lookup OPP table
e1f60b29 72 *
052c6f19 73 * Search OPP table for one containing matching device.
e1f60b29 74 *
2c2709dc 75 * Return: pointer to 'struct opp_table' if found, otherwise -ENODEV or
e1f60b29
NM
76 * -EINVAL based on type of error.
77 *
5b650b38 78 * The callers must call dev_pm_opp_put_opp_table() after the table is used.
e1f60b29 79 */
2c2709dc 80struct opp_table *_find_opp_table(struct device *dev)
e1f60b29 81{
2c2709dc 82 struct opp_table *opp_table;
e1f60b29 83
50a3cb04 84 if (IS_ERR_OR_NULL(dev)) {
e1f60b29
NM
85 pr_err("%s: Invalid parameters\n", __func__);
86 return ERR_PTR(-EINVAL);
87 }
88
5b650b38
VK
89 mutex_lock(&opp_table_lock);
90 opp_table = _find_opp_table_unlocked(dev);
91 mutex_unlock(&opp_table_lock);
e1f60b29 92
5b650b38 93 return opp_table;
e1f60b29
NM
94}
95
96/**
d6d00742 97 * dev_pm_opp_get_voltage() - Gets the voltage corresponding to an opp
e1f60b29
NM
98 * @opp: opp for which voltage has to be returned for
99 *
984f16c8 100 * Return: voltage in micro volt corresponding to the opp, else
e1f60b29
NM
101 * return 0
102 *
dfbe4678 103 * This is useful only for devices with single power supply.
e1f60b29 104 */
47d43ba7 105unsigned long dev_pm_opp_get_voltage(struct dev_pm_opp *opp)
e1f60b29 106{
052c6f19 107 if (IS_ERR_OR_NULL(opp)) {
e1f60b29 108 pr_err("%s: Invalid parameters\n", __func__);
052c6f19
VK
109 return 0;
110 }
e1f60b29 111
052c6f19 112 return opp->supplies[0].u_volt;
e1f60b29 113}
5d4879cd 114EXPORT_SYMBOL_GPL(dev_pm_opp_get_voltage);
e1f60b29 115
4f9a7a1d
LL
116/**
117 * dev_pm_opp_get_power() - Gets the power corresponding to an opp
118 * @opp: opp for which power has to be returned for
119 *
120 * Return: power in micro watt corresponding to the opp, else
121 * return 0
122 *
123 * This is useful only for devices with single power supply.
124 */
125unsigned long dev_pm_opp_get_power(struct dev_pm_opp *opp)
126{
127 unsigned long opp_power = 0;
128 int i;
129
130 if (IS_ERR_OR_NULL(opp)) {
131 pr_err("%s: Invalid parameters\n", __func__);
132 return 0;
133 }
134 for (i = 0; i < opp->opp_table->regulator_count; i++)
135 opp_power += opp->supplies[i].u_watt;
136
137 return opp_power;
138}
139EXPORT_SYMBOL_GPL(dev_pm_opp_get_power);
140
e1f60b29 141/**
5d4879cd 142 * dev_pm_opp_get_freq() - Gets the frequency corresponding to an available opp
e1f60b29
NM
143 * @opp: opp for which frequency has to be returned for
144 *
984f16c8 145 * Return: frequency in hertz corresponding to the opp, else
e1f60b29 146 * return 0
e1f60b29 147 */
47d43ba7 148unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp)
e1f60b29 149{
06a8a059 150 if (IS_ERR_OR_NULL(opp)) {
e1f60b29 151 pr_err("%s: Invalid parameters\n", __func__);
052c6f19
VK
152 return 0;
153 }
e1f60b29 154
052c6f19 155 return opp->rate;
e1f60b29 156}
5d4879cd 157EXPORT_SYMBOL_GPL(dev_pm_opp_get_freq);
e1f60b29 158
5b93ac54
RN
159/**
160 * dev_pm_opp_get_level() - Gets the level corresponding to an available opp
161 * @opp: opp for which level value has to be returned for
162 *
163 * Return: level read from device tree corresponding to the opp, else
164 * return 0.
165 */
166unsigned int dev_pm_opp_get_level(struct dev_pm_opp *opp)
167{
168 if (IS_ERR_OR_NULL(opp) || !opp->available) {
169 pr_err("%s: Invalid parameters\n", __func__);
170 return 0;
171 }
172
173 return opp->level;
174}
175EXPORT_SYMBOL_GPL(dev_pm_opp_get_level);
176
597ff543
DO
177/**
178 * dev_pm_opp_get_required_pstate() - Gets the required performance state
179 * corresponding to an available opp
180 * @opp: opp for which performance state has to be returned for
181 * @index: index of the required opp
182 *
183 * Return: performance state read from device tree corresponding to the
184 * required opp, else return 0.
185 */
186unsigned int dev_pm_opp_get_required_pstate(struct dev_pm_opp *opp,
187 unsigned int index)
188{
189 if (IS_ERR_OR_NULL(opp) || !opp->available ||
190 index >= opp->opp_table->required_opp_count) {
191 pr_err("%s: Invalid parameters\n", __func__);
192 return 0;
193 }
194
7eba0c76
VK
195 /* required-opps not fully initialized yet */
196 if (lazy_linking_pending(opp->opp_table))
197 return 0;
198
597ff543
DO
199 return opp->required_opps[index]->pstate;
200}
201EXPORT_SYMBOL_GPL(dev_pm_opp_get_required_pstate);
202
19445b25
BZ
203/**
204 * dev_pm_opp_is_turbo() - Returns if opp is turbo OPP or not
205 * @opp: opp for which turbo mode is being verified
206 *
207 * Turbo OPPs are not for normal use, and can be enabled (under certain
208 * conditions) for short duration of times to finish high throughput work
209 * quickly. Running on them for longer times may overheat the chip.
210 *
211 * Return: true if opp is turbo opp, else false.
19445b25
BZ
212 */
213bool dev_pm_opp_is_turbo(struct dev_pm_opp *opp)
214{
052c6f19 215 if (IS_ERR_OR_NULL(opp) || !opp->available) {
19445b25
BZ
216 pr_err("%s: Invalid parameters\n", __func__);
217 return false;
218 }
219
052c6f19 220 return opp->turbo;
19445b25
BZ
221}
222EXPORT_SYMBOL_GPL(dev_pm_opp_is_turbo);
223
3ca9bb33
VK
224/**
225 * dev_pm_opp_get_max_clock_latency() - Get max clock latency in nanoseconds
226 * @dev: device for which we do this operation
227 *
228 * Return: This function returns the max clock latency in nanoseconds.
3ca9bb33
VK
229 */
230unsigned long dev_pm_opp_get_max_clock_latency(struct device *dev)
231{
2c2709dc 232 struct opp_table *opp_table;
3ca9bb33
VK
233 unsigned long clock_latency_ns;
234
2c2709dc
VK
235 opp_table = _find_opp_table(dev);
236 if (IS_ERR(opp_table))
5b650b38
VK
237 return 0;
238
239 clock_latency_ns = opp_table->clock_latency_ns_max;
240
241 dev_pm_opp_put_opp_table(opp_table);
3ca9bb33 242
3ca9bb33
VK
243 return clock_latency_ns;
244}
245EXPORT_SYMBOL_GPL(dev_pm_opp_get_max_clock_latency);
246
655c9df9
VK
247/**
248 * dev_pm_opp_get_max_volt_latency() - Get max voltage latency in nanoseconds
249 * @dev: device for which we do this operation
250 *
251 * Return: This function returns the max voltage latency in nanoseconds.
655c9df9
VK
252 */
253unsigned long dev_pm_opp_get_max_volt_latency(struct device *dev)
254{
2c2709dc 255 struct opp_table *opp_table;
655c9df9 256 struct dev_pm_opp *opp;
478256bd 257 struct regulator *reg;
655c9df9 258 unsigned long latency_ns = 0;
dfbe4678
VK
259 int ret, i, count;
260 struct {
261 unsigned long min;
262 unsigned long max;
263 } *uV;
264
cdd3e614
VK
265 opp_table = _find_opp_table(dev);
266 if (IS_ERR(opp_table))
267 return 0;
268
dfbe4678 269 /* Regulator may not be required for the device */
90e3577b 270 if (!opp_table->regulators)
cdd3e614 271 goto put_opp_table;
dfbe4678 272
90e3577b
VK
273 count = opp_table->regulator_count;
274
dfbe4678
VK
275 uV = kmalloc_array(count, sizeof(*uV), GFP_KERNEL);
276 if (!uV)
478256bd 277 goto put_opp_table;
655c9df9 278
052c6f19
VK
279 mutex_lock(&opp_table->lock);
280
dfbe4678
VK
281 for (i = 0; i < count; i++) {
282 uV[i].min = ~0;
283 uV[i].max = 0;
655c9df9 284
052c6f19 285 list_for_each_entry(opp, &opp_table->opp_list, node) {
dfbe4678
VK
286 if (!opp->available)
287 continue;
288
289 if (opp->supplies[i].u_volt_min < uV[i].min)
290 uV[i].min = opp->supplies[i].u_volt_min;
291 if (opp->supplies[i].u_volt_max > uV[i].max)
292 uV[i].max = opp->supplies[i].u_volt_max;
293 }
655c9df9
VK
294 }
295
052c6f19 296 mutex_unlock(&opp_table->lock);
655c9df9
VK
297
298 /*
2c2709dc 299 * The caller needs to ensure that opp_table (and hence the regulator)
655c9df9
VK
300 * isn't freed, while we are executing this routine.
301 */
8cc31116 302 for (i = 0; i < count; i++) {
478256bd 303 reg = opp_table->regulators[i];
dfbe4678
VK
304 ret = regulator_set_voltage_time(reg, uV[i].min, uV[i].max);
305 if (ret > 0)
306 latency_ns += ret * 1000;
307 }
308
dfbe4678 309 kfree(uV);
cdd3e614
VK
310put_opp_table:
311 dev_pm_opp_put_opp_table(opp_table);
655c9df9
VK
312
313 return latency_ns;
314}
315EXPORT_SYMBOL_GPL(dev_pm_opp_get_max_volt_latency);
316
21743447
VK
317/**
318 * dev_pm_opp_get_max_transition_latency() - Get max transition latency in
319 * nanoseconds
320 * @dev: device for which we do this operation
321 *
322 * Return: This function returns the max transition latency, in nanoseconds, to
323 * switch from one OPP to other.
21743447
VK
324 */
325unsigned long dev_pm_opp_get_max_transition_latency(struct device *dev)
326{
327 return dev_pm_opp_get_max_volt_latency(dev) +
328 dev_pm_opp_get_max_clock_latency(dev);
329}
330EXPORT_SYMBOL_GPL(dev_pm_opp_get_max_transition_latency);
331
4eafbd15 332/**
3aa26a3b 333 * dev_pm_opp_get_suspend_opp_freq() - Get frequency of suspend opp in Hz
4eafbd15
BZ
334 * @dev: device for which we do this operation
335 *
3aa26a3b
VK
336 * Return: This function returns the frequency of the OPP marked as suspend_opp
337 * if one is available, else returns 0;
4eafbd15 338 */
3aa26a3b 339unsigned long dev_pm_opp_get_suspend_opp_freq(struct device *dev)
4eafbd15 340{
2c2709dc 341 struct opp_table *opp_table;
3aa26a3b 342 unsigned long freq = 0;
4eafbd15 343
2c2709dc 344 opp_table = _find_opp_table(dev);
5b650b38
VK
345 if (IS_ERR(opp_table))
346 return 0;
3aa26a3b 347
5b650b38
VK
348 if (opp_table->suspend_opp && opp_table->suspend_opp->available)
349 freq = dev_pm_opp_get_freq(opp_table->suspend_opp);
350
351 dev_pm_opp_put_opp_table(opp_table);
4eafbd15 352
3aa26a3b 353 return freq;
4eafbd15 354}
3aa26a3b 355EXPORT_SYMBOL_GPL(dev_pm_opp_get_suspend_opp_freq);
4eafbd15 356
a1e8c136
VK
357int _get_opp_count(struct opp_table *opp_table)
358{
359 struct dev_pm_opp *opp;
360 int count = 0;
361
362 mutex_lock(&opp_table->lock);
363
364 list_for_each_entry(opp, &opp_table->opp_list, node) {
365 if (opp->available)
366 count++;
367 }
368
369 mutex_unlock(&opp_table->lock);
370
371 return count;
372}
373
e1f60b29 374/**
2c2709dc 375 * dev_pm_opp_get_opp_count() - Get number of opps available in the opp table
e1f60b29
NM
376 * @dev: device for which we do this operation
377 *
984f16c8 378 * Return: This function returns the number of available opps if there are any,
e1f60b29 379 * else returns 0 if none or the corresponding error value.
e1f60b29 380 */
5d4879cd 381int dev_pm_opp_get_opp_count(struct device *dev)
e1f60b29 382{
2c2709dc 383 struct opp_table *opp_table;
a1e8c136 384 int count;
e1f60b29 385
2c2709dc
VK
386 opp_table = _find_opp_table(dev);
387 if (IS_ERR(opp_table)) {
388 count = PTR_ERR(opp_table);
035ed072 389 dev_dbg(dev, "%s: OPP table not found (%d)\n",
b4718c02 390 __func__, count);
09f662f9 391 return count;
e1f60b29
NM
392 }
393
a1e8c136 394 count = _get_opp_count(opp_table);
5b650b38
VK
395 dev_pm_opp_put_opp_table(opp_table);
396
e1f60b29
NM
397 return count;
398}
5d4879cd 399EXPORT_SYMBOL_GPL(dev_pm_opp_get_opp_count);
e1f60b29
NM
400
401/**
5d4879cd 402 * dev_pm_opp_find_freq_exact() - search for an exact frequency
e1f60b29
NM
403 * @dev: device for which we do this operation
404 * @freq: frequency to search for
7ae49618 405 * @available: true/false - match for available opp
e1f60b29 406 *
2c2709dc 407 * Return: Searches for exact match in the opp table and returns pointer to the
984f16c8
NM
408 * matching opp if found, else returns ERR_PTR in case of error and should
409 * be handled using IS_ERR. Error return values can be:
0779726c
NM
410 * EINVAL: for bad pointer
411 * ERANGE: no match found for search
412 * ENODEV: if device not found in list of registered devices
e1f60b29
NM
413 *
414 * Note: available is a modifier for the search. if available=true, then the
415 * match is for exact matching frequency and is available in the stored OPP
416 * table. if false, the match is for exact frequency which is not available.
417 *
418 * This provides a mechanism to enable an opp which is not available currently
419 * or the opposite as well.
420 *
8a31d9d9
VK
421 * The callers are required to call dev_pm_opp_put() for the returned OPP after
422 * use.
e1f60b29 423 */
47d43ba7
NM
424struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
425 unsigned long freq,
426 bool available)
e1f60b29 427{
2c2709dc 428 struct opp_table *opp_table;
47d43ba7 429 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
e1f60b29 430
2c2709dc
VK
431 opp_table = _find_opp_table(dev);
432 if (IS_ERR(opp_table)) {
433 int r = PTR_ERR(opp_table);
434
435 dev_err(dev, "%s: OPP table not found (%d)\n", __func__, r);
e1f60b29
NM
436 return ERR_PTR(r);
437 }
438
052c6f19 439 mutex_lock(&opp_table->lock);
5b650b38 440
052c6f19 441 list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
e1f60b29
NM
442 if (temp_opp->available == available &&
443 temp_opp->rate == freq) {
444 opp = temp_opp;
8a31d9d9
VK
445
446 /* Increment the reference count of OPP */
447 dev_pm_opp_get(opp);
e1f60b29
NM
448 break;
449 }
450 }
451
052c6f19 452 mutex_unlock(&opp_table->lock);
5b650b38 453 dev_pm_opp_put_opp_table(opp_table);
8a31d9d9 454
e1f60b29
NM
455 return opp;
456}
5d4879cd 457EXPORT_SYMBOL_GPL(dev_pm_opp_find_freq_exact);
e1f60b29 458
067b7ce0
JZ
459static noinline struct dev_pm_opp *_find_freq_ceil(struct opp_table *opp_table,
460 unsigned long *freq)
461{
462 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
463
052c6f19
VK
464 mutex_lock(&opp_table->lock);
465
466 list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
067b7ce0
JZ
467 if (temp_opp->available && temp_opp->rate >= *freq) {
468 opp = temp_opp;
469 *freq = opp->rate;
8a31d9d9
VK
470
471 /* Increment the reference count of OPP */
472 dev_pm_opp_get(opp);
067b7ce0
JZ
473 break;
474 }
475 }
476
052c6f19
VK
477 mutex_unlock(&opp_table->lock);
478
067b7ce0
JZ
479 return opp;
480}
481
e1f60b29 482/**
5d4879cd 483 * dev_pm_opp_find_freq_ceil() - Search for an rounded ceil freq
e1f60b29
NM
484 * @dev: device for which we do this operation
485 * @freq: Start frequency
486 *
487 * Search for the matching ceil *available* OPP from a starting freq
488 * for a device.
489 *
984f16c8 490 * Return: matching *opp and refreshes *freq accordingly, else returns
0779726c
NM
491 * ERR_PTR in case of error and should be handled using IS_ERR. Error return
492 * values can be:
493 * EINVAL: for bad pointer
494 * ERANGE: no match found for search
495 * ENODEV: if device not found in list of registered devices
e1f60b29 496 *
8a31d9d9
VK
497 * The callers are required to call dev_pm_opp_put() for the returned OPP after
498 * use.
e1f60b29 499 */
47d43ba7
NM
500struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
501 unsigned long *freq)
e1f60b29 502{
2c2709dc 503 struct opp_table *opp_table;
8a31d9d9 504 struct dev_pm_opp *opp;
b02ded24 505
e1f60b29
NM
506 if (!dev || !freq) {
507 dev_err(dev, "%s: Invalid argument freq=%p\n", __func__, freq);
508 return ERR_PTR(-EINVAL);
509 }
510
2c2709dc 511 opp_table = _find_opp_table(dev);
5b650b38 512 if (IS_ERR(opp_table))
2c2709dc 513 return ERR_CAST(opp_table);
5b650b38 514
8a31d9d9 515 opp = _find_freq_ceil(opp_table, freq);
e1f60b29 516
5b650b38 517 dev_pm_opp_put_opp_table(opp_table);
8a31d9d9
VK
518
519 return opp;
e1f60b29 520}
5d4879cd 521EXPORT_SYMBOL_GPL(dev_pm_opp_find_freq_ceil);
e1f60b29
NM
522
523/**
5d4879cd 524 * dev_pm_opp_find_freq_floor() - Search for a rounded floor freq
e1f60b29
NM
525 * @dev: device for which we do this operation
526 * @freq: Start frequency
527 *
528 * Search for the matching floor *available* OPP from a starting freq
529 * for a device.
530 *
984f16c8 531 * Return: matching *opp and refreshes *freq accordingly, else returns
0779726c
NM
532 * ERR_PTR in case of error and should be handled using IS_ERR. Error return
533 * values can be:
534 * EINVAL: for bad pointer
535 * ERANGE: no match found for search
536 * ENODEV: if device not found in list of registered devices
e1f60b29 537 *
8a31d9d9
VK
538 * The callers are required to call dev_pm_opp_put() for the returned OPP after
539 * use.
e1f60b29 540 */
47d43ba7
NM
541struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
542 unsigned long *freq)
e1f60b29 543{
2c2709dc 544 struct opp_table *opp_table;
47d43ba7 545 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
e1f60b29
NM
546
547 if (!dev || !freq) {
548 dev_err(dev, "%s: Invalid argument freq=%p\n", __func__, freq);
549 return ERR_PTR(-EINVAL);
550 }
551
2c2709dc 552 opp_table = _find_opp_table(dev);
5b650b38 553 if (IS_ERR(opp_table))
2c2709dc 554 return ERR_CAST(opp_table);
5b650b38 555
052c6f19 556 mutex_lock(&opp_table->lock);
e1f60b29 557
052c6f19 558 list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
e1f60b29
NM
559 if (temp_opp->available) {
560 /* go to the next node, before choosing prev */
561 if (temp_opp->rate > *freq)
562 break;
563 else
564 opp = temp_opp;
565 }
566 }
8a31d9d9
VK
567
568 /* Increment the reference count of OPP */
569 if (!IS_ERR(opp))
570 dev_pm_opp_get(opp);
052c6f19 571 mutex_unlock(&opp_table->lock);
5b650b38 572 dev_pm_opp_put_opp_table(opp_table);
8a31d9d9 573
e1f60b29
NM
574 if (!IS_ERR(opp))
575 *freq = opp->rate;
576
577 return opp;
578}
5d4879cd 579EXPORT_SYMBOL_GPL(dev_pm_opp_find_freq_floor);
e1f60b29 580
2f36bde0
AC
581/**
582 * dev_pm_opp_find_freq_ceil_by_volt() - Find OPP with highest frequency for
583 * target voltage.
584 * @dev: Device for which we do this operation.
585 * @u_volt: Target voltage.
586 *
587 * Search for OPP with highest (ceil) frequency and has voltage <= u_volt.
588 *
589 * Return: matching *opp, else returns ERR_PTR in case of error which should be
590 * handled using IS_ERR.
591 *
592 * Error return values can be:
593 * EINVAL: bad parameters
594 *
595 * The callers are required to call dev_pm_opp_put() for the returned OPP after
596 * use.
597 */
598struct dev_pm_opp *dev_pm_opp_find_freq_ceil_by_volt(struct device *dev,
599 unsigned long u_volt)
600{
601 struct opp_table *opp_table;
602 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
603
604 if (!dev || !u_volt) {
605 dev_err(dev, "%s: Invalid argument volt=%lu\n", __func__,
606 u_volt);
607 return ERR_PTR(-EINVAL);
608 }
609
610 opp_table = _find_opp_table(dev);
611 if (IS_ERR(opp_table))
612 return ERR_CAST(opp_table);
613
614 mutex_lock(&opp_table->lock);
615
616 list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
617 if (temp_opp->available) {
618 if (temp_opp->supplies[0].u_volt > u_volt)
619 break;
620 opp = temp_opp;
621 }
622 }
623
624 /* Increment the reference count of OPP */
625 if (!IS_ERR(opp))
626 dev_pm_opp_get(opp);
627
628 mutex_unlock(&opp_table->lock);
629 dev_pm_opp_put_opp_table(opp_table);
630
631 return opp;
632}
633EXPORT_SYMBOL_GPL(dev_pm_opp_find_freq_ceil_by_volt);
634
22079af7
VK
635/**
636 * dev_pm_opp_find_level_exact() - search for an exact level
637 * @dev: device for which we do this operation
638 * @level: level to search for
639 *
640 * Return: Searches for exact match in the opp table and returns pointer to the
641 * matching opp if found, else returns ERR_PTR in case of error and should
642 * be handled using IS_ERR. Error return values can be:
643 * EINVAL: for bad pointer
644 * ERANGE: no match found for search
645 * ENODEV: if device not found in list of registered devices
646 *
647 * The callers are required to call dev_pm_opp_put() for the returned OPP after
648 * use.
649 */
650struct dev_pm_opp *dev_pm_opp_find_level_exact(struct device *dev,
651 unsigned int level)
652{
653 struct opp_table *opp_table;
654 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
655
656 opp_table = _find_opp_table(dev);
657 if (IS_ERR(opp_table)) {
658 int r = PTR_ERR(opp_table);
659
660 dev_err(dev, "%s: OPP table not found (%d)\n", __func__, r);
661 return ERR_PTR(r);
662 }
663
664 mutex_lock(&opp_table->lock);
665
666 list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
667 if (temp_opp->level == level) {
668 opp = temp_opp;
669
670 /* Increment the reference count of OPP */
671 dev_pm_opp_get(opp);
672 break;
673 }
674 }
675
676 mutex_unlock(&opp_table->lock);
677 dev_pm_opp_put_opp_table(opp_table);
678
679 return opp;
680}
681EXPORT_SYMBOL_GPL(dev_pm_opp_find_level_exact);
682
683/**
684 * dev_pm_opp_find_level_ceil() - search for an rounded up level
685 * @dev: device for which we do this operation
686 * @level: level to search for
687 *
688 * Return: Searches for rounded up match in the opp table and returns pointer
689 * to the matching opp if found, else returns ERR_PTR in case of error and
690 * should be handled using IS_ERR. Error return values can be:
691 * EINVAL: for bad pointer
692 * ERANGE: no match found for search
693 * ENODEV: if device not found in list of registered devices
694 *
695 * The callers are required to call dev_pm_opp_put() for the returned OPP after
696 * use.
697 */
698struct dev_pm_opp *dev_pm_opp_find_level_ceil(struct device *dev,
699 unsigned int *level)
700{
701 struct opp_table *opp_table;
702 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
703
704 opp_table = _find_opp_table(dev);
705 if (IS_ERR(opp_table)) {
706 int r = PTR_ERR(opp_table);
707
708 dev_err(dev, "%s: OPP table not found (%d)\n", __func__, r);
709 return ERR_PTR(r);
710 }
711
712 mutex_lock(&opp_table->lock);
713
714 list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
715 if (temp_opp->available && temp_opp->level >= *level) {
716 opp = temp_opp;
717 *level = opp->level;
718
719 /* Increment the reference count of OPP */
720 dev_pm_opp_get(opp);
721 break;
722 }
723 }
724
725 mutex_unlock(&opp_table->lock);
726 dev_pm_opp_put_opp_table(opp_table);
727
728 return opp;
729}
730EXPORT_SYMBOL_GPL(dev_pm_opp_find_level_ceil);
731
00ce3873
KK
732/**
733 * dev_pm_opp_find_bw_ceil() - Search for a rounded ceil bandwidth
734 * @dev: device for which we do this operation
735 * @freq: start bandwidth
736 * @index: which bandwidth to compare, in case of OPPs with several values
737 *
738 * Search for the matching floor *available* OPP from a starting bandwidth
739 * for a device.
740 *
741 * Return: matching *opp and refreshes *bw accordingly, else returns
742 * ERR_PTR in case of error and should be handled using IS_ERR. Error return
743 * values can be:
744 * EINVAL: for bad pointer
745 * ERANGE: no match found for search
746 * ENODEV: if device not found in list of registered devices
747 *
748 * The callers are required to call dev_pm_opp_put() for the returned OPP after
749 * use.
750 */
751struct dev_pm_opp *dev_pm_opp_find_bw_ceil(struct device *dev,
752 unsigned int *bw, int index)
753{
754 struct opp_table *opp_table;
755 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
756
757 if (!dev || !bw) {
758 dev_err(dev, "%s: Invalid argument bw=%p\n", __func__, bw);
759 return ERR_PTR(-EINVAL);
760 }
761
762 opp_table = _find_opp_table(dev);
763 if (IS_ERR(opp_table))
764 return ERR_CAST(opp_table);
765
766 if (index >= opp_table->path_count)
767 return ERR_PTR(-EINVAL);
768
769 mutex_lock(&opp_table->lock);
770
771 list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
772 if (temp_opp->available && temp_opp->bandwidth) {
773 if (temp_opp->bandwidth[index].peak >= *bw) {
774 opp = temp_opp;
775 *bw = opp->bandwidth[index].peak;
776
777 /* Increment the reference count of OPP */
778 dev_pm_opp_get(opp);
779 break;
780 }
781 }
782 }
783
784 mutex_unlock(&opp_table->lock);
785 dev_pm_opp_put_opp_table(opp_table);
786
787 return opp;
788}
789EXPORT_SYMBOL_GPL(dev_pm_opp_find_bw_ceil);
790
791/**
792 * dev_pm_opp_find_bw_floor() - Search for a rounded floor bandwidth
793 * @dev: device for which we do this operation
794 * @freq: start bandwidth
795 * @index: which bandwidth to compare, in case of OPPs with several values
796 *
797 * Search for the matching floor *available* OPP from a starting bandwidth
798 * for a device.
799 *
800 * Return: matching *opp and refreshes *bw accordingly, else returns
801 * ERR_PTR in case of error and should be handled using IS_ERR. Error return
802 * values can be:
803 * EINVAL: for bad pointer
804 * ERANGE: no match found for search
805 * ENODEV: if device not found in list of registered devices
806 *
807 * The callers are required to call dev_pm_opp_put() for the returned OPP after
808 * use.
809 */
810struct dev_pm_opp *dev_pm_opp_find_bw_floor(struct device *dev,
811 unsigned int *bw, int index)
812{
813 struct opp_table *opp_table;
814 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
815
816 if (!dev || !bw) {
817 dev_err(dev, "%s: Invalid argument bw=%p\n", __func__, bw);
818 return ERR_PTR(-EINVAL);
819 }
820
821 opp_table = _find_opp_table(dev);
822 if (IS_ERR(opp_table))
823 return ERR_CAST(opp_table);
824
825 if (index >= opp_table->path_count)
826 return ERR_PTR(-EINVAL);
827
828 mutex_lock(&opp_table->lock);
829
830 list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
831 if (temp_opp->available && temp_opp->bandwidth) {
832 /* go to the next node, before choosing prev */
833 if (temp_opp->bandwidth[index].peak > *bw)
834 break;
835 opp = temp_opp;
836 }
837 }
838
839 /* Increment the reference count of OPP */
840 if (!IS_ERR(opp))
841 dev_pm_opp_get(opp);
842 mutex_unlock(&opp_table->lock);
843 dev_pm_opp_put_opp_table(opp_table);
844
845 if (!IS_ERR(opp))
846 *bw = opp->bandwidth[index].peak;
847
848 return opp;
849}
850EXPORT_SYMBOL_GPL(dev_pm_opp_find_bw_floor);
851
6a0712f6 852static int _set_opp_voltage(struct device *dev, struct regulator *reg,
ce31781a 853 struct dev_pm_opp_supply *supply)
6a0712f6
VK
854{
855 int ret;
856
857 /* Regulator not available for device */
858 if (IS_ERR(reg)) {
859 dev_dbg(dev, "%s: regulator not available: %ld\n", __func__,
860 PTR_ERR(reg));
861 return 0;
862 }
863
ce31781a
VK
864 dev_dbg(dev, "%s: voltages (mV): %lu %lu %lu\n", __func__,
865 supply->u_volt_min, supply->u_volt, supply->u_volt_max);
6a0712f6 866
ce31781a
VK
867 ret = regulator_set_voltage_triplet(reg, supply->u_volt_min,
868 supply->u_volt, supply->u_volt_max);
6a0712f6
VK
869 if (ret)
870 dev_err(dev, "%s: failed to set voltage (%lu %lu %lu mV): %d\n",
ce31781a
VK
871 __func__, supply->u_volt_min, supply->u_volt,
872 supply->u_volt_max, ret);
6a0712f6
VK
873
874 return ret;
875}
876
285881b5
VK
877static inline int _generic_set_opp_clk_only(struct device *dev, struct clk *clk,
878 unsigned long freq)
94735585
VK
879{
880 int ret;
881
35e74b2e
VK
882 /* We may reach here for devices which don't change frequency */
883 if (IS_ERR(clk))
884 return 0;
885
94735585
VK
886 ret = clk_set_rate(clk, freq);
887 if (ret) {
888 dev_err(dev, "%s: failed to set clock rate: %d\n", __func__,
889 ret);
890 }
891
892 return ret;
893}
894
8d45719c 895static int _generic_set_opp_regulator(struct opp_table *opp_table,
c74b32fa 896 struct device *dev,
3f62670f 897 struct dev_pm_opp *opp,
c74b32fa 898 unsigned long freq,
3f62670f 899 int scaling_down)
94735585 900{
c74b32fa 901 struct regulator *reg = opp_table->regulators[0];
3f62670f 902 struct dev_pm_opp *old_opp = opp_table->current_opp;
94735585
VK
903 int ret;
904
905 /* This function only supports single regulator per device */
c74b32fa 906 if (WARN_ON(opp_table->regulator_count > 1)) {
94735585
VK
907 dev_err(dev, "multiple regulators are not supported\n");
908 return -EINVAL;
909 }
910
911 /* Scaling up? Scale voltage before frequency */
3f62670f
VK
912 if (!scaling_down) {
913 ret = _set_opp_voltage(dev, reg, opp->supplies);
94735585
VK
914 if (ret)
915 goto restore_voltage;
916 }
917
918 /* Change frequency */
285881b5 919 ret = _generic_set_opp_clk_only(dev, opp_table->clk, freq);
94735585
VK
920 if (ret)
921 goto restore_voltage;
922
923 /* Scaling down? Scale voltage after frequency */
3f62670f
VK
924 if (scaling_down) {
925 ret = _set_opp_voltage(dev, reg, opp->supplies);
94735585
VK
926 if (ret)
927 goto restore_freq;
928 }
929
8d45719c
KK
930 /*
931 * Enable the regulator after setting its voltages, otherwise it breaks
932 * some boot-enabled regulators.
933 */
72f80ce4 934 if (unlikely(!opp_table->enabled)) {
8d45719c
KK
935 ret = regulator_enable(reg);
936 if (ret < 0)
937 dev_warn(dev, "Failed to enable regulator: %d", ret);
8d45719c
KK
938 }
939
94735585
VK
940 return 0;
941
942restore_freq:
3f62670f 943 if (_generic_set_opp_clk_only(dev, opp_table->clk, old_opp->rate))
94735585 944 dev_err(dev, "%s: failed to restore old-freq (%lu Hz)\n",
3f62670f 945 __func__, old_opp->rate);
94735585
VK
946restore_voltage:
947 /* This shouldn't harm even if the voltages weren't updated earlier */
3f62670f 948 _set_opp_voltage(dev, reg, old_opp->supplies);
94735585
VK
949
950 return ret;
951}
952
b00e667a 953static int _set_opp_bw(const struct opp_table *opp_table,
240ae50e 954 struct dev_pm_opp *opp, struct device *dev)
b00e667a
VK
955{
956 u32 avg, peak;
957 int i, ret;
958
959 if (!opp_table->paths)
960 return 0;
961
962 for (i = 0; i < opp_table->path_count; i++) {
240ae50e 963 if (!opp) {
b00e667a
VK
964 avg = 0;
965 peak = 0;
966 } else {
967 avg = opp->bandwidth[i].avg;
968 peak = opp->bandwidth[i].peak;
969 }
970 ret = icc_set_bw(opp_table->paths[i], avg, peak);
971 if (ret) {
972 dev_err(dev, "Failed to %s bandwidth[%d]: %d\n",
240ae50e 973 opp ? "set" : "remove", i, ret);
b00e667a
VK
974 return ret;
975 }
976 }
977
978 return 0;
979}
980
7e535993 981static int _set_opp_custom(const struct opp_table *opp_table,
509e4777
VK
982 struct device *dev, struct dev_pm_opp *opp,
983 unsigned long freq)
7e535993 984{
04b447df 985 struct dev_pm_set_opp_data *data = opp_table->set_opp_data;
509e4777 986 struct dev_pm_opp *old_opp = opp_table->current_opp;
7e535993
VK
987 int size;
988
04b447df
DO
989 /*
990 * We support this only if dev_pm_opp_set_regulators() was called
991 * earlier.
992 */
993 if (opp_table->sod_supplies) {
509e4777
VK
994 size = sizeof(*old_opp->supplies) * opp_table->regulator_count;
995 memcpy(data->old_opp.supplies, old_opp->supplies, size);
996 memcpy(data->new_opp.supplies, opp->supplies, size);
04b447df
DO
997 data->regulator_count = opp_table->regulator_count;
998 } else {
999 data->regulator_count = 0;
1000 }
1001
7e535993 1002 data->regulators = opp_table->regulators;
7e535993
VK
1003 data->clk = opp_table->clk;
1004 data->dev = dev;
509e4777 1005 data->old_opp.rate = old_opp->rate;
7e535993 1006 data->new_opp.rate = freq;
7e535993
VK
1007
1008 return opp_table->set_opp(data);
1009}
1010
60cdeae0
SG
1011static int _set_required_opp(struct device *dev, struct device *pd_dev,
1012 struct dev_pm_opp *opp, int i)
1013{
1014 unsigned int pstate = likely(opp) ? opp->required_opps[i]->pstate : 0;
1015 int ret;
1016
1017 if (!pd_dev)
1018 return 0;
1019
1020 ret = dev_pm_genpd_set_performance_state(pd_dev, pstate);
1021 if (ret) {
1022 dev_err(dev, "Failed to set performance rate of %s: %d (%d)\n",
1023 dev_name(pd_dev), pstate, ret);
1024 }
1025
1026 return ret;
1027}
1028
ca1b5d77
VK
1029/* This is only called for PM domain for now */
1030static int _set_required_opps(struct device *dev,
1031 struct opp_table *opp_table,
2c59138c 1032 struct dev_pm_opp *opp, bool up)
ca1b5d77
VK
1033{
1034 struct opp_table **required_opp_tables = opp_table->required_opp_tables;
1035 struct device **genpd_virt_devs = opp_table->genpd_virt_devs;
ca1b5d77
VK
1036 int i, ret = 0;
1037
1038 if (!required_opp_tables)
1039 return 0;
1040
19526d09
MS
1041 /* required-opps not fully initialized yet */
1042 if (lazy_linking_pending(opp_table))
1043 return -EBUSY;
1044
4fa82a87
HYW
1045 /*
1046 * We only support genpd's OPPs in the "required-opps" for now, as we
1047 * don't know much about other use cases. Error out if the required OPP
1048 * doesn't belong to a genpd.
1049 */
1050 if (unlikely(!required_opp_tables[0]->is_genpd)) {
1051 dev_err(dev, "required-opps don't belong to a genpd\n");
1052 return -ENOENT;
1053 }
1054
ca1b5d77 1055 /* Single genpd case */
60cdeae0
SG
1056 if (!genpd_virt_devs)
1057 return _set_required_opp(dev, dev, opp, 0);
ca1b5d77
VK
1058
1059 /* Multiple genpd case */
1060
1061 /*
1062 * Acquire genpd_virt_dev_lock to make sure we don't use a genpd_dev
1063 * after it is freed from another thread.
1064 */
1065 mutex_lock(&opp_table->genpd_virt_dev_lock);
1066
2c59138c
SG
1067 /* Scaling up? Set required OPPs in normal order, else reverse */
1068 if (up) {
1069 for (i = 0; i < opp_table->required_opp_count; i++) {
1070 ret = _set_required_opp(dev, genpd_virt_devs[i], opp, i);
1071 if (ret)
1072 break;
1073 }
1074 } else {
1075 for (i = opp_table->required_opp_count - 1; i >= 0; i--) {
1076 ret = _set_required_opp(dev, genpd_virt_devs[i], opp, i);
1077 if (ret)
1078 break;
ca1b5d77
VK
1079 }
1080 }
2c59138c 1081
ca1b5d77
VK
1082 mutex_unlock(&opp_table->genpd_virt_dev_lock);
1083
1084 return ret;
1085}
1086
81c4d8a3
VK
1087static void _find_current_opp(struct device *dev, struct opp_table *opp_table)
1088{
1089 struct dev_pm_opp *opp = ERR_PTR(-ENODEV);
1090 unsigned long freq;
1091
1092 if (!IS_ERR(opp_table->clk)) {
1093 freq = clk_get_rate(opp_table->clk);
1094 opp = _find_freq_ceil(opp_table, &freq);
1095 }
1096
1097 /*
1098 * Unable to find the current OPP ? Pick the first from the list since
1099 * it is in ascending order, otherwise rest of the code will need to
1100 * make special checks to validate current_opp.
1101 */
1102 if (IS_ERR(opp)) {
1103 mutex_lock(&opp_table->lock);
1104 opp = list_first_entry(&opp_table->opp_list, struct dev_pm_opp, node);
1105 dev_pm_opp_get(opp);
1106 mutex_unlock(&opp_table->lock);
1107 }
1108
1109 opp_table->current_opp = opp;
1110}
1111
5ad58bba 1112static int _disable_opp_table(struct device *dev, struct opp_table *opp_table)
f3364e17
VK
1113{
1114 int ret;
1115
1116 if (!opp_table->enabled)
1117 return 0;
1118
1119 /*
1120 * Some drivers need to support cases where some platforms may
1121 * have OPP table for the device, while others don't and
1122 * opp_set_rate() just needs to behave like clk_set_rate().
1123 */
1124 if (!_get_opp_count(opp_table))
1125 return 0;
1126
240ae50e 1127 ret = _set_opp_bw(opp_table, NULL, dev);
f3364e17
VK
1128 if (ret)
1129 return ret;
1130
1131 if (opp_table->regulators)
1132 regulator_disable(opp_table->regulators[0]);
1133
2c59138c 1134 ret = _set_required_opps(dev, opp_table, NULL, false);
f3364e17
VK
1135
1136 opp_table->enabled = false;
1137 return ret;
1138}
1139
386ba854
VK
1140static int _set_opp(struct device *dev, struct opp_table *opp_table,
1141 struct dev_pm_opp *opp, unsigned long freq)
6a0712f6 1142{
386ba854 1143 struct dev_pm_opp *old_opp;
f0b88fa4 1144 int scaling_down, ret;
6a0712f6 1145
386ba854
VK
1146 if (unlikely(!opp))
1147 return _disable_opp_table(dev, opp_table);
aca48b61 1148
81c4d8a3
VK
1149 /* Find the currently set OPP if we don't know already */
1150 if (unlikely(!opp_table->current_opp))
1151 _find_current_opp(dev, opp_table);
6a0712f6 1152
81c4d8a3 1153 old_opp = opp_table->current_opp;
81c4d8a3
VK
1154
1155 /* Return early if nothing to do */
de04241a
JM
1156 if (old_opp == opp && opp_table->current_rate == freq &&
1157 opp_table->enabled) {
81c4d8a3 1158 dev_dbg(dev, "%s: OPPs are same, nothing to do\n", __func__);
386ba854 1159 return 0;
6a0712f6
VK
1160 }
1161
f0b88fa4 1162 dev_dbg(dev, "%s: switching OPP: Freq %lu -> %lu Hz, Level %u -> %u, Bw %u -> %u\n",
de04241a
JM
1163 __func__, opp_table->current_rate, freq, old_opp->level,
1164 opp->level, old_opp->bandwidth ? old_opp->bandwidth[0].peak : 0,
f0b88fa4
VK
1165 opp->bandwidth ? opp->bandwidth[0].peak : 0);
1166
1167 scaling_down = _opp_compare_key(old_opp, opp);
1168 if (scaling_down == -1)
1169 scaling_down = 0;
dfbe4678 1170
ca1b5d77 1171 /* Scaling up? Configure required OPPs before frequency */
f0b88fa4 1172 if (!scaling_down) {
2c59138c 1173 ret = _set_required_opps(dev, opp_table, opp, true);
870d5d96
VK
1174 if (ret) {
1175 dev_err(dev, "Failed to set required opps: %d\n", ret);
1176 return ret;
1177 }
1178
1179 ret = _set_opp_bw(opp_table, opp, dev);
1180 if (ret) {
1181 dev_err(dev, "Failed to set bw: %d\n", ret);
386ba854 1182 return ret;
870d5d96 1183 }
ca1b5d77
VK
1184 }
1185
7e535993 1186 if (opp_table->set_opp) {
509e4777 1187 ret = _set_opp_custom(opp_table, dev, opp, freq);
7e535993 1188 } else if (opp_table->regulators) {
3f62670f
VK
1189 ret = _generic_set_opp_regulator(opp_table, dev, opp, freq,
1190 scaling_down);
c74b32fa 1191 } else {
7e535993 1192 /* Only frequency scaling */
1d3c42ca 1193 ret = _generic_set_opp_clk_only(dev, opp_table->clk, freq);
ca1b5d77 1194 }
c74b32fa 1195
870d5d96
VK
1196 if (ret)
1197 return ret;
1198
ca1b5d77 1199 /* Scaling down? Configure required OPPs after frequency */
870d5d96
VK
1200 if (scaling_down) {
1201 ret = _set_opp_bw(opp_table, opp, dev);
1202 if (ret) {
1203 dev_err(dev, "Failed to set bw: %d\n", ret);
1204 return ret;
1205 }
1206
2c59138c 1207 ret = _set_required_opps(dev, opp_table, opp, false);
870d5d96 1208 if (ret) {
ca1b5d77 1209 dev_err(dev, "Failed to set required opps: %d\n", ret);
870d5d96
VK
1210 return ret;
1211 }
dfbe4678
VK
1212 }
1213
870d5d96
VK
1214 opp_table->enabled = true;
1215 dev_pm_opp_put(old_opp);
81c4d8a3 1216
870d5d96
VK
1217 /* Make sure current_opp doesn't get freed */
1218 dev_pm_opp_get(opp);
1219 opp_table->current_opp = opp;
de04241a 1220 opp_table->current_rate = freq;
fe2af402 1221
386ba854
VK
1222 return ret;
1223}
1224
1225/**
1226 * dev_pm_opp_set_rate() - Configure new OPP based on frequency
1227 * @dev: device for which we do this operation
1228 * @target_freq: frequency to achieve
1229 *
1230 * This configures the power-supplies to the levels specified by the OPP
1231 * corresponding to the target_freq, and programs the clock to a value <=
1232 * target_freq, as rounded by clk_round_rate(). Device wanting to run at fmax
1233 * provided by the opp, should have already rounded to the target OPP's
1234 * frequency.
1235 */
1236int dev_pm_opp_set_rate(struct device *dev, unsigned long target_freq)
1237{
1238 struct opp_table *opp_table;
1239 unsigned long freq = 0, temp_freq;
1240 struct dev_pm_opp *opp = NULL;
1241 int ret;
1242
1243 opp_table = _find_opp_table(dev);
1244 if (IS_ERR(opp_table)) {
1245 dev_err(dev, "%s: device's opp table doesn't exist\n", __func__);
1246 return PTR_ERR(opp_table);
1247 }
1248
1249 if (target_freq) {
1250 /*
1251 * For IO devices which require an OPP on some platforms/SoCs
1252 * while just needing to scale the clock on some others
1253 * we look for empty OPP tables with just a clock handle and
1254 * scale only the clk. This makes dev_pm_opp_set_rate()
1255 * equivalent to a clk_set_rate()
1256 */
1257 if (!_get_opp_count(opp_table)) {
1258 ret = _generic_set_opp_clk_only(dev, opp_table->clk, target_freq);
1259 goto put_opp_table;
1260 }
1261
1262 freq = clk_round_rate(opp_table->clk, target_freq);
1263 if ((long)freq <= 0)
1264 freq = target_freq;
1265
1266 /*
1267 * The clock driver may support finer resolution of the
1268 * frequencies than the OPP table, don't update the frequency we
1269 * pass to clk_set_rate() here.
1270 */
1271 temp_freq = freq;
1272 opp = _find_freq_ceil(opp_table, &temp_freq);
1273 if (IS_ERR(opp)) {
1274 ret = PTR_ERR(opp);
1275 dev_err(dev, "%s: failed to find OPP for freq %lu (%d)\n",
1276 __func__, freq, ret);
1277 goto put_opp_table;
1278 }
1279 }
1280
1281 ret = _set_opp(dev, opp_table, opp, freq);
1282
1283 if (target_freq)
1284 dev_pm_opp_put(opp);
052c6f19 1285put_opp_table:
5b650b38 1286 dev_pm_opp_put_opp_table(opp_table);
052c6f19 1287 return ret;
6a0712f6
VK
1288}
1289EXPORT_SYMBOL_GPL(dev_pm_opp_set_rate);
1290
abbe3483
VK
1291/**
1292 * dev_pm_opp_set_opp() - Configure device for OPP
1293 * @dev: device for which we do this operation
1294 * @opp: OPP to set to
1295 *
1296 * This configures the device based on the properties of the OPP passed to this
1297 * routine.
1298 *
1299 * Return: 0 on success, a negative error number otherwise.
1300 */
1301int dev_pm_opp_set_opp(struct device *dev, struct dev_pm_opp *opp)
1302{
1303 struct opp_table *opp_table;
1304 int ret;
1305
1306 opp_table = _find_opp_table(dev);
1307 if (IS_ERR(opp_table)) {
1308 dev_err(dev, "%s: device opp doesn't exist\n", __func__);
1309 return PTR_ERR(opp_table);
1310 }
1311
1312 ret = _set_opp(dev, opp_table, opp, opp ? opp->rate : 0);
1313 dev_pm_opp_put_opp_table(opp_table);
1314
1315 return ret;
1316}
1317EXPORT_SYMBOL_GPL(dev_pm_opp_set_opp);
1318
2c2709dc 1319/* OPP-dev Helpers */
2c2709dc
VK
1320static void _remove_opp_dev(struct opp_device *opp_dev,
1321 struct opp_table *opp_table)
06441658 1322{
2c2709dc
VK
1323 opp_debug_unregister(opp_dev, opp_table);
1324 list_del(&opp_dev->node);
052c6f19 1325 kfree(opp_dev);
06441658
VK
1326}
1327
ef43f01a
VK
1328struct opp_device *_add_opp_dev(const struct device *dev,
1329 struct opp_table *opp_table)
06441658 1330{
2c2709dc 1331 struct opp_device *opp_dev;
06441658 1332
2c2709dc
VK
1333 opp_dev = kzalloc(sizeof(*opp_dev), GFP_KERNEL);
1334 if (!opp_dev)
06441658
VK
1335 return NULL;
1336
2c2709dc
VK
1337 /* Initialize opp-dev */
1338 opp_dev->dev = dev;
3d255699 1339
ef43f01a 1340 mutex_lock(&opp_table->lock);
052c6f19 1341 list_add(&opp_dev->node, &opp_table->dev_list);
ef43f01a 1342 mutex_unlock(&opp_table->lock);
06441658 1343
2c2709dc 1344 /* Create debugfs entries for the opp_table */
a2dea4cb 1345 opp_debug_register(opp_dev, opp_table);
283d55e6
VK
1346
1347 return opp_dev;
1348}
1349
eb7c8743 1350static struct opp_table *_allocate_opp_table(struct device *dev, int index)
07cce74a 1351{
2c2709dc
VK
1352 struct opp_table *opp_table;
1353 struct opp_device *opp_dev;
d54974c2 1354 int ret;
07cce74a
VK
1355
1356 /*
2c2709dc 1357 * Allocate a new OPP table. In the infrequent case where a new
07cce74a
VK
1358 * device is needed to be added, we pay this penalty.
1359 */
2c2709dc
VK
1360 opp_table = kzalloc(sizeof(*opp_table), GFP_KERNEL);
1361 if (!opp_table)
dd461cd9 1362 return ERR_PTR(-ENOMEM);
07cce74a 1363
3d255699 1364 mutex_init(&opp_table->lock);
4f018bc0 1365 mutex_init(&opp_table->genpd_virt_dev_lock);
2c2709dc 1366 INIT_LIST_HEAD(&opp_table->dev_list);
7eba0c76 1367 INIT_LIST_HEAD(&opp_table->lazy);
06441658 1368
46f48aca
VK
1369 /* Mark regulator count uninitialized */
1370 opp_table->regulator_count = -1;
1371
2c2709dc
VK
1372 opp_dev = _add_opp_dev(dev, opp_table);
1373 if (!opp_dev) {
dd461cd9
SG
1374 ret = -ENOMEM;
1375 goto err;
06441658
VK
1376 }
1377
eb7c8743 1378 _of_init_opp_table(opp_table, dev, index);
50f8cfbd 1379
6d3f922c
GD
1380 /* Find interconnect path(s) for the device */
1381 ret = dev_pm_opp_of_find_icc_paths(dev, opp_table);
dd461cd9
SG
1382 if (ret) {
1383 if (ret == -EPROBE_DEFER)
32439ac7 1384 goto remove_opp_dev;
dd461cd9 1385
6d3f922c
GD
1386 dev_warn(dev, "%s: Error finding interconnect paths: %d\n",
1387 __func__, ret);
dd461cd9 1388 }
6d3f922c 1389
052c6f19 1390 BLOCKING_INIT_NOTIFIER_HEAD(&opp_table->head);
2c2709dc 1391 INIT_LIST_HEAD(&opp_table->opp_list);
f067a982 1392 kref_init(&opp_table->kref);
07cce74a 1393
2c2709dc 1394 return opp_table;
dd461cd9 1395
976509bb
QW
1396remove_opp_dev:
1397 _remove_opp_dev(opp_dev, opp_table);
dd461cd9
SG
1398err:
1399 kfree(opp_table);
1400 return ERR_PTR(ret);
07cce74a
VK
1401}
1402
f067a982 1403void _get_opp_table_kref(struct opp_table *opp_table)
b6160e26 1404{
f067a982
VK
1405 kref_get(&opp_table->kref);
1406}
1407
32439ac7
VK
1408static struct opp_table *_update_opp_table_clk(struct device *dev,
1409 struct opp_table *opp_table,
1410 bool getclk)
1411{
d4a4c7a4
VK
1412 int ret;
1413
32439ac7
VK
1414 /*
1415 * Return early if we don't need to get clk or we have already tried it
1416 * earlier.
1417 */
1418 if (!getclk || IS_ERR(opp_table) || opp_table->clk)
1419 return opp_table;
1420
1421 /* Find clk for the device */
1422 opp_table->clk = clk_get(dev, NULL);
32439ac7 1423
d4a4c7a4
VK
1424 ret = PTR_ERR_OR_ZERO(opp_table->clk);
1425 if (!ret)
1426 return opp_table;
32439ac7 1427
d4a4c7a4 1428 if (ret == -ENOENT) {
32439ac7 1429 dev_dbg(dev, "%s: Couldn't find clock: %d\n", __func__, ret);
d4a4c7a4 1430 return opp_table;
32439ac7
VK
1431 }
1432
d4a4c7a4
VK
1433 dev_pm_opp_put_opp_table(opp_table);
1434 dev_err_probe(dev, ret, "Couldn't find clock\n");
1435
1436 return ERR_PTR(ret);
32439ac7
VK
1437}
1438
27c09484
VK
1439/*
1440 * We need to make sure that the OPP table for a device doesn't get added twice,
1441 * if this routine gets called in parallel with the same device pointer.
1442 *
1443 * The simplest way to enforce that is to perform everything (find existing
1444 * table and if not found, create a new one) under the opp_table_lock, so only
1445 * one creator gets access to the same. But that expands the critical section
1446 * under the lock and may end up causing circular dependencies with frameworks
1447 * like debugfs, interconnect or clock framework as they may be direct or
1448 * indirect users of OPP core.
1449 *
1450 * And for that reason we have to go for a bit tricky implementation here, which
1451 * uses the opp_tables_busy flag to indicate if another creator is in the middle
1452 * of adding an OPP table and others should wait for it to finish.
1453 */
32439ac7
VK
1454struct opp_table *_add_opp_table_indexed(struct device *dev, int index,
1455 bool getclk)
f067a982
VK
1456{
1457 struct opp_table *opp_table;
1458
27c09484 1459again:
f067a982
VK
1460 mutex_lock(&opp_table_lock);
1461
5b650b38
VK
1462 opp_table = _find_opp_table_unlocked(dev);
1463 if (!IS_ERR(opp_table))
f067a982 1464 goto unlock;
f067a982 1465
27c09484
VK
1466 /*
1467 * The opp_tables list or an OPP table's dev_list is getting updated by
1468 * another user, wait for it to finish.
1469 */
1470 if (unlikely(opp_tables_busy)) {
1471 mutex_unlock(&opp_table_lock);
1472 cpu_relax();
1473 goto again;
1474 }
1475
1476 opp_tables_busy = true;
283d55e6 1477 opp_table = _managed_opp(dev, index);
27c09484
VK
1478
1479 /* Drop the lock to reduce the size of critical section */
1480 mutex_unlock(&opp_table_lock);
1481
283d55e6 1482 if (opp_table) {
ef43f01a 1483 if (!_add_opp_dev(dev, opp_table)) {
283d55e6 1484 dev_pm_opp_put_opp_table(opp_table);
dd461cd9 1485 opp_table = ERR_PTR(-ENOMEM);
283d55e6 1486 }
27c09484
VK
1487
1488 mutex_lock(&opp_table_lock);
1489 } else {
1490 opp_table = _allocate_opp_table(dev, index);
1491
1492 mutex_lock(&opp_table_lock);
1493 if (!IS_ERR(opp_table))
1494 list_add(&opp_table->node, &opp_tables);
283d55e6
VK
1495 }
1496
27c09484 1497 opp_tables_busy = false;
f067a982
VK
1498
1499unlock:
1500 mutex_unlock(&opp_table_lock);
1501
32439ac7 1502 return _update_opp_table_clk(dev, opp_table, getclk);
f067a982 1503}
eb7c8743 1504
32439ac7 1505static struct opp_table *_add_opp_table(struct device *dev, bool getclk)
eb7c8743 1506{
32439ac7 1507 return _add_opp_table_indexed(dev, 0, getclk);
eb7c8743 1508}
f067a982 1509
e77dcb0b 1510struct opp_table *dev_pm_opp_get_opp_table(struct device *dev)
eb7c8743 1511{
e77dcb0b 1512 return _find_opp_table(dev);
eb7c8743 1513}
e77dcb0b 1514EXPORT_SYMBOL_GPL(dev_pm_opp_get_opp_table);
eb7c8743 1515
b83c1899 1516static void _opp_table_kref_release(struct kref *kref)
f067a982
VK
1517{
1518 struct opp_table *opp_table = container_of(kref, struct opp_table, kref);
cdd6ed90 1519 struct opp_device *opp_dev, *temp;
6d3f922c 1520 int i;
b6160e26 1521
e0df59de
VK
1522 /* Drop the lock as soon as we can */
1523 list_del(&opp_table->node);
1524 mutex_unlock(&opp_table_lock);
1525
81c4d8a3
VK
1526 if (opp_table->current_opp)
1527 dev_pm_opp_put(opp_table->current_opp);
1528
5d6d106f
VK
1529 _of_clear_opp_table(opp_table);
1530
b6160e26
VK
1531 /* Release clk */
1532 if (!IS_ERR(opp_table->clk))
1533 clk_put(opp_table->clk);
1534
6d3f922c
GD
1535 if (opp_table->paths) {
1536 for (i = 0; i < opp_table->path_count; i++)
1537 icc_put(opp_table->paths[i]);
1538 kfree(opp_table->paths);
1539 }
1540
cdd6ed90 1541 WARN_ON(!list_empty(&opp_table->opp_list));
b6160e26 1542
cdd6ed90
VK
1543 list_for_each_entry_safe(opp_dev, temp, &opp_table->dev_list, node) {
1544 /*
1545 * The OPP table is getting removed, drop the performance state
1546 * constraints.
1547 */
1548 if (opp_table->genpd_performance_state)
1549 dev_pm_genpd_set_performance_state((struct device *)(opp_dev->dev), 0);
b6160e26 1550
cdd6ed90
VK
1551 _remove_opp_dev(opp_dev, opp_table);
1552 }
b6160e26 1553
4f018bc0 1554 mutex_destroy(&opp_table->genpd_virt_dev_lock);
37a73ec0 1555 mutex_destroy(&opp_table->lock);
052c6f19 1556 kfree(opp_table);
f067a982
VK
1557}
1558
1559void dev_pm_opp_put_opp_table(struct opp_table *opp_table)
1560{
1561 kref_put_mutex(&opp_table->kref, _opp_table_kref_release,
1562 &opp_table_lock);
1563}
1564EXPORT_SYMBOL_GPL(dev_pm_opp_put_opp_table);
1565
8cd2f6e8 1566void _opp_free(struct dev_pm_opp *opp)
969fceb3
VK
1567{
1568 kfree(opp);
969fceb3
VK
1569}
1570
cf1fac94 1571static void _opp_kref_release(struct kref *kref)
129eec55 1572{
cf1fac94
VK
1573 struct dev_pm_opp *opp = container_of(kref, struct dev_pm_opp, kref);
1574 struct opp_table *opp_table = opp->opp_table;
1575
1576 list_del(&opp->node);
1577 mutex_unlock(&opp_table->lock);
1578
129eec55
VK
1579 /*
1580 * Notify the changes in the availability of the operable
1581 * frequency/voltage list.
1582 */
052c6f19 1583 blocking_notifier_call_chain(&opp_table->head, OPP_EVENT_REMOVE, opp);
da544b61 1584 _of_opp_free_required_opps(opp_table, opp);
deaa5146 1585 opp_debug_remove_one(opp);
052c6f19 1586 kfree(opp);
1690d8bb 1587}
129eec55 1588
a88bd2a5 1589void dev_pm_opp_get(struct dev_pm_opp *opp)
8a31d9d9
VK
1590{
1591 kref_get(&opp->kref);
1592}
1593
7034764a
VK
1594void dev_pm_opp_put(struct dev_pm_opp *opp)
1595{
cf1fac94 1596 kref_put_mutex(&opp->kref, _opp_kref_release, &opp->opp_table->lock);
7034764a
VK
1597}
1598EXPORT_SYMBOL_GPL(dev_pm_opp_put);
1599
129eec55 1600/**
2c2709dc 1601 * dev_pm_opp_remove() - Remove an OPP from OPP table
129eec55
VK
1602 * @dev: device for which we do this operation
1603 * @freq: OPP to remove with matching 'freq'
1604 *
2c2709dc 1605 * This function removes an opp from the opp table.
129eec55
VK
1606 */
1607void dev_pm_opp_remove(struct device *dev, unsigned long freq)
1608{
95073b72 1609 struct dev_pm_opp *opp = NULL, *iter;
2c2709dc 1610 struct opp_table *opp_table;
129eec55 1611
2c2709dc
VK
1612 opp_table = _find_opp_table(dev);
1613 if (IS_ERR(opp_table))
5b650b38 1614 return;
129eec55 1615
37a73ec0
VK
1616 mutex_lock(&opp_table->lock);
1617
95073b72
JK
1618 list_for_each_entry(iter, &opp_table->opp_list, node) {
1619 if (iter->rate == freq) {
1620 opp = iter;
129eec55
VK
1621 break;
1622 }
1623 }
1624
37a73ec0
VK
1625 mutex_unlock(&opp_table->lock);
1626
95073b72 1627 if (opp) {
5b650b38 1628 dev_pm_opp_put(opp);
0ad8c623
VK
1629
1630 /* Drop the reference taken by dev_pm_opp_add() */
1631 dev_pm_opp_put_opp_table(opp_table);
5b650b38 1632 } else {
129eec55
VK
1633 dev_warn(dev, "%s: Couldn't find OPP with freq: %lu\n",
1634 __func__, freq);
129eec55
VK
1635 }
1636
0ad8c623 1637 /* Drop the reference taken by _find_opp_table() */
5b650b38 1638 dev_pm_opp_put_opp_table(opp_table);
129eec55
VK
1639}
1640EXPORT_SYMBOL_GPL(dev_pm_opp_remove);
1641
cf1fac94
VK
1642static struct dev_pm_opp *_opp_get_next(struct opp_table *opp_table,
1643 bool dynamic)
1644{
1645 struct dev_pm_opp *opp = NULL, *temp;
1646
1647 mutex_lock(&opp_table->lock);
1648 list_for_each_entry(temp, &opp_table->opp_list, node) {
606a5d42
BM
1649 /*
1650 * Refcount must be dropped only once for each OPP by OPP core,
1651 * do that with help of "removed" flag.
1652 */
1653 if (!temp->removed && dynamic == temp->dynamic) {
cf1fac94
VK
1654 opp = temp;
1655 break;
1656 }
1657 }
1658
1659 mutex_unlock(&opp_table->lock);
1660 return opp;
1661}
1662
606a5d42
BM
1663/*
1664 * Can't call dev_pm_opp_put() from under the lock as debugfs removal needs to
1665 * happen lock less to avoid circular dependency issues. This routine must be
1666 * called without the opp_table->lock held.
1667 */
1668static void _opp_remove_all(struct opp_table *opp_table, bool dynamic)
03758d60 1669{
cf1fac94 1670 struct dev_pm_opp *opp;
03758d60 1671
606a5d42
BM
1672 while ((opp = _opp_get_next(opp_table, dynamic))) {
1673 opp->removed = true;
1674 dev_pm_opp_put(opp);
1675
1676 /* Drop the references taken by dev_pm_opp_add() */
1677 if (dynamic)
1678 dev_pm_opp_put_opp_table(opp_table);
1679 }
1680}
1681
1682bool _opp_remove_all_static(struct opp_table *opp_table)
1683{
03758d60
VK
1684 mutex_lock(&opp_table->lock);
1685
922ff075 1686 if (!opp_table->parsed_static_opps) {
cf1fac94
VK
1687 mutex_unlock(&opp_table->lock);
1688 return false;
922ff075
VK
1689 }
1690
cf1fac94
VK
1691 if (--opp_table->parsed_static_opps) {
1692 mutex_unlock(&opp_table->lock);
1693 return true;
03758d60
VK
1694 }
1695
03758d60 1696 mutex_unlock(&opp_table->lock);
922ff075 1697
606a5d42 1698 _opp_remove_all(opp_table, false);
cf1fac94 1699 return true;
03758d60
VK
1700}
1701
1690d8bb
VK
1702/**
1703 * dev_pm_opp_remove_all_dynamic() - Remove all dynamically created OPPs
1704 * @dev: device for which we do this operation
1705 *
1706 * This function removes all dynamically created OPPs from the opp table.
1707 */
1708void dev_pm_opp_remove_all_dynamic(struct device *dev)
1709{
1710 struct opp_table *opp_table;
1690d8bb
VK
1711
1712 opp_table = _find_opp_table(dev);
1713 if (IS_ERR(opp_table))
1714 return;
1715
606a5d42 1716 _opp_remove_all(opp_table, true);
1690d8bb
VK
1717
1718 /* Drop the reference taken by _find_opp_table() */
1719 dev_pm_opp_put_opp_table(opp_table);
1720}
1721EXPORT_SYMBOL_GPL(dev_pm_opp_remove_all_dynamic);
1722
8cd2f6e8 1723struct dev_pm_opp *_opp_allocate(struct opp_table *table)
e1f60b29 1724{
23dacf6d 1725 struct dev_pm_opp *opp;
6d3f922c 1726 int supply_count, supply_size, icc_size;
e1f60b29 1727
dfbe4678 1728 /* Allocate space for at least one supply */
6d3f922c
GD
1729 supply_count = table->regulator_count > 0 ? table->regulator_count : 1;
1730 supply_size = sizeof(*opp->supplies) * supply_count;
1731 icc_size = sizeof(*opp->bandwidth) * table->path_count;
e1f60b29 1732
dfbe4678 1733 /* allocate new OPP node and supplies structures */
6d3f922c
GD
1734 opp = kzalloc(sizeof(*opp) + supply_size + icc_size, GFP_KERNEL);
1735
8cd2f6e8 1736 if (!opp)
23dacf6d 1737 return NULL;
23dacf6d 1738
dfbe4678
VK
1739 /* Put the supplies at the end of the OPP structure as an empty array */
1740 opp->supplies = (struct dev_pm_opp_supply *)(opp + 1);
6d3f922c
GD
1741 if (icc_size)
1742 opp->bandwidth = (struct dev_pm_opp_icc_bw *)(opp->supplies + supply_count);
dfbe4678
VK
1743 INIT_LIST_HEAD(&opp->node);
1744
23dacf6d
VK
1745 return opp;
1746}
1747
7d34d56e 1748static bool _opp_supported_by_regulators(struct dev_pm_opp *opp,
2c2709dc 1749 struct opp_table *opp_table)
7d34d56e 1750{
dfbe4678
VK
1751 struct regulator *reg;
1752 int i;
1753
90e3577b
VK
1754 if (!opp_table->regulators)
1755 return true;
1756
dfbe4678
VK
1757 for (i = 0; i < opp_table->regulator_count; i++) {
1758 reg = opp_table->regulators[i];
1759
1760 if (!regulator_is_supported_voltage(reg,
1761 opp->supplies[i].u_volt_min,
1762 opp->supplies[i].u_volt_max)) {
1763 pr_warn("%s: OPP minuV: %lu maxuV: %lu, not supported by regulator\n",
1764 __func__, opp->supplies[i].u_volt_min,
1765 opp->supplies[i].u_volt_max);
1766 return false;
1767 }
7d34d56e
VK
1768 }
1769
1770 return true;
1771}
1772
6c591eec
SK
1773int _opp_compare_key(struct dev_pm_opp *opp1, struct dev_pm_opp *opp2)
1774{
1775 if (opp1->rate != opp2->rate)
1776 return opp1->rate < opp2->rate ? -1 : 1;
6d3f922c
GD
1777 if (opp1->bandwidth && opp2->bandwidth &&
1778 opp1->bandwidth[0].peak != opp2->bandwidth[0].peak)
1779 return opp1->bandwidth[0].peak < opp2->bandwidth[0].peak ? -1 : 1;
6c591eec
SK
1780 if (opp1->level != opp2->level)
1781 return opp1->level < opp2->level ? -1 : 1;
1782 return 0;
1783}
1784
a1e8c136
VK
1785static int _opp_is_duplicate(struct device *dev, struct dev_pm_opp *new_opp,
1786 struct opp_table *opp_table,
1787 struct list_head **head)
23dacf6d
VK
1788{
1789 struct dev_pm_opp *opp;
6c591eec 1790 int opp_cmp;
23dacf6d
VK
1791
1792 /*
1793 * Insert new OPP in order of increasing frequency and discard if
1794 * already present.
1795 *
2c2709dc 1796 * Need to use &opp_table->opp_list in the condition part of the 'for'
23dacf6d
VK
1797 * loop, don't replace it with head otherwise it will become an infinite
1798 * loop.
1799 */
052c6f19 1800 list_for_each_entry(opp, &opp_table->opp_list, node) {
6c591eec
SK
1801 opp_cmp = _opp_compare_key(new_opp, opp);
1802 if (opp_cmp > 0) {
a1e8c136 1803 *head = &opp->node;
23dacf6d
VK
1804 continue;
1805 }
1806
6c591eec 1807 if (opp_cmp < 0)
a1e8c136 1808 return 0;
23dacf6d
VK
1809
1810 /* Duplicate OPPs */
06441658 1811 dev_warn(dev, "%s: duplicate OPPs detected. Existing: freq: %lu, volt: %lu, enabled: %d. New: freq: %lu, volt: %lu, enabled: %d\n",
dfbe4678
VK
1812 __func__, opp->rate, opp->supplies[0].u_volt,
1813 opp->available, new_opp->rate,
1814 new_opp->supplies[0].u_volt, new_opp->available);
23dacf6d 1815
dfbe4678 1816 /* Should we compare voltages for all regulators here ? */
a1e8c136
VK
1817 return opp->available &&
1818 new_opp->supplies[0].u_volt == opp->supplies[0].u_volt ? -EBUSY : -EEXIST;
1819 }
1820
1821 return 0;
1822}
1823
7eba0c76
VK
1824void _required_opps_available(struct dev_pm_opp *opp, int count)
1825{
1826 int i;
1827
1828 for (i = 0; i < count; i++) {
1829 if (opp->required_opps[i]->available)
1830 continue;
1831
1832 opp->available = false;
1833 pr_warn("%s: OPP not supported by required OPP %pOF (%lu)\n",
1834 __func__, opp->required_opps[i]->np, opp->rate);
1835 return;
1836 }
1837}
1838
a1e8c136
VK
1839/*
1840 * Returns:
1841 * 0: On success. And appropriate error message for duplicate OPPs.
1842 * -EBUSY: For OPP with same freq/volt and is available. The callers of
1843 * _opp_add() must return 0 if they receive -EBUSY from it. This is to make
1844 * sure we don't print error messages unnecessarily if different parts of
1845 * kernel try to initialize the OPP table.
1846 * -EEXIST: For OPP with same freq but different volt or is unavailable. This
1847 * should be considered an error by the callers of _opp_add().
1848 */
1849int _opp_add(struct device *dev, struct dev_pm_opp *new_opp,
1850 struct opp_table *opp_table, bool rate_not_available)
1851{
1852 struct list_head *head;
1853 int ret;
1854
1855 mutex_lock(&opp_table->lock);
1856 head = &opp_table->opp_list;
37a73ec0 1857
32715be4
DO
1858 ret = _opp_is_duplicate(dev, new_opp, opp_table, &head);
1859 if (ret) {
1860 mutex_unlock(&opp_table->lock);
1861 return ret;
23dacf6d
VK
1862 }
1863
052c6f19 1864 list_add(&new_opp->node, head);
37a73ec0
VK
1865 mutex_unlock(&opp_table->lock);
1866
1867 new_opp->opp_table = opp_table;
7034764a 1868 kref_init(&new_opp->kref);
23dacf6d 1869
a2dea4cb 1870 opp_debug_create_one(new_opp, opp_table);
deaa5146 1871
2c2709dc 1872 if (!_opp_supported_by_regulators(new_opp, opp_table)) {
7d34d56e
VK
1873 new_opp->available = false;
1874 dev_warn(dev, "%s: OPP not supported by regulators (%lu)\n",
1875 __func__, new_opp->rate);
1876 }
1877
7eba0c76
VK
1878 /* required-opps not fully initialized yet */
1879 if (lazy_linking_pending(opp_table))
1880 return 0;
cf65948d 1881
7eba0c76 1882 _required_opps_available(new_opp, opp_table->required_opp_count);
cf65948d 1883
23dacf6d
VK
1884 return 0;
1885}
1886
984f16c8 1887/**
b64b9c3f 1888 * _opp_add_v1() - Allocate a OPP based on v1 bindings.
8cd2f6e8 1889 * @opp_table: OPP table
984f16c8
NM
1890 * @dev: device for which we do this operation
1891 * @freq: Frequency in Hz for this OPP
1892 * @u_volt: Voltage in uVolts for this OPP
1893 * @dynamic: Dynamically added OPPs.
1894 *
2c2709dc 1895 * This function adds an opp definition to the opp table and returns status.
984f16c8
NM
1896 * The opp is made available by default and it can be controlled using
1897 * dev_pm_opp_enable/disable functions and may be removed by dev_pm_opp_remove.
1898 *
8f8d37b2
VK
1899 * NOTE: "dynamic" parameter impacts OPPs added by the dev_pm_opp_of_add_table
1900 * and freed by dev_pm_opp_of_remove_table.
984f16c8 1901 *
984f16c8
NM
1902 * Return:
1903 * 0 On success OR
1904 * Duplicate OPPs (both freq and volt are same) and opp->available
1905 * -EEXIST Freq are same and volt are different OR
1906 * Duplicate OPPs (both freq and volt are same) and !opp->available
1907 * -ENOMEM Memory allocation failure
1908 */
8cd2f6e8
VK
1909int _opp_add_v1(struct opp_table *opp_table, struct device *dev,
1910 unsigned long freq, long u_volt, bool dynamic)
e1f60b29 1911{
23dacf6d 1912 struct dev_pm_opp *new_opp;
50f8cfbd 1913 unsigned long tol;
6ce4184d 1914 int ret;
e1f60b29 1915
8cd2f6e8
VK
1916 new_opp = _opp_allocate(opp_table);
1917 if (!new_opp)
1918 return -ENOMEM;
23dacf6d 1919
a7470db6 1920 /* populate the opp table */
a7470db6 1921 new_opp->rate = freq;
2c2709dc 1922 tol = u_volt * opp_table->voltage_tolerance_v1 / 100;
dfbe4678
VK
1923 new_opp->supplies[0].u_volt = u_volt;
1924 new_opp->supplies[0].u_volt_min = u_volt - tol;
1925 new_opp->supplies[0].u_volt_max = u_volt + tol;
a7470db6 1926 new_opp->available = true;
23dacf6d 1927 new_opp->dynamic = dynamic;
a7470db6 1928
a1e8c136 1929 ret = _opp_add(dev, new_opp, opp_table, false);
7f8538eb
VK
1930 if (ret) {
1931 /* Don't return error for duplicate OPPs */
1932 if (ret == -EBUSY)
1933 ret = 0;
6ce4184d 1934 goto free_opp;
7f8538eb 1935 }
64ce8545 1936
03ca370f
MH
1937 /*
1938 * Notify the changes in the availability of the operable
1939 * frequency/voltage list.
1940 */
052c6f19 1941 blocking_notifier_call_chain(&opp_table->head, OPP_EVENT_ADD, new_opp);
e1f60b29 1942 return 0;
6ce4184d
VK
1943
1944free_opp:
8cd2f6e8
VK
1945 _opp_free(new_opp);
1946
6ce4184d 1947 return ret;
e1f60b29 1948}
38393409 1949
7de36b0a
VK
1950/**
1951 * dev_pm_opp_set_supported_hw() - Set supported platforms
1952 * @dev: Device for which supported-hw has to be set.
1953 * @versions: Array of hierarchy of versions to match.
1954 * @count: Number of elements in the array.
1955 *
1956 * This is required only for the V2 bindings, and it enables a platform to
1957 * specify the hierarchy of versions it supports. OPP layer will then enable
1958 * OPPs, which are available for those versions, based on its 'opp-supported-hw'
1959 * property.
7de36b0a 1960 */
fa30184d
VK
1961struct opp_table *dev_pm_opp_set_supported_hw(struct device *dev,
1962 const u32 *versions, unsigned int count)
7de36b0a 1963{
2c2709dc 1964 struct opp_table *opp_table;
7de36b0a 1965
32439ac7 1966 opp_table = _add_opp_table(dev, false);
dd461cd9
SG
1967 if (IS_ERR(opp_table))
1968 return opp_table;
7de36b0a 1969
2c2709dc
VK
1970 /* Make sure there are no concurrent readers while updating opp_table */
1971 WARN_ON(!list_empty(&opp_table->opp_list));
7de36b0a 1972
25419de1
VK
1973 /* Another CPU that shares the OPP table has set the property ? */
1974 if (opp_table->supported_hw)
1975 return opp_table;
7de36b0a 1976
2c2709dc 1977 opp_table->supported_hw = kmemdup(versions, count * sizeof(*versions),
7de36b0a 1978 GFP_KERNEL);
2c2709dc 1979 if (!opp_table->supported_hw) {
25419de1
VK
1980 dev_pm_opp_put_opp_table(opp_table);
1981 return ERR_PTR(-ENOMEM);
7de36b0a
VK
1982 }
1983
2c2709dc 1984 opp_table->supported_hw_count = count;
fa30184d
VK
1985
1986 return opp_table;
7de36b0a
VK
1987}
1988EXPORT_SYMBOL_GPL(dev_pm_opp_set_supported_hw);
1989
1990/**
1991 * dev_pm_opp_put_supported_hw() - Releases resources blocked for supported hw
fa30184d 1992 * @opp_table: OPP table returned by dev_pm_opp_set_supported_hw().
7de36b0a
VK
1993 *
1994 * This is required only for the V2 bindings, and is called for a matching
2c2709dc 1995 * dev_pm_opp_set_supported_hw(). Until this is called, the opp_table structure
7de36b0a 1996 * will not be freed.
7de36b0a 1997 */
fa30184d 1998void dev_pm_opp_put_supported_hw(struct opp_table *opp_table)
7de36b0a 1999{
c7bf8758
VK
2000 if (unlikely(!opp_table))
2001 return;
2002
2c2709dc
VK
2003 kfree(opp_table->supported_hw);
2004 opp_table->supported_hw = NULL;
2005 opp_table->supported_hw_count = 0;
7de36b0a 2006
fa30184d 2007 dev_pm_opp_put_opp_table(opp_table);
7de36b0a
VK
2008}
2009EXPORT_SYMBOL_GPL(dev_pm_opp_put_supported_hw);
2010
9c4f220f
YL
2011static void devm_pm_opp_supported_hw_release(void *data)
2012{
2013 dev_pm_opp_put_supported_hw(data);
2014}
2015
2016/**
2017 * devm_pm_opp_set_supported_hw() - Set supported platforms
2018 * @dev: Device for which supported-hw has to be set.
2019 * @versions: Array of hierarchy of versions to match.
2020 * @count: Number of elements in the array.
2021 *
2022 * This is a resource-managed variant of dev_pm_opp_set_supported_hw().
2023 *
2024 * Return: 0 on success and errorno otherwise.
2025 */
2026int devm_pm_opp_set_supported_hw(struct device *dev, const u32 *versions,
2027 unsigned int count)
2028{
2029 struct opp_table *opp_table;
2030
2031 opp_table = dev_pm_opp_set_supported_hw(dev, versions, count);
2032 if (IS_ERR(opp_table))
2033 return PTR_ERR(opp_table);
2034
2035 return devm_add_action_or_reset(dev, devm_pm_opp_supported_hw_release,
2036 opp_table);
2037}
2038EXPORT_SYMBOL_GPL(devm_pm_opp_set_supported_hw);
2039
01fb4d3c
VK
2040/**
2041 * dev_pm_opp_set_prop_name() - Set prop-extn name
a5da6447 2042 * @dev: Device for which the prop-name has to be set.
01fb4d3c
VK
2043 * @name: name to postfix to properties.
2044 *
2045 * This is required only for the V2 bindings, and it enables a platform to
2046 * specify the extn to be used for certain property names. The properties to
2047 * which the extension will apply are opp-microvolt and opp-microamp. OPP core
2048 * should postfix the property name with -<name> while looking for them.
01fb4d3c 2049 */
fa30184d 2050struct opp_table *dev_pm_opp_set_prop_name(struct device *dev, const char *name)
01fb4d3c 2051{
2c2709dc 2052 struct opp_table *opp_table;
01fb4d3c 2053
32439ac7 2054 opp_table = _add_opp_table(dev, false);
dd461cd9
SG
2055 if (IS_ERR(opp_table))
2056 return opp_table;
01fb4d3c 2057
2c2709dc
VK
2058 /* Make sure there are no concurrent readers while updating opp_table */
2059 WARN_ON(!list_empty(&opp_table->opp_list));
01fb4d3c 2060
878ec1a9
VK
2061 /* Another CPU that shares the OPP table has set the property ? */
2062 if (opp_table->prop_name)
2063 return opp_table;
01fb4d3c 2064
2c2709dc
VK
2065 opp_table->prop_name = kstrdup(name, GFP_KERNEL);
2066 if (!opp_table->prop_name) {
878ec1a9
VK
2067 dev_pm_opp_put_opp_table(opp_table);
2068 return ERR_PTR(-ENOMEM);
01fb4d3c
VK
2069 }
2070
fa30184d 2071 return opp_table;
01fb4d3c
VK
2072}
2073EXPORT_SYMBOL_GPL(dev_pm_opp_set_prop_name);
2074
2075/**
2076 * dev_pm_opp_put_prop_name() - Releases resources blocked for prop-name
fa30184d 2077 * @opp_table: OPP table returned by dev_pm_opp_set_prop_name().
01fb4d3c
VK
2078 *
2079 * This is required only for the V2 bindings, and is called for a matching
2c2709dc 2080 * dev_pm_opp_set_prop_name(). Until this is called, the opp_table structure
01fb4d3c 2081 * will not be freed.
01fb4d3c 2082 */
fa30184d 2083void dev_pm_opp_put_prop_name(struct opp_table *opp_table)
01fb4d3c 2084{
c7bf8758
VK
2085 if (unlikely(!opp_table))
2086 return;
2087
2c2709dc
VK
2088 kfree(opp_table->prop_name);
2089 opp_table->prop_name = NULL;
01fb4d3c 2090
fa30184d 2091 dev_pm_opp_put_opp_table(opp_table);
01fb4d3c
VK
2092}
2093EXPORT_SYMBOL_GPL(dev_pm_opp_put_prop_name);
2094
9f8ea969 2095/**
dfbe4678 2096 * dev_pm_opp_set_regulators() - Set regulator names for the device
9f8ea969 2097 * @dev: Device for which regulator name is being set.
dfbe4678
VK
2098 * @names: Array of pointers to the names of the regulator.
2099 * @count: Number of regulators.
9f8ea969
VK
2100 *
2101 * In order to support OPP switching, OPP layer needs to know the name of the
dfbe4678
VK
2102 * device's regulators, as the core would be required to switch voltages as
2103 * well.
9f8ea969
VK
2104 *
2105 * This must be called before any OPPs are initialized for the device.
9f8ea969 2106 */
dfbe4678
VK
2107struct opp_table *dev_pm_opp_set_regulators(struct device *dev,
2108 const char * const names[],
2109 unsigned int count)
9f8ea969 2110{
38bb3439 2111 struct dev_pm_opp_supply *supplies;
2c2709dc 2112 struct opp_table *opp_table;
9f8ea969 2113 struct regulator *reg;
dfbe4678 2114 int ret, i;
9f8ea969 2115
32439ac7 2116 opp_table = _add_opp_table(dev, false);
dd461cd9
SG
2117 if (IS_ERR(opp_table))
2118 return opp_table;
9f8ea969
VK
2119
2120 /* This should be called before OPPs are initialized */
2c2709dc 2121 if (WARN_ON(!list_empty(&opp_table->opp_list))) {
9f8ea969
VK
2122 ret = -EBUSY;
2123 goto err;
2124 }
2125
779b783c
VK
2126 /* Another CPU that shares the OPP table has set the regulators ? */
2127 if (opp_table->regulators)
2128 return opp_table;
dfbe4678
VK
2129
2130 opp_table->regulators = kmalloc_array(count,
2131 sizeof(*opp_table->regulators),
2132 GFP_KERNEL);
2133 if (!opp_table->regulators) {
2134 ret = -ENOMEM;
9f8ea969
VK
2135 goto err;
2136 }
2137
dfbe4678
VK
2138 for (i = 0; i < count; i++) {
2139 reg = regulator_get_optional(dev, names[i]);
2140 if (IS_ERR(reg)) {
543256d2
KK
2141 ret = dev_err_probe(dev, PTR_ERR(reg),
2142 "%s: no regulator (%s) found\n",
2143 __func__, names[i]);
dfbe4678
VK
2144 goto free_regulators;
2145 }
2146
2147 opp_table->regulators[i] = reg;
2148 }
2149
2150 opp_table->regulator_count = count;
9f8ea969 2151
38bb3439
VK
2152 supplies = kmalloc_array(count * 2, sizeof(*supplies), GFP_KERNEL);
2153 if (!supplies) {
2154 ret = -ENOMEM;
94735585 2155 goto free_regulators;
38bb3439
VK
2156 }
2157
2158 mutex_lock(&opp_table->lock);
2159 opp_table->sod_supplies = supplies;
2160 if (opp_table->set_opp_data) {
2161 opp_table->set_opp_data->old_opp.supplies = supplies;
2162 opp_table->set_opp_data->new_opp.supplies = supplies + count;
2163 }
2164 mutex_unlock(&opp_table->lock);
94735585 2165
91291d9a 2166 return opp_table;
9f8ea969 2167
dfbe4678 2168free_regulators:
24957db1
MS
2169 while (i != 0)
2170 regulator_put(opp_table->regulators[--i]);
dfbe4678
VK
2171
2172 kfree(opp_table->regulators);
2173 opp_table->regulators = NULL;
46f48aca 2174 opp_table->regulator_count = -1;
9f8ea969 2175err:
fa30184d 2176 dev_pm_opp_put_opp_table(opp_table);
9f8ea969 2177
91291d9a 2178 return ERR_PTR(ret);
9f8ea969 2179}
dfbe4678 2180EXPORT_SYMBOL_GPL(dev_pm_opp_set_regulators);
9f8ea969
VK
2181
2182/**
dfbe4678
VK
2183 * dev_pm_opp_put_regulators() - Releases resources blocked for regulator
2184 * @opp_table: OPP table returned from dev_pm_opp_set_regulators().
9f8ea969 2185 */
dfbe4678 2186void dev_pm_opp_put_regulators(struct opp_table *opp_table)
9f8ea969 2187{
dfbe4678
VK
2188 int i;
2189
c7bf8758
VK
2190 if (unlikely(!opp_table))
2191 return;
2192
779b783c
VK
2193 if (!opp_table->regulators)
2194 goto put_opp_table;
9f8ea969 2195
72f80ce4 2196 if (opp_table->enabled) {
8d45719c
KK
2197 for (i = opp_table->regulator_count - 1; i >= 0; i--)
2198 regulator_disable(opp_table->regulators[i]);
8d45719c
KK
2199 }
2200
24957db1 2201 for (i = opp_table->regulator_count - 1; i >= 0; i--)
dfbe4678
VK
2202 regulator_put(opp_table->regulators[i]);
2203
38bb3439
VK
2204 mutex_lock(&opp_table->lock);
2205 if (opp_table->set_opp_data) {
2206 opp_table->set_opp_data->old_opp.supplies = NULL;
2207 opp_table->set_opp_data->new_opp.supplies = NULL;
2208 }
2209
2210 kfree(opp_table->sod_supplies);
2211 opp_table->sod_supplies = NULL;
2212 mutex_unlock(&opp_table->lock);
94735585 2213
dfbe4678
VK
2214 kfree(opp_table->regulators);
2215 opp_table->regulators = NULL;
46f48aca 2216 opp_table->regulator_count = -1;
9f8ea969 2217
779b783c 2218put_opp_table:
fa30184d 2219 dev_pm_opp_put_opp_table(opp_table);
9f8ea969 2220}
dfbe4678 2221EXPORT_SYMBOL_GPL(dev_pm_opp_put_regulators);
9f8ea969 2222
32aee78b
YL
2223static void devm_pm_opp_regulators_release(void *data)
2224{
2225 dev_pm_opp_put_regulators(data);
2226}
2227
2228/**
2229 * devm_pm_opp_set_regulators() - Set regulator names for the device
2230 * @dev: Device for which regulator name is being set.
2231 * @names: Array of pointers to the names of the regulator.
2232 * @count: Number of regulators.
2233 *
2234 * This is a resource-managed variant of dev_pm_opp_set_regulators().
2235 *
2236 * Return: 0 on success and errorno otherwise.
2237 */
2238int devm_pm_opp_set_regulators(struct device *dev,
2239 const char * const names[],
2240 unsigned int count)
2241{
2242 struct opp_table *opp_table;
2243
2244 opp_table = dev_pm_opp_set_regulators(dev, names, count);
2245 if (IS_ERR(opp_table))
2246 return PTR_ERR(opp_table);
2247
2248 return devm_add_action_or_reset(dev, devm_pm_opp_regulators_release,
2249 opp_table);
2250}
2251EXPORT_SYMBOL_GPL(devm_pm_opp_set_regulators);
2252
829a4e8c
VK
2253/**
2254 * dev_pm_opp_set_clkname() - Set clk name for the device
2255 * @dev: Device for which clk name is being set.
2256 * @name: Clk name.
2257 *
2258 * In order to support OPP switching, OPP layer needs to get pointer to the
2259 * clock for the device. Simple cases work fine without using this routine (i.e.
2260 * by passing connection-id as NULL), but for a device with multiple clocks
2261 * available, the OPP core needs to know the exact name of the clk to use.
2262 *
2263 * This must be called before any OPPs are initialized for the device.
2264 */
2265struct opp_table *dev_pm_opp_set_clkname(struct device *dev, const char *name)
2266{
2267 struct opp_table *opp_table;
2268 int ret;
2269
32439ac7 2270 opp_table = _add_opp_table(dev, false);
dd461cd9
SG
2271 if (IS_ERR(opp_table))
2272 return opp_table;
829a4e8c
VK
2273
2274 /* This should be called before OPPs are initialized */
2275 if (WARN_ON(!list_empty(&opp_table->opp_list))) {
2276 ret = -EBUSY;
2277 goto err;
2278 }
2279
32439ac7
VK
2280 /* clk shouldn't be initialized at this point */
2281 if (WARN_ON(opp_table->clk)) {
2282 ret = -EBUSY;
2283 goto err;
2284 }
829a4e8c
VK
2285
2286 /* Find clk for the device */
2287 opp_table->clk = clk_get(dev, name);
2288 if (IS_ERR(opp_table->clk)) {
543256d2
KK
2289 ret = dev_err_probe(dev, PTR_ERR(opp_table->clk),
2290 "%s: Couldn't find clock\n", __func__);
829a4e8c
VK
2291 goto err;
2292 }
2293
2294 return opp_table;
2295
2296err:
2297 dev_pm_opp_put_opp_table(opp_table);
2298
2299 return ERR_PTR(ret);
2300}
2301EXPORT_SYMBOL_GPL(dev_pm_opp_set_clkname);
2302
2303/**
2304 * dev_pm_opp_put_clkname() - Releases resources blocked for clk.
2305 * @opp_table: OPP table returned from dev_pm_opp_set_clkname().
2306 */
2307void dev_pm_opp_put_clkname(struct opp_table *opp_table)
2308{
c7bf8758
VK
2309 if (unlikely(!opp_table))
2310 return;
2311
829a4e8c
VK
2312 clk_put(opp_table->clk);
2313 opp_table->clk = ERR_PTR(-EINVAL);
2314
2315 dev_pm_opp_put_opp_table(opp_table);
2316}
2317EXPORT_SYMBOL_GPL(dev_pm_opp_put_clkname);
2318
a74f681c
YL
2319static void devm_pm_opp_clkname_release(void *data)
2320{
2321 dev_pm_opp_put_clkname(data);
2322}
2323
2324/**
2325 * devm_pm_opp_set_clkname() - Set clk name for the device
2326 * @dev: Device for which clk name is being set.
2327 * @name: Clk name.
2328 *
2329 * This is a resource-managed variant of dev_pm_opp_set_clkname().
2330 *
2331 * Return: 0 on success and errorno otherwise.
2332 */
2333int devm_pm_opp_set_clkname(struct device *dev, const char *name)
2334{
2335 struct opp_table *opp_table;
2336
2337 opp_table = dev_pm_opp_set_clkname(dev, name);
2338 if (IS_ERR(opp_table))
2339 return PTR_ERR(opp_table);
2340
2341 return devm_add_action_or_reset(dev, devm_pm_opp_clkname_release,
2342 opp_table);
2343}
2344EXPORT_SYMBOL_GPL(devm_pm_opp_set_clkname);
2345
4dab160e
VK
2346/**
2347 * dev_pm_opp_register_set_opp_helper() - Register custom set OPP helper
2348 * @dev: Device for which the helper is getting registered.
2349 * @set_opp: Custom set OPP helper.
2350 *
2351 * This is useful to support complex platforms (like platforms with multiple
2352 * regulators per device), instead of the generic OPP set rate helper.
2353 *
2354 * This must be called before any OPPs are initialized for the device.
4dab160e 2355 */
fa30184d 2356struct opp_table *dev_pm_opp_register_set_opp_helper(struct device *dev,
4dab160e
VK
2357 int (*set_opp)(struct dev_pm_set_opp_data *data))
2358{
38bb3439 2359 struct dev_pm_set_opp_data *data;
4dab160e 2360 struct opp_table *opp_table;
4dab160e
VK
2361
2362 if (!set_opp)
fa30184d 2363 return ERR_PTR(-EINVAL);
4dab160e 2364
32439ac7 2365 opp_table = _add_opp_table(dev, false);
47efcbcb 2366 if (IS_ERR(opp_table))
dd461cd9 2367 return opp_table;
4dab160e
VK
2368
2369 /* This should be called before OPPs are initialized */
2370 if (WARN_ON(!list_empty(&opp_table->opp_list))) {
5019acc6
VK
2371 dev_pm_opp_put_opp_table(opp_table);
2372 return ERR_PTR(-EBUSY);
4dab160e
VK
2373 }
2374
5019acc6 2375 /* Another CPU that shares the OPP table has set the helper ? */
38bb3439
VK
2376 if (opp_table->set_opp)
2377 return opp_table;
2378
2379 data = kzalloc(sizeof(*data), GFP_KERNEL);
2380 if (!data)
2381 return ERR_PTR(-ENOMEM);
2382
2383 mutex_lock(&opp_table->lock);
2384 opp_table->set_opp_data = data;
2385 if (opp_table->sod_supplies) {
2386 data->old_opp.supplies = opp_table->sod_supplies;
2387 data->new_opp.supplies = opp_table->sod_supplies +
2388 opp_table->regulator_count;
2389 }
2390 mutex_unlock(&opp_table->lock);
2391
2392 opp_table->set_opp = set_opp;
4dab160e 2393
fa30184d 2394 return opp_table;
4dab160e
VK
2395}
2396EXPORT_SYMBOL_GPL(dev_pm_opp_register_set_opp_helper);
2397
2398/**
604a7aeb 2399 * dev_pm_opp_unregister_set_opp_helper() - Releases resources blocked for
4dab160e 2400 * set_opp helper
fa30184d 2401 * @opp_table: OPP table returned from dev_pm_opp_register_set_opp_helper().
4dab160e 2402 *
fa30184d 2403 * Release resources blocked for platform specific set_opp helper.
4dab160e 2404 */
604a7aeb 2405void dev_pm_opp_unregister_set_opp_helper(struct opp_table *opp_table)
4dab160e 2406{
c7bf8758
VK
2407 if (unlikely(!opp_table))
2408 return;
2409
4dab160e 2410 opp_table->set_opp = NULL;
38bb3439
VK
2411
2412 mutex_lock(&opp_table->lock);
2413 kfree(opp_table->set_opp_data);
2414 opp_table->set_opp_data = NULL;
2415 mutex_unlock(&opp_table->lock);
2416
fa30184d 2417 dev_pm_opp_put_opp_table(opp_table);
4dab160e 2418}
604a7aeb 2419EXPORT_SYMBOL_GPL(dev_pm_opp_unregister_set_opp_helper);
4dab160e 2420
a3c47af6
DO
2421static void devm_pm_opp_unregister_set_opp_helper(void *data)
2422{
2423 dev_pm_opp_unregister_set_opp_helper(data);
2424}
2425
2426/**
2427 * devm_pm_opp_register_set_opp_helper() - Register custom set OPP helper
2428 * @dev: Device for which the helper is getting registered.
2429 * @set_opp: Custom set OPP helper.
2430 *
2431 * This is a resource-managed version of dev_pm_opp_register_set_opp_helper().
2432 *
c41c8a34 2433 * Return: 0 on success and errorno otherwise.
a3c47af6 2434 */
c41c8a34
DO
2435int devm_pm_opp_register_set_opp_helper(struct device *dev,
2436 int (*set_opp)(struct dev_pm_set_opp_data *data))
a3c47af6
DO
2437{
2438 struct opp_table *opp_table;
a3c47af6
DO
2439
2440 opp_table = dev_pm_opp_register_set_opp_helper(dev, set_opp);
2441 if (IS_ERR(opp_table))
c41c8a34 2442 return PTR_ERR(opp_table);
a3c47af6 2443
c41c8a34
DO
2444 return devm_add_action_or_reset(dev, devm_pm_opp_unregister_set_opp_helper,
2445 opp_table);
a3c47af6
DO
2446}
2447EXPORT_SYMBOL_GPL(devm_pm_opp_register_set_opp_helper);
2448
6319aee1
VK
2449static void _opp_detach_genpd(struct opp_table *opp_table)
2450{
2451 int index;
2452
cb60e960
VK
2453 if (!opp_table->genpd_virt_devs)
2454 return;
2455
6319aee1
VK
2456 for (index = 0; index < opp_table->required_opp_count; index++) {
2457 if (!opp_table->genpd_virt_devs[index])
2458 continue;
2459
2460 dev_pm_domain_detach(opp_table->genpd_virt_devs[index], false);
2461 opp_table->genpd_virt_devs[index] = NULL;
2462 }
c0ab9e08
VK
2463
2464 kfree(opp_table->genpd_virt_devs);
2465 opp_table->genpd_virt_devs = NULL;
6319aee1
VK
2466}
2467
4f018bc0 2468/**
6319aee1
VK
2469 * dev_pm_opp_attach_genpd - Attach genpd(s) for the device and save virtual device pointer
2470 * @dev: Consumer device for which the genpd is getting attached.
2471 * @names: Null terminated array of pointers containing names of genpd to attach.
17a8f868 2472 * @virt_devs: Pointer to return the array of virtual devices.
4f018bc0
VK
2473 *
2474 * Multiple generic power domains for a device are supported with the help of
2475 * virtual genpd devices, which are created for each consumer device - genpd
2476 * pair. These are the device structures which are attached to the power domain
2477 * and are required by the OPP core to set the performance state of the genpd.
6319aee1
VK
2478 * The same API also works for the case where single genpd is available and so
2479 * we don't need to support that separately.
4f018bc0
VK
2480 *
2481 * This helper will normally be called by the consumer driver of the device
6319aee1 2482 * "dev", as only that has details of the genpd names.
4f018bc0 2483 *
6319aee1
VK
2484 * This helper needs to be called once with a list of all genpd to attach.
2485 * Otherwise the original device structure will be used instead by the OPP core.
baea35e4
VK
2486 *
2487 * The order of entries in the names array must match the order in which
2488 * "required-opps" are added in DT.
4f018bc0 2489 */
17a8f868 2490struct opp_table *dev_pm_opp_attach_genpd(struct device *dev,
3734b9f2 2491 const char * const *names, struct device ***virt_devs)
4f018bc0
VK
2492{
2493 struct opp_table *opp_table;
6319aee1 2494 struct device *virt_dev;
baea35e4 2495 int index = 0, ret = -EINVAL;
3734b9f2 2496 const char * const *name = names;
4f018bc0 2497
32439ac7 2498 opp_table = _add_opp_table(dev, false);
dd461cd9
SG
2499 if (IS_ERR(opp_table))
2500 return opp_table;
4f018bc0 2501
cb60e960
VK
2502 if (opp_table->genpd_virt_devs)
2503 return opp_table;
4f018bc0 2504
6319aee1
VK
2505 /*
2506 * If the genpd's OPP table isn't already initialized, parsing of the
2507 * required-opps fail for dev. We should retry this after genpd's OPP
2508 * table is added.
2509 */
2510 if (!opp_table->required_opp_count) {
2511 ret = -EPROBE_DEFER;
2512 goto put_table;
2513 }
2514
4f018bc0
VK
2515 mutex_lock(&opp_table->genpd_virt_dev_lock);
2516
c0ab9e08
VK
2517 opp_table->genpd_virt_devs = kcalloc(opp_table->required_opp_count,
2518 sizeof(*opp_table->genpd_virt_devs),
2519 GFP_KERNEL);
2520 if (!opp_table->genpd_virt_devs)
2521 goto unlock;
4f018bc0 2522
6319aee1 2523 while (*name) {
6319aee1
VK
2524 if (index >= opp_table->required_opp_count) {
2525 dev_err(dev, "Index can't be greater than required-opp-count - 1, %s (%d : %d)\n",
2526 *name, opp_table->required_opp_count, index);
2527 goto err;
2528 }
4f018bc0 2529
6319aee1
VK
2530 virt_dev = dev_pm_domain_attach_by_name(dev, *name);
2531 if (IS_ERR(virt_dev)) {
2532 ret = PTR_ERR(virt_dev);
2533 dev_err(dev, "Couldn't attach to pm_domain: %d\n", ret);
2534 goto err;
2535 }
2536
2537 opp_table->genpd_virt_devs[index] = virt_dev;
baea35e4 2538 index++;
6319aee1 2539 name++;
4f018bc0
VK
2540 }
2541
17a8f868
VK
2542 if (virt_devs)
2543 *virt_devs = opp_table->genpd_virt_devs;
4f018bc0
VK
2544 mutex_unlock(&opp_table->genpd_virt_dev_lock);
2545
2546 return opp_table;
6319aee1
VK
2547
2548err:
2549 _opp_detach_genpd(opp_table);
c0ab9e08 2550unlock:
6319aee1
VK
2551 mutex_unlock(&opp_table->genpd_virt_dev_lock);
2552
2553put_table:
2554 dev_pm_opp_put_opp_table(opp_table);
2555
2556 return ERR_PTR(ret);
4f018bc0 2557}
6319aee1 2558EXPORT_SYMBOL_GPL(dev_pm_opp_attach_genpd);
4f018bc0
VK
2559
2560/**
6319aee1
VK
2561 * dev_pm_opp_detach_genpd() - Detach genpd(s) from the device.
2562 * @opp_table: OPP table returned by dev_pm_opp_attach_genpd().
4f018bc0 2563 *
6319aee1
VK
2564 * This detaches the genpd(s), resets the virtual device pointers, and puts the
2565 * OPP table.
4f018bc0 2566 */
6319aee1 2567void dev_pm_opp_detach_genpd(struct opp_table *opp_table)
4f018bc0 2568{
c7bf8758
VK
2569 if (unlikely(!opp_table))
2570 return;
2571
4f018bc0
VK
2572 /*
2573 * Acquire genpd_virt_dev_lock to make sure virt_dev isn't getting
2574 * used in parallel.
2575 */
2576 mutex_lock(&opp_table->genpd_virt_dev_lock);
6319aee1 2577 _opp_detach_genpd(opp_table);
4f018bc0
VK
2578 mutex_unlock(&opp_table->genpd_virt_dev_lock);
2579
6319aee1 2580 dev_pm_opp_put_opp_table(opp_table);
4f018bc0 2581}
6319aee1 2582EXPORT_SYMBOL_GPL(dev_pm_opp_detach_genpd);
4f018bc0 2583
b4b9e223
DO
2584static void devm_pm_opp_detach_genpd(void *data)
2585{
2586 dev_pm_opp_detach_genpd(data);
2587}
2588
2589/**
2590 * devm_pm_opp_attach_genpd - Attach genpd(s) for the device and save virtual
2591 * device pointer
2592 * @dev: Consumer device for which the genpd is getting attached.
2593 * @names: Null terminated array of pointers containing names of genpd to attach.
2594 * @virt_devs: Pointer to return the array of virtual devices.
2595 *
2596 * This is a resource-managed version of dev_pm_opp_attach_genpd().
2597 *
9edf48a4 2598 * Return: 0 on success and errorno otherwise.
b4b9e223 2599 */
3734b9f2 2600int devm_pm_opp_attach_genpd(struct device *dev, const char * const *names,
9edf48a4 2601 struct device ***virt_devs)
b4b9e223
DO
2602{
2603 struct opp_table *opp_table;
b4b9e223
DO
2604
2605 opp_table = dev_pm_opp_attach_genpd(dev, names, virt_devs);
2606 if (IS_ERR(opp_table))
9edf48a4 2607 return PTR_ERR(opp_table);
b4b9e223 2608
9edf48a4
DO
2609 return devm_add_action_or_reset(dev, devm_pm_opp_detach_genpd,
2610 opp_table);
b4b9e223
DO
2611}
2612EXPORT_SYMBOL_GPL(devm_pm_opp_attach_genpd);
2613
7d8658ef
SK
2614/**
2615 * dev_pm_opp_xlate_required_opp() - Find required OPP for @src_table OPP.
2616 * @src_table: OPP table which has @dst_table as one of its required OPP table.
2617 * @dst_table: Required OPP table of the @src_table.
2618 * @src_opp: OPP from the @src_table.
2619 *
2620 * This function returns the OPP (present in @dst_table) pointed out by the
2621 * "required-opps" property of the @src_opp (present in @src_table).
2622 *
2623 * The callers are required to call dev_pm_opp_put() for the returned OPP after
2624 * use.
2625 *
2626 * Return: pointer to 'struct dev_pm_opp' on success and errorno otherwise.
2627 */
2628struct dev_pm_opp *dev_pm_opp_xlate_required_opp(struct opp_table *src_table,
2629 struct opp_table *dst_table,
2630 struct dev_pm_opp *src_opp)
2631{
2632 struct dev_pm_opp *opp, *dest_opp = ERR_PTR(-ENODEV);
2633 int i;
2634
2635 if (!src_table || !dst_table || !src_opp ||
2636 !src_table->required_opp_tables)
2637 return ERR_PTR(-EINVAL);
2638
2639 /* required-opps not fully initialized yet */
2640 if (lazy_linking_pending(src_table))
2641 return ERR_PTR(-EBUSY);
2642
2643 for (i = 0; i < src_table->required_opp_count; i++) {
2644 if (src_table->required_opp_tables[i] == dst_table) {
2645 mutex_lock(&src_table->lock);
2646
2647 list_for_each_entry(opp, &src_table->opp_list, node) {
2648 if (opp == src_opp) {
2649 dest_opp = opp->required_opps[i];
2650 dev_pm_opp_get(dest_opp);
2651 break;
2652 }
2653 }
2654
2655 mutex_unlock(&src_table->lock);
2656 break;
2657 }
2658 }
2659
2660 if (IS_ERR(dest_opp)) {
2661 pr_err("%s: Couldn't find matching OPP (%p: %p)\n", __func__,
2662 src_table, dst_table);
2663 }
2664
2665 return dest_opp;
2666}
2667EXPORT_SYMBOL_GPL(dev_pm_opp_xlate_required_opp);
2668
c8a59103
VK
2669/**
2670 * dev_pm_opp_xlate_performance_state() - Find required OPP's pstate for src_table.
2671 * @src_table: OPP table which has dst_table as one of its required OPP table.
2672 * @dst_table: Required OPP table of the src_table.
2673 * @pstate: Current performance state of the src_table.
2674 *
2675 * This Returns pstate of the OPP (present in @dst_table) pointed out by the
2676 * "required-opps" property of the OPP (present in @src_table) which has
2677 * performance state set to @pstate.
2678 *
2679 * Return: Zero or positive performance state on success, otherwise negative
2680 * value on errors.
2681 */
2682int dev_pm_opp_xlate_performance_state(struct opp_table *src_table,
2683 struct opp_table *dst_table,
2684 unsigned int pstate)
2685{
2686 struct dev_pm_opp *opp;
2687 int dest_pstate = -EINVAL;
2688 int i;
2689
c8a59103
VK
2690 /*
2691 * Normally the src_table will have the "required_opps" property set to
2692 * point to one of the OPPs in the dst_table, but in some cases the
2693 * genpd and its master have one to one mapping of performance states
2694 * and so none of them have the "required-opps" property set. Return the
2695 * pstate of the src_table as it is in such cases.
2696 */
f2f4d2b8 2697 if (!src_table || !src_table->required_opp_count)
c8a59103
VK
2698 return pstate;
2699
7eba0c76
VK
2700 /* required-opps not fully initialized yet */
2701 if (lazy_linking_pending(src_table))
2702 return -EBUSY;
2703
c8a59103
VK
2704 for (i = 0; i < src_table->required_opp_count; i++) {
2705 if (src_table->required_opp_tables[i]->np == dst_table->np)
2706 break;
2707 }
2708
2709 if (unlikely(i == src_table->required_opp_count)) {
2710 pr_err("%s: Couldn't find matching OPP table (%p: %p)\n",
2711 __func__, src_table, dst_table);
2712 return -EINVAL;
2713 }
2714
2715 mutex_lock(&src_table->lock);
2716
2717 list_for_each_entry(opp, &src_table->opp_list, node) {
2718 if (opp->pstate == pstate) {
2719 dest_pstate = opp->required_opps[i]->pstate;
2720 goto unlock;
2721 }
2722 }
2723
2724 pr_err("%s: Couldn't find matching OPP (%p: %p)\n", __func__, src_table,
2725 dst_table);
2726
2727unlock:
2728 mutex_unlock(&src_table->lock);
2729
2730 return dest_pstate;
2731}
2732
38393409
VK
2733/**
2734 * dev_pm_opp_add() - Add an OPP table from a table definitions
2735 * @dev: device for which we do this operation
2736 * @freq: Frequency in Hz for this OPP
2737 * @u_volt: Voltage in uVolts for this OPP
2738 *
2c2709dc 2739 * This function adds an opp definition to the opp table and returns status.
38393409
VK
2740 * The opp is made available by default and it can be controlled using
2741 * dev_pm_opp_enable/disable functions.
2742 *
38393409 2743 * Return:
984f16c8 2744 * 0 On success OR
38393409 2745 * Duplicate OPPs (both freq and volt are same) and opp->available
984f16c8 2746 * -EEXIST Freq are same and volt are different OR
38393409 2747 * Duplicate OPPs (both freq and volt are same) and !opp->available
984f16c8 2748 * -ENOMEM Memory allocation failure
38393409
VK
2749 */
2750int dev_pm_opp_add(struct device *dev, unsigned long freq, unsigned long u_volt)
2751{
8cd2f6e8
VK
2752 struct opp_table *opp_table;
2753 int ret;
2754
32439ac7 2755 opp_table = _add_opp_table(dev, true);
dd461cd9
SG
2756 if (IS_ERR(opp_table))
2757 return PTR_ERR(opp_table);
8cd2f6e8 2758
46f48aca
VK
2759 /* Fix regulator count for dynamic OPPs */
2760 opp_table->regulator_count = 1;
2761
8cd2f6e8 2762 ret = _opp_add_v1(opp_table, dev, freq, u_volt, true);
0ad8c623
VK
2763 if (ret)
2764 dev_pm_opp_put_opp_table(opp_table);
8cd2f6e8 2765
8cd2f6e8 2766 return ret;
38393409 2767}
5d4879cd 2768EXPORT_SYMBOL_GPL(dev_pm_opp_add);
e1f60b29
NM
2769
2770/**
327854c8 2771 * _opp_set_availability() - helper to set the availability of an opp
e1f60b29
NM
2772 * @dev: device for which we do this operation
2773 * @freq: OPP frequency to modify availability
2774 * @availability_req: availability status requested for this opp
2775 *
052c6f19
VK
2776 * Set the availability of an OPP, opp_{enable,disable} share a common logic
2777 * which is isolated here.
e1f60b29 2778 *
984f16c8 2779 * Return: -EINVAL for bad pointers, -ENOMEM if no memory available for the
e1a2d49c 2780 * copy operation, returns 0 if no modification was done OR modification was
e1f60b29 2781 * successful.
e1f60b29 2782 */
327854c8
NM
2783static int _opp_set_availability(struct device *dev, unsigned long freq,
2784 bool availability_req)
e1f60b29 2785{
2c2709dc 2786 struct opp_table *opp_table;
a7f3987e 2787 struct dev_pm_opp *tmp_opp, *opp = ERR_PTR(-ENODEV);
e1f60b29
NM
2788 int r = 0;
2789
2c2709dc
VK
2790 /* Find the opp_table */
2791 opp_table = _find_opp_table(dev);
2792 if (IS_ERR(opp_table)) {
2793 r = PTR_ERR(opp_table);
e1f60b29 2794 dev_warn(dev, "%s: Device OPP not found (%d)\n", __func__, r);
a7f3987e 2795 return r;
e1f60b29
NM
2796 }
2797
37a73ec0
VK
2798 mutex_lock(&opp_table->lock);
2799
e1f60b29 2800 /* Do we have the frequency? */
2c2709dc 2801 list_for_each_entry(tmp_opp, &opp_table->opp_list, node) {
e1f60b29
NM
2802 if (tmp_opp->rate == freq) {
2803 opp = tmp_opp;
2804 break;
2805 }
2806 }
37a73ec0 2807
e1f60b29
NM
2808 if (IS_ERR(opp)) {
2809 r = PTR_ERR(opp);
2810 goto unlock;
2811 }
2812
2813 /* Is update really needed? */
2814 if (opp->available == availability_req)
2815 goto unlock;
e1f60b29 2816
a7f3987e 2817 opp->available = availability_req;
e1f60b29 2818
e4d8ae00
VK
2819 dev_pm_opp_get(opp);
2820 mutex_unlock(&opp_table->lock);
2821
03ca370f
MH
2822 /* Notify the change of the OPP availability */
2823 if (availability_req)
052c6f19 2824 blocking_notifier_call_chain(&opp_table->head, OPP_EVENT_ENABLE,
a7f3987e 2825 opp);
03ca370f 2826 else
052c6f19 2827 blocking_notifier_call_chain(&opp_table->head,
a7f3987e 2828 OPP_EVENT_DISABLE, opp);
e1f60b29 2829
e4d8ae00
VK
2830 dev_pm_opp_put(opp);
2831 goto put_table;
2832
e1f60b29 2833unlock:
5b650b38 2834 mutex_unlock(&opp_table->lock);
e4d8ae00 2835put_table:
5b650b38 2836 dev_pm_opp_put_opp_table(opp_table);
e1f60b29
NM
2837 return r;
2838}
2839
25cb20a2
SB
2840/**
2841 * dev_pm_opp_adjust_voltage() - helper to change the voltage of an OPP
2842 * @dev: device for which we do this operation
2843 * @freq: OPP frequency to adjust voltage of
2844 * @u_volt: new OPP target voltage
2845 * @u_volt_min: new OPP min voltage
2846 * @u_volt_max: new OPP max voltage
2847 *
2848 * Return: -EINVAL for bad pointers, -ENOMEM if no memory available for the
2849 * copy operation, returns 0 if no modifcation was done OR modification was
2850 * successful.
2851 */
2852int dev_pm_opp_adjust_voltage(struct device *dev, unsigned long freq,
2853 unsigned long u_volt, unsigned long u_volt_min,
2854 unsigned long u_volt_max)
2855
2856{
2857 struct opp_table *opp_table;
2858 struct dev_pm_opp *tmp_opp, *opp = ERR_PTR(-ENODEV);
2859 int r = 0;
2860
2861 /* Find the opp_table */
2862 opp_table = _find_opp_table(dev);
2863 if (IS_ERR(opp_table)) {
2864 r = PTR_ERR(opp_table);
2865 dev_warn(dev, "%s: Device OPP not found (%d)\n", __func__, r);
2866 return r;
2867 }
2868
2869 mutex_lock(&opp_table->lock);
2870
2871 /* Do we have the frequency? */
2872 list_for_each_entry(tmp_opp, &opp_table->opp_list, node) {
2873 if (tmp_opp->rate == freq) {
2874 opp = tmp_opp;
2875 break;
2876 }
2877 }
2878
2879 if (IS_ERR(opp)) {
2880 r = PTR_ERR(opp);
2881 goto adjust_unlock;
2882 }
2883
2884 /* Is update really needed? */
2885 if (opp->supplies->u_volt == u_volt)
2886 goto adjust_unlock;
2887
2888 opp->supplies->u_volt = u_volt;
2889 opp->supplies->u_volt_min = u_volt_min;
2890 opp->supplies->u_volt_max = u_volt_max;
2891
2892 dev_pm_opp_get(opp);
2893 mutex_unlock(&opp_table->lock);
2894
2895 /* Notify the voltage change of the OPP */
2896 blocking_notifier_call_chain(&opp_table->head, OPP_EVENT_ADJUST_VOLTAGE,
2897 opp);
2898
2899 dev_pm_opp_put(opp);
2900 goto adjust_put_table;
2901
2902adjust_unlock:
2903 mutex_unlock(&opp_table->lock);
2904adjust_put_table:
2905 dev_pm_opp_put_opp_table(opp_table);
2906 return r;
2907}
03649154 2908EXPORT_SYMBOL_GPL(dev_pm_opp_adjust_voltage);
25cb20a2 2909
e1f60b29 2910/**
5d4879cd 2911 * dev_pm_opp_enable() - Enable a specific OPP
e1f60b29
NM
2912 * @dev: device for which we do this operation
2913 * @freq: OPP frequency to enable
2914 *
2915 * Enables a provided opp. If the operation is valid, this returns 0, else the
2916 * corresponding error value. It is meant to be used for users an OPP available
5d4879cd 2917 * after being temporarily made unavailable with dev_pm_opp_disable.
e1f60b29 2918 *
984f16c8 2919 * Return: -EINVAL for bad pointers, -ENOMEM if no memory available for the
e1a2d49c 2920 * copy operation, returns 0 if no modification was done OR modification was
984f16c8 2921 * successful.
e1f60b29 2922 */
5d4879cd 2923int dev_pm_opp_enable(struct device *dev, unsigned long freq)
e1f60b29 2924{
327854c8 2925 return _opp_set_availability(dev, freq, true);
e1f60b29 2926}
5d4879cd 2927EXPORT_SYMBOL_GPL(dev_pm_opp_enable);
e1f60b29
NM
2928
2929/**
5d4879cd 2930 * dev_pm_opp_disable() - Disable a specific OPP
e1f60b29
NM
2931 * @dev: device for which we do this operation
2932 * @freq: OPP frequency to disable
2933 *
2934 * Disables a provided opp. If the operation is valid, this returns
2935 * 0, else the corresponding error value. It is meant to be a temporary
2936 * control by users to make this OPP not available until the circumstances are
5d4879cd 2937 * right to make it available again (with a call to dev_pm_opp_enable).
e1f60b29 2938 *
984f16c8 2939 * Return: -EINVAL for bad pointers, -ENOMEM if no memory available for the
e1a2d49c 2940 * copy operation, returns 0 if no modification was done OR modification was
984f16c8 2941 * successful.
e1f60b29 2942 */
5d4879cd 2943int dev_pm_opp_disable(struct device *dev, unsigned long freq)
e1f60b29 2944{
327854c8 2945 return _opp_set_availability(dev, freq, false);
e1f60b29 2946}
5d4879cd 2947EXPORT_SYMBOL_GPL(dev_pm_opp_disable);
e1f60b29 2948
03ca370f 2949/**
dc2c9ad5
VK
2950 * dev_pm_opp_register_notifier() - Register OPP notifier for the device
2951 * @dev: Device for which notifier needs to be registered
2952 * @nb: Notifier block to be registered
984f16c8 2953 *
dc2c9ad5
VK
2954 * Return: 0 on success or a negative error value.
2955 */
2956int dev_pm_opp_register_notifier(struct device *dev, struct notifier_block *nb)
2957{
2958 struct opp_table *opp_table;
2959 int ret;
2960
dc2c9ad5 2961 opp_table = _find_opp_table(dev);
5b650b38
VK
2962 if (IS_ERR(opp_table))
2963 return PTR_ERR(opp_table);
2964
052c6f19 2965 ret = blocking_notifier_chain_register(&opp_table->head, nb);
dc2c9ad5 2966
5b650b38 2967 dev_pm_opp_put_opp_table(opp_table);
dc2c9ad5
VK
2968
2969 return ret;
2970}
2971EXPORT_SYMBOL(dev_pm_opp_register_notifier);
2972
2973/**
2974 * dev_pm_opp_unregister_notifier() - Unregister OPP notifier for the device
2975 * @dev: Device for which notifier needs to be unregistered
2976 * @nb: Notifier block to be unregistered
984f16c8 2977 *
dc2c9ad5 2978 * Return: 0 on success or a negative error value.
03ca370f 2979 */
dc2c9ad5
VK
2980int dev_pm_opp_unregister_notifier(struct device *dev,
2981 struct notifier_block *nb)
03ca370f 2982{
dc2c9ad5
VK
2983 struct opp_table *opp_table;
2984 int ret;
03ca370f 2985
dc2c9ad5 2986 opp_table = _find_opp_table(dev);
5b650b38
VK
2987 if (IS_ERR(opp_table))
2988 return PTR_ERR(opp_table);
dc2c9ad5 2989
052c6f19 2990 ret = blocking_notifier_chain_unregister(&opp_table->head, nb);
03ca370f 2991
5b650b38 2992 dev_pm_opp_put_opp_table(opp_table);
dc2c9ad5
VK
2993
2994 return ret;
03ca370f 2995}
dc2c9ad5 2996EXPORT_SYMBOL(dev_pm_opp_unregister_notifier);
b496dfbc 2997
8aaf6264
VK
2998/**
2999 * dev_pm_opp_remove_table() - Free all OPPs associated with the device
3000 * @dev: device pointer used to lookup OPP table.
3001 *
3002 * Free both OPPs created using static entries present in DT and the
3003 * dynamically added entries.
3004 */
3005void dev_pm_opp_remove_table(struct device *dev)
9274c892
VK
3006{
3007 struct opp_table *opp_table;
3008
2c2709dc
VK
3009 /* Check for existing table for 'dev' */
3010 opp_table = _find_opp_table(dev);
3011 if (IS_ERR(opp_table)) {
3012 int error = PTR_ERR(opp_table);
737002b5
VK
3013
3014 if (error != -ENODEV)
2c2709dc 3015 WARN(1, "%s: opp_table: %d\n",
737002b5
VK
3016 IS_ERR_OR_NULL(dev) ?
3017 "Invalid device" : dev_name(dev),
3018 error);
5b650b38 3019 return;
737002b5
VK
3020 }
3021
922ff075
VK
3022 /*
3023 * Drop the extra reference only if the OPP table was successfully added
3024 * with dev_pm_opp_of_add_table() earlier.
3025 **/
3026 if (_opp_remove_all_static(opp_table))
3027 dev_pm_opp_put_opp_table(opp_table);
cdd6ed90
VK
3028
3029 /* Drop reference taken by _find_opp_table() */
3030 dev_pm_opp_put_opp_table(opp_table);
737002b5 3031}
411466c5 3032EXPORT_SYMBOL_GPL(dev_pm_opp_remove_table);
ce8073d8
DO
3033
3034/**
3035 * dev_pm_opp_sync_regulators() - Sync state of voltage regulators
3036 * @dev: device for which we do this operation
3037 *
3038 * Sync voltage state of the OPP table regulators.
3039 *
3040 * Return: 0 on success or a negative error value.
3041 */
3042int dev_pm_opp_sync_regulators(struct device *dev)
3043{
3044 struct opp_table *opp_table;
3045 struct regulator *reg;
3046 int i, ret = 0;
3047
3048 /* Device may not have OPP table */
3049 opp_table = _find_opp_table(dev);
3050 if (IS_ERR(opp_table))
3051 return 0;
3052
3053 /* Regulator may not be required for the device */
3054 if (unlikely(!opp_table->regulators))
3055 goto put_table;
3056
3057 /* Nothing to sync if voltage wasn't changed */
3058 if (!opp_table->enabled)
3059 goto put_table;
3060
3061 for (i = 0; i < opp_table->regulator_count; i++) {
3062 reg = opp_table->regulators[i];
3063 ret = regulator_sync_voltage(reg);
3064 if (ret)
3065 break;
3066 }
3067put_table:
3068 /* Drop reference taken by _find_opp_table() */
3069 dev_pm_opp_put_opp_table(opp_table);
3070
3071 return ret;
3072}
3073EXPORT_SYMBOL_GPL(dev_pm_opp_sync_regulators);