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