gro: Allow tunnel stacking in the case of FOU/GUE
[linux/fpc-iii.git] / drivers / of / base.c
blob20f0b00dda05a8e7d46ce8706c6c5ccae5e7bc82
1 /*
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
13 * Grant Likely.
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>
24 #include <linux/of.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;
42 struct kset *of_kset;
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)
59 const __be32 *ip;
61 do {
62 if (np->parent)
63 np = np->parent;
64 ip = of_get_property(np, "#address-cells", NULL);
65 if (ip)
66 return be32_to_cpup(ip);
67 } while (np->parent);
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)
75 const __be32 *ip;
77 do {
78 if (np->parent)
79 np = np->parent;
80 ip = of_get_property(np, "#size-cells", NULL);
81 if (ip)
82 return be32_to_cpup(ip);
83 } while (np->parent);
84 /* No #size-cells property for the root node */
85 return OF_ROOT_NODE_SIZE_CELLS_DEFAULT;
87 EXPORT_SYMBOL(of_n_size_cells);
89 #ifdef CONFIG_NUMA
90 int __weak of_node_to_nid(struct device_node *np)
92 return NUMA_NO_NODE;
94 #endif
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;
120 int i = 0;
122 /* don't be a hero. After 16 tries give up */
123 while (i < 16 && (kn = sysfs_get_dirent(kobj->sd, name))) {
124 sysfs_put(kn);
125 if (name != orig_name)
126 kfree(name);
127 name = kasprintf(GFP_KERNEL, "%s#%i", orig_name, ++i);
130 if (name == orig_name) {
131 name = kstrdup(orig_name, GFP_KERNEL);
132 } else {
133 pr_warn("device-tree: Duplicate name in %s, renamed to \"%s\"\n",
134 kobject_name(kobj), name);
136 return name;
139 int __of_add_property_sysfs(struct device_node *np, struct property *pp)
141 int rc;
143 /* Important: Don't leak passwords */
144 bool secure = strncmp(pp->name, "security-", 9) == 0;
146 if (!IS_ENABLED(CONFIG_SYSFS))
147 return 0;
149 if (!of_kset || !of_node_is_attached(np))
150 return 0;
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);
160 return rc;
163 int __of_attach_node_sysfs(struct device_node *np)
165 const char *name;
166 struct kobject *parent;
167 struct property *pp;
168 int rc;
170 if (!IS_ENABLED(CONFIG_SYSFS))
171 return 0;
173 if (!of_kset)
174 return 0;
176 np->kobj.kset = of_kset;
177 if (!np->parent) {
178 /* Nodes without parents are new top level trees */
179 name = safe_name(&of_kset->kobj, "base");
180 parent = NULL;
181 } else {
182 name = safe_name(&np->parent->kobj, kbasename(np->full_name));
183 parent = &np->parent->kobj;
185 if (!name)
186 return -ENOMEM;
187 rc = kobject_add(&np->kobj, parent, "%s", name);
188 kfree(name);
189 if (rc)
190 return rc;
192 for_each_property_of_node(np, pp)
193 __of_add_property_sysfs(np, pp);
195 return 0;
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);
205 if (!of_kset) {
206 mutex_unlock(&of_mutex);
207 pr_err("devicetree: failed to register existing nodes\n");
208 return;
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 */
215 if (of_root)
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)
222 struct property *pp;
224 if (!np)
225 return NULL;
227 for (pp = np->properties; pp; pp = pp->next) {
228 if (of_prop_cmp(pp->name, name) == 0) {
229 if (lenp)
230 *lenp = pp->length;
231 break;
235 return pp;
238 struct property *of_find_property(const struct device_node *np,
239 const char *name,
240 int *lenp)
242 struct property *pp;
243 unsigned long flags;
245 raw_spin_lock_irqsave(&devtree_lock, flags);
246 pp = __of_find_property(np, name, lenp);
247 raw_spin_unlock_irqrestore(&devtree_lock, flags);
249 return pp;
251 EXPORT_SYMBOL(of_find_property);
253 struct device_node *__of_find_all_nodes(struct device_node *prev)
255 struct device_node *np;
256 if (!prev) {
257 np = of_root;
258 } else if (prev->child) {
259 np = prev->child;
260 } else {
261 /* Walk back up looking for a sibling, or the end of the structure */
262 np = prev;
263 while (np->parent && !np->sibling)
264 np = np->parent;
265 np = np->sibling; /* Might be null at the end of the tree */
267 return np;
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;
281 unsigned long flags;
283 raw_spin_lock_irqsave(&devtree_lock, flags);
284 np = __of_find_all_nodes(prev);
285 of_node_get(np);
286 of_node_put(prev);
287 raw_spin_unlock_irqrestore(&devtree_lock, flags);
288 return np;
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,
309 int *lenp)
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)
344 const __be32 *cell;
345 int ac, prop_len, tid;
346 u64 hwid;
348 ac = of_n_addr_cells(cpun);
349 cell = of_get_property(cpun, prop_name, &prop_len);
350 if (!cell || !ac)
351 return false;
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)) {
356 if (thread)
357 *thread = tid;
358 return true;
360 cell += ac;
362 return false;
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",
381 cpu, thread))
382 return true;
384 if (__of_find_n_match_cpu_property(cpun, "reg", cpu, thread))
385 return true;
387 return false;
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
395 * returned
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))
414 return cpun;
416 return NULL;
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
436 * order for matches:
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
446 * 9. type && name
447 * 10. type
448 * 11. name
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;
454 const char *cp;
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);
464 break;
467 if (!score)
468 return 0;
471 /* Matching type is better than matching name */
472 if (type && type[0]) {
473 if (!device->type || of_node_cmp(type, device->type))
474 return 0;
475 score += 2;
478 /* Matching name is a bit better than not */
479 if (name && name[0]) {
480 if (!device->name || of_node_cmp(name, device->name))
481 return 0;
482 score++;
485 return score;
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,
492 const char *compat)
494 unsigned long flags;
495 int res;
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);
500 return res;
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;
514 int rc = 0;
516 root = of_find_node_by_path("/");
517 if (root) {
518 rc = of_device_is_compatible(root, compat);
519 of_node_put(root);
521 return rc;
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",
531 * false otherwise
533 static bool __of_device_is_available(const struct device_node *device)
535 const char *status;
536 int statlen;
538 if (!device)
539 return false;
541 status = __of_get_property(device, "status", &statlen);
542 if (status == NULL)
543 return true;
545 if (statlen > 0) {
546 if (!strcmp(status, "okay") || !strcmp(status, "ok"))
547 return true;
550 return false;
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",
559 * false otherwise
561 bool of_device_is_available(const struct device_node *device)
563 unsigned long flags;
564 bool res;
566 raw_spin_lock_irqsave(&devtree_lock, flags);
567 res = __of_device_is_available(device);
568 raw_spin_unlock_irqrestore(&devtree_lock, flags);
569 return res;
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"))
589 return true;
590 if (IS_ENABLED(CONFIG_CPU_BIG_ENDIAN) &&
591 of_property_read_bool(device, "native-endian"))
592 return true;
593 return false;
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;
607 unsigned long flags;
609 if (!node)
610 return NULL;
612 raw_spin_lock_irqsave(&devtree_lock, flags);
613 np = of_node_get(node->parent);
614 raw_spin_unlock_irqrestore(&devtree_lock, flags);
615 return np;
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;
633 unsigned long flags;
635 if (!node)
636 return NULL;
638 raw_spin_lock_irqsave(&devtree_lock, flags);
639 parent = of_node_get(node->parent);
640 of_node_put(node);
641 raw_spin_unlock_irqrestore(&devtree_lock, flags);
642 return parent;
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;
651 if (!node)
652 return NULL;
654 next = prev ? prev->sibling : node->child;
655 for (; next; next = next->sibling)
656 if (of_node_get(next))
657 break;
658 of_node_put(prev);
659 return 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
667 * @node: parent node
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
672 * refcount of prev.
674 struct device_node *of_get_next_child(const struct device_node *node,
675 struct device_node *prev)
677 struct device_node *next;
678 unsigned long flags;
680 raw_spin_lock_irqsave(&devtree_lock, flags);
681 next = __of_get_next_child(node, prev);
682 raw_spin_unlock_irqrestore(&devtree_lock, flags);
683 return next;
685 EXPORT_SYMBOL(of_get_next_child);
688 * of_get_next_available_child - Find the next available child node
689 * @node: parent 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;
699 unsigned long flags;
701 if (!node)
702 return NULL;
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))
708 continue;
709 if (of_node_get(next))
710 break;
712 of_node_put(prev);
713 raw_spin_unlock_irqrestore(&devtree_lock, flags);
714 return next;
716 EXPORT_SYMBOL(of_get_next_available_child);
719 * of_get_child_by_name - Find the child node by name for a given parent
720 * @node: parent node
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,
730 const char *name)
732 struct device_node *child;
734 for_each_child_of_node(node, child)
735 if (child->name && (of_node_cmp(child->name, name) == 0))
736 break;
737 return child;
739 EXPORT_SYMBOL(of_get_child_by_name);
741 static struct device_node *__of_find_node_by_path(struct device_node *parent,
742 const char *path)
744 struct device_node *child;
745 int len;
747 len = strcspn(path, "/:");
748 if (!len)
749 return NULL;
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))
754 continue;
755 name++;
756 if (strncmp(path, name, len) == 0 && (strlen(name) == len))
757 return child;
759 return NULL;
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
770 * a ':' separator.
772 * Valid paths:
773 * /foo/bar Full path
774 * foo Valid alias
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;
783 struct property *pp;
784 unsigned long flags;
785 const char *separator = strchr(path, ':');
787 if (opts)
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 */
794 if (*path != '/') {
795 int len;
796 const char *p = separator;
798 if (!p)
799 p = strchrnul(path, '/');
800 len = p - path;
802 /* of_aliases must not be NULL */
803 if (!of_aliases)
804 return 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);
809 break;
812 if (!np)
813 return NULL;
814 path = p;
817 /* Step down the tree matching path components */
818 raw_spin_lock_irqsave(&devtree_lock, flags);
819 if (!np)
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)
826 break;
828 raw_spin_unlock_irqrestore(&devtree_lock, flags);
829 return np;
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,
845 const char *name)
847 struct device_node *np;
848 unsigned long flags;
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)
853 && of_node_get(np))
854 break;
855 of_node_put(from);
856 raw_spin_unlock_irqrestore(&devtree_lock, flags);
857 return np;
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,
874 const char *type)
876 struct device_node *np;
877 unsigned long flags;
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)
882 && of_node_get(np))
883 break;
884 of_node_put(from);
885 raw_spin_unlock_irqrestore(&devtree_lock, flags);
886 return np;
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
899 * "compatible" list.
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;
908 unsigned long flags;
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) &&
913 of_node_get(np))
914 break;
915 of_node_put(from);
916 raw_spin_unlock_irqrestore(&devtree_lock, flags);
917 return np;
919 EXPORT_SYMBOL(of_find_compatible_node);
922 * of_find_node_with_property - Find a node which has a property with
923 * the given name.
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;
937 struct property *pp;
938 unsigned long flags;
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) {
944 of_node_get(np);
945 goto out;
949 out:
950 of_node_put(from);
951 raw_spin_unlock_irqrestore(&devtree_lock, flags);
952 return np;
954 EXPORT_SYMBOL(of_find_node_with_property);
956 static
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;
963 if (!matches)
964 return NULL;
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;
971 best_score = score;
975 return best_match;
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;
989 unsigned long flags;
991 raw_spin_lock_irqsave(&devtree_lock, flags);
992 match = __of_match_node(matches, node);
993 raw_spin_unlock_irqrestore(&devtree_lock, flags);
994 return match;
996 EXPORT_SYMBOL(of_match_node);
999 * of_find_matching_node_and_match - Find a node based on an of_device_id
1000 * match table.
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;
1019 if (match)
1020 *match = NULL;
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)) {
1026 if (match)
1027 *match = m;
1028 break;
1031 of_node_put(from);
1032 raw_spin_unlock_irqrestore(&devtree_lock, flags);
1033 return np;
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;
1053 int cplen;
1055 compatible = of_get_property(node, "compatible", &cplen);
1056 if (!compatible || strlen(compatible) > cplen)
1057 return -ENODEV;
1058 p = strchr(compatible, ',');
1059 strlcpy(modalias, p ? p + 1 : compatible, len);
1060 return 0;
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;
1076 if (!handle)
1077 return NULL;
1079 raw_spin_lock_irqsave(&devtree_lock, flags);
1080 for_each_of_allnodes(np)
1081 if (np->phandle == handle)
1082 break;
1083 of_node_get(np);
1084 raw_spin_unlock_irqrestore(&devtree_lock, flags);
1085 return np;
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);
1106 if (!prop)
1107 return -EINVAL;
1108 if (!prop->value)
1109 return -ENODATA;
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);
1114 return -EINVAL;
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);
1139 if (!prop)
1140 return ERR_PTR(-EINVAL);
1141 if (!prop->value)
1142 return ERR_PTR(-ENODATA);
1143 if (len > prop->length)
1144 return ERR_PTR(-EOVERFLOW);
1146 return prop->value;
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)));
1171 if (IS_ERR(val))
1172 return PTR_ERR(val);
1174 *out_value = be32_to_cpup(((__be32 *)val) + index);
1175 return 0;
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)));
1203 if (IS_ERR(val))
1204 return PTR_ERR(val);
1206 while (sz--)
1207 *out_values++ = *val++;
1208 return 0;
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)));
1236 if (IS_ERR(val))
1237 return PTR_ERR(val);
1239 while (sz--)
1240 *out_values++ = be16_to_cpup(val++);
1241 return 0;
1243 EXPORT_SYMBOL_GPL(of_property_read_u16_array);
1246 * of_property_read_u32_array - Find and read an array of 32 bit integers
1247 * from a property.
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,
1263 size_t sz)
1265 const __be32 *val = of_find_property_value_of_size(np, propname,
1266 (sz * sizeof(*out_values)));
1268 if (IS_ERR(val))
1269 return PTR_ERR(val);
1271 while (sz--)
1272 *out_values++ = be32_to_cpup(val++);
1273 return 0;
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,
1291 u64 *out_value)
1293 const __be32 *val = of_find_property_value_of_size(np, propname,
1294 sizeof(*out_value));
1296 if (IS_ERR(val))
1297 return PTR_ERR(val);
1299 *out_value = of_read_number(val, 2);
1300 return 0;
1302 EXPORT_SYMBOL_GPL(of_property_read_u64);
1305 * of_property_read_u64_array - Find and read an array of 64 bit integers
1306 * from a property.
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,
1322 size_t sz)
1324 const __be32 *val = of_find_property_value_of_size(np, propname,
1325 (sz * sizeof(*out_values)));
1327 if (IS_ERR(val))
1328 return PTR_ERR(val);
1330 while (sz--) {
1331 *out_values++ = of_read_number(val, 2);
1332 val += 2;
1334 return 0;
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);
1357 if (!prop)
1358 return -EINVAL;
1359 if (!prop->value)
1360 return -ENODATA;
1361 if (strnlen(prop->value, prop->length) >= prop->length)
1362 return -EILSEQ;
1363 *out_string = prop->value;
1364 return 0;
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,
1378 const char *string)
1380 struct property *prop = of_find_property(np, propname, NULL);
1381 size_t l;
1382 int i;
1383 const char *p, *end;
1385 if (!prop)
1386 return -EINVAL;
1387 if (!prop->value)
1388 return -ENODATA;
1390 p = prop->value;
1391 end = p + prop->length;
1393 for (i = 0; p < end; i++, p += l) {
1394 l = strnlen(p, end - p) + 1;
1395 if (p + l > end)
1396 return -EILSEQ;
1397 pr_debug("comparing %s with %s\n", string, p);
1398 if (strcmp(string, p) == 0)
1399 return i; /* Found it; return index */
1401 return -ENODATA;
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);
1420 int l = 0, i = 0;
1421 const char *p, *end;
1423 if (!prop)
1424 return -EINVAL;
1425 if (!prop->value)
1426 return -ENODATA;
1427 p = prop->value;
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;
1432 if (p + l > end)
1433 return -EILSEQ;
1434 if (out_strs && i >= skip)
1435 *out_strs++ = p;
1437 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)
1444 int i;
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]);
1448 printk("\n");
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;
1459 uint32_t count = 0;
1460 struct device_node *node = NULL;
1461 phandle phandle;
1463 /* Retrieve the phandle list property */
1464 list = of_get_property(np, list_name, &size);
1465 if (!list)
1466 return -ENOENT;
1467 list_end = list + size / sizeof(*list);
1469 /* Loop over the phandles until all the requested entry is found */
1470 while (list < list_end) {
1471 rc = -EINVAL;
1472 count = 0;
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++);
1479 if (phandle) {
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
1487 * below.
1489 if (cells_name || cur_index == index) {
1490 node = of_find_node_by_phandle(phandle);
1491 if (!node) {
1492 pr_err("%s: could not find phandle\n",
1493 np->full_name);
1494 goto err;
1498 if (cells_name) {
1499 if (of_property_read_u32(node, cells_name,
1500 &count)) {
1501 pr_err("%s: could not get %s for %s\n",
1502 np->full_name, cells_name,
1503 node->full_name);
1504 goto err;
1506 } else {
1507 count = cell_count;
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",
1516 np->full_name);
1517 goto err;
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.
1527 rc = -ENOENT;
1528 if (cur_index == index) {
1529 if (!phandle)
1530 goto err;
1532 if (out_args) {
1533 int i;
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++);
1540 } else {
1541 of_node_put(node);
1544 /* Found it! return success */
1545 return 0;
1548 of_node_put(node);
1549 node = NULL;
1550 list += count;
1551 cur_index++;
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;
1561 err:
1562 if (node)
1563 of_node_put(node);
1564 return rc;
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
1572 * the table
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;
1582 if (index < 0)
1583 return NULL;
1585 if (__of_parse_phandle_with_args(np, phandle_name, NULL, 0,
1586 index, &args))
1587 return NULL;
1589 return args.np;
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
1603 * errno value.
1605 * Caller is responsible to call of_node_put() on the returned out_args->np
1606 * pointer.
1608 * Example:
1610 * phandle1: node1 {
1611 * #list-cells = <2>;
1614 * phandle2: node2 {
1615 * #list-cells = <1>;
1618 * node3 {
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)
1629 if (index < 0)
1630 return -EINVAL;
1631 return __of_parse_phandle_with_args(np, list_name, cells_name, 0,
1632 index, out_args);
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
1646 * errno value.
1648 * Caller is responsible to call of_node_put() on the returned out_args->np
1649 * pointer.
1651 * Example:
1653 * phandle1: node1 {
1656 * phandle2: node2 {
1659 * node3 {
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)
1670 if (index < 0)
1671 return -EINVAL;
1672 return __of_parse_phandle_with_args(np, list_name, NULL, cell_count,
1673 index, out_args);
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
1690 * phandle.
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,
1696 NULL);
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;
1707 prop->next = NULL;
1708 next = &np->properties;
1709 while (*next) {
1710 if (strcmp(prop->name, (*next)->name) == 0)
1711 /* duplicate ! don't insert it */
1712 return -EEXIST;
1714 next = &(*next)->next;
1716 *next = prop;
1718 return 0;
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;
1727 int rc;
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);
1735 if (!rc)
1736 __of_add_property_sysfs(np, prop);
1738 mutex_unlock(&of_mutex);
1740 if (!rc)
1741 of_property_notify(OF_RECONFIG_ADD_PROPERTY, np, prop, NULL);
1743 return rc;
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) {
1751 if (*next == prop)
1752 break;
1754 if (*next == NULL)
1755 return -ENODEV;
1757 /* found the node */
1758 *next = prop->next;
1759 prop->next = np->deadprops;
1760 np->deadprops = prop;
1762 return 0;
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))
1774 return;
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;
1792 int rc;
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);
1800 if (!rc)
1801 __of_remove_property_sysfs(np, prop);
1803 mutex_unlock(&of_mutex);
1805 if (!rc)
1806 of_property_notify(OF_RECONFIG_REMOVE_PROPERTY, np, prop, NULL);
1808 return rc;
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)
1818 break;
1820 *oldpropp = oldprop = *next;
1822 if (oldprop) {
1823 /* replace the node */
1824 newprop->next = oldprop->next;
1825 *next = newprop;
1826 oldprop->next = np->deadprops;
1827 np->deadprops = oldprop;
1828 } else {
1829 /* new node */
1830 newprop->next = NULL;
1831 *next = newprop;
1834 return 0;
1837 void __of_update_property_sysfs(struct device_node *np, struct property *newprop,
1838 struct property *oldprop)
1840 if (!IS_ENABLED(CONFIG_SYSFS))
1841 return;
1843 /* At early boot, bail out and defer setup to of_init() */
1844 if (!of_kset)
1845 return;
1847 if (oldprop)
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;
1865 int rc;
1867 if (!newprop->name)
1868 return -EINVAL;
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);
1876 if (!rc)
1877 __of_update_property_sysfs(np, newprop, oldprop);
1879 mutex_unlock(&of_mutex);
1881 if (!rc)
1882 of_property_notify(OF_RECONFIG_UPDATE_PROPERTY, np, newprop, oldprop);
1884 return rc;
1887 static void of_alias_add(struct alias_prop *ap, struct device_node *np,
1888 int id, const char *stem, int stem_len)
1890 ap->np = np;
1891 ap->id = id;
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");
1918 if (of_chosen) {
1919 /* linux,stdout-path and /aliases/stdout are for legacy compatibility */
1920 const char *name = of_get_property(of_chosen, "stdout-path", NULL);
1921 if (!name)
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);
1925 if (name)
1926 of_stdout = of_find_node_opts_by_path(name, &of_stdout_options);
1929 if (!of_aliases)
1930 return;
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;
1937 int id, len;
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"))
1943 continue;
1945 np = of_find_node_by_path(pp->value);
1946 if (!np)
1947 continue;
1949 /* walk the alias backwards to extract the id and work out
1950 * the 'stem' string */
1951 while (isdigit(*(end-1)) && end > start)
1952 end--;
1953 len = end - start;
1955 if (kstrtoint(end, 10, &id) < 0)
1956 continue;
1958 /* Allocate an alias_prop with enough space for the stem */
1959 ap = dt_alloc(sizeof(*ap) + len + 1, 4);
1960 if (!ap)
1961 continue;
1962 memset(ap, 0, sizeof(*ap) + len + 1);
1963 ap->alias = start;
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;
1979 int id = -ENODEV;
1981 mutex_lock(&of_mutex);
1982 list_for_each_entry(app, &aliases_lookup, link) {
1983 if (strcmp(app->stem, stem) != 0)
1984 continue;
1986 if (np == app->np) {
1987 id = app->id;
1988 break;
1991 mutex_unlock(&of_mutex);
1993 return id;
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;
2007 int id = -ENODEV;
2009 mutex_lock(&of_mutex);
2010 list_for_each_entry(app, &aliases_lookup, link) {
2011 if (strcmp(app->stem, stem) != 0)
2012 continue;
2014 if (app->id > id)
2015 id = app->id;
2017 mutex_unlock(&of_mutex);
2019 return id;
2021 EXPORT_SYMBOL_GPL(of_alias_get_highest_id);
2023 const __be32 *of_prop_next_u32(struct property *prop, const __be32 *cur,
2024 u32 *pu)
2026 const void *curv = cur;
2028 if (!prop)
2029 return NULL;
2031 if (!cur) {
2032 curv = prop->value;
2033 goto out_val;
2036 curv += sizeof(*cur);
2037 if (curv >= prop->value + prop->length)
2038 return NULL;
2040 out_val:
2041 *pu = be32_to_cpup(curv);
2042 return 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;
2050 if (!prop)
2051 return NULL;
2053 if (!cur)
2054 return prop->value;
2056 curv += strlen(cur) + 1;
2057 if (curv >= prop->value + prop->length)
2058 return NULL;
2060 return curv;
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)
2077 return false;
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
2089 * to np.
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);
2097 if (!handle)
2098 handle = of_get_property(np, "next-level-cache", NULL);
2100 if (handle)
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"))
2109 return child;
2111 return NULL;
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);
2141 return 0;
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");
2158 if (node)
2159 parent = node;
2161 for_each_child_of_node(parent, port) {
2162 u32 port_id = 0;
2164 if (of_node_cmp(port->name, "port") != 0)
2165 continue;
2166 of_property_read_u32(port, "reg", &port_id);
2167 if (id == port_id)
2168 break;
2171 of_node_put(node);
2173 return port;
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;
2191 if (!parent)
2192 return NULL;
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
2197 * parent port node.
2199 if (!prev) {
2200 struct device_node *node;
2202 node = of_get_child_by_name(parent, "ports");
2203 if (node)
2204 parent = node;
2206 port = of_get_child_by_name(parent, "port");
2207 of_node_put(node);
2209 if (!port) {
2210 pr_err("%s(): no port node found in %s\n",
2211 __func__, parent->full_name);
2212 return NULL;
2214 } else {
2215 port = of_get_parent(prev);
2216 if (WARN_ONCE(!port, "%s(): endpoint %s has no parent node\n",
2217 __func__, prev->full_name))
2218 return NULL;
2221 while (1) {
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);
2228 if (endpoint) {
2229 of_node_put(port);
2230 return endpoint;
2233 /* No more endpoints under this port, try the next one. */
2234 prev = NULL;
2236 do {
2237 port = of_get_next_child(parent, port);
2238 if (!port)
2239 return NULL;
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;
2256 unsigned int depth;
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"))
2265 break;
2267 return np;
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);
2284 if (!np)
2285 return NULL;
2286 return of_get_next_parent(np);
2288 EXPORT_SYMBOL(of_graph_get_remote_port);