Merge tag 'mmc-v5.13' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc
[linux-2.6-block.git] / drivers / opp / of.c
CommitLineData
d2912cb1 1// SPDX-License-Identifier: GPL-2.0-only
f47b72a1
VK
2/*
3 * Generic OPP OF helpers
4 *
5 * Copyright (C) 2009-2010 Texas Instruments Incorporated.
6 * Nishanth Menon
7 * Romit Dasgupta
8 * Kevin Hilman
f47b72a1
VK
9 */
10
11#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12
13#include <linux/cpu.h>
14#include <linux/errno.h>
15#include <linux/device.h>
9867999f 16#include <linux/of_device.h>
3ba98324 17#include <linux/pm_domain.h>
dfbe4678 18#include <linux/slab.h>
f47b72a1 19#include <linux/export.h>
a4f342b9 20#include <linux/energy_model.h>
f47b72a1
VK
21
22#include "opp.h"
23
f06ed90e
VK
24/*
25 * Returns opp descriptor node for a device node, caller must
26 * do of_node_put().
27 */
28static struct device_node *_opp_of_get_opp_desc_node(struct device_node *np,
29 int index)
30{
31 /* "operating-points-v2" can be an array for power domain providers */
32 return of_parse_phandle(np, "operating-points-v2", index);
33}
34
35/* Returns opp descriptor node for a device, caller must do of_node_put() */
36struct device_node *dev_pm_opp_of_get_opp_desc_node(struct device *dev)
37{
38 return _opp_of_get_opp_desc_node(dev->of_node, 0);
39}
40EXPORT_SYMBOL_GPL(dev_pm_opp_of_get_opp_desc_node);
41
283d55e6 42struct opp_table *_managed_opp(struct device *dev, int index)
f47b72a1 43{
b83c1899 44 struct opp_table *opp_table, *managed_table = NULL;
283d55e6 45 struct device_node *np;
b83c1899 46
283d55e6
VK
47 np = _opp_of_get_opp_desc_node(dev->of_node, index);
48 if (!np)
49 return NULL;
f47b72a1 50
052c6f19 51 list_for_each_entry(opp_table, &opp_tables, node) {
f47b72a1
VK
52 if (opp_table->np == np) {
53 /*
54 * Multiple devices can point to the same OPP table and
55 * so will have same node-pointer, np.
56 *
57 * But the OPPs will be considered as shared only if the
58 * OPP table contains a "opp-shared" property.
59 */
b83c1899
VK
60 if (opp_table->shared_opp == OPP_TABLE_ACCESS_SHARED) {
61 _get_opp_table_kref(opp_table);
62 managed_table = opp_table;
63 }
79ee2e8f 64
b83c1899 65 break;
f47b72a1
VK
66 }
67 }
68
283d55e6 69 of_node_put(np);
b83c1899
VK
70
71 return managed_table;
f47b72a1
VK
72}
73
5d6d106f
VK
74/* The caller must call dev_pm_opp_put() after the OPP is used */
75static struct dev_pm_opp *_find_opp_of_np(struct opp_table *opp_table,
76 struct device_node *opp_np)
77{
78 struct dev_pm_opp *opp;
79
5d6d106f
VK
80 mutex_lock(&opp_table->lock);
81
82 list_for_each_entry(opp, &opp_table->opp_list, node) {
83 if (opp->np == opp_np) {
84 dev_pm_opp_get(opp);
85 mutex_unlock(&opp_table->lock);
86 return opp;
87 }
88 }
89
90 mutex_unlock(&opp_table->lock);
91
92 return NULL;
93}
94
95static struct device_node *of_parse_required_opp(struct device_node *np,
96 int index)
97{
98 struct device_node *required_np;
99
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);
104 }
105
106 return required_np;
107}
108
109/* The caller must call dev_pm_opp_put_opp_table() after the table is used */
110static struct opp_table *_find_table_of_opp_np(struct device_node *opp_np)
111{
112 struct opp_table *opp_table;
699e21e4 113 struct device_node *opp_table_np;
5d6d106f 114
699e21e4
VK
115 opp_table_np = of_get_parent(opp_np);
116 if (!opp_table_np)
117 goto err;
118
119 /* It is safe to put the node now as all we need now is its address */
120 of_node_put(opp_table_np);
121
27c09484 122 mutex_lock(&opp_table_lock);
5d6d106f 123 list_for_each_entry(opp_table, &opp_tables, node) {
699e21e4 124 if (opp_table_np == opp_table->np) {
5d6d106f 125 _get_opp_table_kref(opp_table);
27c09484 126 mutex_unlock(&opp_table_lock);
5d6d106f
VK
127 return opp_table;
128 }
129 }
27c09484 130 mutex_unlock(&opp_table_lock);
5d6d106f 131
699e21e4 132err:
5d6d106f
VK
133 return ERR_PTR(-ENODEV);
134}
135
136/* Free resources previously acquired by _opp_table_alloc_required_tables() */
137static void _opp_table_free_required_tables(struct opp_table *opp_table)
138{
139 struct opp_table **required_opp_tables = opp_table->required_opp_tables;
140 int i;
141
142 if (!required_opp_tables)
143 return;
144
145 for (i = 0; i < opp_table->required_opp_count; i++) {
146 if (IS_ERR_OR_NULL(required_opp_tables[i]))
7eba0c76 147 continue;
5d6d106f
VK
148
149 dev_pm_opp_put_opp_table(required_opp_tables[i]);
150 }
151
152 kfree(required_opp_tables);
153
154 opp_table->required_opp_count = 0;
155 opp_table->required_opp_tables = NULL;
7eba0c76 156 list_del(&opp_table->lazy);
5d6d106f
VK
157}
158
159/*
160 * Populate all devices and opp tables which are part of "required-opps" list.
161 * Checking only the first OPP node should be enough.
162 */
163static void _opp_table_alloc_required_tables(struct opp_table *opp_table,
164 struct device *dev,
165 struct device_node *opp_np)
166{
167 struct opp_table **required_opp_tables;
168 struct device_node *required_np, *np;
7eba0c76 169 bool lazy = false;
c0ab9e08 170 int count, i;
5d6d106f
VK
171
172 /* Traversing the first OPP node is all we need */
173 np = of_get_next_available_child(opp_np, NULL);
174 if (!np) {
6ee70e8c
NM
175 dev_warn(dev, "Empty OPP table\n");
176
5d6d106f
VK
177 return;
178 }
179
180 count = of_count_phandle_with_args(np, "required-opps", NULL);
181 if (!count)
182 goto put_np;
183
184 required_opp_tables = kcalloc(count, sizeof(*required_opp_tables),
185 GFP_KERNEL);
c0ab9e08 186 if (!required_opp_tables)
5d6d106f
VK
187 goto put_np;
188
189 opp_table->required_opp_tables = required_opp_tables;
190 opp_table->required_opp_count = count;
191
192 for (i = 0; i < count; i++) {
193 required_np = of_parse_required_opp(np, i);
194 if (!required_np)
195 goto free_required_tables;
196
197 required_opp_tables[i] = _find_table_of_opp_np(required_np);
198 of_node_put(required_np);
199
7eba0c76
VK
200 if (IS_ERR(required_opp_tables[i])) {
201 lazy = true;
202 continue;
203 }
5d6d106f
VK
204
205 /*
206 * We only support genpd's OPPs in the "required-opps" for now,
207 * as we don't know how much about other cases. Error out if the
208 * required OPP doesn't belong to a genpd.
209 */
210 if (!required_opp_tables[i]->is_genpd) {
211 dev_err(dev, "required-opp doesn't belong to genpd: %pOF\n",
212 required_np);
213 goto free_required_tables;
214 }
215 }
216
7eba0c76
VK
217 /* Let's do the linking later on */
218 if (lazy)
219 list_add(&opp_table->lazy, &lazy_opp_tables);
220
5d6d106f
VK
221 goto put_np;
222
223free_required_tables:
224 _opp_table_free_required_tables(opp_table);
225put_np:
226 of_node_put(np);
227}
228
eb7c8743
VK
229void _of_init_opp_table(struct opp_table *opp_table, struct device *dev,
230 int index)
f47b72a1 231{
f06ed90e
VK
232 struct device_node *np, *opp_np;
233 u32 val;
f47b72a1
VK
234
235 /*
236 * Only required for backward compatibility with v1 bindings, but isn't
237 * harmful for other cases. And so we do it unconditionally.
238 */
239 np = of_node_get(dev->of_node);
f06ed90e
VK
240 if (!np)
241 return;
242
243 if (!of_property_read_u32(np, "clock-latency", &val))
244 opp_table->clock_latency_ns_max = val;
245 of_property_read_u32(np, "voltage-tolerance",
246 &opp_table->voltage_tolerance_v1);
247
61d8e7c7
VK
248 if (of_find_property(np, "#power-domain-cells", NULL))
249 opp_table->is_genpd = true;
250
f06ed90e
VK
251 /* Get OPP table node */
252 opp_np = _opp_of_get_opp_desc_node(np, index);
253 of_node_put(np);
254
255 if (!opp_np)
256 return;
257
258 if (of_property_read_bool(opp_np, "opp-shared"))
259 opp_table->shared_opp = OPP_TABLE_ACCESS_SHARED;
260 else
261 opp_table->shared_opp = OPP_TABLE_ACCESS_EXCLUSIVE;
262
263 opp_table->np = opp_np;
264
5d6d106f 265 _opp_table_alloc_required_tables(opp_table, dev, opp_np);
f06ed90e 266 of_node_put(opp_np);
f47b72a1
VK
267}
268
5d6d106f
VK
269void _of_clear_opp_table(struct opp_table *opp_table)
270{
271 _opp_table_free_required_tables(opp_table);
272}
273
da544b61
VK
274/*
275 * Release all resources previously acquired with a call to
276 * _of_opp_alloc_required_opps().
277 */
278void _of_opp_free_required_opps(struct opp_table *opp_table,
279 struct dev_pm_opp *opp)
280{
281 struct dev_pm_opp **required_opps = opp->required_opps;
282 int i;
283
284 if (!required_opps)
285 return;
286
287 for (i = 0; i < opp_table->required_opp_count; i++) {
288 if (!required_opps[i])
7eba0c76 289 continue;
da544b61
VK
290
291 /* Put the reference back */
292 dev_pm_opp_put(required_opps[i]);
293 }
294
da544b61 295 opp->required_opps = NULL;
7eba0c76 296 kfree(required_opps);
da544b61
VK
297}
298
299/* Populate all required OPPs which are part of "required-opps" list */
300static int _of_opp_alloc_required_opps(struct opp_table *opp_table,
301 struct dev_pm_opp *opp)
302{
303 struct dev_pm_opp **required_opps;
304 struct opp_table *required_table;
305 struct device_node *np;
306 int i, ret, count = opp_table->required_opp_count;
307
308 if (!count)
309 return 0;
310
311 required_opps = kcalloc(count, sizeof(*required_opps), GFP_KERNEL);
312 if (!required_opps)
313 return -ENOMEM;
314
315 opp->required_opps = required_opps;
316
317 for (i = 0; i < count; i++) {
318 required_table = opp_table->required_opp_tables[i];
319
7eba0c76
VK
320 /* Required table not added yet, we will link later */
321 if (IS_ERR_OR_NULL(required_table))
322 continue;
323
da544b61
VK
324 np = of_parse_required_opp(opp->np, i);
325 if (unlikely(!np)) {
326 ret = -ENODEV;
327 goto free_required_opps;
328 }
329
330 required_opps[i] = _find_opp_of_np(required_table, np);
331 of_node_put(np);
332
333 if (!required_opps[i]) {
334 pr_err("%s: Unable to find required OPP node: %pOF (%d)\n",
335 __func__, opp->np, i);
336 ret = -ENODEV;
337 goto free_required_opps;
338 }
339 }
340
341 return 0;
342
343free_required_opps:
344 _of_opp_free_required_opps(opp_table, opp);
345
346 return ret;
347}
348
7eba0c76
VK
349/* Link required OPPs for an individual OPP */
350static int lazy_link_required_opps(struct opp_table *opp_table,
351 struct opp_table *new_table, int index)
352{
353 struct device_node *required_np;
354 struct dev_pm_opp *opp;
355
356 list_for_each_entry(opp, &opp_table->opp_list, node) {
357 required_np = of_parse_required_opp(opp->np, index);
358 if (unlikely(!required_np))
359 return -ENODEV;
360
361 opp->required_opps[index] = _find_opp_of_np(new_table, required_np);
362 of_node_put(required_np);
363
364 if (!opp->required_opps[index]) {
365 pr_err("%s: Unable to find required OPP node: %pOF (%d)\n",
366 __func__, opp->np, index);
367 return -ENODEV;
368 }
369 }
370
371 return 0;
372}
373
374/* Link required OPPs for all OPPs of the newly added OPP table */
375static void lazy_link_required_opp_table(struct opp_table *new_table)
376{
377 struct opp_table *opp_table, *temp, **required_opp_tables;
378 struct device_node *required_np, *opp_np, *required_table_np;
379 struct dev_pm_opp *opp;
380 int i, ret;
381
382 /*
383 * We only support genpd's OPPs in the "required-opps" for now,
384 * as we don't know much about other cases.
385 */
386 if (!new_table->is_genpd)
387 return;
388
389 mutex_lock(&opp_table_lock);
390
391 list_for_each_entry_safe(opp_table, temp, &lazy_opp_tables, lazy) {
392 bool lazy = false;
393
394 /* opp_np can't be invalid here */
395 opp_np = of_get_next_available_child(opp_table->np, NULL);
396
397 for (i = 0; i < opp_table->required_opp_count; i++) {
398 required_opp_tables = opp_table->required_opp_tables;
399
400 /* Required opp-table is already parsed */
401 if (!IS_ERR(required_opp_tables[i]))
402 continue;
403
404 /* required_np can't be invalid here */
405 required_np = of_parse_required_opp(opp_np, i);
406 required_table_np = of_get_parent(required_np);
407
408 of_node_put(required_table_np);
409 of_node_put(required_np);
410
411 /*
412 * Newly added table isn't the required opp-table for
413 * opp_table.
414 */
415 if (required_table_np != new_table->np) {
416 lazy = true;
417 continue;
418 }
419
420 required_opp_tables[i] = new_table;
421 _get_opp_table_kref(new_table);
422
423 /* Link OPPs now */
424 ret = lazy_link_required_opps(opp_table, new_table, i);
425 if (ret) {
426 /* The OPPs will be marked unusable */
427 lazy = false;
428 break;
429 }
430 }
431
432 of_node_put(opp_np);
433
434 /* All required opp-tables found, remove from lazy list */
435 if (!lazy) {
436 list_del(&opp_table->lazy);
437 INIT_LIST_HEAD(&opp_table->lazy);
438
439 list_for_each_entry(opp, &opp_table->opp_list, node)
440 _required_opps_available(opp, opp_table->required_opp_count);
441 }
442 }
443
444 mutex_unlock(&opp_table_lock);
445}
446
45679f9b
SS
447static int _bandwidth_supported(struct device *dev, struct opp_table *opp_table)
448{
449 struct device_node *np, *opp_np;
450 struct property *prop;
451
452 if (!opp_table) {
453 np = of_node_get(dev->of_node);
454 if (!np)
455 return -ENODEV;
456
457 opp_np = _opp_of_get_opp_desc_node(np, 0);
458 of_node_put(np);
459 } else {
460 opp_np = of_node_get(opp_table->np);
461 }
462
463 /* Lets not fail in case we are parsing opp-v1 bindings */
464 if (!opp_np)
465 return 0;
466
467 /* Checking only first OPP is sufficient */
468 np = of_get_next_available_child(opp_np, NULL);
469 if (!np) {
470 dev_err(dev, "OPP table empty\n");
471 return -EINVAL;
472 }
473 of_node_put(opp_np);
474
475 prop = of_find_property(np, "opp-peak-kBps", NULL);
476 of_node_put(np);
477
478 if (!prop || !prop->length)
479 return 0;
480
481 return 1;
482}
483
6d3f922c
GD
484int dev_pm_opp_of_find_icc_paths(struct device *dev,
485 struct opp_table *opp_table)
486{
487 struct device_node *np;
45679f9b 488 int ret, i, count, num_paths;
6d3f922c
GD
489 struct icc_path **paths;
490
45679f9b 491 ret = _bandwidth_supported(dev, opp_table);
6ee70e8c
NM
492 if (ret == -EINVAL)
493 return 0; /* Empty OPP table is a valid corner-case, let's not fail */
494 else if (ret <= 0)
45679f9b
SS
495 return ret;
496
497 ret = 0;
498
6d3f922c
GD
499 np = of_node_get(dev->of_node);
500 if (!np)
501 return 0;
502
503 count = of_count_phandle_with_args(np, "interconnects",
504 "#interconnect-cells");
505 of_node_put(np);
506 if (count < 0)
507 return 0;
508
509 /* two phandles when #interconnect-cells = <1> */
510 if (count % 2) {
511 dev_err(dev, "%s: Invalid interconnects values\n", __func__);
512 return -EINVAL;
513 }
514
515 num_paths = count / 2;
516 paths = kcalloc(num_paths, sizeof(*paths), GFP_KERNEL);
517 if (!paths)
518 return -ENOMEM;
519
520 for (i = 0; i < num_paths; i++) {
521 paths[i] = of_icc_get_by_index(dev, i);
522 if (IS_ERR(paths[i])) {
523 ret = PTR_ERR(paths[i]);
524 if (ret != -EPROBE_DEFER) {
525 dev_err(dev, "%s: Unable to get path%d: %d\n",
526 __func__, i, ret);
527 }
528 goto err;
529 }
530 }
531
532 if (opp_table) {
533 opp_table->paths = paths;
534 opp_table->path_count = num_paths;
535 return 0;
536 }
537
538err:
539 while (i--)
540 icc_put(paths[i]);
541
542 kfree(paths);
543
544 return ret;
545}
546EXPORT_SYMBOL_GPL(dev_pm_opp_of_find_icc_paths);
547
f47b72a1
VK
548static bool _opp_is_supported(struct device *dev, struct opp_table *opp_table,
549 struct device_node *np)
550{
0ff25c99
VK
551 unsigned int levels = opp_table->supported_hw_count;
552 int count, versions, ret, i, j;
553 u32 val;
f47b72a1 554
a4ee4545
DG
555 if (!opp_table->supported_hw) {
556 /*
557 * In the case that no supported_hw has been set by the
558 * platform but there is an opp-supported-hw value set for
559 * an OPP then the OPP should not be enabled as there is
560 * no way to see if the hardware supports it.
561 */
562 if (of_find_property(np, "opp-supported-hw", NULL))
563 return false;
564 else
565 return true;
566 }
f47b72a1 567
0ff25c99
VK
568 count = of_property_count_u32_elems(np, "opp-supported-hw");
569 if (count <= 0 || count % levels) {
570 dev_err(dev, "%s: Invalid opp-supported-hw property (%d)\n",
571 __func__, count);
572 return false;
573 }
574
575 versions = count / levels;
576
577 /* All levels in at least one of the versions should match */
578 for (i = 0; i < versions; i++) {
579 bool supported = true;
580
581 for (j = 0; j < levels; j++) {
582 ret = of_property_read_u32_index(np, "opp-supported-hw",
583 i * levels + j, &val);
584 if (ret) {
585 dev_warn(dev, "%s: failed to read opp-supported-hw property at index %d: %d\n",
586 __func__, i * levels + j, ret);
587 return false;
588 }
589
590 /* Check if the level is supported */
591 if (!(val & opp_table->supported_hw[j])) {
592 supported = false;
593 break;
594 }
f47b72a1
VK
595 }
596
0ff25c99
VK
597 if (supported)
598 return true;
f47b72a1
VK
599 }
600
0ff25c99 601 return false;
f47b72a1
VK
602}
603
f47b72a1
VK
604static int opp_parse_supplies(struct dev_pm_opp *opp, struct device *dev,
605 struct opp_table *opp_table)
606{
dfbe4678 607 u32 *microvolt, *microamp = NULL;
46f48aca 608 int supplies = opp_table->regulator_count, vcount, icount, ret, i, j;
f47b72a1
VK
609 struct property *prop = NULL;
610 char name[NAME_MAX];
611
612 /* Search for "opp-microvolt-<name>" */
613 if (opp_table->prop_name) {
614 snprintf(name, sizeof(name), "opp-microvolt-%s",
615 opp_table->prop_name);
616 prop = of_find_property(opp->np, name, NULL);
617 }
618
619 if (!prop) {
620 /* Search for "opp-microvolt" */
621 sprintf(name, "opp-microvolt");
622 prop = of_find_property(opp->np, name, NULL);
623
624 /* Missing property isn't a problem, but an invalid entry is */
688a48b0 625 if (!prop) {
46f48aca
VK
626 if (unlikely(supplies == -1)) {
627 /* Initialize regulator_count */
628 opp_table->regulator_count = 0;
629 return 0;
630 }
631
632 if (!supplies)
688a48b0
VK
633 return 0;
634
635 dev_err(dev, "%s: opp-microvolt missing although OPP managing regulators\n",
636 __func__);
637 return -EINVAL;
638 }
f47b72a1
VK
639 }
640
46f48aca
VK
641 if (unlikely(supplies == -1)) {
642 /* Initialize regulator_count */
643 supplies = opp_table->regulator_count = 1;
644 } else if (unlikely(!supplies)) {
645 dev_err(dev, "%s: opp-microvolt wasn't expected\n", __func__);
646 return -EINVAL;
647 }
648
dfbe4678
VK
649 vcount = of_property_count_u32_elems(opp->np, name);
650 if (vcount < 0) {
f47b72a1 651 dev_err(dev, "%s: Invalid %s property (%d)\n",
dfbe4678
VK
652 __func__, name, vcount);
653 return vcount;
f47b72a1
VK
654 }
655
dfbe4678
VK
656 /* There can be one or three elements per supply */
657 if (vcount != supplies && vcount != supplies * 3) {
658 dev_err(dev, "%s: Invalid number of elements in %s property (%d) with supplies (%d)\n",
659 __func__, name, vcount, supplies);
f47b72a1
VK
660 return -EINVAL;
661 }
662
dfbe4678
VK
663 microvolt = kmalloc_array(vcount, sizeof(*microvolt), GFP_KERNEL);
664 if (!microvolt)
665 return -ENOMEM;
666
667 ret = of_property_read_u32_array(opp->np, name, microvolt, vcount);
f47b72a1
VK
668 if (ret) {
669 dev_err(dev, "%s: error parsing %s: %d\n", __func__, name, ret);
dfbe4678
VK
670 ret = -EINVAL;
671 goto free_microvolt;
f47b72a1
VK
672 }
673
674 /* Search for "opp-microamp-<name>" */
675 prop = NULL;
676 if (opp_table->prop_name) {
677 snprintf(name, sizeof(name), "opp-microamp-%s",
678 opp_table->prop_name);
679 prop = of_find_property(opp->np, name, NULL);
680 }
681
682 if (!prop) {
683 /* Search for "opp-microamp" */
684 sprintf(name, "opp-microamp");
685 prop = of_find_property(opp->np, name, NULL);
686 }
687
dfbe4678
VK
688 if (prop) {
689 icount = of_property_count_u32_elems(opp->np, name);
690 if (icount < 0) {
691 dev_err(dev, "%s: Invalid %s property (%d)\n", __func__,
692 name, icount);
693 ret = icount;
694 goto free_microvolt;
695 }
f47b72a1 696
dfbe4678
VK
697 if (icount != supplies) {
698 dev_err(dev, "%s: Invalid number of elements in %s property (%d) with supplies (%d)\n",
699 __func__, name, icount, supplies);
700 ret = -EINVAL;
701 goto free_microvolt;
702 }
703
704 microamp = kmalloc_array(icount, sizeof(*microamp), GFP_KERNEL);
705 if (!microamp) {
706 ret = -EINVAL;
707 goto free_microvolt;
708 }
709
710 ret = of_property_read_u32_array(opp->np, name, microamp,
711 icount);
712 if (ret) {
713 dev_err(dev, "%s: error parsing %s: %d\n", __func__,
714 name, ret);
715 ret = -EINVAL;
716 goto free_microamp;
717 }
718 }
719
720 for (i = 0, j = 0; i < supplies; i++) {
721 opp->supplies[i].u_volt = microvolt[j++];
722
723 if (vcount == supplies) {
724 opp->supplies[i].u_volt_min = opp->supplies[i].u_volt;
725 opp->supplies[i].u_volt_max = opp->supplies[i].u_volt;
726 } else {
727 opp->supplies[i].u_volt_min = microvolt[j++];
728 opp->supplies[i].u_volt_max = microvolt[j++];
729 }
730
731 if (microamp)
732 opp->supplies[i].u_amp = microamp[i];
733 }
734
735free_microamp:
736 kfree(microamp);
737free_microvolt:
738 kfree(microvolt);
739
740 return ret;
f47b72a1
VK
741}
742
743/**
744 * dev_pm_opp_of_remove_table() - Free OPP table entries created from static DT
745 * entries
746 * @dev: device pointer used to lookup OPP table.
747 *
748 * Free OPPs created using static entries present in DT.
f47b72a1
VK
749 */
750void dev_pm_opp_of_remove_table(struct device *dev)
751{
8aaf6264 752 dev_pm_opp_remove_table(dev);
f47b72a1
VK
753}
754EXPORT_SYMBOL_GPL(dev_pm_opp_of_remove_table);
755
120e117b
GD
756static int _read_bw(struct dev_pm_opp *new_opp, struct opp_table *table,
757 struct device_node *np, bool peak)
6d3f922c
GD
758{
759 const char *name = peak ? "opp-peak-kBps" : "opp-avg-kBps";
760 struct property *prop;
761 int i, count, ret;
762 u32 *bw;
763
764 prop = of_find_property(np, name, NULL);
765 if (!prop)
766 return -ENODEV;
767
768 count = prop->length / sizeof(u32);
120e117b
GD
769 if (table->path_count != count) {
770 pr_err("%s: Mismatch between %s and paths (%d %d)\n",
771 __func__, name, count, table->path_count);
772 return -EINVAL;
773 }
774
6d3f922c
GD
775 bw = kmalloc_array(count, sizeof(*bw), GFP_KERNEL);
776 if (!bw)
777 return -ENOMEM;
778
779 ret = of_property_read_u32_array(np, name, bw, count);
780 if (ret) {
781 pr_err("%s: Error parsing %s: %d\n", __func__, name, ret);
782 goto out;
783 }
784
785 for (i = 0; i < count; i++) {
786 if (peak)
787 new_opp->bandwidth[i].peak = kBps_to_icc(bw[i]);
788 else
789 new_opp->bandwidth[i].avg = kBps_to_icc(bw[i]);
790 }
791
792out:
793 kfree(bw);
794 return ret;
795}
796
120e117b
GD
797static int _read_opp_key(struct dev_pm_opp *new_opp, struct opp_table *table,
798 struct device_node *np, bool *rate_not_available)
6c591eec 799{
6d3f922c 800 bool found = false;
6c591eec
SK
801 u64 rate;
802 int ret;
803
804 ret = of_property_read_u64(np, "opp-hz", &rate);
805 if (!ret) {
806 /*
807 * Rate is defined as an unsigned long in clk API, and so
808 * casting explicitly to its type. Must be fixed once rate is 64
809 * bit guaranteed in clk API.
810 */
811 new_opp->rate = (unsigned long)rate;
6d3f922c 812 found = true;
6c591eec
SK
813 }
814 *rate_not_available = !!ret;
815
6d3f922c
GD
816 /*
817 * Bandwidth consists of peak and average (optional) values:
818 * opp-peak-kBps = <path1_value path2_value>;
819 * opp-avg-kBps = <path1_value path2_value>;
820 */
120e117b 821 ret = _read_bw(new_opp, table, np, true);
6d3f922c
GD
822 if (!ret) {
823 found = true;
120e117b 824 ret = _read_bw(new_opp, table, np, false);
6d3f922c
GD
825 }
826
827 /* The properties were found but we failed to parse them */
828 if (ret && ret != -ENODEV)
829 return ret;
830
831 if (!of_property_read_u32(np, "opp-level", &new_opp->level))
832 found = true;
833
834 if (found)
835 return 0;
6c591eec
SK
836
837 return ret;
838}
839
f47b72a1
VK
840/**
841 * _opp_add_static_v2() - Allocate static OPPs (As per 'v2' DT bindings)
8cd2f6e8 842 * @opp_table: OPP table
f47b72a1
VK
843 * @dev: device for which we do this operation
844 * @np: device node
845 *
846 * This function adds an opp definition to the opp table and returns status. The
847 * opp can be controlled using dev_pm_opp_enable/disable functions and may be
848 * removed by dev_pm_opp_remove.
849 *
f47b72a1 850 * Return:
deac8703
DG
851 * Valid OPP pointer:
852 * On success
853 * NULL:
f47b72a1 854 * Duplicate OPPs (both freq and volt are same) and opp->available
deac8703
DG
855 * OR if the OPP is not supported by hardware.
856 * ERR_PTR(-EEXIST):
857 * Freq are same and volt are different OR
f47b72a1 858 * Duplicate OPPs (both freq and volt are same) and !opp->available
deac8703
DG
859 * ERR_PTR(-ENOMEM):
860 * Memory allocation failure
861 * ERR_PTR(-EINVAL):
862 * Failed parsing the OPP node
f47b72a1 863 */
deac8703
DG
864static struct dev_pm_opp *_opp_add_static_v2(struct opp_table *opp_table,
865 struct device *dev, struct device_node *np)
f47b72a1 866{
f47b72a1 867 struct dev_pm_opp *new_opp;
f47b72a1
VK
868 u32 val;
869 int ret;
a1e8c136 870 bool rate_not_available = false;
f47b72a1 871
8cd2f6e8
VK
872 new_opp = _opp_allocate(opp_table);
873 if (!new_opp)
deac8703 874 return ERR_PTR(-ENOMEM);
f47b72a1 875
120e117b 876 ret = _read_opp_key(new_opp, opp_table, np, &rate_not_available);
6c591eec
SK
877 if (ret < 0 && !opp_table->is_genpd) {
878 dev_err(dev, "%s: opp key field not found\n", __func__);
879 goto free_opp;
f47b72a1
VK
880 }
881
882 /* Check if the OPP supports hardware's hierarchy of versions or not */
883 if (!_opp_is_supported(dev, opp_table, np)) {
d7b9d9b3
DO
884 dev_dbg(dev, "OPP not supported by hardware: %lu\n",
885 new_opp->rate);
f47b72a1
VK
886 goto free_opp;
887 }
888
f47b72a1
VK
889 new_opp->turbo = of_property_read_bool(np, "turbo-mode");
890
891 new_opp->np = np;
892 new_opp->dynamic = false;
893 new_opp->available = true;
894
da544b61
VK
895 ret = _of_opp_alloc_required_opps(opp_table, new_opp);
896 if (ret)
897 goto free_opp;
898
f47b72a1
VK
899 if (!of_property_read_u32(np, "clock-latency-ns", &val))
900 new_opp->clock_latency_ns = val;
901
902 ret = opp_parse_supplies(new_opp, dev, opp_table);
903 if (ret)
da544b61 904 goto free_required_opps;
f47b72a1 905
ca1b5d77
VK
906 if (opp_table->is_genpd)
907 new_opp->pstate = pm_genpd_opp_to_performance_state(dev, new_opp);
f47b72a1 908
a1e8c136 909 ret = _opp_add(dev, new_opp, opp_table, rate_not_available);
7f8538eb
VK
910 if (ret) {
911 /* Don't return error for duplicate OPPs */
912 if (ret == -EBUSY)
913 ret = 0;
da544b61 914 goto free_required_opps;
7f8538eb 915 }
f47b72a1
VK
916
917 /* OPP to select on device suspend */
918 if (of_property_read_bool(np, "opp-suspend")) {
919 if (opp_table->suspend_opp) {
45275517
AH
920 /* Pick the OPP with higher rate as suspend OPP */
921 if (new_opp->rate > opp_table->suspend_opp->rate) {
922 opp_table->suspend_opp->suspend = false;
923 new_opp->suspend = true;
924 opp_table->suspend_opp = new_opp;
925 }
f47b72a1
VK
926 } else {
927 new_opp->suspend = true;
928 opp_table->suspend_opp = new_opp;
929 }
930 }
931
932 if (new_opp->clock_latency_ns > opp_table->clock_latency_ns_max)
933 opp_table->clock_latency_ns_max = new_opp->clock_latency_ns;
934
b6ecd5d4 935 pr_debug("%s: turbo:%d rate:%lu uv:%lu uvmin:%lu uvmax:%lu latency:%lu level:%u\n",
0f0fe7e0 936 __func__, new_opp->turbo, new_opp->rate,
dfbe4678 937 new_opp->supplies[0].u_volt, new_opp->supplies[0].u_volt_min,
b6ecd5d4
DO
938 new_opp->supplies[0].u_volt_max, new_opp->clock_latency_ns,
939 new_opp->level);
f47b72a1
VK
940
941 /*
942 * Notify the changes in the availability of the operable
943 * frequency/voltage list.
944 */
052c6f19 945 blocking_notifier_call_chain(&opp_table->head, OPP_EVENT_ADD, new_opp);
deac8703 946 return new_opp;
f47b72a1 947
da544b61
VK
948free_required_opps:
949 _of_opp_free_required_opps(opp_table, new_opp);
f47b72a1 950free_opp:
8cd2f6e8
VK
951 _opp_free(new_opp);
952
deac8703 953 return ERR_PTR(ret);
f47b72a1
VK
954}
955
956/* Initializes OPP tables based on new bindings */
5ed4cecd 957static int _of_add_opp_table_v2(struct device *dev, struct opp_table *opp_table)
f47b72a1
VK
958{
959 struct device_node *np;
a5663c9b 960 int ret, count = 0;
3ba98324 961 struct dev_pm_opp *opp;
f47b72a1 962
283d55e6 963 /* OPP table is already initialized for the device */
03758d60 964 mutex_lock(&opp_table->lock);
283d55e6 965 if (opp_table->parsed_static_opps) {
03758d60
VK
966 opp_table->parsed_static_opps++;
967 mutex_unlock(&opp_table->lock);
283d55e6
VK
968 return 0;
969 }
970
03758d60
VK
971 opp_table->parsed_static_opps = 1;
972 mutex_unlock(&opp_table->lock);
b19c2355 973
f47b72a1 974 /* We have opp-table node now, iterate over it and add OPPs */
5ed4cecd 975 for_each_available_child_of_node(opp_table->np, np) {
deac8703
DG
976 opp = _opp_add_static_v2(opp_table, dev, np);
977 if (IS_ERR(opp)) {
978 ret = PTR_ERR(opp);
f47b72a1
VK
979 dev_err(dev, "%s: Failed to add OPP, %d\n", __func__,
980 ret);
7978db34 981 of_node_put(np);
03758d60 982 goto remove_static_opp;
deac8703
DG
983 } else if (opp) {
984 count++;
f47b72a1
VK
985 }
986 }
987
988 /* There should be one of more OPP defined */
ba003319
VK
989 if (WARN_ON(!count)) {
990 ret = -ENOENT;
03758d60 991 goto remove_static_opp;
ba003319 992 }
f47b72a1 993
a5663c9b
VK
994 list_for_each_entry(opp, &opp_table->opp_list, node) {
995 /* Any non-zero performance state would enable the feature */
996 if (opp->pstate) {
997 opp_table->genpd_performance_state = true;
998 break;
999 }
3ba98324
VK
1000 }
1001
7eba0c76
VK
1002 lazy_link_required_opp_table(opp_table);
1003
cdd6ed90 1004 return 0;
ba003319 1005
03758d60
VK
1006remove_static_opp:
1007 _opp_remove_all_static(opp_table);
ba003319
VK
1008
1009 return ret;
f47b72a1
VK
1010}
1011
1012/* Initializes OPP tables based on old-deprecated bindings */
5ed4cecd 1013static int _of_add_opp_table_v1(struct device *dev, struct opp_table *opp_table)
f47b72a1
VK
1014{
1015 const struct property *prop;
1016 const __be32 *val;
8cd2f6e8 1017 int nr, ret = 0;
f47b72a1 1018
90d46d71
VK
1019 mutex_lock(&opp_table->lock);
1020 if (opp_table->parsed_static_opps) {
1021 opp_table->parsed_static_opps++;
1022 mutex_unlock(&opp_table->lock);
1023 return 0;
1024 }
1025
1026 opp_table->parsed_static_opps = 1;
1027 mutex_unlock(&opp_table->lock);
1028
f47b72a1 1029 prop = of_find_property(dev->of_node, "operating-points", NULL);
90d46d71
VK
1030 if (!prop) {
1031 ret = -ENODEV;
1032 goto remove_static_opp;
1033 }
1034 if (!prop->value) {
1035 ret = -ENODATA;
1036 goto remove_static_opp;
1037 }
f47b72a1
VK
1038
1039 /*
1040 * Each OPP is a set of tuples consisting of frequency and
1041 * voltage like <freq-kHz vol-uV>.
1042 */
1043 nr = prop->length / sizeof(u32);
1044 if (nr % 2) {
1045 dev_err(dev, "%s: Invalid OPP table\n", __func__);
90d46d71
VK
1046 ret = -EINVAL;
1047 goto remove_static_opp;
f47b72a1
VK
1048 }
1049
1050 val = prop->value;
1051 while (nr) {
1052 unsigned long freq = be32_to_cpup(val++) * 1000;
1053 unsigned long volt = be32_to_cpup(val++);
1054
8cd2f6e8 1055 ret = _opp_add_v1(opp_table, dev, freq, volt, false);
04a86a84
VK
1056 if (ret) {
1057 dev_err(dev, "%s: Failed to add OPP %ld (%d)\n",
1058 __func__, freq, ret);
90d46d71 1059 goto remove_static_opp;
04a86a84 1060 }
f47b72a1
VK
1061 nr -= 2;
1062 }
1063
1f6620f8
VK
1064 return 0;
1065
90d46d71
VK
1066remove_static_opp:
1067 _opp_remove_all_static(opp_table);
1068
8cd2f6e8 1069 return ret;
f47b72a1
VK
1070}
1071
32439ac7 1072static int _of_add_table_indexed(struct device *dev, int index, bool getclk)
f47b72a1 1073{
5ed4cecd 1074 struct opp_table *opp_table;
406e4765 1075 int ret, count;
f47b72a1 1076
406e4765
VK
1077 if (index) {
1078 /*
1079 * If only one phandle is present, then the same OPP table
1080 * applies for all index requests.
1081 */
1082 count = of_count_phandle_with_args(dev->of_node,
1083 "operating-points-v2", NULL);
1084 if (count == 1)
1085 index = 0;
1086 }
1087
32439ac7 1088 opp_table = _add_opp_table_indexed(dev, index, getclk);
dd461cd9
SG
1089 if (IS_ERR(opp_table))
1090 return PTR_ERR(opp_table);
5ed4cecd 1091
f47b72a1 1092 /*
5ed4cecd
VK
1093 * OPPs have two version of bindings now. Also try the old (v1)
1094 * bindings for backward compatibility with older dtbs.
f47b72a1 1095 */
5ed4cecd
VK
1096 if (opp_table->np)
1097 ret = _of_add_opp_table_v2(dev, opp_table);
1098 else
1099 ret = _of_add_opp_table_v1(dev, opp_table);
f47b72a1 1100
5ed4cecd
VK
1101 if (ret)
1102 dev_pm_opp_put_opp_table(opp_table);
f47b72a1
VK
1103
1104 return ret;
1105}
f47b72a1 1106
3d5cfbb6
YL
1107static void devm_pm_opp_of_table_release(void *data)
1108{
1109 dev_pm_opp_of_remove_table(data);
1110}
1111
1112/**
1113 * devm_pm_opp_of_add_table() - Initialize opp table from device tree
1114 * @dev: device pointer used to lookup OPP table.
1115 *
1116 * Register the initial OPP table with the OPP library for given device.
1117 *
1118 * The opp_table structure will be freed after the device is destroyed.
1119 *
1120 * Return:
1121 * 0 On success OR
1122 * Duplicate OPPs (both freq and volt are same) and opp->available
1123 * -EEXIST Freq are same and volt are different OR
1124 * Duplicate OPPs (both freq and volt are same) and !opp->available
1125 * -ENOMEM Memory allocation failure
1126 * -ENODEV when 'operating-points' property is not found or is invalid data
1127 * in device node.
1128 * -ENODATA when empty 'operating-points' property is found
1129 * -EINVAL when invalid entries are found in opp-v2 table
1130 */
1131int devm_pm_opp_of_add_table(struct device *dev)
1132{
1133 int ret;
1134
1135 ret = dev_pm_opp_of_add_table(dev);
1136 if (ret)
1137 return ret;
1138
1139 return devm_add_action_or_reset(dev, devm_pm_opp_of_table_release, dev);
1140}
1141EXPORT_SYMBOL_GPL(devm_pm_opp_of_add_table);
1142
fa9b274f 1143/**
406e4765 1144 * dev_pm_opp_of_add_table() - Initialize opp table from device tree
fa9b274f 1145 * @dev: device pointer used to lookup OPP table.
fa9b274f 1146 *
406e4765 1147 * Register the initial OPP table with the OPP library for given device.
fa9b274f
VK
1148 *
1149 * Return:
1150 * 0 On success OR
1151 * Duplicate OPPs (both freq and volt are same) and opp->available
1152 * -EEXIST Freq are same and volt are different OR
1153 * Duplicate OPPs (both freq and volt are same) and !opp->available
1154 * -ENOMEM Memory allocation failure
1155 * -ENODEV when 'operating-points' property is not found or is invalid data
1156 * in device node.
1157 * -ENODATA when empty 'operating-points' property is found
1158 * -EINVAL when invalid entries are found in opp-v2 table
1159 */
406e4765 1160int dev_pm_opp_of_add_table(struct device *dev)
fa9b274f 1161{
32439ac7 1162 return _of_add_table_indexed(dev, 0, true);
406e4765
VK
1163}
1164EXPORT_SYMBOL_GPL(dev_pm_opp_of_add_table);
fa9b274f 1165
406e4765
VK
1166/**
1167 * dev_pm_opp_of_add_table_indexed() - Initialize indexed opp table from device tree
1168 * @dev: device pointer used to lookup OPP table.
1169 * @index: Index number.
1170 *
1171 * Register the initial OPP table with the OPP library for given device only
1172 * using the "operating-points-v2" property.
1173 *
1174 * Return: Refer to dev_pm_opp_of_add_table() for return values.
1175 */
1176int dev_pm_opp_of_add_table_indexed(struct device *dev, int index)
1177{
32439ac7 1178 return _of_add_table_indexed(dev, index, true);
fa9b274f
VK
1179}
1180EXPORT_SYMBOL_GPL(dev_pm_opp_of_add_table_indexed);
1181
559fef0d
VK
1182/**
1183 * dev_pm_opp_of_add_table_noclk() - Initialize indexed opp table from device
1184 * tree without getting clk for device.
1185 * @dev: device pointer used to lookup OPP table.
1186 * @index: Index number.
1187 *
1188 * Register the initial OPP table with the OPP library for given device only
1189 * using the "operating-points-v2" property. Do not try to get the clk for the
1190 * device.
1191 *
1192 * Return: Refer to dev_pm_opp_of_add_table() for return values.
1193 */
1194int dev_pm_opp_of_add_table_noclk(struct device *dev, int index)
1195{
1196 return _of_add_table_indexed(dev, index, false);
1197}
1198EXPORT_SYMBOL_GPL(dev_pm_opp_of_add_table_noclk);
1199
f47b72a1
VK
1200/* CPU device specific helpers */
1201
1202/**
1203 * dev_pm_opp_of_cpumask_remove_table() - Removes OPP table for @cpumask
1204 * @cpumask: cpumask for which OPP table needs to be removed
1205 *
1206 * This removes the OPP tables for CPUs present in the @cpumask.
1207 * This should be used only to remove static entries created from DT.
f47b72a1
VK
1208 */
1209void dev_pm_opp_of_cpumask_remove_table(const struct cpumask *cpumask)
1210{
2a4eb735 1211 _dev_pm_opp_cpumask_remove_table(cpumask, -1);
f47b72a1
VK
1212}
1213EXPORT_SYMBOL_GPL(dev_pm_opp_of_cpumask_remove_table);
1214
1215/**
1216 * dev_pm_opp_of_cpumask_add_table() - Adds OPP table for @cpumask
1217 * @cpumask: cpumask for which OPP table needs to be added.
1218 *
1219 * This adds the OPP tables for CPUs present in the @cpumask.
f47b72a1
VK
1220 */
1221int dev_pm_opp_of_cpumask_add_table(const struct cpumask *cpumask)
1222{
1223 struct device *cpu_dev;
50b6b87c 1224 int cpu, ret;
f47b72a1 1225
50b6b87c
VK
1226 if (WARN_ON(cpumask_empty(cpumask)))
1227 return -ENODEV;
f47b72a1
VK
1228
1229 for_each_cpu(cpu, cpumask) {
1230 cpu_dev = get_cpu_device(cpu);
1231 if (!cpu_dev) {
1232 pr_err("%s: failed to get cpu%d device\n", __func__,
1233 cpu);
50b6b87c
VK
1234 ret = -ENODEV;
1235 goto remove_table;
f47b72a1
VK
1236 }
1237
1238 ret = dev_pm_opp_of_add_table(cpu_dev);
1239 if (ret) {
5b60697c
VK
1240 /*
1241 * OPP may get registered dynamically, don't print error
1242 * message here.
1243 */
1244 pr_debug("%s: couldn't find opp table for cpu:%d, %d\n",
1245 __func__, cpu, ret);
f47b72a1 1246
50b6b87c 1247 goto remove_table;
f47b72a1
VK
1248 }
1249 }
1250
50b6b87c
VK
1251 return 0;
1252
1253remove_table:
1254 /* Free all other OPPs */
1255 _dev_pm_opp_cpumask_remove_table(cpumask, cpu);
1256
f47b72a1
VK
1257 return ret;
1258}
1259EXPORT_SYMBOL_GPL(dev_pm_opp_of_cpumask_add_table);
1260
1261/*
1262 * Works only for OPP v2 bindings.
1263 *
1264 * Returns -ENOENT if operating-points-v2 bindings aren't supported.
1265 */
1266/**
1267 * dev_pm_opp_of_get_sharing_cpus() - Get cpumask of CPUs sharing OPPs with
1268 * @cpu_dev using operating-points-v2
1269 * bindings.
1270 *
1271 * @cpu_dev: CPU device for which we do this operation
1272 * @cpumask: cpumask to update with information of sharing CPUs
1273 *
1274 * This updates the @cpumask with CPUs that are sharing OPPs with @cpu_dev.
1275 *
1276 * Returns -ENOENT if operating-points-v2 isn't present for @cpu_dev.
f47b72a1
VK
1277 */
1278int dev_pm_opp_of_get_sharing_cpus(struct device *cpu_dev,
1279 struct cpumask *cpumask)
1280{
76279291 1281 struct device_node *np, *tmp_np, *cpu_np;
f47b72a1
VK
1282 int cpu, ret = 0;
1283
1284 /* Get OPP descriptor node */
0764c604 1285 np = dev_pm_opp_of_get_opp_desc_node(cpu_dev);
f47b72a1 1286 if (!np) {
349aa92e 1287 dev_dbg(cpu_dev, "%s: Couldn't find opp node.\n", __func__);
f47b72a1
VK
1288 return -ENOENT;
1289 }
1290
1291 cpumask_set_cpu(cpu_dev->id, cpumask);
1292
1293 /* OPPs are shared ? */
1294 if (!of_property_read_bool(np, "opp-shared"))
1295 goto put_cpu_node;
1296
1297 for_each_possible_cpu(cpu) {
1298 if (cpu == cpu_dev->id)
1299 continue;
1300
9867999f 1301 cpu_np = of_cpu_device_node_get(cpu);
76279291
WR
1302 if (!cpu_np) {
1303 dev_err(cpu_dev, "%s: failed to get cpu%d node\n",
f47b72a1 1304 __func__, cpu);
76279291 1305 ret = -ENOENT;
f47b72a1
VK
1306 goto put_cpu_node;
1307 }
1308
1309 /* Get OPP descriptor node */
fa9b274f 1310 tmp_np = _opp_of_get_opp_desc_node(cpu_np, 0);
9867999f 1311 of_node_put(cpu_np);
f47b72a1 1312 if (!tmp_np) {
76279291 1313 pr_err("%pOF: Couldn't find opp node\n", cpu_np);
f47b72a1
VK
1314 ret = -ENOENT;
1315 goto put_cpu_node;
1316 }
1317
1318 /* CPUs are sharing opp node */
1319 if (np == tmp_np)
1320 cpumask_set_cpu(cpu, cpumask);
1321
1322 of_node_put(tmp_np);
1323 }
1324
1325put_cpu_node:
1326 of_node_put(np);
1327 return ret;
1328}
1329EXPORT_SYMBOL_GPL(dev_pm_opp_of_get_sharing_cpus);
a88bd2a5
VK
1330
1331/**
4c6a343e 1332 * of_get_required_opp_performance_state() - Search for required OPP and return its performance state.
a88bd2a5 1333 * @np: Node that contains the "required-opps" property.
4c6a343e 1334 * @index: Index of the phandle to parse.
a88bd2a5 1335 *
4c6a343e
VK
1336 * Returns the performance state of the OPP pointed out by the "required-opps"
1337 * property at @index in @np.
a88bd2a5 1338 *
2feb5a89
VK
1339 * Return: Zero or positive performance state on success, otherwise negative
1340 * value on errors.
a88bd2a5 1341 */
2feb5a89 1342int of_get_required_opp_performance_state(struct device_node *np, int index)
a88bd2a5 1343{
4c6a343e 1344 struct dev_pm_opp *opp;
a88bd2a5
VK
1345 struct device_node *required_np;
1346 struct opp_table *opp_table;
2feb5a89 1347 int pstate = -EINVAL;
a88bd2a5 1348
4c6a343e
VK
1349 required_np = of_parse_required_opp(np, index);
1350 if (!required_np)
2feb5a89 1351 return -EINVAL;
a88bd2a5 1352
4c6a343e
VK
1353 opp_table = _find_table_of_opp_np(required_np);
1354 if (IS_ERR(opp_table)) {
1355 pr_err("%s: Failed to find required OPP table %pOF: %ld\n",
1356 __func__, np, PTR_ERR(opp_table));
1357 goto put_required_np;
a88bd2a5
VK
1358 }
1359
4c6a343e
VK
1360 opp = _find_opp_of_np(opp_table, required_np);
1361 if (opp) {
1362 pstate = opp->pstate;
1363 dev_pm_opp_put(opp);
a88bd2a5
VK
1364 }
1365
4c6a343e 1366 dev_pm_opp_put_opp_table(opp_table);
a88bd2a5 1367
4c6a343e 1368put_required_np:
a88bd2a5 1369 of_node_put(required_np);
a88bd2a5 1370
4c6a343e 1371 return pstate;
a88bd2a5 1372}
4c6a343e 1373EXPORT_SYMBOL_GPL(of_get_required_opp_performance_state);
e2f4b5f8
VK
1374
1375/**
1376 * dev_pm_opp_get_of_node() - Gets the DT node corresponding to an opp
1377 * @opp: opp for which DT node has to be returned for
1378 *
1379 * Return: DT node corresponding to the opp, else 0 on success.
1380 *
1381 * The caller needs to put the node with of_node_put() after using it.
1382 */
1383struct device_node *dev_pm_opp_get_of_node(struct dev_pm_opp *opp)
1384{
1385 if (IS_ERR_OR_NULL(opp)) {
1386 pr_err("%s: Invalid parameters\n", __func__);
1387 return NULL;
1388 }
1389
1390 return of_node_get(opp->np);
1391}
1392EXPORT_SYMBOL_GPL(dev_pm_opp_get_of_node);
a4f342b9
QP
1393
1394/*
1395 * Callback function provided to the Energy Model framework upon registration.
0e0ffa85 1396 * This computes the power estimated by @dev at @kHz if it is the frequency
a4f342b9
QP
1397 * of an existing OPP, or at the frequency of the first OPP above @kHz otherwise
1398 * (see dev_pm_opp_find_freq_ceil()). This function updates @kHz to the ceiled
1399 * frequency and @mW to the associated power. The power is estimated as
0e0ffa85
LL
1400 * P = C * V^2 * f with C being the device's capacitance and V and f
1401 * respectively the voltage and frequency of the OPP.
a4f342b9 1402 *
0e0ffa85
LL
1403 * Returns -EINVAL if the power calculation failed because of missing
1404 * parameters, 0 otherwise.
a4f342b9 1405 */
0e0ffa85
LL
1406static int __maybe_unused _get_power(unsigned long *mW, unsigned long *kHz,
1407 struct device *dev)
a4f342b9 1408{
a4f342b9
QP
1409 struct dev_pm_opp *opp;
1410 struct device_node *np;
1411 unsigned long mV, Hz;
1412 u32 cap;
1413 u64 tmp;
1414 int ret;
1415
0e0ffa85 1416 np = of_node_get(dev->of_node);
a4f342b9
QP
1417 if (!np)
1418 return -EINVAL;
1419
1420 ret = of_property_read_u32(np, "dynamic-power-coefficient", &cap);
1421 of_node_put(np);
1422 if (ret)
1423 return -EINVAL;
1424
1425 Hz = *kHz * 1000;
0e0ffa85 1426 opp = dev_pm_opp_find_freq_ceil(dev, &Hz);
a4f342b9
QP
1427 if (IS_ERR(opp))
1428 return -EINVAL;
1429
1430 mV = dev_pm_opp_get_voltage(opp) / 1000;
1431 dev_pm_opp_put(opp);
1432 if (!mV)
1433 return -EINVAL;
1434
1435 tmp = (u64)cap * mV * mV * (Hz / 1000000);
1436 do_div(tmp, 1000000000);
1437
1438 *mW = (unsigned long)tmp;
1439 *kHz = Hz / 1000;
1440
1441 return 0;
1442}
1443
1444/**
1445 * dev_pm_opp_of_register_em() - Attempt to register an Energy Model
0e0ffa85
LL
1446 * @dev : Device for which an Energy Model has to be registered
1447 * @cpus : CPUs for which an Energy Model has to be registered. For
1448 * other type of devices it should be set to NULL.
a4f342b9
QP
1449 *
1450 * This checks whether the "dynamic-power-coefficient" devicetree property has
1451 * been specified, and tries to register an Energy Model with it if it has.
0e0ffa85
LL
1452 * Having this property means the voltages are known for OPPs and the EM
1453 * might be calculated.
a4f342b9 1454 */
0e0ffa85 1455int dev_pm_opp_of_register_em(struct device *dev, struct cpumask *cpus)
a4f342b9 1456{
0e0ffa85 1457 struct em_data_callback em_cb = EM_DATA_CB(_get_power);
a4f342b9 1458 struct device_node *np;
0e0ffa85 1459 int ret, nr_opp;
a4f342b9
QP
1460 u32 cap;
1461
0e0ffa85
LL
1462 if (IS_ERR_OR_NULL(dev)) {
1463 ret = -EINVAL;
1464 goto failed;
1465 }
a4f342b9 1466
0e0ffa85
LL
1467 nr_opp = dev_pm_opp_get_opp_count(dev);
1468 if (nr_opp <= 0) {
1469 ret = -EINVAL;
1470 goto failed;
1471 }
a4f342b9 1472
0e0ffa85
LL
1473 np = of_node_get(dev->of_node);
1474 if (!np) {
1475 ret = -EINVAL;
1476 goto failed;
1477 }
a4f342b9
QP
1478
1479 /*
1480 * Register an EM only if the 'dynamic-power-coefficient' property is
1481 * set in devicetree. It is assumed the voltage values are known if that
1482 * property is set since it is useless otherwise. If voltages are not
1483 * known, just let the EM registration fail with an error to alert the
1484 * user about the inconsistent configuration.
1485 */
1486 ret = of_property_read_u32(np, "dynamic-power-coefficient", &cap);
1487 of_node_put(np);
0e0ffa85
LL
1488 if (ret || !cap) {
1489 dev_dbg(dev, "Couldn't find proper 'dynamic-power-coefficient' in DT\n");
1490 ret = -EINVAL;
1491 goto failed;
1492 }
a4f342b9 1493
c250d50f 1494 ret = em_dev_register_perf_domain(dev, nr_opp, &em_cb, cpus, true);
0e0ffa85
LL
1495 if (ret)
1496 goto failed;
a4f342b9 1497
0e0ffa85
LL
1498 return 0;
1499
1500failed:
1501 dev_dbg(dev, "Couldn't register Energy Model %d\n", ret);
1502 return ret;
a4f342b9
QP
1503}
1504EXPORT_SYMBOL_GPL(dev_pm_opp_of_register_em);