OPP: Fix missing debugfs supply directory for OPPs
[linux-2.6-block.git] / drivers / opp / core.c
CommitLineData
e1f60b29
NM
1/*
2 * Generic OPP Interface
3 *
4 * Copyright (C) 2009-2010 Texas Instruments Incorporated.
5 * Nishanth Menon
6 * Romit Dasgupta
7 * Kevin Hilman
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
d6d2a528
VK
14#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15
d54974c2 16#include <linux/clk.h>
e1f60b29
NM
17#include <linux/errno.h>
18#include <linux/err.h>
e1f60b29 19#include <linux/slab.h>
51990e82 20#include <linux/device.h>
80126ce7 21#include <linux/export.h>
009acd19 22#include <linux/pm_domain.h>
9f8ea969 23#include <linux/regulator/consumer.h>
e1f60b29 24
f59d3ee8 25#include "opp.h"
e1f60b29
NM
26
27/*
2c2709dc
VK
28 * The root of the list of all opp-tables. All opp_table structures branch off
29 * from here, with each opp_table containing the list of opps it supports in
e1f60b29
NM
30 * various states of availability.
31 */
f47b72a1 32LIST_HEAD(opp_tables);
e1f60b29 33/* Lock to allow exclusive modification to the device and opp lists */
2c2709dc 34DEFINE_MUTEX(opp_table_lock);
e1f60b29 35
2c2709dc
VK
36static struct opp_device *_find_opp_dev(const struct device *dev,
37 struct opp_table *opp_table)
06441658 38{
2c2709dc 39 struct opp_device *opp_dev;
06441658 40
2c2709dc
VK
41 list_for_each_entry(opp_dev, &opp_table->dev_list, node)
42 if (opp_dev->dev == dev)
43 return opp_dev;
06441658
VK
44
45 return NULL;
46}
47
6ac42397 48static struct opp_table *_find_opp_table_unlocked(struct device *dev)
5b650b38
VK
49{
50 struct opp_table *opp_table;
3d255699 51 bool found;
5b650b38
VK
52
53 list_for_each_entry(opp_table, &opp_tables, node) {
3d255699
VK
54 mutex_lock(&opp_table->lock);
55 found = !!_find_opp_dev(dev, opp_table);
56 mutex_unlock(&opp_table->lock);
57
58 if (found) {
5b650b38
VK
59 _get_opp_table_kref(opp_table);
60
61 return opp_table;
62 }
63 }
64
65 return ERR_PTR(-ENODEV);
66}
67
e1f60b29 68/**
2c2709dc
VK
69 * _find_opp_table() - find opp_table struct using device pointer
70 * @dev: device pointer used to lookup OPP table
e1f60b29 71 *
052c6f19 72 * Search OPP table for one containing matching device.
e1f60b29 73 *
2c2709dc 74 * Return: pointer to 'struct opp_table' if found, otherwise -ENODEV or
e1f60b29
NM
75 * -EINVAL based on type of error.
76 *
5b650b38 77 * The callers must call dev_pm_opp_put_opp_table() after the table is used.
e1f60b29 78 */
2c2709dc 79struct opp_table *_find_opp_table(struct device *dev)
e1f60b29 80{
2c2709dc 81 struct opp_table *opp_table;
e1f60b29 82
50a3cb04 83 if (IS_ERR_OR_NULL(dev)) {
e1f60b29
NM
84 pr_err("%s: Invalid parameters\n", __func__);
85 return ERR_PTR(-EINVAL);
86 }
87
5b650b38
VK
88 mutex_lock(&opp_table_lock);
89 opp_table = _find_opp_table_unlocked(dev);
90 mutex_unlock(&opp_table_lock);
e1f60b29 91
5b650b38 92 return opp_table;
e1f60b29
NM
93}
94
95/**
d6d00742 96 * dev_pm_opp_get_voltage() - Gets the voltage corresponding to an opp
e1f60b29
NM
97 * @opp: opp for which voltage has to be returned for
98 *
984f16c8 99 * Return: voltage in micro volt corresponding to the opp, else
e1f60b29
NM
100 * return 0
101 *
dfbe4678 102 * This is useful only for devices with single power supply.
e1f60b29 103 */
47d43ba7 104unsigned long dev_pm_opp_get_voltage(struct dev_pm_opp *opp)
e1f60b29 105{
052c6f19 106 if (IS_ERR_OR_NULL(opp)) {
e1f60b29 107 pr_err("%s: Invalid parameters\n", __func__);
052c6f19
VK
108 return 0;
109 }
e1f60b29 110
052c6f19 111 return opp->supplies[0].u_volt;
e1f60b29 112}
5d4879cd 113EXPORT_SYMBOL_GPL(dev_pm_opp_get_voltage);
e1f60b29
NM
114
115/**
5d4879cd 116 * dev_pm_opp_get_freq() - Gets the frequency corresponding to an available opp
e1f60b29
NM
117 * @opp: opp for which frequency has to be returned for
118 *
984f16c8 119 * Return: frequency in hertz corresponding to the opp, else
e1f60b29 120 * return 0
e1f60b29 121 */
47d43ba7 122unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp)
e1f60b29 123{
052c6f19 124 if (IS_ERR_OR_NULL(opp) || !opp->available) {
e1f60b29 125 pr_err("%s: Invalid parameters\n", __func__);
052c6f19
VK
126 return 0;
127 }
e1f60b29 128
052c6f19 129 return opp->rate;
e1f60b29 130}
5d4879cd 131EXPORT_SYMBOL_GPL(dev_pm_opp_get_freq);
e1f60b29 132
19445b25
BZ
133/**
134 * dev_pm_opp_is_turbo() - Returns if opp is turbo OPP or not
135 * @opp: opp for which turbo mode is being verified
136 *
137 * Turbo OPPs are not for normal use, and can be enabled (under certain
138 * conditions) for short duration of times to finish high throughput work
139 * quickly. Running on them for longer times may overheat the chip.
140 *
141 * Return: true if opp is turbo opp, else false.
19445b25
BZ
142 */
143bool dev_pm_opp_is_turbo(struct dev_pm_opp *opp)
144{
052c6f19 145 if (IS_ERR_OR_NULL(opp) || !opp->available) {
19445b25
BZ
146 pr_err("%s: Invalid parameters\n", __func__);
147 return false;
148 }
149
052c6f19 150 return opp->turbo;
19445b25
BZ
151}
152EXPORT_SYMBOL_GPL(dev_pm_opp_is_turbo);
153
3ca9bb33
VK
154/**
155 * dev_pm_opp_get_max_clock_latency() - Get max clock latency in nanoseconds
156 * @dev: device for which we do this operation
157 *
158 * Return: This function returns the max clock latency in nanoseconds.
3ca9bb33
VK
159 */
160unsigned long dev_pm_opp_get_max_clock_latency(struct device *dev)
161{
2c2709dc 162 struct opp_table *opp_table;
3ca9bb33
VK
163 unsigned long clock_latency_ns;
164
2c2709dc
VK
165 opp_table = _find_opp_table(dev);
166 if (IS_ERR(opp_table))
5b650b38
VK
167 return 0;
168
169 clock_latency_ns = opp_table->clock_latency_ns_max;
170
171 dev_pm_opp_put_opp_table(opp_table);
3ca9bb33 172
3ca9bb33
VK
173 return clock_latency_ns;
174}
175EXPORT_SYMBOL_GPL(dev_pm_opp_get_max_clock_latency);
176
655c9df9
VK
177/**
178 * dev_pm_opp_get_max_volt_latency() - Get max voltage latency in nanoseconds
179 * @dev: device for which we do this operation
180 *
181 * Return: This function returns the max voltage latency in nanoseconds.
655c9df9
VK
182 */
183unsigned long dev_pm_opp_get_max_volt_latency(struct device *dev)
184{
2c2709dc 185 struct opp_table *opp_table;
655c9df9 186 struct dev_pm_opp *opp;
478256bd 187 struct regulator *reg;
655c9df9 188 unsigned long latency_ns = 0;
dfbe4678
VK
189 int ret, i, count;
190 struct {
191 unsigned long min;
192 unsigned long max;
193 } *uV;
194
cdd3e614
VK
195 opp_table = _find_opp_table(dev);
196 if (IS_ERR(opp_table))
197 return 0;
198
dfbe4678 199 /* Regulator may not be required for the device */
90e3577b 200 if (!opp_table->regulators)
cdd3e614 201 goto put_opp_table;
dfbe4678 202
90e3577b
VK
203 count = opp_table->regulator_count;
204
dfbe4678
VK
205 uV = kmalloc_array(count, sizeof(*uV), GFP_KERNEL);
206 if (!uV)
478256bd 207 goto put_opp_table;
655c9df9 208
052c6f19
VK
209 mutex_lock(&opp_table->lock);
210
dfbe4678
VK
211 for (i = 0; i < count; i++) {
212 uV[i].min = ~0;
213 uV[i].max = 0;
655c9df9 214
052c6f19 215 list_for_each_entry(opp, &opp_table->opp_list, node) {
dfbe4678
VK
216 if (!opp->available)
217 continue;
218
219 if (opp->supplies[i].u_volt_min < uV[i].min)
220 uV[i].min = opp->supplies[i].u_volt_min;
221 if (opp->supplies[i].u_volt_max > uV[i].max)
222 uV[i].max = opp->supplies[i].u_volt_max;
223 }
655c9df9
VK
224 }
225
052c6f19 226 mutex_unlock(&opp_table->lock);
655c9df9
VK
227
228 /*
2c2709dc 229 * The caller needs to ensure that opp_table (and hence the regulator)
655c9df9
VK
230 * isn't freed, while we are executing this routine.
231 */
8cc31116 232 for (i = 0; i < count; i++) {
478256bd 233 reg = opp_table->regulators[i];
dfbe4678
VK
234 ret = regulator_set_voltage_time(reg, uV[i].min, uV[i].max);
235 if (ret > 0)
236 latency_ns += ret * 1000;
237 }
238
dfbe4678 239 kfree(uV);
cdd3e614
VK
240put_opp_table:
241 dev_pm_opp_put_opp_table(opp_table);
655c9df9
VK
242
243 return latency_ns;
244}
245EXPORT_SYMBOL_GPL(dev_pm_opp_get_max_volt_latency);
246
21743447
VK
247/**
248 * dev_pm_opp_get_max_transition_latency() - Get max transition latency in
249 * nanoseconds
250 * @dev: device for which we do this operation
251 *
252 * Return: This function returns the max transition latency, in nanoseconds, to
253 * switch from one OPP to other.
21743447
VK
254 */
255unsigned long dev_pm_opp_get_max_transition_latency(struct device *dev)
256{
257 return dev_pm_opp_get_max_volt_latency(dev) +
258 dev_pm_opp_get_max_clock_latency(dev);
259}
260EXPORT_SYMBOL_GPL(dev_pm_opp_get_max_transition_latency);
261
4eafbd15 262/**
3aa26a3b 263 * dev_pm_opp_get_suspend_opp_freq() - Get frequency of suspend opp in Hz
4eafbd15
BZ
264 * @dev: device for which we do this operation
265 *
3aa26a3b
VK
266 * Return: This function returns the frequency of the OPP marked as suspend_opp
267 * if one is available, else returns 0;
4eafbd15 268 */
3aa26a3b 269unsigned long dev_pm_opp_get_suspend_opp_freq(struct device *dev)
4eafbd15 270{
2c2709dc 271 struct opp_table *opp_table;
3aa26a3b 272 unsigned long freq = 0;
4eafbd15 273
2c2709dc 274 opp_table = _find_opp_table(dev);
5b650b38
VK
275 if (IS_ERR(opp_table))
276 return 0;
3aa26a3b 277
5b650b38
VK
278 if (opp_table->suspend_opp && opp_table->suspend_opp->available)
279 freq = dev_pm_opp_get_freq(opp_table->suspend_opp);
280
281 dev_pm_opp_put_opp_table(opp_table);
4eafbd15 282
3aa26a3b 283 return freq;
4eafbd15 284}
3aa26a3b 285EXPORT_SYMBOL_GPL(dev_pm_opp_get_suspend_opp_freq);
4eafbd15 286
a1e8c136
VK
287int _get_opp_count(struct opp_table *opp_table)
288{
289 struct dev_pm_opp *opp;
290 int count = 0;
291
292 mutex_lock(&opp_table->lock);
293
294 list_for_each_entry(opp, &opp_table->opp_list, node) {
295 if (opp->available)
296 count++;
297 }
298
299 mutex_unlock(&opp_table->lock);
300
301 return count;
302}
303
e1f60b29 304/**
2c2709dc 305 * dev_pm_opp_get_opp_count() - Get number of opps available in the opp table
e1f60b29
NM
306 * @dev: device for which we do this operation
307 *
984f16c8 308 * Return: This function returns the number of available opps if there are any,
e1f60b29 309 * else returns 0 if none or the corresponding error value.
e1f60b29 310 */
5d4879cd 311int dev_pm_opp_get_opp_count(struct device *dev)
e1f60b29 312{
2c2709dc 313 struct opp_table *opp_table;
a1e8c136 314 int count;
e1f60b29 315
2c2709dc
VK
316 opp_table = _find_opp_table(dev);
317 if (IS_ERR(opp_table)) {
318 count = PTR_ERR(opp_table);
035ed072 319 dev_dbg(dev, "%s: OPP table not found (%d)\n",
b4718c02 320 __func__, count);
09f662f9 321 return count;
e1f60b29
NM
322 }
323
a1e8c136 324 count = _get_opp_count(opp_table);
5b650b38
VK
325 dev_pm_opp_put_opp_table(opp_table);
326
e1f60b29
NM
327 return count;
328}
5d4879cd 329EXPORT_SYMBOL_GPL(dev_pm_opp_get_opp_count);
e1f60b29
NM
330
331/**
5d4879cd 332 * dev_pm_opp_find_freq_exact() - search for an exact frequency
e1f60b29
NM
333 * @dev: device for which we do this operation
334 * @freq: frequency to search for
7ae49618 335 * @available: true/false - match for available opp
e1f60b29 336 *
2c2709dc 337 * Return: Searches for exact match in the opp table and returns pointer to the
984f16c8
NM
338 * matching opp if found, else returns ERR_PTR in case of error and should
339 * be handled using IS_ERR. Error return values can be:
0779726c
NM
340 * EINVAL: for bad pointer
341 * ERANGE: no match found for search
342 * ENODEV: if device not found in list of registered devices
e1f60b29
NM
343 *
344 * Note: available is a modifier for the search. if available=true, then the
345 * match is for exact matching frequency and is available in the stored OPP
346 * table. if false, the match is for exact frequency which is not available.
347 *
348 * This provides a mechanism to enable an opp which is not available currently
349 * or the opposite as well.
350 *
8a31d9d9
VK
351 * The callers are required to call dev_pm_opp_put() for the returned OPP after
352 * use.
e1f60b29 353 */
47d43ba7
NM
354struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
355 unsigned long freq,
356 bool available)
e1f60b29 357{
2c2709dc 358 struct opp_table *opp_table;
47d43ba7 359 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
e1f60b29 360
2c2709dc
VK
361 opp_table = _find_opp_table(dev);
362 if (IS_ERR(opp_table)) {
363 int r = PTR_ERR(opp_table);
364
365 dev_err(dev, "%s: OPP table not found (%d)\n", __func__, r);
e1f60b29
NM
366 return ERR_PTR(r);
367 }
368
052c6f19 369 mutex_lock(&opp_table->lock);
5b650b38 370
052c6f19 371 list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
e1f60b29
NM
372 if (temp_opp->available == available &&
373 temp_opp->rate == freq) {
374 opp = temp_opp;
8a31d9d9
VK
375
376 /* Increment the reference count of OPP */
377 dev_pm_opp_get(opp);
e1f60b29
NM
378 break;
379 }
380 }
381
052c6f19 382 mutex_unlock(&opp_table->lock);
5b650b38 383 dev_pm_opp_put_opp_table(opp_table);
8a31d9d9 384
e1f60b29
NM
385 return opp;
386}
5d4879cd 387EXPORT_SYMBOL_GPL(dev_pm_opp_find_freq_exact);
e1f60b29 388
067b7ce0
JZ
389static noinline struct dev_pm_opp *_find_freq_ceil(struct opp_table *opp_table,
390 unsigned long *freq)
391{
392 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
393
052c6f19
VK
394 mutex_lock(&opp_table->lock);
395
396 list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
067b7ce0
JZ
397 if (temp_opp->available && temp_opp->rate >= *freq) {
398 opp = temp_opp;
399 *freq = opp->rate;
8a31d9d9
VK
400
401 /* Increment the reference count of OPP */
402 dev_pm_opp_get(opp);
067b7ce0
JZ
403 break;
404 }
405 }
406
052c6f19
VK
407 mutex_unlock(&opp_table->lock);
408
067b7ce0
JZ
409 return opp;
410}
411
e1f60b29 412/**
5d4879cd 413 * dev_pm_opp_find_freq_ceil() - Search for an rounded ceil freq
e1f60b29
NM
414 * @dev: device for which we do this operation
415 * @freq: Start frequency
416 *
417 * Search for the matching ceil *available* OPP from a starting freq
418 * for a device.
419 *
984f16c8 420 * Return: matching *opp and refreshes *freq accordingly, else returns
0779726c
NM
421 * ERR_PTR in case of error and should be handled using IS_ERR. Error return
422 * values can be:
423 * EINVAL: for bad pointer
424 * ERANGE: no match found for search
425 * ENODEV: if device not found in list of registered devices
e1f60b29 426 *
8a31d9d9
VK
427 * The callers are required to call dev_pm_opp_put() for the returned OPP after
428 * use.
e1f60b29 429 */
47d43ba7
NM
430struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
431 unsigned long *freq)
e1f60b29 432{
2c2709dc 433 struct opp_table *opp_table;
8a31d9d9 434 struct dev_pm_opp *opp;
b02ded24 435
e1f60b29
NM
436 if (!dev || !freq) {
437 dev_err(dev, "%s: Invalid argument freq=%p\n", __func__, freq);
438 return ERR_PTR(-EINVAL);
439 }
440
2c2709dc 441 opp_table = _find_opp_table(dev);
5b650b38 442 if (IS_ERR(opp_table))
2c2709dc 443 return ERR_CAST(opp_table);
5b650b38 444
8a31d9d9 445 opp = _find_freq_ceil(opp_table, freq);
e1f60b29 446
5b650b38 447 dev_pm_opp_put_opp_table(opp_table);
8a31d9d9
VK
448
449 return opp;
e1f60b29 450}
5d4879cd 451EXPORT_SYMBOL_GPL(dev_pm_opp_find_freq_ceil);
e1f60b29
NM
452
453/**
5d4879cd 454 * dev_pm_opp_find_freq_floor() - Search for a rounded floor freq
e1f60b29
NM
455 * @dev: device for which we do this operation
456 * @freq: Start frequency
457 *
458 * Search for the matching floor *available* OPP from a starting freq
459 * for a device.
460 *
984f16c8 461 * Return: matching *opp and refreshes *freq accordingly, else returns
0779726c
NM
462 * ERR_PTR in case of error and should be handled using IS_ERR. Error return
463 * values can be:
464 * EINVAL: for bad pointer
465 * ERANGE: no match found for search
466 * ENODEV: if device not found in list of registered devices
e1f60b29 467 *
8a31d9d9
VK
468 * The callers are required to call dev_pm_opp_put() for the returned OPP after
469 * use.
e1f60b29 470 */
47d43ba7
NM
471struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
472 unsigned long *freq)
e1f60b29 473{
2c2709dc 474 struct opp_table *opp_table;
47d43ba7 475 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
e1f60b29
NM
476
477 if (!dev || !freq) {
478 dev_err(dev, "%s: Invalid argument freq=%p\n", __func__, freq);
479 return ERR_PTR(-EINVAL);
480 }
481
2c2709dc 482 opp_table = _find_opp_table(dev);
5b650b38 483 if (IS_ERR(opp_table))
2c2709dc 484 return ERR_CAST(opp_table);
5b650b38 485
052c6f19 486 mutex_lock(&opp_table->lock);
e1f60b29 487
052c6f19 488 list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
e1f60b29
NM
489 if (temp_opp->available) {
490 /* go to the next node, before choosing prev */
491 if (temp_opp->rate > *freq)
492 break;
493 else
494 opp = temp_opp;
495 }
496 }
8a31d9d9
VK
497
498 /* Increment the reference count of OPP */
499 if (!IS_ERR(opp))
500 dev_pm_opp_get(opp);
052c6f19 501 mutex_unlock(&opp_table->lock);
5b650b38 502 dev_pm_opp_put_opp_table(opp_table);
8a31d9d9 503
e1f60b29
NM
504 if (!IS_ERR(opp))
505 *freq = opp->rate;
506
507 return opp;
508}
5d4879cd 509EXPORT_SYMBOL_GPL(dev_pm_opp_find_freq_floor);
e1f60b29 510
6a0712f6 511static int _set_opp_voltage(struct device *dev, struct regulator *reg,
ce31781a 512 struct dev_pm_opp_supply *supply)
6a0712f6
VK
513{
514 int ret;
515
516 /* Regulator not available for device */
517 if (IS_ERR(reg)) {
518 dev_dbg(dev, "%s: regulator not available: %ld\n", __func__,
519 PTR_ERR(reg));
520 return 0;
521 }
522
ce31781a
VK
523 dev_dbg(dev, "%s: voltages (mV): %lu %lu %lu\n", __func__,
524 supply->u_volt_min, supply->u_volt, supply->u_volt_max);
6a0712f6 525
ce31781a
VK
526 ret = regulator_set_voltage_triplet(reg, supply->u_volt_min,
527 supply->u_volt, supply->u_volt_max);
6a0712f6
VK
528 if (ret)
529 dev_err(dev, "%s: failed to set voltage (%lu %lu %lu mV): %d\n",
ce31781a
VK
530 __func__, supply->u_volt_min, supply->u_volt,
531 supply->u_volt_max, ret);
6a0712f6
VK
532
533 return ret;
534}
535
94735585
VK
536static inline int
537_generic_set_opp_clk_only(struct device *dev, struct clk *clk,
538 unsigned long old_freq, unsigned long freq)
539{
540 int ret;
541
542 ret = clk_set_rate(clk, freq);
543 if (ret) {
544 dev_err(dev, "%s: failed to set clock rate: %d\n", __func__,
545 ret);
546 }
547
548 return ret;
549}
550
009acd19
VK
551static inline int
552_generic_set_opp_domain(struct device *dev, struct clk *clk,
553 unsigned long old_freq, unsigned long freq,
554 unsigned int old_pstate, unsigned int new_pstate)
555{
556 int ret;
557
558 /* Scaling up? Scale domain performance state before frequency */
559 if (freq > old_freq) {
560 ret = dev_pm_genpd_set_performance_state(dev, new_pstate);
561 if (ret)
562 return ret;
563 }
564
565 ret = _generic_set_opp_clk_only(dev, clk, old_freq, freq);
566 if (ret)
567 goto restore_domain_state;
568
569 /* Scaling down? Scale domain performance state after frequency */
570 if (freq < old_freq) {
571 ret = dev_pm_genpd_set_performance_state(dev, new_pstate);
572 if (ret)
573 goto restore_freq;
574 }
575
576 return 0;
577
578restore_freq:
579 if (_generic_set_opp_clk_only(dev, clk, freq, old_freq))
580 dev_err(dev, "%s: failed to restore old-freq (%lu Hz)\n",
581 __func__, old_freq);
582restore_domain_state:
583 if (freq > old_freq)
584 dev_pm_genpd_set_performance_state(dev, old_pstate);
585
586 return ret;
587}
588
c74b32fa
VK
589static int _generic_set_opp_regulator(const struct opp_table *opp_table,
590 struct device *dev,
591 unsigned long old_freq,
592 unsigned long freq,
593 struct dev_pm_opp_supply *old_supply,
594 struct dev_pm_opp_supply *new_supply)
94735585 595{
c74b32fa 596 struct regulator *reg = opp_table->regulators[0];
94735585
VK
597 int ret;
598
599 /* This function only supports single regulator per device */
c74b32fa 600 if (WARN_ON(opp_table->regulator_count > 1)) {
94735585
VK
601 dev_err(dev, "multiple regulators are not supported\n");
602 return -EINVAL;
603 }
604
605 /* Scaling up? Scale voltage before frequency */
c5c2a97b 606 if (freq >= old_freq) {
94735585
VK
607 ret = _set_opp_voltage(dev, reg, new_supply);
608 if (ret)
609 goto restore_voltage;
610 }
611
612 /* Change frequency */
c74b32fa 613 ret = _generic_set_opp_clk_only(dev, opp_table->clk, old_freq, freq);
94735585
VK
614 if (ret)
615 goto restore_voltage;
616
617 /* Scaling down? Scale voltage after frequency */
618 if (freq < old_freq) {
619 ret = _set_opp_voltage(dev, reg, new_supply);
620 if (ret)
621 goto restore_freq;
622 }
623
624 return 0;
625
626restore_freq:
c74b32fa 627 if (_generic_set_opp_clk_only(dev, opp_table->clk, freq, old_freq))
94735585
VK
628 dev_err(dev, "%s: failed to restore old-freq (%lu Hz)\n",
629 __func__, old_freq);
630restore_voltage:
631 /* This shouldn't harm even if the voltages weren't updated earlier */
c74b32fa 632 if (old_supply)
94735585
VK
633 _set_opp_voltage(dev, reg, old_supply);
634
635 return ret;
636}
637
6a0712f6
VK
638/**
639 * dev_pm_opp_set_rate() - Configure new OPP based on frequency
640 * @dev: device for which we do this operation
641 * @target_freq: frequency to achieve
642 *
643 * This configures the power-supplies and clock source to the levels specified
644 * by the OPP corresponding to the target_freq.
6a0712f6
VK
645 */
646int dev_pm_opp_set_rate(struct device *dev, unsigned long target_freq)
647{
2c2709dc 648 struct opp_table *opp_table;
94735585 649 unsigned long freq, old_freq;
6a0712f6 650 struct dev_pm_opp *old_opp, *opp;
6a0712f6 651 struct clk *clk;
94735585 652 int ret, size;
6a0712f6
VK
653
654 if (unlikely(!target_freq)) {
655 dev_err(dev, "%s: Invalid target frequency %lu\n", __func__,
656 target_freq);
657 return -EINVAL;
658 }
659
052c6f19
VK
660 opp_table = _find_opp_table(dev);
661 if (IS_ERR(opp_table)) {
662 dev_err(dev, "%s: device opp doesn't exist\n", __func__);
663 return PTR_ERR(opp_table);
664 }
665
666 clk = opp_table->clk;
667 if (IS_ERR(clk)) {
668 dev_err(dev, "%s: No clock available for the device\n",
669 __func__);
670 ret = PTR_ERR(clk);
671 goto put_opp_table;
672 }
6a0712f6
VK
673
674 freq = clk_round_rate(clk, target_freq);
675 if ((long)freq <= 0)
676 freq = target_freq;
677
678 old_freq = clk_get_rate(clk);
679
680 /* Return early if nothing to do */
681 if (old_freq == freq) {
682 dev_dbg(dev, "%s: old/new frequencies (%lu Hz) are same, nothing to do\n",
683 __func__, freq);
052c6f19
VK
684 ret = 0;
685 goto put_opp_table;
6a0712f6
VK
686 }
687
067b7ce0 688 old_opp = _find_freq_ceil(opp_table, &old_freq);
4df27c91 689 if (IS_ERR(old_opp)) {
6a0712f6
VK
690 dev_err(dev, "%s: failed to find current OPP for freq %lu (%ld)\n",
691 __func__, old_freq, PTR_ERR(old_opp));
692 }
693
067b7ce0 694 opp = _find_freq_ceil(opp_table, &freq);
6a0712f6
VK
695 if (IS_ERR(opp)) {
696 ret = PTR_ERR(opp);
697 dev_err(dev, "%s: failed to find OPP for freq %lu (%d)\n",
698 __func__, freq, ret);
052c6f19 699 goto put_old_opp;
6a0712f6
VK
700 }
701
94735585
VK
702 dev_dbg(dev, "%s: switching OPP: %lu Hz --> %lu Hz\n", __func__,
703 old_freq, freq);
dfbe4678 704
94735585 705 /* Only frequency scaling */
c74b32fa 706 if (!opp_table->regulators) {
009acd19
VK
707 /*
708 * We don't support devices with both regulator and
709 * domain performance-state for now.
710 */
711 if (opp_table->genpd_performance_state)
712 ret = _generic_set_opp_domain(dev, clk, old_freq, freq,
713 IS_ERR(old_opp) ? 0 : old_opp->pstate,
714 opp->pstate);
715 else
716 ret = _generic_set_opp_clk_only(dev, clk, old_freq, freq);
c74b32fa
VK
717 } else if (!opp_table->set_opp) {
718 ret = _generic_set_opp_regulator(opp_table, dev, old_freq, freq,
719 IS_ERR(old_opp) ? NULL : old_opp->supplies,
720 opp->supplies);
721 } else {
722 struct dev_pm_set_opp_data *data;
723
724 data = opp_table->set_opp_data;
725 data->regulators = opp_table->regulators;
726 data->regulator_count = opp_table->regulator_count;
727 data->clk = clk;
728 data->dev = dev;
729
730 data->old_opp.rate = old_freq;
731 size = sizeof(*opp->supplies) * opp_table->regulator_count;
732 if (IS_ERR(old_opp))
733 memset(data->old_opp.supplies, 0, size);
734 else
735 memcpy(data->old_opp.supplies, old_opp->supplies, size);
736
737 data->new_opp.rate = freq;
738 memcpy(data->new_opp.supplies, opp->supplies, size);
739
740 ret = opp_table->set_opp(data);
dfbe4678
VK
741 }
742
8a31d9d9 743 dev_pm_opp_put(opp);
052c6f19 744put_old_opp:
8a31d9d9
VK
745 if (!IS_ERR(old_opp))
746 dev_pm_opp_put(old_opp);
052c6f19 747put_opp_table:
5b650b38 748 dev_pm_opp_put_opp_table(opp_table);
052c6f19 749 return ret;
6a0712f6
VK
750}
751EXPORT_SYMBOL_GPL(dev_pm_opp_set_rate);
752
2c2709dc 753/* OPP-dev Helpers */
2c2709dc
VK
754static void _remove_opp_dev(struct opp_device *opp_dev,
755 struct opp_table *opp_table)
06441658 756{
2c2709dc
VK
757 opp_debug_unregister(opp_dev, opp_table);
758 list_del(&opp_dev->node);
052c6f19 759 kfree(opp_dev);
06441658
VK
760}
761
283d55e6
VK
762static struct opp_device *_add_opp_dev_unlocked(const struct device *dev,
763 struct opp_table *opp_table)
06441658 764{
2c2709dc 765 struct opp_device *opp_dev;
deaa5146 766 int ret;
06441658 767
2c2709dc
VK
768 opp_dev = kzalloc(sizeof(*opp_dev), GFP_KERNEL);
769 if (!opp_dev)
06441658
VK
770 return NULL;
771
2c2709dc
VK
772 /* Initialize opp-dev */
773 opp_dev->dev = dev;
3d255699 774
052c6f19 775 list_add(&opp_dev->node, &opp_table->dev_list);
06441658 776
2c2709dc
VK
777 /* Create debugfs entries for the opp_table */
778 ret = opp_debug_register(opp_dev, opp_table);
deaa5146
VK
779 if (ret)
780 dev_err(dev, "%s: Failed to register opp debugfs (%d)\n",
781 __func__, ret);
283d55e6
VK
782
783 return opp_dev;
784}
785
786struct opp_device *_add_opp_dev(const struct device *dev,
787 struct opp_table *opp_table)
788{
789 struct opp_device *opp_dev;
790
791 mutex_lock(&opp_table->lock);
792 opp_dev = _add_opp_dev_unlocked(dev, opp_table);
3d255699 793 mutex_unlock(&opp_table->lock);
deaa5146 794
2c2709dc 795 return opp_dev;
06441658
VK
796}
797
eb7c8743 798static struct opp_table *_allocate_opp_table(struct device *dev, int index)
07cce74a 799{
2c2709dc
VK
800 struct opp_table *opp_table;
801 struct opp_device *opp_dev;
d54974c2 802 int ret;
07cce74a
VK
803
804 /*
2c2709dc 805 * Allocate a new OPP table. In the infrequent case where a new
07cce74a
VK
806 * device is needed to be added, we pay this penalty.
807 */
2c2709dc
VK
808 opp_table = kzalloc(sizeof(*opp_table), GFP_KERNEL);
809 if (!opp_table)
07cce74a
VK
810 return NULL;
811
3d255699 812 mutex_init(&opp_table->lock);
2c2709dc 813 INIT_LIST_HEAD(&opp_table->dev_list);
06441658 814
46f48aca
VK
815 /* Mark regulator count uninitialized */
816 opp_table->regulator_count = -1;
817
2c2709dc
VK
818 opp_dev = _add_opp_dev(dev, opp_table);
819 if (!opp_dev) {
820 kfree(opp_table);
06441658
VK
821 return NULL;
822 }
823
eb7c8743 824 _of_init_opp_table(opp_table, dev, index);
50f8cfbd 825
d54974c2 826 /* Find clk for the device */
2c2709dc
VK
827 opp_table->clk = clk_get(dev, NULL);
828 if (IS_ERR(opp_table->clk)) {
829 ret = PTR_ERR(opp_table->clk);
d54974c2
VK
830 if (ret != -EPROBE_DEFER)
831 dev_dbg(dev, "%s: Couldn't find clock: %d\n", __func__,
832 ret);
833 }
834
052c6f19 835 BLOCKING_INIT_NOTIFIER_HEAD(&opp_table->head);
2c2709dc 836 INIT_LIST_HEAD(&opp_table->opp_list);
f067a982 837 kref_init(&opp_table->kref);
07cce74a 838
2c2709dc 839 /* Secure the device table modification */
052c6f19 840 list_add(&opp_table->node, &opp_tables);
2c2709dc 841 return opp_table;
07cce74a
VK
842}
843
f067a982 844void _get_opp_table_kref(struct opp_table *opp_table)
b6160e26 845{
f067a982
VK
846 kref_get(&opp_table->kref);
847}
848
eb7c8743 849static struct opp_table *_opp_get_opp_table(struct device *dev, int index)
f067a982
VK
850{
851 struct opp_table *opp_table;
852
853 /* Hold our table modification lock here */
854 mutex_lock(&opp_table_lock);
855
5b650b38
VK
856 opp_table = _find_opp_table_unlocked(dev);
857 if (!IS_ERR(opp_table))
f067a982 858 goto unlock;
f067a982 859
283d55e6
VK
860 opp_table = _managed_opp(dev, index);
861 if (opp_table) {
862 if (!_add_opp_dev_unlocked(dev, opp_table)) {
863 dev_pm_opp_put_opp_table(opp_table);
864 opp_table = NULL;
865 }
866 goto unlock;
867 }
868
eb7c8743 869 opp_table = _allocate_opp_table(dev, index);
f067a982
VK
870
871unlock:
872 mutex_unlock(&opp_table_lock);
873
874 return opp_table;
875}
eb7c8743
VK
876
877struct opp_table *dev_pm_opp_get_opp_table(struct device *dev)
878{
879 return _opp_get_opp_table(dev, 0);
880}
f067a982
VK
881EXPORT_SYMBOL_GPL(dev_pm_opp_get_opp_table);
882
eb7c8743
VK
883struct opp_table *dev_pm_opp_get_opp_table_indexed(struct device *dev,
884 int index)
885{
886 return _opp_get_opp_table(dev, index);
887}
888
b83c1899 889static void _opp_table_kref_release(struct kref *kref)
f067a982
VK
890{
891 struct opp_table *opp_table = container_of(kref, struct opp_table, kref);
cdd6ed90 892 struct opp_device *opp_dev, *temp;
b6160e26
VK
893
894 /* Release clk */
895 if (!IS_ERR(opp_table->clk))
896 clk_put(opp_table->clk);
897
cdd6ed90 898 WARN_ON(!list_empty(&opp_table->opp_list));
b6160e26 899
cdd6ed90
VK
900 list_for_each_entry_safe(opp_dev, temp, &opp_table->dev_list, node) {
901 /*
902 * The OPP table is getting removed, drop the performance state
903 * constraints.
904 */
905 if (opp_table->genpd_performance_state)
906 dev_pm_genpd_set_performance_state((struct device *)(opp_dev->dev), 0);
b6160e26 907
cdd6ed90
VK
908 _remove_opp_dev(opp_dev, opp_table);
909 }
b6160e26 910
37a73ec0 911 mutex_destroy(&opp_table->lock);
052c6f19
VK
912 list_del(&opp_table->node);
913 kfree(opp_table);
b6160e26 914
f067a982
VK
915 mutex_unlock(&opp_table_lock);
916}
917
d0e8ae6c
VK
918void _opp_remove_all_static(struct opp_table *opp_table)
919{
920 struct dev_pm_opp *opp, *tmp;
921
922 list_for_each_entry_safe(opp, tmp, &opp_table->opp_list, node) {
923 if (!opp->dynamic)
924 dev_pm_opp_put(opp);
925 }
926
927 opp_table->parsed_static_opps = false;
928}
929
930static void _opp_table_list_kref_release(struct kref *kref)
931{
932 struct opp_table *opp_table = container_of(kref, struct opp_table,
933 list_kref);
934
935 _opp_remove_all_static(opp_table);
936 mutex_unlock(&opp_table_lock);
937}
938
939void _put_opp_list_kref(struct opp_table *opp_table)
940{
941 kref_put_mutex(&opp_table->list_kref, _opp_table_list_kref_release,
942 &opp_table_lock);
943}
944
f067a982
VK
945void dev_pm_opp_put_opp_table(struct opp_table *opp_table)
946{
947 kref_put_mutex(&opp_table->kref, _opp_table_kref_release,
948 &opp_table_lock);
949}
950EXPORT_SYMBOL_GPL(dev_pm_opp_put_opp_table);
951
8cd2f6e8 952void _opp_free(struct dev_pm_opp *opp)
969fceb3
VK
953{
954 kfree(opp);
969fceb3
VK
955}
956
7034764a 957static void _opp_kref_release(struct kref *kref)
129eec55 958{
7034764a
VK
959 struct dev_pm_opp *opp = container_of(kref, struct dev_pm_opp, kref);
960 struct opp_table *opp_table = opp->opp_table;
37a73ec0 961
129eec55
VK
962 /*
963 * Notify the changes in the availability of the operable
964 * frequency/voltage list.
965 */
052c6f19 966 blocking_notifier_call_chain(&opp_table->head, OPP_EVENT_REMOVE, opp);
deaa5146 967 opp_debug_remove_one(opp);
052c6f19
VK
968 list_del(&opp->node);
969 kfree(opp);
129eec55 970
37a73ec0 971 mutex_unlock(&opp_table->lock);
129eec55
VK
972}
973
a88bd2a5 974void dev_pm_opp_get(struct dev_pm_opp *opp)
8a31d9d9
VK
975{
976 kref_get(&opp->kref);
977}
978
7034764a
VK
979void dev_pm_opp_put(struct dev_pm_opp *opp)
980{
981 kref_put_mutex(&opp->kref, _opp_kref_release, &opp->opp_table->lock);
982}
983EXPORT_SYMBOL_GPL(dev_pm_opp_put);
984
129eec55 985/**
2c2709dc 986 * dev_pm_opp_remove() - Remove an OPP from OPP table
129eec55
VK
987 * @dev: device for which we do this operation
988 * @freq: OPP to remove with matching 'freq'
989 *
2c2709dc 990 * This function removes an opp from the opp table.
129eec55
VK
991 */
992void dev_pm_opp_remove(struct device *dev, unsigned long freq)
993{
994 struct dev_pm_opp *opp;
2c2709dc 995 struct opp_table *opp_table;
129eec55
VK
996 bool found = false;
997
2c2709dc
VK
998 opp_table = _find_opp_table(dev);
999 if (IS_ERR(opp_table))
5b650b38 1000 return;
129eec55 1001
37a73ec0
VK
1002 mutex_lock(&opp_table->lock);
1003
2c2709dc 1004 list_for_each_entry(opp, &opp_table->opp_list, node) {
129eec55
VK
1005 if (opp->rate == freq) {
1006 found = true;
1007 break;
1008 }
1009 }
1010
37a73ec0
VK
1011 mutex_unlock(&opp_table->lock);
1012
5b650b38
VK
1013 if (found) {
1014 dev_pm_opp_put(opp);
0ad8c623
VK
1015
1016 /* Drop the reference taken by dev_pm_opp_add() */
1017 dev_pm_opp_put_opp_table(opp_table);
5b650b38 1018 } else {
129eec55
VK
1019 dev_warn(dev, "%s: Couldn't find OPP with freq: %lu\n",
1020 __func__, freq);
129eec55
VK
1021 }
1022
0ad8c623 1023 /* Drop the reference taken by _find_opp_table() */
5b650b38 1024 dev_pm_opp_put_opp_table(opp_table);
129eec55
VK
1025}
1026EXPORT_SYMBOL_GPL(dev_pm_opp_remove);
1027
8cd2f6e8 1028struct dev_pm_opp *_opp_allocate(struct opp_table *table)
e1f60b29 1029{
23dacf6d 1030 struct dev_pm_opp *opp;
dfbe4678 1031 int count, supply_size;
e1f60b29 1032
dfbe4678 1033 /* Allocate space for at least one supply */
46f48aca 1034 count = table->regulator_count > 0 ? table->regulator_count : 1;
dfbe4678 1035 supply_size = sizeof(*opp->supplies) * count;
e1f60b29 1036
dfbe4678
VK
1037 /* allocate new OPP node and supplies structures */
1038 opp = kzalloc(sizeof(*opp) + supply_size, GFP_KERNEL);
8cd2f6e8 1039 if (!opp)
23dacf6d 1040 return NULL;
23dacf6d 1041
dfbe4678
VK
1042 /* Put the supplies at the end of the OPP structure as an empty array */
1043 opp->supplies = (struct dev_pm_opp_supply *)(opp + 1);
1044 INIT_LIST_HEAD(&opp->node);
1045
23dacf6d
VK
1046 return opp;
1047}
1048
7d34d56e 1049static bool _opp_supported_by_regulators(struct dev_pm_opp *opp,
2c2709dc 1050 struct opp_table *opp_table)
7d34d56e 1051{
dfbe4678
VK
1052 struct regulator *reg;
1053 int i;
1054
90e3577b
VK
1055 if (!opp_table->regulators)
1056 return true;
1057
dfbe4678
VK
1058 for (i = 0; i < opp_table->regulator_count; i++) {
1059 reg = opp_table->regulators[i];
1060
1061 if (!regulator_is_supported_voltage(reg,
1062 opp->supplies[i].u_volt_min,
1063 opp->supplies[i].u_volt_max)) {
1064 pr_warn("%s: OPP minuV: %lu maxuV: %lu, not supported by regulator\n",
1065 __func__, opp->supplies[i].u_volt_min,
1066 opp->supplies[i].u_volt_max);
1067 return false;
1068 }
7d34d56e
VK
1069 }
1070
1071 return true;
1072}
1073
a1e8c136
VK
1074static int _opp_is_duplicate(struct device *dev, struct dev_pm_opp *new_opp,
1075 struct opp_table *opp_table,
1076 struct list_head **head)
23dacf6d
VK
1077{
1078 struct dev_pm_opp *opp;
23dacf6d
VK
1079
1080 /*
1081 * Insert new OPP in order of increasing frequency and discard if
1082 * already present.
1083 *
2c2709dc 1084 * Need to use &opp_table->opp_list in the condition part of the 'for'
23dacf6d
VK
1085 * loop, don't replace it with head otherwise it will become an infinite
1086 * loop.
1087 */
052c6f19 1088 list_for_each_entry(opp, &opp_table->opp_list, node) {
23dacf6d 1089 if (new_opp->rate > opp->rate) {
a1e8c136 1090 *head = &opp->node;
23dacf6d
VK
1091 continue;
1092 }
1093
1094 if (new_opp->rate < opp->rate)
a1e8c136 1095 return 0;
23dacf6d
VK
1096
1097 /* Duplicate OPPs */
06441658 1098 dev_warn(dev, "%s: duplicate OPPs detected. Existing: freq: %lu, volt: %lu, enabled: %d. New: freq: %lu, volt: %lu, enabled: %d\n",
dfbe4678
VK
1099 __func__, opp->rate, opp->supplies[0].u_volt,
1100 opp->available, new_opp->rate,
1101 new_opp->supplies[0].u_volt, new_opp->available);
23dacf6d 1102
dfbe4678 1103 /* Should we compare voltages for all regulators here ? */
a1e8c136
VK
1104 return opp->available &&
1105 new_opp->supplies[0].u_volt == opp->supplies[0].u_volt ? -EBUSY : -EEXIST;
1106 }
1107
1108 return 0;
1109}
1110
1111/*
1112 * Returns:
1113 * 0: On success. And appropriate error message for duplicate OPPs.
1114 * -EBUSY: For OPP with same freq/volt and is available. The callers of
1115 * _opp_add() must return 0 if they receive -EBUSY from it. This is to make
1116 * sure we don't print error messages unnecessarily if different parts of
1117 * kernel try to initialize the OPP table.
1118 * -EEXIST: For OPP with same freq but different volt or is unavailable. This
1119 * should be considered an error by the callers of _opp_add().
1120 */
1121int _opp_add(struct device *dev, struct dev_pm_opp *new_opp,
1122 struct opp_table *opp_table, bool rate_not_available)
1123{
1124 struct list_head *head;
1125 int ret;
1126
1127 mutex_lock(&opp_table->lock);
1128 head = &opp_table->opp_list;
37a73ec0 1129
a1e8c136
VK
1130 if (likely(!rate_not_available)) {
1131 ret = _opp_is_duplicate(dev, new_opp, opp_table, &head);
1132 if (ret) {
1133 mutex_unlock(&opp_table->lock);
1134 return ret;
1135 }
23dacf6d
VK
1136 }
1137
052c6f19 1138 list_add(&new_opp->node, head);
37a73ec0
VK
1139 mutex_unlock(&opp_table->lock);
1140
1141 new_opp->opp_table = opp_table;
7034764a 1142 kref_init(&new_opp->kref);
23dacf6d 1143
2c2709dc 1144 ret = opp_debug_create_one(new_opp, opp_table);
deaa5146
VK
1145 if (ret)
1146 dev_err(dev, "%s: Failed to register opp to debugfs (%d)\n",
1147 __func__, ret);
1148
2c2709dc 1149 if (!_opp_supported_by_regulators(new_opp, opp_table)) {
7d34d56e
VK
1150 new_opp->available = false;
1151 dev_warn(dev, "%s: OPP not supported by regulators (%lu)\n",
1152 __func__, new_opp->rate);
1153 }
1154
23dacf6d
VK
1155 return 0;
1156}
1157
984f16c8 1158/**
b64b9c3f 1159 * _opp_add_v1() - Allocate a OPP based on v1 bindings.
8cd2f6e8 1160 * @opp_table: OPP table
984f16c8
NM
1161 * @dev: device for which we do this operation
1162 * @freq: Frequency in Hz for this OPP
1163 * @u_volt: Voltage in uVolts for this OPP
1164 * @dynamic: Dynamically added OPPs.
1165 *
2c2709dc 1166 * This function adds an opp definition to the opp table and returns status.
984f16c8
NM
1167 * The opp is made available by default and it can be controlled using
1168 * dev_pm_opp_enable/disable functions and may be removed by dev_pm_opp_remove.
1169 *
8f8d37b2
VK
1170 * NOTE: "dynamic" parameter impacts OPPs added by the dev_pm_opp_of_add_table
1171 * and freed by dev_pm_opp_of_remove_table.
984f16c8 1172 *
984f16c8
NM
1173 * Return:
1174 * 0 On success OR
1175 * Duplicate OPPs (both freq and volt are same) and opp->available
1176 * -EEXIST Freq are same and volt are different OR
1177 * Duplicate OPPs (both freq and volt are same) and !opp->available
1178 * -ENOMEM Memory allocation failure
1179 */
8cd2f6e8
VK
1180int _opp_add_v1(struct opp_table *opp_table, struct device *dev,
1181 unsigned long freq, long u_volt, bool dynamic)
e1f60b29 1182{
23dacf6d 1183 struct dev_pm_opp *new_opp;
50f8cfbd 1184 unsigned long tol;
6ce4184d 1185 int ret;
e1f60b29 1186
8cd2f6e8
VK
1187 new_opp = _opp_allocate(opp_table);
1188 if (!new_opp)
1189 return -ENOMEM;
23dacf6d 1190
a7470db6 1191 /* populate the opp table */
a7470db6 1192 new_opp->rate = freq;
2c2709dc 1193 tol = u_volt * opp_table->voltage_tolerance_v1 / 100;
dfbe4678
VK
1194 new_opp->supplies[0].u_volt = u_volt;
1195 new_opp->supplies[0].u_volt_min = u_volt - tol;
1196 new_opp->supplies[0].u_volt_max = u_volt + tol;
a7470db6 1197 new_opp->available = true;
23dacf6d 1198 new_opp->dynamic = dynamic;
a7470db6 1199
a1e8c136 1200 ret = _opp_add(dev, new_opp, opp_table, false);
7f8538eb
VK
1201 if (ret) {
1202 /* Don't return error for duplicate OPPs */
1203 if (ret == -EBUSY)
1204 ret = 0;
6ce4184d 1205 goto free_opp;
7f8538eb 1206 }
64ce8545 1207
03ca370f
MH
1208 /*
1209 * Notify the changes in the availability of the operable
1210 * frequency/voltage list.
1211 */
052c6f19 1212 blocking_notifier_call_chain(&opp_table->head, OPP_EVENT_ADD, new_opp);
e1f60b29 1213 return 0;
6ce4184d
VK
1214
1215free_opp:
8cd2f6e8
VK
1216 _opp_free(new_opp);
1217
6ce4184d 1218 return ret;
e1f60b29 1219}
38393409 1220
7de36b0a
VK
1221/**
1222 * dev_pm_opp_set_supported_hw() - Set supported platforms
1223 * @dev: Device for which supported-hw has to be set.
1224 * @versions: Array of hierarchy of versions to match.
1225 * @count: Number of elements in the array.
1226 *
1227 * This is required only for the V2 bindings, and it enables a platform to
1228 * specify the hierarchy of versions it supports. OPP layer will then enable
1229 * OPPs, which are available for those versions, based on its 'opp-supported-hw'
1230 * property.
7de36b0a 1231 */
fa30184d
VK
1232struct opp_table *dev_pm_opp_set_supported_hw(struct device *dev,
1233 const u32 *versions, unsigned int count)
7de36b0a 1234{
2c2709dc 1235 struct opp_table *opp_table;
7de36b0a 1236
fa30184d
VK
1237 opp_table = dev_pm_opp_get_opp_table(dev);
1238 if (!opp_table)
1239 return ERR_PTR(-ENOMEM);
7de36b0a 1240
2c2709dc
VK
1241 /* Make sure there are no concurrent readers while updating opp_table */
1242 WARN_ON(!list_empty(&opp_table->opp_list));
7de36b0a 1243
25419de1
VK
1244 /* Another CPU that shares the OPP table has set the property ? */
1245 if (opp_table->supported_hw)
1246 return opp_table;
7de36b0a 1247
2c2709dc 1248 opp_table->supported_hw = kmemdup(versions, count * sizeof(*versions),
7de36b0a 1249 GFP_KERNEL);
2c2709dc 1250 if (!opp_table->supported_hw) {
25419de1
VK
1251 dev_pm_opp_put_opp_table(opp_table);
1252 return ERR_PTR(-ENOMEM);
7de36b0a
VK
1253 }
1254
2c2709dc 1255 opp_table->supported_hw_count = count;
fa30184d
VK
1256
1257 return opp_table;
7de36b0a
VK
1258}
1259EXPORT_SYMBOL_GPL(dev_pm_opp_set_supported_hw);
1260
1261/**
1262 * dev_pm_opp_put_supported_hw() - Releases resources blocked for supported hw
fa30184d 1263 * @opp_table: OPP table returned by dev_pm_opp_set_supported_hw().
7de36b0a
VK
1264 *
1265 * This is required only for the V2 bindings, and is called for a matching
2c2709dc 1266 * dev_pm_opp_set_supported_hw(). Until this is called, the opp_table structure
7de36b0a 1267 * will not be freed.
7de36b0a 1268 */
fa30184d 1269void dev_pm_opp_put_supported_hw(struct opp_table *opp_table)
7de36b0a 1270{
2c2709dc
VK
1271 /* Make sure there are no concurrent readers while updating opp_table */
1272 WARN_ON(!list_empty(&opp_table->opp_list));
7de36b0a 1273
2c2709dc
VK
1274 kfree(opp_table->supported_hw);
1275 opp_table->supported_hw = NULL;
1276 opp_table->supported_hw_count = 0;
7de36b0a 1277
fa30184d 1278 dev_pm_opp_put_opp_table(opp_table);
7de36b0a
VK
1279}
1280EXPORT_SYMBOL_GPL(dev_pm_opp_put_supported_hw);
1281
01fb4d3c
VK
1282/**
1283 * dev_pm_opp_set_prop_name() - Set prop-extn name
a5da6447 1284 * @dev: Device for which the prop-name has to be set.
01fb4d3c
VK
1285 * @name: name to postfix to properties.
1286 *
1287 * This is required only for the V2 bindings, and it enables a platform to
1288 * specify the extn to be used for certain property names. The properties to
1289 * which the extension will apply are opp-microvolt and opp-microamp. OPP core
1290 * should postfix the property name with -<name> while looking for them.
01fb4d3c 1291 */
fa30184d 1292struct opp_table *dev_pm_opp_set_prop_name(struct device *dev, const char *name)
01fb4d3c 1293{
2c2709dc 1294 struct opp_table *opp_table;
01fb4d3c 1295
fa30184d
VK
1296 opp_table = dev_pm_opp_get_opp_table(dev);
1297 if (!opp_table)
1298 return ERR_PTR(-ENOMEM);
01fb4d3c 1299
2c2709dc
VK
1300 /* Make sure there are no concurrent readers while updating opp_table */
1301 WARN_ON(!list_empty(&opp_table->opp_list));
01fb4d3c 1302
878ec1a9
VK
1303 /* Another CPU that shares the OPP table has set the property ? */
1304 if (opp_table->prop_name)
1305 return opp_table;
01fb4d3c 1306
2c2709dc
VK
1307 opp_table->prop_name = kstrdup(name, GFP_KERNEL);
1308 if (!opp_table->prop_name) {
878ec1a9
VK
1309 dev_pm_opp_put_opp_table(opp_table);
1310 return ERR_PTR(-ENOMEM);
01fb4d3c
VK
1311 }
1312
fa30184d 1313 return opp_table;
01fb4d3c
VK
1314}
1315EXPORT_SYMBOL_GPL(dev_pm_opp_set_prop_name);
1316
1317/**
1318 * dev_pm_opp_put_prop_name() - Releases resources blocked for prop-name
fa30184d 1319 * @opp_table: OPP table returned by dev_pm_opp_set_prop_name().
01fb4d3c
VK
1320 *
1321 * This is required only for the V2 bindings, and is called for a matching
2c2709dc 1322 * dev_pm_opp_set_prop_name(). Until this is called, the opp_table structure
01fb4d3c 1323 * will not be freed.
01fb4d3c 1324 */
fa30184d 1325void dev_pm_opp_put_prop_name(struct opp_table *opp_table)
01fb4d3c 1326{
2c2709dc
VK
1327 /* Make sure there are no concurrent readers while updating opp_table */
1328 WARN_ON(!list_empty(&opp_table->opp_list));
01fb4d3c 1329
2c2709dc
VK
1330 kfree(opp_table->prop_name);
1331 opp_table->prop_name = NULL;
01fb4d3c 1332
fa30184d 1333 dev_pm_opp_put_opp_table(opp_table);
01fb4d3c
VK
1334}
1335EXPORT_SYMBOL_GPL(dev_pm_opp_put_prop_name);
1336
94735585
VK
1337static int _allocate_set_opp_data(struct opp_table *opp_table)
1338{
1339 struct dev_pm_set_opp_data *data;
1340 int len, count = opp_table->regulator_count;
1341
90e3577b 1342 if (WARN_ON(!opp_table->regulators))
94735585
VK
1343 return -EINVAL;
1344
1345 /* space for set_opp_data */
1346 len = sizeof(*data);
1347
1348 /* space for old_opp.supplies and new_opp.supplies */
1349 len += 2 * sizeof(struct dev_pm_opp_supply) * count;
1350
1351 data = kzalloc(len, GFP_KERNEL);
1352 if (!data)
1353 return -ENOMEM;
1354
1355 data->old_opp.supplies = (void *)(data + 1);
1356 data->new_opp.supplies = data->old_opp.supplies + count;
1357
1358 opp_table->set_opp_data = data;
1359
1360 return 0;
1361}
1362
1363static void _free_set_opp_data(struct opp_table *opp_table)
1364{
1365 kfree(opp_table->set_opp_data);
1366 opp_table->set_opp_data = NULL;
1367}
1368
9f8ea969 1369/**
dfbe4678 1370 * dev_pm_opp_set_regulators() - Set regulator names for the device
9f8ea969 1371 * @dev: Device for which regulator name is being set.
dfbe4678
VK
1372 * @names: Array of pointers to the names of the regulator.
1373 * @count: Number of regulators.
9f8ea969
VK
1374 *
1375 * In order to support OPP switching, OPP layer needs to know the name of the
dfbe4678
VK
1376 * device's regulators, as the core would be required to switch voltages as
1377 * well.
9f8ea969
VK
1378 *
1379 * This must be called before any OPPs are initialized for the device.
9f8ea969 1380 */
dfbe4678
VK
1381struct opp_table *dev_pm_opp_set_regulators(struct device *dev,
1382 const char * const names[],
1383 unsigned int count)
9f8ea969 1384{
2c2709dc 1385 struct opp_table *opp_table;
9f8ea969 1386 struct regulator *reg;
dfbe4678 1387 int ret, i;
9f8ea969 1388
fa30184d
VK
1389 opp_table = dev_pm_opp_get_opp_table(dev);
1390 if (!opp_table)
1391 return ERR_PTR(-ENOMEM);
9f8ea969
VK
1392
1393 /* This should be called before OPPs are initialized */
2c2709dc 1394 if (WARN_ON(!list_empty(&opp_table->opp_list))) {
9f8ea969
VK
1395 ret = -EBUSY;
1396 goto err;
1397 }
1398
779b783c
VK
1399 /* Another CPU that shares the OPP table has set the regulators ? */
1400 if (opp_table->regulators)
1401 return opp_table;
dfbe4678
VK
1402
1403 opp_table->regulators = kmalloc_array(count,
1404 sizeof(*opp_table->regulators),
1405 GFP_KERNEL);
1406 if (!opp_table->regulators) {
1407 ret = -ENOMEM;
9f8ea969
VK
1408 goto err;
1409 }
1410
dfbe4678
VK
1411 for (i = 0; i < count; i++) {
1412 reg = regulator_get_optional(dev, names[i]);
1413 if (IS_ERR(reg)) {
1414 ret = PTR_ERR(reg);
1415 if (ret != -EPROBE_DEFER)
1416 dev_err(dev, "%s: no regulator (%s) found: %d\n",
1417 __func__, names[i], ret);
1418 goto free_regulators;
1419 }
1420
1421 opp_table->regulators[i] = reg;
1422 }
1423
1424 opp_table->regulator_count = count;
9f8ea969 1425
94735585
VK
1426 /* Allocate block only once to pass to set_opp() routines */
1427 ret = _allocate_set_opp_data(opp_table);
1428 if (ret)
1429 goto free_regulators;
1430
91291d9a 1431 return opp_table;
9f8ea969 1432
dfbe4678
VK
1433free_regulators:
1434 while (i != 0)
1435 regulator_put(opp_table->regulators[--i]);
1436
1437 kfree(opp_table->regulators);
1438 opp_table->regulators = NULL;
46f48aca 1439 opp_table->regulator_count = -1;
9f8ea969 1440err:
fa30184d 1441 dev_pm_opp_put_opp_table(opp_table);
9f8ea969 1442
91291d9a 1443 return ERR_PTR(ret);
9f8ea969 1444}
dfbe4678 1445EXPORT_SYMBOL_GPL(dev_pm_opp_set_regulators);
9f8ea969
VK
1446
1447/**
dfbe4678
VK
1448 * dev_pm_opp_put_regulators() - Releases resources blocked for regulator
1449 * @opp_table: OPP table returned from dev_pm_opp_set_regulators().
9f8ea969 1450 */
dfbe4678 1451void dev_pm_opp_put_regulators(struct opp_table *opp_table)
9f8ea969 1452{
dfbe4678
VK
1453 int i;
1454
779b783c
VK
1455 if (!opp_table->regulators)
1456 goto put_opp_table;
9f8ea969 1457
2c2709dc
VK
1458 /* Make sure there are no concurrent readers while updating opp_table */
1459 WARN_ON(!list_empty(&opp_table->opp_list));
9f8ea969 1460
dfbe4678
VK
1461 for (i = opp_table->regulator_count - 1; i >= 0; i--)
1462 regulator_put(opp_table->regulators[i]);
1463
94735585
VK
1464 _free_set_opp_data(opp_table);
1465
dfbe4678
VK
1466 kfree(opp_table->regulators);
1467 opp_table->regulators = NULL;
46f48aca 1468 opp_table->regulator_count = -1;
9f8ea969 1469
779b783c 1470put_opp_table:
fa30184d 1471 dev_pm_opp_put_opp_table(opp_table);
9f8ea969 1472}
dfbe4678 1473EXPORT_SYMBOL_GPL(dev_pm_opp_put_regulators);
9f8ea969 1474
829a4e8c
VK
1475/**
1476 * dev_pm_opp_set_clkname() - Set clk name for the device
1477 * @dev: Device for which clk name is being set.
1478 * @name: Clk name.
1479 *
1480 * In order to support OPP switching, OPP layer needs to get pointer to the
1481 * clock for the device. Simple cases work fine without using this routine (i.e.
1482 * by passing connection-id as NULL), but for a device with multiple clocks
1483 * available, the OPP core needs to know the exact name of the clk to use.
1484 *
1485 * This must be called before any OPPs are initialized for the device.
1486 */
1487struct opp_table *dev_pm_opp_set_clkname(struct device *dev, const char *name)
1488{
1489 struct opp_table *opp_table;
1490 int ret;
1491
1492 opp_table = dev_pm_opp_get_opp_table(dev);
1493 if (!opp_table)
1494 return ERR_PTR(-ENOMEM);
1495
1496 /* This should be called before OPPs are initialized */
1497 if (WARN_ON(!list_empty(&opp_table->opp_list))) {
1498 ret = -EBUSY;
1499 goto err;
1500 }
1501
1502 /* Already have default clk set, free it */
1503 if (!IS_ERR(opp_table->clk))
1504 clk_put(opp_table->clk);
1505
1506 /* Find clk for the device */
1507 opp_table->clk = clk_get(dev, name);
1508 if (IS_ERR(opp_table->clk)) {
1509 ret = PTR_ERR(opp_table->clk);
1510 if (ret != -EPROBE_DEFER) {
1511 dev_err(dev, "%s: Couldn't find clock: %d\n", __func__,
1512 ret);
1513 }
1514 goto err;
1515 }
1516
1517 return opp_table;
1518
1519err:
1520 dev_pm_opp_put_opp_table(opp_table);
1521
1522 return ERR_PTR(ret);
1523}
1524EXPORT_SYMBOL_GPL(dev_pm_opp_set_clkname);
1525
1526/**
1527 * dev_pm_opp_put_clkname() - Releases resources blocked for clk.
1528 * @opp_table: OPP table returned from dev_pm_opp_set_clkname().
1529 */
1530void dev_pm_opp_put_clkname(struct opp_table *opp_table)
1531{
1532 /* Make sure there are no concurrent readers while updating opp_table */
1533 WARN_ON(!list_empty(&opp_table->opp_list));
1534
1535 clk_put(opp_table->clk);
1536 opp_table->clk = ERR_PTR(-EINVAL);
1537
1538 dev_pm_opp_put_opp_table(opp_table);
1539}
1540EXPORT_SYMBOL_GPL(dev_pm_opp_put_clkname);
1541
4dab160e
VK
1542/**
1543 * dev_pm_opp_register_set_opp_helper() - Register custom set OPP helper
1544 * @dev: Device for which the helper is getting registered.
1545 * @set_opp: Custom set OPP helper.
1546 *
1547 * This is useful to support complex platforms (like platforms with multiple
1548 * regulators per device), instead of the generic OPP set rate helper.
1549 *
1550 * This must be called before any OPPs are initialized for the device.
4dab160e 1551 */
fa30184d 1552struct opp_table *dev_pm_opp_register_set_opp_helper(struct device *dev,
4dab160e
VK
1553 int (*set_opp)(struct dev_pm_set_opp_data *data))
1554{
1555 struct opp_table *opp_table;
4dab160e
VK
1556
1557 if (!set_opp)
fa30184d 1558 return ERR_PTR(-EINVAL);
4dab160e 1559
fa30184d
VK
1560 opp_table = dev_pm_opp_get_opp_table(dev);
1561 if (!opp_table)
1562 return ERR_PTR(-ENOMEM);
4dab160e
VK
1563
1564 /* This should be called before OPPs are initialized */
1565 if (WARN_ON(!list_empty(&opp_table->opp_list))) {
5019acc6
VK
1566 dev_pm_opp_put_opp_table(opp_table);
1567 return ERR_PTR(-EBUSY);
4dab160e
VK
1568 }
1569
5019acc6
VK
1570 /* Another CPU that shares the OPP table has set the helper ? */
1571 if (!opp_table->set_opp)
1572 opp_table->set_opp = set_opp;
4dab160e 1573
fa30184d 1574 return opp_table;
4dab160e
VK
1575}
1576EXPORT_SYMBOL_GPL(dev_pm_opp_register_set_opp_helper);
1577
1578/**
604a7aeb 1579 * dev_pm_opp_unregister_set_opp_helper() - Releases resources blocked for
4dab160e 1580 * set_opp helper
fa30184d 1581 * @opp_table: OPP table returned from dev_pm_opp_register_set_opp_helper().
4dab160e 1582 *
fa30184d 1583 * Release resources blocked for platform specific set_opp helper.
4dab160e 1584 */
604a7aeb 1585void dev_pm_opp_unregister_set_opp_helper(struct opp_table *opp_table)
4dab160e 1586{
4dab160e
VK
1587 /* Make sure there are no concurrent readers while updating opp_table */
1588 WARN_ON(!list_empty(&opp_table->opp_list));
1589
1590 opp_table->set_opp = NULL;
fa30184d 1591 dev_pm_opp_put_opp_table(opp_table);
4dab160e 1592}
604a7aeb 1593EXPORT_SYMBOL_GPL(dev_pm_opp_unregister_set_opp_helper);
4dab160e 1594
38393409
VK
1595/**
1596 * dev_pm_opp_add() - Add an OPP table from a table definitions
1597 * @dev: device for which we do this operation
1598 * @freq: Frequency in Hz for this OPP
1599 * @u_volt: Voltage in uVolts for this OPP
1600 *
2c2709dc 1601 * This function adds an opp definition to the opp table and returns status.
38393409
VK
1602 * The opp is made available by default and it can be controlled using
1603 * dev_pm_opp_enable/disable functions.
1604 *
38393409 1605 * Return:
984f16c8 1606 * 0 On success OR
38393409 1607 * Duplicate OPPs (both freq and volt are same) and opp->available
984f16c8 1608 * -EEXIST Freq are same and volt are different OR
38393409 1609 * Duplicate OPPs (both freq and volt are same) and !opp->available
984f16c8 1610 * -ENOMEM Memory allocation failure
38393409
VK
1611 */
1612int dev_pm_opp_add(struct device *dev, unsigned long freq, unsigned long u_volt)
1613{
8cd2f6e8
VK
1614 struct opp_table *opp_table;
1615 int ret;
1616
b83c1899
VK
1617 opp_table = dev_pm_opp_get_opp_table(dev);
1618 if (!opp_table)
1619 return -ENOMEM;
8cd2f6e8 1620
46f48aca
VK
1621 /* Fix regulator count for dynamic OPPs */
1622 opp_table->regulator_count = 1;
1623
8cd2f6e8 1624 ret = _opp_add_v1(opp_table, dev, freq, u_volt, true);
0ad8c623
VK
1625 if (ret)
1626 dev_pm_opp_put_opp_table(opp_table);
8cd2f6e8 1627
8cd2f6e8 1628 return ret;
38393409 1629}
5d4879cd 1630EXPORT_SYMBOL_GPL(dev_pm_opp_add);
e1f60b29
NM
1631
1632/**
327854c8 1633 * _opp_set_availability() - helper to set the availability of an opp
e1f60b29
NM
1634 * @dev: device for which we do this operation
1635 * @freq: OPP frequency to modify availability
1636 * @availability_req: availability status requested for this opp
1637 *
052c6f19
VK
1638 * Set the availability of an OPP, opp_{enable,disable} share a common logic
1639 * which is isolated here.
e1f60b29 1640 *
984f16c8 1641 * Return: -EINVAL for bad pointers, -ENOMEM if no memory available for the
e1a2d49c 1642 * copy operation, returns 0 if no modification was done OR modification was
e1f60b29 1643 * successful.
e1f60b29 1644 */
327854c8
NM
1645static int _opp_set_availability(struct device *dev, unsigned long freq,
1646 bool availability_req)
e1f60b29 1647{
2c2709dc 1648 struct opp_table *opp_table;
a7f3987e 1649 struct dev_pm_opp *tmp_opp, *opp = ERR_PTR(-ENODEV);
e1f60b29
NM
1650 int r = 0;
1651
2c2709dc
VK
1652 /* Find the opp_table */
1653 opp_table = _find_opp_table(dev);
1654 if (IS_ERR(opp_table)) {
1655 r = PTR_ERR(opp_table);
e1f60b29 1656 dev_warn(dev, "%s: Device OPP not found (%d)\n", __func__, r);
a7f3987e 1657 return r;
e1f60b29
NM
1658 }
1659
37a73ec0
VK
1660 mutex_lock(&opp_table->lock);
1661
e1f60b29 1662 /* Do we have the frequency? */
2c2709dc 1663 list_for_each_entry(tmp_opp, &opp_table->opp_list, node) {
e1f60b29
NM
1664 if (tmp_opp->rate == freq) {
1665 opp = tmp_opp;
1666 break;
1667 }
1668 }
37a73ec0 1669
e1f60b29
NM
1670 if (IS_ERR(opp)) {
1671 r = PTR_ERR(opp);
1672 goto unlock;
1673 }
1674
1675 /* Is update really needed? */
1676 if (opp->available == availability_req)
1677 goto unlock;
e1f60b29 1678
a7f3987e 1679 opp->available = availability_req;
e1f60b29 1680
e4d8ae00
VK
1681 dev_pm_opp_get(opp);
1682 mutex_unlock(&opp_table->lock);
1683
03ca370f
MH
1684 /* Notify the change of the OPP availability */
1685 if (availability_req)
052c6f19 1686 blocking_notifier_call_chain(&opp_table->head, OPP_EVENT_ENABLE,
a7f3987e 1687 opp);
03ca370f 1688 else
052c6f19 1689 blocking_notifier_call_chain(&opp_table->head,
a7f3987e 1690 OPP_EVENT_DISABLE, opp);
e1f60b29 1691
e4d8ae00
VK
1692 dev_pm_opp_put(opp);
1693 goto put_table;
1694
e1f60b29 1695unlock:
5b650b38 1696 mutex_unlock(&opp_table->lock);
e4d8ae00 1697put_table:
5b650b38 1698 dev_pm_opp_put_opp_table(opp_table);
e1f60b29
NM
1699 return r;
1700}
1701
1702/**
5d4879cd 1703 * dev_pm_opp_enable() - Enable a specific OPP
e1f60b29
NM
1704 * @dev: device for which we do this operation
1705 * @freq: OPP frequency to enable
1706 *
1707 * Enables a provided opp. If the operation is valid, this returns 0, else the
1708 * corresponding error value. It is meant to be used for users an OPP available
5d4879cd 1709 * after being temporarily made unavailable with dev_pm_opp_disable.
e1f60b29 1710 *
984f16c8 1711 * Return: -EINVAL for bad pointers, -ENOMEM if no memory available for the
e1a2d49c 1712 * copy operation, returns 0 if no modification was done OR modification was
984f16c8 1713 * successful.
e1f60b29 1714 */
5d4879cd 1715int dev_pm_opp_enable(struct device *dev, unsigned long freq)
e1f60b29 1716{
327854c8 1717 return _opp_set_availability(dev, freq, true);
e1f60b29 1718}
5d4879cd 1719EXPORT_SYMBOL_GPL(dev_pm_opp_enable);
e1f60b29
NM
1720
1721/**
5d4879cd 1722 * dev_pm_opp_disable() - Disable a specific OPP
e1f60b29
NM
1723 * @dev: device for which we do this operation
1724 * @freq: OPP frequency to disable
1725 *
1726 * Disables a provided opp. If the operation is valid, this returns
1727 * 0, else the corresponding error value. It is meant to be a temporary
1728 * control by users to make this OPP not available until the circumstances are
5d4879cd 1729 * right to make it available again (with a call to dev_pm_opp_enable).
e1f60b29 1730 *
984f16c8 1731 * Return: -EINVAL for bad pointers, -ENOMEM if no memory available for the
e1a2d49c 1732 * copy operation, returns 0 if no modification was done OR modification was
984f16c8 1733 * successful.
e1f60b29 1734 */
5d4879cd 1735int dev_pm_opp_disable(struct device *dev, unsigned long freq)
e1f60b29 1736{
327854c8 1737 return _opp_set_availability(dev, freq, false);
e1f60b29 1738}
5d4879cd 1739EXPORT_SYMBOL_GPL(dev_pm_opp_disable);
e1f60b29 1740
03ca370f 1741/**
dc2c9ad5
VK
1742 * dev_pm_opp_register_notifier() - Register OPP notifier for the device
1743 * @dev: Device for which notifier needs to be registered
1744 * @nb: Notifier block to be registered
984f16c8 1745 *
dc2c9ad5
VK
1746 * Return: 0 on success or a negative error value.
1747 */
1748int dev_pm_opp_register_notifier(struct device *dev, struct notifier_block *nb)
1749{
1750 struct opp_table *opp_table;
1751 int ret;
1752
dc2c9ad5 1753 opp_table = _find_opp_table(dev);
5b650b38
VK
1754 if (IS_ERR(opp_table))
1755 return PTR_ERR(opp_table);
1756
052c6f19 1757 ret = blocking_notifier_chain_register(&opp_table->head, nb);
dc2c9ad5 1758
5b650b38 1759 dev_pm_opp_put_opp_table(opp_table);
dc2c9ad5
VK
1760
1761 return ret;
1762}
1763EXPORT_SYMBOL(dev_pm_opp_register_notifier);
1764
1765/**
1766 * dev_pm_opp_unregister_notifier() - Unregister OPP notifier for the device
1767 * @dev: Device for which notifier needs to be unregistered
1768 * @nb: Notifier block to be unregistered
984f16c8 1769 *
dc2c9ad5 1770 * Return: 0 on success or a negative error value.
03ca370f 1771 */
dc2c9ad5
VK
1772int dev_pm_opp_unregister_notifier(struct device *dev,
1773 struct notifier_block *nb)
03ca370f 1774{
dc2c9ad5
VK
1775 struct opp_table *opp_table;
1776 int ret;
03ca370f 1777
dc2c9ad5 1778 opp_table = _find_opp_table(dev);
5b650b38
VK
1779 if (IS_ERR(opp_table))
1780 return PTR_ERR(opp_table);
dc2c9ad5 1781
052c6f19 1782 ret = blocking_notifier_chain_unregister(&opp_table->head, nb);
03ca370f 1783
5b650b38 1784 dev_pm_opp_put_opp_table(opp_table);
dc2c9ad5
VK
1785
1786 return ret;
03ca370f 1787}
dc2c9ad5 1788EXPORT_SYMBOL(dev_pm_opp_unregister_notifier);
b496dfbc 1789
2a4eb735 1790void _dev_pm_opp_find_and_remove_table(struct device *dev)
9274c892
VK
1791{
1792 struct opp_table *opp_table;
1793
2c2709dc
VK
1794 /* Check for existing table for 'dev' */
1795 opp_table = _find_opp_table(dev);
1796 if (IS_ERR(opp_table)) {
1797 int error = PTR_ERR(opp_table);
737002b5
VK
1798
1799 if (error != -ENODEV)
2c2709dc 1800 WARN(1, "%s: opp_table: %d\n",
737002b5
VK
1801 IS_ERR_OR_NULL(dev) ?
1802 "Invalid device" : dev_name(dev),
1803 error);
5b650b38 1804 return;
737002b5
VK
1805 }
1806
cdd6ed90
VK
1807 _put_opp_list_kref(opp_table);
1808
1809 /* Drop reference taken by _find_opp_table() */
1810 dev_pm_opp_put_opp_table(opp_table);
737002b5 1811
cdd6ed90 1812 /* Drop reference taken while the OPP table was added */
5b650b38 1813 dev_pm_opp_put_opp_table(opp_table);
737002b5 1814}
129eec55
VK
1815
1816/**
411466c5 1817 * dev_pm_opp_remove_table() - Free all OPPs associated with the device
2c2709dc 1818 * @dev: device pointer used to lookup OPP table.
129eec55 1819 *
411466c5
SH
1820 * Free both OPPs created using static entries present in DT and the
1821 * dynamically added entries.
129eec55 1822 */
411466c5 1823void dev_pm_opp_remove_table(struct device *dev)
129eec55 1824{
2a4eb735 1825 _dev_pm_opp_find_and_remove_table(dev);
8d4d4e98 1826}
411466c5 1827EXPORT_SYMBOL_GPL(dev_pm_opp_remove_table);