blob: c37afa1fe6fc8967fbbb3cab8f45cde83d24b30f [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass9e512042017-05-18 20:08:58 -06002/*
3 * Copyright (c) 2017 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Simon Glass9e512042017-05-18 20:08:58 -06005 */
6
7#include <common.h>
8#include <dm.h>
9#include <fdtdec.h>
10#include <fdt_support.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060011#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -070012#include <malloc.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090013#include <linux/libfdt.h>
Simon Glass9e512042017-05-18 20:08:58 -060014#include <dm/of_access.h>
Simon Glassbed77492017-05-18 20:09:01 -060015#include <dm/of_addr.h>
Simon Glass9e512042017-05-18 20:08:58 -060016#include <dm/ofnode.h>
17#include <linux/err.h>
Simon Glassdcf98852017-07-25 08:29:55 -060018#include <linux/ioport.h>
Simon Glass9e512042017-05-18 20:08:58 -060019
20int ofnode_read_u32(ofnode node, const char *propname, u32 *outp)
21{
Dario Binacchi59006602020-03-29 18:04:42 +020022 return ofnode_read_u32_index(node, propname, 0, outp);
Simon Glass9e512042017-05-18 20:08:58 -060023}
24
Trent Piephob061ef32019-05-10 17:48:20 +000025u32 ofnode_read_u32_default(ofnode node, const char *propname, u32 def)
Simon Glass9e512042017-05-18 20:08:58 -060026{
27 assert(ofnode_valid(node));
Dario Binacchi59006602020-03-29 18:04:42 +020028 ofnode_read_u32_index(node, propname, 0, &def);
Simon Glass9e512042017-05-18 20:08:58 -060029
30 return def;
31}
32
Dario Binacchi4bb70752020-03-29 18:04:41 +020033int ofnode_read_u32_index(ofnode node, const char *propname, int index,
34 u32 *outp)
35{
36 const fdt32_t *cell;
37 int len;
38
39 assert(ofnode_valid(node));
40 debug("%s: %s: ", __func__, propname);
41
42 if (ofnode_is_np(node))
43 return of_read_u32_index(ofnode_to_np(node), propname, index,
44 outp);
45
46 cell = fdt_getprop(gd->fdt_blob, ofnode_to_offset(node), propname,
47 &len);
48 if (!cell) {
49 debug("(not found)\n");
50 return -EINVAL;
51 }
52
53 if (len < (sizeof(int) * (index + 1))) {
54 debug("(not large enough)\n");
55 return -EOVERFLOW;
56 }
57
58 *outp = fdt32_to_cpu(cell[index]);
59 debug("%#x (%d)\n", *outp, *outp);
60
61 return 0;
62}
63
64u32 ofnode_read_u32_index_default(ofnode node, const char *propname, int index,
65 u32 def)
66{
67 assert(ofnode_valid(node));
68 ofnode_read_u32_index(node, propname, index, &def);
69
70 return def;
71}
72
Simon Glass9e512042017-05-18 20:08:58 -060073int ofnode_read_s32_default(ofnode node, const char *propname, s32 def)
74{
75 assert(ofnode_valid(node));
76 ofnode_read_u32(node, propname, (u32 *)&def);
77
78 return def;
79}
80
Simon Glass7e5196c2018-06-11 13:07:10 -060081int ofnode_read_u64(ofnode node, const char *propname, u64 *outp)
82{
Jean-Jacques Hiblotd60ae4c2019-10-22 10:05:22 +020083 const unaligned_fdt64_t *cell;
Simon Glass7e5196c2018-06-11 13:07:10 -060084 int len;
85
86 assert(ofnode_valid(node));
87 debug("%s: %s: ", __func__, propname);
88
89 if (ofnode_is_np(node))
90 return of_read_u64(ofnode_to_np(node), propname, outp);
91
92 cell = fdt_getprop(gd->fdt_blob, ofnode_to_offset(node), propname,
93 &len);
94 if (!cell || len < sizeof(*cell)) {
95 debug("(not found)\n");
96 return -EINVAL;
97 }
98 *outp = fdt64_to_cpu(cell[0]);
99 debug("%#llx (%lld)\n", (unsigned long long)*outp,
100 (unsigned long long)*outp);
101
102 return 0;
103}
104
T Karthik Reddy3f3d7712019-09-02 16:34:30 +0200105u64 ofnode_read_u64_default(ofnode node, const char *propname, u64 def)
Simon Glass7e5196c2018-06-11 13:07:10 -0600106{
107 assert(ofnode_valid(node));
108 ofnode_read_u64(node, propname, &def);
109
110 return def;
111}
112
Simon Glass9e512042017-05-18 20:08:58 -0600113bool ofnode_read_bool(ofnode node, const char *propname)
114{
Masahiro Yamadab2ec7ea2017-06-22 16:54:07 +0900115 const void *prop;
Simon Glass9e512042017-05-18 20:08:58 -0600116
117 assert(ofnode_valid(node));
118 debug("%s: %s: ", __func__, propname);
119
Masahiro Yamadab2ec7ea2017-06-22 16:54:07 +0900120 prop = ofnode_get_property(node, propname, NULL);
Simon Glass9e512042017-05-18 20:08:58 -0600121
Masahiro Yamadab2ec7ea2017-06-22 16:54:07 +0900122 debug("%s\n", prop ? "true" : "false");
123
124 return prop ? true : false;
Simon Glass9e512042017-05-18 20:08:58 -0600125}
126
Simon Glassa8167d82020-01-27 08:49:44 -0700127const void *ofnode_read_prop(ofnode node, const char *propname, int *sizep)
Simon Glass9e512042017-05-18 20:08:58 -0600128{
Simon Glassa8167d82020-01-27 08:49:44 -0700129 const char *val = NULL;
130 int len;
Simon Glass9e512042017-05-18 20:08:58 -0600131
132 assert(ofnode_valid(node));
133 debug("%s: %s: ", __func__, propname);
134
135 if (ofnode_is_np(node)) {
136 struct property *prop = of_find_property(
Simon Glassa8167d82020-01-27 08:49:44 -0700137 ofnode_to_np(node), propname, &len);
Simon Glass9e512042017-05-18 20:08:58 -0600138
139 if (prop) {
Simon Glassa8167d82020-01-27 08:49:44 -0700140 val = prop->value;
Simon Glass9e512042017-05-18 20:08:58 -0600141 len = prop->length;
142 }
143 } else {
Simon Glassa8167d82020-01-27 08:49:44 -0700144 val = fdt_getprop(gd->fdt_blob, ofnode_to_offset(node),
Simon Glass9e512042017-05-18 20:08:58 -0600145 propname, &len);
146 }
Simon Glassa8167d82020-01-27 08:49:44 -0700147 if (!val) {
Simon Glass9e512042017-05-18 20:08:58 -0600148 debug("<not found>\n");
Simon Glassa8167d82020-01-27 08:49:44 -0700149 if (sizep)
150 *sizep = -FDT_ERR_NOTFOUND;
Simon Glass9e512042017-05-18 20:08:58 -0600151 return NULL;
152 }
Simon Glassa8167d82020-01-27 08:49:44 -0700153 if (sizep)
154 *sizep = len;
155
156 return val;
157}
158
159const char *ofnode_read_string(ofnode node, const char *propname)
160{
161 const char *str;
162 int len;
163
164 str = ofnode_read_prop(node, propname, &len);
165 if (!str)
166 return NULL;
167
Simon Glass9e512042017-05-18 20:08:58 -0600168 if (strnlen(str, len) >= len) {
169 debug("<invalid>\n");
170 return NULL;
171 }
172 debug("%s\n", str);
173
174 return str;
175}
176
Simon Glass1aada632020-01-27 08:49:45 -0700177int ofnode_read_size(ofnode node, const char *propname)
178{
179 int len;
180
181 if (!ofnode_read_prop(node, propname, &len))
182 return -EINVAL;
183
184 return len;
185}
186
Simon Glass9e512042017-05-18 20:08:58 -0600187ofnode ofnode_find_subnode(ofnode node, const char *subnode_name)
188{
189 ofnode subnode;
190
191 assert(ofnode_valid(node));
192 debug("%s: %s: ", __func__, subnode_name);
193
194 if (ofnode_is_np(node)) {
195 const struct device_node *np = ofnode_to_np(node);
196
197 for (np = np->child; np; np = np->sibling) {
198 if (!strcmp(subnode_name, np->name))
199 break;
200 }
201 subnode = np_to_ofnode(np);
202 } else {
203 int ooffset = fdt_subnode_offset(gd->fdt_blob,
204 ofnode_to_offset(node), subnode_name);
205 subnode = offset_to_ofnode(ooffset);
206 }
207 debug("%s\n", ofnode_valid(subnode) ?
208 ofnode_get_name(subnode) : "<none>");
209
210 return subnode;
211}
212
213int ofnode_read_u32_array(ofnode node, const char *propname,
214 u32 *out_values, size_t sz)
215{
216 assert(ofnode_valid(node));
217 debug("%s: %s: ", __func__, propname);
218
219 if (ofnode_is_np(node)) {
220 return of_read_u32_array(ofnode_to_np(node), propname,
221 out_values, sz);
222 } else {
223 return fdtdec_get_int_array(gd->fdt_blob,
224 ofnode_to_offset(node), propname,
225 out_values, sz);
226 }
227}
228
229ofnode ofnode_first_subnode(ofnode node)
230{
231 assert(ofnode_valid(node));
232 if (ofnode_is_np(node))
233 return np_to_ofnode(node.np->child);
234
235 return offset_to_ofnode(
236 fdt_first_subnode(gd->fdt_blob, ofnode_to_offset(node)));
237}
238
239ofnode ofnode_next_subnode(ofnode node)
240{
241 assert(ofnode_valid(node));
242 if (ofnode_is_np(node))
243 return np_to_ofnode(node.np->sibling);
244
245 return offset_to_ofnode(
246 fdt_next_subnode(gd->fdt_blob, ofnode_to_offset(node)));
247}
248
Philipp Tomsiche2d59972018-02-23 17:38:49 +0100249ofnode ofnode_get_parent(ofnode node)
250{
251 ofnode parent;
252
253 assert(ofnode_valid(node));
254 if (ofnode_is_np(node))
255 parent = np_to_ofnode(of_get_parent(ofnode_to_np(node)));
256 else
257 parent.of_offset = fdt_parent_offset(gd->fdt_blob,
258 ofnode_to_offset(node));
259
260 return parent;
261}
262
Simon Glass9e512042017-05-18 20:08:58 -0600263const char *ofnode_get_name(ofnode node)
264{
Kever Yang8f0a70e2019-07-19 11:23:47 +0800265 if (!ofnode_valid(node)) {
266 debug("%s node not valid\n", __func__);
267 return NULL;
268 }
269
Simon Glass9e512042017-05-18 20:08:58 -0600270 if (ofnode_is_np(node))
271 return strrchr(node.np->full_name, '/') + 1;
272
273 return fdt_get_name(gd->fdt_blob, ofnode_to_offset(node), NULL);
274}
275
Kever Yangb4f20762018-02-23 17:38:50 +0100276ofnode ofnode_get_by_phandle(uint phandle)
277{
278 ofnode node;
279
280 if (of_live_active())
281 node = np_to_ofnode(of_find_node_by_phandle(phandle));
282 else
283 node.of_offset = fdt_node_offset_by_phandle(gd->fdt_blob,
284 phandle);
285
286 return node;
287}
288
Keerthye679d032019-04-24 17:19:53 +0530289fdt_addr_t ofnode_get_addr_size_index(ofnode node, int index, fdt_size_t *size)
Simon Glassbed77492017-05-18 20:09:01 -0600290{
Keerthy16787542018-11-19 11:44:47 +0530291 int na, ns;
Keerthy16787542018-11-19 11:44:47 +0530292
Simon Glassbed77492017-05-18 20:09:01 -0600293 if (ofnode_is_np(node)) {
294 const __be32 *prop_val;
Simon Glasse18c41f2019-09-25 08:55:50 -0600295 u64 size64;
Simon Glassbed77492017-05-18 20:09:01 -0600296 uint flags;
Simon Glassbed77492017-05-18 20:09:01 -0600297
Simon Glasse18c41f2019-09-25 08:55:50 -0600298 prop_val = of_get_address(ofnode_to_np(node), index, &size64,
299 &flags);
Simon Glassbed77492017-05-18 20:09:01 -0600300 if (!prop_val)
301 return FDT_ADDR_T_NONE;
Simon Glasse18c41f2019-09-25 08:55:50 -0600302 if (size)
303 *size = size64;
Mario Six286ede62017-12-20 09:52:12 +0100304
Mario Sixe8d52912018-03-12 14:53:33 +0100305 ns = of_n_size_cells(ofnode_to_np(node));
306
307 if (IS_ENABLED(CONFIG_OF_TRANSLATE) && ns > 0) {
Mario Six286ede62017-12-20 09:52:12 +0100308 return of_translate_address(ofnode_to_np(node), prop_val);
309 } else {
310 na = of_n_addr_cells(ofnode_to_np(node));
311 return of_read_number(prop_val, na);
312 }
Simon Glassbed77492017-05-18 20:09:01 -0600313 } else {
Keerthy16787542018-11-19 11:44:47 +0530314 na = ofnode_read_simple_addr_cells(ofnode_get_parent(node));
315 ns = ofnode_read_simple_size_cells(ofnode_get_parent(node));
316 return fdtdec_get_addr_size_fixed(gd->fdt_blob,
317 ofnode_to_offset(node), "reg",
Keerthye679d032019-04-24 17:19:53 +0530318 index, na, ns, size, true);
Simon Glassbed77492017-05-18 20:09:01 -0600319 }
320
321 return FDT_ADDR_T_NONE;
322}
323
Keerthye679d032019-04-24 17:19:53 +0530324fdt_addr_t ofnode_get_addr_index(ofnode node, int index)
325{
326 fdt_size_t size;
327
328 return ofnode_get_addr_size_index(node, index, &size);
329}
330
Simon Glassbed77492017-05-18 20:09:01 -0600331fdt_addr_t ofnode_get_addr(ofnode node)
332{
333 return ofnode_get_addr_index(node, 0);
334}
335
Simon Glass9e512042017-05-18 20:08:58 -0600336int ofnode_stringlist_search(ofnode node, const char *property,
337 const char *string)
338{
339 if (ofnode_is_np(node)) {
340 return of_property_match_string(ofnode_to_np(node),
341 property, string);
342 } else {
343 int ret;
344
345 ret = fdt_stringlist_search(gd->fdt_blob,
346 ofnode_to_offset(node), property,
347 string);
348 if (ret == -FDT_ERR_NOTFOUND)
349 return -ENODATA;
350 else if (ret < 0)
351 return -EINVAL;
352
353 return ret;
354 }
355}
356
357int ofnode_read_string_index(ofnode node, const char *property, int index,
358 const char **outp)
359{
360 if (ofnode_is_np(node)) {
361 return of_property_read_string_index(ofnode_to_np(node),
362 property, index, outp);
363 } else {
364 int len;
365
366 *outp = fdt_stringlist_get(gd->fdt_blob, ofnode_to_offset(node),
367 property, index, &len);
368 if (len < 0)
369 return -EINVAL;
370 return 0;
371 }
372}
373
Simon Glass8c293d62017-06-12 06:21:28 -0600374int ofnode_read_string_count(ofnode node, const char *property)
375{
376 if (ofnode_is_np(node)) {
377 return of_property_count_strings(ofnode_to_np(node), property);
378 } else {
379 return fdt_stringlist_count(gd->fdt_blob,
380 ofnode_to_offset(node), property);
381 }
382}
383
Simon Glass9e512042017-05-18 20:08:58 -0600384static void ofnode_from_fdtdec_phandle_args(struct fdtdec_phandle_args *in,
385 struct ofnode_phandle_args *out)
386{
387 assert(OF_MAX_PHANDLE_ARGS == MAX_PHANDLE_ARGS);
388 out->node = offset_to_ofnode(in->node);
389 out->args_count = in->args_count;
390 memcpy(out->args, in->args, sizeof(out->args));
391}
392
393static void ofnode_from_of_phandle_args(struct of_phandle_args *in,
394 struct ofnode_phandle_args *out)
395{
396 assert(OF_MAX_PHANDLE_ARGS == MAX_PHANDLE_ARGS);
397 out->node = np_to_ofnode(in->np);
398 out->args_count = in->args_count;
399 memcpy(out->args, in->args, sizeof(out->args));
400}
401
402int ofnode_parse_phandle_with_args(ofnode node, const char *list_name,
403 const char *cells_name, int cell_count,
404 int index,
405 struct ofnode_phandle_args *out_args)
406{
407 if (ofnode_is_np(node)) {
408 struct of_phandle_args args;
409 int ret;
410
411 ret = of_parse_phandle_with_args(ofnode_to_np(node),
Mario Six51db2872018-01-15 11:07:17 +0100412 list_name, cells_name, index,
413 &args);
Simon Glass9e512042017-05-18 20:08:58 -0600414 if (ret)
415 return ret;
416 ofnode_from_of_phandle_args(&args, out_args);
417 } else {
418 struct fdtdec_phandle_args args;
419 int ret;
420
421 ret = fdtdec_parse_phandle_with_args(gd->fdt_blob,
Mario Six51db2872018-01-15 11:07:17 +0100422 ofnode_to_offset(node),
423 list_name, cells_name,
424 cell_count, index, &args);
Simon Glass9e512042017-05-18 20:08:58 -0600425 if (ret)
426 return ret;
427 ofnode_from_fdtdec_phandle_args(&args, out_args);
428 }
429
430 return 0;
431}
432
Patrice Chotard642346a2017-07-18 11:57:08 +0200433int ofnode_count_phandle_with_args(ofnode node, const char *list_name,
434 const char *cells_name)
435{
436 if (ofnode_is_np(node))
437 return of_count_phandle_with_args(ofnode_to_np(node),
438 list_name, cells_name);
439 else
440 return fdtdec_parse_phandle_with_args(gd->fdt_blob,
441 ofnode_to_offset(node), list_name, cells_name,
442 0, -1, NULL);
443}
444
Simon Glass9e512042017-05-18 20:08:58 -0600445ofnode ofnode_path(const char *path)
446{
447 if (of_live_active())
448 return np_to_ofnode(of_find_node_by_path(path));
449 else
450 return offset_to_ofnode(fdt_path_offset(gd->fdt_blob, path));
451}
452
Simon Glassbd933bf2020-01-27 08:49:46 -0700453const void *ofnode_read_chosen_prop(const char *propname, int *sizep)
Simon Glass9e512042017-05-18 20:08:58 -0600454{
455 ofnode chosen_node;
456
457 chosen_node = ofnode_path("/chosen");
458
Simon Glassbd933bf2020-01-27 08:49:46 -0700459 return ofnode_read_prop(chosen_node, propname, sizep);
460}
461
462const char *ofnode_read_chosen_string(const char *propname)
463{
464 return ofnode_read_chosen_prop(propname, NULL);
Simon Glass9e512042017-05-18 20:08:58 -0600465}
466
467ofnode ofnode_get_chosen_node(const char *name)
468{
469 const char *prop;
470
Simon Glassbd933bf2020-01-27 08:49:46 -0700471 prop = ofnode_read_chosen_prop(name, NULL);
Simon Glass9e512042017-05-18 20:08:58 -0600472 if (!prop)
473 return ofnode_null();
474
475 return ofnode_path(prop);
476}
477
Chunfeng Yun89b84b82020-05-02 11:35:09 +0200478int ofnode_get_child_count(ofnode parent)
479{
480 ofnode child;
481 int num = 0;
482
483 ofnode_for_each_subnode(child, parent)
484 num++;
485
486 return num;
487}
488
Simon Glass9e512042017-05-18 20:08:58 -0600489static int decode_timing_property(ofnode node, const char *name,
490 struct timing_entry *result)
491{
492 int length, ret = 0;
493
494 length = ofnode_read_size(node, name);
495 if (length < 0) {
496 debug("%s: could not find property %s\n",
497 ofnode_get_name(node), name);
498 return length;
499 }
500
501 if (length == sizeof(u32)) {
502 result->typ = ofnode_read_u32_default(node, name, 0);
503 result->min = result->typ;
504 result->max = result->typ;
505 } else {
506 ret = ofnode_read_u32_array(node, name, &result->min, 3);
507 }
508
509 return ret;
510}
511
512int ofnode_decode_display_timing(ofnode parent, int index,
513 struct display_timing *dt)
514{
515 int i;
516 ofnode timings, node;
517 u32 val = 0;
518 int ret = 0;
519
520 timings = ofnode_find_subnode(parent, "display-timings");
521 if (!ofnode_valid(timings))
522 return -EINVAL;
523
Simon Glass3991f422017-08-05 15:45:54 -0600524 i = 0;
525 ofnode_for_each_subnode(node, timings) {
526 if (i++ == index)
527 break;
528 }
Simon Glass9e512042017-05-18 20:08:58 -0600529
530 if (!ofnode_valid(node))
531 return -EINVAL;
532
533 memset(dt, 0, sizeof(*dt));
534
535 ret |= decode_timing_property(node, "hback-porch", &dt->hback_porch);
536 ret |= decode_timing_property(node, "hfront-porch", &dt->hfront_porch);
537 ret |= decode_timing_property(node, "hactive", &dt->hactive);
538 ret |= decode_timing_property(node, "hsync-len", &dt->hsync_len);
539 ret |= decode_timing_property(node, "vback-porch", &dt->vback_porch);
540 ret |= decode_timing_property(node, "vfront-porch", &dt->vfront_porch);
541 ret |= decode_timing_property(node, "vactive", &dt->vactive);
542 ret |= decode_timing_property(node, "vsync-len", &dt->vsync_len);
543 ret |= decode_timing_property(node, "clock-frequency", &dt->pixelclock);
544
545 dt->flags = 0;
546 val = ofnode_read_u32_default(node, "vsync-active", -1);
547 if (val != -1) {
548 dt->flags |= val ? DISPLAY_FLAGS_VSYNC_HIGH :
549 DISPLAY_FLAGS_VSYNC_LOW;
550 }
551 val = ofnode_read_u32_default(node, "hsync-active", -1);
552 if (val != -1) {
553 dt->flags |= val ? DISPLAY_FLAGS_HSYNC_HIGH :
554 DISPLAY_FLAGS_HSYNC_LOW;
555 }
556 val = ofnode_read_u32_default(node, "de-active", -1);
557 if (val != -1) {
558 dt->flags |= val ? DISPLAY_FLAGS_DE_HIGH :
559 DISPLAY_FLAGS_DE_LOW;
560 }
561 val = ofnode_read_u32_default(node, "pixelclk-active", -1);
562 if (val != -1) {
563 dt->flags |= val ? DISPLAY_FLAGS_PIXDATA_POSEDGE :
564 DISPLAY_FLAGS_PIXDATA_NEGEDGE;
565 }
566
567 if (ofnode_read_bool(node, "interlaced"))
568 dt->flags |= DISPLAY_FLAGS_INTERLACED;
569 if (ofnode_read_bool(node, "doublescan"))
570 dt->flags |= DISPLAY_FLAGS_DOUBLESCAN;
571 if (ofnode_read_bool(node, "doubleclk"))
572 dt->flags |= DISPLAY_FLAGS_DOUBLECLK;
573
574 return ret;
575}
576
Masahiro Yamada61e51ba2017-06-22 16:54:05 +0900577const void *ofnode_get_property(ofnode node, const char *propname, int *lenp)
Simon Glass9e512042017-05-18 20:08:58 -0600578{
Masahiro Yamadacb7dbe12017-06-22 16:54:04 +0900579 if (ofnode_is_np(node))
580 return of_get_property(ofnode_to_np(node), propname, lenp);
581 else
Simon Glass9e512042017-05-18 20:08:58 -0600582 return fdt_getprop(gd->fdt_blob, ofnode_to_offset(node),
583 propname, lenp);
Simon Glass9e512042017-05-18 20:08:58 -0600584}
585
Patrick Delaunayce891fca2020-01-13 11:34:56 +0100586int ofnode_get_first_property(ofnode node, struct ofprop *prop)
587{
588 prop->node = node;
589
590 if (ofnode_is_np(node)) {
591 prop->prop = of_get_first_property(ofnode_to_np(prop->node));
592 if (!prop->prop)
593 return -FDT_ERR_NOTFOUND;
594 } else {
595 prop->offset =
596 fdt_first_property_offset(gd->fdt_blob,
597 ofnode_to_offset(prop->node));
598 if (prop->offset < 0)
599 return prop->offset;
600 }
601
602 return 0;
603}
604
605int ofnode_get_next_property(struct ofprop *prop)
606{
607 if (ofnode_is_np(prop->node)) {
608 prop->prop = of_get_next_property(ofnode_to_np(prop->node),
609 prop->prop);
610 if (!prop->prop)
611 return -FDT_ERR_NOTFOUND;
612 } else {
613 prop->offset = fdt_next_property_offset(gd->fdt_blob,
614 prop->offset);
615 if (prop->offset < 0)
616 return prop->offset;
617 }
618
619 return 0;
620}
621
622const void *ofnode_get_property_by_prop(const struct ofprop *prop,
623 const char **propname, int *lenp)
624{
625 if (ofnode_is_np(prop->node))
626 return of_get_property_by_prop(ofnode_to_np(prop->node),
627 prop->prop, propname, lenp);
628 else
629 return fdt_getprop_by_offset(gd->fdt_blob,
630 prop->offset,
631 propname, lenp);
632}
633
Simon Glass9e512042017-05-18 20:08:58 -0600634bool ofnode_is_available(ofnode node)
635{
636 if (ofnode_is_np(node))
637 return of_device_is_available(ofnode_to_np(node));
638 else
639 return fdtdec_get_is_enabled(gd->fdt_blob,
640 ofnode_to_offset(node));
641}
642
643fdt_addr_t ofnode_get_addr_size(ofnode node, const char *property,
644 fdt_size_t *sizep)
645{
646 if (ofnode_is_np(node)) {
647 int na, ns;
648 int psize;
649 const struct device_node *np = ofnode_to_np(node);
Klaus Goger68a34522017-09-20 13:50:41 +0200650 const __be32 *prop = of_get_property(np, property, &psize);
Simon Glass9e512042017-05-18 20:08:58 -0600651
Klaus Goger68a34522017-09-20 13:50:41 +0200652 if (!prop)
653 return FDT_ADDR_T_NONE;
Simon Glass9e512042017-05-18 20:08:58 -0600654 na = of_n_addr_cells(np);
Marek Vasut51cb9272018-10-01 12:37:19 +0200655 ns = of_n_size_cells(np);
Simon Glassa4b8e372017-05-18 20:09:27 -0600656 *sizep = of_read_number(prop + na, ns);
Marek Vasuta6a45cd2018-10-01 12:37:20 +0200657
Simon Glass00333182019-04-25 21:58:36 -0600658 if (CONFIG_IS_ENABLED(OF_TRANSLATE) && ns > 0)
Marek Vasuta6a45cd2018-10-01 12:37:20 +0200659 return of_translate_address(np, prop);
660 else
661 return of_read_number(prop, na);
Simon Glass9e512042017-05-18 20:08:58 -0600662 } else {
663 return fdtdec_get_addr_size(gd->fdt_blob,
664 ofnode_to_offset(node), property,
665 sizep);
666 }
667}
668
669const uint8_t *ofnode_read_u8_array_ptr(ofnode node, const char *propname,
670 size_t sz)
671{
672 if (ofnode_is_np(node)) {
673 const struct device_node *np = ofnode_to_np(node);
674 int psize;
675 const __be32 *prop = of_get_property(np, propname, &psize);
676
677 if (!prop || sz != psize)
678 return NULL;
679 return (uint8_t *)prop;
680
681 } else {
682 return fdtdec_locate_byte_array(gd->fdt_blob,
683 ofnode_to_offset(node), propname, sz);
684 }
685}
686
687int ofnode_read_pci_addr(ofnode node, enum fdt_pci_space type,
688 const char *propname, struct fdt_pci_addr *addr)
689{
Masahiro Yamada8c9eaad2017-06-22 17:57:50 +0900690 const fdt32_t *cell;
Simon Glass9e512042017-05-18 20:08:58 -0600691 int len;
692 int ret = -ENOENT;
693
694 debug("%s: %s: ", __func__, propname);
695
696 /*
697 * If we follow the pci bus bindings strictly, we should check
698 * the value of the node's parent node's #address-cells and
699 * #size-cells. They need to be 3 and 2 accordingly. However,
700 * for simplicity we skip the check here.
701 */
Masahiro Yamada61e51ba2017-06-22 16:54:05 +0900702 cell = ofnode_get_property(node, propname, &len);
Simon Glass9e512042017-05-18 20:08:58 -0600703 if (!cell)
704 goto fail;
705
706 if ((len % FDT_PCI_REG_SIZE) == 0) {
707 int num = len / FDT_PCI_REG_SIZE;
708 int i;
709
710 for (i = 0; i < num; i++) {
711 debug("pci address #%d: %08lx %08lx %08lx\n", i,
712 (ulong)fdt32_to_cpu(cell[0]),
713 (ulong)fdt32_to_cpu(cell[1]),
714 (ulong)fdt32_to_cpu(cell[2]));
715 if ((fdt32_to_cpu(*cell) & type) == type) {
716 addr->phys_hi = fdt32_to_cpu(cell[0]);
717 addr->phys_mid = fdt32_to_cpu(cell[1]);
Simon Glasse5878862019-09-25 08:55:46 -0600718 addr->phys_lo = fdt32_to_cpu(cell[2]);
Simon Glass9e512042017-05-18 20:08:58 -0600719 break;
Simon Glass9e512042017-05-18 20:08:58 -0600720 }
Mario Six51db2872018-01-15 11:07:17 +0100721
722 cell += (FDT_PCI_ADDR_CELLS +
723 FDT_PCI_SIZE_CELLS);
Simon Glass9e512042017-05-18 20:08:58 -0600724 }
725
726 if (i == num) {
727 ret = -ENXIO;
728 goto fail;
729 }
730
731 return 0;
Simon Glass9e512042017-05-18 20:08:58 -0600732 }
733
Mario Six51db2872018-01-15 11:07:17 +0100734 ret = -EINVAL;
735
Simon Glass9e512042017-05-18 20:08:58 -0600736fail:
737 debug("(not found)\n");
738 return ret;
739}
740
Bin Meng7b9cbad2018-08-03 01:14:35 -0700741int ofnode_read_pci_vendev(ofnode node, u16 *vendor, u16 *device)
742{
743 const char *list, *end;
744 int len;
745
746 list = ofnode_get_property(node, "compatible", &len);
747 if (!list)
748 return -ENOENT;
749
750 end = list + len;
751 while (list < end) {
752 len = strlen(list);
753 if (len >= strlen("pciVVVV,DDDD")) {
754 char *s = strstr(list, "pci");
755
756 /*
757 * check if the string is something like pciVVVV,DDDD.RR
758 * or just pciVVVV,DDDD
759 */
760 if (s && s[7] == ',' &&
761 (s[12] == '.' || s[12] == 0)) {
762 s += 3;
763 *vendor = simple_strtol(s, NULL, 16);
764
765 s += 5;
766 *device = simple_strtol(s, NULL, 16);
767
768 return 0;
769 }
770 }
771 list += (len + 1);
772 }
773
774 return -ENOENT;
775}
776
Simon Glass9e512042017-05-18 20:08:58 -0600777int ofnode_read_addr_cells(ofnode node)
778{
779 if (ofnode_is_np(node))
780 return of_n_addr_cells(ofnode_to_np(node));
Simon Glass878d68c2017-06-12 06:21:31 -0600781 else /* NOTE: this call should walk up the parent stack */
Simon Glass9e512042017-05-18 20:08:58 -0600782 return fdt_address_cells(gd->fdt_blob, ofnode_to_offset(node));
783}
784
785int ofnode_read_size_cells(ofnode node)
786{
787 if (ofnode_is_np(node))
788 return of_n_size_cells(ofnode_to_np(node));
Simon Glass878d68c2017-06-12 06:21:31 -0600789 else /* NOTE: this call should walk up the parent stack */
790 return fdt_size_cells(gd->fdt_blob, ofnode_to_offset(node));
791}
792
793int ofnode_read_simple_addr_cells(ofnode node)
794{
795 if (ofnode_is_np(node))
796 return of_simple_addr_cells(ofnode_to_np(node));
797 else
798 return fdt_address_cells(gd->fdt_blob, ofnode_to_offset(node));
799}
800
801int ofnode_read_simple_size_cells(ofnode node)
802{
803 if (ofnode_is_np(node))
804 return of_simple_size_cells(ofnode_to_np(node));
Simon Glass9e512042017-05-18 20:08:58 -0600805 else
806 return fdt_size_cells(gd->fdt_blob, ofnode_to_offset(node));
807}
808
809bool ofnode_pre_reloc(ofnode node)
810{
Patrick Delaunayc7a88da2019-02-11 12:49:57 +0100811#if defined(CONFIG_SPL_BUILD) || defined(CONFIG_TPL_BUILD)
812 /* for SPL and TPL the remaining nodes after the fdtgrep 1st pass
813 * had property dm-pre-reloc or u-boot,dm-spl/tpl.
814 * They are removed in final dtb (fdtgrep 2nd pass)
815 */
816 return true;
817#else
Masahiro Yamada252510a2017-06-22 16:54:03 +0900818 if (ofnode_read_bool(node, "u-boot,dm-pre-reloc"))
Simon Glass9e512042017-05-18 20:08:58 -0600819 return true;
Simon Glass06f94462018-10-01 12:22:18 -0600820 if (ofnode_read_bool(node, "u-boot,dm-pre-proper"))
821 return true;
Simon Glass9e512042017-05-18 20:08:58 -0600822
Simon Glass9e512042017-05-18 20:08:58 -0600823 /*
824 * In regular builds individual spl and tpl handling both
825 * count as handled pre-relocation for later second init.
826 */
Masahiro Yamada252510a2017-06-22 16:54:03 +0900827 if (ofnode_read_bool(node, "u-boot,dm-spl") ||
828 ofnode_read_bool(node, "u-boot,dm-tpl"))
Simon Glass9e512042017-05-18 20:08:58 -0600829 return true;
Simon Glass9e512042017-05-18 20:08:58 -0600830
831 return false;
Patrick Delaunayc7a88da2019-02-11 12:49:57 +0100832#endif
Simon Glass9e512042017-05-18 20:08:58 -0600833}
Simon Glassdcf98852017-07-25 08:29:55 -0600834
835int ofnode_read_resource(ofnode node, uint index, struct resource *res)
836{
837 if (ofnode_is_np(node)) {
838 return of_address_to_resource(ofnode_to_np(node), index, res);
839 } else {
840 struct fdt_resource fres;
841 int ret;
842
843 ret = fdt_get_resource(gd->fdt_blob, ofnode_to_offset(node),
844 "reg", index, &fres);
845 if (ret < 0)
846 return -EINVAL;
847 memset(res, '\0', sizeof(*res));
848 res->start = fres.start;
849 res->end = fres.end;
850
851 return 0;
852 }
853}
Masahiro Yamada7b8b47b2017-08-26 01:12:30 +0900854
855int ofnode_read_resource_byname(ofnode node, const char *name,
856 struct resource *res)
857{
858 int index;
859
860 index = ofnode_stringlist_search(node, "reg-names", name);
861 if (index < 0)
862 return index;
863
864 return ofnode_read_resource(node, index, res);
865}
Mario Six147c6072018-01-15 11:07:19 +0100866
867u64 ofnode_translate_address(ofnode node, const fdt32_t *in_addr)
868{
869 if (ofnode_is_np(node))
870 return of_translate_address(ofnode_to_np(node), in_addr);
871 else
872 return fdt_translate_address(gd->fdt_blob, ofnode_to_offset(node), in_addr);
873}
Masahiro Yamada5ccc2c22018-04-19 12:14:02 +0900874
Fabien Dessenne641067f2019-05-31 15:11:30 +0200875u64 ofnode_translate_dma_address(ofnode node, const fdt32_t *in_addr)
876{
877 if (ofnode_is_np(node))
878 return of_translate_dma_address(ofnode_to_np(node), in_addr);
879 else
880 return fdt_translate_dma_address(gd->fdt_blob, ofnode_to_offset(node), in_addr);
881}
882
Masahiro Yamada5ccc2c22018-04-19 12:14:02 +0900883int ofnode_device_is_compatible(ofnode node, const char *compat)
884{
885 if (ofnode_is_np(node))
886 return of_device_is_compatible(ofnode_to_np(node), compat,
887 NULL, NULL);
888 else
889 return !fdt_node_check_compatible(gd->fdt_blob,
890 ofnode_to_offset(node),
891 compat);
892}
Simon Glassc60f6712018-06-11 13:07:13 -0600893
894ofnode ofnode_by_compatible(ofnode from, const char *compat)
895{
896 if (of_live_active()) {
897 return np_to_ofnode(of_find_compatible_node(
898 (struct device_node *)ofnode_to_np(from), NULL,
899 compat));
900 } else {
901 return offset_to_ofnode(fdt_node_offset_by_compatible(
902 gd->fdt_blob, ofnode_to_offset(from), compat));
903 }
904}
Jens Wiklander61fba0f2018-08-20 11:09:58 +0200905
906ofnode ofnode_by_prop_value(ofnode from, const char *propname,
907 const void *propval, int proplen)
908{
909 if (of_live_active()) {
910 return np_to_ofnode(of_find_node_by_prop_value(
911 (struct device_node *)ofnode_to_np(from), propname,
912 propval, proplen));
913 } else {
914 return offset_to_ofnode(fdt_node_offset_by_prop_value(
915 gd->fdt_blob, ofnode_to_offset(from),
916 propname, propval, proplen));
917 }
918}
Mario Sixe369e582018-06-26 08:46:48 +0200919
920int ofnode_write_prop(ofnode node, const char *propname, int len,
921 const void *value)
922{
923 const struct device_node *np = ofnode_to_np(node);
924 struct property *pp;
925 struct property *pp_last = NULL;
926 struct property *new;
927
928 if (!of_live_active())
929 return -ENOSYS;
930
931 if (!np)
932 return -EINVAL;
933
934 for (pp = np->properties; pp; pp = pp->next) {
935 if (strcmp(pp->name, propname) == 0) {
936 /* Property exists -> change value */
937 pp->value = (void *)value;
938 pp->length = len;
939 return 0;
940 }
941 pp_last = pp;
942 }
943
944 if (!pp_last)
945 return -ENOENT;
946
947 /* Property does not exist -> append new property */
948 new = malloc(sizeof(struct property));
949 if (!new)
950 return -ENOMEM;
951
952 new->name = strdup(propname);
Mario Six205dd5a2018-10-04 09:22:24 +0200953 if (!new->name) {
954 free(new);
Mario Sixe369e582018-06-26 08:46:48 +0200955 return -ENOMEM;
Mario Six205dd5a2018-10-04 09:22:24 +0200956 }
Mario Sixe369e582018-06-26 08:46:48 +0200957
958 new->value = (void *)value;
959 new->length = len;
960 new->next = NULL;
961
962 pp_last->next = new;
963
964 return 0;
965}
966
967int ofnode_write_string(ofnode node, const char *propname, const char *value)
968{
969 if (!of_live_active())
970 return -ENOSYS;
971
972 assert(ofnode_valid(node));
973
974 debug("%s: %s = %s", __func__, propname, value);
975
976 return ofnode_write_prop(node, propname, strlen(value) + 1, value);
977}
978
979int ofnode_set_enabled(ofnode node, bool value)
980{
981 if (!of_live_active())
982 return -ENOSYS;
983
984 assert(ofnode_valid(node));
985
986 if (value)
987 return ofnode_write_string(node, "status", "okay");
988 else
Bin Meng16351212019-07-05 09:23:17 -0700989 return ofnode_write_string(node, "status", "disabled");
Mario Sixe369e582018-06-26 08:46:48 +0200990}