blob: 4c2ccde42427b864c570dd2b106b9ec35eaf95c5 [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
Randy Dunlap465aac62012-11-30 10:01:51 +000035struct device_node *of_allnodes;
36EXPORT_SYMBOL(of_allnodes);
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
Stephen Rothwell581b6052007-04-24 16:46:53 +100051/* use when traversing tree through the allnext, child, sibling,
52 * 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 Likely75b57ec2014-02-20 18:02:11 +0000207 if (of_allnodes)
208 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 Likelye91edcf2009-10-15 10:58:09 -0600248/**
249 * of_find_all_nodes - Get next node in global list
250 * @prev: Previous node or NULL to start iteration
251 * of_node_put() will be called on it
252 *
253 * Returns a node pointer with refcount incremented, use
254 * of_node_put() on it when done.
255 */
256struct device_node *of_find_all_nodes(struct device_node *prev)
257{
258 struct device_node *np;
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000259 unsigned long flags;
Grant Likelye91edcf2009-10-15 10:58:09 -0600260
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000261 raw_spin_lock_irqsave(&devtree_lock, flags);
Randy Dunlap465aac62012-11-30 10:01:51 +0000262 np = prev ? prev->allnext : of_allnodes;
Grant Likelye91edcf2009-10-15 10:58:09 -0600263 for (; np != NULL; np = np->allnext)
264 if (of_node_get(np))
265 break;
266 of_node_put(prev);
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000267 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Grant Likelye91edcf2009-10-15 10:58:09 -0600268 return np;
269}
270EXPORT_SYMBOL(of_find_all_nodes);
271
Stephen Rothwell97e873e2007-05-01 16:26:07 +1000272/*
273 * Find a property with a given name for a given node
274 * and return the value.
275 */
Grant Likelya25095d2014-07-15 23:25:43 -0600276const void *__of_get_property(const struct device_node *np,
277 const char *name, int *lenp)
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500278{
279 struct property *pp = __of_find_property(np, name, lenp);
280
281 return pp ? pp->value : NULL;
282}
283
284/*
285 * Find a property with a given name for a given node
286 * and return the value.
287 */
Stephen Rothwell97e873e2007-05-01 16:26:07 +1000288const void *of_get_property(const struct device_node *np, const char *name,
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500289 int *lenp)
Stephen Rothwell97e873e2007-05-01 16:26:07 +1000290{
291 struct property *pp = of_find_property(np, name, lenp);
292
293 return pp ? pp->value : NULL;
294}
295EXPORT_SYMBOL(of_get_property);
Stephen Rothwell0081cbc2007-05-01 16:29:19 +1000296
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100297/*
298 * arch_match_cpu_phys_id - Match the given logical CPU and physical id
299 *
300 * @cpu: logical cpu index of a core/thread
301 * @phys_id: physical identifier of a core/thread
302 *
303 * CPU logical to physical index mapping is architecture specific.
304 * However this __weak function provides a default match of physical
305 * id to logical cpu index. phys_id provided here is usually values read
306 * from the device tree which must match the hardware internal registers.
307 *
308 * Returns true if the physical identifier and the logical cpu index
309 * correspond to the same core/thread, false otherwise.
310 */
311bool __weak arch_match_cpu_phys_id(int cpu, u64 phys_id)
312{
313 return (u32)phys_id == cpu;
314}
315
316/**
317 * Checks if the given "prop_name" property holds the physical id of the
318 * core/thread corresponding to the logical cpu 'cpu'. If 'thread' is not
319 * NULL, local thread number within the core is returned in it.
320 */
321static bool __of_find_n_match_cpu_property(struct device_node *cpun,
322 const char *prop_name, int cpu, unsigned int *thread)
323{
324 const __be32 *cell;
325 int ac, prop_len, tid;
326 u64 hwid;
327
328 ac = of_n_addr_cells(cpun);
329 cell = of_get_property(cpun, prop_name, &prop_len);
Grant Likelyf3cea452013-10-04 17:24:26 +0100330 if (!cell || !ac)
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100331 return false;
Grant Likelyf3cea452013-10-04 17:24:26 +0100332 prop_len /= sizeof(*cell) * ac;
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100333 for (tid = 0; tid < prop_len; tid++) {
334 hwid = of_read_number(cell, ac);
335 if (arch_match_cpu_phys_id(cpu, hwid)) {
336 if (thread)
337 *thread = tid;
338 return true;
339 }
340 cell += ac;
341 }
342 return false;
343}
344
David Millerd1cb9d12013-10-03 17:24:51 -0400345/*
346 * arch_find_n_match_cpu_physical_id - See if the given device node is
347 * for the cpu corresponding to logical cpu 'cpu'. Return true if so,
348 * else false. If 'thread' is non-NULL, the local thread number within the
349 * core is returned in it.
350 */
351bool __weak arch_find_n_match_cpu_physical_id(struct device_node *cpun,
352 int cpu, unsigned int *thread)
353{
354 /* Check for non-standard "ibm,ppc-interrupt-server#s" property
355 * for thread ids on PowerPC. If it doesn't exist fallback to
356 * standard "reg" property.
357 */
358 if (IS_ENABLED(CONFIG_PPC) &&
359 __of_find_n_match_cpu_property(cpun,
360 "ibm,ppc-interrupt-server#s",
361 cpu, thread))
362 return true;
363
364 if (__of_find_n_match_cpu_property(cpun, "reg", cpu, thread))
365 return true;
366
367 return false;
368}
369
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100370/**
371 * of_get_cpu_node - Get device node associated with the given logical CPU
372 *
373 * @cpu: CPU number(logical index) for which device node is required
374 * @thread: if not NULL, local thread number within the physical core is
375 * returned
376 *
377 * The main purpose of this function is to retrieve the device node for the
378 * given logical CPU index. It should be used to initialize the of_node in
379 * cpu device. Once of_node in cpu device is populated, all the further
380 * references can use that instead.
381 *
382 * CPU logical to physical index mapping is architecture specific and is built
383 * before booting secondary cores. This function uses arch_match_cpu_phys_id
384 * which can be overridden by architecture specific implementation.
385 *
386 * Returns a node pointer for the logical cpu if found, else NULL.
387 */
388struct device_node *of_get_cpu_node(int cpu, unsigned int *thread)
389{
David Millerd1cb9d12013-10-03 17:24:51 -0400390 struct device_node *cpun;
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100391
David Millerd1cb9d12013-10-03 17:24:51 -0400392 for_each_node_by_type(cpun, "cpu") {
393 if (arch_find_n_match_cpu_physical_id(cpun, cpu, thread))
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100394 return cpun;
395 }
396 return NULL;
397}
398EXPORT_SYMBOL(of_get_cpu_node);
399
Kevin Hao215a14c2014-02-19 16:15:45 +0800400/**
401 * __of_device_is_compatible() - Check if the node matches given constraints
402 * @device: pointer to node
403 * @compat: required compatible string, NULL or "" for any match
404 * @type: required device_type value, NULL or "" for any match
405 * @name: required node name, NULL or "" for any match
406 *
407 * Checks if the given @compat, @type and @name strings match the
408 * properties of the given @device. A constraints can be skipped by
409 * passing NULL or an empty string as the constraint.
410 *
411 * Returns 0 for no match, and a positive integer on match. The return
412 * value is a relative score with larger values indicating better
413 * matches. The score is weighted for the most specific compatible value
414 * to get the highest score. Matching type is next, followed by matching
415 * name. Practically speaking, this results in the following priority
416 * order for matches:
417 *
418 * 1. specific compatible && type && name
419 * 2. specific compatible && type
420 * 3. specific compatible && name
421 * 4. specific compatible
422 * 5. general compatible && type && name
423 * 6. general compatible && type
424 * 7. general compatible && name
425 * 8. general compatible
426 * 9. type && name
427 * 10. type
428 * 11. name
Stephen Rothwell0081cbc2007-05-01 16:29:19 +1000429 */
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500430static int __of_device_is_compatible(const struct device_node *device,
Kevin Hao215a14c2014-02-19 16:15:45 +0800431 const char *compat, const char *type, const char *name)
Stephen Rothwell0081cbc2007-05-01 16:29:19 +1000432{
Kevin Hao215a14c2014-02-19 16:15:45 +0800433 struct property *prop;
434 const char *cp;
435 int index = 0, score = 0;
Stephen Rothwell0081cbc2007-05-01 16:29:19 +1000436
Kevin Hao215a14c2014-02-19 16:15:45 +0800437 /* Compatible match has highest priority */
438 if (compat && compat[0]) {
439 prop = __of_find_property(device, "compatible", NULL);
440 for (cp = of_prop_next_string(prop, NULL); cp;
441 cp = of_prop_next_string(prop, cp), index++) {
442 if (of_compat_cmp(cp, compat, strlen(compat)) == 0) {
443 score = INT_MAX/2 - (index << 2);
444 break;
445 }
446 }
447 if (!score)
448 return 0;
Stephen Rothwell0081cbc2007-05-01 16:29:19 +1000449 }
450
Kevin Hao215a14c2014-02-19 16:15:45 +0800451 /* Matching type is better than matching name */
452 if (type && type[0]) {
453 if (!device->type || of_node_cmp(type, device->type))
454 return 0;
455 score += 2;
456 }
457
458 /* Matching name is a bit better than not */
459 if (name && name[0]) {
460 if (!device->name || of_node_cmp(name, device->name))
461 return 0;
462 score++;
463 }
464
465 return score;
Stephen Rothwell0081cbc2007-05-01 16:29:19 +1000466}
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500467
468/** Checks if the given "compat" string matches one of the strings in
469 * the device's "compatible" property
470 */
471int of_device_is_compatible(const struct device_node *device,
472 const char *compat)
473{
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500474 unsigned long flags;
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500475 int res;
476
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500477 raw_spin_lock_irqsave(&devtree_lock, flags);
Kevin Hao215a14c2014-02-19 16:15:45 +0800478 res = __of_device_is_compatible(device, compat, NULL, NULL);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500479 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500480 return res;
481}
Stephen Rothwell0081cbc2007-05-01 16:29:19 +1000482EXPORT_SYMBOL(of_device_is_compatible);
Stephen Rothwelle679c5f2007-04-24 17:16:16 +1000483
484/**
Grant Likely71a157e2010-02-01 21:34:14 -0700485 * of_machine_is_compatible - Test root of device tree for a given compatible value
Grant Likely1f43cfb2010-01-28 13:47:25 -0700486 * @compat: compatible string to look for in root node's compatible property.
487 *
488 * Returns true if the root node has the given value in its
489 * compatible property.
490 */
Grant Likely71a157e2010-02-01 21:34:14 -0700491int of_machine_is_compatible(const char *compat)
Grant Likely1f43cfb2010-01-28 13:47:25 -0700492{
493 struct device_node *root;
494 int rc = 0;
495
496 root = of_find_node_by_path("/");
497 if (root) {
498 rc = of_device_is_compatible(root, compat);
499 of_node_put(root);
500 }
501 return rc;
502}
Grant Likely71a157e2010-02-01 21:34:14 -0700503EXPORT_SYMBOL(of_machine_is_compatible);
Grant Likely1f43cfb2010-01-28 13:47:25 -0700504
505/**
Stephen Warrenc31a0c02013-02-11 14:15:32 -0700506 * __of_device_is_available - check if a device is available for use
Josh Boyer834d97d2008-03-27 00:33:14 +1100507 *
Stephen Warrenc31a0c02013-02-11 14:15:32 -0700508 * @device: Node to check for availability, with locks already held
Josh Boyer834d97d2008-03-27 00:33:14 +1100509 *
510 * Returns 1 if the status property is absent or set to "okay" or "ok",
511 * 0 otherwise
512 */
Stephen Warrenc31a0c02013-02-11 14:15:32 -0700513static int __of_device_is_available(const struct device_node *device)
Josh Boyer834d97d2008-03-27 00:33:14 +1100514{
515 const char *status;
516 int statlen;
517
Xiubo Li42ccd782014-01-13 11:07:28 +0800518 if (!device)
519 return 0;
520
Stephen Warrenc31a0c02013-02-11 14:15:32 -0700521 status = __of_get_property(device, "status", &statlen);
Josh Boyer834d97d2008-03-27 00:33:14 +1100522 if (status == NULL)
523 return 1;
524
525 if (statlen > 0) {
526 if (!strcmp(status, "okay") || !strcmp(status, "ok"))
527 return 1;
528 }
529
530 return 0;
531}
Stephen Warrenc31a0c02013-02-11 14:15:32 -0700532
533/**
534 * of_device_is_available - check if a device is available for use
535 *
536 * @device: Node to check for availability
537 *
538 * Returns 1 if the status property is absent or set to "okay" or "ok",
539 * 0 otherwise
540 */
541int of_device_is_available(const struct device_node *device)
542{
543 unsigned long flags;
544 int res;
545
546 raw_spin_lock_irqsave(&devtree_lock, flags);
547 res = __of_device_is_available(device);
548 raw_spin_unlock_irqrestore(&devtree_lock, flags);
549 return res;
550
551}
Josh Boyer834d97d2008-03-27 00:33:14 +1100552EXPORT_SYMBOL(of_device_is_available);
553
554/**
Stephen Rothwelle679c5f2007-04-24 17:16:16 +1000555 * of_get_parent - Get a node's parent if any
556 * @node: Node to get parent
557 *
558 * Returns a node pointer with refcount incremented, use
559 * of_node_put() on it when done.
560 */
561struct device_node *of_get_parent(const struct device_node *node)
562{
563 struct device_node *np;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500564 unsigned long flags;
Stephen Rothwelle679c5f2007-04-24 17:16:16 +1000565
566 if (!node)
567 return NULL;
568
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500569 raw_spin_lock_irqsave(&devtree_lock, flags);
Stephen Rothwelle679c5f2007-04-24 17:16:16 +1000570 np = of_node_get(node->parent);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500571 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwelle679c5f2007-04-24 17:16:16 +1000572 return np;
573}
574EXPORT_SYMBOL(of_get_parent);
Stephen Rothwelld1cd3552007-04-24 17:21:29 +1000575
576/**
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000577 * of_get_next_parent - Iterate to a node's parent
578 * @node: Node to get parent of
579 *
580 * This is like of_get_parent() except that it drops the
581 * refcount on the passed node, making it suitable for iterating
582 * through a node's parents.
583 *
584 * Returns a node pointer with refcount incremented, use
585 * of_node_put() on it when done.
586 */
587struct device_node *of_get_next_parent(struct device_node *node)
588{
589 struct device_node *parent;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500590 unsigned long flags;
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000591
592 if (!node)
593 return NULL;
594
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500595 raw_spin_lock_irqsave(&devtree_lock, flags);
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000596 parent = of_node_get(node->parent);
597 of_node_put(node);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500598 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000599 return parent;
600}
Guennadi Liakhovetski6695be62013-04-02 12:28:11 -0300601EXPORT_SYMBOL(of_get_next_parent);
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000602
Grant Likely0d0e02d2014-05-22 01:04:17 +0900603static struct device_node *__of_get_next_child(const struct device_node *node,
604 struct device_node *prev)
605{
606 struct device_node *next;
607
Florian Fainelli43cb4362014-05-28 10:39:02 -0700608 if (!node)
609 return NULL;
610
Grant Likely0d0e02d2014-05-22 01:04:17 +0900611 next = prev ? prev->sibling : node->child;
612 for (; next; next = next->sibling)
613 if (of_node_get(next))
614 break;
615 of_node_put(prev);
616 return next;
617}
618#define __for_each_child_of_node(parent, child) \
619 for (child = __of_get_next_child(parent, NULL); child != NULL; \
620 child = __of_get_next_child(parent, child))
621
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000622/**
Stephen Rothwelld1cd3552007-04-24 17:21:29 +1000623 * of_get_next_child - Iterate a node childs
624 * @node: parent node
625 * @prev: previous child of the parent node, or NULL to get first
626 *
627 * Returns a node pointer with refcount incremented, use
628 * of_node_put() on it when done.
629 */
630struct device_node *of_get_next_child(const struct device_node *node,
631 struct device_node *prev)
632{
633 struct device_node *next;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500634 unsigned long flags;
Stephen Rothwelld1cd3552007-04-24 17:21:29 +1000635
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500636 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likely0d0e02d2014-05-22 01:04:17 +0900637 next = __of_get_next_child(node, prev);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500638 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwelld1cd3552007-04-24 17:21:29 +1000639 return next;
640}
641EXPORT_SYMBOL(of_get_next_child);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000642
643/**
Timur Tabi32961932012-08-14 13:20:23 +0000644 * of_get_next_available_child - Find the next available child node
645 * @node: parent node
646 * @prev: previous child of the parent node, or NULL to get first
647 *
648 * This function is like of_get_next_child(), except that it
649 * automatically skips any disabled nodes (i.e. status = "disabled").
650 */
651struct device_node *of_get_next_available_child(const struct device_node *node,
652 struct device_node *prev)
653{
654 struct device_node *next;
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000655 unsigned long flags;
Timur Tabi32961932012-08-14 13:20:23 +0000656
Florian Fainelli43cb4362014-05-28 10:39:02 -0700657 if (!node)
658 return NULL;
659
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000660 raw_spin_lock_irqsave(&devtree_lock, flags);
Timur Tabi32961932012-08-14 13:20:23 +0000661 next = prev ? prev->sibling : node->child;
662 for (; next; next = next->sibling) {
Stephen Warrenc31a0c02013-02-11 14:15:32 -0700663 if (!__of_device_is_available(next))
Timur Tabi32961932012-08-14 13:20:23 +0000664 continue;
665 if (of_node_get(next))
666 break;
667 }
668 of_node_put(prev);
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000669 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Timur Tabi32961932012-08-14 13:20:23 +0000670 return next;
671}
672EXPORT_SYMBOL(of_get_next_available_child);
673
674/**
Srinivas Kandagatla9c197612012-09-18 08:10:28 +0100675 * of_get_child_by_name - Find the child node by name for a given parent
676 * @node: parent node
677 * @name: child name to look for.
678 *
679 * This function looks for child node for given matching name
680 *
681 * Returns a node pointer if found, with refcount incremented, use
682 * of_node_put() on it when done.
683 * Returns NULL if node is not found.
684 */
685struct device_node *of_get_child_by_name(const struct device_node *node,
686 const char *name)
687{
688 struct device_node *child;
689
690 for_each_child_of_node(node, child)
691 if (child->name && (of_node_cmp(child->name, name) == 0))
692 break;
693 return child;
694}
695EXPORT_SYMBOL(of_get_child_by_name);
696
Grant Likelyc22e6502014-03-14 17:07:12 +0000697static struct device_node *__of_find_node_by_path(struct device_node *parent,
698 const char *path)
699{
700 struct device_node *child;
701 int len = strchrnul(path, '/') - path;
702
703 if (!len)
704 return NULL;
705
706 __for_each_child_of_node(parent, child) {
707 const char *name = strrchr(child->full_name, '/');
708 if (WARN(!name, "malformed device_node %s\n", child->full_name))
709 continue;
710 name++;
711 if (strncmp(path, name, len) == 0 && (strlen(name) == len))
712 return child;
713 }
714 return NULL;
715}
716
Srinivas Kandagatla9c197612012-09-18 08:10:28 +0100717/**
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000718 * of_find_node_by_path - Find a node matching a full OF path
Grant Likelyc22e6502014-03-14 17:07:12 +0000719 * @path: Either the full path to match, or if the path does not
720 * start with '/', the name of a property of the /aliases
721 * node (an alias). In the case of an alias, the node
722 * matching the alias' value will be returned.
723 *
724 * Valid paths:
725 * /foo/bar Full path
726 * foo Valid alias
727 * foo/bar Valid alias + relative path
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000728 *
729 * Returns a node pointer with refcount incremented, use
730 * of_node_put() on it when done.
731 */
732struct device_node *of_find_node_by_path(const char *path)
733{
Grant Likelyc22e6502014-03-14 17:07:12 +0000734 struct device_node *np = NULL;
735 struct property *pp;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500736 unsigned long flags;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000737
Grant Likelyc22e6502014-03-14 17:07:12 +0000738 if (strcmp(path, "/") == 0)
739 return of_node_get(of_allnodes);
740
741 /* The path could begin with an alias */
742 if (*path != '/') {
743 char *p = strchrnul(path, '/');
744 int len = p - path;
745
746 /* of_aliases must not be NULL */
747 if (!of_aliases)
748 return NULL;
749
750 for_each_property_of_node(of_aliases, pp) {
751 if (strlen(pp->name) == len && !strncmp(pp->name, path, len)) {
752 np = of_find_node_by_path(pp->value);
753 break;
754 }
755 }
756 if (!np)
757 return NULL;
758 path = p;
759 }
760
761 /* Step down the tree matching path components */
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500762 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likelyc22e6502014-03-14 17:07:12 +0000763 if (!np)
764 np = of_node_get(of_allnodes);
765 while (np && *path == '/') {
766 path++; /* Increment past '/' delimiter */
767 np = __of_find_node_by_path(np, path);
768 path = strchrnul(path, '/');
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000769 }
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500770 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000771 return np;
772}
773EXPORT_SYMBOL(of_find_node_by_path);
774
775/**
776 * of_find_node_by_name - Find a node by its "name" property
777 * @from: The node to start searching from or NULL, the node
778 * you pass will not be searched, only the next one
779 * will; typically, you pass what the previous call
780 * returned. of_node_put() will be called on it
781 * @name: The name string to match against
782 *
783 * Returns a node pointer with refcount incremented, use
784 * of_node_put() on it when done.
785 */
786struct device_node *of_find_node_by_name(struct device_node *from,
787 const char *name)
788{
789 struct device_node *np;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500790 unsigned long flags;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000791
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500792 raw_spin_lock_irqsave(&devtree_lock, flags);
Randy Dunlap465aac62012-11-30 10:01:51 +0000793 np = from ? from->allnext : of_allnodes;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000794 for (; np; np = np->allnext)
795 if (np->name && (of_node_cmp(np->name, name) == 0)
796 && of_node_get(np))
797 break;
798 of_node_put(from);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500799 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000800 return np;
801}
802EXPORT_SYMBOL(of_find_node_by_name);
803
804/**
805 * of_find_node_by_type - Find a node by its "device_type" property
806 * @from: The node to start searching from, or NULL to start searching
807 * the entire device tree. The node you pass will not be
808 * searched, only the next one will; typically, you pass
809 * what the previous call returned. of_node_put() will be
810 * called on from for you.
811 * @type: The type string to match against
812 *
813 * Returns a node pointer with refcount incremented, use
814 * of_node_put() on it when done.
815 */
816struct device_node *of_find_node_by_type(struct device_node *from,
817 const char *type)
818{
819 struct device_node *np;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500820 unsigned long flags;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000821
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500822 raw_spin_lock_irqsave(&devtree_lock, flags);
Randy Dunlap465aac62012-11-30 10:01:51 +0000823 np = from ? from->allnext : of_allnodes;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000824 for (; np; np = np->allnext)
825 if (np->type && (of_node_cmp(np->type, type) == 0)
826 && of_node_get(np))
827 break;
828 of_node_put(from);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500829 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000830 return np;
831}
832EXPORT_SYMBOL(of_find_node_by_type);
833
834/**
835 * of_find_compatible_node - Find a node based on type and one of the
836 * tokens in its "compatible" property
837 * @from: The node to start searching from or NULL, the node
838 * you pass will not be searched, only the next one
839 * will; typically, you pass what the previous call
840 * returned. of_node_put() will be called on it
841 * @type: The type string to match "device_type" or NULL to ignore
842 * @compatible: The string to match to one of the tokens in the device
843 * "compatible" list.
844 *
845 * Returns a node pointer with refcount incremented, use
846 * of_node_put() on it when done.
847 */
848struct device_node *of_find_compatible_node(struct device_node *from,
849 const char *type, const char *compatible)
850{
851 struct device_node *np;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500852 unsigned long flags;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000853
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500854 raw_spin_lock_irqsave(&devtree_lock, flags);
Randy Dunlap465aac62012-11-30 10:01:51 +0000855 np = from ? from->allnext : of_allnodes;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000856 for (; np; np = np->allnext) {
Kevin Hao215a14c2014-02-19 16:15:45 +0800857 if (__of_device_is_compatible(np, compatible, type, NULL) &&
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500858 of_node_get(np))
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000859 break;
860 }
861 of_node_put(from);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500862 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000863 return np;
864}
865EXPORT_SYMBOL(of_find_compatible_node);
Grant Likely283029d2008-01-09 06:20:40 +1100866
867/**
Michael Ellerman1e291b12008-11-12 18:54:42 +0000868 * of_find_node_with_property - Find a node which has a property with
869 * the given name.
870 * @from: The node to start searching from or NULL, the node
871 * you pass will not be searched, only the next one
872 * will; typically, you pass what the previous call
873 * returned. of_node_put() will be called on it
874 * @prop_name: The name of the property to look for.
875 *
876 * Returns a node pointer with refcount incremented, use
877 * of_node_put() on it when done.
878 */
879struct device_node *of_find_node_with_property(struct device_node *from,
880 const char *prop_name)
881{
882 struct device_node *np;
883 struct property *pp;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500884 unsigned long flags;
Michael Ellerman1e291b12008-11-12 18:54:42 +0000885
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500886 raw_spin_lock_irqsave(&devtree_lock, flags);
Randy Dunlap465aac62012-11-30 10:01:51 +0000887 np = from ? from->allnext : of_allnodes;
Michael Ellerman1e291b12008-11-12 18:54:42 +0000888 for (; np; np = np->allnext) {
Sachin Kamata3a7cab2012-06-27 09:44:45 +0530889 for (pp = np->properties; pp; pp = pp->next) {
Michael Ellerman1e291b12008-11-12 18:54:42 +0000890 if (of_prop_cmp(pp->name, prop_name) == 0) {
891 of_node_get(np);
892 goto out;
893 }
894 }
895 }
896out:
897 of_node_put(from);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500898 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Michael Ellerman1e291b12008-11-12 18:54:42 +0000899 return np;
900}
901EXPORT_SYMBOL(of_find_node_with_property);
902
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500903static
904const struct of_device_id *__of_match_node(const struct of_device_id *matches,
905 const struct device_node *node)
Grant Likely283029d2008-01-09 06:20:40 +1100906{
Kevin Hao215a14c2014-02-19 16:15:45 +0800907 const struct of_device_id *best_match = NULL;
908 int score, best_score = 0;
909
Grant Likelya52f07e2011-03-18 10:21:29 -0600910 if (!matches)
911 return NULL;
912
Kevin Hao215a14c2014-02-19 16:15:45 +0800913 for (; matches->name[0] || matches->type[0] || matches->compatible[0]; matches++) {
914 score = __of_device_is_compatible(node, matches->compatible,
915 matches->type, matches->name);
916 if (score > best_score) {
917 best_match = matches;
918 best_score = score;
919 }
Kevin Hao4e8ca6e2014-02-14 13:22:45 +0800920 }
Kevin Hao215a14c2014-02-19 16:15:45 +0800921
922 return best_match;
Grant Likely283029d2008-01-09 06:20:40 +1100923}
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500924
925/**
926 * of_match_node - Tell if an device_node has a matching of_match structure
927 * @matches: array of of device match structures to search in
928 * @node: the of device structure to match against
929 *
Kevin Hao71c54982014-02-18 15:57:29 +0800930 * Low level utility function used by device matching.
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500931 */
932const struct of_device_id *of_match_node(const struct of_device_id *matches,
933 const struct device_node *node)
934{
935 const struct of_device_id *match;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500936 unsigned long flags;
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500937
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500938 raw_spin_lock_irqsave(&devtree_lock, flags);
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500939 match = __of_match_node(matches, node);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500940 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500941 return match;
942}
Grant Likely283029d2008-01-09 06:20:40 +1100943EXPORT_SYMBOL(of_match_node);
944
945/**
Stephen Warren50c8af42012-11-20 16:12:20 -0700946 * of_find_matching_node_and_match - Find a node based on an of_device_id
947 * match table.
Grant Likely283029d2008-01-09 06:20:40 +1100948 * @from: The node to start searching from or NULL, the node
949 * you pass will not be searched, only the next one
950 * will; typically, you pass what the previous call
951 * returned. of_node_put() will be called on it
952 * @matches: array of of device match structures to search in
Stephen Warren50c8af42012-11-20 16:12:20 -0700953 * @match Updated to point at the matches entry which matched
Grant Likely283029d2008-01-09 06:20:40 +1100954 *
955 * Returns a node pointer with refcount incremented, use
956 * of_node_put() on it when done.
957 */
Stephen Warren50c8af42012-11-20 16:12:20 -0700958struct device_node *of_find_matching_node_and_match(struct device_node *from,
959 const struct of_device_id *matches,
960 const struct of_device_id **match)
Grant Likely283029d2008-01-09 06:20:40 +1100961{
962 struct device_node *np;
Thomas Abrahamdc71bcf2013-01-19 10:20:42 -0800963 const struct of_device_id *m;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500964 unsigned long flags;
Grant Likely283029d2008-01-09 06:20:40 +1100965
Stephen Warren50c8af42012-11-20 16:12:20 -0700966 if (match)
967 *match = NULL;
968
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500969 raw_spin_lock_irqsave(&devtree_lock, flags);
Randy Dunlap465aac62012-11-30 10:01:51 +0000970 np = from ? from->allnext : of_allnodes;
Grant Likely283029d2008-01-09 06:20:40 +1100971 for (; np; np = np->allnext) {
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500972 m = __of_match_node(matches, np);
Thomas Abrahamdc71bcf2013-01-19 10:20:42 -0800973 if (m && of_node_get(np)) {
Stephen Warren50c8af42012-11-20 16:12:20 -0700974 if (match)
Thomas Abrahamdc71bcf2013-01-19 10:20:42 -0800975 *match = m;
Grant Likely283029d2008-01-09 06:20:40 +1100976 break;
Stephen Warren50c8af42012-11-20 16:12:20 -0700977 }
Grant Likely283029d2008-01-09 06:20:40 +1100978 }
979 of_node_put(from);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500980 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Grant Likely283029d2008-01-09 06:20:40 +1100981 return np;
982}
Grant Likely80c20222012-12-19 10:45:36 +0000983EXPORT_SYMBOL(of_find_matching_node_and_match);
Grant Likely3f07af42008-07-25 22:25:13 -0400984
985/**
Grant Likely3f07af42008-07-25 22:25:13 -0400986 * of_modalias_node - Lookup appropriate modalias for a device node
987 * @node: pointer to a device tree node
988 * @modalias: Pointer to buffer that modalias value will be copied into
989 * @len: Length of modalias value
990 *
Grant Likely2ffe8c52010-06-08 07:48:19 -0600991 * Based on the value of the compatible property, this routine will attempt
992 * to choose an appropriate modalias value for a particular device tree node.
993 * It does this by stripping the manufacturer prefix (as delimited by a ',')
994 * from the first entry in the compatible list property.
Grant Likely3f07af42008-07-25 22:25:13 -0400995 *
Grant Likely2ffe8c52010-06-08 07:48:19 -0600996 * This routine returns 0 on success, <0 on failure.
Grant Likely3f07af42008-07-25 22:25:13 -0400997 */
998int of_modalias_node(struct device_node *node, char *modalias, int len)
999{
Grant Likely2ffe8c52010-06-08 07:48:19 -06001000 const char *compatible, *p;
1001 int cplen;
Grant Likely3f07af42008-07-25 22:25:13 -04001002
1003 compatible = of_get_property(node, "compatible", &cplen);
Grant Likely2ffe8c52010-06-08 07:48:19 -06001004 if (!compatible || strlen(compatible) > cplen)
Grant Likely3f07af42008-07-25 22:25:13 -04001005 return -ENODEV;
Grant Likely3f07af42008-07-25 22:25:13 -04001006 p = strchr(compatible, ',');
Grant Likely2ffe8c52010-06-08 07:48:19 -06001007 strlcpy(modalias, p ? p + 1 : compatible, len);
Grant Likely3f07af42008-07-25 22:25:13 -04001008 return 0;
1009}
1010EXPORT_SYMBOL_GPL(of_modalias_node);
1011
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001012/**
Jeremy Kerr89751a72010-02-01 21:34:11 -07001013 * of_find_node_by_phandle - Find a node given a phandle
1014 * @handle: phandle of the node to find
1015 *
1016 * Returns a node pointer with refcount incremented, use
1017 * of_node_put() on it when done.
1018 */
1019struct device_node *of_find_node_by_phandle(phandle handle)
1020{
1021 struct device_node *np;
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +10001022 unsigned long flags;
Jeremy Kerr89751a72010-02-01 21:34:11 -07001023
Grant Likelyfc59b442014-10-02 13:08:02 +01001024 if (!handle)
1025 return NULL;
1026
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +10001027 raw_spin_lock_irqsave(&devtree_lock, flags);
Randy Dunlap465aac62012-11-30 10:01:51 +00001028 for (np = of_allnodes; np; np = np->allnext)
Jeremy Kerr89751a72010-02-01 21:34:11 -07001029 if (np->phandle == handle)
1030 break;
1031 of_node_get(np);
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +10001032 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Jeremy Kerr89751a72010-02-01 21:34:11 -07001033 return np;
1034}
1035EXPORT_SYMBOL(of_find_node_by_phandle);
1036
1037/**
Heiko Stuebnerad54a0c2014-02-12 01:00:34 +01001038 * of_property_count_elems_of_size - Count the number of elements in a property
1039 *
1040 * @np: device node from which the property value is to be read.
1041 * @propname: name of the property to be searched.
1042 * @elem_size: size of the individual element
1043 *
1044 * Search for a property in a device node and count the number of elements of
1045 * size elem_size in it. Returns number of elements on sucess, -EINVAL if the
1046 * property does not exist or its length does not match a multiple of elem_size
1047 * and -ENODATA if the property does not have a value.
1048 */
1049int of_property_count_elems_of_size(const struct device_node *np,
1050 const char *propname, int elem_size)
1051{
1052 struct property *prop = of_find_property(np, propname, NULL);
1053
1054 if (!prop)
1055 return -EINVAL;
1056 if (!prop->value)
1057 return -ENODATA;
1058
1059 if (prop->length % elem_size != 0) {
1060 pr_err("size of %s in node %s is not a multiple of %d\n",
1061 propname, np->full_name, elem_size);
1062 return -EINVAL;
1063 }
1064
1065 return prop->length / elem_size;
1066}
1067EXPORT_SYMBOL_GPL(of_property_count_elems_of_size);
1068
1069/**
Tony Priskdaeec1f2013-04-03 17:57:11 +13001070 * of_find_property_value_of_size
1071 *
1072 * @np: device node from which the property value is to be read.
1073 * @propname: name of the property to be searched.
1074 * @len: requested length of property value
1075 *
1076 * Search for a property in a device node and valid the requested size.
1077 * Returns the property value on success, -EINVAL if the property does not
1078 * exist, -ENODATA if property does not have a value, and -EOVERFLOW if the
1079 * property data isn't large enough.
1080 *
1081 */
1082static void *of_find_property_value_of_size(const struct device_node *np,
1083 const char *propname, u32 len)
1084{
1085 struct property *prop = of_find_property(np, propname, NULL);
1086
1087 if (!prop)
1088 return ERR_PTR(-EINVAL);
1089 if (!prop->value)
1090 return ERR_PTR(-ENODATA);
1091 if (len > prop->length)
1092 return ERR_PTR(-EOVERFLOW);
1093
1094 return prop->value;
1095}
1096
1097/**
Tony Prisk3daf3722013-03-23 17:02:15 +13001098 * of_property_read_u32_index - Find and read a u32 from a multi-value property.
1099 *
1100 * @np: device node from which the property value is to be read.
1101 * @propname: name of the property to be searched.
1102 * @index: index of the u32 in the list of values
1103 * @out_value: pointer to return value, modified only if no error.
1104 *
1105 * Search for a property in a device node and read nth 32-bit value from
1106 * it. Returns 0 on success, -EINVAL if the property does not exist,
1107 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1108 * property data isn't large enough.
1109 *
1110 * The out_value is modified only if a valid u32 value can be decoded.
1111 */
1112int of_property_read_u32_index(const struct device_node *np,
1113 const char *propname,
1114 u32 index, u32 *out_value)
1115{
Tony Priskdaeec1f2013-04-03 17:57:11 +13001116 const u32 *val = of_find_property_value_of_size(np, propname,
1117 ((index + 1) * sizeof(*out_value)));
Tony Prisk3daf3722013-03-23 17:02:15 +13001118
Tony Priskdaeec1f2013-04-03 17:57:11 +13001119 if (IS_ERR(val))
1120 return PTR_ERR(val);
Tony Prisk3daf3722013-03-23 17:02:15 +13001121
Tony Priskdaeec1f2013-04-03 17:57:11 +13001122 *out_value = be32_to_cpup(((__be32 *)val) + index);
Tony Prisk3daf3722013-03-23 17:02:15 +13001123 return 0;
1124}
1125EXPORT_SYMBOL_GPL(of_property_read_u32_index);
1126
1127/**
Viresh Kumarbe193242012-11-20 10:15:19 +05301128 * of_property_read_u8_array - Find and read an array of u8 from a property.
1129 *
1130 * @np: device node from which the property value is to be read.
1131 * @propname: name of the property to be searched.
Lad, Prabhakar792efb82013-05-07 11:34:11 +05301132 * @out_values: pointer to return value, modified only if return value is 0.
Viresh Kumarbe193242012-11-20 10:15:19 +05301133 * @sz: number of array elements to read
1134 *
1135 * Search for a property in a device node and read 8-bit value(s) from
1136 * it. Returns 0 on success, -EINVAL if the property does not exist,
1137 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1138 * property data isn't large enough.
1139 *
1140 * dts entry of array should be like:
1141 * property = /bits/ 8 <0x50 0x60 0x70>;
1142 *
Lad, Prabhakar792efb82013-05-07 11:34:11 +05301143 * The out_values is modified only if a valid u8 value can be decoded.
Viresh Kumarbe193242012-11-20 10:15:19 +05301144 */
1145int of_property_read_u8_array(const struct device_node *np,
1146 const char *propname, u8 *out_values, size_t sz)
1147{
Tony Priskdaeec1f2013-04-03 17:57:11 +13001148 const u8 *val = of_find_property_value_of_size(np, propname,
1149 (sz * sizeof(*out_values)));
Viresh Kumarbe193242012-11-20 10:15:19 +05301150
Tony Priskdaeec1f2013-04-03 17:57:11 +13001151 if (IS_ERR(val))
1152 return PTR_ERR(val);
Viresh Kumarbe193242012-11-20 10:15:19 +05301153
Viresh Kumarbe193242012-11-20 10:15:19 +05301154 while (sz--)
1155 *out_values++ = *val++;
1156 return 0;
1157}
1158EXPORT_SYMBOL_GPL(of_property_read_u8_array);
1159
1160/**
1161 * of_property_read_u16_array - Find and read an array of u16 from a property.
1162 *
1163 * @np: device node from which the property value is to be read.
1164 * @propname: name of the property to be searched.
Lad, Prabhakar792efb82013-05-07 11:34:11 +05301165 * @out_values: pointer to return value, modified only if return value is 0.
Viresh Kumarbe193242012-11-20 10:15:19 +05301166 * @sz: number of array elements to read
1167 *
1168 * Search for a property in a device node and read 16-bit value(s) from
1169 * it. Returns 0 on success, -EINVAL if the property does not exist,
1170 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1171 * property data isn't large enough.
1172 *
1173 * dts entry of array should be like:
1174 * property = /bits/ 16 <0x5000 0x6000 0x7000>;
1175 *
Lad, Prabhakar792efb82013-05-07 11:34:11 +05301176 * The out_values is modified only if a valid u16 value can be decoded.
Viresh Kumarbe193242012-11-20 10:15:19 +05301177 */
1178int of_property_read_u16_array(const struct device_node *np,
1179 const char *propname, u16 *out_values, size_t sz)
1180{
Tony Priskdaeec1f2013-04-03 17:57:11 +13001181 const __be16 *val = of_find_property_value_of_size(np, propname,
1182 (sz * sizeof(*out_values)));
Viresh Kumarbe193242012-11-20 10:15:19 +05301183
Tony Priskdaeec1f2013-04-03 17:57:11 +13001184 if (IS_ERR(val))
1185 return PTR_ERR(val);
Viresh Kumarbe193242012-11-20 10:15:19 +05301186
Viresh Kumarbe193242012-11-20 10:15:19 +05301187 while (sz--)
1188 *out_values++ = be16_to_cpup(val++);
1189 return 0;
1190}
1191EXPORT_SYMBOL_GPL(of_property_read_u16_array);
1192
1193/**
Rob Herring0e373632011-07-06 15:42:58 -05001194 * of_property_read_u32_array - Find and read an array of 32 bit integers
1195 * from a property.
1196 *
Thomas Abrahama3b85362011-06-30 21:26:10 +05301197 * @np: device node from which the property value is to be read.
1198 * @propname: name of the property to be searched.
Lad, Prabhakar792efb82013-05-07 11:34:11 +05301199 * @out_values: pointer to return value, modified only if return value is 0.
Viresh Kumarbe193242012-11-20 10:15:19 +05301200 * @sz: number of array elements to read
Thomas Abrahama3b85362011-06-30 21:26:10 +05301201 *
Rob Herring0e373632011-07-06 15:42:58 -05001202 * Search for a property in a device node and read 32-bit value(s) from
Thomas Abrahama3b85362011-06-30 21:26:10 +05301203 * it. Returns 0 on success, -EINVAL if the property does not exist,
1204 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1205 * property data isn't large enough.
1206 *
Lad, Prabhakar792efb82013-05-07 11:34:11 +05301207 * The out_values is modified only if a valid u32 value can be decoded.
Thomas Abrahama3b85362011-06-30 21:26:10 +05301208 */
Jamie Ilesaac285c2011-08-02 15:45:07 +01001209int of_property_read_u32_array(const struct device_node *np,
1210 const char *propname, u32 *out_values,
1211 size_t sz)
Thomas Abrahama3b85362011-06-30 21:26:10 +05301212{
Tony Priskdaeec1f2013-04-03 17:57:11 +13001213 const __be32 *val = of_find_property_value_of_size(np, propname,
1214 (sz * sizeof(*out_values)));
Thomas Abrahama3b85362011-06-30 21:26:10 +05301215
Tony Priskdaeec1f2013-04-03 17:57:11 +13001216 if (IS_ERR(val))
1217 return PTR_ERR(val);
Rob Herring0e373632011-07-06 15:42:58 -05001218
Rob Herring0e373632011-07-06 15:42:58 -05001219 while (sz--)
1220 *out_values++ = be32_to_cpup(val++);
Thomas Abrahama3b85362011-06-30 21:26:10 +05301221 return 0;
1222}
Rob Herring0e373632011-07-06 15:42:58 -05001223EXPORT_SYMBOL_GPL(of_property_read_u32_array);
Thomas Abrahama3b85362011-06-30 21:26:10 +05301224
1225/**
Jamie Iles4cd7f7a2011-09-14 20:49:59 +01001226 * of_property_read_u64 - Find and read a 64 bit integer from a property
1227 * @np: device node from which the property value is to be read.
1228 * @propname: name of the property to be searched.
1229 * @out_value: pointer to return value, modified only if return value is 0.
1230 *
1231 * Search for a property in a device node and read a 64-bit value from
1232 * it. Returns 0 on success, -EINVAL if the property does not exist,
1233 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1234 * property data isn't large enough.
1235 *
1236 * The out_value is modified only if a valid u64 value can be decoded.
1237 */
1238int of_property_read_u64(const struct device_node *np, const char *propname,
1239 u64 *out_value)
1240{
Tony Priskdaeec1f2013-04-03 17:57:11 +13001241 const __be32 *val = of_find_property_value_of_size(np, propname,
1242 sizeof(*out_value));
Jamie Iles4cd7f7a2011-09-14 20:49:59 +01001243
Tony Priskdaeec1f2013-04-03 17:57:11 +13001244 if (IS_ERR(val))
1245 return PTR_ERR(val);
1246
1247 *out_value = of_read_number(val, 2);
Jamie Iles4cd7f7a2011-09-14 20:49:59 +01001248 return 0;
1249}
1250EXPORT_SYMBOL_GPL(of_property_read_u64);
1251
1252/**
Rafael J. Wysockib31384f2014-11-04 01:28:56 +01001253 * of_property_read_u64_array - Find and read an array of 64 bit integers
1254 * from a property.
1255 *
1256 * @np: device node from which the property value is to be read.
1257 * @propname: name of the property to be searched.
1258 * @out_values: pointer to return value, modified only if return value is 0.
1259 * @sz: number of array elements to read
1260 *
1261 * Search for a property in a device node and read 64-bit value(s) from
1262 * it. Returns 0 on success, -EINVAL if the property does not exist,
1263 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1264 * property data isn't large enough.
1265 *
1266 * The out_values is modified only if a valid u64 value can be decoded.
1267 */
1268int of_property_read_u64_array(const struct device_node *np,
1269 const char *propname, u64 *out_values,
1270 size_t sz)
1271{
1272 const __be32 *val = of_find_property_value_of_size(np, propname,
1273 (sz * sizeof(*out_values)));
1274
1275 if (IS_ERR(val))
1276 return PTR_ERR(val);
1277
1278 while (sz--) {
1279 *out_values++ = of_read_number(val, 2);
1280 val += 2;
1281 }
1282 return 0;
1283}
1284
1285/**
Thomas Abrahama3b85362011-06-30 21:26:10 +05301286 * of_property_read_string - Find and read a string from a property
1287 * @np: device node from which the property value is to be read.
1288 * @propname: name of the property to be searched.
1289 * @out_string: pointer to null terminated return string, modified only if
1290 * return value is 0.
1291 *
1292 * Search for a property in a device tree node and retrieve a null
1293 * terminated string value (pointer to data, not a copy). Returns 0 on
1294 * success, -EINVAL if the property does not exist, -ENODATA if property
1295 * does not have a value, and -EILSEQ if the string is not null-terminated
1296 * within the length of the property data.
1297 *
1298 * The out_string pointer is modified only if a valid string can be decoded.
1299 */
Jamie Ilesaac285c2011-08-02 15:45:07 +01001300int of_property_read_string(struct device_node *np, const char *propname,
Shawn Guof09bc832011-07-04 09:01:18 +08001301 const char **out_string)
Thomas Abrahama3b85362011-06-30 21:26:10 +05301302{
1303 struct property *prop = of_find_property(np, propname, NULL);
1304 if (!prop)
1305 return -EINVAL;
1306 if (!prop->value)
1307 return -ENODATA;
1308 if (strnlen(prop->value, prop->length) >= prop->length)
1309 return -EILSEQ;
1310 *out_string = prop->value;
1311 return 0;
1312}
1313EXPORT_SYMBOL_GPL(of_property_read_string);
1314
1315/**
Grant Likely7aff0fe2011-12-12 09:25:58 -07001316 * of_property_match_string() - Find string in a list and return index
1317 * @np: pointer to node containing string list property
1318 * @propname: string list property name
1319 * @string: pointer to string to search for in string list
1320 *
1321 * This function searches a string list property and returns the index
1322 * of a specific string value.
1323 */
1324int of_property_match_string(struct device_node *np, const char *propname,
1325 const char *string)
1326{
1327 struct property *prop = of_find_property(np, propname, NULL);
1328 size_t l;
1329 int i;
1330 const char *p, *end;
1331
1332 if (!prop)
1333 return -EINVAL;
1334 if (!prop->value)
1335 return -ENODATA;
1336
1337 p = prop->value;
1338 end = p + prop->length;
1339
1340 for (i = 0; p < end; i++, p += l) {
Grant Likelya87fa1d2014-11-03 15:15:35 +00001341 l = strnlen(p, end - p) + 1;
Grant Likely7aff0fe2011-12-12 09:25:58 -07001342 if (p + l > end)
1343 return -EILSEQ;
1344 pr_debug("comparing %s with %s\n", string, p);
1345 if (strcmp(string, p) == 0)
1346 return i; /* Found it; return index */
1347 }
1348 return -ENODATA;
1349}
1350EXPORT_SYMBOL_GPL(of_property_match_string);
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001351
1352/**
Grant Likelya87fa1d2014-11-03 15:15:35 +00001353 * of_property_read_string_util() - Utility helper for parsing string properties
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001354 * @np: device node from which the property value is to be read.
1355 * @propname: name of the property to be searched.
Grant Likelya87fa1d2014-11-03 15:15:35 +00001356 * @out_strs: output array of string pointers.
1357 * @sz: number of array elements to read.
1358 * @skip: Number of strings to skip over at beginning of list.
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001359 *
Grant Likelya87fa1d2014-11-03 15:15:35 +00001360 * Don't call this function directly. It is a utility helper for the
1361 * of_property_read_string*() family of functions.
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001362 */
Grant Likelya87fa1d2014-11-03 15:15:35 +00001363int of_property_read_string_helper(struct device_node *np, const char *propname,
1364 const char **out_strs, size_t sz, int skip)
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001365{
1366 struct property *prop = of_find_property(np, propname, NULL);
Grant Likelya87fa1d2014-11-03 15:15:35 +00001367 int l = 0, i = 0;
1368 const char *p, *end;
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001369
1370 if (!prop)
1371 return -EINVAL;
1372 if (!prop->value)
1373 return -ENODATA;
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001374 p = prop->value;
Grant Likelya87fa1d2014-11-03 15:15:35 +00001375 end = p + prop->length;
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001376
Grant Likelya87fa1d2014-11-03 15:15:35 +00001377 for (i = 0; p < end && (!out_strs || i < skip + sz); i++, p += l) {
1378 l = strnlen(p, end - p) + 1;
1379 if (p + l > end)
1380 return -EILSEQ;
1381 if (out_strs && i >= skip)
1382 *out_strs++ = p;
1383 }
1384 i -= skip;
1385 return i <= 0 ? -ENODATA : i;
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001386}
Grant Likelya87fa1d2014-11-03 15:15:35 +00001387EXPORT_SYMBOL_GPL(of_property_read_string_helper);
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001388
Grant Likely624cfca2013-10-11 22:05:10 +01001389void of_print_phandle_args(const char *msg, const struct of_phandle_args *args)
1390{
1391 int i;
1392 printk("%s %s", msg, of_node_full_name(args->np));
1393 for (i = 0; i < args->args_count; i++)
1394 printk(i ? ",%08x" : ":%08x", args->args[i]);
1395 printk("\n");
1396}
1397
Grant Likelybd69f732013-02-10 22:57:21 +00001398static int __of_parse_phandle_with_args(const struct device_node *np,
1399 const char *list_name,
Stephen Warren035fd942013-08-14 15:27:10 -06001400 const char *cells_name,
1401 int cell_count, int index,
Grant Likelybd69f732013-02-10 22:57:21 +00001402 struct of_phandle_args *out_args)
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001403{
Grant Likely15c9a0a2011-12-12 09:25:57 -07001404 const __be32 *list, *list_end;
Grant Likely23ce04c2013-02-12 21:21:49 +00001405 int rc = 0, size, cur_index = 0;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001406 uint32_t count = 0;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001407 struct device_node *node = NULL;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001408 phandle phandle;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001409
Grant Likely15c9a0a2011-12-12 09:25:57 -07001410 /* Retrieve the phandle list property */
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001411 list = of_get_property(np, list_name, &size);
Grant Likely15c9a0a2011-12-12 09:25:57 -07001412 if (!list)
Alexandre Courbot1af4c7f2012-06-29 13:57:58 +09001413 return -ENOENT;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001414 list_end = list + size / sizeof(*list);
1415
Grant Likely15c9a0a2011-12-12 09:25:57 -07001416 /* Loop over the phandles until all the requested entry is found */
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001417 while (list < list_end) {
Grant Likely23ce04c2013-02-12 21:21:49 +00001418 rc = -EINVAL;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001419 count = 0;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001420
Grant Likely15c9a0a2011-12-12 09:25:57 -07001421 /*
1422 * If phandle is 0, then it is an empty entry with no
1423 * arguments. Skip forward to the next entry.
1424 */
Grant Likely9a6b2e52010-07-23 01:48:25 -06001425 phandle = be32_to_cpup(list++);
Grant Likely15c9a0a2011-12-12 09:25:57 -07001426 if (phandle) {
1427 /*
1428 * Find the provider node and parse the #*-cells
Stephen Warren91d99422013-08-14 15:27:11 -06001429 * property to determine the argument length.
1430 *
1431 * This is not needed if the cell count is hard-coded
1432 * (i.e. cells_name not set, but cell_count is set),
1433 * except when we're going to return the found node
1434 * below.
Grant Likely15c9a0a2011-12-12 09:25:57 -07001435 */
Stephen Warren91d99422013-08-14 15:27:11 -06001436 if (cells_name || cur_index == index) {
1437 node = of_find_node_by_phandle(phandle);
1438 if (!node) {
1439 pr_err("%s: could not find phandle\n",
1440 np->full_name);
1441 goto err;
1442 }
Grant Likely15c9a0a2011-12-12 09:25:57 -07001443 }
Stephen Warren035fd942013-08-14 15:27:10 -06001444
1445 if (cells_name) {
1446 if (of_property_read_u32(node, cells_name,
1447 &count)) {
1448 pr_err("%s: could not get %s for %s\n",
1449 np->full_name, cells_name,
1450 node->full_name);
1451 goto err;
1452 }
1453 } else {
1454 count = cell_count;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001455 }
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001456
Grant Likely15c9a0a2011-12-12 09:25:57 -07001457 /*
1458 * Make sure that the arguments actually fit in the
1459 * remaining property data length
1460 */
1461 if (list + count > list_end) {
1462 pr_err("%s: arguments longer than property\n",
1463 np->full_name);
Grant Likely23ce04c2013-02-12 21:21:49 +00001464 goto err;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001465 }
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001466 }
1467
Grant Likely15c9a0a2011-12-12 09:25:57 -07001468 /*
1469 * All of the error cases above bail out of the loop, so at
1470 * this point, the parsing is successful. If the requested
1471 * index matches, then fill the out_args structure and return,
1472 * or return -ENOENT for an empty entry.
1473 */
Grant Likely23ce04c2013-02-12 21:21:49 +00001474 rc = -ENOENT;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001475 if (cur_index == index) {
1476 if (!phandle)
Grant Likely23ce04c2013-02-12 21:21:49 +00001477 goto err;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001478
Grant Likely15c9a0a2011-12-12 09:25:57 -07001479 if (out_args) {
1480 int i;
1481 if (WARN_ON(count > MAX_PHANDLE_ARGS))
1482 count = MAX_PHANDLE_ARGS;
1483 out_args->np = node;
1484 out_args->args_count = count;
1485 for (i = 0; i < count; i++)
1486 out_args->args[i] = be32_to_cpup(list++);
Tang Yuantianb855f162013-04-10 11:36:39 +08001487 } else {
1488 of_node_put(node);
Grant Likely15c9a0a2011-12-12 09:25:57 -07001489 }
Grant Likely23ce04c2013-02-12 21:21:49 +00001490
1491 /* Found it! return success */
Grant Likely15c9a0a2011-12-12 09:25:57 -07001492 return 0;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001493 }
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001494
1495 of_node_put(node);
1496 node = NULL;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001497 list += count;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001498 cur_index++;
1499 }
1500
Grant Likely23ce04c2013-02-12 21:21:49 +00001501 /*
1502 * Unlock node before returning result; will be one of:
1503 * -ENOENT : index is for empty phandle
1504 * -EINVAL : parsing error on data
Grant Likelybd69f732013-02-10 22:57:21 +00001505 * [1..n] : Number of phandle (count mode; when index = -1)
Grant Likely23ce04c2013-02-12 21:21:49 +00001506 */
Grant Likelybd69f732013-02-10 22:57:21 +00001507 rc = index < 0 ? cur_index : -ENOENT;
Grant Likely23ce04c2013-02-12 21:21:49 +00001508 err:
Grant Likely15c9a0a2011-12-12 09:25:57 -07001509 if (node)
1510 of_node_put(node);
Grant Likely23ce04c2013-02-12 21:21:49 +00001511 return rc;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001512}
Grant Likelybd69f732013-02-10 22:57:21 +00001513
Stephen Warreneded9dd2013-08-14 15:27:08 -06001514/**
Stephen Warren5fba49e2013-08-14 15:27:09 -06001515 * of_parse_phandle - Resolve a phandle property to a device_node pointer
1516 * @np: Pointer to device node holding phandle property
1517 * @phandle_name: Name of property holding a phandle value
1518 * @index: For properties holding a table of phandles, this is the index into
1519 * the table
1520 *
1521 * Returns the device_node pointer with refcount incremented. Use
1522 * of_node_put() on it when done.
1523 */
1524struct device_node *of_parse_phandle(const struct device_node *np,
1525 const char *phandle_name, int index)
1526{
Stephen Warren91d99422013-08-14 15:27:11 -06001527 struct of_phandle_args args;
Stephen Warren5fba49e2013-08-14 15:27:09 -06001528
Stephen Warren91d99422013-08-14 15:27:11 -06001529 if (index < 0)
Stephen Warren5fba49e2013-08-14 15:27:09 -06001530 return NULL;
1531
Stephen Warren91d99422013-08-14 15:27:11 -06001532 if (__of_parse_phandle_with_args(np, phandle_name, NULL, 0,
1533 index, &args))
1534 return NULL;
1535
1536 return args.np;
Stephen Warren5fba49e2013-08-14 15:27:09 -06001537}
1538EXPORT_SYMBOL(of_parse_phandle);
1539
1540/**
Stephen Warreneded9dd2013-08-14 15:27:08 -06001541 * of_parse_phandle_with_args() - Find a node pointed by phandle in a list
1542 * @np: pointer to a device tree node containing a list
1543 * @list_name: property name that contains a list
1544 * @cells_name: property name that specifies phandles' arguments count
1545 * @index: index of a phandle to parse out
1546 * @out_args: optional pointer to output arguments structure (will be filled)
1547 *
1548 * This function is useful to parse lists of phandles and their arguments.
1549 * Returns 0 on success and fills out_args, on error returns appropriate
1550 * errno value.
1551 *
1552 * Caller is responsible to call of_node_put() on the returned out_args->node
1553 * pointer.
1554 *
1555 * Example:
1556 *
1557 * phandle1: node1 {
1558 * #list-cells = <2>;
1559 * }
1560 *
1561 * phandle2: node2 {
1562 * #list-cells = <1>;
1563 * }
1564 *
1565 * node3 {
1566 * list = <&phandle1 1 2 &phandle2 3>;
1567 * }
1568 *
1569 * To get a device_node of the `node2' node you may call this:
1570 * of_parse_phandle_with_args(node3, "list", "#list-cells", 1, &args);
1571 */
Grant Likelybd69f732013-02-10 22:57:21 +00001572int of_parse_phandle_with_args(const struct device_node *np, const char *list_name,
1573 const char *cells_name, int index,
1574 struct of_phandle_args *out_args)
1575{
1576 if (index < 0)
1577 return -EINVAL;
Stephen Warren035fd942013-08-14 15:27:10 -06001578 return __of_parse_phandle_with_args(np, list_name, cells_name, 0,
1579 index, out_args);
Grant Likelybd69f732013-02-10 22:57:21 +00001580}
Grant Likely15c9a0a2011-12-12 09:25:57 -07001581EXPORT_SYMBOL(of_parse_phandle_with_args);
Grant Likely02af11b2009-11-23 20:16:45 -07001582
Grant Likelybd69f732013-02-10 22:57:21 +00001583/**
Stephen Warren035fd942013-08-14 15:27:10 -06001584 * of_parse_phandle_with_fixed_args() - Find a node pointed by phandle in a list
1585 * @np: pointer to a device tree node containing a list
1586 * @list_name: property name that contains a list
1587 * @cell_count: number of argument cells following the phandle
1588 * @index: index of a phandle to parse out
1589 * @out_args: optional pointer to output arguments structure (will be filled)
1590 *
1591 * This function is useful to parse lists of phandles and their arguments.
1592 * Returns 0 on success and fills out_args, on error returns appropriate
1593 * errno value.
1594 *
1595 * Caller is responsible to call of_node_put() on the returned out_args->node
1596 * pointer.
1597 *
1598 * Example:
1599 *
1600 * phandle1: node1 {
1601 * }
1602 *
1603 * phandle2: node2 {
1604 * }
1605 *
1606 * node3 {
1607 * list = <&phandle1 0 2 &phandle2 2 3>;
1608 * }
1609 *
1610 * To get a device_node of the `node2' node you may call this:
1611 * of_parse_phandle_with_fixed_args(node3, "list", 2, 1, &args);
1612 */
1613int of_parse_phandle_with_fixed_args(const struct device_node *np,
1614 const char *list_name, int cell_count,
1615 int index, struct of_phandle_args *out_args)
1616{
1617 if (index < 0)
1618 return -EINVAL;
1619 return __of_parse_phandle_with_args(np, list_name, NULL, cell_count,
1620 index, out_args);
1621}
1622EXPORT_SYMBOL(of_parse_phandle_with_fixed_args);
1623
1624/**
Grant Likelybd69f732013-02-10 22:57:21 +00001625 * of_count_phandle_with_args() - Find the number of phandles references in a property
1626 * @np: pointer to a device tree node containing a list
1627 * @list_name: property name that contains a list
1628 * @cells_name: property name that specifies phandles' arguments count
1629 *
1630 * Returns the number of phandle + argument tuples within a property. It
1631 * is a typical pattern to encode a list of phandle and variable
1632 * arguments into a single property. The number of arguments is encoded
1633 * by a property in the phandle-target node. For example, a gpios
1634 * property would contain a list of GPIO specifies consisting of a
1635 * phandle and 1 or more arguments. The number of arguments are
1636 * determined by the #gpio-cells property in the node pointed to by the
1637 * phandle.
1638 */
1639int of_count_phandle_with_args(const struct device_node *np, const char *list_name,
1640 const char *cells_name)
1641{
Stephen Warren035fd942013-08-14 15:27:10 -06001642 return __of_parse_phandle_with_args(np, list_name, cells_name, 0, -1,
1643 NULL);
Grant Likelybd69f732013-02-10 22:57:21 +00001644}
1645EXPORT_SYMBOL(of_count_phandle_with_args);
1646
Grant Likely02af11b2009-11-23 20:16:45 -07001647/**
Xiubo Li62664f62014-01-22 13:57:39 +08001648 * __of_add_property - Add a property to a node without lock operations
1649 */
Pantelis Antonioud8c50082014-07-04 19:58:46 +03001650int __of_add_property(struct device_node *np, struct property *prop)
Xiubo Li62664f62014-01-22 13:57:39 +08001651{
1652 struct property **next;
1653
1654 prop->next = NULL;
1655 next = &np->properties;
1656 while (*next) {
1657 if (strcmp(prop->name, (*next)->name) == 0)
1658 /* duplicate ! don't insert it */
1659 return -EEXIST;
1660
1661 next = &(*next)->next;
1662 }
1663 *next = prop;
1664
1665 return 0;
1666}
1667
1668/**
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001669 * of_add_property - Add a property to a node
Grant Likely02af11b2009-11-23 20:16:45 -07001670 */
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001671int of_add_property(struct device_node *np, struct property *prop)
Grant Likely02af11b2009-11-23 20:16:45 -07001672{
Grant Likely02af11b2009-11-23 20:16:45 -07001673 unsigned long flags;
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001674 int rc;
1675
Grant Likely8a2b22a2014-07-23 17:05:06 -06001676 mutex_lock(&of_mutex);
Grant Likely02af11b2009-11-23 20:16:45 -07001677
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001678 raw_spin_lock_irqsave(&devtree_lock, flags);
Xiubo Li62664f62014-01-22 13:57:39 +08001679 rc = __of_add_property(np, prop);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001680 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Grant Likely02af11b2009-11-23 20:16:45 -07001681
Grant Likely8a2b22a2014-07-23 17:05:06 -06001682 if (!rc)
Pantelis Antoniou0829f6d2013-12-13 20:08:59 +02001683 __of_add_property_sysfs(np, prop);
Grant Likely02af11b2009-11-23 20:16:45 -07001684
Grant Likely8a2b22a2014-07-23 17:05:06 -06001685 mutex_unlock(&of_mutex);
1686
Grant Likely259092a2014-07-16 12:48:23 -06001687 if (!rc)
1688 of_property_notify(OF_RECONFIG_ADD_PROPERTY, np, prop, NULL);
1689
Xiubo Li62664f62014-01-22 13:57:39 +08001690 return rc;
Grant Likely02af11b2009-11-23 20:16:45 -07001691}
1692
Pantelis Antonioud8c50082014-07-04 19:58:46 +03001693int __of_remove_property(struct device_node *np, struct property *prop)
1694{
1695 struct property **next;
1696
1697 for (next = &np->properties; *next; next = &(*next)->next) {
1698 if (*next == prop)
1699 break;
1700 }
1701 if (*next == NULL)
1702 return -ENODEV;
1703
1704 /* found the node */
1705 *next = prop->next;
1706 prop->next = np->deadprops;
1707 np->deadprops = prop;
1708
1709 return 0;
1710}
1711
Grant Likely8a2b22a2014-07-23 17:05:06 -06001712void __of_remove_property_sysfs(struct device_node *np, struct property *prop)
1713{
Gaurav Minochaef69d742014-09-05 09:56:13 -07001714 if (!IS_ENABLED(CONFIG_SYSFS))
1715 return;
1716
Grant Likely8a2b22a2014-07-23 17:05:06 -06001717 /* at early boot, bail here and defer setup to of_init() */
1718 if (of_kset && of_node_is_attached(np))
1719 sysfs_remove_bin_file(&np->kobj, &prop->attr);
1720}
1721
Grant Likely02af11b2009-11-23 20:16:45 -07001722/**
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001723 * of_remove_property - Remove a property from a node.
Grant Likely02af11b2009-11-23 20:16:45 -07001724 *
1725 * Note that we don't actually remove it, since we have given out
1726 * who-knows-how-many pointers to the data using get-property.
1727 * Instead we just move the property to the "dead properties"
1728 * list, so it won't be found any more.
1729 */
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001730int of_remove_property(struct device_node *np, struct property *prop)
Grant Likely02af11b2009-11-23 20:16:45 -07001731{
Grant Likely02af11b2009-11-23 20:16:45 -07001732 unsigned long flags;
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001733 int rc;
1734
Grant Likely8a2b22a2014-07-23 17:05:06 -06001735 mutex_lock(&of_mutex);
Grant Likely02af11b2009-11-23 20:16:45 -07001736
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001737 raw_spin_lock_irqsave(&devtree_lock, flags);
Pantelis Antonioud8c50082014-07-04 19:58:46 +03001738 rc = __of_remove_property(np, prop);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001739 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Grant Likely02af11b2009-11-23 20:16:45 -07001740
Grant Likely8a2b22a2014-07-23 17:05:06 -06001741 if (!rc)
1742 __of_remove_property_sysfs(np, prop);
Grant Likely02af11b2009-11-23 20:16:45 -07001743
Grant Likely8a2b22a2014-07-23 17:05:06 -06001744 mutex_unlock(&of_mutex);
Grant Likely75b57ec2014-02-20 18:02:11 +00001745
Grant Likely259092a2014-07-16 12:48:23 -06001746 if (!rc)
1747 of_property_notify(OF_RECONFIG_REMOVE_PROPERTY, np, prop, NULL);
1748
Grant Likely8a2b22a2014-07-23 17:05:06 -06001749 return rc;
Grant Likely02af11b2009-11-23 20:16:45 -07001750}
1751
Pantelis Antonioud8c50082014-07-04 19:58:46 +03001752int __of_update_property(struct device_node *np, struct property *newprop,
1753 struct property **oldpropp)
1754{
1755 struct property **next, *oldprop;
1756
1757 for (next = &np->properties; *next; next = &(*next)->next) {
1758 if (of_prop_cmp((*next)->name, newprop->name) == 0)
1759 break;
1760 }
1761 *oldpropp = oldprop = *next;
1762
1763 if (oldprop) {
1764 /* replace the node */
1765 newprop->next = oldprop->next;
1766 *next = newprop;
1767 oldprop->next = np->deadprops;
1768 np->deadprops = oldprop;
1769 } else {
1770 /* new node */
1771 newprop->next = NULL;
1772 *next = newprop;
1773 }
Grant Likely02af11b2009-11-23 20:16:45 -07001774
1775 return 0;
1776}
1777
Grant Likely8a2b22a2014-07-23 17:05:06 -06001778void __of_update_property_sysfs(struct device_node *np, struct property *newprop,
1779 struct property *oldprop)
1780{
Gaurav Minochaef69d742014-09-05 09:56:13 -07001781 if (!IS_ENABLED(CONFIG_SYSFS))
1782 return;
1783
Grant Likely8a2b22a2014-07-23 17:05:06 -06001784 /* At early boot, bail out and defer setup to of_init() */
1785 if (!of_kset)
1786 return;
1787
1788 if (oldprop)
1789 sysfs_remove_bin_file(&np->kobj, &oldprop->attr);
1790 __of_add_property_sysfs(np, newprop);
1791}
1792
Grant Likely02af11b2009-11-23 20:16:45 -07001793/*
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001794 * of_update_property - Update a property in a node, if the property does
Dong Aisheng475d0092012-07-11 15:16:37 +10001795 * not exist, add it.
Grant Likely02af11b2009-11-23 20:16:45 -07001796 *
1797 * Note that we don't actually remove it, since we have given out
1798 * who-knows-how-many pointers to the data using get-property.
1799 * Instead we just move the property to the "dead properties" list,
1800 * and add the new property to the property list
1801 */
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001802int of_update_property(struct device_node *np, struct property *newprop)
Grant Likely02af11b2009-11-23 20:16:45 -07001803{
Pantelis Antonioud8c50082014-07-04 19:58:46 +03001804 struct property *oldprop;
Grant Likely02af11b2009-11-23 20:16:45 -07001805 unsigned long flags;
Xiubo Li947fdaad02014-04-17 15:48:29 +08001806 int rc;
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001807
Dong Aisheng475d0092012-07-11 15:16:37 +10001808 if (!newprop->name)
1809 return -EINVAL;
1810
Grant Likely8a2b22a2014-07-23 17:05:06 -06001811 mutex_lock(&of_mutex);
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001812
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001813 raw_spin_lock_irqsave(&devtree_lock, flags);
Pantelis Antonioud8c50082014-07-04 19:58:46 +03001814 rc = __of_update_property(np, newprop, &oldprop);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001815 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Nathan Fontenote81b3292012-10-02 16:55:01 +00001816
Grant Likely8a2b22a2014-07-23 17:05:06 -06001817 if (!rc)
1818 __of_update_property_sysfs(np, newprop, oldprop);
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001819
Grant Likely8a2b22a2014-07-23 17:05:06 -06001820 mutex_unlock(&of_mutex);
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001821
Grant Likely259092a2014-07-16 12:48:23 -06001822 if (!rc)
1823 of_property_notify(OF_RECONFIG_UPDATE_PROPERTY, np, newprop, oldprop);
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001824
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001825 return rc;
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001826}
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001827
Shawn Guo611cad72011-08-15 15:28:14 +08001828static void of_alias_add(struct alias_prop *ap, struct device_node *np,
1829 int id, const char *stem, int stem_len)
1830{
1831 ap->np = np;
1832 ap->id = id;
1833 strncpy(ap->stem, stem, stem_len);
1834 ap->stem[stem_len] = 0;
1835 list_add_tail(&ap->link, &aliases_lookup);
1836 pr_debug("adding DT alias:%s: stem=%s id=%i node=%s\n",
Grant Likely74a7f082012-06-15 11:50:25 -06001837 ap->alias, ap->stem, ap->id, of_node_full_name(np));
Shawn Guo611cad72011-08-15 15:28:14 +08001838}
1839
1840/**
1841 * of_alias_scan - Scan all properties of 'aliases' node
1842 *
1843 * The function scans all the properties of 'aliases' node and populate
1844 * the the global lookup table with the properties. It returns the
1845 * number of alias_prop found, or error code in error case.
1846 *
1847 * @dt_alloc: An allocator that provides a virtual address to memory
1848 * for the resulting tree
1849 */
1850void of_alias_scan(void * (*dt_alloc)(u64 size, u64 align))
1851{
1852 struct property *pp;
1853
Laurentiu Tudor7dbe5842014-08-27 17:09:39 +03001854 of_aliases = of_find_node_by_path("/aliases");
Shawn Guo611cad72011-08-15 15:28:14 +08001855 of_chosen = of_find_node_by_path("/chosen");
1856 if (of_chosen == NULL)
1857 of_chosen = of_find_node_by_path("/chosen@0");
Sascha Hauer5c19e952013-08-05 14:40:44 +02001858
1859 if (of_chosen) {
Grant Likelya752ee52014-03-28 08:12:18 -07001860 /* linux,stdout-path and /aliases/stdout are for legacy compatibility */
Grant Likely676e1b22014-03-27 17:11:23 -07001861 const char *name = of_get_property(of_chosen, "stdout-path", NULL);
1862 if (!name)
1863 name = of_get_property(of_chosen, "linux,stdout-path", NULL);
Grant Likelya752ee52014-03-28 08:12:18 -07001864 if (IS_ENABLED(CONFIG_PPC) && !name)
1865 name = of_get_property(of_aliases, "stdout", NULL);
Sascha Hauer5c19e952013-08-05 14:40:44 +02001866 if (name)
1867 of_stdout = of_find_node_by_path(name);
1868 }
1869
Shawn Guo611cad72011-08-15 15:28:14 +08001870 if (!of_aliases)
1871 return;
1872
Dong Aisheng8af0da92011-12-22 20:19:24 +08001873 for_each_property_of_node(of_aliases, pp) {
Shawn Guo611cad72011-08-15 15:28:14 +08001874 const char *start = pp->name;
1875 const char *end = start + strlen(start);
1876 struct device_node *np;
1877 struct alias_prop *ap;
1878 int id, len;
1879
1880 /* Skip those we do not want to proceed */
1881 if (!strcmp(pp->name, "name") ||
1882 !strcmp(pp->name, "phandle") ||
1883 !strcmp(pp->name, "linux,phandle"))
1884 continue;
1885
1886 np = of_find_node_by_path(pp->value);
1887 if (!np)
1888 continue;
1889
1890 /* walk the alias backwards to extract the id and work out
1891 * the 'stem' string */
1892 while (isdigit(*(end-1)) && end > start)
1893 end--;
1894 len = end - start;
1895
1896 if (kstrtoint(end, 10, &id) < 0)
1897 continue;
1898
1899 /* Allocate an alias_prop with enough space for the stem */
1900 ap = dt_alloc(sizeof(*ap) + len + 1, 4);
1901 if (!ap)
1902 continue;
Grant Likely0640332e2013-08-28 21:24:17 +01001903 memset(ap, 0, sizeof(*ap) + len + 1);
Shawn Guo611cad72011-08-15 15:28:14 +08001904 ap->alias = start;
1905 of_alias_add(ap, np, id, start, len);
1906 }
1907}
1908
1909/**
1910 * of_alias_get_id - Get alias id for the given device_node
1911 * @np: Pointer to the given device_node
1912 * @stem: Alias stem of the given device_node
1913 *
Geert Uytterhoeven5a53a072014-03-11 11:23:38 +01001914 * The function travels the lookup table to get the alias id for the given
1915 * device_node and alias stem. It returns the alias id if found.
Shawn Guo611cad72011-08-15 15:28:14 +08001916 */
1917int of_alias_get_id(struct device_node *np, const char *stem)
1918{
1919 struct alias_prop *app;
1920 int id = -ENODEV;
1921
Pantelis Antoniouc05aba22014-07-04 19:58:03 +03001922 mutex_lock(&of_mutex);
Shawn Guo611cad72011-08-15 15:28:14 +08001923 list_for_each_entry(app, &aliases_lookup, link) {
1924 if (strcmp(app->stem, stem) != 0)
1925 continue;
1926
1927 if (np == app->np) {
1928 id = app->id;
1929 break;
1930 }
1931 }
Pantelis Antoniouc05aba22014-07-04 19:58:03 +03001932 mutex_unlock(&of_mutex);
Shawn Guo611cad72011-08-15 15:28:14 +08001933
1934 return id;
1935}
1936EXPORT_SYMBOL_GPL(of_alias_get_id);
Stephen Warrenc541adc2012-04-04 09:27:46 -06001937
1938const __be32 *of_prop_next_u32(struct property *prop, const __be32 *cur,
1939 u32 *pu)
1940{
1941 const void *curv = cur;
1942
1943 if (!prop)
1944 return NULL;
1945
1946 if (!cur) {
1947 curv = prop->value;
1948 goto out_val;
1949 }
1950
1951 curv += sizeof(*cur);
1952 if (curv >= prop->value + prop->length)
1953 return NULL;
1954
1955out_val:
1956 *pu = be32_to_cpup(curv);
1957 return curv;
1958}
1959EXPORT_SYMBOL_GPL(of_prop_next_u32);
1960
1961const char *of_prop_next_string(struct property *prop, const char *cur)
1962{
1963 const void *curv = cur;
1964
1965 if (!prop)
1966 return NULL;
1967
1968 if (!cur)
1969 return prop->value;
1970
1971 curv += strlen(cur) + 1;
1972 if (curv >= prop->value + prop->length)
1973 return NULL;
1974
1975 return curv;
1976}
1977EXPORT_SYMBOL_GPL(of_prop_next_string);
Sascha Hauer5c19e952013-08-05 14:40:44 +02001978
1979/**
Grant Likely3482f2c2014-03-27 17:18:55 -07001980 * of_console_check() - Test and setup console for DT setup
1981 * @dn - Pointer to device node
1982 * @name - Name to use for preferred console without index. ex. "ttyS"
1983 * @index - Index to use for preferred console.
Sascha Hauer5c19e952013-08-05 14:40:44 +02001984 *
Grant Likely3482f2c2014-03-27 17:18:55 -07001985 * Check if the given device node matches the stdout-path property in the
1986 * /chosen node. If it does then register it as the preferred console and return
1987 * TRUE. Otherwise return FALSE.
Sascha Hauer5c19e952013-08-05 14:40:44 +02001988 */
Grant Likely3482f2c2014-03-27 17:18:55 -07001989bool of_console_check(struct device_node *dn, char *name, int index)
Sascha Hauer5c19e952013-08-05 14:40:44 +02001990{
Grant Likely3482f2c2014-03-27 17:18:55 -07001991 if (!dn || dn != of_stdout || console_set_on_cmdline)
Sascha Hauer5c19e952013-08-05 14:40:44 +02001992 return false;
Brian Norris5f74d8b2014-09-03 11:06:43 -07001993 return !add_preferred_console(name, index, NULL);
Sascha Hauer5c19e952013-08-05 14:40:44 +02001994}
Grant Likely3482f2c2014-03-27 17:18:55 -07001995EXPORT_SYMBOL_GPL(of_console_check);
Sudeep KarkadaNageshaa3e31b42013-09-18 11:53:05 +01001996
1997/**
1998 * of_find_next_cache_node - Find a node's subsidiary cache
1999 * @np: node of type "cpu" or "cache"
2000 *
2001 * Returns a node pointer with refcount incremented, use
2002 * of_node_put() on it when done. Caller should hold a reference
2003 * to np.
2004 */
2005struct device_node *of_find_next_cache_node(const struct device_node *np)
2006{
2007 struct device_node *child;
2008 const phandle *handle;
2009
2010 handle = of_get_property(np, "l2-cache", NULL);
2011 if (!handle)
2012 handle = of_get_property(np, "next-level-cache", NULL);
2013
2014 if (handle)
2015 return of_find_node_by_phandle(be32_to_cpup(handle));
2016
2017 /* OF on pmac has nodes instead of properties named "l2-cache"
2018 * beneath CPU nodes.
2019 */
2020 if (!strcmp(np->type, "cpu"))
2021 for_each_child_of_node(np, child)
2022 if (!strcmp(child->type, "cache"))
2023 return child;
2024
2025 return NULL;
2026}
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002027
2028/**
Philipp Zabelf2a575f2014-02-14 11:53:56 +01002029 * of_graph_parse_endpoint() - parse common endpoint node properties
2030 * @node: pointer to endpoint device_node
2031 * @endpoint: pointer to the OF endpoint data structure
2032 *
2033 * The caller should hold a reference to @node.
2034 */
2035int of_graph_parse_endpoint(const struct device_node *node,
2036 struct of_endpoint *endpoint)
2037{
2038 struct device_node *port_node = of_get_parent(node);
2039
Philipp Zabeld4847002014-03-04 12:31:24 +01002040 WARN_ONCE(!port_node, "%s(): endpoint %s has no parent node\n",
2041 __func__, node->full_name);
2042
Philipp Zabelf2a575f2014-02-14 11:53:56 +01002043 memset(endpoint, 0, sizeof(*endpoint));
2044
2045 endpoint->local_node = node;
2046 /*
2047 * It doesn't matter whether the two calls below succeed.
2048 * If they don't then the default value 0 is used.
2049 */
2050 of_property_read_u32(port_node, "reg", &endpoint->port);
2051 of_property_read_u32(node, "reg", &endpoint->id);
2052
2053 of_node_put(port_node);
2054
2055 return 0;
2056}
2057EXPORT_SYMBOL(of_graph_parse_endpoint);
2058
2059/**
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002060 * of_graph_get_next_endpoint() - get next endpoint node
2061 * @parent: pointer to the parent device node
2062 * @prev: previous endpoint node, or NULL to get first
2063 *
2064 * Return: An 'endpoint' node pointer with refcount incremented. Refcount
2065 * of the passed @prev node is not decremented, the caller have to use
2066 * of_node_put() on it when done.
2067 */
2068struct device_node *of_graph_get_next_endpoint(const struct device_node *parent,
2069 struct device_node *prev)
2070{
2071 struct device_node *endpoint;
Linus Torvalds3c83e612014-04-04 09:50:07 -07002072 struct device_node *port;
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002073
2074 if (!parent)
2075 return NULL;
2076
Linus Torvalds3c83e612014-04-04 09:50:07 -07002077 /*
2078 * Start by locating the port node. If no previous endpoint is specified
2079 * search for the first port node, otherwise get the previous endpoint
2080 * parent port node.
2081 */
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002082 if (!prev) {
2083 struct device_node *node;
Linus Torvalds3c83e612014-04-04 09:50:07 -07002084
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002085 node = of_get_child_by_name(parent, "ports");
2086 if (node)
2087 parent = node;
2088
2089 port = of_get_child_by_name(parent, "port");
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002090 of_node_put(node);
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002091
Linus Torvalds3c83e612014-04-04 09:50:07 -07002092 if (!port) {
2093 pr_err("%s(): no port node found in %s\n",
2094 __func__, parent->full_name);
Philipp Zabel4329b932014-02-26 20:43:42 +01002095 return NULL;
Linus Torvalds3c83e612014-04-04 09:50:07 -07002096 }
2097 } else {
2098 port = of_get_parent(prev);
2099 if (WARN_ONCE(!port, "%s(): endpoint %s has no parent node\n",
2100 __func__, prev->full_name))
2101 return NULL;
Philipp Zabel4329b932014-02-26 20:43:42 +01002102
Linus Torvalds3c83e612014-04-04 09:50:07 -07002103 /*
2104 * Avoid dropping prev node refcount to 0 when getting the next
2105 * child below.
2106 */
2107 of_node_get(prev);
2108 }
Philipp Zabel4329b932014-02-26 20:43:42 +01002109
Linus Torvalds3c83e612014-04-04 09:50:07 -07002110 while (1) {
2111 /*
2112 * Now that we have a port node, get the next endpoint by
2113 * getting the next child. If the previous endpoint is NULL this
2114 * will return the first child.
2115 */
2116 endpoint = of_get_next_child(port, prev);
2117 if (endpoint) {
2118 of_node_put(port);
2119 return endpoint;
2120 }
2121
2122 /* No more endpoints under this port, try the next one. */
2123 prev = NULL;
2124
2125 do {
2126 port = of_get_next_child(parent, port);
2127 if (!port)
2128 return NULL;
2129 } while (of_node_cmp(port->name, "port"));
2130 }
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002131}
2132EXPORT_SYMBOL(of_graph_get_next_endpoint);
2133
2134/**
2135 * of_graph_get_remote_port_parent() - get remote port's parent node
2136 * @node: pointer to a local endpoint device_node
2137 *
2138 * Return: Remote device node associated with remote endpoint node linked
2139 * to @node. Use of_node_put() on it when done.
2140 */
2141struct device_node *of_graph_get_remote_port_parent(
2142 const struct device_node *node)
2143{
2144 struct device_node *np;
2145 unsigned int depth;
2146
2147 /* Get remote endpoint node. */
2148 np = of_parse_phandle(node, "remote-endpoint", 0);
2149
2150 /* Walk 3 levels up only if there is 'ports' node. */
2151 for (depth = 3; depth && np; depth--) {
2152 np = of_get_next_parent(np);
2153 if (depth == 2 && of_node_cmp(np->name, "ports"))
2154 break;
2155 }
2156 return np;
2157}
2158EXPORT_SYMBOL(of_graph_get_remote_port_parent);
2159
2160/**
2161 * of_graph_get_remote_port() - get remote port node
2162 * @node: pointer to a local endpoint device_node
2163 *
2164 * Return: Remote port node associated with remote endpoint node linked
2165 * to @node. Use of_node_put() on it when done.
2166 */
2167struct device_node *of_graph_get_remote_port(const struct device_node *node)
2168{
2169 struct device_node *np;
2170
2171 /* Get remote endpoint node. */
2172 np = of_parse_phandle(node, "remote-endpoint", 0);
2173 if (!np)
2174 return NULL;
2175 return of_get_next_parent(np);
2176}
2177EXPORT_SYMBOL(of_graph_get_remote_port);