blob: 05b20f1cca7b31928d575f06570d1e23df11be91 [file] [log] [blame]
Stephen Rothwell97e873e2007-05-01 16:26:07 +10001/*
2 * Procedures for creating, accessing and interpreting the device tree.
3 *
4 * Paul Mackerras August 1996.
5 * Copyright (C) 1996-2005 Paul Mackerras.
6 *
7 * Adapted for 64bit PowerPC by Dave Engebretsen and Peter Bergner.
8 * {engebret|bergner}@us.ibm.com
9 *
10 * Adapted for sparc and sparc64 by David S. Miller davem@davemloft.net
11 *
Grant Likelye91edcf2009-10-15 10:58:09 -060012 * Reconsolidated from arch/x/kernel/prom.c by Stephen Rothwell and
13 * Grant Likely.
Stephen Rothwell97e873e2007-05-01 16:26:07 +100014 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version
18 * 2 of the License, or (at your option) any later version.
19 */
Grant Likely3482f2c2014-03-27 17:18:55 -070020#include <linux/console.h>
Shawn Guo611cad72011-08-15 15:28:14 +080021#include <linux/ctype.h>
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +010022#include <linux/cpu.h>
Stephen Rothwell97e873e2007-05-01 16:26:07 +100023#include <linux/module.h>
24#include <linux/of.h>
Philipp Zabelfd9fdb72014-02-10 22:01:48 +010025#include <linux/of_graph.h>
Stephen Rothwell581b6052007-04-24 16:46:53 +100026#include <linux/spinlock.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Grant Likely75b57ec2014-02-20 18:02:11 +000028#include <linux/string.h>
Jeremy Kerra9f2f632010-02-01 21:34:14 -070029#include <linux/proc_fs.h>
Stephen Rothwell581b6052007-04-24 16:46:53 +100030
Stepan Moskovchenkoced4eec2012-12-06 14:55:41 -080031#include "of_private.h"
Shawn Guo611cad72011-08-15 15:28:14 +080032
Stepan Moskovchenkoced4eec2012-12-06 14:55:41 -080033LIST_HEAD(aliases_lookup);
Shawn Guo611cad72011-08-15 15:28:14 +080034
Grant Likely5063e252014-10-03 16:28:27 +010035struct device_node *of_root;
36EXPORT_SYMBOL(of_root);
Grant Likelyfc0bdae2010-02-14 07:13:55 -070037struct device_node *of_chosen;
Shawn Guo611cad72011-08-15 15:28:14 +080038struct device_node *of_aliases;
Grant Likelya752ee52014-03-28 08:12:18 -070039struct device_node *of_stdout;
Leif Lindholm7914a7c2014-11-27 17:56:07 +000040static const char *of_stdout_options;
Shawn Guo611cad72011-08-15 15:28:14 +080041
Grant Likely8a2b22a2014-07-23 17:05:06 -060042struct kset *of_kset;
Grant Likely75b57ec2014-02-20 18:02:11 +000043
44/*
Grant Likely8a2b22a2014-07-23 17:05:06 -060045 * Used to protect the of_aliases, to hold off addition of nodes to sysfs.
46 * This mutex must be held whenever modifications are being made to the
47 * device tree. The of_{attach,detach}_node() and
48 * of_{add,remove,update}_property() helpers make sure this happens.
Grant Likely75b57ec2014-02-20 18:02:11 +000049 */
Pantelis Antoniouc05aba22014-07-04 19:58:03 +030050DEFINE_MUTEX(of_mutex);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +100051
Grant Likely5063e252014-10-03 16:28:27 +010052/* use when traversing tree through the child, sibling,
Stephen Rothwell581b6052007-04-24 16:46:53 +100053 * or parent members of struct device_node.
54 */
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -050055DEFINE_RAW_SPINLOCK(devtree_lock);
Stephen Rothwell97e873e2007-05-01 16:26:07 +100056
57int of_n_addr_cells(struct device_node *np)
58{
Jeremy Kerra9fadee2010-10-10 21:24:10 -060059 const __be32 *ip;
Stephen Rothwell97e873e2007-05-01 16:26:07 +100060
61 do {
62 if (np->parent)
63 np = np->parent;
64 ip = of_get_property(np, "#address-cells", NULL);
65 if (ip)
Jeremy Kerr33714882010-01-30 01:45:26 -070066 return be32_to_cpup(ip);
Stephen Rothwell97e873e2007-05-01 16:26:07 +100067 } while (np->parent);
68 /* No #address-cells property for the root node */
69 return OF_ROOT_NODE_ADDR_CELLS_DEFAULT;
70}
71EXPORT_SYMBOL(of_n_addr_cells);
72
73int of_n_size_cells(struct device_node *np)
74{
Jeremy Kerra9fadee2010-10-10 21:24:10 -060075 const __be32 *ip;
Stephen Rothwell97e873e2007-05-01 16:26:07 +100076
77 do {
78 if (np->parent)
79 np = np->parent;
80 ip = of_get_property(np, "#size-cells", NULL);
81 if (ip)
Jeremy Kerr33714882010-01-30 01:45:26 -070082 return be32_to_cpup(ip);
Stephen Rothwell97e873e2007-05-01 16:26:07 +100083 } while (np->parent);
84 /* No #size-cells property for the root node */
85 return OF_ROOT_NODE_SIZE_CELLS_DEFAULT;
86}
87EXPORT_SYMBOL(of_n_size_cells);
88
Rob Herring0c3f0612013-09-17 10:42:50 -050089#ifdef CONFIG_NUMA
90int __weak of_node_to_nid(struct device_node *np)
91{
92 return numa_node_id();
93}
94#endif
95
Grant Likely6afc0dc2014-06-26 15:40:48 +010096#ifndef CONFIG_OF_DYNAMIC
Grant Likely75b57ec2014-02-20 18:02:11 +000097static void of_node_release(struct kobject *kobj)
98{
99 /* Without CONFIG_OF_DYNAMIC, no nodes gets freed */
100}
Grant Likely0f22dd32012-02-15 20:38:40 -0700101#endif /* CONFIG_OF_DYNAMIC */
Grant Likely923f7e32010-01-28 13:52:53 -0700102
Grant Likely75b57ec2014-02-20 18:02:11 +0000103struct kobj_type of_node_ktype = {
104 .release = of_node_release,
105};
106
107static ssize_t of_node_property_read(struct file *filp, struct kobject *kobj,
108 struct bin_attribute *bin_attr, char *buf,
109 loff_t offset, size_t count)
110{
111 struct property *pp = container_of(bin_attr, struct property, attr);
112 return memory_read_from_buffer(buf, count, &offset, pp->value, pp->length);
113}
114
115static const char *safe_name(struct kobject *kobj, const char *orig_name)
116{
117 const char *name = orig_name;
118 struct kernfs_node *kn;
119 int i = 0;
120
121 /* don't be a hero. After 16 tries give up */
122 while (i < 16 && (kn = sysfs_get_dirent(kobj->sd, name))) {
123 sysfs_put(kn);
124 if (name != orig_name)
125 kfree(name);
126 name = kasprintf(GFP_KERNEL, "%s#%i", orig_name, ++i);
127 }
128
129 if (name != orig_name)
130 pr_warn("device-tree: Duplicate name in %s, renamed to \"%s\"\n",
131 kobject_name(kobj), name);
132 return name;
133}
134
Grant Likely8a2b22a2014-07-23 17:05:06 -0600135int __of_add_property_sysfs(struct device_node *np, struct property *pp)
Grant Likely75b57ec2014-02-20 18:02:11 +0000136{
137 int rc;
138
139 /* Important: Don't leak passwords */
140 bool secure = strncmp(pp->name, "security-", 9) == 0;
141
Gaurav Minochaef69d742014-09-05 09:56:13 -0700142 if (!IS_ENABLED(CONFIG_SYSFS))
143 return 0;
144
Grant Likely8a2b22a2014-07-23 17:05:06 -0600145 if (!of_kset || !of_node_is_attached(np))
146 return 0;
147
Grant Likely75b57ec2014-02-20 18:02:11 +0000148 sysfs_bin_attr_init(&pp->attr);
149 pp->attr.attr.name = safe_name(&np->kobj, pp->name);
150 pp->attr.attr.mode = secure ? S_IRUSR : S_IRUGO;
151 pp->attr.size = secure ? 0 : pp->length;
152 pp->attr.read = of_node_property_read;
153
154 rc = sysfs_create_bin_file(&np->kobj, &pp->attr);
155 WARN(rc, "error adding attribute %s to node %s\n", pp->name, np->full_name);
156 return rc;
157}
158
Grant Likely8a2b22a2014-07-23 17:05:06 -0600159int __of_attach_node_sysfs(struct device_node *np)
Grant Likely75b57ec2014-02-20 18:02:11 +0000160{
161 const char *name;
162 struct property *pp;
163 int rc;
164
Gaurav Minochaef69d742014-09-05 09:56:13 -0700165 if (!IS_ENABLED(CONFIG_SYSFS))
166 return 0;
167
Grant Likely8a2b22a2014-07-23 17:05:06 -0600168 if (!of_kset)
169 return 0;
170
Grant Likely75b57ec2014-02-20 18:02:11 +0000171 np->kobj.kset = of_kset;
172 if (!np->parent) {
173 /* Nodes without parents are new top level trees */
Kees Cook28d3ee42014-06-10 09:57:00 -0700174 rc = kobject_add(&np->kobj, NULL, "%s",
175 safe_name(&of_kset->kobj, "base"));
Grant Likely75b57ec2014-02-20 18:02:11 +0000176 } else {
177 name = safe_name(&np->parent->kobj, kbasename(np->full_name));
178 if (!name || !name[0])
179 return -EINVAL;
180
181 rc = kobject_add(&np->kobj, &np->parent->kobj, "%s", name);
182 }
183 if (rc)
184 return rc;
185
186 for_each_property_of_node(np, pp)
187 __of_add_property_sysfs(np, pp);
188
189 return 0;
190}
191
Grant Likely75b57ec2014-02-20 18:02:11 +0000192static int __init of_init(void)
193{
194 struct device_node *np;
195
196 /* Create the kset, and register existing nodes */
Pantelis Antoniouc05aba22014-07-04 19:58:03 +0300197 mutex_lock(&of_mutex);
Grant Likely75b57ec2014-02-20 18:02:11 +0000198 of_kset = kset_create_and_add("devicetree", NULL, firmware_kobj);
199 if (!of_kset) {
Pantelis Antoniouc05aba22014-07-04 19:58:03 +0300200 mutex_unlock(&of_mutex);
Grant Likely75b57ec2014-02-20 18:02:11 +0000201 return -ENOMEM;
202 }
203 for_each_of_allnodes(np)
Grant Likely8a2b22a2014-07-23 17:05:06 -0600204 __of_attach_node_sysfs(np);
Pantelis Antoniouc05aba22014-07-04 19:58:03 +0300205 mutex_unlock(&of_mutex);
Grant Likely75b57ec2014-02-20 18:02:11 +0000206
Grant Likely83570412012-11-06 21:03:27 +0000207 /* Symlink in /proc as required by userspace ABI */
Grant Likely5063e252014-10-03 16:28:27 +0100208 if (of_root)
Grant Likely75b57ec2014-02-20 18:02:11 +0000209 proc_symlink("device-tree", NULL, "/sys/firmware/devicetree/base");
Grant Likely75b57ec2014-02-20 18:02:11 +0000210
211 return 0;
212}
213core_initcall(of_init);
214
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500215static struct property *__of_find_property(const struct device_node *np,
216 const char *name, int *lenp)
Stephen Rothwell581b6052007-04-24 16:46:53 +1000217{
218 struct property *pp;
219
Timur Tabi64e45662008-05-08 05:19:59 +1000220 if (!np)
221 return NULL;
222
Sachin Kamata3a7cab2012-06-27 09:44:45 +0530223 for (pp = np->properties; pp; pp = pp->next) {
Stephen Rothwell581b6052007-04-24 16:46:53 +1000224 if (of_prop_cmp(pp->name, name) == 0) {
Sachin Kamata3a7cab2012-06-27 09:44:45 +0530225 if (lenp)
Stephen Rothwell581b6052007-04-24 16:46:53 +1000226 *lenp = pp->length;
227 break;
228 }
229 }
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500230
231 return pp;
232}
233
234struct property *of_find_property(const struct device_node *np,
235 const char *name,
236 int *lenp)
237{
238 struct property *pp;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500239 unsigned long flags;
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500240
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500241 raw_spin_lock_irqsave(&devtree_lock, flags);
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500242 pp = __of_find_property(np, name, lenp);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500243 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwell581b6052007-04-24 16:46:53 +1000244
245 return pp;
246}
247EXPORT_SYMBOL(of_find_property);
248
Grant Likely5063e252014-10-03 16:28:27 +0100249struct device_node *__of_find_all_nodes(struct device_node *prev)
250{
251 struct device_node *np;
252 if (!prev) {
253 np = of_root;
254 } else if (prev->child) {
255 np = prev->child;
256 } else {
257 /* Walk back up looking for a sibling, or the end of the structure */
258 np = prev;
259 while (np->parent && !np->sibling)
260 np = np->parent;
261 np = np->sibling; /* Might be null at the end of the tree */
262 }
263 return np;
264}
265
Grant Likelye91edcf2009-10-15 10:58:09 -0600266/**
267 * of_find_all_nodes - Get next node in global list
268 * @prev: Previous node or NULL to start iteration
269 * of_node_put() will be called on it
270 *
271 * Returns a node pointer with refcount incremented, use
272 * of_node_put() on it when done.
273 */
274struct device_node *of_find_all_nodes(struct device_node *prev)
275{
276 struct device_node *np;
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000277 unsigned long flags;
Grant Likelye91edcf2009-10-15 10:58:09 -0600278
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000279 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likely5063e252014-10-03 16:28:27 +0100280 np = __of_find_all_nodes(prev);
281 of_node_get(np);
Grant Likelye91edcf2009-10-15 10:58:09 -0600282 of_node_put(prev);
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000283 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Grant Likelye91edcf2009-10-15 10:58:09 -0600284 return np;
285}
286EXPORT_SYMBOL(of_find_all_nodes);
287
Stephen Rothwell97e873e2007-05-01 16:26:07 +1000288/*
289 * Find a property with a given name for a given node
290 * and return the value.
291 */
Grant Likelya25095d2014-07-15 23:25:43 -0600292const void *__of_get_property(const struct device_node *np,
293 const char *name, int *lenp)
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500294{
295 struct property *pp = __of_find_property(np, name, lenp);
296
297 return pp ? pp->value : NULL;
298}
299
300/*
301 * Find a property with a given name for a given node
302 * and return the value.
303 */
Stephen Rothwell97e873e2007-05-01 16:26:07 +1000304const void *of_get_property(const struct device_node *np, const char *name,
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500305 int *lenp)
Stephen Rothwell97e873e2007-05-01 16:26:07 +1000306{
307 struct property *pp = of_find_property(np, name, lenp);
308
309 return pp ? pp->value : NULL;
310}
311EXPORT_SYMBOL(of_get_property);
Stephen Rothwell0081cbc2007-05-01 16:29:19 +1000312
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100313/*
314 * arch_match_cpu_phys_id - Match the given logical CPU and physical id
315 *
316 * @cpu: logical cpu index of a core/thread
317 * @phys_id: physical identifier of a core/thread
318 *
319 * CPU logical to physical index mapping is architecture specific.
320 * However this __weak function provides a default match of physical
321 * id to logical cpu index. phys_id provided here is usually values read
322 * from the device tree which must match the hardware internal registers.
323 *
324 * Returns true if the physical identifier and the logical cpu index
325 * correspond to the same core/thread, false otherwise.
326 */
327bool __weak arch_match_cpu_phys_id(int cpu, u64 phys_id)
328{
329 return (u32)phys_id == cpu;
330}
331
332/**
333 * Checks if the given "prop_name" property holds the physical id of the
334 * core/thread corresponding to the logical cpu 'cpu'. If 'thread' is not
335 * NULL, local thread number within the core is returned in it.
336 */
337static bool __of_find_n_match_cpu_property(struct device_node *cpun,
338 const char *prop_name, int cpu, unsigned int *thread)
339{
340 const __be32 *cell;
341 int ac, prop_len, tid;
342 u64 hwid;
343
344 ac = of_n_addr_cells(cpun);
345 cell = of_get_property(cpun, prop_name, &prop_len);
Grant Likelyf3cea452013-10-04 17:24:26 +0100346 if (!cell || !ac)
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100347 return false;
Grant Likelyf3cea452013-10-04 17:24:26 +0100348 prop_len /= sizeof(*cell) * ac;
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100349 for (tid = 0; tid < prop_len; tid++) {
350 hwid = of_read_number(cell, ac);
351 if (arch_match_cpu_phys_id(cpu, hwid)) {
352 if (thread)
353 *thread = tid;
354 return true;
355 }
356 cell += ac;
357 }
358 return false;
359}
360
David Millerd1cb9d12013-10-03 17:24:51 -0400361/*
362 * arch_find_n_match_cpu_physical_id - See if the given device node is
363 * for the cpu corresponding to logical cpu 'cpu'. Return true if so,
364 * else false. If 'thread' is non-NULL, the local thread number within the
365 * core is returned in it.
366 */
367bool __weak arch_find_n_match_cpu_physical_id(struct device_node *cpun,
368 int cpu, unsigned int *thread)
369{
370 /* Check for non-standard "ibm,ppc-interrupt-server#s" property
371 * for thread ids on PowerPC. If it doesn't exist fallback to
372 * standard "reg" property.
373 */
374 if (IS_ENABLED(CONFIG_PPC) &&
375 __of_find_n_match_cpu_property(cpun,
376 "ibm,ppc-interrupt-server#s",
377 cpu, thread))
378 return true;
379
380 if (__of_find_n_match_cpu_property(cpun, "reg", cpu, thread))
381 return true;
382
383 return false;
384}
385
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100386/**
387 * of_get_cpu_node - Get device node associated with the given logical CPU
388 *
389 * @cpu: CPU number(logical index) for which device node is required
390 * @thread: if not NULL, local thread number within the physical core is
391 * returned
392 *
393 * The main purpose of this function is to retrieve the device node for the
394 * given logical CPU index. It should be used to initialize the of_node in
395 * cpu device. Once of_node in cpu device is populated, all the further
396 * references can use that instead.
397 *
398 * CPU logical to physical index mapping is architecture specific and is built
399 * before booting secondary cores. This function uses arch_match_cpu_phys_id
400 * which can be overridden by architecture specific implementation.
401 *
402 * Returns a node pointer for the logical cpu if found, else NULL.
403 */
404struct device_node *of_get_cpu_node(int cpu, unsigned int *thread)
405{
David Millerd1cb9d12013-10-03 17:24:51 -0400406 struct device_node *cpun;
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100407
David Millerd1cb9d12013-10-03 17:24:51 -0400408 for_each_node_by_type(cpun, "cpu") {
409 if (arch_find_n_match_cpu_physical_id(cpun, cpu, thread))
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100410 return cpun;
411 }
412 return NULL;
413}
414EXPORT_SYMBOL(of_get_cpu_node);
415
Kevin Hao215a14c2014-02-19 16:15:45 +0800416/**
417 * __of_device_is_compatible() - Check if the node matches given constraints
418 * @device: pointer to node
419 * @compat: required compatible string, NULL or "" for any match
420 * @type: required device_type value, NULL or "" for any match
421 * @name: required node name, NULL or "" for any match
422 *
423 * Checks if the given @compat, @type and @name strings match the
424 * properties of the given @device. A constraints can be skipped by
425 * passing NULL or an empty string as the constraint.
426 *
427 * Returns 0 for no match, and a positive integer on match. The return
428 * value is a relative score with larger values indicating better
429 * matches. The score is weighted for the most specific compatible value
430 * to get the highest score. Matching type is next, followed by matching
431 * name. Practically speaking, this results in the following priority
432 * order for matches:
433 *
434 * 1. specific compatible && type && name
435 * 2. specific compatible && type
436 * 3. specific compatible && name
437 * 4. specific compatible
438 * 5. general compatible && type && name
439 * 6. general compatible && type
440 * 7. general compatible && name
441 * 8. general compatible
442 * 9. type && name
443 * 10. type
444 * 11. name
Stephen Rothwell0081cbc2007-05-01 16:29:19 +1000445 */
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500446static int __of_device_is_compatible(const struct device_node *device,
Kevin Hao215a14c2014-02-19 16:15:45 +0800447 const char *compat, const char *type, const char *name)
Stephen Rothwell0081cbc2007-05-01 16:29:19 +1000448{
Kevin Hao215a14c2014-02-19 16:15:45 +0800449 struct property *prop;
450 const char *cp;
451 int index = 0, score = 0;
Stephen Rothwell0081cbc2007-05-01 16:29:19 +1000452
Kevin Hao215a14c2014-02-19 16:15:45 +0800453 /* Compatible match has highest priority */
454 if (compat && compat[0]) {
455 prop = __of_find_property(device, "compatible", NULL);
456 for (cp = of_prop_next_string(prop, NULL); cp;
457 cp = of_prop_next_string(prop, cp), index++) {
458 if (of_compat_cmp(cp, compat, strlen(compat)) == 0) {
459 score = INT_MAX/2 - (index << 2);
460 break;
461 }
462 }
463 if (!score)
464 return 0;
Stephen Rothwell0081cbc2007-05-01 16:29:19 +1000465 }
466
Kevin Hao215a14c2014-02-19 16:15:45 +0800467 /* Matching type is better than matching name */
468 if (type && type[0]) {
469 if (!device->type || of_node_cmp(type, device->type))
470 return 0;
471 score += 2;
472 }
473
474 /* Matching name is a bit better than not */
475 if (name && name[0]) {
476 if (!device->name || of_node_cmp(name, device->name))
477 return 0;
478 score++;
479 }
480
481 return score;
Stephen Rothwell0081cbc2007-05-01 16:29:19 +1000482}
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500483
484/** Checks if the given "compat" string matches one of the strings in
485 * the device's "compatible" property
486 */
487int of_device_is_compatible(const struct device_node *device,
488 const char *compat)
489{
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500490 unsigned long flags;
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500491 int res;
492
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500493 raw_spin_lock_irqsave(&devtree_lock, flags);
Kevin Hao215a14c2014-02-19 16:15:45 +0800494 res = __of_device_is_compatible(device, compat, NULL, NULL);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500495 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500496 return res;
497}
Stephen Rothwell0081cbc2007-05-01 16:29:19 +1000498EXPORT_SYMBOL(of_device_is_compatible);
Stephen Rothwelle679c5f2007-04-24 17:16:16 +1000499
500/**
Grant Likely71a157e2010-02-01 21:34:14 -0700501 * of_machine_is_compatible - Test root of device tree for a given compatible value
Grant Likely1f43cfb2010-01-28 13:47:25 -0700502 * @compat: compatible string to look for in root node's compatible property.
503 *
Kevin Cernekee25c7a1d2014-11-12 12:54:00 -0800504 * Returns a positive integer if the root node has the given value in its
Grant Likely1f43cfb2010-01-28 13:47:25 -0700505 * compatible property.
506 */
Grant Likely71a157e2010-02-01 21:34:14 -0700507int of_machine_is_compatible(const char *compat)
Grant Likely1f43cfb2010-01-28 13:47:25 -0700508{
509 struct device_node *root;
510 int rc = 0;
511
512 root = of_find_node_by_path("/");
513 if (root) {
514 rc = of_device_is_compatible(root, compat);
515 of_node_put(root);
516 }
517 return rc;
518}
Grant Likely71a157e2010-02-01 21:34:14 -0700519EXPORT_SYMBOL(of_machine_is_compatible);
Grant Likely1f43cfb2010-01-28 13:47:25 -0700520
521/**
Stephen Warrenc31a0c02013-02-11 14:15:32 -0700522 * __of_device_is_available - check if a device is available for use
Josh Boyer834d97d2008-03-27 00:33:14 +1100523 *
Stephen Warrenc31a0c02013-02-11 14:15:32 -0700524 * @device: Node to check for availability, with locks already held
Josh Boyer834d97d2008-03-27 00:33:14 +1100525 *
Kevin Cernekee53a4ab92014-11-12 12:54:01 -0800526 * Returns true if the status property is absent or set to "okay" or "ok",
527 * false otherwise
Josh Boyer834d97d2008-03-27 00:33:14 +1100528 */
Kevin Cernekee53a4ab92014-11-12 12:54:01 -0800529static bool __of_device_is_available(const struct device_node *device)
Josh Boyer834d97d2008-03-27 00:33:14 +1100530{
531 const char *status;
532 int statlen;
533
Xiubo Li42ccd782014-01-13 11:07:28 +0800534 if (!device)
Kevin Cernekee53a4ab92014-11-12 12:54:01 -0800535 return false;
Xiubo Li42ccd782014-01-13 11:07:28 +0800536
Stephen Warrenc31a0c02013-02-11 14:15:32 -0700537 status = __of_get_property(device, "status", &statlen);
Josh Boyer834d97d2008-03-27 00:33:14 +1100538 if (status == NULL)
Kevin Cernekee53a4ab92014-11-12 12:54:01 -0800539 return true;
Josh Boyer834d97d2008-03-27 00:33:14 +1100540
541 if (statlen > 0) {
542 if (!strcmp(status, "okay") || !strcmp(status, "ok"))
Kevin Cernekee53a4ab92014-11-12 12:54:01 -0800543 return true;
Josh Boyer834d97d2008-03-27 00:33:14 +1100544 }
545
Kevin Cernekee53a4ab92014-11-12 12:54:01 -0800546 return false;
Josh Boyer834d97d2008-03-27 00:33:14 +1100547}
Stephen Warrenc31a0c02013-02-11 14:15:32 -0700548
549/**
550 * of_device_is_available - check if a device is available for use
551 *
552 * @device: Node to check for availability
553 *
Kevin Cernekee53a4ab92014-11-12 12:54:01 -0800554 * Returns true if the status property is absent or set to "okay" or "ok",
555 * false otherwise
Stephen Warrenc31a0c02013-02-11 14:15:32 -0700556 */
Kevin Cernekee53a4ab92014-11-12 12:54:01 -0800557bool of_device_is_available(const struct device_node *device)
Stephen Warrenc31a0c02013-02-11 14:15:32 -0700558{
559 unsigned long flags;
Kevin Cernekee53a4ab92014-11-12 12:54:01 -0800560 bool res;
Stephen Warrenc31a0c02013-02-11 14:15:32 -0700561
562 raw_spin_lock_irqsave(&devtree_lock, flags);
563 res = __of_device_is_available(device);
564 raw_spin_unlock_irqrestore(&devtree_lock, flags);
565 return res;
566
567}
Josh Boyer834d97d2008-03-27 00:33:14 +1100568EXPORT_SYMBOL(of_device_is_available);
569
570/**
Stephen Rothwelle679c5f2007-04-24 17:16:16 +1000571 * of_get_parent - Get a node's parent if any
572 * @node: Node to get parent
573 *
574 * Returns a node pointer with refcount incremented, use
575 * of_node_put() on it when done.
576 */
577struct device_node *of_get_parent(const struct device_node *node)
578{
579 struct device_node *np;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500580 unsigned long flags;
Stephen Rothwelle679c5f2007-04-24 17:16:16 +1000581
582 if (!node)
583 return NULL;
584
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500585 raw_spin_lock_irqsave(&devtree_lock, flags);
Stephen Rothwelle679c5f2007-04-24 17:16:16 +1000586 np = of_node_get(node->parent);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500587 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwelle679c5f2007-04-24 17:16:16 +1000588 return np;
589}
590EXPORT_SYMBOL(of_get_parent);
Stephen Rothwelld1cd3552007-04-24 17:21:29 +1000591
592/**
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000593 * of_get_next_parent - Iterate to a node's parent
594 * @node: Node to get parent of
595 *
Geert Uytterhoevenc0e848d2014-10-22 11:44:55 +0200596 * This is like of_get_parent() except that it drops the
597 * refcount on the passed node, making it suitable for iterating
598 * through a node's parents.
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000599 *
600 * Returns a node pointer with refcount incremented, use
601 * of_node_put() on it when done.
602 */
603struct device_node *of_get_next_parent(struct device_node *node)
604{
605 struct device_node *parent;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500606 unsigned long flags;
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000607
608 if (!node)
609 return NULL;
610
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500611 raw_spin_lock_irqsave(&devtree_lock, flags);
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000612 parent = of_node_get(node->parent);
613 of_node_put(node);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500614 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000615 return parent;
616}
Guennadi Liakhovetski6695be62013-04-02 12:28:11 -0300617EXPORT_SYMBOL(of_get_next_parent);
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000618
Grant Likely0d0e02d2014-05-22 01:04:17 +0900619static struct device_node *__of_get_next_child(const struct device_node *node,
620 struct device_node *prev)
621{
622 struct device_node *next;
623
Florian Fainelli43cb4362014-05-28 10:39:02 -0700624 if (!node)
625 return NULL;
626
Grant Likely0d0e02d2014-05-22 01:04:17 +0900627 next = prev ? prev->sibling : node->child;
628 for (; next; next = next->sibling)
629 if (of_node_get(next))
630 break;
631 of_node_put(prev);
632 return next;
633}
634#define __for_each_child_of_node(parent, child) \
635 for (child = __of_get_next_child(parent, NULL); child != NULL; \
636 child = __of_get_next_child(parent, child))
637
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000638/**
Stephen Rothwelld1cd3552007-04-24 17:21:29 +1000639 * of_get_next_child - Iterate a node childs
640 * @node: parent node
641 * @prev: previous child of the parent node, or NULL to get first
642 *
643 * Returns a node pointer with refcount incremented, use
644 * of_node_put() on it when done.
645 */
646struct device_node *of_get_next_child(const struct device_node *node,
647 struct device_node *prev)
648{
649 struct device_node *next;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500650 unsigned long flags;
Stephen Rothwelld1cd3552007-04-24 17:21:29 +1000651
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500652 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likely0d0e02d2014-05-22 01:04:17 +0900653 next = __of_get_next_child(node, prev);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500654 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwelld1cd3552007-04-24 17:21:29 +1000655 return next;
656}
657EXPORT_SYMBOL(of_get_next_child);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000658
659/**
Timur Tabi32961932012-08-14 13:20:23 +0000660 * of_get_next_available_child - Find the next available child node
661 * @node: parent node
662 * @prev: previous child of the parent node, or NULL to get first
663 *
664 * This function is like of_get_next_child(), except that it
665 * automatically skips any disabled nodes (i.e. status = "disabled").
666 */
667struct device_node *of_get_next_available_child(const struct device_node *node,
668 struct device_node *prev)
669{
670 struct device_node *next;
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000671 unsigned long flags;
Timur Tabi32961932012-08-14 13:20:23 +0000672
Florian Fainelli43cb4362014-05-28 10:39:02 -0700673 if (!node)
674 return NULL;
675
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000676 raw_spin_lock_irqsave(&devtree_lock, flags);
Timur Tabi32961932012-08-14 13:20:23 +0000677 next = prev ? prev->sibling : node->child;
678 for (; next; next = next->sibling) {
Stephen Warrenc31a0c02013-02-11 14:15:32 -0700679 if (!__of_device_is_available(next))
Timur Tabi32961932012-08-14 13:20:23 +0000680 continue;
681 if (of_node_get(next))
682 break;
683 }
684 of_node_put(prev);
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000685 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Timur Tabi32961932012-08-14 13:20:23 +0000686 return next;
687}
688EXPORT_SYMBOL(of_get_next_available_child);
689
690/**
Srinivas Kandagatla9c197612012-09-18 08:10:28 +0100691 * of_get_child_by_name - Find the child node by name for a given parent
692 * @node: parent node
693 * @name: child name to look for.
694 *
695 * This function looks for child node for given matching name
696 *
697 * Returns a node pointer if found, with refcount incremented, use
698 * of_node_put() on it when done.
699 * Returns NULL if node is not found.
700 */
701struct device_node *of_get_child_by_name(const struct device_node *node,
702 const char *name)
703{
704 struct device_node *child;
705
706 for_each_child_of_node(node, child)
707 if (child->name && (of_node_cmp(child->name, name) == 0))
708 break;
709 return child;
710}
711EXPORT_SYMBOL(of_get_child_by_name);
712
Grant Likelyc22e6502014-03-14 17:07:12 +0000713static struct device_node *__of_find_node_by_path(struct device_node *parent,
714 const char *path)
715{
716 struct device_node *child;
717 int len = strchrnul(path, '/') - path;
Leif Lindholm75c28c02014-11-28 11:34:28 +0000718 int term;
Grant Likelyc22e6502014-03-14 17:07:12 +0000719
720 if (!len)
721 return NULL;
722
Leif Lindholm75c28c02014-11-28 11:34:28 +0000723 term = strchrnul(path, ':') - path;
724 if (term < len)
725 len = term;
726
Grant Likelyc22e6502014-03-14 17:07:12 +0000727 __for_each_child_of_node(parent, child) {
728 const char *name = strrchr(child->full_name, '/');
729 if (WARN(!name, "malformed device_node %s\n", child->full_name))
730 continue;
731 name++;
732 if (strncmp(path, name, len) == 0 && (strlen(name) == len))
733 return child;
734 }
735 return NULL;
736}
737
Srinivas Kandagatla9c197612012-09-18 08:10:28 +0100738/**
Leif Lindholm75c28c02014-11-28 11:34:28 +0000739 * of_find_node_opts_by_path - Find a node matching a full OF path
Grant Likelyc22e6502014-03-14 17:07:12 +0000740 * @path: Either the full path to match, or if the path does not
741 * start with '/', the name of a property of the /aliases
742 * node (an alias). In the case of an alias, the node
743 * matching the alias' value will be returned.
Leif Lindholm75c28c02014-11-28 11:34:28 +0000744 * @opts: Address of a pointer into which to store the start of
745 * an options string appended to the end of the path with
746 * a ':' separator.
Grant Likelyc22e6502014-03-14 17:07:12 +0000747 *
748 * Valid paths:
749 * /foo/bar Full path
750 * foo Valid alias
751 * foo/bar Valid alias + relative path
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000752 *
753 * Returns a node pointer with refcount incremented, use
754 * of_node_put() on it when done.
755 */
Leif Lindholm75c28c02014-11-28 11:34:28 +0000756struct device_node *of_find_node_opts_by_path(const char *path, const char **opts)
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000757{
Grant Likelyc22e6502014-03-14 17:07:12 +0000758 struct device_node *np = NULL;
759 struct property *pp;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500760 unsigned long flags;
Leif Lindholm75c28c02014-11-28 11:34:28 +0000761 const char *separator = strchr(path, ':');
762
763 if (opts)
764 *opts = separator ? separator + 1 : NULL;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000765
Grant Likelyc22e6502014-03-14 17:07:12 +0000766 if (strcmp(path, "/") == 0)
Grant Likely5063e252014-10-03 16:28:27 +0100767 return of_node_get(of_root);
Grant Likelyc22e6502014-03-14 17:07:12 +0000768
769 /* The path could begin with an alias */
770 if (*path != '/') {
771 char *p = strchrnul(path, '/');
Leif Lindholm75c28c02014-11-28 11:34:28 +0000772 int len = separator ? separator - path : p - path;
Grant Likelyc22e6502014-03-14 17:07:12 +0000773
774 /* of_aliases must not be NULL */
775 if (!of_aliases)
776 return NULL;
777
778 for_each_property_of_node(of_aliases, pp) {
779 if (strlen(pp->name) == len && !strncmp(pp->name, path, len)) {
780 np = of_find_node_by_path(pp->value);
781 break;
782 }
783 }
784 if (!np)
785 return NULL;
786 path = p;
787 }
788
789 /* Step down the tree matching path components */
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500790 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likelyc22e6502014-03-14 17:07:12 +0000791 if (!np)
Grant Likely5063e252014-10-03 16:28:27 +0100792 np = of_node_get(of_root);
Grant Likelyc22e6502014-03-14 17:07:12 +0000793 while (np && *path == '/') {
794 path++; /* Increment past '/' delimiter */
795 np = __of_find_node_by_path(np, path);
796 path = strchrnul(path, '/');
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000797 }
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500798 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000799 return np;
800}
Leif Lindholm75c28c02014-11-28 11:34:28 +0000801EXPORT_SYMBOL(of_find_node_opts_by_path);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000802
803/**
804 * of_find_node_by_name - Find a node by its "name" property
805 * @from: The node to start searching from or NULL, the node
806 * you pass will not be searched, only the next one
807 * will; typically, you pass what the previous call
808 * returned. of_node_put() will be called on it
809 * @name: The name string to match against
810 *
811 * Returns a node pointer with refcount incremented, use
812 * of_node_put() on it when done.
813 */
814struct device_node *of_find_node_by_name(struct device_node *from,
815 const char *name)
816{
817 struct device_node *np;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500818 unsigned long flags;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000819
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500820 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likely5063e252014-10-03 16:28:27 +0100821 for_each_of_allnodes_from(from, np)
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000822 if (np->name && (of_node_cmp(np->name, name) == 0)
823 && of_node_get(np))
824 break;
825 of_node_put(from);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500826 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000827 return np;
828}
829EXPORT_SYMBOL(of_find_node_by_name);
830
831/**
832 * of_find_node_by_type - Find a node by its "device_type" property
833 * @from: The node to start searching from, or NULL to start searching
834 * the entire device tree. The node you pass will not be
835 * searched, only the next one will; typically, you pass
836 * what the previous call returned. of_node_put() will be
837 * called on from for you.
838 * @type: The type string to match against
839 *
840 * Returns a node pointer with refcount incremented, use
841 * of_node_put() on it when done.
842 */
843struct device_node *of_find_node_by_type(struct device_node *from,
844 const char *type)
845{
846 struct device_node *np;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500847 unsigned long flags;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000848
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500849 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likely5063e252014-10-03 16:28:27 +0100850 for_each_of_allnodes_from(from, np)
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000851 if (np->type && (of_node_cmp(np->type, type) == 0)
852 && of_node_get(np))
853 break;
854 of_node_put(from);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500855 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000856 return np;
857}
858EXPORT_SYMBOL(of_find_node_by_type);
859
860/**
861 * of_find_compatible_node - Find a node based on type and one of the
862 * tokens in its "compatible" property
863 * @from: The node to start searching from or NULL, the node
864 * you pass will not be searched, only the next one
865 * will; typically, you pass what the previous call
866 * returned. of_node_put() will be called on it
867 * @type: The type string to match "device_type" or NULL to ignore
868 * @compatible: The string to match to one of the tokens in the device
869 * "compatible" list.
870 *
871 * Returns a node pointer with refcount incremented, use
872 * of_node_put() on it when done.
873 */
874struct device_node *of_find_compatible_node(struct device_node *from,
875 const char *type, const char *compatible)
876{
877 struct device_node *np;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500878 unsigned long flags;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000879
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500880 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likely5063e252014-10-03 16:28:27 +0100881 for_each_of_allnodes_from(from, np)
Kevin Hao215a14c2014-02-19 16:15:45 +0800882 if (__of_device_is_compatible(np, compatible, type, NULL) &&
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500883 of_node_get(np))
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000884 break;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000885 of_node_put(from);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500886 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000887 return np;
888}
889EXPORT_SYMBOL(of_find_compatible_node);
Grant Likely283029d2008-01-09 06:20:40 +1100890
891/**
Michael Ellerman1e291b12008-11-12 18:54:42 +0000892 * of_find_node_with_property - Find a node which has a property with
893 * the given name.
894 * @from: The node to start searching from or NULL, the node
895 * you pass will not be searched, only the next one
896 * will; typically, you pass what the previous call
897 * returned. of_node_put() will be called on it
898 * @prop_name: The name of the property to look for.
899 *
900 * Returns a node pointer with refcount incremented, use
901 * of_node_put() on it when done.
902 */
903struct device_node *of_find_node_with_property(struct device_node *from,
904 const char *prop_name)
905{
906 struct device_node *np;
907 struct property *pp;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500908 unsigned long flags;
Michael Ellerman1e291b12008-11-12 18:54:42 +0000909
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500910 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likely5063e252014-10-03 16:28:27 +0100911 for_each_of_allnodes_from(from, np) {
Sachin Kamata3a7cab2012-06-27 09:44:45 +0530912 for (pp = np->properties; pp; pp = pp->next) {
Michael Ellerman1e291b12008-11-12 18:54:42 +0000913 if (of_prop_cmp(pp->name, prop_name) == 0) {
914 of_node_get(np);
915 goto out;
916 }
917 }
918 }
919out:
920 of_node_put(from);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500921 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Michael Ellerman1e291b12008-11-12 18:54:42 +0000922 return np;
923}
924EXPORT_SYMBOL(of_find_node_with_property);
925
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500926static
927const struct of_device_id *__of_match_node(const struct of_device_id *matches,
928 const struct device_node *node)
Grant Likely283029d2008-01-09 06:20:40 +1100929{
Kevin Hao215a14c2014-02-19 16:15:45 +0800930 const struct of_device_id *best_match = NULL;
931 int score, best_score = 0;
932
Grant Likelya52f07e2011-03-18 10:21:29 -0600933 if (!matches)
934 return NULL;
935
Kevin Hao215a14c2014-02-19 16:15:45 +0800936 for (; matches->name[0] || matches->type[0] || matches->compatible[0]; matches++) {
937 score = __of_device_is_compatible(node, matches->compatible,
938 matches->type, matches->name);
939 if (score > best_score) {
940 best_match = matches;
941 best_score = score;
942 }
Kevin Hao4e8ca6e2014-02-14 13:22:45 +0800943 }
Kevin Hao215a14c2014-02-19 16:15:45 +0800944
945 return best_match;
Grant Likely283029d2008-01-09 06:20:40 +1100946}
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500947
948/**
Geert Uytterhoevenc50949d2014-10-22 11:44:54 +0200949 * of_match_node - Tell if a device_node has a matching of_match structure
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500950 * @matches: array of of device match structures to search in
951 * @node: the of device structure to match against
952 *
Kevin Hao71c54982014-02-18 15:57:29 +0800953 * Low level utility function used by device matching.
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500954 */
955const struct of_device_id *of_match_node(const struct of_device_id *matches,
956 const struct device_node *node)
957{
958 const struct of_device_id *match;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500959 unsigned long flags;
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500960
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500961 raw_spin_lock_irqsave(&devtree_lock, flags);
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500962 match = __of_match_node(matches, node);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500963 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500964 return match;
965}
Grant Likely283029d2008-01-09 06:20:40 +1100966EXPORT_SYMBOL(of_match_node);
967
968/**
Stephen Warren50c8af42012-11-20 16:12:20 -0700969 * of_find_matching_node_and_match - Find a node based on an of_device_id
970 * match table.
Grant Likely283029d2008-01-09 06:20:40 +1100971 * @from: The node to start searching from or NULL, the node
972 * you pass will not be searched, only the next one
973 * will; typically, you pass what the previous call
974 * returned. of_node_put() will be called on it
975 * @matches: array of of device match structures to search in
Stephen Warren50c8af42012-11-20 16:12:20 -0700976 * @match Updated to point at the matches entry which matched
Grant Likely283029d2008-01-09 06:20:40 +1100977 *
978 * Returns a node pointer with refcount incremented, use
979 * of_node_put() on it when done.
980 */
Stephen Warren50c8af42012-11-20 16:12:20 -0700981struct device_node *of_find_matching_node_and_match(struct device_node *from,
982 const struct of_device_id *matches,
983 const struct of_device_id **match)
Grant Likely283029d2008-01-09 06:20:40 +1100984{
985 struct device_node *np;
Thomas Abrahamdc71bcf2013-01-19 10:20:42 -0800986 const struct of_device_id *m;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500987 unsigned long flags;
Grant Likely283029d2008-01-09 06:20:40 +1100988
Stephen Warren50c8af42012-11-20 16:12:20 -0700989 if (match)
990 *match = NULL;
991
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500992 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likely5063e252014-10-03 16:28:27 +0100993 for_each_of_allnodes_from(from, np) {
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500994 m = __of_match_node(matches, np);
Thomas Abrahamdc71bcf2013-01-19 10:20:42 -0800995 if (m && of_node_get(np)) {
Stephen Warren50c8af42012-11-20 16:12:20 -0700996 if (match)
Thomas Abrahamdc71bcf2013-01-19 10:20:42 -0800997 *match = m;
Grant Likely283029d2008-01-09 06:20:40 +1100998 break;
Stephen Warren50c8af42012-11-20 16:12:20 -0700999 }
Grant Likely283029d2008-01-09 06:20:40 +11001000 }
1001 of_node_put(from);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001002 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Grant Likely283029d2008-01-09 06:20:40 +11001003 return np;
1004}
Grant Likely80c20222012-12-19 10:45:36 +00001005EXPORT_SYMBOL(of_find_matching_node_and_match);
Grant Likely3f07af42008-07-25 22:25:13 -04001006
1007/**
Grant Likely3f07af42008-07-25 22:25:13 -04001008 * of_modalias_node - Lookup appropriate modalias for a device node
1009 * @node: pointer to a device tree node
1010 * @modalias: Pointer to buffer that modalias value will be copied into
1011 * @len: Length of modalias value
1012 *
Grant Likely2ffe8c52010-06-08 07:48:19 -06001013 * Based on the value of the compatible property, this routine will attempt
1014 * to choose an appropriate modalias value for a particular device tree node.
1015 * It does this by stripping the manufacturer prefix (as delimited by a ',')
1016 * from the first entry in the compatible list property.
Grant Likely3f07af42008-07-25 22:25:13 -04001017 *
Grant Likely2ffe8c52010-06-08 07:48:19 -06001018 * This routine returns 0 on success, <0 on failure.
Grant Likely3f07af42008-07-25 22:25:13 -04001019 */
1020int of_modalias_node(struct device_node *node, char *modalias, int len)
1021{
Grant Likely2ffe8c52010-06-08 07:48:19 -06001022 const char *compatible, *p;
1023 int cplen;
Grant Likely3f07af42008-07-25 22:25:13 -04001024
1025 compatible = of_get_property(node, "compatible", &cplen);
Grant Likely2ffe8c52010-06-08 07:48:19 -06001026 if (!compatible || strlen(compatible) > cplen)
Grant Likely3f07af42008-07-25 22:25:13 -04001027 return -ENODEV;
Grant Likely3f07af42008-07-25 22:25:13 -04001028 p = strchr(compatible, ',');
Grant Likely2ffe8c52010-06-08 07:48:19 -06001029 strlcpy(modalias, p ? p + 1 : compatible, len);
Grant Likely3f07af42008-07-25 22:25:13 -04001030 return 0;
1031}
1032EXPORT_SYMBOL_GPL(of_modalias_node);
1033
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001034/**
Jeremy Kerr89751a72010-02-01 21:34:11 -07001035 * of_find_node_by_phandle - Find a node given a phandle
1036 * @handle: phandle of the node to find
1037 *
1038 * Returns a node pointer with refcount incremented, use
1039 * of_node_put() on it when done.
1040 */
1041struct device_node *of_find_node_by_phandle(phandle handle)
1042{
1043 struct device_node *np;
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +10001044 unsigned long flags;
Jeremy Kerr89751a72010-02-01 21:34:11 -07001045
Grant Likelyfc59b442014-10-02 13:08:02 +01001046 if (!handle)
1047 return NULL;
1048
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +10001049 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likely5063e252014-10-03 16:28:27 +01001050 for_each_of_allnodes(np)
Jeremy Kerr89751a72010-02-01 21:34:11 -07001051 if (np->phandle == handle)
1052 break;
1053 of_node_get(np);
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +10001054 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Jeremy Kerr89751a72010-02-01 21:34:11 -07001055 return np;
1056}
1057EXPORT_SYMBOL(of_find_node_by_phandle);
1058
1059/**
Heiko Stuebnerad54a0c2014-02-12 01:00:34 +01001060 * of_property_count_elems_of_size - Count the number of elements in a property
1061 *
1062 * @np: device node from which the property value is to be read.
1063 * @propname: name of the property to be searched.
1064 * @elem_size: size of the individual element
1065 *
1066 * Search for a property in a device node and count the number of elements of
1067 * size elem_size in it. Returns number of elements on sucess, -EINVAL if the
1068 * property does not exist or its length does not match a multiple of elem_size
1069 * and -ENODATA if the property does not have a value.
1070 */
1071int of_property_count_elems_of_size(const struct device_node *np,
1072 const char *propname, int elem_size)
1073{
1074 struct property *prop = of_find_property(np, propname, NULL);
1075
1076 if (!prop)
1077 return -EINVAL;
1078 if (!prop->value)
1079 return -ENODATA;
1080
1081 if (prop->length % elem_size != 0) {
1082 pr_err("size of %s in node %s is not a multiple of %d\n",
1083 propname, np->full_name, elem_size);
1084 return -EINVAL;
1085 }
1086
1087 return prop->length / elem_size;
1088}
1089EXPORT_SYMBOL_GPL(of_property_count_elems_of_size);
1090
1091/**
Tony Priskdaeec1f2013-04-03 17:57:11 +13001092 * of_find_property_value_of_size
1093 *
1094 * @np: device node from which the property value is to be read.
1095 * @propname: name of the property to be searched.
1096 * @len: requested length of property value
1097 *
1098 * Search for a property in a device node and valid the requested size.
1099 * Returns the property value on success, -EINVAL if the property does not
1100 * exist, -ENODATA if property does not have a value, and -EOVERFLOW if the
1101 * property data isn't large enough.
1102 *
1103 */
1104static void *of_find_property_value_of_size(const struct device_node *np,
1105 const char *propname, u32 len)
1106{
1107 struct property *prop = of_find_property(np, propname, NULL);
1108
1109 if (!prop)
1110 return ERR_PTR(-EINVAL);
1111 if (!prop->value)
1112 return ERR_PTR(-ENODATA);
1113 if (len > prop->length)
1114 return ERR_PTR(-EOVERFLOW);
1115
1116 return prop->value;
1117}
1118
1119/**
Tony Prisk3daf3722013-03-23 17:02:15 +13001120 * of_property_read_u32_index - Find and read a u32 from a multi-value property.
1121 *
1122 * @np: device node from which the property value is to be read.
1123 * @propname: name of the property to be searched.
1124 * @index: index of the u32 in the list of values
1125 * @out_value: pointer to return value, modified only if no error.
1126 *
1127 * Search for a property in a device node and read nth 32-bit value from
1128 * it. Returns 0 on success, -EINVAL if the property does not exist,
1129 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1130 * property data isn't large enough.
1131 *
1132 * The out_value is modified only if a valid u32 value can be decoded.
1133 */
1134int of_property_read_u32_index(const struct device_node *np,
1135 const char *propname,
1136 u32 index, u32 *out_value)
1137{
Tony Priskdaeec1f2013-04-03 17:57:11 +13001138 const u32 *val = of_find_property_value_of_size(np, propname,
1139 ((index + 1) * sizeof(*out_value)));
Tony Prisk3daf3722013-03-23 17:02:15 +13001140
Tony Priskdaeec1f2013-04-03 17:57:11 +13001141 if (IS_ERR(val))
1142 return PTR_ERR(val);
Tony Prisk3daf3722013-03-23 17:02:15 +13001143
Tony Priskdaeec1f2013-04-03 17:57:11 +13001144 *out_value = be32_to_cpup(((__be32 *)val) + index);
Tony Prisk3daf3722013-03-23 17:02:15 +13001145 return 0;
1146}
1147EXPORT_SYMBOL_GPL(of_property_read_u32_index);
1148
1149/**
Viresh Kumarbe193242012-11-20 10:15:19 +05301150 * of_property_read_u8_array - Find and read an array of u8 from a property.
1151 *
1152 * @np: device node from which the property value is to be read.
1153 * @propname: name of the property to be searched.
Lad, Prabhakar792efb82013-05-07 11:34:11 +05301154 * @out_values: pointer to return value, modified only if return value is 0.
Viresh Kumarbe193242012-11-20 10:15:19 +05301155 * @sz: number of array elements to read
1156 *
1157 * Search for a property in a device node and read 8-bit value(s) from
1158 * it. Returns 0 on success, -EINVAL if the property does not exist,
1159 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1160 * property data isn't large enough.
1161 *
1162 * dts entry of array should be like:
1163 * property = /bits/ 8 <0x50 0x60 0x70>;
1164 *
Lad, Prabhakar792efb82013-05-07 11:34:11 +05301165 * The out_values is modified only if a valid u8 value can be decoded.
Viresh Kumarbe193242012-11-20 10:15:19 +05301166 */
1167int of_property_read_u8_array(const struct device_node *np,
1168 const char *propname, u8 *out_values, size_t sz)
1169{
Tony Priskdaeec1f2013-04-03 17:57:11 +13001170 const u8 *val = of_find_property_value_of_size(np, propname,
1171 (sz * sizeof(*out_values)));
Viresh Kumarbe193242012-11-20 10:15:19 +05301172
Tony Priskdaeec1f2013-04-03 17:57:11 +13001173 if (IS_ERR(val))
1174 return PTR_ERR(val);
Viresh Kumarbe193242012-11-20 10:15:19 +05301175
Viresh Kumarbe193242012-11-20 10:15:19 +05301176 while (sz--)
1177 *out_values++ = *val++;
1178 return 0;
1179}
1180EXPORT_SYMBOL_GPL(of_property_read_u8_array);
1181
1182/**
1183 * of_property_read_u16_array - Find and read an array of u16 from a property.
1184 *
1185 * @np: device node from which the property value is to be read.
1186 * @propname: name of the property to be searched.
Lad, Prabhakar792efb82013-05-07 11:34:11 +05301187 * @out_values: pointer to return value, modified only if return value is 0.
Viresh Kumarbe193242012-11-20 10:15:19 +05301188 * @sz: number of array elements to read
1189 *
1190 * Search for a property in a device node and read 16-bit value(s) from
1191 * it. Returns 0 on success, -EINVAL if the property does not exist,
1192 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1193 * property data isn't large enough.
1194 *
1195 * dts entry of array should be like:
1196 * property = /bits/ 16 <0x5000 0x6000 0x7000>;
1197 *
Lad, Prabhakar792efb82013-05-07 11:34:11 +05301198 * The out_values is modified only if a valid u16 value can be decoded.
Viresh Kumarbe193242012-11-20 10:15:19 +05301199 */
1200int of_property_read_u16_array(const struct device_node *np,
1201 const char *propname, u16 *out_values, size_t sz)
1202{
Tony Priskdaeec1f2013-04-03 17:57:11 +13001203 const __be16 *val = of_find_property_value_of_size(np, propname,
1204 (sz * sizeof(*out_values)));
Viresh Kumarbe193242012-11-20 10:15:19 +05301205
Tony Priskdaeec1f2013-04-03 17:57:11 +13001206 if (IS_ERR(val))
1207 return PTR_ERR(val);
Viresh Kumarbe193242012-11-20 10:15:19 +05301208
Viresh Kumarbe193242012-11-20 10:15:19 +05301209 while (sz--)
1210 *out_values++ = be16_to_cpup(val++);
1211 return 0;
1212}
1213EXPORT_SYMBOL_GPL(of_property_read_u16_array);
1214
1215/**
Rob Herring0e373632011-07-06 15:42:58 -05001216 * of_property_read_u32_array - Find and read an array of 32 bit integers
1217 * from a property.
1218 *
Thomas Abrahama3b85362011-06-30 21:26:10 +05301219 * @np: device node from which the property value is to be read.
1220 * @propname: name of the property to be searched.
Lad, Prabhakar792efb82013-05-07 11:34:11 +05301221 * @out_values: pointer to return value, modified only if return value is 0.
Viresh Kumarbe193242012-11-20 10:15:19 +05301222 * @sz: number of array elements to read
Thomas Abrahama3b85362011-06-30 21:26:10 +05301223 *
Rob Herring0e373632011-07-06 15:42:58 -05001224 * Search for a property in a device node and read 32-bit value(s) from
Thomas Abrahama3b85362011-06-30 21:26:10 +05301225 * it. Returns 0 on success, -EINVAL if the property does not exist,
1226 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1227 * property data isn't large enough.
1228 *
Lad, Prabhakar792efb82013-05-07 11:34:11 +05301229 * The out_values is modified only if a valid u32 value can be decoded.
Thomas Abrahama3b85362011-06-30 21:26:10 +05301230 */
Jamie Ilesaac285c2011-08-02 15:45:07 +01001231int of_property_read_u32_array(const struct device_node *np,
1232 const char *propname, u32 *out_values,
1233 size_t sz)
Thomas Abrahama3b85362011-06-30 21:26:10 +05301234{
Tony Priskdaeec1f2013-04-03 17:57:11 +13001235 const __be32 *val = of_find_property_value_of_size(np, propname,
1236 (sz * sizeof(*out_values)));
Thomas Abrahama3b85362011-06-30 21:26:10 +05301237
Tony Priskdaeec1f2013-04-03 17:57:11 +13001238 if (IS_ERR(val))
1239 return PTR_ERR(val);
Rob Herring0e373632011-07-06 15:42:58 -05001240
Rob Herring0e373632011-07-06 15:42:58 -05001241 while (sz--)
1242 *out_values++ = be32_to_cpup(val++);
Thomas Abrahama3b85362011-06-30 21:26:10 +05301243 return 0;
1244}
Rob Herring0e373632011-07-06 15:42:58 -05001245EXPORT_SYMBOL_GPL(of_property_read_u32_array);
Thomas Abrahama3b85362011-06-30 21:26:10 +05301246
1247/**
Jamie Iles4cd7f7a2011-09-14 20:49:59 +01001248 * of_property_read_u64 - Find and read a 64 bit integer from a property
1249 * @np: device node from which the property value is to be read.
1250 * @propname: name of the property to be searched.
1251 * @out_value: pointer to return value, modified only if return value is 0.
1252 *
1253 * Search for a property in a device node and read a 64-bit value from
1254 * it. Returns 0 on success, -EINVAL if the property does not exist,
1255 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1256 * property data isn't large enough.
1257 *
1258 * The out_value is modified only if a valid u64 value can be decoded.
1259 */
1260int of_property_read_u64(const struct device_node *np, const char *propname,
1261 u64 *out_value)
1262{
Tony Priskdaeec1f2013-04-03 17:57:11 +13001263 const __be32 *val = of_find_property_value_of_size(np, propname,
1264 sizeof(*out_value));
Jamie Iles4cd7f7a2011-09-14 20:49:59 +01001265
Tony Priskdaeec1f2013-04-03 17:57:11 +13001266 if (IS_ERR(val))
1267 return PTR_ERR(val);
1268
1269 *out_value = of_read_number(val, 2);
Jamie Iles4cd7f7a2011-09-14 20:49:59 +01001270 return 0;
1271}
1272EXPORT_SYMBOL_GPL(of_property_read_u64);
1273
1274/**
Rafael J. Wysockib31384f2014-11-04 01:28:56 +01001275 * of_property_read_u64_array - Find and read an array of 64 bit integers
1276 * from a property.
1277 *
1278 * @np: device node from which the property value is to be read.
1279 * @propname: name of the property to be searched.
1280 * @out_values: pointer to return value, modified only if return value is 0.
1281 * @sz: number of array elements to read
1282 *
1283 * Search for a property in a device node and read 64-bit value(s) from
1284 * it. Returns 0 on success, -EINVAL if the property does not exist,
1285 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1286 * property data isn't large enough.
1287 *
1288 * The out_values is modified only if a valid u64 value can be decoded.
1289 */
1290int of_property_read_u64_array(const struct device_node *np,
1291 const char *propname, u64 *out_values,
1292 size_t sz)
1293{
1294 const __be32 *val = of_find_property_value_of_size(np, propname,
1295 (sz * sizeof(*out_values)));
1296
1297 if (IS_ERR(val))
1298 return PTR_ERR(val);
1299
1300 while (sz--) {
1301 *out_values++ = of_read_number(val, 2);
1302 val += 2;
1303 }
1304 return 0;
1305}
Sakari Ailus2d4c0ae2015-01-27 12:26:35 +02001306EXPORT_SYMBOL_GPL(of_property_read_u64_array);
Rafael J. Wysockib31384f2014-11-04 01:28:56 +01001307
1308/**
Thomas Abrahama3b85362011-06-30 21:26:10 +05301309 * of_property_read_string - Find and read a string from a property
1310 * @np: device node from which the property value is to be read.
1311 * @propname: name of the property to be searched.
1312 * @out_string: pointer to null terminated return string, modified only if
1313 * return value is 0.
1314 *
1315 * Search for a property in a device tree node and retrieve a null
1316 * terminated string value (pointer to data, not a copy). Returns 0 on
1317 * success, -EINVAL if the property does not exist, -ENODATA if property
1318 * does not have a value, and -EILSEQ if the string is not null-terminated
1319 * within the length of the property data.
1320 *
1321 * The out_string pointer is modified only if a valid string can be decoded.
1322 */
Jamie Ilesaac285c2011-08-02 15:45:07 +01001323int of_property_read_string(struct device_node *np, const char *propname,
Shawn Guof09bc832011-07-04 09:01:18 +08001324 const char **out_string)
Thomas Abrahama3b85362011-06-30 21:26:10 +05301325{
1326 struct property *prop = of_find_property(np, propname, NULL);
1327 if (!prop)
1328 return -EINVAL;
1329 if (!prop->value)
1330 return -ENODATA;
1331 if (strnlen(prop->value, prop->length) >= prop->length)
1332 return -EILSEQ;
1333 *out_string = prop->value;
1334 return 0;
1335}
1336EXPORT_SYMBOL_GPL(of_property_read_string);
1337
1338/**
Grant Likely7aff0fe2011-12-12 09:25:58 -07001339 * of_property_match_string() - Find string in a list and return index
1340 * @np: pointer to node containing string list property
1341 * @propname: string list property name
1342 * @string: pointer to string to search for in string list
1343 *
1344 * This function searches a string list property and returns the index
1345 * of a specific string value.
1346 */
1347int of_property_match_string(struct device_node *np, const char *propname,
1348 const char *string)
1349{
1350 struct property *prop = of_find_property(np, propname, NULL);
1351 size_t l;
1352 int i;
1353 const char *p, *end;
1354
1355 if (!prop)
1356 return -EINVAL;
1357 if (!prop->value)
1358 return -ENODATA;
1359
1360 p = prop->value;
1361 end = p + prop->length;
1362
1363 for (i = 0; p < end; i++, p += l) {
Grant Likelya87fa1d2014-11-03 15:15:35 +00001364 l = strnlen(p, end - p) + 1;
Grant Likely7aff0fe2011-12-12 09:25:58 -07001365 if (p + l > end)
1366 return -EILSEQ;
1367 pr_debug("comparing %s with %s\n", string, p);
1368 if (strcmp(string, p) == 0)
1369 return i; /* Found it; return index */
1370 }
1371 return -ENODATA;
1372}
1373EXPORT_SYMBOL_GPL(of_property_match_string);
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001374
1375/**
Jiri Slabye99010e2014-11-21 13:23:09 +01001376 * of_property_read_string_helper() - Utility helper for parsing string properties
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001377 * @np: device node from which the property value is to be read.
1378 * @propname: name of the property to be searched.
Grant Likelya87fa1d2014-11-03 15:15:35 +00001379 * @out_strs: output array of string pointers.
1380 * @sz: number of array elements to read.
1381 * @skip: Number of strings to skip over at beginning of list.
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001382 *
Grant Likelya87fa1d2014-11-03 15:15:35 +00001383 * Don't call this function directly. It is a utility helper for the
1384 * of_property_read_string*() family of functions.
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001385 */
Grant Likelya87fa1d2014-11-03 15:15:35 +00001386int of_property_read_string_helper(struct device_node *np, const char *propname,
1387 const char **out_strs, size_t sz, int skip)
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001388{
1389 struct property *prop = of_find_property(np, propname, NULL);
Grant Likelya87fa1d2014-11-03 15:15:35 +00001390 int l = 0, i = 0;
1391 const char *p, *end;
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001392
1393 if (!prop)
1394 return -EINVAL;
1395 if (!prop->value)
1396 return -ENODATA;
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001397 p = prop->value;
Grant Likelya87fa1d2014-11-03 15:15:35 +00001398 end = p + prop->length;
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001399
Grant Likelya87fa1d2014-11-03 15:15:35 +00001400 for (i = 0; p < end && (!out_strs || i < skip + sz); i++, p += l) {
1401 l = strnlen(p, end - p) + 1;
1402 if (p + l > end)
1403 return -EILSEQ;
1404 if (out_strs && i >= skip)
1405 *out_strs++ = p;
1406 }
1407 i -= skip;
1408 return i <= 0 ? -ENODATA : i;
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001409}
Grant Likelya87fa1d2014-11-03 15:15:35 +00001410EXPORT_SYMBOL_GPL(of_property_read_string_helper);
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001411
Grant Likely624cfca2013-10-11 22:05:10 +01001412void of_print_phandle_args(const char *msg, const struct of_phandle_args *args)
1413{
1414 int i;
1415 printk("%s %s", msg, of_node_full_name(args->np));
1416 for (i = 0; i < args->args_count; i++)
1417 printk(i ? ",%08x" : ":%08x", args->args[i]);
1418 printk("\n");
1419}
1420
Grant Likelybd69f732013-02-10 22:57:21 +00001421static int __of_parse_phandle_with_args(const struct device_node *np,
1422 const char *list_name,
Stephen Warren035fd942013-08-14 15:27:10 -06001423 const char *cells_name,
1424 int cell_count, int index,
Grant Likelybd69f732013-02-10 22:57:21 +00001425 struct of_phandle_args *out_args)
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001426{
Grant Likely15c9a0a2011-12-12 09:25:57 -07001427 const __be32 *list, *list_end;
Grant Likely23ce04c2013-02-12 21:21:49 +00001428 int rc = 0, size, cur_index = 0;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001429 uint32_t count = 0;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001430 struct device_node *node = NULL;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001431 phandle phandle;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001432
Grant Likely15c9a0a2011-12-12 09:25:57 -07001433 /* Retrieve the phandle list property */
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001434 list = of_get_property(np, list_name, &size);
Grant Likely15c9a0a2011-12-12 09:25:57 -07001435 if (!list)
Alexandre Courbot1af4c7f2012-06-29 13:57:58 +09001436 return -ENOENT;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001437 list_end = list + size / sizeof(*list);
1438
Grant Likely15c9a0a2011-12-12 09:25:57 -07001439 /* Loop over the phandles until all the requested entry is found */
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001440 while (list < list_end) {
Grant Likely23ce04c2013-02-12 21:21:49 +00001441 rc = -EINVAL;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001442 count = 0;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001443
Grant Likely15c9a0a2011-12-12 09:25:57 -07001444 /*
1445 * If phandle is 0, then it is an empty entry with no
1446 * arguments. Skip forward to the next entry.
1447 */
Grant Likely9a6b2e52010-07-23 01:48:25 -06001448 phandle = be32_to_cpup(list++);
Grant Likely15c9a0a2011-12-12 09:25:57 -07001449 if (phandle) {
1450 /*
1451 * Find the provider node and parse the #*-cells
Stephen Warren91d99422013-08-14 15:27:11 -06001452 * property to determine the argument length.
1453 *
1454 * This is not needed if the cell count is hard-coded
1455 * (i.e. cells_name not set, but cell_count is set),
1456 * except when we're going to return the found node
1457 * below.
Grant Likely15c9a0a2011-12-12 09:25:57 -07001458 */
Stephen Warren91d99422013-08-14 15:27:11 -06001459 if (cells_name || cur_index == index) {
1460 node = of_find_node_by_phandle(phandle);
1461 if (!node) {
1462 pr_err("%s: could not find phandle\n",
1463 np->full_name);
1464 goto err;
1465 }
Grant Likely15c9a0a2011-12-12 09:25:57 -07001466 }
Stephen Warren035fd942013-08-14 15:27:10 -06001467
1468 if (cells_name) {
1469 if (of_property_read_u32(node, cells_name,
1470 &count)) {
1471 pr_err("%s: could not get %s for %s\n",
1472 np->full_name, cells_name,
1473 node->full_name);
1474 goto err;
1475 }
1476 } else {
1477 count = cell_count;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001478 }
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001479
Grant Likely15c9a0a2011-12-12 09:25:57 -07001480 /*
1481 * Make sure that the arguments actually fit in the
1482 * remaining property data length
1483 */
1484 if (list + count > list_end) {
1485 pr_err("%s: arguments longer than property\n",
1486 np->full_name);
Grant Likely23ce04c2013-02-12 21:21:49 +00001487 goto err;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001488 }
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001489 }
1490
Grant Likely15c9a0a2011-12-12 09:25:57 -07001491 /*
1492 * All of the error cases above bail out of the loop, so at
1493 * this point, the parsing is successful. If the requested
1494 * index matches, then fill the out_args structure and return,
1495 * or return -ENOENT for an empty entry.
1496 */
Grant Likely23ce04c2013-02-12 21:21:49 +00001497 rc = -ENOENT;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001498 if (cur_index == index) {
1499 if (!phandle)
Grant Likely23ce04c2013-02-12 21:21:49 +00001500 goto err;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001501
Grant Likely15c9a0a2011-12-12 09:25:57 -07001502 if (out_args) {
1503 int i;
1504 if (WARN_ON(count > MAX_PHANDLE_ARGS))
1505 count = MAX_PHANDLE_ARGS;
1506 out_args->np = node;
1507 out_args->args_count = count;
1508 for (i = 0; i < count; i++)
1509 out_args->args[i] = be32_to_cpup(list++);
Tang Yuantianb855f162013-04-10 11:36:39 +08001510 } else {
1511 of_node_put(node);
Grant Likely15c9a0a2011-12-12 09:25:57 -07001512 }
Grant Likely23ce04c2013-02-12 21:21:49 +00001513
1514 /* Found it! return success */
Grant Likely15c9a0a2011-12-12 09:25:57 -07001515 return 0;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001516 }
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001517
1518 of_node_put(node);
1519 node = NULL;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001520 list += count;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001521 cur_index++;
1522 }
1523
Grant Likely23ce04c2013-02-12 21:21:49 +00001524 /*
1525 * Unlock node before returning result; will be one of:
1526 * -ENOENT : index is for empty phandle
1527 * -EINVAL : parsing error on data
Grant Likelybd69f732013-02-10 22:57:21 +00001528 * [1..n] : Number of phandle (count mode; when index = -1)
Grant Likely23ce04c2013-02-12 21:21:49 +00001529 */
Grant Likelybd69f732013-02-10 22:57:21 +00001530 rc = index < 0 ? cur_index : -ENOENT;
Grant Likely23ce04c2013-02-12 21:21:49 +00001531 err:
Grant Likely15c9a0a2011-12-12 09:25:57 -07001532 if (node)
1533 of_node_put(node);
Grant Likely23ce04c2013-02-12 21:21:49 +00001534 return rc;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001535}
Grant Likelybd69f732013-02-10 22:57:21 +00001536
Stephen Warreneded9dd2013-08-14 15:27:08 -06001537/**
Stephen Warren5fba49e2013-08-14 15:27:09 -06001538 * of_parse_phandle - Resolve a phandle property to a device_node pointer
1539 * @np: Pointer to device node holding phandle property
1540 * @phandle_name: Name of property holding a phandle value
1541 * @index: For properties holding a table of phandles, this is the index into
1542 * the table
1543 *
1544 * Returns the device_node pointer with refcount incremented. Use
1545 * of_node_put() on it when done.
1546 */
1547struct device_node *of_parse_phandle(const struct device_node *np,
1548 const char *phandle_name, int index)
1549{
Stephen Warren91d99422013-08-14 15:27:11 -06001550 struct of_phandle_args args;
Stephen Warren5fba49e2013-08-14 15:27:09 -06001551
Stephen Warren91d99422013-08-14 15:27:11 -06001552 if (index < 0)
Stephen Warren5fba49e2013-08-14 15:27:09 -06001553 return NULL;
1554
Stephen Warren91d99422013-08-14 15:27:11 -06001555 if (__of_parse_phandle_with_args(np, phandle_name, NULL, 0,
1556 index, &args))
1557 return NULL;
1558
1559 return args.np;
Stephen Warren5fba49e2013-08-14 15:27:09 -06001560}
1561EXPORT_SYMBOL(of_parse_phandle);
1562
1563/**
Stephen Warreneded9dd2013-08-14 15:27:08 -06001564 * of_parse_phandle_with_args() - Find a node pointed by phandle in a list
1565 * @np: pointer to a device tree node containing a list
1566 * @list_name: property name that contains a list
1567 * @cells_name: property name that specifies phandles' arguments count
1568 * @index: index of a phandle to parse out
1569 * @out_args: optional pointer to output arguments structure (will be filled)
1570 *
1571 * This function is useful to parse lists of phandles and their arguments.
1572 * Returns 0 on success and fills out_args, on error returns appropriate
1573 * errno value.
1574 *
Geert Uytterhoevend94a75c2014-10-22 11:44:52 +02001575 * Caller is responsible to call of_node_put() on the returned out_args->np
Stephen Warreneded9dd2013-08-14 15:27:08 -06001576 * pointer.
1577 *
1578 * Example:
1579 *
1580 * phandle1: node1 {
Geert Uytterhoevenc0e848d2014-10-22 11:44:55 +02001581 * #list-cells = <2>;
Stephen Warreneded9dd2013-08-14 15:27:08 -06001582 * }
1583 *
1584 * phandle2: node2 {
Geert Uytterhoevenc0e848d2014-10-22 11:44:55 +02001585 * #list-cells = <1>;
Stephen Warreneded9dd2013-08-14 15:27:08 -06001586 * }
1587 *
1588 * node3 {
Geert Uytterhoevenc0e848d2014-10-22 11:44:55 +02001589 * list = <&phandle1 1 2 &phandle2 3>;
Stephen Warreneded9dd2013-08-14 15:27:08 -06001590 * }
1591 *
1592 * To get a device_node of the `node2' node you may call this:
1593 * of_parse_phandle_with_args(node3, "list", "#list-cells", 1, &args);
1594 */
Grant Likelybd69f732013-02-10 22:57:21 +00001595int of_parse_phandle_with_args(const struct device_node *np, const char *list_name,
1596 const char *cells_name, int index,
1597 struct of_phandle_args *out_args)
1598{
1599 if (index < 0)
1600 return -EINVAL;
Stephen Warren035fd942013-08-14 15:27:10 -06001601 return __of_parse_phandle_with_args(np, list_name, cells_name, 0,
1602 index, out_args);
Grant Likelybd69f732013-02-10 22:57:21 +00001603}
Grant Likely15c9a0a2011-12-12 09:25:57 -07001604EXPORT_SYMBOL(of_parse_phandle_with_args);
Grant Likely02af11b2009-11-23 20:16:45 -07001605
Grant Likelybd69f732013-02-10 22:57:21 +00001606/**
Stephen Warren035fd942013-08-14 15:27:10 -06001607 * of_parse_phandle_with_fixed_args() - Find a node pointed by phandle in a list
1608 * @np: pointer to a device tree node containing a list
1609 * @list_name: property name that contains a list
1610 * @cell_count: number of argument cells following the phandle
1611 * @index: index of a phandle to parse out
1612 * @out_args: optional pointer to output arguments structure (will be filled)
1613 *
1614 * This function is useful to parse lists of phandles and their arguments.
1615 * Returns 0 on success and fills out_args, on error returns appropriate
1616 * errno value.
1617 *
Geert Uytterhoevend94a75c2014-10-22 11:44:52 +02001618 * Caller is responsible to call of_node_put() on the returned out_args->np
Stephen Warren035fd942013-08-14 15:27:10 -06001619 * pointer.
1620 *
1621 * Example:
1622 *
1623 * phandle1: node1 {
1624 * }
1625 *
1626 * phandle2: node2 {
1627 * }
1628 *
1629 * node3 {
Geert Uytterhoevenc0e848d2014-10-22 11:44:55 +02001630 * list = <&phandle1 0 2 &phandle2 2 3>;
Stephen Warren035fd942013-08-14 15:27:10 -06001631 * }
1632 *
1633 * To get a device_node of the `node2' node you may call this:
1634 * of_parse_phandle_with_fixed_args(node3, "list", 2, 1, &args);
1635 */
1636int of_parse_phandle_with_fixed_args(const struct device_node *np,
1637 const char *list_name, int cell_count,
1638 int index, struct of_phandle_args *out_args)
1639{
1640 if (index < 0)
1641 return -EINVAL;
1642 return __of_parse_phandle_with_args(np, list_name, NULL, cell_count,
1643 index, out_args);
1644}
1645EXPORT_SYMBOL(of_parse_phandle_with_fixed_args);
1646
1647/**
Grant Likelybd69f732013-02-10 22:57:21 +00001648 * of_count_phandle_with_args() - Find the number of phandles references in a property
1649 * @np: pointer to a device tree node containing a list
1650 * @list_name: property name that contains a list
1651 * @cells_name: property name that specifies phandles' arguments count
1652 *
1653 * Returns the number of phandle + argument tuples within a property. It
1654 * is a typical pattern to encode a list of phandle and variable
1655 * arguments into a single property. The number of arguments is encoded
1656 * by a property in the phandle-target node. For example, a gpios
1657 * property would contain a list of GPIO specifies consisting of a
1658 * phandle and 1 or more arguments. The number of arguments are
1659 * determined by the #gpio-cells property in the node pointed to by the
1660 * phandle.
1661 */
1662int of_count_phandle_with_args(const struct device_node *np, const char *list_name,
1663 const char *cells_name)
1664{
Stephen Warren035fd942013-08-14 15:27:10 -06001665 return __of_parse_phandle_with_args(np, list_name, cells_name, 0, -1,
1666 NULL);
Grant Likelybd69f732013-02-10 22:57:21 +00001667}
1668EXPORT_SYMBOL(of_count_phandle_with_args);
1669
Grant Likely02af11b2009-11-23 20:16:45 -07001670/**
Xiubo Li62664f62014-01-22 13:57:39 +08001671 * __of_add_property - Add a property to a node without lock operations
1672 */
Pantelis Antonioud8c50082014-07-04 19:58:46 +03001673int __of_add_property(struct device_node *np, struct property *prop)
Xiubo Li62664f62014-01-22 13:57:39 +08001674{
1675 struct property **next;
1676
1677 prop->next = NULL;
1678 next = &np->properties;
1679 while (*next) {
1680 if (strcmp(prop->name, (*next)->name) == 0)
1681 /* duplicate ! don't insert it */
1682 return -EEXIST;
1683
1684 next = &(*next)->next;
1685 }
1686 *next = prop;
1687
1688 return 0;
1689}
1690
1691/**
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001692 * of_add_property - Add a property to a node
Grant Likely02af11b2009-11-23 20:16:45 -07001693 */
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001694int of_add_property(struct device_node *np, struct property *prop)
Grant Likely02af11b2009-11-23 20:16:45 -07001695{
Grant Likely02af11b2009-11-23 20:16:45 -07001696 unsigned long flags;
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001697 int rc;
1698
Grant Likely8a2b22a2014-07-23 17:05:06 -06001699 mutex_lock(&of_mutex);
Grant Likely02af11b2009-11-23 20:16:45 -07001700
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001701 raw_spin_lock_irqsave(&devtree_lock, flags);
Xiubo Li62664f62014-01-22 13:57:39 +08001702 rc = __of_add_property(np, prop);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001703 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Grant Likely02af11b2009-11-23 20:16:45 -07001704
Grant Likely8a2b22a2014-07-23 17:05:06 -06001705 if (!rc)
Pantelis Antoniou0829f6d2013-12-13 20:08:59 +02001706 __of_add_property_sysfs(np, prop);
Grant Likely02af11b2009-11-23 20:16:45 -07001707
Grant Likely8a2b22a2014-07-23 17:05:06 -06001708 mutex_unlock(&of_mutex);
1709
Grant Likely259092a2014-07-16 12:48:23 -06001710 if (!rc)
1711 of_property_notify(OF_RECONFIG_ADD_PROPERTY, np, prop, NULL);
1712
Xiubo Li62664f62014-01-22 13:57:39 +08001713 return rc;
Grant Likely02af11b2009-11-23 20:16:45 -07001714}
1715
Pantelis Antonioud8c50082014-07-04 19:58:46 +03001716int __of_remove_property(struct device_node *np, struct property *prop)
1717{
1718 struct property **next;
1719
1720 for (next = &np->properties; *next; next = &(*next)->next) {
1721 if (*next == prop)
1722 break;
1723 }
1724 if (*next == NULL)
1725 return -ENODEV;
1726
1727 /* found the node */
1728 *next = prop->next;
1729 prop->next = np->deadprops;
1730 np->deadprops = prop;
1731
1732 return 0;
1733}
1734
Grant Likely8a2b22a2014-07-23 17:05:06 -06001735void __of_remove_property_sysfs(struct device_node *np, struct property *prop)
1736{
Gaurav Minochaef69d742014-09-05 09:56:13 -07001737 if (!IS_ENABLED(CONFIG_SYSFS))
1738 return;
1739
Grant Likely8a2b22a2014-07-23 17:05:06 -06001740 /* at early boot, bail here and defer setup to of_init() */
1741 if (of_kset && of_node_is_attached(np))
1742 sysfs_remove_bin_file(&np->kobj, &prop->attr);
1743}
1744
Grant Likely02af11b2009-11-23 20:16:45 -07001745/**
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001746 * of_remove_property - Remove a property from a node.
Grant Likely02af11b2009-11-23 20:16:45 -07001747 *
1748 * Note that we don't actually remove it, since we have given out
1749 * who-knows-how-many pointers to the data using get-property.
1750 * Instead we just move the property to the "dead properties"
1751 * list, so it won't be found any more.
1752 */
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001753int of_remove_property(struct device_node *np, struct property *prop)
Grant Likely02af11b2009-11-23 20:16:45 -07001754{
Grant Likely02af11b2009-11-23 20:16:45 -07001755 unsigned long flags;
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001756 int rc;
1757
Grant Likely8a2b22a2014-07-23 17:05:06 -06001758 mutex_lock(&of_mutex);
Grant Likely02af11b2009-11-23 20:16:45 -07001759
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001760 raw_spin_lock_irqsave(&devtree_lock, flags);
Pantelis Antonioud8c50082014-07-04 19:58:46 +03001761 rc = __of_remove_property(np, prop);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001762 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Grant Likely02af11b2009-11-23 20:16:45 -07001763
Grant Likely8a2b22a2014-07-23 17:05:06 -06001764 if (!rc)
1765 __of_remove_property_sysfs(np, prop);
Grant Likely02af11b2009-11-23 20:16:45 -07001766
Grant Likely8a2b22a2014-07-23 17:05:06 -06001767 mutex_unlock(&of_mutex);
Grant Likely75b57ec2014-02-20 18:02:11 +00001768
Grant Likely259092a2014-07-16 12:48:23 -06001769 if (!rc)
1770 of_property_notify(OF_RECONFIG_REMOVE_PROPERTY, np, prop, NULL);
1771
Grant Likely8a2b22a2014-07-23 17:05:06 -06001772 return rc;
Grant Likely02af11b2009-11-23 20:16:45 -07001773}
1774
Pantelis Antonioud8c50082014-07-04 19:58:46 +03001775int __of_update_property(struct device_node *np, struct property *newprop,
1776 struct property **oldpropp)
1777{
1778 struct property **next, *oldprop;
1779
1780 for (next = &np->properties; *next; next = &(*next)->next) {
1781 if (of_prop_cmp((*next)->name, newprop->name) == 0)
1782 break;
1783 }
1784 *oldpropp = oldprop = *next;
1785
1786 if (oldprop) {
1787 /* replace the node */
1788 newprop->next = oldprop->next;
1789 *next = newprop;
1790 oldprop->next = np->deadprops;
1791 np->deadprops = oldprop;
1792 } else {
1793 /* new node */
1794 newprop->next = NULL;
1795 *next = newprop;
1796 }
Grant Likely02af11b2009-11-23 20:16:45 -07001797
1798 return 0;
1799}
1800
Grant Likely8a2b22a2014-07-23 17:05:06 -06001801void __of_update_property_sysfs(struct device_node *np, struct property *newprop,
1802 struct property *oldprop)
1803{
Gaurav Minochaef69d742014-09-05 09:56:13 -07001804 if (!IS_ENABLED(CONFIG_SYSFS))
1805 return;
1806
Grant Likely8a2b22a2014-07-23 17:05:06 -06001807 /* At early boot, bail out and defer setup to of_init() */
1808 if (!of_kset)
1809 return;
1810
1811 if (oldprop)
1812 sysfs_remove_bin_file(&np->kobj, &oldprop->attr);
1813 __of_add_property_sysfs(np, newprop);
1814}
1815
Grant Likely02af11b2009-11-23 20:16:45 -07001816/*
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001817 * of_update_property - Update a property in a node, if the property does
Dong Aisheng475d0092012-07-11 15:16:37 +10001818 * not exist, add it.
Grant Likely02af11b2009-11-23 20:16:45 -07001819 *
1820 * Note that we don't actually remove it, since we have given out
1821 * who-knows-how-many pointers to the data using get-property.
1822 * Instead we just move the property to the "dead properties" list,
1823 * and add the new property to the property list
1824 */
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001825int of_update_property(struct device_node *np, struct property *newprop)
Grant Likely02af11b2009-11-23 20:16:45 -07001826{
Pantelis Antonioud8c50082014-07-04 19:58:46 +03001827 struct property *oldprop;
Grant Likely02af11b2009-11-23 20:16:45 -07001828 unsigned long flags;
Xiubo Li947fdaad02014-04-17 15:48:29 +08001829 int rc;
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001830
Dong Aisheng475d0092012-07-11 15:16:37 +10001831 if (!newprop->name)
1832 return -EINVAL;
1833
Grant Likely8a2b22a2014-07-23 17:05:06 -06001834 mutex_lock(&of_mutex);
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001835
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001836 raw_spin_lock_irqsave(&devtree_lock, flags);
Pantelis Antonioud8c50082014-07-04 19:58:46 +03001837 rc = __of_update_property(np, newprop, &oldprop);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001838 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Nathan Fontenote81b3292012-10-02 16:55:01 +00001839
Grant Likely8a2b22a2014-07-23 17:05:06 -06001840 if (!rc)
1841 __of_update_property_sysfs(np, newprop, oldprop);
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001842
Grant Likely8a2b22a2014-07-23 17:05:06 -06001843 mutex_unlock(&of_mutex);
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001844
Grant Likely259092a2014-07-16 12:48:23 -06001845 if (!rc)
1846 of_property_notify(OF_RECONFIG_UPDATE_PROPERTY, np, newprop, oldprop);
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001847
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001848 return rc;
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001849}
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001850
Shawn Guo611cad72011-08-15 15:28:14 +08001851static void of_alias_add(struct alias_prop *ap, struct device_node *np,
1852 int id, const char *stem, int stem_len)
1853{
1854 ap->np = np;
1855 ap->id = id;
1856 strncpy(ap->stem, stem, stem_len);
1857 ap->stem[stem_len] = 0;
1858 list_add_tail(&ap->link, &aliases_lookup);
1859 pr_debug("adding DT alias:%s: stem=%s id=%i node=%s\n",
Grant Likely74a7f082012-06-15 11:50:25 -06001860 ap->alias, ap->stem, ap->id, of_node_full_name(np));
Shawn Guo611cad72011-08-15 15:28:14 +08001861}
1862
1863/**
Geert Uytterhoeven1821dda2014-10-22 11:44:53 +02001864 * of_alias_scan - Scan all properties of the 'aliases' node
Shawn Guo611cad72011-08-15 15:28:14 +08001865 *
Geert Uytterhoeven1821dda2014-10-22 11:44:53 +02001866 * The function scans all the properties of the 'aliases' node and populates
1867 * the global lookup table with the properties. It returns the
1868 * number of alias properties found, or an error code in case of failure.
Shawn Guo611cad72011-08-15 15:28:14 +08001869 *
1870 * @dt_alloc: An allocator that provides a virtual address to memory
Geert Uytterhoeven1821dda2014-10-22 11:44:53 +02001871 * for storing the resulting tree
Shawn Guo611cad72011-08-15 15:28:14 +08001872 */
1873void of_alias_scan(void * (*dt_alloc)(u64 size, u64 align))
1874{
1875 struct property *pp;
1876
Laurentiu Tudor7dbe5842014-08-27 17:09:39 +03001877 of_aliases = of_find_node_by_path("/aliases");
Shawn Guo611cad72011-08-15 15:28:14 +08001878 of_chosen = of_find_node_by_path("/chosen");
1879 if (of_chosen == NULL)
1880 of_chosen = of_find_node_by_path("/chosen@0");
Sascha Hauer5c19e952013-08-05 14:40:44 +02001881
1882 if (of_chosen) {
Grant Likelya752ee52014-03-28 08:12:18 -07001883 /* linux,stdout-path and /aliases/stdout are for legacy compatibility */
Grant Likely676e1b22014-03-27 17:11:23 -07001884 const char *name = of_get_property(of_chosen, "stdout-path", NULL);
1885 if (!name)
1886 name = of_get_property(of_chosen, "linux,stdout-path", NULL);
Grant Likelya752ee52014-03-28 08:12:18 -07001887 if (IS_ENABLED(CONFIG_PPC) && !name)
1888 name = of_get_property(of_aliases, "stdout", NULL);
Sascha Hauer5c19e952013-08-05 14:40:44 +02001889 if (name)
Leif Lindholm7914a7c2014-11-27 17:56:07 +00001890 of_stdout = of_find_node_opts_by_path(name, &of_stdout_options);
Sascha Hauer5c19e952013-08-05 14:40:44 +02001891 }
1892
Shawn Guo611cad72011-08-15 15:28:14 +08001893 if (!of_aliases)
1894 return;
1895
Dong Aisheng8af0da92011-12-22 20:19:24 +08001896 for_each_property_of_node(of_aliases, pp) {
Shawn Guo611cad72011-08-15 15:28:14 +08001897 const char *start = pp->name;
1898 const char *end = start + strlen(start);
1899 struct device_node *np;
1900 struct alias_prop *ap;
1901 int id, len;
1902
1903 /* Skip those we do not want to proceed */
1904 if (!strcmp(pp->name, "name") ||
1905 !strcmp(pp->name, "phandle") ||
1906 !strcmp(pp->name, "linux,phandle"))
1907 continue;
1908
1909 np = of_find_node_by_path(pp->value);
1910 if (!np)
1911 continue;
1912
1913 /* walk the alias backwards to extract the id and work out
1914 * the 'stem' string */
1915 while (isdigit(*(end-1)) && end > start)
1916 end--;
1917 len = end - start;
1918
1919 if (kstrtoint(end, 10, &id) < 0)
1920 continue;
1921
1922 /* Allocate an alias_prop with enough space for the stem */
1923 ap = dt_alloc(sizeof(*ap) + len + 1, 4);
1924 if (!ap)
1925 continue;
Grant Likely0640332e2013-08-28 21:24:17 +01001926 memset(ap, 0, sizeof(*ap) + len + 1);
Shawn Guo611cad72011-08-15 15:28:14 +08001927 ap->alias = start;
1928 of_alias_add(ap, np, id, start, len);
1929 }
1930}
1931
1932/**
1933 * of_alias_get_id - Get alias id for the given device_node
1934 * @np: Pointer to the given device_node
1935 * @stem: Alias stem of the given device_node
1936 *
Geert Uytterhoeven5a53a072014-03-11 11:23:38 +01001937 * The function travels the lookup table to get the alias id for the given
1938 * device_node and alias stem. It returns the alias id if found.
Shawn Guo611cad72011-08-15 15:28:14 +08001939 */
1940int of_alias_get_id(struct device_node *np, const char *stem)
1941{
1942 struct alias_prop *app;
1943 int id = -ENODEV;
1944
Pantelis Antoniouc05aba22014-07-04 19:58:03 +03001945 mutex_lock(&of_mutex);
Shawn Guo611cad72011-08-15 15:28:14 +08001946 list_for_each_entry(app, &aliases_lookup, link) {
1947 if (strcmp(app->stem, stem) != 0)
1948 continue;
1949
1950 if (np == app->np) {
1951 id = app->id;
1952 break;
1953 }
1954 }
Pantelis Antoniouc05aba22014-07-04 19:58:03 +03001955 mutex_unlock(&of_mutex);
Shawn Guo611cad72011-08-15 15:28:14 +08001956
1957 return id;
1958}
1959EXPORT_SYMBOL_GPL(of_alias_get_id);
Stephen Warrenc541adc2012-04-04 09:27:46 -06001960
1961const __be32 *of_prop_next_u32(struct property *prop, const __be32 *cur,
1962 u32 *pu)
1963{
1964 const void *curv = cur;
1965
1966 if (!prop)
1967 return NULL;
1968
1969 if (!cur) {
1970 curv = prop->value;
1971 goto out_val;
1972 }
1973
1974 curv += sizeof(*cur);
1975 if (curv >= prop->value + prop->length)
1976 return NULL;
1977
1978out_val:
1979 *pu = be32_to_cpup(curv);
1980 return curv;
1981}
1982EXPORT_SYMBOL_GPL(of_prop_next_u32);
1983
1984const char *of_prop_next_string(struct property *prop, const char *cur)
1985{
1986 const void *curv = cur;
1987
1988 if (!prop)
1989 return NULL;
1990
1991 if (!cur)
1992 return prop->value;
1993
1994 curv += strlen(cur) + 1;
1995 if (curv >= prop->value + prop->length)
1996 return NULL;
1997
1998 return curv;
1999}
2000EXPORT_SYMBOL_GPL(of_prop_next_string);
Sascha Hauer5c19e952013-08-05 14:40:44 +02002001
2002/**
Grant Likely3482f2c2014-03-27 17:18:55 -07002003 * of_console_check() - Test and setup console for DT setup
2004 * @dn - Pointer to device node
2005 * @name - Name to use for preferred console without index. ex. "ttyS"
2006 * @index - Index to use for preferred console.
Sascha Hauer5c19e952013-08-05 14:40:44 +02002007 *
Grant Likely3482f2c2014-03-27 17:18:55 -07002008 * Check if the given device node matches the stdout-path property in the
2009 * /chosen node. If it does then register it as the preferred console and return
2010 * TRUE. Otherwise return FALSE.
Sascha Hauer5c19e952013-08-05 14:40:44 +02002011 */
Grant Likely3482f2c2014-03-27 17:18:55 -07002012bool of_console_check(struct device_node *dn, char *name, int index)
Sascha Hauer5c19e952013-08-05 14:40:44 +02002013{
Grant Likely3482f2c2014-03-27 17:18:55 -07002014 if (!dn || dn != of_stdout || console_set_on_cmdline)
Sascha Hauer5c19e952013-08-05 14:40:44 +02002015 return false;
Leif Lindholm7914a7c2014-11-27 17:56:07 +00002016 return !add_preferred_console(name, index,
2017 kstrdup(of_stdout_options, GFP_KERNEL));
Sascha Hauer5c19e952013-08-05 14:40:44 +02002018}
Grant Likely3482f2c2014-03-27 17:18:55 -07002019EXPORT_SYMBOL_GPL(of_console_check);
Sudeep KarkadaNageshaa3e31b42013-09-18 11:53:05 +01002020
2021/**
2022 * of_find_next_cache_node - Find a node's subsidiary cache
2023 * @np: node of type "cpu" or "cache"
2024 *
2025 * Returns a node pointer with refcount incremented, use
2026 * of_node_put() on it when done. Caller should hold a reference
2027 * to np.
2028 */
2029struct device_node *of_find_next_cache_node(const struct device_node *np)
2030{
2031 struct device_node *child;
2032 const phandle *handle;
2033
2034 handle = of_get_property(np, "l2-cache", NULL);
2035 if (!handle)
2036 handle = of_get_property(np, "next-level-cache", NULL);
2037
2038 if (handle)
2039 return of_find_node_by_phandle(be32_to_cpup(handle));
2040
2041 /* OF on pmac has nodes instead of properties named "l2-cache"
2042 * beneath CPU nodes.
2043 */
2044 if (!strcmp(np->type, "cpu"))
2045 for_each_child_of_node(np, child)
2046 if (!strcmp(child->type, "cache"))
2047 return child;
2048
2049 return NULL;
2050}
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002051
2052/**
Philipp Zabelf2a575f2014-02-14 11:53:56 +01002053 * of_graph_parse_endpoint() - parse common endpoint node properties
2054 * @node: pointer to endpoint device_node
2055 * @endpoint: pointer to the OF endpoint data structure
2056 *
2057 * The caller should hold a reference to @node.
2058 */
2059int of_graph_parse_endpoint(const struct device_node *node,
2060 struct of_endpoint *endpoint)
2061{
2062 struct device_node *port_node = of_get_parent(node);
2063
Philipp Zabeld4847002014-03-04 12:31:24 +01002064 WARN_ONCE(!port_node, "%s(): endpoint %s has no parent node\n",
2065 __func__, node->full_name);
2066
Philipp Zabelf2a575f2014-02-14 11:53:56 +01002067 memset(endpoint, 0, sizeof(*endpoint));
2068
2069 endpoint->local_node = node;
2070 /*
2071 * It doesn't matter whether the two calls below succeed.
2072 * If they don't then the default value 0 is used.
2073 */
2074 of_property_read_u32(port_node, "reg", &endpoint->port);
2075 of_property_read_u32(node, "reg", &endpoint->id);
2076
2077 of_node_put(port_node);
2078
2079 return 0;
2080}
2081EXPORT_SYMBOL(of_graph_parse_endpoint);
2082
2083/**
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002084 * of_graph_get_next_endpoint() - get next endpoint node
2085 * @parent: pointer to the parent device node
2086 * @prev: previous endpoint node, or NULL to get first
2087 *
2088 * Return: An 'endpoint' node pointer with refcount incremented. Refcount
Philipp Zabelf033c0b2014-12-01 13:32:32 +01002089 * of the passed @prev node is decremented.
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002090 */
2091struct device_node *of_graph_get_next_endpoint(const struct device_node *parent,
2092 struct device_node *prev)
2093{
2094 struct device_node *endpoint;
Linus Torvalds3c83e612014-04-04 09:50:07 -07002095 struct device_node *port;
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002096
2097 if (!parent)
2098 return NULL;
2099
Linus Torvalds3c83e612014-04-04 09:50:07 -07002100 /*
2101 * Start by locating the port node. If no previous endpoint is specified
2102 * search for the first port node, otherwise get the previous endpoint
2103 * parent port node.
2104 */
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002105 if (!prev) {
2106 struct device_node *node;
Linus Torvalds3c83e612014-04-04 09:50:07 -07002107
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002108 node = of_get_child_by_name(parent, "ports");
2109 if (node)
2110 parent = node;
2111
2112 port = of_get_child_by_name(parent, "port");
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002113 of_node_put(node);
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002114
Linus Torvalds3c83e612014-04-04 09:50:07 -07002115 if (!port) {
2116 pr_err("%s(): no port node found in %s\n",
2117 __func__, parent->full_name);
Philipp Zabel4329b932014-02-26 20:43:42 +01002118 return NULL;
Linus Torvalds3c83e612014-04-04 09:50:07 -07002119 }
2120 } else {
2121 port = of_get_parent(prev);
2122 if (WARN_ONCE(!port, "%s(): endpoint %s has no parent node\n",
2123 __func__, prev->full_name))
2124 return NULL;
Linus Torvalds3c83e612014-04-04 09:50:07 -07002125 }
Philipp Zabel4329b932014-02-26 20:43:42 +01002126
Linus Torvalds3c83e612014-04-04 09:50:07 -07002127 while (1) {
2128 /*
2129 * Now that we have a port node, get the next endpoint by
2130 * getting the next child. If the previous endpoint is NULL this
2131 * will return the first child.
2132 */
2133 endpoint = of_get_next_child(port, prev);
2134 if (endpoint) {
2135 of_node_put(port);
2136 return endpoint;
2137 }
2138
2139 /* No more endpoints under this port, try the next one. */
2140 prev = NULL;
2141
2142 do {
2143 port = of_get_next_child(parent, port);
2144 if (!port)
2145 return NULL;
2146 } while (of_node_cmp(port->name, "port"));
2147 }
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002148}
2149EXPORT_SYMBOL(of_graph_get_next_endpoint);
2150
2151/**
2152 * of_graph_get_remote_port_parent() - get remote port's parent node
2153 * @node: pointer to a local endpoint device_node
2154 *
2155 * Return: Remote device node associated with remote endpoint node linked
2156 * to @node. Use of_node_put() on it when done.
2157 */
2158struct device_node *of_graph_get_remote_port_parent(
2159 const struct device_node *node)
2160{
2161 struct device_node *np;
2162 unsigned int depth;
2163
2164 /* Get remote endpoint node. */
2165 np = of_parse_phandle(node, "remote-endpoint", 0);
2166
2167 /* Walk 3 levels up only if there is 'ports' node. */
2168 for (depth = 3; depth && np; depth--) {
2169 np = of_get_next_parent(np);
2170 if (depth == 2 && of_node_cmp(np->name, "ports"))
2171 break;
2172 }
2173 return np;
2174}
2175EXPORT_SYMBOL(of_graph_get_remote_port_parent);
2176
2177/**
2178 * of_graph_get_remote_port() - get remote port node
2179 * @node: pointer to a local endpoint device_node
2180 *
2181 * Return: Remote port node associated with remote endpoint node linked
2182 * to @node. Use of_node_put() on it when done.
2183 */
2184struct device_node *of_graph_get_remote_port(const struct device_node *node)
2185{
2186 struct device_node *np;
2187
2188 /* Get remote endpoint node. */
2189 np = of_parse_phandle(node, "remote-endpoint", 0);
2190 if (!np)
2191 return NULL;
2192 return of_get_next_parent(np);
2193}
2194EXPORT_SYMBOL(of_graph_get_remote_port);