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_root
;
36 EXPORT_SYMBOL(of_root
);
37 struct device_node
*of_chosen
;
38 struct device_node
*of_aliases
;
39 struct device_node
*of_stdout
;
40 static const char *of_stdout_options
;
45 * Used to protect the of_aliases, to hold off addition of nodes to sysfs.
46 * This mutex must be held whenever modifications are being made to the
47 * device tree. The of_{attach,detach}_node() and
48 * of_{add,remove,update}_property() helpers make sure this happens.
50 DEFINE_MUTEX(of_mutex
);
52 /* use when traversing tree through the child, sibling,
53 * or parent members of struct device_node.
55 DEFINE_RAW_SPINLOCK(devtree_lock
);
57 int of_n_addr_cells(struct device_node
*np
)
64 ip
= of_get_property(np
, "#address-cells", NULL
);
66 return be32_to_cpup(ip
);
68 /* No #address-cells property for the root node */
69 return OF_ROOT_NODE_ADDR_CELLS_DEFAULT
;
71 EXPORT_SYMBOL(of_n_addr_cells
);
73 int of_n_size_cells(struct device_node
*np
)
80 ip
= of_get_property(np
, "#size-cells", NULL
);
82 return be32_to_cpup(ip
);
84 /* No #size-cells property for the root node */
85 return OF_ROOT_NODE_SIZE_CELLS_DEFAULT
;
87 EXPORT_SYMBOL(of_n_size_cells
);
90 int __weak
of_node_to_nid(struct device_node
*np
)
96 #ifndef CONFIG_OF_DYNAMIC
97 static void of_node_release(struct kobject
*kobj
)
99 /* Without CONFIG_OF_DYNAMIC, no nodes gets freed */
101 #endif /* CONFIG_OF_DYNAMIC */
103 struct kobj_type of_node_ktype
= {
104 .release
= of_node_release
,
107 static ssize_t
of_node_property_read(struct file
*filp
, struct kobject
*kobj
,
108 struct bin_attribute
*bin_attr
, char *buf
,
109 loff_t offset
, size_t count
)
111 struct property
*pp
= container_of(bin_attr
, struct property
, attr
);
112 return memory_read_from_buffer(buf
, count
, &offset
, pp
->value
, pp
->length
);
115 /* always return newly allocated name, caller must free after use */
116 static const char *safe_name(struct kobject
*kobj
, const char *orig_name
)
118 const char *name
= orig_name
;
119 struct kernfs_node
*kn
;
122 /* don't be a hero. After 16 tries give up */
123 while (i
< 16 && (kn
= sysfs_get_dirent(kobj
->sd
, name
))) {
125 if (name
!= orig_name
)
127 name
= kasprintf(GFP_KERNEL
, "%s#%i", orig_name
, ++i
);
130 if (name
== orig_name
) {
131 name
= kstrdup(orig_name
, GFP_KERNEL
);
133 pr_warn("device-tree: Duplicate name in %s, renamed to \"%s\"\n",
134 kobject_name(kobj
), name
);
139 int __of_add_property_sysfs(struct device_node
*np
, struct property
*pp
)
143 /* Important: Don't leak passwords */
144 bool secure
= strncmp(pp
->name
, "security-", 9) == 0;
146 if (!IS_ENABLED(CONFIG_SYSFS
))
149 if (!of_kset
|| !of_node_is_attached(np
))
152 sysfs_bin_attr_init(&pp
->attr
);
153 pp
->attr
.attr
.name
= safe_name(&np
->kobj
, pp
->name
);
154 pp
->attr
.attr
.mode
= secure
? S_IRUSR
: S_IRUGO
;
155 pp
->attr
.size
= secure
? 0 : pp
->length
;
156 pp
->attr
.read
= of_node_property_read
;
158 rc
= sysfs_create_bin_file(&np
->kobj
, &pp
->attr
);
159 WARN(rc
, "error adding attribute %s to node %s\n", pp
->name
, np
->full_name
);
163 int __of_attach_node_sysfs(struct device_node
*np
)
166 struct kobject
*parent
;
170 if (!IS_ENABLED(CONFIG_SYSFS
))
176 np
->kobj
.kset
= of_kset
;
178 /* Nodes without parents are new top level trees */
179 name
= safe_name(&of_kset
->kobj
, "base");
182 name
= safe_name(&np
->parent
->kobj
, kbasename(np
->full_name
));
183 parent
= &np
->parent
->kobj
;
187 rc
= kobject_add(&np
->kobj
, parent
, "%s", name
);
192 for_each_property_of_node(np
, pp
)
193 __of_add_property_sysfs(np
, pp
);
198 void __init
of_core_init(void)
200 struct device_node
*np
;
202 /* Create the kset, and register existing nodes */
203 mutex_lock(&of_mutex
);
204 of_kset
= kset_create_and_add("devicetree", NULL
, firmware_kobj
);
206 mutex_unlock(&of_mutex
);
207 pr_err("devicetree: failed to register existing nodes\n");
210 for_each_of_allnodes(np
)
211 __of_attach_node_sysfs(np
);
212 mutex_unlock(&of_mutex
);
214 /* Symlink in /proc as required by userspace ABI */
216 proc_symlink("device-tree", NULL
, "/sys/firmware/devicetree/base");
219 static struct property
*__of_find_property(const struct device_node
*np
,
220 const char *name
, int *lenp
)
227 for (pp
= np
->properties
; pp
; pp
= pp
->next
) {
228 if (of_prop_cmp(pp
->name
, name
) == 0) {
238 struct property
*of_find_property(const struct device_node
*np
,
245 raw_spin_lock_irqsave(&devtree_lock
, flags
);
246 pp
= __of_find_property(np
, name
, lenp
);
247 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
251 EXPORT_SYMBOL(of_find_property
);
253 struct device_node
*__of_find_all_nodes(struct device_node
*prev
)
255 struct device_node
*np
;
258 } else if (prev
->child
) {
261 /* Walk back up looking for a sibling, or the end of the structure */
263 while (np
->parent
&& !np
->sibling
)
265 np
= np
->sibling
; /* Might be null at the end of the tree */
271 * of_find_all_nodes - Get next node in global list
272 * @prev: Previous node or NULL to start iteration
273 * of_node_put() will be called on it
275 * Returns a node pointer with refcount incremented, use
276 * of_node_put() on it when done.
278 struct device_node
*of_find_all_nodes(struct device_node
*prev
)
280 struct device_node
*np
;
283 raw_spin_lock_irqsave(&devtree_lock
, flags
);
284 np
= __of_find_all_nodes(prev
);
287 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
290 EXPORT_SYMBOL(of_find_all_nodes
);
293 * Find a property with a given name for a given node
294 * and return the value.
296 const void *__of_get_property(const struct device_node
*np
,
297 const char *name
, int *lenp
)
299 struct property
*pp
= __of_find_property(np
, name
, lenp
);
301 return pp
? pp
->value
: NULL
;
305 * Find a property with a given name for a given node
306 * and return the value.
308 const void *of_get_property(const struct device_node
*np
, const char *name
,
311 struct property
*pp
= of_find_property(np
, name
, lenp
);
313 return pp
? pp
->value
: NULL
;
315 EXPORT_SYMBOL(of_get_property
);
318 * arch_match_cpu_phys_id - Match the given logical CPU and physical id
320 * @cpu: logical cpu index of a core/thread
321 * @phys_id: physical identifier of a core/thread
323 * CPU logical to physical index mapping is architecture specific.
324 * However this __weak function provides a default match of physical
325 * id to logical cpu index. phys_id provided here is usually values read
326 * from the device tree which must match the hardware internal registers.
328 * Returns true if the physical identifier and the logical cpu index
329 * correspond to the same core/thread, false otherwise.
331 bool __weak
arch_match_cpu_phys_id(int cpu
, u64 phys_id
)
333 return (u32
)phys_id
== cpu
;
337 * Checks if the given "prop_name" property holds the physical id of the
338 * core/thread corresponding to the logical cpu 'cpu'. If 'thread' is not
339 * NULL, local thread number within the core is returned in it.
341 static bool __of_find_n_match_cpu_property(struct device_node
*cpun
,
342 const char *prop_name
, int cpu
, unsigned int *thread
)
345 int ac
, prop_len
, tid
;
348 ac
= of_n_addr_cells(cpun
);
349 cell
= of_get_property(cpun
, prop_name
, &prop_len
);
352 prop_len
/= sizeof(*cell
) * ac
;
353 for (tid
= 0; tid
< prop_len
; tid
++) {
354 hwid
= of_read_number(cell
, ac
);
355 if (arch_match_cpu_phys_id(cpu
, hwid
)) {
366 * arch_find_n_match_cpu_physical_id - See if the given device node is
367 * for the cpu corresponding to logical cpu 'cpu'. Return true if so,
368 * else false. If 'thread' is non-NULL, the local thread number within the
369 * core is returned in it.
371 bool __weak
arch_find_n_match_cpu_physical_id(struct device_node
*cpun
,
372 int cpu
, unsigned int *thread
)
374 /* Check for non-standard "ibm,ppc-interrupt-server#s" property
375 * for thread ids on PowerPC. If it doesn't exist fallback to
376 * standard "reg" property.
378 if (IS_ENABLED(CONFIG_PPC
) &&
379 __of_find_n_match_cpu_property(cpun
,
380 "ibm,ppc-interrupt-server#s",
384 if (__of_find_n_match_cpu_property(cpun
, "reg", cpu
, thread
))
391 * of_get_cpu_node - Get device node associated with the given logical CPU
393 * @cpu: CPU number(logical index) for which device node is required
394 * @thread: if not NULL, local thread number within the physical core is
397 * The main purpose of this function is to retrieve the device node for the
398 * given logical CPU index. It should be used to initialize the of_node in
399 * cpu device. Once of_node in cpu device is populated, all the further
400 * references can use that instead.
402 * CPU logical to physical index mapping is architecture specific and is built
403 * before booting secondary cores. This function uses arch_match_cpu_phys_id
404 * which can be overridden by architecture specific implementation.
406 * Returns a node pointer for the logical cpu if found, else NULL.
408 struct device_node
*of_get_cpu_node(int cpu
, unsigned int *thread
)
410 struct device_node
*cpun
;
412 for_each_node_by_type(cpun
, "cpu") {
413 if (arch_find_n_match_cpu_physical_id(cpun
, cpu
, thread
))
418 EXPORT_SYMBOL(of_get_cpu_node
);
421 * __of_device_is_compatible() - Check if the node matches given constraints
422 * @device: pointer to node
423 * @compat: required compatible string, NULL or "" for any match
424 * @type: required device_type value, NULL or "" for any match
425 * @name: required node name, NULL or "" for any match
427 * Checks if the given @compat, @type and @name strings match the
428 * properties of the given @device. A constraints can be skipped by
429 * passing NULL or an empty string as the constraint.
431 * Returns 0 for no match, and a positive integer on match. The return
432 * value is a relative score with larger values indicating better
433 * matches. The score is weighted for the most specific compatible value
434 * to get the highest score. Matching type is next, followed by matching
435 * name. Practically speaking, this results in the following priority
438 * 1. specific compatible && type && name
439 * 2. specific compatible && type
440 * 3. specific compatible && name
441 * 4. specific compatible
442 * 5. general compatible && type && name
443 * 6. general compatible && type
444 * 7. general compatible && name
445 * 8. general compatible
450 static int __of_device_is_compatible(const struct device_node
*device
,
451 const char *compat
, const char *type
, const char *name
)
453 struct property
*prop
;
455 int index
= 0, score
= 0;
457 /* Compatible match has highest priority */
458 if (compat
&& compat
[0]) {
459 prop
= __of_find_property(device
, "compatible", NULL
);
460 for (cp
= of_prop_next_string(prop
, NULL
); cp
;
461 cp
= of_prop_next_string(prop
, cp
), index
++) {
462 if (of_compat_cmp(cp
, compat
, strlen(compat
)) == 0) {
463 score
= INT_MAX
/2 - (index
<< 2);
471 /* Matching type is better than matching name */
472 if (type
&& type
[0]) {
473 if (!device
->type
|| of_node_cmp(type
, device
->type
))
478 /* Matching name is a bit better than not */
479 if (name
&& name
[0]) {
480 if (!device
->name
|| of_node_cmp(name
, device
->name
))
488 /** Checks if the given "compat" string matches one of the strings in
489 * the device's "compatible" property
491 int of_device_is_compatible(const struct device_node
*device
,
497 raw_spin_lock_irqsave(&devtree_lock
, flags
);
498 res
= __of_device_is_compatible(device
, compat
, NULL
, NULL
);
499 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
502 EXPORT_SYMBOL(of_device_is_compatible
);
505 * of_machine_is_compatible - Test root of device tree for a given compatible value
506 * @compat: compatible string to look for in root node's compatible property.
508 * Returns a positive integer if the root node has the given value in its
509 * compatible property.
511 int of_machine_is_compatible(const char *compat
)
513 struct device_node
*root
;
516 root
= of_find_node_by_path("/");
518 rc
= of_device_is_compatible(root
, compat
);
523 EXPORT_SYMBOL(of_machine_is_compatible
);
526 * __of_device_is_available - check if a device is available for use
528 * @device: Node to check for availability, with locks already held
530 * Returns true if the status property is absent or set to "okay" or "ok",
533 static bool __of_device_is_available(const struct device_node
*device
)
541 status
= __of_get_property(device
, "status", &statlen
);
546 if (!strcmp(status
, "okay") || !strcmp(status
, "ok"))
554 * of_device_is_available - check if a device is available for use
556 * @device: Node to check for availability
558 * Returns true if the status property is absent or set to "okay" or "ok",
561 bool of_device_is_available(const struct device_node
*device
)
566 raw_spin_lock_irqsave(&devtree_lock
, flags
);
567 res
= __of_device_is_available(device
);
568 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
572 EXPORT_SYMBOL(of_device_is_available
);
575 * of_device_is_big_endian - check if a device has BE registers
577 * @device: Node to check for endianness
579 * Returns true if the device has a "big-endian" property, or if the kernel
580 * was compiled for BE *and* the device has a "native-endian" property.
581 * Returns false otherwise.
583 * Callers would nominally use ioread32be/iowrite32be if
584 * of_device_is_big_endian() == true, or readl/writel otherwise.
586 bool of_device_is_big_endian(const struct device_node
*device
)
588 if (of_property_read_bool(device
, "big-endian"))
590 if (IS_ENABLED(CONFIG_CPU_BIG_ENDIAN
) &&
591 of_property_read_bool(device
, "native-endian"))
595 EXPORT_SYMBOL(of_device_is_big_endian
);
598 * of_get_parent - Get a node's parent if any
599 * @node: Node to get parent
601 * Returns a node pointer with refcount incremented, use
602 * of_node_put() on it when done.
604 struct device_node
*of_get_parent(const struct device_node
*node
)
606 struct device_node
*np
;
612 raw_spin_lock_irqsave(&devtree_lock
, flags
);
613 np
= of_node_get(node
->parent
);
614 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
617 EXPORT_SYMBOL(of_get_parent
);
620 * of_get_next_parent - Iterate to a node's parent
621 * @node: Node to get parent of
623 * This is like of_get_parent() except that it drops the
624 * refcount on the passed node, making it suitable for iterating
625 * through a node's parents.
627 * Returns a node pointer with refcount incremented, use
628 * of_node_put() on it when done.
630 struct device_node
*of_get_next_parent(struct device_node
*node
)
632 struct device_node
*parent
;
638 raw_spin_lock_irqsave(&devtree_lock
, flags
);
639 parent
= of_node_get(node
->parent
);
641 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
644 EXPORT_SYMBOL(of_get_next_parent
);
646 static struct device_node
*__of_get_next_child(const struct device_node
*node
,
647 struct device_node
*prev
)
649 struct device_node
*next
;
654 next
= prev
? prev
->sibling
: node
->child
;
655 for (; next
; next
= next
->sibling
)
656 if (of_node_get(next
))
661 #define __for_each_child_of_node(parent, child) \
662 for (child = __of_get_next_child(parent, NULL); child != NULL; \
663 child = __of_get_next_child(parent, child))
666 * of_get_next_child - Iterate a node childs
668 * @prev: previous child of the parent node, or NULL to get first
670 * Returns a node pointer with refcount incremented, use of_node_put() on
671 * it when done. Returns NULL when prev is the last child. Decrements the
674 struct device_node
*of_get_next_child(const struct device_node
*node
,
675 struct device_node
*prev
)
677 struct device_node
*next
;
680 raw_spin_lock_irqsave(&devtree_lock
, flags
);
681 next
= __of_get_next_child(node
, prev
);
682 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
685 EXPORT_SYMBOL(of_get_next_child
);
688 * of_get_next_available_child - Find the next available child node
690 * @prev: previous child of the parent node, or NULL to get first
692 * This function is like of_get_next_child(), except that it
693 * automatically skips any disabled nodes (i.e. status = "disabled").
695 struct device_node
*of_get_next_available_child(const struct device_node
*node
,
696 struct device_node
*prev
)
698 struct device_node
*next
;
704 raw_spin_lock_irqsave(&devtree_lock
, flags
);
705 next
= prev
? prev
->sibling
: node
->child
;
706 for (; next
; next
= next
->sibling
) {
707 if (!__of_device_is_available(next
))
709 if (of_node_get(next
))
713 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
716 EXPORT_SYMBOL(of_get_next_available_child
);
719 * of_get_child_by_name - Find the child node by name for a given parent
721 * @name: child name to look for.
723 * This function looks for child node for given matching name
725 * Returns a node pointer if found, with refcount incremented, use
726 * of_node_put() on it when done.
727 * Returns NULL if node is not found.
729 struct device_node
*of_get_child_by_name(const struct device_node
*node
,
732 struct device_node
*child
;
734 for_each_child_of_node(node
, child
)
735 if (child
->name
&& (of_node_cmp(child
->name
, name
) == 0))
739 EXPORT_SYMBOL(of_get_child_by_name
);
741 static struct device_node
*__of_find_node_by_path(struct device_node
*parent
,
744 struct device_node
*child
;
747 len
= strcspn(path
, "/:");
751 __for_each_child_of_node(parent
, child
) {
752 const char *name
= strrchr(child
->full_name
, '/');
753 if (WARN(!name
, "malformed device_node %s\n", child
->full_name
))
756 if (strncmp(path
, name
, len
) == 0 && (strlen(name
) == len
))
763 * of_find_node_opts_by_path - Find a node matching a full OF path
764 * @path: Either the full path to match, or if the path does not
765 * start with '/', the name of a property of the /aliases
766 * node (an alias). In the case of an alias, the node
767 * matching the alias' value will be returned.
768 * @opts: Address of a pointer into which to store the start of
769 * an options string appended to the end of the path with
775 * foo/bar Valid alias + relative path
777 * Returns a node pointer with refcount incremented, use
778 * of_node_put() on it when done.
780 struct device_node
*of_find_node_opts_by_path(const char *path
, const char **opts
)
782 struct device_node
*np
= NULL
;
785 const char *separator
= strchr(path
, ':');
788 *opts
= separator
? separator
+ 1 : NULL
;
790 if (strcmp(path
, "/") == 0)
791 return of_node_get(of_root
);
793 /* The path could begin with an alias */
796 const char *p
= separator
;
799 p
= strchrnul(path
, '/');
802 /* of_aliases must not be NULL */
806 for_each_property_of_node(of_aliases
, pp
) {
807 if (strlen(pp
->name
) == len
&& !strncmp(pp
->name
, path
, len
)) {
808 np
= of_find_node_by_path(pp
->value
);
817 /* Step down the tree matching path components */
818 raw_spin_lock_irqsave(&devtree_lock
, flags
);
820 np
= of_node_get(of_root
);
821 while (np
&& *path
== '/') {
822 path
++; /* Increment past '/' delimiter */
823 np
= __of_find_node_by_path(np
, path
);
824 path
= strchrnul(path
, '/');
825 if (separator
&& separator
< path
)
828 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
831 EXPORT_SYMBOL(of_find_node_opts_by_path
);
834 * of_find_node_by_name - Find a node by its "name" property
835 * @from: The node to start searching from or NULL, the node
836 * you pass will not be searched, only the next one
837 * will; typically, you pass what the previous call
838 * returned. of_node_put() will be called on it
839 * @name: The name string to match against
841 * Returns a node pointer with refcount incremented, use
842 * of_node_put() on it when done.
844 struct device_node
*of_find_node_by_name(struct device_node
*from
,
847 struct device_node
*np
;
850 raw_spin_lock_irqsave(&devtree_lock
, flags
);
851 for_each_of_allnodes_from(from
, np
)
852 if (np
->name
&& (of_node_cmp(np
->name
, name
) == 0)
856 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
859 EXPORT_SYMBOL(of_find_node_by_name
);
862 * of_find_node_by_type - Find a node by its "device_type" property
863 * @from: The node to start searching from, or NULL to start searching
864 * the entire device tree. The node you pass will not be
865 * searched, only the next one will; typically, you pass
866 * what the previous call returned. of_node_put() will be
867 * called on from for you.
868 * @type: The type string to match against
870 * Returns a node pointer with refcount incremented, use
871 * of_node_put() on it when done.
873 struct device_node
*of_find_node_by_type(struct device_node
*from
,
876 struct device_node
*np
;
879 raw_spin_lock_irqsave(&devtree_lock
, flags
);
880 for_each_of_allnodes_from(from
, np
)
881 if (np
->type
&& (of_node_cmp(np
->type
, type
) == 0)
885 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
888 EXPORT_SYMBOL(of_find_node_by_type
);
891 * of_find_compatible_node - Find a node based on type and one of the
892 * tokens in its "compatible" property
893 * @from: The node to start searching from or NULL, the node
894 * you pass will not be searched, only the next one
895 * will; typically, you pass what the previous call
896 * returned. of_node_put() will be called on it
897 * @type: The type string to match "device_type" or NULL to ignore
898 * @compatible: The string to match to one of the tokens in the device
901 * Returns a node pointer with refcount incremented, use
902 * of_node_put() on it when done.
904 struct device_node
*of_find_compatible_node(struct device_node
*from
,
905 const char *type
, const char *compatible
)
907 struct device_node
*np
;
910 raw_spin_lock_irqsave(&devtree_lock
, flags
);
911 for_each_of_allnodes_from(from
, np
)
912 if (__of_device_is_compatible(np
, compatible
, type
, NULL
) &&
916 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
919 EXPORT_SYMBOL(of_find_compatible_node
);
922 * of_find_node_with_property - Find a node which has a property with
924 * @from: The node to start searching from or NULL, the node
925 * you pass will not be searched, only the next one
926 * will; typically, you pass what the previous call
927 * returned. of_node_put() will be called on it
928 * @prop_name: The name of the property to look for.
930 * Returns a node pointer with refcount incremented, use
931 * of_node_put() on it when done.
933 struct device_node
*of_find_node_with_property(struct device_node
*from
,
934 const char *prop_name
)
936 struct device_node
*np
;
940 raw_spin_lock_irqsave(&devtree_lock
, flags
);
941 for_each_of_allnodes_from(from
, np
) {
942 for (pp
= np
->properties
; pp
; pp
= pp
->next
) {
943 if (of_prop_cmp(pp
->name
, prop_name
) == 0) {
951 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
954 EXPORT_SYMBOL(of_find_node_with_property
);
957 const struct of_device_id
*__of_match_node(const struct of_device_id
*matches
,
958 const struct device_node
*node
)
960 const struct of_device_id
*best_match
= NULL
;
961 int score
, best_score
= 0;
966 for (; matches
->name
[0] || matches
->type
[0] || matches
->compatible
[0]; matches
++) {
967 score
= __of_device_is_compatible(node
, matches
->compatible
,
968 matches
->type
, matches
->name
);
969 if (score
> best_score
) {
970 best_match
= matches
;
979 * of_match_node - Tell if a device_node has a matching of_match structure
980 * @matches: array of of device match structures to search in
981 * @node: the of device structure to match against
983 * Low level utility function used by device matching.
985 const struct of_device_id
*of_match_node(const struct of_device_id
*matches
,
986 const struct device_node
*node
)
988 const struct of_device_id
*match
;
991 raw_spin_lock_irqsave(&devtree_lock
, flags
);
992 match
= __of_match_node(matches
, node
);
993 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
996 EXPORT_SYMBOL(of_match_node
);
999 * of_find_matching_node_and_match - Find a node based on an of_device_id
1001 * @from: The node to start searching from or NULL, the node
1002 * you pass will not be searched, only the next one
1003 * will; typically, you pass what the previous call
1004 * returned. of_node_put() will be called on it
1005 * @matches: array of of device match structures to search in
1006 * @match Updated to point at the matches entry which matched
1008 * Returns a node pointer with refcount incremented, use
1009 * of_node_put() on it when done.
1011 struct device_node
*of_find_matching_node_and_match(struct device_node
*from
,
1012 const struct of_device_id
*matches
,
1013 const struct of_device_id
**match
)
1015 struct device_node
*np
;
1016 const struct of_device_id
*m
;
1017 unsigned long flags
;
1022 raw_spin_lock_irqsave(&devtree_lock
, flags
);
1023 for_each_of_allnodes_from(from
, np
) {
1024 m
= __of_match_node(matches
, np
);
1025 if (m
&& of_node_get(np
)) {
1032 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
1035 EXPORT_SYMBOL(of_find_matching_node_and_match
);
1038 * of_modalias_node - Lookup appropriate modalias for a device node
1039 * @node: pointer to a device tree node
1040 * @modalias: Pointer to buffer that modalias value will be copied into
1041 * @len: Length of modalias value
1043 * Based on the value of the compatible property, this routine will attempt
1044 * to choose an appropriate modalias value for a particular device tree node.
1045 * It does this by stripping the manufacturer prefix (as delimited by a ',')
1046 * from the first entry in the compatible list property.
1048 * This routine returns 0 on success, <0 on failure.
1050 int of_modalias_node(struct device_node
*node
, char *modalias
, int len
)
1052 const char *compatible
, *p
;
1055 compatible
= of_get_property(node
, "compatible", &cplen
);
1056 if (!compatible
|| strlen(compatible
) > cplen
)
1058 p
= strchr(compatible
, ',');
1059 strlcpy(modalias
, p
? p
+ 1 : compatible
, len
);
1062 EXPORT_SYMBOL_GPL(of_modalias_node
);
1065 * of_find_node_by_phandle - Find a node given a phandle
1066 * @handle: phandle of the node to find
1068 * Returns a node pointer with refcount incremented, use
1069 * of_node_put() on it when done.
1071 struct device_node
*of_find_node_by_phandle(phandle handle
)
1073 struct device_node
*np
;
1074 unsigned long flags
;
1079 raw_spin_lock_irqsave(&devtree_lock
, flags
);
1080 for_each_of_allnodes(np
)
1081 if (np
->phandle
== handle
)
1084 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
1087 EXPORT_SYMBOL(of_find_node_by_phandle
);
1090 * of_property_count_elems_of_size - Count the number of elements in a property
1092 * @np: device node from which the property value is to be read.
1093 * @propname: name of the property to be searched.
1094 * @elem_size: size of the individual element
1096 * Search for a property in a device node and count the number of elements of
1097 * size elem_size in it. Returns number of elements on sucess, -EINVAL if the
1098 * property does not exist or its length does not match a multiple of elem_size
1099 * and -ENODATA if the property does not have a value.
1101 int of_property_count_elems_of_size(const struct device_node
*np
,
1102 const char *propname
, int elem_size
)
1104 struct property
*prop
= of_find_property(np
, propname
, NULL
);
1111 if (prop
->length
% elem_size
!= 0) {
1112 pr_err("size of %s in node %s is not a multiple of %d\n",
1113 propname
, np
->full_name
, elem_size
);
1117 return prop
->length
/ elem_size
;
1119 EXPORT_SYMBOL_GPL(of_property_count_elems_of_size
);
1122 * of_find_property_value_of_size
1124 * @np: device node from which the property value is to be read.
1125 * @propname: name of the property to be searched.
1126 * @len: requested length of property value
1128 * Search for a property in a device node and valid the requested size.
1129 * Returns the property value on success, -EINVAL if the property does not
1130 * exist, -ENODATA if property does not have a value, and -EOVERFLOW if the
1131 * property data isn't large enough.
1134 static void *of_find_property_value_of_size(const struct device_node
*np
,
1135 const char *propname
, u32 len
)
1137 struct property
*prop
= of_find_property(np
, propname
, NULL
);
1140 return ERR_PTR(-EINVAL
);
1142 return ERR_PTR(-ENODATA
);
1143 if (len
> prop
->length
)
1144 return ERR_PTR(-EOVERFLOW
);
1150 * of_property_read_u32_index - Find and read a u32 from a multi-value property.
1152 * @np: device node from which the property value is to be read.
1153 * @propname: name of the property to be searched.
1154 * @index: index of the u32 in the list of values
1155 * @out_value: pointer to return value, modified only if no error.
1157 * Search for a property in a device node and read nth 32-bit value from
1158 * it. Returns 0 on success, -EINVAL if the property does not exist,
1159 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1160 * property data isn't large enough.
1162 * The out_value is modified only if a valid u32 value can be decoded.
1164 int of_property_read_u32_index(const struct device_node
*np
,
1165 const char *propname
,
1166 u32 index
, u32
*out_value
)
1168 const u32
*val
= of_find_property_value_of_size(np
, propname
,
1169 ((index
+ 1) * sizeof(*out_value
)));
1172 return PTR_ERR(val
);
1174 *out_value
= be32_to_cpup(((__be32
*)val
) + index
);
1177 EXPORT_SYMBOL_GPL(of_property_read_u32_index
);
1180 * of_property_read_u8_array - Find and read an array of u8 from a property.
1182 * @np: device node from which the property value is to be read.
1183 * @propname: name of the property to be searched.
1184 * @out_values: pointer to return value, modified only if return value is 0.
1185 * @sz: number of array elements to read
1187 * Search for a property in a device node and read 8-bit value(s) from
1188 * it. Returns 0 on success, -EINVAL if the property does not exist,
1189 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1190 * property data isn't large enough.
1192 * dts entry of array should be like:
1193 * property = /bits/ 8 <0x50 0x60 0x70>;
1195 * The out_values is modified only if a valid u8 value can be decoded.
1197 int of_property_read_u8_array(const struct device_node
*np
,
1198 const char *propname
, u8
*out_values
, size_t sz
)
1200 const u8
*val
= of_find_property_value_of_size(np
, propname
,
1201 (sz
* sizeof(*out_values
)));
1204 return PTR_ERR(val
);
1207 *out_values
++ = *val
++;
1210 EXPORT_SYMBOL_GPL(of_property_read_u8_array
);
1213 * of_property_read_u16_array - Find and read an array of u16 from a property.
1215 * @np: device node from which the property value is to be read.
1216 * @propname: name of the property to be searched.
1217 * @out_values: pointer to return value, modified only if return value is 0.
1218 * @sz: number of array elements to read
1220 * Search for a property in a device node and read 16-bit value(s) from
1221 * it. Returns 0 on success, -EINVAL if the property does not exist,
1222 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1223 * property data isn't large enough.
1225 * dts entry of array should be like:
1226 * property = /bits/ 16 <0x5000 0x6000 0x7000>;
1228 * The out_values is modified only if a valid u16 value can be decoded.
1230 int of_property_read_u16_array(const struct device_node
*np
,
1231 const char *propname
, u16
*out_values
, size_t sz
)
1233 const __be16
*val
= of_find_property_value_of_size(np
, propname
,
1234 (sz
* sizeof(*out_values
)));
1237 return PTR_ERR(val
);
1240 *out_values
++ = be16_to_cpup(val
++);
1243 EXPORT_SYMBOL_GPL(of_property_read_u16_array
);
1246 * of_property_read_u32_array - Find and read an array of 32 bit integers
1249 * @np: device node from which the property value is to be read.
1250 * @propname: name of the property to be searched.
1251 * @out_values: pointer to return value, modified only if return value is 0.
1252 * @sz: number of array elements to read
1254 * Search for a property in a device node and read 32-bit value(s) from
1255 * it. Returns 0 on success, -EINVAL if the property does not exist,
1256 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1257 * property data isn't large enough.
1259 * The out_values is modified only if a valid u32 value can be decoded.
1261 int of_property_read_u32_array(const struct device_node
*np
,
1262 const char *propname
, u32
*out_values
,
1265 const __be32
*val
= of_find_property_value_of_size(np
, propname
,
1266 (sz
* sizeof(*out_values
)));
1269 return PTR_ERR(val
);
1272 *out_values
++ = be32_to_cpup(val
++);
1275 EXPORT_SYMBOL_GPL(of_property_read_u32_array
);
1278 * of_property_read_u64 - Find and read a 64 bit integer from a property
1279 * @np: device node from which the property value is to be read.
1280 * @propname: name of the property to be searched.
1281 * @out_value: pointer to return value, modified only if return value is 0.
1283 * Search for a property in a device node and read a 64-bit value from
1284 * it. Returns 0 on success, -EINVAL if the property does not exist,
1285 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1286 * property data isn't large enough.
1288 * The out_value is modified only if a valid u64 value can be decoded.
1290 int of_property_read_u64(const struct device_node
*np
, const char *propname
,
1293 const __be32
*val
= of_find_property_value_of_size(np
, propname
,
1294 sizeof(*out_value
));
1297 return PTR_ERR(val
);
1299 *out_value
= of_read_number(val
, 2);
1302 EXPORT_SYMBOL_GPL(of_property_read_u64
);
1305 * of_property_read_u64_array - Find and read an array of 64 bit integers
1308 * @np: device node from which the property value is to be read.
1309 * @propname: name of the property to be searched.
1310 * @out_values: pointer to return value, modified only if return value is 0.
1311 * @sz: number of array elements to read
1313 * Search for a property in a device node and read 64-bit value(s) from
1314 * it. Returns 0 on success, -EINVAL if the property does not exist,
1315 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1316 * property data isn't large enough.
1318 * The out_values is modified only if a valid u64 value can be decoded.
1320 int of_property_read_u64_array(const struct device_node
*np
,
1321 const char *propname
, u64
*out_values
,
1324 const __be32
*val
= of_find_property_value_of_size(np
, propname
,
1325 (sz
* sizeof(*out_values
)));
1328 return PTR_ERR(val
);
1331 *out_values
++ = of_read_number(val
, 2);
1336 EXPORT_SYMBOL_GPL(of_property_read_u64_array
);
1339 * of_property_read_string - Find and read a string from a property
1340 * @np: device node from which the property value is to be read.
1341 * @propname: name of the property to be searched.
1342 * @out_string: pointer to null terminated return string, modified only if
1343 * return value is 0.
1345 * Search for a property in a device tree node and retrieve a null
1346 * terminated string value (pointer to data, not a copy). Returns 0 on
1347 * success, -EINVAL if the property does not exist, -ENODATA if property
1348 * does not have a value, and -EILSEQ if the string is not null-terminated
1349 * within the length of the property data.
1351 * The out_string pointer is modified only if a valid string can be decoded.
1353 int of_property_read_string(struct device_node
*np
, const char *propname
,
1354 const char **out_string
)
1356 struct property
*prop
= of_find_property(np
, propname
, NULL
);
1361 if (strnlen(prop
->value
, prop
->length
) >= prop
->length
)
1363 *out_string
= prop
->value
;
1366 EXPORT_SYMBOL_GPL(of_property_read_string
);
1369 * of_property_match_string() - Find string in a list and return index
1370 * @np: pointer to node containing string list property
1371 * @propname: string list property name
1372 * @string: pointer to string to search for in string list
1374 * This function searches a string list property and returns the index
1375 * of a specific string value.
1377 int of_property_match_string(struct device_node
*np
, const char *propname
,
1380 struct property
*prop
= of_find_property(np
, propname
, NULL
);
1383 const char *p
, *end
;
1391 end
= p
+ prop
->length
;
1393 for (i
= 0; p
< end
; i
++, p
+= l
) {
1394 l
= strnlen(p
, end
- p
) + 1;
1397 pr_debug("comparing %s with %s\n", string
, p
);
1398 if (strcmp(string
, p
) == 0)
1399 return i
; /* Found it; return index */
1403 EXPORT_SYMBOL_GPL(of_property_match_string
);
1406 * of_property_read_string_helper() - Utility helper for parsing string properties
1407 * @np: device node from which the property value is to be read.
1408 * @propname: name of the property to be searched.
1409 * @out_strs: output array of string pointers.
1410 * @sz: number of array elements to read.
1411 * @skip: Number of strings to skip over at beginning of list.
1413 * Don't call this function directly. It is a utility helper for the
1414 * of_property_read_string*() family of functions.
1416 int of_property_read_string_helper(struct device_node
*np
, const char *propname
,
1417 const char **out_strs
, size_t sz
, int skip
)
1419 struct property
*prop
= of_find_property(np
, propname
, NULL
);
1421 const char *p
, *end
;
1428 end
= p
+ prop
->length
;
1430 for (i
= 0; p
< end
&& (!out_strs
|| i
< skip
+ sz
); i
++, p
+= l
) {
1431 l
= strnlen(p
, end
- p
) + 1;
1434 if (out_strs
&& i
>= skip
)
1438 return i
<= 0 ? -ENODATA
: i
;
1440 EXPORT_SYMBOL_GPL(of_property_read_string_helper
);
1442 void of_print_phandle_args(const char *msg
, const struct of_phandle_args
*args
)
1445 printk("%s %s", msg
, of_node_full_name(args
->np
));
1446 for (i
= 0; i
< args
->args_count
; i
++)
1447 printk(i
? ",%08x" : ":%08x", args
->args
[i
]);
1451 static int __of_parse_phandle_with_args(const struct device_node
*np
,
1452 const char *list_name
,
1453 const char *cells_name
,
1454 int cell_count
, int index
,
1455 struct of_phandle_args
*out_args
)
1457 const __be32
*list
, *list_end
;
1458 int rc
= 0, size
, cur_index
= 0;
1460 struct device_node
*node
= NULL
;
1463 /* Retrieve the phandle list property */
1464 list
= of_get_property(np
, list_name
, &size
);
1467 list_end
= list
+ size
/ sizeof(*list
);
1469 /* Loop over the phandles until all the requested entry is found */
1470 while (list
< list_end
) {
1475 * If phandle is 0, then it is an empty entry with no
1476 * arguments. Skip forward to the next entry.
1478 phandle
= be32_to_cpup(list
++);
1481 * Find the provider node and parse the #*-cells
1482 * property to determine the argument length.
1484 * This is not needed if the cell count is hard-coded
1485 * (i.e. cells_name not set, but cell_count is set),
1486 * except when we're going to return the found node
1489 if (cells_name
|| cur_index
== index
) {
1490 node
= of_find_node_by_phandle(phandle
);
1492 pr_err("%s: could not find phandle\n",
1499 if (of_property_read_u32(node
, cells_name
,
1501 pr_err("%s: could not get %s for %s\n",
1502 np
->full_name
, cells_name
,
1511 * Make sure that the arguments actually fit in the
1512 * remaining property data length
1514 if (list
+ count
> list_end
) {
1515 pr_err("%s: arguments longer than property\n",
1522 * All of the error cases above bail out of the loop, so at
1523 * this point, the parsing is successful. If the requested
1524 * index matches, then fill the out_args structure and return,
1525 * or return -ENOENT for an empty entry.
1528 if (cur_index
== index
) {
1534 if (WARN_ON(count
> MAX_PHANDLE_ARGS
))
1535 count
= MAX_PHANDLE_ARGS
;
1536 out_args
->np
= node
;
1537 out_args
->args_count
= count
;
1538 for (i
= 0; i
< count
; i
++)
1539 out_args
->args
[i
] = be32_to_cpup(list
++);
1544 /* Found it! return success */
1555 * Unlock node before returning result; will be one of:
1556 * -ENOENT : index is for empty phandle
1557 * -EINVAL : parsing error on data
1558 * [1..n] : Number of phandle (count mode; when index = -1)
1560 rc
= index
< 0 ? cur_index
: -ENOENT
;
1568 * of_parse_phandle - Resolve a phandle property to a device_node pointer
1569 * @np: Pointer to device node holding phandle property
1570 * @phandle_name: Name of property holding a phandle value
1571 * @index: For properties holding a table of phandles, this is the index into
1574 * Returns the device_node pointer with refcount incremented. Use
1575 * of_node_put() on it when done.
1577 struct device_node
*of_parse_phandle(const struct device_node
*np
,
1578 const char *phandle_name
, int index
)
1580 struct of_phandle_args args
;
1585 if (__of_parse_phandle_with_args(np
, phandle_name
, NULL
, 0,
1591 EXPORT_SYMBOL(of_parse_phandle
);
1594 * of_parse_phandle_with_args() - Find a node pointed by phandle in a list
1595 * @np: pointer to a device tree node containing a list
1596 * @list_name: property name that contains a list
1597 * @cells_name: property name that specifies phandles' arguments count
1598 * @index: index of a phandle to parse out
1599 * @out_args: optional pointer to output arguments structure (will be filled)
1601 * This function is useful to parse lists of phandles and their arguments.
1602 * Returns 0 on success and fills out_args, on error returns appropriate
1605 * Caller is responsible to call of_node_put() on the returned out_args->np
1611 * #list-cells = <2>;
1615 * #list-cells = <1>;
1619 * list = <&phandle1 1 2 &phandle2 3>;
1622 * To get a device_node of the `node2' node you may call this:
1623 * of_parse_phandle_with_args(node3, "list", "#list-cells", 1, &args);
1625 int of_parse_phandle_with_args(const struct device_node
*np
, const char *list_name
,
1626 const char *cells_name
, int index
,
1627 struct of_phandle_args
*out_args
)
1631 return __of_parse_phandle_with_args(np
, list_name
, cells_name
, 0,
1634 EXPORT_SYMBOL(of_parse_phandle_with_args
);
1637 * of_parse_phandle_with_fixed_args() - Find a node pointed by phandle in a list
1638 * @np: pointer to a device tree node containing a list
1639 * @list_name: property name that contains a list
1640 * @cell_count: number of argument cells following the phandle
1641 * @index: index of a phandle to parse out
1642 * @out_args: optional pointer to output arguments structure (will be filled)
1644 * This function is useful to parse lists of phandles and their arguments.
1645 * Returns 0 on success and fills out_args, on error returns appropriate
1648 * Caller is responsible to call of_node_put() on the returned out_args->np
1660 * list = <&phandle1 0 2 &phandle2 2 3>;
1663 * To get a device_node of the `node2' node you may call this:
1664 * of_parse_phandle_with_fixed_args(node3, "list", 2, 1, &args);
1666 int of_parse_phandle_with_fixed_args(const struct device_node
*np
,
1667 const char *list_name
, int cell_count
,
1668 int index
, struct of_phandle_args
*out_args
)
1672 return __of_parse_phandle_with_args(np
, list_name
, NULL
, cell_count
,
1675 EXPORT_SYMBOL(of_parse_phandle_with_fixed_args
);
1678 * of_count_phandle_with_args() - Find the number of phandles references in a property
1679 * @np: pointer to a device tree node containing a list
1680 * @list_name: property name that contains a list
1681 * @cells_name: property name that specifies phandles' arguments count
1683 * Returns the number of phandle + argument tuples within a property. It
1684 * is a typical pattern to encode a list of phandle and variable
1685 * arguments into a single property. The number of arguments is encoded
1686 * by a property in the phandle-target node. For example, a gpios
1687 * property would contain a list of GPIO specifies consisting of a
1688 * phandle and 1 or more arguments. The number of arguments are
1689 * determined by the #gpio-cells property in the node pointed to by the
1692 int of_count_phandle_with_args(const struct device_node
*np
, const char *list_name
,
1693 const char *cells_name
)
1695 return __of_parse_phandle_with_args(np
, list_name
, cells_name
, 0, -1,
1698 EXPORT_SYMBOL(of_count_phandle_with_args
);
1701 * __of_add_property - Add a property to a node without lock operations
1703 int __of_add_property(struct device_node
*np
, struct property
*prop
)
1705 struct property
**next
;
1708 next
= &np
->properties
;
1710 if (strcmp(prop
->name
, (*next
)->name
) == 0)
1711 /* duplicate ! don't insert it */
1714 next
= &(*next
)->next
;
1722 * of_add_property - Add a property to a node
1724 int of_add_property(struct device_node
*np
, struct property
*prop
)
1726 unsigned long flags
;
1729 mutex_lock(&of_mutex
);
1731 raw_spin_lock_irqsave(&devtree_lock
, flags
);
1732 rc
= __of_add_property(np
, prop
);
1733 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
1736 __of_add_property_sysfs(np
, prop
);
1738 mutex_unlock(&of_mutex
);
1741 of_property_notify(OF_RECONFIG_ADD_PROPERTY
, np
, prop
, NULL
);
1746 int __of_remove_property(struct device_node
*np
, struct property
*prop
)
1748 struct property
**next
;
1750 for (next
= &np
->properties
; *next
; next
= &(*next
)->next
) {
1757 /* found the node */
1759 prop
->next
= np
->deadprops
;
1760 np
->deadprops
= prop
;
1765 void __of_sysfs_remove_bin_file(struct device_node
*np
, struct property
*prop
)
1767 sysfs_remove_bin_file(&np
->kobj
, &prop
->attr
);
1768 kfree(prop
->attr
.attr
.name
);
1771 void __of_remove_property_sysfs(struct device_node
*np
, struct property
*prop
)
1773 if (!IS_ENABLED(CONFIG_SYSFS
))
1776 /* at early boot, bail here and defer setup to of_init() */
1777 if (of_kset
&& of_node_is_attached(np
))
1778 __of_sysfs_remove_bin_file(np
, prop
);
1782 * of_remove_property - Remove a property from a node.
1784 * Note that we don't actually remove it, since we have given out
1785 * who-knows-how-many pointers to the data using get-property.
1786 * Instead we just move the property to the "dead properties"
1787 * list, so it won't be found any more.
1789 int of_remove_property(struct device_node
*np
, struct property
*prop
)
1791 unsigned long flags
;
1794 mutex_lock(&of_mutex
);
1796 raw_spin_lock_irqsave(&devtree_lock
, flags
);
1797 rc
= __of_remove_property(np
, prop
);
1798 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
1801 __of_remove_property_sysfs(np
, prop
);
1803 mutex_unlock(&of_mutex
);
1806 of_property_notify(OF_RECONFIG_REMOVE_PROPERTY
, np
, prop
, NULL
);
1811 int __of_update_property(struct device_node
*np
, struct property
*newprop
,
1812 struct property
**oldpropp
)
1814 struct property
**next
, *oldprop
;
1816 for (next
= &np
->properties
; *next
; next
= &(*next
)->next
) {
1817 if (of_prop_cmp((*next
)->name
, newprop
->name
) == 0)
1820 *oldpropp
= oldprop
= *next
;
1823 /* replace the node */
1824 newprop
->next
= oldprop
->next
;
1826 oldprop
->next
= np
->deadprops
;
1827 np
->deadprops
= oldprop
;
1830 newprop
->next
= NULL
;
1837 void __of_update_property_sysfs(struct device_node
*np
, struct property
*newprop
,
1838 struct property
*oldprop
)
1840 if (!IS_ENABLED(CONFIG_SYSFS
))
1843 /* At early boot, bail out and defer setup to of_init() */
1848 __of_sysfs_remove_bin_file(np
, oldprop
);
1849 __of_add_property_sysfs(np
, newprop
);
1853 * of_update_property - Update a property in a node, if the property does
1854 * not exist, add it.
1856 * Note that we don't actually remove it, since we have given out
1857 * who-knows-how-many pointers to the data using get-property.
1858 * Instead we just move the property to the "dead properties" list,
1859 * and add the new property to the property list
1861 int of_update_property(struct device_node
*np
, struct property
*newprop
)
1863 struct property
*oldprop
;
1864 unsigned long flags
;
1870 mutex_lock(&of_mutex
);
1872 raw_spin_lock_irqsave(&devtree_lock
, flags
);
1873 rc
= __of_update_property(np
, newprop
, &oldprop
);
1874 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
1877 __of_update_property_sysfs(np
, newprop
, oldprop
);
1879 mutex_unlock(&of_mutex
);
1882 of_property_notify(OF_RECONFIG_UPDATE_PROPERTY
, np
, newprop
, oldprop
);
1887 static void of_alias_add(struct alias_prop
*ap
, struct device_node
*np
,
1888 int id
, const char *stem
, int stem_len
)
1892 strncpy(ap
->stem
, stem
, stem_len
);
1893 ap
->stem
[stem_len
] = 0;
1894 list_add_tail(&ap
->link
, &aliases_lookup
);
1895 pr_debug("adding DT alias:%s: stem=%s id=%i node=%s\n",
1896 ap
->alias
, ap
->stem
, ap
->id
, of_node_full_name(np
));
1900 * of_alias_scan - Scan all properties of the 'aliases' node
1902 * The function scans all the properties of the 'aliases' node and populates
1903 * the global lookup table with the properties. It returns the
1904 * number of alias properties found, or an error code in case of failure.
1906 * @dt_alloc: An allocator that provides a virtual address to memory
1907 * for storing the resulting tree
1909 void of_alias_scan(void * (*dt_alloc
)(u64 size
, u64 align
))
1911 struct property
*pp
;
1913 of_aliases
= of_find_node_by_path("/aliases");
1914 of_chosen
= of_find_node_by_path("/chosen");
1915 if (of_chosen
== NULL
)
1916 of_chosen
= of_find_node_by_path("/chosen@0");
1919 /* linux,stdout-path and /aliases/stdout are for legacy compatibility */
1920 const char *name
= of_get_property(of_chosen
, "stdout-path", NULL
);
1922 name
= of_get_property(of_chosen
, "linux,stdout-path", NULL
);
1923 if (IS_ENABLED(CONFIG_PPC
) && !name
)
1924 name
= of_get_property(of_aliases
, "stdout", NULL
);
1926 of_stdout
= of_find_node_opts_by_path(name
, &of_stdout_options
);
1932 for_each_property_of_node(of_aliases
, pp
) {
1933 const char *start
= pp
->name
;
1934 const char *end
= start
+ strlen(start
);
1935 struct device_node
*np
;
1936 struct alias_prop
*ap
;
1939 /* Skip those we do not want to proceed */
1940 if (!strcmp(pp
->name
, "name") ||
1941 !strcmp(pp
->name
, "phandle") ||
1942 !strcmp(pp
->name
, "linux,phandle"))
1945 np
= of_find_node_by_path(pp
->value
);
1949 /* walk the alias backwards to extract the id and work out
1950 * the 'stem' string */
1951 while (isdigit(*(end
-1)) && end
> start
)
1955 if (kstrtoint(end
, 10, &id
) < 0)
1958 /* Allocate an alias_prop with enough space for the stem */
1959 ap
= dt_alloc(sizeof(*ap
) + len
+ 1, 4);
1962 memset(ap
, 0, sizeof(*ap
) + len
+ 1);
1964 of_alias_add(ap
, np
, id
, start
, len
);
1969 * of_alias_get_id - Get alias id for the given device_node
1970 * @np: Pointer to the given device_node
1971 * @stem: Alias stem of the given device_node
1973 * The function travels the lookup table to get the alias id for the given
1974 * device_node and alias stem. It returns the alias id if found.
1976 int of_alias_get_id(struct device_node
*np
, const char *stem
)
1978 struct alias_prop
*app
;
1981 mutex_lock(&of_mutex
);
1982 list_for_each_entry(app
, &aliases_lookup
, link
) {
1983 if (strcmp(app
->stem
, stem
) != 0)
1986 if (np
== app
->np
) {
1991 mutex_unlock(&of_mutex
);
1995 EXPORT_SYMBOL_GPL(of_alias_get_id
);
1998 * of_alias_get_highest_id - Get highest alias id for the given stem
1999 * @stem: Alias stem to be examined
2001 * The function travels the lookup table to get the highest alias id for the
2002 * given alias stem. It returns the alias id if found.
2004 int of_alias_get_highest_id(const char *stem
)
2006 struct alias_prop
*app
;
2009 mutex_lock(&of_mutex
);
2010 list_for_each_entry(app
, &aliases_lookup
, link
) {
2011 if (strcmp(app
->stem
, stem
) != 0)
2017 mutex_unlock(&of_mutex
);
2021 EXPORT_SYMBOL_GPL(of_alias_get_highest_id
);
2023 const __be32
*of_prop_next_u32(struct property
*prop
, const __be32
*cur
,
2026 const void *curv
= cur
;
2036 curv
+= sizeof(*cur
);
2037 if (curv
>= prop
->value
+ prop
->length
)
2041 *pu
= be32_to_cpup(curv
);
2044 EXPORT_SYMBOL_GPL(of_prop_next_u32
);
2046 const char *of_prop_next_string(struct property
*prop
, const char *cur
)
2048 const void *curv
= cur
;
2056 curv
+= strlen(cur
) + 1;
2057 if (curv
>= prop
->value
+ prop
->length
)
2062 EXPORT_SYMBOL_GPL(of_prop_next_string
);
2065 * of_console_check() - Test and setup console for DT setup
2066 * @dn - Pointer to device node
2067 * @name - Name to use for preferred console without index. ex. "ttyS"
2068 * @index - Index to use for preferred console.
2070 * Check if the given device node matches the stdout-path property in the
2071 * /chosen node. If it does then register it as the preferred console and return
2072 * TRUE. Otherwise return FALSE.
2074 bool of_console_check(struct device_node
*dn
, char *name
, int index
)
2076 if (!dn
|| dn
!= of_stdout
|| console_set_on_cmdline
)
2078 return !add_preferred_console(name
, index
,
2079 kstrdup(of_stdout_options
, GFP_KERNEL
));
2081 EXPORT_SYMBOL_GPL(of_console_check
);
2084 * of_find_next_cache_node - Find a node's subsidiary cache
2085 * @np: node of type "cpu" or "cache"
2087 * Returns a node pointer with refcount incremented, use
2088 * of_node_put() on it when done. Caller should hold a reference
2091 struct device_node
*of_find_next_cache_node(const struct device_node
*np
)
2093 struct device_node
*child
;
2094 const phandle
*handle
;
2096 handle
= of_get_property(np
, "l2-cache", NULL
);
2098 handle
= of_get_property(np
, "next-level-cache", NULL
);
2101 return of_find_node_by_phandle(be32_to_cpup(handle
));
2103 /* OF on pmac has nodes instead of properties named "l2-cache"
2104 * beneath CPU nodes.
2106 if (!strcmp(np
->type
, "cpu"))
2107 for_each_child_of_node(np
, child
)
2108 if (!strcmp(child
->type
, "cache"))
2115 * of_graph_parse_endpoint() - parse common endpoint node properties
2116 * @node: pointer to endpoint device_node
2117 * @endpoint: pointer to the OF endpoint data structure
2119 * The caller should hold a reference to @node.
2121 int of_graph_parse_endpoint(const struct device_node
*node
,
2122 struct of_endpoint
*endpoint
)
2124 struct device_node
*port_node
= of_get_parent(node
);
2126 WARN_ONCE(!port_node
, "%s(): endpoint %s has no parent node\n",
2127 __func__
, node
->full_name
);
2129 memset(endpoint
, 0, sizeof(*endpoint
));
2131 endpoint
->local_node
= node
;
2133 * It doesn't matter whether the two calls below succeed.
2134 * If they don't then the default value 0 is used.
2136 of_property_read_u32(port_node
, "reg", &endpoint
->port
);
2137 of_property_read_u32(node
, "reg", &endpoint
->id
);
2139 of_node_put(port_node
);
2143 EXPORT_SYMBOL(of_graph_parse_endpoint
);
2146 * of_graph_get_port_by_id() - get the port matching a given id
2147 * @parent: pointer to the parent device node
2148 * @id: id of the port
2150 * Return: A 'port' node pointer with refcount incremented. The caller
2151 * has to use of_node_put() on it when done.
2153 struct device_node
*of_graph_get_port_by_id(struct device_node
*parent
, u32 id
)
2155 struct device_node
*node
, *port
;
2157 node
= of_get_child_by_name(parent
, "ports");
2161 for_each_child_of_node(parent
, port
) {
2164 if (of_node_cmp(port
->name
, "port") != 0)
2166 of_property_read_u32(port
, "reg", &port_id
);
2175 EXPORT_SYMBOL(of_graph_get_port_by_id
);
2178 * of_graph_get_next_endpoint() - get next endpoint node
2179 * @parent: pointer to the parent device node
2180 * @prev: previous endpoint node, or NULL to get first
2182 * Return: An 'endpoint' node pointer with refcount incremented. Refcount
2183 * of the passed @prev node is decremented.
2185 struct device_node
*of_graph_get_next_endpoint(const struct device_node
*parent
,
2186 struct device_node
*prev
)
2188 struct device_node
*endpoint
;
2189 struct device_node
*port
;
2195 * Start by locating the port node. If no previous endpoint is specified
2196 * search for the first port node, otherwise get the previous endpoint
2200 struct device_node
*node
;
2202 node
= of_get_child_by_name(parent
, "ports");
2206 port
= of_get_child_by_name(parent
, "port");
2210 pr_err("%s(): no port node found in %s\n",
2211 __func__
, parent
->full_name
);
2215 port
= of_get_parent(prev
);
2216 if (WARN_ONCE(!port
, "%s(): endpoint %s has no parent node\n",
2217 __func__
, prev
->full_name
))
2223 * Now that we have a port node, get the next endpoint by
2224 * getting the next child. If the previous endpoint is NULL this
2225 * will return the first child.
2227 endpoint
= of_get_next_child(port
, prev
);
2233 /* No more endpoints under this port, try the next one. */
2237 port
= of_get_next_child(parent
, port
);
2240 } while (of_node_cmp(port
->name
, "port"));
2243 EXPORT_SYMBOL(of_graph_get_next_endpoint
);
2246 * of_graph_get_remote_port_parent() - get remote port's parent node
2247 * @node: pointer to a local endpoint device_node
2249 * Return: Remote device node associated with remote endpoint node linked
2250 * to @node. Use of_node_put() on it when done.
2252 struct device_node
*of_graph_get_remote_port_parent(
2253 const struct device_node
*node
)
2255 struct device_node
*np
;
2258 /* Get remote endpoint node. */
2259 np
= of_parse_phandle(node
, "remote-endpoint", 0);
2261 /* Walk 3 levels up only if there is 'ports' node. */
2262 for (depth
= 3; depth
&& np
; depth
--) {
2263 np
= of_get_next_parent(np
);
2264 if (depth
== 2 && of_node_cmp(np
->name
, "ports"))
2269 EXPORT_SYMBOL(of_graph_get_remote_port_parent
);
2272 * of_graph_get_remote_port() - get remote port node
2273 * @node: pointer to a local endpoint device_node
2275 * Return: Remote port node associated with remote endpoint node linked
2276 * to @node. Use of_node_put() on it when done.
2278 struct device_node
*of_graph_get_remote_port(const struct device_node
*node
)
2280 struct device_node
*np
;
2282 /* Get remote endpoint node. */
2283 np
= of_parse_phandle(node
, "remote-endpoint", 0);
2286 return of_get_next_parent(np
);
2288 EXPORT_SYMBOL(of_graph_get_remote_port
);