blob: 8a2a55c65e5daa0ad5a1da8e08275a0cf7ee8c4d [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>
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +010021#include <linux/cpu.h>
Stephen Rothwell97e873e2007-05-01 16:26:07 +100022#include <linux/module.h>
23#include <linux/of.h>
Stephen Rothwell581b6052007-04-24 16:46:53 +100024#include <linux/spinlock.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Jeremy Kerra9f2f632010-02-01 21:34:14 -070026#include <linux/proc_fs.h>
Stephen Rothwell581b6052007-04-24 16:46:53 +100027
Stepan Moskovchenkoced4eec2012-12-06 14:55:41 -080028#include "of_private.h"
Shawn Guo611cad72011-08-15 15:28:14 +080029
Stepan Moskovchenkoced4eec2012-12-06 14:55:41 -080030LIST_HEAD(aliases_lookup);
Shawn Guo611cad72011-08-15 15:28:14 +080031
Randy Dunlap465aac62012-11-30 10:01:51 +000032struct device_node *of_allnodes;
33EXPORT_SYMBOL(of_allnodes);
Grant Likelyfc0bdae2010-02-14 07:13:55 -070034struct device_node *of_chosen;
Shawn Guo611cad72011-08-15 15:28:14 +080035struct device_node *of_aliases;
Sascha Hauer5c19e952013-08-05 14:40:44 +020036static struct device_node *of_stdout;
Shawn Guo611cad72011-08-15 15:28:14 +080037
Stepan Moskovchenkoced4eec2012-12-06 14:55:41 -080038DEFINE_MUTEX(of_aliases_mutex);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +100039
Stephen Rothwell581b6052007-04-24 16:46:53 +100040/* use when traversing tree through the allnext, child, sibling,
41 * or parent members of struct device_node.
42 */
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -050043DEFINE_RAW_SPINLOCK(devtree_lock);
Stephen Rothwell97e873e2007-05-01 16:26:07 +100044
45int of_n_addr_cells(struct device_node *np)
46{
Jeremy Kerra9fadee2010-10-10 21:24:10 -060047 const __be32 *ip;
Stephen Rothwell97e873e2007-05-01 16:26:07 +100048
49 do {
50 if (np->parent)
51 np = np->parent;
52 ip = of_get_property(np, "#address-cells", NULL);
53 if (ip)
Jeremy Kerr33714882010-01-30 01:45:26 -070054 return be32_to_cpup(ip);
Stephen Rothwell97e873e2007-05-01 16:26:07 +100055 } while (np->parent);
56 /* No #address-cells property for the root node */
57 return OF_ROOT_NODE_ADDR_CELLS_DEFAULT;
58}
59EXPORT_SYMBOL(of_n_addr_cells);
60
61int of_n_size_cells(struct device_node *np)
62{
Jeremy Kerra9fadee2010-10-10 21:24:10 -060063 const __be32 *ip;
Stephen Rothwell97e873e2007-05-01 16:26:07 +100064
65 do {
66 if (np->parent)
67 np = np->parent;
68 ip = of_get_property(np, "#size-cells", NULL);
69 if (ip)
Jeremy Kerr33714882010-01-30 01:45:26 -070070 return be32_to_cpup(ip);
Stephen Rothwell97e873e2007-05-01 16:26:07 +100071 } while (np->parent);
72 /* No #size-cells property for the root node */
73 return OF_ROOT_NODE_SIZE_CELLS_DEFAULT;
74}
75EXPORT_SYMBOL(of_n_size_cells);
76
Rob Herring0c3f0612013-09-17 10:42:50 -050077#ifdef CONFIG_NUMA
78int __weak of_node_to_nid(struct device_node *np)
79{
80 return numa_node_id();
81}
82#endif
83
Grant Likely0f22dd32012-02-15 20:38:40 -070084#if defined(CONFIG_OF_DYNAMIC)
Grant Likely923f7e32010-01-28 13:52:53 -070085/**
86 * of_node_get - Increment refcount of a node
87 * @node: Node to inc refcount, NULL is supported to
88 * simplify writing of callers
89 *
90 * Returns node.
91 */
92struct device_node *of_node_get(struct device_node *node)
93{
94 if (node)
95 kref_get(&node->kref);
96 return node;
97}
98EXPORT_SYMBOL(of_node_get);
99
100static inline struct device_node *kref_to_device_node(struct kref *kref)
101{
102 return container_of(kref, struct device_node, kref);
103}
104
105/**
106 * of_node_release - release a dynamically allocated node
107 * @kref: kref element of the node to be released
108 *
109 * In of_node_put() this function is passed to kref_put()
110 * as the destructor.
111 */
112static void of_node_release(struct kref *kref)
113{
114 struct device_node *node = kref_to_device_node(kref);
115 struct property *prop = node->properties;
116
117 /* We should never be releasing nodes that haven't been detached. */
118 if (!of_node_check_flag(node, OF_DETACHED)) {
119 pr_err("ERROR: Bad of_node_put() on %s\n", node->full_name);
120 dump_stack();
121 kref_init(&node->kref);
122 return;
123 }
124
125 if (!of_node_check_flag(node, OF_DYNAMIC))
126 return;
127
128 while (prop) {
129 struct property *next = prop->next;
130 kfree(prop->name);
131 kfree(prop->value);
132 kfree(prop);
133 prop = next;
134
135 if (!prop) {
136 prop = node->deadprops;
137 node->deadprops = NULL;
138 }
139 }
140 kfree(node->full_name);
141 kfree(node->data);
142 kfree(node);
143}
144
145/**
146 * of_node_put - Decrement refcount of a node
147 * @node: Node to dec refcount, NULL is supported to
148 * simplify writing of callers
149 *
150 */
151void of_node_put(struct device_node *node)
152{
153 if (node)
154 kref_put(&node->kref, of_node_release);
155}
156EXPORT_SYMBOL(of_node_put);
Grant Likely0f22dd32012-02-15 20:38:40 -0700157#endif /* CONFIG_OF_DYNAMIC */
Grant Likely923f7e32010-01-28 13:52:53 -0700158
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500159static struct property *__of_find_property(const struct device_node *np,
160 const char *name, int *lenp)
Stephen Rothwell581b6052007-04-24 16:46:53 +1000161{
162 struct property *pp;
163
Timur Tabi64e45662008-05-08 05:19:59 +1000164 if (!np)
165 return NULL;
166
Sachin Kamata3a7cab2012-06-27 09:44:45 +0530167 for (pp = np->properties; pp; pp = pp->next) {
Stephen Rothwell581b6052007-04-24 16:46:53 +1000168 if (of_prop_cmp(pp->name, name) == 0) {
Sachin Kamata3a7cab2012-06-27 09:44:45 +0530169 if (lenp)
Stephen Rothwell581b6052007-04-24 16:46:53 +1000170 *lenp = pp->length;
171 break;
172 }
173 }
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500174
175 return pp;
176}
177
178struct property *of_find_property(const struct device_node *np,
179 const char *name,
180 int *lenp)
181{
182 struct property *pp;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500183 unsigned long flags;
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500184
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500185 raw_spin_lock_irqsave(&devtree_lock, flags);
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500186 pp = __of_find_property(np, name, lenp);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500187 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwell581b6052007-04-24 16:46:53 +1000188
189 return pp;
190}
191EXPORT_SYMBOL(of_find_property);
192
Grant Likelye91edcf2009-10-15 10:58:09 -0600193/**
194 * of_find_all_nodes - Get next node in global list
195 * @prev: Previous node or NULL to start iteration
196 * of_node_put() will be called on it
197 *
198 * Returns a node pointer with refcount incremented, use
199 * of_node_put() on it when done.
200 */
201struct device_node *of_find_all_nodes(struct device_node *prev)
202{
203 struct device_node *np;
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000204 unsigned long flags;
Grant Likelye91edcf2009-10-15 10:58:09 -0600205
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000206 raw_spin_lock_irqsave(&devtree_lock, flags);
Randy Dunlap465aac62012-11-30 10:01:51 +0000207 np = prev ? prev->allnext : of_allnodes;
Grant Likelye91edcf2009-10-15 10:58:09 -0600208 for (; np != NULL; np = np->allnext)
209 if (of_node_get(np))
210 break;
211 of_node_put(prev);
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000212 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Grant Likelye91edcf2009-10-15 10:58:09 -0600213 return np;
214}
215EXPORT_SYMBOL(of_find_all_nodes);
216
Stephen Rothwell97e873e2007-05-01 16:26:07 +1000217/*
218 * Find a property with a given name for a given node
219 * and return the value.
220 */
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500221static const void *__of_get_property(const struct device_node *np,
222 const char *name, int *lenp)
223{
224 struct property *pp = __of_find_property(np, name, lenp);
225
226 return pp ? pp->value : NULL;
227}
228
229/*
230 * Find a property with a given name for a given node
231 * and return the value.
232 */
Stephen Rothwell97e873e2007-05-01 16:26:07 +1000233const void *of_get_property(const struct device_node *np, const char *name,
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500234 int *lenp)
Stephen Rothwell97e873e2007-05-01 16:26:07 +1000235{
236 struct property *pp = of_find_property(np, name, lenp);
237
238 return pp ? pp->value : NULL;
239}
240EXPORT_SYMBOL(of_get_property);
Stephen Rothwell0081cbc2007-05-01 16:29:19 +1000241
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100242/*
243 * arch_match_cpu_phys_id - Match the given logical CPU and physical id
244 *
245 * @cpu: logical cpu index of a core/thread
246 * @phys_id: physical identifier of a core/thread
247 *
248 * CPU logical to physical index mapping is architecture specific.
249 * However this __weak function provides a default match of physical
250 * id to logical cpu index. phys_id provided here is usually values read
251 * from the device tree which must match the hardware internal registers.
252 *
253 * Returns true if the physical identifier and the logical cpu index
254 * correspond to the same core/thread, false otherwise.
255 */
256bool __weak arch_match_cpu_phys_id(int cpu, u64 phys_id)
257{
258 return (u32)phys_id == cpu;
259}
260
261/**
262 * Checks if the given "prop_name" property holds the physical id of the
263 * core/thread corresponding to the logical cpu 'cpu'. If 'thread' is not
264 * NULL, local thread number within the core is returned in it.
265 */
266static bool __of_find_n_match_cpu_property(struct device_node *cpun,
267 const char *prop_name, int cpu, unsigned int *thread)
268{
269 const __be32 *cell;
270 int ac, prop_len, tid;
271 u64 hwid;
272
273 ac = of_n_addr_cells(cpun);
274 cell = of_get_property(cpun, prop_name, &prop_len);
Grant Likelyf3cea452013-10-04 17:24:26 +0100275 if (!cell || !ac)
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100276 return false;
Grant Likelyf3cea452013-10-04 17:24:26 +0100277 prop_len /= sizeof(*cell) * ac;
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100278 for (tid = 0; tid < prop_len; tid++) {
279 hwid = of_read_number(cell, ac);
280 if (arch_match_cpu_phys_id(cpu, hwid)) {
281 if (thread)
282 *thread = tid;
283 return true;
284 }
285 cell += ac;
286 }
287 return false;
288}
289
David Millerd1cb9d12013-10-03 17:24:51 -0400290/*
291 * arch_find_n_match_cpu_physical_id - See if the given device node is
292 * for the cpu corresponding to logical cpu 'cpu'. Return true if so,
293 * else false. If 'thread' is non-NULL, the local thread number within the
294 * core is returned in it.
295 */
296bool __weak arch_find_n_match_cpu_physical_id(struct device_node *cpun,
297 int cpu, unsigned int *thread)
298{
299 /* Check for non-standard "ibm,ppc-interrupt-server#s" property
300 * for thread ids on PowerPC. If it doesn't exist fallback to
301 * standard "reg" property.
302 */
303 if (IS_ENABLED(CONFIG_PPC) &&
304 __of_find_n_match_cpu_property(cpun,
305 "ibm,ppc-interrupt-server#s",
306 cpu, thread))
307 return true;
308
309 if (__of_find_n_match_cpu_property(cpun, "reg", cpu, thread))
310 return true;
311
312 return false;
313}
314
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100315/**
316 * of_get_cpu_node - Get device node associated with the given logical CPU
317 *
318 * @cpu: CPU number(logical index) for which device node is required
319 * @thread: if not NULL, local thread number within the physical core is
320 * returned
321 *
322 * The main purpose of this function is to retrieve the device node for the
323 * given logical CPU index. It should be used to initialize the of_node in
324 * cpu device. Once of_node in cpu device is populated, all the further
325 * references can use that instead.
326 *
327 * CPU logical to physical index mapping is architecture specific and is built
328 * before booting secondary cores. This function uses arch_match_cpu_phys_id
329 * which can be overridden by architecture specific implementation.
330 *
331 * Returns a node pointer for the logical cpu if found, else NULL.
332 */
333struct device_node *of_get_cpu_node(int cpu, unsigned int *thread)
334{
David Millerd1cb9d12013-10-03 17:24:51 -0400335 struct device_node *cpun;
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100336
David Millerd1cb9d12013-10-03 17:24:51 -0400337 for_each_node_by_type(cpun, "cpu") {
338 if (arch_find_n_match_cpu_physical_id(cpun, cpu, thread))
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100339 return cpun;
340 }
341 return NULL;
342}
343EXPORT_SYMBOL(of_get_cpu_node);
344
Stephen Rothwell0081cbc2007-05-01 16:29:19 +1000345/** Checks if the given "compat" string matches one of the strings in
346 * the device's "compatible" property
347 */
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500348static int __of_device_is_compatible(const struct device_node *device,
349 const char *compat)
Stephen Rothwell0081cbc2007-05-01 16:29:19 +1000350{
351 const char* cp;
352 int cplen, l;
353
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500354 cp = __of_get_property(device, "compatible", &cplen);
Stephen Rothwell0081cbc2007-05-01 16:29:19 +1000355 if (cp == NULL)
356 return 0;
357 while (cplen > 0) {
358 if (of_compat_cmp(cp, compat, strlen(compat)) == 0)
359 return 1;
360 l = strlen(cp) + 1;
361 cp += l;
362 cplen -= l;
363 }
364
365 return 0;
366}
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500367
368/** Checks if the given "compat" string matches one of the strings in
369 * the device's "compatible" property
370 */
371int of_device_is_compatible(const struct device_node *device,
372 const char *compat)
373{
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500374 unsigned long flags;
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500375 int res;
376
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500377 raw_spin_lock_irqsave(&devtree_lock, flags);
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500378 res = __of_device_is_compatible(device, compat);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500379 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500380 return res;
381}
Stephen Rothwell0081cbc2007-05-01 16:29:19 +1000382EXPORT_SYMBOL(of_device_is_compatible);
Stephen Rothwelle679c5f2007-04-24 17:16:16 +1000383
384/**
Grant Likely71a157e2010-02-01 21:34:14 -0700385 * of_machine_is_compatible - Test root of device tree for a given compatible value
Grant Likely1f43cfb2010-01-28 13:47:25 -0700386 * @compat: compatible string to look for in root node's compatible property.
387 *
388 * Returns true if the root node has the given value in its
389 * compatible property.
390 */
Grant Likely71a157e2010-02-01 21:34:14 -0700391int of_machine_is_compatible(const char *compat)
Grant Likely1f43cfb2010-01-28 13:47:25 -0700392{
393 struct device_node *root;
394 int rc = 0;
395
396 root = of_find_node_by_path("/");
397 if (root) {
398 rc = of_device_is_compatible(root, compat);
399 of_node_put(root);
400 }
401 return rc;
402}
Grant Likely71a157e2010-02-01 21:34:14 -0700403EXPORT_SYMBOL(of_machine_is_compatible);
Grant Likely1f43cfb2010-01-28 13:47:25 -0700404
405/**
Stephen Warrenc31a0c02013-02-11 14:15:32 -0700406 * __of_device_is_available - check if a device is available for use
Josh Boyer834d97d2008-03-27 00:33:14 +1100407 *
Stephen Warrenc31a0c02013-02-11 14:15:32 -0700408 * @device: Node to check for availability, with locks already held
Josh Boyer834d97d2008-03-27 00:33:14 +1100409 *
410 * Returns 1 if the status property is absent or set to "okay" or "ok",
411 * 0 otherwise
412 */
Stephen Warrenc31a0c02013-02-11 14:15:32 -0700413static int __of_device_is_available(const struct device_node *device)
Josh Boyer834d97d2008-03-27 00:33:14 +1100414{
415 const char *status;
416 int statlen;
417
Xiubo Li42ccd782014-01-13 11:07:28 +0800418 if (!device)
419 return 0;
420
Stephen Warrenc31a0c02013-02-11 14:15:32 -0700421 status = __of_get_property(device, "status", &statlen);
Josh Boyer834d97d2008-03-27 00:33:14 +1100422 if (status == NULL)
423 return 1;
424
425 if (statlen > 0) {
426 if (!strcmp(status, "okay") || !strcmp(status, "ok"))
427 return 1;
428 }
429
430 return 0;
431}
Stephen Warrenc31a0c02013-02-11 14:15:32 -0700432
433/**
434 * of_device_is_available - check if a device is available for use
435 *
436 * @device: Node to check for availability
437 *
438 * Returns 1 if the status property is absent or set to "okay" or "ok",
439 * 0 otherwise
440 */
441int of_device_is_available(const struct device_node *device)
442{
443 unsigned long flags;
444 int res;
445
446 raw_spin_lock_irqsave(&devtree_lock, flags);
447 res = __of_device_is_available(device);
448 raw_spin_unlock_irqrestore(&devtree_lock, flags);
449 return res;
450
451}
Josh Boyer834d97d2008-03-27 00:33:14 +1100452EXPORT_SYMBOL(of_device_is_available);
453
454/**
Stephen Rothwelle679c5f2007-04-24 17:16:16 +1000455 * of_get_parent - Get a node's parent if any
456 * @node: Node to get parent
457 *
458 * Returns a node pointer with refcount incremented, use
459 * of_node_put() on it when done.
460 */
461struct device_node *of_get_parent(const struct device_node *node)
462{
463 struct device_node *np;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500464 unsigned long flags;
Stephen Rothwelle679c5f2007-04-24 17:16:16 +1000465
466 if (!node)
467 return NULL;
468
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500469 raw_spin_lock_irqsave(&devtree_lock, flags);
Stephen Rothwelle679c5f2007-04-24 17:16:16 +1000470 np = of_node_get(node->parent);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500471 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwelle679c5f2007-04-24 17:16:16 +1000472 return np;
473}
474EXPORT_SYMBOL(of_get_parent);
Stephen Rothwelld1cd3552007-04-24 17:21:29 +1000475
476/**
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000477 * of_get_next_parent - Iterate to a node's parent
478 * @node: Node to get parent of
479 *
480 * This is like of_get_parent() except that it drops the
481 * refcount on the passed node, making it suitable for iterating
482 * through a node's parents.
483 *
484 * Returns a node pointer with refcount incremented, use
485 * of_node_put() on it when done.
486 */
487struct device_node *of_get_next_parent(struct device_node *node)
488{
489 struct device_node *parent;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500490 unsigned long flags;
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000491
492 if (!node)
493 return NULL;
494
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500495 raw_spin_lock_irqsave(&devtree_lock, flags);
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000496 parent = of_node_get(node->parent);
497 of_node_put(node);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500498 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000499 return parent;
500}
Guennadi Liakhovetski6695be62013-04-02 12:28:11 -0300501EXPORT_SYMBOL(of_get_next_parent);
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000502
503/**
Stephen Rothwelld1cd3552007-04-24 17:21:29 +1000504 * of_get_next_child - Iterate a node childs
505 * @node: parent node
506 * @prev: previous child of the parent node, or NULL to get first
507 *
508 * Returns a node pointer with refcount incremented, use
509 * of_node_put() on it when done.
510 */
511struct device_node *of_get_next_child(const struct device_node *node,
512 struct device_node *prev)
513{
514 struct device_node *next;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500515 unsigned long flags;
Stephen Rothwelld1cd3552007-04-24 17:21:29 +1000516
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500517 raw_spin_lock_irqsave(&devtree_lock, flags);
Stephen Rothwelld1cd3552007-04-24 17:21:29 +1000518 next = prev ? prev->sibling : node->child;
519 for (; next; next = next->sibling)
520 if (of_node_get(next))
521 break;
522 of_node_put(prev);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500523 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwelld1cd3552007-04-24 17:21:29 +1000524 return next;
525}
526EXPORT_SYMBOL(of_get_next_child);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000527
528/**
Timur Tabi32961932012-08-14 13:20:23 +0000529 * of_get_next_available_child - Find the next available child node
530 * @node: parent node
531 * @prev: previous child of the parent node, or NULL to get first
532 *
533 * This function is like of_get_next_child(), except that it
534 * automatically skips any disabled nodes (i.e. status = "disabled").
535 */
536struct device_node *of_get_next_available_child(const struct device_node *node,
537 struct device_node *prev)
538{
539 struct device_node *next;
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000540 unsigned long flags;
Timur Tabi32961932012-08-14 13:20:23 +0000541
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000542 raw_spin_lock_irqsave(&devtree_lock, flags);
Timur Tabi32961932012-08-14 13:20:23 +0000543 next = prev ? prev->sibling : node->child;
544 for (; next; next = next->sibling) {
Stephen Warrenc31a0c02013-02-11 14:15:32 -0700545 if (!__of_device_is_available(next))
Timur Tabi32961932012-08-14 13:20:23 +0000546 continue;
547 if (of_node_get(next))
548 break;
549 }
550 of_node_put(prev);
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000551 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Timur Tabi32961932012-08-14 13:20:23 +0000552 return next;
553}
554EXPORT_SYMBOL(of_get_next_available_child);
555
556/**
Srinivas Kandagatla9c197612012-09-18 08:10:28 +0100557 * of_get_child_by_name - Find the child node by name for a given parent
558 * @node: parent node
559 * @name: child name to look for.
560 *
561 * This function looks for child node for given matching name
562 *
563 * Returns a node pointer if found, with refcount incremented, use
564 * of_node_put() on it when done.
565 * Returns NULL if node is not found.
566 */
567struct device_node *of_get_child_by_name(const struct device_node *node,
568 const char *name)
569{
570 struct device_node *child;
571
572 for_each_child_of_node(node, child)
573 if (child->name && (of_node_cmp(child->name, name) == 0))
574 break;
575 return child;
576}
577EXPORT_SYMBOL(of_get_child_by_name);
578
579/**
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000580 * of_find_node_by_path - Find a node matching a full OF path
581 * @path: The full path to match
582 *
583 * Returns a node pointer with refcount incremented, use
584 * of_node_put() on it when done.
585 */
586struct device_node *of_find_node_by_path(const char *path)
587{
Randy Dunlap465aac62012-11-30 10:01:51 +0000588 struct device_node *np = of_allnodes;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500589 unsigned long flags;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000590
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500591 raw_spin_lock_irqsave(&devtree_lock, flags);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000592 for (; np; np = np->allnext) {
593 if (np->full_name && (of_node_cmp(np->full_name, path) == 0)
594 && of_node_get(np))
595 break;
596 }
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500597 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000598 return np;
599}
600EXPORT_SYMBOL(of_find_node_by_path);
601
602/**
603 * of_find_node_by_name - Find a node by its "name" property
604 * @from: The node to start searching from or NULL, the node
605 * you pass will not be searched, only the next one
606 * will; typically, you pass what the previous call
607 * returned. of_node_put() will be called on it
608 * @name: The name string to match against
609 *
610 * Returns a node pointer with refcount incremented, use
611 * of_node_put() on it when done.
612 */
613struct device_node *of_find_node_by_name(struct device_node *from,
614 const char *name)
615{
616 struct device_node *np;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500617 unsigned long flags;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000618
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500619 raw_spin_lock_irqsave(&devtree_lock, flags);
Randy Dunlap465aac62012-11-30 10:01:51 +0000620 np = from ? from->allnext : of_allnodes;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000621 for (; np; np = np->allnext)
622 if (np->name && (of_node_cmp(np->name, name) == 0)
623 && of_node_get(np))
624 break;
625 of_node_put(from);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500626 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000627 return np;
628}
629EXPORT_SYMBOL(of_find_node_by_name);
630
631/**
632 * of_find_node_by_type - Find a node by its "device_type" property
633 * @from: The node to start searching from, or NULL to start searching
634 * the entire device tree. The node you pass will not be
635 * searched, only the next one will; typically, you pass
636 * what the previous call returned. of_node_put() will be
637 * called on from for you.
638 * @type: The type string to match against
639 *
640 * Returns a node pointer with refcount incremented, use
641 * of_node_put() on it when done.
642 */
643struct device_node *of_find_node_by_type(struct device_node *from,
644 const char *type)
645{
646 struct device_node *np;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500647 unsigned long flags;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000648
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500649 raw_spin_lock_irqsave(&devtree_lock, flags);
Randy Dunlap465aac62012-11-30 10:01:51 +0000650 np = from ? from->allnext : of_allnodes;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000651 for (; np; np = np->allnext)
652 if (np->type && (of_node_cmp(np->type, type) == 0)
653 && of_node_get(np))
654 break;
655 of_node_put(from);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500656 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000657 return np;
658}
659EXPORT_SYMBOL(of_find_node_by_type);
660
661/**
662 * of_find_compatible_node - Find a node based on type and one of the
663 * tokens in its "compatible" property
664 * @from: The node to start searching from or NULL, the node
665 * you pass will not be searched, only the next one
666 * will; typically, you pass what the previous call
667 * returned. of_node_put() will be called on it
668 * @type: The type string to match "device_type" or NULL to ignore
669 * @compatible: The string to match to one of the tokens in the device
670 * "compatible" list.
671 *
672 * Returns a node pointer with refcount incremented, use
673 * of_node_put() on it when done.
674 */
675struct device_node *of_find_compatible_node(struct device_node *from,
676 const char *type, const char *compatible)
677{
678 struct device_node *np;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500679 unsigned long flags;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000680
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500681 raw_spin_lock_irqsave(&devtree_lock, flags);
Randy Dunlap465aac62012-11-30 10:01:51 +0000682 np = from ? from->allnext : of_allnodes;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000683 for (; np; np = np->allnext) {
684 if (type
685 && !(np->type && (of_node_cmp(np->type, type) == 0)))
686 continue;
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500687 if (__of_device_is_compatible(np, compatible) &&
688 of_node_get(np))
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000689 break;
690 }
691 of_node_put(from);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500692 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000693 return np;
694}
695EXPORT_SYMBOL(of_find_compatible_node);
Grant Likely283029d2008-01-09 06:20:40 +1100696
697/**
Michael Ellerman1e291b12008-11-12 18:54:42 +0000698 * of_find_node_with_property - Find a node which has a property with
699 * the given name.
700 * @from: The node to start searching from or NULL, the node
701 * you pass will not be searched, only the next one
702 * will; typically, you pass what the previous call
703 * returned. of_node_put() will be called on it
704 * @prop_name: The name of the property to look for.
705 *
706 * Returns a node pointer with refcount incremented, use
707 * of_node_put() on it when done.
708 */
709struct device_node *of_find_node_with_property(struct device_node *from,
710 const char *prop_name)
711{
712 struct device_node *np;
713 struct property *pp;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500714 unsigned long flags;
Michael Ellerman1e291b12008-11-12 18:54:42 +0000715
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500716 raw_spin_lock_irqsave(&devtree_lock, flags);
Randy Dunlap465aac62012-11-30 10:01:51 +0000717 np = from ? from->allnext : of_allnodes;
Michael Ellerman1e291b12008-11-12 18:54:42 +0000718 for (; np; np = np->allnext) {
Sachin Kamata3a7cab2012-06-27 09:44:45 +0530719 for (pp = np->properties; pp; pp = pp->next) {
Michael Ellerman1e291b12008-11-12 18:54:42 +0000720 if (of_prop_cmp(pp->name, prop_name) == 0) {
721 of_node_get(np);
722 goto out;
723 }
724 }
725 }
726out:
727 of_node_put(from);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500728 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Michael Ellerman1e291b12008-11-12 18:54:42 +0000729 return np;
730}
731EXPORT_SYMBOL(of_find_node_with_property);
732
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500733static
734const struct of_device_id *__of_match_node(const struct of_device_id *matches,
735 const struct device_node *node)
Grant Likely283029d2008-01-09 06:20:40 +1100736{
Sebastian Hesselbarth10535312013-12-03 14:52:00 +0100737 const char *cp;
738 int cplen, l;
739
Grant Likelya52f07e2011-03-18 10:21:29 -0600740 if (!matches)
741 return NULL;
742
Sebastian Hesselbarth10535312013-12-03 14:52:00 +0100743 cp = __of_get_property(node, "compatible", &cplen);
744 do {
745 const struct of_device_id *m = matches;
746
747 /* Check against matches with current compatible string */
748 while (m->name[0] || m->type[0] || m->compatible[0]) {
749 int match = 1;
750 if (m->name[0])
751 match &= node->name
752 && !strcmp(m->name, node->name);
753 if (m->type[0])
754 match &= node->type
755 && !strcmp(m->type, node->type);
756 if (m->compatible[0])
757 match &= cp
758 && !of_compat_cmp(m->compatible, cp,
759 strlen(m->compatible));
760 if (match)
761 return m;
762 m++;
763 }
764
765 /* Get node's next compatible string */
766 if (cp) {
767 l = strlen(cp) + 1;
768 cp += l;
769 cplen -= l;
770 }
771 } while (cp && (cplen > 0));
772
Grant Likely283029d2008-01-09 06:20:40 +1100773 return NULL;
774}
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500775
776/**
777 * of_match_node - Tell if an device_node has a matching of_match structure
778 * @matches: array of of device match structures to search in
779 * @node: the of device structure to match against
780 *
Sebastian Hesselbarth10535312013-12-03 14:52:00 +0100781 * Low level utility function used by device matching. Matching order
782 * is to compare each of the node's compatibles with all given matches
783 * first. This implies node's compatible is sorted from specific to
784 * generic while matches can be in any order.
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500785 */
786const struct of_device_id *of_match_node(const struct of_device_id *matches,
787 const struct device_node *node)
788{
789 const struct of_device_id *match;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500790 unsigned long flags;
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500791
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500792 raw_spin_lock_irqsave(&devtree_lock, flags);
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500793 match = __of_match_node(matches, node);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500794 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500795 return match;
796}
Grant Likely283029d2008-01-09 06:20:40 +1100797EXPORT_SYMBOL(of_match_node);
798
799/**
Stephen Warren50c8af42012-11-20 16:12:20 -0700800 * of_find_matching_node_and_match - Find a node based on an of_device_id
801 * match table.
Grant Likely283029d2008-01-09 06:20:40 +1100802 * @from: The node to start searching from or NULL, the node
803 * you pass will not be searched, only the next one
804 * will; typically, you pass what the previous call
805 * returned. of_node_put() will be called on it
806 * @matches: array of of device match structures to search in
Stephen Warren50c8af42012-11-20 16:12:20 -0700807 * @match Updated to point at the matches entry which matched
Grant Likely283029d2008-01-09 06:20:40 +1100808 *
809 * Returns a node pointer with refcount incremented, use
810 * of_node_put() on it when done.
811 */
Stephen Warren50c8af42012-11-20 16:12:20 -0700812struct device_node *of_find_matching_node_and_match(struct device_node *from,
813 const struct of_device_id *matches,
814 const struct of_device_id **match)
Grant Likely283029d2008-01-09 06:20:40 +1100815{
816 struct device_node *np;
Thomas Abrahamdc71bcf2013-01-19 10:20:42 -0800817 const struct of_device_id *m;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500818 unsigned long flags;
Grant Likely283029d2008-01-09 06:20:40 +1100819
Stephen Warren50c8af42012-11-20 16:12:20 -0700820 if (match)
821 *match = NULL;
822
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500823 raw_spin_lock_irqsave(&devtree_lock, flags);
Randy Dunlap465aac62012-11-30 10:01:51 +0000824 np = from ? from->allnext : of_allnodes;
Grant Likely283029d2008-01-09 06:20:40 +1100825 for (; np; np = np->allnext) {
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500826 m = __of_match_node(matches, np);
Thomas Abrahamdc71bcf2013-01-19 10:20:42 -0800827 if (m && of_node_get(np)) {
Stephen Warren50c8af42012-11-20 16:12:20 -0700828 if (match)
Thomas Abrahamdc71bcf2013-01-19 10:20:42 -0800829 *match = m;
Grant Likely283029d2008-01-09 06:20:40 +1100830 break;
Stephen Warren50c8af42012-11-20 16:12:20 -0700831 }
Grant Likely283029d2008-01-09 06:20:40 +1100832 }
833 of_node_put(from);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500834 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Grant Likely283029d2008-01-09 06:20:40 +1100835 return np;
836}
Grant Likely80c20222012-12-19 10:45:36 +0000837EXPORT_SYMBOL(of_find_matching_node_and_match);
Grant Likely3f07af42008-07-25 22:25:13 -0400838
839/**
Grant Likely3f07af42008-07-25 22:25:13 -0400840 * of_modalias_node - Lookup appropriate modalias for a device node
841 * @node: pointer to a device tree node
842 * @modalias: Pointer to buffer that modalias value will be copied into
843 * @len: Length of modalias value
844 *
Grant Likely2ffe8c52010-06-08 07:48:19 -0600845 * Based on the value of the compatible property, this routine will attempt
846 * to choose an appropriate modalias value for a particular device tree node.
847 * It does this by stripping the manufacturer prefix (as delimited by a ',')
848 * from the first entry in the compatible list property.
Grant Likely3f07af42008-07-25 22:25:13 -0400849 *
Grant Likely2ffe8c52010-06-08 07:48:19 -0600850 * This routine returns 0 on success, <0 on failure.
Grant Likely3f07af42008-07-25 22:25:13 -0400851 */
852int of_modalias_node(struct device_node *node, char *modalias, int len)
853{
Grant Likely2ffe8c52010-06-08 07:48:19 -0600854 const char *compatible, *p;
855 int cplen;
Grant Likely3f07af42008-07-25 22:25:13 -0400856
857 compatible = of_get_property(node, "compatible", &cplen);
Grant Likely2ffe8c52010-06-08 07:48:19 -0600858 if (!compatible || strlen(compatible) > cplen)
Grant Likely3f07af42008-07-25 22:25:13 -0400859 return -ENODEV;
Grant Likely3f07af42008-07-25 22:25:13 -0400860 p = strchr(compatible, ',');
Grant Likely2ffe8c52010-06-08 07:48:19 -0600861 strlcpy(modalias, p ? p + 1 : compatible, len);
Grant Likely3f07af42008-07-25 22:25:13 -0400862 return 0;
863}
864EXPORT_SYMBOL_GPL(of_modalias_node);
865
Anton Vorontsov64b60e02008-10-10 04:43:17 +0000866/**
Jeremy Kerr89751a72010-02-01 21:34:11 -0700867 * of_find_node_by_phandle - Find a node given a phandle
868 * @handle: phandle of the node to find
869 *
870 * Returns a node pointer with refcount incremented, use
871 * of_node_put() on it when done.
872 */
873struct device_node *of_find_node_by_phandle(phandle handle)
874{
875 struct device_node *np;
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000876 unsigned long flags;
Jeremy Kerr89751a72010-02-01 21:34:11 -0700877
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000878 raw_spin_lock_irqsave(&devtree_lock, flags);
Randy Dunlap465aac62012-11-30 10:01:51 +0000879 for (np = of_allnodes; np; np = np->allnext)
Jeremy Kerr89751a72010-02-01 21:34:11 -0700880 if (np->phandle == handle)
881 break;
882 of_node_get(np);
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000883 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Jeremy Kerr89751a72010-02-01 21:34:11 -0700884 return np;
885}
886EXPORT_SYMBOL(of_find_node_by_phandle);
887
888/**
Heiko Stuebnerad54a0c2014-02-12 01:00:34 +0100889 * of_property_count_elems_of_size - Count the number of elements in a property
890 *
891 * @np: device node from which the property value is to be read.
892 * @propname: name of the property to be searched.
893 * @elem_size: size of the individual element
894 *
895 * Search for a property in a device node and count the number of elements of
896 * size elem_size in it. Returns number of elements on sucess, -EINVAL if the
897 * property does not exist or its length does not match a multiple of elem_size
898 * and -ENODATA if the property does not have a value.
899 */
900int of_property_count_elems_of_size(const struct device_node *np,
901 const char *propname, int elem_size)
902{
903 struct property *prop = of_find_property(np, propname, NULL);
904
905 if (!prop)
906 return -EINVAL;
907 if (!prop->value)
908 return -ENODATA;
909
910 if (prop->length % elem_size != 0) {
911 pr_err("size of %s in node %s is not a multiple of %d\n",
912 propname, np->full_name, elem_size);
913 return -EINVAL;
914 }
915
916 return prop->length / elem_size;
917}
918EXPORT_SYMBOL_GPL(of_property_count_elems_of_size);
919
920/**
Tony Priskdaeec1f2013-04-03 17:57:11 +1300921 * of_find_property_value_of_size
922 *
923 * @np: device node from which the property value is to be read.
924 * @propname: name of the property to be searched.
925 * @len: requested length of property value
926 *
927 * Search for a property in a device node and valid the requested size.
928 * Returns the property value on success, -EINVAL if the property does not
929 * exist, -ENODATA if property does not have a value, and -EOVERFLOW if the
930 * property data isn't large enough.
931 *
932 */
933static void *of_find_property_value_of_size(const struct device_node *np,
934 const char *propname, u32 len)
935{
936 struct property *prop = of_find_property(np, propname, NULL);
937
938 if (!prop)
939 return ERR_PTR(-EINVAL);
940 if (!prop->value)
941 return ERR_PTR(-ENODATA);
942 if (len > prop->length)
943 return ERR_PTR(-EOVERFLOW);
944
945 return prop->value;
946}
947
948/**
Tony Prisk3daf3722013-03-23 17:02:15 +1300949 * of_property_read_u32_index - Find and read a u32 from a multi-value property.
950 *
951 * @np: device node from which the property value is to be read.
952 * @propname: name of the property to be searched.
953 * @index: index of the u32 in the list of values
954 * @out_value: pointer to return value, modified only if no error.
955 *
956 * Search for a property in a device node and read nth 32-bit value from
957 * it. Returns 0 on success, -EINVAL if the property does not exist,
958 * -ENODATA if property does not have a value, and -EOVERFLOW if the
959 * property data isn't large enough.
960 *
961 * The out_value is modified only if a valid u32 value can be decoded.
962 */
963int of_property_read_u32_index(const struct device_node *np,
964 const char *propname,
965 u32 index, u32 *out_value)
966{
Tony Priskdaeec1f2013-04-03 17:57:11 +1300967 const u32 *val = of_find_property_value_of_size(np, propname,
968 ((index + 1) * sizeof(*out_value)));
Tony Prisk3daf3722013-03-23 17:02:15 +1300969
Tony Priskdaeec1f2013-04-03 17:57:11 +1300970 if (IS_ERR(val))
971 return PTR_ERR(val);
Tony Prisk3daf3722013-03-23 17:02:15 +1300972
Tony Priskdaeec1f2013-04-03 17:57:11 +1300973 *out_value = be32_to_cpup(((__be32 *)val) + index);
Tony Prisk3daf3722013-03-23 17:02:15 +1300974 return 0;
975}
976EXPORT_SYMBOL_GPL(of_property_read_u32_index);
977
978/**
Viresh Kumarbe193242012-11-20 10:15:19 +0530979 * of_property_read_u8_array - Find and read an array of u8 from a property.
980 *
981 * @np: device node from which the property value is to be read.
982 * @propname: name of the property to be searched.
Lad, Prabhakar792efb82013-05-07 11:34:11 +0530983 * @out_values: pointer to return value, modified only if return value is 0.
Viresh Kumarbe193242012-11-20 10:15:19 +0530984 * @sz: number of array elements to read
985 *
986 * Search for a property in a device node and read 8-bit value(s) from
987 * it. Returns 0 on success, -EINVAL if the property does not exist,
988 * -ENODATA if property does not have a value, and -EOVERFLOW if the
989 * property data isn't large enough.
990 *
991 * dts entry of array should be like:
992 * property = /bits/ 8 <0x50 0x60 0x70>;
993 *
Lad, Prabhakar792efb82013-05-07 11:34:11 +0530994 * The out_values is modified only if a valid u8 value can be decoded.
Viresh Kumarbe193242012-11-20 10:15:19 +0530995 */
996int of_property_read_u8_array(const struct device_node *np,
997 const char *propname, u8 *out_values, size_t sz)
998{
Tony Priskdaeec1f2013-04-03 17:57:11 +1300999 const u8 *val = of_find_property_value_of_size(np, propname,
1000 (sz * sizeof(*out_values)));
Viresh Kumarbe193242012-11-20 10:15:19 +05301001
Tony Priskdaeec1f2013-04-03 17:57:11 +13001002 if (IS_ERR(val))
1003 return PTR_ERR(val);
Viresh Kumarbe193242012-11-20 10:15:19 +05301004
Viresh Kumarbe193242012-11-20 10:15:19 +05301005 while (sz--)
1006 *out_values++ = *val++;
1007 return 0;
1008}
1009EXPORT_SYMBOL_GPL(of_property_read_u8_array);
1010
1011/**
1012 * of_property_read_u16_array - Find and read an array of u16 from a property.
1013 *
1014 * @np: device node from which the property value is to be read.
1015 * @propname: name of the property to be searched.
Lad, Prabhakar792efb82013-05-07 11:34:11 +05301016 * @out_values: pointer to return value, modified only if return value is 0.
Viresh Kumarbe193242012-11-20 10:15:19 +05301017 * @sz: number of array elements to read
1018 *
1019 * Search for a property in a device node and read 16-bit value(s) from
1020 * it. Returns 0 on success, -EINVAL if the property does not exist,
1021 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1022 * property data isn't large enough.
1023 *
1024 * dts entry of array should be like:
1025 * property = /bits/ 16 <0x5000 0x6000 0x7000>;
1026 *
Lad, Prabhakar792efb82013-05-07 11:34:11 +05301027 * The out_values is modified only if a valid u16 value can be decoded.
Viresh Kumarbe193242012-11-20 10:15:19 +05301028 */
1029int of_property_read_u16_array(const struct device_node *np,
1030 const char *propname, u16 *out_values, size_t sz)
1031{
Tony Priskdaeec1f2013-04-03 17:57:11 +13001032 const __be16 *val = of_find_property_value_of_size(np, propname,
1033 (sz * sizeof(*out_values)));
Viresh Kumarbe193242012-11-20 10:15:19 +05301034
Tony Priskdaeec1f2013-04-03 17:57:11 +13001035 if (IS_ERR(val))
1036 return PTR_ERR(val);
Viresh Kumarbe193242012-11-20 10:15:19 +05301037
Viresh Kumarbe193242012-11-20 10:15:19 +05301038 while (sz--)
1039 *out_values++ = be16_to_cpup(val++);
1040 return 0;
1041}
1042EXPORT_SYMBOL_GPL(of_property_read_u16_array);
1043
1044/**
Rob Herring0e373632011-07-06 15:42:58 -05001045 * of_property_read_u32_array - Find and read an array of 32 bit integers
1046 * from a property.
1047 *
Thomas Abrahama3b85362011-06-30 21:26:10 +05301048 * @np: device node from which the property value is to be read.
1049 * @propname: name of the property to be searched.
Lad, Prabhakar792efb82013-05-07 11:34:11 +05301050 * @out_values: pointer to return value, modified only if return value is 0.
Viresh Kumarbe193242012-11-20 10:15:19 +05301051 * @sz: number of array elements to read
Thomas Abrahama3b85362011-06-30 21:26:10 +05301052 *
Rob Herring0e373632011-07-06 15:42:58 -05001053 * Search for a property in a device node and read 32-bit value(s) from
Thomas Abrahama3b85362011-06-30 21:26:10 +05301054 * it. Returns 0 on success, -EINVAL if the property does not exist,
1055 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1056 * property data isn't large enough.
1057 *
Lad, Prabhakar792efb82013-05-07 11:34:11 +05301058 * The out_values is modified only if a valid u32 value can be decoded.
Thomas Abrahama3b85362011-06-30 21:26:10 +05301059 */
Jamie Ilesaac285c2011-08-02 15:45:07 +01001060int of_property_read_u32_array(const struct device_node *np,
1061 const char *propname, u32 *out_values,
1062 size_t sz)
Thomas Abrahama3b85362011-06-30 21:26:10 +05301063{
Tony Priskdaeec1f2013-04-03 17:57:11 +13001064 const __be32 *val = of_find_property_value_of_size(np, propname,
1065 (sz * sizeof(*out_values)));
Thomas Abrahama3b85362011-06-30 21:26:10 +05301066
Tony Priskdaeec1f2013-04-03 17:57:11 +13001067 if (IS_ERR(val))
1068 return PTR_ERR(val);
Rob Herring0e373632011-07-06 15:42:58 -05001069
Rob Herring0e373632011-07-06 15:42:58 -05001070 while (sz--)
1071 *out_values++ = be32_to_cpup(val++);
Thomas Abrahama3b85362011-06-30 21:26:10 +05301072 return 0;
1073}
Rob Herring0e373632011-07-06 15:42:58 -05001074EXPORT_SYMBOL_GPL(of_property_read_u32_array);
Thomas Abrahama3b85362011-06-30 21:26:10 +05301075
1076/**
Jamie Iles4cd7f7a2011-09-14 20:49:59 +01001077 * of_property_read_u64 - Find and read a 64 bit integer from a property
1078 * @np: device node from which the property value is to be read.
1079 * @propname: name of the property to be searched.
1080 * @out_value: pointer to return value, modified only if return value is 0.
1081 *
1082 * Search for a property in a device node and read a 64-bit value from
1083 * it. Returns 0 on success, -EINVAL if the property does not exist,
1084 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1085 * property data isn't large enough.
1086 *
1087 * The out_value is modified only if a valid u64 value can be decoded.
1088 */
1089int of_property_read_u64(const struct device_node *np, const char *propname,
1090 u64 *out_value)
1091{
Tony Priskdaeec1f2013-04-03 17:57:11 +13001092 const __be32 *val = of_find_property_value_of_size(np, propname,
1093 sizeof(*out_value));
Jamie Iles4cd7f7a2011-09-14 20:49:59 +01001094
Tony Priskdaeec1f2013-04-03 17:57:11 +13001095 if (IS_ERR(val))
1096 return PTR_ERR(val);
1097
1098 *out_value = of_read_number(val, 2);
Jamie Iles4cd7f7a2011-09-14 20:49:59 +01001099 return 0;
1100}
1101EXPORT_SYMBOL_GPL(of_property_read_u64);
1102
1103/**
Thomas Abrahama3b85362011-06-30 21:26:10 +05301104 * of_property_read_string - Find and read a string from a property
1105 * @np: device node from which the property value is to be read.
1106 * @propname: name of the property to be searched.
1107 * @out_string: pointer to null terminated return string, modified only if
1108 * return value is 0.
1109 *
1110 * Search for a property in a device tree node and retrieve a null
1111 * terminated string value (pointer to data, not a copy). Returns 0 on
1112 * success, -EINVAL if the property does not exist, -ENODATA if property
1113 * does not have a value, and -EILSEQ if the string is not null-terminated
1114 * within the length of the property data.
1115 *
1116 * The out_string pointer is modified only if a valid string can be decoded.
1117 */
Jamie Ilesaac285c2011-08-02 15:45:07 +01001118int of_property_read_string(struct device_node *np, const char *propname,
Shawn Guof09bc832011-07-04 09:01:18 +08001119 const char **out_string)
Thomas Abrahama3b85362011-06-30 21:26:10 +05301120{
1121 struct property *prop = of_find_property(np, propname, NULL);
1122 if (!prop)
1123 return -EINVAL;
1124 if (!prop->value)
1125 return -ENODATA;
1126 if (strnlen(prop->value, prop->length) >= prop->length)
1127 return -EILSEQ;
1128 *out_string = prop->value;
1129 return 0;
1130}
1131EXPORT_SYMBOL_GPL(of_property_read_string);
1132
1133/**
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001134 * of_property_read_string_index - Find and read a string from a multiple
1135 * strings property.
1136 * @np: device node from which the property value is to be read.
1137 * @propname: name of the property to be searched.
1138 * @index: index of the string in the list of strings
1139 * @out_string: pointer to null terminated return string, modified only if
1140 * return value is 0.
1141 *
1142 * Search for a property in a device tree node and retrieve a null
1143 * terminated string value (pointer to data, not a copy) in the list of strings
1144 * contained in that property.
1145 * Returns 0 on success, -EINVAL if the property does not exist, -ENODATA if
1146 * property does not have a value, and -EILSEQ if the string is not
1147 * null-terminated within the length of the property data.
1148 *
1149 * The out_string pointer is modified only if a valid string can be decoded.
1150 */
1151int of_property_read_string_index(struct device_node *np, const char *propname,
1152 int index, const char **output)
1153{
1154 struct property *prop = of_find_property(np, propname, NULL);
1155 int i = 0;
1156 size_t l = 0, total = 0;
1157 const char *p;
1158
1159 if (!prop)
1160 return -EINVAL;
1161 if (!prop->value)
1162 return -ENODATA;
1163 if (strnlen(prop->value, prop->length) >= prop->length)
1164 return -EILSEQ;
1165
1166 p = prop->value;
1167
1168 for (i = 0; total < prop->length; total += l, p += l) {
1169 l = strlen(p) + 1;
Benoit Cousson88af7f52011-12-05 15:23:54 +01001170 if (i++ == index) {
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001171 *output = p;
1172 return 0;
1173 }
1174 }
1175 return -ENODATA;
1176}
1177EXPORT_SYMBOL_GPL(of_property_read_string_index);
1178
Grant Likely7aff0fe2011-12-12 09:25:58 -07001179/**
1180 * of_property_match_string() - Find string in a list and return index
1181 * @np: pointer to node containing string list property
1182 * @propname: string list property name
1183 * @string: pointer to string to search for in string list
1184 *
1185 * This function searches a string list property and returns the index
1186 * of a specific string value.
1187 */
1188int of_property_match_string(struct device_node *np, const char *propname,
1189 const char *string)
1190{
1191 struct property *prop = of_find_property(np, propname, NULL);
1192 size_t l;
1193 int i;
1194 const char *p, *end;
1195
1196 if (!prop)
1197 return -EINVAL;
1198 if (!prop->value)
1199 return -ENODATA;
1200
1201 p = prop->value;
1202 end = p + prop->length;
1203
1204 for (i = 0; p < end; i++, p += l) {
1205 l = strlen(p) + 1;
1206 if (p + l > end)
1207 return -EILSEQ;
1208 pr_debug("comparing %s with %s\n", string, p);
1209 if (strcmp(string, p) == 0)
1210 return i; /* Found it; return index */
1211 }
1212 return -ENODATA;
1213}
1214EXPORT_SYMBOL_GPL(of_property_match_string);
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001215
1216/**
1217 * of_property_count_strings - Find and return the number of strings from a
1218 * multiple strings property.
1219 * @np: device node from which the property value is to be read.
1220 * @propname: name of the property to be searched.
1221 *
1222 * Search for a property in a device tree node and retrieve the number of null
1223 * terminated string contain in it. Returns the number of strings on
1224 * success, -EINVAL if the property does not exist, -ENODATA if property
1225 * does not have a value, and -EILSEQ if the string is not null-terminated
1226 * within the length of the property data.
1227 */
1228int of_property_count_strings(struct device_node *np, const char *propname)
1229{
1230 struct property *prop = of_find_property(np, propname, NULL);
1231 int i = 0;
1232 size_t l = 0, total = 0;
1233 const char *p;
1234
1235 if (!prop)
1236 return -EINVAL;
1237 if (!prop->value)
1238 return -ENODATA;
1239 if (strnlen(prop->value, prop->length) >= prop->length)
1240 return -EILSEQ;
1241
1242 p = prop->value;
1243
Benoit Cousson88af7f52011-12-05 15:23:54 +01001244 for (i = 0; total < prop->length; total += l, p += l, i++)
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001245 l = strlen(p) + 1;
Benoit Cousson88af7f52011-12-05 15:23:54 +01001246
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001247 return i;
1248}
1249EXPORT_SYMBOL_GPL(of_property_count_strings);
1250
Grant Likely624cfca2013-10-11 22:05:10 +01001251void of_print_phandle_args(const char *msg, const struct of_phandle_args *args)
1252{
1253 int i;
1254 printk("%s %s", msg, of_node_full_name(args->np));
1255 for (i = 0; i < args->args_count; i++)
1256 printk(i ? ",%08x" : ":%08x", args->args[i]);
1257 printk("\n");
1258}
1259
Grant Likelybd69f732013-02-10 22:57:21 +00001260static int __of_parse_phandle_with_args(const struct device_node *np,
1261 const char *list_name,
Stephen Warren035fd942013-08-14 15:27:10 -06001262 const char *cells_name,
1263 int cell_count, int index,
Grant Likelybd69f732013-02-10 22:57:21 +00001264 struct of_phandle_args *out_args)
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001265{
Grant Likely15c9a0a2011-12-12 09:25:57 -07001266 const __be32 *list, *list_end;
Grant Likely23ce04c2013-02-12 21:21:49 +00001267 int rc = 0, size, cur_index = 0;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001268 uint32_t count = 0;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001269 struct device_node *node = NULL;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001270 phandle phandle;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001271
Grant Likely15c9a0a2011-12-12 09:25:57 -07001272 /* Retrieve the phandle list property */
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001273 list = of_get_property(np, list_name, &size);
Grant Likely15c9a0a2011-12-12 09:25:57 -07001274 if (!list)
Alexandre Courbot1af4c7f2012-06-29 13:57:58 +09001275 return -ENOENT;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001276 list_end = list + size / sizeof(*list);
1277
Grant Likely15c9a0a2011-12-12 09:25:57 -07001278 /* Loop over the phandles until all the requested entry is found */
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001279 while (list < list_end) {
Grant Likely23ce04c2013-02-12 21:21:49 +00001280 rc = -EINVAL;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001281 count = 0;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001282
Grant Likely15c9a0a2011-12-12 09:25:57 -07001283 /*
1284 * If phandle is 0, then it is an empty entry with no
1285 * arguments. Skip forward to the next entry.
1286 */
Grant Likely9a6b2e52010-07-23 01:48:25 -06001287 phandle = be32_to_cpup(list++);
Grant Likely15c9a0a2011-12-12 09:25:57 -07001288 if (phandle) {
1289 /*
1290 * Find the provider node and parse the #*-cells
Stephen Warren91d99422013-08-14 15:27:11 -06001291 * property to determine the argument length.
1292 *
1293 * This is not needed if the cell count is hard-coded
1294 * (i.e. cells_name not set, but cell_count is set),
1295 * except when we're going to return the found node
1296 * below.
Grant Likely15c9a0a2011-12-12 09:25:57 -07001297 */
Stephen Warren91d99422013-08-14 15:27:11 -06001298 if (cells_name || cur_index == index) {
1299 node = of_find_node_by_phandle(phandle);
1300 if (!node) {
1301 pr_err("%s: could not find phandle\n",
1302 np->full_name);
1303 goto err;
1304 }
Grant Likely15c9a0a2011-12-12 09:25:57 -07001305 }
Stephen Warren035fd942013-08-14 15:27:10 -06001306
1307 if (cells_name) {
1308 if (of_property_read_u32(node, cells_name,
1309 &count)) {
1310 pr_err("%s: could not get %s for %s\n",
1311 np->full_name, cells_name,
1312 node->full_name);
1313 goto err;
1314 }
1315 } else {
1316 count = cell_count;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001317 }
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001318
Grant Likely15c9a0a2011-12-12 09:25:57 -07001319 /*
1320 * Make sure that the arguments actually fit in the
1321 * remaining property data length
1322 */
1323 if (list + count > list_end) {
1324 pr_err("%s: arguments longer than property\n",
1325 np->full_name);
Grant Likely23ce04c2013-02-12 21:21:49 +00001326 goto err;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001327 }
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001328 }
1329
Grant Likely15c9a0a2011-12-12 09:25:57 -07001330 /*
1331 * All of the error cases above bail out of the loop, so at
1332 * this point, the parsing is successful. If the requested
1333 * index matches, then fill the out_args structure and return,
1334 * or return -ENOENT for an empty entry.
1335 */
Grant Likely23ce04c2013-02-12 21:21:49 +00001336 rc = -ENOENT;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001337 if (cur_index == index) {
1338 if (!phandle)
Grant Likely23ce04c2013-02-12 21:21:49 +00001339 goto err;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001340
Grant Likely15c9a0a2011-12-12 09:25:57 -07001341 if (out_args) {
1342 int i;
1343 if (WARN_ON(count > MAX_PHANDLE_ARGS))
1344 count = MAX_PHANDLE_ARGS;
1345 out_args->np = node;
1346 out_args->args_count = count;
1347 for (i = 0; i < count; i++)
1348 out_args->args[i] = be32_to_cpup(list++);
Tang Yuantianb855f162013-04-10 11:36:39 +08001349 } else {
1350 of_node_put(node);
Grant Likely15c9a0a2011-12-12 09:25:57 -07001351 }
Grant Likely23ce04c2013-02-12 21:21:49 +00001352
1353 /* Found it! return success */
Grant Likely15c9a0a2011-12-12 09:25:57 -07001354 return 0;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001355 }
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001356
1357 of_node_put(node);
1358 node = NULL;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001359 list += count;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001360 cur_index++;
1361 }
1362
Grant Likely23ce04c2013-02-12 21:21:49 +00001363 /*
1364 * Unlock node before returning result; will be one of:
1365 * -ENOENT : index is for empty phandle
1366 * -EINVAL : parsing error on data
Grant Likelybd69f732013-02-10 22:57:21 +00001367 * [1..n] : Number of phandle (count mode; when index = -1)
Grant Likely23ce04c2013-02-12 21:21:49 +00001368 */
Grant Likelybd69f732013-02-10 22:57:21 +00001369 rc = index < 0 ? cur_index : -ENOENT;
Grant Likely23ce04c2013-02-12 21:21:49 +00001370 err:
Grant Likely15c9a0a2011-12-12 09:25:57 -07001371 if (node)
1372 of_node_put(node);
Grant Likely23ce04c2013-02-12 21:21:49 +00001373 return rc;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001374}
Grant Likelybd69f732013-02-10 22:57:21 +00001375
Stephen Warreneded9dd2013-08-14 15:27:08 -06001376/**
Stephen Warren5fba49e2013-08-14 15:27:09 -06001377 * of_parse_phandle - Resolve a phandle property to a device_node pointer
1378 * @np: Pointer to device node holding phandle property
1379 * @phandle_name: Name of property holding a phandle value
1380 * @index: For properties holding a table of phandles, this is the index into
1381 * the table
1382 *
1383 * Returns the device_node pointer with refcount incremented. Use
1384 * of_node_put() on it when done.
1385 */
1386struct device_node *of_parse_phandle(const struct device_node *np,
1387 const char *phandle_name, int index)
1388{
Stephen Warren91d99422013-08-14 15:27:11 -06001389 struct of_phandle_args args;
Stephen Warren5fba49e2013-08-14 15:27:09 -06001390
Stephen Warren91d99422013-08-14 15:27:11 -06001391 if (index < 0)
Stephen Warren5fba49e2013-08-14 15:27:09 -06001392 return NULL;
1393
Stephen Warren91d99422013-08-14 15:27:11 -06001394 if (__of_parse_phandle_with_args(np, phandle_name, NULL, 0,
1395 index, &args))
1396 return NULL;
1397
1398 return args.np;
Stephen Warren5fba49e2013-08-14 15:27:09 -06001399}
1400EXPORT_SYMBOL(of_parse_phandle);
1401
1402/**
Stephen Warreneded9dd2013-08-14 15:27:08 -06001403 * of_parse_phandle_with_args() - Find a node pointed by phandle in a list
1404 * @np: pointer to a device tree node containing a list
1405 * @list_name: property name that contains a list
1406 * @cells_name: property name that specifies phandles' arguments count
1407 * @index: index of a phandle to parse out
1408 * @out_args: optional pointer to output arguments structure (will be filled)
1409 *
1410 * This function is useful to parse lists of phandles and their arguments.
1411 * Returns 0 on success and fills out_args, on error returns appropriate
1412 * errno value.
1413 *
1414 * Caller is responsible to call of_node_put() on the returned out_args->node
1415 * pointer.
1416 *
1417 * Example:
1418 *
1419 * phandle1: node1 {
1420 * #list-cells = <2>;
1421 * }
1422 *
1423 * phandle2: node2 {
1424 * #list-cells = <1>;
1425 * }
1426 *
1427 * node3 {
1428 * list = <&phandle1 1 2 &phandle2 3>;
1429 * }
1430 *
1431 * To get a device_node of the `node2' node you may call this:
1432 * of_parse_phandle_with_args(node3, "list", "#list-cells", 1, &args);
1433 */
Grant Likelybd69f732013-02-10 22:57:21 +00001434int of_parse_phandle_with_args(const struct device_node *np, const char *list_name,
1435 const char *cells_name, int index,
1436 struct of_phandle_args *out_args)
1437{
1438 if (index < 0)
1439 return -EINVAL;
Stephen Warren035fd942013-08-14 15:27:10 -06001440 return __of_parse_phandle_with_args(np, list_name, cells_name, 0,
1441 index, out_args);
Grant Likelybd69f732013-02-10 22:57:21 +00001442}
Grant Likely15c9a0a2011-12-12 09:25:57 -07001443EXPORT_SYMBOL(of_parse_phandle_with_args);
Grant Likely02af11b2009-11-23 20:16:45 -07001444
Grant Likelybd69f732013-02-10 22:57:21 +00001445/**
Stephen Warren035fd942013-08-14 15:27:10 -06001446 * of_parse_phandle_with_fixed_args() - Find a node pointed by phandle in a list
1447 * @np: pointer to a device tree node containing a list
1448 * @list_name: property name that contains a list
1449 * @cell_count: number of argument cells following the phandle
1450 * @index: index of a phandle to parse out
1451 * @out_args: optional pointer to output arguments structure (will be filled)
1452 *
1453 * This function is useful to parse lists of phandles and their arguments.
1454 * Returns 0 on success and fills out_args, on error returns appropriate
1455 * errno value.
1456 *
1457 * Caller is responsible to call of_node_put() on the returned out_args->node
1458 * pointer.
1459 *
1460 * Example:
1461 *
1462 * phandle1: node1 {
1463 * }
1464 *
1465 * phandle2: node2 {
1466 * }
1467 *
1468 * node3 {
1469 * list = <&phandle1 0 2 &phandle2 2 3>;
1470 * }
1471 *
1472 * To get a device_node of the `node2' node you may call this:
1473 * of_parse_phandle_with_fixed_args(node3, "list", 2, 1, &args);
1474 */
1475int of_parse_phandle_with_fixed_args(const struct device_node *np,
1476 const char *list_name, int cell_count,
1477 int index, struct of_phandle_args *out_args)
1478{
1479 if (index < 0)
1480 return -EINVAL;
1481 return __of_parse_phandle_with_args(np, list_name, NULL, cell_count,
1482 index, out_args);
1483}
1484EXPORT_SYMBOL(of_parse_phandle_with_fixed_args);
1485
1486/**
Grant Likelybd69f732013-02-10 22:57:21 +00001487 * of_count_phandle_with_args() - Find the number of phandles references in a property
1488 * @np: pointer to a device tree node containing a list
1489 * @list_name: property name that contains a list
1490 * @cells_name: property name that specifies phandles' arguments count
1491 *
1492 * Returns the number of phandle + argument tuples within a property. It
1493 * is a typical pattern to encode a list of phandle and variable
1494 * arguments into a single property. The number of arguments is encoded
1495 * by a property in the phandle-target node. For example, a gpios
1496 * property would contain a list of GPIO specifies consisting of a
1497 * phandle and 1 or more arguments. The number of arguments are
1498 * determined by the #gpio-cells property in the node pointed to by the
1499 * phandle.
1500 */
1501int of_count_phandle_with_args(const struct device_node *np, const char *list_name,
1502 const char *cells_name)
1503{
Stephen Warren035fd942013-08-14 15:27:10 -06001504 return __of_parse_phandle_with_args(np, list_name, cells_name, 0, -1,
1505 NULL);
Grant Likelybd69f732013-02-10 22:57:21 +00001506}
1507EXPORT_SYMBOL(of_count_phandle_with_args);
1508
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001509#if defined(CONFIG_OF_DYNAMIC)
1510static int of_property_notify(int action, struct device_node *np,
1511 struct property *prop)
1512{
1513 struct of_prop_reconfig pr;
1514
1515 pr.dn = np;
1516 pr.prop = prop;
1517 return of_reconfig_notify(action, &pr);
1518}
1519#else
1520static int of_property_notify(int action, struct device_node *np,
1521 struct property *prop)
1522{
1523 return 0;
1524}
1525#endif
1526
Grant Likely02af11b2009-11-23 20:16:45 -07001527/**
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001528 * of_add_property - Add a property to a node
Grant Likely02af11b2009-11-23 20:16:45 -07001529 */
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001530int of_add_property(struct device_node *np, struct property *prop)
Grant Likely02af11b2009-11-23 20:16:45 -07001531{
1532 struct property **next;
1533 unsigned long flags;
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001534 int rc;
1535
1536 rc = of_property_notify(OF_RECONFIG_ADD_PROPERTY, np, prop);
1537 if (rc)
1538 return rc;
Grant Likely02af11b2009-11-23 20:16:45 -07001539
1540 prop->next = NULL;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001541 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likely02af11b2009-11-23 20:16:45 -07001542 next = &np->properties;
1543 while (*next) {
1544 if (strcmp(prop->name, (*next)->name) == 0) {
1545 /* duplicate ! don't insert it */
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001546 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Grant Likely02af11b2009-11-23 20:16:45 -07001547 return -1;
1548 }
1549 next = &(*next)->next;
1550 }
1551 *next = prop;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001552 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Grant Likely02af11b2009-11-23 20:16:45 -07001553
1554#ifdef CONFIG_PROC_DEVICETREE
1555 /* try to add to proc as well if it was initialized */
1556 if (np->pde)
1557 proc_device_tree_add_prop(np->pde, prop);
1558#endif /* CONFIG_PROC_DEVICETREE */
1559
1560 return 0;
1561}
1562
1563/**
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001564 * of_remove_property - Remove a property from a node.
Grant Likely02af11b2009-11-23 20:16:45 -07001565 *
1566 * Note that we don't actually remove it, since we have given out
1567 * who-knows-how-many pointers to the data using get-property.
1568 * Instead we just move the property to the "dead properties"
1569 * list, so it won't be found any more.
1570 */
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001571int of_remove_property(struct device_node *np, struct property *prop)
Grant Likely02af11b2009-11-23 20:16:45 -07001572{
1573 struct property **next;
1574 unsigned long flags;
1575 int found = 0;
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001576 int rc;
1577
1578 rc = of_property_notify(OF_RECONFIG_REMOVE_PROPERTY, np, prop);
1579 if (rc)
1580 return rc;
Grant Likely02af11b2009-11-23 20:16:45 -07001581
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001582 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likely02af11b2009-11-23 20:16:45 -07001583 next = &np->properties;
1584 while (*next) {
1585 if (*next == prop) {
1586 /* found the node */
1587 *next = prop->next;
1588 prop->next = np->deadprops;
1589 np->deadprops = prop;
1590 found = 1;
1591 break;
1592 }
1593 next = &(*next)->next;
1594 }
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001595 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Grant Likely02af11b2009-11-23 20:16:45 -07001596
1597 if (!found)
1598 return -ENODEV;
1599
1600#ifdef CONFIG_PROC_DEVICETREE
1601 /* try to remove the proc node as well */
1602 if (np->pde)
1603 proc_device_tree_remove_prop(np->pde, prop);
1604#endif /* CONFIG_PROC_DEVICETREE */
1605
1606 return 0;
1607}
1608
1609/*
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001610 * of_update_property - Update a property in a node, if the property does
Dong Aisheng475d0092012-07-11 15:16:37 +10001611 * not exist, add it.
Grant Likely02af11b2009-11-23 20:16:45 -07001612 *
1613 * Note that we don't actually remove it, since we have given out
1614 * who-knows-how-many pointers to the data using get-property.
1615 * Instead we just move the property to the "dead properties" list,
1616 * and add the new property to the property list
1617 */
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001618int of_update_property(struct device_node *np, struct property *newprop)
Grant Likely02af11b2009-11-23 20:16:45 -07001619{
Dong Aisheng475d0092012-07-11 15:16:37 +10001620 struct property **next, *oldprop;
Grant Likely02af11b2009-11-23 20:16:45 -07001621 unsigned long flags;
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001622 int rc, found = 0;
1623
1624 rc = of_property_notify(OF_RECONFIG_UPDATE_PROPERTY, np, newprop);
1625 if (rc)
1626 return rc;
Grant Likely02af11b2009-11-23 20:16:45 -07001627
Dong Aisheng475d0092012-07-11 15:16:37 +10001628 if (!newprop->name)
1629 return -EINVAL;
1630
1631 oldprop = of_find_property(np, newprop->name, NULL);
1632 if (!oldprop)
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001633 return of_add_property(np, newprop);
Dong Aisheng475d0092012-07-11 15:16:37 +10001634
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001635 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likely02af11b2009-11-23 20:16:45 -07001636 next = &np->properties;
1637 while (*next) {
1638 if (*next == oldprop) {
1639 /* found the node */
1640 newprop->next = oldprop->next;
1641 *next = newprop;
1642 oldprop->next = np->deadprops;
1643 np->deadprops = oldprop;
1644 found = 1;
1645 break;
1646 }
1647 next = &(*next)->next;
1648 }
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001649 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Grant Likely02af11b2009-11-23 20:16:45 -07001650
1651 if (!found)
1652 return -ENODEV;
1653
1654#ifdef CONFIG_PROC_DEVICETREE
1655 /* try to add to proc as well if it was initialized */
1656 if (np->pde)
1657 proc_device_tree_update_prop(np->pde, newprop, oldprop);
1658#endif /* CONFIG_PROC_DEVICETREE */
1659
1660 return 0;
1661}
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001662
1663#if defined(CONFIG_OF_DYNAMIC)
1664/*
1665 * Support for dynamic device trees.
1666 *
1667 * On some platforms, the device tree can be manipulated at runtime.
1668 * The routines in this section support adding, removing and changing
1669 * device tree nodes.
1670 */
1671
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001672static BLOCKING_NOTIFIER_HEAD(of_reconfig_chain);
1673
1674int of_reconfig_notifier_register(struct notifier_block *nb)
1675{
1676 return blocking_notifier_chain_register(&of_reconfig_chain, nb);
1677}
Nathan Fontenot1a9bd452012-11-28 09:42:26 +00001678EXPORT_SYMBOL_GPL(of_reconfig_notifier_register);
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001679
1680int of_reconfig_notifier_unregister(struct notifier_block *nb)
1681{
1682 return blocking_notifier_chain_unregister(&of_reconfig_chain, nb);
1683}
Nathan Fontenot1a9bd452012-11-28 09:42:26 +00001684EXPORT_SYMBOL_GPL(of_reconfig_notifier_unregister);
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001685
1686int of_reconfig_notify(unsigned long action, void *p)
1687{
1688 int rc;
1689
1690 rc = blocking_notifier_call_chain(&of_reconfig_chain, action, p);
1691 return notifier_to_errno(rc);
1692}
1693
Nathan Fontenote81b3292012-10-02 16:55:01 +00001694#ifdef CONFIG_PROC_DEVICETREE
1695static void of_add_proc_dt_entry(struct device_node *dn)
1696{
1697 struct proc_dir_entry *ent;
1698
1699 ent = proc_mkdir(strrchr(dn->full_name, '/') + 1, dn->parent->pde);
1700 if (ent)
1701 proc_device_tree_add_node(dn, ent);
1702}
1703#else
1704static void of_add_proc_dt_entry(struct device_node *dn)
1705{
1706 return;
1707}
1708#endif
1709
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001710/**
1711 * of_attach_node - Plug a device node into the tree and global list.
1712 */
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001713int of_attach_node(struct device_node *np)
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001714{
1715 unsigned long flags;
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001716 int rc;
1717
1718 rc = of_reconfig_notify(OF_RECONFIG_ATTACH_NODE, np);
1719 if (rc)
1720 return rc;
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001721
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001722 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001723 np->sibling = np->parent->child;
Randy Dunlap465aac62012-11-30 10:01:51 +00001724 np->allnext = of_allnodes;
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001725 np->parent->child = np;
Randy Dunlap465aac62012-11-30 10:01:51 +00001726 of_allnodes = np;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001727 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Nathan Fontenote81b3292012-10-02 16:55:01 +00001728
1729 of_add_proc_dt_entry(np);
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001730 return 0;
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001731}
1732
Nathan Fontenote81b3292012-10-02 16:55:01 +00001733#ifdef CONFIG_PROC_DEVICETREE
1734static void of_remove_proc_dt_entry(struct device_node *dn)
1735{
David Howellsa8ca16e2013-04-12 17:27:28 +01001736 proc_remove(dn->pde);
Nathan Fontenote81b3292012-10-02 16:55:01 +00001737}
1738#else
1739static void of_remove_proc_dt_entry(struct device_node *dn)
1740{
1741 return;
1742}
1743#endif
1744
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001745/**
1746 * of_detach_node - "Unplug" a node from the device tree.
1747 *
1748 * The caller must hold a reference to the node. The memory associated with
1749 * the node is not freed until its refcount goes to zero.
1750 */
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001751int of_detach_node(struct device_node *np)
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001752{
1753 struct device_node *parent;
1754 unsigned long flags;
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001755 int rc = 0;
1756
1757 rc = of_reconfig_notify(OF_RECONFIG_DETACH_NODE, np);
1758 if (rc)
1759 return rc;
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001760
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001761 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001762
Nathan Fontenote81b3292012-10-02 16:55:01 +00001763 if (of_node_check_flag(np, OF_DETACHED)) {
1764 /* someone already detached it */
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001765 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001766 return rc;
Nathan Fontenote81b3292012-10-02 16:55:01 +00001767 }
1768
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001769 parent = np->parent;
Nathan Fontenote81b3292012-10-02 16:55:01 +00001770 if (!parent) {
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001771 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001772 return rc;
Nathan Fontenote81b3292012-10-02 16:55:01 +00001773 }
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001774
Randy Dunlap465aac62012-11-30 10:01:51 +00001775 if (of_allnodes == np)
1776 of_allnodes = np->allnext;
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001777 else {
1778 struct device_node *prev;
Randy Dunlap465aac62012-11-30 10:01:51 +00001779 for (prev = of_allnodes;
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001780 prev->allnext != np;
1781 prev = prev->allnext)
1782 ;
1783 prev->allnext = np->allnext;
1784 }
1785
1786 if (parent->child == np)
1787 parent->child = np->sibling;
1788 else {
1789 struct device_node *prevsib;
1790 for (prevsib = np->parent->child;
1791 prevsib->sibling != np;
1792 prevsib = prevsib->sibling)
1793 ;
1794 prevsib->sibling = np->sibling;
1795 }
1796
1797 of_node_set_flag(np, OF_DETACHED);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001798 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Nathan Fontenote81b3292012-10-02 16:55:01 +00001799
1800 of_remove_proc_dt_entry(np);
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001801 return rc;
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001802}
1803#endif /* defined(CONFIG_OF_DYNAMIC) */
1804
Shawn Guo611cad72011-08-15 15:28:14 +08001805static void of_alias_add(struct alias_prop *ap, struct device_node *np,
1806 int id, const char *stem, int stem_len)
1807{
1808 ap->np = np;
1809 ap->id = id;
1810 strncpy(ap->stem, stem, stem_len);
1811 ap->stem[stem_len] = 0;
1812 list_add_tail(&ap->link, &aliases_lookup);
1813 pr_debug("adding DT alias:%s: stem=%s id=%i node=%s\n",
Grant Likely74a7f082012-06-15 11:50:25 -06001814 ap->alias, ap->stem, ap->id, of_node_full_name(np));
Shawn Guo611cad72011-08-15 15:28:14 +08001815}
1816
1817/**
1818 * of_alias_scan - Scan all properties of 'aliases' node
1819 *
1820 * The function scans all the properties of 'aliases' node and populate
1821 * the the global lookup table with the properties. It returns the
1822 * number of alias_prop found, or error code in error case.
1823 *
1824 * @dt_alloc: An allocator that provides a virtual address to memory
1825 * for the resulting tree
1826 */
1827void of_alias_scan(void * (*dt_alloc)(u64 size, u64 align))
1828{
1829 struct property *pp;
1830
1831 of_chosen = of_find_node_by_path("/chosen");
1832 if (of_chosen == NULL)
1833 of_chosen = of_find_node_by_path("/chosen@0");
Sascha Hauer5c19e952013-08-05 14:40:44 +02001834
1835 if (of_chosen) {
1836 const char *name;
1837
1838 name = of_get_property(of_chosen, "linux,stdout-path", NULL);
1839 if (name)
1840 of_stdout = of_find_node_by_path(name);
1841 }
1842
Shawn Guo611cad72011-08-15 15:28:14 +08001843 of_aliases = of_find_node_by_path("/aliases");
1844 if (!of_aliases)
1845 return;
1846
Dong Aisheng8af0da92011-12-22 20:19:24 +08001847 for_each_property_of_node(of_aliases, pp) {
Shawn Guo611cad72011-08-15 15:28:14 +08001848 const char *start = pp->name;
1849 const char *end = start + strlen(start);
1850 struct device_node *np;
1851 struct alias_prop *ap;
1852 int id, len;
1853
1854 /* Skip those we do not want to proceed */
1855 if (!strcmp(pp->name, "name") ||
1856 !strcmp(pp->name, "phandle") ||
1857 !strcmp(pp->name, "linux,phandle"))
1858 continue;
1859
1860 np = of_find_node_by_path(pp->value);
1861 if (!np)
1862 continue;
1863
1864 /* walk the alias backwards to extract the id and work out
1865 * the 'stem' string */
1866 while (isdigit(*(end-1)) && end > start)
1867 end--;
1868 len = end - start;
1869
1870 if (kstrtoint(end, 10, &id) < 0)
1871 continue;
1872
1873 /* Allocate an alias_prop with enough space for the stem */
1874 ap = dt_alloc(sizeof(*ap) + len + 1, 4);
1875 if (!ap)
1876 continue;
Grant Likely0640332e2013-08-28 21:24:17 +01001877 memset(ap, 0, sizeof(*ap) + len + 1);
Shawn Guo611cad72011-08-15 15:28:14 +08001878 ap->alias = start;
1879 of_alias_add(ap, np, id, start, len);
1880 }
1881}
1882
1883/**
1884 * of_alias_get_id - Get alias id for the given device_node
1885 * @np: Pointer to the given device_node
1886 * @stem: Alias stem of the given device_node
1887 *
1888 * The function travels the lookup table to get alias id for the given
1889 * device_node and alias stem. It returns the alias id if find it.
1890 */
1891int of_alias_get_id(struct device_node *np, const char *stem)
1892{
1893 struct alias_prop *app;
1894 int id = -ENODEV;
1895
1896 mutex_lock(&of_aliases_mutex);
1897 list_for_each_entry(app, &aliases_lookup, link) {
1898 if (strcmp(app->stem, stem) != 0)
1899 continue;
1900
1901 if (np == app->np) {
1902 id = app->id;
1903 break;
1904 }
1905 }
1906 mutex_unlock(&of_aliases_mutex);
1907
1908 return id;
1909}
1910EXPORT_SYMBOL_GPL(of_alias_get_id);
Stephen Warrenc541adc2012-04-04 09:27:46 -06001911
1912const __be32 *of_prop_next_u32(struct property *prop, const __be32 *cur,
1913 u32 *pu)
1914{
1915 const void *curv = cur;
1916
1917 if (!prop)
1918 return NULL;
1919
1920 if (!cur) {
1921 curv = prop->value;
1922 goto out_val;
1923 }
1924
1925 curv += sizeof(*cur);
1926 if (curv >= prop->value + prop->length)
1927 return NULL;
1928
1929out_val:
1930 *pu = be32_to_cpup(curv);
1931 return curv;
1932}
1933EXPORT_SYMBOL_GPL(of_prop_next_u32);
1934
1935const char *of_prop_next_string(struct property *prop, const char *cur)
1936{
1937 const void *curv = cur;
1938
1939 if (!prop)
1940 return NULL;
1941
1942 if (!cur)
1943 return prop->value;
1944
1945 curv += strlen(cur) + 1;
1946 if (curv >= prop->value + prop->length)
1947 return NULL;
1948
1949 return curv;
1950}
1951EXPORT_SYMBOL_GPL(of_prop_next_string);
Sascha Hauer5c19e952013-08-05 14:40:44 +02001952
1953/**
1954 * of_device_is_stdout_path - check if a device node matches the
1955 * linux,stdout-path property
1956 *
1957 * Check if this device node matches the linux,stdout-path property
1958 * in the chosen node. return true if yes, false otherwise.
1959 */
1960int of_device_is_stdout_path(struct device_node *dn)
1961{
1962 if (!of_stdout)
1963 return false;
1964
1965 return of_stdout == dn;
1966}
1967EXPORT_SYMBOL_GPL(of_device_is_stdout_path);
Sudeep KarkadaNageshaa3e31b42013-09-18 11:53:05 +01001968
1969/**
1970 * of_find_next_cache_node - Find a node's subsidiary cache
1971 * @np: node of type "cpu" or "cache"
1972 *
1973 * Returns a node pointer with refcount incremented, use
1974 * of_node_put() on it when done. Caller should hold a reference
1975 * to np.
1976 */
1977struct device_node *of_find_next_cache_node(const struct device_node *np)
1978{
1979 struct device_node *child;
1980 const phandle *handle;
1981
1982 handle = of_get_property(np, "l2-cache", NULL);
1983 if (!handle)
1984 handle = of_get_property(np, "next-level-cache", NULL);
1985
1986 if (handle)
1987 return of_find_node_by_phandle(be32_to_cpup(handle));
1988
1989 /* OF on pmac has nodes instead of properties named "l2-cache"
1990 * beneath CPU nodes.
1991 */
1992 if (!strcmp(np->type, "cpu"))
1993 for_each_child_of_node(np, child)
1994 if (!strcmp(child->type, "cache"))
1995 return child;
1996
1997 return NULL;
1998}