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