Merge tag 'dm-pull-28jun22' of https://source.denx.de/u-boot/custodians/u-boot-dm...
[platform/kernel/u-boot.git] / include / dm / ofnode.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (c) 2017 Google, Inc
4  * Written by Simon Glass <sjg@chromium.org>
5  */
6
7 #ifndef _DM_OFNODE_H
8 #define _DM_OFNODE_H
9
10 /* TODO(sjg@chromium.org): Drop fdtdec.h include */
11 #include <fdtdec.h>
12 #include <dm/of.h>
13 #include <dm/of_access.h>
14 #include <log.h>
15 #include <phy_interface.h>
16
17 /* Enable checks to protect against invalid calls */
18 #undef OF_CHECKS
19
20 struct resource;
21
22 /**
23  * typedef union ofnode_union ofnode - reference to a device tree node
24  *
25  * This union can hold either a straightforward pointer to a struct device_node
26  * in the live device tree, or an offset within the flat device tree. In the
27  * latter case, the pointer value is just the integer offset within the flat DT.
28  *
29  * Thus we can reference nodes in both the live tree (once available) and the
30  * flat tree (until then). Functions are available to translate between an
31  * ofnode and either an offset or a `struct device_node *`.
32  *
33  * The reference can also hold a null offset, in which case the pointer value
34  * here is NULL. This corresponds to a struct device_node * value of
35  * NULL, or an offset of -1.
36  *
37  * There is no ambiguity as to whether ofnode holds an offset or a node
38  * pointer: when the live tree is active it holds a node pointer, otherwise it
39  * holds an offset. The value itself does not need to be unique and in theory
40  * the same value could point to a valid device node or a valid offset. We
41  * could arrange for a unique value to be used (e.g. by making the pointer
42  * point to an offset within the flat device tree in the case of an offset) but
43  * this increases code size slightly due to the subtraction. Since it offers no
44  * real benefit, the approach described here seems best.
45  *
46  * For now these points use constant types, since we don't allow writing
47  * the DT.
48  *
49  * @np: Pointer to device node, used for live tree
50  * @of_offset: Pointer into flat device tree, used for flat tree. Note that this
51  *      is not a really a pointer to a node: it is an offset value. See above.
52  */
53 typedef union ofnode_union {
54         const struct device_node *np;
55         long of_offset;
56 } ofnode;
57
58 struct ofnode_phandle_args {
59         ofnode node;
60         int args_count;
61         uint32_t args[OF_MAX_PHANDLE_ARGS];
62 };
63
64 /**
65  * struct ofprop - reference to a property of a device tree node
66  *
67  * This struct hold the reference on one property of one node,
68  * using struct ofnode and an offset within the flat device tree or either
69  * a pointer to a struct property in the live device tree.
70  *
71  * Thus we can reference arguments in both the live tree and the flat tree.
72  *
73  * The property reference can also hold a null reference. This corresponds to
74  * a struct property NULL pointer or an offset of -1.
75  *
76  * @node: Pointer to device node
77  * @offset: Pointer into flat device tree, used for flat tree.
78  * @prop: Pointer to property, used for live treee.
79  */
80
81 struct ofprop {
82         ofnode node;
83         union {
84                 int offset;
85                 const struct property *prop;
86         };
87 };
88
89 /**
90  * ofnode_to_np() - convert an ofnode to a live DT node pointer
91  *
92  * This cannot be called if the reference contains an offset.
93  *
94  * @node: Reference containing struct device_node * (possibly invalid)
95  * Return: pointer to device node (can be NULL)
96  */
97 static inline const struct device_node *ofnode_to_np(ofnode node)
98 {
99 #ifdef OF_CHECKS
100         if (!of_live_active())
101                 return NULL;
102 #endif
103         return node.np;
104 }
105
106 /**
107  * ofnode_to_offset() - convert an ofnode to a flat DT offset
108  *
109  * This cannot be called if the reference contains a node pointer.
110  *
111  * @node: Reference containing offset (possibly invalid)
112  * Return: DT offset (can be -1)
113  */
114 static inline int ofnode_to_offset(ofnode node)
115 {
116 #ifdef OF_CHECKS
117         if (of_live_active())
118                 return -1;
119 #endif
120         return node.of_offset;
121 }
122
123 /**
124  * ofnode_valid() - check if an ofnode is valid
125  *
126  * @node: Reference containing offset (possibly invalid)
127  * Return: true if the reference contains a valid ofnode, false if it is NULL
128  */
129 static inline bool ofnode_valid(ofnode node)
130 {
131         if (of_live_active())
132                 return node.np != NULL;
133         else
134                 return node.of_offset >= 0;
135 }
136
137 /**
138  * offset_to_ofnode() - convert a DT offset to an ofnode
139  *
140  * @of_offset: DT offset (either valid, or -1)
141  * Return: reference to the associated DT offset
142  */
143 static inline ofnode offset_to_ofnode(int of_offset)
144 {
145         ofnode node;
146
147         if (of_live_active())
148                 node.np = NULL;
149         else
150                 node.of_offset = of_offset >= 0 ? of_offset : -1;
151
152         return node;
153 }
154
155 /**
156  * np_to_ofnode() - convert a node pointer to an ofnode
157  *
158  * @np: Live node pointer (can be NULL)
159  * Return: reference to the associated node pointer
160  */
161 static inline ofnode np_to_ofnode(const struct device_node *np)
162 {
163         ofnode node;
164
165         node.np = np;
166
167         return node;
168 }
169
170 /**
171  * ofnode_is_np() - check if a reference is a node pointer
172  *
173  * This function associated that if there is a valid live tree then all
174  * references will use it. This is because using the flat DT when the live tree
175  * is valid is not permitted.
176  *
177  * @node: reference to check (possibly invalid)
178  * Return: true if the reference is a live node pointer, false if it is a DT
179  * offset
180  */
181 static inline bool ofnode_is_np(ofnode node)
182 {
183 #ifdef OF_CHECKS
184         /*
185          * Check our assumption that flat tree offsets are not used when a
186          * live tree is in use.
187          */
188         assert(!ofnode_valid(node) ||
189                (of_live_active() ? ofnode_to_np(node)
190                                   : ofnode_to_np(node)));
191 #endif
192         return of_live_active() && ofnode_valid(node);
193 }
194
195 /**
196  * ofnode_equal() - check if two references are equal
197  *
198  * @ref1: first reference to check (possibly invalid)
199  * @ref2: second reference to check (possibly invalid)
200  * Return: true if equal, else false
201  */
202 static inline bool ofnode_equal(ofnode ref1, ofnode ref2)
203 {
204         /* We only need to compare the contents */
205         return ref1.of_offset == ref2.of_offset;
206 }
207
208 /**
209  * ofnode_null() - Obtain a null ofnode
210  *
211  * This returns an ofnode which points to no node. It works both with the flat
212  * tree and livetree.
213  */
214 static inline ofnode ofnode_null(void)
215 {
216         ofnode node;
217
218         if (of_live_active())
219                 node.np = NULL;
220         else
221                 node.of_offset = -1;
222
223         return node;
224 }
225
226 static inline ofnode ofnode_root(void)
227 {
228         ofnode node;
229
230         if (of_live_active())
231                 node.np = gd_of_root();
232         else
233                 node.of_offset = 0;
234
235         return node;
236 }
237
238 /**
239  * ofnode_name_eq() - Check if the node name is equivalent to a given name
240  *                    ignoring the unit address
241  *
242  * @node:       valid node reference that has to be compared
243  * @name:       name that has to be compared with the node name
244  * Return: true if matches, false if it doesn't match
245  */
246 bool ofnode_name_eq(ofnode node, const char *name);
247
248 /**
249  * ofnode_read_u32() - Read a 32-bit integer from a property
250  *
251  * @node:       valid node reference to read property from
252  * @propname:   name of the property to read from
253  * @outp:       place to put value (if found)
254  * Return: 0 if OK, -ve on error
255  */
256 int ofnode_read_u32(ofnode node, const char *propname, u32 *outp);
257
258 /**
259  * ofnode_read_u32_index() - Read a 32-bit integer from a multi-value property
260  *
261  * @node:       valid node reference to read property from
262  * @propname:   name of the property to read from
263  * @index:      index of the integer to return
264  * @outp:       place to put value (if found)
265  * Return: 0 if OK, -ve on error
266  */
267 int ofnode_read_u32_index(ofnode node, const char *propname, int index,
268                           u32 *outp);
269
270 /**
271  * ofnode_read_s32() - Read a 32-bit integer from a property
272  *
273  * @node:       valid node reference to read property from
274  * @propname:   name of the property to read from
275  * @outp:       place to put value (if found)
276  * Return: 0 if OK, -ve on error
277  */
278 static inline int ofnode_read_s32(ofnode node, const char *propname,
279                                   s32 *outp)
280 {
281         return ofnode_read_u32(node, propname, (u32 *)outp);
282 }
283
284 /**
285  * ofnode_read_u32_default() - Read a 32-bit integer from a property
286  *
287  * @node:       valid node reference to read property from
288  * @propname:   name of the property to read from
289  * @def:        default value to return if the property has no value
290  * Return: property value, or @def if not found
291  */
292 u32 ofnode_read_u32_default(ofnode node, const char *propname, u32 def);
293
294 /**
295  * ofnode_read_u32_index_default() - Read a 32-bit integer from a multi-value
296  *                                   property
297  *
298  * @node:       valid node reference to read property from
299  * @propname:   name of the property to read from
300  * @index:      index of the integer to return
301  * @def:        default value to return if the property has no value
302  * Return: property value, or @def if not found
303  */
304 u32 ofnode_read_u32_index_default(ofnode node, const char *propname, int index,
305                                   u32 def);
306
307 /**
308  * ofnode_read_s32_default() - Read a 32-bit integer from a property
309  *
310  * @node:       valid node reference to read property from
311  * @propname:   name of the property to read from
312  * @def:        default value to return if the property has no value
313  * Return: property value, or @def if not found
314  */
315 int ofnode_read_s32_default(ofnode node, const char *propname, s32 def);
316
317 /**
318  * ofnode_read_u64() - Read a 64-bit integer from a property
319  *
320  * @node:       valid node reference to read property from
321  * @propname:   name of the property to read from
322  * @outp:       place to put value (if found)
323  * Return: 0 if OK, -ve on error
324  */
325 int ofnode_read_u64(ofnode node, const char *propname, u64 *outp);
326
327 /**
328  * ofnode_read_u64_default() - Read a 64-bit integer from a property
329  *
330  * @node:       valid node reference to read property from
331  * @propname:   name of the property to read from
332  * @def:        default value to return if the property has no value
333  * Return: property value, or @def if not found
334  */
335 u64 ofnode_read_u64_default(ofnode node, const char *propname, u64 def);
336
337 /**
338  * ofnode_read_prop() - Read a property from a node
339  *
340  * @node:       valid node reference to read property from
341  * @propname:   name of the property to read
342  * @sizep:      if non-NULL, returns the size of the property, or an error code
343  *              if not found
344  * Return: property value, or NULL if there is no such property
345  */
346 const void *ofnode_read_prop(ofnode node, const char *propname, int *sizep);
347
348 /**
349  * ofnode_read_string() - Read a string from a property
350  *
351  * @node:       valid node reference to read property from
352  * @propname:   name of the property to read
353  * Return: string from property value, or NULL if there is no such property
354  */
355 const char *ofnode_read_string(ofnode node, const char *propname);
356
357 /**
358  * ofnode_read_u32_array() - Find and read an array of 32 bit integers
359  *
360  * @node:       valid node reference to read property from
361  * @propname:   name of the property to read
362  * @out_values: pointer to return value, modified only if return value is 0
363  * @sz:         number of array elements to read
364  * Return: 0 if OK, -ve on error
365  *
366  * Search for a property in a device node and read 32-bit value(s) from
367  * it. Returns 0 on success, -EINVAL if the property does not exist,
368  * -ENODATA if property does not have a value, and -EOVERFLOW if the
369  * property data isn't large enough.
370  *
371  * The out_values is modified only if a valid u32 value can be decoded.
372  */
373 int ofnode_read_u32_array(ofnode node, const char *propname,
374                           u32 *out_values, size_t sz);
375
376 /**
377  * ofnode_read_bool() - read a boolean value from a property
378  *
379  * @node:       valid node reference to read property from
380  * @propname:   name of property to read
381  * Return: true if property is present (meaning true), false if not present
382  */
383 bool ofnode_read_bool(ofnode node, const char *propname);
384
385 /**
386  * ofnode_find_subnode() - find a named subnode of a parent node
387  *
388  * @node:       valid reference to parent node
389  * @subnode_name: name of subnode to find
390  * Return: reference to subnode (which can be invalid if there is no such
391  * subnode)
392  */
393 ofnode ofnode_find_subnode(ofnode node, const char *subnode_name);
394
395 #if CONFIG_IS_ENABLED(DM_INLINE_OFNODE)
396 #include <asm/global_data.h>
397
398 static inline bool ofnode_is_enabled(ofnode node)
399 {
400         if (ofnode_is_np(node)) {
401                 return of_device_is_available(ofnode_to_np(node));
402         } else {
403                 return fdtdec_get_is_enabled(gd->fdt_blob,
404                                              ofnode_to_offset(node));
405         }
406 }
407
408 static inline ofnode ofnode_first_subnode(ofnode node)
409 {
410         assert(ofnode_valid(node));
411         if (ofnode_is_np(node))
412                 return np_to_ofnode(node.np->child);
413
414         return offset_to_ofnode(
415                 fdt_first_subnode(gd->fdt_blob, ofnode_to_offset(node)));
416 }
417
418 static inline ofnode ofnode_next_subnode(ofnode node)
419 {
420         assert(ofnode_valid(node));
421         if (ofnode_is_np(node))
422                 return np_to_ofnode(node.np->sibling);
423
424         return offset_to_ofnode(
425                 fdt_next_subnode(gd->fdt_blob, ofnode_to_offset(node)));
426 }
427 #else
428 /**
429  * ofnode_is_enabled() - Checks whether a node is enabled.
430  * This looks for a 'status' property. If this exists, then returns true if
431  * the status is 'okay' and false otherwise. If there is no status property,
432  * it returns true on the assumption that anything mentioned should be enabled
433  * by default.
434  *
435  * @node: node to examine
436  * Return: false (not enabled) or true (enabled)
437  */
438 bool ofnode_is_enabled(ofnode node);
439
440 /**
441  * ofnode_first_subnode() - find the first subnode of a parent node
442  *
443  * @node:       valid reference to a valid parent node
444  * Return: reference to the first subnode (which can be invalid if the parent
445  * node has no subnodes)
446  */
447 ofnode ofnode_first_subnode(ofnode node);
448
449 /**
450  * ofnode_next_subnode() - find the next sibling of a subnode
451  *
452  * @node:       valid reference to previous node (sibling)
453  * Return: reference to the next subnode (which can be invalid if the node
454  * has no more siblings)
455  */
456 ofnode ofnode_next_subnode(ofnode node);
457 #endif /* DM_INLINE_OFNODE */
458
459 /**
460  * ofnode_get_parent() - get the ofnode's parent (enclosing ofnode)
461  *
462  * @node: valid node to look up
463  * Return: ofnode reference of the parent node
464  */
465 ofnode ofnode_get_parent(ofnode node);
466
467 /**
468  * ofnode_get_name() - get the name of a node
469  *
470  * @node: valid node to look up
471  * Return: name of node
472  */
473 const char *ofnode_get_name(ofnode node);
474
475 /**
476  * ofnode_get_path() - get the full path of a node
477  *
478  * @node: valid node to look up
479  * @buf: buffer to write the node path into
480  * @buflen: buffer size
481  * Return: 0 if OK, -ve on error
482  */
483 int ofnode_get_path(ofnode node, char *buf, int buflen);
484
485 /**
486  * ofnode_get_by_phandle() - get ofnode from phandle
487  *
488  * @phandle:    phandle to look up
489  * Return: ofnode reference to the phandle
490  */
491 ofnode ofnode_get_by_phandle(uint phandle);
492
493 /**
494  * ofnode_read_size() - read the size of a property
495  *
496  * @node: node to check
497  * @propname: property to check
498  * Return: size of property if present, or -EINVAL if not
499  */
500 int ofnode_read_size(ofnode node, const char *propname);
501
502 /**
503  * ofnode_get_addr_size_index() - get an address/size from a node
504  *                                based on index
505  *
506  * This reads the register address/size from a node based on index
507  *
508  * @node: node to read from
509  * @index: Index of address to read (0 for first)
510  * @size: Pointer to size of the address
511  * Return: address, or FDT_ADDR_T_NONE if not present or invalid
512  */
513 phys_addr_t ofnode_get_addr_size_index(ofnode node, int index,
514                                        fdt_size_t *size);
515
516 /**
517  * ofnode_get_addr_size_index_notrans() - get an address/size from a node
518  *                                        based on index, without address
519  *                                        translation
520  *
521  * This reads the register address/size from a node based on index.
522  * The resulting address is not translated. Useful for example for on-disk
523  * addresses.
524  *
525  * @node: node to read from
526  * @index: Index of address to read (0 for first)
527  * @size: Pointer to size of the address
528  * Return: address, or FDT_ADDR_T_NONE if not present or invalid
529  */
530 phys_addr_t ofnode_get_addr_size_index_notrans(ofnode node, int index,
531                                                fdt_size_t *size);
532
533 /**
534  * ofnode_get_addr_index() - get an address from a node
535  *
536  * This reads the register address from a node
537  *
538  * @node: node to read from
539  * @index: Index of address to read (0 for first)
540  * Return: address, or FDT_ADDR_T_NONE if not present or invalid
541  */
542 phys_addr_t ofnode_get_addr_index(ofnode node, int index);
543
544 /**
545  * ofnode_get_addr() - get an address from a node
546  *
547  * This reads the register address from a node
548  *
549  * @node: node to read from
550  * Return: address, or FDT_ADDR_T_NONE if not present or invalid
551  */
552 phys_addr_t ofnode_get_addr(ofnode node);
553
554 /**
555  * ofnode_get_size() - get size from a node
556  *
557  * This reads the register size from a node
558  *
559  * @node: node to read from
560  * Return: size of the address, or FDT_SIZE_T_NONE if not present or invalid
561  */
562 fdt_size_t ofnode_get_size(ofnode node);
563
564 /**
565  * ofnode_stringlist_search() - find a string in a string list and return index
566  *
567  * Note that it is possible for this function to succeed on property values
568  * that are not NUL-terminated. That's because the function will stop after
569  * finding the first occurrence of @string. This can for example happen with
570  * small-valued cell properties, such as #address-cells, when searching for
571  * the empty string.
572  *
573  * @node: node to check
574  * @propname: name of the property containing the string list
575  * @string: string to look up in the string list
576  *
577  * Return:
578  *   the index of the string in the list of strings
579  *   -ENODATA if the property is not found
580  *   -EINVAL on some other error
581  */
582 int ofnode_stringlist_search(ofnode node, const char *propname,
583                              const char *string);
584
585 /**
586  * ofnode_read_string_index() - obtain an indexed string from a string list
587  *
588  * Note that this will successfully extract strings from properties with
589  * non-NUL-terminated values. For example on small-valued cell properties
590  * this function will return the empty string.
591  *
592  * If non-NULL, the length of the string (on success) or a negative error-code
593  * (on failure) will be stored in the integer pointer to by lenp.
594  *
595  * @node: node to check
596  * @propname: name of the property containing the string list
597  * @index: index of the string to return (cannot be negative)
598  * @outp: return location for the string
599  *
600  * Return:
601  *   0 if found or -ve error value if not found
602  */
603 int ofnode_read_string_index(ofnode node, const char *propname, int index,
604                              const char **outp);
605
606 /**
607  * ofnode_read_string_count() - find the number of strings in a string list
608  *
609  * @node: node to check
610  * @property: name of the property containing the string list
611  * Return:
612  *   number of strings in the list, or -ve error value if not found
613  */
614 int ofnode_read_string_count(ofnode node, const char *property);
615
616 /**
617  * ofnode_read_string_list() - read a list of strings
618  *
619  * This produces a list of string pointers with each one pointing to a string
620  * in the string list. If the property does not exist, it returns {NULL}.
621  *
622  * The data is allocated and the caller is reponsible for freeing the return
623  * value (the list of string pointers). The strings themselves may not be
624  * changed as they point directly into the devicetree property.
625  *
626  * @node: node to check
627  * @property: name of the property containing the string list
628  * @listp: returns an allocated, NULL-terminated list of strings if the return
629  *      value is > 0, else is set to NULL
630  * Return:
631  * number of strings in list, 0 if none, -ENOMEM if out of memory,
632  * -EINVAL if no such property, -EENODATA if property is empty
633  */
634 int ofnode_read_string_list(ofnode node, const char *property,
635                             const char ***listp);
636
637 /**
638  * ofnode_parse_phandle_with_args() - Find a node pointed by phandle in a list
639  *
640  * This function is useful to parse lists of phandles and their arguments.
641  * Returns 0 on success and fills out_args, on error returns appropriate
642  * errno value.
643  *
644  * Caller is responsible to call of_node_put() on the returned out_args->np
645  * pointer.
646  *
647  * Example:
648  *
649  * .. code-block::
650  *
651  *   phandle1: node1 {
652  *       #list-cells = <2>;
653  *   };
654  *   phandle2: node2 {
655  *       #list-cells = <1>;
656  *   };
657  *   node3 {
658  *       list = <&phandle1 1 2 &phandle2 3>;
659  *   };
660  *
661  * To get a device_node of the `node2' node you may call this:
662  * ofnode_parse_phandle_with_args(node3, "list", "#list-cells", 0, 1, &args);
663  *
664  * @node:       device tree node containing a list
665  * @list_name:  property name that contains a list
666  * @cells_name: property name that specifies phandles' arguments count
667  * @cell_count: Cell count to use if @cells_name is NULL
668  * @index:      index of a phandle to parse out
669  * @out_args:   optional pointer to output arguments structure (will be filled)
670  * Return:
671  *   0 on success (with @out_args filled out if not NULL), -ENOENT if
672  *   @list_name does not exist, -EINVAL if a phandle was not found,
673  *   @cells_name could not be found, the arguments were truncated or there
674  *   were too many arguments.
675  */
676 int ofnode_parse_phandle_with_args(ofnode node, const char *list_name,
677                                    const char *cells_name, int cell_count,
678                                    int index,
679                                    struct ofnode_phandle_args *out_args);
680
681 /**
682  * ofnode_count_phandle_with_args() - Count number of phandle in a list
683  *
684  * This function is useful to count phandles into a list.
685  * Returns number of phandle on success, on error returns appropriate
686  * errno value.
687  *
688  * @node:       device tree node containing a list
689  * @list_name:  property name that contains a list
690  * @cells_name: property name that specifies phandles' arguments count
691  * @cell_count: Cell count to use if @cells_name is NULL
692  * Return:
693  *   number of phandle on success, -ENOENT if @list_name does not exist,
694  *   -EINVAL if a phandle was not found, @cells_name could not be found.
695  */
696 int ofnode_count_phandle_with_args(ofnode node, const char *list_name,
697                                    const char *cells_name, int cell_count);
698
699 /**
700  * ofnode_path() - find a node by full path
701  *
702  * @path: Full path to node, e.g. "/bus/spi@1"
703  * Return: reference to the node found. Use ofnode_valid() to check if it exists
704  */
705 ofnode ofnode_path(const char *path);
706
707 /**
708  * ofnode_read_chosen_prop() - get the value of a chosen property
709  *
710  * This looks for a property within the /chosen node and returns its value
711  *
712  * @propname: Property name to look for
713  * @sizep: Returns size of property, or  `FDT_ERR_...` error code if function
714  *      returns NULL
715  * Return: property value if found, else NULL
716  */
717 const void *ofnode_read_chosen_prop(const char *propname, int *sizep);
718
719 /**
720  * ofnode_read_chosen_string() - get the string value of a chosen property
721  *
722  * This looks for a property within the /chosen node and returns its value,
723  * checking that it is a valid nul-terminated string
724  *
725  * @propname: Property name to look for
726  * Return: string value if found, else NULL
727  */
728 const char *ofnode_read_chosen_string(const char *propname);
729
730 /**
731  * ofnode_get_chosen_node() - get a referenced node from the chosen node
732  *
733  * This looks up a named property in the chosen node and uses that as a path to
734  * look up a code.
735  *
736  * @propname: Property name to look for
737  * Return: the referenced node if present, else ofnode_null()
738  */
739 ofnode ofnode_get_chosen_node(const char *propname);
740
741 /**
742  * ofnode_read_aliases_prop() - get the value of a aliases property
743  *
744  * This looks for a property within the /aliases node and returns its value
745  *
746  * @propname: Property name to look for
747  * @sizep: Returns size of property, or `FDT_ERR_...` error code if function
748  *      returns NULL
749  * Return: property value if found, else NULL
750  */
751 const void *ofnode_read_aliases_prop(const char *propname, int *sizep);
752
753 /**
754  * ofnode_get_aliases_node() - get a referenced node from the aliases node
755  *
756  * This looks up a named property in the aliases node and uses that as a path to
757  * look up a code.
758  *
759  * @propname: Property name to look for
760  * Return: the referenced node if present, else ofnode_null()
761  */
762 ofnode ofnode_get_aliases_node(const char *propname);
763
764 struct display_timing;
765 /**
766  * ofnode_decode_display_timing() - decode display timings
767  *
768  * Decode display timings from the supplied 'display-timings' node.
769  * See doc/device-tree-bindings/video/display-timing.txt for binding
770  * information.
771  *
772  * @node:       'display-timing' node containing the timing subnodes
773  * @index:      Index number to read (0=first timing subnode)
774  * @config:     Place to put timings
775  * Return: 0 if OK, -FDT_ERR_NOTFOUND if not found
776  */
777 int ofnode_decode_display_timing(ofnode node, int index,
778                                  struct display_timing *config);
779
780 /**
781  * ofnode_get_property() - get a pointer to the value of a node property
782  *
783  * @node: node to read
784  * @propname: property to read
785  * @lenp: place to put length on success
786  * Return: pointer to property, or NULL if not found
787  */
788 const void *ofnode_get_property(ofnode node, const char *propname, int *lenp);
789
790 /**
791  * ofnode_get_first_property()- get the reference of the first property
792  *
793  * Get reference to the first property of the node, it is used to iterate
794  * and read all the property with ofnode_get_property_by_prop().
795  *
796  * @node: node to read
797  * @prop: place to put argument reference
798  * Return: 0 if OK, -ve on error. -FDT_ERR_NOTFOUND if not found
799  */
800 int ofnode_get_first_property(ofnode node, struct ofprop *prop);
801
802 /**
803  * ofnode_get_next_property() - get the reference of the next property
804  *
805  * Get reference to the next property of the node, it is used to iterate
806  * and read all the property with ofnode_get_property_by_prop().
807  *
808  * @prop: reference of current argument and place to put reference of next one
809  * Return: 0 if OK, -ve on error. -FDT_ERR_NOTFOUND if not found
810  */
811 int ofnode_get_next_property(struct ofprop *prop);
812
813 /**
814  * ofnode_get_property_by_prop() - get a pointer to the value of a property
815  *
816  * Get value for the property identified by the provided reference.
817  *
818  * @prop: reference on property
819  * @propname: If non-NULL, place to property name on success,
820  * @lenp: If non-NULL, place to put length on success
821  * Return: 0 if OK, -ve on error. -FDT_ERR_NOTFOUND if not found
822  */
823 const void *ofnode_get_property_by_prop(const struct ofprop *prop,
824                                         const char **propname, int *lenp);
825
826 /**
827  * ofnode_is_available() - check if a node is marked available
828  *
829  * @node: node to check
830  * Return: true if node's 'status' property is "okay" (or is missing)
831  */
832 bool ofnode_is_available(ofnode node);
833
834 /**
835  * ofnode_get_addr_size() - get address and size from a property
836  *
837  * This does no address translation. It simply reads an property that contains
838  * an address and a size value, one after the other.
839  *
840  * @node: node to read from
841  * @propname: property to read
842  * @sizep: place to put size value (on success)
843  * Return: address value, or FDT_ADDR_T_NONE on error
844  */
845 phys_addr_t ofnode_get_addr_size(ofnode node, const char *propname,
846                                  phys_size_t *sizep);
847
848 /**
849  * ofnode_read_u8_array_ptr() - find an 8-bit array
850  *
851  * Look up a property in a node and return a pointer to its contents as a
852  * byte array of given length. The property must have at least enough data
853  * for the array (count bytes). It may have more, but this will be ignored.
854  * The data is not copied.
855  *
856  * @node:       node to examine
857  * @propname:   name of property to find
858  * @sz:         number of array elements
859  * Return:
860  * pointer to byte array if found, or NULL if the property is not found or
861  * there is not enough data
862  */
863 const uint8_t *ofnode_read_u8_array_ptr(ofnode node, const char *propname,
864                                         size_t sz);
865
866 /**
867  * ofnode_read_pci_addr() - look up a PCI address
868  *
869  * Look at an address property in a node and return the PCI address which
870  * corresponds to the given type in the form of fdt_pci_addr.
871  * The property must hold one fdt_pci_addr with a lengh.
872  *
873  * @node:       node to examine
874  * @type:       pci address type (FDT_PCI_SPACE_xxx)
875  * @propname:   name of property to find
876  * @addr:       returns pci address in the form of fdt_pci_addr
877  * Return:
878  * 0 if ok, -ENOENT if the property did not exist, -EINVAL if the
879  * format of the property was invalid, -ENXIO if the requested
880  * address type was not found
881  */
882 int ofnode_read_pci_addr(ofnode node, enum fdt_pci_space type,
883                          const char *propname, struct fdt_pci_addr *addr);
884
885 /**
886  * ofnode_read_pci_vendev() - look up PCI vendor and device id
887  *
888  * Look at the compatible property of a device node that represents a PCI
889  * device and extract pci vendor id and device id from it.
890  *
891  * @node:       node to examine
892  * @vendor:     vendor id of the pci device
893  * @device:     device id of the pci device
894  * Return: 0 if ok, negative on error
895  */
896 int ofnode_read_pci_vendev(ofnode node, u16 *vendor, u16 *device);
897
898 /**
899  * ofnode_read_eth_phy_id() - look up eth phy vendor and device id
900  *
901  * Look at the compatible property of a device node that represents a eth phy
902  * device and extract phy vendor id and device id from it.
903  *
904  * @node:       node to examine
905  * @vendor:     vendor id of the eth phy device
906  * @device:     device id of the eth phy device
907  * Return:       0 if ok, negative on error
908  */
909 int ofnode_read_eth_phy_id(ofnode node, u16 *vendor, u16 *device);
910
911 /**
912  * ofnode_read_addr_cells() - Get the number of address cells for a node
913  *
914  * This walks back up the tree to find the closest #address-cells property
915  * which controls the given node.
916  *
917  * @node: Node to check
918  * Return: number of address cells this node uses
919  */
920 int ofnode_read_addr_cells(ofnode node);
921
922 /**
923  * ofnode_read_size_cells() - Get the number of size cells for a node
924  *
925  * This walks back up the tree to find the closest #size-cells property
926  * which controls the given node.
927  *
928  * @node: Node to check
929  * Return: number of size cells this node uses
930  */
931 int ofnode_read_size_cells(ofnode node);
932
933 /**
934  * ofnode_read_simple_addr_cells() - Get the address cells property in a node
935  *
936  * This function matches fdt_address_cells().
937  *
938  * @node: Node to check
939  * Return: value of #address-cells property in this node, or 2 if none
940  */
941 int ofnode_read_simple_addr_cells(ofnode node);
942
943 /**
944  * ofnode_read_simple_size_cells() - Get the size cells property in a node
945  *
946  * This function matches fdt_size_cells().
947  *
948  * @node: Node to check
949  * Return: value of #size-cells property in this node, or 2 if none
950  */
951 int ofnode_read_simple_size_cells(ofnode node);
952
953 /**
954  * ofnode_pre_reloc() - check if a node should be bound before relocation
955  *
956  * Device tree nodes can be marked as needing-to-be-bound in the loader stages
957  * via special device tree properties.
958  *
959  * Before relocation this function can be used to check if nodes are required
960  * in either SPL or TPL stages.
961  *
962  * After relocation and jumping into the real U-Boot binary it is possible to
963  * determine if a node was bound in one of SPL/TPL stages.
964  *
965  * There are 4 settings currently in use
966  * - u-boot,dm-pre-proper: U-Boot proper pre-relocation only
967  * - u-boot,dm-pre-reloc: legacy and indicates any of TPL or SPL
968  * Existing platforms only use it to indicate nodes needed in
969  * SPL. Should probably be replaced by u-boot,dm-spl for new platforms.
970  * - u-boot,dm-spl: SPL and U-Boot pre-relocation
971  * - u-boot,dm-tpl: TPL and U-Boot pre-relocation
972  *
973  * @node: node to check
974  * Return: true if node is needed in SPL/TL, false otherwise
975  */
976 bool ofnode_pre_reloc(ofnode node);
977
978 /**
979  * ofnode_read_resource() - Read a resource from a node
980  *
981  * Read resource information from a node at the given index
982  *
983  * @node: Node to read from
984  * @index: Index of resource to read (0 = first)
985  * @res: Returns resource that was read, on success
986  * Return: 0 if OK, -ve on error
987  */
988 int ofnode_read_resource(ofnode node, uint index, struct resource *res);
989
990 /**
991  * ofnode_read_resource_byname() - Read a resource from a node by name
992  *
993  * Read resource information from a node matching the given name. This uses a
994  * 'reg-names' string list property with the names matching the associated
995  * 'reg' property list.
996  *
997  * @node: Node to read from
998  * @name: Name of resource to read
999  * @res: Returns resource that was read, on success
1000  * Return: 0 if OK, -ve on error
1001  */
1002 int ofnode_read_resource_byname(ofnode node, const char *name,
1003                                 struct resource *res);
1004
1005 /**
1006  * ofnode_by_compatible() - Find the next compatible node
1007  *
1008  * Find the next node after @from that is compatible with @compat
1009  *
1010  * @from: ofnode to start from (use ofnode_null() to start at the beginning)
1011  * @compat: Compatible string to match
1012  * Return: ofnode found, or ofnode_null() if none
1013  */
1014 ofnode ofnode_by_compatible(ofnode from, const char *compat);
1015
1016 /**
1017  * ofnode_by_prop_value() - Find the next node with given property value
1018  *
1019  * Find the next node after @from that has a @propname with a value
1020  * @propval and a length @proplen.
1021  *
1022  * @from: ofnode to start from (use ofnode_null() to start at the
1023  * beginning)
1024  * @propname: property name to check
1025  * @propval: property value to search for
1026  * @proplen: length of the value in propval
1027  * Return: ofnode found, or ofnode_null() if none
1028  */
1029 ofnode ofnode_by_prop_value(ofnode from, const char *propname,
1030                             const void *propval, int proplen);
1031
1032 /**
1033  * ofnode_for_each_subnode() - iterate over all subnodes of a parent
1034  *
1035  * @node:       child node (ofnode, lvalue)
1036  * @parent:     parent node (ofnode)
1037  *
1038  * This is a wrapper around a for loop and is used like so::
1039  *
1040  *   ofnode node;
1041  *   ofnode_for_each_subnode(node, parent) {
1042  *       Use node
1043  *       ...
1044  *   }
1045  *
1046  * Note that this is implemented as a macro and @node is used as
1047  * iterator in the loop. The parent variable can be a constant or even a
1048  * literal.
1049  */
1050 #define ofnode_for_each_subnode(node, parent) \
1051         for (node = ofnode_first_subnode(parent); \
1052              ofnode_valid(node); \
1053              node = ofnode_next_subnode(node))
1054
1055 /**
1056  * ofnode_for_each_compatible_node() - iterate over all nodes with a given
1057  *                                     compatible string
1058  *
1059  * @node:       child node (ofnode, lvalue)
1060  * @compat:     compatible string to match
1061  *
1062  * This is a wrapper around a for loop and is used like so::
1063  *
1064  *   ofnode node;
1065  *   ofnode_for_each_compatible_node(node, parent, compatible) {
1066  *      Use node
1067  *      ...
1068  *   }
1069  *
1070  * Note that this is implemented as a macro and @node is used as
1071  * iterator in the loop.
1072  */
1073 #define ofnode_for_each_compatible_node(node, compat) \
1074         for (node = ofnode_by_compatible(ofnode_null(), compat); \
1075              ofnode_valid(node); \
1076              node = ofnode_by_compatible(node, compat))
1077
1078 /**
1079  * ofnode_get_child_count() - get the child count of a ofnode
1080  *
1081  * @parent: valid node to get its child count
1082  * Return: the number of subnodes
1083  */
1084 int ofnode_get_child_count(ofnode parent);
1085
1086 /**
1087  * ofnode_translate_address() - Translate a device-tree address
1088  *
1089  * Translate an address from the device-tree into a CPU physical address. This
1090  * function walks up the tree and applies the various bus mappings along the
1091  * way.
1092  *
1093  * @node: Device tree node giving the context in which to translate the address
1094  * @in_addr: pointer to the address to translate
1095  * Return: the translated address; OF_BAD_ADDR on error
1096  */
1097 u64 ofnode_translate_address(ofnode node, const fdt32_t *in_addr);
1098
1099 /**
1100  * ofnode_translate_dma_address() - Translate a device-tree DMA address
1101  *
1102  * Translate a DMA address from the device-tree into a CPU physical address.
1103  * This function walks up the tree and applies the various bus mappings along
1104  * the way.
1105  *
1106  * @node: Device tree node giving the context in which to translate the
1107  *        DMA address
1108  * @in_addr: pointer to the DMA address to translate
1109  * Return: the translated DMA address; OF_BAD_ADDR on error
1110  */
1111 u64 ofnode_translate_dma_address(ofnode node, const fdt32_t *in_addr);
1112
1113 /**
1114  * ofnode_get_dma_range() - get dma-ranges for a specific DT node
1115  *
1116  * Get DMA ranges for a specifc node, this is useful to perform bus->cpu and
1117  * cpu->bus address translations
1118  *
1119  * @node: Device tree node
1120  * @cpu: Pointer to variable storing the range's cpu address
1121  * @bus: Pointer to variable storing the range's bus address
1122  * @size: Pointer to variable storing the range's size
1123  * Return: translated DMA address or OF_BAD_ADDR on error
1124  */
1125 int ofnode_get_dma_range(ofnode node, phys_addr_t *cpu, dma_addr_t *bus,
1126                          u64 *size);
1127
1128 /**
1129  * ofnode_device_is_compatible() - check if the node is compatible with compat
1130  *
1131  * This allows to check whether the node is comaptible with the compat.
1132  *
1133  * @node:       Device tree node for which compatible needs to be verified.
1134  * @compat:     Compatible string which needs to verified in the given node.
1135  * Return: true if OK, false if the compatible is not found
1136  */
1137 int ofnode_device_is_compatible(ofnode node, const char *compat);
1138
1139 /**
1140  * ofnode_write_prop() - Set a property of a ofnode
1141  *
1142  * Note that the value passed to the function is *not* allocated by the
1143  * function itself, but must be allocated by the caller if necessary.
1144  *
1145  * @node:       The node for whose property should be set
1146  * @propname:   The name of the property to set
1147  * @len:        The length of the new value of the property
1148  * @value:      The new value of the property (must be valid prior to calling
1149  *              the function)
1150  * Return: 0 if successful, -ve on error
1151  */
1152 int ofnode_write_prop(ofnode node, const char *propname, int len,
1153                       const void *value);
1154
1155 /**
1156  * ofnode_write_string() - Set a string property of a ofnode
1157  *
1158  * Note that the value passed to the function is *not* allocated by the
1159  * function itself, but must be allocated by the caller if necessary.
1160  *
1161  * @node:       The node for whose string property should be set
1162  * @propname:   The name of the string property to set
1163  * @value:      The new value of the string property (must be valid prior to
1164  *              calling the function)
1165  * Return: 0 if successful, -ve on error
1166  */
1167 int ofnode_write_string(ofnode node, const char *propname, const char *value);
1168
1169 /**
1170  * ofnode_set_enabled() - Enable or disable a device tree node given by its
1171  *                        ofnode
1172  *
1173  * This function effectively sets the node's "status" property to either "okay"
1174  * or "disable", hence making it available for driver model initialization or
1175  * not.
1176  *
1177  * @node:       The node to enable
1178  * @value:      Flag that tells the function to either disable or enable the
1179  *              node
1180  * Return: 0 if successful, -ve on error
1181  */
1182 int ofnode_set_enabled(ofnode node, bool value);
1183
1184 /**
1185  * ofnode_get_phy_node() - Get PHY node for a MAC (if not fixed-link)
1186  *
1187  * This function parses PHY handle from the Ethernet controller's ofnode
1188  * (trying all possible PHY handle property names), and returns the PHY ofnode.
1189  *
1190  * Before this is used, ofnode_phy_is_fixed_link() should be checked first, and
1191  * if the result to that is true, this function should not be called.
1192  *
1193  * @eth_node:   ofnode belonging to the Ethernet controller
1194  * Return: ofnode of the PHY, if it exists, otherwise an invalid ofnode
1195  */
1196 ofnode ofnode_get_phy_node(ofnode eth_node);
1197
1198 /**
1199  * ofnode_read_phy_mode() - Read PHY connection type from a MAC node
1200  *
1201  * This function parses the "phy-mode" / "phy-connection-type" property and
1202  * returns the corresponding PHY interface type.
1203  *
1204  * @mac_node:   ofnode containing the property
1205  * Return: one of PHY_INTERFACE_MODE_* constants, PHY_INTERFACE_MODE_NA on
1206  *         error
1207  */
1208 phy_interface_t ofnode_read_phy_mode(ofnode mac_node);
1209
1210 #if CONFIG_IS_ENABLED(DM)
1211 /**
1212  * ofnode_conf_read_bool() - Read a boolean value from the U-Boot config
1213  *
1214  * This reads a property from the /config node of the devicetree.
1215  *
1216  * See doc/config.txt for bindings
1217  *
1218  * @prop_name:  property name to look up
1219  * Return: true, if it exists, false if not
1220  */
1221 bool ofnode_conf_read_bool(const char *prop_name);
1222
1223 /**
1224  * ofnode_conf_read_int() - Read an integer value from the U-Boot config
1225  *
1226  * This reads a property from the /config node of the devicetree.
1227  *
1228  * See doc/config.txt for bindings
1229  *
1230  * @prop_name: property name to look up
1231  * @default_val: default value to return if the property is not found
1232  * Return: integer value, if found, or @default_val if not
1233  */
1234 int ofnode_conf_read_int(const char *prop_name, int default_val);
1235
1236 /**
1237  * ofnode_conf_read_str() - Read a string value from the U-Boot config
1238  *
1239  * This reads a property from the /config node of the devicetree.
1240  *
1241  * See doc/config.txt for bindings
1242  *
1243  * @prop_name: property name to look up
1244  * Return: string value, if found, or NULL if not
1245  */
1246 const char *ofnode_conf_read_str(const char *prop_name);
1247
1248 #else /* CONFIG_DM */
1249 static inline bool ofnode_conf_read_bool(const char *prop_name)
1250 {
1251         return false;
1252 }
1253
1254 static inline int ofnode_conf_read_int(const char *prop_name, int default_val)
1255 {
1256         return default_val;
1257 }
1258
1259 static inline const char *ofnode_conf_read_str(const char *prop_name)
1260 {
1261         return NULL;
1262 }
1263 #endif /* CONFIG_DM */
1264
1265 #endif