1 // SPDX-License-Identifier: GPL-2.0-only
3 * Generic OPP OF helpers
5 * Copyright (C) 2009-2010 Texas Instruments Incorporated.
11 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13 #include <linux/cpu.h>
14 #include <linux/errno.h>
15 #include <linux/device.h>
16 #include <linux/of_device.h>
17 #include <linux/pm_domain.h>
18 #include <linux/slab.h>
19 #include <linux/export.h>
20 #include <linux/energy_model.h>
25 * Returns opp descriptor node for a device node, caller must
28 static struct device_node
*_opp_of_get_opp_desc_node(struct device_node
*np
,
31 /* "operating-points-v2" can be an array for power domain providers */
32 return of_parse_phandle(np
, "operating-points-v2", index
);
35 /* Returns opp descriptor node for a device, caller must do of_node_put() */
36 struct device_node
*dev_pm_opp_of_get_opp_desc_node(struct device
*dev
)
38 return _opp_of_get_opp_desc_node(dev
->of_node
, 0);
40 EXPORT_SYMBOL_GPL(dev_pm_opp_of_get_opp_desc_node
);
42 struct opp_table
*_managed_opp(struct device
*dev
, int index
)
44 struct opp_table
*opp_table
, *managed_table
= NULL
;
45 struct device_node
*np
;
47 np
= _opp_of_get_opp_desc_node(dev
->of_node
, index
);
51 list_for_each_entry(opp_table
, &opp_tables
, node
) {
52 if (opp_table
->np
== np
) {
54 * Multiple devices can point to the same OPP table and
55 * so will have same node-pointer, np.
57 * But the OPPs will be considered as shared only if the
58 * OPP table contains a "opp-shared" property.
60 if (opp_table
->shared_opp
== OPP_TABLE_ACCESS_SHARED
) {
61 _get_opp_table_kref(opp_table
);
62 managed_table
= opp_table
;
74 /* The caller must call dev_pm_opp_put() after the OPP is used */
75 static struct dev_pm_opp
*_find_opp_of_np(struct opp_table
*opp_table
,
76 struct device_node
*opp_np
)
78 struct dev_pm_opp
*opp
;
80 mutex_lock(&opp_table
->lock
);
82 list_for_each_entry(opp
, &opp_table
->opp_list
, node
) {
83 if (opp
->np
== opp_np
) {
85 mutex_unlock(&opp_table
->lock
);
90 mutex_unlock(&opp_table
->lock
);
95 static struct device_node
*of_parse_required_opp(struct device_node
*np
,
98 struct device_node
*required_np
;
100 required_np
= of_parse_phandle(np
, "required-opps", index
);
101 if (unlikely(!required_np
)) {
102 pr_err("%s: Unable to parse required-opps: %pOF, index: %d\n",
103 __func__
, np
, index
);
109 /* The caller must call dev_pm_opp_put_opp_table() after the table is used */
110 static struct opp_table
*_find_table_of_opp_np(struct device_node
*opp_np
)
112 struct opp_table
*opp_table
;
113 struct device_node
*opp_table_np
;
115 lockdep_assert_held(&opp_table_lock
);
117 opp_table_np
= of_get_parent(opp_np
);
121 /* It is safe to put the node now as all we need now is its address */
122 of_node_put(opp_table_np
);
124 list_for_each_entry(opp_table
, &opp_tables
, node
) {
125 if (opp_table_np
== opp_table
->np
) {
126 _get_opp_table_kref(opp_table
);
132 return ERR_PTR(-ENODEV
);
135 /* Free resources previously acquired by _opp_table_alloc_required_tables() */
136 static void _opp_table_free_required_tables(struct opp_table
*opp_table
)
138 struct opp_table
**required_opp_tables
= opp_table
->required_opp_tables
;
141 if (!required_opp_tables
)
144 for (i
= 0; i
< opp_table
->required_opp_count
; i
++) {
145 if (IS_ERR_OR_NULL(required_opp_tables
[i
]))
148 dev_pm_opp_put_opp_table(required_opp_tables
[i
]);
151 kfree(required_opp_tables
);
153 opp_table
->required_opp_count
= 0;
154 opp_table
->required_opp_tables
= NULL
;
158 * Populate all devices and opp tables which are part of "required-opps" list.
159 * Checking only the first OPP node should be enough.
161 static void _opp_table_alloc_required_tables(struct opp_table
*opp_table
,
163 struct device_node
*opp_np
)
165 struct opp_table
**required_opp_tables
;
166 struct device_node
*required_np
, *np
;
169 /* Traversing the first OPP node is all we need */
170 np
= of_get_next_available_child(opp_np
, NULL
);
172 dev_err(dev
, "Empty OPP table\n");
176 count
= of_count_phandle_with_args(np
, "required-opps", NULL
);
180 required_opp_tables
= kcalloc(count
, sizeof(*required_opp_tables
),
182 if (!required_opp_tables
)
185 opp_table
->required_opp_tables
= required_opp_tables
;
186 opp_table
->required_opp_count
= count
;
188 for (i
= 0; i
< count
; i
++) {
189 required_np
= of_parse_required_opp(np
, i
);
191 goto free_required_tables
;
193 required_opp_tables
[i
] = _find_table_of_opp_np(required_np
);
194 of_node_put(required_np
);
196 if (IS_ERR(required_opp_tables
[i
]))
197 goto free_required_tables
;
200 * We only support genpd's OPPs in the "required-opps" for now,
201 * as we don't know how much about other cases. Error out if the
202 * required OPP doesn't belong to a genpd.
204 if (!required_opp_tables
[i
]->is_genpd
) {
205 dev_err(dev
, "required-opp doesn't belong to genpd: %pOF\n",
207 goto free_required_tables
;
213 free_required_tables
:
214 _opp_table_free_required_tables(opp_table
);
219 void _of_init_opp_table(struct opp_table
*opp_table
, struct device
*dev
,
222 struct device_node
*np
, *opp_np
;
226 * Only required for backward compatibility with v1 bindings, but isn't
227 * harmful for other cases. And so we do it unconditionally.
229 np
= of_node_get(dev
->of_node
);
233 if (!of_property_read_u32(np
, "clock-latency", &val
))
234 opp_table
->clock_latency_ns_max
= val
;
235 of_property_read_u32(np
, "voltage-tolerance",
236 &opp_table
->voltage_tolerance_v1
);
238 if (of_find_property(np
, "#power-domain-cells", NULL
))
239 opp_table
->is_genpd
= true;
241 /* Get OPP table node */
242 opp_np
= _opp_of_get_opp_desc_node(np
, index
);
248 if (of_property_read_bool(opp_np
, "opp-shared"))
249 opp_table
->shared_opp
= OPP_TABLE_ACCESS_SHARED
;
251 opp_table
->shared_opp
= OPP_TABLE_ACCESS_EXCLUSIVE
;
253 opp_table
->np
= opp_np
;
255 _opp_table_alloc_required_tables(opp_table
, dev
, opp_np
);
259 void _of_clear_opp_table(struct opp_table
*opp_table
)
261 _opp_table_free_required_tables(opp_table
);
265 * Release all resources previously acquired with a call to
266 * _of_opp_alloc_required_opps().
268 void _of_opp_free_required_opps(struct opp_table
*opp_table
,
269 struct dev_pm_opp
*opp
)
271 struct dev_pm_opp
**required_opps
= opp
->required_opps
;
277 for (i
= 0; i
< opp_table
->required_opp_count
; i
++) {
278 if (!required_opps
[i
])
281 /* Put the reference back */
282 dev_pm_opp_put(required_opps
[i
]);
285 kfree(required_opps
);
286 opp
->required_opps
= NULL
;
289 /* Populate all required OPPs which are part of "required-opps" list */
290 static int _of_opp_alloc_required_opps(struct opp_table
*opp_table
,
291 struct dev_pm_opp
*opp
)
293 struct dev_pm_opp
**required_opps
;
294 struct opp_table
*required_table
;
295 struct device_node
*np
;
296 int i
, ret
, count
= opp_table
->required_opp_count
;
301 required_opps
= kcalloc(count
, sizeof(*required_opps
), GFP_KERNEL
);
305 opp
->required_opps
= required_opps
;
307 for (i
= 0; i
< count
; i
++) {
308 required_table
= opp_table
->required_opp_tables
[i
];
310 np
= of_parse_required_opp(opp
->np
, i
);
313 goto free_required_opps
;
316 required_opps
[i
] = _find_opp_of_np(required_table
, np
);
319 if (!required_opps
[i
]) {
320 pr_err("%s: Unable to find required OPP node: %pOF (%d)\n",
321 __func__
, opp
->np
, i
);
323 goto free_required_opps
;
330 _of_opp_free_required_opps(opp_table
, opp
);
335 static bool _opp_is_supported(struct device
*dev
, struct opp_table
*opp_table
,
336 struct device_node
*np
)
338 unsigned int count
= opp_table
->supported_hw_count
;
342 if (!opp_table
->supported_hw
) {
344 * In the case that no supported_hw has been set by the
345 * platform but there is an opp-supported-hw value set for
346 * an OPP then the OPP should not be enabled as there is
347 * no way to see if the hardware supports it.
349 if (of_find_property(np
, "opp-supported-hw", NULL
))
356 ret
= of_property_read_u32_index(np
, "opp-supported-hw", count
,
359 dev_warn(dev
, "%s: failed to read opp-supported-hw property at index %d: %d\n",
360 __func__
, count
, ret
);
364 /* Both of these are bitwise masks of the versions */
365 if (!(version
& opp_table
->supported_hw
[count
]))
372 static int opp_parse_supplies(struct dev_pm_opp
*opp
, struct device
*dev
,
373 struct opp_table
*opp_table
)
375 u32
*microvolt
, *microamp
= NULL
;
376 int supplies
= opp_table
->regulator_count
, vcount
, icount
, ret
, i
, j
;
377 struct property
*prop
= NULL
;
380 /* Search for "opp-microvolt-<name>" */
381 if (opp_table
->prop_name
) {
382 snprintf(name
, sizeof(name
), "opp-microvolt-%s",
383 opp_table
->prop_name
);
384 prop
= of_find_property(opp
->np
, name
, NULL
);
388 /* Search for "opp-microvolt" */
389 sprintf(name
, "opp-microvolt");
390 prop
= of_find_property(opp
->np
, name
, NULL
);
392 /* Missing property isn't a problem, but an invalid entry is */
394 if (unlikely(supplies
== -1)) {
395 /* Initialize regulator_count */
396 opp_table
->regulator_count
= 0;
403 dev_err(dev
, "%s: opp-microvolt missing although OPP managing regulators\n",
409 if (unlikely(supplies
== -1)) {
410 /* Initialize regulator_count */
411 supplies
= opp_table
->regulator_count
= 1;
412 } else if (unlikely(!supplies
)) {
413 dev_err(dev
, "%s: opp-microvolt wasn't expected\n", __func__
);
417 vcount
= of_property_count_u32_elems(opp
->np
, name
);
419 dev_err(dev
, "%s: Invalid %s property (%d)\n",
420 __func__
, name
, vcount
);
424 /* There can be one or three elements per supply */
425 if (vcount
!= supplies
&& vcount
!= supplies
* 3) {
426 dev_err(dev
, "%s: Invalid number of elements in %s property (%d) with supplies (%d)\n",
427 __func__
, name
, vcount
, supplies
);
431 microvolt
= kmalloc_array(vcount
, sizeof(*microvolt
), GFP_KERNEL
);
435 ret
= of_property_read_u32_array(opp
->np
, name
, microvolt
, vcount
);
437 dev_err(dev
, "%s: error parsing %s: %d\n", __func__
, name
, ret
);
442 /* Search for "opp-microamp-<name>" */
444 if (opp_table
->prop_name
) {
445 snprintf(name
, sizeof(name
), "opp-microamp-%s",
446 opp_table
->prop_name
);
447 prop
= of_find_property(opp
->np
, name
, NULL
);
451 /* Search for "opp-microamp" */
452 sprintf(name
, "opp-microamp");
453 prop
= of_find_property(opp
->np
, name
, NULL
);
457 icount
= of_property_count_u32_elems(opp
->np
, name
);
459 dev_err(dev
, "%s: Invalid %s property (%d)\n", __func__
,
465 if (icount
!= supplies
) {
466 dev_err(dev
, "%s: Invalid number of elements in %s property (%d) with supplies (%d)\n",
467 __func__
, name
, icount
, supplies
);
472 microamp
= kmalloc_array(icount
, sizeof(*microamp
), GFP_KERNEL
);
478 ret
= of_property_read_u32_array(opp
->np
, name
, microamp
,
481 dev_err(dev
, "%s: error parsing %s: %d\n", __func__
,
488 for (i
= 0, j
= 0; i
< supplies
; i
++) {
489 opp
->supplies
[i
].u_volt
= microvolt
[j
++];
491 if (vcount
== supplies
) {
492 opp
->supplies
[i
].u_volt_min
= opp
->supplies
[i
].u_volt
;
493 opp
->supplies
[i
].u_volt_max
= opp
->supplies
[i
].u_volt
;
495 opp
->supplies
[i
].u_volt_min
= microvolt
[j
++];
496 opp
->supplies
[i
].u_volt_max
= microvolt
[j
++];
500 opp
->supplies
[i
].u_amp
= microamp
[i
];
512 * dev_pm_opp_of_remove_table() - Free OPP table entries created from static DT
514 * @dev: device pointer used to lookup OPP table.
516 * Free OPPs created using static entries present in DT.
518 void dev_pm_opp_of_remove_table(struct device
*dev
)
520 _dev_pm_opp_find_and_remove_table(dev
);
522 EXPORT_SYMBOL_GPL(dev_pm_opp_of_remove_table
);
525 * _opp_add_static_v2() - Allocate static OPPs (As per 'v2' DT bindings)
526 * @opp_table: OPP table
527 * @dev: device for which we do this operation
530 * This function adds an opp definition to the opp table and returns status. The
531 * opp can be controlled using dev_pm_opp_enable/disable functions and may be
532 * removed by dev_pm_opp_remove.
538 * Duplicate OPPs (both freq and volt are same) and opp->available
539 * OR if the OPP is not supported by hardware.
541 * Freq are same and volt are different OR
542 * Duplicate OPPs (both freq and volt are same) and !opp->available
544 * Memory allocation failure
546 * Failed parsing the OPP node
548 static struct dev_pm_opp
*_opp_add_static_v2(struct opp_table
*opp_table
,
549 struct device
*dev
, struct device_node
*np
)
551 struct dev_pm_opp
*new_opp
;
555 bool rate_not_available
= false;
557 new_opp
= _opp_allocate(opp_table
);
559 return ERR_PTR(-ENOMEM
);
561 ret
= of_property_read_u64(np
, "opp-hz", &rate
);
563 /* "opp-hz" is optional for devices like power domains. */
564 if (!opp_table
->is_genpd
) {
565 dev_err(dev
, "%s: opp-hz not found\n", __func__
);
569 rate_not_available
= true;
572 * Rate is defined as an unsigned long in clk API, and so
573 * casting explicitly to its type. Must be fixed once rate is 64
574 * bit guaranteed in clk API.
576 new_opp
->rate
= (unsigned long)rate
;
579 of_property_read_u32(np
, "opp-level", &new_opp
->level
);
581 /* Check if the OPP supports hardware's hierarchy of versions or not */
582 if (!_opp_is_supported(dev
, opp_table
, np
)) {
583 dev_dbg(dev
, "OPP not supported by hardware: %llu\n", rate
);
587 new_opp
->turbo
= of_property_read_bool(np
, "turbo-mode");
590 new_opp
->dynamic
= false;
591 new_opp
->available
= true;
593 ret
= _of_opp_alloc_required_opps(opp_table
, new_opp
);
597 if (!of_property_read_u32(np
, "clock-latency-ns", &val
))
598 new_opp
->clock_latency_ns
= val
;
600 ret
= opp_parse_supplies(new_opp
, dev
, opp_table
);
602 goto free_required_opps
;
604 if (opp_table
->is_genpd
)
605 new_opp
->pstate
= pm_genpd_opp_to_performance_state(dev
, new_opp
);
607 ret
= _opp_add(dev
, new_opp
, opp_table
, rate_not_available
);
609 /* Don't return error for duplicate OPPs */
612 goto free_required_opps
;
615 /* OPP to select on device suspend */
616 if (of_property_read_bool(np
, "opp-suspend")) {
617 if (opp_table
->suspend_opp
) {
618 /* Pick the OPP with higher rate as suspend OPP */
619 if (new_opp
->rate
> opp_table
->suspend_opp
->rate
) {
620 opp_table
->suspend_opp
->suspend
= false;
621 new_opp
->suspend
= true;
622 opp_table
->suspend_opp
= new_opp
;
625 new_opp
->suspend
= true;
626 opp_table
->suspend_opp
= new_opp
;
630 if (new_opp
->clock_latency_ns
> opp_table
->clock_latency_ns_max
)
631 opp_table
->clock_latency_ns_max
= new_opp
->clock_latency_ns
;
633 pr_debug("%s: turbo:%d rate:%lu uv:%lu uvmin:%lu uvmax:%lu latency:%lu\n",
634 __func__
, new_opp
->turbo
, new_opp
->rate
,
635 new_opp
->supplies
[0].u_volt
, new_opp
->supplies
[0].u_volt_min
,
636 new_opp
->supplies
[0].u_volt_max
, new_opp
->clock_latency_ns
);
639 * Notify the changes in the availability of the operable
640 * frequency/voltage list.
642 blocking_notifier_call_chain(&opp_table
->head
, OPP_EVENT_ADD
, new_opp
);
646 _of_opp_free_required_opps(opp_table
, new_opp
);
653 /* Initializes OPP tables based on new bindings */
654 static int _of_add_opp_table_v2(struct device
*dev
, struct opp_table
*opp_table
)
656 struct device_node
*np
;
657 int ret
, count
= 0, pstate_count
= 0;
658 struct dev_pm_opp
*opp
;
660 /* OPP table is already initialized for the device */
661 mutex_lock(&opp_table
->lock
);
662 if (opp_table
->parsed_static_opps
) {
663 opp_table
->parsed_static_opps
++;
664 mutex_unlock(&opp_table
->lock
);
668 opp_table
->parsed_static_opps
= 1;
669 mutex_unlock(&opp_table
->lock
);
671 /* We have opp-table node now, iterate over it and add OPPs */
672 for_each_available_child_of_node(opp_table
->np
, np
) {
673 opp
= _opp_add_static_v2(opp_table
, dev
, np
);
676 dev_err(dev
, "%s: Failed to add OPP, %d\n", __func__
,
679 goto remove_static_opp
;
685 /* There should be one of more OPP defined */
686 if (WARN_ON(!count
)) {
688 goto remove_static_opp
;
691 list_for_each_entry(opp
, &opp_table
->opp_list
, node
)
692 pstate_count
+= !!opp
->pstate
;
694 /* Either all or none of the nodes shall have performance state set */
695 if (pstate_count
&& pstate_count
!= count
) {
696 dev_err(dev
, "Not all nodes have performance state set (%d: %d)\n",
697 count
, pstate_count
);
699 goto remove_static_opp
;
703 opp_table
->genpd_performance_state
= true;
708 _opp_remove_all_static(opp_table
);
713 /* Initializes OPP tables based on old-deprecated bindings */
714 static int _of_add_opp_table_v1(struct device
*dev
, struct opp_table
*opp_table
)
716 const struct property
*prop
;
720 prop
= of_find_property(dev
->of_node
, "operating-points", NULL
);
727 * Each OPP is a set of tuples consisting of frequency and
728 * voltage like <freq-kHz vol-uV>.
730 nr
= prop
->length
/ sizeof(u32
);
732 dev_err(dev
, "%s: Invalid OPP table\n", __func__
);
738 unsigned long freq
= be32_to_cpup(val
++) * 1000;
739 unsigned long volt
= be32_to_cpup(val
++);
741 ret
= _opp_add_v1(opp_table
, dev
, freq
, volt
, false);
743 dev_err(dev
, "%s: Failed to add OPP %ld (%d)\n",
744 __func__
, freq
, ret
);
745 _opp_remove_all_static(opp_table
);
755 * dev_pm_opp_of_add_table() - Initialize opp table from device tree
756 * @dev: device pointer used to lookup OPP table.
758 * Register the initial OPP table with the OPP library for given device.
762 * Duplicate OPPs (both freq and volt are same) and opp->available
763 * -EEXIST Freq are same and volt are different OR
764 * Duplicate OPPs (both freq and volt are same) and !opp->available
765 * -ENOMEM Memory allocation failure
766 * -ENODEV when 'operating-points' property is not found or is invalid data
768 * -ENODATA when empty 'operating-points' property is found
769 * -EINVAL when invalid entries are found in opp-v2 table
771 int dev_pm_opp_of_add_table(struct device
*dev
)
773 struct opp_table
*opp_table
;
776 opp_table
= dev_pm_opp_get_opp_table_indexed(dev
, 0);
781 * OPPs have two version of bindings now. Also try the old (v1)
782 * bindings for backward compatibility with older dtbs.
785 ret
= _of_add_opp_table_v2(dev
, opp_table
);
787 ret
= _of_add_opp_table_v1(dev
, opp_table
);
790 dev_pm_opp_put_opp_table(opp_table
);
794 EXPORT_SYMBOL_GPL(dev_pm_opp_of_add_table
);
797 * dev_pm_opp_of_add_table_indexed() - Initialize indexed opp table from device tree
798 * @dev: device pointer used to lookup OPP table.
799 * @index: Index number.
801 * Register the initial OPP table with the OPP library for given device only
802 * using the "operating-points-v2" property.
806 * Duplicate OPPs (both freq and volt are same) and opp->available
807 * -EEXIST Freq are same and volt are different OR
808 * Duplicate OPPs (both freq and volt are same) and !opp->available
809 * -ENOMEM Memory allocation failure
810 * -ENODEV when 'operating-points' property is not found or is invalid data
812 * -ENODATA when empty 'operating-points' property is found
813 * -EINVAL when invalid entries are found in opp-v2 table
815 int dev_pm_opp_of_add_table_indexed(struct device
*dev
, int index
)
817 struct opp_table
*opp_table
;
822 * If only one phandle is present, then the same OPP table
823 * applies for all index requests.
825 count
= of_count_phandle_with_args(dev
->of_node
,
826 "operating-points-v2", NULL
);
831 opp_table
= dev_pm_opp_get_opp_table_indexed(dev
, index
);
835 ret
= _of_add_opp_table_v2(dev
, opp_table
);
837 dev_pm_opp_put_opp_table(opp_table
);
841 EXPORT_SYMBOL_GPL(dev_pm_opp_of_add_table_indexed
);
843 /* CPU device specific helpers */
846 * dev_pm_opp_of_cpumask_remove_table() - Removes OPP table for @cpumask
847 * @cpumask: cpumask for which OPP table needs to be removed
849 * This removes the OPP tables for CPUs present in the @cpumask.
850 * This should be used only to remove static entries created from DT.
852 void dev_pm_opp_of_cpumask_remove_table(const struct cpumask
*cpumask
)
854 _dev_pm_opp_cpumask_remove_table(cpumask
, -1);
856 EXPORT_SYMBOL_GPL(dev_pm_opp_of_cpumask_remove_table
);
859 * dev_pm_opp_of_cpumask_add_table() - Adds OPP table for @cpumask
860 * @cpumask: cpumask for which OPP table needs to be added.
862 * This adds the OPP tables for CPUs present in the @cpumask.
864 int dev_pm_opp_of_cpumask_add_table(const struct cpumask
*cpumask
)
866 struct device
*cpu_dev
;
869 if (WARN_ON(cpumask_empty(cpumask
)))
872 for_each_cpu(cpu
, cpumask
) {
873 cpu_dev
= get_cpu_device(cpu
);
875 pr_err("%s: failed to get cpu%d device\n", __func__
,
881 ret
= dev_pm_opp_of_add_table(cpu_dev
);
884 * OPP may get registered dynamically, don't print error
887 pr_debug("%s: couldn't find opp table for cpu:%d, %d\n",
897 /* Free all other OPPs */
898 _dev_pm_opp_cpumask_remove_table(cpumask
, cpu
);
902 EXPORT_SYMBOL_GPL(dev_pm_opp_of_cpumask_add_table
);
905 * Works only for OPP v2 bindings.
907 * Returns -ENOENT if operating-points-v2 bindings aren't supported.
910 * dev_pm_opp_of_get_sharing_cpus() - Get cpumask of CPUs sharing OPPs with
911 * @cpu_dev using operating-points-v2
914 * @cpu_dev: CPU device for which we do this operation
915 * @cpumask: cpumask to update with information of sharing CPUs
917 * This updates the @cpumask with CPUs that are sharing OPPs with @cpu_dev.
919 * Returns -ENOENT if operating-points-v2 isn't present for @cpu_dev.
921 int dev_pm_opp_of_get_sharing_cpus(struct device
*cpu_dev
,
922 struct cpumask
*cpumask
)
924 struct device_node
*np
, *tmp_np
, *cpu_np
;
927 /* Get OPP descriptor node */
928 np
= dev_pm_opp_of_get_opp_desc_node(cpu_dev
);
930 dev_dbg(cpu_dev
, "%s: Couldn't find opp node.\n", __func__
);
934 cpumask_set_cpu(cpu_dev
->id
, cpumask
);
936 /* OPPs are shared ? */
937 if (!of_property_read_bool(np
, "opp-shared"))
940 for_each_possible_cpu(cpu
) {
941 if (cpu
== cpu_dev
->id
)
944 cpu_np
= of_cpu_device_node_get(cpu
);
946 dev_err(cpu_dev
, "%s: failed to get cpu%d node\n",
952 /* Get OPP descriptor node */
953 tmp_np
= _opp_of_get_opp_desc_node(cpu_np
, 0);
956 pr_err("%pOF: Couldn't find opp node\n", cpu_np
);
961 /* CPUs are sharing opp node */
963 cpumask_set_cpu(cpu
, cpumask
);
972 EXPORT_SYMBOL_GPL(dev_pm_opp_of_get_sharing_cpus
);
975 * of_get_required_opp_performance_state() - Search for required OPP and return its performance state.
976 * @np: Node that contains the "required-opps" property.
977 * @index: Index of the phandle to parse.
979 * Returns the performance state of the OPP pointed out by the "required-opps"
980 * property at @index in @np.
982 * Return: Zero or positive performance state on success, otherwise negative
985 int of_get_required_opp_performance_state(struct device_node
*np
, int index
)
987 struct dev_pm_opp
*opp
;
988 struct device_node
*required_np
;
989 struct opp_table
*opp_table
;
990 int pstate
= -EINVAL
;
992 required_np
= of_parse_required_opp(np
, index
);
996 opp_table
= _find_table_of_opp_np(required_np
);
997 if (IS_ERR(opp_table
)) {
998 pr_err("%s: Failed to find required OPP table %pOF: %ld\n",
999 __func__
, np
, PTR_ERR(opp_table
));
1000 goto put_required_np
;
1003 opp
= _find_opp_of_np(opp_table
, required_np
);
1005 pstate
= opp
->pstate
;
1006 dev_pm_opp_put(opp
);
1009 dev_pm_opp_put_opp_table(opp_table
);
1012 of_node_put(required_np
);
1016 EXPORT_SYMBOL_GPL(of_get_required_opp_performance_state
);
1019 * dev_pm_opp_get_of_node() - Gets the DT node corresponding to an opp
1020 * @opp: opp for which DT node has to be returned for
1022 * Return: DT node corresponding to the opp, else 0 on success.
1024 * The caller needs to put the node with of_node_put() after using it.
1026 struct device_node
*dev_pm_opp_get_of_node(struct dev_pm_opp
*opp
)
1028 if (IS_ERR_OR_NULL(opp
)) {
1029 pr_err("%s: Invalid parameters\n", __func__
);
1033 return of_node_get(opp
->np
);
1035 EXPORT_SYMBOL_GPL(dev_pm_opp_get_of_node
);
1038 * Callback function provided to the Energy Model framework upon registration.
1039 * This computes the power estimated by @CPU at @kHz if it is the frequency
1040 * of an existing OPP, or at the frequency of the first OPP above @kHz otherwise
1041 * (see dev_pm_opp_find_freq_ceil()). This function updates @kHz to the ceiled
1042 * frequency and @mW to the associated power. The power is estimated as
1043 * P = C * V^2 * f with C being the CPU's capacitance and V and f respectively
1044 * the voltage and frequency of the OPP.
1046 * Returns -ENODEV if the CPU device cannot be found, -EINVAL if the power
1047 * calculation failed because of missing parameters, 0 otherwise.
1049 static int __maybe_unused
_get_cpu_power(unsigned long *mW
, unsigned long *kHz
,
1052 struct device
*cpu_dev
;
1053 struct dev_pm_opp
*opp
;
1054 struct device_node
*np
;
1055 unsigned long mV
, Hz
;
1060 cpu_dev
= get_cpu_device(cpu
);
1064 np
= of_node_get(cpu_dev
->of_node
);
1068 ret
= of_property_read_u32(np
, "dynamic-power-coefficient", &cap
);
1074 opp
= dev_pm_opp_find_freq_ceil(cpu_dev
, &Hz
);
1078 mV
= dev_pm_opp_get_voltage(opp
) / 1000;
1079 dev_pm_opp_put(opp
);
1083 tmp
= (u64
)cap
* mV
* mV
* (Hz
/ 1000000);
1084 do_div(tmp
, 1000000000);
1086 *mW
= (unsigned long)tmp
;
1093 * dev_pm_opp_of_register_em() - Attempt to register an Energy Model
1094 * @cpus : CPUs for which an Energy Model has to be registered
1096 * This checks whether the "dynamic-power-coefficient" devicetree property has
1097 * been specified, and tries to register an Energy Model with it if it has.
1099 void dev_pm_opp_of_register_em(struct cpumask
*cpus
)
1101 struct em_data_callback em_cb
= EM_DATA_CB(_get_cpu_power
);
1102 int ret
, nr_opp
, cpu
= cpumask_first(cpus
);
1103 struct device
*cpu_dev
;
1104 struct device_node
*np
;
1107 cpu_dev
= get_cpu_device(cpu
);
1111 nr_opp
= dev_pm_opp_get_opp_count(cpu_dev
);
1115 np
= of_node_get(cpu_dev
->of_node
);
1120 * Register an EM only if the 'dynamic-power-coefficient' property is
1121 * set in devicetree. It is assumed the voltage values are known if that
1122 * property is set since it is useless otherwise. If voltages are not
1123 * known, just let the EM registration fail with an error to alert the
1124 * user about the inconsistent configuration.
1126 ret
= of_property_read_u32(np
, "dynamic-power-coefficient", &cap
);
1131 em_register_perf_domain(cpus
, nr_opp
, &em_cb
);
1133 EXPORT_SYMBOL_GPL(dev_pm_opp_of_register_em
);