2 * Procedures for creating, accessing and interpreting the device tree.
4 * Paul Mackerras August 1996.
5 * Copyright (C) 1996-2005 Paul Mackerras.
7 * Adapted for 64bit PowerPC by Dave Engebretsen and Peter Bergner.
8 * {engebret|bergner}@us.ibm.com
10 * Adapted for sparc and sparc64 by David S. Miller davem@davemloft.net
12 * Reconsolidated from arch/x/kernel/prom.c by Stephen Rothwell and
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version
18 * 2 of the License, or (at your option) any later version.
20 #include <linux/console.h>
21 #include <linux/ctype.h>
22 #include <linux/cpu.h>
23 #include <linux/module.h>
25 #include <linux/of_graph.h>
26 #include <linux/spinlock.h>
27 #include <linux/slab.h>
28 #include <linux/string.h>
29 #include <linux/proc_fs.h>
31 #include "of_private.h"
33 LIST_HEAD(aliases_lookup
);
35 struct device_node
*of_allnodes
;
36 EXPORT_SYMBOL(of_allnodes
);
37 struct device_node
*of_chosen
;
38 struct device_node
*of_aliases
;
39 struct device_node
*of_stdout
;
44 * Used to protect the of_aliases, to hold off addition of nodes to sysfs.
45 * This mutex must be held whenever modifications are being made to the
46 * device tree. The of_{attach,detach}_node() and
47 * of_{add,remove,update}_property() helpers make sure this happens.
49 DEFINE_MUTEX(of_mutex
);
51 /* use when traversing tree through the allnext, child, sibling,
52 * or parent members of struct device_node.
54 DEFINE_RAW_SPINLOCK(devtree_lock
);
56 int of_n_addr_cells(struct device_node
*np
)
63 ip
= of_get_property(np
, "#address-cells", NULL
);
65 return be32_to_cpup(ip
);
67 /* No #address-cells property for the root node */
68 return OF_ROOT_NODE_ADDR_CELLS_DEFAULT
;
70 EXPORT_SYMBOL(of_n_addr_cells
);
72 int of_n_size_cells(struct device_node
*np
)
79 ip
= of_get_property(np
, "#size-cells", NULL
);
81 return be32_to_cpup(ip
);
83 /* No #size-cells property for the root node */
84 return OF_ROOT_NODE_SIZE_CELLS_DEFAULT
;
86 EXPORT_SYMBOL(of_n_size_cells
);
89 int __weak
of_node_to_nid(struct device_node
*np
)
95 #ifndef CONFIG_OF_DYNAMIC
96 static void of_node_release(struct kobject
*kobj
)
98 /* Without CONFIG_OF_DYNAMIC, no nodes gets freed */
100 #endif /* CONFIG_OF_DYNAMIC */
102 struct kobj_type of_node_ktype
= {
103 .release
= of_node_release
,
106 static ssize_t
of_node_property_read(struct file
*filp
, struct kobject
*kobj
,
107 struct bin_attribute
*bin_attr
, char *buf
,
108 loff_t offset
, size_t count
)
110 struct property
*pp
= container_of(bin_attr
, struct property
, attr
);
111 return memory_read_from_buffer(buf
, count
, &offset
, pp
->value
, pp
->length
);
114 /* always return newly allocated name, caller must free after use */
115 static const char *safe_name(struct kobject
*kobj
, const char *orig_name
)
117 const char *name
= orig_name
;
118 struct kernfs_node
*kn
;
121 /* don't be a hero. After 16 tries give up */
122 while (i
< 16 && (kn
= sysfs_get_dirent(kobj
->sd
, name
))) {
124 if (name
!= orig_name
)
126 name
= kasprintf(GFP_KERNEL
, "%s#%i", orig_name
, ++i
);
129 if (name
== orig_name
) {
130 name
= kstrdup(orig_name
, GFP_KERNEL
);
132 pr_warn("device-tree: Duplicate name in %s, renamed to \"%s\"\n",
133 kobject_name(kobj
), name
);
138 int __of_add_property_sysfs(struct device_node
*np
, struct property
*pp
)
142 /* Important: Don't leak passwords */
143 bool secure
= strncmp(pp
->name
, "security-", 9) == 0;
145 if (!IS_ENABLED(CONFIG_SYSFS
))
148 if (!of_kset
|| !of_node_is_attached(np
))
151 sysfs_bin_attr_init(&pp
->attr
);
152 pp
->attr
.attr
.name
= safe_name(&np
->kobj
, pp
->name
);
153 pp
->attr
.attr
.mode
= secure
? S_IRUSR
: S_IRUGO
;
154 pp
->attr
.size
= secure
? 0 : pp
->length
;
155 pp
->attr
.read
= of_node_property_read
;
157 rc
= sysfs_create_bin_file(&np
->kobj
, &pp
->attr
);
158 WARN(rc
, "error adding attribute %s to node %s\n", pp
->name
, np
->full_name
);
162 int __of_attach_node_sysfs(struct device_node
*np
)
165 struct kobject
*parent
;
169 if (!IS_ENABLED(CONFIG_SYSFS
))
175 np
->kobj
.kset
= of_kset
;
177 /* Nodes without parents are new top level trees */
178 name
= safe_name(&of_kset
->kobj
, "base");
181 name
= safe_name(&np
->parent
->kobj
, kbasename(np
->full_name
));
182 parent
= &np
->parent
->kobj
;
186 rc
= kobject_add(&np
->kobj
, parent
, "%s", name
);
191 for_each_property_of_node(np
, pp
)
192 __of_add_property_sysfs(np
, pp
);
197 static int __init
of_init(void)
199 struct device_node
*np
;
201 /* Create the kset, and register existing nodes */
202 mutex_lock(&of_mutex
);
203 of_kset
= kset_create_and_add("devicetree", NULL
, firmware_kobj
);
205 mutex_unlock(&of_mutex
);
208 for_each_of_allnodes(np
)
209 __of_attach_node_sysfs(np
);
210 mutex_unlock(&of_mutex
);
212 /* Symlink in /proc as required by userspace ABI */
214 proc_symlink("device-tree", NULL
, "/sys/firmware/devicetree/base");
218 core_initcall(of_init
);
220 static struct property
*__of_find_property(const struct device_node
*np
,
221 const char *name
, int *lenp
)
228 for (pp
= np
->properties
; pp
; pp
= pp
->next
) {
229 if (of_prop_cmp(pp
->name
, name
) == 0) {
239 struct property
*of_find_property(const struct device_node
*np
,
246 raw_spin_lock_irqsave(&devtree_lock
, flags
);
247 pp
= __of_find_property(np
, name
, lenp
);
248 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
252 EXPORT_SYMBOL(of_find_property
);
255 * of_find_all_nodes - Get next node in global list
256 * @prev: Previous node or NULL to start iteration
257 * of_node_put() will be called on it
259 * Returns a node pointer with refcount incremented, use
260 * of_node_put() on it when done.
262 struct device_node
*of_find_all_nodes(struct device_node
*prev
)
264 struct device_node
*np
;
267 raw_spin_lock_irqsave(&devtree_lock
, flags
);
268 np
= prev
? prev
->allnext
: of_allnodes
;
269 for (; np
!= NULL
; np
= np
->allnext
)
273 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
276 EXPORT_SYMBOL(of_find_all_nodes
);
279 * Find a property with a given name for a given node
280 * and return the value.
282 const void *__of_get_property(const struct device_node
*np
,
283 const char *name
, int *lenp
)
285 struct property
*pp
= __of_find_property(np
, name
, lenp
);
287 return pp
? pp
->value
: NULL
;
291 * Find a property with a given name for a given node
292 * and return the value.
294 const void *of_get_property(const struct device_node
*np
, const char *name
,
297 struct property
*pp
= of_find_property(np
, name
, lenp
);
299 return pp
? pp
->value
: NULL
;
301 EXPORT_SYMBOL(of_get_property
);
304 * arch_match_cpu_phys_id - Match the given logical CPU and physical id
306 * @cpu: logical cpu index of a core/thread
307 * @phys_id: physical identifier of a core/thread
309 * CPU logical to physical index mapping is architecture specific.
310 * However this __weak function provides a default match of physical
311 * id to logical cpu index. phys_id provided here is usually values read
312 * from the device tree which must match the hardware internal registers.
314 * Returns true if the physical identifier and the logical cpu index
315 * correspond to the same core/thread, false otherwise.
317 bool __weak
arch_match_cpu_phys_id(int cpu
, u64 phys_id
)
319 return (u32
)phys_id
== cpu
;
323 * Checks if the given "prop_name" property holds the physical id of the
324 * core/thread corresponding to the logical cpu 'cpu'. If 'thread' is not
325 * NULL, local thread number within the core is returned in it.
327 static bool __of_find_n_match_cpu_property(struct device_node
*cpun
,
328 const char *prop_name
, int cpu
, unsigned int *thread
)
331 int ac
, prop_len
, tid
;
334 ac
= of_n_addr_cells(cpun
);
335 cell
= of_get_property(cpun
, prop_name
, &prop_len
);
338 prop_len
/= sizeof(*cell
) * ac
;
339 for (tid
= 0; tid
< prop_len
; tid
++) {
340 hwid
= of_read_number(cell
, ac
);
341 if (arch_match_cpu_phys_id(cpu
, hwid
)) {
352 * arch_find_n_match_cpu_physical_id - See if the given device node is
353 * for the cpu corresponding to logical cpu 'cpu'. Return true if so,
354 * else false. If 'thread' is non-NULL, the local thread number within the
355 * core is returned in it.
357 bool __weak
arch_find_n_match_cpu_physical_id(struct device_node
*cpun
,
358 int cpu
, unsigned int *thread
)
360 /* Check for non-standard "ibm,ppc-interrupt-server#s" property
361 * for thread ids on PowerPC. If it doesn't exist fallback to
362 * standard "reg" property.
364 if (IS_ENABLED(CONFIG_PPC
) &&
365 __of_find_n_match_cpu_property(cpun
,
366 "ibm,ppc-interrupt-server#s",
370 if (__of_find_n_match_cpu_property(cpun
, "reg", cpu
, thread
))
377 * of_get_cpu_node - Get device node associated with the given logical CPU
379 * @cpu: CPU number(logical index) for which device node is required
380 * @thread: if not NULL, local thread number within the physical core is
383 * The main purpose of this function is to retrieve the device node for the
384 * given logical CPU index. It should be used to initialize the of_node in
385 * cpu device. Once of_node in cpu device is populated, all the further
386 * references can use that instead.
388 * CPU logical to physical index mapping is architecture specific and is built
389 * before booting secondary cores. This function uses arch_match_cpu_phys_id
390 * which can be overridden by architecture specific implementation.
392 * Returns a node pointer for the logical cpu if found, else NULL.
394 struct device_node
*of_get_cpu_node(int cpu
, unsigned int *thread
)
396 struct device_node
*cpun
;
398 for_each_node_by_type(cpun
, "cpu") {
399 if (arch_find_n_match_cpu_physical_id(cpun
, cpu
, thread
))
404 EXPORT_SYMBOL(of_get_cpu_node
);
407 * __of_device_is_compatible() - Check if the node matches given constraints
408 * @device: pointer to node
409 * @compat: required compatible string, NULL or "" for any match
410 * @type: required device_type value, NULL or "" for any match
411 * @name: required node name, NULL or "" for any match
413 * Checks if the given @compat, @type and @name strings match the
414 * properties of the given @device. A constraints can be skipped by
415 * passing NULL or an empty string as the constraint.
417 * Returns 0 for no match, and a positive integer on match. The return
418 * value is a relative score with larger values indicating better
419 * matches. The score is weighted for the most specific compatible value
420 * to get the highest score. Matching type is next, followed by matching
421 * name. Practically speaking, this results in the following priority
424 * 1. specific compatible && type && name
425 * 2. specific compatible && type
426 * 3. specific compatible && name
427 * 4. specific compatible
428 * 5. general compatible && type && name
429 * 6. general compatible && type
430 * 7. general compatible && name
431 * 8. general compatible
436 static int __of_device_is_compatible(const struct device_node
*device
,
437 const char *compat
, const char *type
, const char *name
)
439 struct property
*prop
;
441 int index
= 0, score
= 0;
443 /* Compatible match has highest priority */
444 if (compat
&& compat
[0]) {
445 prop
= __of_find_property(device
, "compatible", NULL
);
446 for (cp
= of_prop_next_string(prop
, NULL
); cp
;
447 cp
= of_prop_next_string(prop
, cp
), index
++) {
448 if (of_compat_cmp(cp
, compat
, strlen(compat
)) == 0) {
449 score
= INT_MAX
/2 - (index
<< 2);
457 /* Matching type is better than matching name */
458 if (type
&& type
[0]) {
459 if (!device
->type
|| of_node_cmp(type
, device
->type
))
464 /* Matching name is a bit better than not */
465 if (name
&& name
[0]) {
466 if (!device
->name
|| of_node_cmp(name
, device
->name
))
474 /** Checks if the given "compat" string matches one of the strings in
475 * the device's "compatible" property
477 int of_device_is_compatible(const struct device_node
*device
,
483 raw_spin_lock_irqsave(&devtree_lock
, flags
);
484 res
= __of_device_is_compatible(device
, compat
, NULL
, NULL
);
485 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
488 EXPORT_SYMBOL(of_device_is_compatible
);
491 * of_machine_is_compatible - Test root of device tree for a given compatible value
492 * @compat: compatible string to look for in root node's compatible property.
494 * Returns true if the root node has the given value in its
495 * compatible property.
497 int of_machine_is_compatible(const char *compat
)
499 struct device_node
*root
;
502 root
= of_find_node_by_path("/");
504 rc
= of_device_is_compatible(root
, compat
);
509 EXPORT_SYMBOL(of_machine_is_compatible
);
512 * __of_device_is_available - check if a device is available for use
514 * @device: Node to check for availability, with locks already held
516 * Returns 1 if the status property is absent or set to "okay" or "ok",
519 static int __of_device_is_available(const struct device_node
*device
)
527 status
= __of_get_property(device
, "status", &statlen
);
532 if (!strcmp(status
, "okay") || !strcmp(status
, "ok"))
540 * of_device_is_available - check if a device is available for use
542 * @device: Node to check for availability
544 * Returns 1 if the status property is absent or set to "okay" or "ok",
547 int of_device_is_available(const struct device_node
*device
)
552 raw_spin_lock_irqsave(&devtree_lock
, flags
);
553 res
= __of_device_is_available(device
);
554 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
558 EXPORT_SYMBOL(of_device_is_available
);
561 * of_get_parent - Get a node's parent if any
562 * @node: Node to get parent
564 * Returns a node pointer with refcount incremented, use
565 * of_node_put() on it when done.
567 struct device_node
*of_get_parent(const struct device_node
*node
)
569 struct device_node
*np
;
575 raw_spin_lock_irqsave(&devtree_lock
, flags
);
576 np
= of_node_get(node
->parent
);
577 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
580 EXPORT_SYMBOL(of_get_parent
);
583 * of_get_next_parent - Iterate to a node's parent
584 * @node: Node to get parent of
586 * This is like of_get_parent() except that it drops the
587 * refcount on the passed node, making it suitable for iterating
588 * through a node's parents.
590 * Returns a node pointer with refcount incremented, use
591 * of_node_put() on it when done.
593 struct device_node
*of_get_next_parent(struct device_node
*node
)
595 struct device_node
*parent
;
601 raw_spin_lock_irqsave(&devtree_lock
, flags
);
602 parent
= of_node_get(node
->parent
);
604 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
607 EXPORT_SYMBOL(of_get_next_parent
);
609 static struct device_node
*__of_get_next_child(const struct device_node
*node
,
610 struct device_node
*prev
)
612 struct device_node
*next
;
617 next
= prev
? prev
->sibling
: node
->child
;
618 for (; next
; next
= next
->sibling
)
619 if (of_node_get(next
))
624 #define __for_each_child_of_node(parent, child) \
625 for (child = __of_get_next_child(parent, NULL); child != NULL; \
626 child = __of_get_next_child(parent, child))
629 * of_get_next_child - Iterate a node childs
631 * @prev: previous child of the parent node, or NULL to get first
633 * Returns a node pointer with refcount incremented, use
634 * of_node_put() on it when done.
636 struct device_node
*of_get_next_child(const struct device_node
*node
,
637 struct device_node
*prev
)
639 struct device_node
*next
;
642 raw_spin_lock_irqsave(&devtree_lock
, flags
);
643 next
= __of_get_next_child(node
, prev
);
644 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
647 EXPORT_SYMBOL(of_get_next_child
);
650 * of_get_next_available_child - Find the next available child node
652 * @prev: previous child of the parent node, or NULL to get first
654 * This function is like of_get_next_child(), except that it
655 * automatically skips any disabled nodes (i.e. status = "disabled").
657 struct device_node
*of_get_next_available_child(const struct device_node
*node
,
658 struct device_node
*prev
)
660 struct device_node
*next
;
666 raw_spin_lock_irqsave(&devtree_lock
, flags
);
667 next
= prev
? prev
->sibling
: node
->child
;
668 for (; next
; next
= next
->sibling
) {
669 if (!__of_device_is_available(next
))
671 if (of_node_get(next
))
675 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
678 EXPORT_SYMBOL(of_get_next_available_child
);
681 * of_get_child_by_name - Find the child node by name for a given parent
683 * @name: child name to look for.
685 * This function looks for child node for given matching name
687 * Returns a node pointer if found, with refcount incremented, use
688 * of_node_put() on it when done.
689 * Returns NULL if node is not found.
691 struct device_node
*of_get_child_by_name(const struct device_node
*node
,
694 struct device_node
*child
;
696 for_each_child_of_node(node
, child
)
697 if (child
->name
&& (of_node_cmp(child
->name
, name
) == 0))
701 EXPORT_SYMBOL(of_get_child_by_name
);
703 static struct device_node
*__of_find_node_by_path(struct device_node
*parent
,
706 struct device_node
*child
;
707 int len
= strchrnul(path
, '/') - path
;
712 __for_each_child_of_node(parent
, child
) {
713 const char *name
= strrchr(child
->full_name
, '/');
714 if (WARN(!name
, "malformed device_node %s\n", child
->full_name
))
717 if (strncmp(path
, name
, len
) == 0 && (strlen(name
) == len
))
724 * of_find_node_by_path - Find a node matching a full OF path
725 * @path: Either the full path to match, or if the path does not
726 * start with '/', the name of a property of the /aliases
727 * node (an alias). In the case of an alias, the node
728 * matching the alias' value will be returned.
733 * foo/bar Valid alias + relative path
735 * Returns a node pointer with refcount incremented, use
736 * of_node_put() on it when done.
738 struct device_node
*of_find_node_by_path(const char *path
)
740 struct device_node
*np
= NULL
;
744 if (strcmp(path
, "/") == 0)
745 return of_node_get(of_allnodes
);
747 /* The path could begin with an alias */
749 char *p
= strchrnul(path
, '/');
752 /* of_aliases must not be NULL */
756 for_each_property_of_node(of_aliases
, pp
) {
757 if (strlen(pp
->name
) == len
&& !strncmp(pp
->name
, path
, len
)) {
758 np
= of_find_node_by_path(pp
->value
);
767 /* Step down the tree matching path components */
768 raw_spin_lock_irqsave(&devtree_lock
, flags
);
770 np
= of_node_get(of_allnodes
);
771 while (np
&& *path
== '/') {
772 path
++; /* Increment past '/' delimiter */
773 np
= __of_find_node_by_path(np
, path
);
774 path
= strchrnul(path
, '/');
776 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
779 EXPORT_SYMBOL(of_find_node_by_path
);
782 * of_find_node_by_name - Find a node by its "name" property
783 * @from: The node to start searching from or NULL, the node
784 * you pass will not be searched, only the next one
785 * will; typically, you pass what the previous call
786 * returned. of_node_put() will be called on it
787 * @name: The name string to match against
789 * Returns a node pointer with refcount incremented, use
790 * of_node_put() on it when done.
792 struct device_node
*of_find_node_by_name(struct device_node
*from
,
795 struct device_node
*np
;
798 raw_spin_lock_irqsave(&devtree_lock
, flags
);
799 np
= from
? from
->allnext
: of_allnodes
;
800 for (; np
; np
= np
->allnext
)
801 if (np
->name
&& (of_node_cmp(np
->name
, name
) == 0)
805 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
808 EXPORT_SYMBOL(of_find_node_by_name
);
811 * of_find_node_by_type - Find a node by its "device_type" property
812 * @from: The node to start searching from, or NULL to start searching
813 * the entire device tree. The node you pass will not be
814 * searched, only the next one will; typically, you pass
815 * what the previous call returned. of_node_put() will be
816 * called on from for you.
817 * @type: The type string to match against
819 * Returns a node pointer with refcount incremented, use
820 * of_node_put() on it when done.
822 struct device_node
*of_find_node_by_type(struct device_node
*from
,
825 struct device_node
*np
;
828 raw_spin_lock_irqsave(&devtree_lock
, flags
);
829 np
= from
? from
->allnext
: of_allnodes
;
830 for (; np
; np
= np
->allnext
)
831 if (np
->type
&& (of_node_cmp(np
->type
, type
) == 0)
835 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
838 EXPORT_SYMBOL(of_find_node_by_type
);
841 * of_find_compatible_node - Find a node based on type and one of the
842 * tokens in its "compatible" property
843 * @from: The node to start searching from or NULL, the node
844 * you pass will not be searched, only the next one
845 * will; typically, you pass what the previous call
846 * returned. of_node_put() will be called on it
847 * @type: The type string to match "device_type" or NULL to ignore
848 * @compatible: The string to match to one of the tokens in the device
851 * Returns a node pointer with refcount incremented, use
852 * of_node_put() on it when done.
854 struct device_node
*of_find_compatible_node(struct device_node
*from
,
855 const char *type
, const char *compatible
)
857 struct device_node
*np
;
860 raw_spin_lock_irqsave(&devtree_lock
, flags
);
861 np
= from
? from
->allnext
: of_allnodes
;
862 for (; np
; np
= np
->allnext
) {
863 if (__of_device_is_compatible(np
, compatible
, type
, NULL
) &&
868 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
871 EXPORT_SYMBOL(of_find_compatible_node
);
874 * of_find_node_with_property - Find a node which has a property with
876 * @from: The node to start searching from or NULL, the node
877 * you pass will not be searched, only the next one
878 * will; typically, you pass what the previous call
879 * returned. of_node_put() will be called on it
880 * @prop_name: The name of the property to look for.
882 * Returns a node pointer with refcount incremented, use
883 * of_node_put() on it when done.
885 struct device_node
*of_find_node_with_property(struct device_node
*from
,
886 const char *prop_name
)
888 struct device_node
*np
;
892 raw_spin_lock_irqsave(&devtree_lock
, flags
);
893 np
= from
? from
->allnext
: of_allnodes
;
894 for (; np
; np
= np
->allnext
) {
895 for (pp
= np
->properties
; pp
; pp
= pp
->next
) {
896 if (of_prop_cmp(pp
->name
, prop_name
) == 0) {
904 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
907 EXPORT_SYMBOL(of_find_node_with_property
);
910 const struct of_device_id
*__of_match_node(const struct of_device_id
*matches
,
911 const struct device_node
*node
)
913 const struct of_device_id
*best_match
= NULL
;
914 int score
, best_score
= 0;
919 for (; matches
->name
[0] || matches
->type
[0] || matches
->compatible
[0]; matches
++) {
920 score
= __of_device_is_compatible(node
, matches
->compatible
,
921 matches
->type
, matches
->name
);
922 if (score
> best_score
) {
923 best_match
= matches
;
932 * of_match_node - Tell if an device_node has a matching of_match structure
933 * @matches: array of of device match structures to search in
934 * @node: the of device structure to match against
936 * Low level utility function used by device matching.
938 const struct of_device_id
*of_match_node(const struct of_device_id
*matches
,
939 const struct device_node
*node
)
941 const struct of_device_id
*match
;
944 raw_spin_lock_irqsave(&devtree_lock
, flags
);
945 match
= __of_match_node(matches
, node
);
946 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
949 EXPORT_SYMBOL(of_match_node
);
952 * of_find_matching_node_and_match - Find a node based on an of_device_id
954 * @from: The node to start searching from or NULL, the node
955 * you pass will not be searched, only the next one
956 * will; typically, you pass what the previous call
957 * returned. of_node_put() will be called on it
958 * @matches: array of of device match structures to search in
959 * @match Updated to point at the matches entry which matched
961 * Returns a node pointer with refcount incremented, use
962 * of_node_put() on it when done.
964 struct device_node
*of_find_matching_node_and_match(struct device_node
*from
,
965 const struct of_device_id
*matches
,
966 const struct of_device_id
**match
)
968 struct device_node
*np
;
969 const struct of_device_id
*m
;
975 raw_spin_lock_irqsave(&devtree_lock
, flags
);
976 np
= from
? from
->allnext
: of_allnodes
;
977 for (; np
; np
= np
->allnext
) {
978 m
= __of_match_node(matches
, np
);
979 if (m
&& of_node_get(np
)) {
986 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
989 EXPORT_SYMBOL(of_find_matching_node_and_match
);
992 * of_modalias_node - Lookup appropriate modalias for a device node
993 * @node: pointer to a device tree node
994 * @modalias: Pointer to buffer that modalias value will be copied into
995 * @len: Length of modalias value
997 * Based on the value of the compatible property, this routine will attempt
998 * to choose an appropriate modalias value for a particular device tree node.
999 * It does this by stripping the manufacturer prefix (as delimited by a ',')
1000 * from the first entry in the compatible list property.
1002 * This routine returns 0 on success, <0 on failure.
1004 int of_modalias_node(struct device_node
*node
, char *modalias
, int len
)
1006 const char *compatible
, *p
;
1009 compatible
= of_get_property(node
, "compatible", &cplen
);
1010 if (!compatible
|| strlen(compatible
) > cplen
)
1012 p
= strchr(compatible
, ',');
1013 strlcpy(modalias
, p
? p
+ 1 : compatible
, len
);
1016 EXPORT_SYMBOL_GPL(of_modalias_node
);
1019 * of_find_node_by_phandle - Find a node given a phandle
1020 * @handle: phandle of the node to find
1022 * Returns a node pointer with refcount incremented, use
1023 * of_node_put() on it when done.
1025 struct device_node
*of_find_node_by_phandle(phandle handle
)
1027 struct device_node
*np
;
1028 unsigned long flags
;
1033 raw_spin_lock_irqsave(&devtree_lock
, flags
);
1034 for (np
= of_allnodes
; np
; np
= np
->allnext
)
1035 if (np
->phandle
== handle
)
1038 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
1041 EXPORT_SYMBOL(of_find_node_by_phandle
);
1044 * of_property_count_elems_of_size - Count the number of elements in a property
1046 * @np: device node from which the property value is to be read.
1047 * @propname: name of the property to be searched.
1048 * @elem_size: size of the individual element
1050 * Search for a property in a device node and count the number of elements of
1051 * size elem_size in it. Returns number of elements on sucess, -EINVAL if the
1052 * property does not exist or its length does not match a multiple of elem_size
1053 * and -ENODATA if the property does not have a value.
1055 int of_property_count_elems_of_size(const struct device_node
*np
,
1056 const char *propname
, int elem_size
)
1058 struct property
*prop
= of_find_property(np
, propname
, NULL
);
1065 if (prop
->length
% elem_size
!= 0) {
1066 pr_err("size of %s in node %s is not a multiple of %d\n",
1067 propname
, np
->full_name
, elem_size
);
1071 return prop
->length
/ elem_size
;
1073 EXPORT_SYMBOL_GPL(of_property_count_elems_of_size
);
1076 * of_find_property_value_of_size
1078 * @np: device node from which the property value is to be read.
1079 * @propname: name of the property to be searched.
1080 * @len: requested length of property value
1082 * Search for a property in a device node and valid the requested size.
1083 * Returns the property value on success, -EINVAL if the property does not
1084 * exist, -ENODATA if property does not have a value, and -EOVERFLOW if the
1085 * property data isn't large enough.
1088 static void *of_find_property_value_of_size(const struct device_node
*np
,
1089 const char *propname
, u32 len
)
1091 struct property
*prop
= of_find_property(np
, propname
, NULL
);
1094 return ERR_PTR(-EINVAL
);
1096 return ERR_PTR(-ENODATA
);
1097 if (len
> prop
->length
)
1098 return ERR_PTR(-EOVERFLOW
);
1104 * of_property_read_u32_index - Find and read a u32 from a multi-value property.
1106 * @np: device node from which the property value is to be read.
1107 * @propname: name of the property to be searched.
1108 * @index: index of the u32 in the list of values
1109 * @out_value: pointer to return value, modified only if no error.
1111 * Search for a property in a device node and read nth 32-bit value from
1112 * it. Returns 0 on success, -EINVAL if the property does not exist,
1113 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1114 * property data isn't large enough.
1116 * The out_value is modified only if a valid u32 value can be decoded.
1118 int of_property_read_u32_index(const struct device_node
*np
,
1119 const char *propname
,
1120 u32 index
, u32
*out_value
)
1122 const u32
*val
= of_find_property_value_of_size(np
, propname
,
1123 ((index
+ 1) * sizeof(*out_value
)));
1126 return PTR_ERR(val
);
1128 *out_value
= be32_to_cpup(((__be32
*)val
) + index
);
1131 EXPORT_SYMBOL_GPL(of_property_read_u32_index
);
1134 * of_property_read_u8_array - Find and read an array of u8 from a property.
1136 * @np: device node from which the property value is to be read.
1137 * @propname: name of the property to be searched.
1138 * @out_values: pointer to return value, modified only if return value is 0.
1139 * @sz: number of array elements to read
1141 * Search for a property in a device node and read 8-bit value(s) from
1142 * it. Returns 0 on success, -EINVAL if the property does not exist,
1143 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1144 * property data isn't large enough.
1146 * dts entry of array should be like:
1147 * property = /bits/ 8 <0x50 0x60 0x70>;
1149 * The out_values is modified only if a valid u8 value can be decoded.
1151 int of_property_read_u8_array(const struct device_node
*np
,
1152 const char *propname
, u8
*out_values
, size_t sz
)
1154 const u8
*val
= of_find_property_value_of_size(np
, propname
,
1155 (sz
* sizeof(*out_values
)));
1158 return PTR_ERR(val
);
1161 *out_values
++ = *val
++;
1164 EXPORT_SYMBOL_GPL(of_property_read_u8_array
);
1167 * of_property_read_u16_array - Find and read an array of u16 from a property.
1169 * @np: device node from which the property value is to be read.
1170 * @propname: name of the property to be searched.
1171 * @out_values: pointer to return value, modified only if return value is 0.
1172 * @sz: number of array elements to read
1174 * Search for a property in a device node and read 16-bit value(s) from
1175 * it. Returns 0 on success, -EINVAL if the property does not exist,
1176 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1177 * property data isn't large enough.
1179 * dts entry of array should be like:
1180 * property = /bits/ 16 <0x5000 0x6000 0x7000>;
1182 * The out_values is modified only if a valid u16 value can be decoded.
1184 int of_property_read_u16_array(const struct device_node
*np
,
1185 const char *propname
, u16
*out_values
, size_t sz
)
1187 const __be16
*val
= of_find_property_value_of_size(np
, propname
,
1188 (sz
* sizeof(*out_values
)));
1191 return PTR_ERR(val
);
1194 *out_values
++ = be16_to_cpup(val
++);
1197 EXPORT_SYMBOL_GPL(of_property_read_u16_array
);
1200 * of_property_read_u32_array - Find and read an array of 32 bit integers
1203 * @np: device node from which the property value is to be read.
1204 * @propname: name of the property to be searched.
1205 * @out_values: pointer to return value, modified only if return value is 0.
1206 * @sz: number of array elements to read
1208 * Search for a property in a device node and read 32-bit value(s) from
1209 * it. Returns 0 on success, -EINVAL if the property does not exist,
1210 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1211 * property data isn't large enough.
1213 * The out_values is modified only if a valid u32 value can be decoded.
1215 int of_property_read_u32_array(const struct device_node
*np
,
1216 const char *propname
, u32
*out_values
,
1219 const __be32
*val
= of_find_property_value_of_size(np
, propname
,
1220 (sz
* sizeof(*out_values
)));
1223 return PTR_ERR(val
);
1226 *out_values
++ = be32_to_cpup(val
++);
1229 EXPORT_SYMBOL_GPL(of_property_read_u32_array
);
1232 * of_property_read_u64 - Find and read a 64 bit integer from a property
1233 * @np: device node from which the property value is to be read.
1234 * @propname: name of the property to be searched.
1235 * @out_value: pointer to return value, modified only if return value is 0.
1237 * Search for a property in a device node and read a 64-bit value from
1238 * it. Returns 0 on success, -EINVAL if the property does not exist,
1239 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1240 * property data isn't large enough.
1242 * The out_value is modified only if a valid u64 value can be decoded.
1244 int of_property_read_u64(const struct device_node
*np
, const char *propname
,
1247 const __be32
*val
= of_find_property_value_of_size(np
, propname
,
1248 sizeof(*out_value
));
1251 return PTR_ERR(val
);
1253 *out_value
= of_read_number(val
, 2);
1256 EXPORT_SYMBOL_GPL(of_property_read_u64
);
1259 * of_property_read_u64_array - Find and read an array of 64 bit integers
1262 * @np: device node from which the property value is to be read.
1263 * @propname: name of the property to be searched.
1264 * @out_values: pointer to return value, modified only if return value is 0.
1265 * @sz: number of array elements to read
1267 * Search for a property in a device node and read 64-bit value(s) from
1268 * it. Returns 0 on success, -EINVAL if the property does not exist,
1269 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1270 * property data isn't large enough.
1272 * The out_values is modified only if a valid u64 value can be decoded.
1274 int of_property_read_u64_array(const struct device_node
*np
,
1275 const char *propname
, u64
*out_values
,
1278 const __be32
*val
= of_find_property_value_of_size(np
, propname
,
1279 (sz
* sizeof(*out_values
)));
1282 return PTR_ERR(val
);
1285 *out_values
++ = of_read_number(val
, 2);
1292 * of_property_read_string - Find and read a string from a property
1293 * @np: device node from which the property value is to be read.
1294 * @propname: name of the property to be searched.
1295 * @out_string: pointer to null terminated return string, modified only if
1296 * return value is 0.
1298 * Search for a property in a device tree node and retrieve a null
1299 * terminated string value (pointer to data, not a copy). Returns 0 on
1300 * success, -EINVAL if the property does not exist, -ENODATA if property
1301 * does not have a value, and -EILSEQ if the string is not null-terminated
1302 * within the length of the property data.
1304 * The out_string pointer is modified only if a valid string can be decoded.
1306 int of_property_read_string(struct device_node
*np
, const char *propname
,
1307 const char **out_string
)
1309 struct property
*prop
= of_find_property(np
, propname
, NULL
);
1314 if (strnlen(prop
->value
, prop
->length
) >= prop
->length
)
1316 *out_string
= prop
->value
;
1319 EXPORT_SYMBOL_GPL(of_property_read_string
);
1322 * of_property_match_string() - Find string in a list and return index
1323 * @np: pointer to node containing string list property
1324 * @propname: string list property name
1325 * @string: pointer to string to search for in string list
1327 * This function searches a string list property and returns the index
1328 * of a specific string value.
1330 int of_property_match_string(struct device_node
*np
, const char *propname
,
1333 struct property
*prop
= of_find_property(np
, propname
, NULL
);
1336 const char *p
, *end
;
1344 end
= p
+ prop
->length
;
1346 for (i
= 0; p
< end
; i
++, p
+= l
) {
1347 l
= strnlen(p
, end
- p
) + 1;
1350 pr_debug("comparing %s with %s\n", string
, p
);
1351 if (strcmp(string
, p
) == 0)
1352 return i
; /* Found it; return index */
1356 EXPORT_SYMBOL_GPL(of_property_match_string
);
1359 * of_property_read_string_util() - Utility helper for parsing string properties
1360 * @np: device node from which the property value is to be read.
1361 * @propname: name of the property to be searched.
1362 * @out_strs: output array of string pointers.
1363 * @sz: number of array elements to read.
1364 * @skip: Number of strings to skip over at beginning of list.
1366 * Don't call this function directly. It is a utility helper for the
1367 * of_property_read_string*() family of functions.
1369 int of_property_read_string_helper(struct device_node
*np
, const char *propname
,
1370 const char **out_strs
, size_t sz
, int skip
)
1372 struct property
*prop
= of_find_property(np
, propname
, NULL
);
1374 const char *p
, *end
;
1381 end
= p
+ prop
->length
;
1383 for (i
= 0; p
< end
&& (!out_strs
|| i
< skip
+ sz
); i
++, p
+= l
) {
1384 l
= strnlen(p
, end
- p
) + 1;
1387 if (out_strs
&& i
>= skip
)
1391 return i
<= 0 ? -ENODATA
: i
;
1393 EXPORT_SYMBOL_GPL(of_property_read_string_helper
);
1395 void of_print_phandle_args(const char *msg
, const struct of_phandle_args
*args
)
1398 printk("%s %s", msg
, of_node_full_name(args
->np
));
1399 for (i
= 0; i
< args
->args_count
; i
++)
1400 printk(i
? ",%08x" : ":%08x", args
->args
[i
]);
1404 static int __of_parse_phandle_with_args(const struct device_node
*np
,
1405 const char *list_name
,
1406 const char *cells_name
,
1407 int cell_count
, int index
,
1408 struct of_phandle_args
*out_args
)
1410 const __be32
*list
, *list_end
;
1411 int rc
= 0, size
, cur_index
= 0;
1413 struct device_node
*node
= NULL
;
1416 /* Retrieve the phandle list property */
1417 list
= of_get_property(np
, list_name
, &size
);
1420 list_end
= list
+ size
/ sizeof(*list
);
1422 /* Loop over the phandles until all the requested entry is found */
1423 while (list
< list_end
) {
1428 * If phandle is 0, then it is an empty entry with no
1429 * arguments. Skip forward to the next entry.
1431 phandle
= be32_to_cpup(list
++);
1434 * Find the provider node and parse the #*-cells
1435 * property to determine the argument length.
1437 * This is not needed if the cell count is hard-coded
1438 * (i.e. cells_name not set, but cell_count is set),
1439 * except when we're going to return the found node
1442 if (cells_name
|| cur_index
== index
) {
1443 node
= of_find_node_by_phandle(phandle
);
1445 pr_err("%s: could not find phandle\n",
1452 if (of_property_read_u32(node
, cells_name
,
1454 pr_err("%s: could not get %s for %s\n",
1455 np
->full_name
, cells_name
,
1464 * Make sure that the arguments actually fit in the
1465 * remaining property data length
1467 if (list
+ count
> list_end
) {
1468 pr_err("%s: arguments longer than property\n",
1475 * All of the error cases above bail out of the loop, so at
1476 * this point, the parsing is successful. If the requested
1477 * index matches, then fill the out_args structure and return,
1478 * or return -ENOENT for an empty entry.
1481 if (cur_index
== index
) {
1487 if (WARN_ON(count
> MAX_PHANDLE_ARGS
))
1488 count
= MAX_PHANDLE_ARGS
;
1489 out_args
->np
= node
;
1490 out_args
->args_count
= count
;
1491 for (i
= 0; i
< count
; i
++)
1492 out_args
->args
[i
] = be32_to_cpup(list
++);
1497 /* Found it! return success */
1508 * Unlock node before returning result; will be one of:
1509 * -ENOENT : index is for empty phandle
1510 * -EINVAL : parsing error on data
1511 * [1..n] : Number of phandle (count mode; when index = -1)
1513 rc
= index
< 0 ? cur_index
: -ENOENT
;
1521 * of_parse_phandle - Resolve a phandle property to a device_node pointer
1522 * @np: Pointer to device node holding phandle property
1523 * @phandle_name: Name of property holding a phandle value
1524 * @index: For properties holding a table of phandles, this is the index into
1527 * Returns the device_node pointer with refcount incremented. Use
1528 * of_node_put() on it when done.
1530 struct device_node
*of_parse_phandle(const struct device_node
*np
,
1531 const char *phandle_name
, int index
)
1533 struct of_phandle_args args
;
1538 if (__of_parse_phandle_with_args(np
, phandle_name
, NULL
, 0,
1544 EXPORT_SYMBOL(of_parse_phandle
);
1547 * of_parse_phandle_with_args() - Find a node pointed by phandle in a list
1548 * @np: pointer to a device tree node containing a list
1549 * @list_name: property name that contains a list
1550 * @cells_name: property name that specifies phandles' arguments count
1551 * @index: index of a phandle to parse out
1552 * @out_args: optional pointer to output arguments structure (will be filled)
1554 * This function is useful to parse lists of phandles and their arguments.
1555 * Returns 0 on success and fills out_args, on error returns appropriate
1558 * Caller is responsible to call of_node_put() on the returned out_args->node
1564 * #list-cells = <2>;
1568 * #list-cells = <1>;
1572 * list = <&phandle1 1 2 &phandle2 3>;
1575 * To get a device_node of the `node2' node you may call this:
1576 * of_parse_phandle_with_args(node3, "list", "#list-cells", 1, &args);
1578 int of_parse_phandle_with_args(const struct device_node
*np
, const char *list_name
,
1579 const char *cells_name
, int index
,
1580 struct of_phandle_args
*out_args
)
1584 return __of_parse_phandle_with_args(np
, list_name
, cells_name
, 0,
1587 EXPORT_SYMBOL(of_parse_phandle_with_args
);
1590 * of_parse_phandle_with_fixed_args() - Find a node pointed by phandle in a list
1591 * @np: pointer to a device tree node containing a list
1592 * @list_name: property name that contains a list
1593 * @cell_count: number of argument cells following the phandle
1594 * @index: index of a phandle to parse out
1595 * @out_args: optional pointer to output arguments structure (will be filled)
1597 * This function is useful to parse lists of phandles and their arguments.
1598 * Returns 0 on success and fills out_args, on error returns appropriate
1601 * Caller is responsible to call of_node_put() on the returned out_args->node
1613 * list = <&phandle1 0 2 &phandle2 2 3>;
1616 * To get a device_node of the `node2' node you may call this:
1617 * of_parse_phandle_with_fixed_args(node3, "list", 2, 1, &args);
1619 int of_parse_phandle_with_fixed_args(const struct device_node
*np
,
1620 const char *list_name
, int cell_count
,
1621 int index
, struct of_phandle_args
*out_args
)
1625 return __of_parse_phandle_with_args(np
, list_name
, NULL
, cell_count
,
1628 EXPORT_SYMBOL(of_parse_phandle_with_fixed_args
);
1631 * of_count_phandle_with_args() - Find the number of phandles references in a property
1632 * @np: pointer to a device tree node containing a list
1633 * @list_name: property name that contains a list
1634 * @cells_name: property name that specifies phandles' arguments count
1636 * Returns the number of phandle + argument tuples within a property. It
1637 * is a typical pattern to encode a list of phandle and variable
1638 * arguments into a single property. The number of arguments is encoded
1639 * by a property in the phandle-target node. For example, a gpios
1640 * property would contain a list of GPIO specifies consisting of a
1641 * phandle and 1 or more arguments. The number of arguments are
1642 * determined by the #gpio-cells property in the node pointed to by the
1645 int of_count_phandle_with_args(const struct device_node
*np
, const char *list_name
,
1646 const char *cells_name
)
1648 return __of_parse_phandle_with_args(np
, list_name
, cells_name
, 0, -1,
1651 EXPORT_SYMBOL(of_count_phandle_with_args
);
1654 * __of_add_property - Add a property to a node without lock operations
1656 int __of_add_property(struct device_node
*np
, struct property
*prop
)
1658 struct property
**next
;
1661 next
= &np
->properties
;
1663 if (strcmp(prop
->name
, (*next
)->name
) == 0)
1664 /* duplicate ! don't insert it */
1667 next
= &(*next
)->next
;
1675 * of_add_property - Add a property to a node
1677 int of_add_property(struct device_node
*np
, struct property
*prop
)
1679 unsigned long flags
;
1682 mutex_lock(&of_mutex
);
1684 raw_spin_lock_irqsave(&devtree_lock
, flags
);
1685 rc
= __of_add_property(np
, prop
);
1686 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
1689 __of_add_property_sysfs(np
, prop
);
1691 mutex_unlock(&of_mutex
);
1694 of_property_notify(OF_RECONFIG_ADD_PROPERTY
, np
, prop
, NULL
);
1699 int __of_remove_property(struct device_node
*np
, struct property
*prop
)
1701 struct property
**next
;
1703 for (next
= &np
->properties
; *next
; next
= &(*next
)->next
) {
1710 /* found the node */
1712 prop
->next
= np
->deadprops
;
1713 np
->deadprops
= prop
;
1718 void __of_sysfs_remove_bin_file(struct device_node
*np
, struct property
*prop
)
1720 sysfs_remove_bin_file(&np
->kobj
, &prop
->attr
);
1721 kfree(prop
->attr
.attr
.name
);
1724 void __of_remove_property_sysfs(struct device_node
*np
, struct property
*prop
)
1726 if (!IS_ENABLED(CONFIG_SYSFS
))
1729 /* at early boot, bail here and defer setup to of_init() */
1730 if (of_kset
&& of_node_is_attached(np
))
1731 __of_sysfs_remove_bin_file(np
, prop
);
1735 * of_remove_property - Remove a property from a node.
1737 * Note that we don't actually remove it, since we have given out
1738 * who-knows-how-many pointers to the data using get-property.
1739 * Instead we just move the property to the "dead properties"
1740 * list, so it won't be found any more.
1742 int of_remove_property(struct device_node
*np
, struct property
*prop
)
1744 unsigned long flags
;
1747 mutex_lock(&of_mutex
);
1749 raw_spin_lock_irqsave(&devtree_lock
, flags
);
1750 rc
= __of_remove_property(np
, prop
);
1751 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
1754 __of_remove_property_sysfs(np
, prop
);
1756 mutex_unlock(&of_mutex
);
1759 of_property_notify(OF_RECONFIG_REMOVE_PROPERTY
, np
, prop
, NULL
);
1764 int __of_update_property(struct device_node
*np
, struct property
*newprop
,
1765 struct property
**oldpropp
)
1767 struct property
**next
, *oldprop
;
1769 for (next
= &np
->properties
; *next
; next
= &(*next
)->next
) {
1770 if (of_prop_cmp((*next
)->name
, newprop
->name
) == 0)
1773 *oldpropp
= oldprop
= *next
;
1776 /* replace the node */
1777 newprop
->next
= oldprop
->next
;
1779 oldprop
->next
= np
->deadprops
;
1780 np
->deadprops
= oldprop
;
1783 newprop
->next
= NULL
;
1790 void __of_update_property_sysfs(struct device_node
*np
, struct property
*newprop
,
1791 struct property
*oldprop
)
1793 if (!IS_ENABLED(CONFIG_SYSFS
))
1796 /* At early boot, bail out and defer setup to of_init() */
1801 __of_sysfs_remove_bin_file(np
, oldprop
);
1802 __of_add_property_sysfs(np
, newprop
);
1806 * of_update_property - Update a property in a node, if the property does
1807 * not exist, add it.
1809 * Note that we don't actually remove it, since we have given out
1810 * who-knows-how-many pointers to the data using get-property.
1811 * Instead we just move the property to the "dead properties" list,
1812 * and add the new property to the property list
1814 int of_update_property(struct device_node
*np
, struct property
*newprop
)
1816 struct property
*oldprop
;
1817 unsigned long flags
;
1823 mutex_lock(&of_mutex
);
1825 raw_spin_lock_irqsave(&devtree_lock
, flags
);
1826 rc
= __of_update_property(np
, newprop
, &oldprop
);
1827 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
1830 __of_update_property_sysfs(np
, newprop
, oldprop
);
1832 mutex_unlock(&of_mutex
);
1835 of_property_notify(OF_RECONFIG_UPDATE_PROPERTY
, np
, newprop
, oldprop
);
1840 static void of_alias_add(struct alias_prop
*ap
, struct device_node
*np
,
1841 int id
, const char *stem
, int stem_len
)
1845 strncpy(ap
->stem
, stem
, stem_len
);
1846 ap
->stem
[stem_len
] = 0;
1847 list_add_tail(&ap
->link
, &aliases_lookup
);
1848 pr_debug("adding DT alias:%s: stem=%s id=%i node=%s\n",
1849 ap
->alias
, ap
->stem
, ap
->id
, of_node_full_name(np
));
1853 * of_alias_scan - Scan all properties of 'aliases' node
1855 * The function scans all the properties of 'aliases' node and populate
1856 * the the global lookup table with the properties. It returns the
1857 * number of alias_prop found, or error code in error case.
1859 * @dt_alloc: An allocator that provides a virtual address to memory
1860 * for the resulting tree
1862 void of_alias_scan(void * (*dt_alloc
)(u64 size
, u64 align
))
1864 struct property
*pp
;
1866 of_aliases
= of_find_node_by_path("/aliases");
1867 of_chosen
= of_find_node_by_path("/chosen");
1868 if (of_chosen
== NULL
)
1869 of_chosen
= of_find_node_by_path("/chosen@0");
1872 /* linux,stdout-path and /aliases/stdout are for legacy compatibility */
1873 const char *name
= of_get_property(of_chosen
, "stdout-path", NULL
);
1875 name
= of_get_property(of_chosen
, "linux,stdout-path", NULL
);
1876 if (IS_ENABLED(CONFIG_PPC
) && !name
)
1877 name
= of_get_property(of_aliases
, "stdout", NULL
);
1879 of_stdout
= of_find_node_by_path(name
);
1885 for_each_property_of_node(of_aliases
, pp
) {
1886 const char *start
= pp
->name
;
1887 const char *end
= start
+ strlen(start
);
1888 struct device_node
*np
;
1889 struct alias_prop
*ap
;
1892 /* Skip those we do not want to proceed */
1893 if (!strcmp(pp
->name
, "name") ||
1894 !strcmp(pp
->name
, "phandle") ||
1895 !strcmp(pp
->name
, "linux,phandle"))
1898 np
= of_find_node_by_path(pp
->value
);
1902 /* walk the alias backwards to extract the id and work out
1903 * the 'stem' string */
1904 while (isdigit(*(end
-1)) && end
> start
)
1908 if (kstrtoint(end
, 10, &id
) < 0)
1911 /* Allocate an alias_prop with enough space for the stem */
1912 ap
= dt_alloc(sizeof(*ap
) + len
+ 1, 4);
1915 memset(ap
, 0, sizeof(*ap
) + len
+ 1);
1917 of_alias_add(ap
, np
, id
, start
, len
);
1922 * of_alias_get_id - Get alias id for the given device_node
1923 * @np: Pointer to the given device_node
1924 * @stem: Alias stem of the given device_node
1926 * The function travels the lookup table to get the alias id for the given
1927 * device_node and alias stem. It returns the alias id if found.
1929 int of_alias_get_id(struct device_node
*np
, const char *stem
)
1931 struct alias_prop
*app
;
1934 mutex_lock(&of_mutex
);
1935 list_for_each_entry(app
, &aliases_lookup
, link
) {
1936 if (strcmp(app
->stem
, stem
) != 0)
1939 if (np
== app
->np
) {
1944 mutex_unlock(&of_mutex
);
1948 EXPORT_SYMBOL_GPL(of_alias_get_id
);
1950 const __be32
*of_prop_next_u32(struct property
*prop
, const __be32
*cur
,
1953 const void *curv
= cur
;
1963 curv
+= sizeof(*cur
);
1964 if (curv
>= prop
->value
+ prop
->length
)
1968 *pu
= be32_to_cpup(curv
);
1971 EXPORT_SYMBOL_GPL(of_prop_next_u32
);
1973 const char *of_prop_next_string(struct property
*prop
, const char *cur
)
1975 const void *curv
= cur
;
1983 curv
+= strlen(cur
) + 1;
1984 if (curv
>= prop
->value
+ prop
->length
)
1989 EXPORT_SYMBOL_GPL(of_prop_next_string
);
1992 * of_console_check() - Test and setup console for DT setup
1993 * @dn - Pointer to device node
1994 * @name - Name to use for preferred console without index. ex. "ttyS"
1995 * @index - Index to use for preferred console.
1997 * Check if the given device node matches the stdout-path property in the
1998 * /chosen node. If it does then register it as the preferred console and return
1999 * TRUE. Otherwise return FALSE.
2001 bool of_console_check(struct device_node
*dn
, char *name
, int index
)
2003 if (!dn
|| dn
!= of_stdout
|| console_set_on_cmdline
)
2005 return !add_preferred_console(name
, index
, NULL
);
2007 EXPORT_SYMBOL_GPL(of_console_check
);
2010 * of_find_next_cache_node - Find a node's subsidiary cache
2011 * @np: node of type "cpu" or "cache"
2013 * Returns a node pointer with refcount incremented, use
2014 * of_node_put() on it when done. Caller should hold a reference
2017 struct device_node
*of_find_next_cache_node(const struct device_node
*np
)
2019 struct device_node
*child
;
2020 const phandle
*handle
;
2022 handle
= of_get_property(np
, "l2-cache", NULL
);
2024 handle
= of_get_property(np
, "next-level-cache", NULL
);
2027 return of_find_node_by_phandle(be32_to_cpup(handle
));
2029 /* OF on pmac has nodes instead of properties named "l2-cache"
2030 * beneath CPU nodes.
2032 if (!strcmp(np
->type
, "cpu"))
2033 for_each_child_of_node(np
, child
)
2034 if (!strcmp(child
->type
, "cache"))
2041 * of_graph_parse_endpoint() - parse common endpoint node properties
2042 * @node: pointer to endpoint device_node
2043 * @endpoint: pointer to the OF endpoint data structure
2045 * The caller should hold a reference to @node.
2047 int of_graph_parse_endpoint(const struct device_node
*node
,
2048 struct of_endpoint
*endpoint
)
2050 struct device_node
*port_node
= of_get_parent(node
);
2052 WARN_ONCE(!port_node
, "%s(): endpoint %s has no parent node\n",
2053 __func__
, node
->full_name
);
2055 memset(endpoint
, 0, sizeof(*endpoint
));
2057 endpoint
->local_node
= node
;
2059 * It doesn't matter whether the two calls below succeed.
2060 * If they don't then the default value 0 is used.
2062 of_property_read_u32(port_node
, "reg", &endpoint
->port
);
2063 of_property_read_u32(node
, "reg", &endpoint
->id
);
2065 of_node_put(port_node
);
2069 EXPORT_SYMBOL(of_graph_parse_endpoint
);
2072 * of_graph_get_next_endpoint() - get next endpoint node
2073 * @parent: pointer to the parent device node
2074 * @prev: previous endpoint node, or NULL to get first
2076 * Return: An 'endpoint' node pointer with refcount incremented. Refcount
2077 * of the passed @prev node is not decremented, the caller have to use
2078 * of_node_put() on it when done.
2080 struct device_node
*of_graph_get_next_endpoint(const struct device_node
*parent
,
2081 struct device_node
*prev
)
2083 struct device_node
*endpoint
;
2084 struct device_node
*port
;
2090 * Start by locating the port node. If no previous endpoint is specified
2091 * search for the first port node, otherwise get the previous endpoint
2095 struct device_node
*node
;
2097 node
= of_get_child_by_name(parent
, "ports");
2101 port
= of_get_child_by_name(parent
, "port");
2105 pr_err("%s(): no port node found in %s\n",
2106 __func__
, parent
->full_name
);
2110 port
= of_get_parent(prev
);
2111 if (WARN_ONCE(!port
, "%s(): endpoint %s has no parent node\n",
2112 __func__
, prev
->full_name
))
2116 * Avoid dropping prev node refcount to 0 when getting the next
2124 * Now that we have a port node, get the next endpoint by
2125 * getting the next child. If the previous endpoint is NULL this
2126 * will return the first child.
2128 endpoint
= of_get_next_child(port
, prev
);
2134 /* No more endpoints under this port, try the next one. */
2138 port
= of_get_next_child(parent
, port
);
2141 } while (of_node_cmp(port
->name
, "port"));
2144 EXPORT_SYMBOL(of_graph_get_next_endpoint
);
2147 * of_graph_get_remote_port_parent() - get remote port's parent node
2148 * @node: pointer to a local endpoint device_node
2150 * Return: Remote device node associated with remote endpoint node linked
2151 * to @node. Use of_node_put() on it when done.
2153 struct device_node
*of_graph_get_remote_port_parent(
2154 const struct device_node
*node
)
2156 struct device_node
*np
;
2159 /* Get remote endpoint node. */
2160 np
= of_parse_phandle(node
, "remote-endpoint", 0);
2162 /* Walk 3 levels up only if there is 'ports' node. */
2163 for (depth
= 3; depth
&& np
; depth
--) {
2164 np
= of_get_next_parent(np
);
2165 if (depth
== 2 && of_node_cmp(np
->name
, "ports"))
2170 EXPORT_SYMBOL(of_graph_get_remote_port_parent
);
2173 * of_graph_get_remote_port() - get remote port node
2174 * @node: pointer to a local endpoint device_node
2176 * Return: Remote port node associated with remote endpoint node linked
2177 * to @node. Use of_node_put() on it when done.
2179 struct device_node
*of_graph_get_remote_port(const struct device_node
*node
)
2181 struct device_node
*np
;
2183 /* Get remote endpoint node. */
2184 np
= of_parse_phandle(node
, "remote-endpoint", 0);
2187 return of_get_next_parent(np
);
2189 EXPORT_SYMBOL(of_graph_get_remote_port
);