OPP: Parse OPP table's DT properties from _of_init_opp_table()
[linux-2.6-block.git] / drivers / opp / of.c
1 /*
2  * Generic OPP OF helpers
3  *
4  * Copyright (C) 2009-2010 Texas Instruments Incorporated.
5  *      Nishanth Menon
6  *      Romit Dasgupta
7  *      Kevin Hilman
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License version 2 as
11  * published by the Free Software Foundation.
12  */
13
14 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15
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>
23
24 #include "opp.h"
25
26 /*
27  * Returns opp descriptor node for a device node, caller must
28  * do of_node_put().
29  */
30 static struct device_node *_opp_of_get_opp_desc_node(struct device_node *np,
31                                                      int index)
32 {
33         /* "operating-points-v2" can be an array for power domain providers */
34         return of_parse_phandle(np, "operating-points-v2", index);
35 }
36
37 /* Returns opp descriptor node for a device, caller must do of_node_put() */
38 struct device_node *dev_pm_opp_of_get_opp_desc_node(struct device *dev)
39 {
40         return _opp_of_get_opp_desc_node(dev->of_node, 0);
41 }
42 EXPORT_SYMBOL_GPL(dev_pm_opp_of_get_opp_desc_node);
43
44 static struct opp_table *_managed_opp(const struct device_node *np)
45 {
46         struct opp_table *opp_table, *managed_table = NULL;
47
48         mutex_lock(&opp_table_lock);
49
50         list_for_each_entry(opp_table, &opp_tables, node) {
51                 if (opp_table->np == np) {
52                         /*
53                          * Multiple devices can point to the same OPP table and
54                          * so will have same node-pointer, np.
55                          *
56                          * But the OPPs will be considered as shared only if the
57                          * OPP table contains a "opp-shared" property.
58                          */
59                         if (opp_table->shared_opp == OPP_TABLE_ACCESS_SHARED) {
60                                 _get_opp_table_kref(opp_table);
61                                 managed_table = opp_table;
62                         }
63
64                         break;
65                 }
66         }
67
68         mutex_unlock(&opp_table_lock);
69
70         return managed_table;
71 }
72
73 void _of_init_opp_table(struct opp_table *opp_table, struct device *dev,
74                         int index)
75 {
76         struct device_node *np, *opp_np;
77         u32 val;
78
79         /*
80          * Only required for backward compatibility with v1 bindings, but isn't
81          * harmful for other cases. And so we do it unconditionally.
82          */
83         np = of_node_get(dev->of_node);
84         if (!np)
85                 return;
86
87         if (!of_property_read_u32(np, "clock-latency", &val))
88                 opp_table->clock_latency_ns_max = val;
89         of_property_read_u32(np, "voltage-tolerance",
90                              &opp_table->voltage_tolerance_v1);
91
92         /* Get OPP table node */
93         opp_np = _opp_of_get_opp_desc_node(np, index);
94         of_node_put(np);
95
96         if (!opp_np)
97                 return;
98
99         if (of_property_read_bool(opp_np, "opp-shared"))
100                 opp_table->shared_opp = OPP_TABLE_ACCESS_SHARED;
101         else
102                 opp_table->shared_opp = OPP_TABLE_ACCESS_EXCLUSIVE;
103
104         opp_table->np = opp_np;
105
106         of_node_put(opp_np);
107 }
108
109 static bool _opp_is_supported(struct device *dev, struct opp_table *opp_table,
110                               struct device_node *np)
111 {
112         unsigned int count = opp_table->supported_hw_count;
113         u32 version;
114         int ret;
115
116         if (!opp_table->supported_hw) {
117                 /*
118                  * In the case that no supported_hw has been set by the
119                  * platform but there is an opp-supported-hw value set for
120                  * an OPP then the OPP should not be enabled as there is
121                  * no way to see if the hardware supports it.
122                  */
123                 if (of_find_property(np, "opp-supported-hw", NULL))
124                         return false;
125                 else
126                         return true;
127         }
128
129         while (count--) {
130                 ret = of_property_read_u32_index(np, "opp-supported-hw", count,
131                                                  &version);
132                 if (ret) {
133                         dev_warn(dev, "%s: failed to read opp-supported-hw property at index %d: %d\n",
134                                  __func__, count, ret);
135                         return false;
136                 }
137
138                 /* Both of these are bitwise masks of the versions */
139                 if (!(version & opp_table->supported_hw[count]))
140                         return false;
141         }
142
143         return true;
144 }
145
146 static int opp_parse_supplies(struct dev_pm_opp *opp, struct device *dev,
147                               struct opp_table *opp_table)
148 {
149         u32 *microvolt, *microamp = NULL;
150         int supplies, vcount, icount, ret, i, j;
151         struct property *prop = NULL;
152         char name[NAME_MAX];
153
154         supplies = opp_table->regulator_count ? opp_table->regulator_count : 1;
155
156         /* Search for "opp-microvolt-<name>" */
157         if (opp_table->prop_name) {
158                 snprintf(name, sizeof(name), "opp-microvolt-%s",
159                          opp_table->prop_name);
160                 prop = of_find_property(opp->np, name, NULL);
161         }
162
163         if (!prop) {
164                 /* Search for "opp-microvolt" */
165                 sprintf(name, "opp-microvolt");
166                 prop = of_find_property(opp->np, name, NULL);
167
168                 /* Missing property isn't a problem, but an invalid entry is */
169                 if (!prop) {
170                         if (!opp_table->regulator_count)
171                                 return 0;
172
173                         dev_err(dev, "%s: opp-microvolt missing although OPP managing regulators\n",
174                                 __func__);
175                         return -EINVAL;
176                 }
177         }
178
179         vcount = of_property_count_u32_elems(opp->np, name);
180         if (vcount < 0) {
181                 dev_err(dev, "%s: Invalid %s property (%d)\n",
182                         __func__, name, vcount);
183                 return vcount;
184         }
185
186         /* There can be one or three elements per supply */
187         if (vcount != supplies && vcount != supplies * 3) {
188                 dev_err(dev, "%s: Invalid number of elements in %s property (%d) with supplies (%d)\n",
189                         __func__, name, vcount, supplies);
190                 return -EINVAL;
191         }
192
193         microvolt = kmalloc_array(vcount, sizeof(*microvolt), GFP_KERNEL);
194         if (!microvolt)
195                 return -ENOMEM;
196
197         ret = of_property_read_u32_array(opp->np, name, microvolt, vcount);
198         if (ret) {
199                 dev_err(dev, "%s: error parsing %s: %d\n", __func__, name, ret);
200                 ret = -EINVAL;
201                 goto free_microvolt;
202         }
203
204         /* Search for "opp-microamp-<name>" */
205         prop = NULL;
206         if (opp_table->prop_name) {
207                 snprintf(name, sizeof(name), "opp-microamp-%s",
208                          opp_table->prop_name);
209                 prop = of_find_property(opp->np, name, NULL);
210         }
211
212         if (!prop) {
213                 /* Search for "opp-microamp" */
214                 sprintf(name, "opp-microamp");
215                 prop = of_find_property(opp->np, name, NULL);
216         }
217
218         if (prop) {
219                 icount = of_property_count_u32_elems(opp->np, name);
220                 if (icount < 0) {
221                         dev_err(dev, "%s: Invalid %s property (%d)\n", __func__,
222                                 name, icount);
223                         ret = icount;
224                         goto free_microvolt;
225                 }
226
227                 if (icount != supplies) {
228                         dev_err(dev, "%s: Invalid number of elements in %s property (%d) with supplies (%d)\n",
229                                 __func__, name, icount, supplies);
230                         ret = -EINVAL;
231                         goto free_microvolt;
232                 }
233
234                 microamp = kmalloc_array(icount, sizeof(*microamp), GFP_KERNEL);
235                 if (!microamp) {
236                         ret = -EINVAL;
237                         goto free_microvolt;
238                 }
239
240                 ret = of_property_read_u32_array(opp->np, name, microamp,
241                                                  icount);
242                 if (ret) {
243                         dev_err(dev, "%s: error parsing %s: %d\n", __func__,
244                                 name, ret);
245                         ret = -EINVAL;
246                         goto free_microamp;
247                 }
248         }
249
250         for (i = 0, j = 0; i < supplies; i++) {
251                 opp->supplies[i].u_volt = microvolt[j++];
252
253                 if (vcount == supplies) {
254                         opp->supplies[i].u_volt_min = opp->supplies[i].u_volt;
255                         opp->supplies[i].u_volt_max = opp->supplies[i].u_volt;
256                 } else {
257                         opp->supplies[i].u_volt_min = microvolt[j++];
258                         opp->supplies[i].u_volt_max = microvolt[j++];
259                 }
260
261                 if (microamp)
262                         opp->supplies[i].u_amp = microamp[i];
263         }
264
265 free_microamp:
266         kfree(microamp);
267 free_microvolt:
268         kfree(microvolt);
269
270         return ret;
271 }
272
273 /**
274  * dev_pm_opp_of_remove_table() - Free OPP table entries created from static DT
275  *                                entries
276  * @dev:        device pointer used to lookup OPP table.
277  *
278  * Free OPPs created using static entries present in DT.
279  */
280 void dev_pm_opp_of_remove_table(struct device *dev)
281 {
282         _dev_pm_opp_find_and_remove_table(dev, false);
283 }
284 EXPORT_SYMBOL_GPL(dev_pm_opp_of_remove_table);
285
286 /**
287  * _opp_add_static_v2() - Allocate static OPPs (As per 'v2' DT bindings)
288  * @opp_table:  OPP table
289  * @dev:        device for which we do this operation
290  * @np:         device node
291  *
292  * This function adds an opp definition to the opp table and returns status. The
293  * opp can be controlled using dev_pm_opp_enable/disable functions and may be
294  * removed by dev_pm_opp_remove.
295  *
296  * Return:
297  * 0            On success OR
298  *              Duplicate OPPs (both freq and volt are same) and opp->available
299  * -EEXIST      Freq are same and volt are different OR
300  *              Duplicate OPPs (both freq and volt are same) and !opp->available
301  * -ENOMEM      Memory allocation failure
302  * -EINVAL      Failed parsing the OPP node
303  */
304 static int _opp_add_static_v2(struct opp_table *opp_table, struct device *dev,
305                               struct device_node *np)
306 {
307         struct dev_pm_opp *new_opp;
308         u64 rate = 0;
309         u32 val;
310         int ret;
311         bool rate_not_available = false;
312
313         new_opp = _opp_allocate(opp_table);
314         if (!new_opp)
315                 return -ENOMEM;
316
317         ret = of_property_read_u64(np, "opp-hz", &rate);
318         if (ret < 0) {
319                 /* "opp-hz" is optional for devices like power domains. */
320                 if (!of_find_property(dev->of_node, "#power-domain-cells",
321                                       NULL)) {
322                         dev_err(dev, "%s: opp-hz not found\n", __func__);
323                         goto free_opp;
324                 }
325
326                 rate_not_available = true;
327         } else {
328                 /*
329                  * Rate is defined as an unsigned long in clk API, and so
330                  * casting explicitly to its type. Must be fixed once rate is 64
331                  * bit guaranteed in clk API.
332                  */
333                 new_opp->rate = (unsigned long)rate;
334         }
335
336         /* Check if the OPP supports hardware's hierarchy of versions or not */
337         if (!_opp_is_supported(dev, opp_table, np)) {
338                 dev_dbg(dev, "OPP not supported by hardware: %llu\n", rate);
339                 goto free_opp;
340         }
341
342         new_opp->turbo = of_property_read_bool(np, "turbo-mode");
343
344         new_opp->np = np;
345         new_opp->dynamic = false;
346         new_opp->available = true;
347
348         if (!of_property_read_u32(np, "clock-latency-ns", &val))
349                 new_opp->clock_latency_ns = val;
350
351         new_opp->pstate = of_genpd_opp_to_performance_state(dev, np);
352
353         ret = opp_parse_supplies(new_opp, dev, opp_table);
354         if (ret)
355                 goto free_opp;
356
357         ret = _opp_add(dev, new_opp, opp_table, rate_not_available);
358         if (ret) {
359                 /* Don't return error for duplicate OPPs */
360                 if (ret == -EBUSY)
361                         ret = 0;
362                 goto free_opp;
363         }
364
365         /* OPP to select on device suspend */
366         if (of_property_read_bool(np, "opp-suspend")) {
367                 if (opp_table->suspend_opp) {
368                         dev_warn(dev, "%s: Multiple suspend OPPs found (%lu %lu)\n",
369                                  __func__, opp_table->suspend_opp->rate,
370                                  new_opp->rate);
371                 } else {
372                         new_opp->suspend = true;
373                         opp_table->suspend_opp = new_opp;
374                 }
375         }
376
377         if (new_opp->clock_latency_ns > opp_table->clock_latency_ns_max)
378                 opp_table->clock_latency_ns_max = new_opp->clock_latency_ns;
379
380         pr_debug("%s: turbo:%d rate:%lu uv:%lu uvmin:%lu uvmax:%lu latency:%lu\n",
381                  __func__, new_opp->turbo, new_opp->rate,
382                  new_opp->supplies[0].u_volt, new_opp->supplies[0].u_volt_min,
383                  new_opp->supplies[0].u_volt_max, new_opp->clock_latency_ns);
384
385         /*
386          * Notify the changes in the availability of the operable
387          * frequency/voltage list.
388          */
389         blocking_notifier_call_chain(&opp_table->head, OPP_EVENT_ADD, new_opp);
390         return 0;
391
392 free_opp:
393         _opp_free(new_opp);
394
395         return ret;
396 }
397
398 /* Initializes OPP tables based on new bindings */
399 static int _of_add_opp_table_v2(struct device *dev, struct device_node *opp_np,
400                                 int index)
401 {
402         struct device_node *np;
403         struct opp_table *opp_table;
404         int ret = 0, count = 0, pstate_count = 0;
405         struct dev_pm_opp *opp;
406
407         opp_table = _managed_opp(opp_np);
408         if (opp_table) {
409                 /* OPPs are already managed */
410                 if (!_add_opp_dev(dev, opp_table))
411                         ret = -ENOMEM;
412                 else if (!opp_table->parsed_static_opps)
413                         goto initialize_static_opps;
414
415                 goto put_opp_table;
416         }
417
418         opp_table = dev_pm_opp_get_opp_table_indexed(dev, index);
419         if (!opp_table)
420                 return -ENOMEM;
421
422 initialize_static_opps:
423         /* We have opp-table node now, iterate over it and add OPPs */
424         for_each_available_child_of_node(opp_np, np) {
425                 count++;
426
427                 ret = _opp_add_static_v2(opp_table, dev, np);
428                 if (ret) {
429                         dev_err(dev, "%s: Failed to add OPP, %d\n", __func__,
430                                 ret);
431                         _dev_pm_opp_remove_table(opp_table, dev, false);
432                         of_node_put(np);
433                         goto put_opp_table;
434                 }
435         }
436
437         /* There should be one of more OPP defined */
438         if (WARN_ON(!count)) {
439                 ret = -ENOENT;
440                 goto put_opp_table;
441         }
442
443         list_for_each_entry(opp, &opp_table->opp_list, node)
444                 pstate_count += !!opp->pstate;
445
446         /* Either all or none of the nodes shall have performance state set */
447         if (pstate_count && pstate_count != count) {
448                 dev_err(dev, "Not all nodes have performance state set (%d: %d)\n",
449                         count, pstate_count);
450                 ret = -ENOENT;
451                 _dev_pm_opp_remove_table(opp_table, dev, false);
452                 goto put_opp_table;
453         }
454
455         if (pstate_count)
456                 opp_table->genpd_performance_state = true;
457
458         opp_table->parsed_static_opps = true;
459
460 put_opp_table:
461         dev_pm_opp_put_opp_table(opp_table);
462
463         return ret;
464 }
465
466 /* Initializes OPP tables based on old-deprecated bindings */
467 static int _of_add_opp_table_v1(struct device *dev)
468 {
469         struct opp_table *opp_table;
470         const struct property *prop;
471         const __be32 *val;
472         int nr, ret = 0;
473
474         prop = of_find_property(dev->of_node, "operating-points", NULL);
475         if (!prop)
476                 return -ENODEV;
477         if (!prop->value)
478                 return -ENODATA;
479
480         /*
481          * Each OPP is a set of tuples consisting of frequency and
482          * voltage like <freq-kHz vol-uV>.
483          */
484         nr = prop->length / sizeof(u32);
485         if (nr % 2) {
486                 dev_err(dev, "%s: Invalid OPP table\n", __func__);
487                 return -EINVAL;
488         }
489
490         opp_table = dev_pm_opp_get_opp_table(dev);
491         if (!opp_table)
492                 return -ENOMEM;
493
494         val = prop->value;
495         while (nr) {
496                 unsigned long freq = be32_to_cpup(val++) * 1000;
497                 unsigned long volt = be32_to_cpup(val++);
498
499                 ret = _opp_add_v1(opp_table, dev, freq, volt, false);
500                 if (ret) {
501                         dev_err(dev, "%s: Failed to add OPP %ld (%d)\n",
502                                 __func__, freq, ret);
503                         _dev_pm_opp_remove_table(opp_table, dev, false);
504                         break;
505                 }
506                 nr -= 2;
507         }
508
509         dev_pm_opp_put_opp_table(opp_table);
510         return ret;
511 }
512
513 /**
514  * dev_pm_opp_of_add_table() - Initialize opp table from device tree
515  * @dev:        device pointer used to lookup OPP table.
516  *
517  * Register the initial OPP table with the OPP library for given device.
518  *
519  * Return:
520  * 0            On success OR
521  *              Duplicate OPPs (both freq and volt are same) and opp->available
522  * -EEXIST      Freq are same and volt are different OR
523  *              Duplicate OPPs (both freq and volt are same) and !opp->available
524  * -ENOMEM      Memory allocation failure
525  * -ENODEV      when 'operating-points' property is not found or is invalid data
526  *              in device node.
527  * -ENODATA     when empty 'operating-points' property is found
528  * -EINVAL      when invalid entries are found in opp-v2 table
529  */
530 int dev_pm_opp_of_add_table(struct device *dev)
531 {
532         struct device_node *opp_np;
533         int ret;
534
535         /*
536          * OPPs have two version of bindings now. The older one is deprecated,
537          * try for the new binding first.
538          */
539         opp_np = dev_pm_opp_of_get_opp_desc_node(dev);
540         if (!opp_np) {
541                 /*
542                  * Try old-deprecated bindings for backward compatibility with
543                  * older dtbs.
544                  */
545                 return _of_add_opp_table_v1(dev);
546         }
547
548         ret = _of_add_opp_table_v2(dev, opp_np, 0);
549         of_node_put(opp_np);
550
551         return ret;
552 }
553 EXPORT_SYMBOL_GPL(dev_pm_opp_of_add_table);
554
555 /**
556  * dev_pm_opp_of_add_table_indexed() - Initialize indexed opp table from device tree
557  * @dev:        device pointer used to lookup OPP table.
558  * @index:      Index number.
559  *
560  * Register the initial OPP table with the OPP library for given device only
561  * using the "operating-points-v2" property.
562  *
563  * Return:
564  * 0            On success OR
565  *              Duplicate OPPs (both freq and volt are same) and opp->available
566  * -EEXIST      Freq are same and volt are different OR
567  *              Duplicate OPPs (both freq and volt are same) and !opp->available
568  * -ENOMEM      Memory allocation failure
569  * -ENODEV      when 'operating-points' property is not found or is invalid data
570  *              in device node.
571  * -ENODATA     when empty 'operating-points' property is found
572  * -EINVAL      when invalid entries are found in opp-v2 table
573  */
574 int dev_pm_opp_of_add_table_indexed(struct device *dev, int index)
575 {
576         struct device_node *opp_np;
577         int ret, count;
578
579 again:
580         opp_np = _opp_of_get_opp_desc_node(dev->of_node, index);
581         if (!opp_np) {
582                 /*
583                  * If only one phandle is present, then the same OPP table
584                  * applies for all index requests.
585                  */
586                 count = of_count_phandle_with_args(dev->of_node,
587                                                    "operating-points-v2", NULL);
588                 if (count == 1 && index) {
589                         index = 0;
590                         goto again;
591                 }
592
593                 return -ENODEV;
594         }
595
596         ret = _of_add_opp_table_v2(dev, opp_np, index);
597         of_node_put(opp_np);
598
599         return ret;
600 }
601 EXPORT_SYMBOL_GPL(dev_pm_opp_of_add_table_indexed);
602
603 /* CPU device specific helpers */
604
605 /**
606  * dev_pm_opp_of_cpumask_remove_table() - Removes OPP table for @cpumask
607  * @cpumask:    cpumask for which OPP table needs to be removed
608  *
609  * This removes the OPP tables for CPUs present in the @cpumask.
610  * This should be used only to remove static entries created from DT.
611  */
612 void dev_pm_opp_of_cpumask_remove_table(const struct cpumask *cpumask)
613 {
614         _dev_pm_opp_cpumask_remove_table(cpumask, true, -1);
615 }
616 EXPORT_SYMBOL_GPL(dev_pm_opp_of_cpumask_remove_table);
617
618 /**
619  * dev_pm_opp_of_cpumask_add_table() - Adds OPP table for @cpumask
620  * @cpumask:    cpumask for which OPP table needs to be added.
621  *
622  * This adds the OPP tables for CPUs present in the @cpumask.
623  */
624 int dev_pm_opp_of_cpumask_add_table(const struct cpumask *cpumask)
625 {
626         struct device *cpu_dev;
627         int cpu, ret = 0;
628
629         WARN_ON(cpumask_empty(cpumask));
630
631         for_each_cpu(cpu, cpumask) {
632                 cpu_dev = get_cpu_device(cpu);
633                 if (!cpu_dev) {
634                         pr_err("%s: failed to get cpu%d device\n", __func__,
635                                cpu);
636                         continue;
637                 }
638
639                 ret = dev_pm_opp_of_add_table(cpu_dev);
640                 if (ret) {
641                         /*
642                          * OPP may get registered dynamically, don't print error
643                          * message here.
644                          */
645                         pr_debug("%s: couldn't find opp table for cpu:%d, %d\n",
646                                  __func__, cpu, ret);
647
648                         /* Free all other OPPs */
649                         _dev_pm_opp_cpumask_remove_table(cpumask, true, cpu);
650                         break;
651                 }
652         }
653
654         return ret;
655 }
656 EXPORT_SYMBOL_GPL(dev_pm_opp_of_cpumask_add_table);
657
658 /*
659  * Works only for OPP v2 bindings.
660  *
661  * Returns -ENOENT if operating-points-v2 bindings aren't supported.
662  */
663 /**
664  * dev_pm_opp_of_get_sharing_cpus() - Get cpumask of CPUs sharing OPPs with
665  *                                    @cpu_dev using operating-points-v2
666  *                                    bindings.
667  *
668  * @cpu_dev:    CPU device for which we do this operation
669  * @cpumask:    cpumask to update with information of sharing CPUs
670  *
671  * This updates the @cpumask with CPUs that are sharing OPPs with @cpu_dev.
672  *
673  * Returns -ENOENT if operating-points-v2 isn't present for @cpu_dev.
674  */
675 int dev_pm_opp_of_get_sharing_cpus(struct device *cpu_dev,
676                                    struct cpumask *cpumask)
677 {
678         struct device_node *np, *tmp_np, *cpu_np;
679         int cpu, ret = 0;
680
681         /* Get OPP descriptor node */
682         np = dev_pm_opp_of_get_opp_desc_node(cpu_dev);
683         if (!np) {
684                 dev_dbg(cpu_dev, "%s: Couldn't find opp node.\n", __func__);
685                 return -ENOENT;
686         }
687
688         cpumask_set_cpu(cpu_dev->id, cpumask);
689
690         /* OPPs are shared ? */
691         if (!of_property_read_bool(np, "opp-shared"))
692                 goto put_cpu_node;
693
694         for_each_possible_cpu(cpu) {
695                 if (cpu == cpu_dev->id)
696                         continue;
697
698                 cpu_np = of_cpu_device_node_get(cpu);
699                 if (!cpu_np) {
700                         dev_err(cpu_dev, "%s: failed to get cpu%d node\n",
701                                 __func__, cpu);
702                         ret = -ENOENT;
703                         goto put_cpu_node;
704                 }
705
706                 /* Get OPP descriptor node */
707                 tmp_np = _opp_of_get_opp_desc_node(cpu_np, 0);
708                 of_node_put(cpu_np);
709                 if (!tmp_np) {
710                         pr_err("%pOF: Couldn't find opp node\n", cpu_np);
711                         ret = -ENOENT;
712                         goto put_cpu_node;
713                 }
714
715                 /* CPUs are sharing opp node */
716                 if (np == tmp_np)
717                         cpumask_set_cpu(cpu, cpumask);
718
719                 of_node_put(tmp_np);
720         }
721
722 put_cpu_node:
723         of_node_put(np);
724         return ret;
725 }
726 EXPORT_SYMBOL_GPL(dev_pm_opp_of_get_sharing_cpus);
727
728 /**
729  * of_dev_pm_opp_find_required_opp() - Search for required OPP.
730  * @dev: The device whose OPP node is referenced by the 'np' DT node.
731  * @np: Node that contains the "required-opps" property.
732  *
733  * Returns the OPP of the device 'dev', whose phandle is present in the "np"
734  * node. Although the "required-opps" property supports having multiple
735  * phandles, this helper routine only parses the very first phandle in the list.
736  *
737  * Return: Matching opp, else returns ERR_PTR in case of error and should be
738  * handled using IS_ERR.
739  *
740  * The callers are required to call dev_pm_opp_put() for the returned OPP after
741  * use.
742  */
743 struct dev_pm_opp *of_dev_pm_opp_find_required_opp(struct device *dev,
744                                                    struct device_node *np)
745 {
746         struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ENODEV);
747         struct device_node *required_np;
748         struct opp_table *opp_table;
749
750         opp_table = _find_opp_table(dev);
751         if (IS_ERR(opp_table))
752                 return ERR_CAST(opp_table);
753
754         required_np = of_parse_phandle(np, "required-opps", 0);
755         if (unlikely(!required_np)) {
756                 dev_err(dev, "Unable to parse required-opps\n");
757                 goto put_opp_table;
758         }
759
760         mutex_lock(&opp_table->lock);
761
762         list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
763                 if (temp_opp->available && temp_opp->np == required_np) {
764                         opp = temp_opp;
765
766                         /* Increment the reference count of OPP */
767                         dev_pm_opp_get(opp);
768                         break;
769                 }
770         }
771
772         mutex_unlock(&opp_table->lock);
773
774         of_node_put(required_np);
775 put_opp_table:
776         dev_pm_opp_put_opp_table(opp_table);
777
778         return opp;
779 }
780 EXPORT_SYMBOL_GPL(of_dev_pm_opp_find_required_opp);
781
782 /**
783  * dev_pm_opp_get_of_node() - Gets the DT node corresponding to an opp
784  * @opp:        opp for which DT node has to be returned for
785  *
786  * Return: DT node corresponding to the opp, else 0 on success.
787  *
788  * The caller needs to put the node with of_node_put() after using it.
789  */
790 struct device_node *dev_pm_opp_get_of_node(struct dev_pm_opp *opp)
791 {
792         if (IS_ERR_OR_NULL(opp)) {
793                 pr_err("%s: Invalid parameters\n", __func__);
794                 return NULL;
795         }
796
797         return of_node_get(opp->np);
798 }
799 EXPORT_SYMBOL_GPL(dev_pm_opp_get_of_node);