blob: f3b583b811059a13d47ed11dc590ae92982ecc75 [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/**
Kevin Cernekee37786c72015-04-09 13:05:14 -0700571 * of_device_is_big_endian - check if a device has BE registers
572 *
573 * @device: Node to check for endianness
574 *
575 * Returns true if the device has a "big-endian" property, or if the kernel
576 * was compiled for BE *and* the device has a "native-endian" property.
577 * Returns false otherwise.
578 *
579 * Callers would nominally use ioread32be/iowrite32be if
580 * of_device_is_big_endian() == true, or readl/writel otherwise.
581 */
582bool of_device_is_big_endian(const struct device_node *device)
583{
584 if (of_property_read_bool(device, "big-endian"))
585 return true;
586 if (IS_ENABLED(CONFIG_CPU_BIG_ENDIAN) &&
587 of_property_read_bool(device, "native-endian"))
588 return true;
589 return false;
590}
591EXPORT_SYMBOL(of_device_is_big_endian);
592
593/**
Stephen Rothwelle679c5f2007-04-24 17:16:16 +1000594 * of_get_parent - Get a node's parent if any
595 * @node: Node to get parent
596 *
597 * Returns a node pointer with refcount incremented, use
598 * of_node_put() on it when done.
599 */
600struct device_node *of_get_parent(const struct device_node *node)
601{
602 struct device_node *np;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500603 unsigned long flags;
Stephen Rothwelle679c5f2007-04-24 17:16:16 +1000604
605 if (!node)
606 return NULL;
607
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500608 raw_spin_lock_irqsave(&devtree_lock, flags);
Stephen Rothwelle679c5f2007-04-24 17:16:16 +1000609 np = of_node_get(node->parent);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500610 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwelle679c5f2007-04-24 17:16:16 +1000611 return np;
612}
613EXPORT_SYMBOL(of_get_parent);
Stephen Rothwelld1cd3552007-04-24 17:21:29 +1000614
615/**
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000616 * of_get_next_parent - Iterate to a node's parent
617 * @node: Node to get parent of
618 *
Geert Uytterhoevenc0e848d2014-10-22 11:44:55 +0200619 * This is like of_get_parent() except that it drops the
620 * refcount on the passed node, making it suitable for iterating
621 * through a node's parents.
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000622 *
623 * Returns a node pointer with refcount incremented, use
624 * of_node_put() on it when done.
625 */
626struct device_node *of_get_next_parent(struct device_node *node)
627{
628 struct device_node *parent;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500629 unsigned long flags;
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000630
631 if (!node)
632 return NULL;
633
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500634 raw_spin_lock_irqsave(&devtree_lock, flags);
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000635 parent = of_node_get(node->parent);
636 of_node_put(node);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500637 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000638 return parent;
639}
Guennadi Liakhovetski6695be62013-04-02 12:28:11 -0300640EXPORT_SYMBOL(of_get_next_parent);
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000641
Grant Likely0d0e02d2014-05-22 01:04:17 +0900642static struct device_node *__of_get_next_child(const struct device_node *node,
643 struct device_node *prev)
644{
645 struct device_node *next;
646
Florian Fainelli43cb4362014-05-28 10:39:02 -0700647 if (!node)
648 return NULL;
649
Grant Likely0d0e02d2014-05-22 01:04:17 +0900650 next = prev ? prev->sibling : node->child;
651 for (; next; next = next->sibling)
652 if (of_node_get(next))
653 break;
654 of_node_put(prev);
655 return next;
656}
657#define __for_each_child_of_node(parent, child) \
658 for (child = __of_get_next_child(parent, NULL); child != NULL; \
659 child = __of_get_next_child(parent, child))
660
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000661/**
Stephen Rothwelld1cd3552007-04-24 17:21:29 +1000662 * of_get_next_child - Iterate a node childs
663 * @node: parent node
664 * @prev: previous child of the parent node, or NULL to get first
665 *
Baruch Siach64808272015-03-19 14:03:41 +0200666 * Returns a node pointer with refcount incremented, use of_node_put() on
667 * it when done. Returns NULL when prev is the last child. Decrements the
668 * refcount of prev.
Stephen Rothwelld1cd3552007-04-24 17:21:29 +1000669 */
670struct device_node *of_get_next_child(const struct device_node *node,
671 struct device_node *prev)
672{
673 struct device_node *next;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500674 unsigned long flags;
Stephen Rothwelld1cd3552007-04-24 17:21:29 +1000675
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500676 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likely0d0e02d2014-05-22 01:04:17 +0900677 next = __of_get_next_child(node, prev);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500678 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwelld1cd3552007-04-24 17:21:29 +1000679 return next;
680}
681EXPORT_SYMBOL(of_get_next_child);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000682
683/**
Timur Tabi32961932012-08-14 13:20:23 +0000684 * of_get_next_available_child - Find the next available child node
685 * @node: parent node
686 * @prev: previous child of the parent node, or NULL to get first
687 *
688 * This function is like of_get_next_child(), except that it
689 * automatically skips any disabled nodes (i.e. status = "disabled").
690 */
691struct device_node *of_get_next_available_child(const struct device_node *node,
692 struct device_node *prev)
693{
694 struct device_node *next;
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000695 unsigned long flags;
Timur Tabi32961932012-08-14 13:20:23 +0000696
Florian Fainelli43cb4362014-05-28 10:39:02 -0700697 if (!node)
698 return NULL;
699
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000700 raw_spin_lock_irqsave(&devtree_lock, flags);
Timur Tabi32961932012-08-14 13:20:23 +0000701 next = prev ? prev->sibling : node->child;
702 for (; next; next = next->sibling) {
Stephen Warrenc31a0c02013-02-11 14:15:32 -0700703 if (!__of_device_is_available(next))
Timur Tabi32961932012-08-14 13:20:23 +0000704 continue;
705 if (of_node_get(next))
706 break;
707 }
708 of_node_put(prev);
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +1000709 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Timur Tabi32961932012-08-14 13:20:23 +0000710 return next;
711}
712EXPORT_SYMBOL(of_get_next_available_child);
713
714/**
Srinivas Kandagatla9c197612012-09-18 08:10:28 +0100715 * of_get_child_by_name - Find the child node by name for a given parent
716 * @node: parent node
717 * @name: child name to look for.
718 *
719 * This function looks for child node for given matching name
720 *
721 * Returns a node pointer if found, with refcount incremented, use
722 * of_node_put() on it when done.
723 * Returns NULL if node is not found.
724 */
725struct device_node *of_get_child_by_name(const struct device_node *node,
726 const char *name)
727{
728 struct device_node *child;
729
730 for_each_child_of_node(node, child)
731 if (child->name && (of_node_cmp(child->name, name) == 0))
732 break;
733 return child;
734}
735EXPORT_SYMBOL(of_get_child_by_name);
736
Grant Likelyc22e6502014-03-14 17:07:12 +0000737static struct device_node *__of_find_node_by_path(struct device_node *parent,
738 const char *path)
739{
740 struct device_node *child;
Leif Lindholm106937e2015-03-06 16:52:53 +0000741 int len;
Grant Likelyc22e6502014-03-14 17:07:12 +0000742
Brian Norris721a09e2015-03-17 12:30:31 -0700743 len = strcspn(path, "/:");
Grant Likelyc22e6502014-03-14 17:07:12 +0000744 if (!len)
745 return NULL;
746
747 __for_each_child_of_node(parent, child) {
748 const char *name = strrchr(child->full_name, '/');
749 if (WARN(!name, "malformed device_node %s\n", child->full_name))
750 continue;
751 name++;
752 if (strncmp(path, name, len) == 0 && (strlen(name) == len))
753 return child;
754 }
755 return NULL;
756}
757
Srinivas Kandagatla9c197612012-09-18 08:10:28 +0100758/**
Leif Lindholm75c28c02014-11-28 11:34:28 +0000759 * of_find_node_opts_by_path - Find a node matching a full OF path
Grant Likelyc22e6502014-03-14 17:07:12 +0000760 * @path: Either the full path to match, or if the path does not
761 * start with '/', the name of a property of the /aliases
762 * node (an alias). In the case of an alias, the node
763 * matching the alias' value will be returned.
Leif Lindholm75c28c02014-11-28 11:34:28 +0000764 * @opts: Address of a pointer into which to store the start of
765 * an options string appended to the end of the path with
766 * a ':' separator.
Grant Likelyc22e6502014-03-14 17:07:12 +0000767 *
768 * Valid paths:
769 * /foo/bar Full path
770 * foo Valid alias
771 * foo/bar Valid alias + relative path
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000772 *
773 * Returns a node pointer with refcount incremented, use
774 * of_node_put() on it when done.
775 */
Leif Lindholm75c28c02014-11-28 11:34:28 +0000776struct device_node *of_find_node_opts_by_path(const char *path, const char **opts)
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000777{
Grant Likelyc22e6502014-03-14 17:07:12 +0000778 struct device_node *np = NULL;
779 struct property *pp;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500780 unsigned long flags;
Leif Lindholm75c28c02014-11-28 11:34:28 +0000781 const char *separator = strchr(path, ':');
782
783 if (opts)
784 *opts = separator ? separator + 1 : NULL;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000785
Grant Likelyc22e6502014-03-14 17:07:12 +0000786 if (strcmp(path, "/") == 0)
Grant Likely5063e252014-10-03 16:28:27 +0100787 return of_node_get(of_root);
Grant Likelyc22e6502014-03-14 17:07:12 +0000788
789 /* The path could begin with an alias */
790 if (*path != '/') {
Leif Lindholm106937e2015-03-06 16:52:53 +0000791 int len;
792 const char *p = separator;
793
794 if (!p)
795 p = strchrnul(path, '/');
796 len = p - path;
Grant Likelyc22e6502014-03-14 17:07:12 +0000797
798 /* of_aliases must not be NULL */
799 if (!of_aliases)
800 return NULL;
801
802 for_each_property_of_node(of_aliases, pp) {
803 if (strlen(pp->name) == len && !strncmp(pp->name, path, len)) {
804 np = of_find_node_by_path(pp->value);
805 break;
806 }
807 }
808 if (!np)
809 return NULL;
810 path = p;
811 }
812
813 /* Step down the tree matching path components */
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500814 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likelyc22e6502014-03-14 17:07:12 +0000815 if (!np)
Grant Likely5063e252014-10-03 16:28:27 +0100816 np = of_node_get(of_root);
Grant Likelyc22e6502014-03-14 17:07:12 +0000817 while (np && *path == '/') {
818 path++; /* Increment past '/' delimiter */
819 np = __of_find_node_by_path(np, path);
820 path = strchrnul(path, '/');
Leif Lindholm106937e2015-03-06 16:52:53 +0000821 if (separator && separator < path)
822 break;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000823 }
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500824 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000825 return np;
826}
Leif Lindholm75c28c02014-11-28 11:34:28 +0000827EXPORT_SYMBOL(of_find_node_opts_by_path);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000828
829/**
830 * of_find_node_by_name - Find a node by its "name" property
831 * @from: The node to start searching from or NULL, the node
832 * you pass will not be searched, only the next one
833 * will; typically, you pass what the previous call
834 * returned. of_node_put() will be called on it
835 * @name: The name string to match against
836 *
837 * Returns a node pointer with refcount incremented, use
838 * of_node_put() on it when done.
839 */
840struct device_node *of_find_node_by_name(struct device_node *from,
841 const char *name)
842{
843 struct device_node *np;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500844 unsigned long flags;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000845
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500846 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likely5063e252014-10-03 16:28:27 +0100847 for_each_of_allnodes_from(from, np)
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000848 if (np->name && (of_node_cmp(np->name, name) == 0)
849 && of_node_get(np))
850 break;
851 of_node_put(from);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500852 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000853 return np;
854}
855EXPORT_SYMBOL(of_find_node_by_name);
856
857/**
858 * of_find_node_by_type - Find a node by its "device_type" property
859 * @from: The node to start searching from, or NULL to start searching
860 * the entire device tree. The node you pass will not be
861 * searched, only the next one will; typically, you pass
862 * what the previous call returned. of_node_put() will be
863 * called on from for you.
864 * @type: The type string to match against
865 *
866 * Returns a node pointer with refcount incremented, use
867 * of_node_put() on it when done.
868 */
869struct device_node *of_find_node_by_type(struct device_node *from,
870 const char *type)
871{
872 struct device_node *np;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500873 unsigned long flags;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000874
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500875 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likely5063e252014-10-03 16:28:27 +0100876 for_each_of_allnodes_from(from, np)
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000877 if (np->type && (of_node_cmp(np->type, type) == 0)
878 && of_node_get(np))
879 break;
880 of_node_put(from);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500881 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000882 return np;
883}
884EXPORT_SYMBOL(of_find_node_by_type);
885
886/**
887 * of_find_compatible_node - Find a node based on type and one of the
888 * tokens in its "compatible" property
889 * @from: The node to start searching from or NULL, the node
890 * you pass will not be searched, only the next one
891 * will; typically, you pass what the previous call
892 * returned. of_node_put() will be called on it
893 * @type: The type string to match "device_type" or NULL to ignore
894 * @compatible: The string to match to one of the tokens in the device
895 * "compatible" list.
896 *
897 * Returns a node pointer with refcount incremented, use
898 * of_node_put() on it when done.
899 */
900struct device_node *of_find_compatible_node(struct device_node *from,
901 const char *type, const char *compatible)
902{
903 struct device_node *np;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500904 unsigned long flags;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000905
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500906 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likely5063e252014-10-03 16:28:27 +0100907 for_each_of_allnodes_from(from, np)
Kevin Hao215a14c2014-02-19 16:15:45 +0800908 if (__of_device_is_compatible(np, compatible, type, NULL) &&
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500909 of_node_get(np))
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000910 break;
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000911 of_node_put(from);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500912 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Stephen Rothwell1ef4d422007-04-24 17:57:33 +1000913 return np;
914}
915EXPORT_SYMBOL(of_find_compatible_node);
Grant Likely283029d2008-01-09 06:20:40 +1100916
917/**
Michael Ellerman1e291b12008-11-12 18:54:42 +0000918 * of_find_node_with_property - Find a node which has a property with
919 * the given name.
920 * @from: The node to start searching from or NULL, the node
921 * you pass will not be searched, only the next one
922 * will; typically, you pass what the previous call
923 * returned. of_node_put() will be called on it
924 * @prop_name: The name of the property to look for.
925 *
926 * Returns a node pointer with refcount incremented, use
927 * of_node_put() on it when done.
928 */
929struct device_node *of_find_node_with_property(struct device_node *from,
930 const char *prop_name)
931{
932 struct device_node *np;
933 struct property *pp;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500934 unsigned long flags;
Michael Ellerman1e291b12008-11-12 18:54:42 +0000935
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500936 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likely5063e252014-10-03 16:28:27 +0100937 for_each_of_allnodes_from(from, np) {
Sachin Kamata3a7cab2012-06-27 09:44:45 +0530938 for (pp = np->properties; pp; pp = pp->next) {
Michael Ellerman1e291b12008-11-12 18:54:42 +0000939 if (of_prop_cmp(pp->name, prop_name) == 0) {
940 of_node_get(np);
941 goto out;
942 }
943 }
944 }
945out:
946 of_node_put(from);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500947 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Michael Ellerman1e291b12008-11-12 18:54:42 +0000948 return np;
949}
950EXPORT_SYMBOL(of_find_node_with_property);
951
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500952static
953const struct of_device_id *__of_match_node(const struct of_device_id *matches,
954 const struct device_node *node)
Grant Likely283029d2008-01-09 06:20:40 +1100955{
Kevin Hao215a14c2014-02-19 16:15:45 +0800956 const struct of_device_id *best_match = NULL;
957 int score, best_score = 0;
958
Grant Likelya52f07e2011-03-18 10:21:29 -0600959 if (!matches)
960 return NULL;
961
Kevin Hao215a14c2014-02-19 16:15:45 +0800962 for (; matches->name[0] || matches->type[0] || matches->compatible[0]; matches++) {
963 score = __of_device_is_compatible(node, matches->compatible,
964 matches->type, matches->name);
965 if (score > best_score) {
966 best_match = matches;
967 best_score = score;
968 }
Kevin Hao4e8ca6e2014-02-14 13:22:45 +0800969 }
Kevin Hao215a14c2014-02-19 16:15:45 +0800970
971 return best_match;
Grant Likely283029d2008-01-09 06:20:40 +1100972}
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500973
974/**
Geert Uytterhoevenc50949d2014-10-22 11:44:54 +0200975 * of_match_node - Tell if a device_node has a matching of_match structure
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500976 * @matches: array of of device match structures to search in
977 * @node: the of device structure to match against
978 *
Kevin Hao71c54982014-02-18 15:57:29 +0800979 * Low level utility function used by device matching.
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500980 */
981const struct of_device_id *of_match_node(const struct of_device_id *matches,
982 const struct device_node *node)
983{
984 const struct of_device_id *match;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500985 unsigned long flags;
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500986
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500987 raw_spin_lock_irqsave(&devtree_lock, flags);
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500988 match = __of_match_node(matches, node);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500989 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Thomas Gleixner28d0e362013-01-25 13:21:47 -0500990 return match;
991}
Grant Likely283029d2008-01-09 06:20:40 +1100992EXPORT_SYMBOL(of_match_node);
993
994/**
Stephen Warren50c8af42012-11-20 16:12:20 -0700995 * of_find_matching_node_and_match - Find a node based on an of_device_id
996 * match table.
Grant Likely283029d2008-01-09 06:20:40 +1100997 * @from: The node to start searching from or NULL, the node
998 * you pass will not be searched, only the next one
999 * will; typically, you pass what the previous call
1000 * returned. of_node_put() will be called on it
1001 * @matches: array of of device match structures to search in
Stephen Warren50c8af42012-11-20 16:12:20 -07001002 * @match Updated to point at the matches entry which matched
Grant Likely283029d2008-01-09 06:20:40 +11001003 *
1004 * Returns a node pointer with refcount incremented, use
1005 * of_node_put() on it when done.
1006 */
Stephen Warren50c8af42012-11-20 16:12:20 -07001007struct device_node *of_find_matching_node_and_match(struct device_node *from,
1008 const struct of_device_id *matches,
1009 const struct of_device_id **match)
Grant Likely283029d2008-01-09 06:20:40 +11001010{
1011 struct device_node *np;
Thomas Abrahamdc71bcf2013-01-19 10:20:42 -08001012 const struct of_device_id *m;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001013 unsigned long flags;
Grant Likely283029d2008-01-09 06:20:40 +11001014
Stephen Warren50c8af42012-11-20 16:12:20 -07001015 if (match)
1016 *match = NULL;
1017
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001018 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likely5063e252014-10-03 16:28:27 +01001019 for_each_of_allnodes_from(from, np) {
Thomas Gleixner28d0e362013-01-25 13:21:47 -05001020 m = __of_match_node(matches, np);
Thomas Abrahamdc71bcf2013-01-19 10:20:42 -08001021 if (m && of_node_get(np)) {
Stephen Warren50c8af42012-11-20 16:12:20 -07001022 if (match)
Thomas Abrahamdc71bcf2013-01-19 10:20:42 -08001023 *match = m;
Grant Likely283029d2008-01-09 06:20:40 +11001024 break;
Stephen Warren50c8af42012-11-20 16:12:20 -07001025 }
Grant Likely283029d2008-01-09 06:20:40 +11001026 }
1027 of_node_put(from);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001028 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Grant Likely283029d2008-01-09 06:20:40 +11001029 return np;
1030}
Grant Likely80c20222012-12-19 10:45:36 +00001031EXPORT_SYMBOL(of_find_matching_node_and_match);
Grant Likely3f07af42008-07-25 22:25:13 -04001032
1033/**
Grant Likely3f07af42008-07-25 22:25:13 -04001034 * of_modalias_node - Lookup appropriate modalias for a device node
1035 * @node: pointer to a device tree node
1036 * @modalias: Pointer to buffer that modalias value will be copied into
1037 * @len: Length of modalias value
1038 *
Grant Likely2ffe8c52010-06-08 07:48:19 -06001039 * Based on the value of the compatible property, this routine will attempt
1040 * to choose an appropriate modalias value for a particular device tree node.
1041 * It does this by stripping the manufacturer prefix (as delimited by a ',')
1042 * from the first entry in the compatible list property.
Grant Likely3f07af42008-07-25 22:25:13 -04001043 *
Grant Likely2ffe8c52010-06-08 07:48:19 -06001044 * This routine returns 0 on success, <0 on failure.
Grant Likely3f07af42008-07-25 22:25:13 -04001045 */
1046int of_modalias_node(struct device_node *node, char *modalias, int len)
1047{
Grant Likely2ffe8c52010-06-08 07:48:19 -06001048 const char *compatible, *p;
1049 int cplen;
Grant Likely3f07af42008-07-25 22:25:13 -04001050
1051 compatible = of_get_property(node, "compatible", &cplen);
Grant Likely2ffe8c52010-06-08 07:48:19 -06001052 if (!compatible || strlen(compatible) > cplen)
Grant Likely3f07af42008-07-25 22:25:13 -04001053 return -ENODEV;
Grant Likely3f07af42008-07-25 22:25:13 -04001054 p = strchr(compatible, ',');
Grant Likely2ffe8c52010-06-08 07:48:19 -06001055 strlcpy(modalias, p ? p + 1 : compatible, len);
Grant Likely3f07af42008-07-25 22:25:13 -04001056 return 0;
1057}
1058EXPORT_SYMBOL_GPL(of_modalias_node);
1059
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001060/**
Jeremy Kerr89751a72010-02-01 21:34:11 -07001061 * of_find_node_by_phandle - Find a node given a phandle
1062 * @handle: phandle of the node to find
1063 *
1064 * Returns a node pointer with refcount incremented, use
1065 * of_node_put() on it when done.
1066 */
1067struct device_node *of_find_node_by_phandle(phandle handle)
1068{
1069 struct device_node *np;
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +10001070 unsigned long flags;
Jeremy Kerr89751a72010-02-01 21:34:11 -07001071
Grant Likelyfc59b442014-10-02 13:08:02 +01001072 if (!handle)
1073 return NULL;
1074
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +10001075 raw_spin_lock_irqsave(&devtree_lock, flags);
Grant Likely5063e252014-10-03 16:28:27 +01001076 for_each_of_allnodes(np)
Jeremy Kerr89751a72010-02-01 21:34:11 -07001077 if (np->phandle == handle)
1078 break;
1079 of_node_get(np);
Benjamin Herrenschmidtd25d8692013-06-12 15:39:04 +10001080 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Jeremy Kerr89751a72010-02-01 21:34:11 -07001081 return np;
1082}
1083EXPORT_SYMBOL(of_find_node_by_phandle);
1084
1085/**
Heiko Stuebnerad54a0c2014-02-12 01:00:34 +01001086 * of_property_count_elems_of_size - Count the number of elements in a property
1087 *
1088 * @np: device node from which the property value is to be read.
1089 * @propname: name of the property to be searched.
1090 * @elem_size: size of the individual element
1091 *
1092 * Search for a property in a device node and count the number of elements of
1093 * size elem_size in it. Returns number of elements on sucess, -EINVAL if the
1094 * property does not exist or its length does not match a multiple of elem_size
1095 * and -ENODATA if the property does not have a value.
1096 */
1097int of_property_count_elems_of_size(const struct device_node *np,
1098 const char *propname, int elem_size)
1099{
1100 struct property *prop = of_find_property(np, propname, NULL);
1101
1102 if (!prop)
1103 return -EINVAL;
1104 if (!prop->value)
1105 return -ENODATA;
1106
1107 if (prop->length % elem_size != 0) {
1108 pr_err("size of %s in node %s is not a multiple of %d\n",
1109 propname, np->full_name, elem_size);
1110 return -EINVAL;
1111 }
1112
1113 return prop->length / elem_size;
1114}
1115EXPORT_SYMBOL_GPL(of_property_count_elems_of_size);
1116
1117/**
Tony Priskdaeec1f2013-04-03 17:57:11 +13001118 * of_find_property_value_of_size
1119 *
1120 * @np: device node from which the property value is to be read.
1121 * @propname: name of the property to be searched.
1122 * @len: requested length of property value
1123 *
1124 * Search for a property in a device node and valid the requested size.
1125 * Returns the property value on success, -EINVAL if the property does not
1126 * exist, -ENODATA if property does not have a value, and -EOVERFLOW if the
1127 * property data isn't large enough.
1128 *
1129 */
1130static void *of_find_property_value_of_size(const struct device_node *np,
1131 const char *propname, u32 len)
1132{
1133 struct property *prop = of_find_property(np, propname, NULL);
1134
1135 if (!prop)
1136 return ERR_PTR(-EINVAL);
1137 if (!prop->value)
1138 return ERR_PTR(-ENODATA);
1139 if (len > prop->length)
1140 return ERR_PTR(-EOVERFLOW);
1141
1142 return prop->value;
1143}
1144
1145/**
Tony Prisk3daf3722013-03-23 17:02:15 +13001146 * of_property_read_u32_index - Find and read a u32 from a multi-value property.
1147 *
1148 * @np: device node from which the property value is to be read.
1149 * @propname: name of the property to be searched.
1150 * @index: index of the u32 in the list of values
1151 * @out_value: pointer to return value, modified only if no error.
1152 *
1153 * Search for a property in a device node and read nth 32-bit value from
1154 * it. Returns 0 on success, -EINVAL if the property does not exist,
1155 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1156 * property data isn't large enough.
1157 *
1158 * The out_value is modified only if a valid u32 value can be decoded.
1159 */
1160int of_property_read_u32_index(const struct device_node *np,
1161 const char *propname,
1162 u32 index, u32 *out_value)
1163{
Tony Priskdaeec1f2013-04-03 17:57:11 +13001164 const u32 *val = of_find_property_value_of_size(np, propname,
1165 ((index + 1) * sizeof(*out_value)));
Tony Prisk3daf3722013-03-23 17:02:15 +13001166
Tony Priskdaeec1f2013-04-03 17:57:11 +13001167 if (IS_ERR(val))
1168 return PTR_ERR(val);
Tony Prisk3daf3722013-03-23 17:02:15 +13001169
Tony Priskdaeec1f2013-04-03 17:57:11 +13001170 *out_value = be32_to_cpup(((__be32 *)val) + index);
Tony Prisk3daf3722013-03-23 17:02:15 +13001171 return 0;
1172}
1173EXPORT_SYMBOL_GPL(of_property_read_u32_index);
1174
1175/**
Viresh Kumarbe193242012-11-20 10:15:19 +05301176 * of_property_read_u8_array - Find and read an array of u8 from a property.
1177 *
1178 * @np: device node from which the property value is to be read.
1179 * @propname: name of the property to be searched.
Lad, Prabhakar792efb82013-05-07 11:34:11 +05301180 * @out_values: pointer to return value, modified only if return value is 0.
Viresh Kumarbe193242012-11-20 10:15:19 +05301181 * @sz: number of array elements to read
1182 *
1183 * Search for a property in a device node and read 8-bit value(s) from
1184 * it. Returns 0 on success, -EINVAL if the property does not exist,
1185 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1186 * property data isn't large enough.
1187 *
1188 * dts entry of array should be like:
1189 * property = /bits/ 8 <0x50 0x60 0x70>;
1190 *
Lad, Prabhakar792efb82013-05-07 11:34:11 +05301191 * The out_values is modified only if a valid u8 value can be decoded.
Viresh Kumarbe193242012-11-20 10:15:19 +05301192 */
1193int of_property_read_u8_array(const struct device_node *np,
1194 const char *propname, u8 *out_values, size_t sz)
1195{
Tony Priskdaeec1f2013-04-03 17:57:11 +13001196 const u8 *val = of_find_property_value_of_size(np, propname,
1197 (sz * sizeof(*out_values)));
Viresh Kumarbe193242012-11-20 10:15:19 +05301198
Tony Priskdaeec1f2013-04-03 17:57:11 +13001199 if (IS_ERR(val))
1200 return PTR_ERR(val);
Viresh Kumarbe193242012-11-20 10:15:19 +05301201
Viresh Kumarbe193242012-11-20 10:15:19 +05301202 while (sz--)
1203 *out_values++ = *val++;
1204 return 0;
1205}
1206EXPORT_SYMBOL_GPL(of_property_read_u8_array);
1207
1208/**
1209 * of_property_read_u16_array - Find and read an array of u16 from a property.
1210 *
1211 * @np: device node from which the property value is to be read.
1212 * @propname: name of the property to be searched.
Lad, Prabhakar792efb82013-05-07 11:34:11 +05301213 * @out_values: pointer to return value, modified only if return value is 0.
Viresh Kumarbe193242012-11-20 10:15:19 +05301214 * @sz: number of array elements to read
1215 *
1216 * Search for a property in a device node and read 16-bit value(s) from
1217 * it. Returns 0 on success, -EINVAL if the property does not exist,
1218 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1219 * property data isn't large enough.
1220 *
1221 * dts entry of array should be like:
1222 * property = /bits/ 16 <0x5000 0x6000 0x7000>;
1223 *
Lad, Prabhakar792efb82013-05-07 11:34:11 +05301224 * The out_values is modified only if a valid u16 value can be decoded.
Viresh Kumarbe193242012-11-20 10:15:19 +05301225 */
1226int of_property_read_u16_array(const struct device_node *np,
1227 const char *propname, u16 *out_values, size_t sz)
1228{
Tony Priskdaeec1f2013-04-03 17:57:11 +13001229 const __be16 *val = of_find_property_value_of_size(np, propname,
1230 (sz * sizeof(*out_values)));
Viresh Kumarbe193242012-11-20 10:15:19 +05301231
Tony Priskdaeec1f2013-04-03 17:57:11 +13001232 if (IS_ERR(val))
1233 return PTR_ERR(val);
Viresh Kumarbe193242012-11-20 10:15:19 +05301234
Viresh Kumarbe193242012-11-20 10:15:19 +05301235 while (sz--)
1236 *out_values++ = be16_to_cpup(val++);
1237 return 0;
1238}
1239EXPORT_SYMBOL_GPL(of_property_read_u16_array);
1240
1241/**
Rob Herring0e373632011-07-06 15:42:58 -05001242 * of_property_read_u32_array - Find and read an array of 32 bit integers
1243 * from a property.
1244 *
Thomas Abrahama3b85362011-06-30 21:26:10 +05301245 * @np: device node from which the property value is to be read.
1246 * @propname: name of the property to be searched.
Lad, Prabhakar792efb82013-05-07 11:34:11 +05301247 * @out_values: pointer to return value, modified only if return value is 0.
Viresh Kumarbe193242012-11-20 10:15:19 +05301248 * @sz: number of array elements to read
Thomas Abrahama3b85362011-06-30 21:26:10 +05301249 *
Rob Herring0e373632011-07-06 15:42:58 -05001250 * Search for a property in a device node and read 32-bit value(s) from
Thomas Abrahama3b85362011-06-30 21:26:10 +05301251 * it. Returns 0 on success, -EINVAL if the property does not exist,
1252 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1253 * property data isn't large enough.
1254 *
Lad, Prabhakar792efb82013-05-07 11:34:11 +05301255 * The out_values is modified only if a valid u32 value can be decoded.
Thomas Abrahama3b85362011-06-30 21:26:10 +05301256 */
Jamie Ilesaac285c2011-08-02 15:45:07 +01001257int of_property_read_u32_array(const struct device_node *np,
1258 const char *propname, u32 *out_values,
1259 size_t sz)
Thomas Abrahama3b85362011-06-30 21:26:10 +05301260{
Tony Priskdaeec1f2013-04-03 17:57:11 +13001261 const __be32 *val = of_find_property_value_of_size(np, propname,
1262 (sz * sizeof(*out_values)));
Thomas Abrahama3b85362011-06-30 21:26:10 +05301263
Tony Priskdaeec1f2013-04-03 17:57:11 +13001264 if (IS_ERR(val))
1265 return PTR_ERR(val);
Rob Herring0e373632011-07-06 15:42:58 -05001266
Rob Herring0e373632011-07-06 15:42:58 -05001267 while (sz--)
1268 *out_values++ = be32_to_cpup(val++);
Thomas Abrahama3b85362011-06-30 21:26:10 +05301269 return 0;
1270}
Rob Herring0e373632011-07-06 15:42:58 -05001271EXPORT_SYMBOL_GPL(of_property_read_u32_array);
Thomas Abrahama3b85362011-06-30 21:26:10 +05301272
1273/**
Jamie Iles4cd7f7a2011-09-14 20:49:59 +01001274 * of_property_read_u64 - Find and read a 64 bit integer from a property
1275 * @np: device node from which the property value is to be read.
1276 * @propname: name of the property to be searched.
1277 * @out_value: pointer to return value, modified only if return value is 0.
1278 *
1279 * Search for a property in a device node and read a 64-bit value from
1280 * it. Returns 0 on success, -EINVAL if the property does not exist,
1281 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1282 * property data isn't large enough.
1283 *
1284 * The out_value is modified only if a valid u64 value can be decoded.
1285 */
1286int of_property_read_u64(const struct device_node *np, const char *propname,
1287 u64 *out_value)
1288{
Tony Priskdaeec1f2013-04-03 17:57:11 +13001289 const __be32 *val = of_find_property_value_of_size(np, propname,
1290 sizeof(*out_value));
Jamie Iles4cd7f7a2011-09-14 20:49:59 +01001291
Tony Priskdaeec1f2013-04-03 17:57:11 +13001292 if (IS_ERR(val))
1293 return PTR_ERR(val);
1294
1295 *out_value = of_read_number(val, 2);
Jamie Iles4cd7f7a2011-09-14 20:49:59 +01001296 return 0;
1297}
1298EXPORT_SYMBOL_GPL(of_property_read_u64);
1299
1300/**
Rafael J. Wysockib31384f2014-11-04 01:28:56 +01001301 * of_property_read_u64_array - Find and read an array of 64 bit integers
1302 * from a property.
1303 *
1304 * @np: device node from which the property value is to be read.
1305 * @propname: name of the property to be searched.
1306 * @out_values: pointer to return value, modified only if return value is 0.
1307 * @sz: number of array elements to read
1308 *
1309 * Search for a property in a device node and read 64-bit value(s) from
1310 * it. Returns 0 on success, -EINVAL if the property does not exist,
1311 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1312 * property data isn't large enough.
1313 *
1314 * The out_values is modified only if a valid u64 value can be decoded.
1315 */
1316int of_property_read_u64_array(const struct device_node *np,
1317 const char *propname, u64 *out_values,
1318 size_t sz)
1319{
1320 const __be32 *val = of_find_property_value_of_size(np, propname,
1321 (sz * sizeof(*out_values)));
1322
1323 if (IS_ERR(val))
1324 return PTR_ERR(val);
1325
1326 while (sz--) {
1327 *out_values++ = of_read_number(val, 2);
1328 val += 2;
1329 }
1330 return 0;
1331}
Sakari Ailus2d4c0ae2015-01-27 12:26:35 +02001332EXPORT_SYMBOL_GPL(of_property_read_u64_array);
Rafael J. Wysockib31384f2014-11-04 01:28:56 +01001333
1334/**
Thomas Abrahama3b85362011-06-30 21:26:10 +05301335 * of_property_read_string - Find and read a string from a property
1336 * @np: device node from which the property value is to be read.
1337 * @propname: name of the property to be searched.
1338 * @out_string: pointer to null terminated return string, modified only if
1339 * return value is 0.
1340 *
1341 * Search for a property in a device tree node and retrieve a null
1342 * terminated string value (pointer to data, not a copy). Returns 0 on
1343 * success, -EINVAL if the property does not exist, -ENODATA if property
1344 * does not have a value, and -EILSEQ if the string is not null-terminated
1345 * within the length of the property data.
1346 *
1347 * The out_string pointer is modified only if a valid string can be decoded.
1348 */
Jamie Ilesaac285c2011-08-02 15:45:07 +01001349int of_property_read_string(struct device_node *np, const char *propname,
Shawn Guof09bc832011-07-04 09:01:18 +08001350 const char **out_string)
Thomas Abrahama3b85362011-06-30 21:26:10 +05301351{
1352 struct property *prop = of_find_property(np, propname, NULL);
1353 if (!prop)
1354 return -EINVAL;
1355 if (!prop->value)
1356 return -ENODATA;
1357 if (strnlen(prop->value, prop->length) >= prop->length)
1358 return -EILSEQ;
1359 *out_string = prop->value;
1360 return 0;
1361}
1362EXPORT_SYMBOL_GPL(of_property_read_string);
1363
1364/**
Grant Likely7aff0fe2011-12-12 09:25:58 -07001365 * of_property_match_string() - Find string in a list and return index
1366 * @np: pointer to node containing string list property
1367 * @propname: string list property name
1368 * @string: pointer to string to search for in string list
1369 *
1370 * This function searches a string list property and returns the index
1371 * of a specific string value.
1372 */
1373int of_property_match_string(struct device_node *np, const char *propname,
1374 const char *string)
1375{
1376 struct property *prop = of_find_property(np, propname, NULL);
1377 size_t l;
1378 int i;
1379 const char *p, *end;
1380
1381 if (!prop)
1382 return -EINVAL;
1383 if (!prop->value)
1384 return -ENODATA;
1385
1386 p = prop->value;
1387 end = p + prop->length;
1388
1389 for (i = 0; p < end; i++, p += l) {
Grant Likelya87fa1d2014-11-03 15:15:35 +00001390 l = strnlen(p, end - p) + 1;
Grant Likely7aff0fe2011-12-12 09:25:58 -07001391 if (p + l > end)
1392 return -EILSEQ;
1393 pr_debug("comparing %s with %s\n", string, p);
1394 if (strcmp(string, p) == 0)
1395 return i; /* Found it; return index */
1396 }
1397 return -ENODATA;
1398}
1399EXPORT_SYMBOL_GPL(of_property_match_string);
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001400
1401/**
Jiri Slabye99010e2014-11-21 13:23:09 +01001402 * of_property_read_string_helper() - Utility helper for parsing string properties
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001403 * @np: device node from which the property value is to be read.
1404 * @propname: name of the property to be searched.
Grant Likelya87fa1d2014-11-03 15:15:35 +00001405 * @out_strs: output array of string pointers.
1406 * @sz: number of array elements to read.
1407 * @skip: Number of strings to skip over at beginning of list.
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001408 *
Grant Likelya87fa1d2014-11-03 15:15:35 +00001409 * Don't call this function directly. It is a utility helper for the
1410 * of_property_read_string*() family of functions.
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001411 */
Grant Likelya87fa1d2014-11-03 15:15:35 +00001412int of_property_read_string_helper(struct device_node *np, const char *propname,
1413 const char **out_strs, size_t sz, int skip)
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001414{
1415 struct property *prop = of_find_property(np, propname, NULL);
Grant Likelya87fa1d2014-11-03 15:15:35 +00001416 int l = 0, i = 0;
1417 const char *p, *end;
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001418
1419 if (!prop)
1420 return -EINVAL;
1421 if (!prop->value)
1422 return -ENODATA;
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001423 p = prop->value;
Grant Likelya87fa1d2014-11-03 15:15:35 +00001424 end = p + prop->length;
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001425
Grant Likelya87fa1d2014-11-03 15:15:35 +00001426 for (i = 0; p < end && (!out_strs || i < skip + sz); i++, p += l) {
1427 l = strnlen(p, end - p) + 1;
1428 if (p + l > end)
1429 return -EILSEQ;
1430 if (out_strs && i >= skip)
1431 *out_strs++ = p;
1432 }
1433 i -= skip;
1434 return i <= 0 ? -ENODATA : i;
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001435}
Grant Likelya87fa1d2014-11-03 15:15:35 +00001436EXPORT_SYMBOL_GPL(of_property_read_string_helper);
Benoit Cousson4fcd15a2011-09-27 17:45:43 +02001437
Grant Likely624cfca2013-10-11 22:05:10 +01001438void of_print_phandle_args(const char *msg, const struct of_phandle_args *args)
1439{
1440 int i;
1441 printk("%s %s", msg, of_node_full_name(args->np));
1442 for (i = 0; i < args->args_count; i++)
1443 printk(i ? ",%08x" : ":%08x", args->args[i]);
1444 printk("\n");
1445}
1446
Grant Likelybd69f732013-02-10 22:57:21 +00001447static int __of_parse_phandle_with_args(const struct device_node *np,
1448 const char *list_name,
Stephen Warren035fd942013-08-14 15:27:10 -06001449 const char *cells_name,
1450 int cell_count, int index,
Grant Likelybd69f732013-02-10 22:57:21 +00001451 struct of_phandle_args *out_args)
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001452{
Grant Likely15c9a0a2011-12-12 09:25:57 -07001453 const __be32 *list, *list_end;
Grant Likely23ce04c2013-02-12 21:21:49 +00001454 int rc = 0, size, cur_index = 0;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001455 uint32_t count = 0;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001456 struct device_node *node = NULL;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001457 phandle phandle;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001458
Grant Likely15c9a0a2011-12-12 09:25:57 -07001459 /* Retrieve the phandle list property */
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001460 list = of_get_property(np, list_name, &size);
Grant Likely15c9a0a2011-12-12 09:25:57 -07001461 if (!list)
Alexandre Courbot1af4c7f2012-06-29 13:57:58 +09001462 return -ENOENT;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001463 list_end = list + size / sizeof(*list);
1464
Grant Likely15c9a0a2011-12-12 09:25:57 -07001465 /* Loop over the phandles until all the requested entry is found */
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001466 while (list < list_end) {
Grant Likely23ce04c2013-02-12 21:21:49 +00001467 rc = -EINVAL;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001468 count = 0;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001469
Grant Likely15c9a0a2011-12-12 09:25:57 -07001470 /*
1471 * If phandle is 0, then it is an empty entry with no
1472 * arguments. Skip forward to the next entry.
1473 */
Grant Likely9a6b2e52010-07-23 01:48:25 -06001474 phandle = be32_to_cpup(list++);
Grant Likely15c9a0a2011-12-12 09:25:57 -07001475 if (phandle) {
1476 /*
1477 * Find the provider node and parse the #*-cells
Stephen Warren91d99422013-08-14 15:27:11 -06001478 * property to determine the argument length.
1479 *
1480 * This is not needed if the cell count is hard-coded
1481 * (i.e. cells_name not set, but cell_count is set),
1482 * except when we're going to return the found node
1483 * below.
Grant Likely15c9a0a2011-12-12 09:25:57 -07001484 */
Stephen Warren91d99422013-08-14 15:27:11 -06001485 if (cells_name || cur_index == index) {
1486 node = of_find_node_by_phandle(phandle);
1487 if (!node) {
1488 pr_err("%s: could not find phandle\n",
1489 np->full_name);
1490 goto err;
1491 }
Grant Likely15c9a0a2011-12-12 09:25:57 -07001492 }
Stephen Warren035fd942013-08-14 15:27:10 -06001493
1494 if (cells_name) {
1495 if (of_property_read_u32(node, cells_name,
1496 &count)) {
1497 pr_err("%s: could not get %s for %s\n",
1498 np->full_name, cells_name,
1499 node->full_name);
1500 goto err;
1501 }
1502 } else {
1503 count = cell_count;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001504 }
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001505
Grant Likely15c9a0a2011-12-12 09:25:57 -07001506 /*
1507 * Make sure that the arguments actually fit in the
1508 * remaining property data length
1509 */
1510 if (list + count > list_end) {
1511 pr_err("%s: arguments longer than property\n",
1512 np->full_name);
Grant Likely23ce04c2013-02-12 21:21:49 +00001513 goto err;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001514 }
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001515 }
1516
Grant Likely15c9a0a2011-12-12 09:25:57 -07001517 /*
1518 * All of the error cases above bail out of the loop, so at
1519 * this point, the parsing is successful. If the requested
1520 * index matches, then fill the out_args structure and return,
1521 * or return -ENOENT for an empty entry.
1522 */
Grant Likely23ce04c2013-02-12 21:21:49 +00001523 rc = -ENOENT;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001524 if (cur_index == index) {
1525 if (!phandle)
Grant Likely23ce04c2013-02-12 21:21:49 +00001526 goto err;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001527
Grant Likely15c9a0a2011-12-12 09:25:57 -07001528 if (out_args) {
1529 int i;
1530 if (WARN_ON(count > MAX_PHANDLE_ARGS))
1531 count = MAX_PHANDLE_ARGS;
1532 out_args->np = node;
1533 out_args->args_count = count;
1534 for (i = 0; i < count; i++)
1535 out_args->args[i] = be32_to_cpup(list++);
Tang Yuantianb855f162013-04-10 11:36:39 +08001536 } else {
1537 of_node_put(node);
Grant Likely15c9a0a2011-12-12 09:25:57 -07001538 }
Grant Likely23ce04c2013-02-12 21:21:49 +00001539
1540 /* Found it! return success */
Grant Likely15c9a0a2011-12-12 09:25:57 -07001541 return 0;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001542 }
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001543
1544 of_node_put(node);
1545 node = NULL;
Grant Likely15c9a0a2011-12-12 09:25:57 -07001546 list += count;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001547 cur_index++;
1548 }
1549
Grant Likely23ce04c2013-02-12 21:21:49 +00001550 /*
1551 * Unlock node before returning result; will be one of:
1552 * -ENOENT : index is for empty phandle
1553 * -EINVAL : parsing error on data
Grant Likelybd69f732013-02-10 22:57:21 +00001554 * [1..n] : Number of phandle (count mode; when index = -1)
Grant Likely23ce04c2013-02-12 21:21:49 +00001555 */
Grant Likelybd69f732013-02-10 22:57:21 +00001556 rc = index < 0 ? cur_index : -ENOENT;
Grant Likely23ce04c2013-02-12 21:21:49 +00001557 err:
Grant Likely15c9a0a2011-12-12 09:25:57 -07001558 if (node)
1559 of_node_put(node);
Grant Likely23ce04c2013-02-12 21:21:49 +00001560 return rc;
Anton Vorontsov64b60e02008-10-10 04:43:17 +00001561}
Grant Likelybd69f732013-02-10 22:57:21 +00001562
Stephen Warreneded9dd2013-08-14 15:27:08 -06001563/**
Stephen Warren5fba49e2013-08-14 15:27:09 -06001564 * of_parse_phandle - Resolve a phandle property to a device_node pointer
1565 * @np: Pointer to device node holding phandle property
1566 * @phandle_name: Name of property holding a phandle value
1567 * @index: For properties holding a table of phandles, this is the index into
1568 * the table
1569 *
1570 * Returns the device_node pointer with refcount incremented. Use
1571 * of_node_put() on it when done.
1572 */
1573struct device_node *of_parse_phandle(const struct device_node *np,
1574 const char *phandle_name, int index)
1575{
Stephen Warren91d99422013-08-14 15:27:11 -06001576 struct of_phandle_args args;
Stephen Warren5fba49e2013-08-14 15:27:09 -06001577
Stephen Warren91d99422013-08-14 15:27:11 -06001578 if (index < 0)
Stephen Warren5fba49e2013-08-14 15:27:09 -06001579 return NULL;
1580
Stephen Warren91d99422013-08-14 15:27:11 -06001581 if (__of_parse_phandle_with_args(np, phandle_name, NULL, 0,
1582 index, &args))
1583 return NULL;
1584
1585 return args.np;
Stephen Warren5fba49e2013-08-14 15:27:09 -06001586}
1587EXPORT_SYMBOL(of_parse_phandle);
1588
1589/**
Stephen Warreneded9dd2013-08-14 15:27:08 -06001590 * of_parse_phandle_with_args() - Find a node pointed by phandle in a list
1591 * @np: pointer to a device tree node containing a list
1592 * @list_name: property name that contains a list
1593 * @cells_name: property name that specifies phandles' arguments count
1594 * @index: index of a phandle to parse out
1595 * @out_args: optional pointer to output arguments structure (will be filled)
1596 *
1597 * This function is useful to parse lists of phandles and their arguments.
1598 * Returns 0 on success and fills out_args, on error returns appropriate
1599 * errno value.
1600 *
Geert Uytterhoevend94a75c2014-10-22 11:44:52 +02001601 * Caller is responsible to call of_node_put() on the returned out_args->np
Stephen Warreneded9dd2013-08-14 15:27:08 -06001602 * pointer.
1603 *
1604 * Example:
1605 *
1606 * phandle1: node1 {
Geert Uytterhoevenc0e848d2014-10-22 11:44:55 +02001607 * #list-cells = <2>;
Stephen Warreneded9dd2013-08-14 15:27:08 -06001608 * }
1609 *
1610 * phandle2: node2 {
Geert Uytterhoevenc0e848d2014-10-22 11:44:55 +02001611 * #list-cells = <1>;
Stephen Warreneded9dd2013-08-14 15:27:08 -06001612 * }
1613 *
1614 * node3 {
Geert Uytterhoevenc0e848d2014-10-22 11:44:55 +02001615 * list = <&phandle1 1 2 &phandle2 3>;
Stephen Warreneded9dd2013-08-14 15:27:08 -06001616 * }
1617 *
1618 * To get a device_node of the `node2' node you may call this:
1619 * of_parse_phandle_with_args(node3, "list", "#list-cells", 1, &args);
1620 */
Grant Likelybd69f732013-02-10 22:57:21 +00001621int of_parse_phandle_with_args(const struct device_node *np, const char *list_name,
1622 const char *cells_name, int index,
1623 struct of_phandle_args *out_args)
1624{
1625 if (index < 0)
1626 return -EINVAL;
Stephen Warren035fd942013-08-14 15:27:10 -06001627 return __of_parse_phandle_with_args(np, list_name, cells_name, 0,
1628 index, out_args);
Grant Likelybd69f732013-02-10 22:57:21 +00001629}
Grant Likely15c9a0a2011-12-12 09:25:57 -07001630EXPORT_SYMBOL(of_parse_phandle_with_args);
Grant Likely02af11b2009-11-23 20:16:45 -07001631
Grant Likelybd69f732013-02-10 22:57:21 +00001632/**
Stephen Warren035fd942013-08-14 15:27:10 -06001633 * of_parse_phandle_with_fixed_args() - Find a node pointed by phandle in a list
1634 * @np: pointer to a device tree node containing a list
1635 * @list_name: property name that contains a list
1636 * @cell_count: number of argument cells following the phandle
1637 * @index: index of a phandle to parse out
1638 * @out_args: optional pointer to output arguments structure (will be filled)
1639 *
1640 * This function is useful to parse lists of phandles and their arguments.
1641 * Returns 0 on success and fills out_args, on error returns appropriate
1642 * errno value.
1643 *
Geert Uytterhoevend94a75c2014-10-22 11:44:52 +02001644 * Caller is responsible to call of_node_put() on the returned out_args->np
Stephen Warren035fd942013-08-14 15:27:10 -06001645 * pointer.
1646 *
1647 * Example:
1648 *
1649 * phandle1: node1 {
1650 * }
1651 *
1652 * phandle2: node2 {
1653 * }
1654 *
1655 * node3 {
Geert Uytterhoevenc0e848d2014-10-22 11:44:55 +02001656 * list = <&phandle1 0 2 &phandle2 2 3>;
Stephen Warren035fd942013-08-14 15:27:10 -06001657 * }
1658 *
1659 * To get a device_node of the `node2' node you may call this:
1660 * of_parse_phandle_with_fixed_args(node3, "list", 2, 1, &args);
1661 */
1662int of_parse_phandle_with_fixed_args(const struct device_node *np,
1663 const char *list_name, int cell_count,
1664 int index, struct of_phandle_args *out_args)
1665{
1666 if (index < 0)
1667 return -EINVAL;
1668 return __of_parse_phandle_with_args(np, list_name, NULL, cell_count,
1669 index, out_args);
1670}
1671EXPORT_SYMBOL(of_parse_phandle_with_fixed_args);
1672
1673/**
Grant Likelybd69f732013-02-10 22:57:21 +00001674 * of_count_phandle_with_args() - Find the number of phandles references in a property
1675 * @np: pointer to a device tree node containing a list
1676 * @list_name: property name that contains a list
1677 * @cells_name: property name that specifies phandles' arguments count
1678 *
1679 * Returns the number of phandle + argument tuples within a property. It
1680 * is a typical pattern to encode a list of phandle and variable
1681 * arguments into a single property. The number of arguments is encoded
1682 * by a property in the phandle-target node. For example, a gpios
1683 * property would contain a list of GPIO specifies consisting of a
1684 * phandle and 1 or more arguments. The number of arguments are
1685 * determined by the #gpio-cells property in the node pointed to by the
1686 * phandle.
1687 */
1688int of_count_phandle_with_args(const struct device_node *np, const char *list_name,
1689 const char *cells_name)
1690{
Stephen Warren035fd942013-08-14 15:27:10 -06001691 return __of_parse_phandle_with_args(np, list_name, cells_name, 0, -1,
1692 NULL);
Grant Likelybd69f732013-02-10 22:57:21 +00001693}
1694EXPORT_SYMBOL(of_count_phandle_with_args);
1695
Grant Likely02af11b2009-11-23 20:16:45 -07001696/**
Xiubo Li62664f62014-01-22 13:57:39 +08001697 * __of_add_property - Add a property to a node without lock operations
1698 */
Pantelis Antonioud8c50082014-07-04 19:58:46 +03001699int __of_add_property(struct device_node *np, struct property *prop)
Xiubo Li62664f62014-01-22 13:57:39 +08001700{
1701 struct property **next;
1702
1703 prop->next = NULL;
1704 next = &np->properties;
1705 while (*next) {
1706 if (strcmp(prop->name, (*next)->name) == 0)
1707 /* duplicate ! don't insert it */
1708 return -EEXIST;
1709
1710 next = &(*next)->next;
1711 }
1712 *next = prop;
1713
1714 return 0;
1715}
1716
1717/**
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001718 * of_add_property - Add a property to a node
Grant Likely02af11b2009-11-23 20:16:45 -07001719 */
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001720int of_add_property(struct device_node *np, struct property *prop)
Grant Likely02af11b2009-11-23 20:16:45 -07001721{
Grant Likely02af11b2009-11-23 20:16:45 -07001722 unsigned long flags;
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001723 int rc;
1724
Grant Likely8a2b22a2014-07-23 17:05:06 -06001725 mutex_lock(&of_mutex);
Grant Likely02af11b2009-11-23 20:16:45 -07001726
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001727 raw_spin_lock_irqsave(&devtree_lock, flags);
Xiubo Li62664f62014-01-22 13:57:39 +08001728 rc = __of_add_property(np, prop);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001729 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Grant Likely02af11b2009-11-23 20:16:45 -07001730
Grant Likely8a2b22a2014-07-23 17:05:06 -06001731 if (!rc)
Pantelis Antoniou0829f6d2013-12-13 20:08:59 +02001732 __of_add_property_sysfs(np, prop);
Grant Likely02af11b2009-11-23 20:16:45 -07001733
Grant Likely8a2b22a2014-07-23 17:05:06 -06001734 mutex_unlock(&of_mutex);
1735
Grant Likely259092a2014-07-16 12:48:23 -06001736 if (!rc)
1737 of_property_notify(OF_RECONFIG_ADD_PROPERTY, np, prop, NULL);
1738
Xiubo Li62664f62014-01-22 13:57:39 +08001739 return rc;
Grant Likely02af11b2009-11-23 20:16:45 -07001740}
1741
Pantelis Antonioud8c50082014-07-04 19:58:46 +03001742int __of_remove_property(struct device_node *np, struct property *prop)
1743{
1744 struct property **next;
1745
1746 for (next = &np->properties; *next; next = &(*next)->next) {
1747 if (*next == prop)
1748 break;
1749 }
1750 if (*next == NULL)
1751 return -ENODEV;
1752
1753 /* found the node */
1754 *next = prop->next;
1755 prop->next = np->deadprops;
1756 np->deadprops = prop;
1757
1758 return 0;
1759}
1760
Grant Likely8a2b22a2014-07-23 17:05:06 -06001761void __of_remove_property_sysfs(struct device_node *np, struct property *prop)
1762{
Gaurav Minochaef69d742014-09-05 09:56:13 -07001763 if (!IS_ENABLED(CONFIG_SYSFS))
1764 return;
1765
Grant Likely8a2b22a2014-07-23 17:05:06 -06001766 /* at early boot, bail here and defer setup to of_init() */
1767 if (of_kset && of_node_is_attached(np))
1768 sysfs_remove_bin_file(&np->kobj, &prop->attr);
1769}
1770
Grant Likely02af11b2009-11-23 20:16:45 -07001771/**
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001772 * of_remove_property - Remove a property from a node.
Grant Likely02af11b2009-11-23 20:16:45 -07001773 *
1774 * Note that we don't actually remove it, since we have given out
1775 * who-knows-how-many pointers to the data using get-property.
1776 * Instead we just move the property to the "dead properties"
1777 * list, so it won't be found any more.
1778 */
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001779int of_remove_property(struct device_node *np, struct property *prop)
Grant Likely02af11b2009-11-23 20:16:45 -07001780{
Grant Likely02af11b2009-11-23 20:16:45 -07001781 unsigned long flags;
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001782 int rc;
1783
Grant Likely8a2b22a2014-07-23 17:05:06 -06001784 mutex_lock(&of_mutex);
Grant Likely02af11b2009-11-23 20:16:45 -07001785
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001786 raw_spin_lock_irqsave(&devtree_lock, flags);
Pantelis Antonioud8c50082014-07-04 19:58:46 +03001787 rc = __of_remove_property(np, prop);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001788 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Grant Likely02af11b2009-11-23 20:16:45 -07001789
Grant Likely8a2b22a2014-07-23 17:05:06 -06001790 if (!rc)
1791 __of_remove_property_sysfs(np, prop);
Grant Likely02af11b2009-11-23 20:16:45 -07001792
Grant Likely8a2b22a2014-07-23 17:05:06 -06001793 mutex_unlock(&of_mutex);
Grant Likely75b57ec2014-02-20 18:02:11 +00001794
Grant Likely259092a2014-07-16 12:48:23 -06001795 if (!rc)
1796 of_property_notify(OF_RECONFIG_REMOVE_PROPERTY, np, prop, NULL);
1797
Grant Likely8a2b22a2014-07-23 17:05:06 -06001798 return rc;
Grant Likely02af11b2009-11-23 20:16:45 -07001799}
1800
Pantelis Antonioud8c50082014-07-04 19:58:46 +03001801int __of_update_property(struct device_node *np, struct property *newprop,
1802 struct property **oldpropp)
1803{
1804 struct property **next, *oldprop;
1805
1806 for (next = &np->properties; *next; next = &(*next)->next) {
1807 if (of_prop_cmp((*next)->name, newprop->name) == 0)
1808 break;
1809 }
1810 *oldpropp = oldprop = *next;
1811
1812 if (oldprop) {
1813 /* replace the node */
1814 newprop->next = oldprop->next;
1815 *next = newprop;
1816 oldprop->next = np->deadprops;
1817 np->deadprops = oldprop;
1818 } else {
1819 /* new node */
1820 newprop->next = NULL;
1821 *next = newprop;
1822 }
Grant Likely02af11b2009-11-23 20:16:45 -07001823
1824 return 0;
1825}
1826
Grant Likely8a2b22a2014-07-23 17:05:06 -06001827void __of_update_property_sysfs(struct device_node *np, struct property *newprop,
1828 struct property *oldprop)
1829{
Gaurav Minochaef69d742014-09-05 09:56:13 -07001830 if (!IS_ENABLED(CONFIG_SYSFS))
1831 return;
1832
Grant Likely8a2b22a2014-07-23 17:05:06 -06001833 /* At early boot, bail out and defer setup to of_init() */
1834 if (!of_kset)
1835 return;
1836
1837 if (oldprop)
1838 sysfs_remove_bin_file(&np->kobj, &oldprop->attr);
1839 __of_add_property_sysfs(np, newprop);
1840}
1841
Grant Likely02af11b2009-11-23 20:16:45 -07001842/*
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001843 * of_update_property - Update a property in a node, if the property does
Dong Aisheng475d0092012-07-11 15:16:37 +10001844 * not exist, add it.
Grant Likely02af11b2009-11-23 20:16:45 -07001845 *
1846 * Note that we don't actually remove it, since we have given out
1847 * who-knows-how-many pointers to the data using get-property.
1848 * Instead we just move the property to the "dead properties" list,
1849 * and add the new property to the property list
1850 */
Nathan Fontenot79d1c712012-10-02 16:58:46 +00001851int of_update_property(struct device_node *np, struct property *newprop)
Grant Likely02af11b2009-11-23 20:16:45 -07001852{
Pantelis Antonioud8c50082014-07-04 19:58:46 +03001853 struct property *oldprop;
Grant Likely02af11b2009-11-23 20:16:45 -07001854 unsigned long flags;
Xiubo Li947fdaad02014-04-17 15:48:29 +08001855 int rc;
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001856
Dong Aisheng475d0092012-07-11 15:16:37 +10001857 if (!newprop->name)
1858 return -EINVAL;
1859
Grant Likely8a2b22a2014-07-23 17:05:06 -06001860 mutex_lock(&of_mutex);
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001861
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001862 raw_spin_lock_irqsave(&devtree_lock, flags);
Pantelis Antonioud8c50082014-07-04 19:58:46 +03001863 rc = __of_update_property(np, newprop, &oldprop);
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -05001864 raw_spin_unlock_irqrestore(&devtree_lock, flags);
Nathan Fontenote81b3292012-10-02 16:55:01 +00001865
Grant Likely8a2b22a2014-07-23 17:05:06 -06001866 if (!rc)
1867 __of_update_property_sysfs(np, newprop, oldprop);
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001868
Grant Likely8a2b22a2014-07-23 17:05:06 -06001869 mutex_unlock(&of_mutex);
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001870
Grant Likely259092a2014-07-16 12:48:23 -06001871 if (!rc)
1872 of_property_notify(OF_RECONFIG_UPDATE_PROPERTY, np, newprop, oldprop);
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001873
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +00001874 return rc;
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001875}
Grant Likelyfcdeb7f2010-01-29 05:04:33 -07001876
Shawn Guo611cad72011-08-15 15:28:14 +08001877static void of_alias_add(struct alias_prop *ap, struct device_node *np,
1878 int id, const char *stem, int stem_len)
1879{
1880 ap->np = np;
1881 ap->id = id;
1882 strncpy(ap->stem, stem, stem_len);
1883 ap->stem[stem_len] = 0;
1884 list_add_tail(&ap->link, &aliases_lookup);
1885 pr_debug("adding DT alias:%s: stem=%s id=%i node=%s\n",
Grant Likely74a7f082012-06-15 11:50:25 -06001886 ap->alias, ap->stem, ap->id, of_node_full_name(np));
Shawn Guo611cad72011-08-15 15:28:14 +08001887}
1888
1889/**
Geert Uytterhoeven1821dda2014-10-22 11:44:53 +02001890 * of_alias_scan - Scan all properties of the 'aliases' node
Shawn Guo611cad72011-08-15 15:28:14 +08001891 *
Geert Uytterhoeven1821dda2014-10-22 11:44:53 +02001892 * The function scans all the properties of the 'aliases' node and populates
1893 * the global lookup table with the properties. It returns the
1894 * number of alias properties found, or an error code in case of failure.
Shawn Guo611cad72011-08-15 15:28:14 +08001895 *
1896 * @dt_alloc: An allocator that provides a virtual address to memory
Geert Uytterhoeven1821dda2014-10-22 11:44:53 +02001897 * for storing the resulting tree
Shawn Guo611cad72011-08-15 15:28:14 +08001898 */
1899void of_alias_scan(void * (*dt_alloc)(u64 size, u64 align))
1900{
1901 struct property *pp;
1902
Laurentiu Tudor7dbe5842014-08-27 17:09:39 +03001903 of_aliases = of_find_node_by_path("/aliases");
Shawn Guo611cad72011-08-15 15:28:14 +08001904 of_chosen = of_find_node_by_path("/chosen");
1905 if (of_chosen == NULL)
1906 of_chosen = of_find_node_by_path("/chosen@0");
Sascha Hauer5c19e952013-08-05 14:40:44 +02001907
1908 if (of_chosen) {
Grant Likelya752ee52014-03-28 08:12:18 -07001909 /* linux,stdout-path and /aliases/stdout are for legacy compatibility */
Grant Likely676e1b22014-03-27 17:11:23 -07001910 const char *name = of_get_property(of_chosen, "stdout-path", NULL);
1911 if (!name)
1912 name = of_get_property(of_chosen, "linux,stdout-path", NULL);
Grant Likelya752ee52014-03-28 08:12:18 -07001913 if (IS_ENABLED(CONFIG_PPC) && !name)
1914 name = of_get_property(of_aliases, "stdout", NULL);
Peter Hurleyf64255b2015-03-17 16:46:33 -04001915 if (name)
Leif Lindholm7914a7c2014-11-27 17:56:07 +00001916 of_stdout = of_find_node_opts_by_path(name, &of_stdout_options);
Sascha Hauer5c19e952013-08-05 14:40:44 +02001917 }
1918
Shawn Guo611cad72011-08-15 15:28:14 +08001919 if (!of_aliases)
1920 return;
1921
Dong Aisheng8af0da92011-12-22 20:19:24 +08001922 for_each_property_of_node(of_aliases, pp) {
Shawn Guo611cad72011-08-15 15:28:14 +08001923 const char *start = pp->name;
1924 const char *end = start + strlen(start);
1925 struct device_node *np;
1926 struct alias_prop *ap;
1927 int id, len;
1928
1929 /* Skip those we do not want to proceed */
1930 if (!strcmp(pp->name, "name") ||
1931 !strcmp(pp->name, "phandle") ||
1932 !strcmp(pp->name, "linux,phandle"))
1933 continue;
1934
1935 np = of_find_node_by_path(pp->value);
1936 if (!np)
1937 continue;
1938
1939 /* walk the alias backwards to extract the id and work out
1940 * the 'stem' string */
1941 while (isdigit(*(end-1)) && end > start)
1942 end--;
1943 len = end - start;
1944
1945 if (kstrtoint(end, 10, &id) < 0)
1946 continue;
1947
1948 /* Allocate an alias_prop with enough space for the stem */
1949 ap = dt_alloc(sizeof(*ap) + len + 1, 4);
1950 if (!ap)
1951 continue;
Grant Likely0640332e2013-08-28 21:24:17 +01001952 memset(ap, 0, sizeof(*ap) + len + 1);
Shawn Guo611cad72011-08-15 15:28:14 +08001953 ap->alias = start;
1954 of_alias_add(ap, np, id, start, len);
1955 }
1956}
1957
1958/**
1959 * of_alias_get_id - Get alias id for the given device_node
1960 * @np: Pointer to the given device_node
1961 * @stem: Alias stem of the given device_node
1962 *
Geert Uytterhoeven5a53a072014-03-11 11:23:38 +01001963 * The function travels the lookup table to get the alias id for the given
1964 * device_node and alias stem. It returns the alias id if found.
Shawn Guo611cad72011-08-15 15:28:14 +08001965 */
1966int of_alias_get_id(struct device_node *np, const char *stem)
1967{
1968 struct alias_prop *app;
1969 int id = -ENODEV;
1970
Pantelis Antoniouc05aba22014-07-04 19:58:03 +03001971 mutex_lock(&of_mutex);
Shawn Guo611cad72011-08-15 15:28:14 +08001972 list_for_each_entry(app, &aliases_lookup, link) {
1973 if (strcmp(app->stem, stem) != 0)
1974 continue;
1975
1976 if (np == app->np) {
1977 id = app->id;
1978 break;
1979 }
1980 }
Pantelis Antoniouc05aba22014-07-04 19:58:03 +03001981 mutex_unlock(&of_mutex);
Shawn Guo611cad72011-08-15 15:28:14 +08001982
1983 return id;
1984}
1985EXPORT_SYMBOL_GPL(of_alias_get_id);
Stephen Warrenc541adc2012-04-04 09:27:46 -06001986
Wolfram Sang351d2242015-03-12 17:17:58 +01001987/**
1988 * of_alias_get_highest_id - Get highest alias id for the given stem
1989 * @stem: Alias stem to be examined
1990 *
1991 * The function travels the lookup table to get the highest alias id for the
1992 * given alias stem. It returns the alias id if found.
1993 */
1994int of_alias_get_highest_id(const char *stem)
1995{
1996 struct alias_prop *app;
1997 int id = -ENODEV;
1998
1999 mutex_lock(&of_mutex);
2000 list_for_each_entry(app, &aliases_lookup, link) {
2001 if (strcmp(app->stem, stem) != 0)
2002 continue;
2003
2004 if (app->id > id)
2005 id = app->id;
2006 }
2007 mutex_unlock(&of_mutex);
2008
2009 return id;
2010}
2011EXPORT_SYMBOL_GPL(of_alias_get_highest_id);
2012
Stephen Warrenc541adc2012-04-04 09:27:46 -06002013const __be32 *of_prop_next_u32(struct property *prop, const __be32 *cur,
2014 u32 *pu)
2015{
2016 const void *curv = cur;
2017
2018 if (!prop)
2019 return NULL;
2020
2021 if (!cur) {
2022 curv = prop->value;
2023 goto out_val;
2024 }
2025
2026 curv += sizeof(*cur);
2027 if (curv >= prop->value + prop->length)
2028 return NULL;
2029
2030out_val:
2031 *pu = be32_to_cpup(curv);
2032 return curv;
2033}
2034EXPORT_SYMBOL_GPL(of_prop_next_u32);
2035
2036const char *of_prop_next_string(struct property *prop, const char *cur)
2037{
2038 const void *curv = cur;
2039
2040 if (!prop)
2041 return NULL;
2042
2043 if (!cur)
2044 return prop->value;
2045
2046 curv += strlen(cur) + 1;
2047 if (curv >= prop->value + prop->length)
2048 return NULL;
2049
2050 return curv;
2051}
2052EXPORT_SYMBOL_GPL(of_prop_next_string);
Sascha Hauer5c19e952013-08-05 14:40:44 +02002053
2054/**
Grant Likely3482f2c2014-03-27 17:18:55 -07002055 * of_console_check() - Test and setup console for DT setup
2056 * @dn - Pointer to device node
2057 * @name - Name to use for preferred console without index. ex. "ttyS"
2058 * @index - Index to use for preferred console.
Sascha Hauer5c19e952013-08-05 14:40:44 +02002059 *
Grant Likely3482f2c2014-03-27 17:18:55 -07002060 * Check if the given device node matches the stdout-path property in the
2061 * /chosen node. If it does then register it as the preferred console and return
2062 * TRUE. Otherwise return FALSE.
Sascha Hauer5c19e952013-08-05 14:40:44 +02002063 */
Grant Likely3482f2c2014-03-27 17:18:55 -07002064bool of_console_check(struct device_node *dn, char *name, int index)
Sascha Hauer5c19e952013-08-05 14:40:44 +02002065{
Grant Likely3482f2c2014-03-27 17:18:55 -07002066 if (!dn || dn != of_stdout || console_set_on_cmdline)
Sascha Hauer5c19e952013-08-05 14:40:44 +02002067 return false;
Leif Lindholm7914a7c2014-11-27 17:56:07 +00002068 return !add_preferred_console(name, index,
2069 kstrdup(of_stdout_options, GFP_KERNEL));
Sascha Hauer5c19e952013-08-05 14:40:44 +02002070}
Grant Likely3482f2c2014-03-27 17:18:55 -07002071EXPORT_SYMBOL_GPL(of_console_check);
Sudeep KarkadaNageshaa3e31b42013-09-18 11:53:05 +01002072
2073/**
2074 * of_find_next_cache_node - Find a node's subsidiary cache
2075 * @np: node of type "cpu" or "cache"
2076 *
2077 * Returns a node pointer with refcount incremented, use
2078 * of_node_put() on it when done. Caller should hold a reference
2079 * to np.
2080 */
2081struct device_node *of_find_next_cache_node(const struct device_node *np)
2082{
2083 struct device_node *child;
2084 const phandle *handle;
2085
2086 handle = of_get_property(np, "l2-cache", NULL);
2087 if (!handle)
2088 handle = of_get_property(np, "next-level-cache", NULL);
2089
2090 if (handle)
2091 return of_find_node_by_phandle(be32_to_cpup(handle));
2092
2093 /* OF on pmac has nodes instead of properties named "l2-cache"
2094 * beneath CPU nodes.
2095 */
2096 if (!strcmp(np->type, "cpu"))
2097 for_each_child_of_node(np, child)
2098 if (!strcmp(child->type, "cache"))
2099 return child;
2100
2101 return NULL;
2102}
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002103
2104/**
Philipp Zabelf2a575f2014-02-14 11:53:56 +01002105 * of_graph_parse_endpoint() - parse common endpoint node properties
2106 * @node: pointer to endpoint device_node
2107 * @endpoint: pointer to the OF endpoint data structure
2108 *
2109 * The caller should hold a reference to @node.
2110 */
2111int of_graph_parse_endpoint(const struct device_node *node,
2112 struct of_endpoint *endpoint)
2113{
2114 struct device_node *port_node = of_get_parent(node);
2115
Philipp Zabeld4847002014-03-04 12:31:24 +01002116 WARN_ONCE(!port_node, "%s(): endpoint %s has no parent node\n",
2117 __func__, node->full_name);
2118
Philipp Zabelf2a575f2014-02-14 11:53:56 +01002119 memset(endpoint, 0, sizeof(*endpoint));
2120
2121 endpoint->local_node = node;
2122 /*
2123 * It doesn't matter whether the two calls below succeed.
2124 * If they don't then the default value 0 is used.
2125 */
2126 of_property_read_u32(port_node, "reg", &endpoint->port);
2127 of_property_read_u32(node, "reg", &endpoint->id);
2128
2129 of_node_put(port_node);
2130
2131 return 0;
2132}
2133EXPORT_SYMBOL(of_graph_parse_endpoint);
2134
2135/**
Philipp Zabelbfe446e2014-03-11 11:21:11 +01002136 * of_graph_get_port_by_id() - get the port matching a given id
2137 * @parent: pointer to the parent device node
2138 * @id: id of the port
2139 *
2140 * Return: A 'port' node pointer with refcount incremented. The caller
2141 * has to use of_node_put() on it when done.
2142 */
2143struct device_node *of_graph_get_port_by_id(struct device_node *parent, u32 id)
2144{
2145 struct device_node *node, *port;
2146
2147 node = of_get_child_by_name(parent, "ports");
2148 if (node)
2149 parent = node;
2150
2151 for_each_child_of_node(parent, port) {
2152 u32 port_id = 0;
2153
2154 if (of_node_cmp(port->name, "port") != 0)
2155 continue;
2156 of_property_read_u32(port, "reg", &port_id);
2157 if (id == port_id)
2158 break;
2159 }
2160
2161 of_node_put(node);
2162
2163 return port;
2164}
2165EXPORT_SYMBOL(of_graph_get_port_by_id);
2166
2167/**
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002168 * of_graph_get_next_endpoint() - get next endpoint node
2169 * @parent: pointer to the parent device node
2170 * @prev: previous endpoint node, or NULL to get first
2171 *
2172 * Return: An 'endpoint' node pointer with refcount incremented. Refcount
Philipp Zabelf033c0b2014-12-01 13:32:32 +01002173 * of the passed @prev node is decremented.
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002174 */
2175struct device_node *of_graph_get_next_endpoint(const struct device_node *parent,
2176 struct device_node *prev)
2177{
2178 struct device_node *endpoint;
Linus Torvalds3c83e612014-04-04 09:50:07 -07002179 struct device_node *port;
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002180
2181 if (!parent)
2182 return NULL;
2183
Linus Torvalds3c83e612014-04-04 09:50:07 -07002184 /*
2185 * Start by locating the port node. If no previous endpoint is specified
2186 * search for the first port node, otherwise get the previous endpoint
2187 * parent port node.
2188 */
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002189 if (!prev) {
2190 struct device_node *node;
Linus Torvalds3c83e612014-04-04 09:50:07 -07002191
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002192 node = of_get_child_by_name(parent, "ports");
2193 if (node)
2194 parent = node;
2195
2196 port = of_get_child_by_name(parent, "port");
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002197 of_node_put(node);
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002198
Linus Torvalds3c83e612014-04-04 09:50:07 -07002199 if (!port) {
2200 pr_err("%s(): no port node found in %s\n",
2201 __func__, parent->full_name);
Philipp Zabel4329b932014-02-26 20:43:42 +01002202 return NULL;
Linus Torvalds3c83e612014-04-04 09:50:07 -07002203 }
2204 } else {
2205 port = of_get_parent(prev);
2206 if (WARN_ONCE(!port, "%s(): endpoint %s has no parent node\n",
2207 __func__, prev->full_name))
2208 return NULL;
Linus Torvalds3c83e612014-04-04 09:50:07 -07002209 }
Philipp Zabel4329b932014-02-26 20:43:42 +01002210
Linus Torvalds3c83e612014-04-04 09:50:07 -07002211 while (1) {
2212 /*
2213 * Now that we have a port node, get the next endpoint by
2214 * getting the next child. If the previous endpoint is NULL this
2215 * will return the first child.
2216 */
2217 endpoint = of_get_next_child(port, prev);
2218 if (endpoint) {
2219 of_node_put(port);
2220 return endpoint;
2221 }
2222
2223 /* No more endpoints under this port, try the next one. */
2224 prev = NULL;
2225
2226 do {
2227 port = of_get_next_child(parent, port);
2228 if (!port)
2229 return NULL;
2230 } while (of_node_cmp(port->name, "port"));
2231 }
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002232}
2233EXPORT_SYMBOL(of_graph_get_next_endpoint);
2234
2235/**
Hyungwon Hwang8ccd0d02015-06-12 21:59:01 +09002236 * of_graph_get_endpoint_by_regs() - get endpoint node of specific identifiers
2237 * @parent: pointer to the parent device node
2238 * @port_reg: identifier (value of reg property) of the parent port node
2239 * @reg: identifier (value of reg property) of the endpoint node
2240 *
2241 * Return: An 'endpoint' node pointer which is identified by reg and at the same
2242 * is the child of a port node identified by port_reg. reg and port_reg are
2243 * ignored when they are -1.
2244 */
2245struct device_node *of_graph_get_endpoint_by_regs(
2246 const struct device_node *parent, int port_reg, int reg)
2247{
2248 struct of_endpoint endpoint;
2249 struct device_node *node, *prev_node = NULL;
2250
2251 while (1) {
2252 node = of_graph_get_next_endpoint(parent, prev_node);
2253 of_node_put(prev_node);
2254 if (!node)
2255 break;
2256
2257 of_graph_parse_endpoint(node, &endpoint);
2258 if (((port_reg == -1) || (endpoint.port == port_reg)) &&
2259 ((reg == -1) || (endpoint.id == reg)))
2260 return node;
2261
2262 prev_node = node;
2263 }
2264
2265 return NULL;
2266}
2267
2268/**
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002269 * of_graph_get_remote_port_parent() - get remote port's parent node
2270 * @node: pointer to a local endpoint device_node
2271 *
2272 * Return: Remote device node associated with remote endpoint node linked
2273 * to @node. Use of_node_put() on it when done.
2274 */
2275struct device_node *of_graph_get_remote_port_parent(
2276 const struct device_node *node)
2277{
2278 struct device_node *np;
2279 unsigned int depth;
2280
2281 /* Get remote endpoint node. */
2282 np = of_parse_phandle(node, "remote-endpoint", 0);
2283
2284 /* Walk 3 levels up only if there is 'ports' node. */
2285 for (depth = 3; depth && np; depth--) {
2286 np = of_get_next_parent(np);
2287 if (depth == 2 && of_node_cmp(np->name, "ports"))
2288 break;
2289 }
2290 return np;
2291}
2292EXPORT_SYMBOL(of_graph_get_remote_port_parent);
2293
2294/**
2295 * of_graph_get_remote_port() - get remote port node
2296 * @node: pointer to a local endpoint device_node
2297 *
2298 * Return: Remote port node associated with remote endpoint node linked
2299 * to @node. Use of_node_put() on it when done.
2300 */
2301struct device_node *of_graph_get_remote_port(const struct device_node *node)
2302{
2303 struct device_node *np;
2304
2305 /* Get remote endpoint node. */
2306 np = of_parse_phandle(node, "remote-endpoint", 0);
2307 if (!np)
2308 return NULL;
2309 return of_get_next_parent(np);
2310}
2311EXPORT_SYMBOL(of_graph_get_remote_port);