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