1 // SPDX-License-Identifier: GPL-2.0-only
3 * Generic OPP Interface
5 * Copyright (C) 2009-2010 Texas Instruments Incorporated.
11 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13 #include <linux/clk.h>
14 #include <linux/errno.h>
15 #include <linux/err.h>
16 #include <linux/slab.h>
17 #include <linux/device.h>
18 #include <linux/export.h>
19 #include <linux/pm_domain.h>
20 #include <linux/regulator/consumer.h>
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
27 * various states of availability.
29 LIST_HEAD(opp_tables);
30 /* Lock to allow exclusive modification to the device and opp lists */
31 DEFINE_MUTEX(opp_table_lock);
33 static struct opp_device *_find_opp_dev(const struct device *dev,
34 struct opp_table *opp_table)
36 struct opp_device *opp_dev;
38 list_for_each_entry(opp_dev, &opp_table->dev_list, node)
39 if (opp_dev->dev == dev)
45 static struct opp_table *_find_opp_table_unlocked(struct device *dev)
47 struct opp_table *opp_table;
50 list_for_each_entry(opp_table, &opp_tables, node) {
51 mutex_lock(&opp_table->lock);
52 found = !!_find_opp_dev(dev, opp_table);
53 mutex_unlock(&opp_table->lock);
56 _get_opp_table_kref(opp_table);
62 return ERR_PTR(-ENODEV);
66 * _find_opp_table() - find opp_table struct using device pointer
67 * @dev: device pointer used to lookup OPP table
69 * Search OPP table for one containing matching device.
71 * Return: pointer to 'struct opp_table' if found, otherwise -ENODEV or
72 * -EINVAL based on type of error.
74 * The callers must call dev_pm_opp_put_opp_table() after the table is used.
76 struct opp_table *_find_opp_table(struct device *dev)
78 struct opp_table *opp_table;
80 if (IS_ERR_OR_NULL(dev)) {
81 pr_err("%s: Invalid parameters\n", __func__);
82 return ERR_PTR(-EINVAL);
85 mutex_lock(&opp_table_lock);
86 opp_table = _find_opp_table_unlocked(dev);
87 mutex_unlock(&opp_table_lock);
93 * dev_pm_opp_get_voltage() - Gets the voltage corresponding to an opp
94 * @opp: opp for which voltage has to be returned for
96 * Return: voltage in micro volt corresponding to the opp, else
99 * This is useful only for devices with single power supply.
101 unsigned long dev_pm_opp_get_voltage(struct dev_pm_opp *opp)
103 if (IS_ERR_OR_NULL(opp)) {
104 pr_err("%s: Invalid parameters\n", __func__);
108 return opp->supplies[0].u_volt;
110 EXPORT_SYMBOL_GPL(dev_pm_opp_get_voltage);
113 * dev_pm_opp_get_freq() - Gets the frequency corresponding to an available opp
114 * @opp: opp for which frequency has to be returned for
116 * Return: frequency in hertz corresponding to the opp, else
119 unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp)
121 if (IS_ERR_OR_NULL(opp) || !opp->available) {
122 pr_err("%s: Invalid parameters\n", __func__);
128 EXPORT_SYMBOL_GPL(dev_pm_opp_get_freq);
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
134 * Return: level read from device tree corresponding to the opp, else
137 unsigned int dev_pm_opp_get_level(struct dev_pm_opp *opp)
139 if (IS_ERR_OR_NULL(opp) || !opp->available) {
140 pr_err("%s: Invalid parameters\n", __func__);
146 EXPORT_SYMBOL_GPL(dev_pm_opp_get_level);
149 * dev_pm_opp_is_turbo() - Returns if opp is turbo OPP or not
150 * @opp: opp for which turbo mode is being verified
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.
156 * Return: true if opp is turbo opp, else false.
158 bool dev_pm_opp_is_turbo(struct dev_pm_opp *opp)
160 if (IS_ERR_OR_NULL(opp) || !opp->available) {
161 pr_err("%s: Invalid parameters\n", __func__);
167 EXPORT_SYMBOL_GPL(dev_pm_opp_is_turbo);
170 * dev_pm_opp_get_max_clock_latency() - Get max clock latency in nanoseconds
171 * @dev: device for which we do this operation
173 * Return: This function returns the max clock latency in nanoseconds.
175 unsigned long dev_pm_opp_get_max_clock_latency(struct device *dev)
177 struct opp_table *opp_table;
178 unsigned long clock_latency_ns;
180 opp_table = _find_opp_table(dev);
181 if (IS_ERR(opp_table))
184 clock_latency_ns = opp_table->clock_latency_ns_max;
186 dev_pm_opp_put_opp_table(opp_table);
188 return clock_latency_ns;
190 EXPORT_SYMBOL_GPL(dev_pm_opp_get_max_clock_latency);
193 * dev_pm_opp_get_max_volt_latency() - Get max voltage latency in nanoseconds
194 * @dev: device for which we do this operation
196 * Return: This function returns the max voltage latency in nanoseconds.
198 unsigned long dev_pm_opp_get_max_volt_latency(struct device *dev)
200 struct opp_table *opp_table;
201 struct dev_pm_opp *opp;
202 struct regulator *reg;
203 unsigned long latency_ns = 0;
210 opp_table = _find_opp_table(dev);
211 if (IS_ERR(opp_table))
214 /* Regulator may not be required for the device */
215 if (!opp_table->regulators)
218 count = opp_table->regulator_count;
220 uV = kmalloc_array(count, sizeof(*uV), GFP_KERNEL);
224 mutex_lock(&opp_table->lock);
226 for (i = 0; i < count; i++) {
230 list_for_each_entry(opp, &opp_table->opp_list, node) {
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;
241 mutex_unlock(&opp_table->lock);
244 * The caller needs to ensure that opp_table (and hence the regulator)
245 * isn't freed, while we are executing this routine.
247 for (i = 0; i < count; i++) {
248 reg = opp_table->regulators[i];
249 ret = regulator_set_voltage_time(reg, uV[i].min, uV[i].max);
251 latency_ns += ret * 1000;
256 dev_pm_opp_put_opp_table(opp_table);
260 EXPORT_SYMBOL_GPL(dev_pm_opp_get_max_volt_latency);
263 * dev_pm_opp_get_max_transition_latency() - Get max transition latency in
265 * @dev: device for which we do this operation
267 * Return: This function returns the max transition latency, in nanoseconds, to
268 * switch from one OPP to other.
270 unsigned long dev_pm_opp_get_max_transition_latency(struct device *dev)
272 return dev_pm_opp_get_max_volt_latency(dev) +
273 dev_pm_opp_get_max_clock_latency(dev);
275 EXPORT_SYMBOL_GPL(dev_pm_opp_get_max_transition_latency);
278 * dev_pm_opp_get_suspend_opp_freq() - Get frequency of suspend opp in Hz
279 * @dev: device for which we do this operation
281 * Return: This function returns the frequency of the OPP marked as suspend_opp
282 * if one is available, else returns 0;
284 unsigned long dev_pm_opp_get_suspend_opp_freq(struct device *dev)
286 struct opp_table *opp_table;
287 unsigned long freq = 0;
289 opp_table = _find_opp_table(dev);
290 if (IS_ERR(opp_table))
293 if (opp_table->suspend_opp && opp_table->suspend_opp->available)
294 freq = dev_pm_opp_get_freq(opp_table->suspend_opp);
296 dev_pm_opp_put_opp_table(opp_table);
300 EXPORT_SYMBOL_GPL(dev_pm_opp_get_suspend_opp_freq);
302 int _get_opp_count(struct opp_table *opp_table)
304 struct dev_pm_opp *opp;
307 mutex_lock(&opp_table->lock);
309 list_for_each_entry(opp, &opp_table->opp_list, node) {
314 mutex_unlock(&opp_table->lock);
320 * dev_pm_opp_get_opp_count() - Get number of opps available in the opp table
321 * @dev: device for which we do this operation
323 * Return: This function returns the number of available opps if there are any,
324 * else returns 0 if none or the corresponding error value.
326 int dev_pm_opp_get_opp_count(struct device *dev)
328 struct opp_table *opp_table;
331 opp_table = _find_opp_table(dev);
332 if (IS_ERR(opp_table)) {
333 count = PTR_ERR(opp_table);
334 dev_dbg(dev, "%s: OPP table not found (%d)\n",
339 count = _get_opp_count(opp_table);
340 dev_pm_opp_put_opp_table(opp_table);
344 EXPORT_SYMBOL_GPL(dev_pm_opp_get_opp_count);
347 * dev_pm_opp_find_freq_exact() - search for an exact frequency
348 * @dev: device for which we do this operation
349 * @freq: frequency to search for
350 * @available: true/false - match for available opp
352 * Return: Searches for exact match in the opp table and returns pointer to the
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:
355 * EINVAL: for bad pointer
356 * ERANGE: no match found for search
357 * ENODEV: if device not found in list of registered devices
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.
363 * This provides a mechanism to enable an opp which is not available currently
364 * or the opposite as well.
366 * The callers are required to call dev_pm_opp_put() for the returned OPP after
369 struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
373 struct opp_table *opp_table;
374 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
376 opp_table = _find_opp_table(dev);
377 if (IS_ERR(opp_table)) {
378 int r = PTR_ERR(opp_table);
380 dev_err(dev, "%s: OPP table not found (%d)\n", __func__, r);
384 mutex_lock(&opp_table->lock);
386 list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
387 if (temp_opp->available == available &&
388 temp_opp->rate == freq) {
391 /* Increment the reference count of OPP */
397 mutex_unlock(&opp_table->lock);
398 dev_pm_opp_put_opp_table(opp_table);
402 EXPORT_SYMBOL_GPL(dev_pm_opp_find_freq_exact);
404 static noinline struct dev_pm_opp *_find_freq_ceil(struct opp_table *opp_table,
407 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
409 mutex_lock(&opp_table->lock);
411 list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
412 if (temp_opp->available && temp_opp->rate >= *freq) {
416 /* Increment the reference count of OPP */
422 mutex_unlock(&opp_table->lock);
428 * dev_pm_opp_find_freq_ceil() - Search for an rounded ceil freq
429 * @dev: device for which we do this operation
430 * @freq: Start frequency
432 * Search for the matching ceil *available* OPP from a starting freq
435 * Return: matching *opp and refreshes *freq accordingly, else returns
436 * ERR_PTR in case of error and should be handled using IS_ERR. Error return
438 * EINVAL: for bad pointer
439 * ERANGE: no match found for search
440 * ENODEV: if device not found in list of registered devices
442 * The callers are required to call dev_pm_opp_put() for the returned OPP after
445 struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
448 struct opp_table *opp_table;
449 struct dev_pm_opp *opp;
452 dev_err(dev, "%s: Invalid argument freq=%p\n", __func__, freq);
453 return ERR_PTR(-EINVAL);
456 opp_table = _find_opp_table(dev);
457 if (IS_ERR(opp_table))
458 return ERR_CAST(opp_table);
460 opp = _find_freq_ceil(opp_table, freq);
462 dev_pm_opp_put_opp_table(opp_table);
466 EXPORT_SYMBOL_GPL(dev_pm_opp_find_freq_ceil);
469 * dev_pm_opp_find_freq_floor() - Search for a rounded floor freq
470 * @dev: device for which we do this operation
471 * @freq: Start frequency
473 * Search for the matching floor *available* OPP from a starting freq
476 * Return: matching *opp and refreshes *freq accordingly, else returns
477 * ERR_PTR in case of error and should be handled using IS_ERR. Error return
479 * EINVAL: for bad pointer
480 * ERANGE: no match found for search
481 * ENODEV: if device not found in list of registered devices
483 * The callers are required to call dev_pm_opp_put() for the returned OPP after
486 struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
489 struct opp_table *opp_table;
490 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
493 dev_err(dev, "%s: Invalid argument freq=%p\n", __func__, freq);
494 return ERR_PTR(-EINVAL);
497 opp_table = _find_opp_table(dev);
498 if (IS_ERR(opp_table))
499 return ERR_CAST(opp_table);
501 mutex_lock(&opp_table->lock);
503 list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
504 if (temp_opp->available) {
505 /* go to the next node, before choosing prev */
506 if (temp_opp->rate > *freq)
513 /* Increment the reference count of OPP */
516 mutex_unlock(&opp_table->lock);
517 dev_pm_opp_put_opp_table(opp_table);
524 EXPORT_SYMBOL_GPL(dev_pm_opp_find_freq_floor);
527 * dev_pm_opp_find_freq_ceil_by_volt() - Find OPP with highest frequency for
529 * @dev: Device for which we do this operation.
530 * @u_volt: Target voltage.
532 * Search for OPP with highest (ceil) frequency and has voltage <= u_volt.
534 * Return: matching *opp, else returns ERR_PTR in case of error which should be
535 * handled using IS_ERR.
537 * Error return values can be:
538 * EINVAL: bad parameters
540 * The callers are required to call dev_pm_opp_put() for the returned OPP after
543 struct dev_pm_opp *dev_pm_opp_find_freq_ceil_by_volt(struct device *dev,
544 unsigned long u_volt)
546 struct opp_table *opp_table;
547 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
549 if (!dev || !u_volt) {
550 dev_err(dev, "%s: Invalid argument volt=%lu\n", __func__,
552 return ERR_PTR(-EINVAL);
555 opp_table = _find_opp_table(dev);
556 if (IS_ERR(opp_table))
557 return ERR_CAST(opp_table);
559 mutex_lock(&opp_table->lock);
561 list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
562 if (temp_opp->available) {
563 if (temp_opp->supplies[0].u_volt > u_volt)
569 /* Increment the reference count of OPP */
573 mutex_unlock(&opp_table->lock);
574 dev_pm_opp_put_opp_table(opp_table);
578 EXPORT_SYMBOL_GPL(dev_pm_opp_find_freq_ceil_by_volt);
580 static int _set_opp_voltage(struct device *dev, struct regulator *reg,
581 struct dev_pm_opp_supply *supply)
585 /* Regulator not available for device */
587 dev_dbg(dev, "%s: regulator not available: %ld\n", __func__,
592 dev_dbg(dev, "%s: voltages (mV): %lu %lu %lu\n", __func__,
593 supply->u_volt_min, supply->u_volt, supply->u_volt_max);
595 ret = regulator_set_voltage_triplet(reg, supply->u_volt_min,
596 supply->u_volt, supply->u_volt_max);
598 dev_err(dev, "%s: failed to set voltage (%lu %lu %lu mV): %d\n",
599 __func__, supply->u_volt_min, supply->u_volt,
600 supply->u_volt_max, ret);
605 static inline int _generic_set_opp_clk_only(struct device *dev, struct clk *clk,
610 ret = clk_set_rate(clk, freq);
612 dev_err(dev, "%s: failed to set clock rate: %d\n", __func__,
619 static int _generic_set_opp_regulator(const struct opp_table *opp_table,
621 unsigned long old_freq,
623 struct dev_pm_opp_supply *old_supply,
624 struct dev_pm_opp_supply *new_supply)
626 struct regulator *reg = opp_table->regulators[0];
629 /* This function only supports single regulator per device */
630 if (WARN_ON(opp_table->regulator_count > 1)) {
631 dev_err(dev, "multiple regulators are not supported\n");
635 /* Scaling up? Scale voltage before frequency */
636 if (freq >= old_freq) {
637 ret = _set_opp_voltage(dev, reg, new_supply);
639 goto restore_voltage;
642 /* Change frequency */
643 ret = _generic_set_opp_clk_only(dev, opp_table->clk, freq);
645 goto restore_voltage;
647 /* Scaling down? Scale voltage after frequency */
648 if (freq < old_freq) {
649 ret = _set_opp_voltage(dev, reg, new_supply);
657 if (_generic_set_opp_clk_only(dev, opp_table->clk, old_freq))
658 dev_err(dev, "%s: failed to restore old-freq (%lu Hz)\n",
661 /* This shouldn't harm even if the voltages weren't updated earlier */
663 _set_opp_voltage(dev, reg, old_supply);
668 static int _set_opp_custom(const struct opp_table *opp_table,
669 struct device *dev, unsigned long old_freq,
671 struct dev_pm_opp_supply *old_supply,
672 struct dev_pm_opp_supply *new_supply)
674 struct dev_pm_set_opp_data *data;
677 data = opp_table->set_opp_data;
678 data->regulators = opp_table->regulators;
679 data->regulator_count = opp_table->regulator_count;
680 data->clk = opp_table->clk;
683 data->old_opp.rate = old_freq;
684 size = sizeof(*old_supply) * opp_table->regulator_count;
686 memset(data->old_opp.supplies, 0, size);
688 memcpy(data->old_opp.supplies, old_supply, size);
690 data->new_opp.rate = freq;
691 memcpy(data->new_opp.supplies, new_supply, size);
693 return opp_table->set_opp(data);
696 /* This is only called for PM domain for now */
697 static int _set_required_opps(struct device *dev,
698 struct opp_table *opp_table,
699 struct dev_pm_opp *opp)
701 struct opp_table **required_opp_tables = opp_table->required_opp_tables;
702 struct device **genpd_virt_devs = opp_table->genpd_virt_devs;
706 if (!required_opp_tables)
709 /* Single genpd case */
710 if (!genpd_virt_devs) {
711 pstate = likely(opp) ? opp->required_opps[0]->pstate : 0;
712 ret = dev_pm_genpd_set_performance_state(dev, pstate);
714 dev_err(dev, "Failed to set performance state of %s: %d (%d)\n",
715 dev_name(dev), pstate, ret);
720 /* Multiple genpd case */
723 * Acquire genpd_virt_dev_lock to make sure we don't use a genpd_dev
724 * after it is freed from another thread.
726 mutex_lock(&opp_table->genpd_virt_dev_lock);
728 for (i = 0; i < opp_table->required_opp_count; i++) {
729 pstate = likely(opp) ? opp->required_opps[i]->pstate : 0;
731 if (!genpd_virt_devs[i])
734 ret = dev_pm_genpd_set_performance_state(genpd_virt_devs[i], pstate);
736 dev_err(dev, "Failed to set performance rate of %s: %d (%d)\n",
737 dev_name(genpd_virt_devs[i]), pstate, ret);
741 mutex_unlock(&opp_table->genpd_virt_dev_lock);
747 * dev_pm_opp_set_rate() - Configure new OPP based on frequency
748 * @dev: device for which we do this operation
749 * @target_freq: frequency to achieve
751 * This configures the power-supplies to the levels specified by the OPP
752 * corresponding to the target_freq, and programs the clock to a value <=
753 * target_freq, as rounded by clk_round_rate(). Device wanting to run at fmax
754 * provided by the opp, should have already rounded to the target OPP's
757 int dev_pm_opp_set_rate(struct device *dev, unsigned long target_freq)
759 struct opp_table *opp_table;
760 unsigned long freq, old_freq, temp_freq;
761 struct dev_pm_opp *old_opp, *opp;
765 opp_table = _find_opp_table(dev);
766 if (IS_ERR(opp_table)) {
767 dev_err(dev, "%s: device opp doesn't exist\n", __func__);
768 return PTR_ERR(opp_table);
771 if (unlikely(!target_freq)) {
772 if (opp_table->required_opp_tables) {
773 ret = _set_required_opps(dev, opp_table, NULL);
775 dev_err(dev, "target frequency can't be 0\n");
782 clk = opp_table->clk;
784 dev_err(dev, "%s: No clock available for the device\n",
790 freq = clk_round_rate(clk, target_freq);
794 old_freq = clk_get_rate(clk);
796 /* Return early if nothing to do */
797 if (old_freq == freq) {
798 dev_dbg(dev, "%s: old/new frequencies (%lu Hz) are same, nothing to do\n",
804 temp_freq = old_freq;
805 old_opp = _find_freq_ceil(opp_table, &temp_freq);
806 if (IS_ERR(old_opp)) {
807 dev_err(dev, "%s: failed to find current OPP for freq %lu (%ld)\n",
808 __func__, old_freq, PTR_ERR(old_opp));
812 opp = _find_freq_ceil(opp_table, &temp_freq);
815 dev_err(dev, "%s: failed to find OPP for freq %lu (%d)\n",
816 __func__, freq, ret);
820 dev_dbg(dev, "%s: switching OPP: %lu Hz --> %lu Hz\n", __func__,
823 /* Scaling up? Configure required OPPs before frequency */
824 if (freq >= old_freq) {
825 ret = _set_required_opps(dev, opp_table, opp);
830 if (opp_table->set_opp) {
831 ret = _set_opp_custom(opp_table, dev, old_freq, freq,
832 IS_ERR(old_opp) ? NULL : old_opp->supplies,
834 } else if (opp_table->regulators) {
835 ret = _generic_set_opp_regulator(opp_table, dev, old_freq, freq,
836 IS_ERR(old_opp) ? NULL : old_opp->supplies,
839 /* Only frequency scaling */
840 ret = _generic_set_opp_clk_only(dev, clk, freq);
843 /* Scaling down? Configure required OPPs after frequency */
844 if (!ret && freq < old_freq) {
845 ret = _set_required_opps(dev, opp_table, opp);
847 dev_err(dev, "Failed to set required opps: %d\n", ret);
853 if (!IS_ERR(old_opp))
854 dev_pm_opp_put(old_opp);
856 dev_pm_opp_put_opp_table(opp_table);
859 EXPORT_SYMBOL_GPL(dev_pm_opp_set_rate);
861 /* OPP-dev Helpers */
862 static void _remove_opp_dev(struct opp_device *opp_dev,
863 struct opp_table *opp_table)
865 opp_debug_unregister(opp_dev, opp_table);
866 list_del(&opp_dev->node);
870 static struct opp_device *_add_opp_dev_unlocked(const struct device *dev,
871 struct opp_table *opp_table)
873 struct opp_device *opp_dev;
875 opp_dev = kzalloc(sizeof(*opp_dev), GFP_KERNEL);
879 /* Initialize opp-dev */
882 list_add(&opp_dev->node, &opp_table->dev_list);
884 /* Create debugfs entries for the opp_table */
885 opp_debug_register(opp_dev, opp_table);
890 struct opp_device *_add_opp_dev(const struct device *dev,
891 struct opp_table *opp_table)
893 struct opp_device *opp_dev;
895 mutex_lock(&opp_table->lock);
896 opp_dev = _add_opp_dev_unlocked(dev, opp_table);
897 mutex_unlock(&opp_table->lock);
902 static struct opp_table *_allocate_opp_table(struct device *dev, int index)
904 struct opp_table *opp_table;
905 struct opp_device *opp_dev;
909 * Allocate a new OPP table. In the infrequent case where a new
910 * device is needed to be added, we pay this penalty.
912 opp_table = kzalloc(sizeof(*opp_table), GFP_KERNEL);
916 mutex_init(&opp_table->lock);
917 mutex_init(&opp_table->genpd_virt_dev_lock);
918 INIT_LIST_HEAD(&opp_table->dev_list);
920 /* Mark regulator count uninitialized */
921 opp_table->regulator_count = -1;
923 opp_dev = _add_opp_dev(dev, opp_table);
929 _of_init_opp_table(opp_table, dev, index);
931 /* Find clk for the device */
932 opp_table->clk = clk_get(dev, NULL);
933 if (IS_ERR(opp_table->clk)) {
934 ret = PTR_ERR(opp_table->clk);
935 if (ret != -EPROBE_DEFER)
936 dev_dbg(dev, "%s: Couldn't find clock: %d\n", __func__,
940 BLOCKING_INIT_NOTIFIER_HEAD(&opp_table->head);
941 INIT_LIST_HEAD(&opp_table->opp_list);
942 kref_init(&opp_table->kref);
944 /* Secure the device table modification */
945 list_add(&opp_table->node, &opp_tables);
949 void _get_opp_table_kref(struct opp_table *opp_table)
951 kref_get(&opp_table->kref);
954 static struct opp_table *_opp_get_opp_table(struct device *dev, int index)
956 struct opp_table *opp_table;
958 /* Hold our table modification lock here */
959 mutex_lock(&opp_table_lock);
961 opp_table = _find_opp_table_unlocked(dev);
962 if (!IS_ERR(opp_table))
965 opp_table = _managed_opp(dev, index);
967 if (!_add_opp_dev_unlocked(dev, opp_table)) {
968 dev_pm_opp_put_opp_table(opp_table);
974 opp_table = _allocate_opp_table(dev, index);
977 mutex_unlock(&opp_table_lock);
982 struct opp_table *dev_pm_opp_get_opp_table(struct device *dev)
984 return _opp_get_opp_table(dev, 0);
986 EXPORT_SYMBOL_GPL(dev_pm_opp_get_opp_table);
988 struct opp_table *dev_pm_opp_get_opp_table_indexed(struct device *dev,
991 return _opp_get_opp_table(dev, index);
994 static void _opp_table_kref_release(struct kref *kref)
996 struct opp_table *opp_table = container_of(kref, struct opp_table, kref);
997 struct opp_device *opp_dev, *temp;
999 _of_clear_opp_table(opp_table);
1002 if (!IS_ERR(opp_table->clk))
1003 clk_put(opp_table->clk);
1005 WARN_ON(!list_empty(&opp_table->opp_list));
1007 list_for_each_entry_safe(opp_dev, temp, &opp_table->dev_list, node) {
1009 * The OPP table is getting removed, drop the performance state
1012 if (opp_table->genpd_performance_state)
1013 dev_pm_genpd_set_performance_state((struct device *)(opp_dev->dev), 0);
1015 _remove_opp_dev(opp_dev, opp_table);
1018 mutex_destroy(&opp_table->genpd_virt_dev_lock);
1019 mutex_destroy(&opp_table->lock);
1020 list_del(&opp_table->node);
1023 mutex_unlock(&opp_table_lock);
1026 void _opp_remove_all_static(struct opp_table *opp_table)
1028 struct dev_pm_opp *opp, *tmp;
1030 list_for_each_entry_safe(opp, tmp, &opp_table->opp_list, node) {
1032 dev_pm_opp_put(opp);
1035 opp_table->parsed_static_opps = false;
1038 static void _opp_table_list_kref_release(struct kref *kref)
1040 struct opp_table *opp_table = container_of(kref, struct opp_table,
1043 _opp_remove_all_static(opp_table);
1044 mutex_unlock(&opp_table_lock);
1047 void _put_opp_list_kref(struct opp_table *opp_table)
1049 kref_put_mutex(&opp_table->list_kref, _opp_table_list_kref_release,
1053 void dev_pm_opp_put_opp_table(struct opp_table *opp_table)
1055 kref_put_mutex(&opp_table->kref, _opp_table_kref_release,
1058 EXPORT_SYMBOL_GPL(dev_pm_opp_put_opp_table);
1060 void _opp_free(struct dev_pm_opp *opp)
1065 static void _opp_kref_release(struct dev_pm_opp *opp,
1066 struct opp_table *opp_table)
1069 * Notify the changes in the availability of the operable
1070 * frequency/voltage list.
1072 blocking_notifier_call_chain(&opp_table->head, OPP_EVENT_REMOVE, opp);
1073 _of_opp_free_required_opps(opp_table, opp);
1074 opp_debug_remove_one(opp);
1075 list_del(&opp->node);
1079 static void _opp_kref_release_unlocked(struct kref *kref)
1081 struct dev_pm_opp *opp = container_of(kref, struct dev_pm_opp, kref);
1082 struct opp_table *opp_table = opp->opp_table;
1084 _opp_kref_release(opp, opp_table);
1087 static void _opp_kref_release_locked(struct kref *kref)
1089 struct dev_pm_opp *opp = container_of(kref, struct dev_pm_opp, kref);
1090 struct opp_table *opp_table = opp->opp_table;
1092 _opp_kref_release(opp, opp_table);
1093 mutex_unlock(&opp_table->lock);
1096 void dev_pm_opp_get(struct dev_pm_opp *opp)
1098 kref_get(&opp->kref);
1101 void dev_pm_opp_put(struct dev_pm_opp *opp)
1103 kref_put_mutex(&opp->kref, _opp_kref_release_locked,
1104 &opp->opp_table->lock);
1106 EXPORT_SYMBOL_GPL(dev_pm_opp_put);
1108 static void dev_pm_opp_put_unlocked(struct dev_pm_opp *opp)
1110 kref_put(&opp->kref, _opp_kref_release_unlocked);
1114 * dev_pm_opp_remove() - Remove an OPP from OPP table
1115 * @dev: device for which we do this operation
1116 * @freq: OPP to remove with matching 'freq'
1118 * This function removes an opp from the opp table.
1120 void dev_pm_opp_remove(struct device *dev, unsigned long freq)
1122 struct dev_pm_opp *opp;
1123 struct opp_table *opp_table;
1126 opp_table = _find_opp_table(dev);
1127 if (IS_ERR(opp_table))
1130 mutex_lock(&opp_table->lock);
1132 list_for_each_entry(opp, &opp_table->opp_list, node) {
1133 if (opp->rate == freq) {
1139 mutex_unlock(&opp_table->lock);
1142 dev_pm_opp_put(opp);
1144 /* Drop the reference taken by dev_pm_opp_add() */
1145 dev_pm_opp_put_opp_table(opp_table);
1147 dev_warn(dev, "%s: Couldn't find OPP with freq: %lu\n",
1151 /* Drop the reference taken by _find_opp_table() */
1152 dev_pm_opp_put_opp_table(opp_table);
1154 EXPORT_SYMBOL_GPL(dev_pm_opp_remove);
1157 * dev_pm_opp_remove_all_dynamic() - Remove all dynamically created OPPs
1158 * @dev: device for which we do this operation
1160 * This function removes all dynamically created OPPs from the opp table.
1162 void dev_pm_opp_remove_all_dynamic(struct device *dev)
1164 struct opp_table *opp_table;
1165 struct dev_pm_opp *opp, *temp;
1168 opp_table = _find_opp_table(dev);
1169 if (IS_ERR(opp_table))
1172 mutex_lock(&opp_table->lock);
1173 list_for_each_entry_safe(opp, temp, &opp_table->opp_list, node) {
1175 dev_pm_opp_put_unlocked(opp);
1179 mutex_unlock(&opp_table->lock);
1181 /* Drop the references taken by dev_pm_opp_add() */
1183 dev_pm_opp_put_opp_table(opp_table);
1185 /* Drop the reference taken by _find_opp_table() */
1186 dev_pm_opp_put_opp_table(opp_table);
1188 EXPORT_SYMBOL_GPL(dev_pm_opp_remove_all_dynamic);
1190 struct dev_pm_opp *_opp_allocate(struct opp_table *table)
1192 struct dev_pm_opp *opp;
1193 int count, supply_size;
1195 /* Allocate space for at least one supply */
1196 count = table->regulator_count > 0 ? table->regulator_count : 1;
1197 supply_size = sizeof(*opp->supplies) * count;
1199 /* allocate new OPP node and supplies structures */
1200 opp = kzalloc(sizeof(*opp) + supply_size, GFP_KERNEL);
1204 /* Put the supplies at the end of the OPP structure as an empty array */
1205 opp->supplies = (struct dev_pm_opp_supply *)(opp + 1);
1206 INIT_LIST_HEAD(&opp->node);
1211 static bool _opp_supported_by_regulators(struct dev_pm_opp *opp,
1212 struct opp_table *opp_table)
1214 struct regulator *reg;
1217 if (!opp_table->regulators)
1220 for (i = 0; i < opp_table->regulator_count; i++) {
1221 reg = opp_table->regulators[i];
1223 if (!regulator_is_supported_voltage(reg,
1224 opp->supplies[i].u_volt_min,
1225 opp->supplies[i].u_volt_max)) {
1226 pr_warn("%s: OPP minuV: %lu maxuV: %lu, not supported by regulator\n",
1227 __func__, opp->supplies[i].u_volt_min,
1228 opp->supplies[i].u_volt_max);
1236 static int _opp_is_duplicate(struct device *dev, struct dev_pm_opp *new_opp,
1237 struct opp_table *opp_table,
1238 struct list_head **head)
1240 struct dev_pm_opp *opp;
1243 * Insert new OPP in order of increasing frequency and discard if
1246 * Need to use &opp_table->opp_list in the condition part of the 'for'
1247 * loop, don't replace it with head otherwise it will become an infinite
1250 list_for_each_entry(opp, &opp_table->opp_list, node) {
1251 if (new_opp->rate > opp->rate) {
1256 if (new_opp->rate < opp->rate)
1259 /* Duplicate OPPs */
1260 dev_warn(dev, "%s: duplicate OPPs detected. Existing: freq: %lu, volt: %lu, enabled: %d. New: freq: %lu, volt: %lu, enabled: %d\n",
1261 __func__, opp->rate, opp->supplies[0].u_volt,
1262 opp->available, new_opp->rate,
1263 new_opp->supplies[0].u_volt, new_opp->available);
1265 /* Should we compare voltages for all regulators here ? */
1266 return opp->available &&
1267 new_opp->supplies[0].u_volt == opp->supplies[0].u_volt ? -EBUSY : -EEXIST;
1275 * 0: On success. And appropriate error message for duplicate OPPs.
1276 * -EBUSY: For OPP with same freq/volt and is available. The callers of
1277 * _opp_add() must return 0 if they receive -EBUSY from it. This is to make
1278 * sure we don't print error messages unnecessarily if different parts of
1279 * kernel try to initialize the OPP table.
1280 * -EEXIST: For OPP with same freq but different volt or is unavailable. This
1281 * should be considered an error by the callers of _opp_add().
1283 int _opp_add(struct device *dev, struct dev_pm_opp *new_opp,
1284 struct opp_table *opp_table, bool rate_not_available)
1286 struct list_head *head;
1289 mutex_lock(&opp_table->lock);
1290 head = &opp_table->opp_list;
1292 if (likely(!rate_not_available)) {
1293 ret = _opp_is_duplicate(dev, new_opp, opp_table, &head);
1295 mutex_unlock(&opp_table->lock);
1300 list_add(&new_opp->node, head);
1301 mutex_unlock(&opp_table->lock);
1303 new_opp->opp_table = opp_table;
1304 kref_init(&new_opp->kref);
1306 opp_debug_create_one(new_opp, opp_table);
1308 if (!_opp_supported_by_regulators(new_opp, opp_table)) {
1309 new_opp->available = false;
1310 dev_warn(dev, "%s: OPP not supported by regulators (%lu)\n",
1311 __func__, new_opp->rate);
1318 * _opp_add_v1() - Allocate a OPP based on v1 bindings.
1319 * @opp_table: OPP table
1320 * @dev: device for which we do this operation
1321 * @freq: Frequency in Hz for this OPP
1322 * @u_volt: Voltage in uVolts for this OPP
1323 * @dynamic: Dynamically added OPPs.
1325 * This function adds an opp definition to the opp table and returns status.
1326 * The opp is made available by default and it can be controlled using
1327 * dev_pm_opp_enable/disable functions and may be removed by dev_pm_opp_remove.
1329 * NOTE: "dynamic" parameter impacts OPPs added by the dev_pm_opp_of_add_table
1330 * and freed by dev_pm_opp_of_remove_table.
1334 * Duplicate OPPs (both freq and volt are same) and opp->available
1335 * -EEXIST Freq are same and volt are different OR
1336 * Duplicate OPPs (both freq and volt are same) and !opp->available
1337 * -ENOMEM Memory allocation failure
1339 int _opp_add_v1(struct opp_table *opp_table, struct device *dev,
1340 unsigned long freq, long u_volt, bool dynamic)
1342 struct dev_pm_opp *new_opp;
1346 new_opp = _opp_allocate(opp_table);
1350 /* populate the opp table */
1351 new_opp->rate = freq;
1352 tol = u_volt * opp_table->voltage_tolerance_v1 / 100;
1353 new_opp->supplies[0].u_volt = u_volt;
1354 new_opp->supplies[0].u_volt_min = u_volt - tol;
1355 new_opp->supplies[0].u_volt_max = u_volt + tol;
1356 new_opp->available = true;
1357 new_opp->dynamic = dynamic;
1359 ret = _opp_add(dev, new_opp, opp_table, false);
1361 /* Don't return error for duplicate OPPs */
1368 * Notify the changes in the availability of the operable
1369 * frequency/voltage list.
1371 blocking_notifier_call_chain(&opp_table->head, OPP_EVENT_ADD, new_opp);
1381 * dev_pm_opp_set_supported_hw() - Set supported platforms
1382 * @dev: Device for which supported-hw has to be set.
1383 * @versions: Array of hierarchy of versions to match.
1384 * @count: Number of elements in the array.
1386 * This is required only for the V2 bindings, and it enables a platform to
1387 * specify the hierarchy of versions it supports. OPP layer will then enable
1388 * OPPs, which are available for those versions, based on its 'opp-supported-hw'
1391 struct opp_table *dev_pm_opp_set_supported_hw(struct device *dev,
1392 const u32 *versions, unsigned int count)
1394 struct opp_table *opp_table;
1396 opp_table = dev_pm_opp_get_opp_table(dev);
1398 return ERR_PTR(-ENOMEM);
1400 /* Make sure there are no concurrent readers while updating opp_table */
1401 WARN_ON(!list_empty(&opp_table->opp_list));
1403 /* Another CPU that shares the OPP table has set the property ? */
1404 if (opp_table->supported_hw)
1407 opp_table->supported_hw = kmemdup(versions, count * sizeof(*versions),
1409 if (!opp_table->supported_hw) {
1410 dev_pm_opp_put_opp_table(opp_table);
1411 return ERR_PTR(-ENOMEM);
1414 opp_table->supported_hw_count = count;
1418 EXPORT_SYMBOL_GPL(dev_pm_opp_set_supported_hw);
1421 * dev_pm_opp_put_supported_hw() - Releases resources blocked for supported hw
1422 * @opp_table: OPP table returned by dev_pm_opp_set_supported_hw().
1424 * This is required only for the V2 bindings, and is called for a matching
1425 * dev_pm_opp_set_supported_hw(). Until this is called, the opp_table structure
1426 * will not be freed.
1428 void dev_pm_opp_put_supported_hw(struct opp_table *opp_table)
1430 /* Make sure there are no concurrent readers while updating opp_table */
1431 WARN_ON(!list_empty(&opp_table->opp_list));
1433 kfree(opp_table->supported_hw);
1434 opp_table->supported_hw = NULL;
1435 opp_table->supported_hw_count = 0;
1437 dev_pm_opp_put_opp_table(opp_table);
1439 EXPORT_SYMBOL_GPL(dev_pm_opp_put_supported_hw);
1442 * dev_pm_opp_set_prop_name() - Set prop-extn name
1443 * @dev: Device for which the prop-name has to be set.
1444 * @name: name to postfix to properties.
1446 * This is required only for the V2 bindings, and it enables a platform to
1447 * specify the extn to be used for certain property names. The properties to
1448 * which the extension will apply are opp-microvolt and opp-microamp. OPP core
1449 * should postfix the property name with -<name> while looking for them.
1451 struct opp_table *dev_pm_opp_set_prop_name(struct device *dev, const char *name)
1453 struct opp_table *opp_table;
1455 opp_table = dev_pm_opp_get_opp_table(dev);
1457 return ERR_PTR(-ENOMEM);
1459 /* Make sure there are no concurrent readers while updating opp_table */
1460 WARN_ON(!list_empty(&opp_table->opp_list));
1462 /* Another CPU that shares the OPP table has set the property ? */
1463 if (opp_table->prop_name)
1466 opp_table->prop_name = kstrdup(name, GFP_KERNEL);
1467 if (!opp_table->prop_name) {
1468 dev_pm_opp_put_opp_table(opp_table);
1469 return ERR_PTR(-ENOMEM);
1474 EXPORT_SYMBOL_GPL(dev_pm_opp_set_prop_name);
1477 * dev_pm_opp_put_prop_name() - Releases resources blocked for prop-name
1478 * @opp_table: OPP table returned by dev_pm_opp_set_prop_name().
1480 * This is required only for the V2 bindings, and is called for a matching
1481 * dev_pm_opp_set_prop_name(). Until this is called, the opp_table structure
1482 * will not be freed.
1484 void dev_pm_opp_put_prop_name(struct opp_table *opp_table)
1486 /* Make sure there are no concurrent readers while updating opp_table */
1487 WARN_ON(!list_empty(&opp_table->opp_list));
1489 kfree(opp_table->prop_name);
1490 opp_table->prop_name = NULL;
1492 dev_pm_opp_put_opp_table(opp_table);
1494 EXPORT_SYMBOL_GPL(dev_pm_opp_put_prop_name);
1496 static int _allocate_set_opp_data(struct opp_table *opp_table)
1498 struct dev_pm_set_opp_data *data;
1499 int len, count = opp_table->regulator_count;
1501 if (WARN_ON(!opp_table->regulators))
1504 /* space for set_opp_data */
1505 len = sizeof(*data);
1507 /* space for old_opp.supplies and new_opp.supplies */
1508 len += 2 * sizeof(struct dev_pm_opp_supply) * count;
1510 data = kzalloc(len, GFP_KERNEL);
1514 data->old_opp.supplies = (void *)(data + 1);
1515 data->new_opp.supplies = data->old_opp.supplies + count;
1517 opp_table->set_opp_data = data;
1522 static void _free_set_opp_data(struct opp_table *opp_table)
1524 kfree(opp_table->set_opp_data);
1525 opp_table->set_opp_data = NULL;
1529 * dev_pm_opp_set_regulators() - Set regulator names for the device
1530 * @dev: Device for which regulator name is being set.
1531 * @names: Array of pointers to the names of the regulator.
1532 * @count: Number of regulators.
1534 * In order to support OPP switching, OPP layer needs to know the name of the
1535 * device's regulators, as the core would be required to switch voltages as
1538 * This must be called before any OPPs are initialized for the device.
1540 struct opp_table *dev_pm_opp_set_regulators(struct device *dev,
1541 const char * const names[],
1544 struct opp_table *opp_table;
1545 struct regulator *reg;
1548 opp_table = dev_pm_opp_get_opp_table(dev);
1550 return ERR_PTR(-ENOMEM);
1552 /* This should be called before OPPs are initialized */
1553 if (WARN_ON(!list_empty(&opp_table->opp_list))) {
1558 /* Another CPU that shares the OPP table has set the regulators ? */
1559 if (opp_table->regulators)
1562 opp_table->regulators = kmalloc_array(count,
1563 sizeof(*opp_table->regulators),
1565 if (!opp_table->regulators) {
1570 for (i = 0; i < count; i++) {
1571 reg = regulator_get_optional(dev, names[i]);
1574 if (ret != -EPROBE_DEFER)
1575 dev_err(dev, "%s: no regulator (%s) found: %d\n",
1576 __func__, names[i], ret);
1577 goto free_regulators;
1580 opp_table->regulators[i] = reg;
1583 opp_table->regulator_count = count;
1585 /* Allocate block only once to pass to set_opp() routines */
1586 ret = _allocate_set_opp_data(opp_table);
1588 goto free_regulators;
1594 regulator_put(opp_table->regulators[--i]);
1596 kfree(opp_table->regulators);
1597 opp_table->regulators = NULL;
1598 opp_table->regulator_count = -1;
1600 dev_pm_opp_put_opp_table(opp_table);
1602 return ERR_PTR(ret);
1604 EXPORT_SYMBOL_GPL(dev_pm_opp_set_regulators);
1607 * dev_pm_opp_put_regulators() - Releases resources blocked for regulator
1608 * @opp_table: OPP table returned from dev_pm_opp_set_regulators().
1610 void dev_pm_opp_put_regulators(struct opp_table *opp_table)
1614 if (!opp_table->regulators)
1617 /* Make sure there are no concurrent readers while updating opp_table */
1618 WARN_ON(!list_empty(&opp_table->opp_list));
1620 for (i = opp_table->regulator_count - 1; i >= 0; i--)
1621 regulator_put(opp_table->regulators[i]);
1623 _free_set_opp_data(opp_table);
1625 kfree(opp_table->regulators);
1626 opp_table->regulators = NULL;
1627 opp_table->regulator_count = -1;
1630 dev_pm_opp_put_opp_table(opp_table);
1632 EXPORT_SYMBOL_GPL(dev_pm_opp_put_regulators);
1635 * dev_pm_opp_set_clkname() - Set clk name for the device
1636 * @dev: Device for which clk name is being set.
1639 * In order to support OPP switching, OPP layer needs to get pointer to the
1640 * clock for the device. Simple cases work fine without using this routine (i.e.
1641 * by passing connection-id as NULL), but for a device with multiple clocks
1642 * available, the OPP core needs to know the exact name of the clk to use.
1644 * This must be called before any OPPs are initialized for the device.
1646 struct opp_table *dev_pm_opp_set_clkname(struct device *dev, const char *name)
1648 struct opp_table *opp_table;
1651 opp_table = dev_pm_opp_get_opp_table(dev);
1653 return ERR_PTR(-ENOMEM);
1655 /* This should be called before OPPs are initialized */
1656 if (WARN_ON(!list_empty(&opp_table->opp_list))) {
1661 /* Already have default clk set, free it */
1662 if (!IS_ERR(opp_table->clk))
1663 clk_put(opp_table->clk);
1665 /* Find clk for the device */
1666 opp_table->clk = clk_get(dev, name);
1667 if (IS_ERR(opp_table->clk)) {
1668 ret = PTR_ERR(opp_table->clk);
1669 if (ret != -EPROBE_DEFER) {
1670 dev_err(dev, "%s: Couldn't find clock: %d\n", __func__,
1679 dev_pm_opp_put_opp_table(opp_table);
1681 return ERR_PTR(ret);
1683 EXPORT_SYMBOL_GPL(dev_pm_opp_set_clkname);
1686 * dev_pm_opp_put_clkname() - Releases resources blocked for clk.
1687 * @opp_table: OPP table returned from dev_pm_opp_set_clkname().
1689 void dev_pm_opp_put_clkname(struct opp_table *opp_table)
1691 /* Make sure there are no concurrent readers while updating opp_table */
1692 WARN_ON(!list_empty(&opp_table->opp_list));
1694 clk_put(opp_table->clk);
1695 opp_table->clk = ERR_PTR(-EINVAL);
1697 dev_pm_opp_put_opp_table(opp_table);
1699 EXPORT_SYMBOL_GPL(dev_pm_opp_put_clkname);
1702 * dev_pm_opp_register_set_opp_helper() - Register custom set OPP helper
1703 * @dev: Device for which the helper is getting registered.
1704 * @set_opp: Custom set OPP helper.
1706 * This is useful to support complex platforms (like platforms with multiple
1707 * regulators per device), instead of the generic OPP set rate helper.
1709 * This must be called before any OPPs are initialized for the device.
1711 struct opp_table *dev_pm_opp_register_set_opp_helper(struct device *dev,
1712 int (*set_opp)(struct dev_pm_set_opp_data *data))
1714 struct opp_table *opp_table;
1717 return ERR_PTR(-EINVAL);
1719 opp_table = dev_pm_opp_get_opp_table(dev);
1721 return ERR_PTR(-ENOMEM);
1723 /* This should be called before OPPs are initialized */
1724 if (WARN_ON(!list_empty(&opp_table->opp_list))) {
1725 dev_pm_opp_put_opp_table(opp_table);
1726 return ERR_PTR(-EBUSY);
1729 /* Another CPU that shares the OPP table has set the helper ? */
1730 if (!opp_table->set_opp)
1731 opp_table->set_opp = set_opp;
1735 EXPORT_SYMBOL_GPL(dev_pm_opp_register_set_opp_helper);
1738 * dev_pm_opp_unregister_set_opp_helper() - Releases resources blocked for
1740 * @opp_table: OPP table returned from dev_pm_opp_register_set_opp_helper().
1742 * Release resources blocked for platform specific set_opp helper.
1744 void dev_pm_opp_unregister_set_opp_helper(struct opp_table *opp_table)
1746 /* Make sure there are no concurrent readers while updating opp_table */
1747 WARN_ON(!list_empty(&opp_table->opp_list));
1749 opp_table->set_opp = NULL;
1750 dev_pm_opp_put_opp_table(opp_table);
1752 EXPORT_SYMBOL_GPL(dev_pm_opp_unregister_set_opp_helper);
1754 static void _opp_detach_genpd(struct opp_table *opp_table)
1758 for (index = 0; index < opp_table->required_opp_count; index++) {
1759 if (!opp_table->genpd_virt_devs[index])
1762 dev_pm_domain_detach(opp_table->genpd_virt_devs[index], false);
1763 opp_table->genpd_virt_devs[index] = NULL;
1766 kfree(opp_table->genpd_virt_devs);
1767 opp_table->genpd_virt_devs = NULL;
1771 * dev_pm_opp_attach_genpd - Attach genpd(s) for the device and save virtual device pointer
1772 * @dev: Consumer device for which the genpd is getting attached.
1773 * @names: Null terminated array of pointers containing names of genpd to attach.
1775 * Multiple generic power domains for a device are supported with the help of
1776 * virtual genpd devices, which are created for each consumer device - genpd
1777 * pair. These are the device structures which are attached to the power domain
1778 * and are required by the OPP core to set the performance state of the genpd.
1779 * The same API also works for the case where single genpd is available and so
1780 * we don't need to support that separately.
1782 * This helper will normally be called by the consumer driver of the device
1783 * "dev", as only that has details of the genpd names.
1785 * This helper needs to be called once with a list of all genpd to attach.
1786 * Otherwise the original device structure will be used instead by the OPP core.
1788 struct opp_table *dev_pm_opp_attach_genpd(struct device *dev, const char **names)
1790 struct opp_table *opp_table;
1791 struct device *virt_dev;
1792 int index, ret = -EINVAL;
1793 const char **name = names;
1795 opp_table = dev_pm_opp_get_opp_table(dev);
1797 return ERR_PTR(-ENOMEM);
1800 * If the genpd's OPP table isn't already initialized, parsing of the
1801 * required-opps fail for dev. We should retry this after genpd's OPP
1804 if (!opp_table->required_opp_count) {
1805 ret = -EPROBE_DEFER;
1809 mutex_lock(&opp_table->genpd_virt_dev_lock);
1811 opp_table->genpd_virt_devs = kcalloc(opp_table->required_opp_count,
1812 sizeof(*opp_table->genpd_virt_devs),
1814 if (!opp_table->genpd_virt_devs)
1818 index = of_property_match_string(dev->of_node,
1819 "power-domain-names", *name);
1821 dev_err(dev, "Failed to find power domain: %s (%d)\n",
1826 if (index >= opp_table->required_opp_count) {
1827 dev_err(dev, "Index can't be greater than required-opp-count - 1, %s (%d : %d)\n",
1828 *name, opp_table->required_opp_count, index);
1832 if (opp_table->genpd_virt_devs[index]) {
1833 dev_err(dev, "Genpd virtual device already set %s\n",
1838 virt_dev = dev_pm_domain_attach_by_name(dev, *name);
1839 if (IS_ERR(virt_dev)) {
1840 ret = PTR_ERR(virt_dev);
1841 dev_err(dev, "Couldn't attach to pm_domain: %d\n", ret);
1845 opp_table->genpd_virt_devs[index] = virt_dev;
1849 mutex_unlock(&opp_table->genpd_virt_dev_lock);
1854 _opp_detach_genpd(opp_table);
1856 mutex_unlock(&opp_table->genpd_virt_dev_lock);
1859 dev_pm_opp_put_opp_table(opp_table);
1861 return ERR_PTR(ret);
1863 EXPORT_SYMBOL_GPL(dev_pm_opp_attach_genpd);
1866 * dev_pm_opp_detach_genpd() - Detach genpd(s) from the device.
1867 * @opp_table: OPP table returned by dev_pm_opp_attach_genpd().
1869 * This detaches the genpd(s), resets the virtual device pointers, and puts the
1872 void dev_pm_opp_detach_genpd(struct opp_table *opp_table)
1875 * Acquire genpd_virt_dev_lock to make sure virt_dev isn't getting
1878 mutex_lock(&opp_table->genpd_virt_dev_lock);
1879 _opp_detach_genpd(opp_table);
1880 mutex_unlock(&opp_table->genpd_virt_dev_lock);
1882 dev_pm_opp_put_opp_table(opp_table);
1884 EXPORT_SYMBOL_GPL(dev_pm_opp_detach_genpd);
1887 * dev_pm_opp_xlate_performance_state() - Find required OPP's pstate for src_table.
1888 * @src_table: OPP table which has dst_table as one of its required OPP table.
1889 * @dst_table: Required OPP table of the src_table.
1890 * @pstate: Current performance state of the src_table.
1892 * This Returns pstate of the OPP (present in @dst_table) pointed out by the
1893 * "required-opps" property of the OPP (present in @src_table) which has
1894 * performance state set to @pstate.
1896 * Return: Zero or positive performance state on success, otherwise negative
1899 int dev_pm_opp_xlate_performance_state(struct opp_table *src_table,
1900 struct opp_table *dst_table,
1901 unsigned int pstate)
1903 struct dev_pm_opp *opp;
1904 int dest_pstate = -EINVAL;
1911 * Normally the src_table will have the "required_opps" property set to
1912 * point to one of the OPPs in the dst_table, but in some cases the
1913 * genpd and its master have one to one mapping of performance states
1914 * and so none of them have the "required-opps" property set. Return the
1915 * pstate of the src_table as it is in such cases.
1917 if (!src_table->required_opp_count)
1920 for (i = 0; i < src_table->required_opp_count; i++) {
1921 if (src_table->required_opp_tables[i]->np == dst_table->np)
1925 if (unlikely(i == src_table->required_opp_count)) {
1926 pr_err("%s: Couldn't find matching OPP table (%p: %p)\n",
1927 __func__, src_table, dst_table);
1931 mutex_lock(&src_table->lock);
1933 list_for_each_entry(opp, &src_table->opp_list, node) {
1934 if (opp->pstate == pstate) {
1935 dest_pstate = opp->required_opps[i]->pstate;
1940 pr_err("%s: Couldn't find matching OPP (%p: %p)\n", __func__, src_table,
1944 mutex_unlock(&src_table->lock);
1950 * dev_pm_opp_add() - Add an OPP table from a table definitions
1951 * @dev: device for which we do this operation
1952 * @freq: Frequency in Hz for this OPP
1953 * @u_volt: Voltage in uVolts for this OPP
1955 * This function adds an opp definition to the opp table and returns status.
1956 * The opp is made available by default and it can be controlled using
1957 * dev_pm_opp_enable/disable functions.
1961 * Duplicate OPPs (both freq and volt are same) and opp->available
1962 * -EEXIST Freq are same and volt are different OR
1963 * Duplicate OPPs (both freq and volt are same) and !opp->available
1964 * -ENOMEM Memory allocation failure
1966 int dev_pm_opp_add(struct device *dev, unsigned long freq, unsigned long u_volt)
1968 struct opp_table *opp_table;
1971 opp_table = dev_pm_opp_get_opp_table(dev);
1975 /* Fix regulator count for dynamic OPPs */
1976 opp_table->regulator_count = 1;
1978 ret = _opp_add_v1(opp_table, dev, freq, u_volt, true);
1980 dev_pm_opp_put_opp_table(opp_table);
1984 EXPORT_SYMBOL_GPL(dev_pm_opp_add);
1987 * _opp_set_availability() - helper to set the availability of an opp
1988 * @dev: device for which we do this operation
1989 * @freq: OPP frequency to modify availability
1990 * @availability_req: availability status requested for this opp
1992 * Set the availability of an OPP, opp_{enable,disable} share a common logic
1993 * which is isolated here.
1995 * Return: -EINVAL for bad pointers, -ENOMEM if no memory available for the
1996 * copy operation, returns 0 if no modification was done OR modification was
1999 static int _opp_set_availability(struct device *dev, unsigned long freq,
2000 bool availability_req)
2002 struct opp_table *opp_table;
2003 struct dev_pm_opp *tmp_opp, *opp = ERR_PTR(-ENODEV);
2006 /* Find the opp_table */
2007 opp_table = _find_opp_table(dev);
2008 if (IS_ERR(opp_table)) {
2009 r = PTR_ERR(opp_table);
2010 dev_warn(dev, "%s: Device OPP not found (%d)\n", __func__, r);
2014 mutex_lock(&opp_table->lock);
2016 /* Do we have the frequency? */
2017 list_for_each_entry(tmp_opp, &opp_table->opp_list, node) {
2018 if (tmp_opp->rate == freq) {
2029 /* Is update really needed? */
2030 if (opp->available == availability_req)
2033 opp->available = availability_req;
2035 dev_pm_opp_get(opp);
2036 mutex_unlock(&opp_table->lock);
2038 /* Notify the change of the OPP availability */
2039 if (availability_req)
2040 blocking_notifier_call_chain(&opp_table->head, OPP_EVENT_ENABLE,
2043 blocking_notifier_call_chain(&opp_table->head,
2044 OPP_EVENT_DISABLE, opp);
2046 dev_pm_opp_put(opp);
2050 mutex_unlock(&opp_table->lock);
2052 dev_pm_opp_put_opp_table(opp_table);
2057 * dev_pm_opp_enable() - Enable a specific OPP
2058 * @dev: device for which we do this operation
2059 * @freq: OPP frequency to enable
2061 * Enables a provided opp. If the operation is valid, this returns 0, else the
2062 * corresponding error value. It is meant to be used for users an OPP available
2063 * after being temporarily made unavailable with dev_pm_opp_disable.
2065 * Return: -EINVAL for bad pointers, -ENOMEM if no memory available for the
2066 * copy operation, returns 0 if no modification was done OR modification was
2069 int dev_pm_opp_enable(struct device *dev, unsigned long freq)
2071 return _opp_set_availability(dev, freq, true);
2073 EXPORT_SYMBOL_GPL(dev_pm_opp_enable);
2076 * dev_pm_opp_disable() - Disable a specific OPP
2077 * @dev: device for which we do this operation
2078 * @freq: OPP frequency to disable
2080 * Disables a provided opp. If the operation is valid, this returns
2081 * 0, else the corresponding error value. It is meant to be a temporary
2082 * control by users to make this OPP not available until the circumstances are
2083 * right to make it available again (with a call to dev_pm_opp_enable).
2085 * Return: -EINVAL for bad pointers, -ENOMEM if no memory available for the
2086 * copy operation, returns 0 if no modification was done OR modification was
2089 int dev_pm_opp_disable(struct device *dev, unsigned long freq)
2091 return _opp_set_availability(dev, freq, false);
2093 EXPORT_SYMBOL_GPL(dev_pm_opp_disable);
2096 * dev_pm_opp_register_notifier() - Register OPP notifier for the device
2097 * @dev: Device for which notifier needs to be registered
2098 * @nb: Notifier block to be registered
2100 * Return: 0 on success or a negative error value.
2102 int dev_pm_opp_register_notifier(struct device *dev, struct notifier_block *nb)
2104 struct opp_table *opp_table;
2107 opp_table = _find_opp_table(dev);
2108 if (IS_ERR(opp_table))
2109 return PTR_ERR(opp_table);
2111 ret = blocking_notifier_chain_register(&opp_table->head, nb);
2113 dev_pm_opp_put_opp_table(opp_table);
2117 EXPORT_SYMBOL(dev_pm_opp_register_notifier);
2120 * dev_pm_opp_unregister_notifier() - Unregister OPP notifier for the device
2121 * @dev: Device for which notifier needs to be unregistered
2122 * @nb: Notifier block to be unregistered
2124 * Return: 0 on success or a negative error value.
2126 int dev_pm_opp_unregister_notifier(struct device *dev,
2127 struct notifier_block *nb)
2129 struct opp_table *opp_table;
2132 opp_table = _find_opp_table(dev);
2133 if (IS_ERR(opp_table))
2134 return PTR_ERR(opp_table);
2136 ret = blocking_notifier_chain_unregister(&opp_table->head, nb);
2138 dev_pm_opp_put_opp_table(opp_table);
2142 EXPORT_SYMBOL(dev_pm_opp_unregister_notifier);
2144 void _dev_pm_opp_find_and_remove_table(struct device *dev)
2146 struct opp_table *opp_table;
2148 /* Check for existing table for 'dev' */
2149 opp_table = _find_opp_table(dev);
2150 if (IS_ERR(opp_table)) {
2151 int error = PTR_ERR(opp_table);
2153 if (error != -ENODEV)
2154 WARN(1, "%s: opp_table: %d\n",
2155 IS_ERR_OR_NULL(dev) ?
2156 "Invalid device" : dev_name(dev),
2161 _put_opp_list_kref(opp_table);
2163 /* Drop reference taken by _find_opp_table() */
2164 dev_pm_opp_put_opp_table(opp_table);
2166 /* Drop reference taken while the OPP table was added */
2167 dev_pm_opp_put_opp_table(opp_table);
2171 * dev_pm_opp_remove_table() - Free all OPPs associated with the device
2172 * @dev: device pointer used to lookup OPP table.
2174 * Free both OPPs created using static entries present in DT and the
2175 * dynamically added entries.
2177 void dev_pm_opp_remove_table(struct device *dev)
2179 _dev_pm_opp_find_and_remove_table(dev);
2181 EXPORT_SYMBOL_GPL(dev_pm_opp_remove_table);