GNU Linux-libre 5.10.217-gnu1
[releases.git] / include / linux / of.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
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.
13  */
14 #include <linux/types.h>
15 #include <linux/bitops.h>
16 #include <linux/errno.h>
17 #include <linux/kobject.h>
18 #include <linux/mod_devicetable.h>
19 #include <linux/spinlock.h>
20 #include <linux/topology.h>
21 #include <linux/notifier.h>
22 #include <linux/property.h>
23 #include <linux/list.h>
24
25 #include <asm/byteorder.h>
26 #include <asm/errno.h>
27
28 typedef u32 phandle;
29 typedef u32 ihandle;
30
31 struct property {
32         char    *name;
33         int     length;
34         void    *value;
35         struct property *next;
36 #if defined(CONFIG_OF_DYNAMIC) || defined(CONFIG_SPARC)
37         unsigned long _flags;
38 #endif
39 #if defined(CONFIG_OF_PROMTREE)
40         unsigned int unique_id;
41 #endif
42 #if defined(CONFIG_OF_KOBJ)
43         struct bin_attribute attr;
44 #endif
45 };
46
47 #if defined(CONFIG_SPARC)
48 struct of_irq_controller;
49 #endif
50
51 struct device_node {
52         const char *name;
53         phandle phandle;
54         const char *full_name;
55         struct fwnode_handle fwnode;
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;
62 #if defined(CONFIG_OF_KOBJ)
63         struct  kobject kobj;
64 #endif
65         unsigned long _flags;
66         void    *data;
67 #if defined(CONFIG_SPARC)
68         unsigned int unique_id;
69         struct of_irq_controller *irq_trans;
70 #endif
71 };
72
73 #define MAX_PHANDLE_ARGS 16
74 struct of_phandle_args {
75         struct device_node *np;
76         int args_count;
77         uint32_t args[MAX_PHANDLE_ARGS];
78 };
79
80 struct 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
97 struct of_reconfig_data {
98         struct device_node      *dn;
99         struct property         *prop;
100         struct property         *old_prop;
101 };
102
103 /* initialize a node */
104 extern struct kobj_type of_node_ktype;
105 extern const struct fwnode_operations of_fwnode_ops;
106 static inline void of_node_init(struct device_node *node)
107 {
108 #if defined(CONFIG_OF_KOBJ)
109         kobject_init(&node->kobj, &of_node_ktype);
110 #endif
111         node->fwnode.ops = &of_fwnode_ops;
112 }
113
114 #if defined(CONFIG_OF_KOBJ)
115 #define of_node_kobj(n) (&(n)->kobj)
116 #else
117 #define of_node_kobj(n) NULL
118 #endif
119
120 #ifdef CONFIG_OF_DYNAMIC
121 extern struct device_node *of_node_get(struct device_node *node);
122 extern void of_node_put(struct device_node *node);
123 #else /* CONFIG_OF_DYNAMIC */
124 /* Dummy ref counting routines - to be implemented later */
125 static inline struct device_node *of_node_get(struct device_node *node)
126 {
127         return node;
128 }
129 static inline void of_node_put(struct device_node *node) { }
130 #endif /* !CONFIG_OF_DYNAMIC */
131
132 /* Pointer for first entry in chain of all nodes. */
133 extern struct device_node *of_root;
134 extern struct device_node *of_chosen;
135 extern struct device_node *of_aliases;
136 extern struct device_node *of_stdout;
137 extern raw_spinlock_t devtree_lock;
138
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 */
149
150 #define OF_BAD_ADDR     ((u64)-1)
151
152 #ifdef CONFIG_OF
153 void of_core_init(void);
154
155 static inline bool is_of_node(const struct fwnode_handle *fwnode)
156 {
157         return !IS_ERR_OR_NULL(fwnode) && fwnode->ops == &of_fwnode_ops;
158 }
159
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         })
169
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         })
177
178 static inline bool of_have_populated_dt(void)
179 {
180         return of_root != NULL;
181 }
182
183 static inline bool of_node_is_root(const struct device_node *node)
184 {
185         return node && (node->parent == NULL);
186 }
187
188 static inline int of_node_check_flag(struct device_node *n, unsigned long flag)
189 {
190         return test_bit(flag, &n->_flags);
191 }
192
193 static 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
199 static inline void of_node_set_flag(struct device_node *n, unsigned long flag)
200 {
201         set_bit(flag, &n->_flags);
202 }
203
204 static inline void of_node_clear_flag(struct device_node *n, unsigned long flag)
205 {
206         clear_bit(flag, &n->_flags);
207 }
208
209 #if defined(CONFIG_OF_DYNAMIC) || defined(CONFIG_SPARC)
210 static inline int of_property_check_flag(struct property *p, unsigned long flag)
211 {
212         return test_bit(flag, &p->_flags);
213 }
214
215 static inline void of_property_set_flag(struct property *p, unsigned long flag)
216 {
217         set_bit(flag, &p->_flags);
218 }
219
220 static inline void of_property_clear_flag(struct property *p, unsigned long flag)
221 {
222         clear_bit(flag, &p->_flags);
223 }
224 #endif
225
226 extern struct device_node *__of_find_all_nodes(struct device_node *prev);
227 extern struct device_node *of_find_all_nodes(struct device_node *prev);
228
229 /*
230  * OF address retrieval & translation
231  */
232
233 /* Helper to read a big number; size is in cells (not bytes) */
234 static inline u64 of_read_number(const __be32 *cell, int size)
235 {
236         u64 r = 0;
237         for (; size--; cell++)
238                 r = (r << 32) | be32_to_cpu(*cell);
239         return r;
240 }
241
242 /* Like of_read_number, but we want an unsigned long result */
243 static inline unsigned long of_read_ulong(const __be32 *cell, int size)
244 {
245         /* toss away upper bits if unsigned long is smaller than u64 */
246         return of_read_number(cell, size);
247 }
248
249 #if defined(CONFIG_SPARC)
250 #include <asm/prom.h>
251 #endif
252
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
256 extern bool of_node_name_eq(const struct device_node *np, const char *name);
257 extern bool of_node_name_prefix(const struct device_node *np, const char *prefix);
258
259 static inline const char *of_node_full_name(const struct device_node *np)
260 {
261         return np ? np->full_name : "<no-node>";
262 }
263
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)
267 extern struct device_node *of_find_node_by_name(struct device_node *from,
268         const char *name);
269 extern struct device_node *of_find_node_by_type(struct device_node *from,
270         const char *type);
271 extern struct device_node *of_find_compatible_node(struct device_node *from,
272         const char *type, const char *compat);
273 extern 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);
277
278 extern struct device_node *of_find_node_opts_by_path(const char *path,
279         const char **opts);
280 static 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
285 extern struct device_node *of_find_node_by_phandle(phandle handle);
286 extern struct device_node *of_get_parent(const struct device_node *node);
287 extern struct device_node *of_get_next_parent(struct device_node *node);
288 extern struct device_node *of_get_next_child(const struct device_node *node,
289                                              struct device_node *prev);
290 extern struct device_node *of_get_next_available_child(
291         const struct device_node *node, struct device_node *prev);
292
293 extern struct device_node *of_get_compatible_child(const struct device_node *parent,
294                                         const char *compatible);
295 extern struct device_node *of_get_child_by_name(const struct device_node *node,
296                                         const char *name);
297
298 /* cache lookup */
299 extern struct device_node *of_find_next_cache_node(const struct device_node *);
300 extern int of_find_last_cache_level(unsigned int cpu);
301 extern struct device_node *of_find_node_with_property(
302         struct device_node *from, const char *prop_name);
303
304 extern struct property *of_find_property(const struct device_node *np,
305                                          const char *name,
306                                          int *lenp);
307 extern int of_property_count_elems_of_size(const struct device_node *np,
308                                 const char *propname, int elem_size);
309 extern int of_property_read_u32_index(const struct device_node *np,
310                                        const char *propname,
311                                        u32 index, u32 *out_value);
312 extern int of_property_read_u64_index(const struct device_node *np,
313                                        const char *propname,
314                                        u32 index, u64 *out_value);
315 extern 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);
318 extern 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);
321 extern 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);
326 extern int of_property_read_u64(const struct device_node *np,
327                                 const char *propname, u64 *out_value);
328 extern 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);
333
334 extern int of_property_read_string(const struct device_node *np,
335                                    const char *propname,
336                                    const char **out_string);
337 extern int of_property_match_string(const struct device_node *np,
338                                     const char *propname,
339                                     const char *string);
340 extern int of_property_read_string_helper(const struct device_node *np,
341                                               const char *propname,
342                                               const char **out_strs, size_t sz, int index);
343 extern int of_device_is_compatible(const struct device_node *device,
344                                    const char *);
345 extern int of_device_compatible_match(struct device_node *device,
346                                       const char *const *compat);
347 extern bool of_device_is_available(const struct device_node *device);
348 extern bool of_device_is_big_endian(const struct device_node *device);
349 extern const void *of_get_property(const struct device_node *node,
350                                 const char *name,
351                                 int *lenp);
352 extern struct device_node *of_get_cpu_node(int cpu, unsigned int *thread);
353 extern struct device_node *of_get_next_cpu_node(struct device_node *prev);
354 extern struct device_node *of_get_cpu_state_node(struct device_node *cpu_node,
355                                                  int index);
356
357 #define for_each_property_of_node(dn, pp) \
358         for (pp = dn->properties; pp != NULL; pp = pp->next)
359
360 extern int of_n_addr_cells(struct device_node *np);
361 extern int of_n_size_cells(struct device_node *np);
362 extern const struct of_device_id *of_match_node(
363         const struct of_device_id *matches, const struct device_node *node);
364 extern int of_modalias_node(struct device_node *node, char *modalias, int len);
365 extern void of_print_phandle_args(const char *msg, const struct of_phandle_args *args);
366 extern struct device_node *of_parse_phandle(const struct device_node *np,
367                                             const char *phandle_name,
368                                             int index);
369 extern int of_parse_phandle_with_args(const struct device_node *np,
370         const char *list_name, const char *cells_name, int index,
371         struct of_phandle_args *out_args);
372 extern 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);
375 extern 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);
378 extern int of_count_phandle_with_args(const struct device_node *np,
379         const char *list_name, const char *cells_name);
380
381 /* phandle iterator functions */
382 extern 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
388 extern int of_phandle_iterator_next(struct of_phandle_iterator *it);
389 extern int of_phandle_iterator_args(struct of_phandle_iterator *it,
390                                     uint32_t *args,
391                                     int size);
392
393 extern void of_alias_scan(void * (*dt_alloc)(u64 size, u64 align));
394 extern int of_alias_get_id(struct device_node *np, const char *stem);
395 extern int of_alias_get_highest_id(const char *stem);
396 extern int of_alias_get_alias_list(const struct of_device_id *matches,
397                                    const char *stem, unsigned long *bitmap,
398                                    unsigned int nbits);
399
400 extern int of_machine_is_compatible(const char *compat);
401
402 extern int of_add_property(struct device_node *np, struct property *prop);
403 extern int of_remove_property(struct device_node *np, struct property *prop);
404 extern int of_update_property(struct device_node *np, struct property *newprop);
405
406 /* For updating the device tree at runtime */
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
413 extern int of_attach_node(struct device_node *);
414 extern int of_detach_node(struct device_node *);
415
416 #define of_match_ptr(_ptr)      (_ptr)
417
418 /*
419  * struct property *prop;
420  * const __be32 *p;
421  * u32 u;
422  *
423  * of_property_for_each_u32(np, "propname", prop, p, u)
424  *         printk("U32 value: %x\n", u);
425  */
426 const __be32 *of_prop_next_u32(struct property *prop, const __be32 *cur,
427                                u32 *pu);
428 /*
429  * struct property *prop;
430  * const char *s;
431  *
432  * of_property_for_each_string(np, "propname", prop, s)
433  *         printk("String value: %s\n", s);
434  */
435 const char *of_prop_next_string(struct property *prop, const char *cur);
436
437 bool of_console_check(struct device_node *dn, char *name, int index);
438
439 extern int of_cpu_node_to_id(struct device_node *np);
440
441 int of_map_id(struct device_node *np, u32 id,
442                const char *map_name, const char *map_mask_name,
443                struct device_node **target, u32 *id_out);
444
445 phys_addr_t of_dma_get_max_cpu_address(struct device_node *np);
446
447 #else /* CONFIG_OF */
448
449 static inline void of_core_init(void)
450 {
451 }
452
453 static inline bool is_of_node(const struct fwnode_handle *fwnode)
454 {
455         return false;
456 }
457
458 static inline struct device_node *to_of_node(const struct fwnode_handle *fwnode)
459 {
460         return NULL;
461 }
462
463 static inline bool of_node_name_eq(const struct device_node *np, const char *name)
464 {
465         return false;
466 }
467
468 static inline bool of_node_name_prefix(const struct device_node *np, const char *prefix)
469 {
470         return false;
471 }
472
473 static inline const char* of_node_full_name(const struct device_node *np)
474 {
475         return "<no-node>";
476 }
477
478 static inline struct device_node *of_find_node_by_name(struct device_node *from,
479         const char *name)
480 {
481         return NULL;
482 }
483
484 static inline struct device_node *of_find_node_by_type(struct device_node *from,
485         const char *type)
486 {
487         return NULL;
488 }
489
490 static inline struct device_node *of_find_matching_node_and_match(
491         struct device_node *from,
492         const struct of_device_id *matches,
493         const struct of_device_id **match)
494 {
495         return NULL;
496 }
497
498 static inline struct device_node *of_find_node_by_path(const char *path)
499 {
500         return NULL;
501 }
502
503 static inline struct device_node *of_find_node_opts_by_path(const char *path,
504         const char **opts)
505 {
506         return NULL;
507 }
508
509 static inline struct device_node *of_find_node_by_phandle(phandle handle)
510 {
511         return NULL;
512 }
513
514 static inline struct device_node *of_get_parent(const struct device_node *node)
515 {
516         return NULL;
517 }
518
519 static inline struct device_node *of_get_next_parent(struct device_node *node)
520 {
521         return NULL;
522 }
523
524 static inline struct device_node *of_get_next_child(
525         const struct device_node *node, struct device_node *prev)
526 {
527         return NULL;
528 }
529
530 static inline struct device_node *of_get_next_available_child(
531         const struct device_node *node, struct device_node *prev)
532 {
533         return NULL;
534 }
535
536 static inline struct device_node *of_find_node_with_property(
537         struct device_node *from, const char *prop_name)
538 {
539         return NULL;
540 }
541
542 #define of_fwnode_handle(node) NULL
543
544 static inline bool of_have_populated_dt(void)
545 {
546         return false;
547 }
548
549 static inline struct device_node *of_get_compatible_child(const struct device_node *parent,
550                                         const char *compatible)
551 {
552         return NULL;
553 }
554
555 static inline struct device_node *of_get_child_by_name(
556                                         const struct device_node *node,
557                                         const char *name)
558 {
559         return NULL;
560 }
561
562 static inline int of_device_is_compatible(const struct device_node *device,
563                                           const char *name)
564 {
565         return 0;
566 }
567
568 static inline  int of_device_compatible_match(struct device_node *device,
569                                               const char *const *compat)
570 {
571         return 0;
572 }
573
574 static inline bool of_device_is_available(const struct device_node *device)
575 {
576         return false;
577 }
578
579 static inline bool of_device_is_big_endian(const struct device_node *device)
580 {
581         return false;
582 }
583
584 static inline struct property *of_find_property(const struct device_node *np,
585                                                 const char *name,
586                                                 int *lenp)
587 {
588         return NULL;
589 }
590
591 static inline struct device_node *of_find_compatible_node(
592                                                 struct device_node *from,
593                                                 const char *type,
594                                                 const char *compat)
595 {
596         return NULL;
597 }
598
599 static inline int of_property_count_elems_of_size(const struct device_node *np,
600                         const char *propname, int elem_size)
601 {
602         return -ENOSYS;
603 }
604
605 static inline int of_property_read_u32_index(const struct device_node *np,
606                         const char *propname, u32 index, u32 *out_value)
607 {
608         return -ENOSYS;
609 }
610
611 static inline int of_property_read_u64_index(const struct device_node *np,
612                         const char *propname, u32 index, u64 *out_value)
613 {
614         return -ENOSYS;
615 }
616
617 static inline const void *of_get_property(const struct device_node *node,
618                                 const char *name,
619                                 int *lenp)
620 {
621         return NULL;
622 }
623
624 static inline struct device_node *of_get_cpu_node(int cpu,
625                                         unsigned int *thread)
626 {
627         return NULL;
628 }
629
630 static inline struct device_node *of_get_next_cpu_node(struct device_node *prev)
631 {
632         return NULL;
633 }
634
635 static inline struct device_node *of_get_cpu_state_node(struct device_node *cpu_node,
636                                         int index)
637 {
638         return NULL;
639 }
640
641 static inline int of_n_addr_cells(struct device_node *np)
642 {
643         return 0;
644
645 }
646 static inline int of_n_size_cells(struct device_node *np)
647 {
648         return 0;
649 }
650
651 static inline int of_property_read_variable_u8_array(const struct device_node *np,
652                                         const char *propname, u8 *out_values,
653                                         size_t sz_min, size_t sz_max)
654 {
655         return -ENOSYS;
656 }
657
658 static inline int of_property_read_variable_u16_array(const struct device_node *np,
659                                         const char *propname, u16 *out_values,
660                                         size_t sz_min, size_t sz_max)
661 {
662         return -ENOSYS;
663 }
664
665 static inline int of_property_read_variable_u32_array(const struct device_node *np,
666                                         const char *propname,
667                                         u32 *out_values,
668                                         size_t sz_min,
669                                         size_t sz_max)
670 {
671         return -ENOSYS;
672 }
673
674 static inline int of_property_read_u64(const struct device_node *np,
675                                        const char *propname, u64 *out_value)
676 {
677         return -ENOSYS;
678 }
679
680 static inline int of_property_read_variable_u64_array(const struct device_node *np,
681                                         const char *propname,
682                                         u64 *out_values,
683                                         size_t sz_min,
684                                         size_t sz_max)
685 {
686         return -ENOSYS;
687 }
688
689 static inline int of_property_read_string(const struct device_node *np,
690                                           const char *propname,
691                                           const char **out_string)
692 {
693         return -ENOSYS;
694 }
695
696 static inline int of_property_match_string(const struct device_node *np,
697                                            const char *propname,
698                                            const char *string)
699 {
700         return -ENOSYS;
701 }
702
703 static inline int of_property_read_string_helper(const struct device_node *np,
704                                                  const char *propname,
705                                                  const char **out_strs, size_t sz, int index)
706 {
707         return -ENOSYS;
708 }
709
710 static inline struct device_node *of_parse_phandle(const struct device_node *np,
711                                                    const char *phandle_name,
712                                                    int index)
713 {
714         return NULL;
715 }
716
717 static inline int of_parse_phandle_with_args(const struct device_node *np,
718                                              const char *list_name,
719                                              const char *cells_name,
720                                              int index,
721                                              struct of_phandle_args *out_args)
722 {
723         return -ENOSYS;
724 }
725
726 static inline int of_parse_phandle_with_args_map(const struct device_node *np,
727                                                  const char *list_name,
728                                                  const char *stem_name,
729                                                  int index,
730                                                  struct of_phandle_args *out_args)
731 {
732         return -ENOSYS;
733 }
734
735 static inline int of_parse_phandle_with_fixed_args(const struct device_node *np,
736         const char *list_name, int cells_count, int index,
737         struct of_phandle_args *out_args)
738 {
739         return -ENOSYS;
740 }
741
742 static inline int of_count_phandle_with_args(struct device_node *np,
743                                              const char *list_name,
744                                              const char *cells_name)
745 {
746         return -ENOSYS;
747 }
748
749 static inline int of_phandle_iterator_init(struct of_phandle_iterator *it,
750                                            const struct device_node *np,
751                                            const char *list_name,
752                                            const char *cells_name,
753                                            int cell_count)
754 {
755         return -ENOSYS;
756 }
757
758 static inline int of_phandle_iterator_next(struct of_phandle_iterator *it)
759 {
760         return -ENOSYS;
761 }
762
763 static inline int of_phandle_iterator_args(struct of_phandle_iterator *it,
764                                            uint32_t *args,
765                                            int size)
766 {
767         return 0;
768 }
769
770 static inline int of_alias_get_id(struct device_node *np, const char *stem)
771 {
772         return -ENOSYS;
773 }
774
775 static inline int of_alias_get_highest_id(const char *stem)
776 {
777         return -ENOSYS;
778 }
779
780 static inline int of_alias_get_alias_list(const struct of_device_id *matches,
781                                           const char *stem, unsigned long *bitmap,
782                                           unsigned int nbits)
783 {
784         return -ENOSYS;
785 }
786
787 static inline int of_machine_is_compatible(const char *compat)
788 {
789         return 0;
790 }
791
792 static inline int of_remove_property(struct device_node *np, struct property *prop)
793 {
794         return 0;
795 }
796
797 static inline bool of_console_check(const struct device_node *dn, const char *name, int index)
798 {
799         return false;
800 }
801
802 static inline const __be32 *of_prop_next_u32(struct property *prop,
803                 const __be32 *cur, u32 *pu)
804 {
805         return NULL;
806 }
807
808 static inline const char *of_prop_next_string(struct property *prop,
809                 const char *cur)
810 {
811         return NULL;
812 }
813
814 static inline int of_node_check_flag(struct device_node *n, unsigned long flag)
815 {
816         return 0;
817 }
818
819 static inline int of_node_test_and_set_flag(struct device_node *n,
820                                             unsigned long flag)
821 {
822         return 0;
823 }
824
825 static inline void of_node_set_flag(struct device_node *n, unsigned long flag)
826 {
827 }
828
829 static inline void of_node_clear_flag(struct device_node *n, unsigned long flag)
830 {
831 }
832
833 static inline int of_property_check_flag(struct property *p, unsigned long flag)
834 {
835         return 0;
836 }
837
838 static inline void of_property_set_flag(struct property *p, unsigned long flag)
839 {
840 }
841
842 static inline void of_property_clear_flag(struct property *p, unsigned long flag)
843 {
844 }
845
846 static inline int of_cpu_node_to_id(struct device_node *np)
847 {
848         return -ENODEV;
849 }
850
851 static inline int of_map_id(struct device_node *np, u32 id,
852                              const char *map_name, const char *map_mask_name,
853                              struct device_node **target, u32 *id_out)
854 {
855         return -EINVAL;
856 }
857
858 static inline phys_addr_t of_dma_get_max_cpu_address(struct device_node *np)
859 {
860         return PHYS_ADDR_MAX;
861 }
862
863 #define of_match_ptr(_ptr)      NULL
864 #define of_match_node(_matches, _node)  NULL
865 #endif /* CONFIG_OF */
866
867 /* Default string compare functions, Allow arch asm/prom.h to override */
868 #if !defined(of_compat_cmp)
869 #define of_compat_cmp(s1, s2, l)        strcasecmp((s1), (s2))
870 #define of_prop_cmp(s1, s2)             strcmp((s1), (s2))
871 #define of_node_cmp(s1, s2)             strcasecmp((s1), (s2))
872 #endif
873
874 static inline int of_prop_val_eq(struct property *p1, struct property *p2)
875 {
876         return p1->length == p2->length &&
877                !memcmp(p1->value, p2->value, (size_t)p1->length);
878 }
879
880 #if defined(CONFIG_OF) && defined(CONFIG_NUMA)
881 extern int of_node_to_nid(struct device_node *np);
882 #else
883 static inline int of_node_to_nid(struct device_node *device)
884 {
885         return NUMA_NO_NODE;
886 }
887 #endif
888
889 #ifdef CONFIG_OF_NUMA
890 extern int of_numa_init(void);
891 #else
892 static inline int of_numa_init(void)
893 {
894         return -ENOSYS;
895 }
896 #endif
897
898 static inline struct device_node *of_find_matching_node(
899         struct device_node *from,
900         const struct of_device_id *matches)
901 {
902         return of_find_matching_node_and_match(from, matches, NULL);
903 }
904
905 static inline const char *of_node_get_device_type(const struct device_node *np)
906 {
907         return of_get_property(np, "device_type", NULL);
908 }
909
910 static inline bool of_node_is_type(const struct device_node *np, const char *type)
911 {
912         const char *match = of_node_get_device_type(np);
913
914         return np && match && type && !strcmp(match, type);
915 }
916
917 /**
918  * of_property_count_u8_elems - Count the number of u8 elements in a property
919  *
920  * @np:         device node from which the property value is to be read.
921  * @propname:   name of the property to be searched.
922  *
923  * Search for a property in a device node and count the number of u8 elements
924  * in it.
925  *
926  * Return: The number of elements on sucess, -EINVAL if the property does
927  * not exist or its length does not match a multiple of u8 and -ENODATA if the
928  * property does not have a value.
929  */
930 static inline int of_property_count_u8_elems(const struct device_node *np,
931                                 const char *propname)
932 {
933         return of_property_count_elems_of_size(np, propname, sizeof(u8));
934 }
935
936 /**
937  * of_property_count_u16_elems - Count the number of u16 elements in a property
938  *
939  * @np:         device node from which the property value is to be read.
940  * @propname:   name of the property to be searched.
941  *
942  * Search for a property in a device node and count the number of u16 elements
943  * in it.
944  *
945  * Return: The number of elements on sucess, -EINVAL if the property does
946  * not exist or its length does not match a multiple of u16 and -ENODATA if the
947  * property does not have a value.
948  */
949 static inline int of_property_count_u16_elems(const struct device_node *np,
950                                 const char *propname)
951 {
952         return of_property_count_elems_of_size(np, propname, sizeof(u16));
953 }
954
955 /**
956  * of_property_count_u32_elems - Count the number of u32 elements in a property
957  *
958  * @np:         device node from which the property value is to be read.
959  * @propname:   name of the property to be searched.
960  *
961  * Search for a property in a device node and count the number of u32 elements
962  * in it.
963  *
964  * Return: The number of elements on sucess, -EINVAL if the property does
965  * not exist or its length does not match a multiple of u32 and -ENODATA if the
966  * property does not have a value.
967  */
968 static inline int of_property_count_u32_elems(const struct device_node *np,
969                                 const char *propname)
970 {
971         return of_property_count_elems_of_size(np, propname, sizeof(u32));
972 }
973
974 /**
975  * of_property_count_u64_elems - Count the number of u64 elements in a property
976  *
977  * @np:         device node from which the property value is to be read.
978  * @propname:   name of the property to be searched.
979  *
980  * Search for a property in a device node and count the number of u64 elements
981  * in it.
982  *
983  * Return: The number of elements on sucess, -EINVAL if the property does
984  * not exist or its length does not match a multiple of u64 and -ENODATA if the
985  * property does not have a value.
986  */
987 static inline int of_property_count_u64_elems(const struct device_node *np,
988                                 const char *propname)
989 {
990         return of_property_count_elems_of_size(np, propname, sizeof(u64));
991 }
992
993 /**
994  * of_property_read_string_array() - Read an array of strings from a multiple
995  * strings property.
996  * @np:         device node from which the property value is to be read.
997  * @propname:   name of the property to be searched.
998  * @out_strs:   output array of string pointers.
999  * @sz:         number of array elements to read.
1000  *
1001  * Search for a property in a device tree node and retrieve a list of
1002  * terminated string values (pointer to data, not a copy) in that property.
1003  *
1004  * Return: If @out_strs is NULL, the number of strings in the property is returned.
1005  */
1006 static inline int of_property_read_string_array(const struct device_node *np,
1007                                                 const char *propname, const char **out_strs,
1008                                                 size_t sz)
1009 {
1010         return of_property_read_string_helper(np, propname, out_strs, sz, 0);
1011 }
1012
1013 /**
1014  * of_property_count_strings() - Find and return the number of strings from a
1015  * multiple strings property.
1016  * @np:         device node from which the property value is to be read.
1017  * @propname:   name of the property to be searched.
1018  *
1019  * Search for a property in a device tree node and retrieve the number of null
1020  * terminated string contain in it.
1021  *
1022  * Return: The number of strings on success, -EINVAL if the property does not
1023  * exist, -ENODATA if property does not have a value, and -EILSEQ if the string
1024  * is not null-terminated within the length of the property data.
1025  */
1026 static inline int of_property_count_strings(const struct device_node *np,
1027                                             const char *propname)
1028 {
1029         return of_property_read_string_helper(np, propname, NULL, 0, 0);
1030 }
1031
1032 /**
1033  * of_property_read_string_index() - Find and read a string from a multiple
1034  * strings property.
1035  * @np:         device node from which the property value is to be read.
1036  * @propname:   name of the property to be searched.
1037  * @index:      index of the string in the list of strings
1038  * @out_string: pointer to null terminated return string, modified only if
1039  *              return value is 0.
1040  *
1041  * Search for a property in a device tree node and retrieve a null
1042  * terminated string value (pointer to data, not a copy) in the list of strings
1043  * contained in that property.
1044  *
1045  * Return: 0 on success, -EINVAL if the property does not exist, -ENODATA if
1046  * property does not have a value, and -EILSEQ if the string is not
1047  * null-terminated within the length of the property data.
1048  *
1049  * The out_string pointer is modified only if a valid string can be decoded.
1050  */
1051 static inline int of_property_read_string_index(const struct device_node *np,
1052                                                 const char *propname,
1053                                                 int index, const char **output)
1054 {
1055         int rc = of_property_read_string_helper(np, propname, output, 1, index);
1056         return rc < 0 ? rc : 0;
1057 }
1058
1059 /**
1060  * of_property_read_bool - Find a property
1061  * @np:         device node from which the property value is to be read.
1062  * @propname:   name of the property to be searched.
1063  *
1064  * Search for a boolean property in a device node. Usage on non-boolean
1065  * property types is deprecated.
1066  *
1067  * Return: true if the property exists false otherwise.
1068  */
1069 static inline bool of_property_read_bool(const struct device_node *np,
1070                                          const char *propname)
1071 {
1072         struct property *prop = of_find_property(np, propname, NULL);
1073
1074         return prop ? true : false;
1075 }
1076
1077 /**
1078  * of_property_present - Test if a property is present in a node
1079  * @np:         device node to search for the property.
1080  * @propname:   name of the property to be searched.
1081  *
1082  * Test for a property present in a device node.
1083  *
1084  * Return: true if the property exists false otherwise.
1085  */
1086 static inline bool of_property_present(const struct device_node *np, const char *propname)
1087 {
1088         return of_property_read_bool(np, propname);
1089 }
1090
1091 /**
1092  * of_property_read_u8_array - Find and read an array of u8 from a property.
1093  *
1094  * @np:         device node from which the property value is to be read.
1095  * @propname:   name of the property to be searched.
1096  * @out_values: pointer to return value, modified only if return value is 0.
1097  * @sz:         number of array elements to read
1098  *
1099  * Search for a property in a device node and read 8-bit value(s) from
1100  * it.
1101  *
1102  * dts entry of array should be like:
1103  *  ``property = /bits/ 8 <0x50 0x60 0x70>;``
1104  *
1105  * Return: 0 on success, -EINVAL if the property does not exist,
1106  * -ENODATA if property does not have a value, and -EOVERFLOW if the
1107  * property data isn't large enough.
1108  *
1109  * The out_values is modified only if a valid u8 value can be decoded.
1110  */
1111 static inline int of_property_read_u8_array(const struct device_node *np,
1112                                             const char *propname,
1113                                             u8 *out_values, size_t sz)
1114 {
1115         int ret = of_property_read_variable_u8_array(np, propname, out_values,
1116                                                      sz, 0);
1117         if (ret >= 0)
1118                 return 0;
1119         else
1120                 return ret;
1121 }
1122
1123 /**
1124  * of_property_read_u16_array - Find and read an array of u16 from a property.
1125  *
1126  * @np:         device node from which the property value is to be read.
1127  * @propname:   name of the property to be searched.
1128  * @out_values: pointer to return value, modified only if return value is 0.
1129  * @sz:         number of array elements to read
1130  *
1131  * Search for a property in a device node and read 16-bit value(s) from
1132  * it.
1133  *
1134  * dts entry of array should be like:
1135  *  ``property = /bits/ 16 <0x5000 0x6000 0x7000>;``
1136  *
1137  * Return: 0 on success, -EINVAL if the property does not exist,
1138  * -ENODATA if property does not have a value, and -EOVERFLOW if the
1139  * property data isn't large enough.
1140  *
1141  * The out_values is modified only if a valid u16 value can be decoded.
1142  */
1143 static inline int of_property_read_u16_array(const struct device_node *np,
1144                                              const char *propname,
1145                                              u16 *out_values, size_t sz)
1146 {
1147         int ret = of_property_read_variable_u16_array(np, propname, out_values,
1148                                                       sz, 0);
1149         if (ret >= 0)
1150                 return 0;
1151         else
1152                 return ret;
1153 }
1154
1155 /**
1156  * of_property_read_u32_array - Find and read an array of 32 bit integers
1157  * from a property.
1158  *
1159  * @np:         device node from which the property value is to be read.
1160  * @propname:   name of the property to be searched.
1161  * @out_values: pointer to return value, modified only if return value is 0.
1162  * @sz:         number of array elements to read
1163  *
1164  * Search for a property in a device node and read 32-bit value(s) from
1165  * it.
1166  *
1167  * Return: 0 on success, -EINVAL if the property does not exist,
1168  * -ENODATA if property does not have a value, and -EOVERFLOW if the
1169  * property data isn't large enough.
1170  *
1171  * The out_values is modified only if a valid u32 value can be decoded.
1172  */
1173 static inline int of_property_read_u32_array(const struct device_node *np,
1174                                              const char *propname,
1175                                              u32 *out_values, size_t sz)
1176 {
1177         int ret = of_property_read_variable_u32_array(np, propname, out_values,
1178                                                       sz, 0);
1179         if (ret >= 0)
1180                 return 0;
1181         else
1182                 return ret;
1183 }
1184
1185 /**
1186  * of_property_read_u64_array - Find and read an array of 64 bit integers
1187  * from a property.
1188  *
1189  * @np:         device node from which the property value is to be read.
1190  * @propname:   name of the property to be searched.
1191  * @out_values: pointer to return value, modified only if return value is 0.
1192  * @sz:         number of array elements to read
1193  *
1194  * Search for a property in a device node and read 64-bit value(s) from
1195  * it.
1196  *
1197  * Return: 0 on success, -EINVAL if the property does not exist,
1198  * -ENODATA if property does not have a value, and -EOVERFLOW if the
1199  * property data isn't large enough.
1200  *
1201  * The out_values is modified only if a valid u64 value can be decoded.
1202  */
1203 static inline int of_property_read_u64_array(const struct device_node *np,
1204                                              const char *propname,
1205                                              u64 *out_values, size_t sz)
1206 {
1207         int ret = of_property_read_variable_u64_array(np, propname, out_values,
1208                                                       sz, 0);
1209         if (ret >= 0)
1210                 return 0;
1211         else
1212                 return ret;
1213 }
1214
1215 static inline int of_property_read_u8(const struct device_node *np,
1216                                        const char *propname,
1217                                        u8 *out_value)
1218 {
1219         return of_property_read_u8_array(np, propname, out_value, 1);
1220 }
1221
1222 static inline int of_property_read_u16(const struct device_node *np,
1223                                        const char *propname,
1224                                        u16 *out_value)
1225 {
1226         return of_property_read_u16_array(np, propname, out_value, 1);
1227 }
1228
1229 static inline int of_property_read_u32(const struct device_node *np,
1230                                        const char *propname,
1231                                        u32 *out_value)
1232 {
1233         return of_property_read_u32_array(np, propname, out_value, 1);
1234 }
1235
1236 static inline int of_property_read_s32(const struct device_node *np,
1237                                        const char *propname,
1238                                        s32 *out_value)
1239 {
1240         return of_property_read_u32(np, propname, (u32*) out_value);
1241 }
1242
1243 #define of_for_each_phandle(it, err, np, ln, cn, cc)                    \
1244         for (of_phandle_iterator_init((it), (np), (ln), (cn), (cc)),    \
1245              err = of_phandle_iterator_next(it);                        \
1246              err == 0;                                                  \
1247              err = of_phandle_iterator_next(it))
1248
1249 #define of_property_for_each_u32(np, propname, prop, p, u)      \
1250         for (prop = of_find_property(np, propname, NULL),       \
1251                 p = of_prop_next_u32(prop, NULL, &u);           \
1252                 p;                                              \
1253                 p = of_prop_next_u32(prop, p, &u))
1254
1255 #define of_property_for_each_string(np, propname, prop, s)      \
1256         for (prop = of_find_property(np, propname, NULL),       \
1257                 s = of_prop_next_string(prop, NULL);            \
1258                 s;                                              \
1259                 s = of_prop_next_string(prop, s))
1260
1261 #define for_each_node_by_name(dn, name) \
1262         for (dn = of_find_node_by_name(NULL, name); dn; \
1263              dn = of_find_node_by_name(dn, name))
1264 #define for_each_node_by_type(dn, type) \
1265         for (dn = of_find_node_by_type(NULL, type); dn; \
1266              dn = of_find_node_by_type(dn, type))
1267 #define for_each_compatible_node(dn, type, compatible) \
1268         for (dn = of_find_compatible_node(NULL, type, compatible); dn; \
1269              dn = of_find_compatible_node(dn, type, compatible))
1270 #define for_each_matching_node(dn, matches) \
1271         for (dn = of_find_matching_node(NULL, matches); dn; \
1272              dn = of_find_matching_node(dn, matches))
1273 #define for_each_matching_node_and_match(dn, matches, match) \
1274         for (dn = of_find_matching_node_and_match(NULL, matches, match); \
1275              dn; dn = of_find_matching_node_and_match(dn, matches, match))
1276
1277 #define for_each_child_of_node(parent, child) \
1278         for (child = of_get_next_child(parent, NULL); child != NULL; \
1279              child = of_get_next_child(parent, child))
1280 #define for_each_available_child_of_node(parent, child) \
1281         for (child = of_get_next_available_child(parent, NULL); child != NULL; \
1282              child = of_get_next_available_child(parent, child))
1283
1284 #define for_each_of_cpu_node(cpu) \
1285         for (cpu = of_get_next_cpu_node(NULL); cpu != NULL; \
1286              cpu = of_get_next_cpu_node(cpu))
1287
1288 #define for_each_node_with_property(dn, prop_name) \
1289         for (dn = of_find_node_with_property(NULL, prop_name); dn; \
1290              dn = of_find_node_with_property(dn, prop_name))
1291
1292 static inline int of_get_child_count(const struct device_node *np)
1293 {
1294         struct device_node *child;
1295         int num = 0;
1296
1297         for_each_child_of_node(np, child)
1298                 num++;
1299
1300         return num;
1301 }
1302
1303 static inline int of_get_available_child_count(const struct device_node *np)
1304 {
1305         struct device_node *child;
1306         int num = 0;
1307
1308         for_each_available_child_of_node(np, child)
1309                 num++;
1310
1311         return num;
1312 }
1313
1314 #if defined(CONFIG_OF) && !defined(MODULE)
1315 #define _OF_DECLARE(table, name, compat, fn, fn_type)                   \
1316         static const struct of_device_id __of_table_##name              \
1317                 __used __section("__" #table "_of_table")               \
1318                 __aligned(__alignof__(struct of_device_id))             \
1319                  = { .compatible = compat,                              \
1320                      .data = (fn == (fn_type)NULL) ? fn : fn  }
1321 #else
1322 #define _OF_DECLARE(table, name, compat, fn, fn_type)                   \
1323         static const struct of_device_id __of_table_##name              \
1324                 __attribute__((unused))                                 \
1325                  = { .compatible = compat,                              \
1326                      .data = (fn == (fn_type)NULL) ? fn : fn }
1327 #endif
1328
1329 typedef int (*of_init_fn_2)(struct device_node *, struct device_node *);
1330 typedef int (*of_init_fn_1_ret)(struct device_node *);
1331 typedef void (*of_init_fn_1)(struct device_node *);
1332
1333 #define OF_DECLARE_1(table, name, compat, fn) \
1334                 _OF_DECLARE(table, name, compat, fn, of_init_fn_1)
1335 #define OF_DECLARE_1_RET(table, name, compat, fn) \
1336                 _OF_DECLARE(table, name, compat, fn, of_init_fn_1_ret)
1337 #define OF_DECLARE_2(table, name, compat, fn) \
1338                 _OF_DECLARE(table, name, compat, fn, of_init_fn_2)
1339
1340 /**
1341  * struct of_changeset_entry    - Holds a changeset entry
1342  *
1343  * @node:       list_head for the log list
1344  * @action:     notifier action
1345  * @np:         pointer to the device node affected
1346  * @prop:       pointer to the property affected
1347  * @old_prop:   hold a pointer to the original property
1348  *
1349  * Every modification of the device tree during a changeset
1350  * is held in a list of of_changeset_entry structures.
1351  * That way we can recover from a partial application, or we can
1352  * revert the changeset
1353  */
1354 struct of_changeset_entry {
1355         struct list_head node;
1356         unsigned long action;
1357         struct device_node *np;
1358         struct property *prop;
1359         struct property *old_prop;
1360 };
1361
1362 /**
1363  * struct of_changeset - changeset tracker structure
1364  *
1365  * @entries:    list_head for the changeset entries
1366  *
1367  * changesets are a convenient way to apply bulk changes to the
1368  * live tree. In case of an error, changes are rolled-back.
1369  * changesets live on after initial application, and if not
1370  * destroyed after use, they can be reverted in one single call.
1371  */
1372 struct of_changeset {
1373         struct list_head entries;
1374 };
1375
1376 enum of_reconfig_change {
1377         OF_RECONFIG_NO_CHANGE = 0,
1378         OF_RECONFIG_CHANGE_ADD,
1379         OF_RECONFIG_CHANGE_REMOVE,
1380 };
1381
1382 #ifdef CONFIG_OF_DYNAMIC
1383 extern int of_reconfig_notifier_register(struct notifier_block *);
1384 extern int of_reconfig_notifier_unregister(struct notifier_block *);
1385 extern int of_reconfig_notify(unsigned long, struct of_reconfig_data *rd);
1386 extern int of_reconfig_get_state_change(unsigned long action,
1387                                         struct of_reconfig_data *arg);
1388
1389 extern void of_changeset_init(struct of_changeset *ocs);
1390 extern void of_changeset_destroy(struct of_changeset *ocs);
1391 extern int of_changeset_apply(struct of_changeset *ocs);
1392 extern int of_changeset_revert(struct of_changeset *ocs);
1393 extern int of_changeset_action(struct of_changeset *ocs,
1394                 unsigned long action, struct device_node *np,
1395                 struct property *prop);
1396
1397 static inline int of_changeset_attach_node(struct of_changeset *ocs,
1398                 struct device_node *np)
1399 {
1400         return of_changeset_action(ocs, OF_RECONFIG_ATTACH_NODE, np, NULL);
1401 }
1402
1403 static inline int of_changeset_detach_node(struct of_changeset *ocs,
1404                 struct device_node *np)
1405 {
1406         return of_changeset_action(ocs, OF_RECONFIG_DETACH_NODE, np, NULL);
1407 }
1408
1409 static inline int of_changeset_add_property(struct of_changeset *ocs,
1410                 struct device_node *np, struct property *prop)
1411 {
1412         return of_changeset_action(ocs, OF_RECONFIG_ADD_PROPERTY, np, prop);
1413 }
1414
1415 static inline int of_changeset_remove_property(struct of_changeset *ocs,
1416                 struct device_node *np, struct property *prop)
1417 {
1418         return of_changeset_action(ocs, OF_RECONFIG_REMOVE_PROPERTY, np, prop);
1419 }
1420
1421 static inline int of_changeset_update_property(struct of_changeset *ocs,
1422                 struct device_node *np, struct property *prop)
1423 {
1424         return of_changeset_action(ocs, OF_RECONFIG_UPDATE_PROPERTY, np, prop);
1425 }
1426 #else /* CONFIG_OF_DYNAMIC */
1427 static inline int of_reconfig_notifier_register(struct notifier_block *nb)
1428 {
1429         return -EINVAL;
1430 }
1431 static inline int of_reconfig_notifier_unregister(struct notifier_block *nb)
1432 {
1433         return -EINVAL;
1434 }
1435 static inline int of_reconfig_notify(unsigned long action,
1436                                      struct of_reconfig_data *arg)
1437 {
1438         return -EINVAL;
1439 }
1440 static inline int of_reconfig_get_state_change(unsigned long action,
1441                                                 struct of_reconfig_data *arg)
1442 {
1443         return -EINVAL;
1444 }
1445 #endif /* CONFIG_OF_DYNAMIC */
1446
1447 /**
1448  * of_device_is_system_power_controller - Tells if system-power-controller is found for device_node
1449  * @np: Pointer to the given device_node
1450  *
1451  * Return: true if present false otherwise
1452  */
1453 static inline bool of_device_is_system_power_controller(const struct device_node *np)
1454 {
1455         return of_property_read_bool(np, "system-power-controller");
1456 }
1457
1458 /**
1459  * Overlay support
1460  */
1461
1462 enum of_overlay_notify_action {
1463         OF_OVERLAY_PRE_APPLY = 0,
1464         OF_OVERLAY_POST_APPLY,
1465         OF_OVERLAY_PRE_REMOVE,
1466         OF_OVERLAY_POST_REMOVE,
1467 };
1468
1469 struct of_overlay_notify_data {
1470         struct device_node *overlay;
1471         struct device_node *target;
1472 };
1473
1474 #ifdef CONFIG_OF_OVERLAY
1475
1476 int of_overlay_fdt_apply(const void *overlay_fdt, u32 overlay_fdt_size,
1477                          int *ovcs_id);
1478 int of_overlay_remove(int *ovcs_id);
1479 int of_overlay_remove_all(void);
1480
1481 int of_overlay_notifier_register(struct notifier_block *nb);
1482 int of_overlay_notifier_unregister(struct notifier_block *nb);
1483
1484 #else
1485
1486 static inline int of_overlay_fdt_apply(void *overlay_fdt, u32 overlay_fdt_size,
1487                                        int *ovcs_id)
1488 {
1489         return -ENOTSUPP;
1490 }
1491
1492 static inline int of_overlay_remove(int *ovcs_id)
1493 {
1494         return -ENOTSUPP;
1495 }
1496
1497 static inline int of_overlay_remove_all(void)
1498 {
1499         return -ENOTSUPP;
1500 }
1501
1502 static inline int of_overlay_notifier_register(struct notifier_block *nb)
1503 {
1504         return 0;
1505 }
1506
1507 static inline int of_overlay_notifier_unregister(struct notifier_block *nb)
1508 {
1509         return 0;
1510 }
1511
1512 #endif
1513
1514 #endif /* _LINUX_OF_H */