Merge tag 'v3.10.13' into lsk/v3.10/topic/kvm
[firefly-linux-kernel-4.4.55.git] / drivers / of / base.c
1 /*
2  * Procedures for creating, accessing and interpreting the device tree.
3  *
4  * Paul Mackerras       August 1996.
5  * Copyright (C) 1996-2005 Paul Mackerras.
6  *
7  *  Adapted for 64bit PowerPC by Dave Engebretsen and Peter Bergner.
8  *    {engebret|bergner}@us.ibm.com
9  *
10  *  Adapted for sparc and sparc64 by David S. Miller davem@davemloft.net
11  *
12  *  Reconsolidated from arch/x/kernel/prom.c by Stephen Rothwell and
13  *  Grant Likely.
14  *
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.
19  */
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>
26
27 #include "of_private.h"
28
29 LIST_HEAD(aliases_lookup);
30
31 struct device_node *of_allnodes;
32 EXPORT_SYMBOL(of_allnodes);
33 struct device_node *of_chosen;
34 struct device_node *of_aliases;
35 static struct device_node *of_stdout;
36
37 DEFINE_MUTEX(of_aliases_mutex);
38
39 /* use when traversing tree through the allnext, child, sibling,
40  * or parent members of struct device_node.
41  */
42 DEFINE_RAW_SPINLOCK(devtree_lock);
43
44 int of_n_addr_cells(struct device_node *np)
45 {
46         const __be32 *ip;
47
48         do {
49                 if (np->parent)
50                         np = np->parent;
51                 ip = of_get_property(np, "#address-cells", NULL);
52                 if (ip)
53                         return be32_to_cpup(ip);
54         } while (np->parent);
55         /* No #address-cells property for the root node */
56         return OF_ROOT_NODE_ADDR_CELLS_DEFAULT;
57 }
58 EXPORT_SYMBOL(of_n_addr_cells);
59
60 int of_n_size_cells(struct device_node *np)
61 {
62         const __be32 *ip;
63
64         do {
65                 if (np->parent)
66                         np = np->parent;
67                 ip = of_get_property(np, "#size-cells", NULL);
68                 if (ip)
69                         return be32_to_cpup(ip);
70         } while (np->parent);
71         /* No #size-cells property for the root node */
72         return OF_ROOT_NODE_SIZE_CELLS_DEFAULT;
73 }
74 EXPORT_SYMBOL(of_n_size_cells);
75
76 #if defined(CONFIG_OF_DYNAMIC)
77 /**
78  *      of_node_get - Increment refcount of a node
79  *      @node:  Node to inc refcount, NULL is supported to
80  *              simplify writing of callers
81  *
82  *      Returns node.
83  */
84 struct device_node *of_node_get(struct device_node *node)
85 {
86         if (node)
87                 kref_get(&node->kref);
88         return node;
89 }
90 EXPORT_SYMBOL(of_node_get);
91
92 static inline struct device_node *kref_to_device_node(struct kref *kref)
93 {
94         return container_of(kref, struct device_node, kref);
95 }
96
97 /**
98  *      of_node_release - release a dynamically allocated node
99  *      @kref:  kref element of the node to be released
100  *
101  *      In of_node_put() this function is passed to kref_put()
102  *      as the destructor.
103  */
104 static void of_node_release(struct kref *kref)
105 {
106         struct device_node *node = kref_to_device_node(kref);
107         struct property *prop = node->properties;
108
109         /* We should never be releasing nodes that haven't been detached. */
110         if (!of_node_check_flag(node, OF_DETACHED)) {
111                 pr_err("ERROR: Bad of_node_put() on %s\n", node->full_name);
112                 dump_stack();
113                 kref_init(&node->kref);
114                 return;
115         }
116
117         if (!of_node_check_flag(node, OF_DYNAMIC))
118                 return;
119
120         while (prop) {
121                 struct property *next = prop->next;
122                 kfree(prop->name);
123                 kfree(prop->value);
124                 kfree(prop);
125                 prop = next;
126
127                 if (!prop) {
128                         prop = node->deadprops;
129                         node->deadprops = NULL;
130                 }
131         }
132         kfree(node->full_name);
133         kfree(node->data);
134         kfree(node);
135 }
136
137 /**
138  *      of_node_put - Decrement refcount of a node
139  *      @node:  Node to dec refcount, NULL is supported to
140  *              simplify writing of callers
141  *
142  */
143 void of_node_put(struct device_node *node)
144 {
145         if (node)
146                 kref_put(&node->kref, of_node_release);
147 }
148 EXPORT_SYMBOL(of_node_put);
149 #endif /* CONFIG_OF_DYNAMIC */
150
151 static struct property *__of_find_property(const struct device_node *np,
152                                            const char *name, int *lenp)
153 {
154         struct property *pp;
155
156         if (!np)
157                 return NULL;
158
159         for (pp = np->properties; pp; pp = pp->next) {
160                 if (of_prop_cmp(pp->name, name) == 0) {
161                         if (lenp)
162                                 *lenp = pp->length;
163                         break;
164                 }
165         }
166
167         return pp;
168 }
169
170 struct property *of_find_property(const struct device_node *np,
171                                   const char *name,
172                                   int *lenp)
173 {
174         struct property *pp;
175         unsigned long flags;
176
177         raw_spin_lock_irqsave(&devtree_lock, flags);
178         pp = __of_find_property(np, name, lenp);
179         raw_spin_unlock_irqrestore(&devtree_lock, flags);
180
181         return pp;
182 }
183 EXPORT_SYMBOL(of_find_property);
184
185 /**
186  * of_find_all_nodes - Get next node in global list
187  * @prev:       Previous node or NULL to start iteration
188  *              of_node_put() will be called on it
189  *
190  * Returns a node pointer with refcount incremented, use
191  * of_node_put() on it when done.
192  */
193 struct device_node *of_find_all_nodes(struct device_node *prev)
194 {
195         struct device_node *np;
196         unsigned long flags;
197
198         raw_spin_lock_irqsave(&devtree_lock, flags);
199         np = prev ? prev->allnext : of_allnodes;
200         for (; np != NULL; np = np->allnext)
201                 if (of_node_get(np))
202                         break;
203         of_node_put(prev);
204         raw_spin_unlock_irqrestore(&devtree_lock, flags);
205         return np;
206 }
207 EXPORT_SYMBOL(of_find_all_nodes);
208
209 /*
210  * Find a property with a given name for a given node
211  * and return the value.
212  */
213 static const void *__of_get_property(const struct device_node *np,
214                                      const char *name, int *lenp)
215 {
216         struct property *pp = __of_find_property(np, name, lenp);
217
218         return pp ? pp->value : NULL;
219 }
220
221 /*
222  * Find a property with a given name for a given node
223  * and return the value.
224  */
225 const void *of_get_property(const struct device_node *np, const char *name,
226                             int *lenp)
227 {
228         struct property *pp = of_find_property(np, name, lenp);
229
230         return pp ? pp->value : NULL;
231 }
232 EXPORT_SYMBOL(of_get_property);
233
234 /** Checks if the given "compat" string matches one of the strings in
235  * the device's "compatible" property
236  */
237 static int __of_device_is_compatible(const struct device_node *device,
238                                      const char *compat)
239 {
240         const char* cp;
241         int cplen, l;
242
243         cp = __of_get_property(device, "compatible", &cplen);
244         if (cp == NULL)
245                 return 0;
246         while (cplen > 0) {
247                 if (of_compat_cmp(cp, compat, strlen(compat)) == 0)
248                         return 1;
249                 l = strlen(cp) + 1;
250                 cp += l;
251                 cplen -= l;
252         }
253
254         return 0;
255 }
256
257 /** Checks if the given "compat" string matches one of the strings in
258  * the device's "compatible" property
259  */
260 int of_device_is_compatible(const struct device_node *device,
261                 const char *compat)
262 {
263         unsigned long flags;
264         int res;
265
266         raw_spin_lock_irqsave(&devtree_lock, flags);
267         res = __of_device_is_compatible(device, compat);
268         raw_spin_unlock_irqrestore(&devtree_lock, flags);
269         return res;
270 }
271 EXPORT_SYMBOL(of_device_is_compatible);
272
273 /**
274  * of_machine_is_compatible - Test root of device tree for a given compatible value
275  * @compat: compatible string to look for in root node's compatible property.
276  *
277  * Returns true if the root node has the given value in its
278  * compatible property.
279  */
280 int of_machine_is_compatible(const char *compat)
281 {
282         struct device_node *root;
283         int rc = 0;
284
285         root = of_find_node_by_path("/");
286         if (root) {
287                 rc = of_device_is_compatible(root, compat);
288                 of_node_put(root);
289         }
290         return rc;
291 }
292 EXPORT_SYMBOL(of_machine_is_compatible);
293
294 /**
295  *  __of_device_is_available - check if a device is available for use
296  *
297  *  @device: Node to check for availability, with locks already held
298  *
299  *  Returns 1 if the status property is absent or set to "okay" or "ok",
300  *  0 otherwise
301  */
302 static int __of_device_is_available(const struct device_node *device)
303 {
304         const char *status;
305         int statlen;
306
307         status = __of_get_property(device, "status", &statlen);
308         if (status == NULL)
309                 return 1;
310
311         if (statlen > 0) {
312                 if (!strcmp(status, "okay") || !strcmp(status, "ok"))
313                         return 1;
314         }
315
316         return 0;
317 }
318
319 /**
320  *  of_device_is_available - check if a device is available for use
321  *
322  *  @device: Node to check for availability
323  *
324  *  Returns 1 if the status property is absent or set to "okay" or "ok",
325  *  0 otherwise
326  */
327 int of_device_is_available(const struct device_node *device)
328 {
329         unsigned long flags;
330         int res;
331
332         raw_spin_lock_irqsave(&devtree_lock, flags);
333         res = __of_device_is_available(device);
334         raw_spin_unlock_irqrestore(&devtree_lock, flags);
335         return res;
336
337 }
338 EXPORT_SYMBOL(of_device_is_available);
339
340 /**
341  *      of_get_parent - Get a node's parent if any
342  *      @node:  Node to get parent
343  *
344  *      Returns a node pointer with refcount incremented, use
345  *      of_node_put() on it when done.
346  */
347 struct device_node *of_get_parent(const struct device_node *node)
348 {
349         struct device_node *np;
350         unsigned long flags;
351
352         if (!node)
353                 return NULL;
354
355         raw_spin_lock_irqsave(&devtree_lock, flags);
356         np = of_node_get(node->parent);
357         raw_spin_unlock_irqrestore(&devtree_lock, flags);
358         return np;
359 }
360 EXPORT_SYMBOL(of_get_parent);
361
362 /**
363  *      of_get_next_parent - Iterate to a node's parent
364  *      @node:  Node to get parent of
365  *
366  *      This is like of_get_parent() except that it drops the
367  *      refcount on the passed node, making it suitable for iterating
368  *      through a node's parents.
369  *
370  *      Returns a node pointer with refcount incremented, use
371  *      of_node_put() on it when done.
372  */
373 struct device_node *of_get_next_parent(struct device_node *node)
374 {
375         struct device_node *parent;
376         unsigned long flags;
377
378         if (!node)
379                 return NULL;
380
381         raw_spin_lock_irqsave(&devtree_lock, flags);
382         parent = of_node_get(node->parent);
383         of_node_put(node);
384         raw_spin_unlock_irqrestore(&devtree_lock, flags);
385         return parent;
386 }
387 EXPORT_SYMBOL(of_get_next_parent);
388
389 /**
390  *      of_get_next_child - Iterate a node childs
391  *      @node:  parent node
392  *      @prev:  previous child of the parent node, or NULL to get first
393  *
394  *      Returns a node pointer with refcount incremented, use
395  *      of_node_put() on it when done.
396  */
397 struct device_node *of_get_next_child(const struct device_node *node,
398         struct device_node *prev)
399 {
400         struct device_node *next;
401         unsigned long flags;
402
403         raw_spin_lock_irqsave(&devtree_lock, flags);
404         next = prev ? prev->sibling : node->child;
405         for (; next; next = next->sibling)
406                 if (of_node_get(next))
407                         break;
408         of_node_put(prev);
409         raw_spin_unlock_irqrestore(&devtree_lock, flags);
410         return next;
411 }
412 EXPORT_SYMBOL(of_get_next_child);
413
414 /**
415  *      of_get_next_available_child - Find the next available child node
416  *      @node:  parent node
417  *      @prev:  previous child of the parent node, or NULL to get first
418  *
419  *      This function is like of_get_next_child(), except that it
420  *      automatically skips any disabled nodes (i.e. status = "disabled").
421  */
422 struct device_node *of_get_next_available_child(const struct device_node *node,
423         struct device_node *prev)
424 {
425         struct device_node *next;
426         unsigned long flags;
427
428         raw_spin_lock_irqsave(&devtree_lock, flags);
429         next = prev ? prev->sibling : node->child;
430         for (; next; next = next->sibling) {
431                 if (!__of_device_is_available(next))
432                         continue;
433                 if (of_node_get(next))
434                         break;
435         }
436         of_node_put(prev);
437         raw_spin_unlock_irqrestore(&devtree_lock, flags);
438         return next;
439 }
440 EXPORT_SYMBOL(of_get_next_available_child);
441
442 /**
443  *      of_get_child_by_name - Find the child node by name for a given parent
444  *      @node:  parent node
445  *      @name:  child name to look for.
446  *
447  *      This function looks for child node for given matching name
448  *
449  *      Returns a node pointer if found, with refcount incremented, use
450  *      of_node_put() on it when done.
451  *      Returns NULL if node is not found.
452  */
453 struct device_node *of_get_child_by_name(const struct device_node *node,
454                                 const char *name)
455 {
456         struct device_node *child;
457
458         for_each_child_of_node(node, child)
459                 if (child->name && (of_node_cmp(child->name, name) == 0))
460                         break;
461         return child;
462 }
463 EXPORT_SYMBOL(of_get_child_by_name);
464
465 /**
466  *      of_find_node_by_path - Find a node matching a full OF path
467  *      @path:  The full path to match
468  *
469  *      Returns a node pointer with refcount incremented, use
470  *      of_node_put() on it when done.
471  */
472 struct device_node *of_find_node_by_path(const char *path)
473 {
474         struct device_node *np = of_allnodes;
475         unsigned long flags;
476
477         raw_spin_lock_irqsave(&devtree_lock, flags);
478         for (; np; np = np->allnext) {
479                 if (np->full_name && (of_node_cmp(np->full_name, path) == 0)
480                     && of_node_get(np))
481                         break;
482         }
483         raw_spin_unlock_irqrestore(&devtree_lock, flags);
484         return np;
485 }
486 EXPORT_SYMBOL(of_find_node_by_path);
487
488 /**
489  *      of_find_node_by_name - Find a node by its "name" property
490  *      @from:  The node to start searching from or NULL, the node
491  *              you pass will not be searched, only the next one
492  *              will; typically, you pass what the previous call
493  *              returned. of_node_put() will be called on it
494  *      @name:  The name string to match against
495  *
496  *      Returns a node pointer with refcount incremented, use
497  *      of_node_put() on it when done.
498  */
499 struct device_node *of_find_node_by_name(struct device_node *from,
500         const char *name)
501 {
502         struct device_node *np;
503         unsigned long flags;
504
505         raw_spin_lock_irqsave(&devtree_lock, flags);
506         np = from ? from->allnext : of_allnodes;
507         for (; np; np = np->allnext)
508                 if (np->name && (of_node_cmp(np->name, name) == 0)
509                     && of_node_get(np))
510                         break;
511         of_node_put(from);
512         raw_spin_unlock_irqrestore(&devtree_lock, flags);
513         return np;
514 }
515 EXPORT_SYMBOL(of_find_node_by_name);
516
517 /**
518  *      of_find_node_by_type - Find a node by its "device_type" property
519  *      @from:  The node to start searching from, or NULL to start searching
520  *              the entire device tree. The node you pass will not be
521  *              searched, only the next one will; typically, you pass
522  *              what the previous call returned. of_node_put() will be
523  *              called on from for you.
524  *      @type:  The type string to match against
525  *
526  *      Returns a node pointer with refcount incremented, use
527  *      of_node_put() on it when done.
528  */
529 struct device_node *of_find_node_by_type(struct device_node *from,
530         const char *type)
531 {
532         struct device_node *np;
533         unsigned long flags;
534
535         raw_spin_lock_irqsave(&devtree_lock, flags);
536         np = from ? from->allnext : of_allnodes;
537         for (; np; np = np->allnext)
538                 if (np->type && (of_node_cmp(np->type, type) == 0)
539                     && of_node_get(np))
540                         break;
541         of_node_put(from);
542         raw_spin_unlock_irqrestore(&devtree_lock, flags);
543         return np;
544 }
545 EXPORT_SYMBOL(of_find_node_by_type);
546
547 /**
548  *      of_find_compatible_node - Find a node based on type and one of the
549  *                                tokens in its "compatible" property
550  *      @from:          The node to start searching from or NULL, the node
551  *                      you pass will not be searched, only the next one
552  *                      will; typically, you pass what the previous call
553  *                      returned. of_node_put() will be called on it
554  *      @type:          The type string to match "device_type" or NULL to ignore
555  *      @compatible:    The string to match to one of the tokens in the device
556  *                      "compatible" list.
557  *
558  *      Returns a node pointer with refcount incremented, use
559  *      of_node_put() on it when done.
560  */
561 struct device_node *of_find_compatible_node(struct device_node *from,
562         const char *type, const char *compatible)
563 {
564         struct device_node *np;
565         unsigned long flags;
566
567         raw_spin_lock_irqsave(&devtree_lock, flags);
568         np = from ? from->allnext : of_allnodes;
569         for (; np; np = np->allnext) {
570                 if (type
571                     && !(np->type && (of_node_cmp(np->type, type) == 0)))
572                         continue;
573                 if (__of_device_is_compatible(np, compatible) &&
574                     of_node_get(np))
575                         break;
576         }
577         of_node_put(from);
578         raw_spin_unlock_irqrestore(&devtree_lock, flags);
579         return np;
580 }
581 EXPORT_SYMBOL(of_find_compatible_node);
582
583 /**
584  *      of_find_node_with_property - Find a node which has a property with
585  *                                   the given name.
586  *      @from:          The node to start searching from or NULL, the node
587  *                      you pass will not be searched, only the next one
588  *                      will; typically, you pass what the previous call
589  *                      returned. of_node_put() will be called on it
590  *      @prop_name:     The name of the property to look for.
591  *
592  *      Returns a node pointer with refcount incremented, use
593  *      of_node_put() on it when done.
594  */
595 struct device_node *of_find_node_with_property(struct device_node *from,
596         const char *prop_name)
597 {
598         struct device_node *np;
599         struct property *pp;
600         unsigned long flags;
601
602         raw_spin_lock_irqsave(&devtree_lock, flags);
603         np = from ? from->allnext : of_allnodes;
604         for (; np; np = np->allnext) {
605                 for (pp = np->properties; pp; pp = pp->next) {
606                         if (of_prop_cmp(pp->name, prop_name) == 0) {
607                                 of_node_get(np);
608                                 goto out;
609                         }
610                 }
611         }
612 out:
613         of_node_put(from);
614         raw_spin_unlock_irqrestore(&devtree_lock, flags);
615         return np;
616 }
617 EXPORT_SYMBOL(of_find_node_with_property);
618
619 static
620 const struct of_device_id *__of_match_node(const struct of_device_id *matches,
621                                            const struct device_node *node)
622 {
623         if (!matches)
624                 return NULL;
625
626         while (matches->name[0] || matches->type[0] || matches->compatible[0]) {
627                 int match = 1;
628                 if (matches->name[0])
629                         match &= node->name
630                                 && !strcmp(matches->name, node->name);
631                 if (matches->type[0])
632                         match &= node->type
633                                 && !strcmp(matches->type, node->type);
634                 if (matches->compatible[0])
635                         match &= __of_device_is_compatible(node,
636                                                            matches->compatible);
637                 if (match)
638                         return matches;
639                 matches++;
640         }
641         return NULL;
642 }
643
644 /**
645  * of_match_node - Tell if an device_node has a matching of_match structure
646  *      @matches:       array of of device match structures to search in
647  *      @node:          the of device structure to match against
648  *
649  *      Low level utility function used by device matching.
650  */
651 const struct of_device_id *of_match_node(const struct of_device_id *matches,
652                                          const struct device_node *node)
653 {
654         const struct of_device_id *match;
655         unsigned long flags;
656
657         raw_spin_lock_irqsave(&devtree_lock, flags);
658         match = __of_match_node(matches, node);
659         raw_spin_unlock_irqrestore(&devtree_lock, flags);
660         return match;
661 }
662 EXPORT_SYMBOL(of_match_node);
663
664 /**
665  *      of_find_matching_node_and_match - Find a node based on an of_device_id
666  *                                        match table.
667  *      @from:          The node to start searching from or NULL, the node
668  *                      you pass will not be searched, only the next one
669  *                      will; typically, you pass what the previous call
670  *                      returned. of_node_put() will be called on it
671  *      @matches:       array of of device match structures to search in
672  *      @match          Updated to point at the matches entry which matched
673  *
674  *      Returns a node pointer with refcount incremented, use
675  *      of_node_put() on it when done.
676  */
677 struct device_node *of_find_matching_node_and_match(struct device_node *from,
678                                         const struct of_device_id *matches,
679                                         const struct of_device_id **match)
680 {
681         struct device_node *np;
682         const struct of_device_id *m;
683         unsigned long flags;
684
685         if (match)
686                 *match = NULL;
687
688         raw_spin_lock_irqsave(&devtree_lock, flags);
689         np = from ? from->allnext : of_allnodes;
690         for (; np; np = np->allnext) {
691                 m = __of_match_node(matches, np);
692                 if (m && of_node_get(np)) {
693                         if (match)
694                                 *match = m;
695                         break;
696                 }
697         }
698         of_node_put(from);
699         raw_spin_unlock_irqrestore(&devtree_lock, flags);
700         return np;
701 }
702 EXPORT_SYMBOL(of_find_matching_node_and_match);
703
704 /**
705  * of_modalias_node - Lookup appropriate modalias for a device node
706  * @node:       pointer to a device tree node
707  * @modalias:   Pointer to buffer that modalias value will be copied into
708  * @len:        Length of modalias value
709  *
710  * Based on the value of the compatible property, this routine will attempt
711  * to choose an appropriate modalias value for a particular device tree node.
712  * It does this by stripping the manufacturer prefix (as delimited by a ',')
713  * from the first entry in the compatible list property.
714  *
715  * This routine returns 0 on success, <0 on failure.
716  */
717 int of_modalias_node(struct device_node *node, char *modalias, int len)
718 {
719         const char *compatible, *p;
720         int cplen;
721
722         compatible = of_get_property(node, "compatible", &cplen);
723         if (!compatible || strlen(compatible) > cplen)
724                 return -ENODEV;
725         p = strchr(compatible, ',');
726         strlcpy(modalias, p ? p + 1 : compatible, len);
727         return 0;
728 }
729 EXPORT_SYMBOL_GPL(of_modalias_node);
730
731 /**
732  * of_find_node_by_phandle - Find a node given a phandle
733  * @handle:     phandle of the node to find
734  *
735  * Returns a node pointer with refcount incremented, use
736  * of_node_put() on it when done.
737  */
738 struct device_node *of_find_node_by_phandle(phandle handle)
739 {
740         struct device_node *np;
741         unsigned long flags;
742
743         raw_spin_lock_irqsave(&devtree_lock, flags);
744         for (np = of_allnodes; np; np = np->allnext)
745                 if (np->phandle == handle)
746                         break;
747         of_node_get(np);
748         raw_spin_unlock_irqrestore(&devtree_lock, flags);
749         return np;
750 }
751 EXPORT_SYMBOL(of_find_node_by_phandle);
752
753 /**
754  * of_find_property_value_of_size
755  *
756  * @np:         device node from which the property value is to be read.
757  * @propname:   name of the property to be searched.
758  * @len:        requested length of property value
759  *
760  * Search for a property in a device node and valid the requested size.
761  * Returns the property value on success, -EINVAL if the property does not
762  *  exist, -ENODATA if property does not have a value, and -EOVERFLOW if the
763  * property data isn't large enough.
764  *
765  */
766 static void *of_find_property_value_of_size(const struct device_node *np,
767                         const char *propname, u32 len)
768 {
769         struct property *prop = of_find_property(np, propname, NULL);
770
771         if (!prop)
772                 return ERR_PTR(-EINVAL);
773         if (!prop->value)
774                 return ERR_PTR(-ENODATA);
775         if (len > prop->length)
776                 return ERR_PTR(-EOVERFLOW);
777
778         return prop->value;
779 }
780
781 /**
782  * of_property_read_u32_index - Find and read a u32 from a multi-value property.
783  *
784  * @np:         device node from which the property value is to be read.
785  * @propname:   name of the property to be searched.
786  * @index:      index of the u32 in the list of values
787  * @out_value:  pointer to return value, modified only if no error.
788  *
789  * Search for a property in a device node and read nth 32-bit value from
790  * it. Returns 0 on success, -EINVAL if the property does not exist,
791  * -ENODATA if property does not have a value, and -EOVERFLOW if the
792  * property data isn't large enough.
793  *
794  * The out_value is modified only if a valid u32 value can be decoded.
795  */
796 int of_property_read_u32_index(const struct device_node *np,
797                                        const char *propname,
798                                        u32 index, u32 *out_value)
799 {
800         const u32 *val = of_find_property_value_of_size(np, propname,
801                                         ((index + 1) * sizeof(*out_value)));
802
803         if (IS_ERR(val))
804                 return PTR_ERR(val);
805
806         *out_value = be32_to_cpup(((__be32 *)val) + index);
807         return 0;
808 }
809 EXPORT_SYMBOL_GPL(of_property_read_u32_index);
810
811 /**
812  * of_property_read_u8_array - Find and read an array of u8 from a property.
813  *
814  * @np:         device node from which the property value is to be read.
815  * @propname:   name of the property to be searched.
816  * @out_value:  pointer to return value, modified only if return value is 0.
817  * @sz:         number of array elements to read
818  *
819  * Search for a property in a device node and read 8-bit value(s) from
820  * it. Returns 0 on success, -EINVAL if the property does not exist,
821  * -ENODATA if property does not have a value, and -EOVERFLOW if the
822  * property data isn't large enough.
823  *
824  * dts entry of array should be like:
825  *      property = /bits/ 8 <0x50 0x60 0x70>;
826  *
827  * The out_value is modified only if a valid u8 value can be decoded.
828  */
829 int of_property_read_u8_array(const struct device_node *np,
830                         const char *propname, u8 *out_values, size_t sz)
831 {
832         const u8 *val = of_find_property_value_of_size(np, propname,
833                                                 (sz * sizeof(*out_values)));
834
835         if (IS_ERR(val))
836                 return PTR_ERR(val);
837
838         while (sz--)
839                 *out_values++ = *val++;
840         return 0;
841 }
842 EXPORT_SYMBOL_GPL(of_property_read_u8_array);
843
844 /**
845  * of_property_read_u16_array - Find and read an array of u16 from a property.
846  *
847  * @np:         device node from which the property value is to be read.
848  * @propname:   name of the property to be searched.
849  * @out_value:  pointer to return value, modified only if return value is 0.
850  * @sz:         number of array elements to read
851  *
852  * Search for a property in a device node and read 16-bit value(s) from
853  * it. Returns 0 on success, -EINVAL if the property does not exist,
854  * -ENODATA if property does not have a value, and -EOVERFLOW if the
855  * property data isn't large enough.
856  *
857  * dts entry of array should be like:
858  *      property = /bits/ 16 <0x5000 0x6000 0x7000>;
859  *
860  * The out_value is modified only if a valid u16 value can be decoded.
861  */
862 int of_property_read_u16_array(const struct device_node *np,
863                         const char *propname, u16 *out_values, size_t sz)
864 {
865         const __be16 *val = of_find_property_value_of_size(np, propname,
866                                                 (sz * sizeof(*out_values)));
867
868         if (IS_ERR(val))
869                 return PTR_ERR(val);
870
871         while (sz--)
872                 *out_values++ = be16_to_cpup(val++);
873         return 0;
874 }
875 EXPORT_SYMBOL_GPL(of_property_read_u16_array);
876
877 /**
878  * of_property_read_u32_array - Find and read an array of 32 bit integers
879  * from a property.
880  *
881  * @np:         device node from which the property value is to be read.
882  * @propname:   name of the property to be searched.
883  * @out_value:  pointer to return value, modified only if return value is 0.
884  * @sz:         number of array elements to read
885  *
886  * Search for a property in a device node and read 32-bit value(s) from
887  * it. Returns 0 on success, -EINVAL if the property does not exist,
888  * -ENODATA if property does not have a value, and -EOVERFLOW if the
889  * property data isn't large enough.
890  *
891  * The out_value is modified only if a valid u32 value can be decoded.
892  */
893 int of_property_read_u32_array(const struct device_node *np,
894                                const char *propname, u32 *out_values,
895                                size_t sz)
896 {
897         const __be32 *val = of_find_property_value_of_size(np, propname,
898                                                 (sz * sizeof(*out_values)));
899
900         if (IS_ERR(val))
901                 return PTR_ERR(val);
902
903         while (sz--)
904                 *out_values++ = be32_to_cpup(val++);
905         return 0;
906 }
907 EXPORT_SYMBOL_GPL(of_property_read_u32_array);
908
909 /**
910  * of_property_read_u64 - Find and read a 64 bit integer from a property
911  * @np:         device node from which the property value is to be read.
912  * @propname:   name of the property to be searched.
913  * @out_value:  pointer to return value, modified only if return value is 0.
914  *
915  * Search for a property in a device node and read a 64-bit value from
916  * it. Returns 0 on success, -EINVAL if the property does not exist,
917  * -ENODATA if property does not have a value, and -EOVERFLOW if the
918  * property data isn't large enough.
919  *
920  * The out_value is modified only if a valid u64 value can be decoded.
921  */
922 int of_property_read_u64(const struct device_node *np, const char *propname,
923                          u64 *out_value)
924 {
925         const __be32 *val = of_find_property_value_of_size(np, propname,
926                                                 sizeof(*out_value));
927
928         if (IS_ERR(val))
929                 return PTR_ERR(val);
930
931         *out_value = of_read_number(val, 2);
932         return 0;
933 }
934 EXPORT_SYMBOL_GPL(of_property_read_u64);
935
936 /**
937  * of_property_read_string - Find and read a string from a property
938  * @np:         device node from which the property value is to be read.
939  * @propname:   name of the property to be searched.
940  * @out_string: pointer to null terminated return string, modified only if
941  *              return value is 0.
942  *
943  * Search for a property in a device tree node and retrieve a null
944  * terminated string value (pointer to data, not a copy). Returns 0 on
945  * success, -EINVAL if the property does not exist, -ENODATA if property
946  * does not have a value, and -EILSEQ if the string is not null-terminated
947  * within the length of the property data.
948  *
949  * The out_string pointer is modified only if a valid string can be decoded.
950  */
951 int of_property_read_string(struct device_node *np, const char *propname,
952                                 const char **out_string)
953 {
954         struct property *prop = of_find_property(np, propname, NULL);
955         if (!prop)
956                 return -EINVAL;
957         if (!prop->value)
958                 return -ENODATA;
959         if (strnlen(prop->value, prop->length) >= prop->length)
960                 return -EILSEQ;
961         *out_string = prop->value;
962         return 0;
963 }
964 EXPORT_SYMBOL_GPL(of_property_read_string);
965
966 /**
967  * of_property_read_string_index - Find and read a string from a multiple
968  * strings property.
969  * @np:         device node from which the property value is to be read.
970  * @propname:   name of the property to be searched.
971  * @index:      index of the string in the list of strings
972  * @out_string: pointer to null terminated return string, modified only if
973  *              return value is 0.
974  *
975  * Search for a property in a device tree node and retrieve a null
976  * terminated string value (pointer to data, not a copy) in the list of strings
977  * contained in that property.
978  * Returns 0 on success, -EINVAL if the property does not exist, -ENODATA if
979  * property does not have a value, and -EILSEQ if the string is not
980  * null-terminated within the length of the property data.
981  *
982  * The out_string pointer is modified only if a valid string can be decoded.
983  */
984 int of_property_read_string_index(struct device_node *np, const char *propname,
985                                   int index, const char **output)
986 {
987         struct property *prop = of_find_property(np, propname, NULL);
988         int i = 0;
989         size_t l = 0, total = 0;
990         const char *p;
991
992         if (!prop)
993                 return -EINVAL;
994         if (!prop->value)
995                 return -ENODATA;
996         if (strnlen(prop->value, prop->length) >= prop->length)
997                 return -EILSEQ;
998
999         p = prop->value;
1000
1001         for (i = 0; total < prop->length; total += l, p += l) {
1002                 l = strlen(p) + 1;
1003                 if (i++ == index) {
1004                         *output = p;
1005                         return 0;
1006                 }
1007         }
1008         return -ENODATA;
1009 }
1010 EXPORT_SYMBOL_GPL(of_property_read_string_index);
1011
1012 /**
1013  * of_property_match_string() - Find string in a list and return index
1014  * @np: pointer to node containing string list property
1015  * @propname: string list property name
1016  * @string: pointer to string to search for in string list
1017  *
1018  * This function searches a string list property and returns the index
1019  * of a specific string value.
1020  */
1021 int of_property_match_string(struct device_node *np, const char *propname,
1022                              const char *string)
1023 {
1024         struct property *prop = of_find_property(np, propname, NULL);
1025         size_t l;
1026         int i;
1027         const char *p, *end;
1028
1029         if (!prop)
1030                 return -EINVAL;
1031         if (!prop->value)
1032                 return -ENODATA;
1033
1034         p = prop->value;
1035         end = p + prop->length;
1036
1037         for (i = 0; p < end; i++, p += l) {
1038                 l = strlen(p) + 1;
1039                 if (p + l > end)
1040                         return -EILSEQ;
1041                 pr_debug("comparing %s with %s\n", string, p);
1042                 if (strcmp(string, p) == 0)
1043                         return i; /* Found it; return index */
1044         }
1045         return -ENODATA;
1046 }
1047 EXPORT_SYMBOL_GPL(of_property_match_string);
1048
1049 /**
1050  * of_property_count_strings - Find and return the number of strings from a
1051  * multiple strings property.
1052  * @np:         device node from which the property value is to be read.
1053  * @propname:   name of the property to be searched.
1054  *
1055  * Search for a property in a device tree node and retrieve the number of null
1056  * terminated string contain in it. Returns the number of strings on
1057  * success, -EINVAL if the property does not exist, -ENODATA if property
1058  * does not have a value, and -EILSEQ if the string is not null-terminated
1059  * within the length of the property data.
1060  */
1061 int of_property_count_strings(struct device_node *np, const char *propname)
1062 {
1063         struct property *prop = of_find_property(np, propname, NULL);
1064         int i = 0;
1065         size_t l = 0, total = 0;
1066         const char *p;
1067
1068         if (!prop)
1069                 return -EINVAL;
1070         if (!prop->value)
1071                 return -ENODATA;
1072         if (strnlen(prop->value, prop->length) >= prop->length)
1073                 return -EILSEQ;
1074
1075         p = prop->value;
1076
1077         for (i = 0; total < prop->length; total += l, p += l, i++)
1078                 l = strlen(p) + 1;
1079
1080         return i;
1081 }
1082 EXPORT_SYMBOL_GPL(of_property_count_strings);
1083
1084 /**
1085  * of_parse_phandle - Resolve a phandle property to a device_node pointer
1086  * @np: Pointer to device node holding phandle property
1087  * @phandle_name: Name of property holding a phandle value
1088  * @index: For properties holding a table of phandles, this is the index into
1089  *         the table
1090  *
1091  * Returns the device_node pointer with refcount incremented.  Use
1092  * of_node_put() on it when done.
1093  */
1094 struct device_node *of_parse_phandle(const struct device_node *np,
1095                                      const char *phandle_name, int index)
1096 {
1097         const __be32 *phandle;
1098         int size;
1099
1100         phandle = of_get_property(np, phandle_name, &size);
1101         if ((!phandle) || (size < sizeof(*phandle) * (index + 1)))
1102                 return NULL;
1103
1104         return of_find_node_by_phandle(be32_to_cpup(phandle + index));
1105 }
1106 EXPORT_SYMBOL(of_parse_phandle);
1107
1108 /**
1109  * of_parse_phandle_with_args() - Find a node pointed by phandle in a list
1110  * @np:         pointer to a device tree node containing a list
1111  * @list_name:  property name that contains a list
1112  * @cells_name: property name that specifies phandles' arguments count
1113  * @index:      index of a phandle to parse out
1114  * @out_args:   optional pointer to output arguments structure (will be filled)
1115  *
1116  * This function is useful to parse lists of phandles and their arguments.
1117  * Returns 0 on success and fills out_args, on error returns appropriate
1118  * errno value.
1119  *
1120  * Caller is responsible to call of_node_put() on the returned out_args->node
1121  * pointer.
1122  *
1123  * Example:
1124  *
1125  * phandle1: node1 {
1126  *      #list-cells = <2>;
1127  * }
1128  *
1129  * phandle2: node2 {
1130  *      #list-cells = <1>;
1131  * }
1132  *
1133  * node3 {
1134  *      list = <&phandle1 1 2 &phandle2 3>;
1135  * }
1136  *
1137  * To get a device_node of the `node2' node you may call this:
1138  * of_parse_phandle_with_args(node3, "list", "#list-cells", 1, &args);
1139  */
1140 static int __of_parse_phandle_with_args(const struct device_node *np,
1141                                         const char *list_name,
1142                                         const char *cells_name, int index,
1143                                         struct of_phandle_args *out_args)
1144 {
1145         const __be32 *list, *list_end;
1146         int rc = 0, size, cur_index = 0;
1147         uint32_t count = 0;
1148         struct device_node *node = NULL;
1149         phandle phandle;
1150
1151         /* Retrieve the phandle list property */
1152         list = of_get_property(np, list_name, &size);
1153         if (!list)
1154                 return -ENOENT;
1155         list_end = list + size / sizeof(*list);
1156
1157         /* Loop over the phandles until all the requested entry is found */
1158         while (list < list_end) {
1159                 rc = -EINVAL;
1160                 count = 0;
1161
1162                 /*
1163                  * If phandle is 0, then it is an empty entry with no
1164                  * arguments.  Skip forward to the next entry.
1165                  */
1166                 phandle = be32_to_cpup(list++);
1167                 if (phandle) {
1168                         /*
1169                          * Find the provider node and parse the #*-cells
1170                          * property to determine the argument length
1171                          */
1172                         node = of_find_node_by_phandle(phandle);
1173                         if (!node) {
1174                                 pr_err("%s: could not find phandle\n",
1175                                          np->full_name);
1176                                 goto err;
1177                         }
1178                         if (of_property_read_u32(node, cells_name, &count)) {
1179                                 pr_err("%s: could not get %s for %s\n",
1180                                          np->full_name, cells_name,
1181                                          node->full_name);
1182                                 goto err;
1183                         }
1184
1185                         /*
1186                          * Make sure that the arguments actually fit in the
1187                          * remaining property data length
1188                          */
1189                         if (list + count > list_end) {
1190                                 pr_err("%s: arguments longer than property\n",
1191                                          np->full_name);
1192                                 goto err;
1193                         }
1194                 }
1195
1196                 /*
1197                  * All of the error cases above bail out of the loop, so at
1198                  * this point, the parsing is successful. If the requested
1199                  * index matches, then fill the out_args structure and return,
1200                  * or return -ENOENT for an empty entry.
1201                  */
1202                 rc = -ENOENT;
1203                 if (cur_index == index) {
1204                         if (!phandle)
1205                                 goto err;
1206
1207                         if (out_args) {
1208                                 int i;
1209                                 if (WARN_ON(count > MAX_PHANDLE_ARGS))
1210                                         count = MAX_PHANDLE_ARGS;
1211                                 out_args->np = node;
1212                                 out_args->args_count = count;
1213                                 for (i = 0; i < count; i++)
1214                                         out_args->args[i] = be32_to_cpup(list++);
1215                         } else {
1216                                 of_node_put(node);
1217                         }
1218
1219                         /* Found it! return success */
1220                         return 0;
1221                 }
1222
1223                 of_node_put(node);
1224                 node = NULL;
1225                 list += count;
1226                 cur_index++;
1227         }
1228
1229         /*
1230          * Unlock node before returning result; will be one of:
1231          * -ENOENT : index is for empty phandle
1232          * -EINVAL : parsing error on data
1233          * [1..n]  : Number of phandle (count mode; when index = -1)
1234          */
1235         rc = index < 0 ? cur_index : -ENOENT;
1236  err:
1237         if (node)
1238                 of_node_put(node);
1239         return rc;
1240 }
1241
1242 int of_parse_phandle_with_args(const struct device_node *np, const char *list_name,
1243                                 const char *cells_name, int index,
1244                                 struct of_phandle_args *out_args)
1245 {
1246         if (index < 0)
1247                 return -EINVAL;
1248         return __of_parse_phandle_with_args(np, list_name, cells_name, index, out_args);
1249 }
1250 EXPORT_SYMBOL(of_parse_phandle_with_args);
1251
1252 /**
1253  * of_count_phandle_with_args() - Find the number of phandles references in a property
1254  * @np:         pointer to a device tree node containing a list
1255  * @list_name:  property name that contains a list
1256  * @cells_name: property name that specifies phandles' arguments count
1257  *
1258  * Returns the number of phandle + argument tuples within a property. It
1259  * is a typical pattern to encode a list of phandle and variable
1260  * arguments into a single property. The number of arguments is encoded
1261  * by a property in the phandle-target node. For example, a gpios
1262  * property would contain a list of GPIO specifies consisting of a
1263  * phandle and 1 or more arguments. The number of arguments are
1264  * determined by the #gpio-cells property in the node pointed to by the
1265  * phandle.
1266  */
1267 int of_count_phandle_with_args(const struct device_node *np, const char *list_name,
1268                                 const char *cells_name)
1269 {
1270         return __of_parse_phandle_with_args(np, list_name, cells_name, -1, NULL);
1271 }
1272 EXPORT_SYMBOL(of_count_phandle_with_args);
1273
1274 #if defined(CONFIG_OF_DYNAMIC)
1275 static int of_property_notify(int action, struct device_node *np,
1276                               struct property *prop)
1277 {
1278         struct of_prop_reconfig pr;
1279
1280         pr.dn = np;
1281         pr.prop = prop;
1282         return of_reconfig_notify(action, &pr);
1283 }
1284 #else
1285 static int of_property_notify(int action, struct device_node *np,
1286                               struct property *prop)
1287 {
1288         return 0;
1289 }
1290 #endif
1291
1292 /**
1293  * of_add_property - Add a property to a node
1294  */
1295 int of_add_property(struct device_node *np, struct property *prop)
1296 {
1297         struct property **next;
1298         unsigned long flags;
1299         int rc;
1300
1301         rc = of_property_notify(OF_RECONFIG_ADD_PROPERTY, np, prop);
1302         if (rc)
1303                 return rc;
1304
1305         prop->next = NULL;
1306         raw_spin_lock_irqsave(&devtree_lock, flags);
1307         next = &np->properties;
1308         while (*next) {
1309                 if (strcmp(prop->name, (*next)->name) == 0) {
1310                         /* duplicate ! don't insert it */
1311                         raw_spin_unlock_irqrestore(&devtree_lock, flags);
1312                         return -1;
1313                 }
1314                 next = &(*next)->next;
1315         }
1316         *next = prop;
1317         raw_spin_unlock_irqrestore(&devtree_lock, flags);
1318
1319 #ifdef CONFIG_PROC_DEVICETREE
1320         /* try to add to proc as well if it was initialized */
1321         if (np->pde)
1322                 proc_device_tree_add_prop(np->pde, prop);
1323 #endif /* CONFIG_PROC_DEVICETREE */
1324
1325         return 0;
1326 }
1327
1328 /**
1329  * of_remove_property - Remove a property from a node.
1330  *
1331  * Note that we don't actually remove it, since we have given out
1332  * who-knows-how-many pointers to the data using get-property.
1333  * Instead we just move the property to the "dead properties"
1334  * list, so it won't be found any more.
1335  */
1336 int of_remove_property(struct device_node *np, struct property *prop)
1337 {
1338         struct property **next;
1339         unsigned long flags;
1340         int found = 0;
1341         int rc;
1342
1343         rc = of_property_notify(OF_RECONFIG_REMOVE_PROPERTY, np, prop);
1344         if (rc)
1345                 return rc;
1346
1347         raw_spin_lock_irqsave(&devtree_lock, flags);
1348         next = &np->properties;
1349         while (*next) {
1350                 if (*next == prop) {
1351                         /* found the node */
1352                         *next = prop->next;
1353                         prop->next = np->deadprops;
1354                         np->deadprops = prop;
1355                         found = 1;
1356                         break;
1357                 }
1358                 next = &(*next)->next;
1359         }
1360         raw_spin_unlock_irqrestore(&devtree_lock, flags);
1361
1362         if (!found)
1363                 return -ENODEV;
1364
1365 #ifdef CONFIG_PROC_DEVICETREE
1366         /* try to remove the proc node as well */
1367         if (np->pde)
1368                 proc_device_tree_remove_prop(np->pde, prop);
1369 #endif /* CONFIG_PROC_DEVICETREE */
1370
1371         return 0;
1372 }
1373
1374 /*
1375  * of_update_property - Update a property in a node, if the property does
1376  * not exist, add it.
1377  *
1378  * Note that we don't actually remove it, since we have given out
1379  * who-knows-how-many pointers to the data using get-property.
1380  * Instead we just move the property to the "dead properties" list,
1381  * and add the new property to the property list
1382  */
1383 int of_update_property(struct device_node *np, struct property *newprop)
1384 {
1385         struct property **next, *oldprop;
1386         unsigned long flags;
1387         int rc, found = 0;
1388
1389         rc = of_property_notify(OF_RECONFIG_UPDATE_PROPERTY, np, newprop);
1390         if (rc)
1391                 return rc;
1392
1393         if (!newprop->name)
1394                 return -EINVAL;
1395
1396         oldprop = of_find_property(np, newprop->name, NULL);
1397         if (!oldprop)
1398                 return of_add_property(np, newprop);
1399
1400         raw_spin_lock_irqsave(&devtree_lock, flags);
1401         next = &np->properties;
1402         while (*next) {
1403                 if (*next == oldprop) {
1404                         /* found the node */
1405                         newprop->next = oldprop->next;
1406                         *next = newprop;
1407                         oldprop->next = np->deadprops;
1408                         np->deadprops = oldprop;
1409                         found = 1;
1410                         break;
1411                 }
1412                 next = &(*next)->next;
1413         }
1414         raw_spin_unlock_irqrestore(&devtree_lock, flags);
1415
1416         if (!found)
1417                 return -ENODEV;
1418
1419 #ifdef CONFIG_PROC_DEVICETREE
1420         /* try to add to proc as well if it was initialized */
1421         if (np->pde)
1422                 proc_device_tree_update_prop(np->pde, newprop, oldprop);
1423 #endif /* CONFIG_PROC_DEVICETREE */
1424
1425         return 0;
1426 }
1427
1428 #if defined(CONFIG_OF_DYNAMIC)
1429 /*
1430  * Support for dynamic device trees.
1431  *
1432  * On some platforms, the device tree can be manipulated at runtime.
1433  * The routines in this section support adding, removing and changing
1434  * device tree nodes.
1435  */
1436
1437 static BLOCKING_NOTIFIER_HEAD(of_reconfig_chain);
1438
1439 int of_reconfig_notifier_register(struct notifier_block *nb)
1440 {
1441         return blocking_notifier_chain_register(&of_reconfig_chain, nb);
1442 }
1443 EXPORT_SYMBOL_GPL(of_reconfig_notifier_register);
1444
1445 int of_reconfig_notifier_unregister(struct notifier_block *nb)
1446 {
1447         return blocking_notifier_chain_unregister(&of_reconfig_chain, nb);
1448 }
1449 EXPORT_SYMBOL_GPL(of_reconfig_notifier_unregister);
1450
1451 int of_reconfig_notify(unsigned long action, void *p)
1452 {
1453         int rc;
1454
1455         rc = blocking_notifier_call_chain(&of_reconfig_chain, action, p);
1456         return notifier_to_errno(rc);
1457 }
1458
1459 #ifdef CONFIG_PROC_DEVICETREE
1460 static void of_add_proc_dt_entry(struct device_node *dn)
1461 {
1462         struct proc_dir_entry *ent;
1463
1464         ent = proc_mkdir(strrchr(dn->full_name, '/') + 1, dn->parent->pde);
1465         if (ent)
1466                 proc_device_tree_add_node(dn, ent);
1467 }
1468 #else
1469 static void of_add_proc_dt_entry(struct device_node *dn)
1470 {
1471         return;
1472 }
1473 #endif
1474
1475 /**
1476  * of_attach_node - Plug a device node into the tree and global list.
1477  */
1478 int of_attach_node(struct device_node *np)
1479 {
1480         unsigned long flags;
1481         int rc;
1482
1483         rc = of_reconfig_notify(OF_RECONFIG_ATTACH_NODE, np);
1484         if (rc)
1485                 return rc;
1486
1487         raw_spin_lock_irqsave(&devtree_lock, flags);
1488         np->sibling = np->parent->child;
1489         np->allnext = of_allnodes;
1490         np->parent->child = np;
1491         of_allnodes = np;
1492         raw_spin_unlock_irqrestore(&devtree_lock, flags);
1493
1494         of_add_proc_dt_entry(np);
1495         return 0;
1496 }
1497
1498 #ifdef CONFIG_PROC_DEVICETREE
1499 static void of_remove_proc_dt_entry(struct device_node *dn)
1500 {
1501         proc_remove(dn->pde);
1502 }
1503 #else
1504 static void of_remove_proc_dt_entry(struct device_node *dn)
1505 {
1506         return;
1507 }
1508 #endif
1509
1510 /**
1511  * of_detach_node - "Unplug" a node from the device tree.
1512  *
1513  * The caller must hold a reference to the node.  The memory associated with
1514  * the node is not freed until its refcount goes to zero.
1515  */
1516 int of_detach_node(struct device_node *np)
1517 {
1518         struct device_node *parent;
1519         unsigned long flags;
1520         int rc = 0;
1521
1522         rc = of_reconfig_notify(OF_RECONFIG_DETACH_NODE, np);
1523         if (rc)
1524                 return rc;
1525
1526         raw_spin_lock_irqsave(&devtree_lock, flags);
1527
1528         if (of_node_check_flag(np, OF_DETACHED)) {
1529                 /* someone already detached it */
1530                 raw_spin_unlock_irqrestore(&devtree_lock, flags);
1531                 return rc;
1532         }
1533
1534         parent = np->parent;
1535         if (!parent) {
1536                 raw_spin_unlock_irqrestore(&devtree_lock, flags);
1537                 return rc;
1538         }
1539
1540         if (of_allnodes == np)
1541                 of_allnodes = np->allnext;
1542         else {
1543                 struct device_node *prev;
1544                 for (prev = of_allnodes;
1545                      prev->allnext != np;
1546                      prev = prev->allnext)
1547                         ;
1548                 prev->allnext = np->allnext;
1549         }
1550
1551         if (parent->child == np)
1552                 parent->child = np->sibling;
1553         else {
1554                 struct device_node *prevsib;
1555                 for (prevsib = np->parent->child;
1556                      prevsib->sibling != np;
1557                      prevsib = prevsib->sibling)
1558                         ;
1559                 prevsib->sibling = np->sibling;
1560         }
1561
1562         of_node_set_flag(np, OF_DETACHED);
1563         raw_spin_unlock_irqrestore(&devtree_lock, flags);
1564
1565         of_remove_proc_dt_entry(np);
1566         return rc;
1567 }
1568 #endif /* defined(CONFIG_OF_DYNAMIC) */
1569
1570 static void of_alias_add(struct alias_prop *ap, struct device_node *np,
1571                          int id, const char *stem, int stem_len)
1572 {
1573         ap->np = np;
1574         ap->id = id;
1575         strncpy(ap->stem, stem, stem_len);
1576         ap->stem[stem_len] = 0;
1577         list_add_tail(&ap->link, &aliases_lookup);
1578         pr_debug("adding DT alias:%s: stem=%s id=%i node=%s\n",
1579                  ap->alias, ap->stem, ap->id, of_node_full_name(np));
1580 }
1581
1582 /**
1583  * of_alias_scan - Scan all properties of 'aliases' node
1584  *
1585  * The function scans all the properties of 'aliases' node and populate
1586  * the the global lookup table with the properties.  It returns the
1587  * number of alias_prop found, or error code in error case.
1588  *
1589  * @dt_alloc:   An allocator that provides a virtual address to memory
1590  *              for the resulting tree
1591  */
1592 void of_alias_scan(void * (*dt_alloc)(u64 size, u64 align))
1593 {
1594         struct property *pp;
1595
1596         of_chosen = of_find_node_by_path("/chosen");
1597         if (of_chosen == NULL)
1598                 of_chosen = of_find_node_by_path("/chosen@0");
1599
1600         if (of_chosen) {
1601                 const char *name;
1602
1603                 name = of_get_property(of_chosen, "linux,stdout-path", NULL);
1604                 if (name)
1605                         of_stdout = of_find_node_by_path(name);
1606         }
1607
1608         of_aliases = of_find_node_by_path("/aliases");
1609         if (!of_aliases)
1610                 return;
1611
1612         for_each_property_of_node(of_aliases, pp) {
1613                 const char *start = pp->name;
1614                 const char *end = start + strlen(start);
1615                 struct device_node *np;
1616                 struct alias_prop *ap;
1617                 int id, len;
1618
1619                 /* Skip those we do not want to proceed */
1620                 if (!strcmp(pp->name, "name") ||
1621                     !strcmp(pp->name, "phandle") ||
1622                     !strcmp(pp->name, "linux,phandle"))
1623                         continue;
1624
1625                 np = of_find_node_by_path(pp->value);
1626                 if (!np)
1627                         continue;
1628
1629                 /* walk the alias backwards to extract the id and work out
1630                  * the 'stem' string */
1631                 while (isdigit(*(end-1)) && end > start)
1632                         end--;
1633                 len = end - start;
1634
1635                 if (kstrtoint(end, 10, &id) < 0)
1636                         continue;
1637
1638                 /* Allocate an alias_prop with enough space for the stem */
1639                 ap = dt_alloc(sizeof(*ap) + len + 1, 4);
1640                 if (!ap)
1641                         continue;
1642                 memset(ap, 0, sizeof(*ap) + len + 1);
1643                 ap->alias = start;
1644                 of_alias_add(ap, np, id, start, len);
1645         }
1646 }
1647
1648 /**
1649  * of_alias_get_id - Get alias id for the given device_node
1650  * @np:         Pointer to the given device_node
1651  * @stem:       Alias stem of the given device_node
1652  *
1653  * The function travels the lookup table to get alias id for the given
1654  * device_node and alias stem.  It returns the alias id if find it.
1655  */
1656 int of_alias_get_id(struct device_node *np, const char *stem)
1657 {
1658         struct alias_prop *app;
1659         int id = -ENODEV;
1660
1661         mutex_lock(&of_aliases_mutex);
1662         list_for_each_entry(app, &aliases_lookup, link) {
1663                 if (strcmp(app->stem, stem) != 0)
1664                         continue;
1665
1666                 if (np == app->np) {
1667                         id = app->id;
1668                         break;
1669                 }
1670         }
1671         mutex_unlock(&of_aliases_mutex);
1672
1673         return id;
1674 }
1675 EXPORT_SYMBOL_GPL(of_alias_get_id);
1676
1677 const __be32 *of_prop_next_u32(struct property *prop, const __be32 *cur,
1678                                u32 *pu)
1679 {
1680         const void *curv = cur;
1681
1682         if (!prop)
1683                 return NULL;
1684
1685         if (!cur) {
1686                 curv = prop->value;
1687                 goto out_val;
1688         }
1689
1690         curv += sizeof(*cur);
1691         if (curv >= prop->value + prop->length)
1692                 return NULL;
1693
1694 out_val:
1695         *pu = be32_to_cpup(curv);
1696         return curv;
1697 }
1698 EXPORT_SYMBOL_GPL(of_prop_next_u32);
1699
1700 const char *of_prop_next_string(struct property *prop, const char *cur)
1701 {
1702         const void *curv = cur;
1703
1704         if (!prop)
1705                 return NULL;
1706
1707         if (!cur)
1708                 return prop->value;
1709
1710         curv += strlen(cur) + 1;
1711         if (curv >= prop->value + prop->length)
1712                 return NULL;
1713
1714         return curv;
1715 }
1716 EXPORT_SYMBOL_GPL(of_prop_next_string);
1717
1718 /**
1719  * of_device_is_stdout_path - check if a device node matches the
1720  *                            linux,stdout-path property
1721  *
1722  * Check if this device node matches the linux,stdout-path property
1723  * in the chosen node. return true if yes, false otherwise.
1724  */
1725 int of_device_is_stdout_path(struct device_node *dn)
1726 {
1727         if (!of_stdout)
1728                 return false;
1729
1730         return of_stdout == dn;
1731 }
1732 EXPORT_SYMBOL_GPL(of_device_is_stdout_path);