blob: 4627e0acf4ad20695e2d1e69ca0b3ace6d5b52e0 [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 */
Grant Likely3482f2c2014-03-27 17:18:55 -070020#include <linux/console.h>
Shawn Guo611cad72011-08-15 15:28:14 +080021#include <linux/ctype.h>
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +010022#include <linux/cpu.h>
Stephen Rothwell97e873e2007-05-01 16:26:07 +100023#include <linux/module.h>
24#include <linux/of.h>
Philipp Zabelfd9fdb72014-02-10 22:01:48 +010025#include <linux/of_graph.h>
Stephen Rothwell581b6052007-04-24 16:46:53 +100026#include <linux/spinlock.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Grant Likely75b57ec2014-02-20 18:02:11 +000028#include <linux/string.h>
Jeremy Kerra9f2f632010-02-01 21:34:14 -070029#include <linux/proc_fs.h>
Stephen Rothwell581b6052007-04-24 16:46:53 +100030
Stepan Moskovchenkoced4eec2012-12-06 14:55:41 -080031#include "of_private.h"
Shawn Guo611cad72011-08-15 15:28:14 +080032
Stepan Moskovchenkoced4eec2012-12-06 14:55:41 -080033LIST_HEAD(aliases_lookup);
Shawn Guo611cad72011-08-15 15:28:14 +080034
Grant Likely5063e252014-10-03 16:28:27 +010035struct device_node *of_root;
36EXPORT_SYMBOL(of_root);
Grant Likelyfc0bdae2010-02-14 07:13:55 -070037struct device_node *of_chosen;
Shawn Guo611cad72011-08-15 15:28:14 +080038struct device_node *of_aliases;
Grant Likelya752ee52014-03-28 08:12:18 -070039struct device_node *of_stdout;
Shawn Guo611cad72011-08-15 15:28:14 +080040
Grant Likely8a2b22a2014-07-23 17:05:06 -060041struct kset *of_kset;
Grant Likely75b57ec2014-02-20 18:02:11 +000042
43/*
Grant Likely8a2b22a2014-07-23 17:05:06 -060044 * Used to protect the of_aliases, to hold off addition of nodes to sysfs.
45 * This mutex must be held whenever modifications are being made to the
46 * device tree. The of_{attach,detach}_node() and
47 * of_{add,remove,update}_property() helpers make sure this happens.
Grant Likely75b57ec2014-02-20 18:02:11 +000048 */
Pantelis Antoniouc05aba22014-07-04 19:58:03 +030049DEFINE_MUTEX(of_mutex);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +100050
Grant Likely5063e252014-10-03 16:28:27 +010051/* use when traversing tree through the child, sibling,
Stephen Rothwell581b6052007-04-24 16:46:53 +100052 * or parent members of struct device_node.
53 */
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -050054DEFINE_RAW_SPINLOCK(devtree_lock);
Stephen Rothwell97e873e2007-05-01 16:26:07 +100055
56int of_n_addr_cells(struct device_node *np)
57{
Jeremy Kerra9fadee2010-10-10 21:24:10 -060058 const __be32 *ip;
Stephen Rothwell97e873e2007-05-01 16:26:07 +100059
60 do {
61 if (np->parent)
62 np = np->parent;
63 ip = of_get_property(np, "#address-cells", NULL);
64 if (ip)
Jeremy Kerr33714882010-01-30 01:45:26 -070065 return be32_to_cpup(ip);
Stephen Rothwell97e873e2007-05-01 16:26:07 +100066 } while (np->parent);
67 /* No #address-cells property for the root node */
68 return OF_ROOT_NODE_ADDR_CELLS_DEFAULT;
69}
70EXPORT_SYMBOL(of_n_addr_cells);
71
72int of_n_size_cells(struct device_node *np)
73{
Jeremy Kerra9fadee2010-10-10 21:24:10 -060074 const __be32 *ip;
Stephen Rothwell97e873e2007-05-01 16:26:07 +100075
76 do {
77 if (np->parent)
78 np = np->parent;
79 ip = of_get_property(np, "#size-cells", NULL);
80 if (ip)
Jeremy Kerr33714882010-01-30 01:45:26 -070081 return be32_to_cpup(ip);
Stephen Rothwell97e873e2007-05-01 16:26:07 +100082 } while (np->parent);
83 /* No #size-cells property for the root node */
84 return OF_ROOT_NODE_SIZE_CELLS_DEFAULT;
85}
86EXPORT_SYMBOL(of_n_size_cells);
87
Rob Herring0c3f0612013-09-17 10:42:50 -050088#ifdef CONFIG_NUMA
89int __weak of_node_to_nid(struct device_node *np)
90{
91 return numa_node_id();
92}
93#endif
94
Grant Likely6afc0dc2014-06-26 15:40:48 +010095#ifndef CONFIG_OF_DYNAMIC
Grant Likely75b57ec2014-02-20 18:02:11 +000096static void of_node_release(struct kobject *kobj)
97{
98 /* Without CONFIG_OF_DYNAMIC, no nodes gets freed */
99}
Grant Likely0f22dd32012-02-15 20:38:40 -0700100#endif /* CONFIG_OF_DYNAMIC */
Grant Likely923f7e32010-01-28 13:52:53 -0700101
Grant Likely75b57ec2014-02-20 18:02:11 +0000102struct kobj_type of_node_ktype = {
103 .release = of_node_release,
104};
105
106static ssize_t of_node_property_read(struct file *filp, struct kobject *kobj,
107 struct bin_attribute *bin_attr, char *buf,
108 loff_t offset, size_t count)
109{
110 struct property *pp = container_of(bin_attr, struct property, attr);
111 return memory_read_from_buffer(buf, count, &offset, pp->value, pp->length);
112}
113
114static const char *safe_name(struct kobject *kobj, const char *orig_name)
115{
116 const char *name = orig_name;
117 struct kernfs_node *kn;
118 int i = 0;
119
120 /* don't be a hero. After 16 tries give up */
121 while (i < 16 && (kn = sysfs_get_dirent(kobj->sd, name))) {
122 sysfs_put(kn);
123 if (name != orig_name)
124 kfree(name);
125 name = kasprintf(GFP_KERNEL, "%s#%i", orig_name, ++i);
126 }
127
128 if (name != orig_name)
129 pr_warn("device-tree: Duplicate name in %s, renamed to \"%s\"\n",
130 kobject_name(kobj), name);
131 return name;
132}
133
Grant Likely8a2b22a2014-07-23 17:05:06 -0600134int __of_add_property_sysfs(struct device_node *np, struct property *pp)
Grant Likely75b57ec2014-02-20 18:02:11 +0000135{
136 int rc;
137
138 /* Important: Don't leak passwords */
139 bool secure = strncmp(pp->name, "security-", 9) == 0;
140
Gaurav Minochaef69d742014-09-05 09:56:13 -0700141 if (!IS_ENABLED(CONFIG_SYSFS))
142 return 0;
143
Grant Likely8a2b22a2014-07-23 17:05:06 -0600144 if (!of_kset || !of_node_is_attached(np))
145 return 0;
146
Grant Likely75b57ec2014-02-20 18:02:11 +0000147 sysfs_bin_attr_init(&pp->attr);
148 pp->attr.attr.name = safe_name(&np->kobj, pp->name);
149 pp->attr.attr.mode = secure ? S_IRUSR : S_IRUGO;
150 pp->attr.size = secure ? 0 : pp->length;
151 pp->attr.read = of_node_property_read;
152
153 rc = sysfs_create_bin_file(&np->kobj, &pp->attr);
154 WARN(rc, "error adding attribute %s to node %s\n", pp->name, np->full_name);
155 return rc;
156}
157
Grant Likely8a2b22a2014-07-23 17:05:06 -0600158int __of_attach_node_sysfs(struct device_node *np)
Grant Likely75b57ec2014-02-20 18:02:11 +0000159{
160 const char *name;
161 struct property *pp;
162 int rc;
163
Gaurav Minochaef69d742014-09-05 09:56:13 -0700164 if (!IS_ENABLED(CONFIG_SYSFS))
165 return 0;
166
Grant Likely8a2b22a2014-07-23 17:05:06 -0600167 if (!of_kset)
168 return 0;
169
Grant Likely75b57ec2014-02-20 18:02:11 +0000170 np->kobj.kset = of_kset;
171 if (!np->parent) {
172 /* Nodes without parents are new top level trees */
Kees Cook28d3ee42014-06-10 09:57:00 -0700173 rc = kobject_add(&np->kobj, NULL, "%s",
174 safe_name(&of_kset->kobj, "base"));
Grant Likely75b57ec2014-02-20 18:02:11 +0000175 } else {
176 name = safe_name(&np->parent->kobj, kbasename(np->full_name));
177 if (!name || !name[0])
178 return -EINVAL;
179
180 rc = kobject_add(&np->kobj, &np->parent->kobj, "%s", name);
181 }
182 if (rc)
183 return rc;
184
185 for_each_property_of_node(np, pp)
186 __of_add_property_sysfs(np, pp);
187
188 return 0;
189}
190
Grant Likely75b57ec2014-02-20 18:02:11 +0000191static int __init of_init(void)
192{
193 struct device_node *np;
194
195 /* Create the kset, and register existing nodes */
Pantelis Antoniouc05aba22014-07-04 19:58:03 +0300196 mutex_lock(&of_mutex);
Grant Likely75b57ec2014-02-20 18:02:11 +0000197 of_kset = kset_create_and_add("devicetree", NULL, firmware_kobj);
198 if (!of_kset) {
Pantelis Antoniouc05aba22014-07-04 19:58:03 +0300199 mutex_unlock(&of_mutex);
Grant Likely75b57ec2014-02-20 18:02:11 +0000200 return -ENOMEM;
201 }
202 for_each_of_allnodes(np)
Grant Likely8a2b22a2014-07-23 17:05:06 -0600203 __of_attach_node_sysfs(np);
Pantelis Antoniouc05aba22014-07-04 19:58:03 +0300204 mutex_unlock(&of_mutex);
Grant Likely75b57ec2014-02-20 18:02:11 +0000205
Grant Likely83570412012-11-06 21:03:27 +0000206 /* Symlink in /proc as required by userspace ABI */
Grant Likely5063e252014-10-03 16:28:27 +0100207 if (of_root)
Grant Likely75b57ec2014-02-20 18:02:11 +0000208 proc_symlink("device-tree", NULL, "/sys/firmware/devicetree/base");
Grant Likely75b57ec2014-02-20 18:02:11 +0000209
210 return 0;
211}
212core_initcall(of_init);
213
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500214static struct property *__of_find_property(const struct device_node *np,
215 const char *name, int *lenp)
Stephen Rothwell581b6052007-04-24 16:46:53 +1000216{
217 struct property *pp;
218
Timur Tabi64e45662008-05-08 05:19:59 +1000219 if (!np)
220 return NULL;
221
Sachin Kamata3a7cab2012-06-27 09:44:45 +0530222 for (pp = np->properties; pp; pp = pp->next) {
Stephen Rothwell581b6052007-04-24 16:46:53 +1000223 if (of_prop_cmp(pp->name, name) == 0) {
Sachin Kamata3a7cab2012-06-27 09:44:45 +0530224 if (lenp)
Stephen Rothwell581b6052007-04-24 16:46:53 +1000225 *lenp = pp->length;
226 break;
227 }
228 }
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500229
230 return pp;
231}
232
233struct property *of_find_property(const struct device_node *np,
234 const char *name,
235 int *lenp)
236{
237 struct property *pp;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500238 unsigned long flags;
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500239
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500240 raw_spin_lock_irqsave(&devtree_lock, flags);
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500241 pp = __of_find_property(np, name, lenp);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500242 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwell581b6052007-04-24 16:46:53 +1000243
244 return pp;
245}
246EXPORT_SYMBOL(of_find_property);
247
Grant Likely5063e252014-10-03 16:28:27 +0100248struct device_node *__of_find_all_nodes(struct device_node *prev)
249{
250 struct device_node *np;
251 if (!prev) {
252 np = of_root;
253 } else if (prev->child) {
254 np = prev->child;
255 } else {
256 /* Walk back up looking for a sibling, or the end of the structure */
257 np = prev;
258 while (np->parent && !np->sibling)
259 np = np->parent;
260 np = np->sibling; /* Might be null at the end of the tree */
261 }
262 return np;
263}
264
Grant Likelye91edcf2009-10-15 10:58:09 -0600265/**
266 * of_find_all_nodes - Get next node in global list
267 * @prev: Previous node or NULL to start iteration
268 * of_node_put() will be called on it
269 *
270 * Returns a node pointer with refcount incremented, use
271 * of_node_put() on it when done.
272 */
273struct device_node *of_find_all_nodes(struct device_node *prev)
274{
275 struct device_node *np;
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000276 unsigned long flags;
Grant Likelye91edcf2009-10-15 10:58:09 -0600277
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000278 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likely5063e252014-10-03 16:28:27 +0100279 np = __of_find_all_nodes(prev);
280 of_node_get(np);
Grant Likelye91edcf2009-10-15 10:58:09 -0600281 of_node_put(prev);
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000282 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Grant Likelye91edcf2009-10-15 10:58:09 -0600283 return np;
284}
285EXPORT_SYMBOL(of_find_all_nodes);
286
Stephen Rothwell97e873e2007-05-01 16:26:07 +1000287/*
288 * Find a property with a given name for a given node
289 * and return the value.
290 */
Grant Likelya25095d2014-07-15 23:25:43 -0600291const void *__of_get_property(const struct device_node *np,
292 const char *name, int *lenp)
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500293{
294 struct property *pp = __of_find_property(np, name, lenp);
295
296 return pp ? pp->value : NULL;
297}
298
299/*
300 * Find a property with a given name for a given node
301 * and return the value.
302 */
Stephen Rothwell97e873e2007-05-01 16:26:07 +1000303const void *of_get_property(const struct device_node *np, const char *name,
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500304 int *lenp)
Stephen Rothwell97e873e2007-05-01 16:26:07 +1000305{
306 struct property *pp = of_find_property(np, name, lenp);
307
308 return pp ? pp->value : NULL;
309}
310EXPORT_SYMBOL(of_get_property);
Stephen Rothwell0081cbc2007-05-01 16:29:19 +1000311
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100312/*
313 * arch_match_cpu_phys_id - Match the given logical CPU and physical id
314 *
315 * @cpu: logical cpu index of a core/thread
316 * @phys_id: physical identifier of a core/thread
317 *
318 * CPU logical to physical index mapping is architecture specific.
319 * However this __weak function provides a default match of physical
320 * id to logical cpu index. phys_id provided here is usually values read
321 * from the device tree which must match the hardware internal registers.
322 *
323 * Returns true if the physical identifier and the logical cpu index
324 * correspond to the same core/thread, false otherwise.
325 */
326bool __weak arch_match_cpu_phys_id(int cpu, u64 phys_id)
327{
328 return (u32)phys_id == cpu;
329}
330
331/**
332 * Checks if the given "prop_name" property holds the physical id of the
333 * core/thread corresponding to the logical cpu 'cpu'. If 'thread' is not
334 * NULL, local thread number within the core is returned in it.
335 */
336static bool __of_find_n_match_cpu_property(struct device_node *cpun,
337 const char *prop_name, int cpu, unsigned int *thread)
338{
339 const __be32 *cell;
340 int ac, prop_len, tid;
341 u64 hwid;
342
343 ac = of_n_addr_cells(cpun);
344 cell = of_get_property(cpun, prop_name, &prop_len);
Grant Likelyf3cea452013-10-04 17:24:26 +0100345 if (!cell || !ac)
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100346 return false;
Grant Likelyf3cea452013-10-04 17:24:26 +0100347 prop_len /= sizeof(*cell) * ac;
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100348 for (tid = 0; tid < prop_len; tid++) {
349 hwid = of_read_number(cell, ac);
350 if (arch_match_cpu_phys_id(cpu, hwid)) {
351 if (thread)
352 *thread = tid;
353 return true;
354 }
355 cell += ac;
356 }
357 return false;
358}
359
David Millerd1cb9d12013-10-03 17:24:51 -0400360/*
361 * arch_find_n_match_cpu_physical_id - See if the given device node is
362 * for the cpu corresponding to logical cpu 'cpu'. Return true if so,
363 * else false. If 'thread' is non-NULL, the local thread number within the
364 * core is returned in it.
365 */
366bool __weak arch_find_n_match_cpu_physical_id(struct device_node *cpun,
367 int cpu, unsigned int *thread)
368{
369 /* Check for non-standard "ibm,ppc-interrupt-server#s" property
370 * for thread ids on PowerPC. If it doesn't exist fallback to
371 * standard "reg" property.
372 */
373 if (IS_ENABLED(CONFIG_PPC) &&
374 __of_find_n_match_cpu_property(cpun,
375 "ibm,ppc-interrupt-server#s",
376 cpu, thread))
377 return true;
378
379 if (__of_find_n_match_cpu_property(cpun, "reg", cpu, thread))
380 return true;
381
382 return false;
383}
384
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100385/**
386 * of_get_cpu_node - Get device node associated with the given logical CPU
387 *
388 * @cpu: CPU number(logical index) for which device node is required
389 * @thread: if not NULL, local thread number within the physical core is
390 * returned
391 *
392 * The main purpose of this function is to retrieve the device node for the
393 * given logical CPU index. It should be used to initialize the of_node in
394 * cpu device. Once of_node in cpu device is populated, all the further
395 * references can use that instead.
396 *
397 * CPU logical to physical index mapping is architecture specific and is built
398 * before booting secondary cores. This function uses arch_match_cpu_phys_id
399 * which can be overridden by architecture specific implementation.
400 *
401 * Returns a node pointer for the logical cpu if found, else NULL.
402 */
403struct device_node *of_get_cpu_node(int cpu, unsigned int *thread)
404{
David Millerd1cb9d12013-10-03 17:24:51 -0400405 struct device_node *cpun;
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100406
David Millerd1cb9d12013-10-03 17:24:51 -0400407 for_each_node_by_type(cpun, "cpu") {
408 if (arch_find_n_match_cpu_physical_id(cpun, cpu, thread))
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100409 return cpun;
410 }
411 return NULL;
412}
413EXPORT_SYMBOL(of_get_cpu_node);
414
Kevin Hao215a14c2014-02-19 16:15:45 +0800415/**
416 * __of_device_is_compatible() - Check if the node matches given constraints
417 * @device: pointer to node
418 * @compat: required compatible string, NULL or "" for any match
419 * @type: required device_type value, NULL or "" for any match
420 * @name: required node name, NULL or "" for any match
421 *
422 * Checks if the given @compat, @type and @name strings match the
423 * properties of the given @device. A constraints can be skipped by
424 * passing NULL or an empty string as the constraint.
425 *
426 * Returns 0 for no match, and a positive integer on match. The return
427 * value is a relative score with larger values indicating better
428 * matches. The score is weighted for the most specific compatible value
429 * to get the highest score. Matching type is next, followed by matching
430 * name. Practically speaking, this results in the following priority
431 * order for matches:
432 *
433 * 1. specific compatible && type && name
434 * 2. specific compatible && type
435 * 3. specific compatible && name
436 * 4. specific compatible
437 * 5. general compatible && type && name
438 * 6. general compatible && type
439 * 7. general compatible && name
440 * 8. general compatible
441 * 9. type && name
442 * 10. type
443 * 11. name
Stephen Rothwell0081cbc2007-05-01 16:29:19 +1000444 */
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500445static int __of_device_is_compatible(const struct device_node *device,
Kevin Hao215a14c2014-02-19 16:15:45 +0800446 const char *compat, const char *type, const char *name)
Stephen Rothwell0081cbc2007-05-01 16:29:19 +1000447{
Kevin Hao215a14c2014-02-19 16:15:45 +0800448 struct property *prop;
449 const char *cp;
450 int index = 0, score = 0;
Stephen Rothwell0081cbc2007-05-01 16:29:19 +1000451
Kevin Hao215a14c2014-02-19 16:15:45 +0800452 /* Compatible match has highest priority */
453 if (compat && compat[0]) {
454 prop = __of_find_property(device, "compatible", NULL);
455 for (cp = of_prop_next_string(prop, NULL); cp;
456 cp = of_prop_next_string(prop, cp), index++) {
457 if (of_compat_cmp(cp, compat, strlen(compat)) == 0) {
458 score = INT_MAX/2 - (index << 2);
459 break;
460 }
461 }
462 if (!score)
463 return 0;
Stephen Rothwell0081cbc2007-05-01 16:29:19 +1000464 }
465
Kevin Hao215a14c2014-02-19 16:15:45 +0800466 /* Matching type is better than matching name */
467 if (type && type[0]) {
468 if (!device->type || of_node_cmp(type, device->type))
469 return 0;
470 score += 2;
471 }
472
473 /* Matching name is a bit better than not */
474 if (name && name[0]) {
475 if (!device->name || of_node_cmp(name, device->name))
476 return 0;
477 score++;
478 }
479
480 return score;
Stephen Rothwell0081cbc2007-05-01 16:29:19 +1000481}
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500482
483/** Checks if the given "compat" string matches one of the strings in
484 * the device's "compatible" property
485 */
486int of_device_is_compatible(const struct device_node *device,
487 const char *compat)
488{
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500489 unsigned long flags;
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500490 int res;
491
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500492 raw_spin_lock_irqsave(&devtree_lock, flags);
Kevin Hao215a14c2014-02-19 16:15:45 +0800493 res = __of_device_is_compatible(device, compat, NULL, NULL);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500494 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500495 return res;
496}
Stephen Rothwell0081cbc2007-05-01 16:29:19 +1000497EXPORT_SYMBOL(of_device_is_compatible);
Stephen Rothwelle679c5f2007-04-24 17:16:16 +1000498
499/**
Grant Likely71a157e2010-02-01 21:34:14 -0700500 * of_machine_is_compatible - Test root of device tree for a given compatible value
Grant Likely1f43cfb2010-01-28 13:47:25 -0700501 * @compat: compatible string to look for in root node's compatible property.
502 *
Kevin Cernekee25c7a1d2014-11-12 12:54:00 -0800503 * Returns a positive integer if the root node has the given value in its
Grant Likely1f43cfb2010-01-28 13:47:25 -0700504 * compatible property.
505 */
Grant Likely71a157e2010-02-01 21:34:14 -0700506int of_machine_is_compatible(const char *compat)
Grant Likely1f43cfb2010-01-28 13:47:25 -0700507{
508 struct device_node *root;
509 int rc = 0;
510
511 root = of_find_node_by_path("/");
512 if (root) {
513 rc = of_device_is_compatible(root, compat);
514 of_node_put(root);
515 }
516 return rc;
517}
Grant Likely71a157e2010-02-01 21:34:14 -0700518EXPORT_SYMBOL(of_machine_is_compatible);
Grant Likely1f43cfb2010-01-28 13:47:25 -0700519
520/**
Stephen Warrenc31a0c02013-02-11 14:15:32 -0700521 * __of_device_is_available - check if a device is available for use
Josh Boyer834d97d2008-03-27 00:33:14 +1100522 *
Stephen Warrenc31a0c02013-02-11 14:15:32 -0700523 * @device: Node to check for availability, with locks already held
Josh Boyer834d97d2008-03-27 00:33:14 +1100524 *
525 * Returns 1 if the status property is absent or set to "okay" or "ok",
526 * 0 otherwise
527 */
Stephen Warrenc31a0c02013-02-11 14:15:32 -0700528static int __of_device_is_available(const struct device_node *device)
Josh Boyer834d97d2008-03-27 00:33:14 +1100529{
530 const char *status;
531 int statlen;
532
Xiubo Li42ccd782014-01-13 11:07:28 +0800533 if (!device)
534 return 0;
535
Stephen Warrenc31a0c02013-02-11 14:15:32 -0700536 status = __of_get_property(device, "status", &statlen);
Josh Boyer834d97d2008-03-27 00:33:14 +1100537 if (status == NULL)
538 return 1;
539
540 if (statlen > 0) {
541 if (!strcmp(status, "okay") || !strcmp(status, "ok"))
542 return 1;
543 }
544
545 return 0;
546}
Stephen Warrenc31a0c02013-02-11 14:15:32 -0700547
548/**
549 * of_device_is_available - check if a device is available for use
550 *
551 * @device: Node to check for availability
552 *
553 * Returns 1 if the status property is absent or set to "okay" or "ok",
554 * 0 otherwise
555 */
556int of_device_is_available(const struct device_node *device)
557{
558 unsigned long flags;
559 int res;
560
561 raw_spin_lock_irqsave(&devtree_lock, flags);
562 res = __of_device_is_available(device);
563 raw_spin_unlock_irqrestore(&devtree_lock, flags);
564 return res;
565
566}
Josh Boyer834d97d2008-03-27 00:33:14 +1100567EXPORT_SYMBOL(of_device_is_available);
568
569/**
Stephen Rothwelle679c5f2007-04-24 17:16:16 +1000570 * of_get_parent - Get a node's parent if any
571 * @node: Node to get parent
572 *
573 * Returns a node pointer with refcount incremented, use
574 * of_node_put() on it when done.
575 */
576struct device_node *of_get_parent(const struct device_node *node)
577{
578 struct device_node *np;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500579 unsigned long flags;
Stephen Rothwelle679c5f2007-04-24 17:16:16 +1000580
581 if (!node)
582 return NULL;
583
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500584 raw_spin_lock_irqsave(&devtree_lock, flags);
Stephen Rothwelle679c5f2007-04-24 17:16:16 +1000585 np = of_node_get(node->parent);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500586 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwelle679c5f2007-04-24 17:16:16 +1000587 return np;
588}
589EXPORT_SYMBOL(of_get_parent);
Stephen Rothwelld1cd3552007-04-24 17:21:29 +1000590
591/**
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000592 * of_get_next_parent - Iterate to a node's parent
593 * @node: Node to get parent of
594 *
Geert Uytterhoevenc0e848d2014-10-22 11:44:55 +0200595 * This is like of_get_parent() except that it drops the
596 * refcount on the passed node, making it suitable for iterating
597 * through a node's parents.
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000598 *
599 * Returns a node pointer with refcount incremented, use
600 * of_node_put() on it when done.
601 */
602struct device_node *of_get_next_parent(struct device_node *node)
603{
604 struct device_node *parent;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500605 unsigned long flags;
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000606
607 if (!node)
608 return NULL;
609
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500610 raw_spin_lock_irqsave(&devtree_lock, flags);
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000611 parent = of_node_get(node->parent);
612 of_node_put(node);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500613 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000614 return parent;
615}
Guennadi Liakhovetski6695be62013-04-02 12:28:11 -0300616EXPORT_SYMBOL(of_get_next_parent);
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000617
Grant Likely0d0e02d2014-05-22 01:04:17 +0900618static struct device_node *__of_get_next_child(const struct device_node *node,
619 struct device_node *prev)
620{
621 struct device_node *next;
622
Florian Fainelli43cb4362014-05-28 10:39:02 -0700623 if (!node)
624 return NULL;
625
Grant Likely0d0e02d2014-05-22 01:04:17 +0900626 next = prev ? prev->sibling : node->child;
627 for (; next; next = next->sibling)
628 if (of_node_get(next))
629 break;
630 of_node_put(prev);
631 return next;
632}
633#define __for_each_child_of_node(parent, child) \
634 for (child = __of_get_next_child(parent, NULL); child != NULL; \
635 child = __of_get_next_child(parent, child))
636
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000637/**
Stephen Rothwelld1cd3552007-04-24 17:21:29 +1000638 * of_get_next_child - Iterate a node childs
639 * @node: parent node
640 * @prev: previous child of the parent node, or NULL to get first
641 *
642 * Returns a node pointer with refcount incremented, use
643 * of_node_put() on it when done.
644 */
645struct device_node *of_get_next_child(const struct device_node *node,
646 struct device_node *prev)
647{
648 struct device_node *next;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500649 unsigned long flags;
Stephen Rothwelld1cd3552007-04-24 17:21:29 +1000650
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500651 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likely0d0e02d2014-05-22 01:04:17 +0900652 next = __of_get_next_child(node, prev);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500653 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwelld1cd3552007-04-24 17:21:29 +1000654 return next;
655}
656EXPORT_SYMBOL(of_get_next_child);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000657
658/**
Timur Tabi32961932012-08-14 13:20:23 +0000659 * of_get_next_available_child - Find the next available child node
660 * @node: parent node
661 * @prev: previous child of the parent node, or NULL to get first
662 *
663 * This function is like of_get_next_child(), except that it
664 * automatically skips any disabled nodes (i.e. status = "disabled").
665 */
666struct device_node *of_get_next_available_child(const struct device_node *node,
667 struct device_node *prev)
668{
669 struct device_node *next;
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000670 unsigned long flags;
Timur Tabi32961932012-08-14 13:20:23 +0000671
Florian Fainelli43cb4362014-05-28 10:39:02 -0700672 if (!node)
673 return NULL;
674
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000675 raw_spin_lock_irqsave(&devtree_lock, flags);
Timur Tabi32961932012-08-14 13:20:23 +0000676 next = prev ? prev->sibling : node->child;
677 for (; next; next = next->sibling) {
Stephen Warrenc31a0c02013-02-11 14:15:32 -0700678 if (!__of_device_is_available(next))
Timur Tabi32961932012-08-14 13:20:23 +0000679 continue;
680 if (of_node_get(next))
681 break;
682 }
683 of_node_put(prev);
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000684 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Timur Tabi32961932012-08-14 13:20:23 +0000685 return next;
686}
687EXPORT_SYMBOL(of_get_next_available_child);
688
689/**
Srinivas Kandagatla9c197612012-09-18 08:10:28 +0100690 * of_get_child_by_name - Find the child node by name for a given parent
691 * @node: parent node
692 * @name: child name to look for.
693 *
694 * This function looks for child node for given matching name
695 *
696 * Returns a node pointer if found, with refcount incremented, use
697 * of_node_put() on it when done.
698 * Returns NULL if node is not found.
699 */
700struct device_node *of_get_child_by_name(const struct device_node *node,
701 const char *name)
702{
703 struct device_node *child;
704
705 for_each_child_of_node(node, child)
706 if (child->name && (of_node_cmp(child->name, name) == 0))
707 break;
708 return child;
709}
710EXPORT_SYMBOL(of_get_child_by_name);
711
Grant Likelyc22e6502014-03-14 17:07:12 +0000712static struct device_node *__of_find_node_by_path(struct device_node *parent,
713 const char *path)
714{
715 struct device_node *child;
716 int len = strchrnul(path, '/') - path;
717
718 if (!len)
719 return NULL;
720
721 __for_each_child_of_node(parent, child) {
722 const char *name = strrchr(child->full_name, '/');
723 if (WARN(!name, "malformed device_node %s\n", child->full_name))
724 continue;
725 name++;
726 if (strncmp(path, name, len) == 0 && (strlen(name) == len))
727 return child;
728 }
729 return NULL;
730}
731
Srinivas Kandagatla9c197612012-09-18 08:10:28 +0100732/**
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000733 * of_find_node_by_path - Find a node matching a full OF path
Grant Likelyc22e6502014-03-14 17:07:12 +0000734 * @path: Either the full path to match, or if the path does not
735 * start with '/', the name of a property of the /aliases
736 * node (an alias). In the case of an alias, the node
737 * matching the alias' value will be returned.
738 *
739 * Valid paths:
740 * /foo/bar Full path
741 * foo Valid alias
742 * foo/bar Valid alias + relative path
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000743 *
744 * Returns a node pointer with refcount incremented, use
745 * of_node_put() on it when done.
746 */
747struct device_node *of_find_node_by_path(const char *path)
748{
Grant Likelyc22e6502014-03-14 17:07:12 +0000749 struct device_node *np = NULL;
750 struct property *pp;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500751 unsigned long flags;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000752
Grant Likelyc22e6502014-03-14 17:07:12 +0000753 if (strcmp(path, "/") == 0)
Grant Likely5063e252014-10-03 16:28:27 +0100754 return of_node_get(of_root);
Grant Likelyc22e6502014-03-14 17:07:12 +0000755
756 /* The path could begin with an alias */
757 if (*path != '/') {
758 char *p = strchrnul(path, '/');
759 int len = p - path;
760
761 /* of_aliases must not be NULL */
762 if (!of_aliases)
763 return NULL;
764
765 for_each_property_of_node(of_aliases, pp) {
766 if (strlen(pp->name) == len && !strncmp(pp->name, path, len)) {
767 np = of_find_node_by_path(pp->value);
768 break;
769 }
770 }
771 if (!np)
772 return NULL;
773 path = p;
774 }
775
776 /* Step down the tree matching path components */
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500777 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likelyc22e6502014-03-14 17:07:12 +0000778 if (!np)
Grant Likely5063e252014-10-03 16:28:27 +0100779 np = of_node_get(of_root);
Grant Likelyc22e6502014-03-14 17:07:12 +0000780 while (np && *path == '/') {
781 path++; /* Increment past '/' delimiter */
782 np = __of_find_node_by_path(np, path);
783 path = strchrnul(path, '/');
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000784 }
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500785 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000786 return np;
787}
788EXPORT_SYMBOL(of_find_node_by_path);
789
790/**
791 * of_find_node_by_name - Find a node by its "name" property
792 * @from: The node to start searching from or NULL, the node
793 * you pass will not be searched, only the next one
794 * will; typically, you pass what the previous call
795 * returned. of_node_put() will be called on it
796 * @name: The name string to match against
797 *
798 * Returns a node pointer with refcount incremented, use
799 * of_node_put() on it when done.
800 */
801struct device_node *of_find_node_by_name(struct device_node *from,
802 const char *name)
803{
804 struct device_node *np;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500805 unsigned long flags;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000806
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500807 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likely5063e252014-10-03 16:28:27 +0100808 for_each_of_allnodes_from(from, np)
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000809 if (np->name && (of_node_cmp(np->name, name) == 0)
810 && of_node_get(np))
811 break;
812 of_node_put(from);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500813 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000814 return np;
815}
816EXPORT_SYMBOL(of_find_node_by_name);
817
818/**
819 * of_find_node_by_type - Find a node by its "device_type" property
820 * @from: The node to start searching from, or NULL to start searching
821 * the entire device tree. The node you pass will not be
822 * searched, only the next one will; typically, you pass
823 * what the previous call returned. of_node_put() will be
824 * called on from for you.
825 * @type: The type string to match against
826 *
827 * Returns a node pointer with refcount incremented, use
828 * of_node_put() on it when done.
829 */
830struct device_node *of_find_node_by_type(struct device_node *from,
831 const char *type)
832{
833 struct device_node *np;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500834 unsigned long flags;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000835
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500836 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likely5063e252014-10-03 16:28:27 +0100837 for_each_of_allnodes_from(from, np)
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000838 if (np->type && (of_node_cmp(np->type, type) == 0)
839 && of_node_get(np))
840 break;
841 of_node_put(from);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500842 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000843 return np;
844}
845EXPORT_SYMBOL(of_find_node_by_type);
846
847/**
848 * of_find_compatible_node - Find a node based on type and one of the
849 * tokens in its "compatible" property
850 * @from: The node to start searching from or NULL, the node
851 * you pass will not be searched, only the next one
852 * will; typically, you pass what the previous call
853 * returned. of_node_put() will be called on it
854 * @type: The type string to match "device_type" or NULL to ignore
855 * @compatible: The string to match to one of the tokens in the device
856 * "compatible" list.
857 *
858 * Returns a node pointer with refcount incremented, use
859 * of_node_put() on it when done.
860 */
861struct device_node *of_find_compatible_node(struct device_node *from,
862 const char *type, const char *compatible)
863{
864 struct device_node *np;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500865 unsigned long flags;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000866
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500867 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likely5063e252014-10-03 16:28:27 +0100868 for_each_of_allnodes_from(from, np)
Kevin Hao215a14c2014-02-19 16:15:45 +0800869 if (__of_device_is_compatible(np, compatible, type, NULL) &&
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500870 of_node_get(np))
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000871 break;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000872 of_node_put(from);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500873 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000874 return np;
875}
876EXPORT_SYMBOL(of_find_compatible_node);
Grant Likely283029d2008-01-09 06:20:40 +1100877
878/**
Michael Ellerman1e291b12008-11-12 18:54:42 +0000879 * of_find_node_with_property - Find a node which has a property with
880 * the given name.
881 * @from: The node to start searching from or NULL, the node
882 * you pass will not be searched, only the next one
883 * will; typically, you pass what the previous call
884 * returned. of_node_put() will be called on it
885 * @prop_name: The name of the property to look for.
886 *
887 * Returns a node pointer with refcount incremented, use
888 * of_node_put() on it when done.
889 */
890struct device_node *of_find_node_with_property(struct device_node *from,
891 const char *prop_name)
892{
893 struct device_node *np;
894 struct property *pp;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500895 unsigned long flags;
Michael Ellerman1e291b12008-11-12 18:54:42 +0000896
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500897 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likely5063e252014-10-03 16:28:27 +0100898 for_each_of_allnodes_from(from, np) {
Sachin Kamata3a7cab2012-06-27 09:44:45 +0530899 for (pp = np->properties; pp; pp = pp->next) {
Michael Ellerman1e291b12008-11-12 18:54:42 +0000900 if (of_prop_cmp(pp->name, prop_name) == 0) {
901 of_node_get(np);
902 goto out;
903 }
904 }
905 }
906out:
907 of_node_put(from);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500908 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Michael Ellerman1e291b12008-11-12 18:54:42 +0000909 return np;
910}
911EXPORT_SYMBOL(of_find_node_with_property);
912
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500913static
914const struct of_device_id *__of_match_node(const struct of_device_id *matches,
915 const struct device_node *node)
Grant Likely283029d2008-01-09 06:20:40 +1100916{
Kevin Hao215a14c2014-02-19 16:15:45 +0800917 const struct of_device_id *best_match = NULL;
918 int score, best_score = 0;
919
Grant Likelya52f07e2011-03-18 10:21:29 -0600920 if (!matches)
921 return NULL;
922
Kevin Hao215a14c2014-02-19 16:15:45 +0800923 for (; matches->name[0] || matches->type[0] || matches->compatible[0]; matches++) {
924 score = __of_device_is_compatible(node, matches->compatible,
925 matches->type, matches->name);
926 if (score > best_score) {
927 best_match = matches;
928 best_score = score;
929 }
Kevin Hao4e8ca6e2014-02-14 13:22:45 +0800930 }
Kevin Hao215a14c2014-02-19 16:15:45 +0800931
932 return best_match;
Grant Likely283029d2008-01-09 06:20:40 +1100933}
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500934
935/**
Geert Uytterhoevenc50949d2014-10-22 11:44:54 +0200936 * of_match_node - Tell if a device_node has a matching of_match structure
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500937 * @matches: array of of device match structures to search in
938 * @node: the of device structure to match against
939 *
Kevin Hao71c54982014-02-18 15:57:29 +0800940 * Low level utility function used by device matching.
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500941 */
942const struct of_device_id *of_match_node(const struct of_device_id *matches,
943 const struct device_node *node)
944{
945 const struct of_device_id *match;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500946 unsigned long flags;
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500947
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500948 raw_spin_lock_irqsave(&devtree_lock, flags);
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500949 match = __of_match_node(matches, node);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500950 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500951 return match;
952}
Grant Likely283029d2008-01-09 06:20:40 +1100953EXPORT_SYMBOL(of_match_node);
954
955/**
Stephen Warren50c8af42012-11-20 16:12:20 -0700956 * of_find_matching_node_and_match - Find a node based on an of_device_id
957 * match table.
Grant Likely283029d2008-01-09 06:20:40 +1100958 * @from: The node to start searching from or NULL, the node
959 * you pass will not be searched, only the next one
960 * will; typically, you pass what the previous call
961 * returned. of_node_put() will be called on it
962 * @matches: array of of device match structures to search in
Stephen Warren50c8af42012-11-20 16:12:20 -0700963 * @match Updated to point at the matches entry which matched
Grant Likely283029d2008-01-09 06:20:40 +1100964 *
965 * Returns a node pointer with refcount incremented, use
966 * of_node_put() on it when done.
967 */
Stephen Warren50c8af42012-11-20 16:12:20 -0700968struct device_node *of_find_matching_node_and_match(struct device_node *from,
969 const struct of_device_id *matches,
970 const struct of_device_id **match)
Grant Likely283029d2008-01-09 06:20:40 +1100971{
972 struct device_node *np;
Thomas Abrahamdc71bcf2013-01-19 10:20:42 -0800973 const struct of_device_id *m;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500974 unsigned long flags;
Grant Likely283029d2008-01-09 06:20:40 +1100975
Stephen Warren50c8af42012-11-20 16:12:20 -0700976 if (match)
977 *match = NULL;
978
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500979 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likely5063e252014-10-03 16:28:27 +0100980 for_each_of_allnodes_from(from, np) {
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500981 m = __of_match_node(matches, np);
Thomas Abrahamdc71bcf2013-01-19 10:20:42 -0800982 if (m && of_node_get(np)) {
Stephen Warren50c8af42012-11-20 16:12:20 -0700983 if (match)
Thomas Abrahamdc71bcf2013-01-19 10:20:42 -0800984 *match = m;
Grant Likely283029d2008-01-09 06:20:40 +1100985 break;
Stephen Warren50c8af42012-11-20 16:12:20 -0700986 }
Grant Likely283029d2008-01-09 06:20:40 +1100987 }
988 of_node_put(from);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500989 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Grant Likely283029d2008-01-09 06:20:40 +1100990 return np;
991}
Grant Likely80c20222012-12-19 10:45:36 +0000992EXPORT_SYMBOL(of_find_matching_node_and_match);
Grant Likely3f07af42008-07-25 22:25:13 -0400993
994/**
Grant Likely3f07af42008-07-25 22:25:13 -0400995 * of_modalias_node - Lookup appropriate modalias for a device node
996 * @node: pointer to a device tree node
997 * @modalias: Pointer to buffer that modalias value will be copied into
998 * @len: Length of modalias value
999 *
Grant Likely2ffe8c52010-06-08 07:48:19 -06001000 * Based on the value of the compatible property, this routine will attempt
1001 * to choose an appropriate modalias value for a particular device tree node.
1002 * It does this by stripping the manufacturer prefix (as delimited by a ',')
1003 * from the first entry in the compatible list property.
Grant Likely3f07af42008-07-25 22:25:13 -04001004 *
Grant Likely2ffe8c52010-06-08 07:48:19 -06001005 * This routine returns 0 on success, <0 on failure.
Grant Likely3f07af42008-07-25 22:25:13 -04001006 */
1007int of_modalias_node(struct device_node *node, char *modalias, int len)
1008{
Grant Likely2ffe8c52010-06-08 07:48:19 -06001009 const char *compatible, *p;
1010 int cplen;
Grant Likely3f07af42008-07-25 22:25:13 -04001011
1012 compatible = of_get_property(node, "compatible", &cplen);
Grant Likely2ffe8c52010-06-08 07:48:19 -06001013 if (!compatible || strlen(compatible) > cplen)
Grant Likely3f07af42008-07-25 22:25:13 -04001014 return -ENODEV;
Grant Likely3f07af42008-07-25 22:25:13 -04001015 p = strchr(compatible, ',');
Grant Likely2ffe8c52010-06-08 07:48:19 -06001016 strlcpy(modalias, p ? p + 1 : compatible, len);
Grant Likely3f07af42008-07-25 22:25:13 -04001017 return 0;
1018}
1019EXPORT_SYMBOL_GPL(of_modalias_node);
1020
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001021/**
Jeremy Kerr89751a72010-02-01 21:34:11 -07001022 * of_find_node_by_phandle - Find a node given a phandle
1023 * @handle: phandle of the node to find
1024 *
1025 * Returns a node pointer with refcount incremented, use
1026 * of_node_put() on it when done.
1027 */
1028struct device_node *of_find_node_by_phandle(phandle handle)
1029{
1030 struct device_node *np;
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +10001031 unsigned long flags;
Jeremy Kerr89751a72010-02-01 21:34:11 -07001032
Grant Likelyfc59b442014-10-02 13:08:02 +01001033 if (!handle)
1034 return NULL;
1035
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +10001036 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likely5063e252014-10-03 16:28:27 +01001037 for_each_of_allnodes(np)
Jeremy Kerr89751a72010-02-01 21:34:11 -07001038 if (np->phandle == handle)
1039 break;
1040 of_node_get(np);
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +10001041 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Jeremy Kerr89751a72010-02-01 21:34:11 -07001042 return np;
1043}
1044EXPORT_SYMBOL(of_find_node_by_phandle);
1045
1046/**
Heiko Stuebnerad54a0c2014-02-12 01:00:34 +01001047 * of_property_count_elems_of_size - Count the number of elements in a property
1048 *
1049 * @np: device node from which the property value is to be read.
1050 * @propname: name of the property to be searched.
1051 * @elem_size: size of the individual element
1052 *
1053 * Search for a property in a device node and count the number of elements of
1054 * size elem_size in it. Returns number of elements on sucess, -EINVAL if the
1055 * property does not exist or its length does not match a multiple of elem_size
1056 * and -ENODATA if the property does not have a value.
1057 */
1058int of_property_count_elems_of_size(const struct device_node *np,
1059 const char *propname, int elem_size)
1060{
1061 struct property *prop = of_find_property(np, propname, NULL);
1062
1063 if (!prop)
1064 return -EINVAL;
1065 if (!prop->value)
1066 return -ENODATA;
1067
1068 if (prop->length % elem_size != 0) {
1069 pr_err("size of %s in node %s is not a multiple of %d\n",
1070 propname, np->full_name, elem_size);
1071 return -EINVAL;
1072 }
1073
1074 return prop->length / elem_size;
1075}
1076EXPORT_SYMBOL_GPL(of_property_count_elems_of_size);
1077
1078/**
Tony Priskdaeec1f2013-04-03 17:57:11 +13001079 * of_find_property_value_of_size
1080 *
1081 * @np: device node from which the property value is to be read.
1082 * @propname: name of the property to be searched.
1083 * @len: requested length of property value
1084 *
1085 * Search for a property in a device node and valid the requested size.
1086 * Returns the property value on success, -EINVAL if the property does not
1087 * exist, -ENODATA if property does not have a value, and -EOVERFLOW if the
1088 * property data isn't large enough.
1089 *
1090 */
1091static void *of_find_property_value_of_size(const struct device_node *np,
1092 const char *propname, u32 len)
1093{
1094 struct property *prop = of_find_property(np, propname, NULL);
1095
1096 if (!prop)
1097 return ERR_PTR(-EINVAL);
1098 if (!prop->value)
1099 return ERR_PTR(-ENODATA);
1100 if (len > prop->length)
1101 return ERR_PTR(-EOVERFLOW);
1102
1103 return prop->value;
1104}
1105
1106/**
Tony Prisk3daf3722013-03-23 17:02:15 +13001107 * of_property_read_u32_index - Find and read a u32 from a multi-value property.
1108 *
1109 * @np: device node from which the property value is to be read.
1110 * @propname: name of the property to be searched.
1111 * @index: index of the u32 in the list of values
1112 * @out_value: pointer to return value, modified only if no error.
1113 *
1114 * Search for a property in a device node and read nth 32-bit value from
1115 * it. Returns 0 on success, -EINVAL if the property does not exist,
1116 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1117 * property data isn't large enough.
1118 *
1119 * The out_value is modified only if a valid u32 value can be decoded.
1120 */
1121int of_property_read_u32_index(const struct device_node *np,
1122 const char *propname,
1123 u32 index, u32 *out_value)
1124{
Tony Priskdaeec1f2013-04-03 17:57:11 +13001125 const u32 *val = of_find_property_value_of_size(np, propname,
1126 ((index + 1) * sizeof(*out_value)));
Tony Prisk3daf3722013-03-23 17:02:15 +13001127
Tony Priskdaeec1f2013-04-03 17:57:11 +13001128 if (IS_ERR(val))
1129 return PTR_ERR(val);
Tony Prisk3daf3722013-03-23 17:02:15 +13001130
Tony Priskdaeec1f2013-04-03 17:57:11 +13001131 *out_value = be32_to_cpup(((__be32 *)val) + index);
Tony Prisk3daf3722013-03-23 17:02:15 +13001132 return 0;
1133}
1134EXPORT_SYMBOL_GPL(of_property_read_u32_index);
1135
1136/**
Viresh Kumarbe193242012-11-20 10:15:19 +05301137 * of_property_read_u8_array - Find and read an array of u8 from a property.
1138 *
1139 * @np: device node from which the property value is to be read.
1140 * @propname: name of the property to be searched.
Lad, Prabhakar792efb82013-05-07 11:34:11 +05301141 * @out_values: pointer to return value, modified only if return value is 0.
Viresh Kumarbe193242012-11-20 10:15:19 +05301142 * @sz: number of array elements to read
1143 *
1144 * Search for a property in a device node and read 8-bit value(s) from
1145 * it. Returns 0 on success, -EINVAL if the property does not exist,
1146 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1147 * property data isn't large enough.
1148 *
1149 * dts entry of array should be like:
1150 * property = /bits/ 8 <0x50 0x60 0x70>;
1151 *
Lad, Prabhakar792efb82013-05-07 11:34:11 +05301152 * The out_values is modified only if a valid u8 value can be decoded.
Viresh Kumarbe193242012-11-20 10:15:19 +05301153 */
1154int of_property_read_u8_array(const struct device_node *np,
1155 const char *propname, u8 *out_values, size_t sz)
1156{
Tony Priskdaeec1f2013-04-03 17:57:11 +13001157 const u8 *val = of_find_property_value_of_size(np, propname,
1158 (sz * sizeof(*out_values)));
Viresh Kumarbe193242012-11-20 10:15:19 +05301159
Tony Priskdaeec1f2013-04-03 17:57:11 +13001160 if (IS_ERR(val))
1161 return PTR_ERR(val);
Viresh Kumarbe193242012-11-20 10:15:19 +05301162
Viresh Kumarbe193242012-11-20 10:15:19 +05301163 while (sz--)
1164 *out_values++ = *val++;
1165 return 0;
1166}
1167EXPORT_SYMBOL_GPL(of_property_read_u8_array);
1168
1169/**
1170 * of_property_read_u16_array - Find and read an array of u16 from a property.
1171 *
1172 * @np: device node from which the property value is to be read.
1173 * @propname: name of the property to be searched.
Lad, Prabhakar792efb82013-05-07 11:34:11 +05301174 * @out_values: pointer to return value, modified only if return value is 0.
Viresh Kumarbe193242012-11-20 10:15:19 +05301175 * @sz: number of array elements to read
1176 *
1177 * Search for a property in a device node and read 16-bit value(s) from
1178 * it. Returns 0 on success, -EINVAL if the property does not exist,
1179 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1180 * property data isn't large enough.
1181 *
1182 * dts entry of array should be like:
1183 * property = /bits/ 16 <0x5000 0x6000 0x7000>;
1184 *
Lad, Prabhakar792efb82013-05-07 11:34:11 +05301185 * The out_values is modified only if a valid u16 value can be decoded.
Viresh Kumarbe193242012-11-20 10:15:19 +05301186 */
1187int of_property_read_u16_array(const struct device_node *np,
1188 const char *propname, u16 *out_values, size_t sz)
1189{
Tony Priskdaeec1f2013-04-03 17:57:11 +13001190 const __be16 *val = of_find_property_value_of_size(np, propname,
1191 (sz * sizeof(*out_values)));
Viresh Kumarbe193242012-11-20 10:15:19 +05301192
Tony Priskdaeec1f2013-04-03 17:57:11 +13001193 if (IS_ERR(val))
1194 return PTR_ERR(val);
Viresh Kumarbe193242012-11-20 10:15:19 +05301195
Viresh Kumarbe193242012-11-20 10:15:19 +05301196 while (sz--)
1197 *out_values++ = be16_to_cpup(val++);
1198 return 0;
1199}
1200EXPORT_SYMBOL_GPL(of_property_read_u16_array);
1201
1202/**
Rob Herring0e373632011-07-06 15:42:58 -05001203 * of_property_read_u32_array - Find and read an array of 32 bit integers
1204 * from a property.
1205 *
Thomas Abrahama3b85362011-06-30 21:26:10 +05301206 * @np: device node from which the property value is to be read.
1207 * @propname: name of the property to be searched.
Lad, Prabhakar792efb82013-05-07 11:34:11 +05301208 * @out_values: pointer to return value, modified only if return value is 0.
Viresh Kumarbe193242012-11-20 10:15:19 +05301209 * @sz: number of array elements to read
Thomas Abrahama3b85362011-06-30 21:26:10 +05301210 *
Rob Herring0e373632011-07-06 15:42:58 -05001211 * Search for a property in a device node and read 32-bit value(s) from
Thomas Abrahama3b85362011-06-30 21:26:10 +05301212 * it. Returns 0 on success, -EINVAL if the property does not exist,
1213 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1214 * property data isn't large enough.
1215 *
Lad, Prabhakar792efb82013-05-07 11:34:11 +05301216 * The out_values is modified only if a valid u32 value can be decoded.
Thomas Abrahama3b85362011-06-30 21:26:10 +05301217 */
Jamie Ilesaac285c2011-08-02 15:45:07 +01001218int of_property_read_u32_array(const struct device_node *np,
1219 const char *propname, u32 *out_values,
1220 size_t sz)
Thomas Abrahama3b85362011-06-30 21:26:10 +05301221{
Tony Priskdaeec1f2013-04-03 17:57:11 +13001222 const __be32 *val = of_find_property_value_of_size(np, propname,
1223 (sz * sizeof(*out_values)));
Thomas Abrahama3b85362011-06-30 21:26:10 +05301224
Tony Priskdaeec1f2013-04-03 17:57:11 +13001225 if (IS_ERR(val))
1226 return PTR_ERR(val);
Rob Herring0e373632011-07-06 15:42:58 -05001227
Rob Herring0e373632011-07-06 15:42:58 -05001228 while (sz--)
1229 *out_values++ = be32_to_cpup(val++);
Thomas Abrahama3b85362011-06-30 21:26:10 +05301230 return 0;
1231}
Rob Herring0e373632011-07-06 15:42:58 -05001232EXPORT_SYMBOL_GPL(of_property_read_u32_array);
Thomas Abrahama3b85362011-06-30 21:26:10 +05301233
1234/**
Jamie Iles4cd7f7a2011-09-14 20:49:59 +01001235 * of_property_read_u64 - Find and read a 64 bit integer from a property
1236 * @np: device node from which the property value is to be read.
1237 * @propname: name of the property to be searched.
1238 * @out_value: pointer to return value, modified only if return value is 0.
1239 *
1240 * Search for a property in a device node and read a 64-bit value from
1241 * it. Returns 0 on success, -EINVAL if the property does not exist,
1242 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1243 * property data isn't large enough.
1244 *
1245 * The out_value is modified only if a valid u64 value can be decoded.
1246 */
1247int of_property_read_u64(const struct device_node *np, const char *propname,
1248 u64 *out_value)
1249{
Tony Priskdaeec1f2013-04-03 17:57:11 +13001250 const __be32 *val = of_find_property_value_of_size(np, propname,
1251 sizeof(*out_value));
Jamie Iles4cd7f7a2011-09-14 20:49:59 +01001252
Tony Priskdaeec1f2013-04-03 17:57:11 +13001253 if (IS_ERR(val))
1254 return PTR_ERR(val);
1255
1256 *out_value = of_read_number(val, 2);
Jamie Iles4cd7f7a2011-09-14 20:49:59 +01001257 return 0;
1258}
1259EXPORT_SYMBOL_GPL(of_property_read_u64);
1260
1261/**
Thomas Abrahama3b85362011-06-30 21:26:10 +05301262 * of_property_read_string - Find and read a string from a property
1263 * @np: device node from which the property value is to be read.
1264 * @propname: name of the property to be searched.
1265 * @out_string: pointer to null terminated return string, modified only if
1266 * return value is 0.
1267 *
1268 * Search for a property in a device tree node and retrieve a null
1269 * terminated string value (pointer to data, not a copy). Returns 0 on
1270 * success, -EINVAL if the property does not exist, -ENODATA if property
1271 * does not have a value, and -EILSEQ if the string is not null-terminated
1272 * within the length of the property data.
1273 *
1274 * The out_string pointer is modified only if a valid string can be decoded.
1275 */
Jamie Ilesaac285c2011-08-02 15:45:07 +01001276int of_property_read_string(struct device_node *np, const char *propname,
Shawn Guof09bc832011-07-04 09:01:18 +08001277 const char **out_string)
Thomas Abrahama3b85362011-06-30 21:26:10 +05301278{
1279 struct property *prop = of_find_property(np, propname, NULL);
1280 if (!prop)
1281 return -EINVAL;
1282 if (!prop->value)
1283 return -ENODATA;
1284 if (strnlen(prop->value, prop->length) >= prop->length)
1285 return -EILSEQ;
1286 *out_string = prop->value;
1287 return 0;
1288}
1289EXPORT_SYMBOL_GPL(of_property_read_string);
1290
1291/**
Grant Likely7aff0fe2011-12-12 09:25:58 -07001292 * of_property_match_string() - Find string in a list and return index
1293 * @np: pointer to node containing string list property
1294 * @propname: string list property name
1295 * @string: pointer to string to search for in string list
1296 *
1297 * This function searches a string list property and returns the index
1298 * of a specific string value.
1299 */
1300int of_property_match_string(struct device_node *np, const char *propname,
1301 const char *string)
1302{
1303 struct property *prop = of_find_property(np, propname, NULL);
1304 size_t l;
1305 int i;
1306 const char *p, *end;
1307
1308 if (!prop)
1309 return -EINVAL;
1310 if (!prop->value)
1311 return -ENODATA;
1312
1313 p = prop->value;
1314 end = p + prop->length;
1315
1316 for (i = 0; p < end; i++, p += l) {
Grant Likelya87fa1d2014-11-03 15:15:35 +00001317 l = strnlen(p, end - p) + 1;
Grant Likely7aff0fe2011-12-12 09:25:58 -07001318 if (p + l > end)
1319 return -EILSEQ;
1320 pr_debug("comparing %s with %s\n", string, p);
1321 if (strcmp(string, p) == 0)
1322 return i; /* Found it; return index */
1323 }
1324 return -ENODATA;
1325}
1326EXPORT_SYMBOL_GPL(of_property_match_string);
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001327
1328/**
Grant Likelya87fa1d2014-11-03 15:15:35 +00001329 * of_property_read_string_util() - Utility helper for parsing string properties
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001330 * @np: device node from which the property value is to be read.
1331 * @propname: name of the property to be searched.
Grant Likelya87fa1d2014-11-03 15:15:35 +00001332 * @out_strs: output array of string pointers.
1333 * @sz: number of array elements to read.
1334 * @skip: Number of strings to skip over at beginning of list.
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001335 *
Grant Likelya87fa1d2014-11-03 15:15:35 +00001336 * Don't call this function directly. It is a utility helper for the
1337 * of_property_read_string*() family of functions.
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001338 */
Grant Likelya87fa1d2014-11-03 15:15:35 +00001339int of_property_read_string_helper(struct device_node *np, const char *propname,
1340 const char **out_strs, size_t sz, int skip)
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001341{
1342 struct property *prop = of_find_property(np, propname, NULL);
Grant Likelya87fa1d2014-11-03 15:15:35 +00001343 int l = 0, i = 0;
1344 const char *p, *end;
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001345
1346 if (!prop)
1347 return -EINVAL;
1348 if (!prop->value)
1349 return -ENODATA;
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001350 p = prop->value;
Grant Likelya87fa1d2014-11-03 15:15:35 +00001351 end = p + prop->length;
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001352
Grant Likelya87fa1d2014-11-03 15:15:35 +00001353 for (i = 0; p < end && (!out_strs || i < skip + sz); i++, p += l) {
1354 l = strnlen(p, end - p) + 1;
1355 if (p + l > end)
1356 return -EILSEQ;
1357 if (out_strs && i >= skip)
1358 *out_strs++ = p;
1359 }
1360 i -= skip;
1361 return i <= 0 ? -ENODATA : i;
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001362}
Grant Likelya87fa1d2014-11-03 15:15:35 +00001363EXPORT_SYMBOL_GPL(of_property_read_string_helper);
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001364
Grant Likely624cfca2013-10-11 22:05:10 +01001365void of_print_phandle_args(const char *msg, const struct of_phandle_args *args)
1366{
1367 int i;
1368 printk("%s %s", msg, of_node_full_name(args->np));
1369 for (i = 0; i < args->args_count; i++)
1370 printk(i ? ",%08x" : ":%08x", args->args[i]);
1371 printk("\n");
1372}
1373
Grant Likelybd69f732013-02-10 22:57:21 +00001374static int __of_parse_phandle_with_args(const struct device_node *np,
1375 const char *list_name,
Stephen Warren035fd942013-08-14 15:27:10 -06001376 const char *cells_name,
1377 int cell_count, int index,
Grant Likelybd69f732013-02-10 22:57:21 +00001378 struct of_phandle_args *out_args)
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001379{
Grant Likely15c9a0a2011-12-12 09:25:57 -07001380 const __be32 *list, *list_end;
Grant Likely23ce04c2013-02-12 21:21:49 +00001381 int rc = 0, size, cur_index = 0;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001382 uint32_t count = 0;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001383 struct device_node *node = NULL;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001384 phandle phandle;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001385
Grant Likely15c9a0a2011-12-12 09:25:57 -07001386 /* Retrieve the phandle list property */
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001387 list = of_get_property(np, list_name, &size);
Grant Likely15c9a0a2011-12-12 09:25:57 -07001388 if (!list)
Alexandre Courbot1af4c7f2012-06-29 13:57:58 +09001389 return -ENOENT;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001390 list_end = list + size / sizeof(*list);
1391
Grant Likely15c9a0a2011-12-12 09:25:57 -07001392 /* Loop over the phandles until all the requested entry is found */
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001393 while (list < list_end) {
Grant Likely23ce04c2013-02-12 21:21:49 +00001394 rc = -EINVAL;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001395 count = 0;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001396
Grant Likely15c9a0a2011-12-12 09:25:57 -07001397 /*
1398 * If phandle is 0, then it is an empty entry with no
1399 * arguments. Skip forward to the next entry.
1400 */
Grant Likely9a6b2e52010-07-23 01:48:25 -06001401 phandle = be32_to_cpup(list++);
Grant Likely15c9a0a2011-12-12 09:25:57 -07001402 if (phandle) {
1403 /*
1404 * Find the provider node and parse the #*-cells
Stephen Warren91d99422013-08-14 15:27:11 -06001405 * property to determine the argument length.
1406 *
1407 * This is not needed if the cell count is hard-coded
1408 * (i.e. cells_name not set, but cell_count is set),
1409 * except when we're going to return the found node
1410 * below.
Grant Likely15c9a0a2011-12-12 09:25:57 -07001411 */
Stephen Warren91d99422013-08-14 15:27:11 -06001412 if (cells_name || cur_index == index) {
1413 node = of_find_node_by_phandle(phandle);
1414 if (!node) {
1415 pr_err("%s: could not find phandle\n",
1416 np->full_name);
1417 goto err;
1418 }
Grant Likely15c9a0a2011-12-12 09:25:57 -07001419 }
Stephen Warren035fd942013-08-14 15:27:10 -06001420
1421 if (cells_name) {
1422 if (of_property_read_u32(node, cells_name,
1423 &count)) {
1424 pr_err("%s: could not get %s for %s\n",
1425 np->full_name, cells_name,
1426 node->full_name);
1427 goto err;
1428 }
1429 } else {
1430 count = cell_count;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001431 }
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001432
Grant Likely15c9a0a2011-12-12 09:25:57 -07001433 /*
1434 * Make sure that the arguments actually fit in the
1435 * remaining property data length
1436 */
1437 if (list + count > list_end) {
1438 pr_err("%s: arguments longer than property\n",
1439 np->full_name);
Grant Likely23ce04c2013-02-12 21:21:49 +00001440 goto err;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001441 }
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001442 }
1443
Grant Likely15c9a0a2011-12-12 09:25:57 -07001444 /*
1445 * All of the error cases above bail out of the loop, so at
1446 * this point, the parsing is successful. If the requested
1447 * index matches, then fill the out_args structure and return,
1448 * or return -ENOENT for an empty entry.
1449 */
Grant Likely23ce04c2013-02-12 21:21:49 +00001450 rc = -ENOENT;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001451 if (cur_index == index) {
1452 if (!phandle)
Grant Likely23ce04c2013-02-12 21:21:49 +00001453 goto err;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001454
Grant Likely15c9a0a2011-12-12 09:25:57 -07001455 if (out_args) {
1456 int i;
1457 if (WARN_ON(count > MAX_PHANDLE_ARGS))
1458 count = MAX_PHANDLE_ARGS;
1459 out_args->np = node;
1460 out_args->args_count = count;
1461 for (i = 0; i < count; i++)
1462 out_args->args[i] = be32_to_cpup(list++);
Tang Yuantianb855f162013-04-10 11:36:39 +08001463 } else {
1464 of_node_put(node);
Grant Likely15c9a0a2011-12-12 09:25:57 -07001465 }
Grant Likely23ce04c2013-02-12 21:21:49 +00001466
1467 /* Found it! return success */
Grant Likely15c9a0a2011-12-12 09:25:57 -07001468 return 0;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001469 }
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001470
1471 of_node_put(node);
1472 node = NULL;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001473 list += count;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001474 cur_index++;
1475 }
1476
Grant Likely23ce04c2013-02-12 21:21:49 +00001477 /*
1478 * Unlock node before returning result; will be one of:
1479 * -ENOENT : index is for empty phandle
1480 * -EINVAL : parsing error on data
Grant Likelybd69f732013-02-10 22:57:21 +00001481 * [1..n] : Number of phandle (count mode; when index = -1)
Grant Likely23ce04c2013-02-12 21:21:49 +00001482 */
Grant Likelybd69f732013-02-10 22:57:21 +00001483 rc = index < 0 ? cur_index : -ENOENT;
Grant Likely23ce04c2013-02-12 21:21:49 +00001484 err:
Grant Likely15c9a0a2011-12-12 09:25:57 -07001485 if (node)
1486 of_node_put(node);
Grant Likely23ce04c2013-02-12 21:21:49 +00001487 return rc;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001488}
Grant Likelybd69f732013-02-10 22:57:21 +00001489
Stephen Warreneded9dd2013-08-14 15:27:08 -06001490/**
Stephen Warren5fba49e2013-08-14 15:27:09 -06001491 * of_parse_phandle - Resolve a phandle property to a device_node pointer
1492 * @np: Pointer to device node holding phandle property
1493 * @phandle_name: Name of property holding a phandle value
1494 * @index: For properties holding a table of phandles, this is the index into
1495 * the table
1496 *
1497 * Returns the device_node pointer with refcount incremented. Use
1498 * of_node_put() on it when done.
1499 */
1500struct device_node *of_parse_phandle(const struct device_node *np,
1501 const char *phandle_name, int index)
1502{
Stephen Warren91d99422013-08-14 15:27:11 -06001503 struct of_phandle_args args;
Stephen Warren5fba49e2013-08-14 15:27:09 -06001504
Stephen Warren91d99422013-08-14 15:27:11 -06001505 if (index < 0)
Stephen Warren5fba49e2013-08-14 15:27:09 -06001506 return NULL;
1507
Stephen Warren91d99422013-08-14 15:27:11 -06001508 if (__of_parse_phandle_with_args(np, phandle_name, NULL, 0,
1509 index, &args))
1510 return NULL;
1511
1512 return args.np;
Stephen Warren5fba49e2013-08-14 15:27:09 -06001513}
1514EXPORT_SYMBOL(of_parse_phandle);
1515
1516/**
Stephen Warreneded9dd2013-08-14 15:27:08 -06001517 * of_parse_phandle_with_args() - Find a node pointed by phandle in a list
1518 * @np: pointer to a device tree node containing a list
1519 * @list_name: property name that contains a list
1520 * @cells_name: property name that specifies phandles' arguments count
1521 * @index: index of a phandle to parse out
1522 * @out_args: optional pointer to output arguments structure (will be filled)
1523 *
1524 * This function is useful to parse lists of phandles and their arguments.
1525 * Returns 0 on success and fills out_args, on error returns appropriate
1526 * errno value.
1527 *
Geert Uytterhoevend94a75c2014-10-22 11:44:52 +02001528 * Caller is responsible to call of_node_put() on the returned out_args->np
Stephen Warreneded9dd2013-08-14 15:27:08 -06001529 * pointer.
1530 *
1531 * Example:
1532 *
1533 * phandle1: node1 {
Geert Uytterhoevenc0e848d2014-10-22 11:44:55 +02001534 * #list-cells = <2>;
Stephen Warreneded9dd2013-08-14 15:27:08 -06001535 * }
1536 *
1537 * phandle2: node2 {
Geert Uytterhoevenc0e848d2014-10-22 11:44:55 +02001538 * #list-cells = <1>;
Stephen Warreneded9dd2013-08-14 15:27:08 -06001539 * }
1540 *
1541 * node3 {
Geert Uytterhoevenc0e848d2014-10-22 11:44:55 +02001542 * list = <&phandle1 1 2 &phandle2 3>;
Stephen Warreneded9dd2013-08-14 15:27:08 -06001543 * }
1544 *
1545 * To get a device_node of the `node2' node you may call this:
1546 * of_parse_phandle_with_args(node3, "list", "#list-cells", 1, &args);
1547 */
Grant Likelybd69f732013-02-10 22:57:21 +00001548int of_parse_phandle_with_args(const struct device_node *np, const char *list_name,
1549 const char *cells_name, int index,
1550 struct of_phandle_args *out_args)
1551{
1552 if (index < 0)
1553 return -EINVAL;
Stephen Warren035fd942013-08-14 15:27:10 -06001554 return __of_parse_phandle_with_args(np, list_name, cells_name, 0,
1555 index, out_args);
Grant Likelybd69f732013-02-10 22:57:21 +00001556}
Grant Likely15c9a0a2011-12-12 09:25:57 -07001557EXPORT_SYMBOL(of_parse_phandle_with_args);
Grant Likely02af11b2009-11-23 20:16:45 -07001558
Grant Likelybd69f732013-02-10 22:57:21 +00001559/**
Stephen Warren035fd942013-08-14 15:27:10 -06001560 * of_parse_phandle_with_fixed_args() - Find a node pointed by phandle in a list
1561 * @np: pointer to a device tree node containing a list
1562 * @list_name: property name that contains a list
1563 * @cell_count: number of argument cells following the phandle
1564 * @index: index of a phandle to parse out
1565 * @out_args: optional pointer to output arguments structure (will be filled)
1566 *
1567 * This function is useful to parse lists of phandles and their arguments.
1568 * Returns 0 on success and fills out_args, on error returns appropriate
1569 * errno value.
1570 *
Geert Uytterhoevend94a75c2014-10-22 11:44:52 +02001571 * Caller is responsible to call of_node_put() on the returned out_args->np
Stephen Warren035fd942013-08-14 15:27:10 -06001572 * pointer.
1573 *
1574 * Example:
1575 *
1576 * phandle1: node1 {
1577 * }
1578 *
1579 * phandle2: node2 {
1580 * }
1581 *
1582 * node3 {
Geert Uytterhoevenc0e848d2014-10-22 11:44:55 +02001583 * list = <&phandle1 0 2 &phandle2 2 3>;
Stephen Warren035fd942013-08-14 15:27:10 -06001584 * }
1585 *
1586 * To get a device_node of the `node2' node you may call this:
1587 * of_parse_phandle_with_fixed_args(node3, "list", 2, 1, &args);
1588 */
1589int of_parse_phandle_with_fixed_args(const struct device_node *np,
1590 const char *list_name, int cell_count,
1591 int index, struct of_phandle_args *out_args)
1592{
1593 if (index < 0)
1594 return -EINVAL;
1595 return __of_parse_phandle_with_args(np, list_name, NULL, cell_count,
1596 index, out_args);
1597}
1598EXPORT_SYMBOL(of_parse_phandle_with_fixed_args);
1599
1600/**
Grant Likelybd69f732013-02-10 22:57:21 +00001601 * of_count_phandle_with_args() - Find the number of phandles references in a property
1602 * @np: pointer to a device tree node containing a list
1603 * @list_name: property name that contains a list
1604 * @cells_name: property name that specifies phandles' arguments count
1605 *
1606 * Returns the number of phandle + argument tuples within a property. It
1607 * is a typical pattern to encode a list of phandle and variable
1608 * arguments into a single property. The number of arguments is encoded
1609 * by a property in the phandle-target node. For example, a gpios
1610 * property would contain a list of GPIO specifies consisting of a
1611 * phandle and 1 or more arguments. The number of arguments are
1612 * determined by the #gpio-cells property in the node pointed to by the
1613 * phandle.
1614 */
1615int of_count_phandle_with_args(const struct device_node *np, const char *list_name,
1616 const char *cells_name)
1617{
Stephen Warren035fd942013-08-14 15:27:10 -06001618 return __of_parse_phandle_with_args(np, list_name, cells_name, 0, -1,
1619 NULL);
Grant Likelybd69f732013-02-10 22:57:21 +00001620}
1621EXPORT_SYMBOL(of_count_phandle_with_args);
1622
Grant Likely02af11b2009-11-23 20:16:45 -07001623/**
Xiubo Li62664f62014-01-22 13:57:39 +08001624 * __of_add_property - Add a property to a node without lock operations
1625 */
Pantelis Antonioud8c50082014-07-04 19:58:46 +03001626int __of_add_property(struct device_node *np, struct property *prop)
Xiubo Li62664f62014-01-22 13:57:39 +08001627{
1628 struct property **next;
1629
1630 prop->next = NULL;
1631 next = &np->properties;
1632 while (*next) {
1633 if (strcmp(prop->name, (*next)->name) == 0)
1634 /* duplicate ! don't insert it */
1635 return -EEXIST;
1636
1637 next = &(*next)->next;
1638 }
1639 *next = prop;
1640
1641 return 0;
1642}
1643
1644/**
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001645 * of_add_property - Add a property to a node
Grant Likely02af11b2009-11-23 20:16:45 -07001646 */
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001647int of_add_property(struct device_node *np, struct property *prop)
Grant Likely02af11b2009-11-23 20:16:45 -07001648{
Grant Likely02af11b2009-11-23 20:16:45 -07001649 unsigned long flags;
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001650 int rc;
1651
Grant Likely8a2b22a2014-07-23 17:05:06 -06001652 mutex_lock(&of_mutex);
Grant Likely02af11b2009-11-23 20:16:45 -07001653
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001654 raw_spin_lock_irqsave(&devtree_lock, flags);
Xiubo Li62664f62014-01-22 13:57:39 +08001655 rc = __of_add_property(np, prop);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001656 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Grant Likely02af11b2009-11-23 20:16:45 -07001657
Grant Likely8a2b22a2014-07-23 17:05:06 -06001658 if (!rc)
Pantelis Antoniou0829f6d2013-12-13 20:08:59 +02001659 __of_add_property_sysfs(np, prop);
Grant Likely02af11b2009-11-23 20:16:45 -07001660
Grant Likely8a2b22a2014-07-23 17:05:06 -06001661 mutex_unlock(&of_mutex);
1662
Grant Likely259092a2014-07-16 12:48:23 -06001663 if (!rc)
1664 of_property_notify(OF_RECONFIG_ADD_PROPERTY, np, prop, NULL);
1665
Xiubo Li62664f62014-01-22 13:57:39 +08001666 return rc;
Grant Likely02af11b2009-11-23 20:16:45 -07001667}
1668
Pantelis Antonioud8c50082014-07-04 19:58:46 +03001669int __of_remove_property(struct device_node *np, struct property *prop)
1670{
1671 struct property **next;
1672
1673 for (next = &np->properties; *next; next = &(*next)->next) {
1674 if (*next == prop)
1675 break;
1676 }
1677 if (*next == NULL)
1678 return -ENODEV;
1679
1680 /* found the node */
1681 *next = prop->next;
1682 prop->next = np->deadprops;
1683 np->deadprops = prop;
1684
1685 return 0;
1686}
1687
Grant Likely8a2b22a2014-07-23 17:05:06 -06001688void __of_remove_property_sysfs(struct device_node *np, struct property *prop)
1689{
Gaurav Minochaef69d742014-09-05 09:56:13 -07001690 if (!IS_ENABLED(CONFIG_SYSFS))
1691 return;
1692
Grant Likely8a2b22a2014-07-23 17:05:06 -06001693 /* at early boot, bail here and defer setup to of_init() */
1694 if (of_kset && of_node_is_attached(np))
1695 sysfs_remove_bin_file(&np->kobj, &prop->attr);
1696}
1697
Grant Likely02af11b2009-11-23 20:16:45 -07001698/**
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001699 * of_remove_property - Remove a property from a node.
Grant Likely02af11b2009-11-23 20:16:45 -07001700 *
1701 * Note that we don't actually remove it, since we have given out
1702 * who-knows-how-many pointers to the data using get-property.
1703 * Instead we just move the property to the "dead properties"
1704 * list, so it won't be found any more.
1705 */
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001706int of_remove_property(struct device_node *np, struct property *prop)
Grant Likely02af11b2009-11-23 20:16:45 -07001707{
Grant Likely02af11b2009-11-23 20:16:45 -07001708 unsigned long flags;
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001709 int rc;
1710
Grant Likely8a2b22a2014-07-23 17:05:06 -06001711 mutex_lock(&of_mutex);
Grant Likely02af11b2009-11-23 20:16:45 -07001712
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001713 raw_spin_lock_irqsave(&devtree_lock, flags);
Pantelis Antonioud8c50082014-07-04 19:58:46 +03001714 rc = __of_remove_property(np, prop);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001715 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Grant Likely02af11b2009-11-23 20:16:45 -07001716
Grant Likely8a2b22a2014-07-23 17:05:06 -06001717 if (!rc)
1718 __of_remove_property_sysfs(np, prop);
Grant Likely02af11b2009-11-23 20:16:45 -07001719
Grant Likely8a2b22a2014-07-23 17:05:06 -06001720 mutex_unlock(&of_mutex);
Grant Likely75b57ec2014-02-20 18:02:11 +00001721
Grant Likely259092a2014-07-16 12:48:23 -06001722 if (!rc)
1723 of_property_notify(OF_RECONFIG_REMOVE_PROPERTY, np, prop, NULL);
1724
Grant Likely8a2b22a2014-07-23 17:05:06 -06001725 return rc;
Grant Likely02af11b2009-11-23 20:16:45 -07001726}
1727
Pantelis Antonioud8c50082014-07-04 19:58:46 +03001728int __of_update_property(struct device_node *np, struct property *newprop,
1729 struct property **oldpropp)
1730{
1731 struct property **next, *oldprop;
1732
1733 for (next = &np->properties; *next; next = &(*next)->next) {
1734 if (of_prop_cmp((*next)->name, newprop->name) == 0)
1735 break;
1736 }
1737 *oldpropp = oldprop = *next;
1738
1739 if (oldprop) {
1740 /* replace the node */
1741 newprop->next = oldprop->next;
1742 *next = newprop;
1743 oldprop->next = np->deadprops;
1744 np->deadprops = oldprop;
1745 } else {
1746 /* new node */
1747 newprop->next = NULL;
1748 *next = newprop;
1749 }
Grant Likely02af11b2009-11-23 20:16:45 -07001750
1751 return 0;
1752}
1753
Grant Likely8a2b22a2014-07-23 17:05:06 -06001754void __of_update_property_sysfs(struct device_node *np, struct property *newprop,
1755 struct property *oldprop)
1756{
Gaurav Minochaef69d742014-09-05 09:56:13 -07001757 if (!IS_ENABLED(CONFIG_SYSFS))
1758 return;
1759
Grant Likely8a2b22a2014-07-23 17:05:06 -06001760 /* At early boot, bail out and defer setup to of_init() */
1761 if (!of_kset)
1762 return;
1763
1764 if (oldprop)
1765 sysfs_remove_bin_file(&np->kobj, &oldprop->attr);
1766 __of_add_property_sysfs(np, newprop);
1767}
1768
Grant Likely02af11b2009-11-23 20:16:45 -07001769/*
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001770 * of_update_property - Update a property in a node, if the property does
Dong Aisheng475d0092012-07-11 15:16:37 +10001771 * not exist, add it.
Grant Likely02af11b2009-11-23 20:16:45 -07001772 *
1773 * Note that we don't actually remove it, since we have given out
1774 * who-knows-how-many pointers to the data using get-property.
1775 * Instead we just move the property to the "dead properties" list,
1776 * and add the new property to the property list
1777 */
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001778int of_update_property(struct device_node *np, struct property *newprop)
Grant Likely02af11b2009-11-23 20:16:45 -07001779{
Pantelis Antonioud8c50082014-07-04 19:58:46 +03001780 struct property *oldprop;
Grant Likely02af11b2009-11-23 20:16:45 -07001781 unsigned long flags;
Xiubo Li947fdaad02014-04-17 15:48:29 +08001782 int rc;
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001783
Dong Aisheng475d0092012-07-11 15:16:37 +10001784 if (!newprop->name)
1785 return -EINVAL;
1786
Grant Likely8a2b22a2014-07-23 17:05:06 -06001787 mutex_lock(&of_mutex);
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001788
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001789 raw_spin_lock_irqsave(&devtree_lock, flags);
Pantelis Antonioud8c50082014-07-04 19:58:46 +03001790 rc = __of_update_property(np, newprop, &oldprop);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001791 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Nathan Fontenote81b3292012-10-02 16:55:01 +00001792
Grant Likely8a2b22a2014-07-23 17:05:06 -06001793 if (!rc)
1794 __of_update_property_sysfs(np, newprop, oldprop);
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001795
Grant Likely8a2b22a2014-07-23 17:05:06 -06001796 mutex_unlock(&of_mutex);
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001797
Grant Likely259092a2014-07-16 12:48:23 -06001798 if (!rc)
1799 of_property_notify(OF_RECONFIG_UPDATE_PROPERTY, np, newprop, oldprop);
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001800
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001801 return rc;
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001802}
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001803
Shawn Guo611cad72011-08-15 15:28:14 +08001804static void of_alias_add(struct alias_prop *ap, struct device_node *np,
1805 int id, const char *stem, int stem_len)
1806{
1807 ap->np = np;
1808 ap->id = id;
1809 strncpy(ap->stem, stem, stem_len);
1810 ap->stem[stem_len] = 0;
1811 list_add_tail(&ap->link, &aliases_lookup);
1812 pr_debug("adding DT alias:%s: stem=%s id=%i node=%s\n",
Grant Likely74a7f082012-06-15 11:50:25 -06001813 ap->alias, ap->stem, ap->id, of_node_full_name(np));
Shawn Guo611cad72011-08-15 15:28:14 +08001814}
1815
1816/**
Geert Uytterhoeven1821dda2014-10-22 11:44:53 +02001817 * of_alias_scan - Scan all properties of the 'aliases' node
Shawn Guo611cad72011-08-15 15:28:14 +08001818 *
Geert Uytterhoeven1821dda2014-10-22 11:44:53 +02001819 * The function scans all the properties of the 'aliases' node and populates
1820 * the global lookup table with the properties. It returns the
1821 * number of alias properties found, or an error code in case of failure.
Shawn Guo611cad72011-08-15 15:28:14 +08001822 *
1823 * @dt_alloc: An allocator that provides a virtual address to memory
Geert Uytterhoeven1821dda2014-10-22 11:44:53 +02001824 * for storing the resulting tree
Shawn Guo611cad72011-08-15 15:28:14 +08001825 */
1826void of_alias_scan(void * (*dt_alloc)(u64 size, u64 align))
1827{
1828 struct property *pp;
1829
Laurentiu Tudor7dbe5842014-08-27 17:09:39 +03001830 of_aliases = of_find_node_by_path("/aliases");
Shawn Guo611cad72011-08-15 15:28:14 +08001831 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) {
Grant Likelya752ee52014-03-28 08:12:18 -07001836 /* linux,stdout-path and /aliases/stdout are for legacy compatibility */
Grant Likely676e1b22014-03-27 17:11:23 -07001837 const char *name = of_get_property(of_chosen, "stdout-path", NULL);
1838 if (!name)
1839 name = of_get_property(of_chosen, "linux,stdout-path", NULL);
Grant Likelya752ee52014-03-28 08:12:18 -07001840 if (IS_ENABLED(CONFIG_PPC) && !name)
1841 name = of_get_property(of_aliases, "stdout", NULL);
Sascha Hauer5c19e952013-08-05 14:40:44 +02001842 if (name)
1843 of_stdout = of_find_node_by_path(name);
1844 }
1845
Shawn Guo611cad72011-08-15 15:28:14 +08001846 if (!of_aliases)
1847 return;
1848
Dong Aisheng8af0da92011-12-22 20:19:24 +08001849 for_each_property_of_node(of_aliases, pp) {
Shawn Guo611cad72011-08-15 15:28:14 +08001850 const char *start = pp->name;
1851 const char *end = start + strlen(start);
1852 struct device_node *np;
1853 struct alias_prop *ap;
1854 int id, len;
1855
1856 /* Skip those we do not want to proceed */
1857 if (!strcmp(pp->name, "name") ||
1858 !strcmp(pp->name, "phandle") ||
1859 !strcmp(pp->name, "linux,phandle"))
1860 continue;
1861
1862 np = of_find_node_by_path(pp->value);
1863 if (!np)
1864 continue;
1865
1866 /* walk the alias backwards to extract the id and work out
1867 * the 'stem' string */
1868 while (isdigit(*(end-1)) && end > start)
1869 end--;
1870 len = end - start;
1871
1872 if (kstrtoint(end, 10, &id) < 0)
1873 continue;
1874
1875 /* Allocate an alias_prop with enough space for the stem */
1876 ap = dt_alloc(sizeof(*ap) + len + 1, 4);
1877 if (!ap)
1878 continue;
Grant Likely0640332e2013-08-28 21:24:17 +01001879 memset(ap, 0, sizeof(*ap) + len + 1);
Shawn Guo611cad72011-08-15 15:28:14 +08001880 ap->alias = start;
1881 of_alias_add(ap, np, id, start, len);
1882 }
1883}
1884
1885/**
1886 * of_alias_get_id - Get alias id for the given device_node
1887 * @np: Pointer to the given device_node
1888 * @stem: Alias stem of the given device_node
1889 *
Geert Uytterhoeven5a53a072014-03-11 11:23:38 +01001890 * The function travels the lookup table to get the alias id for the given
1891 * device_node and alias stem. It returns the alias id if found.
Shawn Guo611cad72011-08-15 15:28:14 +08001892 */
1893int of_alias_get_id(struct device_node *np, const char *stem)
1894{
1895 struct alias_prop *app;
1896 int id = -ENODEV;
1897
Pantelis Antoniouc05aba22014-07-04 19:58:03 +03001898 mutex_lock(&of_mutex);
Shawn Guo611cad72011-08-15 15:28:14 +08001899 list_for_each_entry(app, &aliases_lookup, link) {
1900 if (strcmp(app->stem, stem) != 0)
1901 continue;
1902
1903 if (np == app->np) {
1904 id = app->id;
1905 break;
1906 }
1907 }
Pantelis Antoniouc05aba22014-07-04 19:58:03 +03001908 mutex_unlock(&of_mutex);
Shawn Guo611cad72011-08-15 15:28:14 +08001909
1910 return id;
1911}
1912EXPORT_SYMBOL_GPL(of_alias_get_id);
Stephen Warrenc541adc2012-04-04 09:27:46 -06001913
1914const __be32 *of_prop_next_u32(struct property *prop, const __be32 *cur,
1915 u32 *pu)
1916{
1917 const void *curv = cur;
1918
1919 if (!prop)
1920 return NULL;
1921
1922 if (!cur) {
1923 curv = prop->value;
1924 goto out_val;
1925 }
1926
1927 curv += sizeof(*cur);
1928 if (curv >= prop->value + prop->length)
1929 return NULL;
1930
1931out_val:
1932 *pu = be32_to_cpup(curv);
1933 return curv;
1934}
1935EXPORT_SYMBOL_GPL(of_prop_next_u32);
1936
1937const char *of_prop_next_string(struct property *prop, const char *cur)
1938{
1939 const void *curv = cur;
1940
1941 if (!prop)
1942 return NULL;
1943
1944 if (!cur)
1945 return prop->value;
1946
1947 curv += strlen(cur) + 1;
1948 if (curv >= prop->value + prop->length)
1949 return NULL;
1950
1951 return curv;
1952}
1953EXPORT_SYMBOL_GPL(of_prop_next_string);
Sascha Hauer5c19e952013-08-05 14:40:44 +02001954
1955/**
Grant Likely3482f2c2014-03-27 17:18:55 -07001956 * of_console_check() - Test and setup console for DT setup
1957 * @dn - Pointer to device node
1958 * @name - Name to use for preferred console without index. ex. "ttyS"
1959 * @index - Index to use for preferred console.
Sascha Hauer5c19e952013-08-05 14:40:44 +02001960 *
Grant Likely3482f2c2014-03-27 17:18:55 -07001961 * Check if the given device node matches the stdout-path property in the
1962 * /chosen node. If it does then register it as the preferred console and return
1963 * TRUE. Otherwise return FALSE.
Sascha Hauer5c19e952013-08-05 14:40:44 +02001964 */
Grant Likely3482f2c2014-03-27 17:18:55 -07001965bool of_console_check(struct device_node *dn, char *name, int index)
Sascha Hauer5c19e952013-08-05 14:40:44 +02001966{
Grant Likely3482f2c2014-03-27 17:18:55 -07001967 if (!dn || dn != of_stdout || console_set_on_cmdline)
Sascha Hauer5c19e952013-08-05 14:40:44 +02001968 return false;
Brian Norris5f74d8b2014-09-03 11:06:43 -07001969 return !add_preferred_console(name, index, NULL);
Sascha Hauer5c19e952013-08-05 14:40:44 +02001970}
Grant Likely3482f2c2014-03-27 17:18:55 -07001971EXPORT_SYMBOL_GPL(of_console_check);
Sudeep KarkadaNageshaa3e31b42013-09-18 11:53:05 +01001972
1973/**
1974 * of_find_next_cache_node - Find a node's subsidiary cache
1975 * @np: node of type "cpu" or "cache"
1976 *
1977 * Returns a node pointer with refcount incremented, use
1978 * of_node_put() on it when done. Caller should hold a reference
1979 * to np.
1980 */
1981struct device_node *of_find_next_cache_node(const struct device_node *np)
1982{
1983 struct device_node *child;
1984 const phandle *handle;
1985
1986 handle = of_get_property(np, "l2-cache", NULL);
1987 if (!handle)
1988 handle = of_get_property(np, "next-level-cache", NULL);
1989
1990 if (handle)
1991 return of_find_node_by_phandle(be32_to_cpup(handle));
1992
1993 /* OF on pmac has nodes instead of properties named "l2-cache"
1994 * beneath CPU nodes.
1995 */
1996 if (!strcmp(np->type, "cpu"))
1997 for_each_child_of_node(np, child)
1998 if (!strcmp(child->type, "cache"))
1999 return child;
2000
2001 return NULL;
2002}
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002003
2004/**
Philipp Zabelf2a575f2014-02-14 11:53:56 +01002005 * of_graph_parse_endpoint() - parse common endpoint node properties
2006 * @node: pointer to endpoint device_node
2007 * @endpoint: pointer to the OF endpoint data structure
2008 *
2009 * The caller should hold a reference to @node.
2010 */
2011int of_graph_parse_endpoint(const struct device_node *node,
2012 struct of_endpoint *endpoint)
2013{
2014 struct device_node *port_node = of_get_parent(node);
2015
Philipp Zabeld4847002014-03-04 12:31:24 +01002016 WARN_ONCE(!port_node, "%s(): endpoint %s has no parent node\n",
2017 __func__, node->full_name);
2018
Philipp Zabelf2a575f2014-02-14 11:53:56 +01002019 memset(endpoint, 0, sizeof(*endpoint));
2020
2021 endpoint->local_node = node;
2022 /*
2023 * It doesn't matter whether the two calls below succeed.
2024 * If they don't then the default value 0 is used.
2025 */
2026 of_property_read_u32(port_node, "reg", &endpoint->port);
2027 of_property_read_u32(node, "reg", &endpoint->id);
2028
2029 of_node_put(port_node);
2030
2031 return 0;
2032}
2033EXPORT_SYMBOL(of_graph_parse_endpoint);
2034
2035/**
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002036 * of_graph_get_next_endpoint() - get next endpoint node
2037 * @parent: pointer to the parent device node
2038 * @prev: previous endpoint node, or NULL to get first
2039 *
2040 * Return: An 'endpoint' node pointer with refcount incremented. Refcount
2041 * of the passed @prev node is not decremented, the caller have to use
2042 * of_node_put() on it when done.
2043 */
2044struct device_node *of_graph_get_next_endpoint(const struct device_node *parent,
2045 struct device_node *prev)
2046{
2047 struct device_node *endpoint;
Linus Torvalds3c83e612014-04-04 09:50:07 -07002048 struct device_node *port;
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002049
2050 if (!parent)
2051 return NULL;
2052
Linus Torvalds3c83e612014-04-04 09:50:07 -07002053 /*
2054 * Start by locating the port node. If no previous endpoint is specified
2055 * search for the first port node, otherwise get the previous endpoint
2056 * parent port node.
2057 */
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002058 if (!prev) {
2059 struct device_node *node;
Linus Torvalds3c83e612014-04-04 09:50:07 -07002060
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002061 node = of_get_child_by_name(parent, "ports");
2062 if (node)
2063 parent = node;
2064
2065 port = of_get_child_by_name(parent, "port");
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002066 of_node_put(node);
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002067
Linus Torvalds3c83e612014-04-04 09:50:07 -07002068 if (!port) {
2069 pr_err("%s(): no port node found in %s\n",
2070 __func__, parent->full_name);
Philipp Zabel4329b932014-02-26 20:43:42 +01002071 return NULL;
Linus Torvalds3c83e612014-04-04 09:50:07 -07002072 }
2073 } else {
2074 port = of_get_parent(prev);
2075 if (WARN_ONCE(!port, "%s(): endpoint %s has no parent node\n",
2076 __func__, prev->full_name))
2077 return NULL;
Philipp Zabel4329b932014-02-26 20:43:42 +01002078
Linus Torvalds3c83e612014-04-04 09:50:07 -07002079 /*
2080 * Avoid dropping prev node refcount to 0 when getting the next
2081 * child below.
2082 */
2083 of_node_get(prev);
2084 }
Philipp Zabel4329b932014-02-26 20:43:42 +01002085
Linus Torvalds3c83e612014-04-04 09:50:07 -07002086 while (1) {
2087 /*
2088 * Now that we have a port node, get the next endpoint by
2089 * getting the next child. If the previous endpoint is NULL this
2090 * will return the first child.
2091 */
2092 endpoint = of_get_next_child(port, prev);
2093 if (endpoint) {
2094 of_node_put(port);
2095 return endpoint;
2096 }
2097
2098 /* No more endpoints under this port, try the next one. */
2099 prev = NULL;
2100
2101 do {
2102 port = of_get_next_child(parent, port);
2103 if (!port)
2104 return NULL;
2105 } while (of_node_cmp(port->name, "port"));
2106 }
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002107}
2108EXPORT_SYMBOL(of_graph_get_next_endpoint);
2109
2110/**
2111 * of_graph_get_remote_port_parent() - get remote port's parent node
2112 * @node: pointer to a local endpoint device_node
2113 *
2114 * Return: Remote device node associated with remote endpoint node linked
2115 * to @node. Use of_node_put() on it when done.
2116 */
2117struct device_node *of_graph_get_remote_port_parent(
2118 const struct device_node *node)
2119{
2120 struct device_node *np;
2121 unsigned int depth;
2122
2123 /* Get remote endpoint node. */
2124 np = of_parse_phandle(node, "remote-endpoint", 0);
2125
2126 /* Walk 3 levels up only if there is 'ports' node. */
2127 for (depth = 3; depth && np; depth--) {
2128 np = of_get_next_parent(np);
2129 if (depth == 2 && of_node_cmp(np->name, "ports"))
2130 break;
2131 }
2132 return np;
2133}
2134EXPORT_SYMBOL(of_graph_get_remote_port_parent);
2135
2136/**
2137 * of_graph_get_remote_port() - get remote port node
2138 * @node: pointer to a local endpoint device_node
2139 *
2140 * Return: Remote port node associated with remote endpoint node linked
2141 * to @node. Use of_node_put() on it when done.
2142 */
2143struct device_node *of_graph_get_remote_port(const struct device_node *node)
2144{
2145 struct device_node *np;
2146
2147 /* Get remote endpoint node. */
2148 np = of_parse_phandle(node, "remote-endpoint", 0);
2149 if (!np)
2150 return NULL;
2151 return of_get_next_parent(np);
2152}
2153EXPORT_SYMBOL(of_graph_get_remote_port);