1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (c) 2017 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
10 /* TODO(sjg@chromium.org): Drop fdtdec.h include */
13 #include <dm/of_access.h>
15 #include <phy_interface.h>
17 /* Enable checks to protect against invalid calls */
22 #include <dm/ofnode_decl.h>
24 struct ofnode_phandle_args {
27 uint32_t args[OF_MAX_PHANDLE_ARGS];
31 * ofnode_to_np() - convert an ofnode to a live DT node pointer
33 * This cannot be called if the reference contains an offset.
35 * @node: Reference containing struct device_node * (possibly invalid)
36 * Return: pointer to device node (can be NULL)
38 static inline const struct device_node *ofnode_to_np(ofnode node)
41 if (!of_live_active())
48 * ofnode_to_offset() - convert an ofnode to a flat DT offset
50 * This cannot be called if the reference contains a node pointer.
52 * @node: Reference containing offset (possibly invalid)
53 * Return: DT offset (can be -1)
55 static inline int ofnode_to_offset(ofnode node)
61 return node.of_offset;
65 * ofnode_valid() - check if an ofnode is valid
67 * @node: Reference containing offset (possibly invalid)
68 * Return: true if the reference contains a valid ofnode, false if it is NULL
70 static inline bool ofnode_valid(ofnode node)
73 return node.np != NULL;
75 return node.of_offset >= 0;
79 * offset_to_ofnode() - convert a DT offset to an ofnode
81 * @of_offset: DT offset (either valid, or -1)
82 * Return: reference to the associated DT offset
84 static inline ofnode offset_to_ofnode(int of_offset)
91 node.of_offset = of_offset >= 0 ? of_offset : -1;
97 * np_to_ofnode() - convert a node pointer to an ofnode
99 * @np: Live node pointer (can be NULL)
100 * Return: reference to the associated node pointer
102 static inline ofnode np_to_ofnode(const struct device_node *np)
112 * ofnode_is_np() - check if a reference is a node pointer
114 * This function associated that if there is a valid live tree then all
115 * references will use it. This is because using the flat DT when the live tree
116 * is valid is not permitted.
118 * @node: reference to check (possibly invalid)
119 * Return: true if the reference is a live node pointer, false if it is a DT
122 static inline bool ofnode_is_np(ofnode node)
126 * Check our assumption that flat tree offsets are not used when a
127 * live tree is in use.
129 assert(!ofnode_valid(node) ||
130 (of_live_active() ? ofnode_to_np(node)
131 : ofnode_to_np(node)));
133 return of_live_active() && ofnode_valid(node);
137 * ofnode_equal() - check if two references are equal
139 * @ref1: first reference to check (possibly invalid)
140 * @ref2: second reference to check (possibly invalid)
141 * Return: true if equal, else false
143 static inline bool ofnode_equal(ofnode ref1, ofnode ref2)
145 /* We only need to compare the contents */
146 return ref1.of_offset == ref2.of_offset;
150 * ofnode_null() - Obtain a null ofnode
152 * This returns an ofnode which points to no node. It works both with the flat
155 static inline ofnode ofnode_null(void)
159 if (of_live_active())
167 static inline ofnode ofnode_root(void)
171 if (of_live_active())
172 node.np = gd_of_root();
180 * ofnode_name_eq() - Check if the node name is equivalent to a given name
181 * ignoring the unit address
183 * @node: valid node reference that has to be compared
184 * @name: name that has to be compared with the node name
185 * Return: true if matches, false if it doesn't match
187 bool ofnode_name_eq(ofnode node, const char *name);
190 * ofnode_read_u32() - Read a 32-bit integer from a property
192 * @node: valid node reference to read property from
193 * @propname: name of the property to read from
194 * @outp: place to put value (if found)
195 * Return: 0 if OK, -ve on error
197 int ofnode_read_u32(ofnode node, const char *propname, u32 *outp);
200 * ofnode_read_u32_index() - Read a 32-bit integer from a multi-value property
202 * @node: valid node reference to read property from
203 * @propname: name of the property to read from
204 * @index: index of the integer to return
205 * @outp: place to put value (if found)
206 * Return: 0 if OK, -ve on error
208 int ofnode_read_u32_index(ofnode node, const char *propname, int index,
212 * ofnode_read_s32() - Read a 32-bit integer from a property
214 * @node: valid node reference to read property from
215 * @propname: name of the property to read from
216 * @outp: place to put value (if found)
217 * Return: 0 if OK, -ve on error
219 static inline int ofnode_read_s32(ofnode node, const char *propname,
222 return ofnode_read_u32(node, propname, (u32 *)outp);
226 * ofnode_read_u32_default() - Read a 32-bit integer from a property
228 * @node: valid node reference to read property from
229 * @propname: name of the property to read from
230 * @def: default value to return if the property has no value
231 * Return: property value, or @def if not found
233 u32 ofnode_read_u32_default(ofnode node, const char *propname, u32 def);
236 * ofnode_read_u32_index_default() - Read a 32-bit integer from a multi-value
239 * @node: valid node reference to read property from
240 * @propname: name of the property to read from
241 * @index: index of the integer to return
242 * @def: default value to return if the property has no value
243 * Return: property value, or @def if not found
245 u32 ofnode_read_u32_index_default(ofnode node, const char *propname, int index,
249 * ofnode_read_s32_default() - Read a 32-bit integer from a property
251 * @node: valid node reference to read property from
252 * @propname: name of the property to read from
253 * @def: default value to return if the property has no value
254 * Return: property value, or @def if not found
256 int ofnode_read_s32_default(ofnode node, const char *propname, s32 def);
259 * ofnode_read_u64() - Read a 64-bit integer from a property
261 * @node: valid node reference to read property from
262 * @propname: name of the property to read from
263 * @outp: place to put value (if found)
264 * Return: 0 if OK, -ve on error
266 int ofnode_read_u64(ofnode node, const char *propname, u64 *outp);
269 * ofnode_read_u64_default() - Read a 64-bit integer from a property
271 * @node: valid node reference to read property from
272 * @propname: name of the property to read from
273 * @def: default value to return if the property has no value
274 * Return: property value, or @def if not found
276 u64 ofnode_read_u64_default(ofnode node, const char *propname, u64 def);
279 * ofnode_read_prop() - Read a property from a node
281 * @node: valid node reference to read property from
282 * @propname: name of the property to read
283 * @sizep: if non-NULL, returns the size of the property, or an error code
285 * Return: property value, or NULL if there is no such property
287 const void *ofnode_read_prop(ofnode node, const char *propname, int *sizep);
290 * ofnode_read_string() - Read a string from a property
292 * @node: valid node reference to read property from
293 * @propname: name of the property to read
294 * Return: string from property value, or NULL if there is no such property
296 const char *ofnode_read_string(ofnode node, const char *propname);
299 * ofnode_read_u32_array() - Find and read an array of 32 bit integers
301 * @node: valid node reference to read property from
302 * @propname: name of the property to read
303 * @out_values: pointer to return value, modified only if return value is 0
304 * @sz: number of array elements to read
305 * Return: 0 if OK, -ve on error
307 * Search for a property in a device node and read 32-bit value(s) from
308 * it. Returns 0 on success, -EINVAL if the property does not exist,
309 * -ENODATA if property does not have a value, and -EOVERFLOW if the
310 * property data isn't large enough.
312 * The out_values is modified only if a valid u32 value can be decoded.
314 int ofnode_read_u32_array(ofnode node, const char *propname,
315 u32 *out_values, size_t sz);
318 * ofnode_read_bool() - read a boolean value from a property
320 * @node: valid node reference to read property from
321 * @propname: name of property to read
322 * Return: true if property is present (meaning true), false if not present
324 bool ofnode_read_bool(ofnode node, const char *propname);
327 * ofnode_find_subnode() - find a named subnode of a parent node
329 * @node: valid reference to parent node
330 * @subnode_name: name of subnode to find
331 * Return: reference to subnode (which can be invalid if there is no such
334 ofnode ofnode_find_subnode(ofnode node, const char *subnode_name);
336 #if CONFIG_IS_ENABLED(DM_INLINE_OFNODE)
337 #include <asm/global_data.h>
339 static inline bool ofnode_is_enabled(ofnode node)
341 if (ofnode_is_np(node)) {
342 return of_device_is_available(ofnode_to_np(node));
344 return fdtdec_get_is_enabled(gd->fdt_blob,
345 ofnode_to_offset(node));
349 static inline ofnode ofnode_first_subnode(ofnode node)
351 assert(ofnode_valid(node));
352 if (ofnode_is_np(node))
353 return np_to_ofnode(node.np->child);
355 return offset_to_ofnode(
356 fdt_first_subnode(gd->fdt_blob, ofnode_to_offset(node)));
359 static inline ofnode ofnode_next_subnode(ofnode node)
361 assert(ofnode_valid(node));
362 if (ofnode_is_np(node))
363 return np_to_ofnode(node.np->sibling);
365 return offset_to_ofnode(
366 fdt_next_subnode(gd->fdt_blob, ofnode_to_offset(node)));
370 * ofnode_is_enabled() - Checks whether a node is enabled.
371 * This looks for a 'status' property. If this exists, then returns true if
372 * the status is 'okay' and false otherwise. If there is no status property,
373 * it returns true on the assumption that anything mentioned should be enabled
376 * @node: node to examine
377 * Return: false (not enabled) or true (enabled)
379 bool ofnode_is_enabled(ofnode node);
382 * ofnode_first_subnode() - find the first subnode of a parent node
384 * @node: valid reference to a valid parent node
385 * Return: reference to the first subnode (which can be invalid if the parent
386 * node has no subnodes)
388 ofnode ofnode_first_subnode(ofnode node);
391 * ofnode_next_subnode() - find the next sibling of a subnode
393 * @node: valid reference to previous node (sibling)
394 * Return: reference to the next subnode (which can be invalid if the node
395 * has no more siblings)
397 ofnode ofnode_next_subnode(ofnode node);
398 #endif /* DM_INLINE_OFNODE */
401 * ofnode_get_parent() - get the ofnode's parent (enclosing ofnode)
403 * @node: valid node to look up
404 * Return: ofnode reference of the parent node
406 ofnode ofnode_get_parent(ofnode node);
409 * ofnode_get_name() - get the name of a node
411 * @node: valid node to look up
412 * Return: name of node
414 const char *ofnode_get_name(ofnode node);
417 * ofnode_get_path() - get the full path of a node
419 * @node: valid node to look up
420 * @buf: buffer to write the node path into
421 * @buflen: buffer size
422 * Return: 0 if OK, -ve on error
424 int ofnode_get_path(ofnode node, char *buf, int buflen);
427 * ofnode_get_by_phandle() - get ofnode from phandle
429 * @phandle: phandle to look up
430 * Return: ofnode reference to the phandle
432 ofnode ofnode_get_by_phandle(uint phandle);
435 * ofnode_read_size() - read the size of a property
437 * @node: node to check
438 * @propname: property to check
439 * Return: size of property if present, or -EINVAL if not
441 int ofnode_read_size(ofnode node, const char *propname);
444 * ofnode_get_addr_size_index() - get an address/size from a node
447 * This reads the register address/size from a node based on index
449 * @node: node to read from
450 * @index: Index of address to read (0 for first)
451 * @size: Pointer to size of the address
452 * Return: address, or FDT_ADDR_T_NONE if not present or invalid
454 phys_addr_t ofnode_get_addr_size_index(ofnode node, int index,
458 * ofnode_get_addr_size_index_notrans() - get an address/size from a node
459 * based on index, without address
462 * This reads the register address/size from a node based on index.
463 * The resulting address is not translated. Useful for example for on-disk
466 * @node: node to read from
467 * @index: Index of address to read (0 for first)
468 * @size: Pointer to size of the address
469 * Return: address, or FDT_ADDR_T_NONE if not present or invalid
471 phys_addr_t ofnode_get_addr_size_index_notrans(ofnode node, int index,
475 * ofnode_get_addr_index() - get an address from a node
477 * This reads the register address from a node
479 * @node: node to read from
480 * @index: Index of address to read (0 for first)
481 * Return: address, or FDT_ADDR_T_NONE if not present or invalid
483 phys_addr_t ofnode_get_addr_index(ofnode node, int index);
486 * ofnode_get_addr() - get an address from a node
488 * This reads the register address from a node
490 * @node: node to read from
491 * Return: address, or FDT_ADDR_T_NONE if not present or invalid
493 phys_addr_t ofnode_get_addr(ofnode node);
496 * ofnode_get_size() - get size from a node
498 * This reads the register size from a node
500 * @node: node to read from
501 * Return: size of the address, or FDT_SIZE_T_NONE if not present or invalid
503 fdt_size_t ofnode_get_size(ofnode node);
506 * ofnode_stringlist_search() - find a string in a string list and return index
508 * Note that it is possible for this function to succeed on property values
509 * that are not NUL-terminated. That's because the function will stop after
510 * finding the first occurrence of @string. This can for example happen with
511 * small-valued cell properties, such as #address-cells, when searching for
514 * @node: node to check
515 * @propname: name of the property containing the string list
516 * @string: string to look up in the string list
519 * the index of the string in the list of strings
520 * -ENODATA if the property is not found
521 * -EINVAL on some other error
523 int ofnode_stringlist_search(ofnode node, const char *propname,
527 * ofnode_read_string_index() - obtain an indexed string from a string list
529 * Note that this will successfully extract strings from properties with
530 * non-NUL-terminated values. For example on small-valued cell properties
531 * this function will return the empty string.
533 * If non-NULL, the length of the string (on success) or a negative error-code
534 * (on failure) will be stored in the integer pointer to by lenp.
536 * @node: node to check
537 * @propname: name of the property containing the string list
538 * @index: index of the string to return (cannot be negative)
539 * @outp: return location for the string
542 * 0 if found or -ve error value if not found
544 int ofnode_read_string_index(ofnode node, const char *propname, int index,
548 * ofnode_read_string_count() - find the number of strings in a string list
550 * @node: node to check
551 * @property: name of the property containing the string list
553 * number of strings in the list, or -ve error value if not found
555 int ofnode_read_string_count(ofnode node, const char *property);
558 * ofnode_read_string_list() - read a list of strings
560 * This produces a list of string pointers with each one pointing to a string
561 * in the string list. If the property does not exist, it returns {NULL}.
563 * The data is allocated and the caller is reponsible for freeing the return
564 * value (the list of string pointers). The strings themselves may not be
565 * changed as they point directly into the devicetree property.
567 * @node: node to check
568 * @property: name of the property containing the string list
569 * @listp: returns an allocated, NULL-terminated list of strings if the return
570 * value is > 0, else is set to NULL
572 * number of strings in list, 0 if none, -ENOMEM if out of memory,
573 * -EINVAL if no such property, -EENODATA if property is empty
575 int ofnode_read_string_list(ofnode node, const char *property,
576 const char ***listp);
579 * ofnode_parse_phandle_with_args() - Find a node pointed by phandle in a list
581 * This function is useful to parse lists of phandles and their arguments.
582 * Returns 0 on success and fills out_args, on error returns appropriate
585 * Caller is responsible to call of_node_put() on the returned out_args->np
599 * list = <&phandle1 1 2 &phandle2 3>;
602 * To get a device_node of the `node2' node you may call this:
603 * ofnode_parse_phandle_with_args(node3, "list", "#list-cells", 0, 1, &args);
605 * @node: device tree node containing a list
606 * @list_name: property name that contains a list
607 * @cells_name: property name that specifies phandles' arguments count
608 * @cell_count: Cell count to use if @cells_name is NULL
609 * @index: index of a phandle to parse out
610 * @out_args: optional pointer to output arguments structure (will be filled)
612 * 0 on success (with @out_args filled out if not NULL), -ENOENT if
613 * @list_name does not exist, -EINVAL if a phandle was not found,
614 * @cells_name could not be found, the arguments were truncated or there
615 * were too many arguments.
617 int ofnode_parse_phandle_with_args(ofnode node, const char *list_name,
618 const char *cells_name, int cell_count,
620 struct ofnode_phandle_args *out_args);
623 * ofnode_count_phandle_with_args() - Count number of phandle in a list
625 * This function is useful to count phandles into a list.
626 * Returns number of phandle on success, on error returns appropriate
629 * @node: device tree node containing a list
630 * @list_name: property name that contains a list
631 * @cells_name: property name that specifies phandles' arguments count
632 * @cell_count: Cell count to use if @cells_name is NULL
634 * number of phandle on success, -ENOENT if @list_name does not exist,
635 * -EINVAL if a phandle was not found, @cells_name could not be found.
637 int ofnode_count_phandle_with_args(ofnode node, const char *list_name,
638 const char *cells_name, int cell_count);
641 * ofnode_path() - find a node by full path
643 * @path: Full path to node, e.g. "/bus/spi@1"
644 * Return: reference to the node found. Use ofnode_valid() to check if it exists
646 ofnode ofnode_path(const char *path);
649 * ofnode_read_chosen_prop() - get the value of a chosen property
651 * This looks for a property within the /chosen node and returns its value
653 * @propname: Property name to look for
654 * @sizep: Returns size of property, or `FDT_ERR_...` error code if function
656 * Return: property value if found, else NULL
658 const void *ofnode_read_chosen_prop(const char *propname, int *sizep);
661 * ofnode_read_chosen_string() - get the string value of a chosen property
663 * This looks for a property within the /chosen node and returns its value,
664 * checking that it is a valid nul-terminated string
666 * @propname: Property name to look for
667 * Return: string value if found, else NULL
669 const char *ofnode_read_chosen_string(const char *propname);
672 * ofnode_get_chosen_node() - get a referenced node from the chosen node
674 * This looks up a named property in the chosen node and uses that as a path to
677 * @propname: Property name to look for
678 * Return: the referenced node if present, else ofnode_null()
680 ofnode ofnode_get_chosen_node(const char *propname);
683 * ofnode_read_aliases_prop() - get the value of a aliases property
685 * This looks for a property within the /aliases node and returns its value
687 * @propname: Property name to look for
688 * @sizep: Returns size of property, or `FDT_ERR_...` error code if function
690 * Return: property value if found, else NULL
692 const void *ofnode_read_aliases_prop(const char *propname, int *sizep);
695 * ofnode_get_aliases_node() - get a referenced node from the aliases node
697 * This looks up a named property in the aliases node and uses that as a path to
700 * @propname: Property name to look for
701 * Return: the referenced node if present, else ofnode_null()
703 ofnode ofnode_get_aliases_node(const char *propname);
705 struct display_timing;
707 * ofnode_decode_display_timing() - decode display timings
709 * Decode display timings from the supplied 'display-timings' node.
710 * See doc/device-tree-bindings/video/display-timing.txt for binding
713 * @node: 'display-timing' node containing the timing subnodes
714 * @index: Index number to read (0=first timing subnode)
715 * @config: Place to put timings
716 * Return: 0 if OK, -FDT_ERR_NOTFOUND if not found
718 int ofnode_decode_display_timing(ofnode node, int index,
719 struct display_timing *config);
722 * ofnode_get_property() - get a pointer to the value of a node property
724 * @node: node to read
725 * @propname: property to read
726 * @lenp: place to put length on success
727 * Return: pointer to property, or NULL if not found
729 const void *ofnode_get_property(ofnode node, const char *propname, int *lenp);
732 * ofnode_get_first_property()- get the reference of the first property
734 * Get reference to the first property of the node, it is used to iterate
735 * and read all the property with ofnode_get_property_by_prop().
737 * @node: node to read
738 * @prop: place to put argument reference
739 * Return: 0 if OK, -ve on error. -FDT_ERR_NOTFOUND if not found
741 int ofnode_get_first_property(ofnode node, struct ofprop *prop);
744 * ofnode_get_next_property() - get the reference of the next property
746 * Get reference to the next property of the node, it is used to iterate
747 * and read all the property with ofnode_get_property_by_prop().
749 * @prop: reference of current argument and place to put reference of next one
750 * Return: 0 if OK, -ve on error. -FDT_ERR_NOTFOUND if not found
752 int ofnode_get_next_property(struct ofprop *prop);
755 * ofnode_get_property_by_prop() - get a pointer to the value of a property
757 * Get value for the property identified by the provided reference.
759 * @prop: reference on property
760 * @propname: If non-NULL, place to property name on success,
761 * @lenp: If non-NULL, place to put length on success
762 * Return: 0 if OK, -ve on error. -FDT_ERR_NOTFOUND if not found
764 const void *ofnode_get_property_by_prop(const struct ofprop *prop,
765 const char **propname, int *lenp);
768 * ofnode_is_available() - check if a node is marked available
770 * @node: node to check
771 * Return: true if node's 'status' property is "okay" (or is missing)
773 bool ofnode_is_available(ofnode node);
776 * ofnode_get_addr_size() - get address and size from a property
778 * This does no address translation. It simply reads an property that contains
779 * an address and a size value, one after the other.
781 * @node: node to read from
782 * @propname: property to read
783 * @sizep: place to put size value (on success)
784 * Return: address value, or FDT_ADDR_T_NONE on error
786 phys_addr_t ofnode_get_addr_size(ofnode node, const char *propname,
790 * ofnode_read_u8_array_ptr() - find an 8-bit array
792 * Look up a property in a node and return a pointer to its contents as a
793 * byte array of given length. The property must have at least enough data
794 * for the array (count bytes). It may have more, but this will be ignored.
795 * The data is not copied.
797 * @node: node to examine
798 * @propname: name of property to find
799 * @sz: number of array elements
801 * pointer to byte array if found, or NULL if the property is not found or
802 * there is not enough data
804 const uint8_t *ofnode_read_u8_array_ptr(ofnode node, const char *propname,
808 * ofnode_read_pci_addr() - look up a PCI address
810 * Look at an address property in a node and return the PCI address which
811 * corresponds to the given type in the form of fdt_pci_addr.
812 * The property must hold one fdt_pci_addr with a lengh.
814 * @node: node to examine
815 * @type: pci address type (FDT_PCI_SPACE_xxx)
816 * @propname: name of property to find
817 * @addr: returns pci address in the form of fdt_pci_addr
819 * 0 if ok, -ENOENT if the property did not exist, -EINVAL if the
820 * format of the property was invalid, -ENXIO if the requested
821 * address type was not found
823 int ofnode_read_pci_addr(ofnode node, enum fdt_pci_space type,
824 const char *propname, struct fdt_pci_addr *addr);
827 * ofnode_read_pci_vendev() - look up PCI vendor and device id
829 * Look at the compatible property of a device node that represents a PCI
830 * device and extract pci vendor id and device id from it.
832 * @node: node to examine
833 * @vendor: vendor id of the pci device
834 * @device: device id of the pci device
835 * Return: 0 if ok, negative on error
837 int ofnode_read_pci_vendev(ofnode node, u16 *vendor, u16 *device);
840 * ofnode_read_eth_phy_id() - look up eth phy vendor and device id
842 * Look at the compatible property of a device node that represents a eth phy
843 * device and extract phy vendor id and device id from it.
845 * @node: node to examine
846 * @vendor: vendor id of the eth phy device
847 * @device: device id of the eth phy device
848 * Return: 0 if ok, negative on error
850 int ofnode_read_eth_phy_id(ofnode node, u16 *vendor, u16 *device);
853 * ofnode_read_addr_cells() - Get the number of address cells for a node
855 * This walks back up the tree to find the closest #address-cells property
856 * which controls the given node.
858 * @node: Node to check
859 * Return: number of address cells this node uses
861 int ofnode_read_addr_cells(ofnode node);
864 * ofnode_read_size_cells() - Get the number of size cells for a node
866 * This walks back up the tree to find the closest #size-cells property
867 * which controls the given node.
869 * @node: Node to check
870 * Return: number of size cells this node uses
872 int ofnode_read_size_cells(ofnode node);
875 * ofnode_read_simple_addr_cells() - Get the address cells property in a node
877 * This function matches fdt_address_cells().
879 * @node: Node to check
880 * Return: value of #address-cells property in this node, or 2 if none
882 int ofnode_read_simple_addr_cells(ofnode node);
885 * ofnode_read_simple_size_cells() - Get the size cells property in a node
887 * This function matches fdt_size_cells().
889 * @node: Node to check
890 * Return: value of #size-cells property in this node, or 2 if none
892 int ofnode_read_simple_size_cells(ofnode node);
895 * ofnode_pre_reloc() - check if a node should be bound before relocation
897 * Device tree nodes can be marked as needing-to-be-bound in the loader stages
898 * via special device tree properties.
900 * Before relocation this function can be used to check if nodes are required
901 * in either SPL or TPL stages.
903 * After relocation and jumping into the real U-Boot binary it is possible to
904 * determine if a node was bound in one of SPL/TPL stages.
906 * There are 4 settings currently in use
907 * - u-boot,dm-pre-proper: U-Boot proper pre-relocation only
908 * - u-boot,dm-pre-reloc: legacy and indicates any of TPL or SPL
909 * Existing platforms only use it to indicate nodes needed in
910 * SPL. Should probably be replaced by u-boot,dm-spl for new platforms.
911 * - u-boot,dm-spl: SPL and U-Boot pre-relocation
912 * - u-boot,dm-tpl: TPL and U-Boot pre-relocation
914 * @node: node to check
915 * Return: true if node is needed in SPL/TL, false otherwise
917 bool ofnode_pre_reloc(ofnode node);
920 * ofnode_read_resource() - Read a resource from a node
922 * Read resource information from a node at the given index
924 * @node: Node to read from
925 * @index: Index of resource to read (0 = first)
926 * @res: Returns resource that was read, on success
927 * Return: 0 if OK, -ve on error
929 int ofnode_read_resource(ofnode node, uint index, struct resource *res);
932 * ofnode_read_resource_byname() - Read a resource from a node by name
934 * Read resource information from a node matching the given name. This uses a
935 * 'reg-names' string list property with the names matching the associated
936 * 'reg' property list.
938 * @node: Node to read from
939 * @name: Name of resource to read
940 * @res: Returns resource that was read, on success
941 * Return: 0 if OK, -ve on error
943 int ofnode_read_resource_byname(ofnode node, const char *name,
944 struct resource *res);
947 * ofnode_by_compatible() - Find the next compatible node
949 * Find the next node after @from that is compatible with @compat
951 * @from: ofnode to start from (use ofnode_null() to start at the beginning)
952 * @compat: Compatible string to match
953 * Return: ofnode found, or ofnode_null() if none
955 ofnode ofnode_by_compatible(ofnode from, const char *compat);
958 * ofnode_by_prop_value() - Find the next node with given property value
960 * Find the next node after @from that has a @propname with a value
961 * @propval and a length @proplen.
963 * @from: ofnode to start from (use ofnode_null() to start at the
965 * @propname: property name to check
966 * @propval: property value to search for
967 * @proplen: length of the value in propval
968 * Return: ofnode found, or ofnode_null() if none
970 ofnode ofnode_by_prop_value(ofnode from, const char *propname,
971 const void *propval, int proplen);
974 * ofnode_for_each_subnode() - iterate over all subnodes of a parent
976 * @node: child node (ofnode, lvalue)
977 * @parent: parent node (ofnode)
979 * This is a wrapper around a for loop and is used like so::
982 * ofnode_for_each_subnode(node, parent) {
987 * Note that this is implemented as a macro and @node is used as
988 * iterator in the loop. The parent variable can be a constant or even a
991 #define ofnode_for_each_subnode(node, parent) \
992 for (node = ofnode_first_subnode(parent); \
993 ofnode_valid(node); \
994 node = ofnode_next_subnode(node))
997 * ofnode_for_each_compatible_node() - iterate over all nodes with a given
1000 * @node: child node (ofnode, lvalue)
1001 * @compat: compatible string to match
1003 * This is a wrapper around a for loop and is used like so::
1006 * ofnode_for_each_compatible_node(node, parent, compatible) {
1011 * Note that this is implemented as a macro and @node is used as
1012 * iterator in the loop.
1014 #define ofnode_for_each_compatible_node(node, compat) \
1015 for (node = ofnode_by_compatible(ofnode_null(), compat); \
1016 ofnode_valid(node); \
1017 node = ofnode_by_compatible(node, compat))
1020 * ofnode_get_child_count() - get the child count of a ofnode
1022 * @parent: valid node to get its child count
1023 * Return: the number of subnodes
1025 int ofnode_get_child_count(ofnode parent);
1028 * ofnode_translate_address() - Translate a device-tree address
1030 * Translate an address from the device-tree into a CPU physical address. This
1031 * function walks up the tree and applies the various bus mappings along the
1034 * @node: Device tree node giving the context in which to translate the address
1035 * @in_addr: pointer to the address to translate
1036 * Return: the translated address; OF_BAD_ADDR on error
1038 u64 ofnode_translate_address(ofnode node, const fdt32_t *in_addr);
1041 * ofnode_translate_dma_address() - Translate a device-tree DMA address
1043 * Translate a DMA address from the device-tree into a CPU physical address.
1044 * This function walks up the tree and applies the various bus mappings along
1047 * @node: Device tree node giving the context in which to translate the
1049 * @in_addr: pointer to the DMA address to translate
1050 * Return: the translated DMA address; OF_BAD_ADDR on error
1052 u64 ofnode_translate_dma_address(ofnode node, const fdt32_t *in_addr);
1055 * ofnode_get_dma_range() - get dma-ranges for a specific DT node
1057 * Get DMA ranges for a specifc node, this is useful to perform bus->cpu and
1058 * cpu->bus address translations
1060 * @node: Device tree node
1061 * @cpu: Pointer to variable storing the range's cpu address
1062 * @bus: Pointer to variable storing the range's bus address
1063 * @size: Pointer to variable storing the range's size
1064 * Return: translated DMA address or OF_BAD_ADDR on error
1066 int ofnode_get_dma_range(ofnode node, phys_addr_t *cpu, dma_addr_t *bus,
1070 * ofnode_device_is_compatible() - check if the node is compatible with compat
1072 * This allows to check whether the node is comaptible with the compat.
1074 * @node: Device tree node for which compatible needs to be verified.
1075 * @compat: Compatible string which needs to verified in the given node.
1076 * Return: true if OK, false if the compatible is not found
1078 int ofnode_device_is_compatible(ofnode node, const char *compat);
1081 * ofnode_write_prop() - Set a property of a ofnode
1083 * Note that the value passed to the function is *not* allocated by the
1084 * function itself, but must be allocated by the caller if necessary. However
1085 * it does allocate memory for the property struct and name.
1087 * @node: The node for whose property should be set
1088 * @propname: The name of the property to set
1089 * @len: The length of the new value of the property
1090 * @value: The new value of the property (must be valid prior to calling
1092 * Return: 0 if successful, -ve on error
1094 int ofnode_write_prop(ofnode node, const char *propname, int len,
1098 * ofnode_write_string() - Set a string property of a ofnode
1100 * Note that the value passed to the function is *not* allocated by the
1101 * function itself, but must be allocated by the caller if necessary.
1103 * @node: The node for whose string property should be set
1104 * @propname: The name of the string property to set
1105 * @value: The new value of the string property (must be valid prior to
1106 * calling the function)
1107 * Return: 0 if successful, -ve on error
1109 int ofnode_write_string(ofnode node, const char *propname, const char *value);
1112 * ofnode_set_enabled() - Enable or disable a device tree node given by its
1115 * This function effectively sets the node's "status" property to either "okay"
1116 * or "disable", hence making it available for driver model initialization or
1119 * @node: The node to enable
1120 * @value: Flag that tells the function to either disable or enable the
1122 * Return: 0 if successful, -ve on error
1124 int ofnode_set_enabled(ofnode node, bool value);
1127 * ofnode_get_phy_node() - Get PHY node for a MAC (if not fixed-link)
1129 * This function parses PHY handle from the Ethernet controller's ofnode
1130 * (trying all possible PHY handle property names), and returns the PHY ofnode.
1132 * Before this is used, ofnode_phy_is_fixed_link() should be checked first, and
1133 * if the result to that is true, this function should not be called.
1135 * @eth_node: ofnode belonging to the Ethernet controller
1136 * Return: ofnode of the PHY, if it exists, otherwise an invalid ofnode
1138 ofnode ofnode_get_phy_node(ofnode eth_node);
1141 * ofnode_read_phy_mode() - Read PHY connection type from a MAC node
1143 * This function parses the "phy-mode" / "phy-connection-type" property and
1144 * returns the corresponding PHY interface type.
1146 * @mac_node: ofnode containing the property
1147 * Return: one of PHY_INTERFACE_MODE_* constants, PHY_INTERFACE_MODE_NA on
1150 phy_interface_t ofnode_read_phy_mode(ofnode mac_node);
1152 #if CONFIG_IS_ENABLED(DM)
1154 * ofnode_conf_read_bool() - Read a boolean value from the U-Boot config
1156 * This reads a property from the /config node of the devicetree.
1158 * See doc/config.txt for bindings
1160 * @prop_name: property name to look up
1161 * Return: true, if it exists, false if not
1163 bool ofnode_conf_read_bool(const char *prop_name);
1166 * ofnode_conf_read_int() - Read an integer value from the U-Boot config
1168 * This reads a property from the /config node of the devicetree.
1170 * See doc/config.txt for bindings
1172 * @prop_name: property name to look up
1173 * @default_val: default value to return if the property is not found
1174 * Return: integer value, if found, or @default_val if not
1176 int ofnode_conf_read_int(const char *prop_name, int default_val);
1179 * ofnode_conf_read_str() - Read a string value from the U-Boot config
1181 * This reads a property from the /config node of the devicetree.
1183 * See doc/config.txt for bindings
1185 * @prop_name: property name to look up
1186 * Return: string value, if found, or NULL if not
1188 const char *ofnode_conf_read_str(const char *prop_name);
1190 #else /* CONFIG_DM */
1191 static inline bool ofnode_conf_read_bool(const char *prop_name)
1196 static inline int ofnode_conf_read_int(const char *prop_name, int default_val)
1201 static inline const char *ofnode_conf_read_str(const char *prop_name)
1205 #endif /* CONFIG_DM */