OPP: Add dev_pm_opp_{set|put}_genpd_virt_dev() helper
[linux-2.6-block.git] / drivers / opp / of.c
CommitLineData
f47b72a1
VK
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>
9867999f 19#include <linux/of_device.h>
3ba98324 20#include <linux/pm_domain.h>
dfbe4678 21#include <linux/slab.h>
f47b72a1
VK
22#include <linux/export.h>
23
24#include "opp.h"
25
f06ed90e
VK
26/*
27 * Returns opp descriptor node for a device node, caller must
28 * do of_node_put().
29 */
30static 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() */
38struct 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}
42EXPORT_SYMBOL_GPL(dev_pm_opp_of_get_opp_desc_node);
43
283d55e6 44struct opp_table *_managed_opp(struct device *dev, int index)
f47b72a1 45{
b83c1899 46 struct opp_table *opp_table, *managed_table = NULL;
283d55e6 47 struct device_node *np;
b83c1899 48
283d55e6
VK
49 np = _opp_of_get_opp_desc_node(dev->of_node, index);
50 if (!np)
51 return NULL;
f47b72a1 52
052c6f19 53 list_for_each_entry(opp_table, &opp_tables, node) {
f47b72a1
VK
54 if (opp_table->np == np) {
55 /*
56 * Multiple devices can point to the same OPP table and
57 * so will have same node-pointer, np.
58 *
59 * But the OPPs will be considered as shared only if the
60 * OPP table contains a "opp-shared" property.
61 */
b83c1899
VK
62 if (opp_table->shared_opp == OPP_TABLE_ACCESS_SHARED) {
63 _get_opp_table_kref(opp_table);
64 managed_table = opp_table;
65 }
79ee2e8f 66
b83c1899 67 break;
f47b72a1
VK
68 }
69 }
70
283d55e6 71 of_node_put(np);
b83c1899
VK
72
73 return managed_table;
f47b72a1
VK
74}
75
5d6d106f
VK
76/* The caller must call dev_pm_opp_put() after the OPP is used */
77static struct dev_pm_opp *_find_opp_of_np(struct opp_table *opp_table,
78 struct device_node *opp_np)
79{
80 struct dev_pm_opp *opp;
81
82 lockdep_assert_held(&opp_table_lock);
83
84 mutex_lock(&opp_table->lock);
85
86 list_for_each_entry(opp, &opp_table->opp_list, node) {
87 if (opp->np == opp_np) {
88 dev_pm_opp_get(opp);
89 mutex_unlock(&opp_table->lock);
90 return opp;
91 }
92 }
93
94 mutex_unlock(&opp_table->lock);
95
96 return NULL;
97}
98
99static struct device_node *of_parse_required_opp(struct device_node *np,
100 int index)
101{
102 struct device_node *required_np;
103
104 required_np = of_parse_phandle(np, "required-opps", index);
105 if (unlikely(!required_np)) {
106 pr_err("%s: Unable to parse required-opps: %pOF, index: %d\n",
107 __func__, np, index);
108 }
109
110 return required_np;
111}
112
113/* The caller must call dev_pm_opp_put_opp_table() after the table is used */
114static struct opp_table *_find_table_of_opp_np(struct device_node *opp_np)
115{
116 struct opp_table *opp_table;
117 struct dev_pm_opp *opp;
118
119 lockdep_assert_held(&opp_table_lock);
120
121 list_for_each_entry(opp_table, &opp_tables, node) {
122 opp = _find_opp_of_np(opp_table, opp_np);
123 if (opp) {
124 dev_pm_opp_put(opp);
125 _get_opp_table_kref(opp_table);
126 return opp_table;
127 }
128 }
129
130 return ERR_PTR(-ENODEV);
131}
132
133/* Free resources previously acquired by _opp_table_alloc_required_tables() */
134static void _opp_table_free_required_tables(struct opp_table *opp_table)
135{
136 struct opp_table **required_opp_tables = opp_table->required_opp_tables;
4f018bc0 137 struct device **genpd_virt_devs = opp_table->genpd_virt_devs;
5d6d106f
VK
138 int i;
139
140 if (!required_opp_tables)
141 return;
142
143 for (i = 0; i < opp_table->required_opp_count; i++) {
144 if (IS_ERR_OR_NULL(required_opp_tables[i]))
145 break;
146
147 dev_pm_opp_put_opp_table(required_opp_tables[i]);
148 }
149
150 kfree(required_opp_tables);
4f018bc0 151 kfree(genpd_virt_devs);
5d6d106f
VK
152
153 opp_table->required_opp_count = 0;
4f018bc0 154 opp_table->genpd_virt_devs = NULL;
5d6d106f
VK
155 opp_table->required_opp_tables = NULL;
156}
157
158/*
159 * Populate all devices and opp tables which are part of "required-opps" list.
160 * Checking only the first OPP node should be enough.
161 */
162static void _opp_table_alloc_required_tables(struct opp_table *opp_table,
163 struct device *dev,
164 struct device_node *opp_np)
165{
166 struct opp_table **required_opp_tables;
4f018bc0 167 struct device **genpd_virt_devs = NULL;
5d6d106f
VK
168 struct device_node *required_np, *np;
169 int count, i;
170
171 /* Traversing the first OPP node is all we need */
172 np = of_get_next_available_child(opp_np, NULL);
173 if (!np) {
174 dev_err(dev, "Empty OPP table\n");
175 return;
176 }
177
178 count = of_count_phandle_with_args(np, "required-opps", NULL);
179 if (!count)
180 goto put_np;
181
4f018bc0
VK
182 if (count > 1) {
183 genpd_virt_devs = kcalloc(count, sizeof(*genpd_virt_devs),
184 GFP_KERNEL);
185 if (!genpd_virt_devs)
186 goto put_np;
187 }
188
5d6d106f
VK
189 required_opp_tables = kcalloc(count, sizeof(*required_opp_tables),
190 GFP_KERNEL);
4f018bc0
VK
191 if (!required_opp_tables) {
192 kfree(genpd_virt_devs);
5d6d106f 193 goto put_np;
4f018bc0 194 }
5d6d106f 195
4f018bc0 196 opp_table->genpd_virt_devs = genpd_virt_devs;
5d6d106f
VK
197 opp_table->required_opp_tables = required_opp_tables;
198 opp_table->required_opp_count = count;
199
200 for (i = 0; i < count; i++) {
201 required_np = of_parse_required_opp(np, i);
202 if (!required_np)
203 goto free_required_tables;
204
205 required_opp_tables[i] = _find_table_of_opp_np(required_np);
206 of_node_put(required_np);
207
208 if (IS_ERR(required_opp_tables[i]))
209 goto free_required_tables;
210
211 /*
212 * We only support genpd's OPPs in the "required-opps" for now,
213 * as we don't know how much about other cases. Error out if the
214 * required OPP doesn't belong to a genpd.
215 */
216 if (!required_opp_tables[i]->is_genpd) {
217 dev_err(dev, "required-opp doesn't belong to genpd: %pOF\n",
218 required_np);
219 goto free_required_tables;
220 }
221 }
222
223 goto put_np;
224
225free_required_tables:
226 _opp_table_free_required_tables(opp_table);
227put_np:
228 of_node_put(np);
229}
230
eb7c8743
VK
231void _of_init_opp_table(struct opp_table *opp_table, struct device *dev,
232 int index)
f47b72a1 233{
f06ed90e
VK
234 struct device_node *np, *opp_np;
235 u32 val;
f47b72a1
VK
236
237 /*
238 * Only required for backward compatibility with v1 bindings, but isn't
239 * harmful for other cases. And so we do it unconditionally.
240 */
241 np = of_node_get(dev->of_node);
f06ed90e
VK
242 if (!np)
243 return;
244
245 if (!of_property_read_u32(np, "clock-latency", &val))
246 opp_table->clock_latency_ns_max = val;
247 of_property_read_u32(np, "voltage-tolerance",
248 &opp_table->voltage_tolerance_v1);
249
61d8e7c7
VK
250 if (of_find_property(np, "#power-domain-cells", NULL))
251 opp_table->is_genpd = true;
252
f06ed90e
VK
253 /* Get OPP table node */
254 opp_np = _opp_of_get_opp_desc_node(np, index);
255 of_node_put(np);
256
257 if (!opp_np)
258 return;
259
260 if (of_property_read_bool(opp_np, "opp-shared"))
261 opp_table->shared_opp = OPP_TABLE_ACCESS_SHARED;
262 else
263 opp_table->shared_opp = OPP_TABLE_ACCESS_EXCLUSIVE;
264
265 opp_table->np = opp_np;
266
5d6d106f 267 _opp_table_alloc_required_tables(opp_table, dev, opp_np);
f06ed90e 268 of_node_put(opp_np);
f47b72a1
VK
269}
270
5d6d106f
VK
271void _of_clear_opp_table(struct opp_table *opp_table)
272{
273 _opp_table_free_required_tables(opp_table);
274}
275
da544b61
VK
276/*
277 * Release all resources previously acquired with a call to
278 * _of_opp_alloc_required_opps().
279 */
280void _of_opp_free_required_opps(struct opp_table *opp_table,
281 struct dev_pm_opp *opp)
282{
283 struct dev_pm_opp **required_opps = opp->required_opps;
284 int i;
285
286 if (!required_opps)
287 return;
288
289 for (i = 0; i < opp_table->required_opp_count; i++) {
290 if (!required_opps[i])
291 break;
292
293 /* Put the reference back */
294 dev_pm_opp_put(required_opps[i]);
295 }
296
297 kfree(required_opps);
298 opp->required_opps = NULL;
299}
300
301/* Populate all required OPPs which are part of "required-opps" list */
302static int _of_opp_alloc_required_opps(struct opp_table *opp_table,
303 struct dev_pm_opp *opp)
304{
305 struct dev_pm_opp **required_opps;
306 struct opp_table *required_table;
307 struct device_node *np;
308 int i, ret, count = opp_table->required_opp_count;
309
310 if (!count)
311 return 0;
312
313 required_opps = kcalloc(count, sizeof(*required_opps), GFP_KERNEL);
314 if (!required_opps)
315 return -ENOMEM;
316
317 opp->required_opps = required_opps;
318
319 for (i = 0; i < count; i++) {
320 required_table = opp_table->required_opp_tables[i];
321
322 np = of_parse_required_opp(opp->np, i);
323 if (unlikely(!np)) {
324 ret = -ENODEV;
325 goto free_required_opps;
326 }
327
328 required_opps[i] = _find_opp_of_np(required_table, np);
329 of_node_put(np);
330
331 if (!required_opps[i]) {
332 pr_err("%s: Unable to find required OPP node: %pOF (%d)\n",
333 __func__, opp->np, i);
334 ret = -ENODEV;
335 goto free_required_opps;
336 }
337 }
338
339 return 0;
340
341free_required_opps:
342 _of_opp_free_required_opps(opp_table, opp);
343
344 return ret;
345}
346
f47b72a1
VK
347static bool _opp_is_supported(struct device *dev, struct opp_table *opp_table,
348 struct device_node *np)
349{
350 unsigned int count = opp_table->supported_hw_count;
351 u32 version;
352 int ret;
353
a4ee4545
DG
354 if (!opp_table->supported_hw) {
355 /*
356 * In the case that no supported_hw has been set by the
357 * platform but there is an opp-supported-hw value set for
358 * an OPP then the OPP should not be enabled as there is
359 * no way to see if the hardware supports it.
360 */
361 if (of_find_property(np, "opp-supported-hw", NULL))
362 return false;
363 else
364 return true;
365 }
f47b72a1
VK
366
367 while (count--) {
368 ret = of_property_read_u32_index(np, "opp-supported-hw", count,
369 &version);
370 if (ret) {
371 dev_warn(dev, "%s: failed to read opp-supported-hw property at index %d: %d\n",
372 __func__, count, ret);
373 return false;
374 }
375
376 /* Both of these are bitwise masks of the versions */
377 if (!(version & opp_table->supported_hw[count]))
378 return false;
379 }
380
381 return true;
382}
383
f47b72a1
VK
384static int opp_parse_supplies(struct dev_pm_opp *opp, struct device *dev,
385 struct opp_table *opp_table)
386{
dfbe4678
VK
387 u32 *microvolt, *microamp = NULL;
388 int supplies, vcount, icount, ret, i, j;
f47b72a1
VK
389 struct property *prop = NULL;
390 char name[NAME_MAX];
391
dfbe4678
VK
392 supplies = opp_table->regulator_count ? opp_table->regulator_count : 1;
393
f47b72a1
VK
394 /* Search for "opp-microvolt-<name>" */
395 if (opp_table->prop_name) {
396 snprintf(name, sizeof(name), "opp-microvolt-%s",
397 opp_table->prop_name);
398 prop = of_find_property(opp->np, name, NULL);
399 }
400
401 if (!prop) {
402 /* Search for "opp-microvolt" */
403 sprintf(name, "opp-microvolt");
404 prop = of_find_property(opp->np, name, NULL);
405
406 /* Missing property isn't a problem, but an invalid entry is */
688a48b0
VK
407 if (!prop) {
408 if (!opp_table->regulator_count)
409 return 0;
410
411 dev_err(dev, "%s: opp-microvolt missing although OPP managing regulators\n",
412 __func__);
413 return -EINVAL;
414 }
f47b72a1
VK
415 }
416
dfbe4678
VK
417 vcount = of_property_count_u32_elems(opp->np, name);
418 if (vcount < 0) {
f47b72a1 419 dev_err(dev, "%s: Invalid %s property (%d)\n",
dfbe4678
VK
420 __func__, name, vcount);
421 return vcount;
f47b72a1
VK
422 }
423
dfbe4678
VK
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);
f47b72a1
VK
428 return -EINVAL;
429 }
430
dfbe4678
VK
431 microvolt = kmalloc_array(vcount, sizeof(*microvolt), GFP_KERNEL);
432 if (!microvolt)
433 return -ENOMEM;
434
435 ret = of_property_read_u32_array(opp->np, name, microvolt, vcount);
f47b72a1
VK
436 if (ret) {
437 dev_err(dev, "%s: error parsing %s: %d\n", __func__, name, ret);
dfbe4678
VK
438 ret = -EINVAL;
439 goto free_microvolt;
f47b72a1
VK
440 }
441
442 /* Search for "opp-microamp-<name>" */
443 prop = NULL;
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);
448 }
449
450 if (!prop) {
451 /* Search for "opp-microamp" */
452 sprintf(name, "opp-microamp");
453 prop = of_find_property(opp->np, name, NULL);
454 }
455
dfbe4678
VK
456 if (prop) {
457 icount = of_property_count_u32_elems(opp->np, name);
458 if (icount < 0) {
459 dev_err(dev, "%s: Invalid %s property (%d)\n", __func__,
460 name, icount);
461 ret = icount;
462 goto free_microvolt;
463 }
f47b72a1 464
dfbe4678
VK
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);
468 ret = -EINVAL;
469 goto free_microvolt;
470 }
471
472 microamp = kmalloc_array(icount, sizeof(*microamp), GFP_KERNEL);
473 if (!microamp) {
474 ret = -EINVAL;
475 goto free_microvolt;
476 }
477
478 ret = of_property_read_u32_array(opp->np, name, microamp,
479 icount);
480 if (ret) {
481 dev_err(dev, "%s: error parsing %s: %d\n", __func__,
482 name, ret);
483 ret = -EINVAL;
484 goto free_microamp;
485 }
486 }
487
488 for (i = 0, j = 0; i < supplies; i++) {
489 opp->supplies[i].u_volt = microvolt[j++];
490
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;
494 } else {
495 opp->supplies[i].u_volt_min = microvolt[j++];
496 opp->supplies[i].u_volt_max = microvolt[j++];
497 }
498
499 if (microamp)
500 opp->supplies[i].u_amp = microamp[i];
501 }
502
503free_microamp:
504 kfree(microamp);
505free_microvolt:
506 kfree(microvolt);
507
508 return ret;
f47b72a1
VK
509}
510
511/**
512 * dev_pm_opp_of_remove_table() - Free OPP table entries created from static DT
513 * entries
514 * @dev: device pointer used to lookup OPP table.
515 *
516 * Free OPPs created using static entries present in DT.
f47b72a1
VK
517 */
518void dev_pm_opp_of_remove_table(struct device *dev)
519{
2a4eb735 520 _dev_pm_opp_find_and_remove_table(dev);
f47b72a1
VK
521}
522EXPORT_SYMBOL_GPL(dev_pm_opp_of_remove_table);
523
f47b72a1
VK
524/**
525 * _opp_add_static_v2() - Allocate static OPPs (As per 'v2' DT bindings)
8cd2f6e8 526 * @opp_table: OPP table
f47b72a1
VK
527 * @dev: device for which we do this operation
528 * @np: device node
529 *
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.
533 *
f47b72a1 534 * Return:
deac8703
DG
535 * Valid OPP pointer:
536 * On success
537 * NULL:
f47b72a1 538 * Duplicate OPPs (both freq and volt are same) and opp->available
deac8703
DG
539 * OR if the OPP is not supported by hardware.
540 * ERR_PTR(-EEXIST):
541 * Freq are same and volt are different OR
f47b72a1 542 * Duplicate OPPs (both freq and volt are same) and !opp->available
deac8703
DG
543 * ERR_PTR(-ENOMEM):
544 * Memory allocation failure
545 * ERR_PTR(-EINVAL):
546 * Failed parsing the OPP node
f47b72a1 547 */
deac8703
DG
548static struct dev_pm_opp *_opp_add_static_v2(struct opp_table *opp_table,
549 struct device *dev, struct device_node *np)
f47b72a1 550{
f47b72a1 551 struct dev_pm_opp *new_opp;
6a89e012 552 u64 rate = 0;
f47b72a1
VK
553 u32 val;
554 int ret;
a1e8c136 555 bool rate_not_available = false;
f47b72a1 556
8cd2f6e8
VK
557 new_opp = _opp_allocate(opp_table);
558 if (!new_opp)
deac8703 559 return ERR_PTR(-ENOMEM);
f47b72a1
VK
560
561 ret = of_property_read_u64(np, "opp-hz", &rate);
562 if (ret < 0) {
a1e8c136 563 /* "opp-hz" is optional for devices like power domains. */
61d8e7c7 564 if (!opp_table->is_genpd) {
a1e8c136
VK
565 dev_err(dev, "%s: opp-hz not found\n", __func__);
566 goto free_opp;
567 }
568
569 rate_not_available = true;
570 } else {
571 /*
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.
575 */
576 new_opp->rate = (unsigned long)rate;
f47b72a1
VK
577 }
578
579 /* Check if the OPP supports hardware's hierarchy of versions or not */
580 if (!_opp_is_supported(dev, opp_table, np)) {
581 dev_dbg(dev, "OPP not supported by hardware: %llu\n", rate);
582 goto free_opp;
583 }
584
f47b72a1
VK
585 new_opp->turbo = of_property_read_bool(np, "turbo-mode");
586
587 new_opp->np = np;
588 new_opp->dynamic = false;
589 new_opp->available = true;
590
da544b61
VK
591 ret = _of_opp_alloc_required_opps(opp_table, new_opp);
592 if (ret)
593 goto free_opp;
594
f47b72a1
VK
595 if (!of_property_read_u32(np, "clock-latency-ns", &val))
596 new_opp->clock_latency_ns = val;
597
3ba98324
VK
598 new_opp->pstate = of_genpd_opp_to_performance_state(dev, np);
599
f47b72a1
VK
600 ret = opp_parse_supplies(new_opp, dev, opp_table);
601 if (ret)
da544b61 602 goto free_required_opps;
f47b72a1 603
a1e8c136 604 ret = _opp_add(dev, new_opp, opp_table, rate_not_available);
7f8538eb
VK
605 if (ret) {
606 /* Don't return error for duplicate OPPs */
607 if (ret == -EBUSY)
608 ret = 0;
da544b61 609 goto free_required_opps;
7f8538eb 610 }
f47b72a1
VK
611
612 /* OPP to select on device suspend */
613 if (of_property_read_bool(np, "opp-suspend")) {
614 if (opp_table->suspend_opp) {
615 dev_warn(dev, "%s: Multiple suspend OPPs found (%lu %lu)\n",
616 __func__, opp_table->suspend_opp->rate,
617 new_opp->rate);
618 } else {
619 new_opp->suspend = true;
620 opp_table->suspend_opp = new_opp;
621 }
622 }
623
624 if (new_opp->clock_latency_ns > opp_table->clock_latency_ns_max)
625 opp_table->clock_latency_ns_max = new_opp->clock_latency_ns;
626
f47b72a1 627 pr_debug("%s: turbo:%d rate:%lu uv:%lu uvmin:%lu uvmax:%lu latency:%lu\n",
0f0fe7e0 628 __func__, new_opp->turbo, new_opp->rate,
dfbe4678
VK
629 new_opp->supplies[0].u_volt, new_opp->supplies[0].u_volt_min,
630 new_opp->supplies[0].u_volt_max, new_opp->clock_latency_ns);
f47b72a1
VK
631
632 /*
633 * Notify the changes in the availability of the operable
634 * frequency/voltage list.
635 */
052c6f19 636 blocking_notifier_call_chain(&opp_table->head, OPP_EVENT_ADD, new_opp);
deac8703 637 return new_opp;
f47b72a1 638
da544b61
VK
639free_required_opps:
640 _of_opp_free_required_opps(opp_table, new_opp);
f47b72a1 641free_opp:
8cd2f6e8
VK
642 _opp_free(new_opp);
643
deac8703 644 return ERR_PTR(ret);
f47b72a1
VK
645}
646
647/* Initializes OPP tables based on new bindings */
5ed4cecd 648static int _of_add_opp_table_v2(struct device *dev, struct opp_table *opp_table)
f47b72a1
VK
649{
650 struct device_node *np;
283d55e6 651 int ret, count = 0, pstate_count = 0;
3ba98324 652 struct dev_pm_opp *opp;
f47b72a1 653
283d55e6
VK
654 /* OPP table is already initialized for the device */
655 if (opp_table->parsed_static_opps) {
656 kref_get(&opp_table->list_kref);
657 return 0;
658 }
659
d0e8ae6c
VK
660 kref_init(&opp_table->list_kref);
661
f47b72a1 662 /* We have opp-table node now, iterate over it and add OPPs */
5ed4cecd 663 for_each_available_child_of_node(opp_table->np, np) {
deac8703
DG
664 opp = _opp_add_static_v2(opp_table, dev, np);
665 if (IS_ERR(opp)) {
666 ret = PTR_ERR(opp);
f47b72a1
VK
667 dev_err(dev, "%s: Failed to add OPP, %d\n", __func__,
668 ret);
7978db34 669 of_node_put(np);
cdd6ed90 670 goto put_list_kref;
deac8703
DG
671 } else if (opp) {
672 count++;
f47b72a1
VK
673 }
674 }
675
676 /* There should be one of more OPP defined */
8cd2f6e8
VK
677 if (WARN_ON(!count)) {
678 ret = -ENOENT;
cdd6ed90 679 goto put_list_kref;
f47b72a1
VK
680 }
681
3ba98324
VK
682 list_for_each_entry(opp, &opp_table->opp_list, node)
683 pstate_count += !!opp->pstate;
684
685 /* Either all or none of the nodes shall have performance state set */
686 if (pstate_count && pstate_count != count) {
687 dev_err(dev, "Not all nodes have performance state set (%d: %d)\n",
688 count, pstate_count);
689 ret = -ENOENT;
cdd6ed90 690 goto put_list_kref;
3ba98324
VK
691 }
692
693 if (pstate_count)
694 opp_table->genpd_performance_state = true;
695
f06ed90e 696 opp_table->parsed_static_opps = true;
f47b72a1 697
cdd6ed90
VK
698 return 0;
699
700put_list_kref:
701 _put_opp_list_kref(opp_table);
f47b72a1
VK
702
703 return ret;
704}
705
706/* Initializes OPP tables based on old-deprecated bindings */
5ed4cecd 707static int _of_add_opp_table_v1(struct device *dev, struct opp_table *opp_table)
f47b72a1
VK
708{
709 const struct property *prop;
710 const __be32 *val;
8cd2f6e8 711 int nr, ret = 0;
f47b72a1
VK
712
713 prop = of_find_property(dev->of_node, "operating-points", NULL);
714 if (!prop)
715 return -ENODEV;
716 if (!prop->value)
717 return -ENODATA;
718
719 /*
720 * Each OPP is a set of tuples consisting of frequency and
721 * voltage like <freq-kHz vol-uV>.
722 */
723 nr = prop->length / sizeof(u32);
724 if (nr % 2) {
725 dev_err(dev, "%s: Invalid OPP table\n", __func__);
726 return -EINVAL;
727 }
728
d0e8ae6c
VK
729 kref_init(&opp_table->list_kref);
730
f47b72a1
VK
731 val = prop->value;
732 while (nr) {
733 unsigned long freq = be32_to_cpup(val++) * 1000;
734 unsigned long volt = be32_to_cpup(val++);
735
8cd2f6e8 736 ret = _opp_add_v1(opp_table, dev, freq, volt, false);
04a86a84
VK
737 if (ret) {
738 dev_err(dev, "%s: Failed to add OPP %ld (%d)\n",
739 __func__, freq, ret);
cdd6ed90 740 _put_opp_list_kref(opp_table);
cdd6ed90 741 return ret;
04a86a84 742 }
f47b72a1
VK
743 nr -= 2;
744 }
745
8cd2f6e8 746 return ret;
f47b72a1
VK
747}
748
749/**
750 * dev_pm_opp_of_add_table() - Initialize opp table from device tree
751 * @dev: device pointer used to lookup OPP table.
752 *
753 * Register the initial OPP table with the OPP library for given device.
754 *
f47b72a1
VK
755 * Return:
756 * 0 On success OR
757 * Duplicate OPPs (both freq and volt are same) and opp->available
758 * -EEXIST Freq are same and volt are different OR
759 * Duplicate OPPs (both freq and volt are same) and !opp->available
760 * -ENOMEM Memory allocation failure
761 * -ENODEV when 'operating-points' property is not found or is invalid data
762 * in device node.
763 * -ENODATA when empty 'operating-points' property is found
764 * -EINVAL when invalid entries are found in opp-v2 table
765 */
766int dev_pm_opp_of_add_table(struct device *dev)
767{
5ed4cecd 768 struct opp_table *opp_table;
f47b72a1
VK
769 int ret;
770
5ed4cecd
VK
771 opp_table = dev_pm_opp_get_opp_table_indexed(dev, 0);
772 if (!opp_table)
773 return -ENOMEM;
774
f47b72a1 775 /*
5ed4cecd
VK
776 * OPPs have two version of bindings now. Also try the old (v1)
777 * bindings for backward compatibility with older dtbs.
f47b72a1 778 */
5ed4cecd
VK
779 if (opp_table->np)
780 ret = _of_add_opp_table_v2(dev, opp_table);
781 else
782 ret = _of_add_opp_table_v1(dev, opp_table);
f47b72a1 783
5ed4cecd
VK
784 if (ret)
785 dev_pm_opp_put_opp_table(opp_table);
f47b72a1
VK
786
787 return ret;
788}
789EXPORT_SYMBOL_GPL(dev_pm_opp_of_add_table);
790
fa9b274f
VK
791/**
792 * dev_pm_opp_of_add_table_indexed() - Initialize indexed opp table from device tree
793 * @dev: device pointer used to lookup OPP table.
794 * @index: Index number.
795 *
796 * Register the initial OPP table with the OPP library for given device only
797 * using the "operating-points-v2" property.
798 *
799 * Return:
800 * 0 On success OR
801 * Duplicate OPPs (both freq and volt are same) and opp->available
802 * -EEXIST Freq are same and volt are different OR
803 * Duplicate OPPs (both freq and volt are same) and !opp->available
804 * -ENOMEM Memory allocation failure
805 * -ENODEV when 'operating-points' property is not found or is invalid data
806 * in device node.
807 * -ENODATA when empty 'operating-points' property is found
808 * -EINVAL when invalid entries are found in opp-v2 table
809 */
810int dev_pm_opp_of_add_table_indexed(struct device *dev, int index)
811{
5ed4cecd 812 struct opp_table *opp_table;
8a352fd8 813 int ret, count;
fa9b274f 814
5ed4cecd 815 if (index) {
8a352fd8
VK
816 /*
817 * If only one phandle is present, then the same OPP table
818 * applies for all index requests.
819 */
820 count = of_count_phandle_with_args(dev->of_node,
821 "operating-points-v2", NULL);
5ed4cecd
VK
822 if (count != 1)
823 return -ENODEV;
8a352fd8 824
5ed4cecd 825 index = 0;
8a352fd8 826 }
fa9b274f 827
5ed4cecd
VK
828 opp_table = dev_pm_opp_get_opp_table_indexed(dev, index);
829 if (!opp_table)
830 return -ENOMEM;
831
832 ret = _of_add_opp_table_v2(dev, opp_table);
833 if (ret)
834 dev_pm_opp_put_opp_table(opp_table);
fa9b274f
VK
835
836 return ret;
837}
838EXPORT_SYMBOL_GPL(dev_pm_opp_of_add_table_indexed);
839
f47b72a1
VK
840/* CPU device specific helpers */
841
842/**
843 * dev_pm_opp_of_cpumask_remove_table() - Removes OPP table for @cpumask
844 * @cpumask: cpumask for which OPP table needs to be removed
845 *
846 * This removes the OPP tables for CPUs present in the @cpumask.
847 * This should be used only to remove static entries created from DT.
f47b72a1
VK
848 */
849void dev_pm_opp_of_cpumask_remove_table(const struct cpumask *cpumask)
850{
2a4eb735 851 _dev_pm_opp_cpumask_remove_table(cpumask, -1);
f47b72a1
VK
852}
853EXPORT_SYMBOL_GPL(dev_pm_opp_of_cpumask_remove_table);
854
855/**
856 * dev_pm_opp_of_cpumask_add_table() - Adds OPP table for @cpumask
857 * @cpumask: cpumask for which OPP table needs to be added.
858 *
859 * This adds the OPP tables for CPUs present in the @cpumask.
f47b72a1
VK
860 */
861int dev_pm_opp_of_cpumask_add_table(const struct cpumask *cpumask)
862{
863 struct device *cpu_dev;
50b6b87c 864 int cpu, ret;
f47b72a1 865
50b6b87c
VK
866 if (WARN_ON(cpumask_empty(cpumask)))
867 return -ENODEV;
f47b72a1
VK
868
869 for_each_cpu(cpu, cpumask) {
870 cpu_dev = get_cpu_device(cpu);
871 if (!cpu_dev) {
872 pr_err("%s: failed to get cpu%d device\n", __func__,
873 cpu);
50b6b87c
VK
874 ret = -ENODEV;
875 goto remove_table;
f47b72a1
VK
876 }
877
878 ret = dev_pm_opp_of_add_table(cpu_dev);
879 if (ret) {
5b60697c
VK
880 /*
881 * OPP may get registered dynamically, don't print error
882 * message here.
883 */
884 pr_debug("%s: couldn't find opp table for cpu:%d, %d\n",
885 __func__, cpu, ret);
f47b72a1 886
50b6b87c 887 goto remove_table;
f47b72a1
VK
888 }
889 }
890
50b6b87c
VK
891 return 0;
892
893remove_table:
894 /* Free all other OPPs */
895 _dev_pm_opp_cpumask_remove_table(cpumask, cpu);
896
f47b72a1
VK
897 return ret;
898}
899EXPORT_SYMBOL_GPL(dev_pm_opp_of_cpumask_add_table);
900
901/*
902 * Works only for OPP v2 bindings.
903 *
904 * Returns -ENOENT if operating-points-v2 bindings aren't supported.
905 */
906/**
907 * dev_pm_opp_of_get_sharing_cpus() - Get cpumask of CPUs sharing OPPs with
908 * @cpu_dev using operating-points-v2
909 * bindings.
910 *
911 * @cpu_dev: CPU device for which we do this operation
912 * @cpumask: cpumask to update with information of sharing CPUs
913 *
914 * This updates the @cpumask with CPUs that are sharing OPPs with @cpu_dev.
915 *
916 * Returns -ENOENT if operating-points-v2 isn't present for @cpu_dev.
f47b72a1
VK
917 */
918int dev_pm_opp_of_get_sharing_cpus(struct device *cpu_dev,
919 struct cpumask *cpumask)
920{
76279291 921 struct device_node *np, *tmp_np, *cpu_np;
f47b72a1
VK
922 int cpu, ret = 0;
923
924 /* Get OPP descriptor node */
0764c604 925 np = dev_pm_opp_of_get_opp_desc_node(cpu_dev);
f47b72a1 926 if (!np) {
349aa92e 927 dev_dbg(cpu_dev, "%s: Couldn't find opp node.\n", __func__);
f47b72a1
VK
928 return -ENOENT;
929 }
930
931 cpumask_set_cpu(cpu_dev->id, cpumask);
932
933 /* OPPs are shared ? */
934 if (!of_property_read_bool(np, "opp-shared"))
935 goto put_cpu_node;
936
937 for_each_possible_cpu(cpu) {
938 if (cpu == cpu_dev->id)
939 continue;
940
9867999f 941 cpu_np = of_cpu_device_node_get(cpu);
76279291
WR
942 if (!cpu_np) {
943 dev_err(cpu_dev, "%s: failed to get cpu%d node\n",
f47b72a1 944 __func__, cpu);
76279291 945 ret = -ENOENT;
f47b72a1
VK
946 goto put_cpu_node;
947 }
948
949 /* Get OPP descriptor node */
fa9b274f 950 tmp_np = _opp_of_get_opp_desc_node(cpu_np, 0);
9867999f 951 of_node_put(cpu_np);
f47b72a1 952 if (!tmp_np) {
76279291 953 pr_err("%pOF: Couldn't find opp node\n", cpu_np);
f47b72a1
VK
954 ret = -ENOENT;
955 goto put_cpu_node;
956 }
957
958 /* CPUs are sharing opp node */
959 if (np == tmp_np)
960 cpumask_set_cpu(cpu, cpumask);
961
962 of_node_put(tmp_np);
963 }
964
965put_cpu_node:
966 of_node_put(np);
967 return ret;
968}
969EXPORT_SYMBOL_GPL(dev_pm_opp_of_get_sharing_cpus);
a88bd2a5
VK
970
971/**
972 * of_dev_pm_opp_find_required_opp() - Search for required OPP.
973 * @dev: The device whose OPP node is referenced by the 'np' DT node.
974 * @np: Node that contains the "required-opps" property.
975 *
976 * Returns the OPP of the device 'dev', whose phandle is present in the "np"
977 * node. Although the "required-opps" property supports having multiple
978 * phandles, this helper routine only parses the very first phandle in the list.
979 *
980 * Return: Matching opp, else returns ERR_PTR in case of error and should be
981 * handled using IS_ERR.
982 *
983 * The callers are required to call dev_pm_opp_put() for the returned OPP after
984 * use.
985 */
986struct dev_pm_opp *of_dev_pm_opp_find_required_opp(struct device *dev,
987 struct device_node *np)
988{
989 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ENODEV);
990 struct device_node *required_np;
991 struct opp_table *opp_table;
992
993 opp_table = _find_opp_table(dev);
994 if (IS_ERR(opp_table))
995 return ERR_CAST(opp_table);
996
997 required_np = of_parse_phandle(np, "required-opps", 0);
998 if (unlikely(!required_np)) {
999 dev_err(dev, "Unable to parse required-opps\n");
1000 goto put_opp_table;
1001 }
1002
1003 mutex_lock(&opp_table->lock);
1004
1005 list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
1006 if (temp_opp->available && temp_opp->np == required_np) {
1007 opp = temp_opp;
1008
1009 /* Increment the reference count of OPP */
1010 dev_pm_opp_get(opp);
1011 break;
1012 }
1013 }
1014
1015 mutex_unlock(&opp_table->lock);
1016
1017 of_node_put(required_np);
1018put_opp_table:
1019 dev_pm_opp_put_opp_table(opp_table);
1020
1021 return opp;
1022}
1023EXPORT_SYMBOL_GPL(of_dev_pm_opp_find_required_opp);
e2f4b5f8
VK
1024
1025/**
1026 * dev_pm_opp_get_of_node() - Gets the DT node corresponding to an opp
1027 * @opp: opp for which DT node has to be returned for
1028 *
1029 * Return: DT node corresponding to the opp, else 0 on success.
1030 *
1031 * The caller needs to put the node with of_node_put() after using it.
1032 */
1033struct device_node *dev_pm_opp_get_of_node(struct dev_pm_opp *opp)
1034{
1035 if (IS_ERR_OR_NULL(opp)) {
1036 pr_err("%s: Invalid parameters\n", __func__);
1037 return NULL;
1038 }
1039
1040 return of_node_get(opp->np);
1041}
1042EXPORT_SYMBOL_GPL(dev_pm_opp_get_of_node);