ASoC: twl4030: Convert to use devm_kzalloc
[linux-2.6/btrfs-unstable.git] / drivers / of / base.c
blobd4a1c9a043e12d3572faefe9a9fd11a1683cdd97
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/ctype.h>
21 #include <linux/module.h>
22 #include <linux/of.h>
23 #include <linux/spinlock.h>
24 #include <linux/slab.h>
25 #include <linux/proc_fs.h>
27 /**
28 * struct alias_prop - Alias property in 'aliases' node
29 * @link: List node to link the structure in aliases_lookup list
30 * @alias: Alias property name
31 * @np: Pointer to device_node that the alias stands for
32 * @id: Index value from end of alias name
33 * @stem: Alias string without the index
35 * The structure represents one alias property of 'aliases' node as
36 * an entry in aliases_lookup list.
38 struct alias_prop {
39 struct list_head link;
40 const char *alias;
41 struct device_node *np;
42 int id;
43 char stem[0];
46 static LIST_HEAD(aliases_lookup);
48 struct device_node *allnodes;
49 struct device_node *of_chosen;
50 struct device_node *of_aliases;
52 static DEFINE_MUTEX(of_aliases_mutex);
54 /* use when traversing tree through the allnext, child, sibling,
55 * or parent members of struct device_node.
57 DEFINE_RWLOCK(devtree_lock);
59 int of_n_addr_cells(struct device_node *np)
61 const __be32 *ip;
63 do {
64 if (np->parent)
65 np = np->parent;
66 ip = of_get_property(np, "#address-cells", NULL);
67 if (ip)
68 return be32_to_cpup(ip);
69 } while (np->parent);
70 /* No #address-cells property for the root node */
71 return OF_ROOT_NODE_ADDR_CELLS_DEFAULT;
73 EXPORT_SYMBOL(of_n_addr_cells);
75 int of_n_size_cells(struct device_node *np)
77 const __be32 *ip;
79 do {
80 if (np->parent)
81 np = np->parent;
82 ip = of_get_property(np, "#size-cells", NULL);
83 if (ip)
84 return be32_to_cpup(ip);
85 } while (np->parent);
86 /* No #size-cells property for the root node */
87 return OF_ROOT_NODE_SIZE_CELLS_DEFAULT;
89 EXPORT_SYMBOL(of_n_size_cells);
91 #if defined(CONFIG_OF_DYNAMIC)
92 /**
93 * of_node_get - Increment refcount of a node
94 * @node: Node to inc refcount, NULL is supported to
95 * simplify writing of callers
97 * Returns node.
99 struct device_node *of_node_get(struct device_node *node)
101 if (node)
102 kref_get(&node->kref);
103 return node;
105 EXPORT_SYMBOL(of_node_get);
107 static inline struct device_node *kref_to_device_node(struct kref *kref)
109 return container_of(kref, struct device_node, kref);
113 * of_node_release - release a dynamically allocated node
114 * @kref: kref element of the node to be released
116 * In of_node_put() this function is passed to kref_put()
117 * as the destructor.
119 static void of_node_release(struct kref *kref)
121 struct device_node *node = kref_to_device_node(kref);
122 struct property *prop = node->properties;
124 /* We should never be releasing nodes that haven't been detached. */
125 if (!of_node_check_flag(node, OF_DETACHED)) {
126 pr_err("ERROR: Bad of_node_put() on %s\n", node->full_name);
127 dump_stack();
128 kref_init(&node->kref);
129 return;
132 if (!of_node_check_flag(node, OF_DYNAMIC))
133 return;
135 while (prop) {
136 struct property *next = prop->next;
137 kfree(prop->name);
138 kfree(prop->value);
139 kfree(prop);
140 prop = next;
142 if (!prop) {
143 prop = node->deadprops;
144 node->deadprops = NULL;
147 kfree(node->full_name);
148 kfree(node->data);
149 kfree(node);
153 * of_node_put - Decrement refcount of a node
154 * @node: Node to dec refcount, NULL is supported to
155 * simplify writing of callers
158 void of_node_put(struct device_node *node)
160 if (node)
161 kref_put(&node->kref, of_node_release);
163 EXPORT_SYMBOL(of_node_put);
164 #endif /* CONFIG_OF_DYNAMIC */
166 struct property *of_find_property(const struct device_node *np,
167 const char *name,
168 int *lenp)
170 struct property *pp;
172 if (!np)
173 return NULL;
175 read_lock(&devtree_lock);
176 for (pp = np->properties; pp; pp = pp->next) {
177 if (of_prop_cmp(pp->name, name) == 0) {
178 if (lenp)
179 *lenp = pp->length;
180 break;
183 read_unlock(&devtree_lock);
185 return pp;
187 EXPORT_SYMBOL(of_find_property);
190 * of_find_all_nodes - Get next node in global list
191 * @prev: Previous node or NULL to start iteration
192 * of_node_put() will be called on it
194 * Returns a node pointer with refcount incremented, use
195 * of_node_put() on it when done.
197 struct device_node *of_find_all_nodes(struct device_node *prev)
199 struct device_node *np;
201 read_lock(&devtree_lock);
202 np = prev ? prev->allnext : allnodes;
203 for (; np != NULL; np = np->allnext)
204 if (of_node_get(np))
205 break;
206 of_node_put(prev);
207 read_unlock(&devtree_lock);
208 return np;
210 EXPORT_SYMBOL(of_find_all_nodes);
213 * Find a property with a given name for a given node
214 * and return the value.
216 const void *of_get_property(const struct device_node *np, const char *name,
217 int *lenp)
219 struct property *pp = of_find_property(np, name, lenp);
221 return pp ? pp->value : NULL;
223 EXPORT_SYMBOL(of_get_property);
225 /** Checks if the given "compat" string matches one of the strings in
226 * the device's "compatible" property
228 int of_device_is_compatible(const struct device_node *device,
229 const char *compat)
231 const char* cp;
232 int cplen, l;
234 cp = of_get_property(device, "compatible", &cplen);
235 if (cp == NULL)
236 return 0;
237 while (cplen > 0) {
238 if (of_compat_cmp(cp, compat, strlen(compat)) == 0)
239 return 1;
240 l = strlen(cp) + 1;
241 cp += l;
242 cplen -= l;
245 return 0;
247 EXPORT_SYMBOL(of_device_is_compatible);
250 * of_machine_is_compatible - Test root of device tree for a given compatible value
251 * @compat: compatible string to look for in root node's compatible property.
253 * Returns true if the root node has the given value in its
254 * compatible property.
256 int of_machine_is_compatible(const char *compat)
258 struct device_node *root;
259 int rc = 0;
261 root = of_find_node_by_path("/");
262 if (root) {
263 rc = of_device_is_compatible(root, compat);
264 of_node_put(root);
266 return rc;
268 EXPORT_SYMBOL(of_machine_is_compatible);
271 * of_device_is_available - check if a device is available for use
273 * @device: Node to check for availability
275 * Returns 1 if the status property is absent or set to "okay" or "ok",
276 * 0 otherwise
278 int of_device_is_available(const struct device_node *device)
280 const char *status;
281 int statlen;
283 status = of_get_property(device, "status", &statlen);
284 if (status == NULL)
285 return 1;
287 if (statlen > 0) {
288 if (!strcmp(status, "okay") || !strcmp(status, "ok"))
289 return 1;
292 return 0;
294 EXPORT_SYMBOL(of_device_is_available);
297 * of_get_parent - Get a node's parent if any
298 * @node: Node to get parent
300 * Returns a node pointer with refcount incremented, use
301 * of_node_put() on it when done.
303 struct device_node *of_get_parent(const struct device_node *node)
305 struct device_node *np;
307 if (!node)
308 return NULL;
310 read_lock(&devtree_lock);
311 np = of_node_get(node->parent);
312 read_unlock(&devtree_lock);
313 return np;
315 EXPORT_SYMBOL(of_get_parent);
318 * of_get_next_parent - Iterate to a node's parent
319 * @node: Node to get parent of
321 * This is like of_get_parent() except that it drops the
322 * refcount on the passed node, making it suitable for iterating
323 * through a node's parents.
325 * Returns a node pointer with refcount incremented, use
326 * of_node_put() on it when done.
328 struct device_node *of_get_next_parent(struct device_node *node)
330 struct device_node *parent;
332 if (!node)
333 return NULL;
335 read_lock(&devtree_lock);
336 parent = of_node_get(node->parent);
337 of_node_put(node);
338 read_unlock(&devtree_lock);
339 return parent;
343 * of_get_next_child - Iterate a node childs
344 * @node: parent node
345 * @prev: previous child of the parent node, or NULL to get first
347 * Returns a node pointer with refcount incremented, use
348 * of_node_put() on it when done.
350 struct device_node *of_get_next_child(const struct device_node *node,
351 struct device_node *prev)
353 struct device_node *next;
355 read_lock(&devtree_lock);
356 next = prev ? prev->sibling : node->child;
357 for (; next; next = next->sibling)
358 if (of_node_get(next))
359 break;
360 of_node_put(prev);
361 read_unlock(&devtree_lock);
362 return next;
364 EXPORT_SYMBOL(of_get_next_child);
367 * of_get_next_available_child - Find the next available child node
368 * @node: parent node
369 * @prev: previous child of the parent node, or NULL to get first
371 * This function is like of_get_next_child(), except that it
372 * automatically skips any disabled nodes (i.e. status = "disabled").
374 struct device_node *of_get_next_available_child(const struct device_node *node,
375 struct device_node *prev)
377 struct device_node *next;
379 read_lock(&devtree_lock);
380 next = prev ? prev->sibling : node->child;
381 for (; next; next = next->sibling) {
382 if (!of_device_is_available(next))
383 continue;
384 if (of_node_get(next))
385 break;
387 of_node_put(prev);
388 read_unlock(&devtree_lock);
389 return next;
391 EXPORT_SYMBOL(of_get_next_available_child);
394 * of_find_node_by_path - Find a node matching a full OF path
395 * @path: The full path to match
397 * Returns a node pointer with refcount incremented, use
398 * of_node_put() on it when done.
400 struct device_node *of_find_node_by_path(const char *path)
402 struct device_node *np = allnodes;
404 read_lock(&devtree_lock);
405 for (; np; np = np->allnext) {
406 if (np->full_name && (of_node_cmp(np->full_name, path) == 0)
407 && of_node_get(np))
408 break;
410 read_unlock(&devtree_lock);
411 return np;
413 EXPORT_SYMBOL(of_find_node_by_path);
416 * of_find_node_by_name - Find a node by its "name" property
417 * @from: The node to start searching from or NULL, the node
418 * you pass will not be searched, only the next one
419 * will; typically, you pass what the previous call
420 * returned. of_node_put() will be called on it
421 * @name: The name string to match against
423 * Returns a node pointer with refcount incremented, use
424 * of_node_put() on it when done.
426 struct device_node *of_find_node_by_name(struct device_node *from,
427 const char *name)
429 struct device_node *np;
431 read_lock(&devtree_lock);
432 np = from ? from->allnext : allnodes;
433 for (; np; np = np->allnext)
434 if (np->name && (of_node_cmp(np->name, name) == 0)
435 && of_node_get(np))
436 break;
437 of_node_put(from);
438 read_unlock(&devtree_lock);
439 return np;
441 EXPORT_SYMBOL(of_find_node_by_name);
444 * of_find_node_by_type - Find a node by its "device_type" property
445 * @from: The node to start searching from, or NULL to start searching
446 * the entire device tree. The node you pass will not be
447 * searched, only the next one will; typically, you pass
448 * what the previous call returned. of_node_put() will be
449 * called on from for you.
450 * @type: The type string to match against
452 * Returns a node pointer with refcount incremented, use
453 * of_node_put() on it when done.
455 struct device_node *of_find_node_by_type(struct device_node *from,
456 const char *type)
458 struct device_node *np;
460 read_lock(&devtree_lock);
461 np = from ? from->allnext : allnodes;
462 for (; np; np = np->allnext)
463 if (np->type && (of_node_cmp(np->type, type) == 0)
464 && of_node_get(np))
465 break;
466 of_node_put(from);
467 read_unlock(&devtree_lock);
468 return np;
470 EXPORT_SYMBOL(of_find_node_by_type);
473 * of_find_compatible_node - Find a node based on type and one of the
474 * tokens in its "compatible" property
475 * @from: The node to start searching from or NULL, the node
476 * you pass will not be searched, only the next one
477 * will; typically, you pass what the previous call
478 * returned. of_node_put() will be called on it
479 * @type: The type string to match "device_type" or NULL to ignore
480 * @compatible: The string to match to one of the tokens in the device
481 * "compatible" list.
483 * Returns a node pointer with refcount incremented, use
484 * of_node_put() on it when done.
486 struct device_node *of_find_compatible_node(struct device_node *from,
487 const char *type, const char *compatible)
489 struct device_node *np;
491 read_lock(&devtree_lock);
492 np = from ? from->allnext : allnodes;
493 for (; np; np = np->allnext) {
494 if (type
495 && !(np->type && (of_node_cmp(np->type, type) == 0)))
496 continue;
497 if (of_device_is_compatible(np, compatible) && of_node_get(np))
498 break;
500 of_node_put(from);
501 read_unlock(&devtree_lock);
502 return np;
504 EXPORT_SYMBOL(of_find_compatible_node);
507 * of_find_node_with_property - Find a node which has a property with
508 * the given name.
509 * @from: The node to start searching from or NULL, the node
510 * you pass will not be searched, only the next one
511 * will; typically, you pass what the previous call
512 * returned. of_node_put() will be called on it
513 * @prop_name: The name of the property to look for.
515 * Returns a node pointer with refcount incremented, use
516 * of_node_put() on it when done.
518 struct device_node *of_find_node_with_property(struct device_node *from,
519 const char *prop_name)
521 struct device_node *np;
522 struct property *pp;
524 read_lock(&devtree_lock);
525 np = from ? from->allnext : allnodes;
526 for (; np; np = np->allnext) {
527 for (pp = np->properties; pp; pp = pp->next) {
528 if (of_prop_cmp(pp->name, prop_name) == 0) {
529 of_node_get(np);
530 goto out;
534 out:
535 of_node_put(from);
536 read_unlock(&devtree_lock);
537 return np;
539 EXPORT_SYMBOL(of_find_node_with_property);
542 * of_match_node - Tell if an device_node has a matching of_match structure
543 * @matches: array of of device match structures to search in
544 * @node: the of device structure to match against
546 * Low level utility function used by device matching.
548 const struct of_device_id *of_match_node(const struct of_device_id *matches,
549 const struct device_node *node)
551 if (!matches)
552 return NULL;
554 while (matches->name[0] || matches->type[0] || matches->compatible[0]) {
555 int match = 1;
556 if (matches->name[0])
557 match &= node->name
558 && !strcmp(matches->name, node->name);
559 if (matches->type[0])
560 match &= node->type
561 && !strcmp(matches->type, node->type);
562 if (matches->compatible[0])
563 match &= of_device_is_compatible(node,
564 matches->compatible);
565 if (match)
566 return matches;
567 matches++;
569 return NULL;
571 EXPORT_SYMBOL(of_match_node);
574 * of_find_matching_node - Find a node based on an of_device_id match
575 * table.
576 * @from: The node to start searching from or NULL, the node
577 * you pass will not be searched, only the next one
578 * will; typically, you pass what the previous call
579 * returned. of_node_put() will be called on it
580 * @matches: array of of device match structures to search in
582 * Returns a node pointer with refcount incremented, use
583 * of_node_put() on it when done.
585 struct device_node *of_find_matching_node(struct device_node *from,
586 const struct of_device_id *matches)
588 struct device_node *np;
590 read_lock(&devtree_lock);
591 np = from ? from->allnext : allnodes;
592 for (; np; np = np->allnext) {
593 if (of_match_node(matches, np) && of_node_get(np))
594 break;
596 of_node_put(from);
597 read_unlock(&devtree_lock);
598 return np;
600 EXPORT_SYMBOL(of_find_matching_node);
603 * of_modalias_node - Lookup appropriate modalias for a device node
604 * @node: pointer to a device tree node
605 * @modalias: Pointer to buffer that modalias value will be copied into
606 * @len: Length of modalias value
608 * Based on the value of the compatible property, this routine will attempt
609 * to choose an appropriate modalias value for a particular device tree node.
610 * It does this by stripping the manufacturer prefix (as delimited by a ',')
611 * from the first entry in the compatible list property.
613 * This routine returns 0 on success, <0 on failure.
615 int of_modalias_node(struct device_node *node, char *modalias, int len)
617 const char *compatible, *p;
618 int cplen;
620 compatible = of_get_property(node, "compatible", &cplen);
621 if (!compatible || strlen(compatible) > cplen)
622 return -ENODEV;
623 p = strchr(compatible, ',');
624 strlcpy(modalias, p ? p + 1 : compatible, len);
625 return 0;
627 EXPORT_SYMBOL_GPL(of_modalias_node);
630 * of_find_node_by_phandle - Find a node given a phandle
631 * @handle: phandle of the node to find
633 * Returns a node pointer with refcount incremented, use
634 * of_node_put() on it when done.
636 struct device_node *of_find_node_by_phandle(phandle handle)
638 struct device_node *np;
640 read_lock(&devtree_lock);
641 for (np = allnodes; np; np = np->allnext)
642 if (np->phandle == handle)
643 break;
644 of_node_get(np);
645 read_unlock(&devtree_lock);
646 return np;
648 EXPORT_SYMBOL(of_find_node_by_phandle);
651 * of_property_read_u32_array - Find and read an array of 32 bit integers
652 * from a property.
654 * @np: device node from which the property value is to be read.
655 * @propname: name of the property to be searched.
656 * @out_value: pointer to return value, modified only if return value is 0.
658 * Search for a property in a device node and read 32-bit value(s) from
659 * it. Returns 0 on success, -EINVAL if the property does not exist,
660 * -ENODATA if property does not have a value, and -EOVERFLOW if the
661 * property data isn't large enough.
663 * The out_value is modified only if a valid u32 value can be decoded.
665 int of_property_read_u32_array(const struct device_node *np,
666 const char *propname, u32 *out_values,
667 size_t sz)
669 struct property *prop = of_find_property(np, propname, NULL);
670 const __be32 *val;
672 if (!prop)
673 return -EINVAL;
674 if (!prop->value)
675 return -ENODATA;
676 if ((sz * sizeof(*out_values)) > prop->length)
677 return -EOVERFLOW;
679 val = prop->value;
680 while (sz--)
681 *out_values++ = be32_to_cpup(val++);
682 return 0;
684 EXPORT_SYMBOL_GPL(of_property_read_u32_array);
687 * of_property_read_u64 - Find and read a 64 bit integer from a property
688 * @np: device node from which the property value is to be read.
689 * @propname: name of the property to be searched.
690 * @out_value: pointer to return value, modified only if return value is 0.
692 * Search for a property in a device node and read a 64-bit value from
693 * it. Returns 0 on success, -EINVAL if the property does not exist,
694 * -ENODATA if property does not have a value, and -EOVERFLOW if the
695 * property data isn't large enough.
697 * The out_value is modified only if a valid u64 value can be decoded.
699 int of_property_read_u64(const struct device_node *np, const char *propname,
700 u64 *out_value)
702 struct property *prop = of_find_property(np, propname, NULL);
704 if (!prop)
705 return -EINVAL;
706 if (!prop->value)
707 return -ENODATA;
708 if (sizeof(*out_value) > prop->length)
709 return -EOVERFLOW;
710 *out_value = of_read_number(prop->value, 2);
711 return 0;
713 EXPORT_SYMBOL_GPL(of_property_read_u64);
716 * of_property_read_string - Find and read a string from a property
717 * @np: device node from which the property value is to be read.
718 * @propname: name of the property to be searched.
719 * @out_string: pointer to null terminated return string, modified only if
720 * return value is 0.
722 * Search for a property in a device tree node and retrieve a null
723 * terminated string value (pointer to data, not a copy). Returns 0 on
724 * success, -EINVAL if the property does not exist, -ENODATA if property
725 * does not have a value, and -EILSEQ if the string is not null-terminated
726 * within the length of the property data.
728 * The out_string pointer is modified only if a valid string can be decoded.
730 int of_property_read_string(struct device_node *np, const char *propname,
731 const char **out_string)
733 struct property *prop = of_find_property(np, propname, NULL);
734 if (!prop)
735 return -EINVAL;
736 if (!prop->value)
737 return -ENODATA;
738 if (strnlen(prop->value, prop->length) >= prop->length)
739 return -EILSEQ;
740 *out_string = prop->value;
741 return 0;
743 EXPORT_SYMBOL_GPL(of_property_read_string);
746 * of_property_read_string_index - Find and read a string from a multiple
747 * strings property.
748 * @np: device node from which the property value is to be read.
749 * @propname: name of the property to be searched.
750 * @index: index of the string in the list of strings
751 * @out_string: pointer to null terminated return string, modified only if
752 * return value is 0.
754 * Search for a property in a device tree node and retrieve a null
755 * terminated string value (pointer to data, not a copy) in the list of strings
756 * contained in that property.
757 * Returns 0 on success, -EINVAL if the property does not exist, -ENODATA if
758 * property does not have a value, and -EILSEQ if the string is not
759 * null-terminated within the length of the property data.
761 * The out_string pointer is modified only if a valid string can be decoded.
763 int of_property_read_string_index(struct device_node *np, const char *propname,
764 int index, const char **output)
766 struct property *prop = of_find_property(np, propname, NULL);
767 int i = 0;
768 size_t l = 0, total = 0;
769 const char *p;
771 if (!prop)
772 return -EINVAL;
773 if (!prop->value)
774 return -ENODATA;
775 if (strnlen(prop->value, prop->length) >= prop->length)
776 return -EILSEQ;
778 p = prop->value;
780 for (i = 0; total < prop->length; total += l, p += l) {
781 l = strlen(p) + 1;
782 if (i++ == index) {
783 *output = p;
784 return 0;
787 return -ENODATA;
789 EXPORT_SYMBOL_GPL(of_property_read_string_index);
792 * of_property_match_string() - Find string in a list and return index
793 * @np: pointer to node containing string list property
794 * @propname: string list property name
795 * @string: pointer to string to search for in string list
797 * This function searches a string list property and returns the index
798 * of a specific string value.
800 int of_property_match_string(struct device_node *np, const char *propname,
801 const char *string)
803 struct property *prop = of_find_property(np, propname, NULL);
804 size_t l;
805 int i;
806 const char *p, *end;
808 if (!prop)
809 return -EINVAL;
810 if (!prop->value)
811 return -ENODATA;
813 p = prop->value;
814 end = p + prop->length;
816 for (i = 0; p < end; i++, p += l) {
817 l = strlen(p) + 1;
818 if (p + l > end)
819 return -EILSEQ;
820 pr_debug("comparing %s with %s\n", string, p);
821 if (strcmp(string, p) == 0)
822 return i; /* Found it; return index */
824 return -ENODATA;
826 EXPORT_SYMBOL_GPL(of_property_match_string);
829 * of_property_count_strings - Find and return the number of strings from a
830 * multiple strings property.
831 * @np: device node from which the property value is to be read.
832 * @propname: name of the property to be searched.
834 * Search for a property in a device tree node and retrieve the number of null
835 * terminated string contain in it. Returns the number of strings on
836 * success, -EINVAL if the property does not exist, -ENODATA if property
837 * does not have a value, and -EILSEQ if the string is not null-terminated
838 * within the length of the property data.
840 int of_property_count_strings(struct device_node *np, const char *propname)
842 struct property *prop = of_find_property(np, propname, NULL);
843 int i = 0;
844 size_t l = 0, total = 0;
845 const char *p;
847 if (!prop)
848 return -EINVAL;
849 if (!prop->value)
850 return -ENODATA;
851 if (strnlen(prop->value, prop->length) >= prop->length)
852 return -EILSEQ;
854 p = prop->value;
856 for (i = 0; total < prop->length; total += l, p += l, i++)
857 l = strlen(p) + 1;
859 return i;
861 EXPORT_SYMBOL_GPL(of_property_count_strings);
864 * of_parse_phandle - Resolve a phandle property to a device_node pointer
865 * @np: Pointer to device node holding phandle property
866 * @phandle_name: Name of property holding a phandle value
867 * @index: For properties holding a table of phandles, this is the index into
868 * the table
870 * Returns the device_node pointer with refcount incremented. Use
871 * of_node_put() on it when done.
873 struct device_node *
874 of_parse_phandle(struct device_node *np, const char *phandle_name, int index)
876 const __be32 *phandle;
877 int size;
879 phandle = of_get_property(np, phandle_name, &size);
880 if ((!phandle) || (size < sizeof(*phandle) * (index + 1)))
881 return NULL;
883 return of_find_node_by_phandle(be32_to_cpup(phandle + index));
885 EXPORT_SYMBOL(of_parse_phandle);
888 * of_parse_phandle_with_args() - Find a node pointed by phandle in a list
889 * @np: pointer to a device tree node containing a list
890 * @list_name: property name that contains a list
891 * @cells_name: property name that specifies phandles' arguments count
892 * @index: index of a phandle to parse out
893 * @out_args: optional pointer to output arguments structure (will be filled)
895 * This function is useful to parse lists of phandles and their arguments.
896 * Returns 0 on success and fills out_args, on error returns appropriate
897 * errno value.
899 * Caller is responsible to call of_node_put() on the returned out_args->node
900 * pointer.
902 * Example:
904 * phandle1: node1 {
905 * #list-cells = <2>;
908 * phandle2: node2 {
909 * #list-cells = <1>;
912 * node3 {
913 * list = <&phandle1 1 2 &phandle2 3>;
916 * To get a device_node of the `node2' node you may call this:
917 * of_parse_phandle_with_args(node3, "list", "#list-cells", 1, &args);
919 int of_parse_phandle_with_args(struct device_node *np, const char *list_name,
920 const char *cells_name, int index,
921 struct of_phandle_args *out_args)
923 const __be32 *list, *list_end;
924 int size, cur_index = 0;
925 uint32_t count = 0;
926 struct device_node *node = NULL;
927 phandle phandle;
929 /* Retrieve the phandle list property */
930 list = of_get_property(np, list_name, &size);
931 if (!list)
932 return -ENOENT;
933 list_end = list + size / sizeof(*list);
935 /* Loop over the phandles until all the requested entry is found */
936 while (list < list_end) {
937 count = 0;
940 * If phandle is 0, then it is an empty entry with no
941 * arguments. Skip forward to the next entry.
943 phandle = be32_to_cpup(list++);
944 if (phandle) {
946 * Find the provider node and parse the #*-cells
947 * property to determine the argument length
949 node = of_find_node_by_phandle(phandle);
950 if (!node) {
951 pr_err("%s: could not find phandle\n",
952 np->full_name);
953 break;
955 if (of_property_read_u32(node, cells_name, &count)) {
956 pr_err("%s: could not get %s for %s\n",
957 np->full_name, cells_name,
958 node->full_name);
959 break;
963 * Make sure that the arguments actually fit in the
964 * remaining property data length
966 if (list + count > list_end) {
967 pr_err("%s: arguments longer than property\n",
968 np->full_name);
969 break;
974 * All of the error cases above bail out of the loop, so at
975 * this point, the parsing is successful. If the requested
976 * index matches, then fill the out_args structure and return,
977 * or return -ENOENT for an empty entry.
979 if (cur_index == index) {
980 if (!phandle)
981 return -ENOENT;
983 if (out_args) {
984 int i;
985 if (WARN_ON(count > MAX_PHANDLE_ARGS))
986 count = MAX_PHANDLE_ARGS;
987 out_args->np = node;
988 out_args->args_count = count;
989 for (i = 0; i < count; i++)
990 out_args->args[i] = be32_to_cpup(list++);
992 return 0;
995 of_node_put(node);
996 node = NULL;
997 list += count;
998 cur_index++;
1001 /* Loop exited without finding a valid entry; return an error */
1002 if (node)
1003 of_node_put(node);
1004 return -EINVAL;
1006 EXPORT_SYMBOL(of_parse_phandle_with_args);
1009 * prom_add_property - Add a property to a node
1011 int prom_add_property(struct device_node *np, struct property *prop)
1013 struct property **next;
1014 unsigned long flags;
1016 prop->next = NULL;
1017 write_lock_irqsave(&devtree_lock, flags);
1018 next = &np->properties;
1019 while (*next) {
1020 if (strcmp(prop->name, (*next)->name) == 0) {
1021 /* duplicate ! don't insert it */
1022 write_unlock_irqrestore(&devtree_lock, flags);
1023 return -1;
1025 next = &(*next)->next;
1027 *next = prop;
1028 write_unlock_irqrestore(&devtree_lock, flags);
1030 #ifdef CONFIG_PROC_DEVICETREE
1031 /* try to add to proc as well if it was initialized */
1032 if (np->pde)
1033 proc_device_tree_add_prop(np->pde, prop);
1034 #endif /* CONFIG_PROC_DEVICETREE */
1036 return 0;
1040 * prom_remove_property - Remove a property from a node.
1042 * Note that we don't actually remove it, since we have given out
1043 * who-knows-how-many pointers to the data using get-property.
1044 * Instead we just move the property to the "dead properties"
1045 * list, so it won't be found any more.
1047 int prom_remove_property(struct device_node *np, struct property *prop)
1049 struct property **next;
1050 unsigned long flags;
1051 int found = 0;
1053 write_lock_irqsave(&devtree_lock, flags);
1054 next = &np->properties;
1055 while (*next) {
1056 if (*next == prop) {
1057 /* found the node */
1058 *next = prop->next;
1059 prop->next = np->deadprops;
1060 np->deadprops = prop;
1061 found = 1;
1062 break;
1064 next = &(*next)->next;
1066 write_unlock_irqrestore(&devtree_lock, flags);
1068 if (!found)
1069 return -ENODEV;
1071 #ifdef CONFIG_PROC_DEVICETREE
1072 /* try to remove the proc node as well */
1073 if (np->pde)
1074 proc_device_tree_remove_prop(np->pde, prop);
1075 #endif /* CONFIG_PROC_DEVICETREE */
1077 return 0;
1081 * prom_update_property - Update a property in a node, if the property does
1082 * not exist, add it.
1084 * Note that we don't actually remove it, since we have given out
1085 * who-knows-how-many pointers to the data using get-property.
1086 * Instead we just move the property to the "dead properties" list,
1087 * and add the new property to the property list
1089 int prom_update_property(struct device_node *np,
1090 struct property *newprop)
1092 struct property **next, *oldprop;
1093 unsigned long flags;
1094 int found = 0;
1096 if (!newprop->name)
1097 return -EINVAL;
1099 oldprop = of_find_property(np, newprop->name, NULL);
1100 if (!oldprop)
1101 return prom_add_property(np, newprop);
1103 write_lock_irqsave(&devtree_lock, flags);
1104 next = &np->properties;
1105 while (*next) {
1106 if (*next == oldprop) {
1107 /* found the node */
1108 newprop->next = oldprop->next;
1109 *next = newprop;
1110 oldprop->next = np->deadprops;
1111 np->deadprops = oldprop;
1112 found = 1;
1113 break;
1115 next = &(*next)->next;
1117 write_unlock_irqrestore(&devtree_lock, flags);
1119 if (!found)
1120 return -ENODEV;
1122 #ifdef CONFIG_PROC_DEVICETREE
1123 /* try to add to proc as well if it was initialized */
1124 if (np->pde)
1125 proc_device_tree_update_prop(np->pde, newprop, oldprop);
1126 #endif /* CONFIG_PROC_DEVICETREE */
1128 return 0;
1131 #if defined(CONFIG_OF_DYNAMIC)
1133 * Support for dynamic device trees.
1135 * On some platforms, the device tree can be manipulated at runtime.
1136 * The routines in this section support adding, removing and changing
1137 * device tree nodes.
1141 * of_attach_node - Plug a device node into the tree and global list.
1143 void of_attach_node(struct device_node *np)
1145 unsigned long flags;
1147 write_lock_irqsave(&devtree_lock, flags);
1148 np->sibling = np->parent->child;
1149 np->allnext = allnodes;
1150 np->parent->child = np;
1151 allnodes = np;
1152 write_unlock_irqrestore(&devtree_lock, flags);
1156 * of_detach_node - "Unplug" a node from the device tree.
1158 * The caller must hold a reference to the node. The memory associated with
1159 * the node is not freed until its refcount goes to zero.
1161 void of_detach_node(struct device_node *np)
1163 struct device_node *parent;
1164 unsigned long flags;
1166 write_lock_irqsave(&devtree_lock, flags);
1168 parent = np->parent;
1169 if (!parent)
1170 goto out_unlock;
1172 if (allnodes == np)
1173 allnodes = np->allnext;
1174 else {
1175 struct device_node *prev;
1176 for (prev = allnodes;
1177 prev->allnext != np;
1178 prev = prev->allnext)
1180 prev->allnext = np->allnext;
1183 if (parent->child == np)
1184 parent->child = np->sibling;
1185 else {
1186 struct device_node *prevsib;
1187 for (prevsib = np->parent->child;
1188 prevsib->sibling != np;
1189 prevsib = prevsib->sibling)
1191 prevsib->sibling = np->sibling;
1194 of_node_set_flag(np, OF_DETACHED);
1196 out_unlock:
1197 write_unlock_irqrestore(&devtree_lock, flags);
1199 #endif /* defined(CONFIG_OF_DYNAMIC) */
1201 static void of_alias_add(struct alias_prop *ap, struct device_node *np,
1202 int id, const char *stem, int stem_len)
1204 ap->np = np;
1205 ap->id = id;
1206 strncpy(ap->stem, stem, stem_len);
1207 ap->stem[stem_len] = 0;
1208 list_add_tail(&ap->link, &aliases_lookup);
1209 pr_debug("adding DT alias:%s: stem=%s id=%i node=%s\n",
1210 ap->alias, ap->stem, ap->id, of_node_full_name(np));
1214 * of_alias_scan - Scan all properties of 'aliases' node
1216 * The function scans all the properties of 'aliases' node and populate
1217 * the the global lookup table with the properties. It returns the
1218 * number of alias_prop found, or error code in error case.
1220 * @dt_alloc: An allocator that provides a virtual address to memory
1221 * for the resulting tree
1223 void of_alias_scan(void * (*dt_alloc)(u64 size, u64 align))
1225 struct property *pp;
1227 of_chosen = of_find_node_by_path("/chosen");
1228 if (of_chosen == NULL)
1229 of_chosen = of_find_node_by_path("/chosen@0");
1230 of_aliases = of_find_node_by_path("/aliases");
1231 if (!of_aliases)
1232 return;
1234 for_each_property_of_node(of_aliases, pp) {
1235 const char *start = pp->name;
1236 const char *end = start + strlen(start);
1237 struct device_node *np;
1238 struct alias_prop *ap;
1239 int id, len;
1241 /* Skip those we do not want to proceed */
1242 if (!strcmp(pp->name, "name") ||
1243 !strcmp(pp->name, "phandle") ||
1244 !strcmp(pp->name, "linux,phandle"))
1245 continue;
1247 np = of_find_node_by_path(pp->value);
1248 if (!np)
1249 continue;
1251 /* walk the alias backwards to extract the id and work out
1252 * the 'stem' string */
1253 while (isdigit(*(end-1)) && end > start)
1254 end--;
1255 len = end - start;
1257 if (kstrtoint(end, 10, &id) < 0)
1258 continue;
1260 /* Allocate an alias_prop with enough space for the stem */
1261 ap = dt_alloc(sizeof(*ap) + len + 1, 4);
1262 if (!ap)
1263 continue;
1264 ap->alias = start;
1265 of_alias_add(ap, np, id, start, len);
1270 * of_alias_get_id - Get alias id for the given device_node
1271 * @np: Pointer to the given device_node
1272 * @stem: Alias stem of the given device_node
1274 * The function travels the lookup table to get alias id for the given
1275 * device_node and alias stem. It returns the alias id if find it.
1277 int of_alias_get_id(struct device_node *np, const char *stem)
1279 struct alias_prop *app;
1280 int id = -ENODEV;
1282 mutex_lock(&of_aliases_mutex);
1283 list_for_each_entry(app, &aliases_lookup, link) {
1284 if (strcmp(app->stem, stem) != 0)
1285 continue;
1287 if (np == app->np) {
1288 id = app->id;
1289 break;
1292 mutex_unlock(&of_aliases_mutex);
1294 return id;
1296 EXPORT_SYMBOL_GPL(of_alias_get_id);
1298 const __be32 *of_prop_next_u32(struct property *prop, const __be32 *cur,
1299 u32 *pu)
1301 const void *curv = cur;
1303 if (!prop)
1304 return NULL;
1306 if (!cur) {
1307 curv = prop->value;
1308 goto out_val;
1311 curv += sizeof(*cur);
1312 if (curv >= prop->value + prop->length)
1313 return NULL;
1315 out_val:
1316 *pu = be32_to_cpup(curv);
1317 return curv;
1319 EXPORT_SYMBOL_GPL(of_prop_next_u32);
1321 const char *of_prop_next_string(struct property *prop, const char *cur)
1323 const void *curv = cur;
1325 if (!prop)
1326 return NULL;
1328 if (!cur)
1329 return prop->value;
1331 curv += strlen(cur) + 1;
1332 if (curv >= prop->value + prop->length)
1333 return NULL;
1335 return curv;
1337 EXPORT_SYMBOL_GPL(of_prop_next_string);