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/module.h>
22 #include <linux/spinlock.h>
23 #include <linux/slab.h>
24 #include <linux/proc_fs.h>
26 struct device_node *allnodes;
27 struct device_node *of_chosen;
29 /* use when traversing tree through the allnext, child, sibling,
30 * or parent members of struct device_node.
32 DEFINE_RWLOCK(devtree_lock);
34 int of_n_addr_cells(struct device_node *np)
41 ip = of_get_property(np, "#address-cells", NULL);
43 return be32_to_cpup(ip);
45 /* No #address-cells property for the root node */
46 return OF_ROOT_NODE_ADDR_CELLS_DEFAULT;
48 EXPORT_SYMBOL(of_n_addr_cells);
50 int of_n_size_cells(struct device_node *np)
57 ip = of_get_property(np, "#size-cells", NULL);
59 return be32_to_cpup(ip);
61 /* No #size-cells property for the root node */
62 return OF_ROOT_NODE_SIZE_CELLS_DEFAULT;
64 EXPORT_SYMBOL(of_n_size_cells);
66 #if !defined(CONFIG_SPARC) /* SPARC doesn't do ref counting (yet) */
68 * of_node_get - Increment refcount of a node
69 * @node: Node to inc refcount, NULL is supported to
70 * simplify writing of callers
74 struct device_node *of_node_get(struct device_node *node)
77 kref_get(&node->kref);
80 EXPORT_SYMBOL(of_node_get);
82 static inline struct device_node *kref_to_device_node(struct kref *kref)
84 return container_of(kref, struct device_node, kref);
88 * of_node_release - release a dynamically allocated node
89 * @kref: kref element of the node to be released
91 * In of_node_put() this function is passed to kref_put()
94 static void of_node_release(struct kref *kref)
96 struct device_node *node = kref_to_device_node(kref);
97 struct property *prop = node->properties;
99 /* We should never be releasing nodes that haven't been detached. */
100 if (!of_node_check_flag(node, OF_DETACHED)) {
101 pr_err("ERROR: Bad of_node_put() on %s\n", node->full_name);
103 kref_init(&node->kref);
107 if (!of_node_check_flag(node, OF_DYNAMIC))
111 struct property *next = prop->next;
118 prop = node->deadprops;
119 node->deadprops = NULL;
122 kfree(node->full_name);
128 * of_node_put - Decrement refcount of a node
129 * @node: Node to dec refcount, NULL is supported to
130 * simplify writing of callers
133 void of_node_put(struct device_node *node)
136 kref_put(&node->kref, of_node_release);
138 EXPORT_SYMBOL(of_node_put);
139 #endif /* !CONFIG_SPARC */
141 struct property *of_find_property(const struct device_node *np,
150 read_lock(&devtree_lock);
151 for (pp = np->properties; pp != 0; pp = pp->next) {
152 if (of_prop_cmp(pp->name, name) == 0) {
158 read_unlock(&devtree_lock);
162 EXPORT_SYMBOL(of_find_property);
165 * of_find_all_nodes - Get next node in global list
166 * @prev: Previous node or NULL to start iteration
167 * of_node_put() will be called on it
169 * Returns a node pointer with refcount incremented, use
170 * of_node_put() on it when done.
172 struct device_node *of_find_all_nodes(struct device_node *prev)
174 struct device_node *np;
176 read_lock(&devtree_lock);
177 np = prev ? prev->allnext : allnodes;
178 for (; np != NULL; np = np->allnext)
182 read_unlock(&devtree_lock);
185 EXPORT_SYMBOL(of_find_all_nodes);
188 * Find a property with a given name for a given node
189 * and return the value.
191 const void *of_get_property(const struct device_node *np, const char *name,
194 struct property *pp = of_find_property(np, name, lenp);
196 return pp ? pp->value : NULL;
198 EXPORT_SYMBOL(of_get_property);
200 /** Checks if the given "compat" string matches one of the strings in
201 * the device's "compatible" property
203 int of_device_is_compatible(const struct device_node *device,
209 cp = of_get_property(device, "compatible", &cplen);
213 if (of_compat_cmp(cp, compat, strlen(compat)) == 0)
222 EXPORT_SYMBOL(of_device_is_compatible);
225 * of_machine_is_compatible - Test root of device tree for a given compatible value
226 * @compat: compatible string to look for in root node's compatible property.
228 * Returns true if the root node has the given value in its
229 * compatible property.
231 int of_machine_is_compatible(const char *compat)
233 struct device_node *root;
236 root = of_find_node_by_path("/");
238 rc = of_device_is_compatible(root, compat);
243 EXPORT_SYMBOL(of_machine_is_compatible);
246 * of_device_is_available - check if a device is available for use
248 * @device: Node to check for availability
250 * Returns 1 if the status property is absent or set to "okay" or "ok",
253 int of_device_is_available(const struct device_node *device)
258 status = of_get_property(device, "status", &statlen);
263 if (!strcmp(status, "okay") || !strcmp(status, "ok"))
269 EXPORT_SYMBOL(of_device_is_available);
272 * of_get_parent - Get a node's parent if any
273 * @node: Node to get parent
275 * Returns a node pointer with refcount incremented, use
276 * of_node_put() on it when done.
278 struct device_node *of_get_parent(const struct device_node *node)
280 struct device_node *np;
285 read_lock(&devtree_lock);
286 np = of_node_get(node->parent);
287 read_unlock(&devtree_lock);
290 EXPORT_SYMBOL(of_get_parent);
293 * of_get_next_parent - Iterate to a node's parent
294 * @node: Node to get parent of
296 * This is like of_get_parent() except that it drops the
297 * refcount on the passed node, making it suitable for iterating
298 * through a node's parents.
300 * Returns a node pointer with refcount incremented, use
301 * of_node_put() on it when done.
303 struct device_node *of_get_next_parent(struct device_node *node)
305 struct device_node *parent;
310 read_lock(&devtree_lock);
311 parent = of_node_get(node->parent);
313 read_unlock(&devtree_lock);
318 * of_get_next_child - Iterate a node childs
320 * @prev: previous child of the parent node, or NULL to get first
322 * Returns a node pointer with refcount incremented, use
323 * of_node_put() on it when done.
325 struct device_node *of_get_next_child(const struct device_node *node,
326 struct device_node *prev)
328 struct device_node *next;
330 read_lock(&devtree_lock);
331 next = prev ? prev->sibling : node->child;
332 for (; next; next = next->sibling)
333 if (of_node_get(next))
336 read_unlock(&devtree_lock);
339 EXPORT_SYMBOL(of_get_next_child);
342 * of_find_node_by_path - Find a node matching a full OF path
343 * @path: The full path to match
345 * Returns a node pointer with refcount incremented, use
346 * of_node_put() on it when done.
348 struct device_node *of_find_node_by_path(const char *path)
350 struct device_node *np = allnodes;
352 read_lock(&devtree_lock);
353 for (; np; np = np->allnext) {
354 if (np->full_name && (of_node_cmp(np->full_name, path) == 0)
358 read_unlock(&devtree_lock);
361 EXPORT_SYMBOL(of_find_node_by_path);
364 * of_find_node_by_name - Find a node by its "name" property
365 * @from: The node to start searching from or NULL, the node
366 * you pass will not be searched, only the next one
367 * will; typically, you pass what the previous call
368 * returned. of_node_put() will be called on it
369 * @name: The name string to match against
371 * Returns a node pointer with refcount incremented, use
372 * of_node_put() on it when done.
374 struct device_node *of_find_node_by_name(struct device_node *from,
377 struct device_node *np;
379 read_lock(&devtree_lock);
380 np = from ? from->allnext : allnodes;
381 for (; np; np = np->allnext)
382 if (np->name && (of_node_cmp(np->name, name) == 0)
386 read_unlock(&devtree_lock);
389 EXPORT_SYMBOL(of_find_node_by_name);
392 * of_find_node_by_type - Find a node by its "device_type" property
393 * @from: The node to start searching from, or NULL to start searching
394 * the entire device tree. The node you pass will not be
395 * searched, only the next one will; typically, you pass
396 * what the previous call returned. of_node_put() will be
397 * called on from for you.
398 * @type: The type string to match against
400 * Returns a node pointer with refcount incremented, use
401 * of_node_put() on it when done.
403 struct device_node *of_find_node_by_type(struct device_node *from,
406 struct device_node *np;
408 read_lock(&devtree_lock);
409 np = from ? from->allnext : allnodes;
410 for (; np; np = np->allnext)
411 if (np->type && (of_node_cmp(np->type, type) == 0)
415 read_unlock(&devtree_lock);
418 EXPORT_SYMBOL(of_find_node_by_type);
421 * of_find_compatible_node - Find a node based on type and one of the
422 * tokens in its "compatible" property
423 * @from: The node to start searching from or NULL, the node
424 * you pass will not be searched, only the next one
425 * will; typically, you pass what the previous call
426 * returned. of_node_put() will be called on it
427 * @type: The type string to match "device_type" or NULL to ignore
428 * @compatible: The string to match to one of the tokens in the device
431 * Returns a node pointer with refcount incremented, use
432 * of_node_put() on it when done.
434 struct device_node *of_find_compatible_node(struct device_node *from,
435 const char *type, const char *compatible)
437 struct device_node *np;
439 read_lock(&devtree_lock);
440 np = from ? from->allnext : allnodes;
441 for (; np; np = np->allnext) {
443 && !(np->type && (of_node_cmp(np->type, type) == 0)))
445 if (of_device_is_compatible(np, compatible) && of_node_get(np))
449 read_unlock(&devtree_lock);
452 EXPORT_SYMBOL(of_find_compatible_node);
455 * of_find_node_with_property - Find a node which has a property with
457 * @from: The node to start searching from or NULL, the node
458 * you pass will not be searched, only the next one
459 * will; typically, you pass what the previous call
460 * returned. of_node_put() will be called on it
461 * @prop_name: The name of the property to look for.
463 * Returns a node pointer with refcount incremented, use
464 * of_node_put() on it when done.
466 struct device_node *of_find_node_with_property(struct device_node *from,
467 const char *prop_name)
469 struct device_node *np;
472 read_lock(&devtree_lock);
473 np = from ? from->allnext : allnodes;
474 for (; np; np = np->allnext) {
475 for (pp = np->properties; pp != 0; pp = pp->next) {
476 if (of_prop_cmp(pp->name, prop_name) == 0) {
484 read_unlock(&devtree_lock);
487 EXPORT_SYMBOL(of_find_node_with_property);
490 * of_match_node - Tell if an device_node has a matching of_match structure
491 * @matches: array of of device match structures to search in
492 * @node: the of device structure to match against
494 * Low level utility function used by device matching.
496 const struct of_device_id *of_match_node(const struct of_device_id *matches,
497 const struct device_node *node)
499 while (matches->name[0] || matches->type[0] || matches->compatible[0]) {
501 if (matches->name[0])
503 && !strcmp(matches->name, node->name);
504 if (matches->type[0])
506 && !strcmp(matches->type, node->type);
507 if (matches->compatible[0])
508 match &= of_device_is_compatible(node,
509 matches->compatible);
516 EXPORT_SYMBOL(of_match_node);
519 * of_find_matching_node - Find a node based on an of_device_id match
521 * @from: The node to start searching from or NULL, the node
522 * you pass will not be searched, only the next one
523 * will; typically, you pass what the previous call
524 * returned. of_node_put() will be called on it
525 * @matches: array of of device match structures to search in
527 * Returns a node pointer with refcount incremented, use
528 * of_node_put() on it when done.
530 struct device_node *of_find_matching_node(struct device_node *from,
531 const struct of_device_id *matches)
533 struct device_node *np;
535 read_lock(&devtree_lock);
536 np = from ? from->allnext : allnodes;
537 for (; np; np = np->allnext) {
538 if (of_match_node(matches, np) && of_node_get(np))
542 read_unlock(&devtree_lock);
545 EXPORT_SYMBOL(of_find_matching_node);
548 * of_modalias_node - Lookup appropriate modalias for a device node
549 * @node: pointer to a device tree node
550 * @modalias: Pointer to buffer that modalias value will be copied into
551 * @len: Length of modalias value
553 * Based on the value of the compatible property, this routine will attempt
554 * to choose an appropriate modalias value for a particular device tree node.
555 * It does this by stripping the manufacturer prefix (as delimited by a ',')
556 * from the first entry in the compatible list property.
558 * This routine returns 0 on success, <0 on failure.
560 int of_modalias_node(struct device_node *node, char *modalias, int len)
562 const char *compatible, *p;
565 compatible = of_get_property(node, "compatible", &cplen);
566 if (!compatible || strlen(compatible) > cplen)
568 p = strchr(compatible, ',');
569 strlcpy(modalias, p ? p + 1 : compatible, len);
572 EXPORT_SYMBOL_GPL(of_modalias_node);
575 * of_find_node_by_phandle - Find a node given a phandle
576 * @handle: phandle of the node to find
578 * Returns a node pointer with refcount incremented, use
579 * of_node_put() on it when done.
581 struct device_node *of_find_node_by_phandle(phandle handle)
583 struct device_node *np;
585 read_lock(&devtree_lock);
586 for (np = allnodes; np; np = np->allnext)
587 if (np->phandle == handle)
590 read_unlock(&devtree_lock);
593 EXPORT_SYMBOL(of_find_node_by_phandle);
596 * of_parse_phandle - Resolve a phandle property to a device_node pointer
597 * @np: Pointer to device node holding phandle property
598 * @phandle_name: Name of property holding a phandle value
599 * @index: For properties holding a table of phandles, this is the index into
602 * Returns the device_node pointer with refcount incremented. Use
603 * of_node_put() on it when done.
606 of_parse_phandle(struct device_node *np, const char *phandle_name, int index)
608 const __be32 *phandle;
611 phandle = of_get_property(np, phandle_name, &size);
612 if ((!phandle) || (size < sizeof(*phandle) * (index + 1)))
615 return of_find_node_by_phandle(be32_to_cpup(phandle + index));
617 EXPORT_SYMBOL(of_parse_phandle);
620 * of_parse_phandles_with_args - Find a node pointed by phandle in a list
621 * @np: pointer to a device tree node containing a list
622 * @list_name: property name that contains a list
623 * @cells_name: property name that specifies phandles' arguments count
624 * @index: index of a phandle to parse out
625 * @out_node: optional pointer to device_node struct pointer (will be filled)
626 * @out_args: optional pointer to arguments pointer (will be filled)
628 * This function is useful to parse lists of phandles and their arguments.
629 * Returns 0 on success and fills out_node and out_args, on error returns
630 * appropriate errno value.
643 * list = <&phandle1 1 2 &phandle2 3>;
646 * To get a device_node of the `node2' node you may call this:
647 * of_parse_phandles_with_args(node3, "list", "#list-cells", 2, &node2, &args);
649 int of_parse_phandles_with_args(struct device_node *np, const char *list_name,
650 const char *cells_name, int index,
651 struct device_node **out_node,
652 const void **out_args)
656 const __be32 *list_end;
659 struct device_node *node = NULL;
660 const void *args = NULL;
662 list = of_get_property(np, list_name, &size);
667 list_end = list + size / sizeof(*list);
669 while (list < list_end) {
673 phandle = be32_to_cpup(list++);
676 /* one cell hole in the list = <>; */
680 node = of_find_node_by_phandle(phandle);
682 pr_debug("%s: could not find phandle\n",
687 cells = of_get_property(node, cells_name, &size);
688 if (!cells || size != sizeof(*cells)) {
689 pr_debug("%s: could not get %s for %s\n",
690 np->full_name, cells_name, node->full_name);
694 list += be32_to_cpup(cells);
695 if (list > list_end) {
696 pr_debug("%s: insufficient arguments length\n",
701 if (cur_index == index)
712 * args w/o node indicates that the loop above has stopped at
713 * the 'hole' cell. Report this differently.
731 pr_debug("%s failed with status %d\n", __func__, ret);
734 EXPORT_SYMBOL(of_parse_phandles_with_args);
737 * prom_add_property - Add a property to a node
739 int prom_add_property(struct device_node *np, struct property *prop)
741 struct property **next;
745 write_lock_irqsave(&devtree_lock, flags);
746 next = &np->properties;
748 if (strcmp(prop->name, (*next)->name) == 0) {
749 /* duplicate ! don't insert it */
750 write_unlock_irqrestore(&devtree_lock, flags);
753 next = &(*next)->next;
756 write_unlock_irqrestore(&devtree_lock, flags);
758 #ifdef CONFIG_PROC_DEVICETREE
759 /* try to add to proc as well if it was initialized */
761 proc_device_tree_add_prop(np->pde, prop);
762 #endif /* CONFIG_PROC_DEVICETREE */
768 * prom_remove_property - Remove a property from a node.
770 * Note that we don't actually remove it, since we have given out
771 * who-knows-how-many pointers to the data using get-property.
772 * Instead we just move the property to the "dead properties"
773 * list, so it won't be found any more.
775 int prom_remove_property(struct device_node *np, struct property *prop)
777 struct property **next;
781 write_lock_irqsave(&devtree_lock, flags);
782 next = &np->properties;
787 prop->next = np->deadprops;
788 np->deadprops = prop;
792 next = &(*next)->next;
794 write_unlock_irqrestore(&devtree_lock, flags);
799 #ifdef CONFIG_PROC_DEVICETREE
800 /* try to remove the proc node as well */
802 proc_device_tree_remove_prop(np->pde, prop);
803 #endif /* CONFIG_PROC_DEVICETREE */
809 * prom_update_property - Update a property in a node.
811 * Note that we don't actually remove it, since we have given out
812 * who-knows-how-many pointers to the data using get-property.
813 * Instead we just move the property to the "dead properties" list,
814 * and add the new property to the property list
816 int prom_update_property(struct device_node *np,
817 struct property *newprop,
818 struct property *oldprop)
820 struct property **next;
824 write_lock_irqsave(&devtree_lock, flags);
825 next = &np->properties;
827 if (*next == oldprop) {
829 newprop->next = oldprop->next;
831 oldprop->next = np->deadprops;
832 np->deadprops = oldprop;
836 next = &(*next)->next;
838 write_unlock_irqrestore(&devtree_lock, flags);
843 #ifdef CONFIG_PROC_DEVICETREE
844 /* try to add to proc as well if it was initialized */
846 proc_device_tree_update_prop(np->pde, newprop, oldprop);
847 #endif /* CONFIG_PROC_DEVICETREE */
852 #if defined(CONFIG_OF_DYNAMIC)
854 * Support for dynamic device trees.
856 * On some platforms, the device tree can be manipulated at runtime.
857 * The routines in this section support adding, removing and changing
862 * of_attach_node - Plug a device node into the tree and global list.
864 void of_attach_node(struct device_node *np)
868 write_lock_irqsave(&devtree_lock, flags);
869 np->sibling = np->parent->child;
870 np->allnext = allnodes;
871 np->parent->child = np;
873 write_unlock_irqrestore(&devtree_lock, flags);
877 * of_detach_node - "Unplug" a node from the device tree.
879 * The caller must hold a reference to the node. The memory associated with
880 * the node is not freed until its refcount goes to zero.
882 void of_detach_node(struct device_node *np)
884 struct device_node *parent;
887 write_lock_irqsave(&devtree_lock, flags);
894 allnodes = np->allnext;
896 struct device_node *prev;
897 for (prev = allnodes;
899 prev = prev->allnext)
901 prev->allnext = np->allnext;
904 if (parent->child == np)
905 parent->child = np->sibling;
907 struct device_node *prevsib;
908 for (prevsib = np->parent->child;
909 prevsib->sibling != np;
910 prevsib = prevsib->sibling)
912 prevsib->sibling = np->sibling;
915 of_node_set_flag(np, OF_DETACHED);
918 write_unlock_irqrestore(&devtree_lock, flags);
920 #endif /* defined(CONFIG_OF_DYNAMIC) */