]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/opp/core.c
opp: Split out _opp_set_rate_zero()
[mirror_ubuntu-jammy-kernel.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);
e1f60b29 30/* Lock to allow exclusive modification to the device and opp lists */
2c2709dc 31DEFINE_MUTEX(opp_table_lock);
e1f60b29 32
2c2709dc
VK
33static struct opp_device *_find_opp_dev(const struct device *dev,
34 struct opp_table *opp_table)
06441658 35{
2c2709dc 36 struct opp_device *opp_dev;
06441658 37
2c2709dc
VK
38 list_for_each_entry(opp_dev, &opp_table->dev_list, node)
39 if (opp_dev->dev == dev)
40 return opp_dev;
06441658
VK
41
42 return NULL;
43}
44
6ac42397 45static struct opp_table *_find_opp_table_unlocked(struct device *dev)
5b650b38
VK
46{
47 struct opp_table *opp_table;
3d255699 48 bool found;
5b650b38
VK
49
50 list_for_each_entry(opp_table, &opp_tables, node) {
3d255699
VK
51 mutex_lock(&opp_table->lock);
52 found = !!_find_opp_dev(dev, opp_table);
53 mutex_unlock(&opp_table->lock);
54
55 if (found) {
5b650b38
VK
56 _get_opp_table_kref(opp_table);
57
58 return opp_table;
59 }
60 }
61
62 return ERR_PTR(-ENODEV);
63}
64
e1f60b29 65/**
2c2709dc
VK
66 * _find_opp_table() - find opp_table struct using device pointer
67 * @dev: device pointer used to lookup OPP table
e1f60b29 68 *
052c6f19 69 * Search OPP table for one containing matching device.
e1f60b29 70 *
2c2709dc 71 * Return: pointer to 'struct opp_table' if found, otherwise -ENODEV or
e1f60b29
NM
72 * -EINVAL based on type of error.
73 *
5b650b38 74 * The callers must call dev_pm_opp_put_opp_table() after the table is used.
e1f60b29 75 */
2c2709dc 76struct opp_table *_find_opp_table(struct device *dev)
e1f60b29 77{
2c2709dc 78 struct opp_table *opp_table;
e1f60b29 79
50a3cb04 80 if (IS_ERR_OR_NULL(dev)) {
e1f60b29
NM
81 pr_err("%s: Invalid parameters\n", __func__);
82 return ERR_PTR(-EINVAL);
83 }
84
5b650b38
VK
85 mutex_lock(&opp_table_lock);
86 opp_table = _find_opp_table_unlocked(dev);
87 mutex_unlock(&opp_table_lock);
e1f60b29 88
5b650b38 89 return opp_table;
e1f60b29
NM
90}
91
92/**
d6d00742 93 * dev_pm_opp_get_voltage() - Gets the voltage corresponding to an opp
e1f60b29
NM
94 * @opp: opp for which voltage has to be returned for
95 *
984f16c8 96 * Return: voltage in micro volt corresponding to the opp, else
e1f60b29
NM
97 * return 0
98 *
dfbe4678 99 * This is useful only for devices with single power supply.
e1f60b29 100 */
47d43ba7 101unsigned long dev_pm_opp_get_voltage(struct dev_pm_opp *opp)
e1f60b29 102{
052c6f19 103 if (IS_ERR_OR_NULL(opp)) {
e1f60b29 104 pr_err("%s: Invalid parameters\n", __func__);
052c6f19
VK
105 return 0;
106 }
e1f60b29 107
052c6f19 108 return opp->supplies[0].u_volt;
e1f60b29 109}
5d4879cd 110EXPORT_SYMBOL_GPL(dev_pm_opp_get_voltage);
e1f60b29
NM
111
112/**
5d4879cd 113 * dev_pm_opp_get_freq() - Gets the frequency corresponding to an available opp
e1f60b29
NM
114 * @opp: opp for which frequency has to be returned for
115 *
984f16c8 116 * Return: frequency in hertz corresponding to the opp, else
e1f60b29 117 * return 0
e1f60b29 118 */
47d43ba7 119unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp)
e1f60b29 120{
06a8a059 121 if (IS_ERR_OR_NULL(opp)) {
e1f60b29 122 pr_err("%s: Invalid parameters\n", __func__);
052c6f19
VK
123 return 0;
124 }
e1f60b29 125
052c6f19 126 return opp->rate;
e1f60b29 127}
5d4879cd 128EXPORT_SYMBOL_GPL(dev_pm_opp_get_freq);
e1f60b29 129
5b93ac54
RN
130/**
131 * dev_pm_opp_get_level() - Gets the level corresponding to an available opp
132 * @opp: opp for which level value has to be returned for
133 *
134 * Return: level read from device tree corresponding to the opp, else
135 * return 0.
136 */
137unsigned int dev_pm_opp_get_level(struct dev_pm_opp *opp)
138{
139 if (IS_ERR_OR_NULL(opp) || !opp->available) {
140 pr_err("%s: Invalid parameters\n", __func__);
141 return 0;
142 }
143
144 return opp->level;
145}
146EXPORT_SYMBOL_GPL(dev_pm_opp_get_level);
147
19445b25
BZ
148/**
149 * dev_pm_opp_is_turbo() - Returns if opp is turbo OPP or not
150 * @opp: opp for which turbo mode is being verified
151 *
152 * Turbo OPPs are not for normal use, and can be enabled (under certain
153 * conditions) for short duration of times to finish high throughput work
154 * quickly. Running on them for longer times may overheat the chip.
155 *
156 * Return: true if opp is turbo opp, else false.
19445b25
BZ
157 */
158bool dev_pm_opp_is_turbo(struct dev_pm_opp *opp)
159{
052c6f19 160 if (IS_ERR_OR_NULL(opp) || !opp->available) {
19445b25
BZ
161 pr_err("%s: Invalid parameters\n", __func__);
162 return false;
163 }
164
052c6f19 165 return opp->turbo;
19445b25
BZ
166}
167EXPORT_SYMBOL_GPL(dev_pm_opp_is_turbo);
168
3ca9bb33
VK
169/**
170 * dev_pm_opp_get_max_clock_latency() - Get max clock latency in nanoseconds
171 * @dev: device for which we do this operation
172 *
173 * Return: This function returns the max clock latency in nanoseconds.
3ca9bb33
VK
174 */
175unsigned long dev_pm_opp_get_max_clock_latency(struct device *dev)
176{
2c2709dc 177 struct opp_table *opp_table;
3ca9bb33
VK
178 unsigned long clock_latency_ns;
179
2c2709dc
VK
180 opp_table = _find_opp_table(dev);
181 if (IS_ERR(opp_table))
5b650b38
VK
182 return 0;
183
184 clock_latency_ns = opp_table->clock_latency_ns_max;
185
186 dev_pm_opp_put_opp_table(opp_table);
3ca9bb33 187
3ca9bb33
VK
188 return clock_latency_ns;
189}
190EXPORT_SYMBOL_GPL(dev_pm_opp_get_max_clock_latency);
191
655c9df9
VK
192/**
193 * dev_pm_opp_get_max_volt_latency() - Get max voltage latency in nanoseconds
194 * @dev: device for which we do this operation
195 *
196 * Return: This function returns the max voltage latency in nanoseconds.
655c9df9
VK
197 */
198unsigned long dev_pm_opp_get_max_volt_latency(struct device *dev)
199{
2c2709dc 200 struct opp_table *opp_table;
655c9df9 201 struct dev_pm_opp *opp;
478256bd 202 struct regulator *reg;
655c9df9 203 unsigned long latency_ns = 0;
dfbe4678
VK
204 int ret, i, count;
205 struct {
206 unsigned long min;
207 unsigned long max;
208 } *uV;
209
cdd3e614
VK
210 opp_table = _find_opp_table(dev);
211 if (IS_ERR(opp_table))
212 return 0;
213
dfbe4678 214 /* Regulator may not be required for the device */
90e3577b 215 if (!opp_table->regulators)
cdd3e614 216 goto put_opp_table;
dfbe4678 217
90e3577b
VK
218 count = opp_table->regulator_count;
219
dfbe4678
VK
220 uV = kmalloc_array(count, sizeof(*uV), GFP_KERNEL);
221 if (!uV)
478256bd 222 goto put_opp_table;
655c9df9 223
052c6f19
VK
224 mutex_lock(&opp_table->lock);
225
dfbe4678
VK
226 for (i = 0; i < count; i++) {
227 uV[i].min = ~0;
228 uV[i].max = 0;
655c9df9 229
052c6f19 230 list_for_each_entry(opp, &opp_table->opp_list, node) {
dfbe4678
VK
231 if (!opp->available)
232 continue;
233
234 if (opp->supplies[i].u_volt_min < uV[i].min)
235 uV[i].min = opp->supplies[i].u_volt_min;
236 if (opp->supplies[i].u_volt_max > uV[i].max)
237 uV[i].max = opp->supplies[i].u_volt_max;
238 }
655c9df9
VK
239 }
240
052c6f19 241 mutex_unlock(&opp_table->lock);
655c9df9
VK
242
243 /*
2c2709dc 244 * The caller needs to ensure that opp_table (and hence the regulator)
655c9df9
VK
245 * isn't freed, while we are executing this routine.
246 */
8cc31116 247 for (i = 0; i < count; i++) {
478256bd 248 reg = opp_table->regulators[i];
dfbe4678
VK
249 ret = regulator_set_voltage_time(reg, uV[i].min, uV[i].max);
250 if (ret > 0)
251 latency_ns += ret * 1000;
252 }
253
dfbe4678 254 kfree(uV);
cdd3e614
VK
255put_opp_table:
256 dev_pm_opp_put_opp_table(opp_table);
655c9df9
VK
257
258 return latency_ns;
259}
260EXPORT_SYMBOL_GPL(dev_pm_opp_get_max_volt_latency);
261
21743447
VK
262/**
263 * dev_pm_opp_get_max_transition_latency() - Get max transition latency in
264 * nanoseconds
265 * @dev: device for which we do this operation
266 *
267 * Return: This function returns the max transition latency, in nanoseconds, to
268 * switch from one OPP to other.
21743447
VK
269 */
270unsigned long dev_pm_opp_get_max_transition_latency(struct device *dev)
271{
272 return dev_pm_opp_get_max_volt_latency(dev) +
273 dev_pm_opp_get_max_clock_latency(dev);
274}
275EXPORT_SYMBOL_GPL(dev_pm_opp_get_max_transition_latency);
276
4eafbd15 277/**
3aa26a3b 278 * dev_pm_opp_get_suspend_opp_freq() - Get frequency of suspend opp in Hz
4eafbd15
BZ
279 * @dev: device for which we do this operation
280 *
3aa26a3b
VK
281 * Return: This function returns the frequency of the OPP marked as suspend_opp
282 * if one is available, else returns 0;
4eafbd15 283 */
3aa26a3b 284unsigned long dev_pm_opp_get_suspend_opp_freq(struct device *dev)
4eafbd15 285{
2c2709dc 286 struct opp_table *opp_table;
3aa26a3b 287 unsigned long freq = 0;
4eafbd15 288
2c2709dc 289 opp_table = _find_opp_table(dev);
5b650b38
VK
290 if (IS_ERR(opp_table))
291 return 0;
3aa26a3b 292
5b650b38
VK
293 if (opp_table->suspend_opp && opp_table->suspend_opp->available)
294 freq = dev_pm_opp_get_freq(opp_table->suspend_opp);
295
296 dev_pm_opp_put_opp_table(opp_table);
4eafbd15 297
3aa26a3b 298 return freq;
4eafbd15 299}
3aa26a3b 300EXPORT_SYMBOL_GPL(dev_pm_opp_get_suspend_opp_freq);
4eafbd15 301
a1e8c136
VK
302int _get_opp_count(struct opp_table *opp_table)
303{
304 struct dev_pm_opp *opp;
305 int count = 0;
306
307 mutex_lock(&opp_table->lock);
308
309 list_for_each_entry(opp, &opp_table->opp_list, node) {
310 if (opp->available)
311 count++;
312 }
313
314 mutex_unlock(&opp_table->lock);
315
316 return count;
317}
318
e1f60b29 319/**
2c2709dc 320 * dev_pm_opp_get_opp_count() - Get number of opps available in the opp table
e1f60b29
NM
321 * @dev: device for which we do this operation
322 *
984f16c8 323 * Return: This function returns the number of available opps if there are any,
e1f60b29 324 * else returns 0 if none or the corresponding error value.
e1f60b29 325 */
5d4879cd 326int dev_pm_opp_get_opp_count(struct device *dev)
e1f60b29 327{
2c2709dc 328 struct opp_table *opp_table;
a1e8c136 329 int count;
e1f60b29 330
2c2709dc
VK
331 opp_table = _find_opp_table(dev);
332 if (IS_ERR(opp_table)) {
333 count = PTR_ERR(opp_table);
035ed072 334 dev_dbg(dev, "%s: OPP table not found (%d)\n",
b4718c02 335 __func__, count);
09f662f9 336 return count;
e1f60b29
NM
337 }
338
a1e8c136 339 count = _get_opp_count(opp_table);
5b650b38
VK
340 dev_pm_opp_put_opp_table(opp_table);
341
e1f60b29
NM
342 return count;
343}
5d4879cd 344EXPORT_SYMBOL_GPL(dev_pm_opp_get_opp_count);
e1f60b29
NM
345
346/**
5d4879cd 347 * dev_pm_opp_find_freq_exact() - search for an exact frequency
e1f60b29
NM
348 * @dev: device for which we do this operation
349 * @freq: frequency to search for
7ae49618 350 * @available: true/false - match for available opp
e1f60b29 351 *
2c2709dc 352 * Return: Searches for exact match in the opp table and returns pointer to the
984f16c8
NM
353 * matching opp if found, else returns ERR_PTR in case of error and should
354 * be handled using IS_ERR. Error return values can be:
0779726c
NM
355 * EINVAL: for bad pointer
356 * ERANGE: no match found for search
357 * ENODEV: if device not found in list of registered devices
e1f60b29
NM
358 *
359 * Note: available is a modifier for the search. if available=true, then the
360 * match is for exact matching frequency and is available in the stored OPP
361 * table. if false, the match is for exact frequency which is not available.
362 *
363 * This provides a mechanism to enable an opp which is not available currently
364 * or the opposite as well.
365 *
8a31d9d9
VK
366 * The callers are required to call dev_pm_opp_put() for the returned OPP after
367 * use.
e1f60b29 368 */
47d43ba7
NM
369struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
370 unsigned long freq,
371 bool available)
e1f60b29 372{
2c2709dc 373 struct opp_table *opp_table;
47d43ba7 374 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
e1f60b29 375
2c2709dc
VK
376 opp_table = _find_opp_table(dev);
377 if (IS_ERR(opp_table)) {
378 int r = PTR_ERR(opp_table);
379
380 dev_err(dev, "%s: OPP table not found (%d)\n", __func__, r);
e1f60b29
NM
381 return ERR_PTR(r);
382 }
383
052c6f19 384 mutex_lock(&opp_table->lock);
5b650b38 385
052c6f19 386 list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
e1f60b29
NM
387 if (temp_opp->available == available &&
388 temp_opp->rate == freq) {
389 opp = temp_opp;
8a31d9d9
VK
390
391 /* Increment the reference count of OPP */
392 dev_pm_opp_get(opp);
e1f60b29
NM
393 break;
394 }
395 }
396
052c6f19 397 mutex_unlock(&opp_table->lock);
5b650b38 398 dev_pm_opp_put_opp_table(opp_table);
8a31d9d9 399
e1f60b29
NM
400 return opp;
401}
5d4879cd 402EXPORT_SYMBOL_GPL(dev_pm_opp_find_freq_exact);
e1f60b29 403
71419d84
NC
404/**
405 * dev_pm_opp_find_level_exact() - search for an exact level
406 * @dev: device for which we do this operation
407 * @level: level to search for
408 *
409 * Return: Searches for exact match in the opp table and returns pointer to the
410 * matching opp if found, else returns ERR_PTR in case of error and should
411 * be handled using IS_ERR. Error return values can be:
412 * EINVAL: for bad pointer
413 * ERANGE: no match found for search
414 * ENODEV: if device not found in list of registered devices
415 *
416 * The callers are required to call dev_pm_opp_put() for the returned OPP after
417 * use.
418 */
419struct dev_pm_opp *dev_pm_opp_find_level_exact(struct device *dev,
420 unsigned int level)
421{
422 struct opp_table *opp_table;
423 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
424
425 opp_table = _find_opp_table(dev);
426 if (IS_ERR(opp_table)) {
427 int r = PTR_ERR(opp_table);
428
429 dev_err(dev, "%s: OPP table not found (%d)\n", __func__, r);
430 return ERR_PTR(r);
431 }
432
433 mutex_lock(&opp_table->lock);
434
435 list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
436 if (temp_opp->level == level) {
437 opp = temp_opp;
438
439 /* Increment the reference count of OPP */
440 dev_pm_opp_get(opp);
441 break;
442 }
443 }
444
445 mutex_unlock(&opp_table->lock);
446 dev_pm_opp_put_opp_table(opp_table);
447
448 return opp;
449}
450EXPORT_SYMBOL_GPL(dev_pm_opp_find_level_exact);
451
067b7ce0
JZ
452static noinline struct dev_pm_opp *_find_freq_ceil(struct opp_table *opp_table,
453 unsigned long *freq)
454{
455 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
456
052c6f19
VK
457 mutex_lock(&opp_table->lock);
458
459 list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
067b7ce0
JZ
460 if (temp_opp->available && temp_opp->rate >= *freq) {
461 opp = temp_opp;
462 *freq = opp->rate;
8a31d9d9
VK
463
464 /* Increment the reference count of OPP */
465 dev_pm_opp_get(opp);
067b7ce0
JZ
466 break;
467 }
468 }
469
052c6f19
VK
470 mutex_unlock(&opp_table->lock);
471
067b7ce0
JZ
472 return opp;
473}
474
e1f60b29 475/**
5d4879cd 476 * dev_pm_opp_find_freq_ceil() - Search for an rounded ceil freq
e1f60b29
NM
477 * @dev: device for which we do this operation
478 * @freq: Start frequency
479 *
480 * Search for the matching ceil *available* OPP from a starting freq
481 * for a device.
482 *
984f16c8 483 * Return: matching *opp and refreshes *freq accordingly, else returns
0779726c
NM
484 * ERR_PTR in case of error and should be handled using IS_ERR. Error return
485 * values can be:
486 * EINVAL: for bad pointer
487 * ERANGE: no match found for search
488 * ENODEV: if device not found in list of registered devices
e1f60b29 489 *
8a31d9d9
VK
490 * The callers are required to call dev_pm_opp_put() for the returned OPP after
491 * use.
e1f60b29 492 */
47d43ba7
NM
493struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
494 unsigned long *freq)
e1f60b29 495{
2c2709dc 496 struct opp_table *opp_table;
8a31d9d9 497 struct dev_pm_opp *opp;
b02ded24 498
e1f60b29
NM
499 if (!dev || !freq) {
500 dev_err(dev, "%s: Invalid argument freq=%p\n", __func__, freq);
501 return ERR_PTR(-EINVAL);
502 }
503
2c2709dc 504 opp_table = _find_opp_table(dev);
5b650b38 505 if (IS_ERR(opp_table))
2c2709dc 506 return ERR_CAST(opp_table);
5b650b38 507
8a31d9d9 508 opp = _find_freq_ceil(opp_table, freq);
e1f60b29 509
5b650b38 510 dev_pm_opp_put_opp_table(opp_table);
8a31d9d9
VK
511
512 return opp;
e1f60b29 513}
5d4879cd 514EXPORT_SYMBOL_GPL(dev_pm_opp_find_freq_ceil);
e1f60b29
NM
515
516/**
5d4879cd 517 * dev_pm_opp_find_freq_floor() - Search for a rounded floor freq
e1f60b29
NM
518 * @dev: device for which we do this operation
519 * @freq: Start frequency
520 *
521 * Search for the matching floor *available* OPP from a starting freq
522 * for a device.
523 *
984f16c8 524 * Return: matching *opp and refreshes *freq accordingly, else returns
0779726c
NM
525 * ERR_PTR in case of error and should be handled using IS_ERR. Error return
526 * values can be:
527 * EINVAL: for bad pointer
528 * ERANGE: no match found for search
529 * ENODEV: if device not found in list of registered devices
e1f60b29 530 *
8a31d9d9
VK
531 * The callers are required to call dev_pm_opp_put() for the returned OPP after
532 * use.
e1f60b29 533 */
47d43ba7
NM
534struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
535 unsigned long *freq)
e1f60b29 536{
2c2709dc 537 struct opp_table *opp_table;
47d43ba7 538 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
e1f60b29
NM
539
540 if (!dev || !freq) {
541 dev_err(dev, "%s: Invalid argument freq=%p\n", __func__, freq);
542 return ERR_PTR(-EINVAL);
543 }
544
2c2709dc 545 opp_table = _find_opp_table(dev);
5b650b38 546 if (IS_ERR(opp_table))
2c2709dc 547 return ERR_CAST(opp_table);
5b650b38 548
052c6f19 549 mutex_lock(&opp_table->lock);
e1f60b29 550
052c6f19 551 list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
e1f60b29
NM
552 if (temp_opp->available) {
553 /* go to the next node, before choosing prev */
554 if (temp_opp->rate > *freq)
555 break;
556 else
557 opp = temp_opp;
558 }
559 }
8a31d9d9
VK
560
561 /* Increment the reference count of OPP */
562 if (!IS_ERR(opp))
563 dev_pm_opp_get(opp);
052c6f19 564 mutex_unlock(&opp_table->lock);
5b650b38 565 dev_pm_opp_put_opp_table(opp_table);
8a31d9d9 566
e1f60b29
NM
567 if (!IS_ERR(opp))
568 *freq = opp->rate;
569
570 return opp;
571}
5d4879cd 572EXPORT_SYMBOL_GPL(dev_pm_opp_find_freq_floor);
e1f60b29 573
2f36bde0
AC
574/**
575 * dev_pm_opp_find_freq_ceil_by_volt() - Find OPP with highest frequency for
576 * target voltage.
577 * @dev: Device for which we do this operation.
578 * @u_volt: Target voltage.
579 *
580 * Search for OPP with highest (ceil) frequency and has voltage <= u_volt.
581 *
582 * Return: matching *opp, else returns ERR_PTR in case of error which should be
583 * handled using IS_ERR.
584 *
585 * Error return values can be:
586 * EINVAL: bad parameters
587 *
588 * The callers are required to call dev_pm_opp_put() for the returned OPP after
589 * use.
590 */
591struct dev_pm_opp *dev_pm_opp_find_freq_ceil_by_volt(struct device *dev,
592 unsigned long u_volt)
593{
594 struct opp_table *opp_table;
595 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
596
597 if (!dev || !u_volt) {
598 dev_err(dev, "%s: Invalid argument volt=%lu\n", __func__,
599 u_volt);
600 return ERR_PTR(-EINVAL);
601 }
602
603 opp_table = _find_opp_table(dev);
604 if (IS_ERR(opp_table))
605 return ERR_CAST(opp_table);
606
607 mutex_lock(&opp_table->lock);
608
609 list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
610 if (temp_opp->available) {
611 if (temp_opp->supplies[0].u_volt > u_volt)
612 break;
613 opp = temp_opp;
614 }
615 }
616
617 /* Increment the reference count of OPP */
618 if (!IS_ERR(opp))
619 dev_pm_opp_get(opp);
620
621 mutex_unlock(&opp_table->lock);
622 dev_pm_opp_put_opp_table(opp_table);
623
624 return opp;
625}
626EXPORT_SYMBOL_GPL(dev_pm_opp_find_freq_ceil_by_volt);
627
6a0712f6 628static int _set_opp_voltage(struct device *dev, struct regulator *reg,
ce31781a 629 struct dev_pm_opp_supply *supply)
6a0712f6
VK
630{
631 int ret;
632
633 /* Regulator not available for device */
634 if (IS_ERR(reg)) {
635 dev_dbg(dev, "%s: regulator not available: %ld\n", __func__,
636 PTR_ERR(reg));
637 return 0;
638 }
639
ce31781a
VK
640 dev_dbg(dev, "%s: voltages (mV): %lu %lu %lu\n", __func__,
641 supply->u_volt_min, supply->u_volt, supply->u_volt_max);
6a0712f6 642
ce31781a
VK
643 ret = regulator_set_voltage_triplet(reg, supply->u_volt_min,
644 supply->u_volt, supply->u_volt_max);
6a0712f6
VK
645 if (ret)
646 dev_err(dev, "%s: failed to set voltage (%lu %lu %lu mV): %d\n",
ce31781a
VK
647 __func__, supply->u_volt_min, supply->u_volt,
648 supply->u_volt_max, ret);
6a0712f6
VK
649
650 return ret;
651}
652
285881b5
VK
653static inline int _generic_set_opp_clk_only(struct device *dev, struct clk *clk,
654 unsigned long freq)
94735585
VK
655{
656 int ret;
657
658 ret = clk_set_rate(clk, freq);
659 if (ret) {
660 dev_err(dev, "%s: failed to set clock rate: %d\n", __func__,
661 ret);
662 }
663
664 return ret;
665}
666
8d45719c 667static int _generic_set_opp_regulator(struct opp_table *opp_table,
c74b32fa
VK
668 struct device *dev,
669 unsigned long old_freq,
670 unsigned long freq,
671 struct dev_pm_opp_supply *old_supply,
672 struct dev_pm_opp_supply *new_supply)
94735585 673{
c74b32fa 674 struct regulator *reg = opp_table->regulators[0];
94735585
VK
675 int ret;
676
677 /* This function only supports single regulator per device */
c74b32fa 678 if (WARN_ON(opp_table->regulator_count > 1)) {
94735585
VK
679 dev_err(dev, "multiple regulators are not supported\n");
680 return -EINVAL;
681 }
682
683 /* Scaling up? Scale voltage before frequency */
c5c2a97b 684 if (freq >= old_freq) {
94735585
VK
685 ret = _set_opp_voltage(dev, reg, new_supply);
686 if (ret)
687 goto restore_voltage;
688 }
689
690 /* Change frequency */
285881b5 691 ret = _generic_set_opp_clk_only(dev, opp_table->clk, freq);
94735585
VK
692 if (ret)
693 goto restore_voltage;
694
695 /* Scaling down? Scale voltage after frequency */
696 if (freq < old_freq) {
697 ret = _set_opp_voltage(dev, reg, new_supply);
698 if (ret)
699 goto restore_freq;
700 }
701
8d45719c
KK
702 /*
703 * Enable the regulator after setting its voltages, otherwise it breaks
704 * some boot-enabled regulators.
705 */
72f80ce4 706 if (unlikely(!opp_table->enabled)) {
8d45719c
KK
707 ret = regulator_enable(reg);
708 if (ret < 0)
709 dev_warn(dev, "Failed to enable regulator: %d", ret);
8d45719c
KK
710 }
711
94735585
VK
712 return 0;
713
714restore_freq:
285881b5 715 if (_generic_set_opp_clk_only(dev, opp_table->clk, old_freq))
94735585
VK
716 dev_err(dev, "%s: failed to restore old-freq (%lu Hz)\n",
717 __func__, old_freq);
718restore_voltage:
719 /* This shouldn't harm even if the voltages weren't updated earlier */
c74b32fa 720 if (old_supply)
94735585
VK
721 _set_opp_voltage(dev, reg, old_supply);
722
723 return ret;
724}
725
b00e667a
VK
726static int _set_opp_bw(const struct opp_table *opp_table,
727 struct dev_pm_opp *opp, struct device *dev, bool remove)
728{
729 u32 avg, peak;
730 int i, ret;
731
732 if (!opp_table->paths)
733 return 0;
734
735 for (i = 0; i < opp_table->path_count; i++) {
736 if (remove) {
737 avg = 0;
738 peak = 0;
739 } else {
740 avg = opp->bandwidth[i].avg;
741 peak = opp->bandwidth[i].peak;
742 }
743 ret = icc_set_bw(opp_table->paths[i], avg, peak);
744 if (ret) {
745 dev_err(dev, "Failed to %s bandwidth[%d]: %d\n",
746 remove ? "remove" : "set", i, ret);
747 return ret;
748 }
749 }
750
751 return 0;
752}
753
7e535993
VK
754static int _set_opp_custom(const struct opp_table *opp_table,
755 struct device *dev, unsigned long old_freq,
756 unsigned long freq,
757 struct dev_pm_opp_supply *old_supply,
758 struct dev_pm_opp_supply *new_supply)
759{
760 struct dev_pm_set_opp_data *data;
761 int size;
762
763 data = opp_table->set_opp_data;
764 data->regulators = opp_table->regulators;
765 data->regulator_count = opp_table->regulator_count;
766 data->clk = opp_table->clk;
767 data->dev = dev;
768
769 data->old_opp.rate = old_freq;
770 size = sizeof(*old_supply) * opp_table->regulator_count;
560d1bca 771 if (!old_supply)
7e535993
VK
772 memset(data->old_opp.supplies, 0, size);
773 else
774 memcpy(data->old_opp.supplies, old_supply, size);
775
776 data->new_opp.rate = freq;
777 memcpy(data->new_opp.supplies, new_supply, size);
778
779 return opp_table->set_opp(data);
780}
781
ca1b5d77
VK
782/* This is only called for PM domain for now */
783static int _set_required_opps(struct device *dev,
784 struct opp_table *opp_table,
785 struct dev_pm_opp *opp)
786{
787 struct opp_table **required_opp_tables = opp_table->required_opp_tables;
788 struct device **genpd_virt_devs = opp_table->genpd_virt_devs;
789 unsigned int pstate;
790 int i, ret = 0;
791
792 if (!required_opp_tables)
793 return 0;
794
795 /* Single genpd case */
796 if (!genpd_virt_devs) {
cd7ea582 797 pstate = likely(opp) ? opp->required_opps[0]->pstate : 0;
ca1b5d77
VK
798 ret = dev_pm_genpd_set_performance_state(dev, pstate);
799 if (ret) {
800 dev_err(dev, "Failed to set performance state of %s: %d (%d)\n",
801 dev_name(dev), pstate, ret);
802 }
803 return ret;
804 }
805
806 /* Multiple genpd case */
807
808 /*
809 * Acquire genpd_virt_dev_lock to make sure we don't use a genpd_dev
810 * after it is freed from another thread.
811 */
812 mutex_lock(&opp_table->genpd_virt_dev_lock);
813
814 for (i = 0; i < opp_table->required_opp_count; i++) {
cd7ea582 815 pstate = likely(opp) ? opp->required_opps[i]->pstate : 0;
ca1b5d77
VK
816
817 if (!genpd_virt_devs[i])
818 continue;
819
820 ret = dev_pm_genpd_set_performance_state(genpd_virt_devs[i], pstate);
821 if (ret) {
822 dev_err(dev, "Failed to set performance rate of %s: %d (%d)\n",
823 dev_name(genpd_virt_devs[i]), pstate, ret);
824 break;
825 }
826 }
827 mutex_unlock(&opp_table->genpd_virt_dev_lock);
828
829 return ret;
830}
831
3ae1f39a
SS
832/**
833 * dev_pm_opp_set_bw() - sets bandwidth levels corresponding to an opp
834 * @dev: device for which we do this operation
835 * @opp: opp based on which the bandwidth levels are to be configured
836 *
837 * This configures the bandwidth to the levels specified by the OPP. However
838 * if the OPP specified is NULL the bandwidth levels are cleared out.
839 *
840 * Return: 0 on success or a negative error value.
841 */
842int dev_pm_opp_set_bw(struct device *dev, struct dev_pm_opp *opp)
843{
844 struct opp_table *opp_table;
845 int ret;
846
847 opp_table = _find_opp_table(dev);
848 if (IS_ERR(opp_table)) {
849 dev_err(dev, "%s: device opp table doesn't exist\n", __func__);
850 return PTR_ERR(opp_table);
851 }
852
853 if (opp)
854 ret = _set_opp_bw(opp_table, opp, dev, false);
855 else
856 ret = _set_opp_bw(opp_table, NULL, dev, true);
857
858 dev_pm_opp_put_opp_table(opp_table);
859 return ret;
860}
861EXPORT_SYMBOL_GPL(dev_pm_opp_set_bw);
862
f3364e17
VK
863static int _opp_set_rate_zero(struct device *dev, struct opp_table *opp_table)
864{
865 int ret;
866
867 if (!opp_table->enabled)
868 return 0;
869
870 /*
871 * Some drivers need to support cases where some platforms may
872 * have OPP table for the device, while others don't and
873 * opp_set_rate() just needs to behave like clk_set_rate().
874 */
875 if (!_get_opp_count(opp_table))
876 return 0;
877
878 ret = _set_opp_bw(opp_table, NULL, dev, true);
879 if (ret)
880 return ret;
881
882 if (opp_table->regulators)
883 regulator_disable(opp_table->regulators[0]);
884
885 ret = _set_required_opps(dev, opp_table, NULL);
886
887 opp_table->enabled = false;
888 return ret;
889}
890
6a0712f6
VK
891/**
892 * dev_pm_opp_set_rate() - Configure new OPP based on frequency
893 * @dev: device for which we do this operation
894 * @target_freq: frequency to achieve
895 *
b3e3759e
SB
896 * This configures the power-supplies to the levels specified by the OPP
897 * corresponding to the target_freq, and programs the clock to a value <=
898 * target_freq, as rounded by clk_round_rate(). Device wanting to run at fmax
899 * provided by the opp, should have already rounded to the target OPP's
900 * frequency.
6a0712f6
VK
901 */
902int dev_pm_opp_set_rate(struct device *dev, unsigned long target_freq)
903{
2c2709dc 904 struct opp_table *opp_table;
b3e3759e 905 unsigned long freq, old_freq, temp_freq;
6a0712f6 906 struct dev_pm_opp *old_opp, *opp;
6a0712f6 907 struct clk *clk;
b00e667a 908 int ret;
6a0712f6 909
052c6f19
VK
910 opp_table = _find_opp_table(dev);
911 if (IS_ERR(opp_table)) {
912 dev_err(dev, "%s: device opp doesn't exist\n", __func__);
913 return PTR_ERR(opp_table);
914 }
915
cd7ea582 916 if (unlikely(!target_freq)) {
f3364e17 917 ret = _opp_set_rate_zero(dev, opp_table);
cd7ea582
RN
918 goto put_opp_table;
919 }
920
052c6f19
VK
921 clk = opp_table->clk;
922 if (IS_ERR(clk)) {
923 dev_err(dev, "%s: No clock available for the device\n",
924 __func__);
925 ret = PTR_ERR(clk);
926 goto put_opp_table;
927 }
6a0712f6
VK
928
929 freq = clk_round_rate(clk, target_freq);
930 if ((long)freq <= 0)
931 freq = target_freq;
932
933 old_freq = clk_get_rate(clk);
934
935 /* Return early if nothing to do */
10b21736
VK
936 if (opp_table->enabled && old_freq == freq) {
937 dev_dbg(dev, "%s: old/new frequencies (%lu Hz) are same, nothing to do\n",
938 __func__, freq);
939 ret = 0;
940 goto put_opp_table;
6a0712f6
VK
941 }
942
aca48b61
RN
943 /*
944 * For IO devices which require an OPP on some platforms/SoCs
945 * while just needing to scale the clock on some others
946 * we look for empty OPP tables with just a clock handle and
947 * scale only the clk. This makes dev_pm_opp_set_rate()
948 * equivalent to a clk_set_rate()
949 */
950 if (!_get_opp_count(opp_table)) {
951 ret = _generic_set_opp_clk_only(dev, clk, freq);
952 goto put_opp_table;
953 }
954
b3e3759e
SB
955 temp_freq = old_freq;
956 old_opp = _find_freq_ceil(opp_table, &temp_freq);
4df27c91 957 if (IS_ERR(old_opp)) {
6a0712f6
VK
958 dev_err(dev, "%s: failed to find current OPP for freq %lu (%ld)\n",
959 __func__, old_freq, PTR_ERR(old_opp));
960 }
961
b3e3759e
SB
962 temp_freq = freq;
963 opp = _find_freq_ceil(opp_table, &temp_freq);
6a0712f6
VK
964 if (IS_ERR(opp)) {
965 ret = PTR_ERR(opp);
966 dev_err(dev, "%s: failed to find OPP for freq %lu (%d)\n",
967 __func__, freq, ret);
052c6f19 968 goto put_old_opp;
6a0712f6
VK
969 }
970
94735585
VK
971 dev_dbg(dev, "%s: switching OPP: %lu Hz --> %lu Hz\n", __func__,
972 old_freq, freq);
dfbe4678 973
ca1b5d77 974 /* Scaling up? Configure required OPPs before frequency */
faef080f 975 if (freq >= old_freq) {
ca1b5d77
VK
976 ret = _set_required_opps(dev, opp_table, opp);
977 if (ret)
978 goto put_opp;
979 }
980
7e535993
VK
981 if (opp_table->set_opp) {
982 ret = _set_opp_custom(opp_table, dev, old_freq, freq,
983 IS_ERR(old_opp) ? NULL : old_opp->supplies,
984 opp->supplies);
985 } else if (opp_table->regulators) {
c74b32fa
VK
986 ret = _generic_set_opp_regulator(opp_table, dev, old_freq, freq,
987 IS_ERR(old_opp) ? NULL : old_opp->supplies,
988 opp->supplies);
989 } else {
7e535993 990 /* Only frequency scaling */
285881b5 991 ret = _generic_set_opp_clk_only(dev, clk, freq);
ca1b5d77 992 }
c74b32fa 993
ca1b5d77
VK
994 /* Scaling down? Configure required OPPs after frequency */
995 if (!ret && freq < old_freq) {
996 ret = _set_required_opps(dev, opp_table, opp);
997 if (ret)
998 dev_err(dev, "Failed to set required opps: %d\n", ret);
dfbe4678
VK
999 }
1000
72f80ce4 1001 if (!ret) {
b00e667a 1002 ret = _set_opp_bw(opp_table, opp, dev, false);
72f80ce4
VK
1003 if (!ret)
1004 opp_table->enabled = true;
1005 }
fe2af402 1006
ca1b5d77 1007put_opp:
8a31d9d9 1008 dev_pm_opp_put(opp);
052c6f19 1009put_old_opp:
8a31d9d9
VK
1010 if (!IS_ERR(old_opp))
1011 dev_pm_opp_put(old_opp);
052c6f19 1012put_opp_table:
5b650b38 1013 dev_pm_opp_put_opp_table(opp_table);
052c6f19 1014 return ret;
6a0712f6
VK
1015}
1016EXPORT_SYMBOL_GPL(dev_pm_opp_set_rate);
1017
2c2709dc 1018/* OPP-dev Helpers */
2c2709dc
VK
1019static void _remove_opp_dev(struct opp_device *opp_dev,
1020 struct opp_table *opp_table)
06441658 1021{
2c2709dc
VK
1022 opp_debug_unregister(opp_dev, opp_table);
1023 list_del(&opp_dev->node);
052c6f19 1024 kfree(opp_dev);
06441658
VK
1025}
1026
283d55e6
VK
1027static struct opp_device *_add_opp_dev_unlocked(const struct device *dev,
1028 struct opp_table *opp_table)
06441658 1029{
2c2709dc 1030 struct opp_device *opp_dev;
06441658 1031
2c2709dc
VK
1032 opp_dev = kzalloc(sizeof(*opp_dev), GFP_KERNEL);
1033 if (!opp_dev)
06441658
VK
1034 return NULL;
1035
2c2709dc
VK
1036 /* Initialize opp-dev */
1037 opp_dev->dev = dev;
3d255699 1038
052c6f19 1039 list_add(&opp_dev->node, &opp_table->dev_list);
06441658 1040
2c2709dc 1041 /* Create debugfs entries for the opp_table */
a2dea4cb 1042 opp_debug_register(opp_dev, opp_table);
283d55e6
VK
1043
1044 return opp_dev;
1045}
1046
1047struct opp_device *_add_opp_dev(const struct device *dev,
1048 struct opp_table *opp_table)
1049{
1050 struct opp_device *opp_dev;
1051
1052 mutex_lock(&opp_table->lock);
1053 opp_dev = _add_opp_dev_unlocked(dev, opp_table);
3d255699 1054 mutex_unlock(&opp_table->lock);
deaa5146 1055
2c2709dc 1056 return opp_dev;
06441658
VK
1057}
1058
eb7c8743 1059static struct opp_table *_allocate_opp_table(struct device *dev, int index)
07cce74a 1060{
2c2709dc
VK
1061 struct opp_table *opp_table;
1062 struct opp_device *opp_dev;
d54974c2 1063 int ret;
07cce74a
VK
1064
1065 /*
2c2709dc 1066 * Allocate a new OPP table. In the infrequent case where a new
07cce74a
VK
1067 * device is needed to be added, we pay this penalty.
1068 */
2c2709dc
VK
1069 opp_table = kzalloc(sizeof(*opp_table), GFP_KERNEL);
1070 if (!opp_table)
07cce74a
VK
1071 return NULL;
1072
3d255699 1073 mutex_init(&opp_table->lock);
4f018bc0 1074 mutex_init(&opp_table->genpd_virt_dev_lock);
2c2709dc 1075 INIT_LIST_HEAD(&opp_table->dev_list);
06441658 1076
46f48aca
VK
1077 /* Mark regulator count uninitialized */
1078 opp_table->regulator_count = -1;
1079
2c2709dc
VK
1080 opp_dev = _add_opp_dev(dev, opp_table);
1081 if (!opp_dev) {
1082 kfree(opp_table);
06441658
VK
1083 return NULL;
1084 }
1085
eb7c8743 1086 _of_init_opp_table(opp_table, dev, index);
50f8cfbd 1087
d54974c2 1088 /* Find clk for the device */
2c2709dc
VK
1089 opp_table->clk = clk_get(dev, NULL);
1090 if (IS_ERR(opp_table->clk)) {
1091 ret = PTR_ERR(opp_table->clk);
d54974c2
VK
1092 if (ret != -EPROBE_DEFER)
1093 dev_dbg(dev, "%s: Couldn't find clock: %d\n", __func__,
1094 ret);
1095 }
1096
6d3f922c
GD
1097 /* Find interconnect path(s) for the device */
1098 ret = dev_pm_opp_of_find_icc_paths(dev, opp_table);
1099 if (ret)
1100 dev_warn(dev, "%s: Error finding interconnect paths: %d\n",
1101 __func__, ret);
1102
052c6f19 1103 BLOCKING_INIT_NOTIFIER_HEAD(&opp_table->head);
2c2709dc 1104 INIT_LIST_HEAD(&opp_table->opp_list);
f067a982 1105 kref_init(&opp_table->kref);
07cce74a 1106
2c2709dc 1107 /* Secure the device table modification */
052c6f19 1108 list_add(&opp_table->node, &opp_tables);
2c2709dc 1109 return opp_table;
07cce74a
VK
1110}
1111
f067a982 1112void _get_opp_table_kref(struct opp_table *opp_table)
b6160e26 1113{
f067a982
VK
1114 kref_get(&opp_table->kref);
1115}
1116
eb7c8743 1117static struct opp_table *_opp_get_opp_table(struct device *dev, int index)
f067a982
VK
1118{
1119 struct opp_table *opp_table;
1120
1121 /* Hold our table modification lock here */
1122 mutex_lock(&opp_table_lock);
1123
5b650b38
VK
1124 opp_table = _find_opp_table_unlocked(dev);
1125 if (!IS_ERR(opp_table))
f067a982 1126 goto unlock;
f067a982 1127
283d55e6
VK
1128 opp_table = _managed_opp(dev, index);
1129 if (opp_table) {
1130 if (!_add_opp_dev_unlocked(dev, opp_table)) {
1131 dev_pm_opp_put_opp_table(opp_table);
1132 opp_table = NULL;
1133 }
1134 goto unlock;
1135 }
1136
eb7c8743 1137 opp_table = _allocate_opp_table(dev, index);
f067a982
VK
1138
1139unlock:
1140 mutex_unlock(&opp_table_lock);
1141
1142 return opp_table;
1143}
eb7c8743
VK
1144
1145struct opp_table *dev_pm_opp_get_opp_table(struct device *dev)
1146{
1147 return _opp_get_opp_table(dev, 0);
1148}
f067a982
VK
1149EXPORT_SYMBOL_GPL(dev_pm_opp_get_opp_table);
1150
eb7c8743
VK
1151struct opp_table *dev_pm_opp_get_opp_table_indexed(struct device *dev,
1152 int index)
1153{
1154 return _opp_get_opp_table(dev, index);
1155}
1156
b83c1899 1157static void _opp_table_kref_release(struct kref *kref)
f067a982
VK
1158{
1159 struct opp_table *opp_table = container_of(kref, struct opp_table, kref);
cdd6ed90 1160 struct opp_device *opp_dev, *temp;
6d3f922c 1161 int i;
b6160e26 1162
5d6d106f
VK
1163 _of_clear_opp_table(opp_table);
1164
b6160e26
VK
1165 /* Release clk */
1166 if (!IS_ERR(opp_table->clk))
1167 clk_put(opp_table->clk);
1168
6d3f922c
GD
1169 if (opp_table->paths) {
1170 for (i = 0; i < opp_table->path_count; i++)
1171 icc_put(opp_table->paths[i]);
1172 kfree(opp_table->paths);
1173 }
1174
cdd6ed90 1175 WARN_ON(!list_empty(&opp_table->opp_list));
b6160e26 1176
cdd6ed90
VK
1177 list_for_each_entry_safe(opp_dev, temp, &opp_table->dev_list, node) {
1178 /*
1179 * The OPP table is getting removed, drop the performance state
1180 * constraints.
1181 */
1182 if (opp_table->genpd_performance_state)
1183 dev_pm_genpd_set_performance_state((struct device *)(opp_dev->dev), 0);
b6160e26 1184
cdd6ed90
VK
1185 _remove_opp_dev(opp_dev, opp_table);
1186 }
b6160e26 1187
4f018bc0 1188 mutex_destroy(&opp_table->genpd_virt_dev_lock);
37a73ec0 1189 mutex_destroy(&opp_table->lock);
052c6f19
VK
1190 list_del(&opp_table->node);
1191 kfree(opp_table);
b6160e26 1192
f067a982
VK
1193 mutex_unlock(&opp_table_lock);
1194}
1195
1196void dev_pm_opp_put_opp_table(struct opp_table *opp_table)
1197{
1198 kref_put_mutex(&opp_table->kref, _opp_table_kref_release,
1199 &opp_table_lock);
1200}
1201EXPORT_SYMBOL_GPL(dev_pm_opp_put_opp_table);
1202
8cd2f6e8 1203void _opp_free(struct dev_pm_opp *opp)
969fceb3
VK
1204{
1205 kfree(opp);
969fceb3
VK
1206}
1207
1690d8bb
VK
1208static void _opp_kref_release(struct dev_pm_opp *opp,
1209 struct opp_table *opp_table)
129eec55
VK
1210{
1211 /*
1212 * Notify the changes in the availability of the operable
1213 * frequency/voltage list.
1214 */
052c6f19 1215 blocking_notifier_call_chain(&opp_table->head, OPP_EVENT_REMOVE, opp);
da544b61 1216 _of_opp_free_required_opps(opp_table, opp);
deaa5146 1217 opp_debug_remove_one(opp);
052c6f19
VK
1218 list_del(&opp->node);
1219 kfree(opp);
1690d8bb 1220}
129eec55 1221
1690d8bb
VK
1222static void _opp_kref_release_unlocked(struct kref *kref)
1223{
1224 struct dev_pm_opp *opp = container_of(kref, struct dev_pm_opp, kref);
1225 struct opp_table *opp_table = opp->opp_table;
1226
1227 _opp_kref_release(opp, opp_table);
1228}
1229
1230static void _opp_kref_release_locked(struct kref *kref)
1231{
1232 struct dev_pm_opp *opp = container_of(kref, struct dev_pm_opp, kref);
1233 struct opp_table *opp_table = opp->opp_table;
1234
1235 _opp_kref_release(opp, opp_table);
37a73ec0 1236 mutex_unlock(&opp_table->lock);
129eec55
VK
1237}
1238
a88bd2a5 1239void dev_pm_opp_get(struct dev_pm_opp *opp)
8a31d9d9
VK
1240{
1241 kref_get(&opp->kref);
1242}
1243
7034764a
VK
1244void dev_pm_opp_put(struct dev_pm_opp *opp)
1245{
1690d8bb
VK
1246 kref_put_mutex(&opp->kref, _opp_kref_release_locked,
1247 &opp->opp_table->lock);
7034764a
VK
1248}
1249EXPORT_SYMBOL_GPL(dev_pm_opp_put);
1250
1690d8bb
VK
1251static void dev_pm_opp_put_unlocked(struct dev_pm_opp *opp)
1252{
1253 kref_put(&opp->kref, _opp_kref_release_unlocked);
1254}
1255
129eec55 1256/**
2c2709dc 1257 * dev_pm_opp_remove() - Remove an OPP from OPP table
129eec55
VK
1258 * @dev: device for which we do this operation
1259 * @freq: OPP to remove with matching 'freq'
1260 *
2c2709dc 1261 * This function removes an opp from the opp table.
129eec55
VK
1262 */
1263void dev_pm_opp_remove(struct device *dev, unsigned long freq)
1264{
1265 struct dev_pm_opp *opp;
2c2709dc 1266 struct opp_table *opp_table;
129eec55
VK
1267 bool found = false;
1268
2c2709dc
VK
1269 opp_table = _find_opp_table(dev);
1270 if (IS_ERR(opp_table))
5b650b38 1271 return;
129eec55 1272
37a73ec0
VK
1273 mutex_lock(&opp_table->lock);
1274
2c2709dc 1275 list_for_each_entry(opp, &opp_table->opp_list, node) {
129eec55
VK
1276 if (opp->rate == freq) {
1277 found = true;
1278 break;
1279 }
1280 }
1281
37a73ec0
VK
1282 mutex_unlock(&opp_table->lock);
1283
5b650b38
VK
1284 if (found) {
1285 dev_pm_opp_put(opp);
0ad8c623
VK
1286
1287 /* Drop the reference taken by dev_pm_opp_add() */
1288 dev_pm_opp_put_opp_table(opp_table);
5b650b38 1289 } else {
129eec55
VK
1290 dev_warn(dev, "%s: Couldn't find OPP with freq: %lu\n",
1291 __func__, freq);
129eec55
VK
1292 }
1293
0ad8c623 1294 /* Drop the reference taken by _find_opp_table() */
5b650b38 1295 dev_pm_opp_put_opp_table(opp_table);
129eec55
VK
1296}
1297EXPORT_SYMBOL_GPL(dev_pm_opp_remove);
1298
03758d60
VK
1299void _opp_remove_all_static(struct opp_table *opp_table)
1300{
1301 struct dev_pm_opp *opp, *tmp;
1302
1303 mutex_lock(&opp_table->lock);
1304
1305 if (!opp_table->parsed_static_opps || --opp_table->parsed_static_opps)
1306 goto unlock;
1307
1308 list_for_each_entry_safe(opp, tmp, &opp_table->opp_list, node) {
1309 if (!opp->dynamic)
1310 dev_pm_opp_put_unlocked(opp);
1311 }
1312
1313unlock:
1314 mutex_unlock(&opp_table->lock);
1315}
1316
1690d8bb
VK
1317/**
1318 * dev_pm_opp_remove_all_dynamic() - Remove all dynamically created OPPs
1319 * @dev: device for which we do this operation
1320 *
1321 * This function removes all dynamically created OPPs from the opp table.
1322 */
1323void dev_pm_opp_remove_all_dynamic(struct device *dev)
1324{
1325 struct opp_table *opp_table;
1326 struct dev_pm_opp *opp, *temp;
1327 int count = 0;
1328
1329 opp_table = _find_opp_table(dev);
1330 if (IS_ERR(opp_table))
1331 return;
1332
1333 mutex_lock(&opp_table->lock);
1334 list_for_each_entry_safe(opp, temp, &opp_table->opp_list, node) {
1335 if (opp->dynamic) {
1336 dev_pm_opp_put_unlocked(opp);
1337 count++;
1338 }
1339 }
1340 mutex_unlock(&opp_table->lock);
1341
1342 /* Drop the references taken by dev_pm_opp_add() */
1343 while (count--)
1344 dev_pm_opp_put_opp_table(opp_table);
1345
1346 /* Drop the reference taken by _find_opp_table() */
1347 dev_pm_opp_put_opp_table(opp_table);
1348}
1349EXPORT_SYMBOL_GPL(dev_pm_opp_remove_all_dynamic);
1350
8cd2f6e8 1351struct dev_pm_opp *_opp_allocate(struct opp_table *table)
e1f60b29 1352{
23dacf6d 1353 struct dev_pm_opp *opp;
6d3f922c 1354 int supply_count, supply_size, icc_size;
e1f60b29 1355
dfbe4678 1356 /* Allocate space for at least one supply */
6d3f922c
GD
1357 supply_count = table->regulator_count > 0 ? table->regulator_count : 1;
1358 supply_size = sizeof(*opp->supplies) * supply_count;
1359 icc_size = sizeof(*opp->bandwidth) * table->path_count;
e1f60b29 1360
dfbe4678 1361 /* allocate new OPP node and supplies structures */
6d3f922c
GD
1362 opp = kzalloc(sizeof(*opp) + supply_size + icc_size, GFP_KERNEL);
1363
8cd2f6e8 1364 if (!opp)
23dacf6d 1365 return NULL;
23dacf6d 1366
dfbe4678
VK
1367 /* Put the supplies at the end of the OPP structure as an empty array */
1368 opp->supplies = (struct dev_pm_opp_supply *)(opp + 1);
6d3f922c
GD
1369 if (icc_size)
1370 opp->bandwidth = (struct dev_pm_opp_icc_bw *)(opp->supplies + supply_count);
dfbe4678
VK
1371 INIT_LIST_HEAD(&opp->node);
1372
23dacf6d
VK
1373 return opp;
1374}
1375
7d34d56e 1376static bool _opp_supported_by_regulators(struct dev_pm_opp *opp,
2c2709dc 1377 struct opp_table *opp_table)
7d34d56e 1378{
dfbe4678
VK
1379 struct regulator *reg;
1380 int i;
1381
90e3577b
VK
1382 if (!opp_table->regulators)
1383 return true;
1384
dfbe4678
VK
1385 for (i = 0; i < opp_table->regulator_count; i++) {
1386 reg = opp_table->regulators[i];
1387
1388 if (!regulator_is_supported_voltage(reg,
1389 opp->supplies[i].u_volt_min,
1390 opp->supplies[i].u_volt_max)) {
1391 pr_warn("%s: OPP minuV: %lu maxuV: %lu, not supported by regulator\n",
1392 __func__, opp->supplies[i].u_volt_min,
1393 opp->supplies[i].u_volt_max);
1394 return false;
1395 }
7d34d56e
VK
1396 }
1397
1398 return true;
1399}
1400
6c591eec
SK
1401int _opp_compare_key(struct dev_pm_opp *opp1, struct dev_pm_opp *opp2)
1402{
1403 if (opp1->rate != opp2->rate)
1404 return opp1->rate < opp2->rate ? -1 : 1;
6d3f922c
GD
1405 if (opp1->bandwidth && opp2->bandwidth &&
1406 opp1->bandwidth[0].peak != opp2->bandwidth[0].peak)
1407 return opp1->bandwidth[0].peak < opp2->bandwidth[0].peak ? -1 : 1;
6c591eec
SK
1408 if (opp1->level != opp2->level)
1409 return opp1->level < opp2->level ? -1 : 1;
1410 return 0;
1411}
1412
a1e8c136
VK
1413static int _opp_is_duplicate(struct device *dev, struct dev_pm_opp *new_opp,
1414 struct opp_table *opp_table,
1415 struct list_head **head)
23dacf6d
VK
1416{
1417 struct dev_pm_opp *opp;
6c591eec 1418 int opp_cmp;
23dacf6d
VK
1419
1420 /*
1421 * Insert new OPP in order of increasing frequency and discard if
1422 * already present.
1423 *
2c2709dc 1424 * Need to use &opp_table->opp_list in the condition part of the 'for'
23dacf6d
VK
1425 * loop, don't replace it with head otherwise it will become an infinite
1426 * loop.
1427 */
052c6f19 1428 list_for_each_entry(opp, &opp_table->opp_list, node) {
6c591eec
SK
1429 opp_cmp = _opp_compare_key(new_opp, opp);
1430 if (opp_cmp > 0) {
a1e8c136 1431 *head = &opp->node;
23dacf6d
VK
1432 continue;
1433 }
1434
6c591eec 1435 if (opp_cmp < 0)
a1e8c136 1436 return 0;
23dacf6d
VK
1437
1438 /* Duplicate OPPs */
06441658 1439 dev_warn(dev, "%s: duplicate OPPs detected. Existing: freq: %lu, volt: %lu, enabled: %d. New: freq: %lu, volt: %lu, enabled: %d\n",
dfbe4678
VK
1440 __func__, opp->rate, opp->supplies[0].u_volt,
1441 opp->available, new_opp->rate,
1442 new_opp->supplies[0].u_volt, new_opp->available);
23dacf6d 1443
dfbe4678 1444 /* Should we compare voltages for all regulators here ? */
a1e8c136
VK
1445 return opp->available &&
1446 new_opp->supplies[0].u_volt == opp->supplies[0].u_volt ? -EBUSY : -EEXIST;
1447 }
1448
1449 return 0;
1450}
1451
1452/*
1453 * Returns:
1454 * 0: On success. And appropriate error message for duplicate OPPs.
1455 * -EBUSY: For OPP with same freq/volt and is available. The callers of
1456 * _opp_add() must return 0 if they receive -EBUSY from it. This is to make
1457 * sure we don't print error messages unnecessarily if different parts of
1458 * kernel try to initialize the OPP table.
1459 * -EEXIST: For OPP with same freq but different volt or is unavailable. This
1460 * should be considered an error by the callers of _opp_add().
1461 */
1462int _opp_add(struct device *dev, struct dev_pm_opp *new_opp,
1463 struct opp_table *opp_table, bool rate_not_available)
1464{
1465 struct list_head *head;
1466 int ret;
1467
1468 mutex_lock(&opp_table->lock);
1469 head = &opp_table->opp_list;
37a73ec0 1470
a1e8c136
VK
1471 if (likely(!rate_not_available)) {
1472 ret = _opp_is_duplicate(dev, new_opp, opp_table, &head);
1473 if (ret) {
1474 mutex_unlock(&opp_table->lock);
1475 return ret;
1476 }
23dacf6d
VK
1477 }
1478
052c6f19 1479 list_add(&new_opp->node, head);
37a73ec0
VK
1480 mutex_unlock(&opp_table->lock);
1481
1482 new_opp->opp_table = opp_table;
7034764a 1483 kref_init(&new_opp->kref);
23dacf6d 1484
a2dea4cb 1485 opp_debug_create_one(new_opp, opp_table);
deaa5146 1486
2c2709dc 1487 if (!_opp_supported_by_regulators(new_opp, opp_table)) {
7d34d56e
VK
1488 new_opp->available = false;
1489 dev_warn(dev, "%s: OPP not supported by regulators (%lu)\n",
1490 __func__, new_opp->rate);
1491 }
1492
23dacf6d
VK
1493 return 0;
1494}
1495
984f16c8 1496/**
b64b9c3f 1497 * _opp_add_v1() - Allocate a OPP based on v1 bindings.
8cd2f6e8 1498 * @opp_table: OPP table
984f16c8
NM
1499 * @dev: device for which we do this operation
1500 * @freq: Frequency in Hz for this OPP
1501 * @u_volt: Voltage in uVolts for this OPP
1502 * @dynamic: Dynamically added OPPs.
1503 *
2c2709dc 1504 * This function adds an opp definition to the opp table and returns status.
984f16c8
NM
1505 * The opp is made available by default and it can be controlled using
1506 * dev_pm_opp_enable/disable functions and may be removed by dev_pm_opp_remove.
1507 *
8f8d37b2
VK
1508 * NOTE: "dynamic" parameter impacts OPPs added by the dev_pm_opp_of_add_table
1509 * and freed by dev_pm_opp_of_remove_table.
984f16c8 1510 *
984f16c8
NM
1511 * Return:
1512 * 0 On success OR
1513 * Duplicate OPPs (both freq and volt are same) and opp->available
1514 * -EEXIST Freq are same and volt are different OR
1515 * Duplicate OPPs (both freq and volt are same) and !opp->available
1516 * -ENOMEM Memory allocation failure
1517 */
8cd2f6e8
VK
1518int _opp_add_v1(struct opp_table *opp_table, struct device *dev,
1519 unsigned long freq, long u_volt, bool dynamic)
e1f60b29 1520{
23dacf6d 1521 struct dev_pm_opp *new_opp;
50f8cfbd 1522 unsigned long tol;
6ce4184d 1523 int ret;
e1f60b29 1524
8cd2f6e8
VK
1525 new_opp = _opp_allocate(opp_table);
1526 if (!new_opp)
1527 return -ENOMEM;
23dacf6d 1528
a7470db6 1529 /* populate the opp table */
a7470db6 1530 new_opp->rate = freq;
2c2709dc 1531 tol = u_volt * opp_table->voltage_tolerance_v1 / 100;
dfbe4678
VK
1532 new_opp->supplies[0].u_volt = u_volt;
1533 new_opp->supplies[0].u_volt_min = u_volt - tol;
1534 new_opp->supplies[0].u_volt_max = u_volt + tol;
a7470db6 1535 new_opp->available = true;
23dacf6d 1536 new_opp->dynamic = dynamic;
a7470db6 1537
a1e8c136 1538 ret = _opp_add(dev, new_opp, opp_table, false);
7f8538eb
VK
1539 if (ret) {
1540 /* Don't return error for duplicate OPPs */
1541 if (ret == -EBUSY)
1542 ret = 0;
6ce4184d 1543 goto free_opp;
7f8538eb 1544 }
64ce8545 1545
03ca370f
MH
1546 /*
1547 * Notify the changes in the availability of the operable
1548 * frequency/voltage list.
1549 */
052c6f19 1550 blocking_notifier_call_chain(&opp_table->head, OPP_EVENT_ADD, new_opp);
e1f60b29 1551 return 0;
6ce4184d
VK
1552
1553free_opp:
8cd2f6e8
VK
1554 _opp_free(new_opp);
1555
6ce4184d 1556 return ret;
e1f60b29 1557}
38393409 1558
7de36b0a
VK
1559/**
1560 * dev_pm_opp_set_supported_hw() - Set supported platforms
1561 * @dev: Device for which supported-hw has to be set.
1562 * @versions: Array of hierarchy of versions to match.
1563 * @count: Number of elements in the array.
1564 *
1565 * This is required only for the V2 bindings, and it enables a platform to
1566 * specify the hierarchy of versions it supports. OPP layer will then enable
1567 * OPPs, which are available for those versions, based on its 'opp-supported-hw'
1568 * property.
7de36b0a 1569 */
fa30184d
VK
1570struct opp_table *dev_pm_opp_set_supported_hw(struct device *dev,
1571 const u32 *versions, unsigned int count)
7de36b0a 1572{
2c2709dc 1573 struct opp_table *opp_table;
7de36b0a 1574
fa30184d
VK
1575 opp_table = dev_pm_opp_get_opp_table(dev);
1576 if (!opp_table)
1577 return ERR_PTR(-ENOMEM);
7de36b0a 1578
2c2709dc
VK
1579 /* Make sure there are no concurrent readers while updating opp_table */
1580 WARN_ON(!list_empty(&opp_table->opp_list));
7de36b0a 1581
25419de1
VK
1582 /* Another CPU that shares the OPP table has set the property ? */
1583 if (opp_table->supported_hw)
1584 return opp_table;
7de36b0a 1585
2c2709dc 1586 opp_table->supported_hw = kmemdup(versions, count * sizeof(*versions),
7de36b0a 1587 GFP_KERNEL);
2c2709dc 1588 if (!opp_table->supported_hw) {
25419de1
VK
1589 dev_pm_opp_put_opp_table(opp_table);
1590 return ERR_PTR(-ENOMEM);
7de36b0a
VK
1591 }
1592
2c2709dc 1593 opp_table->supported_hw_count = count;
fa30184d
VK
1594
1595 return opp_table;
7de36b0a
VK
1596}
1597EXPORT_SYMBOL_GPL(dev_pm_opp_set_supported_hw);
1598
1599/**
1600 * dev_pm_opp_put_supported_hw() - Releases resources blocked for supported hw
fa30184d 1601 * @opp_table: OPP table returned by dev_pm_opp_set_supported_hw().
7de36b0a
VK
1602 *
1603 * This is required only for the V2 bindings, and is called for a matching
2c2709dc 1604 * dev_pm_opp_set_supported_hw(). Until this is called, the opp_table structure
7de36b0a 1605 * will not be freed.
7de36b0a 1606 */
fa30184d 1607void dev_pm_opp_put_supported_hw(struct opp_table *opp_table)
7de36b0a 1608{
2c2709dc
VK
1609 /* Make sure there are no concurrent readers while updating opp_table */
1610 WARN_ON(!list_empty(&opp_table->opp_list));
7de36b0a 1611
2c2709dc
VK
1612 kfree(opp_table->supported_hw);
1613 opp_table->supported_hw = NULL;
1614 opp_table->supported_hw_count = 0;
7de36b0a 1615
fa30184d 1616 dev_pm_opp_put_opp_table(opp_table);
7de36b0a
VK
1617}
1618EXPORT_SYMBOL_GPL(dev_pm_opp_put_supported_hw);
1619
01fb4d3c
VK
1620/**
1621 * dev_pm_opp_set_prop_name() - Set prop-extn name
a5da6447 1622 * @dev: Device for which the prop-name has to be set.
01fb4d3c
VK
1623 * @name: name to postfix to properties.
1624 *
1625 * This is required only for the V2 bindings, and it enables a platform to
1626 * specify the extn to be used for certain property names. The properties to
1627 * which the extension will apply are opp-microvolt and opp-microamp. OPP core
1628 * should postfix the property name with -<name> while looking for them.
01fb4d3c 1629 */
fa30184d 1630struct opp_table *dev_pm_opp_set_prop_name(struct device *dev, const char *name)
01fb4d3c 1631{
2c2709dc 1632 struct opp_table *opp_table;
01fb4d3c 1633
fa30184d
VK
1634 opp_table = dev_pm_opp_get_opp_table(dev);
1635 if (!opp_table)
1636 return ERR_PTR(-ENOMEM);
01fb4d3c 1637
2c2709dc
VK
1638 /* Make sure there are no concurrent readers while updating opp_table */
1639 WARN_ON(!list_empty(&opp_table->opp_list));
01fb4d3c 1640
878ec1a9
VK
1641 /* Another CPU that shares the OPP table has set the property ? */
1642 if (opp_table->prop_name)
1643 return opp_table;
01fb4d3c 1644
2c2709dc
VK
1645 opp_table->prop_name = kstrdup(name, GFP_KERNEL);
1646 if (!opp_table->prop_name) {
878ec1a9
VK
1647 dev_pm_opp_put_opp_table(opp_table);
1648 return ERR_PTR(-ENOMEM);
01fb4d3c
VK
1649 }
1650
fa30184d 1651 return opp_table;
01fb4d3c
VK
1652}
1653EXPORT_SYMBOL_GPL(dev_pm_opp_set_prop_name);
1654
1655/**
1656 * dev_pm_opp_put_prop_name() - Releases resources blocked for prop-name
fa30184d 1657 * @opp_table: OPP table returned by dev_pm_opp_set_prop_name().
01fb4d3c
VK
1658 *
1659 * This is required only for the V2 bindings, and is called for a matching
2c2709dc 1660 * dev_pm_opp_set_prop_name(). Until this is called, the opp_table structure
01fb4d3c 1661 * will not be freed.
01fb4d3c 1662 */
fa30184d 1663void dev_pm_opp_put_prop_name(struct opp_table *opp_table)
01fb4d3c 1664{
2c2709dc
VK
1665 /* Make sure there are no concurrent readers while updating opp_table */
1666 WARN_ON(!list_empty(&opp_table->opp_list));
01fb4d3c 1667
2c2709dc
VK
1668 kfree(opp_table->prop_name);
1669 opp_table->prop_name = NULL;
01fb4d3c 1670
fa30184d 1671 dev_pm_opp_put_opp_table(opp_table);
01fb4d3c
VK
1672}
1673EXPORT_SYMBOL_GPL(dev_pm_opp_put_prop_name);
1674
94735585
VK
1675static int _allocate_set_opp_data(struct opp_table *opp_table)
1676{
1677 struct dev_pm_set_opp_data *data;
1678 int len, count = opp_table->regulator_count;
1679
90e3577b 1680 if (WARN_ON(!opp_table->regulators))
94735585
VK
1681 return -EINVAL;
1682
1683 /* space for set_opp_data */
1684 len = sizeof(*data);
1685
1686 /* space for old_opp.supplies and new_opp.supplies */
1687 len += 2 * sizeof(struct dev_pm_opp_supply) * count;
1688
1689 data = kzalloc(len, GFP_KERNEL);
1690 if (!data)
1691 return -ENOMEM;
1692
1693 data->old_opp.supplies = (void *)(data + 1);
1694 data->new_opp.supplies = data->old_opp.supplies + count;
1695
1696 opp_table->set_opp_data = data;
1697
1698 return 0;
1699}
1700
1701static void _free_set_opp_data(struct opp_table *opp_table)
1702{
1703 kfree(opp_table->set_opp_data);
1704 opp_table->set_opp_data = NULL;
1705}
1706
9f8ea969 1707/**
dfbe4678 1708 * dev_pm_opp_set_regulators() - Set regulator names for the device
9f8ea969 1709 * @dev: Device for which regulator name is being set.
dfbe4678
VK
1710 * @names: Array of pointers to the names of the regulator.
1711 * @count: Number of regulators.
9f8ea969
VK
1712 *
1713 * In order to support OPP switching, OPP layer needs to know the name of the
dfbe4678
VK
1714 * device's regulators, as the core would be required to switch voltages as
1715 * well.
9f8ea969
VK
1716 *
1717 * This must be called before any OPPs are initialized for the device.
9f8ea969 1718 */
dfbe4678
VK
1719struct opp_table *dev_pm_opp_set_regulators(struct device *dev,
1720 const char * const names[],
1721 unsigned int count)
9f8ea969 1722{
2c2709dc 1723 struct opp_table *opp_table;
9f8ea969 1724 struct regulator *reg;
dfbe4678 1725 int ret, i;
9f8ea969 1726
fa30184d
VK
1727 opp_table = dev_pm_opp_get_opp_table(dev);
1728 if (!opp_table)
1729 return ERR_PTR(-ENOMEM);
9f8ea969
VK
1730
1731 /* This should be called before OPPs are initialized */
2c2709dc 1732 if (WARN_ON(!list_empty(&opp_table->opp_list))) {
9f8ea969
VK
1733 ret = -EBUSY;
1734 goto err;
1735 }
1736
779b783c
VK
1737 /* Another CPU that shares the OPP table has set the regulators ? */
1738 if (opp_table->regulators)
1739 return opp_table;
dfbe4678
VK
1740
1741 opp_table->regulators = kmalloc_array(count,
1742 sizeof(*opp_table->regulators),
1743 GFP_KERNEL);
1744 if (!opp_table->regulators) {
1745 ret = -ENOMEM;
9f8ea969
VK
1746 goto err;
1747 }
1748
dfbe4678
VK
1749 for (i = 0; i < count; i++) {
1750 reg = regulator_get_optional(dev, names[i]);
1751 if (IS_ERR(reg)) {
1752 ret = PTR_ERR(reg);
1753 if (ret != -EPROBE_DEFER)
1754 dev_err(dev, "%s: no regulator (%s) found: %d\n",
1755 __func__, names[i], ret);
1756 goto free_regulators;
1757 }
1758
1759 opp_table->regulators[i] = reg;
1760 }
1761
1762 opp_table->regulator_count = count;
9f8ea969 1763
94735585
VK
1764 /* Allocate block only once to pass to set_opp() routines */
1765 ret = _allocate_set_opp_data(opp_table);
1766 if (ret)
1767 goto free_regulators;
1768
91291d9a 1769 return opp_table;
9f8ea969 1770
dfbe4678 1771free_regulators:
24957db1
MS
1772 while (i != 0)
1773 regulator_put(opp_table->regulators[--i]);
dfbe4678
VK
1774
1775 kfree(opp_table->regulators);
1776 opp_table->regulators = NULL;
46f48aca 1777 opp_table->regulator_count = -1;
9f8ea969 1778err:
fa30184d 1779 dev_pm_opp_put_opp_table(opp_table);
9f8ea969 1780
91291d9a 1781 return ERR_PTR(ret);
9f8ea969 1782}
dfbe4678 1783EXPORT_SYMBOL_GPL(dev_pm_opp_set_regulators);
9f8ea969
VK
1784
1785/**
dfbe4678
VK
1786 * dev_pm_opp_put_regulators() - Releases resources blocked for regulator
1787 * @opp_table: OPP table returned from dev_pm_opp_set_regulators().
9f8ea969 1788 */
dfbe4678 1789void dev_pm_opp_put_regulators(struct opp_table *opp_table)
9f8ea969 1790{
dfbe4678
VK
1791 int i;
1792
779b783c
VK
1793 if (!opp_table->regulators)
1794 goto put_opp_table;
9f8ea969 1795
2c2709dc
VK
1796 /* Make sure there are no concurrent readers while updating opp_table */
1797 WARN_ON(!list_empty(&opp_table->opp_list));
9f8ea969 1798
72f80ce4 1799 if (opp_table->enabled) {
8d45719c
KK
1800 for (i = opp_table->regulator_count - 1; i >= 0; i--)
1801 regulator_disable(opp_table->regulators[i]);
8d45719c
KK
1802 }
1803
24957db1 1804 for (i = opp_table->regulator_count - 1; i >= 0; i--)
dfbe4678
VK
1805 regulator_put(opp_table->regulators[i]);
1806
94735585
VK
1807 _free_set_opp_data(opp_table);
1808
dfbe4678
VK
1809 kfree(opp_table->regulators);
1810 opp_table->regulators = NULL;
46f48aca 1811 opp_table->regulator_count = -1;
9f8ea969 1812
779b783c 1813put_opp_table:
fa30184d 1814 dev_pm_opp_put_opp_table(opp_table);
9f8ea969 1815}
dfbe4678 1816EXPORT_SYMBOL_GPL(dev_pm_opp_put_regulators);
9f8ea969 1817
829a4e8c
VK
1818/**
1819 * dev_pm_opp_set_clkname() - Set clk name for the device
1820 * @dev: Device for which clk name is being set.
1821 * @name: Clk name.
1822 *
1823 * In order to support OPP switching, OPP layer needs to get pointer to the
1824 * clock for the device. Simple cases work fine without using this routine (i.e.
1825 * by passing connection-id as NULL), but for a device with multiple clocks
1826 * available, the OPP core needs to know the exact name of the clk to use.
1827 *
1828 * This must be called before any OPPs are initialized for the device.
1829 */
1830struct opp_table *dev_pm_opp_set_clkname(struct device *dev, const char *name)
1831{
1832 struct opp_table *opp_table;
1833 int ret;
1834
1835 opp_table = dev_pm_opp_get_opp_table(dev);
1836 if (!opp_table)
1837 return ERR_PTR(-ENOMEM);
1838
1839 /* This should be called before OPPs are initialized */
1840 if (WARN_ON(!list_empty(&opp_table->opp_list))) {
1841 ret = -EBUSY;
1842 goto err;
1843 }
1844
1845 /* Already have default clk set, free it */
1846 if (!IS_ERR(opp_table->clk))
1847 clk_put(opp_table->clk);
1848
1849 /* Find clk for the device */
1850 opp_table->clk = clk_get(dev, name);
1851 if (IS_ERR(opp_table->clk)) {
1852 ret = PTR_ERR(opp_table->clk);
1853 if (ret != -EPROBE_DEFER) {
1854 dev_err(dev, "%s: Couldn't find clock: %d\n", __func__,
1855 ret);
1856 }
1857 goto err;
1858 }
1859
1860 return opp_table;
1861
1862err:
1863 dev_pm_opp_put_opp_table(opp_table);
1864
1865 return ERR_PTR(ret);
1866}
1867EXPORT_SYMBOL_GPL(dev_pm_opp_set_clkname);
1868
1869/**
1870 * dev_pm_opp_put_clkname() - Releases resources blocked for clk.
1871 * @opp_table: OPP table returned from dev_pm_opp_set_clkname().
1872 */
1873void dev_pm_opp_put_clkname(struct opp_table *opp_table)
1874{
1875 /* Make sure there are no concurrent readers while updating opp_table */
1876 WARN_ON(!list_empty(&opp_table->opp_list));
1877
1878 clk_put(opp_table->clk);
1879 opp_table->clk = ERR_PTR(-EINVAL);
1880
1881 dev_pm_opp_put_opp_table(opp_table);
1882}
1883EXPORT_SYMBOL_GPL(dev_pm_opp_put_clkname);
1884
4dab160e
VK
1885/**
1886 * dev_pm_opp_register_set_opp_helper() - Register custom set OPP helper
1887 * @dev: Device for which the helper is getting registered.
1888 * @set_opp: Custom set OPP helper.
1889 *
1890 * This is useful to support complex platforms (like platforms with multiple
1891 * regulators per device), instead of the generic OPP set rate helper.
1892 *
1893 * This must be called before any OPPs are initialized for the device.
4dab160e 1894 */
fa30184d 1895struct opp_table *dev_pm_opp_register_set_opp_helper(struct device *dev,
4dab160e
VK
1896 int (*set_opp)(struct dev_pm_set_opp_data *data))
1897{
1898 struct opp_table *opp_table;
4dab160e
VK
1899
1900 if (!set_opp)
fa30184d 1901 return ERR_PTR(-EINVAL);
4dab160e 1902
fa30184d
VK
1903 opp_table = dev_pm_opp_get_opp_table(dev);
1904 if (!opp_table)
1905 return ERR_PTR(-ENOMEM);
4dab160e
VK
1906
1907 /* This should be called before OPPs are initialized */
1908 if (WARN_ON(!list_empty(&opp_table->opp_list))) {
5019acc6
VK
1909 dev_pm_opp_put_opp_table(opp_table);
1910 return ERR_PTR(-EBUSY);
4dab160e
VK
1911 }
1912
5019acc6
VK
1913 /* Another CPU that shares the OPP table has set the helper ? */
1914 if (!opp_table->set_opp)
1915 opp_table->set_opp = set_opp;
4dab160e 1916
fa30184d 1917 return opp_table;
4dab160e
VK
1918}
1919EXPORT_SYMBOL_GPL(dev_pm_opp_register_set_opp_helper);
1920
1921/**
604a7aeb 1922 * dev_pm_opp_unregister_set_opp_helper() - Releases resources blocked for
4dab160e 1923 * set_opp helper
fa30184d 1924 * @opp_table: OPP table returned from dev_pm_opp_register_set_opp_helper().
4dab160e 1925 *
fa30184d 1926 * Release resources blocked for platform specific set_opp helper.
4dab160e 1927 */
604a7aeb 1928void dev_pm_opp_unregister_set_opp_helper(struct opp_table *opp_table)
4dab160e 1929{
4dab160e
VK
1930 /* Make sure there are no concurrent readers while updating opp_table */
1931 WARN_ON(!list_empty(&opp_table->opp_list));
1932
1933 opp_table->set_opp = NULL;
fa30184d 1934 dev_pm_opp_put_opp_table(opp_table);
4dab160e 1935}
604a7aeb 1936EXPORT_SYMBOL_GPL(dev_pm_opp_unregister_set_opp_helper);
4dab160e 1937
6319aee1
VK
1938static void _opp_detach_genpd(struct opp_table *opp_table)
1939{
1940 int index;
1941
1942 for (index = 0; index < opp_table->required_opp_count; index++) {
1943 if (!opp_table->genpd_virt_devs[index])
1944 continue;
1945
1946 dev_pm_domain_detach(opp_table->genpd_virt_devs[index], false);
1947 opp_table->genpd_virt_devs[index] = NULL;
1948 }
c0ab9e08
VK
1949
1950 kfree(opp_table->genpd_virt_devs);
1951 opp_table->genpd_virt_devs = NULL;
6319aee1
VK
1952}
1953
4f018bc0 1954/**
6319aee1
VK
1955 * dev_pm_opp_attach_genpd - Attach genpd(s) for the device and save virtual device pointer
1956 * @dev: Consumer device for which the genpd is getting attached.
1957 * @names: Null terminated array of pointers containing names of genpd to attach.
17a8f868 1958 * @virt_devs: Pointer to return the array of virtual devices.
4f018bc0
VK
1959 *
1960 * Multiple generic power domains for a device are supported with the help of
1961 * virtual genpd devices, which are created for each consumer device - genpd
1962 * pair. These are the device structures which are attached to the power domain
1963 * and are required by the OPP core to set the performance state of the genpd.
6319aee1
VK
1964 * The same API also works for the case where single genpd is available and so
1965 * we don't need to support that separately.
4f018bc0
VK
1966 *
1967 * This helper will normally be called by the consumer driver of the device
6319aee1 1968 * "dev", as only that has details of the genpd names.
4f018bc0 1969 *
6319aee1
VK
1970 * This helper needs to be called once with a list of all genpd to attach.
1971 * Otherwise the original device structure will be used instead by the OPP core.
baea35e4
VK
1972 *
1973 * The order of entries in the names array must match the order in which
1974 * "required-opps" are added in DT.
4f018bc0 1975 */
17a8f868
VK
1976struct opp_table *dev_pm_opp_attach_genpd(struct device *dev,
1977 const char **names, struct device ***virt_devs)
4f018bc0
VK
1978{
1979 struct opp_table *opp_table;
6319aee1 1980 struct device *virt_dev;
baea35e4 1981 int index = 0, ret = -EINVAL;
6319aee1 1982 const char **name = names;
4f018bc0
VK
1983
1984 opp_table = dev_pm_opp_get_opp_table(dev);
1985 if (!opp_table)
1986 return ERR_PTR(-ENOMEM);
1987
6319aee1
VK
1988 /*
1989 * If the genpd's OPP table isn't already initialized, parsing of the
1990 * required-opps fail for dev. We should retry this after genpd's OPP
1991 * table is added.
1992 */
1993 if (!opp_table->required_opp_count) {
1994 ret = -EPROBE_DEFER;
1995 goto put_table;
1996 }
1997
4f018bc0
VK
1998 mutex_lock(&opp_table->genpd_virt_dev_lock);
1999
c0ab9e08
VK
2000 opp_table->genpd_virt_devs = kcalloc(opp_table->required_opp_count,
2001 sizeof(*opp_table->genpd_virt_devs),
2002 GFP_KERNEL);
2003 if (!opp_table->genpd_virt_devs)
2004 goto unlock;
4f018bc0 2005
6319aee1 2006 while (*name) {
6319aee1
VK
2007 if (index >= opp_table->required_opp_count) {
2008 dev_err(dev, "Index can't be greater than required-opp-count - 1, %s (%d : %d)\n",
2009 *name, opp_table->required_opp_count, index);
2010 goto err;
2011 }
4f018bc0 2012
6319aee1
VK
2013 if (opp_table->genpd_virt_devs[index]) {
2014 dev_err(dev, "Genpd virtual device already set %s\n",
2015 *name);
2016 goto err;
2017 }
2018
2019 virt_dev = dev_pm_domain_attach_by_name(dev, *name);
2020 if (IS_ERR(virt_dev)) {
2021 ret = PTR_ERR(virt_dev);
2022 dev_err(dev, "Couldn't attach to pm_domain: %d\n", ret);
2023 goto err;
2024 }
2025
2026 opp_table->genpd_virt_devs[index] = virt_dev;
baea35e4 2027 index++;
6319aee1 2028 name++;
4f018bc0
VK
2029 }
2030
17a8f868
VK
2031 if (virt_devs)
2032 *virt_devs = opp_table->genpd_virt_devs;
4f018bc0
VK
2033 mutex_unlock(&opp_table->genpd_virt_dev_lock);
2034
2035 return opp_table;
6319aee1
VK
2036
2037err:
2038 _opp_detach_genpd(opp_table);
c0ab9e08 2039unlock:
6319aee1
VK
2040 mutex_unlock(&opp_table->genpd_virt_dev_lock);
2041
2042put_table:
2043 dev_pm_opp_put_opp_table(opp_table);
2044
2045 return ERR_PTR(ret);
4f018bc0 2046}
6319aee1 2047EXPORT_SYMBOL_GPL(dev_pm_opp_attach_genpd);
4f018bc0
VK
2048
2049/**
6319aee1
VK
2050 * dev_pm_opp_detach_genpd() - Detach genpd(s) from the device.
2051 * @opp_table: OPP table returned by dev_pm_opp_attach_genpd().
4f018bc0 2052 *
6319aee1
VK
2053 * This detaches the genpd(s), resets the virtual device pointers, and puts the
2054 * OPP table.
4f018bc0 2055 */
6319aee1 2056void dev_pm_opp_detach_genpd(struct opp_table *opp_table)
4f018bc0 2057{
4f018bc0
VK
2058 /*
2059 * Acquire genpd_virt_dev_lock to make sure virt_dev isn't getting
2060 * used in parallel.
2061 */
2062 mutex_lock(&opp_table->genpd_virt_dev_lock);
6319aee1 2063 _opp_detach_genpd(opp_table);
4f018bc0
VK
2064 mutex_unlock(&opp_table->genpd_virt_dev_lock);
2065
6319aee1 2066 dev_pm_opp_put_opp_table(opp_table);
4f018bc0 2067}
6319aee1 2068EXPORT_SYMBOL_GPL(dev_pm_opp_detach_genpd);
4f018bc0 2069
c8a59103
VK
2070/**
2071 * dev_pm_opp_xlate_performance_state() - Find required OPP's pstate for src_table.
2072 * @src_table: OPP table which has dst_table as one of its required OPP table.
2073 * @dst_table: Required OPP table of the src_table.
2074 * @pstate: Current performance state of the src_table.
2075 *
2076 * This Returns pstate of the OPP (present in @dst_table) pointed out by the
2077 * "required-opps" property of the OPP (present in @src_table) which has
2078 * performance state set to @pstate.
2079 *
2080 * Return: Zero or positive performance state on success, otherwise negative
2081 * value on errors.
2082 */
2083int dev_pm_opp_xlate_performance_state(struct opp_table *src_table,
2084 struct opp_table *dst_table,
2085 unsigned int pstate)
2086{
2087 struct dev_pm_opp *opp;
2088 int dest_pstate = -EINVAL;
2089 int i;
2090
2091 if (!pstate)
2092 return 0;
2093
2094 /*
2095 * Normally the src_table will have the "required_opps" property set to
2096 * point to one of the OPPs in the dst_table, but in some cases the
2097 * genpd and its master have one to one mapping of performance states
2098 * and so none of them have the "required-opps" property set. Return the
2099 * pstate of the src_table as it is in such cases.
2100 */
2101 if (!src_table->required_opp_count)
2102 return pstate;
2103
2104 for (i = 0; i < src_table->required_opp_count; i++) {
2105 if (src_table->required_opp_tables[i]->np == dst_table->np)
2106 break;
2107 }
2108
2109 if (unlikely(i == src_table->required_opp_count)) {
2110 pr_err("%s: Couldn't find matching OPP table (%p: %p)\n",
2111 __func__, src_table, dst_table);
2112 return -EINVAL;
2113 }
2114
2115 mutex_lock(&src_table->lock);
2116
2117 list_for_each_entry(opp, &src_table->opp_list, node) {
2118 if (opp->pstate == pstate) {
2119 dest_pstate = opp->required_opps[i]->pstate;
2120 goto unlock;
2121 }
2122 }
2123
2124 pr_err("%s: Couldn't find matching OPP (%p: %p)\n", __func__, src_table,
2125 dst_table);
2126
2127unlock:
2128 mutex_unlock(&src_table->lock);
2129
2130 return dest_pstate;
2131}
2132
38393409
VK
2133/**
2134 * dev_pm_opp_add() - Add an OPP table from a table definitions
2135 * @dev: device for which we do this operation
2136 * @freq: Frequency in Hz for this OPP
2137 * @u_volt: Voltage in uVolts for this OPP
2138 *
2c2709dc 2139 * This function adds an opp definition to the opp table and returns status.
38393409
VK
2140 * The opp is made available by default and it can be controlled using
2141 * dev_pm_opp_enable/disable functions.
2142 *
38393409 2143 * Return:
984f16c8 2144 * 0 On success OR
38393409 2145 * Duplicate OPPs (both freq and volt are same) and opp->available
984f16c8 2146 * -EEXIST Freq are same and volt are different OR
38393409 2147 * Duplicate OPPs (both freq and volt are same) and !opp->available
984f16c8 2148 * -ENOMEM Memory allocation failure
38393409
VK
2149 */
2150int dev_pm_opp_add(struct device *dev, unsigned long freq, unsigned long u_volt)
2151{
8cd2f6e8
VK
2152 struct opp_table *opp_table;
2153 int ret;
2154
b83c1899
VK
2155 opp_table = dev_pm_opp_get_opp_table(dev);
2156 if (!opp_table)
2157 return -ENOMEM;
8cd2f6e8 2158
46f48aca
VK
2159 /* Fix regulator count for dynamic OPPs */
2160 opp_table->regulator_count = 1;
2161
8cd2f6e8 2162 ret = _opp_add_v1(opp_table, dev, freq, u_volt, true);
0ad8c623
VK
2163 if (ret)
2164 dev_pm_opp_put_opp_table(opp_table);
8cd2f6e8 2165
8cd2f6e8 2166 return ret;
38393409 2167}
5d4879cd 2168EXPORT_SYMBOL_GPL(dev_pm_opp_add);
e1f60b29
NM
2169
2170/**
327854c8 2171 * _opp_set_availability() - helper to set the availability of an opp
e1f60b29
NM
2172 * @dev: device for which we do this operation
2173 * @freq: OPP frequency to modify availability
2174 * @availability_req: availability status requested for this opp
2175 *
052c6f19
VK
2176 * Set the availability of an OPP, opp_{enable,disable} share a common logic
2177 * which is isolated here.
e1f60b29 2178 *
984f16c8 2179 * Return: -EINVAL for bad pointers, -ENOMEM if no memory available for the
e1a2d49c 2180 * copy operation, returns 0 if no modification was done OR modification was
e1f60b29 2181 * successful.
e1f60b29 2182 */
327854c8
NM
2183static int _opp_set_availability(struct device *dev, unsigned long freq,
2184 bool availability_req)
e1f60b29 2185{
2c2709dc 2186 struct opp_table *opp_table;
a7f3987e 2187 struct dev_pm_opp *tmp_opp, *opp = ERR_PTR(-ENODEV);
e1f60b29
NM
2188 int r = 0;
2189
2c2709dc
VK
2190 /* Find the opp_table */
2191 opp_table = _find_opp_table(dev);
2192 if (IS_ERR(opp_table)) {
2193 r = PTR_ERR(opp_table);
e1f60b29 2194 dev_warn(dev, "%s: Device OPP not found (%d)\n", __func__, r);
a7f3987e 2195 return r;
e1f60b29
NM
2196 }
2197
37a73ec0
VK
2198 mutex_lock(&opp_table->lock);
2199
e1f60b29 2200 /* Do we have the frequency? */
2c2709dc 2201 list_for_each_entry(tmp_opp, &opp_table->opp_list, node) {
e1f60b29
NM
2202 if (tmp_opp->rate == freq) {
2203 opp = tmp_opp;
2204 break;
2205 }
2206 }
37a73ec0 2207
e1f60b29
NM
2208 if (IS_ERR(opp)) {
2209 r = PTR_ERR(opp);
2210 goto unlock;
2211 }
2212
2213 /* Is update really needed? */
2214 if (opp->available == availability_req)
2215 goto unlock;
e1f60b29 2216
a7f3987e 2217 opp->available = availability_req;
e1f60b29 2218
e4d8ae00
VK
2219 dev_pm_opp_get(opp);
2220 mutex_unlock(&opp_table->lock);
2221
03ca370f
MH
2222 /* Notify the change of the OPP availability */
2223 if (availability_req)
052c6f19 2224 blocking_notifier_call_chain(&opp_table->head, OPP_EVENT_ENABLE,
a7f3987e 2225 opp);
03ca370f 2226 else
052c6f19 2227 blocking_notifier_call_chain(&opp_table->head,
a7f3987e 2228 OPP_EVENT_DISABLE, opp);
e1f60b29 2229
e4d8ae00
VK
2230 dev_pm_opp_put(opp);
2231 goto put_table;
2232
e1f60b29 2233unlock:
5b650b38 2234 mutex_unlock(&opp_table->lock);
e4d8ae00 2235put_table:
5b650b38 2236 dev_pm_opp_put_opp_table(opp_table);
e1f60b29
NM
2237 return r;
2238}
2239
25cb20a2
SB
2240/**
2241 * dev_pm_opp_adjust_voltage() - helper to change the voltage of an OPP
2242 * @dev: device for which we do this operation
2243 * @freq: OPP frequency to adjust voltage of
2244 * @u_volt: new OPP target voltage
2245 * @u_volt_min: new OPP min voltage
2246 * @u_volt_max: new OPP max voltage
2247 *
2248 * Return: -EINVAL for bad pointers, -ENOMEM if no memory available for the
2249 * copy operation, returns 0 if no modifcation was done OR modification was
2250 * successful.
2251 */
2252int dev_pm_opp_adjust_voltage(struct device *dev, unsigned long freq,
2253 unsigned long u_volt, unsigned long u_volt_min,
2254 unsigned long u_volt_max)
2255
2256{
2257 struct opp_table *opp_table;
2258 struct dev_pm_opp *tmp_opp, *opp = ERR_PTR(-ENODEV);
2259 int r = 0;
2260
2261 /* Find the opp_table */
2262 opp_table = _find_opp_table(dev);
2263 if (IS_ERR(opp_table)) {
2264 r = PTR_ERR(opp_table);
2265 dev_warn(dev, "%s: Device OPP not found (%d)\n", __func__, r);
2266 return r;
2267 }
2268
2269 mutex_lock(&opp_table->lock);
2270
2271 /* Do we have the frequency? */
2272 list_for_each_entry(tmp_opp, &opp_table->opp_list, node) {
2273 if (tmp_opp->rate == freq) {
2274 opp = tmp_opp;
2275 break;
2276 }
2277 }
2278
2279 if (IS_ERR(opp)) {
2280 r = PTR_ERR(opp);
2281 goto adjust_unlock;
2282 }
2283
2284 /* Is update really needed? */
2285 if (opp->supplies->u_volt == u_volt)
2286 goto adjust_unlock;
2287
2288 opp->supplies->u_volt = u_volt;
2289 opp->supplies->u_volt_min = u_volt_min;
2290 opp->supplies->u_volt_max = u_volt_max;
2291
2292 dev_pm_opp_get(opp);
2293 mutex_unlock(&opp_table->lock);
2294
2295 /* Notify the voltage change of the OPP */
2296 blocking_notifier_call_chain(&opp_table->head, OPP_EVENT_ADJUST_VOLTAGE,
2297 opp);
2298
2299 dev_pm_opp_put(opp);
2300 goto adjust_put_table;
2301
2302adjust_unlock:
2303 mutex_unlock(&opp_table->lock);
2304adjust_put_table:
2305 dev_pm_opp_put_opp_table(opp_table);
2306 return r;
2307}
03649154 2308EXPORT_SYMBOL_GPL(dev_pm_opp_adjust_voltage);
25cb20a2 2309
e1f60b29 2310/**
5d4879cd 2311 * dev_pm_opp_enable() - Enable a specific OPP
e1f60b29
NM
2312 * @dev: device for which we do this operation
2313 * @freq: OPP frequency to enable
2314 *
2315 * Enables a provided opp. If the operation is valid, this returns 0, else the
2316 * corresponding error value. It is meant to be used for users an OPP available
5d4879cd 2317 * after being temporarily made unavailable with dev_pm_opp_disable.
e1f60b29 2318 *
984f16c8 2319 * Return: -EINVAL for bad pointers, -ENOMEM if no memory available for the
e1a2d49c 2320 * copy operation, returns 0 if no modification was done OR modification was
984f16c8 2321 * successful.
e1f60b29 2322 */
5d4879cd 2323int dev_pm_opp_enable(struct device *dev, unsigned long freq)
e1f60b29 2324{
327854c8 2325 return _opp_set_availability(dev, freq, true);
e1f60b29 2326}
5d4879cd 2327EXPORT_SYMBOL_GPL(dev_pm_opp_enable);
e1f60b29
NM
2328
2329/**
5d4879cd 2330 * dev_pm_opp_disable() - Disable a specific OPP
e1f60b29
NM
2331 * @dev: device for which we do this operation
2332 * @freq: OPP frequency to disable
2333 *
2334 * Disables a provided opp. If the operation is valid, this returns
2335 * 0, else the corresponding error value. It is meant to be a temporary
2336 * control by users to make this OPP not available until the circumstances are
5d4879cd 2337 * right to make it available again (with a call to dev_pm_opp_enable).
e1f60b29 2338 *
984f16c8 2339 * Return: -EINVAL for bad pointers, -ENOMEM if no memory available for the
e1a2d49c 2340 * copy operation, returns 0 if no modification was done OR modification was
984f16c8 2341 * successful.
e1f60b29 2342 */
5d4879cd 2343int dev_pm_opp_disable(struct device *dev, unsigned long freq)
e1f60b29 2344{
327854c8 2345 return _opp_set_availability(dev, freq, false);
e1f60b29 2346}
5d4879cd 2347EXPORT_SYMBOL_GPL(dev_pm_opp_disable);
e1f60b29 2348
03ca370f 2349/**
dc2c9ad5
VK
2350 * dev_pm_opp_register_notifier() - Register OPP notifier for the device
2351 * @dev: Device for which notifier needs to be registered
2352 * @nb: Notifier block to be registered
984f16c8 2353 *
dc2c9ad5
VK
2354 * Return: 0 on success or a negative error value.
2355 */
2356int dev_pm_opp_register_notifier(struct device *dev, struct notifier_block *nb)
2357{
2358 struct opp_table *opp_table;
2359 int ret;
2360
dc2c9ad5 2361 opp_table = _find_opp_table(dev);
5b650b38
VK
2362 if (IS_ERR(opp_table))
2363 return PTR_ERR(opp_table);
2364
052c6f19 2365 ret = blocking_notifier_chain_register(&opp_table->head, nb);
dc2c9ad5 2366
5b650b38 2367 dev_pm_opp_put_opp_table(opp_table);
dc2c9ad5
VK
2368
2369 return ret;
2370}
2371EXPORT_SYMBOL(dev_pm_opp_register_notifier);
2372
2373/**
2374 * dev_pm_opp_unregister_notifier() - Unregister OPP notifier for the device
2375 * @dev: Device for which notifier needs to be unregistered
2376 * @nb: Notifier block to be unregistered
984f16c8 2377 *
dc2c9ad5 2378 * Return: 0 on success or a negative error value.
03ca370f 2379 */
dc2c9ad5
VK
2380int dev_pm_opp_unregister_notifier(struct device *dev,
2381 struct notifier_block *nb)
03ca370f 2382{
dc2c9ad5
VK
2383 struct opp_table *opp_table;
2384 int ret;
03ca370f 2385
dc2c9ad5 2386 opp_table = _find_opp_table(dev);
5b650b38
VK
2387 if (IS_ERR(opp_table))
2388 return PTR_ERR(opp_table);
dc2c9ad5 2389
052c6f19 2390 ret = blocking_notifier_chain_unregister(&opp_table->head, nb);
03ca370f 2391
5b650b38 2392 dev_pm_opp_put_opp_table(opp_table);
dc2c9ad5
VK
2393
2394 return ret;
03ca370f 2395}
dc2c9ad5 2396EXPORT_SYMBOL(dev_pm_opp_unregister_notifier);
b496dfbc 2397
2a4eb735 2398void _dev_pm_opp_find_and_remove_table(struct device *dev)
9274c892
VK
2399{
2400 struct opp_table *opp_table;
2401
2c2709dc
VK
2402 /* Check for existing table for 'dev' */
2403 opp_table = _find_opp_table(dev);
2404 if (IS_ERR(opp_table)) {
2405 int error = PTR_ERR(opp_table);
737002b5
VK
2406
2407 if (error != -ENODEV)
2c2709dc 2408 WARN(1, "%s: opp_table: %d\n",
737002b5
VK
2409 IS_ERR_OR_NULL(dev) ?
2410 "Invalid device" : dev_name(dev),
2411 error);
5b650b38 2412 return;
737002b5
VK
2413 }
2414
03758d60 2415 _opp_remove_all_static(opp_table);
cdd6ed90
VK
2416
2417 /* Drop reference taken by _find_opp_table() */
2418 dev_pm_opp_put_opp_table(opp_table);
737002b5 2419
cdd6ed90 2420 /* Drop reference taken while the OPP table was added */
5b650b38 2421 dev_pm_opp_put_opp_table(opp_table);
737002b5 2422}
129eec55
VK
2423
2424/**
411466c5 2425 * dev_pm_opp_remove_table() - Free all OPPs associated with the device
2c2709dc 2426 * @dev: device pointer used to lookup OPP table.
129eec55 2427 *
411466c5
SH
2428 * Free both OPPs created using static entries present in DT and the
2429 * dynamically added entries.
129eec55 2430 */
411466c5 2431void dev_pm_opp_remove_table(struct device *dev)
129eec55 2432{
2a4eb735 2433 _dev_pm_opp_find_and_remove_table(dev);
8d4d4e98 2434}
411466c5 2435EXPORT_SYMBOL_GPL(dev_pm_opp_remove_table);