1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (c) 2017 Google, Inc
13 #include <dm/of_access.h>
15 #include <phy_interface.h>
17 /* Enable checks to protect against invalid calls */
23 * typedef union ofnode_union ofnode - reference to a device tree node
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.
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 *`.
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.
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.
46 * For now these points use constant types, since we don't allow writing
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.
53 typedef union ofnode_union {
54 const struct device_node *np;
58 struct ofnode_phandle_args {
61 uint32_t args[OF_MAX_PHANDLE_ARGS];
65 * struct ofprop - reference to a property of a device tree node
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.
71 * Thus we can reference arguments in both the live tree and the flat tree.
73 * The property reference can also hold a null reference. This corresponds to
74 * a struct property NULL pointer or an offset of -1.
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.
85 const struct property *prop;
90 * ofnode_to_np() - convert an ofnode to a live DT node pointer
92 * This cannot be called if the reference contains an offset.
94 * @node: Reference containing struct device_node * (possibly invalid)
95 * Return: pointer to device node (can be NULL)
97 static inline const struct device_node *ofnode_to_np(ofnode node)
100 if (!of_live_active())
107 * ofnode_to_offset() - convert an ofnode to a flat DT offset
109 * This cannot be called if the reference contains a node pointer.
111 * @node: Reference containing offset (possibly invalid)
112 * Return: DT offset (can be -1)
114 static inline int ofnode_to_offset(ofnode node)
117 if (of_live_active())
120 return node.of_offset;
124 * ofnode_valid() - check if an ofnode is valid
126 * @node: Reference containing offset (possibly invalid)
127 * Return: true if the reference contains a valid ofnode, false if it is NULL
129 static inline bool ofnode_valid(ofnode node)
131 if (of_live_active())
132 return node.np != NULL;
134 return node.of_offset >= 0;
138 * offset_to_ofnode() - convert a DT offset to an ofnode
140 * @of_offset: DT offset (either valid, or -1)
141 * Return: reference to the associated DT offset
143 static inline ofnode offset_to_ofnode(int of_offset)
147 if (of_live_active())
150 node.of_offset = of_offset >= 0 ? of_offset : -1;
156 * np_to_ofnode() - convert a node pointer to an ofnode
158 * @np: Live node pointer (can be NULL)
159 * Return: reference to the associated node pointer
161 static inline ofnode np_to_ofnode(const struct device_node *np)
171 * ofnode_is_np() - check if a reference is a node pointer
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.
177 * @node: reference to check (possibly invalid)
178 * Return: true if the reference is a live node pointer, false if it is a DT
181 static inline bool ofnode_is_np(ofnode node)
185 * Check our assumption that flat tree offsets are not used when a
186 * live tree is in use.
188 assert(!ofnode_valid(node) ||
189 (of_live_active() ? ofnode_to_np(node)
190 : ofnode_to_np(node)));
192 return of_live_active() && ofnode_valid(node);
196 * ofnode_equal() - check if two references are equal
198 * @ref1: first reference to check (possibly invalid)
199 * @ref2: second reference to check (possibly invalid)
200 * Return: true if equal, else false
202 static inline bool ofnode_equal(ofnode ref1, ofnode ref2)
204 /* We only need to compare the contents */
205 return ref1.of_offset == ref2.of_offset;
209 * ofnode_null() - Obtain a null ofnode
211 * This returns an ofnode which points to no node. It works both with the flat
214 static inline ofnode ofnode_null(void)
218 if (of_live_active())
226 static inline ofnode ofnode_root(void)
230 if (of_live_active())
231 node.np = gd_of_root();
239 * ofnode_name_eq() - Check if the node name is equivalent to a given name
240 * ignoring the unit address
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
246 bool ofnode_name_eq(ofnode node, const char *name);
249 * ofnode_read_u32() - 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 * @outp: place to put value (if found)
254 * Return: 0 if OK, -ve on error
256 int ofnode_read_u32(ofnode node, const char *propname, u32 *outp);
259 * ofnode_read_u32_index() - Read a 32-bit integer from a multi-value property
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
267 int ofnode_read_u32_index(ofnode node, const char *propname, int index,
271 * ofnode_read_s32() - Read a 32-bit integer from a property
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
278 static inline int ofnode_read_s32(ofnode node, const char *propname,
281 return ofnode_read_u32(node, propname, (u32 *)outp);
285 * ofnode_read_u32_default() - Read a 32-bit integer from a property
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
292 u32 ofnode_read_u32_default(ofnode node, const char *propname, u32 def);
295 * ofnode_read_u32_index_default() - Read a 32-bit integer from a multi-value
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
304 u32 ofnode_read_u32_index_default(ofnode node, const char *propname, int index,
308 * ofnode_read_s32_default() - Read a 32-bit integer from a property
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
315 int ofnode_read_s32_default(ofnode node, const char *propname, s32 def);
318 * ofnode_read_u64() - Read a 64-bit integer from a property
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
325 int ofnode_read_u64(ofnode node, const char *propname, u64 *outp);
328 * ofnode_read_u64_default() - Read a 64-bit integer from a property
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
335 u64 ofnode_read_u64_default(ofnode node, const char *propname, u64 def);
338 * ofnode_read_prop() - Read a property from a node
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
344 * Return: property value, or NULL if there is no such property
346 const void *ofnode_read_prop(ofnode node, const char *propname, int *sizep);
349 * ofnode_read_string() - Read a string from a property
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
355 const char *ofnode_read_string(ofnode node, const char *propname);
358 * ofnode_read_u32_array() - Find and read an array of 32 bit integers
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
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.
371 * The out_values is modified only if a valid u32 value can be decoded.
373 int ofnode_read_u32_array(ofnode node, const char *propname,
374 u32 *out_values, size_t sz);
377 * ofnode_read_bool() - read a boolean value from a property
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
383 bool ofnode_read_bool(ofnode node, const char *propname);
386 * ofnode_find_subnode() - find a named subnode of a parent node
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
393 ofnode ofnode_find_subnode(ofnode node, const char *subnode_name);
395 #if CONFIG_IS_ENABLED(DM_INLINE_OFNODE)
396 #include <asm/global_data.h>
398 static inline bool ofnode_is_enabled(ofnode node)
400 if (ofnode_is_np(node)) {
401 return of_device_is_available(ofnode_to_np(node));
403 return fdtdec_get_is_enabled(gd->fdt_blob,
404 ofnode_to_offset(node));
408 static inline ofnode ofnode_first_subnode(ofnode node)
410 assert(ofnode_valid(node));
411 if (ofnode_is_np(node))
412 return np_to_ofnode(node.np->child);
414 return offset_to_ofnode(
415 fdt_first_subnode(gd->fdt_blob, ofnode_to_offset(node)));
418 static inline ofnode ofnode_next_subnode(ofnode node)
420 assert(ofnode_valid(node));
421 if (ofnode_is_np(node))
422 return np_to_ofnode(node.np->sibling);
424 return offset_to_ofnode(
425 fdt_next_subnode(gd->fdt_blob, ofnode_to_offset(node)));
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
435 * @node: node to examine
436 * Return: false (not enabled) or true (enabled)
438 bool ofnode_is_enabled(ofnode node);
441 * ofnode_first_subnode() - find the first subnode of a parent node
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)
447 ofnode ofnode_first_subnode(ofnode node);
450 * ofnode_next_subnode() - find the next sibling of a subnode
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)
456 ofnode ofnode_next_subnode(ofnode node);
457 #endif /* DM_INLINE_OFNODE */
460 * ofnode_get_parent() - get the ofnode's parent (enclosing ofnode)
462 * @node: valid node to look up
463 * Return: ofnode reference of the parent node
465 ofnode ofnode_get_parent(ofnode node);
468 * ofnode_get_name() - get the name of a node
470 * @node: valid node to look up
471 * Return: name of node
473 const char *ofnode_get_name(ofnode node);
476 * ofnode_get_path() - get the full path of a node
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
483 int ofnode_get_path(ofnode node, char *buf, int buflen);
486 * ofnode_get_by_phandle() - get ofnode from phandle
488 * @phandle: phandle to look up
489 * Return: ofnode reference to the phandle
491 ofnode ofnode_get_by_phandle(uint phandle);
494 * ofnode_read_size() - read the size of a property
496 * @node: node to check
497 * @propname: property to check
498 * Return: size of property if present, or -EINVAL if not
500 int ofnode_read_size(ofnode node, const char *propname);
503 * ofnode_get_addr_size_index() - get an address/size from a node
506 * This reads the register address/size from a node based on index
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
513 phys_addr_t ofnode_get_addr_size_index(ofnode node, int index,
517 * ofnode_get_addr_size_index_notrans() - get an address/size from a node
518 * based on index, without address
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
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
530 phys_addr_t ofnode_get_addr_size_index_notrans(ofnode node, int index,
534 * ofnode_get_addr_index() - get an address from a node
536 * This reads the register address from a node
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
542 phys_addr_t ofnode_get_addr_index(ofnode node, int index);
545 * ofnode_get_addr() - get an address from a node
547 * This reads the register address from a node
549 * @node: node to read from
550 * Return: address, or FDT_ADDR_T_NONE if not present or invalid
552 phys_addr_t ofnode_get_addr(ofnode node);
555 * ofnode_get_size() - get size from a node
557 * This reads the register size from a node
559 * @node: node to read from
560 * Return: size of the address, or FDT_SIZE_T_NONE if not present or invalid
562 fdt_size_t ofnode_get_size(ofnode node);
565 * ofnode_stringlist_search() - find a string in a string list and return index
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
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
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
582 int ofnode_stringlist_search(ofnode node, const char *propname,
586 * ofnode_read_string_index() - obtain an indexed string from a string list
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.
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.
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
601 * 0 if found or -ve error value if not found
603 int ofnode_read_string_index(ofnode node, const char *propname, int index,
607 * ofnode_read_string_count() - find the number of strings in a string list
609 * @node: node to check
610 * @property: name of the property containing the string list
612 * number of strings in the list, or -ve error value if not found
614 int ofnode_read_string_count(ofnode node, const char *property);
617 * ofnode_read_string_list() - read a list of strings
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}.
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.
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
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
634 int ofnode_read_string_list(ofnode node, const char *property,
635 const char ***listp);
638 * ofnode_parse_phandle_with_args() - Find a node pointed by phandle in a list
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
644 * Caller is responsible to call of_node_put() on the returned out_args->np
658 * list = <&phandle1 1 2 &phandle2 3>;
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);
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)
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.
676 int ofnode_parse_phandle_with_args(ofnode node, const char *list_name,
677 const char *cells_name, int cell_count,
679 struct ofnode_phandle_args *out_args);
682 * ofnode_count_phandle_with_args() - Count number of phandle in a list
684 * This function is useful to count phandles into a list.
685 * Returns number of phandle on success, on error returns appropriate
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
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.
696 int ofnode_count_phandle_with_args(ofnode node, const char *list_name,
697 const char *cells_name, int cell_count);
700 * ofnode_path() - find a node by full path
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
705 ofnode ofnode_path(const char *path);
708 * ofnode_read_chosen_prop() - get the value of a chosen property
710 * This looks for a property within the /chosen node and returns its value
712 * @propname: Property name to look for
713 * @sizep: Returns size of property, or `FDT_ERR_...` error code if function
715 * Return: property value if found, else NULL
717 const void *ofnode_read_chosen_prop(const char *propname, int *sizep);
720 * ofnode_read_chosen_string() - get the string value of a chosen property
722 * This looks for a property within the /chosen node and returns its value,
723 * checking that it is a valid nul-terminated string
725 * @propname: Property name to look for
726 * Return: string value if found, else NULL
728 const char *ofnode_read_chosen_string(const char *propname);
731 * ofnode_get_chosen_node() - get a referenced node from the chosen node
733 * This looks up a named property in the chosen node and uses that as a path to
736 * @propname: Property name to look for
737 * Return: the referenced node if present, else ofnode_null()
739 ofnode ofnode_get_chosen_node(const char *propname);
742 * ofnode_read_aliases_prop() - get the value of a aliases property
744 * This looks for a property within the /aliases node and returns its value
746 * @propname: Property name to look for
747 * @sizep: Returns size of property, or `FDT_ERR_...` error code if function
749 * Return: property value if found, else NULL
751 const void *ofnode_read_aliases_prop(const char *propname, int *sizep);
754 * ofnode_get_aliases_node() - get a referenced node from the aliases node
756 * This looks up a named property in the aliases node and uses that as a path to
759 * @propname: Property name to look for
760 * Return: the referenced node if present, else ofnode_null()
762 ofnode ofnode_get_aliases_node(const char *propname);
764 struct display_timing;
766 * ofnode_decode_display_timing() - decode display timings
768 * Decode display timings from the supplied 'display-timings' node.
769 * See doc/device-tree-bindings/video/display-timing.txt for binding
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
777 int ofnode_decode_display_timing(ofnode node, int index,
778 struct display_timing *config);
781 * ofnode_get_property() - get a pointer to the value of a node property
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
788 const void *ofnode_get_property(ofnode node, const char *propname, int *lenp);
791 * ofnode_get_first_property()- get the reference of the first property
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().
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
800 int ofnode_get_first_property(ofnode node, struct ofprop *prop);
803 * ofnode_get_next_property() - get the reference of the next property
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().
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
811 int ofnode_get_next_property(struct ofprop *prop);
814 * ofnode_get_property_by_prop() - get a pointer to the value of a property
816 * Get value for the property identified by the provided reference.
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
823 const void *ofnode_get_property_by_prop(const struct ofprop *prop,
824 const char **propname, int *lenp);
827 * ofnode_is_available() - check if a node is marked available
829 * @node: node to check
830 * Return: true if node's 'status' property is "okay" (or is missing)
832 bool ofnode_is_available(ofnode node);
835 * ofnode_get_addr_size() - get address and size from a property
837 * This does no address translation. It simply reads an property that contains
838 * an address and a size value, one after the other.
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
845 phys_addr_t ofnode_get_addr_size(ofnode node, const char *propname,
849 * ofnode_read_u8_array_ptr() - find an 8-bit array
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.
856 * @node: node to examine
857 * @propname: name of property to find
858 * @sz: number of array elements
860 * pointer to byte array if found, or NULL if the property is not found or
861 * there is not enough data
863 const uint8_t *ofnode_read_u8_array_ptr(ofnode node, const char *propname,
867 * ofnode_read_pci_addr() - look up a PCI address
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.
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
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
882 int ofnode_read_pci_addr(ofnode node, enum fdt_pci_space type,
883 const char *propname, struct fdt_pci_addr *addr);
886 * ofnode_read_pci_vendev() - look up PCI vendor and device id
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.
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
896 int ofnode_read_pci_vendev(ofnode node, u16 *vendor, u16 *device);
899 * ofnode_read_eth_phy_id() - look up eth phy vendor and device id
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.
904 * @param node node to examine
905 * @param vendor vendor id of the eth phy device
906 * @param device device id of the eth phy device
907 * @return 0 if ok, negative on error
909 int ofnode_read_eth_phy_id(ofnode node, u16 *vendor, u16 *device);
912 * ofnode_read_addr_cells() - Get the number of address cells for a node
914 * This walks back up the tree to find the closest #address-cells property
915 * which controls the given node.
917 * @node: Node to check
918 * Return: number of address cells this node uses
920 int ofnode_read_addr_cells(ofnode node);
923 * ofnode_read_size_cells() - Get the number of size cells for a node
925 * This walks back up the tree to find the closest #size-cells property
926 * which controls the given node.
928 * @node: Node to check
929 * Return: number of size cells this node uses
931 int ofnode_read_size_cells(ofnode node);
934 * ofnode_read_simple_addr_cells() - Get the address cells property in a node
936 * This function matches fdt_address_cells().
938 * @node: Node to check
939 * Return: value of #address-cells property in this node, or 2 if none
941 int ofnode_read_simple_addr_cells(ofnode node);
944 * ofnode_read_simple_size_cells() - Get the size cells property in a node
946 * This function matches fdt_size_cells().
948 * @node: Node to check
949 * Return: value of #size-cells property in this node, or 2 if none
951 int ofnode_read_simple_size_cells(ofnode node);
954 * ofnode_pre_reloc() - check if a node should be bound before relocation
956 * Device tree nodes can be marked as needing-to-be-bound in the loader stages
957 * via special device tree properties.
959 * Before relocation this function can be used to check if nodes are required
960 * in either SPL or TPL stages.
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.
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
973 * @node: node to check
974 * Return: true if node is needed in SPL/TL, false otherwise
976 bool ofnode_pre_reloc(ofnode node);
979 * ofnode_read_resource() - Read a resource from a node
981 * Read resource information from a node at the given index
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
988 int ofnode_read_resource(ofnode node, uint index, struct resource *res);
991 * ofnode_read_resource_byname() - Read a resource from a node by name
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.
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
1002 int ofnode_read_resource_byname(ofnode node, const char *name,
1003 struct resource *res);
1006 * ofnode_by_compatible() - Find the next compatible node
1008 * Find the next node after @from that is compatible with @compat
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
1014 ofnode ofnode_by_compatible(ofnode from, const char *compat);
1017 * ofnode_by_prop_value() - Find the next node with given property value
1019 * Find the next node after @from that has a @propname with a value
1020 * @propval and a length @proplen.
1022 * @from: ofnode to start from (use ofnode_null() to start at the
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
1029 ofnode ofnode_by_prop_value(ofnode from, const char *propname,
1030 const void *propval, int proplen);
1033 * ofnode_for_each_subnode() - iterate over all subnodes of a parent
1035 * @node: child node (ofnode, lvalue)
1036 * @parent: parent node (ofnode)
1038 * This is a wrapper around a for loop and is used like so::
1041 * ofnode_for_each_subnode(node, parent) {
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
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))
1056 * ofnode_for_each_compatible_node() - iterate over all nodes with a given
1059 * @node: child node (ofnode, lvalue)
1060 * @compat: compatible string to match
1062 * This is a wrapper around a for loop and is used like so::
1065 * ofnode_for_each_compatible_node(node, parent, compatible) {
1070 * Note that this is implemented as a macro and @node is used as
1071 * iterator in the loop.
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))
1079 * ofnode_get_child_count() - get the child count of a ofnode
1081 * @parent: valid node to get its child count
1082 * Return: the number of subnodes
1084 int ofnode_get_child_count(ofnode parent);
1087 * ofnode_translate_address() - Translate a device-tree address
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
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
1097 u64 ofnode_translate_address(ofnode node, const fdt32_t *in_addr);
1100 * ofnode_translate_dma_address() - Translate a device-tree DMA address
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
1106 * @node: Device tree node giving the context in which to translate the
1108 * @in_addr: pointer to the DMA address to translate
1109 * Return: the translated DMA address; OF_BAD_ADDR on error
1111 u64 ofnode_translate_dma_address(ofnode node, const fdt32_t *in_addr);
1114 * ofnode_get_dma_range() - get dma-ranges for a specific DT node
1116 * Get DMA ranges for a specifc node, this is useful to perform bus->cpu and
1117 * cpu->bus address translations
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
1125 int ofnode_get_dma_range(ofnode node, phys_addr_t *cpu, dma_addr_t *bus,
1129 * ofnode_device_is_compatible() - check if the node is compatible with compat
1131 * This allows to check whether the node is comaptible with the compat.
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
1137 int ofnode_device_is_compatible(ofnode node, const char *compat);
1140 * ofnode_write_prop() - Set a property of a ofnode
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.
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
1150 * Return: 0 if successful, -ve on error
1152 int ofnode_write_prop(ofnode node, const char *propname, int len,
1156 * ofnode_write_string() - Set a string property of a ofnode
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.
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
1167 int ofnode_write_string(ofnode node, const char *propname, const char *value);
1170 * ofnode_set_enabled() - Enable or disable a device tree node given by its
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
1177 * @node: The node to enable
1178 * @value: Flag that tells the function to either disable or enable the
1180 * Return: 0 if successful, -ve on error
1182 int ofnode_set_enabled(ofnode node, bool value);
1185 * ofnode_conf_read_bool() - Read a boolean value from the U-Boot config
1187 * This reads a property from the /config node of the devicetree.
1189 * See doc/config.txt for bindings
1191 * @prop_name: property name to look up
1192 * Return: true, if it exists, false if not
1194 bool ofnode_conf_read_bool(const char *prop_name);
1197 * ofnode_conf_read_int() - Read an integer value from the U-Boot config
1199 * This reads a property from the /config node of the devicetree.
1201 * See doc/config.txt for bindings
1203 * @prop_name: property name to look up
1204 * @default_val: default value to return if the property is not found
1205 * Return: integer value, if found, or @default_val if not
1207 int ofnode_conf_read_int(const char *prop_name, int default_val);
1210 * ofnode_conf_read_str() - Read a string value from the U-Boot config
1212 * This reads a property from the /config node of the devicetree.
1214 * See doc/config.txt for bindings
1216 * @prop_name: property name to look up
1217 * Return: string value, if found, or NULL if not
1219 const char *ofnode_conf_read_str(const char *prop_name);
1222 * ofnode_get_phy_node() - Get PHY node for a MAC (if not fixed-link)
1224 * This function parses PHY handle from the Ethernet controller's ofnode
1225 * (trying all possible PHY handle property names), and returns the PHY ofnode.
1227 * Before this is used, ofnode_phy_is_fixed_link() should be checked first, and
1228 * if the result to that is true, this function should not be called.
1230 * @eth_node: ofnode belonging to the Ethernet controller
1231 * Return: ofnode of the PHY, if it exists, otherwise an invalid ofnode
1233 ofnode ofnode_get_phy_node(ofnode eth_node);
1236 * ofnode_read_phy_mode() - Read PHY connection type from a MAC node
1238 * This function parses the "phy-mode" / "phy-connection-type" property and
1239 * returns the corresponding PHY interface type.
1241 * @mac_node: ofnode containing the property
1242 * Return: one of PHY_INTERFACE_MODE_* constants, PHY_INTERFACE_MODE_NONE on
1245 phy_interface_t ofnode_read_phy_mode(ofnode mac_node);