2 * Generic OPP OF helpers
4 * Copyright (C) 2009-2010 Texas Instruments Incorporated.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
16 #include <linux/cpu.h>
17 #include <linux/errno.h>
18 #include <linux/device.h>
19 #include <linux/of_device.h>
20 #include <linux/pm_domain.h>
21 #include <linux/slab.h>
22 #include <linux/export.h>
26 static struct opp_table
*_managed_opp(const struct device_node
*np
)
28 struct opp_table
*opp_table
, *managed_table
= NULL
;
30 mutex_lock(&opp_table_lock
);
32 list_for_each_entry(opp_table
, &opp_tables
, node
) {
33 if (opp_table
->np
== np
) {
35 * Multiple devices can point to the same OPP table and
36 * so will have same node-pointer, np.
38 * But the OPPs will be considered as shared only if the
39 * OPP table contains a "opp-shared" property.
41 if (opp_table
->shared_opp
== OPP_TABLE_ACCESS_SHARED
) {
42 _get_opp_table_kref(opp_table
);
43 managed_table
= opp_table
;
50 mutex_unlock(&opp_table_lock
);
55 void _of_init_opp_table(struct opp_table
*opp_table
, struct device
*dev
)
57 struct device_node
*np
;
60 * Only required for backward compatibility with v1 bindings, but isn't
61 * harmful for other cases. And so we do it unconditionally.
63 np
= of_node_get(dev
->of_node
);
67 if (!of_property_read_u32(np
, "clock-latency", &val
))
68 opp_table
->clock_latency_ns_max
= val
;
69 of_property_read_u32(np
, "voltage-tolerance",
70 &opp_table
->voltage_tolerance_v1
);
75 static bool _opp_is_supported(struct device
*dev
, struct opp_table
*opp_table
,
76 struct device_node
*np
)
78 unsigned int count
= opp_table
->supported_hw_count
;
82 if (!opp_table
->supported_hw
) {
84 * In the case that no supported_hw has been set by the
85 * platform but there is an opp-supported-hw value set for
86 * an OPP then the OPP should not be enabled as there is
87 * no way to see if the hardware supports it.
89 if (of_find_property(np
, "opp-supported-hw", NULL
))
96 ret
= of_property_read_u32_index(np
, "opp-supported-hw", count
,
99 dev_warn(dev
, "%s: failed to read opp-supported-hw property at index %d: %d\n",
100 __func__
, count
, ret
);
104 /* Both of these are bitwise masks of the versions */
105 if (!(version
& opp_table
->supported_hw
[count
]))
112 static int opp_parse_supplies(struct dev_pm_opp
*opp
, struct device
*dev
,
113 struct opp_table
*opp_table
)
115 u32
*microvolt
, *microamp
= NULL
;
116 int supplies
, vcount
, icount
, ret
, i
, j
;
117 struct property
*prop
= NULL
;
120 supplies
= opp_table
->regulator_count
? opp_table
->regulator_count
: 1;
122 /* Search for "opp-microvolt-<name>" */
123 if (opp_table
->prop_name
) {
124 snprintf(name
, sizeof(name
), "opp-microvolt-%s",
125 opp_table
->prop_name
);
126 prop
= of_find_property(opp
->np
, name
, NULL
);
130 /* Search for "opp-microvolt" */
131 sprintf(name
, "opp-microvolt");
132 prop
= of_find_property(opp
->np
, name
, NULL
);
134 /* Missing property isn't a problem, but an invalid entry is */
136 if (!opp_table
->regulator_count
)
139 dev_err(dev
, "%s: opp-microvolt missing although OPP managing regulators\n",
145 vcount
= of_property_count_u32_elems(opp
->np
, name
);
147 dev_err(dev
, "%s: Invalid %s property (%d)\n",
148 __func__
, name
, vcount
);
152 /* There can be one or three elements per supply */
153 if (vcount
!= supplies
&& vcount
!= supplies
* 3) {
154 dev_err(dev
, "%s: Invalid number of elements in %s property (%d) with supplies (%d)\n",
155 __func__
, name
, vcount
, supplies
);
159 microvolt
= kmalloc_array(vcount
, sizeof(*microvolt
), GFP_KERNEL
);
163 ret
= of_property_read_u32_array(opp
->np
, name
, microvolt
, vcount
);
165 dev_err(dev
, "%s: error parsing %s: %d\n", __func__
, name
, ret
);
170 /* Search for "opp-microamp-<name>" */
172 if (opp_table
->prop_name
) {
173 snprintf(name
, sizeof(name
), "opp-microamp-%s",
174 opp_table
->prop_name
);
175 prop
= of_find_property(opp
->np
, name
, NULL
);
179 /* Search for "opp-microamp" */
180 sprintf(name
, "opp-microamp");
181 prop
= of_find_property(opp
->np
, name
, NULL
);
185 icount
= of_property_count_u32_elems(opp
->np
, name
);
187 dev_err(dev
, "%s: Invalid %s property (%d)\n", __func__
,
193 if (icount
!= supplies
) {
194 dev_err(dev
, "%s: Invalid number of elements in %s property (%d) with supplies (%d)\n",
195 __func__
, name
, icount
, supplies
);
200 microamp
= kmalloc_array(icount
, sizeof(*microamp
), GFP_KERNEL
);
206 ret
= of_property_read_u32_array(opp
->np
, name
, microamp
,
209 dev_err(dev
, "%s: error parsing %s: %d\n", __func__
,
216 for (i
= 0, j
= 0; i
< supplies
; i
++) {
217 opp
->supplies
[i
].u_volt
= microvolt
[j
++];
219 if (vcount
== supplies
) {
220 opp
->supplies
[i
].u_volt_min
= opp
->supplies
[i
].u_volt
;
221 opp
->supplies
[i
].u_volt_max
= opp
->supplies
[i
].u_volt
;
223 opp
->supplies
[i
].u_volt_min
= microvolt
[j
++];
224 opp
->supplies
[i
].u_volt_max
= microvolt
[j
++];
228 opp
->supplies
[i
].u_amp
= microamp
[i
];
240 * dev_pm_opp_of_remove_table() - Free OPP table entries created from static DT
242 * @dev: device pointer used to lookup OPP table.
244 * Free OPPs created using static entries present in DT.
246 void dev_pm_opp_of_remove_table(struct device
*dev
)
248 _dev_pm_opp_find_and_remove_table(dev
, false);
250 EXPORT_SYMBOL_GPL(dev_pm_opp_of_remove_table
);
252 /* Returns opp descriptor node for a device node, caller must
253 * do of_node_put() */
254 static struct device_node
*_opp_of_get_opp_desc_node(struct device_node
*np
,
257 /* "operating-points-v2" can be an array for power domain providers */
258 return of_parse_phandle(np
, "operating-points-v2", index
);
261 /* Returns opp descriptor node for a device, caller must do of_node_put() */
262 struct device_node
*dev_pm_opp_of_get_opp_desc_node(struct device
*dev
)
264 return _opp_of_get_opp_desc_node(dev
->of_node
, 0);
266 EXPORT_SYMBOL_GPL(dev_pm_opp_of_get_opp_desc_node
);
269 * _opp_add_static_v2() - Allocate static OPPs (As per 'v2' DT bindings)
270 * @opp_table: OPP table
271 * @dev: device for which we do this operation
274 * This function adds an opp definition to the opp table and returns status. The
275 * opp can be controlled using dev_pm_opp_enable/disable functions and may be
276 * removed by dev_pm_opp_remove.
280 * Duplicate OPPs (both freq and volt are same) and opp->available
281 * -EEXIST Freq are same and volt are different OR
282 * Duplicate OPPs (both freq and volt are same) and !opp->available
283 * -ENOMEM Memory allocation failure
284 * -EINVAL Failed parsing the OPP node
286 static int _opp_add_static_v2(struct opp_table
*opp_table
, struct device
*dev
,
287 struct device_node
*np
)
289 struct dev_pm_opp
*new_opp
;
293 bool rate_not_available
= false;
295 new_opp
= _opp_allocate(opp_table
);
299 ret
= of_property_read_u64(np
, "opp-hz", &rate
);
301 /* "opp-hz" is optional for devices like power domains. */
302 if (!of_find_property(dev
->of_node
, "#power-domain-cells",
304 dev_err(dev
, "%s: opp-hz not found\n", __func__
);
308 rate_not_available
= true;
311 * Rate is defined as an unsigned long in clk API, and so
312 * casting explicitly to its type. Must be fixed once rate is 64
313 * bit guaranteed in clk API.
315 new_opp
->rate
= (unsigned long)rate
;
318 /* Check if the OPP supports hardware's hierarchy of versions or not */
319 if (!_opp_is_supported(dev
, opp_table
, np
)) {
320 dev_dbg(dev
, "OPP not supported by hardware: %llu\n", rate
);
324 new_opp
->turbo
= of_property_read_bool(np
, "turbo-mode");
327 new_opp
->dynamic
= false;
328 new_opp
->available
= true;
330 if (!of_property_read_u32(np
, "clock-latency-ns", &val
))
331 new_opp
->clock_latency_ns
= val
;
333 new_opp
->pstate
= of_genpd_opp_to_performance_state(dev
, np
);
335 ret
= opp_parse_supplies(new_opp
, dev
, opp_table
);
339 ret
= _opp_add(dev
, new_opp
, opp_table
, rate_not_available
);
341 /* Don't return error for duplicate OPPs */
347 /* OPP to select on device suspend */
348 if (of_property_read_bool(np
, "opp-suspend")) {
349 if (opp_table
->suspend_opp
) {
350 dev_warn(dev
, "%s: Multiple suspend OPPs found (%lu %lu)\n",
351 __func__
, opp_table
->suspend_opp
->rate
,
354 new_opp
->suspend
= true;
355 opp_table
->suspend_opp
= new_opp
;
359 if (new_opp
->clock_latency_ns
> opp_table
->clock_latency_ns_max
)
360 opp_table
->clock_latency_ns_max
= new_opp
->clock_latency_ns
;
362 pr_debug("%s: turbo:%d rate:%lu uv:%lu uvmin:%lu uvmax:%lu latency:%lu\n",
363 __func__
, new_opp
->turbo
, new_opp
->rate
,
364 new_opp
->supplies
[0].u_volt
, new_opp
->supplies
[0].u_volt_min
,
365 new_opp
->supplies
[0].u_volt_max
, new_opp
->clock_latency_ns
);
368 * Notify the changes in the availability of the operable
369 * frequency/voltage list.
371 blocking_notifier_call_chain(&opp_table
->head
, OPP_EVENT_ADD
, new_opp
);
380 /* Initializes OPP tables based on new bindings */
381 static int _of_add_opp_table_v2(struct device
*dev
, struct device_node
*opp_np
)
383 struct device_node
*np
;
384 struct opp_table
*opp_table
;
385 int ret
= 0, count
= 0, pstate_count
= 0;
386 struct dev_pm_opp
*opp
;
388 opp_table
= _managed_opp(opp_np
);
390 /* OPPs are already managed */
391 if (!_add_opp_dev(dev
, opp_table
))
396 opp_table
= dev_pm_opp_get_opp_table(dev
);
400 /* We have opp-table node now, iterate over it and add OPPs */
401 for_each_available_child_of_node(opp_np
, np
) {
404 ret
= _opp_add_static_v2(opp_table
, dev
, np
);
406 dev_err(dev
, "%s: Failed to add OPP, %d\n", __func__
,
408 _dev_pm_opp_remove_table(opp_table
, dev
, false);
414 /* There should be one of more OPP defined */
415 if (WARN_ON(!count
)) {
420 list_for_each_entry(opp
, &opp_table
->opp_list
, node
)
421 pstate_count
+= !!opp
->pstate
;
423 /* Either all or none of the nodes shall have performance state set */
424 if (pstate_count
&& pstate_count
!= count
) {
425 dev_err(dev
, "Not all nodes have performance state set (%d: %d)\n",
426 count
, pstate_count
);
432 opp_table
->genpd_performance_state
= true;
434 opp_table
->np
= opp_np
;
435 if (of_property_read_bool(opp_np
, "opp-shared"))
436 opp_table
->shared_opp
= OPP_TABLE_ACCESS_SHARED
;
438 opp_table
->shared_opp
= OPP_TABLE_ACCESS_EXCLUSIVE
;
441 dev_pm_opp_put_opp_table(opp_table
);
446 /* Initializes OPP tables based on old-deprecated bindings */
447 static int _of_add_opp_table_v1(struct device
*dev
)
449 struct opp_table
*opp_table
;
450 const struct property
*prop
;
454 prop
= of_find_property(dev
->of_node
, "operating-points", NULL
);
461 * Each OPP is a set of tuples consisting of frequency and
462 * voltage like <freq-kHz vol-uV>.
464 nr
= prop
->length
/ sizeof(u32
);
466 dev_err(dev
, "%s: Invalid OPP table\n", __func__
);
470 opp_table
= dev_pm_opp_get_opp_table(dev
);
476 unsigned long freq
= be32_to_cpup(val
++) * 1000;
477 unsigned long volt
= be32_to_cpup(val
++);
479 ret
= _opp_add_v1(opp_table
, dev
, freq
, volt
, false);
481 dev_err(dev
, "%s: Failed to add OPP %ld (%d)\n",
482 __func__
, freq
, ret
);
483 _dev_pm_opp_remove_table(opp_table
, dev
, false);
489 dev_pm_opp_put_opp_table(opp_table
);
494 * dev_pm_opp_of_add_table() - Initialize opp table from device tree
495 * @dev: device pointer used to lookup OPP table.
497 * Register the initial OPP table with the OPP library for given device.
501 * Duplicate OPPs (both freq and volt are same) and opp->available
502 * -EEXIST Freq are same and volt are different OR
503 * Duplicate OPPs (both freq and volt are same) and !opp->available
504 * -ENOMEM Memory allocation failure
505 * -ENODEV when 'operating-points' property is not found or is invalid data
507 * -ENODATA when empty 'operating-points' property is found
508 * -EINVAL when invalid entries are found in opp-v2 table
510 int dev_pm_opp_of_add_table(struct device
*dev
)
512 struct device_node
*opp_np
;
516 * OPPs have two version of bindings now. The older one is deprecated,
517 * try for the new binding first.
519 opp_np
= dev_pm_opp_of_get_opp_desc_node(dev
);
522 * Try old-deprecated bindings for backward compatibility with
525 return _of_add_opp_table_v1(dev
);
528 ret
= _of_add_opp_table_v2(dev
, opp_np
);
533 EXPORT_SYMBOL_GPL(dev_pm_opp_of_add_table
);
536 * dev_pm_opp_of_add_table_indexed() - Initialize indexed opp table from device tree
537 * @dev: device pointer used to lookup OPP table.
538 * @index: Index number.
540 * Register the initial OPP table with the OPP library for given device only
541 * using the "operating-points-v2" property.
545 * Duplicate OPPs (both freq and volt are same) and opp->available
546 * -EEXIST Freq are same and volt are different OR
547 * Duplicate OPPs (both freq and volt are same) and !opp->available
548 * -ENOMEM Memory allocation failure
549 * -ENODEV when 'operating-points' property is not found or is invalid data
551 * -ENODATA when empty 'operating-points' property is found
552 * -EINVAL when invalid entries are found in opp-v2 table
554 int dev_pm_opp_of_add_table_indexed(struct device
*dev
, int index
)
556 struct device_node
*opp_np
;
560 opp_np
= _opp_of_get_opp_desc_node(dev
->of_node
, index
);
563 * If only one phandle is present, then the same OPP table
564 * applies for all index requests.
566 count
= of_count_phandle_with_args(dev
->of_node
,
567 "operating-points-v2", NULL
);
568 if (count
== 1 && index
) {
576 ret
= _of_add_opp_table_v2(dev
, opp_np
);
581 EXPORT_SYMBOL_GPL(dev_pm_opp_of_add_table_indexed
);
583 /* CPU device specific helpers */
586 * dev_pm_opp_of_cpumask_remove_table() - Removes OPP table for @cpumask
587 * @cpumask: cpumask for which OPP table needs to be removed
589 * This removes the OPP tables for CPUs present in the @cpumask.
590 * This should be used only to remove static entries created from DT.
592 void dev_pm_opp_of_cpumask_remove_table(const struct cpumask
*cpumask
)
594 _dev_pm_opp_cpumask_remove_table(cpumask
, true);
596 EXPORT_SYMBOL_GPL(dev_pm_opp_of_cpumask_remove_table
);
599 * dev_pm_opp_of_cpumask_add_table() - Adds OPP table for @cpumask
600 * @cpumask: cpumask for which OPP table needs to be added.
602 * This adds the OPP tables for CPUs present in the @cpumask.
604 int dev_pm_opp_of_cpumask_add_table(const struct cpumask
*cpumask
)
606 struct device
*cpu_dev
;
609 WARN_ON(cpumask_empty(cpumask
));
611 for_each_cpu(cpu
, cpumask
) {
612 cpu_dev
= get_cpu_device(cpu
);
614 pr_err("%s: failed to get cpu%d device\n", __func__
,
619 ret
= dev_pm_opp_of_add_table(cpu_dev
);
622 * OPP may get registered dynamically, don't print error
625 pr_debug("%s: couldn't find opp table for cpu:%d, %d\n",
628 /* Free all other OPPs */
629 dev_pm_opp_of_cpumask_remove_table(cpumask
);
636 EXPORT_SYMBOL_GPL(dev_pm_opp_of_cpumask_add_table
);
639 * Works only for OPP v2 bindings.
641 * Returns -ENOENT if operating-points-v2 bindings aren't supported.
644 * dev_pm_opp_of_get_sharing_cpus() - Get cpumask of CPUs sharing OPPs with
645 * @cpu_dev using operating-points-v2
648 * @cpu_dev: CPU device for which we do this operation
649 * @cpumask: cpumask to update with information of sharing CPUs
651 * This updates the @cpumask with CPUs that are sharing OPPs with @cpu_dev.
653 * Returns -ENOENT if operating-points-v2 isn't present for @cpu_dev.
655 int dev_pm_opp_of_get_sharing_cpus(struct device
*cpu_dev
,
656 struct cpumask
*cpumask
)
658 struct device_node
*np
, *tmp_np
, *cpu_np
;
661 /* Get OPP descriptor node */
662 np
= dev_pm_opp_of_get_opp_desc_node(cpu_dev
);
664 dev_dbg(cpu_dev
, "%s: Couldn't find opp node.\n", __func__
);
668 cpumask_set_cpu(cpu_dev
->id
, cpumask
);
670 /* OPPs are shared ? */
671 if (!of_property_read_bool(np
, "opp-shared"))
674 for_each_possible_cpu(cpu
) {
675 if (cpu
== cpu_dev
->id
)
678 cpu_np
= of_cpu_device_node_get(cpu
);
680 dev_err(cpu_dev
, "%s: failed to get cpu%d node\n",
686 /* Get OPP descriptor node */
687 tmp_np
= _opp_of_get_opp_desc_node(cpu_np
, 0);
690 pr_err("%pOF: Couldn't find opp node\n", cpu_np
);
695 /* CPUs are sharing opp node */
697 cpumask_set_cpu(cpu
, cpumask
);
706 EXPORT_SYMBOL_GPL(dev_pm_opp_of_get_sharing_cpus
);
709 * of_dev_pm_opp_find_required_opp() - Search for required OPP.
710 * @dev: The device whose OPP node is referenced by the 'np' DT node.
711 * @np: Node that contains the "required-opps" property.
713 * Returns the OPP of the device 'dev', whose phandle is present in the "np"
714 * node. Although the "required-opps" property supports having multiple
715 * phandles, this helper routine only parses the very first phandle in the list.
717 * Return: Matching opp, else returns ERR_PTR in case of error and should be
718 * handled using IS_ERR.
720 * The callers are required to call dev_pm_opp_put() for the returned OPP after
723 struct dev_pm_opp
*of_dev_pm_opp_find_required_opp(struct device
*dev
,
724 struct device_node
*np
)
726 struct dev_pm_opp
*temp_opp
, *opp
= ERR_PTR(-ENODEV
);
727 struct device_node
*required_np
;
728 struct opp_table
*opp_table
;
730 opp_table
= _find_opp_table(dev
);
731 if (IS_ERR(opp_table
))
732 return ERR_CAST(opp_table
);
734 required_np
= of_parse_phandle(np
, "required-opps", 0);
735 if (unlikely(!required_np
)) {
736 dev_err(dev
, "Unable to parse required-opps\n");
740 mutex_lock(&opp_table
->lock
);
742 list_for_each_entry(temp_opp
, &opp_table
->opp_list
, node
) {
743 if (temp_opp
->available
&& temp_opp
->np
== required_np
) {
746 /* Increment the reference count of OPP */
752 mutex_unlock(&opp_table
->lock
);
754 of_node_put(required_np
);
756 dev_pm_opp_put_opp_table(opp_table
);
760 EXPORT_SYMBOL_GPL(of_dev_pm_opp_find_required_opp
);
763 * dev_pm_opp_get_of_node() - Gets the DT node corresponding to an opp
764 * @opp: opp for which DT node has to be returned for
766 * Return: DT node corresponding to the opp, else 0 on success.
768 * The caller needs to put the node with of_node_put() after using it.
770 struct device_node
*dev_pm_opp_get_of_node(struct dev_pm_opp
*opp
)
772 if (IS_ERR_OR_NULL(opp
)) {
773 pr_err("%s: Invalid parameters\n", __func__
);
777 return of_node_get(opp
->np
);
779 EXPORT_SYMBOL_GPL(dev_pm_opp_get_of_node
);