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