of: Make of_fwnode_handle() safer
[linux-2.6-block.git] / include / linux / of.h
CommitLineData
76c1ce78
SR
1#ifndef _LINUX_OF_H
2#define _LINUX_OF_H
3/*
4 * Definitions for talking to the Open Firmware PROM on
5 * Power Macintosh and other computers.
6 *
7 * Copyright (C) 1996-2005 Paul Mackerras.
8 *
9 * Updates for PPC64 by Peter Bergner & David Engebretsen, IBM Corp.
10 * Updates for SPARC64 by David S. Miller
11 * Derived from PowerPC and Sparc prom.h files by Stephen Rothwell, IBM Corp.
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version
16 * 2 of the License, or (at your option) any later version.
17 */
18#include <linux/types.h>
1977f032 19#include <linux/bitops.h>
e51130c0 20#include <linux/errno.h>
75b57ecf 21#include <linux/kobject.h>
283029d1 22#include <linux/mod_devicetable.h>
0d351c3e 23#include <linux/spinlock.h>
5ca4db61 24#include <linux/topology.h>
1cf3d8b3 25#include <linux/notifier.h>
b31384fa 26#include <linux/property.h>
7518b589 27#include <linux/list.h>
76c1ce78 28
2e89e685 29#include <asm/byteorder.h>
d0a99402 30#include <asm/errno.h>
2e89e685 31
731581e6
GL
32typedef u32 phandle;
33typedef u32 ihandle;
34
35struct property {
36 char *name;
37 int length;
38 void *value;
39 struct property *next;
40 unsigned long _flags;
41 unsigned int unique_id;
75b57ecf 42 struct bin_attribute attr;
731581e6
GL
43};
44
6f192492
GL
45#if defined(CONFIG_SPARC)
46struct of_irq_controller;
47#endif
48
49struct device_node {
50 const char *name;
51 const char *type;
6016a363 52 phandle phandle;
c22618a1 53 const char *full_name;
8a0662d9 54 struct fwnode_handle fwnode;
6f192492
GL
55
56 struct property *properties;
57 struct property *deadprops; /* removed properties */
58 struct device_node *parent;
59 struct device_node *child;
60 struct device_node *sibling;
75b57ecf 61 struct kobject kobj;
6f192492
GL
62 unsigned long _flags;
63 void *data;
64#if defined(CONFIG_SPARC)
c22618a1 65 const char *path_component_name;
6f192492
GL
66 unsigned int unique_id;
67 struct of_irq_controller *irq_trans;
68#endif
69};
70
b66548e2 71#define MAX_PHANDLE_ARGS 16
15c9a0ac
GL
72struct of_phandle_args {
73 struct device_node *np;
74 int args_count;
75 uint32_t args[MAX_PHANDLE_ARGS];
76};
77
74e1fbb1
JR
78struct of_phandle_iterator {
79 /* Common iterator information */
80 const char *cells_name;
81 int cell_count;
82 const struct device_node *parent;
83
84 /* List size information */
85 const __be32 *list_end;
86 const __be32 *phandle_end;
87
88 /* Current position state */
89 const __be32 *cur;
90 uint32_t cur_count;
91 phandle phandle;
92 struct device_node *node;
93};
94
f5242e5a
GL
95struct of_reconfig_data {
96 struct device_node *dn;
97 struct property *prop;
98 struct property *old_prop;
99};
100
0829f6d1
PA
101/* initialize a node */
102extern struct kobj_type of_node_ktype;
103static inline void of_node_init(struct device_node *node)
104{
105 kobject_init(&node->kobj, &of_node_ktype);
8a0662d9 106 node->fwnode.type = FWNODE_OF;
0829f6d1
PA
107}
108
109/* true when node is initialized */
110static inline int of_node_is_initialized(struct device_node *node)
111{
112 return node && node->kobj.state_initialized;
113}
114
115/* true when node is attached (i.e. present on sysfs) */
116static inline int of_node_is_attached(struct device_node *node)
117{
118 return node && node->kobj.state_in_sysfs;
119}
120
0f22dd39
GL
121#ifdef CONFIG_OF_DYNAMIC
122extern struct device_node *of_node_get(struct device_node *node);
123extern void of_node_put(struct device_node *node);
124#else /* CONFIG_OF_DYNAMIC */
3ecdd051
RH
125/* Dummy ref counting routines - to be implemented later */
126static inline struct device_node *of_node_get(struct device_node *node)
127{
128 return node;
129}
0f22dd39
GL
130static inline void of_node_put(struct device_node *node) { }
131#endif /* !CONFIG_OF_DYNAMIC */
3ecdd051 132
41f88009 133/* Pointer for first entry in chain of all nodes. */
5063e25a 134extern struct device_node *of_root;
fc0bdae4 135extern struct device_node *of_chosen;
611cad72 136extern struct device_node *of_aliases;
a752ee56 137extern struct device_node *of_stdout;
d6d3c4e6 138extern raw_spinlock_t devtree_lock;
41f88009 139
391b459d
PA
140/* flag descriptions (need to be visible even when !CONFIG_OF) */
141#define OF_DYNAMIC 1 /* node and properties were allocated via kmalloc */
142#define OF_DETACHED 2 /* node has been detached from the device tree */
143#define OF_POPULATED 3 /* device already created for the node */
144#define OF_POPULATED_BUS 4 /* of_platform_populate recursed to children of this node */
145
b1d06b60
GR
146#define OF_BAD_ADDR ((u64)-1)
147
6d09dc6b 148#ifdef CONFIG_OF
194ec936
SH
149void of_core_init(void);
150
8a0662d9
RW
151static inline bool is_of_node(struct fwnode_handle *fwnode)
152{
0224a4a3 153 return !IS_ERR_OR_NULL(fwnode) && fwnode->type == FWNODE_OF;
8a0662d9
RW
154}
155
c181fb3e 156static inline struct device_node *to_of_node(struct fwnode_handle *fwnode)
8a0662d9 157{
4bf01181
AS
158 return is_of_node(fwnode) ?
159 container_of(fwnode, struct device_node, fwnode) : NULL;
8a0662d9
RW
160}
161
debd3a3b
SA
162#define of_fwnode_handle(node) \
163 ({ \
164 typeof(node) __of_fwnode_handle_node = (node); \
165 \
166 __of_fwnode_handle_node ? \
167 &__of_fwnode_handle_node->fwnode : NULL; \
168 })
67831837 169
3bcbaf6e
SAS
170static inline bool of_have_populated_dt(void)
171{
5063e25a 172 return of_root != NULL;
3bcbaf6e
SAS
173}
174
035ebefc
AS
175static inline bool of_node_is_root(const struct device_node *node)
176{
177 return node && (node->parent == NULL);
178}
179
50436312
GL
180static inline int of_node_check_flag(struct device_node *n, unsigned long flag)
181{
182 return test_bit(flag, &n->_flags);
183}
184
c6e126de
PM
185static inline int of_node_test_and_set_flag(struct device_node *n,
186 unsigned long flag)
187{
188 return test_and_set_bit(flag, &n->_flags);
189}
190
50436312
GL
191static inline void of_node_set_flag(struct device_node *n, unsigned long flag)
192{
193 set_bit(flag, &n->_flags);
194}
195
588453c6
PA
196static inline void of_node_clear_flag(struct device_node *n, unsigned long flag)
197{
198 clear_bit(flag, &n->_flags);
199}
200
201static inline int of_property_check_flag(struct property *p, unsigned long flag)
202{
203 return test_bit(flag, &p->_flags);
204}
205
206static inline void of_property_set_flag(struct property *p, unsigned long flag)
207{
208 set_bit(flag, &p->_flags);
209}
210
211static inline void of_property_clear_flag(struct property *p, unsigned long flag)
212{
213 clear_bit(flag, &p->_flags);
214}
215
5063e25a 216extern struct device_node *__of_find_all_nodes(struct device_node *prev);
e91edcf5
GL
217extern struct device_node *of_find_all_nodes(struct device_node *prev);
218
b6caf2ad 219/*
3d6b8828 220 * OF address retrieval & translation
b6caf2ad
GL
221 */
222
223/* Helper to read a big number; size is in cells (not bytes) */
2e89e685 224static inline u64 of_read_number(const __be32 *cell, int size)
b6caf2ad
GL
225{
226 u64 r = 0;
227 while (size--)
2e89e685 228 r = (r << 32) | be32_to_cpu(*(cell++));
b6caf2ad
GL
229 return r;
230}
231
232/* Like of_read_number, but we want an unsigned long result */
2e89e685 233static inline unsigned long of_read_ulong(const __be32 *cell, int size)
b6caf2ad 234{
2be09cb9
GL
235 /* toss away upper bits if unsigned long is smaller than u64 */
236 return of_read_number(cell, size);
b6caf2ad 237}
b6caf2ad 238
b5b4bb3f 239#if defined(CONFIG_SPARC)
76c1ce78 240#include <asm/prom.h>
b5b4bb3f 241#endif
76c1ce78 242
7c7b60cb
GL
243/* Default #address and #size cells. Allow arch asm/prom.h to override */
244#if !defined(OF_ROOT_NODE_ADDR_CELLS_DEFAULT)
245#define OF_ROOT_NODE_ADDR_CELLS_DEFAULT 1
246#define OF_ROOT_NODE_SIZE_CELLS_DEFAULT 1
247#endif
248
61e955db
GL
249#define OF_IS_DYNAMIC(x) test_bit(OF_DYNAMIC, &x->_flags)
250#define OF_MARK_DYNAMIC(x) set_bit(OF_DYNAMIC, &x->_flags)
251
c0a05bf0 252static inline const char *of_node_full_name(const struct device_node *np)
74a7f084
GL
253{
254 return np ? np->full_name : "<no-node>";
255}
256
5063e25a
GL
257#define for_each_of_allnodes_from(from, dn) \
258 for (dn = __of_find_all_nodes(from); dn; dn = __of_find_all_nodes(dn))
259#define for_each_of_allnodes(dn) for_each_of_allnodes_from(NULL, dn)
76c1ce78
SR
260extern struct device_node *of_find_node_by_name(struct device_node *from,
261 const char *name);
76c1ce78
SR
262extern struct device_node *of_find_node_by_type(struct device_node *from,
263 const char *type);
76c1ce78
SR
264extern struct device_node *of_find_compatible_node(struct device_node *from,
265 const char *type, const char *compat);
50c8af4c
SW
266extern struct device_node *of_find_matching_node_and_match(
267 struct device_node *from,
268 const struct of_device_id *matches,
269 const struct of_device_id **match);
662372e4 270
75c28c09
LL
271extern struct device_node *of_find_node_opts_by_path(const char *path,
272 const char **opts);
273static inline struct device_node *of_find_node_by_path(const char *path)
274{
275 return of_find_node_opts_by_path(path, NULL);
276}
277
76c1ce78
SR
278extern struct device_node *of_find_node_by_phandle(phandle handle);
279extern struct device_node *of_get_parent(const struct device_node *node);
f4eb0107 280extern struct device_node *of_get_next_parent(struct device_node *node);
76c1ce78
SR
281extern struct device_node *of_get_next_child(const struct device_node *node,
282 struct device_node *prev);
3296193d
TT
283extern struct device_node *of_get_next_available_child(
284 const struct device_node *node, struct device_node *prev);
285
9c19761a
SK
286extern struct device_node *of_get_child_by_name(const struct device_node *node,
287 const char *name);
954e04b9 288
a3e31b45
SK
289/* cache lookup */
290extern struct device_node *of_find_next_cache_node(const struct device_node *);
5fa23530 291extern int of_find_last_cache_level(unsigned int cpu);
1e291b14
ME
292extern struct device_node *of_find_node_with_property(
293 struct device_node *from, const char *prop_name);
1e291b14 294
76c1ce78
SR
295extern struct property *of_find_property(const struct device_node *np,
296 const char *name,
297 int *lenp);
ad54a0cf
HS
298extern int of_property_count_elems_of_size(const struct device_node *np,
299 const char *propname, int elem_size);
3daf3726
TP
300extern int of_property_read_u32_index(const struct device_node *np,
301 const char *propname,
302 u32 index, u32 *out_value);
2475a2b6
AP
303extern int of_property_read_u64_index(const struct device_node *np,
304 const char *propname,
305 u32 index, u64 *out_value);
a67e9472
RF
306extern int of_property_read_variable_u8_array(const struct device_node *np,
307 const char *propname, u8 *out_values,
308 size_t sz_min, size_t sz_max);
309extern int of_property_read_variable_u16_array(const struct device_node *np,
310 const char *propname, u16 *out_values,
311 size_t sz_min, size_t sz_max);
312extern int of_property_read_variable_u32_array(const struct device_node *np,
313 const char *propname,
314 u32 *out_values,
315 size_t sz_min,
316 size_t sz_max);
4cd7f7a3
JI
317extern int of_property_read_u64(const struct device_node *np,
318 const char *propname, u64 *out_value);
a67e9472
RF
319extern int of_property_read_variable_u64_array(const struct device_node *np,
320 const char *propname,
321 u64 *out_values,
322 size_t sz_min,
323 size_t sz_max);
0e373639 324
fe99c707 325extern int of_property_read_string(const struct device_node *np,
aac285c6
JI
326 const char *propname,
327 const char **out_string);
fe99c707 328extern int of_property_match_string(const struct device_node *np,
7aff0fe3
GL
329 const char *propname,
330 const char *string);
fe99c707 331extern int of_property_read_string_helper(const struct device_node *np,
a87fa1d8
GL
332 const char *propname,
333 const char **out_strs, size_t sz, int index);
76c1ce78
SR
334extern int of_device_is_compatible(const struct device_node *device,
335 const char *);
b9c13fe3
BH
336extern int of_device_compatible_match(struct device_node *device,
337 const char *const *compat);
53a4ab96 338extern bool of_device_is_available(const struct device_node *device);
37786c7f 339extern bool of_device_is_big_endian(const struct device_node *device);
76c1ce78
SR
340extern const void *of_get_property(const struct device_node *node,
341 const char *name,
342 int *lenp);
183912d3 343extern struct device_node *of_get_cpu_node(int cpu, unsigned int *thread);
8af0da93
DA
344#define for_each_property_of_node(dn, pp) \
345 for (pp = dn->properties; pp != NULL; pp = pp->next)
611cad72 346
76c1ce78
SR
347extern int of_n_addr_cells(struct device_node *np);
348extern int of_n_size_cells(struct device_node *np);
283029d1
GL
349extern const struct of_device_id *of_match_node(
350 const struct of_device_id *matches, const struct device_node *node);
3f07af49 351extern int of_modalias_node(struct device_node *node, char *modalias, int len);
624cfca5 352extern void of_print_phandle_args(const char *msg, const struct of_phandle_args *args);
b8fbdc42 353extern struct device_node *of_parse_phandle(const struct device_node *np,
739649c5
GL
354 const char *phandle_name,
355 int index);
93c667ca 356extern int of_parse_phandle_with_args(const struct device_node *np,
64b60e09 357 const char *list_name, const char *cells_name, int index,
15c9a0ac 358 struct of_phandle_args *out_args);
035fd948
SW
359extern int of_parse_phandle_with_fixed_args(const struct device_node *np,
360 const char *list_name, int cells_count, int index,
361 struct of_phandle_args *out_args);
bd69f73f
GL
362extern int of_count_phandle_with_args(const struct device_node *np,
363 const char *list_name, const char *cells_name);
76c1ce78 364
74e1fbb1
JR
365/* phandle iterator functions */
366extern int of_phandle_iterator_init(struct of_phandle_iterator *it,
367 const struct device_node *np,
368 const char *list_name,
369 const char *cells_name,
370 int cell_count);
371
cd209b41 372extern int of_phandle_iterator_next(struct of_phandle_iterator *it);
abdaa77b
JR
373extern int of_phandle_iterator_args(struct of_phandle_iterator *it,
374 uint32_t *args,
375 int size);
cd209b41 376
611cad72
SG
377extern void of_alias_scan(void * (*dt_alloc)(u64 size, u64 align));
378extern int of_alias_get_id(struct device_node *np, const char *stem);
351d224f 379extern int of_alias_get_highest_id(const char *stem);
611cad72 380
21b082ec
GL
381extern int of_machine_is_compatible(const char *compat);
382
79d1c712
NF
383extern int of_add_property(struct device_node *np, struct property *prop);
384extern int of_remove_property(struct device_node *np, struct property *prop);
385extern int of_update_property(struct device_node *np, struct property *newprop);
21b082ec 386
fcdeb7fe 387/* For updating the device tree at runtime */
1cf3d8b3
NF
388#define OF_RECONFIG_ATTACH_NODE 0x0001
389#define OF_RECONFIG_DETACH_NODE 0x0002
390#define OF_RECONFIG_ADD_PROPERTY 0x0003
391#define OF_RECONFIG_REMOVE_PROPERTY 0x0004
392#define OF_RECONFIG_UPDATE_PROPERTY 0x0005
393
1cf3d8b3
NF
394extern int of_attach_node(struct device_node *);
395extern int of_detach_node(struct device_node *);
fcdeb7fe 396
3a1e362e 397#define of_match_ptr(_ptr) (_ptr)
c541adc6 398
a67e9472
RF
399/**
400 * of_property_read_u8_array - Find and read an array of u8 from a property.
401 *
402 * @np: device node from which the property value is to be read.
403 * @propname: name of the property to be searched.
404 * @out_values: pointer to return value, modified only if return value is 0.
405 * @sz: number of array elements to read
406 *
407 * Search for a property in a device node and read 8-bit value(s) from
408 * it. Returns 0 on success, -EINVAL if the property does not exist,
409 * -ENODATA if property does not have a value, and -EOVERFLOW if the
410 * property data isn't large enough.
411 *
412 * dts entry of array should be like:
413 * property = /bits/ 8 <0x50 0x60 0x70>;
414 *
415 * The out_values is modified only if a valid u8 value can be decoded.
416 */
417static inline int of_property_read_u8_array(const struct device_node *np,
418 const char *propname,
419 u8 *out_values, size_t sz)
420{
421 int ret = of_property_read_variable_u8_array(np, propname, out_values,
422 sz, 0);
423 if (ret >= 0)
424 return 0;
425 else
426 return ret;
427}
428
429/**
430 * of_property_read_u16_array - Find and read an array of u16 from a property.
431 *
432 * @np: device node from which the property value is to be read.
433 * @propname: name of the property to be searched.
434 * @out_values: pointer to return value, modified only if return value is 0.
435 * @sz: number of array elements to read
436 *
437 * Search for a property in a device node and read 16-bit value(s) from
438 * it. Returns 0 on success, -EINVAL if the property does not exist,
439 * -ENODATA if property does not have a value, and -EOVERFLOW if the
440 * property data isn't large enough.
441 *
442 * dts entry of array should be like:
443 * property = /bits/ 16 <0x5000 0x6000 0x7000>;
444 *
445 * The out_values is modified only if a valid u16 value can be decoded.
446 */
447static inline int of_property_read_u16_array(const struct device_node *np,
448 const char *propname,
449 u16 *out_values, size_t sz)
450{
451 int ret = of_property_read_variable_u16_array(np, propname, out_values,
452 sz, 0);
453 if (ret >= 0)
454 return 0;
455 else
456 return ret;
457}
458
459/**
460 * of_property_read_u32_array - Find and read an array of 32 bit integers
461 * from a property.
462 *
463 * @np: device node from which the property value is to be read.
464 * @propname: name of the property to be searched.
465 * @out_values: pointer to return value, modified only if return value is 0.
466 * @sz: number of array elements to read
467 *
468 * Search for a property in a device node and read 32-bit value(s) from
469 * it. Returns 0 on success, -EINVAL if the property does not exist,
470 * -ENODATA if property does not have a value, and -EOVERFLOW if the
471 * property data isn't large enough.
472 *
473 * The out_values is modified only if a valid u32 value can be decoded.
474 */
475static inline int of_property_read_u32_array(const struct device_node *np,
476 const char *propname,
477 u32 *out_values, size_t sz)
478{
479 int ret = of_property_read_variable_u32_array(np, propname, out_values,
480 sz, 0);
481 if (ret >= 0)
482 return 0;
483 else
484 return ret;
485}
486
487/**
488 * of_property_read_u64_array - Find and read an array of 64 bit integers
489 * from a property.
490 *
491 * @np: device node from which the property value is to be read.
492 * @propname: name of the property to be searched.
493 * @out_values: pointer to return value, modified only if return value is 0.
494 * @sz: number of array elements to read
495 *
496 * Search for a property in a device node and read 64-bit value(s) from
497 * it. Returns 0 on success, -EINVAL if the property does not exist,
498 * -ENODATA if property does not have a value, and -EOVERFLOW if the
499 * property data isn't large enough.
500 *
501 * The out_values is modified only if a valid u64 value can be decoded.
502 */
503static inline int of_property_read_u64_array(const struct device_node *np,
504 const char *propname,
505 u64 *out_values, size_t sz)
506{
507 int ret = of_property_read_variable_u64_array(np, propname, out_values,
508 sz, 0);
509 if (ret >= 0)
510 return 0;
511 else
512 return ret;
513}
514
c541adc6
SW
515/*
516 * struct property *prop;
517 * const __be32 *p;
518 * u32 u;
519 *
520 * of_property_for_each_u32(np, "propname", prop, p, u)
521 * printk("U32 value: %x\n", u);
522 */
523const __be32 *of_prop_next_u32(struct property *prop, const __be32 *cur,
524 u32 *pu);
c541adc6
SW
525/*
526 * struct property *prop;
527 * const char *s;
528 *
529 * of_property_for_each_string(np, "propname", prop, s)
530 * printk("String value: %s\n", s);
531 */
532const char *of_prop_next_string(struct property *prop, const char *cur);
c541adc6 533
3482f2c5 534bool of_console_check(struct device_node *dn, char *name, int index);
5c19e952 535
b98c0239 536#else /* CONFIG_OF */
3bcbaf6e 537
194ec936
SH
538static inline void of_core_init(void)
539{
540}
541
8a0662d9
RW
542static inline bool is_of_node(struct fwnode_handle *fwnode)
543{
544 return false;
545}
546
c181fb3e 547static inline struct device_node *to_of_node(struct fwnode_handle *fwnode)
8a0662d9
RW
548{
549 return NULL;
550}
551
4c358e15 552static inline const char* of_node_full_name(const struct device_node *np)
74a7f084
GL
553{
554 return "<no-node>";
555}
556
1cc44f43
PU
557static inline struct device_node *of_find_node_by_name(struct device_node *from,
558 const char *name)
559{
560 return NULL;
561}
562
662372e4
RH
563static inline struct device_node *of_find_node_by_type(struct device_node *from,
564 const char *type)
066ec1dd
AS
565{
566 return NULL;
567}
568
662372e4
RH
569static inline struct device_node *of_find_matching_node_and_match(
570 struct device_node *from,
571 const struct of_device_id *matches,
572 const struct of_device_id **match)
3bcbaf6e 573{
662372e4 574 return NULL;
3bcbaf6e
SAS
575}
576
20cd477c
AS
577static inline struct device_node *of_find_node_by_path(const char *path)
578{
579 return NULL;
580}
581
75c28c09
LL
582static inline struct device_node *of_find_node_opts_by_path(const char *path,
583 const char **opts)
584{
585 return NULL;
586}
587
ce16b9d2
SA
588static inline struct device_node *of_find_node_by_phandle(phandle handle)
589{
590 return NULL;
591}
592
662372e4 593static inline struct device_node *of_get_parent(const struct device_node *node)
00b2c76a 594{
662372e4 595 return NULL;
00b2c76a
DH
596}
597
662372e4
RH
598static inline struct device_node *of_get_next_child(
599 const struct device_node *node, struct device_node *prev)
600{
601 return NULL;
602}
aba3dfff 603
662372e4
RH
604static inline struct device_node *of_get_next_available_child(
605 const struct device_node *node, struct device_node *prev)
606{
607 return NULL;
608}
f6f0747e 609
662372e4
RH
610static inline struct device_node *of_find_node_with_property(
611 struct device_node *from, const char *prop_name)
25c040c9
OJ
612{
613 return NULL;
614}
615
67831837
SA
616#define of_fwnode_handle(node) NULL
617
662372e4 618static inline bool of_have_populated_dt(void)
183f1d0c 619{
662372e4 620 return false;
183f1d0c
DA
621}
622
662372e4
RH
623static inline struct device_node *of_get_child_by_name(
624 const struct device_node *node,
625 const char *name)
954e04b9 626{
662372e4 627 return NULL;
954e04b9
BW
628}
629
36a0904e
RN
630static inline int of_device_is_compatible(const struct device_node *device,
631 const char *name)
632{
633 return 0;
634}
635
53a4ab96 636static inline bool of_device_is_available(const struct device_node *device)
d7195696 637{
53a4ab96 638 return false;
d7195696
RH
639}
640
37786c7f
KC
641static inline bool of_device_is_big_endian(const struct device_node *device)
642{
643 return false;
d7195696
RH
644}
645
aba3dfff
SW
646static inline struct property *of_find_property(const struct device_node *np,
647 const char *name,
648 int *lenp)
649{
650 return NULL;
651}
652
2261cc62
SG
653static inline struct device_node *of_find_compatible_node(
654 struct device_node *from,
655 const char *type,
656 const char *compat)
657{
658 return NULL;
659}
660
ad54a0cf
HS
661static inline int of_property_count_elems_of_size(const struct device_node *np,
662 const char *propname, int elem_size)
663{
664 return -ENOSYS;
665}
666
3daf3726
TP
667static inline int of_property_read_u32_index(const struct device_node *np,
668 const char *propname, u32 index, u32 *out_value)
669{
670 return -ENOSYS;
671}
672
be193249
VK
673static inline int of_property_read_u8_array(const struct device_node *np,
674 const char *propname, u8 *out_values, size_t sz)
675{
676 return -ENOSYS;
677}
678
679static inline int of_property_read_u16_array(const struct device_node *np,
680 const char *propname, u16 *out_values, size_t sz)
681{
682 return -ENOSYS;
683}
684
b98c0239 685static inline int of_property_read_u32_array(const struct device_node *np,
aac285c6
JI
686 const char *propname,
687 u32 *out_values, size_t sz)
b98c0239
SG
688{
689 return -ENOSYS;
690}
691
b31384fa
RW
692static inline int of_property_read_u64_array(const struct device_node *np,
693 const char *propname,
694 u64 *out_values, size_t sz)
695{
696 return -ENOSYS;
697}
698
fe99c707 699static inline int of_property_read_string(const struct device_node *np,
aac285c6
JI
700 const char *propname,
701 const char **out_string)
b98c0239
SG
702{
703 return -ENOSYS;
704}
705
fe99c707 706static inline int of_property_read_string_helper(const struct device_node *np,
a87fa1d8
GL
707 const char *propname,
708 const char **out_strs, size_t sz, int index)
4fcd15a0
BC
709{
710 return -ENOSYS;
711}
712
89272b8c
SW
713static inline const void *of_get_property(const struct device_node *node,
714 const char *name,
715 int *lenp)
716{
717 return NULL;
718}
719
183912d3
SK
720static inline struct device_node *of_get_cpu_node(int cpu,
721 unsigned int *thread)
722{
723 return NULL;
724}
725
4cd7f7a3
JI
726static inline int of_property_read_u64(const struct device_node *np,
727 const char *propname, u64 *out_value)
728{
729 return -ENOSYS;
730}
731
fe99c707 732static inline int of_property_match_string(const struct device_node *np,
bd3d5500
TR
733 const char *propname,
734 const char *string)
735{
736 return -ENOSYS;
737}
738
b8fbdc42 739static inline struct device_node *of_parse_phandle(const struct device_node *np,
36a0904e
RN
740 const char *phandle_name,
741 int index)
742{
743 return NULL;
744}
745
e93aeeae 746static inline int of_parse_phandle_with_args(const struct device_node *np,
e05e5070
TR
747 const char *list_name,
748 const char *cells_name,
749 int index,
750 struct of_phandle_args *out_args)
751{
752 return -ENOSYS;
753}
754
035fd948
SW
755static inline int of_parse_phandle_with_fixed_args(const struct device_node *np,
756 const char *list_name, int cells_count, int index,
757 struct of_phandle_args *out_args)
758{
759 return -ENOSYS;
760}
761
bd69f73f
GL
762static inline int of_count_phandle_with_args(struct device_node *np,
763 const char *list_name,
764 const char *cells_name)
765{
766 return -ENOSYS;
767}
768
74e1fbb1
JR
769static inline int of_phandle_iterator_init(struct of_phandle_iterator *it,
770 const struct device_node *np,
771 const char *list_name,
772 const char *cells_name,
773 int cell_count)
774{
775 return -ENOSYS;
776}
777
cd209b41
JR
778static inline int of_phandle_iterator_next(struct of_phandle_iterator *it)
779{
780 return -ENOSYS;
781}
782
abdaa77b
JR
783static inline int of_phandle_iterator_args(struct of_phandle_iterator *it,
784 uint32_t *args,
785 int size)
786{
787 return 0;
788}
789
ed5f886d
NF
790static inline int of_alias_get_id(struct device_node *np, const char *stem)
791{
792 return -ENOSYS;
793}
794
351d224f
WS
795static inline int of_alias_get_highest_id(const char *stem)
796{
797 return -ENOSYS;
798}
799
50e07f88
SW
800static inline int of_machine_is_compatible(const char *compat)
801{
802 return 0;
803}
804
3482f2c5 805static inline bool of_console_check(const struct device_node *dn, const char *name, int index)
5c19e952 806{
3482f2c5 807 return false;
5c19e952
SH
808}
809
2adfffa2
SAS
810static inline const __be32 *of_prop_next_u32(struct property *prop,
811 const __be32 *cur, u32 *pu)
812{
813 return NULL;
814}
815
816static inline const char *of_prop_next_string(struct property *prop,
817 const char *cur)
818{
819 return NULL;
820}
821
0384e8c6
PA
822static inline int of_node_check_flag(struct device_node *n, unsigned long flag)
823{
824 return 0;
825}
826
827static inline int of_node_test_and_set_flag(struct device_node *n,
828 unsigned long flag)
829{
830 return 0;
831}
832
833static inline void of_node_set_flag(struct device_node *n, unsigned long flag)
834{
835}
836
837static inline void of_node_clear_flag(struct device_node *n, unsigned long flag)
838{
839}
840
841static inline int of_property_check_flag(struct property *p, unsigned long flag)
842{
843 return 0;
844}
845
846static inline void of_property_set_flag(struct property *p, unsigned long flag)
847{
848}
849
850static inline void of_property_clear_flag(struct property *p, unsigned long flag)
851{
852}
853
3a1e362e 854#define of_match_ptr(_ptr) NULL
5762c205 855#define of_match_node(_matches, _node) NULL
9dfbf207 856#endif /* CONFIG_OF */
b98c0239 857
613e9721
AT
858/* Default string compare functions, Allow arch asm/prom.h to override */
859#if !defined(of_compat_cmp)
860#define of_compat_cmp(s1, s2, l) strcasecmp((s1), (s2))
861#define of_prop_cmp(s1, s2) strcmp((s1), (s2))
862#define of_node_cmp(s1, s2) strcasecmp((s1), (s2))
863#endif
864
0c3f061c
RH
865#if defined(CONFIG_OF) && defined(CONFIG_NUMA)
866extern int of_node_to_nid(struct device_node *np);
867#else
c8fff7bc
KK
868static inline int of_node_to_nid(struct device_node *device)
869{
870 return NUMA_NO_NODE;
871}
5ca4db61
PM
872#endif
873
298535c0
DD
874#ifdef CONFIG_OF_NUMA
875extern int of_numa_init(void);
876#else
877static inline int of_numa_init(void)
878{
879 return -ENOSYS;
880}
881#endif
882
662372e4
RH
883static inline struct device_node *of_find_matching_node(
884 struct device_node *from,
885 const struct of_device_id *matches)
886{
887 return of_find_matching_node_and_match(from, matches, NULL);
888}
889
ad54a0cf
HS
890/**
891 * of_property_count_u8_elems - Count the number of u8 elements in a property
892 *
893 * @np: device node from which the property value is to be read.
894 * @propname: name of the property to be searched.
895 *
896 * Search for a property in a device node and count the number of u8 elements
897 * in it. Returns number of elements on sucess, -EINVAL if the property does
898 * not exist or its length does not match a multiple of u8 and -ENODATA if the
899 * property does not have a value.
900 */
901static inline int of_property_count_u8_elems(const struct device_node *np,
902 const char *propname)
903{
904 return of_property_count_elems_of_size(np, propname, sizeof(u8));
905}
906
907/**
908 * of_property_count_u16_elems - Count the number of u16 elements in a property
909 *
910 * @np: device node from which the property value is to be read.
911 * @propname: name of the property to be searched.
912 *
913 * Search for a property in a device node and count the number of u16 elements
914 * in it. Returns number of elements on sucess, -EINVAL if the property does
915 * not exist or its length does not match a multiple of u16 and -ENODATA if the
916 * property does not have a value.
917 */
918static inline int of_property_count_u16_elems(const struct device_node *np,
919 const char *propname)
920{
921 return of_property_count_elems_of_size(np, propname, sizeof(u16));
922}
923
924/**
925 * of_property_count_u32_elems - Count the number of u32 elements in a property
926 *
927 * @np: device node from which the property value is to be read.
928 * @propname: name of the property to be searched.
929 *
930 * Search for a property in a device node and count the number of u32 elements
931 * in it. Returns number of elements on sucess, -EINVAL if the property does
932 * not exist or its length does not match a multiple of u32 and -ENODATA if the
933 * property does not have a value.
934 */
935static inline int of_property_count_u32_elems(const struct device_node *np,
936 const char *propname)
937{
938 return of_property_count_elems_of_size(np, propname, sizeof(u32));
939}
940
941/**
942 * of_property_count_u64_elems - Count the number of u64 elements in a property
943 *
944 * @np: device node from which the property value is to be read.
945 * @propname: name of the property to be searched.
946 *
947 * Search for a property in a device node and count the number of u64 elements
948 * in it. Returns number of elements on sucess, -EINVAL if the property does
949 * not exist or its length does not match a multiple of u64 and -ENODATA if the
950 * property does not have a value.
951 */
952static inline int of_property_count_u64_elems(const struct device_node *np,
953 const char *propname)
954{
955 return of_property_count_elems_of_size(np, propname, sizeof(u64));
956}
957
a87fa1d8
GL
958/**
959 * of_property_read_string_array() - Read an array of strings from a multiple
960 * strings property.
961 * @np: device node from which the property value is to be read.
962 * @propname: name of the property to be searched.
963 * @out_strs: output array of string pointers.
964 * @sz: number of array elements to read.
965 *
966 * Search for a property in a device tree node and retrieve a list of
967 * terminated string values (pointer to data, not a copy) in that property.
968 *
969 * If @out_strs is NULL, the number of strings in the property is returned.
970 */
fe99c707 971static inline int of_property_read_string_array(const struct device_node *np,
a87fa1d8
GL
972 const char *propname, const char **out_strs,
973 size_t sz)
974{
975 return of_property_read_string_helper(np, propname, out_strs, sz, 0);
976}
977
978/**
979 * of_property_count_strings() - Find and return the number of strings from a
980 * multiple strings property.
981 * @np: device node from which the property value is to be read.
982 * @propname: name of the property to be searched.
983 *
984 * Search for a property in a device tree node and retrieve the number of null
985 * terminated string contain in it. Returns the number of strings on
986 * success, -EINVAL if the property does not exist, -ENODATA if property
987 * does not have a value, and -EILSEQ if the string is not null-terminated
988 * within the length of the property data.
989 */
fe99c707 990static inline int of_property_count_strings(const struct device_node *np,
a87fa1d8
GL
991 const char *propname)
992{
993 return of_property_read_string_helper(np, propname, NULL, 0, 0);
994}
995
996/**
997 * of_property_read_string_index() - Find and read a string from a multiple
998 * strings property.
999 * @np: device node from which the property value is to be read.
1000 * @propname: name of the property to be searched.
1001 * @index: index of the string in the list of strings
1002 * @out_string: pointer to null terminated return string, modified only if
1003 * return value is 0.
1004 *
1005 * Search for a property in a device tree node and retrieve a null
1006 * terminated string value (pointer to data, not a copy) in the list of strings
1007 * contained in that property.
1008 * Returns 0 on success, -EINVAL if the property does not exist, -ENODATA if
1009 * property does not have a value, and -EILSEQ if the string is not
1010 * null-terminated within the length of the property data.
1011 *
1012 * The out_string pointer is modified only if a valid string can be decoded.
1013 */
fe99c707 1014static inline int of_property_read_string_index(const struct device_node *np,
a87fa1d8
GL
1015 const char *propname,
1016 int index, const char **output)
1017{
1018 int rc = of_property_read_string_helper(np, propname, output, 1, index);
1019 return rc < 0 ? rc : 0;
1020}
1021
fa4d34cc
JCPV
1022/**
1023 * of_property_read_bool - Findfrom a property
1024 * @np: device node from which the property value is to be read.
1025 * @propname: name of the property to be searched.
1026 *
1027 * Search for a property in a device node.
31712c98 1028 * Returns true if the property exists false otherwise.
fa4d34cc
JCPV
1029 */
1030static inline bool of_property_read_bool(const struct device_node *np,
1031 const char *propname)
1032{
1033 struct property *prop = of_find_property(np, propname, NULL);
1034
1035 return prop ? true : false;
1036}
1037
be193249
VK
1038static inline int of_property_read_u8(const struct device_node *np,
1039 const char *propname,
1040 u8 *out_value)
1041{
1042 return of_property_read_u8_array(np, propname, out_value, 1);
1043}
1044
1045static inline int of_property_read_u16(const struct device_node *np,
1046 const char *propname,
1047 u16 *out_value)
1048{
1049 return of_property_read_u16_array(np, propname, out_value, 1);
1050}
1051
b98c0239 1052static inline int of_property_read_u32(const struct device_node *np,
aac285c6 1053 const char *propname,
b98c0239
SG
1054 u32 *out_value)
1055{
1056 return of_property_read_u32_array(np, propname, out_value, 1);
1057}
1058
e7a00e42
SR
1059static inline int of_property_read_s32(const struct device_node *np,
1060 const char *propname,
1061 s32 *out_value)
1062{
1063 return of_property_read_u32(np, propname, (u32*) out_value);
1064}
1065
f623ce95
JR
1066#define of_for_each_phandle(it, err, np, ln, cn, cc) \
1067 for (of_phandle_iterator_init((it), (np), (ln), (cn), (cc)), \
1068 err = of_phandle_iterator_next(it); \
1069 err == 0; \
1070 err = of_phandle_iterator_next(it))
1071
2adfffa2
SAS
1072#define of_property_for_each_u32(np, propname, prop, p, u) \
1073 for (prop = of_find_property(np, propname, NULL), \
1074 p = of_prop_next_u32(prop, NULL, &u); \
1075 p; \
1076 p = of_prop_next_u32(prop, p, &u))
1077
1078#define of_property_for_each_string(np, propname, prop, s) \
1079 for (prop = of_find_property(np, propname, NULL), \
1080 s = of_prop_next_string(prop, NULL); \
1081 s; \
1082 s = of_prop_next_string(prop, s))
1083
662372e4
RH
1084#define for_each_node_by_name(dn, name) \
1085 for (dn = of_find_node_by_name(NULL, name); dn; \
1086 dn = of_find_node_by_name(dn, name))
1087#define for_each_node_by_type(dn, type) \
1088 for (dn = of_find_node_by_type(NULL, type); dn; \
1089 dn = of_find_node_by_type(dn, type))
1090#define for_each_compatible_node(dn, type, compatible) \
1091 for (dn = of_find_compatible_node(NULL, type, compatible); dn; \
1092 dn = of_find_compatible_node(dn, type, compatible))
1093#define for_each_matching_node(dn, matches) \
1094 for (dn = of_find_matching_node(NULL, matches); dn; \
1095 dn = of_find_matching_node(dn, matches))
1096#define for_each_matching_node_and_match(dn, matches, match) \
1097 for (dn = of_find_matching_node_and_match(NULL, matches, match); \
1098 dn; dn = of_find_matching_node_and_match(dn, matches, match))
1099
1100#define for_each_child_of_node(parent, child) \
1101 for (child = of_get_next_child(parent, NULL); child != NULL; \
1102 child = of_get_next_child(parent, child))
1103#define for_each_available_child_of_node(parent, child) \
1104 for (child = of_get_next_available_child(parent, NULL); child != NULL; \
1105 child = of_get_next_available_child(parent, child))
1106
1107#define for_each_node_with_property(dn, prop_name) \
1108 for (dn = of_find_node_with_property(NULL, prop_name); dn; \
1109 dn = of_find_node_with_property(dn, prop_name))
1110
1111static inline int of_get_child_count(const struct device_node *np)
1112{
1113 struct device_node *child;
1114 int num = 0;
1115
1116 for_each_child_of_node(np, child)
1117 num++;
1118
1119 return num;
1120}
1121
1122static inline int of_get_available_child_count(const struct device_node *np)
1123{
1124 struct device_node *child;
1125 int num = 0;
1126
1127 for_each_available_child_of_node(np, child)
1128 num++;
1129
1130 return num;
1131}
1132
71f50c6d 1133#if defined(CONFIG_OF) && !defined(MODULE)
54196ccb
RH
1134#define _OF_DECLARE(table, name, compat, fn, fn_type) \
1135 static const struct of_device_id __of_table_##name \
1136 __used __section(__##table##_of_table) \
1137 = { .compatible = compat, \
1138 .data = (fn == (fn_type)NULL) ? fn : fn }
1139#else
5f563585 1140#define _OF_DECLARE(table, name, compat, fn, fn_type) \
54196ccb
RH
1141 static const struct of_device_id __of_table_##name \
1142 __attribute__((unused)) \
1143 = { .compatible = compat, \
1144 .data = (fn == (fn_type)NULL) ? fn : fn }
1145#endif
1146
1147typedef int (*of_init_fn_2)(struct device_node *, struct device_node *);
c35d9292 1148typedef int (*of_init_fn_1_ret)(struct device_node *);
54196ccb
RH
1149typedef void (*of_init_fn_1)(struct device_node *);
1150
1151#define OF_DECLARE_1(table, name, compat, fn) \
1152 _OF_DECLARE(table, name, compat, fn, of_init_fn_1)
c35d9292
DL
1153#define OF_DECLARE_1_RET(table, name, compat, fn) \
1154 _OF_DECLARE(table, name, compat, fn, of_init_fn_1_ret)
54196ccb
RH
1155#define OF_DECLARE_2(table, name, compat, fn) \
1156 _OF_DECLARE(table, name, compat, fn, of_init_fn_2)
1157
201c910b
PA
1158/**
1159 * struct of_changeset_entry - Holds a changeset entry
1160 *
1161 * @node: list_head for the log list
1162 * @action: notifier action
1163 * @np: pointer to the device node affected
1164 * @prop: pointer to the property affected
1165 * @old_prop: hold a pointer to the original property
1166 *
1167 * Every modification of the device tree during a changeset
1168 * is held in a list of of_changeset_entry structures.
1169 * That way we can recover from a partial application, or we can
1170 * revert the changeset
1171 */
1172struct of_changeset_entry {
1173 struct list_head node;
1174 unsigned long action;
1175 struct device_node *np;
1176 struct property *prop;
1177 struct property *old_prop;
1178};
1179
1180/**
1181 * struct of_changeset - changeset tracker structure
1182 *
1183 * @entries: list_head for the changeset entries
1184 *
1185 * changesets are a convenient way to apply bulk changes to the
1186 * live tree. In case of an error, changes are rolled-back.
1187 * changesets live on after initial application, and if not
1188 * destroyed after use, they can be reverted in one single call.
1189 */
1190struct of_changeset {
1191 struct list_head entries;
1192};
1193
b53a2340
PA
1194enum of_reconfig_change {
1195 OF_RECONFIG_NO_CHANGE = 0,
1196 OF_RECONFIG_CHANGE_ADD,
1197 OF_RECONFIG_CHANGE_REMOVE,
1198};
1199
201c910b 1200#ifdef CONFIG_OF_DYNAMIC
f6892d19
GL
1201extern int of_reconfig_notifier_register(struct notifier_block *);
1202extern int of_reconfig_notifier_unregister(struct notifier_block *);
f5242e5a
GL
1203extern int of_reconfig_notify(unsigned long, struct of_reconfig_data *rd);
1204extern int of_reconfig_get_state_change(unsigned long action,
1205 struct of_reconfig_data *arg);
f6892d19 1206
201c910b
PA
1207extern void of_changeset_init(struct of_changeset *ocs);
1208extern void of_changeset_destroy(struct of_changeset *ocs);
1209extern int of_changeset_apply(struct of_changeset *ocs);
1210extern int of_changeset_revert(struct of_changeset *ocs);
1211extern int of_changeset_action(struct of_changeset *ocs,
1212 unsigned long action, struct device_node *np,
1213 struct property *prop);
1214
1215static inline int of_changeset_attach_node(struct of_changeset *ocs,
1216 struct device_node *np)
1217{
1218 return of_changeset_action(ocs, OF_RECONFIG_ATTACH_NODE, np, NULL);
1219}
1220
1221static inline int of_changeset_detach_node(struct of_changeset *ocs,
1222 struct device_node *np)
1223{
1224 return of_changeset_action(ocs, OF_RECONFIG_DETACH_NODE, np, NULL);
1225}
1226
1227static inline int of_changeset_add_property(struct of_changeset *ocs,
1228 struct device_node *np, struct property *prop)
1229{
1230 return of_changeset_action(ocs, OF_RECONFIG_ADD_PROPERTY, np, prop);
1231}
1232
1233static inline int of_changeset_remove_property(struct of_changeset *ocs,
1234 struct device_node *np, struct property *prop)
1235{
1236 return of_changeset_action(ocs, OF_RECONFIG_REMOVE_PROPERTY, np, prop);
1237}
1238
1239static inline int of_changeset_update_property(struct of_changeset *ocs,
1240 struct device_node *np, struct property *prop)
1241{
1242 return of_changeset_action(ocs, OF_RECONFIG_UPDATE_PROPERTY, np, prop);
1243}
f6892d19
GL
1244#else /* CONFIG_OF_DYNAMIC */
1245static inline int of_reconfig_notifier_register(struct notifier_block *nb)
1246{
1247 return -EINVAL;
1248}
1249static inline int of_reconfig_notifier_unregister(struct notifier_block *nb)
1250{
1251 return -EINVAL;
1252}
f5242e5a
GL
1253static inline int of_reconfig_notify(unsigned long action,
1254 struct of_reconfig_data *arg)
f6892d19
GL
1255{
1256 return -EINVAL;
1257}
f5242e5a
GL
1258static inline int of_reconfig_get_state_change(unsigned long action,
1259 struct of_reconfig_data *arg)
f6892d19
GL
1260{
1261 return -EINVAL;
1262}
1263#endif /* CONFIG_OF_DYNAMIC */
201c910b 1264
7941b27b
PA
1265/* CONFIG_OF_RESOLVE api */
1266extern int of_resolve_phandles(struct device_node *tree);
1267
a4b4e046 1268/**
8f73110f 1269 * of_device_is_system_power_controller - Tells if system-power-controller is found for device_node
a4b4e046
RP
1270 * @np: Pointer to the given device_node
1271 *
1272 * return true if present false otherwise
1273 */
8f73110f 1274static inline bool of_device_is_system_power_controller(const struct device_node *np)
a4b4e046 1275{
8f73110f 1276 return of_property_read_bool(np, "system-power-controller");
a4b4e046
RP
1277}
1278
7518b589
PA
1279/**
1280 * Overlay support
1281 */
1282
39a842e2
AT
1283enum of_overlay_notify_action {
1284 OF_OVERLAY_PRE_APPLY,
1285 OF_OVERLAY_POST_APPLY,
1286 OF_OVERLAY_PRE_REMOVE,
1287 OF_OVERLAY_POST_REMOVE,
1288};
1289
1290struct of_overlay_notify_data {
1291 struct device_node *overlay;
1292 struct device_node *target;
1293};
1294
7518b589
PA
1295#ifdef CONFIG_OF_OVERLAY
1296
1297/* ID based overlays; the API for external users */
1298int of_overlay_create(struct device_node *tree);
1299int of_overlay_destroy(int id);
1300int of_overlay_destroy_all(void);
1301
39a842e2
AT
1302int of_overlay_notifier_register(struct notifier_block *nb);
1303int of_overlay_notifier_unregister(struct notifier_block *nb);
1304
7518b589
PA
1305#else
1306
1307static inline int of_overlay_create(struct device_node *tree)
1308{
1309 return -ENOTSUPP;
1310}
1311
1312static inline int of_overlay_destroy(int id)
1313{
1314 return -ENOTSUPP;
1315}
1316
1317static inline int of_overlay_destroy_all(void)
1318{
1319 return -ENOTSUPP;
1320}
1321
39a842e2
AT
1322static inline int of_overlay_notifier_register(struct notifier_block *nb)
1323{
1324 return 0;
1325}
1326
1327static inline int of_overlay_notifier_unregister(struct notifier_block *nb)
1328{
1329 return 0;
1330}
1331
7518b589
PA
1332#endif
1333
76c1ce78 1334#endif /* _LINUX_OF_H */