of/irq: Mark initialised interrupt controllers as populated
[linux-2.6-block.git] / drivers / of / base.c
CommitLineData
97e873e5
SR
1/*
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 *
e91edcf5
GL
12 * Reconsolidated from arch/x/kernel/prom.c by Stephen Rothwell and
13 * Grant Likely.
97e873e5
SR
14 *
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 */
3482f2c5 20#include <linux/console.h>
611cad72 21#include <linux/ctype.h>
183912d3 22#include <linux/cpu.h>
97e873e5
SR
23#include <linux/module.h>
24#include <linux/of.h>
fd9fdb78 25#include <linux/of_graph.h>
581b605a 26#include <linux/spinlock.h>
5a0e3ad6 27#include <linux/slab.h>
75b57ecf 28#include <linux/string.h>
a9f2f63a 29#include <linux/proc_fs.h>
581b605a 30
ced4eec9 31#include "of_private.h"
611cad72 32
ced4eec9 33LIST_HEAD(aliases_lookup);
611cad72 34
5063e25a
GL
35struct device_node *of_root;
36EXPORT_SYMBOL(of_root);
fc0bdae4 37struct device_node *of_chosen;
611cad72 38struct device_node *of_aliases;
a752ee56 39struct device_node *of_stdout;
7914a7c5 40static const char *of_stdout_options;
611cad72 41
8a2b22a2 42struct kset *of_kset;
75b57ecf
GL
43
44/*
8a2b22a2
GL
45 * 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.
75b57ecf 49 */
c05aba2b 50DEFINE_MUTEX(of_mutex);
1ef4d424 51
5063e25a 52/* use when traversing tree through the child, sibling,
581b605a
SR
53 * or parent members of struct device_node.
54 */
d6d3c4e6 55DEFINE_RAW_SPINLOCK(devtree_lock);
97e873e5
SR
56
57int of_n_addr_cells(struct device_node *np)
58{
a9fadeef 59 const __be32 *ip;
97e873e5
SR
60
61 do {
62 if (np->parent)
63 np = np->parent;
64 ip = of_get_property(np, "#address-cells", NULL);
65 if (ip)
33714881 66 return be32_to_cpup(ip);
97e873e5
SR
67 } 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{
a9fadeef 75 const __be32 *ip;
97e873e5
SR
76
77 do {
78 if (np->parent)
79 np = np->parent;
80 ip = of_get_property(np, "#size-cells", NULL);
81 if (ip)
33714881 82 return be32_to_cpup(ip);
97e873e5
SR
83 } 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
0c3f061c
RH
89#ifdef CONFIG_NUMA
90int __weak of_node_to_nid(struct device_node *np)
91{
c8fff7bc 92 return NUMA_NO_NODE;
0c3f061c
RH
93}
94#endif
95
6afc0dc3 96#ifndef CONFIG_OF_DYNAMIC
75b57ecf
GL
97static void of_node_release(struct kobject *kobj)
98{
99 /* Without CONFIG_OF_DYNAMIC, no nodes gets freed */
100}
0f22dd39 101#endif /* CONFIG_OF_DYNAMIC */
923f7e30 102
75b57ecf
GL
103struct 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
d9fc8807 115/* always return newly allocated name, caller must free after use */
75b57ecf
GL
116static const char *safe_name(struct kobject *kobj, const char *orig_name)
117{
118 const char *name = orig_name;
119 struct kernfs_node *kn;
120 int i = 0;
121
122 /* don't be a hero. After 16 tries give up */
123 while (i < 16 && (kn = sysfs_get_dirent(kobj->sd, name))) {
124 sysfs_put(kn);
125 if (name != orig_name)
126 kfree(name);
127 name = kasprintf(GFP_KERNEL, "%s#%i", orig_name, ++i);
128 }
129
d9fc8807
FR
130 if (name == orig_name) {
131 name = kstrdup(orig_name, GFP_KERNEL);
132 } else {
75b57ecf
GL
133 pr_warn("device-tree: Duplicate name in %s, renamed to \"%s\"\n",
134 kobject_name(kobj), name);
d9fc8807 135 }
75b57ecf
GL
136 return name;
137}
138
8a2b22a2 139int __of_add_property_sysfs(struct device_node *np, struct property *pp)
75b57ecf
GL
140{
141 int rc;
142
143 /* Important: Don't leak passwords */
144 bool secure = strncmp(pp->name, "security-", 9) == 0;
145
ef69d740
GM
146 if (!IS_ENABLED(CONFIG_SYSFS))
147 return 0;
148
8a2b22a2
GL
149 if (!of_kset || !of_node_is_attached(np))
150 return 0;
151
75b57ecf
GL
152 sysfs_bin_attr_init(&pp->attr);
153 pp->attr.attr.name = safe_name(&np->kobj, pp->name);
154 pp->attr.attr.mode = secure ? S_IRUSR : S_IRUGO;
155 pp->attr.size = secure ? 0 : pp->length;
156 pp->attr.read = of_node_property_read;
157
158 rc = sysfs_create_bin_file(&np->kobj, &pp->attr);
159 WARN(rc, "error adding attribute %s to node %s\n", pp->name, np->full_name);
160 return rc;
161}
162
8a2b22a2 163int __of_attach_node_sysfs(struct device_node *np)
75b57ecf
GL
164{
165 const char *name;
d9fc8807 166 struct kobject *parent;
75b57ecf
GL
167 struct property *pp;
168 int rc;
169
ef69d740
GM
170 if (!IS_ENABLED(CONFIG_SYSFS))
171 return 0;
172
8a2b22a2
GL
173 if (!of_kset)
174 return 0;
175
75b57ecf
GL
176 np->kobj.kset = of_kset;
177 if (!np->parent) {
178 /* Nodes without parents are new top level trees */
d9fc8807
FR
179 name = safe_name(&of_kset->kobj, "base");
180 parent = NULL;
75b57ecf
GL
181 } else {
182 name = safe_name(&np->parent->kobj, kbasename(np->full_name));
d9fc8807 183 parent = &np->parent->kobj;
75b57ecf 184 }
d9fc8807
FR
185 if (!name)
186 return -ENOMEM;
187 rc = kobject_add(&np->kobj, parent, "%s", name);
188 kfree(name);
75b57ecf
GL
189 if (rc)
190 return rc;
191
192 for_each_property_of_node(np, pp)
193 __of_add_property_sysfs(np, pp);
194
195 return 0;
196}
197
194ec936 198void __init of_core_init(void)
75b57ecf
GL
199{
200 struct device_node *np;
201
202 /* Create the kset, and register existing nodes */
c05aba2b 203 mutex_lock(&of_mutex);
75b57ecf
GL
204 of_kset = kset_create_and_add("devicetree", NULL, firmware_kobj);
205 if (!of_kset) {
c05aba2b 206 mutex_unlock(&of_mutex);
194ec936
SH
207 pr_err("devicetree: failed to register existing nodes\n");
208 return;
75b57ecf
GL
209 }
210 for_each_of_allnodes(np)
8a2b22a2 211 __of_attach_node_sysfs(np);
c05aba2b 212 mutex_unlock(&of_mutex);
75b57ecf 213
8357041a 214 /* Symlink in /proc as required by userspace ABI */
5063e25a 215 if (of_root)
75b57ecf 216 proc_symlink("device-tree", NULL, "/sys/firmware/devicetree/base");
75b57ecf 217}
75b57ecf 218
28d0e36b
TG
219static struct property *__of_find_property(const struct device_node *np,
220 const char *name, int *lenp)
581b605a
SR
221{
222 struct property *pp;
223
64e4566f
TT
224 if (!np)
225 return NULL;
226
a3a7cab1 227 for (pp = np->properties; pp; pp = pp->next) {
581b605a 228 if (of_prop_cmp(pp->name, name) == 0) {
a3a7cab1 229 if (lenp)
581b605a
SR
230 *lenp = pp->length;
231 break;
232 }
233 }
28d0e36b
TG
234
235 return pp;
236}
237
238struct property *of_find_property(const struct device_node *np,
239 const char *name,
240 int *lenp)
241{
242 struct property *pp;
d6d3c4e6 243 unsigned long flags;
28d0e36b 244
d6d3c4e6 245 raw_spin_lock_irqsave(&devtree_lock, flags);
28d0e36b 246 pp = __of_find_property(np, name, lenp);
d6d3c4e6 247 raw_spin_unlock_irqrestore(&devtree_lock, flags);
581b605a
SR
248
249 return pp;
250}
251EXPORT_SYMBOL(of_find_property);
252
5063e25a
GL
253struct device_node *__of_find_all_nodes(struct device_node *prev)
254{
255 struct device_node *np;
256 if (!prev) {
257 np = of_root;
258 } else if (prev->child) {
259 np = prev->child;
260 } else {
261 /* Walk back up looking for a sibling, or the end of the structure */
262 np = prev;
263 while (np->parent && !np->sibling)
264 np = np->parent;
265 np = np->sibling; /* Might be null at the end of the tree */
266 }
267 return np;
268}
269
e91edcf5
GL
270/**
271 * of_find_all_nodes - Get next node in global list
272 * @prev: Previous node or NULL to start iteration
273 * of_node_put() will be called on it
274 *
275 * Returns a node pointer with refcount incremented, use
276 * of_node_put() on it when done.
277 */
278struct device_node *of_find_all_nodes(struct device_node *prev)
279{
280 struct device_node *np;
d25d8694 281 unsigned long flags;
e91edcf5 282
d25d8694 283 raw_spin_lock_irqsave(&devtree_lock, flags);
5063e25a
GL
284 np = __of_find_all_nodes(prev);
285 of_node_get(np);
e91edcf5 286 of_node_put(prev);
d25d8694 287 raw_spin_unlock_irqrestore(&devtree_lock, flags);
e91edcf5
GL
288 return np;
289}
290EXPORT_SYMBOL(of_find_all_nodes);
291
28d0e36b
TG
292/*
293 * Find a property with a given name for a given node
294 * and return the value.
295 */
a25095d4
GL
296const void *__of_get_property(const struct device_node *np,
297 const char *name, int *lenp)
28d0e36b
TG
298{
299 struct property *pp = __of_find_property(np, name, lenp);
300
301 return pp ? pp->value : NULL;
302}
303
97e873e5
SR
304/*
305 * Find a property with a given name for a given node
306 * and return the value.
307 */
308const void *of_get_property(const struct device_node *np, const char *name,
28d0e36b 309 int *lenp)
97e873e5
SR
310{
311 struct property *pp = of_find_property(np, name, lenp);
312
313 return pp ? pp->value : NULL;
314}
315EXPORT_SYMBOL(of_get_property);
0081cbc3 316
183912d3
SK
317/*
318 * arch_match_cpu_phys_id - Match the given logical CPU and physical id
319 *
320 * @cpu: logical cpu index of a core/thread
321 * @phys_id: physical identifier of a core/thread
322 *
323 * CPU logical to physical index mapping is architecture specific.
324 * However this __weak function provides a default match of physical
325 * id to logical cpu index. phys_id provided here is usually values read
326 * from the device tree which must match the hardware internal registers.
327 *
328 * Returns true if the physical identifier and the logical cpu index
329 * correspond to the same core/thread, false otherwise.
330 */
331bool __weak arch_match_cpu_phys_id(int cpu, u64 phys_id)
332{
333 return (u32)phys_id == cpu;
334}
335
336/**
337 * Checks if the given "prop_name" property holds the physical id of the
338 * core/thread corresponding to the logical cpu 'cpu'. If 'thread' is not
339 * NULL, local thread number within the core is returned in it.
340 */
341static bool __of_find_n_match_cpu_property(struct device_node *cpun,
342 const char *prop_name, int cpu, unsigned int *thread)
343{
344 const __be32 *cell;
345 int ac, prop_len, tid;
346 u64 hwid;
347
348 ac = of_n_addr_cells(cpun);
349 cell = of_get_property(cpun, prop_name, &prop_len);
f3cea45a 350 if (!cell || !ac)
183912d3 351 return false;
f3cea45a 352 prop_len /= sizeof(*cell) * ac;
183912d3
SK
353 for (tid = 0; tid < prop_len; tid++) {
354 hwid = of_read_number(cell, ac);
355 if (arch_match_cpu_phys_id(cpu, hwid)) {
356 if (thread)
357 *thread = tid;
358 return true;
359 }
360 cell += ac;
361 }
362 return false;
363}
364
d1cb9d1a
DM
365/*
366 * arch_find_n_match_cpu_physical_id - See if the given device node is
367 * for the cpu corresponding to logical cpu 'cpu'. Return true if so,
368 * else false. If 'thread' is non-NULL, the local thread number within the
369 * core is returned in it.
370 */
371bool __weak arch_find_n_match_cpu_physical_id(struct device_node *cpun,
372 int cpu, unsigned int *thread)
373{
374 /* Check for non-standard "ibm,ppc-interrupt-server#s" property
375 * for thread ids on PowerPC. If it doesn't exist fallback to
376 * standard "reg" property.
377 */
378 if (IS_ENABLED(CONFIG_PPC) &&
379 __of_find_n_match_cpu_property(cpun,
380 "ibm,ppc-interrupt-server#s",
381 cpu, thread))
382 return true;
383
510bd068 384 return __of_find_n_match_cpu_property(cpun, "reg", cpu, thread);
d1cb9d1a
DM
385}
386
183912d3
SK
387/**
388 * of_get_cpu_node - Get device node associated with the given logical CPU
389 *
390 * @cpu: CPU number(logical index) for which device node is required
391 * @thread: if not NULL, local thread number within the physical core is
392 * returned
393 *
394 * The main purpose of this function is to retrieve the device node for the
395 * given logical CPU index. It should be used to initialize the of_node in
396 * cpu device. Once of_node in cpu device is populated, all the further
397 * references can use that instead.
398 *
399 * CPU logical to physical index mapping is architecture specific and is built
400 * before booting secondary cores. This function uses arch_match_cpu_phys_id
401 * which can be overridden by architecture specific implementation.
402 *
1c986e36
MY
403 * Returns a node pointer for the logical cpu with refcount incremented, use
404 * of_node_put() on it when done. Returns NULL if not found.
183912d3
SK
405 */
406struct device_node *of_get_cpu_node(int cpu, unsigned int *thread)
407{
d1cb9d1a 408 struct device_node *cpun;
183912d3 409
d1cb9d1a
DM
410 for_each_node_by_type(cpun, "cpu") {
411 if (arch_find_n_match_cpu_physical_id(cpun, cpu, thread))
183912d3
SK
412 return cpun;
413 }
414 return NULL;
415}
416EXPORT_SYMBOL(of_get_cpu_node);
417
215a14cf
KH
418/**
419 * __of_device_is_compatible() - Check if the node matches given constraints
420 * @device: pointer to node
421 * @compat: required compatible string, NULL or "" for any match
422 * @type: required device_type value, NULL or "" for any match
423 * @name: required node name, NULL or "" for any match
424 *
425 * Checks if the given @compat, @type and @name strings match the
426 * properties of the given @device. A constraints can be skipped by
427 * passing NULL or an empty string as the constraint.
428 *
429 * Returns 0 for no match, and a positive integer on match. The return
430 * value is a relative score with larger values indicating better
431 * matches. The score is weighted for the most specific compatible value
432 * to get the highest score. Matching type is next, followed by matching
433 * name. Practically speaking, this results in the following priority
434 * order for matches:
435 *
436 * 1. specific compatible && type && name
437 * 2. specific compatible && type
438 * 3. specific compatible && name
439 * 4. specific compatible
440 * 5. general compatible && type && name
441 * 6. general compatible && type
442 * 7. general compatible && name
443 * 8. general compatible
444 * 9. type && name
445 * 10. type
446 * 11. name
0081cbc3 447 */
28d0e36b 448static int __of_device_is_compatible(const struct device_node *device,
215a14cf
KH
449 const char *compat, const char *type, const char *name)
450{
451 struct property *prop;
452 const char *cp;
453 int index = 0, score = 0;
454
455 /* Compatible match has highest priority */
456 if (compat && compat[0]) {
457 prop = __of_find_property(device, "compatible", NULL);
458 for (cp = of_prop_next_string(prop, NULL); cp;
459 cp = of_prop_next_string(prop, cp), index++) {
460 if (of_compat_cmp(cp, compat, strlen(compat)) == 0) {
461 score = INT_MAX/2 - (index << 2);
462 break;
463 }
464 }
465 if (!score)
466 return 0;
467 }
0081cbc3 468
215a14cf
KH
469 /* Matching type is better than matching name */
470 if (type && type[0]) {
471 if (!device->type || of_node_cmp(type, device->type))
472 return 0;
473 score += 2;
0081cbc3
SR
474 }
475
215a14cf
KH
476 /* Matching name is a bit better than not */
477 if (name && name[0]) {
478 if (!device->name || of_node_cmp(name, device->name))
479 return 0;
480 score++;
481 }
482
483 return score;
0081cbc3 484}
28d0e36b
TG
485
486/** Checks if the given "compat" string matches one of the strings in
487 * the device's "compatible" property
488 */
489int of_device_is_compatible(const struct device_node *device,
490 const char *compat)
491{
d6d3c4e6 492 unsigned long flags;
28d0e36b
TG
493 int res;
494
d6d3c4e6 495 raw_spin_lock_irqsave(&devtree_lock, flags);
215a14cf 496 res = __of_device_is_compatible(device, compat, NULL, NULL);
d6d3c4e6 497 raw_spin_unlock_irqrestore(&devtree_lock, flags);
28d0e36b
TG
498 return res;
499}
0081cbc3 500EXPORT_SYMBOL(of_device_is_compatible);
e679c5f4 501
1f43cfb9 502/**
71a157e8 503 * of_machine_is_compatible - Test root of device tree for a given compatible value
1f43cfb9
GL
504 * @compat: compatible string to look for in root node's compatible property.
505 *
25c7a1de 506 * Returns a positive integer if the root node has the given value in its
1f43cfb9
GL
507 * compatible property.
508 */
71a157e8 509int of_machine_is_compatible(const char *compat)
1f43cfb9
GL
510{
511 struct device_node *root;
512 int rc = 0;
513
514 root = of_find_node_by_path("/");
515 if (root) {
516 rc = of_device_is_compatible(root, compat);
517 of_node_put(root);
518 }
519 return rc;
520}
71a157e8 521EXPORT_SYMBOL(of_machine_is_compatible);
1f43cfb9 522
834d97d4 523/**
c31a0c05 524 * __of_device_is_available - check if a device is available for use
834d97d4 525 *
c31a0c05 526 * @device: Node to check for availability, with locks already held
834d97d4 527 *
53a4ab96
KC
528 * Returns true if the status property is absent or set to "okay" or "ok",
529 * false otherwise
834d97d4 530 */
53a4ab96 531static bool __of_device_is_available(const struct device_node *device)
834d97d4
JB
532{
533 const char *status;
534 int statlen;
535
42ccd781 536 if (!device)
53a4ab96 537 return false;
42ccd781 538
c31a0c05 539 status = __of_get_property(device, "status", &statlen);
834d97d4 540 if (status == NULL)
53a4ab96 541 return true;
834d97d4
JB
542
543 if (statlen > 0) {
544 if (!strcmp(status, "okay") || !strcmp(status, "ok"))
53a4ab96 545 return true;
834d97d4
JB
546 }
547
53a4ab96 548 return false;
834d97d4 549}
c31a0c05
SW
550
551/**
552 * of_device_is_available - check if a device is available for use
553 *
554 * @device: Node to check for availability
555 *
53a4ab96
KC
556 * Returns true if the status property is absent or set to "okay" or "ok",
557 * false otherwise
c31a0c05 558 */
53a4ab96 559bool of_device_is_available(const struct device_node *device)
c31a0c05
SW
560{
561 unsigned long flags;
53a4ab96 562 bool res;
c31a0c05
SW
563
564 raw_spin_lock_irqsave(&devtree_lock, flags);
565 res = __of_device_is_available(device);
566 raw_spin_unlock_irqrestore(&devtree_lock, flags);
567 return res;
568
569}
834d97d4
JB
570EXPORT_SYMBOL(of_device_is_available);
571
37786c7f
KC
572/**
573 * of_device_is_big_endian - check if a device has BE registers
574 *
575 * @device: Node to check for endianness
576 *
577 * Returns true if the device has a "big-endian" property, or if the kernel
578 * was compiled for BE *and* the device has a "native-endian" property.
579 * Returns false otherwise.
580 *
581 * Callers would nominally use ioread32be/iowrite32be if
582 * of_device_is_big_endian() == true, or readl/writel otherwise.
583 */
584bool of_device_is_big_endian(const struct device_node *device)
585{
586 if (of_property_read_bool(device, "big-endian"))
587 return true;
588 if (IS_ENABLED(CONFIG_CPU_BIG_ENDIAN) &&
589 of_property_read_bool(device, "native-endian"))
590 return true;
591 return false;
592}
593EXPORT_SYMBOL(of_device_is_big_endian);
594
e679c5f4
SR
595/**
596 * of_get_parent - Get a node's parent if any
597 * @node: Node to get parent
598 *
599 * Returns a node pointer with refcount incremented, use
600 * of_node_put() on it when done.
601 */
602struct device_node *of_get_parent(const struct device_node *node)
603{
604 struct device_node *np;
d6d3c4e6 605 unsigned long flags;
e679c5f4
SR
606
607 if (!node)
608 return NULL;
609
d6d3c4e6 610 raw_spin_lock_irqsave(&devtree_lock, flags);
e679c5f4 611 np = of_node_get(node->parent);
d6d3c4e6 612 raw_spin_unlock_irqrestore(&devtree_lock, flags);
e679c5f4
SR
613 return np;
614}
615EXPORT_SYMBOL(of_get_parent);
d1cd355a 616
f4eb0107
ME
617/**
618 * of_get_next_parent - Iterate to a node's parent
619 * @node: Node to get parent of
620 *
c0e848d8
GU
621 * This is like of_get_parent() except that it drops the
622 * refcount on the passed node, making it suitable for iterating
623 * through a node's parents.
f4eb0107
ME
624 *
625 * Returns a node pointer with refcount incremented, use
626 * of_node_put() on it when done.
627 */
628struct device_node *of_get_next_parent(struct device_node *node)
629{
630 struct device_node *parent;
d6d3c4e6 631 unsigned long flags;
f4eb0107
ME
632
633 if (!node)
634 return NULL;
635
d6d3c4e6 636 raw_spin_lock_irqsave(&devtree_lock, flags);
f4eb0107
ME
637 parent = of_node_get(node->parent);
638 of_node_put(node);
d6d3c4e6 639 raw_spin_unlock_irqrestore(&devtree_lock, flags);
f4eb0107
ME
640 return parent;
641}
6695be68 642EXPORT_SYMBOL(of_get_next_parent);
f4eb0107 643
0d0e02d6
GL
644static struct device_node *__of_get_next_child(const struct device_node *node,
645 struct device_node *prev)
646{
647 struct device_node *next;
648
43cb4367
FF
649 if (!node)
650 return NULL;
651
0d0e02d6
GL
652 next = prev ? prev->sibling : node->child;
653 for (; next; next = next->sibling)
654 if (of_node_get(next))
655 break;
656 of_node_put(prev);
657 return next;
658}
659#define __for_each_child_of_node(parent, child) \
660 for (child = __of_get_next_child(parent, NULL); child != NULL; \
661 child = __of_get_next_child(parent, child))
662
d1cd355a
SR
663/**
664 * of_get_next_child - Iterate a node childs
665 * @node: parent node
666 * @prev: previous child of the parent node, or NULL to get first
667 *
64808273
BS
668 * Returns a node pointer with refcount incremented, use of_node_put() on
669 * it when done. Returns NULL when prev is the last child. Decrements the
670 * refcount of prev.
d1cd355a
SR
671 */
672struct device_node *of_get_next_child(const struct device_node *node,
673 struct device_node *prev)
674{
675 struct device_node *next;
d6d3c4e6 676 unsigned long flags;
d1cd355a 677
d6d3c4e6 678 raw_spin_lock_irqsave(&devtree_lock, flags);
0d0e02d6 679 next = __of_get_next_child(node, prev);
d6d3c4e6 680 raw_spin_unlock_irqrestore(&devtree_lock, flags);
d1cd355a
SR
681 return next;
682}
683EXPORT_SYMBOL(of_get_next_child);
1ef4d424 684
3296193d
TT
685/**
686 * of_get_next_available_child - Find the next available child node
687 * @node: parent node
688 * @prev: previous child of the parent node, or NULL to get first
689 *
690 * This function is like of_get_next_child(), except that it
691 * automatically skips any disabled nodes (i.e. status = "disabled").
692 */
693struct device_node *of_get_next_available_child(const struct device_node *node,
694 struct device_node *prev)
695{
696 struct device_node *next;
d25d8694 697 unsigned long flags;
3296193d 698
43cb4367
FF
699 if (!node)
700 return NULL;
701
d25d8694 702 raw_spin_lock_irqsave(&devtree_lock, flags);
3296193d
TT
703 next = prev ? prev->sibling : node->child;
704 for (; next; next = next->sibling) {
c31a0c05 705 if (!__of_device_is_available(next))
3296193d
TT
706 continue;
707 if (of_node_get(next))
708 break;
709 }
710 of_node_put(prev);
d25d8694 711 raw_spin_unlock_irqrestore(&devtree_lock, flags);
3296193d
TT
712 return next;
713}
714EXPORT_SYMBOL(of_get_next_available_child);
715
9c19761a
SK
716/**
717 * of_get_child_by_name - Find the child node by name for a given parent
718 * @node: parent node
719 * @name: child name to look for.
720 *
721 * This function looks for child node for given matching name
722 *
723 * Returns a node pointer if found, with refcount incremented, use
724 * of_node_put() on it when done.
725 * Returns NULL if node is not found.
726 */
727struct device_node *of_get_child_by_name(const struct device_node *node,
728 const char *name)
729{
730 struct device_node *child;
731
732 for_each_child_of_node(node, child)
733 if (child->name && (of_node_cmp(child->name, name) == 0))
734 break;
735 return child;
736}
737EXPORT_SYMBOL(of_get_child_by_name);
738
c22e650e
GL
739static struct device_node *__of_find_node_by_path(struct device_node *parent,
740 const char *path)
741{
742 struct device_node *child;
106937e8 743 int len;
c22e650e 744
721a09e9 745 len = strcspn(path, "/:");
c22e650e
GL
746 if (!len)
747 return NULL;
748
749 __for_each_child_of_node(parent, child) {
750 const char *name = strrchr(child->full_name, '/');
751 if (WARN(!name, "malformed device_node %s\n", child->full_name))
752 continue;
753 name++;
754 if (strncmp(path, name, len) == 0 && (strlen(name) == len))
755 return child;
756 }
757 return NULL;
758}
759
1ef4d424 760/**
75c28c09 761 * of_find_node_opts_by_path - Find a node matching a full OF path
c22e650e
GL
762 * @path: Either the full path to match, or if the path does not
763 * start with '/', the name of a property of the /aliases
764 * node (an alias). In the case of an alias, the node
765 * matching the alias' value will be returned.
75c28c09
LL
766 * @opts: Address of a pointer into which to store the start of
767 * an options string appended to the end of the path with
768 * a ':' separator.
c22e650e
GL
769 *
770 * Valid paths:
771 * /foo/bar Full path
772 * foo Valid alias
773 * foo/bar Valid alias + relative path
1ef4d424
SR
774 *
775 * Returns a node pointer with refcount incremented, use
776 * of_node_put() on it when done.
777 */
75c28c09 778struct device_node *of_find_node_opts_by_path(const char *path, const char **opts)
1ef4d424 779{
c22e650e
GL
780 struct device_node *np = NULL;
781 struct property *pp;
d6d3c4e6 782 unsigned long flags;
75c28c09
LL
783 const char *separator = strchr(path, ':');
784
785 if (opts)
786 *opts = separator ? separator + 1 : NULL;
1ef4d424 787
c22e650e 788 if (strcmp(path, "/") == 0)
5063e25a 789 return of_node_get(of_root);
c22e650e
GL
790
791 /* The path could begin with an alias */
792 if (*path != '/') {
106937e8
LL
793 int len;
794 const char *p = separator;
795
796 if (!p)
797 p = strchrnul(path, '/');
798 len = p - path;
c22e650e
GL
799
800 /* of_aliases must not be NULL */
801 if (!of_aliases)
802 return NULL;
803
804 for_each_property_of_node(of_aliases, pp) {
805 if (strlen(pp->name) == len && !strncmp(pp->name, path, len)) {
806 np = of_find_node_by_path(pp->value);
807 break;
808 }
809 }
810 if (!np)
811 return NULL;
812 path = p;
813 }
814
815 /* Step down the tree matching path components */
d6d3c4e6 816 raw_spin_lock_irqsave(&devtree_lock, flags);
c22e650e 817 if (!np)
5063e25a 818 np = of_node_get(of_root);
c22e650e
GL
819 while (np && *path == '/') {
820 path++; /* Increment past '/' delimiter */
821 np = __of_find_node_by_path(np, path);
822 path = strchrnul(path, '/');
106937e8
LL
823 if (separator && separator < path)
824 break;
1ef4d424 825 }
d6d3c4e6 826 raw_spin_unlock_irqrestore(&devtree_lock, flags);
1ef4d424
SR
827 return np;
828}
75c28c09 829EXPORT_SYMBOL(of_find_node_opts_by_path);
1ef4d424
SR
830
831/**
832 * of_find_node_by_name - Find a node by its "name" property
833 * @from: The node to start searching from or NULL, the node
834 * you pass will not be searched, only the next one
835 * will; typically, you pass what the previous call
836 * returned. of_node_put() will be called on it
837 * @name: The name string to match against
838 *
839 * Returns a node pointer with refcount incremented, use
840 * of_node_put() on it when done.
841 */
842struct device_node *of_find_node_by_name(struct device_node *from,
843 const char *name)
844{
845 struct device_node *np;
d6d3c4e6 846 unsigned long flags;
1ef4d424 847
d6d3c4e6 848 raw_spin_lock_irqsave(&devtree_lock, flags);
5063e25a 849 for_each_of_allnodes_from(from, np)
1ef4d424
SR
850 if (np->name && (of_node_cmp(np->name, name) == 0)
851 && of_node_get(np))
852 break;
853 of_node_put(from);
d6d3c4e6 854 raw_spin_unlock_irqrestore(&devtree_lock, flags);
1ef4d424
SR
855 return np;
856}
857EXPORT_SYMBOL(of_find_node_by_name);
858
859/**
860 * of_find_node_by_type - Find a node by its "device_type" property
861 * @from: The node to start searching from, or NULL to start searching
862 * the entire device tree. The node you pass will not be
863 * searched, only the next one will; typically, you pass
864 * what the previous call returned. of_node_put() will be
865 * called on from for you.
866 * @type: The type string to match against
867 *
868 * Returns a node pointer with refcount incremented, use
869 * of_node_put() on it when done.
870 */
871struct device_node *of_find_node_by_type(struct device_node *from,
872 const char *type)
873{
874 struct device_node *np;
d6d3c4e6 875 unsigned long flags;
1ef4d424 876
d6d3c4e6 877 raw_spin_lock_irqsave(&devtree_lock, flags);
5063e25a 878 for_each_of_allnodes_from(from, np)
1ef4d424
SR
879 if (np->type && (of_node_cmp(np->type, type) == 0)
880 && of_node_get(np))
881 break;
882 of_node_put(from);
d6d3c4e6 883 raw_spin_unlock_irqrestore(&devtree_lock, flags);
1ef4d424
SR
884 return np;
885}
886EXPORT_SYMBOL(of_find_node_by_type);
887
888/**
889 * of_find_compatible_node - Find a node based on type and one of the
890 * tokens in its "compatible" property
891 * @from: The node to start searching from or NULL, the node
892 * you pass will not be searched, only the next one
893 * will; typically, you pass what the previous call
894 * returned. of_node_put() will be called on it
895 * @type: The type string to match "device_type" or NULL to ignore
896 * @compatible: The string to match to one of the tokens in the device
897 * "compatible" list.
898 *
899 * Returns a node pointer with refcount incremented, use
900 * of_node_put() on it when done.
901 */
902struct device_node *of_find_compatible_node(struct device_node *from,
903 const char *type, const char *compatible)
904{
905 struct device_node *np;
d6d3c4e6 906 unsigned long flags;
1ef4d424 907
d6d3c4e6 908 raw_spin_lock_irqsave(&devtree_lock, flags);
5063e25a 909 for_each_of_allnodes_from(from, np)
215a14cf 910 if (__of_device_is_compatible(np, compatible, type, NULL) &&
28d0e36b 911 of_node_get(np))
1ef4d424 912 break;
1ef4d424 913 of_node_put(from);
d6d3c4e6 914 raw_spin_unlock_irqrestore(&devtree_lock, flags);
1ef4d424
SR
915 return np;
916}
917EXPORT_SYMBOL(of_find_compatible_node);
283029d1 918
1e291b14
ME
919/**
920 * of_find_node_with_property - Find a node which has a property with
921 * the given name.
922 * @from: The node to start searching from or NULL, the node
923 * you pass will not be searched, only the next one
924 * will; typically, you pass what the previous call
925 * returned. of_node_put() will be called on it
926 * @prop_name: The name of the property to look for.
927 *
928 * Returns a node pointer with refcount incremented, use
929 * of_node_put() on it when done.
930 */
931struct device_node *of_find_node_with_property(struct device_node *from,
932 const char *prop_name)
933{
934 struct device_node *np;
935 struct property *pp;
d6d3c4e6 936 unsigned long flags;
1e291b14 937
d6d3c4e6 938 raw_spin_lock_irqsave(&devtree_lock, flags);
5063e25a 939 for_each_of_allnodes_from(from, np) {
a3a7cab1 940 for (pp = np->properties; pp; pp = pp->next) {
1e291b14
ME
941 if (of_prop_cmp(pp->name, prop_name) == 0) {
942 of_node_get(np);
943 goto out;
944 }
945 }
946 }
947out:
948 of_node_put(from);
d6d3c4e6 949 raw_spin_unlock_irqrestore(&devtree_lock, flags);
1e291b14
ME
950 return np;
951}
952EXPORT_SYMBOL(of_find_node_with_property);
953
28d0e36b
TG
954static
955const struct of_device_id *__of_match_node(const struct of_device_id *matches,
956 const struct device_node *node)
283029d1 957{
215a14cf
KH
958 const struct of_device_id *best_match = NULL;
959 int score, best_score = 0;
960
a52f07ec
GL
961 if (!matches)
962 return NULL;
963
215a14cf
KH
964 for (; matches->name[0] || matches->type[0] || matches->compatible[0]; matches++) {
965 score = __of_device_is_compatible(node, matches->compatible,
966 matches->type, matches->name);
967 if (score > best_score) {
968 best_match = matches;
969 best_score = score;
970 }
4e8ca6ee 971 }
215a14cf
KH
972
973 return best_match;
283029d1 974}
28d0e36b
TG
975
976/**
c50949d3 977 * of_match_node - Tell if a device_node has a matching of_match structure
28d0e36b
TG
978 * @matches: array of of device match structures to search in
979 * @node: the of device structure to match against
980 *
71c5498e 981 * Low level utility function used by device matching.
28d0e36b
TG
982 */
983const struct of_device_id *of_match_node(const struct of_device_id *matches,
984 const struct device_node *node)
985{
986 const struct of_device_id *match;
d6d3c4e6 987 unsigned long flags;
28d0e36b 988
d6d3c4e6 989 raw_spin_lock_irqsave(&devtree_lock, flags);
28d0e36b 990 match = __of_match_node(matches, node);
d6d3c4e6 991 raw_spin_unlock_irqrestore(&devtree_lock, flags);
28d0e36b
TG
992 return match;
993}
283029d1
GL
994EXPORT_SYMBOL(of_match_node);
995
996/**
50c8af4c
SW
997 * of_find_matching_node_and_match - Find a node based on an of_device_id
998 * match table.
283029d1
GL
999 * @from: The node to start searching from or NULL, the node
1000 * you pass will not be searched, only the next one
1001 * will; typically, you pass what the previous call
1002 * returned. of_node_put() will be called on it
1003 * @matches: array of of device match structures to search in
50c8af4c 1004 * @match Updated to point at the matches entry which matched
283029d1
GL
1005 *
1006 * Returns a node pointer with refcount incremented, use
1007 * of_node_put() on it when done.
1008 */
50c8af4c
SW
1009struct device_node *of_find_matching_node_and_match(struct device_node *from,
1010 const struct of_device_id *matches,
1011 const struct of_device_id **match)
283029d1
GL
1012{
1013 struct device_node *np;
dc71bcf1 1014 const struct of_device_id *m;
d6d3c4e6 1015 unsigned long flags;
283029d1 1016
50c8af4c
SW
1017 if (match)
1018 *match = NULL;
1019
d6d3c4e6 1020 raw_spin_lock_irqsave(&devtree_lock, flags);
5063e25a 1021 for_each_of_allnodes_from(from, np) {
28d0e36b 1022 m = __of_match_node(matches, np);
dc71bcf1 1023 if (m && of_node_get(np)) {
50c8af4c 1024 if (match)
dc71bcf1 1025 *match = m;
283029d1 1026 break;
50c8af4c 1027 }
283029d1
GL
1028 }
1029 of_node_put(from);
d6d3c4e6 1030 raw_spin_unlock_irqrestore(&devtree_lock, flags);
283029d1
GL
1031 return np;
1032}
80c2022e 1033EXPORT_SYMBOL(of_find_matching_node_and_match);
3f07af49 1034
3f07af49
GL
1035/**
1036 * of_modalias_node - Lookup appropriate modalias for a device node
1037 * @node: pointer to a device tree node
1038 * @modalias: Pointer to buffer that modalias value will be copied into
1039 * @len: Length of modalias value
1040 *
2ffe8c5f
GL
1041 * Based on the value of the compatible property, this routine will attempt
1042 * to choose an appropriate modalias value for a particular device tree node.
1043 * It does this by stripping the manufacturer prefix (as delimited by a ',')
1044 * from the first entry in the compatible list property.
3f07af49 1045 *
2ffe8c5f 1046 * This routine returns 0 on success, <0 on failure.
3f07af49
GL
1047 */
1048int of_modalias_node(struct device_node *node, char *modalias, int len)
1049{
2ffe8c5f
GL
1050 const char *compatible, *p;
1051 int cplen;
3f07af49
GL
1052
1053 compatible = of_get_property(node, "compatible", &cplen);
2ffe8c5f 1054 if (!compatible || strlen(compatible) > cplen)
3f07af49 1055 return -ENODEV;
3f07af49 1056 p = strchr(compatible, ',');
2ffe8c5f 1057 strlcpy(modalias, p ? p + 1 : compatible, len);
3f07af49
GL
1058 return 0;
1059}
1060EXPORT_SYMBOL_GPL(of_modalias_node);
1061
89751a7c
JK
1062/**
1063 * of_find_node_by_phandle - Find a node given a phandle
1064 * @handle: phandle of the node to find
1065 *
1066 * Returns a node pointer with refcount incremented, use
1067 * of_node_put() on it when done.
1068 */
1069struct device_node *of_find_node_by_phandle(phandle handle)
1070{
1071 struct device_node *np;
d25d8694 1072 unsigned long flags;
89751a7c 1073
fc59b447
GL
1074 if (!handle)
1075 return NULL;
1076
d25d8694 1077 raw_spin_lock_irqsave(&devtree_lock, flags);
5063e25a 1078 for_each_of_allnodes(np)
89751a7c
JK
1079 if (np->phandle == handle)
1080 break;
1081 of_node_get(np);
d25d8694 1082 raw_spin_unlock_irqrestore(&devtree_lock, flags);
89751a7c
JK
1083 return np;
1084}
1085EXPORT_SYMBOL(of_find_node_by_phandle);
1086
ad54a0cf
HS
1087/**
1088 * of_property_count_elems_of_size - Count the number of elements in a property
1089 *
1090 * @np: device node from which the property value is to be read.
1091 * @propname: name of the property to be searched.
1092 * @elem_size: size of the individual element
1093 *
1094 * Search for a property in a device node and count the number of elements of
1095 * size elem_size in it. Returns number of elements on sucess, -EINVAL if the
1096 * property does not exist or its length does not match a multiple of elem_size
1097 * and -ENODATA if the property does not have a value.
1098 */
1099int of_property_count_elems_of_size(const struct device_node *np,
1100 const char *propname, int elem_size)
1101{
1102 struct property *prop = of_find_property(np, propname, NULL);
1103
1104 if (!prop)
1105 return -EINVAL;
1106 if (!prop->value)
1107 return -ENODATA;
1108
1109 if (prop->length % elem_size != 0) {
1110 pr_err("size of %s in node %s is not a multiple of %d\n",
1111 propname, np->full_name, elem_size);
1112 return -EINVAL;
1113 }
1114
1115 return prop->length / elem_size;
1116}
1117EXPORT_SYMBOL_GPL(of_property_count_elems_of_size);
1118
daeec1f0
TP
1119/**
1120 * of_find_property_value_of_size
1121 *
1122 * @np: device node from which the property value is to be read.
1123 * @propname: name of the property to be searched.
1124 * @len: requested length of property value
1125 *
1126 * Search for a property in a device node and valid the requested size.
1127 * Returns the property value on success, -EINVAL if the property does not
1128 * exist, -ENODATA if property does not have a value, and -EOVERFLOW if the
1129 * property data isn't large enough.
1130 *
1131 */
1132static void *of_find_property_value_of_size(const struct device_node *np,
1133 const char *propname, u32 len)
1134{
1135 struct property *prop = of_find_property(np, propname, NULL);
1136
1137 if (!prop)
1138 return ERR_PTR(-EINVAL);
1139 if (!prop->value)
1140 return ERR_PTR(-ENODATA);
1141 if (len > prop->length)
1142 return ERR_PTR(-EOVERFLOW);
1143
1144 return prop->value;
1145}
1146
3daf3726
TP
1147/**
1148 * of_property_read_u32_index - Find and read a u32 from a multi-value property.
1149 *
1150 * @np: device node from which the property value is to be read.
1151 * @propname: name of the property to be searched.
1152 * @index: index of the u32 in the list of values
1153 * @out_value: pointer to return value, modified only if no error.
1154 *
1155 * Search for a property in a device node and read nth 32-bit value from
1156 * it. Returns 0 on success, -EINVAL if the property does not exist,
1157 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1158 * property data isn't large enough.
1159 *
1160 * The out_value is modified only if a valid u32 value can be decoded.
1161 */
1162int of_property_read_u32_index(const struct device_node *np,
1163 const char *propname,
1164 u32 index, u32 *out_value)
1165{
daeec1f0
TP
1166 const u32 *val = of_find_property_value_of_size(np, propname,
1167 ((index + 1) * sizeof(*out_value)));
3daf3726 1168
daeec1f0
TP
1169 if (IS_ERR(val))
1170 return PTR_ERR(val);
3daf3726 1171
daeec1f0 1172 *out_value = be32_to_cpup(((__be32 *)val) + index);
3daf3726
TP
1173 return 0;
1174}
1175EXPORT_SYMBOL_GPL(of_property_read_u32_index);
1176
be193249
VK
1177/**
1178 * of_property_read_u8_array - Find and read an array of u8 from a property.
1179 *
1180 * @np: device node from which the property value is to be read.
1181 * @propname: name of the property to be searched.
792efb84 1182 * @out_values: pointer to return value, modified only if return value is 0.
be193249
VK
1183 * @sz: number of array elements to read
1184 *
1185 * Search for a property in a device node and read 8-bit value(s) from
1186 * it. Returns 0 on success, -EINVAL if the property does not exist,
1187 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1188 * property data isn't large enough.
1189 *
1190 * dts entry of array should be like:
1191 * property = /bits/ 8 <0x50 0x60 0x70>;
1192 *
792efb84 1193 * The out_values is modified only if a valid u8 value can be decoded.
be193249
VK
1194 */
1195int of_property_read_u8_array(const struct device_node *np,
1196 const char *propname, u8 *out_values, size_t sz)
1197{
daeec1f0
TP
1198 const u8 *val = of_find_property_value_of_size(np, propname,
1199 (sz * sizeof(*out_values)));
be193249 1200
daeec1f0
TP
1201 if (IS_ERR(val))
1202 return PTR_ERR(val);
be193249 1203
be193249
VK
1204 while (sz--)
1205 *out_values++ = *val++;
1206 return 0;
1207}
1208EXPORT_SYMBOL_GPL(of_property_read_u8_array);
1209
1210/**
1211 * of_property_read_u16_array - Find and read an array of u16 from a property.
1212 *
1213 * @np: device node from which the property value is to be read.
1214 * @propname: name of the property to be searched.
792efb84 1215 * @out_values: pointer to return value, modified only if return value is 0.
be193249
VK
1216 * @sz: number of array elements to read
1217 *
1218 * Search for a property in a device node and read 16-bit value(s) from
1219 * it. Returns 0 on success, -EINVAL if the property does not exist,
1220 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1221 * property data isn't large enough.
1222 *
1223 * dts entry of array should be like:
1224 * property = /bits/ 16 <0x5000 0x6000 0x7000>;
1225 *
792efb84 1226 * The out_values is modified only if a valid u16 value can be decoded.
be193249
VK
1227 */
1228int of_property_read_u16_array(const struct device_node *np,
1229 const char *propname, u16 *out_values, size_t sz)
1230{
daeec1f0
TP
1231 const __be16 *val = of_find_property_value_of_size(np, propname,
1232 (sz * sizeof(*out_values)));
be193249 1233
daeec1f0
TP
1234 if (IS_ERR(val))
1235 return PTR_ERR(val);
be193249 1236
be193249
VK
1237 while (sz--)
1238 *out_values++ = be16_to_cpup(val++);
1239 return 0;
1240}
1241EXPORT_SYMBOL_GPL(of_property_read_u16_array);
1242
a3b85363 1243/**
0e373639
RH
1244 * of_property_read_u32_array - Find and read an array of 32 bit integers
1245 * from a property.
1246 *
a3b85363
TA
1247 * @np: device node from which the property value is to be read.
1248 * @propname: name of the property to be searched.
792efb84 1249 * @out_values: pointer to return value, modified only if return value is 0.
be193249 1250 * @sz: number of array elements to read
a3b85363 1251 *
0e373639 1252 * Search for a property in a device node and read 32-bit value(s) from
a3b85363
TA
1253 * it. Returns 0 on success, -EINVAL if the property does not exist,
1254 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1255 * property data isn't large enough.
1256 *
792efb84 1257 * The out_values is modified only if a valid u32 value can be decoded.
a3b85363 1258 */
aac285c6
JI
1259int of_property_read_u32_array(const struct device_node *np,
1260 const char *propname, u32 *out_values,
1261 size_t sz)
a3b85363 1262{
daeec1f0
TP
1263 const __be32 *val = of_find_property_value_of_size(np, propname,
1264 (sz * sizeof(*out_values)));
a3b85363 1265
daeec1f0
TP
1266 if (IS_ERR(val))
1267 return PTR_ERR(val);
0e373639 1268
0e373639
RH
1269 while (sz--)
1270 *out_values++ = be32_to_cpup(val++);
a3b85363
TA
1271 return 0;
1272}
0e373639 1273EXPORT_SYMBOL_GPL(of_property_read_u32_array);
a3b85363 1274
4cd7f7a3
JI
1275/**
1276 * of_property_read_u64 - Find and read a 64 bit integer from a property
1277 * @np: device node from which the property value is to be read.
1278 * @propname: name of the property to be searched.
1279 * @out_value: pointer to return value, modified only if return value is 0.
1280 *
1281 * Search for a property in a device node and read a 64-bit value from
1282 * it. Returns 0 on success, -EINVAL if the property does not exist,
1283 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1284 * property data isn't large enough.
1285 *
1286 * The out_value is modified only if a valid u64 value can be decoded.
1287 */
1288int of_property_read_u64(const struct device_node *np, const char *propname,
1289 u64 *out_value)
1290{
daeec1f0
TP
1291 const __be32 *val = of_find_property_value_of_size(np, propname,
1292 sizeof(*out_value));
4cd7f7a3 1293
daeec1f0
TP
1294 if (IS_ERR(val))
1295 return PTR_ERR(val);
1296
1297 *out_value = of_read_number(val, 2);
4cd7f7a3
JI
1298 return 0;
1299}
1300EXPORT_SYMBOL_GPL(of_property_read_u64);
1301
b31384fa
RW
1302/**
1303 * of_property_read_u64_array - Find and read an array of 64 bit integers
1304 * from a property.
1305 *
1306 * @np: device node from which the property value is to be read.
1307 * @propname: name of the property to be searched.
1308 * @out_values: pointer to return value, modified only if return value is 0.
1309 * @sz: number of array elements to read
1310 *
1311 * Search for a property in a device node and read 64-bit value(s) from
1312 * it. Returns 0 on success, -EINVAL if the property does not exist,
1313 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1314 * property data isn't large enough.
1315 *
1316 * The out_values is modified only if a valid u64 value can be decoded.
1317 */
1318int of_property_read_u64_array(const struct device_node *np,
1319 const char *propname, u64 *out_values,
1320 size_t sz)
1321{
1322 const __be32 *val = of_find_property_value_of_size(np, propname,
1323 (sz * sizeof(*out_values)));
1324
1325 if (IS_ERR(val))
1326 return PTR_ERR(val);
1327
1328 while (sz--) {
1329 *out_values++ = of_read_number(val, 2);
1330 val += 2;
1331 }
1332 return 0;
1333}
2d4c0aef 1334EXPORT_SYMBOL_GPL(of_property_read_u64_array);
b31384fa 1335
a3b85363
TA
1336/**
1337 * of_property_read_string - Find and read a string from a property
1338 * @np: device node from which the property value is to be read.
1339 * @propname: name of the property to be searched.
1340 * @out_string: pointer to null terminated return string, modified only if
1341 * return value is 0.
1342 *
1343 * Search for a property in a device tree node and retrieve a null
1344 * terminated string value (pointer to data, not a copy). Returns 0 on
1345 * success, -EINVAL if the property does not exist, -ENODATA if property
1346 * does not have a value, and -EILSEQ if the string is not null-terminated
1347 * within the length of the property data.
1348 *
1349 * The out_string pointer is modified only if a valid string can be decoded.
1350 */
fe99c707 1351int of_property_read_string(const struct device_node *np, const char *propname,
f09bc831 1352 const char **out_string)
a3b85363 1353{
fe99c707 1354 const struct property *prop = of_find_property(np, propname, NULL);
a3b85363
TA
1355 if (!prop)
1356 return -EINVAL;
1357 if (!prop->value)
1358 return -ENODATA;
1359 if (strnlen(prop->value, prop->length) >= prop->length)
1360 return -EILSEQ;
1361 *out_string = prop->value;
1362 return 0;
1363}
1364EXPORT_SYMBOL_GPL(of_property_read_string);
1365
7aff0fe3
GL
1366/**
1367 * of_property_match_string() - Find string in a list and return index
1368 * @np: pointer to node containing string list property
1369 * @propname: string list property name
1370 * @string: pointer to string to search for in string list
1371 *
1372 * This function searches a string list property and returns the index
1373 * of a specific string value.
1374 */
fe99c707 1375int of_property_match_string(const struct device_node *np, const char *propname,
7aff0fe3
GL
1376 const char *string)
1377{
fe99c707 1378 const struct property *prop = of_find_property(np, propname, NULL);
7aff0fe3
GL
1379 size_t l;
1380 int i;
1381 const char *p, *end;
1382
1383 if (!prop)
1384 return -EINVAL;
1385 if (!prop->value)
1386 return -ENODATA;
1387
1388 p = prop->value;
1389 end = p + prop->length;
1390
1391 for (i = 0; p < end; i++, p += l) {
a87fa1d8 1392 l = strnlen(p, end - p) + 1;
7aff0fe3
GL
1393 if (p + l > end)
1394 return -EILSEQ;
1395 pr_debug("comparing %s with %s\n", string, p);
1396 if (strcmp(string, p) == 0)
1397 return i; /* Found it; return index */
1398 }
1399 return -ENODATA;
1400}
1401EXPORT_SYMBOL_GPL(of_property_match_string);
4fcd15a0
BC
1402
1403/**
e99010ed 1404 * of_property_read_string_helper() - Utility helper for parsing string properties
4fcd15a0
BC
1405 * @np: device node from which the property value is to be read.
1406 * @propname: name of the property to be searched.
a87fa1d8
GL
1407 * @out_strs: output array of string pointers.
1408 * @sz: number of array elements to read.
1409 * @skip: Number of strings to skip over at beginning of list.
4fcd15a0 1410 *
a87fa1d8
GL
1411 * Don't call this function directly. It is a utility helper for the
1412 * of_property_read_string*() family of functions.
4fcd15a0 1413 */
fe99c707
DR
1414int of_property_read_string_helper(const struct device_node *np,
1415 const char *propname, const char **out_strs,
1416 size_t sz, int skip)
4fcd15a0 1417{
fe99c707 1418 const struct property *prop = of_find_property(np, propname, NULL);
a87fa1d8
GL
1419 int l = 0, i = 0;
1420 const char *p, *end;
4fcd15a0
BC
1421
1422 if (!prop)
1423 return -EINVAL;
1424 if (!prop->value)
1425 return -ENODATA;
4fcd15a0 1426 p = prop->value;
a87fa1d8 1427 end = p + prop->length;
4fcd15a0 1428
a87fa1d8
GL
1429 for (i = 0; p < end && (!out_strs || i < skip + sz); i++, p += l) {
1430 l = strnlen(p, end - p) + 1;
1431 if (p + l > end)
1432 return -EILSEQ;
1433 if (out_strs && i >= skip)
1434 *out_strs++ = p;
1435 }
1436 i -= skip;
1437 return i <= 0 ? -ENODATA : i;
4fcd15a0 1438}
a87fa1d8 1439EXPORT_SYMBOL_GPL(of_property_read_string_helper);
4fcd15a0 1440
624cfca5
GL
1441void of_print_phandle_args(const char *msg, const struct of_phandle_args *args)
1442{
1443 int i;
1444 printk("%s %s", msg, of_node_full_name(args->np));
1445 for (i = 0; i < args->args_count; i++)
1446 printk(i ? ",%08x" : ":%08x", args->args[i]);
1447 printk("\n");
1448}
1449
74e1fbb1
JR
1450int of_phandle_iterator_init(struct of_phandle_iterator *it,
1451 const struct device_node *np,
1452 const char *list_name,
1453 const char *cells_name,
1454 int cell_count)
64b60e09 1455{
74e1fbb1
JR
1456 const __be32 *list;
1457 int size;
1458
1459 memset(it, 0, sizeof(*it));
64b60e09
AV
1460
1461 list = of_get_property(np, list_name, &size);
15c9a0ac 1462 if (!list)
1af4c7f1 1463 return -ENOENT;
64b60e09 1464
74e1fbb1
JR
1465 it->cells_name = cells_name;
1466 it->cell_count = cell_count;
1467 it->parent = np;
1468 it->list_end = list + size / sizeof(*list);
1469 it->phandle_end = list;
1470 it->cur = list;
1471
1472 return 0;
1473}
1474
cd209b41
JR
1475int of_phandle_iterator_next(struct of_phandle_iterator *it)
1476{
1477 uint32_t count = 0;
1478
1479 if (it->node) {
1480 of_node_put(it->node);
1481 it->node = NULL;
1482 }
1483
1484 if (!it->cur || it->phandle_end >= it->list_end)
1485 return -ENOENT;
1486
1487 it->cur = it->phandle_end;
1488
1489 /* If phandle is 0, then it is an empty entry with no arguments. */
1490 it->phandle = be32_to_cpup(it->cur++);
1491
1492 if (it->phandle) {
64b60e09 1493
15c9a0ac 1494 /*
cd209b41
JR
1495 * Find the provider node and parse the #*-cells property to
1496 * determine the argument length.
15c9a0ac 1497 */
cd209b41 1498 it->node = of_find_node_by_phandle(it->phandle);
035fd948 1499
cd209b41
JR
1500 if (it->cells_name) {
1501 if (!it->node) {
1502 pr_err("%s: could not find phandle\n",
1503 it->parent->full_name);
1504 goto err;
15c9a0ac 1505 }
64b60e09 1506
cd209b41
JR
1507 if (of_property_read_u32(it->node, it->cells_name,
1508 &count)) {
1509 pr_err("%s: could not get %s for %s\n",
1510 it->parent->full_name,
1511 it->cells_name,
1512 it->node->full_name);
23ce04c0 1513 goto err;
15c9a0ac 1514 }
cd209b41
JR
1515 } else {
1516 count = it->cell_count;
64b60e09
AV
1517 }
1518
15c9a0ac 1519 /*
cd209b41
JR
1520 * Make sure that the arguments actually fit in the remaining
1521 * property data length
1522 */
1523 if (it->cur + count > it->list_end) {
1524 pr_err("%s: arguments longer than property\n",
1525 it->parent->full_name);
1526 goto err;
1527 }
1528 }
1529
1530 it->phandle_end = it->cur + count;
1531 it->cur_count = count;
1532
1533 return 0;
1534
1535err:
1536 if (it->node) {
1537 of_node_put(it->node);
1538 it->node = NULL;
1539 }
1540
1541 return -EINVAL;
1542}
1543
abdaa77b
JR
1544int of_phandle_iterator_args(struct of_phandle_iterator *it,
1545 uint32_t *args,
1546 int size)
1547{
1548 int i, count;
1549
1550 count = it->cur_count;
1551
1552 if (WARN_ON(size < count))
1553 count = size;
1554
1555 for (i = 0; i < count; i++)
1556 args[i] = be32_to_cpup(it->cur++);
1557
1558 return count;
1559}
1560
bd69f73f
GL
1561static int __of_parse_phandle_with_args(const struct device_node *np,
1562 const char *list_name,
035fd948
SW
1563 const char *cells_name,
1564 int cell_count, int index,
bd69f73f 1565 struct of_phandle_args *out_args)
64b60e09 1566{
74e1fbb1
JR
1567 struct of_phandle_iterator it;
1568 int rc, cur_index = 0;
64b60e09 1569
15c9a0ac 1570 /* Loop over the phandles until all the requested entry is found */
f623ce95 1571 of_for_each_phandle(&it, rc, np, list_name, cells_name, cell_count) {
15c9a0ac 1572 /*
cd209b41 1573 * All of the error cases bail out of the loop, so at
15c9a0ac
GL
1574 * this point, the parsing is successful. If the requested
1575 * index matches, then fill the out_args structure and return,
1576 * or return -ENOENT for an empty entry.
1577 */
23ce04c0 1578 rc = -ENOENT;
15c9a0ac 1579 if (cur_index == index) {
74e1fbb1 1580 if (!it.phandle)
23ce04c0 1581 goto err;
15c9a0ac
GL
1582
1583 if (out_args) {
abdaa77b
JR
1584 int c;
1585
1586 c = of_phandle_iterator_args(&it,
1587 out_args->args,
1588 MAX_PHANDLE_ARGS);
74e1fbb1 1589 out_args->np = it.node;
abdaa77b 1590 out_args->args_count = c;
b855f16b 1591 } else {
74e1fbb1 1592 of_node_put(it.node);
15c9a0ac 1593 }
23ce04c0
GL
1594
1595 /* Found it! return success */
15c9a0ac 1596 return 0;
64b60e09 1597 }
64b60e09 1598
64b60e09
AV
1599 cur_index++;
1600 }
1601
23ce04c0
GL
1602 /*
1603 * Unlock node before returning result; will be one of:
1604 * -ENOENT : index is for empty phandle
1605 * -EINVAL : parsing error on data
1606 */
cd209b41 1607
23ce04c0 1608 err:
74e1fbb1
JR
1609 if (it.node)
1610 of_node_put(it.node);
23ce04c0 1611 return rc;
64b60e09 1612}
bd69f73f 1613
5fba49e3
SW
1614/**
1615 * of_parse_phandle - Resolve a phandle property to a device_node pointer
1616 * @np: Pointer to device node holding phandle property
1617 * @phandle_name: Name of property holding a phandle value
1618 * @index: For properties holding a table of phandles, this is the index into
1619 * the table
1620 *
1621 * Returns the device_node pointer with refcount incremented. Use
1622 * of_node_put() on it when done.
1623 */
1624struct device_node *of_parse_phandle(const struct device_node *np,
1625 const char *phandle_name, int index)
1626{
91d9942c
SW
1627 struct of_phandle_args args;
1628
1629 if (index < 0)
1630 return NULL;
5fba49e3 1631
91d9942c
SW
1632 if (__of_parse_phandle_with_args(np, phandle_name, NULL, 0,
1633 index, &args))
5fba49e3
SW
1634 return NULL;
1635
91d9942c 1636 return args.np;
5fba49e3
SW
1637}
1638EXPORT_SYMBOL(of_parse_phandle);
1639
eded9dd4
SW
1640/**
1641 * of_parse_phandle_with_args() - Find a node pointed by phandle in a list
1642 * @np: pointer to a device tree node containing a list
1643 * @list_name: property name that contains a list
1644 * @cells_name: property name that specifies phandles' arguments count
1645 * @index: index of a phandle to parse out
1646 * @out_args: optional pointer to output arguments structure (will be filled)
1647 *
1648 * This function is useful to parse lists of phandles and their arguments.
1649 * Returns 0 on success and fills out_args, on error returns appropriate
1650 * errno value.
1651 *
d94a75c1 1652 * Caller is responsible to call of_node_put() on the returned out_args->np
eded9dd4
SW
1653 * pointer.
1654 *
1655 * Example:
1656 *
1657 * phandle1: node1 {
c0e848d8 1658 * #list-cells = <2>;
eded9dd4
SW
1659 * }
1660 *
1661 * phandle2: node2 {
c0e848d8 1662 * #list-cells = <1>;
eded9dd4
SW
1663 * }
1664 *
1665 * node3 {
c0e848d8 1666 * list = <&phandle1 1 2 &phandle2 3>;
eded9dd4
SW
1667 * }
1668 *
1669 * To get a device_node of the `node2' node you may call this:
1670 * of_parse_phandle_with_args(node3, "list", "#list-cells", 1, &args);
1671 */
bd69f73f
GL
1672int of_parse_phandle_with_args(const struct device_node *np, const char *list_name,
1673 const char *cells_name, int index,
1674 struct of_phandle_args *out_args)
1675{
1676 if (index < 0)
1677 return -EINVAL;
035fd948
SW
1678 return __of_parse_phandle_with_args(np, list_name, cells_name, 0,
1679 index, out_args);
bd69f73f 1680}
15c9a0ac 1681EXPORT_SYMBOL(of_parse_phandle_with_args);
02af11b0 1682
035fd948
SW
1683/**
1684 * of_parse_phandle_with_fixed_args() - Find a node pointed by phandle in a list
1685 * @np: pointer to a device tree node containing a list
1686 * @list_name: property name that contains a list
1687 * @cell_count: number of argument cells following the phandle
1688 * @index: index of a phandle to parse out
1689 * @out_args: optional pointer to output arguments structure (will be filled)
1690 *
1691 * This function is useful to parse lists of phandles and their arguments.
1692 * Returns 0 on success and fills out_args, on error returns appropriate
1693 * errno value.
1694 *
d94a75c1 1695 * Caller is responsible to call of_node_put() on the returned out_args->np
035fd948
SW
1696 * pointer.
1697 *
1698 * Example:
1699 *
1700 * phandle1: node1 {
1701 * }
1702 *
1703 * phandle2: node2 {
1704 * }
1705 *
1706 * node3 {
c0e848d8 1707 * list = <&phandle1 0 2 &phandle2 2 3>;
035fd948
SW
1708 * }
1709 *
1710 * To get a device_node of the `node2' node you may call this:
1711 * of_parse_phandle_with_fixed_args(node3, "list", 2, 1, &args);
1712 */
1713int of_parse_phandle_with_fixed_args(const struct device_node *np,
1714 const char *list_name, int cell_count,
1715 int index, struct of_phandle_args *out_args)
1716{
1717 if (index < 0)
1718 return -EINVAL;
1719 return __of_parse_phandle_with_args(np, list_name, NULL, cell_count,
1720 index, out_args);
1721}
1722EXPORT_SYMBOL(of_parse_phandle_with_fixed_args);
1723
bd69f73f
GL
1724/**
1725 * of_count_phandle_with_args() - Find the number of phandles references in a property
1726 * @np: pointer to a device tree node containing a list
1727 * @list_name: property name that contains a list
1728 * @cells_name: property name that specifies phandles' arguments count
1729 *
1730 * Returns the number of phandle + argument tuples within a property. It
1731 * is a typical pattern to encode a list of phandle and variable
1732 * arguments into a single property. The number of arguments is encoded
1733 * by a property in the phandle-target node. For example, a gpios
1734 * property would contain a list of GPIO specifies consisting of a
1735 * phandle and 1 or more arguments. The number of arguments are
1736 * determined by the #gpio-cells property in the node pointed to by the
1737 * phandle.
1738 */
1739int of_count_phandle_with_args(const struct device_node *np, const char *list_name,
1740 const char *cells_name)
1741{
2021bd01
JR
1742 struct of_phandle_iterator it;
1743 int rc, cur_index = 0;
1744
1745 rc = of_phandle_iterator_init(&it, np, list_name, cells_name, 0);
1746 if (rc)
1747 return rc;
1748
1749 while ((rc = of_phandle_iterator_next(&it)) == 0)
1750 cur_index += 1;
1751
1752 if (rc != -ENOENT)
1753 return rc;
1754
1755 return cur_index;
bd69f73f
GL
1756}
1757EXPORT_SYMBOL(of_count_phandle_with_args);
1758
62664f67
XL
1759/**
1760 * __of_add_property - Add a property to a node without lock operations
1761 */
d8c50088 1762int __of_add_property(struct device_node *np, struct property *prop)
62664f67
XL
1763{
1764 struct property **next;
1765
1766 prop->next = NULL;
1767 next = &np->properties;
1768 while (*next) {
1769 if (strcmp(prop->name, (*next)->name) == 0)
1770 /* duplicate ! don't insert it */
1771 return -EEXIST;
1772
1773 next = &(*next)->next;
1774 }
1775 *next = prop;
1776
1777 return 0;
1778}
1779
02af11b0 1780/**
79d1c712 1781 * of_add_property - Add a property to a node
02af11b0 1782 */
79d1c712 1783int of_add_property(struct device_node *np, struct property *prop)
02af11b0 1784{
02af11b0 1785 unsigned long flags;
1cf3d8b3
NF
1786 int rc;
1787
8a2b22a2 1788 mutex_lock(&of_mutex);
02af11b0 1789
d6d3c4e6 1790 raw_spin_lock_irqsave(&devtree_lock, flags);
62664f67 1791 rc = __of_add_property(np, prop);
d6d3c4e6 1792 raw_spin_unlock_irqrestore(&devtree_lock, flags);
02af11b0 1793
8a2b22a2 1794 if (!rc)
0829f6d1 1795 __of_add_property_sysfs(np, prop);
02af11b0 1796
8a2b22a2
GL
1797 mutex_unlock(&of_mutex);
1798
259092a3
GL
1799 if (!rc)
1800 of_property_notify(OF_RECONFIG_ADD_PROPERTY, np, prop, NULL);
1801
62664f67 1802 return rc;
02af11b0
GL
1803}
1804
d8c50088
PA
1805int __of_remove_property(struct device_node *np, struct property *prop)
1806{
1807 struct property **next;
1808
1809 for (next = &np->properties; *next; next = &(*next)->next) {
1810 if (*next == prop)
1811 break;
1812 }
1813 if (*next == NULL)
1814 return -ENODEV;
1815
1816 /* found the node */
1817 *next = prop->next;
1818 prop->next = np->deadprops;
1819 np->deadprops = prop;
1820
1821 return 0;
1822}
1823
d9fc8807
FR
1824void __of_sysfs_remove_bin_file(struct device_node *np, struct property *prop)
1825{
1826 sysfs_remove_bin_file(&np->kobj, &prop->attr);
1827 kfree(prop->attr.attr.name);
1828}
1829
8a2b22a2
GL
1830void __of_remove_property_sysfs(struct device_node *np, struct property *prop)
1831{
ef69d740
GM
1832 if (!IS_ENABLED(CONFIG_SYSFS))
1833 return;
1834
8a2b22a2
GL
1835 /* at early boot, bail here and defer setup to of_init() */
1836 if (of_kset && of_node_is_attached(np))
d9fc8807 1837 __of_sysfs_remove_bin_file(np, prop);
8a2b22a2
GL
1838}
1839
02af11b0 1840/**
79d1c712 1841 * of_remove_property - Remove a property from a node.
02af11b0
GL
1842 *
1843 * Note that we don't actually remove it, since we have given out
1844 * who-knows-how-many pointers to the data using get-property.
1845 * Instead we just move the property to the "dead properties"
1846 * list, so it won't be found any more.
1847 */
79d1c712 1848int of_remove_property(struct device_node *np, struct property *prop)
02af11b0 1849{
02af11b0 1850 unsigned long flags;
1cf3d8b3
NF
1851 int rc;
1852
201b3fe5
SJS
1853 if (!prop)
1854 return -ENODEV;
1855
8a2b22a2 1856 mutex_lock(&of_mutex);
02af11b0 1857
d6d3c4e6 1858 raw_spin_lock_irqsave(&devtree_lock, flags);
d8c50088 1859 rc = __of_remove_property(np, prop);
d6d3c4e6 1860 raw_spin_unlock_irqrestore(&devtree_lock, flags);
02af11b0 1861
8a2b22a2
GL
1862 if (!rc)
1863 __of_remove_property_sysfs(np, prop);
02af11b0 1864
8a2b22a2 1865 mutex_unlock(&of_mutex);
75b57ecf 1866
259092a3
GL
1867 if (!rc)
1868 of_property_notify(OF_RECONFIG_REMOVE_PROPERTY, np, prop, NULL);
02af11b0 1869
8a2b22a2 1870 return rc;
02af11b0
GL
1871}
1872
d8c50088
PA
1873int __of_update_property(struct device_node *np, struct property *newprop,
1874 struct property **oldpropp)
02af11b0 1875{
475d0094 1876 struct property **next, *oldprop;
02af11b0 1877
d8c50088
PA
1878 for (next = &np->properties; *next; next = &(*next)->next) {
1879 if (of_prop_cmp((*next)->name, newprop->name) == 0)
1880 break;
1881 }
1882 *oldpropp = oldprop = *next;
475d0094 1883
d8c50088 1884 if (oldprop) {
947fdaad 1885 /* replace the node */
d8c50088
PA
1886 newprop->next = oldprop->next;
1887 *next = newprop;
1888 oldprop->next = np->deadprops;
1889 np->deadprops = oldprop;
1890 } else {
1891 /* new node */
1892 newprop->next = NULL;
1893 *next = newprop;
02af11b0 1894 }
75b57ecf 1895
d8c50088
PA
1896 return 0;
1897}
1898
8a2b22a2
GL
1899void __of_update_property_sysfs(struct device_node *np, struct property *newprop,
1900 struct property *oldprop)
1901{
ef69d740
GM
1902 if (!IS_ENABLED(CONFIG_SYSFS))
1903 return;
1904
582da652
TP
1905 /* At early boot, bail out and defer setup to of_init() */
1906 if (!of_kset)
8a2b22a2 1907 return;
582da652 1908
947fdaad 1909 if (oldprop)
d9fc8807 1910 __of_sysfs_remove_bin_file(np, oldprop);
75b57ecf 1911 __of_add_property_sysfs(np, newprop);
02af11b0 1912}
fcdeb7fe 1913
fcdeb7fe 1914/*
79d1c712 1915 * of_update_property - Update a property in a node, if the property does
475d0094 1916 * not exist, add it.
fcdeb7fe 1917 *
02af11b0
GL
1918 * Note that we don't actually remove it, since we have given out
1919 * who-knows-how-many pointers to the data using get-property.
1920 * Instead we just move the property to the "dead properties" list,
1921 * and add the new property to the property list
fcdeb7fe 1922 */
79d1c712 1923int of_update_property(struct device_node *np, struct property *newprop)
fcdeb7fe 1924{
d8c50088 1925 struct property *oldprop;
fcdeb7fe 1926 unsigned long flags;
1cf3d8b3
NF
1927 int rc;
1928
d8c50088
PA
1929 if (!newprop->name)
1930 return -EINVAL;
1cf3d8b3 1931
8a2b22a2 1932 mutex_lock(&of_mutex);
fcdeb7fe 1933
d6d3c4e6 1934 raw_spin_lock_irqsave(&devtree_lock, flags);
d8c50088 1935 rc = __of_update_property(np, newprop, &oldprop);
d6d3c4e6 1936 raw_spin_unlock_irqrestore(&devtree_lock, flags);
fcdeb7fe 1937
8a2b22a2
GL
1938 if (!rc)
1939 __of_update_property_sysfs(np, newprop, oldprop);
fcdeb7fe 1940
8a2b22a2 1941 mutex_unlock(&of_mutex);
fcdeb7fe 1942
259092a3
GL
1943 if (!rc)
1944 of_property_notify(OF_RECONFIG_UPDATE_PROPERTY, np, newprop, oldprop);
e81b3295 1945
1cf3d8b3 1946 return rc;
fcdeb7fe 1947}
fcdeb7fe 1948
611cad72
SG
1949static void of_alias_add(struct alias_prop *ap, struct device_node *np,
1950 int id, const char *stem, int stem_len)
1951{
1952 ap->np = np;
1953 ap->id = id;
1954 strncpy(ap->stem, stem, stem_len);
1955 ap->stem[stem_len] = 0;
1956 list_add_tail(&ap->link, &aliases_lookup);
1957 pr_debug("adding DT alias:%s: stem=%s id=%i node=%s\n",
74a7f084 1958 ap->alias, ap->stem, ap->id, of_node_full_name(np));
611cad72
SG
1959}
1960
1961/**
1821dda4 1962 * of_alias_scan - Scan all properties of the 'aliases' node
611cad72 1963 *
1821dda4
GU
1964 * The function scans all the properties of the 'aliases' node and populates
1965 * the global lookup table with the properties. It returns the
1966 * number of alias properties found, or an error code in case of failure.
611cad72
SG
1967 *
1968 * @dt_alloc: An allocator that provides a virtual address to memory
1821dda4 1969 * for storing the resulting tree
611cad72
SG
1970 */
1971void of_alias_scan(void * (*dt_alloc)(u64 size, u64 align))
1972{
1973 struct property *pp;
1974
7dbe5849 1975 of_aliases = of_find_node_by_path("/aliases");
611cad72
SG
1976 of_chosen = of_find_node_by_path("/chosen");
1977 if (of_chosen == NULL)
1978 of_chosen = of_find_node_by_path("/chosen@0");
5c19e952
SH
1979
1980 if (of_chosen) {
a752ee56 1981 /* linux,stdout-path and /aliases/stdout are for legacy compatibility */
676e1b2f
GL
1982 const char *name = of_get_property(of_chosen, "stdout-path", NULL);
1983 if (!name)
1984 name = of_get_property(of_chosen, "linux,stdout-path", NULL);
a752ee56
GL
1985 if (IS_ENABLED(CONFIG_PPC) && !name)
1986 name = of_get_property(of_aliases, "stdout", NULL);
f64255b5 1987 if (name)
7914a7c5 1988 of_stdout = of_find_node_opts_by_path(name, &of_stdout_options);
5c19e952
SH
1989 }
1990
611cad72
SG
1991 if (!of_aliases)
1992 return;
1993
8af0da93 1994 for_each_property_of_node(of_aliases, pp) {
611cad72
SG
1995 const char *start = pp->name;
1996 const char *end = start + strlen(start);
1997 struct device_node *np;
1998 struct alias_prop *ap;
1999 int id, len;
2000
2001 /* Skip those we do not want to proceed */
2002 if (!strcmp(pp->name, "name") ||
2003 !strcmp(pp->name, "phandle") ||
2004 !strcmp(pp->name, "linux,phandle"))
2005 continue;
2006
2007 np = of_find_node_by_path(pp->value);
2008 if (!np)
2009 continue;
2010
2011 /* walk the alias backwards to extract the id and work out
2012 * the 'stem' string */
2013 while (isdigit(*(end-1)) && end > start)
2014 end--;
2015 len = end - start;
2016
2017 if (kstrtoint(end, 10, &id) < 0)
2018 continue;
2019
2020 /* Allocate an alias_prop with enough space for the stem */
2021 ap = dt_alloc(sizeof(*ap) + len + 1, 4);
2022 if (!ap)
2023 continue;
0640332e 2024 memset(ap, 0, sizeof(*ap) + len + 1);
611cad72
SG
2025 ap->alias = start;
2026 of_alias_add(ap, np, id, start, len);
2027 }
2028}
2029
2030/**
2031 * of_alias_get_id - Get alias id for the given device_node
2032 * @np: Pointer to the given device_node
2033 * @stem: Alias stem of the given device_node
2034 *
5a53a07f
GU
2035 * The function travels the lookup table to get the alias id for the given
2036 * device_node and alias stem. It returns the alias id if found.
611cad72
SG
2037 */
2038int of_alias_get_id(struct device_node *np, const char *stem)
2039{
2040 struct alias_prop *app;
2041 int id = -ENODEV;
2042
c05aba2b 2043 mutex_lock(&of_mutex);
611cad72
SG
2044 list_for_each_entry(app, &aliases_lookup, link) {
2045 if (strcmp(app->stem, stem) != 0)
2046 continue;
2047
2048 if (np == app->np) {
2049 id = app->id;
2050 break;
2051 }
2052 }
c05aba2b 2053 mutex_unlock(&of_mutex);
611cad72
SG
2054
2055 return id;
2056}
2057EXPORT_SYMBOL_GPL(of_alias_get_id);
c541adc6 2058
351d224f
WS
2059/**
2060 * of_alias_get_highest_id - Get highest alias id for the given stem
2061 * @stem: Alias stem to be examined
2062 *
2063 * The function travels the lookup table to get the highest alias id for the
2064 * given alias stem. It returns the alias id if found.
2065 */
2066int of_alias_get_highest_id(const char *stem)
2067{
2068 struct alias_prop *app;
2069 int id = -ENODEV;
2070
2071 mutex_lock(&of_mutex);
2072 list_for_each_entry(app, &aliases_lookup, link) {
2073 if (strcmp(app->stem, stem) != 0)
2074 continue;
2075
2076 if (app->id > id)
2077 id = app->id;
2078 }
2079 mutex_unlock(&of_mutex);
2080
2081 return id;
2082}
2083EXPORT_SYMBOL_GPL(of_alias_get_highest_id);
2084
c541adc6
SW
2085const __be32 *of_prop_next_u32(struct property *prop, const __be32 *cur,
2086 u32 *pu)
2087{
2088 const void *curv = cur;
2089
2090 if (!prop)
2091 return NULL;
2092
2093 if (!cur) {
2094 curv = prop->value;
2095 goto out_val;
2096 }
2097
2098 curv += sizeof(*cur);
2099 if (curv >= prop->value + prop->length)
2100 return NULL;
2101
2102out_val:
2103 *pu = be32_to_cpup(curv);
2104 return curv;
2105}
2106EXPORT_SYMBOL_GPL(of_prop_next_u32);
2107
2108const char *of_prop_next_string(struct property *prop, const char *cur)
2109{
2110 const void *curv = cur;
2111
2112 if (!prop)
2113 return NULL;
2114
2115 if (!cur)
2116 return prop->value;
2117
2118 curv += strlen(cur) + 1;
2119 if (curv >= prop->value + prop->length)
2120 return NULL;
2121
2122 return curv;
2123}
2124EXPORT_SYMBOL_GPL(of_prop_next_string);
5c19e952
SH
2125
2126/**
3482f2c5
GL
2127 * of_console_check() - Test and setup console for DT setup
2128 * @dn - Pointer to device node
2129 * @name - Name to use for preferred console without index. ex. "ttyS"
2130 * @index - Index to use for preferred console.
2131 *
2132 * Check if the given device node matches the stdout-path property in the
2133 * /chosen node. If it does then register it as the preferred console and return
2134 * TRUE. Otherwise return FALSE.
5c19e952 2135 */
3482f2c5 2136bool of_console_check(struct device_node *dn, char *name, int index)
5c19e952 2137{
3482f2c5 2138 if (!dn || dn != of_stdout || console_set_on_cmdline)
5c19e952 2139 return false;
7914a7c5
LL
2140 return !add_preferred_console(name, index,
2141 kstrdup(of_stdout_options, GFP_KERNEL));
5c19e952 2142}
3482f2c5 2143EXPORT_SYMBOL_GPL(of_console_check);
a3e31b45
SK
2144
2145/**
2146 * of_find_next_cache_node - Find a node's subsidiary cache
2147 * @np: node of type "cpu" or "cache"
2148 *
2149 * Returns a node pointer with refcount incremented, use
2150 * of_node_put() on it when done. Caller should hold a reference
2151 * to np.
2152 */
2153struct device_node *of_find_next_cache_node(const struct device_node *np)
2154{
2155 struct device_node *child;
2156 const phandle *handle;
2157
2158 handle = of_get_property(np, "l2-cache", NULL);
2159 if (!handle)
2160 handle = of_get_property(np, "next-level-cache", NULL);
2161
2162 if (handle)
2163 return of_find_node_by_phandle(be32_to_cpup(handle));
2164
2165 /* OF on pmac has nodes instead of properties named "l2-cache"
2166 * beneath CPU nodes.
2167 */
2168 if (!strcmp(np->type, "cpu"))
2169 for_each_child_of_node(np, child)
2170 if (!strcmp(child->type, "cache"))
2171 return child;
2172
2173 return NULL;
2174}
fd9fdb78 2175
f2a575f6
PZ
2176/**
2177 * of_graph_parse_endpoint() - parse common endpoint node properties
2178 * @node: pointer to endpoint device_node
2179 * @endpoint: pointer to the OF endpoint data structure
2180 *
2181 * The caller should hold a reference to @node.
2182 */
2183int of_graph_parse_endpoint(const struct device_node *node,
2184 struct of_endpoint *endpoint)
2185{
2186 struct device_node *port_node = of_get_parent(node);
2187
d484700a
PZ
2188 WARN_ONCE(!port_node, "%s(): endpoint %s has no parent node\n",
2189 __func__, node->full_name);
2190
f2a575f6
PZ
2191 memset(endpoint, 0, sizeof(*endpoint));
2192
2193 endpoint->local_node = node;
2194 /*
2195 * It doesn't matter whether the two calls below succeed.
2196 * If they don't then the default value 0 is used.
2197 */
2198 of_property_read_u32(port_node, "reg", &endpoint->port);
2199 of_property_read_u32(node, "reg", &endpoint->id);
2200
2201 of_node_put(port_node);
2202
2203 return 0;
2204}
2205EXPORT_SYMBOL(of_graph_parse_endpoint);
2206
bfe446e3
PZ
2207/**
2208 * of_graph_get_port_by_id() - get the port matching a given id
2209 * @parent: pointer to the parent device node
2210 * @id: id of the port
2211 *
2212 * Return: A 'port' node pointer with refcount incremented. The caller
2213 * has to use of_node_put() on it when done.
2214 */
2215struct device_node *of_graph_get_port_by_id(struct device_node *parent, u32 id)
2216{
2217 struct device_node *node, *port;
2218
2219 node = of_get_child_by_name(parent, "ports");
2220 if (node)
2221 parent = node;
2222
2223 for_each_child_of_node(parent, port) {
2224 u32 port_id = 0;
2225
2226 if (of_node_cmp(port->name, "port") != 0)
2227 continue;
2228 of_property_read_u32(port, "reg", &port_id);
2229 if (id == port_id)
2230 break;
2231 }
2232
2233 of_node_put(node);
2234
2235 return port;
2236}
2237EXPORT_SYMBOL(of_graph_get_port_by_id);
2238
fd9fdb78
PZ
2239/**
2240 * of_graph_get_next_endpoint() - get next endpoint node
2241 * @parent: pointer to the parent device node
2242 * @prev: previous endpoint node, or NULL to get first
2243 *
2244 * Return: An 'endpoint' node pointer with refcount incremented. Refcount
f033c0bc 2245 * of the passed @prev node is decremented.
fd9fdb78
PZ
2246 */
2247struct device_node *of_graph_get_next_endpoint(const struct device_node *parent,
2248 struct device_node *prev)
2249{
2250 struct device_node *endpoint;
3c83e61e 2251 struct device_node *port;
fd9fdb78
PZ
2252
2253 if (!parent)
2254 return NULL;
2255
3c83e61e
LT
2256 /*
2257 * Start by locating the port node. If no previous endpoint is specified
2258 * search for the first port node, otherwise get the previous endpoint
2259 * parent port node.
2260 */
fd9fdb78
PZ
2261 if (!prev) {
2262 struct device_node *node;
3c83e61e 2263
fd9fdb78
PZ
2264 node = of_get_child_by_name(parent, "ports");
2265 if (node)
2266 parent = node;
2267
2268 port = of_get_child_by_name(parent, "port");
fd9fdb78 2269 of_node_put(node);
fd9fdb78 2270
3c83e61e
LT
2271 if (!port) {
2272 pr_err("%s(): no port node found in %s\n",
2273 __func__, parent->full_name);
2274 return NULL;
2275 }
2276 } else {
2277 port = of_get_parent(prev);
2278 if (WARN_ONCE(!port, "%s(): endpoint %s has no parent node\n",
2279 __func__, prev->full_name))
2280 return NULL;
fd9fdb78
PZ
2281 }
2282
3c83e61e
LT
2283 while (1) {
2284 /*
2285 * Now that we have a port node, get the next endpoint by
2286 * getting the next child. If the previous endpoint is NULL this
2287 * will return the first child.
2288 */
2289 endpoint = of_get_next_child(port, prev);
2290 if (endpoint) {
2291 of_node_put(port);
2292 return endpoint;
2293 }
4329b93b 2294
3c83e61e
LT
2295 /* No more endpoints under this port, try the next one. */
2296 prev = NULL;
4329b93b 2297
3c83e61e
LT
2298 do {
2299 port = of_get_next_child(parent, port);
2300 if (!port)
2301 return NULL;
2302 } while (of_node_cmp(port->name, "port"));
2303 }
fd9fdb78
PZ
2304}
2305EXPORT_SYMBOL(of_graph_get_next_endpoint);
2306
8ccd0d0c
HH
2307/**
2308 * of_graph_get_endpoint_by_regs() - get endpoint node of specific identifiers
2309 * @parent: pointer to the parent device node
2310 * @port_reg: identifier (value of reg property) of the parent port node
2311 * @reg: identifier (value of reg property) of the endpoint node
2312 *
2313 * Return: An 'endpoint' node pointer which is identified by reg and at the same
2314 * is the child of a port node identified by port_reg. reg and port_reg are
2315 * ignored when they are -1.
2316 */
2317struct device_node *of_graph_get_endpoint_by_regs(
2318 const struct device_node *parent, int port_reg, int reg)
2319{
2320 struct of_endpoint endpoint;
2321 struct device_node *node, *prev_node = NULL;
2322
2323 while (1) {
2324 node = of_graph_get_next_endpoint(parent, prev_node);
2325 of_node_put(prev_node);
2326 if (!node)
2327 break;
2328
2329 of_graph_parse_endpoint(node, &endpoint);
2330 if (((port_reg == -1) || (endpoint.port == port_reg)) &&
2331 ((reg == -1) || (endpoint.id == reg)))
2332 return node;
2333
2334 prev_node = node;
2335 }
2336
2337 return NULL;
2338}
8ffaa903 2339EXPORT_SYMBOL(of_graph_get_endpoint_by_regs);
8ccd0d0c 2340
fd9fdb78
PZ
2341/**
2342 * of_graph_get_remote_port_parent() - get remote port's parent node
2343 * @node: pointer to a local endpoint device_node
2344 *
2345 * Return: Remote device node associated with remote endpoint node linked
2346 * to @node. Use of_node_put() on it when done.
2347 */
2348struct device_node *of_graph_get_remote_port_parent(
2349 const struct device_node *node)
2350{
2351 struct device_node *np;
2352 unsigned int depth;
2353
2354 /* Get remote endpoint node. */
2355 np = of_parse_phandle(node, "remote-endpoint", 0);
2356
2357 /* Walk 3 levels up only if there is 'ports' node. */
2358 for (depth = 3; depth && np; depth--) {
2359 np = of_get_next_parent(np);
2360 if (depth == 2 && of_node_cmp(np->name, "ports"))
2361 break;
2362 }
2363 return np;
2364}
2365EXPORT_SYMBOL(of_graph_get_remote_port_parent);
2366
2367/**
2368 * of_graph_get_remote_port() - get remote port node
2369 * @node: pointer to a local endpoint device_node
2370 *
2371 * Return: Remote port node associated with remote endpoint node linked
2372 * to @node. Use of_node_put() on it when done.
2373 */
2374struct device_node *of_graph_get_remote_port(const struct device_node *node)
2375{
2376 struct device_node *np;
2377
2378 /* Get remote endpoint node. */
2379 np = of_parse_phandle(node, "remote-endpoint", 0);
2380 if (!np)
2381 return NULL;
2382 return of_get_next_parent(np);
2383}
2384EXPORT_SYMBOL(of_graph_get_remote_port);