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 opp_table_np
= of_get_parent(opp_np
);
119 /* It is safe to put the node now as all we need now is its address */
120 of_node_put(opp_table_np
);
122 mutex_lock(&opp_table_lock
);
123 list_for_each_entry(opp_table
, &opp_tables
, node
) {
124 if (opp_table_np
== opp_table
->np
) {
125 _get_opp_table_kref(opp_table
);
126 mutex_unlock(&opp_table_lock
);
130 mutex_unlock(&opp_table_lock
);
133 return ERR_PTR(-ENODEV
);
136 /* Free resources previously acquired by _opp_table_alloc_required_tables() */
137 static void _opp_table_free_required_tables(struct opp_table
*opp_table
)
139 struct opp_table
**required_opp_tables
= opp_table
->required_opp_tables
;
142 if (!required_opp_tables
)
145 for (i
= 0; i
< opp_table
->required_opp_count
; i
++) {
146 if (IS_ERR_OR_NULL(required_opp_tables
[i
]))
149 dev_pm_opp_put_opp_table(required_opp_tables
[i
]);
152 kfree(required_opp_tables
);
154 opp_table
->required_opp_count
= 0;
155 opp_table
->required_opp_tables
= NULL
;
159 * Populate all devices and opp tables which are part of "required-opps" list.
160 * Checking only the first OPP node should be enough.
162 static void _opp_table_alloc_required_tables(struct opp_table
*opp_table
,
164 struct device_node
*opp_np
)
166 struct opp_table
**required_opp_tables
;
167 struct device_node
*required_np
, *np
;
170 /* Traversing the first OPP node is all we need */
171 np
= of_get_next_available_child(opp_np
, NULL
);
173 dev_warn(dev
, "Empty OPP table\n");
178 count
= of_count_phandle_with_args(np
, "required-opps", NULL
);
182 required_opp_tables
= kcalloc(count
, sizeof(*required_opp_tables
),
184 if (!required_opp_tables
)
187 opp_table
->required_opp_tables
= required_opp_tables
;
188 opp_table
->required_opp_count
= count
;
190 for (i
= 0; i
< count
; i
++) {
191 required_np
= of_parse_required_opp(np
, i
);
193 goto free_required_tables
;
195 required_opp_tables
[i
] = _find_table_of_opp_np(required_np
);
196 of_node_put(required_np
);
198 if (IS_ERR(required_opp_tables
[i
]))
199 goto free_required_tables
;
202 * We only support genpd's OPPs in the "required-opps" for now,
203 * as we don't know how much about other cases. Error out if the
204 * required OPP doesn't belong to a genpd.
206 if (!required_opp_tables
[i
]->is_genpd
) {
207 dev_err(dev
, "required-opp doesn't belong to genpd: %pOF\n",
209 goto free_required_tables
;
215 free_required_tables
:
216 _opp_table_free_required_tables(opp_table
);
221 void _of_init_opp_table(struct opp_table
*opp_table
, struct device
*dev
,
224 struct device_node
*np
, *opp_np
;
228 * Only required for backward compatibility with v1 bindings, but isn't
229 * harmful for other cases. And so we do it unconditionally.
231 np
= of_node_get(dev
->of_node
);
235 if (!of_property_read_u32(np
, "clock-latency", &val
))
236 opp_table
->clock_latency_ns_max
= val
;
237 of_property_read_u32(np
, "voltage-tolerance",
238 &opp_table
->voltage_tolerance_v1
);
240 if (of_find_property(np
, "#power-domain-cells", NULL
))
241 opp_table
->is_genpd
= true;
243 /* Get OPP table node */
244 opp_np
= _opp_of_get_opp_desc_node(np
, index
);
250 if (of_property_read_bool(opp_np
, "opp-shared"))
251 opp_table
->shared_opp
= OPP_TABLE_ACCESS_SHARED
;
253 opp_table
->shared_opp
= OPP_TABLE_ACCESS_EXCLUSIVE
;
255 opp_table
->np
= opp_np
;
257 _opp_table_alloc_required_tables(opp_table
, dev
, opp_np
);
261 void _of_clear_opp_table(struct opp_table
*opp_table
)
263 _opp_table_free_required_tables(opp_table
);
267 * Release all resources previously acquired with a call to
268 * _of_opp_alloc_required_opps().
270 void _of_opp_free_required_opps(struct opp_table
*opp_table
,
271 struct dev_pm_opp
*opp
)
273 struct dev_pm_opp
**required_opps
= opp
->required_opps
;
279 for (i
= 0; i
< opp_table
->required_opp_count
; i
++) {
280 if (!required_opps
[i
])
283 /* Put the reference back */
284 dev_pm_opp_put(required_opps
[i
]);
287 kfree(required_opps
);
288 opp
->required_opps
= NULL
;
291 /* Populate all required OPPs which are part of "required-opps" list */
292 static int _of_opp_alloc_required_opps(struct opp_table
*opp_table
,
293 struct dev_pm_opp
*opp
)
295 struct dev_pm_opp
**required_opps
;
296 struct opp_table
*required_table
;
297 struct device_node
*np
;
298 int i
, ret
, count
= opp_table
->required_opp_count
;
303 required_opps
= kcalloc(count
, sizeof(*required_opps
), GFP_KERNEL
);
307 opp
->required_opps
= required_opps
;
309 for (i
= 0; i
< count
; i
++) {
310 required_table
= opp_table
->required_opp_tables
[i
];
312 np
= of_parse_required_opp(opp
->np
, i
);
315 goto free_required_opps
;
318 required_opps
[i
] = _find_opp_of_np(required_table
, np
);
321 if (!required_opps
[i
]) {
322 pr_err("%s: Unable to find required OPP node: %pOF (%d)\n",
323 __func__
, opp
->np
, i
);
325 goto free_required_opps
;
332 _of_opp_free_required_opps(opp_table
, opp
);
337 static int _bandwidth_supported(struct device
*dev
, struct opp_table
*opp_table
)
339 struct device_node
*np
, *opp_np
;
340 struct property
*prop
;
343 np
= of_node_get(dev
->of_node
);
347 opp_np
= _opp_of_get_opp_desc_node(np
, 0);
350 opp_np
= of_node_get(opp_table
->np
);
353 /* Lets not fail in case we are parsing opp-v1 bindings */
357 /* Checking only first OPP is sufficient */
358 np
= of_get_next_available_child(opp_np
, NULL
);
360 dev_err(dev
, "OPP table empty\n");
365 prop
= of_find_property(np
, "opp-peak-kBps", NULL
);
368 if (!prop
|| !prop
->length
)
374 int dev_pm_opp_of_find_icc_paths(struct device
*dev
,
375 struct opp_table
*opp_table
)
377 struct device_node
*np
;
378 int ret
, i
, count
, num_paths
;
379 struct icc_path
**paths
;
381 ret
= _bandwidth_supported(dev
, opp_table
);
383 return 0; /* Empty OPP table is a valid corner-case, let's not fail */
389 np
= of_node_get(dev
->of_node
);
393 count
= of_count_phandle_with_args(np
, "interconnects",
394 "#interconnect-cells");
399 /* two phandles when #interconnect-cells = <1> */
401 dev_err(dev
, "%s: Invalid interconnects values\n", __func__
);
405 num_paths
= count
/ 2;
406 paths
= kcalloc(num_paths
, sizeof(*paths
), GFP_KERNEL
);
410 for (i
= 0; i
< num_paths
; i
++) {
411 paths
[i
] = of_icc_get_by_index(dev
, i
);
412 if (IS_ERR(paths
[i
])) {
413 ret
= PTR_ERR(paths
[i
]);
414 if (ret
!= -EPROBE_DEFER
) {
415 dev_err(dev
, "%s: Unable to get path%d: %d\n",
423 opp_table
->paths
= paths
;
424 opp_table
->path_count
= num_paths
;
436 EXPORT_SYMBOL_GPL(dev_pm_opp_of_find_icc_paths
);
438 static bool _opp_is_supported(struct device
*dev
, struct opp_table
*opp_table
,
439 struct device_node
*np
)
441 unsigned int levels
= opp_table
->supported_hw_count
;
442 int count
, versions
, ret
, i
, j
;
445 if (!opp_table
->supported_hw
) {
447 * In the case that no supported_hw has been set by the
448 * platform but there is an opp-supported-hw value set for
449 * an OPP then the OPP should not be enabled as there is
450 * no way to see if the hardware supports it.
452 if (of_find_property(np
, "opp-supported-hw", NULL
))
458 count
= of_property_count_u32_elems(np
, "opp-supported-hw");
459 if (count
<= 0 || count
% levels
) {
460 dev_err(dev
, "%s: Invalid opp-supported-hw property (%d)\n",
465 versions
= count
/ levels
;
467 /* All levels in at least one of the versions should match */
468 for (i
= 0; i
< versions
; i
++) {
469 bool supported
= true;
471 for (j
= 0; j
< levels
; j
++) {
472 ret
= of_property_read_u32_index(np
, "opp-supported-hw",
473 i
* levels
+ j
, &val
);
475 dev_warn(dev
, "%s: failed to read opp-supported-hw property at index %d: %d\n",
476 __func__
, i
* levels
+ j
, ret
);
480 /* Check if the level is supported */
481 if (!(val
& opp_table
->supported_hw
[j
])) {
494 static int opp_parse_supplies(struct dev_pm_opp
*opp
, struct device
*dev
,
495 struct opp_table
*opp_table
)
497 u32
*microvolt
, *microamp
= NULL
;
498 int supplies
= opp_table
->regulator_count
, vcount
, icount
, ret
, i
, j
;
499 struct property
*prop
= NULL
;
502 /* Search for "opp-microvolt-<name>" */
503 if (opp_table
->prop_name
) {
504 snprintf(name
, sizeof(name
), "opp-microvolt-%s",
505 opp_table
->prop_name
);
506 prop
= of_find_property(opp
->np
, name
, NULL
);
510 /* Search for "opp-microvolt" */
511 sprintf(name
, "opp-microvolt");
512 prop
= of_find_property(opp
->np
, name
, NULL
);
514 /* Missing property isn't a problem, but an invalid entry is */
516 if (unlikely(supplies
== -1)) {
517 /* Initialize regulator_count */
518 opp_table
->regulator_count
= 0;
525 dev_err(dev
, "%s: opp-microvolt missing although OPP managing regulators\n",
531 if (unlikely(supplies
== -1)) {
532 /* Initialize regulator_count */
533 supplies
= opp_table
->regulator_count
= 1;
534 } else if (unlikely(!supplies
)) {
535 dev_err(dev
, "%s: opp-microvolt wasn't expected\n", __func__
);
539 vcount
= of_property_count_u32_elems(opp
->np
, name
);
541 dev_err(dev
, "%s: Invalid %s property (%d)\n",
542 __func__
, name
, vcount
);
546 /* There can be one or three elements per supply */
547 if (vcount
!= supplies
&& vcount
!= supplies
* 3) {
548 dev_err(dev
, "%s: Invalid number of elements in %s property (%d) with supplies (%d)\n",
549 __func__
, name
, vcount
, supplies
);
553 microvolt
= kmalloc_array(vcount
, sizeof(*microvolt
), GFP_KERNEL
);
557 ret
= of_property_read_u32_array(opp
->np
, name
, microvolt
, vcount
);
559 dev_err(dev
, "%s: error parsing %s: %d\n", __func__
, name
, ret
);
564 /* Search for "opp-microamp-<name>" */
566 if (opp_table
->prop_name
) {
567 snprintf(name
, sizeof(name
), "opp-microamp-%s",
568 opp_table
->prop_name
);
569 prop
= of_find_property(opp
->np
, name
, NULL
);
573 /* Search for "opp-microamp" */
574 sprintf(name
, "opp-microamp");
575 prop
= of_find_property(opp
->np
, name
, NULL
);
579 icount
= of_property_count_u32_elems(opp
->np
, name
);
581 dev_err(dev
, "%s: Invalid %s property (%d)\n", __func__
,
587 if (icount
!= supplies
) {
588 dev_err(dev
, "%s: Invalid number of elements in %s property (%d) with supplies (%d)\n",
589 __func__
, name
, icount
, supplies
);
594 microamp
= kmalloc_array(icount
, sizeof(*microamp
), GFP_KERNEL
);
600 ret
= of_property_read_u32_array(opp
->np
, name
, microamp
,
603 dev_err(dev
, "%s: error parsing %s: %d\n", __func__
,
610 for (i
= 0, j
= 0; i
< supplies
; i
++) {
611 opp
->supplies
[i
].u_volt
= microvolt
[j
++];
613 if (vcount
== supplies
) {
614 opp
->supplies
[i
].u_volt_min
= opp
->supplies
[i
].u_volt
;
615 opp
->supplies
[i
].u_volt_max
= opp
->supplies
[i
].u_volt
;
617 opp
->supplies
[i
].u_volt_min
= microvolt
[j
++];
618 opp
->supplies
[i
].u_volt_max
= microvolt
[j
++];
622 opp
->supplies
[i
].u_amp
= microamp
[i
];
634 * dev_pm_opp_of_remove_table() - Free OPP table entries created from static DT
636 * @dev: device pointer used to lookup OPP table.
638 * Free OPPs created using static entries present in DT.
640 void dev_pm_opp_of_remove_table(struct device
*dev
)
642 dev_pm_opp_remove_table(dev
);
644 EXPORT_SYMBOL_GPL(dev_pm_opp_of_remove_table
);
646 static int _read_bw(struct dev_pm_opp
*new_opp
, struct opp_table
*table
,
647 struct device_node
*np
, bool peak
)
649 const char *name
= peak
? "opp-peak-kBps" : "opp-avg-kBps";
650 struct property
*prop
;
654 prop
= of_find_property(np
, name
, NULL
);
658 count
= prop
->length
/ sizeof(u32
);
659 if (table
->path_count
!= count
) {
660 pr_err("%s: Mismatch between %s and paths (%d %d)\n",
661 __func__
, name
, count
, table
->path_count
);
665 bw
= kmalloc_array(count
, sizeof(*bw
), GFP_KERNEL
);
669 ret
= of_property_read_u32_array(np
, name
, bw
, count
);
671 pr_err("%s: Error parsing %s: %d\n", __func__
, name
, ret
);
675 for (i
= 0; i
< count
; i
++) {
677 new_opp
->bandwidth
[i
].peak
= kBps_to_icc(bw
[i
]);
679 new_opp
->bandwidth
[i
].avg
= kBps_to_icc(bw
[i
]);
687 static int _read_opp_key(struct dev_pm_opp
*new_opp
, struct opp_table
*table
,
688 struct device_node
*np
, bool *rate_not_available
)
694 ret
= of_property_read_u64(np
, "opp-hz", &rate
);
697 * Rate is defined as an unsigned long in clk API, and so
698 * casting explicitly to its type. Must be fixed once rate is 64
699 * bit guaranteed in clk API.
701 new_opp
->rate
= (unsigned long)rate
;
704 *rate_not_available
= !!ret
;
707 * Bandwidth consists of peak and average (optional) values:
708 * opp-peak-kBps = <path1_value path2_value>;
709 * opp-avg-kBps = <path1_value path2_value>;
711 ret
= _read_bw(new_opp
, table
, np
, true);
714 ret
= _read_bw(new_opp
, table
, np
, false);
717 /* The properties were found but we failed to parse them */
718 if (ret
&& ret
!= -ENODEV
)
721 if (!of_property_read_u32(np
, "opp-level", &new_opp
->level
))
731 * _opp_add_static_v2() - Allocate static OPPs (As per 'v2' DT bindings)
732 * @opp_table: OPP table
733 * @dev: device for which we do this operation
736 * This function adds an opp definition to the opp table and returns status. The
737 * opp can be controlled using dev_pm_opp_enable/disable functions and may be
738 * removed by dev_pm_opp_remove.
744 * Duplicate OPPs (both freq and volt are same) and opp->available
745 * OR if the OPP is not supported by hardware.
747 * Freq are same and volt are different OR
748 * Duplicate OPPs (both freq and volt are same) and !opp->available
750 * Memory allocation failure
752 * Failed parsing the OPP node
754 static struct dev_pm_opp
*_opp_add_static_v2(struct opp_table
*opp_table
,
755 struct device
*dev
, struct device_node
*np
)
757 struct dev_pm_opp
*new_opp
;
761 bool rate_not_available
= false;
763 new_opp
= _opp_allocate(opp_table
);
765 return ERR_PTR(-ENOMEM
);
767 ret
= _read_opp_key(new_opp
, opp_table
, np
, &rate_not_available
);
768 if (ret
< 0 && !opp_table
->is_genpd
) {
769 dev_err(dev
, "%s: opp key field not found\n", __func__
);
773 /* Check if the OPP supports hardware's hierarchy of versions or not */
774 if (!_opp_is_supported(dev
, opp_table
, np
)) {
775 dev_dbg(dev
, "OPP not supported by hardware: %llu\n", rate
);
779 new_opp
->turbo
= of_property_read_bool(np
, "turbo-mode");
782 new_opp
->dynamic
= false;
783 new_opp
->available
= true;
785 ret
= _of_opp_alloc_required_opps(opp_table
, new_opp
);
789 if (!of_property_read_u32(np
, "clock-latency-ns", &val
))
790 new_opp
->clock_latency_ns
= val
;
792 ret
= opp_parse_supplies(new_opp
, dev
, opp_table
);
794 goto free_required_opps
;
796 if (opp_table
->is_genpd
)
797 new_opp
->pstate
= pm_genpd_opp_to_performance_state(dev
, new_opp
);
799 ret
= _opp_add(dev
, new_opp
, opp_table
, rate_not_available
);
801 /* Don't return error for duplicate OPPs */
804 goto free_required_opps
;
807 /* OPP to select on device suspend */
808 if (of_property_read_bool(np
, "opp-suspend")) {
809 if (opp_table
->suspend_opp
) {
810 /* Pick the OPP with higher rate as suspend OPP */
811 if (new_opp
->rate
> opp_table
->suspend_opp
->rate
) {
812 opp_table
->suspend_opp
->suspend
= false;
813 new_opp
->suspend
= true;
814 opp_table
->suspend_opp
= new_opp
;
817 new_opp
->suspend
= true;
818 opp_table
->suspend_opp
= new_opp
;
822 if (new_opp
->clock_latency_ns
> opp_table
->clock_latency_ns_max
)
823 opp_table
->clock_latency_ns_max
= new_opp
->clock_latency_ns
;
825 pr_debug("%s: turbo:%d rate:%lu uv:%lu uvmin:%lu uvmax:%lu latency:%lu\n",
826 __func__
, new_opp
->turbo
, new_opp
->rate
,
827 new_opp
->supplies
[0].u_volt
, new_opp
->supplies
[0].u_volt_min
,
828 new_opp
->supplies
[0].u_volt_max
, new_opp
->clock_latency_ns
);
831 * Notify the changes in the availability of the operable
832 * frequency/voltage list.
834 blocking_notifier_call_chain(&opp_table
->head
, OPP_EVENT_ADD
, new_opp
);
838 _of_opp_free_required_opps(opp_table
, new_opp
);
845 /* Initializes OPP tables based on new bindings */
846 static int _of_add_opp_table_v2(struct device
*dev
, struct opp_table
*opp_table
)
848 struct device_node
*np
;
850 struct dev_pm_opp
*opp
;
852 /* OPP table is already initialized for the device */
853 mutex_lock(&opp_table
->lock
);
854 if (opp_table
->parsed_static_opps
) {
855 opp_table
->parsed_static_opps
++;
856 mutex_unlock(&opp_table
->lock
);
860 opp_table
->parsed_static_opps
= 1;
861 mutex_unlock(&opp_table
->lock
);
863 /* We have opp-table node now, iterate over it and add OPPs */
864 for_each_available_child_of_node(opp_table
->np
, np
) {
865 opp
= _opp_add_static_v2(opp_table
, dev
, np
);
868 dev_err(dev
, "%s: Failed to add OPP, %d\n", __func__
,
871 goto remove_static_opp
;
877 /* There should be one of more OPP defined */
878 if (WARN_ON(!count
)) {
880 goto remove_static_opp
;
883 list_for_each_entry(opp
, &opp_table
->opp_list
, node
) {
884 /* Any non-zero performance state would enable the feature */
886 opp_table
->genpd_performance_state
= true;
894 _opp_remove_all_static(opp_table
);
899 /* Initializes OPP tables based on old-deprecated bindings */
900 static int _of_add_opp_table_v1(struct device
*dev
, struct opp_table
*opp_table
)
902 const struct property
*prop
;
906 mutex_lock(&opp_table
->lock
);
907 if (opp_table
->parsed_static_opps
) {
908 opp_table
->parsed_static_opps
++;
909 mutex_unlock(&opp_table
->lock
);
913 opp_table
->parsed_static_opps
= 1;
914 mutex_unlock(&opp_table
->lock
);
916 prop
= of_find_property(dev
->of_node
, "operating-points", NULL
);
919 goto remove_static_opp
;
923 goto remove_static_opp
;
927 * Each OPP is a set of tuples consisting of frequency and
928 * voltage like <freq-kHz vol-uV>.
930 nr
= prop
->length
/ sizeof(u32
);
932 dev_err(dev
, "%s: Invalid OPP table\n", __func__
);
934 goto remove_static_opp
;
939 unsigned long freq
= be32_to_cpup(val
++) * 1000;
940 unsigned long volt
= be32_to_cpup(val
++);
942 ret
= _opp_add_v1(opp_table
, dev
, freq
, volt
, false);
944 dev_err(dev
, "%s: Failed to add OPP %ld (%d)\n",
945 __func__
, freq
, ret
);
946 goto remove_static_opp
;
954 _opp_remove_all_static(opp_table
);
960 * dev_pm_opp_of_add_table() - Initialize opp table from device tree
961 * @dev: device pointer used to lookup OPP table.
963 * Register the initial OPP table with the OPP library for given device.
967 * Duplicate OPPs (both freq and volt are same) and opp->available
968 * -EEXIST Freq are same and volt are different OR
969 * Duplicate OPPs (both freq and volt are same) and !opp->available
970 * -ENOMEM Memory allocation failure
971 * -ENODEV when 'operating-points' property is not found or is invalid data
973 * -ENODATA when empty 'operating-points' property is found
974 * -EINVAL when invalid entries are found in opp-v2 table
976 int dev_pm_opp_of_add_table(struct device
*dev
)
978 struct opp_table
*opp_table
;
981 opp_table
= _add_opp_table_indexed(dev
, 0);
982 if (IS_ERR(opp_table
))
983 return PTR_ERR(opp_table
);
986 * OPPs have two version of bindings now. Also try the old (v1)
987 * bindings for backward compatibility with older dtbs.
990 ret
= _of_add_opp_table_v2(dev
, opp_table
);
992 ret
= _of_add_opp_table_v1(dev
, opp_table
);
995 dev_pm_opp_put_opp_table(opp_table
);
999 EXPORT_SYMBOL_GPL(dev_pm_opp_of_add_table
);
1002 * dev_pm_opp_of_add_table_indexed() - Initialize indexed opp table from device tree
1003 * @dev: device pointer used to lookup OPP table.
1004 * @index: Index number.
1006 * Register the initial OPP table with the OPP library for given device only
1007 * using the "operating-points-v2" property.
1011 * Duplicate OPPs (both freq and volt are same) and opp->available
1012 * -EEXIST Freq are same and volt are different OR
1013 * Duplicate OPPs (both freq and volt are same) and !opp->available
1014 * -ENOMEM Memory allocation failure
1015 * -ENODEV when 'operating-points' property is not found or is invalid data
1017 * -ENODATA when empty 'operating-points' property is found
1018 * -EINVAL when invalid entries are found in opp-v2 table
1020 int dev_pm_opp_of_add_table_indexed(struct device
*dev
, int index
)
1022 struct opp_table
*opp_table
;
1027 * If only one phandle is present, then the same OPP table
1028 * applies for all index requests.
1030 count
= of_count_phandle_with_args(dev
->of_node
,
1031 "operating-points-v2", NULL
);
1036 opp_table
= _add_opp_table_indexed(dev
, index
);
1037 if (IS_ERR(opp_table
))
1038 return PTR_ERR(opp_table
);
1040 ret
= _of_add_opp_table_v2(dev
, opp_table
);
1042 dev_pm_opp_put_opp_table(opp_table
);
1046 EXPORT_SYMBOL_GPL(dev_pm_opp_of_add_table_indexed
);
1048 /* CPU device specific helpers */
1051 * dev_pm_opp_of_cpumask_remove_table() - Removes OPP table for @cpumask
1052 * @cpumask: cpumask for which OPP table needs to be removed
1054 * This removes the OPP tables for CPUs present in the @cpumask.
1055 * This should be used only to remove static entries created from DT.
1057 void dev_pm_opp_of_cpumask_remove_table(const struct cpumask
*cpumask
)
1059 _dev_pm_opp_cpumask_remove_table(cpumask
, -1);
1061 EXPORT_SYMBOL_GPL(dev_pm_opp_of_cpumask_remove_table
);
1064 * dev_pm_opp_of_cpumask_add_table() - Adds OPP table for @cpumask
1065 * @cpumask: cpumask for which OPP table needs to be added.
1067 * This adds the OPP tables for CPUs present in the @cpumask.
1069 int dev_pm_opp_of_cpumask_add_table(const struct cpumask
*cpumask
)
1071 struct device
*cpu_dev
;
1074 if (WARN_ON(cpumask_empty(cpumask
)))
1077 for_each_cpu(cpu
, cpumask
) {
1078 cpu_dev
= get_cpu_device(cpu
);
1080 pr_err("%s: failed to get cpu%d device\n", __func__
,
1086 ret
= dev_pm_opp_of_add_table(cpu_dev
);
1089 * OPP may get registered dynamically, don't print error
1092 pr_debug("%s: couldn't find opp table for cpu:%d, %d\n",
1093 __func__
, cpu
, ret
);
1102 /* Free all other OPPs */
1103 _dev_pm_opp_cpumask_remove_table(cpumask
, cpu
);
1107 EXPORT_SYMBOL_GPL(dev_pm_opp_of_cpumask_add_table
);
1110 * Works only for OPP v2 bindings.
1112 * Returns -ENOENT if operating-points-v2 bindings aren't supported.
1115 * dev_pm_opp_of_get_sharing_cpus() - Get cpumask of CPUs sharing OPPs with
1116 * @cpu_dev using operating-points-v2
1119 * @cpu_dev: CPU device for which we do this operation
1120 * @cpumask: cpumask to update with information of sharing CPUs
1122 * This updates the @cpumask with CPUs that are sharing OPPs with @cpu_dev.
1124 * Returns -ENOENT if operating-points-v2 isn't present for @cpu_dev.
1126 int dev_pm_opp_of_get_sharing_cpus(struct device
*cpu_dev
,
1127 struct cpumask
*cpumask
)
1129 struct device_node
*np
, *tmp_np
, *cpu_np
;
1132 /* Get OPP descriptor node */
1133 np
= dev_pm_opp_of_get_opp_desc_node(cpu_dev
);
1135 dev_dbg(cpu_dev
, "%s: Couldn't find opp node.\n", __func__
);
1139 cpumask_set_cpu(cpu_dev
->id
, cpumask
);
1141 /* OPPs are shared ? */
1142 if (!of_property_read_bool(np
, "opp-shared"))
1145 for_each_possible_cpu(cpu
) {
1146 if (cpu
== cpu_dev
->id
)
1149 cpu_np
= of_cpu_device_node_get(cpu
);
1151 dev_err(cpu_dev
, "%s: failed to get cpu%d node\n",
1157 /* Get OPP descriptor node */
1158 tmp_np
= _opp_of_get_opp_desc_node(cpu_np
, 0);
1159 of_node_put(cpu_np
);
1161 pr_err("%pOF: Couldn't find opp node\n", cpu_np
);
1166 /* CPUs are sharing opp node */
1168 cpumask_set_cpu(cpu
, cpumask
);
1170 of_node_put(tmp_np
);
1177 EXPORT_SYMBOL_GPL(dev_pm_opp_of_get_sharing_cpus
);
1180 * of_get_required_opp_performance_state() - Search for required OPP and return its performance state.
1181 * @np: Node that contains the "required-opps" property.
1182 * @index: Index of the phandle to parse.
1184 * Returns the performance state of the OPP pointed out by the "required-opps"
1185 * property at @index in @np.
1187 * Return: Zero or positive performance state on success, otherwise negative
1190 int of_get_required_opp_performance_state(struct device_node
*np
, int index
)
1192 struct dev_pm_opp
*opp
;
1193 struct device_node
*required_np
;
1194 struct opp_table
*opp_table
;
1195 int pstate
= -EINVAL
;
1197 required_np
= of_parse_required_opp(np
, index
);
1201 opp_table
= _find_table_of_opp_np(required_np
);
1202 if (IS_ERR(opp_table
)) {
1203 pr_err("%s: Failed to find required OPP table %pOF: %ld\n",
1204 __func__
, np
, PTR_ERR(opp_table
));
1205 goto put_required_np
;
1208 opp
= _find_opp_of_np(opp_table
, required_np
);
1210 pstate
= opp
->pstate
;
1211 dev_pm_opp_put(opp
);
1214 dev_pm_opp_put_opp_table(opp_table
);
1217 of_node_put(required_np
);
1221 EXPORT_SYMBOL_GPL(of_get_required_opp_performance_state
);
1224 * dev_pm_opp_get_of_node() - Gets the DT node corresponding to an opp
1225 * @opp: opp for which DT node has to be returned for
1227 * Return: DT node corresponding to the opp, else 0 on success.
1229 * The caller needs to put the node with of_node_put() after using it.
1231 struct device_node
*dev_pm_opp_get_of_node(struct dev_pm_opp
*opp
)
1233 if (IS_ERR_OR_NULL(opp
)) {
1234 pr_err("%s: Invalid parameters\n", __func__
);
1238 return of_node_get(opp
->np
);
1240 EXPORT_SYMBOL_GPL(dev_pm_opp_get_of_node
);
1243 * Callback function provided to the Energy Model framework upon registration.
1244 * This computes the power estimated by @dev at @kHz if it is the frequency
1245 * of an existing OPP, or at the frequency of the first OPP above @kHz otherwise
1246 * (see dev_pm_opp_find_freq_ceil()). This function updates @kHz to the ceiled
1247 * frequency and @mW to the associated power. The power is estimated as
1248 * P = C * V^2 * f with C being the device's capacitance and V and f
1249 * respectively the voltage and frequency of the OPP.
1251 * Returns -EINVAL if the power calculation failed because of missing
1252 * parameters, 0 otherwise.
1254 static int __maybe_unused
_get_power(unsigned long *mW
, unsigned long *kHz
,
1257 struct dev_pm_opp
*opp
;
1258 struct device_node
*np
;
1259 unsigned long mV
, Hz
;
1264 np
= of_node_get(dev
->of_node
);
1268 ret
= of_property_read_u32(np
, "dynamic-power-coefficient", &cap
);
1274 opp
= dev_pm_opp_find_freq_ceil(dev
, &Hz
);
1278 mV
= dev_pm_opp_get_voltage(opp
) / 1000;
1279 dev_pm_opp_put(opp
);
1283 tmp
= (u64
)cap
* mV
* mV
* (Hz
/ 1000000);
1284 do_div(tmp
, 1000000000);
1286 *mW
= (unsigned long)tmp
;
1293 * dev_pm_opp_of_register_em() - Attempt to register an Energy Model
1294 * @dev : Device for which an Energy Model has to be registered
1295 * @cpus : CPUs for which an Energy Model has to be registered. For
1296 * other type of devices it should be set to NULL.
1298 * This checks whether the "dynamic-power-coefficient" devicetree property has
1299 * been specified, and tries to register an Energy Model with it if it has.
1300 * Having this property means the voltages are known for OPPs and the EM
1301 * might be calculated.
1303 int dev_pm_opp_of_register_em(struct device
*dev
, struct cpumask
*cpus
)
1305 struct em_data_callback em_cb
= EM_DATA_CB(_get_power
);
1306 struct device_node
*np
;
1310 if (IS_ERR_OR_NULL(dev
)) {
1315 nr_opp
= dev_pm_opp_get_opp_count(dev
);
1321 np
= of_node_get(dev
->of_node
);
1328 * Register an EM only if the 'dynamic-power-coefficient' property is
1329 * set in devicetree. It is assumed the voltage values are known if that
1330 * property is set since it is useless otherwise. If voltages are not
1331 * known, just let the EM registration fail with an error to alert the
1332 * user about the inconsistent configuration.
1334 ret
= of_property_read_u32(np
, "dynamic-power-coefficient", &cap
);
1337 dev_dbg(dev
, "Couldn't find proper 'dynamic-power-coefficient' in DT\n");
1342 ret
= em_dev_register_perf_domain(dev
, nr_opp
, &em_cb
, cpus
, true);
1349 dev_dbg(dev
, "Couldn't register Energy Model %d\n", ret
);
1352 EXPORT_SYMBOL_GPL(dev_pm_opp_of_register_em
);