blob: bc86ea2af668454efb2a75fd55108e36eb602a47 [file] [log] [blame]
Stephen Rothwell97e873e2007-05-01 16:26:07 +10001/*
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 *
Grant Likelye91edcf2009-10-15 10:58:09 -060012 * Reconsolidated from arch/x/kernel/prom.c by Stephen Rothwell and
13 * Grant Likely.
Stephen Rothwell97e873e2007-05-01 16:26:07 +100014 *
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 */
Shawn Guo611cad72011-08-15 15:28:14 +080020#include <linux/ctype.h>
Stephen Rothwell97e873e2007-05-01 16:26:07 +100021#include <linux/module.h>
22#include <linux/of.h>
Stephen Rothwell581b6052007-04-24 16:46:53 +100023#include <linux/spinlock.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Jeremy Kerra9f2f632010-02-01 21:34:14 -070025#include <linux/proc_fs.h>
Stephen Rothwell581b6052007-04-24 16:46:53 +100026
Shawn Guo611cad72011-08-15 15:28:14 +080027/**
28 * struct alias_prop - Alias property in 'aliases' node
29 * @link: List node to link the structure in aliases_lookup list
30 * @alias: Alias property name
31 * @np: Pointer to device_node that the alias stands for
32 * @id: Index value from end of alias name
33 * @stem: Alias string without the index
34 *
35 * The structure represents one alias property of 'aliases' node as
36 * an entry in aliases_lookup list.
37 */
38struct alias_prop {
39 struct list_head link;
40 const char *alias;
41 struct device_node *np;
42 int id;
43 char stem[0];
44};
45
46static LIST_HEAD(aliases_lookup);
47
Stephen Rothwell1ef4d422007-04-24 17:57:33 +100048struct device_node *allnodes;
Grant Likelyfc0bdae2010-02-14 07:13:55 -070049struct device_node *of_chosen;
Shawn Guo611cad72011-08-15 15:28:14 +080050struct device_node *of_aliases;
51
52static DEFINE_MUTEX(of_aliases_mutex);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +100053
Stephen Rothwell581b6052007-04-24 16:46:53 +100054/* use when traversing tree through the allnext, child, sibling,
55 * or parent members of struct device_node.
56 */
57DEFINE_RWLOCK(devtree_lock);
Stephen Rothwell97e873e2007-05-01 16:26:07 +100058
59int of_n_addr_cells(struct device_node *np)
60{
Jeremy Kerra9fadee2010-10-10 21:24:10 -060061 const __be32 *ip;
Stephen Rothwell97e873e2007-05-01 16:26:07 +100062
63 do {
64 if (np->parent)
65 np = np->parent;
66 ip = of_get_property(np, "#address-cells", NULL);
67 if (ip)
Jeremy Kerr33714882010-01-30 01:45:26 -070068 return be32_to_cpup(ip);
Stephen Rothwell97e873e2007-05-01 16:26:07 +100069 } while (np->parent);
70 /* No #address-cells property for the root node */
71 return OF_ROOT_NODE_ADDR_CELLS_DEFAULT;
72}
73EXPORT_SYMBOL(of_n_addr_cells);
74
75int of_n_size_cells(struct device_node *np)
76{
Jeremy Kerra9fadee2010-10-10 21:24:10 -060077 const __be32 *ip;
Stephen Rothwell97e873e2007-05-01 16:26:07 +100078
79 do {
80 if (np->parent)
81 np = np->parent;
82 ip = of_get_property(np, "#size-cells", NULL);
83 if (ip)
Jeremy Kerr33714882010-01-30 01:45:26 -070084 return be32_to_cpup(ip);
Stephen Rothwell97e873e2007-05-01 16:26:07 +100085 } while (np->parent);
86 /* No #size-cells property for the root node */
87 return OF_ROOT_NODE_SIZE_CELLS_DEFAULT;
88}
89EXPORT_SYMBOL(of_n_size_cells);
90
Grant Likely0f22dd32012-02-15 20:38:40 -070091#if defined(CONFIG_OF_DYNAMIC)
Grant Likely923f7e32010-01-28 13:52:53 -070092/**
93 * of_node_get - Increment refcount of a node
94 * @node: Node to inc refcount, NULL is supported to
95 * simplify writing of callers
96 *
97 * Returns node.
98 */
99struct device_node *of_node_get(struct device_node *node)
100{
101 if (node)
102 kref_get(&node->kref);
103 return node;
104}
105EXPORT_SYMBOL(of_node_get);
106
107static inline struct device_node *kref_to_device_node(struct kref *kref)
108{
109 return container_of(kref, struct device_node, kref);
110}
111
112/**
113 * of_node_release - release a dynamically allocated node
114 * @kref: kref element of the node to be released
115 *
116 * In of_node_put() this function is passed to kref_put()
117 * as the destructor.
118 */
119static void of_node_release(struct kref *kref)
120{
121 struct device_node *node = kref_to_device_node(kref);
122 struct property *prop = node->properties;
123
124 /* We should never be releasing nodes that haven't been detached. */
125 if (!of_node_check_flag(node, OF_DETACHED)) {
126 pr_err("ERROR: Bad of_node_put() on %s\n", node->full_name);
127 dump_stack();
128 kref_init(&node->kref);
129 return;
130 }
131
132 if (!of_node_check_flag(node, OF_DYNAMIC))
133 return;
134
135 while (prop) {
136 struct property *next = prop->next;
137 kfree(prop->name);
138 kfree(prop->value);
139 kfree(prop);
140 prop = next;
141
142 if (!prop) {
143 prop = node->deadprops;
144 node->deadprops = NULL;
145 }
146 }
147 kfree(node->full_name);
148 kfree(node->data);
149 kfree(node);
150}
151
152/**
153 * of_node_put - Decrement refcount of a node
154 * @node: Node to dec refcount, NULL is supported to
155 * simplify writing of callers
156 *
157 */
158void of_node_put(struct device_node *node)
159{
160 if (node)
161 kref_put(&node->kref, of_node_release);
162}
163EXPORT_SYMBOL(of_node_put);
Grant Likely0f22dd32012-02-15 20:38:40 -0700164#endif /* CONFIG_OF_DYNAMIC */
Grant Likely923f7e32010-01-28 13:52:53 -0700165
Stephen Rothwell581b6052007-04-24 16:46:53 +1000166struct property *of_find_property(const struct device_node *np,
167 const char *name,
168 int *lenp)
169{
170 struct property *pp;
171
Timur Tabi64e45662008-05-08 05:19:59 +1000172 if (!np)
173 return NULL;
174
Stephen Rothwell581b6052007-04-24 16:46:53 +1000175 read_lock(&devtree_lock);
176 for (pp = np->properties; pp != 0; pp = pp->next) {
177 if (of_prop_cmp(pp->name, name) == 0) {
178 if (lenp != 0)
179 *lenp = pp->length;
180 break;
181 }
182 }
183 read_unlock(&devtree_lock);
184
185 return pp;
186}
187EXPORT_SYMBOL(of_find_property);
188
Grant Likelye91edcf2009-10-15 10:58:09 -0600189/**
190 * of_find_all_nodes - Get next node in global list
191 * @prev: Previous node or NULL to start iteration
192 * of_node_put() will be called on it
193 *
194 * Returns a node pointer with refcount incremented, use
195 * of_node_put() on it when done.
196 */
197struct device_node *of_find_all_nodes(struct device_node *prev)
198{
199 struct device_node *np;
200
201 read_lock(&devtree_lock);
202 np = prev ? prev->allnext : allnodes;
203 for (; np != NULL; np = np->allnext)
204 if (of_node_get(np))
205 break;
206 of_node_put(prev);
207 read_unlock(&devtree_lock);
208 return np;
209}
210EXPORT_SYMBOL(of_find_all_nodes);
211
Stephen Rothwell97e873e2007-05-01 16:26:07 +1000212/*
213 * Find a property with a given name for a given node
214 * and return the value.
215 */
216const void *of_get_property(const struct device_node *np, const char *name,
217 int *lenp)
218{
219 struct property *pp = of_find_property(np, name, lenp);
220
221 return pp ? pp->value : NULL;
222}
223EXPORT_SYMBOL(of_get_property);
Stephen Rothwell0081cbc2007-05-01 16:29:19 +1000224
225/** Checks if the given "compat" string matches one of the strings in
226 * the device's "compatible" property
227 */
228int of_device_is_compatible(const struct device_node *device,
229 const char *compat)
230{
231 const char* cp;
232 int cplen, l;
233
234 cp = of_get_property(device, "compatible", &cplen);
235 if (cp == NULL)
236 return 0;
237 while (cplen > 0) {
238 if (of_compat_cmp(cp, compat, strlen(compat)) == 0)
239 return 1;
240 l = strlen(cp) + 1;
241 cp += l;
242 cplen -= l;
243 }
244
245 return 0;
246}
247EXPORT_SYMBOL(of_device_is_compatible);
Stephen Rothwelle679c5f2007-04-24 17:16:16 +1000248
249/**
Grant Likely71a157e2010-02-01 21:34:14 -0700250 * of_machine_is_compatible - Test root of device tree for a given compatible value
Grant Likely1f43cfb2010-01-28 13:47:25 -0700251 * @compat: compatible string to look for in root node's compatible property.
252 *
253 * Returns true if the root node has the given value in its
254 * compatible property.
255 */
Grant Likely71a157e2010-02-01 21:34:14 -0700256int of_machine_is_compatible(const char *compat)
Grant Likely1f43cfb2010-01-28 13:47:25 -0700257{
258 struct device_node *root;
259 int rc = 0;
260
261 root = of_find_node_by_path("/");
262 if (root) {
263 rc = of_device_is_compatible(root, compat);
264 of_node_put(root);
265 }
266 return rc;
267}
Grant Likely71a157e2010-02-01 21:34:14 -0700268EXPORT_SYMBOL(of_machine_is_compatible);
Grant Likely1f43cfb2010-01-28 13:47:25 -0700269
270/**
Josh Boyer834d97d2008-03-27 00:33:14 +1100271 * of_device_is_available - check if a device is available for use
272 *
273 * @device: Node to check for availability
274 *
275 * Returns 1 if the status property is absent or set to "okay" or "ok",
276 * 0 otherwise
277 */
278int of_device_is_available(const struct device_node *device)
279{
280 const char *status;
281 int statlen;
282
283 status = of_get_property(device, "status", &statlen);
284 if (status == NULL)
285 return 1;
286
287 if (statlen > 0) {
288 if (!strcmp(status, "okay") || !strcmp(status, "ok"))
289 return 1;
290 }
291
292 return 0;
293}
294EXPORT_SYMBOL(of_device_is_available);
295
296/**
Stephen Rothwelle679c5f2007-04-24 17:16:16 +1000297 * of_get_parent - Get a node's parent if any
298 * @node: Node to get parent
299 *
300 * Returns a node pointer with refcount incremented, use
301 * of_node_put() on it when done.
302 */
303struct device_node *of_get_parent(const struct device_node *node)
304{
305 struct device_node *np;
306
307 if (!node)
308 return NULL;
309
310 read_lock(&devtree_lock);
311 np = of_node_get(node->parent);
312 read_unlock(&devtree_lock);
313 return np;
314}
315EXPORT_SYMBOL(of_get_parent);
Stephen Rothwelld1cd3552007-04-24 17:21:29 +1000316
317/**
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000318 * of_get_next_parent - Iterate to a node's parent
319 * @node: Node to get parent of
320 *
321 * This is like of_get_parent() except that it drops the
322 * refcount on the passed node, making it suitable for iterating
323 * through a node's parents.
324 *
325 * Returns a node pointer with refcount incremented, use
326 * of_node_put() on it when done.
327 */
328struct device_node *of_get_next_parent(struct device_node *node)
329{
330 struct device_node *parent;
331
332 if (!node)
333 return NULL;
334
335 read_lock(&devtree_lock);
336 parent = of_node_get(node->parent);
337 of_node_put(node);
338 read_unlock(&devtree_lock);
339 return parent;
340}
341
342/**
Stephen Rothwelld1cd3552007-04-24 17:21:29 +1000343 * of_get_next_child - Iterate a node childs
344 * @node: parent node
345 * @prev: previous child of the parent node, or NULL to get first
346 *
347 * Returns a node pointer with refcount incremented, use
348 * of_node_put() on it when done.
349 */
350struct device_node *of_get_next_child(const struct device_node *node,
351 struct device_node *prev)
352{
353 struct device_node *next;
354
355 read_lock(&devtree_lock);
356 next = prev ? prev->sibling : node->child;
357 for (; next; next = next->sibling)
358 if (of_node_get(next))
359 break;
360 of_node_put(prev);
361 read_unlock(&devtree_lock);
362 return next;
363}
364EXPORT_SYMBOL(of_get_next_child);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000365
366/**
367 * of_find_node_by_path - Find a node matching a full OF path
368 * @path: The full path to match
369 *
370 * Returns a node pointer with refcount incremented, use
371 * of_node_put() on it when done.
372 */
373struct device_node *of_find_node_by_path(const char *path)
374{
375 struct device_node *np = allnodes;
376
377 read_lock(&devtree_lock);
378 for (; np; np = np->allnext) {
379 if (np->full_name && (of_node_cmp(np->full_name, path) == 0)
380 && of_node_get(np))
381 break;
382 }
383 read_unlock(&devtree_lock);
384 return np;
385}
386EXPORT_SYMBOL(of_find_node_by_path);
387
388/**
389 * of_find_node_by_name - Find a node by its "name" property
390 * @from: The node to start searching from or NULL, the node
391 * you pass will not be searched, only the next one
392 * will; typically, you pass what the previous call
393 * returned. of_node_put() will be called on it
394 * @name: The name string to match against
395 *
396 * Returns a node pointer with refcount incremented, use
397 * of_node_put() on it when done.
398 */
399struct device_node *of_find_node_by_name(struct device_node *from,
400 const char *name)
401{
402 struct device_node *np;
403
404 read_lock(&devtree_lock);
405 np = from ? from->allnext : allnodes;
406 for (; np; np = np->allnext)
407 if (np->name && (of_node_cmp(np->name, name) == 0)
408 && of_node_get(np))
409 break;
410 of_node_put(from);
411 read_unlock(&devtree_lock);
412 return np;
413}
414EXPORT_SYMBOL(of_find_node_by_name);
415
416/**
417 * of_find_node_by_type - Find a node by its "device_type" property
418 * @from: The node to start searching from, or NULL to start searching
419 * the entire device tree. The node you pass will not be
420 * searched, only the next one will; typically, you pass
421 * what the previous call returned. of_node_put() will be
422 * called on from for you.
423 * @type: The type string to match against
424 *
425 * Returns a node pointer with refcount incremented, use
426 * of_node_put() on it when done.
427 */
428struct device_node *of_find_node_by_type(struct device_node *from,
429 const char *type)
430{
431 struct device_node *np;
432
433 read_lock(&devtree_lock);
434 np = from ? from->allnext : allnodes;
435 for (; np; np = np->allnext)
436 if (np->type && (of_node_cmp(np->type, type) == 0)
437 && of_node_get(np))
438 break;
439 of_node_put(from);
440 read_unlock(&devtree_lock);
441 return np;
442}
443EXPORT_SYMBOL(of_find_node_by_type);
444
445/**
446 * of_find_compatible_node - Find a node based on type and one of the
447 * tokens in its "compatible" property
448 * @from: The node to start searching from or NULL, the node
449 * you pass will not be searched, only the next one
450 * will; typically, you pass what the previous call
451 * returned. of_node_put() will be called on it
452 * @type: The type string to match "device_type" or NULL to ignore
453 * @compatible: The string to match to one of the tokens in the device
454 * "compatible" list.
455 *
456 * Returns a node pointer with refcount incremented, use
457 * of_node_put() on it when done.
458 */
459struct device_node *of_find_compatible_node(struct device_node *from,
460 const char *type, const char *compatible)
461{
462 struct device_node *np;
463
464 read_lock(&devtree_lock);
465 np = from ? from->allnext : allnodes;
466 for (; np; np = np->allnext) {
467 if (type
468 && !(np->type && (of_node_cmp(np->type, type) == 0)))
469 continue;
470 if (of_device_is_compatible(np, compatible) && of_node_get(np))
471 break;
472 }
473 of_node_put(from);
474 read_unlock(&devtree_lock);
475 return np;
476}
477EXPORT_SYMBOL(of_find_compatible_node);
Grant Likely283029d2008-01-09 06:20:40 +1100478
479/**
Michael Ellerman1e291b12008-11-12 18:54:42 +0000480 * of_find_node_with_property - Find a node which has a property with
481 * the given name.
482 * @from: The node to start searching from or NULL, the node
483 * you pass will not be searched, only the next one
484 * will; typically, you pass what the previous call
485 * returned. of_node_put() will be called on it
486 * @prop_name: The name of the property to look for.
487 *
488 * Returns a node pointer with refcount incremented, use
489 * of_node_put() on it when done.
490 */
491struct device_node *of_find_node_with_property(struct device_node *from,
492 const char *prop_name)
493{
494 struct device_node *np;
495 struct property *pp;
496
497 read_lock(&devtree_lock);
498 np = from ? from->allnext : allnodes;
499 for (; np; np = np->allnext) {
500 for (pp = np->properties; pp != 0; pp = pp->next) {
501 if (of_prop_cmp(pp->name, prop_name) == 0) {
502 of_node_get(np);
503 goto out;
504 }
505 }
506 }
507out:
508 of_node_put(from);
509 read_unlock(&devtree_lock);
510 return np;
511}
512EXPORT_SYMBOL(of_find_node_with_property);
513
Thierry Reding107a84e2012-06-14 09:12:35 +0200514static const struct of_device_id *of_match_compat(const struct of_device_id *matches,
515 const char *compat)
516{
517 while (matches->name[0] || matches->type[0] || matches->compatible[0]) {
518 const char *cp = matches->compatible;
519 int len = strlen(cp);
520
521 if (len > 0 && of_compat_cmp(compat, cp, len) == 0)
522 return matches;
523
524 matches++;
525 }
526
527 return NULL;
528}
529
Michael Ellerman1e291b12008-11-12 18:54:42 +0000530/**
Grant Likely283029d2008-01-09 06:20:40 +1100531 * of_match_node - Tell if an device_node has a matching of_match structure
532 * @matches: array of of device match structures to search in
533 * @node: the of device structure to match against
534 *
535 * Low level utility function used by device matching.
536 */
537const struct of_device_id *of_match_node(const struct of_device_id *matches,
538 const struct device_node *node)
539{
Thierry Reding107a84e2012-06-14 09:12:35 +0200540 struct property *prop;
541 const char *cp;
542
Grant Likelya52f07e2011-03-18 10:21:29 -0600543 if (!matches)
544 return NULL;
545
Thierry Reding107a84e2012-06-14 09:12:35 +0200546 of_property_for_each_string(node, "compatible", prop, cp) {
547 const struct of_device_id *match = of_match_compat(matches, cp);
548 if (match)
549 return match;
550 }
551
Grant Likely283029d2008-01-09 06:20:40 +1100552 while (matches->name[0] || matches->type[0] || matches->compatible[0]) {
553 int match = 1;
554 if (matches->name[0])
555 match &= node->name
556 && !strcmp(matches->name, node->name);
557 if (matches->type[0])
558 match &= node->type
559 && !strcmp(matches->type, node->type);
Thierry Reding107a84e2012-06-14 09:12:35 +0200560 if (match && !matches->compatible[0])
Grant Likely283029d2008-01-09 06:20:40 +1100561 return matches;
562 matches++;
563 }
564 return NULL;
565}
566EXPORT_SYMBOL(of_match_node);
567
568/**
569 * of_find_matching_node - Find a node based on an of_device_id match
570 * table.
571 * @from: The node to start searching from or NULL, the node
572 * you pass will not be searched, only the next one
573 * will; typically, you pass what the previous call
574 * returned. of_node_put() will be called on it
575 * @matches: array of of device match structures to search in
576 *
577 * Returns a node pointer with refcount incremented, use
578 * of_node_put() on it when done.
579 */
580struct device_node *of_find_matching_node(struct device_node *from,
581 const struct of_device_id *matches)
582{
583 struct device_node *np;
584
585 read_lock(&devtree_lock);
586 np = from ? from->allnext : allnodes;
587 for (; np; np = np->allnext) {
588 if (of_match_node(matches, np) && of_node_get(np))
589 break;
590 }
591 of_node_put(from);
592 read_unlock(&devtree_lock);
593 return np;
594}
595EXPORT_SYMBOL(of_find_matching_node);
Grant Likely3f07af42008-07-25 22:25:13 -0400596
597/**
Grant Likely3f07af42008-07-25 22:25:13 -0400598 * of_modalias_node - Lookup appropriate modalias for a device node
599 * @node: pointer to a device tree node
600 * @modalias: Pointer to buffer that modalias value will be copied into
601 * @len: Length of modalias value
602 *
Grant Likely2ffe8c52010-06-08 07:48:19 -0600603 * Based on the value of the compatible property, this routine will attempt
604 * to choose an appropriate modalias value for a particular device tree node.
605 * It does this by stripping the manufacturer prefix (as delimited by a ',')
606 * from the first entry in the compatible list property.
Grant Likely3f07af42008-07-25 22:25:13 -0400607 *
Grant Likely2ffe8c52010-06-08 07:48:19 -0600608 * This routine returns 0 on success, <0 on failure.
Grant Likely3f07af42008-07-25 22:25:13 -0400609 */
610int of_modalias_node(struct device_node *node, char *modalias, int len)
611{
Grant Likely2ffe8c52010-06-08 07:48:19 -0600612 const char *compatible, *p;
613 int cplen;
Grant Likely3f07af42008-07-25 22:25:13 -0400614
615 compatible = of_get_property(node, "compatible", &cplen);
Grant Likely2ffe8c52010-06-08 07:48:19 -0600616 if (!compatible || strlen(compatible) > cplen)
Grant Likely3f07af42008-07-25 22:25:13 -0400617 return -ENODEV;
Grant Likely3f07af42008-07-25 22:25:13 -0400618 p = strchr(compatible, ',');
Grant Likely2ffe8c52010-06-08 07:48:19 -0600619 strlcpy(modalias, p ? p + 1 : compatible, len);
Grant Likely3f07af42008-07-25 22:25:13 -0400620 return 0;
621}
622EXPORT_SYMBOL_GPL(of_modalias_node);
623
Anton Vorontsov64b60e02008-10-10 04:43:17 +0000624/**
Jeremy Kerr89751a72010-02-01 21:34:11 -0700625 * of_find_node_by_phandle - Find a node given a phandle
626 * @handle: phandle of the node to find
627 *
628 * Returns a node pointer with refcount incremented, use
629 * of_node_put() on it when done.
630 */
631struct device_node *of_find_node_by_phandle(phandle handle)
632{
633 struct device_node *np;
634
635 read_lock(&devtree_lock);
636 for (np = allnodes; np; np = np->allnext)
637 if (np->phandle == handle)
638 break;
639 of_node_get(np);
640 read_unlock(&devtree_lock);
641 return np;
642}
643EXPORT_SYMBOL(of_find_node_by_phandle);
644
645/**
Rob Herring0e373632011-07-06 15:42:58 -0500646 * of_property_read_u32_array - Find and read an array of 32 bit integers
647 * from a property.
648 *
Thomas Abrahama3b85362011-06-30 21:26:10 +0530649 * @np: device node from which the property value is to be read.
650 * @propname: name of the property to be searched.
651 * @out_value: pointer to return value, modified only if return value is 0.
652 *
Rob Herring0e373632011-07-06 15:42:58 -0500653 * Search for a property in a device node and read 32-bit value(s) from
Thomas Abrahama3b85362011-06-30 21:26:10 +0530654 * it. Returns 0 on success, -EINVAL if the property does not exist,
655 * -ENODATA if property does not have a value, and -EOVERFLOW if the
656 * property data isn't large enough.
657 *
658 * The out_value is modified only if a valid u32 value can be decoded.
659 */
Jamie Ilesaac285c2011-08-02 15:45:07 +0100660int of_property_read_u32_array(const struct device_node *np,
661 const char *propname, u32 *out_values,
662 size_t sz)
Thomas Abrahama3b85362011-06-30 21:26:10 +0530663{
664 struct property *prop = of_find_property(np, propname, NULL);
Rob Herring0e373632011-07-06 15:42:58 -0500665 const __be32 *val;
Thomas Abrahama3b85362011-06-30 21:26:10 +0530666
667 if (!prop)
668 return -EINVAL;
669 if (!prop->value)
670 return -ENODATA;
Rob Herring0e373632011-07-06 15:42:58 -0500671 if ((sz * sizeof(*out_values)) > prop->length)
Thomas Abrahama3b85362011-06-30 21:26:10 +0530672 return -EOVERFLOW;
Rob Herring0e373632011-07-06 15:42:58 -0500673
674 val = prop->value;
675 while (sz--)
676 *out_values++ = be32_to_cpup(val++);
Thomas Abrahama3b85362011-06-30 21:26:10 +0530677 return 0;
678}
Rob Herring0e373632011-07-06 15:42:58 -0500679EXPORT_SYMBOL_GPL(of_property_read_u32_array);
Thomas Abrahama3b85362011-06-30 21:26:10 +0530680
681/**
Jamie Iles4cd7f7a2011-09-14 20:49:59 +0100682 * of_property_read_u64 - Find and read a 64 bit integer from a property
683 * @np: device node from which the property value is to be read.
684 * @propname: name of the property to be searched.
685 * @out_value: pointer to return value, modified only if return value is 0.
686 *
687 * Search for a property in a device node and read a 64-bit value from
688 * it. Returns 0 on success, -EINVAL if the property does not exist,
689 * -ENODATA if property does not have a value, and -EOVERFLOW if the
690 * property data isn't large enough.
691 *
692 * The out_value is modified only if a valid u64 value can be decoded.
693 */
694int of_property_read_u64(const struct device_node *np, const char *propname,
695 u64 *out_value)
696{
697 struct property *prop = of_find_property(np, propname, NULL);
698
699 if (!prop)
700 return -EINVAL;
701 if (!prop->value)
702 return -ENODATA;
703 if (sizeof(*out_value) > prop->length)
704 return -EOVERFLOW;
705 *out_value = of_read_number(prop->value, 2);
706 return 0;
707}
708EXPORT_SYMBOL_GPL(of_property_read_u64);
709
710/**
Thomas Abrahama3b85362011-06-30 21:26:10 +0530711 * of_property_read_string - Find and read a string from a property
712 * @np: device node from which the property value is to be read.
713 * @propname: name of the property to be searched.
714 * @out_string: pointer to null terminated return string, modified only if
715 * return value is 0.
716 *
717 * Search for a property in a device tree node and retrieve a null
718 * terminated string value (pointer to data, not a copy). Returns 0 on
719 * success, -EINVAL if the property does not exist, -ENODATA if property
720 * does not have a value, and -EILSEQ if the string is not null-terminated
721 * within the length of the property data.
722 *
723 * The out_string pointer is modified only if a valid string can be decoded.
724 */
Jamie Ilesaac285c2011-08-02 15:45:07 +0100725int of_property_read_string(struct device_node *np, const char *propname,
Shawn Guof09bc832011-07-04 09:01:18 +0800726 const char **out_string)
Thomas Abrahama3b85362011-06-30 21:26:10 +0530727{
728 struct property *prop = of_find_property(np, propname, NULL);
729 if (!prop)
730 return -EINVAL;
731 if (!prop->value)
732 return -ENODATA;
733 if (strnlen(prop->value, prop->length) >= prop->length)
734 return -EILSEQ;
735 *out_string = prop->value;
736 return 0;
737}
738EXPORT_SYMBOL_GPL(of_property_read_string);
739
740/**
Benoit Cousson4fcd15a2011-09-27 17:45:43 +0200741 * of_property_read_string_index - Find and read a string from a multiple
742 * strings property.
743 * @np: device node from which the property value is to be read.
744 * @propname: name of the property to be searched.
745 * @index: index of the string in the list of strings
746 * @out_string: pointer to null terminated return string, modified only if
747 * return value is 0.
748 *
749 * Search for a property in a device tree node and retrieve a null
750 * terminated string value (pointer to data, not a copy) in the list of strings
751 * contained in that property.
752 * Returns 0 on success, -EINVAL if the property does not exist, -ENODATA if
753 * property does not have a value, and -EILSEQ if the string is not
754 * null-terminated within the length of the property data.
755 *
756 * The out_string pointer is modified only if a valid string can be decoded.
757 */
758int of_property_read_string_index(struct device_node *np, const char *propname,
759 int index, const char **output)
760{
761 struct property *prop = of_find_property(np, propname, NULL);
762 int i = 0;
763 size_t l = 0, total = 0;
764 const char *p;
765
766 if (!prop)
767 return -EINVAL;
768 if (!prop->value)
769 return -ENODATA;
770 if (strnlen(prop->value, prop->length) >= prop->length)
771 return -EILSEQ;
772
773 p = prop->value;
774
775 for (i = 0; total < prop->length; total += l, p += l) {
776 l = strlen(p) + 1;
Benoit Cousson88af7f52011-12-05 15:23:54 +0100777 if (i++ == index) {
Benoit Cousson4fcd15a2011-09-27 17:45:43 +0200778 *output = p;
779 return 0;
780 }
781 }
782 return -ENODATA;
783}
784EXPORT_SYMBOL_GPL(of_property_read_string_index);
785
Grant Likely7aff0fe2011-12-12 09:25:58 -0700786/**
787 * of_property_match_string() - Find string in a list and return index
788 * @np: pointer to node containing string list property
789 * @propname: string list property name
790 * @string: pointer to string to search for in string list
791 *
792 * This function searches a string list property and returns the index
793 * of a specific string value.
794 */
795int of_property_match_string(struct device_node *np, const char *propname,
796 const char *string)
797{
798 struct property *prop = of_find_property(np, propname, NULL);
799 size_t l;
800 int i;
801 const char *p, *end;
802
803 if (!prop)
804 return -EINVAL;
805 if (!prop->value)
806 return -ENODATA;
807
808 p = prop->value;
809 end = p + prop->length;
810
811 for (i = 0; p < end; i++, p += l) {
812 l = strlen(p) + 1;
813 if (p + l > end)
814 return -EILSEQ;
815 pr_debug("comparing %s with %s\n", string, p);
816 if (strcmp(string, p) == 0)
817 return i; /* Found it; return index */
818 }
819 return -ENODATA;
820}
821EXPORT_SYMBOL_GPL(of_property_match_string);
Benoit Cousson4fcd15a2011-09-27 17:45:43 +0200822
823/**
824 * of_property_count_strings - Find and return the number of strings from a
825 * multiple strings property.
826 * @np: device node from which the property value is to be read.
827 * @propname: name of the property to be searched.
828 *
829 * Search for a property in a device tree node and retrieve the number of null
830 * terminated string contain in it. Returns the number of strings on
831 * success, -EINVAL if the property does not exist, -ENODATA if property
832 * does not have a value, and -EILSEQ if the string is not null-terminated
833 * within the length of the property data.
834 */
835int of_property_count_strings(struct device_node *np, const char *propname)
836{
837 struct property *prop = of_find_property(np, propname, NULL);
838 int i = 0;
839 size_t l = 0, total = 0;
840 const char *p;
841
842 if (!prop)
843 return -EINVAL;
844 if (!prop->value)
845 return -ENODATA;
846 if (strnlen(prop->value, prop->length) >= prop->length)
847 return -EILSEQ;
848
849 p = prop->value;
850
Benoit Cousson88af7f52011-12-05 15:23:54 +0100851 for (i = 0; total < prop->length; total += l, p += l, i++)
Benoit Cousson4fcd15a2011-09-27 17:45:43 +0200852 l = strlen(p) + 1;
Benoit Cousson88af7f52011-12-05 15:23:54 +0100853
Benoit Cousson4fcd15a2011-09-27 17:45:43 +0200854 return i;
855}
856EXPORT_SYMBOL_GPL(of_property_count_strings);
857
858/**
Grant Likely739649c2009-04-25 12:52:40 +0000859 * of_parse_phandle - Resolve a phandle property to a device_node pointer
860 * @np: Pointer to device node holding phandle property
861 * @phandle_name: Name of property holding a phandle value
862 * @index: For properties holding a table of phandles, this is the index into
863 * the table
864 *
865 * Returns the device_node pointer with refcount incremented. Use
866 * of_node_put() on it when done.
867 */
868struct device_node *
869of_parse_phandle(struct device_node *np, const char *phandle_name, int index)
870{
Grant Likely9a6b2e52010-07-23 01:48:25 -0600871 const __be32 *phandle;
Grant Likely739649c2009-04-25 12:52:40 +0000872 int size;
873
874 phandle = of_get_property(np, phandle_name, &size);
875 if ((!phandle) || (size < sizeof(*phandle) * (index + 1)))
876 return NULL;
877
Grant Likely9a6b2e52010-07-23 01:48:25 -0600878 return of_find_node_by_phandle(be32_to_cpup(phandle + index));
Grant Likely739649c2009-04-25 12:52:40 +0000879}
880EXPORT_SYMBOL(of_parse_phandle);
881
882/**
Grant Likely15c9a0a2011-12-12 09:25:57 -0700883 * of_parse_phandle_with_args() - Find a node pointed by phandle in a list
Anton Vorontsov64b60e02008-10-10 04:43:17 +0000884 * @np: pointer to a device tree node containing a list
885 * @list_name: property name that contains a list
886 * @cells_name: property name that specifies phandles' arguments count
887 * @index: index of a phandle to parse out
Grant Likely15c9a0a2011-12-12 09:25:57 -0700888 * @out_args: optional pointer to output arguments structure (will be filled)
Anton Vorontsov64b60e02008-10-10 04:43:17 +0000889 *
890 * This function is useful to parse lists of phandles and their arguments.
Grant Likely15c9a0a2011-12-12 09:25:57 -0700891 * Returns 0 on success and fills out_args, on error returns appropriate
892 * errno value.
893 *
894 * Caller is responsible to call of_node_put() on the returned out_args->node
895 * pointer.
Anton Vorontsov64b60e02008-10-10 04:43:17 +0000896 *
897 * Example:
898 *
899 * phandle1: node1 {
900 * #list-cells = <2>;
901 * }
902 *
903 * phandle2: node2 {
904 * #list-cells = <1>;
905 * }
906 *
907 * node3 {
908 * list = <&phandle1 1 2 &phandle2 3>;
909 * }
910 *
911 * To get a device_node of the `node2' node you may call this:
Grant Likely15c9a0a2011-12-12 09:25:57 -0700912 * of_parse_phandle_with_args(node3, "list", "#list-cells", 1, &args);
Anton Vorontsov64b60e02008-10-10 04:43:17 +0000913 */
Grant Likely15c9a0a2011-12-12 09:25:57 -0700914int of_parse_phandle_with_args(struct device_node *np, const char *list_name,
Anton Vorontsov64b60e02008-10-10 04:43:17 +0000915 const char *cells_name, int index,
Grant Likely15c9a0a2011-12-12 09:25:57 -0700916 struct of_phandle_args *out_args)
Anton Vorontsov64b60e02008-10-10 04:43:17 +0000917{
Grant Likely15c9a0a2011-12-12 09:25:57 -0700918 const __be32 *list, *list_end;
919 int size, cur_index = 0;
920 uint32_t count = 0;
Anton Vorontsov64b60e02008-10-10 04:43:17 +0000921 struct device_node *node = NULL;
Grant Likely15c9a0a2011-12-12 09:25:57 -0700922 phandle phandle;
Anton Vorontsov64b60e02008-10-10 04:43:17 +0000923
Grant Likely15c9a0a2011-12-12 09:25:57 -0700924 /* Retrieve the phandle list property */
Anton Vorontsov64b60e02008-10-10 04:43:17 +0000925 list = of_get_property(np, list_name, &size);
Grant Likely15c9a0a2011-12-12 09:25:57 -0700926 if (!list)
927 return -EINVAL;
Anton Vorontsov64b60e02008-10-10 04:43:17 +0000928 list_end = list + size / sizeof(*list);
929
Grant Likely15c9a0a2011-12-12 09:25:57 -0700930 /* Loop over the phandles until all the requested entry is found */
Anton Vorontsov64b60e02008-10-10 04:43:17 +0000931 while (list < list_end) {
Grant Likely15c9a0a2011-12-12 09:25:57 -0700932 count = 0;
Anton Vorontsov64b60e02008-10-10 04:43:17 +0000933
Grant Likely15c9a0a2011-12-12 09:25:57 -0700934 /*
935 * If phandle is 0, then it is an empty entry with no
936 * arguments. Skip forward to the next entry.
937 */
Grant Likely9a6b2e52010-07-23 01:48:25 -0600938 phandle = be32_to_cpup(list++);
Grant Likely15c9a0a2011-12-12 09:25:57 -0700939 if (phandle) {
940 /*
941 * Find the provider node and parse the #*-cells
942 * property to determine the argument length
943 */
944 node = of_find_node_by_phandle(phandle);
945 if (!node) {
946 pr_err("%s: could not find phandle\n",
947 np->full_name);
948 break;
949 }
950 if (of_property_read_u32(node, cells_name, &count)) {
951 pr_err("%s: could not get %s for %s\n",
952 np->full_name, cells_name,
953 node->full_name);
954 break;
955 }
Anton Vorontsov64b60e02008-10-10 04:43:17 +0000956
Grant Likely15c9a0a2011-12-12 09:25:57 -0700957 /*
958 * Make sure that the arguments actually fit in the
959 * remaining property data length
960 */
961 if (list + count > list_end) {
962 pr_err("%s: arguments longer than property\n",
963 np->full_name);
964 break;
965 }
Anton Vorontsov64b60e02008-10-10 04:43:17 +0000966 }
967
Grant Likely15c9a0a2011-12-12 09:25:57 -0700968 /*
969 * All of the error cases above bail out of the loop, so at
970 * this point, the parsing is successful. If the requested
971 * index matches, then fill the out_args structure and return,
972 * or return -ENOENT for an empty entry.
973 */
974 if (cur_index == index) {
975 if (!phandle)
976 return -ENOENT;
Anton Vorontsov64b60e02008-10-10 04:43:17 +0000977
Grant Likely15c9a0a2011-12-12 09:25:57 -0700978 if (out_args) {
979 int i;
980 if (WARN_ON(count > MAX_PHANDLE_ARGS))
981 count = MAX_PHANDLE_ARGS;
982 out_args->np = node;
983 out_args->args_count = count;
984 for (i = 0; i < count; i++)
985 out_args->args[i] = be32_to_cpup(list++);
986 }
987 return 0;
Anton Vorontsov64b60e02008-10-10 04:43:17 +0000988 }
Anton Vorontsov64b60e02008-10-10 04:43:17 +0000989
990 of_node_put(node);
991 node = NULL;
Grant Likely15c9a0a2011-12-12 09:25:57 -0700992 list += count;
Anton Vorontsov64b60e02008-10-10 04:43:17 +0000993 cur_index++;
994 }
995
Grant Likely15c9a0a2011-12-12 09:25:57 -0700996 /* Loop exited without finding a valid entry; return an error */
997 if (node)
998 of_node_put(node);
999 return -EINVAL;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001000}
Grant Likely15c9a0a2011-12-12 09:25:57 -07001001EXPORT_SYMBOL(of_parse_phandle_with_args);
Grant Likely02af11b2009-11-23 20:16:45 -07001002
1003/**
1004 * prom_add_property - Add a property to a node
1005 */
1006int prom_add_property(struct device_node *np, struct property *prop)
1007{
1008 struct property **next;
1009 unsigned long flags;
1010
1011 prop->next = NULL;
1012 write_lock_irqsave(&devtree_lock, flags);
1013 next = &np->properties;
1014 while (*next) {
1015 if (strcmp(prop->name, (*next)->name) == 0) {
1016 /* duplicate ! don't insert it */
1017 write_unlock_irqrestore(&devtree_lock, flags);
1018 return -1;
1019 }
1020 next = &(*next)->next;
1021 }
1022 *next = prop;
1023 write_unlock_irqrestore(&devtree_lock, flags);
1024
1025#ifdef CONFIG_PROC_DEVICETREE
1026 /* try to add to proc as well if it was initialized */
1027 if (np->pde)
1028 proc_device_tree_add_prop(np->pde, prop);
1029#endif /* CONFIG_PROC_DEVICETREE */
1030
1031 return 0;
1032}
1033
1034/**
1035 * prom_remove_property - Remove a property from a node.
1036 *
1037 * Note that we don't actually remove it, since we have given out
1038 * who-knows-how-many pointers to the data using get-property.
1039 * Instead we just move the property to the "dead properties"
1040 * list, so it won't be found any more.
1041 */
1042int prom_remove_property(struct device_node *np, struct property *prop)
1043{
1044 struct property **next;
1045 unsigned long flags;
1046 int found = 0;
1047
1048 write_lock_irqsave(&devtree_lock, flags);
1049 next = &np->properties;
1050 while (*next) {
1051 if (*next == prop) {
1052 /* found the node */
1053 *next = prop->next;
1054 prop->next = np->deadprops;
1055 np->deadprops = prop;
1056 found = 1;
1057 break;
1058 }
1059 next = &(*next)->next;
1060 }
1061 write_unlock_irqrestore(&devtree_lock, flags);
1062
1063 if (!found)
1064 return -ENODEV;
1065
1066#ifdef CONFIG_PROC_DEVICETREE
1067 /* try to remove the proc node as well */
1068 if (np->pde)
1069 proc_device_tree_remove_prop(np->pde, prop);
1070#endif /* CONFIG_PROC_DEVICETREE */
1071
1072 return 0;
1073}
1074
1075/*
Dong Aisheng475d0092012-07-11 15:16:37 +10001076 * prom_update_property - Update a property in a node, if the property does
1077 * not exist, add it.
Grant Likely02af11b2009-11-23 20:16:45 -07001078 *
1079 * Note that we don't actually remove it, since we have given out
1080 * who-knows-how-many pointers to the data using get-property.
1081 * Instead we just move the property to the "dead properties" list,
1082 * and add the new property to the property list
1083 */
1084int prom_update_property(struct device_node *np,
Dong Aisheng475d0092012-07-11 15:16:37 +10001085 struct property *newprop)
Grant Likely02af11b2009-11-23 20:16:45 -07001086{
Dong Aisheng475d0092012-07-11 15:16:37 +10001087 struct property **next, *oldprop;
Grant Likely02af11b2009-11-23 20:16:45 -07001088 unsigned long flags;
1089 int found = 0;
1090
Dong Aisheng475d0092012-07-11 15:16:37 +10001091 if (!newprop->name)
1092 return -EINVAL;
1093
1094 oldprop = of_find_property(np, newprop->name, NULL);
1095 if (!oldprop)
1096 return prom_add_property(np, newprop);
1097
Grant Likely02af11b2009-11-23 20:16:45 -07001098 write_lock_irqsave(&devtree_lock, flags);
1099 next = &np->properties;
1100 while (*next) {
1101 if (*next == oldprop) {
1102 /* found the node */
1103 newprop->next = oldprop->next;
1104 *next = newprop;
1105 oldprop->next = np->deadprops;
1106 np->deadprops = oldprop;
1107 found = 1;
1108 break;
1109 }
1110 next = &(*next)->next;
1111 }
1112 write_unlock_irqrestore(&devtree_lock, flags);
1113
1114 if (!found)
1115 return -ENODEV;
1116
1117#ifdef CONFIG_PROC_DEVICETREE
1118 /* try to add to proc as well if it was initialized */
1119 if (np->pde)
1120 proc_device_tree_update_prop(np->pde, newprop, oldprop);
1121#endif /* CONFIG_PROC_DEVICETREE */
1122
1123 return 0;
1124}
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001125
1126#if defined(CONFIG_OF_DYNAMIC)
1127/*
1128 * Support for dynamic device trees.
1129 *
1130 * On some platforms, the device tree can be manipulated at runtime.
1131 * The routines in this section support adding, removing and changing
1132 * device tree nodes.
1133 */
1134
1135/**
1136 * of_attach_node - Plug a device node into the tree and global list.
1137 */
1138void of_attach_node(struct device_node *np)
1139{
1140 unsigned long flags;
1141
1142 write_lock_irqsave(&devtree_lock, flags);
1143 np->sibling = np->parent->child;
1144 np->allnext = allnodes;
1145 np->parent->child = np;
1146 allnodes = np;
1147 write_unlock_irqrestore(&devtree_lock, flags);
1148}
1149
1150/**
1151 * of_detach_node - "Unplug" a node from the device tree.
1152 *
1153 * The caller must hold a reference to the node. The memory associated with
1154 * the node is not freed until its refcount goes to zero.
1155 */
1156void of_detach_node(struct device_node *np)
1157{
1158 struct device_node *parent;
1159 unsigned long flags;
1160
1161 write_lock_irqsave(&devtree_lock, flags);
1162
1163 parent = np->parent;
1164 if (!parent)
1165 goto out_unlock;
1166
1167 if (allnodes == np)
1168 allnodes = np->allnext;
1169 else {
1170 struct device_node *prev;
1171 for (prev = allnodes;
1172 prev->allnext != np;
1173 prev = prev->allnext)
1174 ;
1175 prev->allnext = np->allnext;
1176 }
1177
1178 if (parent->child == np)
1179 parent->child = np->sibling;
1180 else {
1181 struct device_node *prevsib;
1182 for (prevsib = np->parent->child;
1183 prevsib->sibling != np;
1184 prevsib = prevsib->sibling)
1185 ;
1186 prevsib->sibling = np->sibling;
1187 }
1188
1189 of_node_set_flag(np, OF_DETACHED);
1190
1191out_unlock:
1192 write_unlock_irqrestore(&devtree_lock, flags);
1193}
1194#endif /* defined(CONFIG_OF_DYNAMIC) */
1195
Shawn Guo611cad72011-08-15 15:28:14 +08001196static void of_alias_add(struct alias_prop *ap, struct device_node *np,
1197 int id, const char *stem, int stem_len)
1198{
1199 ap->np = np;
1200 ap->id = id;
1201 strncpy(ap->stem, stem, stem_len);
1202 ap->stem[stem_len] = 0;
1203 list_add_tail(&ap->link, &aliases_lookup);
1204 pr_debug("adding DT alias:%s: stem=%s id=%i node=%s\n",
1205 ap->alias, ap->stem, ap->id, np ? np->full_name : NULL);
1206}
1207
1208/**
1209 * of_alias_scan - Scan all properties of 'aliases' node
1210 *
1211 * The function scans all the properties of 'aliases' node and populate
1212 * the the global lookup table with the properties. It returns the
1213 * number of alias_prop found, or error code in error case.
1214 *
1215 * @dt_alloc: An allocator that provides a virtual address to memory
1216 * for the resulting tree
1217 */
1218void of_alias_scan(void * (*dt_alloc)(u64 size, u64 align))
1219{
1220 struct property *pp;
1221
1222 of_chosen = of_find_node_by_path("/chosen");
1223 if (of_chosen == NULL)
1224 of_chosen = of_find_node_by_path("/chosen@0");
1225 of_aliases = of_find_node_by_path("/aliases");
1226 if (!of_aliases)
1227 return;
1228
Dong Aisheng8af0da92011-12-22 20:19:24 +08001229 for_each_property_of_node(of_aliases, pp) {
Shawn Guo611cad72011-08-15 15:28:14 +08001230 const char *start = pp->name;
1231 const char *end = start + strlen(start);
1232 struct device_node *np;
1233 struct alias_prop *ap;
1234 int id, len;
1235
1236 /* Skip those we do not want to proceed */
1237 if (!strcmp(pp->name, "name") ||
1238 !strcmp(pp->name, "phandle") ||
1239 !strcmp(pp->name, "linux,phandle"))
1240 continue;
1241
1242 np = of_find_node_by_path(pp->value);
1243 if (!np)
1244 continue;
1245
1246 /* walk the alias backwards to extract the id and work out
1247 * the 'stem' string */
1248 while (isdigit(*(end-1)) && end > start)
1249 end--;
1250 len = end - start;
1251
1252 if (kstrtoint(end, 10, &id) < 0)
1253 continue;
1254
1255 /* Allocate an alias_prop with enough space for the stem */
1256 ap = dt_alloc(sizeof(*ap) + len + 1, 4);
1257 if (!ap)
1258 continue;
1259 ap->alias = start;
1260 of_alias_add(ap, np, id, start, len);
1261 }
1262}
1263
1264/**
1265 * of_alias_get_id - Get alias id for the given device_node
1266 * @np: Pointer to the given device_node
1267 * @stem: Alias stem of the given device_node
1268 *
1269 * The function travels the lookup table to get alias id for the given
1270 * device_node and alias stem. It returns the alias id if find it.
1271 */
1272int of_alias_get_id(struct device_node *np, const char *stem)
1273{
1274 struct alias_prop *app;
1275 int id = -ENODEV;
1276
1277 mutex_lock(&of_aliases_mutex);
1278 list_for_each_entry(app, &aliases_lookup, link) {
1279 if (strcmp(app->stem, stem) != 0)
1280 continue;
1281
1282 if (np == app->np) {
1283 id = app->id;
1284 break;
1285 }
1286 }
1287 mutex_unlock(&of_aliases_mutex);
1288
1289 return id;
1290}
1291EXPORT_SYMBOL_GPL(of_alias_get_id);
Stephen Warrenc541adc2012-04-04 09:27:46 -06001292
1293const __be32 *of_prop_next_u32(struct property *prop, const __be32 *cur,
1294 u32 *pu)
1295{
1296 const void *curv = cur;
1297
1298 if (!prop)
1299 return NULL;
1300
1301 if (!cur) {
1302 curv = prop->value;
1303 goto out_val;
1304 }
1305
1306 curv += sizeof(*cur);
1307 if (curv >= prop->value + prop->length)
1308 return NULL;
1309
1310out_val:
1311 *pu = be32_to_cpup(curv);
1312 return curv;
1313}
1314EXPORT_SYMBOL_GPL(of_prop_next_u32);
1315
1316const char *of_prop_next_string(struct property *prop, const char *cur)
1317{
1318 const void *curv = cur;
1319
1320 if (!prop)
1321 return NULL;
1322
1323 if (!cur)
1324 return prop->value;
1325
1326 curv += strlen(cur) + 1;
1327 if (curv >= prop->value + prop->length)
1328 return NULL;
1329
1330 return curv;
1331}
1332EXPORT_SYMBOL_GPL(of_prop_next_string);