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;
of_node_init(struct device_node * node)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 fwnode_init(&node->fwnode, &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 */
of_node_get(struct device_node * node)125 static inline struct device_node *of_node_get(struct device_node *node)
126 {
127 return node;
128 }
of_node_put(struct device_node * node)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
is_of_node(const struct fwnode_handle * fwnode)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
of_have_populated_dt(void)178 static inline bool of_have_populated_dt(void)
179 {
180 return of_root != NULL;
181 }
182
of_node_is_root(const struct device_node * node)183 static inline bool of_node_is_root(const struct device_node *node)
184 {
185 return node && (node->parent == NULL);
186 }
187
of_node_check_flag(struct device_node * n,unsigned long flag)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
of_node_test_and_set_flag(struct device_node * n,unsigned long flag)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
of_node_set_flag(struct device_node * n,unsigned long flag)199 static inline void of_node_set_flag(struct device_node *n, unsigned long flag)
200 {
201 set_bit(flag, &n->_flags);
202 }
203
of_node_clear_flag(struct device_node * n,unsigned long flag)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)
of_property_check_flag(struct property * p,unsigned long flag)210 static inline int of_property_check_flag(struct property *p, unsigned long flag)
211 {
212 return test_bit(flag, &p->_flags);
213 }
214
of_property_set_flag(struct property * p,unsigned long flag)215 static inline void of_property_set_flag(struct property *p, unsigned long flag)
216 {
217 set_bit(flag, &p->_flags);
218 }
219
of_property_clear_flag(struct property * p,unsigned long flag)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) */
of_read_number(const __be32 * cell,int size)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 */
of_read_ulong(const __be32 * cell,int size)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
of_node_full_name(const struct device_node * np)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);
of_find_node_by_path(const char * path)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 struct kimage;
448 void *of_kexec_alloc_and_setup_fdt(const struct kimage *image,
449 unsigned long initrd_load_addr,
450 unsigned long initrd_len,
451 const char *cmdline, size_t extra_fdt_size);
452 int ima_get_kexec_buffer(void **addr, size_t *size);
453 int __init ima_free_kexec_buffer(void);
454 #else /* CONFIG_OF */
455
of_core_init(void)456 static inline void of_core_init(void)
457 {
458 }
459
is_of_node(const struct fwnode_handle * fwnode)460 static inline bool is_of_node(const struct fwnode_handle *fwnode)
461 {
462 return false;
463 }
464
to_of_node(const struct fwnode_handle * fwnode)465 static inline struct device_node *to_of_node(const struct fwnode_handle *fwnode)
466 {
467 return NULL;
468 }
469
of_node_name_eq(const struct device_node * np,const char * name)470 static inline bool of_node_name_eq(const struct device_node *np, const char *name)
471 {
472 return false;
473 }
474
of_node_name_prefix(const struct device_node * np,const char * prefix)475 static inline bool of_node_name_prefix(const struct device_node *np, const char *prefix)
476 {
477 return false;
478 }
479
of_node_full_name(const struct device_node * np)480 static inline const char* of_node_full_name(const struct device_node *np)
481 {
482 return "<no-node>";
483 }
484
of_find_node_by_name(struct device_node * from,const char * name)485 static inline struct device_node *of_find_node_by_name(struct device_node *from,
486 const char *name)
487 {
488 return NULL;
489 }
490
of_find_node_by_type(struct device_node * from,const char * type)491 static inline struct device_node *of_find_node_by_type(struct device_node *from,
492 const char *type)
493 {
494 return NULL;
495 }
496
of_find_matching_node_and_match(struct device_node * from,const struct of_device_id * matches,const struct of_device_id ** match)497 static inline struct device_node *of_find_matching_node_and_match(
498 struct device_node *from,
499 const struct of_device_id *matches,
500 const struct of_device_id **match)
501 {
502 return NULL;
503 }
504
of_find_node_by_path(const char * path)505 static inline struct device_node *of_find_node_by_path(const char *path)
506 {
507 return NULL;
508 }
509
of_find_node_opts_by_path(const char * path,const char ** opts)510 static inline struct device_node *of_find_node_opts_by_path(const char *path,
511 const char **opts)
512 {
513 return NULL;
514 }
515
of_find_node_by_phandle(phandle handle)516 static inline struct device_node *of_find_node_by_phandle(phandle handle)
517 {
518 return NULL;
519 }
520
of_get_parent(const struct device_node * node)521 static inline struct device_node *of_get_parent(const struct device_node *node)
522 {
523 return NULL;
524 }
525
of_get_next_parent(struct device_node * node)526 static inline struct device_node *of_get_next_parent(struct device_node *node)
527 {
528 return NULL;
529 }
530
of_get_next_child(const struct device_node * node,struct device_node * prev)531 static inline struct device_node *of_get_next_child(
532 const struct device_node *node, struct device_node *prev)
533 {
534 return NULL;
535 }
536
of_get_next_available_child(const struct device_node * node,struct device_node * prev)537 static inline struct device_node *of_get_next_available_child(
538 const struct device_node *node, struct device_node *prev)
539 {
540 return NULL;
541 }
542
of_find_node_with_property(struct device_node * from,const char * prop_name)543 static inline struct device_node *of_find_node_with_property(
544 struct device_node *from, const char *prop_name)
545 {
546 return NULL;
547 }
548
549 #define of_fwnode_handle(node) NULL
550
of_have_populated_dt(void)551 static inline bool of_have_populated_dt(void)
552 {
553 return false;
554 }
555
of_get_compatible_child(const struct device_node * parent,const char * compatible)556 static inline struct device_node *of_get_compatible_child(const struct device_node *parent,
557 const char *compatible)
558 {
559 return NULL;
560 }
561
of_get_child_by_name(const struct device_node * node,const char * name)562 static inline struct device_node *of_get_child_by_name(
563 const struct device_node *node,
564 const char *name)
565 {
566 return NULL;
567 }
568
of_device_is_compatible(const struct device_node * device,const char * name)569 static inline int of_device_is_compatible(const struct device_node *device,
570 const char *name)
571 {
572 return 0;
573 }
574
of_device_compatible_match(struct device_node * device,const char * const * compat)575 static inline int of_device_compatible_match(struct device_node *device,
576 const char *const *compat)
577 {
578 return 0;
579 }
580
of_device_is_available(const struct device_node * device)581 static inline bool of_device_is_available(const struct device_node *device)
582 {
583 return false;
584 }
585
of_device_is_big_endian(const struct device_node * device)586 static inline bool of_device_is_big_endian(const struct device_node *device)
587 {
588 return false;
589 }
590
of_find_property(const struct device_node * np,const char * name,int * lenp)591 static inline struct property *of_find_property(const struct device_node *np,
592 const char *name,
593 int *lenp)
594 {
595 return NULL;
596 }
597
of_find_compatible_node(struct device_node * from,const char * type,const char * compat)598 static inline struct device_node *of_find_compatible_node(
599 struct device_node *from,
600 const char *type,
601 const char *compat)
602 {
603 return NULL;
604 }
605
of_property_count_elems_of_size(const struct device_node * np,const char * propname,int elem_size)606 static inline int of_property_count_elems_of_size(const struct device_node *np,
607 const char *propname, int elem_size)
608 {
609 return -ENOSYS;
610 }
611
of_property_read_u32_index(const struct device_node * np,const char * propname,u32 index,u32 * out_value)612 static inline int of_property_read_u32_index(const struct device_node *np,
613 const char *propname, u32 index, u32 *out_value)
614 {
615 return -ENOSYS;
616 }
617
of_property_read_u64_index(const struct device_node * np,const char * propname,u32 index,u64 * out_value)618 static inline int of_property_read_u64_index(const struct device_node *np,
619 const char *propname, u32 index, u64 *out_value)
620 {
621 return -ENOSYS;
622 }
623
of_get_property(const struct device_node * node,const char * name,int * lenp)624 static inline const void *of_get_property(const struct device_node *node,
625 const char *name,
626 int *lenp)
627 {
628 return NULL;
629 }
630
of_get_cpu_node(int cpu,unsigned int * thread)631 static inline struct device_node *of_get_cpu_node(int cpu,
632 unsigned int *thread)
633 {
634 return NULL;
635 }
636
of_get_next_cpu_node(struct device_node * prev)637 static inline struct device_node *of_get_next_cpu_node(struct device_node *prev)
638 {
639 return NULL;
640 }
641
of_get_cpu_state_node(struct device_node * cpu_node,int index)642 static inline struct device_node *of_get_cpu_state_node(struct device_node *cpu_node,
643 int index)
644 {
645 return NULL;
646 }
647
of_n_addr_cells(struct device_node * np)648 static inline int of_n_addr_cells(struct device_node *np)
649 {
650 return 0;
651
652 }
of_n_size_cells(struct device_node * np)653 static inline int of_n_size_cells(struct device_node *np)
654 {
655 return 0;
656 }
657
of_property_read_variable_u8_array(const struct device_node * np,const char * propname,u8 * out_values,size_t sz_min,size_t sz_max)658 static inline int of_property_read_variable_u8_array(const struct device_node *np,
659 const char *propname, u8 *out_values,
660 size_t sz_min, size_t sz_max)
661 {
662 return -ENOSYS;
663 }
664
of_property_read_variable_u16_array(const struct device_node * np,const char * propname,u16 * out_values,size_t sz_min,size_t sz_max)665 static inline int of_property_read_variable_u16_array(const struct device_node *np,
666 const char *propname, u16 *out_values,
667 size_t sz_min, size_t sz_max)
668 {
669 return -ENOSYS;
670 }
671
of_property_read_variable_u32_array(const struct device_node * np,const char * propname,u32 * out_values,size_t sz_min,size_t sz_max)672 static inline int of_property_read_variable_u32_array(const struct device_node *np,
673 const char *propname,
674 u32 *out_values,
675 size_t sz_min,
676 size_t sz_max)
677 {
678 return -ENOSYS;
679 }
680
of_property_read_u64(const struct device_node * np,const char * propname,u64 * out_value)681 static inline int of_property_read_u64(const struct device_node *np,
682 const char *propname, u64 *out_value)
683 {
684 return -ENOSYS;
685 }
686
of_property_read_variable_u64_array(const struct device_node * np,const char * propname,u64 * out_values,size_t sz_min,size_t sz_max)687 static inline int of_property_read_variable_u64_array(const struct device_node *np,
688 const char *propname,
689 u64 *out_values,
690 size_t sz_min,
691 size_t sz_max)
692 {
693 return -ENOSYS;
694 }
695
of_property_read_string(const struct device_node * np,const char * propname,const char ** out_string)696 static inline int of_property_read_string(const struct device_node *np,
697 const char *propname,
698 const char **out_string)
699 {
700 return -ENOSYS;
701 }
702
of_property_match_string(const struct device_node * np,const char * propname,const char * string)703 static inline int of_property_match_string(const struct device_node *np,
704 const char *propname,
705 const char *string)
706 {
707 return -ENOSYS;
708 }
709
of_property_read_string_helper(const struct device_node * np,const char * propname,const char ** out_strs,size_t sz,int index)710 static inline int of_property_read_string_helper(const struct device_node *np,
711 const char *propname,
712 const char **out_strs, size_t sz, int index)
713 {
714 return -ENOSYS;
715 }
716
of_parse_phandle(const struct device_node * np,const char * phandle_name,int index)717 static inline struct device_node *of_parse_phandle(const struct device_node *np,
718 const char *phandle_name,
719 int index)
720 {
721 return NULL;
722 }
723
of_parse_phandle_with_args(const struct device_node * np,const char * list_name,const char * cells_name,int index,struct of_phandle_args * out_args)724 static inline int of_parse_phandle_with_args(const struct device_node *np,
725 const char *list_name,
726 const char *cells_name,
727 int index,
728 struct of_phandle_args *out_args)
729 {
730 return -ENOSYS;
731 }
732
of_parse_phandle_with_args_map(const struct device_node * np,const char * list_name,const char * stem_name,int index,struct of_phandle_args * out_args)733 static inline int of_parse_phandle_with_args_map(const struct device_node *np,
734 const char *list_name,
735 const char *stem_name,
736 int index,
737 struct of_phandle_args *out_args)
738 {
739 return -ENOSYS;
740 }
741
of_parse_phandle_with_fixed_args(const struct device_node * np,const char * list_name,int cells_count,int index,struct of_phandle_args * out_args)742 static inline int of_parse_phandle_with_fixed_args(const struct device_node *np,
743 const char *list_name, int cells_count, int index,
744 struct of_phandle_args *out_args)
745 {
746 return -ENOSYS;
747 }
748
of_count_phandle_with_args(const struct device_node * np,const char * list_name,const char * cells_name)749 static inline int of_count_phandle_with_args(const struct device_node *np,
750 const char *list_name,
751 const char *cells_name)
752 {
753 return -ENOSYS;
754 }
755
of_phandle_iterator_init(struct of_phandle_iterator * it,const struct device_node * np,const char * list_name,const char * cells_name,int cell_count)756 static inline int of_phandle_iterator_init(struct of_phandle_iterator *it,
757 const struct device_node *np,
758 const char *list_name,
759 const char *cells_name,
760 int cell_count)
761 {
762 return -ENOSYS;
763 }
764
of_phandle_iterator_next(struct of_phandle_iterator * it)765 static inline int of_phandle_iterator_next(struct of_phandle_iterator *it)
766 {
767 return -ENOSYS;
768 }
769
of_phandle_iterator_args(struct of_phandle_iterator * it,uint32_t * args,int size)770 static inline int of_phandle_iterator_args(struct of_phandle_iterator *it,
771 uint32_t *args,
772 int size)
773 {
774 return 0;
775 }
776
of_alias_get_id(struct device_node * np,const char * stem)777 static inline int of_alias_get_id(struct device_node *np, const char *stem)
778 {
779 return -ENOSYS;
780 }
781
of_alias_get_highest_id(const char * stem)782 static inline int of_alias_get_highest_id(const char *stem)
783 {
784 return -ENOSYS;
785 }
786
of_alias_get_alias_list(const struct of_device_id * matches,const char * stem,unsigned long * bitmap,unsigned int nbits)787 static inline int of_alias_get_alias_list(const struct of_device_id *matches,
788 const char *stem, unsigned long *bitmap,
789 unsigned int nbits)
790 {
791 return -ENOSYS;
792 }
793
of_machine_is_compatible(const char * compat)794 static inline int of_machine_is_compatible(const char *compat)
795 {
796 return 0;
797 }
798
of_add_property(struct device_node * np,struct property * prop)799 static inline int of_add_property(struct device_node *np, struct property *prop)
800 {
801 return 0;
802 }
803
of_remove_property(struct device_node * np,struct property * prop)804 static inline int of_remove_property(struct device_node *np, struct property *prop)
805 {
806 return 0;
807 }
808
of_console_check(const struct device_node * dn,const char * name,int index)809 static inline bool of_console_check(const struct device_node *dn, const char *name, int index)
810 {
811 return false;
812 }
813
of_prop_next_u32(struct property * prop,const __be32 * cur,u32 * pu)814 static inline const __be32 *of_prop_next_u32(struct property *prop,
815 const __be32 *cur, u32 *pu)
816 {
817 return NULL;
818 }
819
of_prop_next_string(struct property * prop,const char * cur)820 static inline const char *of_prop_next_string(struct property *prop,
821 const char *cur)
822 {
823 return NULL;
824 }
825
of_node_check_flag(struct device_node * n,unsigned long flag)826 static inline int of_node_check_flag(struct device_node *n, unsigned long flag)
827 {
828 return 0;
829 }
830
of_node_test_and_set_flag(struct device_node * n,unsigned long flag)831 static inline int of_node_test_and_set_flag(struct device_node *n,
832 unsigned long flag)
833 {
834 return 0;
835 }
836
of_node_set_flag(struct device_node * n,unsigned long flag)837 static inline void of_node_set_flag(struct device_node *n, unsigned long flag)
838 {
839 }
840
of_node_clear_flag(struct device_node * n,unsigned long flag)841 static inline void of_node_clear_flag(struct device_node *n, unsigned long flag)
842 {
843 }
844
of_property_check_flag(struct property * p,unsigned long flag)845 static inline int of_property_check_flag(struct property *p, unsigned long flag)
846 {
847 return 0;
848 }
849
of_property_set_flag(struct property * p,unsigned long flag)850 static inline void of_property_set_flag(struct property *p, unsigned long flag)
851 {
852 }
853
of_property_clear_flag(struct property * p,unsigned long flag)854 static inline void of_property_clear_flag(struct property *p, unsigned long flag)
855 {
856 }
857
of_cpu_node_to_id(struct device_node * np)858 static inline int of_cpu_node_to_id(struct device_node *np)
859 {
860 return -ENODEV;
861 }
862
of_map_id(struct device_node * np,u32 id,const char * map_name,const char * map_mask_name,struct device_node ** target,u32 * id_out)863 static inline int of_map_id(struct device_node *np, u32 id,
864 const char *map_name, const char *map_mask_name,
865 struct device_node **target, u32 *id_out)
866 {
867 return -EINVAL;
868 }
869
of_dma_get_max_cpu_address(struct device_node * np)870 static inline phys_addr_t of_dma_get_max_cpu_address(struct device_node *np)
871 {
872 return PHYS_ADDR_MAX;
873 }
874
875 #define of_match_ptr(_ptr) NULL
876 #define of_match_node(_matches, _node) NULL
877 #endif /* CONFIG_OF */
878
879 /* Default string compare functions, Allow arch asm/prom.h to override */
880 #if !defined(of_compat_cmp)
881 #define of_compat_cmp(s1, s2, l) strcasecmp((s1), (s2))
882 #define of_prop_cmp(s1, s2) strcmp((s1), (s2))
883 #define of_node_cmp(s1, s2) strcasecmp((s1), (s2))
884 #endif
885
of_prop_val_eq(struct property * p1,struct property * p2)886 static inline int of_prop_val_eq(struct property *p1, struct property *p2)
887 {
888 return p1->length == p2->length &&
889 !memcmp(p1->value, p2->value, (size_t)p1->length);
890 }
891
892 #if defined(CONFIG_OF) && defined(CONFIG_NUMA)
893 extern int of_node_to_nid(struct device_node *np);
894 #else
of_node_to_nid(struct device_node * device)895 static inline int of_node_to_nid(struct device_node *device)
896 {
897 return NUMA_NO_NODE;
898 }
899 #endif
900
901 #ifdef CONFIG_OF_NUMA
902 extern int of_numa_init(void);
903 #else
of_numa_init(void)904 static inline int of_numa_init(void)
905 {
906 return -ENOSYS;
907 }
908 #endif
909
of_find_matching_node(struct device_node * from,const struct of_device_id * matches)910 static inline struct device_node *of_find_matching_node(
911 struct device_node *from,
912 const struct of_device_id *matches)
913 {
914 return of_find_matching_node_and_match(from, matches, NULL);
915 }
916
of_node_get_device_type(const struct device_node * np)917 static inline const char *of_node_get_device_type(const struct device_node *np)
918 {
919 return of_get_property(np, "device_type", NULL);
920 }
921
of_node_is_type(const struct device_node * np,const char * type)922 static inline bool of_node_is_type(const struct device_node *np, const char *type)
923 {
924 const char *match = of_node_get_device_type(np);
925
926 return np && match && type && !strcmp(match, type);
927 }
928
929 /**
930 * of_property_count_u8_elems - Count the number of u8 elements in a property
931 *
932 * @np: device node from which the property value is to be read.
933 * @propname: name of the property to be searched.
934 *
935 * Search for a property in a device node and count the number of u8 elements
936 * in it.
937 *
938 * Return: The number of elements on sucess, -EINVAL if the property does
939 * not exist or its length does not match a multiple of u8 and -ENODATA if the
940 * property does not have a value.
941 */
of_property_count_u8_elems(const struct device_node * np,const char * propname)942 static inline int of_property_count_u8_elems(const struct device_node *np,
943 const char *propname)
944 {
945 return of_property_count_elems_of_size(np, propname, sizeof(u8));
946 }
947
948 /**
949 * of_property_count_u16_elems - Count the number of u16 elements in a property
950 *
951 * @np: device node from which the property value is to be read.
952 * @propname: name of the property to be searched.
953 *
954 * Search for a property in a device node and count the number of u16 elements
955 * in it.
956 *
957 * Return: The number of elements on sucess, -EINVAL if the property does
958 * not exist or its length does not match a multiple of u16 and -ENODATA if the
959 * property does not have a value.
960 */
of_property_count_u16_elems(const struct device_node * np,const char * propname)961 static inline int of_property_count_u16_elems(const struct device_node *np,
962 const char *propname)
963 {
964 return of_property_count_elems_of_size(np, propname, sizeof(u16));
965 }
966
967 /**
968 * of_property_count_u32_elems - Count the number of u32 elements in a property
969 *
970 * @np: device node from which the property value is to be read.
971 * @propname: name of the property to be searched.
972 *
973 * Search for a property in a device node and count the number of u32 elements
974 * in it.
975 *
976 * Return: The number of elements on sucess, -EINVAL if the property does
977 * not exist or its length does not match a multiple of u32 and -ENODATA if the
978 * property does not have a value.
979 */
of_property_count_u32_elems(const struct device_node * np,const char * propname)980 static inline int of_property_count_u32_elems(const struct device_node *np,
981 const char *propname)
982 {
983 return of_property_count_elems_of_size(np, propname, sizeof(u32));
984 }
985
986 /**
987 * of_property_count_u64_elems - Count the number of u64 elements in a property
988 *
989 * @np: device node from which the property value is to be read.
990 * @propname: name of the property to be searched.
991 *
992 * Search for a property in a device node and count the number of u64 elements
993 * in it.
994 *
995 * Return: The number of elements on sucess, -EINVAL if the property does
996 * not exist or its length does not match a multiple of u64 and -ENODATA if the
997 * property does not have a value.
998 */
of_property_count_u64_elems(const struct device_node * np,const char * propname)999 static inline int of_property_count_u64_elems(const struct device_node *np,
1000 const char *propname)
1001 {
1002 return of_property_count_elems_of_size(np, propname, sizeof(u64));
1003 }
1004
1005 /**
1006 * of_property_read_string_array() - Read an array of strings from a multiple
1007 * strings property.
1008 * @np: device node from which the property value is to be read.
1009 * @propname: name of the property to be searched.
1010 * @out_strs: output array of string pointers.
1011 * @sz: number of array elements to read.
1012 *
1013 * Search for a property in a device tree node and retrieve a list of
1014 * terminated string values (pointer to data, not a copy) in that property.
1015 *
1016 * Return: If @out_strs is NULL, the number of strings in the property is returned.
1017 */
of_property_read_string_array(const struct device_node * np,const char * propname,const char ** out_strs,size_t sz)1018 static inline int of_property_read_string_array(const struct device_node *np,
1019 const char *propname, const char **out_strs,
1020 size_t sz)
1021 {
1022 return of_property_read_string_helper(np, propname, out_strs, sz, 0);
1023 }
1024
1025 /**
1026 * of_property_count_strings() - Find and return the number of strings from a
1027 * multiple strings property.
1028 * @np: device node from which the property value is to be read.
1029 * @propname: name of the property to be searched.
1030 *
1031 * Search for a property in a device tree node and retrieve the number of null
1032 * terminated string contain in it.
1033 *
1034 * Return: The number of strings on success, -EINVAL if the property does not
1035 * exist, -ENODATA if property does not have a value, and -EILSEQ if the string
1036 * is not null-terminated within the length of the property data.
1037 */
of_property_count_strings(const struct device_node * np,const char * propname)1038 static inline int of_property_count_strings(const struct device_node *np,
1039 const char *propname)
1040 {
1041 return of_property_read_string_helper(np, propname, NULL, 0, 0);
1042 }
1043
1044 /**
1045 * of_property_read_string_index() - Find and read a string from a multiple
1046 * strings property.
1047 * @np: device node from which the property value is to be read.
1048 * @propname: name of the property to be searched.
1049 * @index: index of the string in the list of strings
1050 * @output: pointer to null terminated return string, modified only if
1051 * return value is 0.
1052 *
1053 * Search for a property in a device tree node and retrieve a null
1054 * terminated string value (pointer to data, not a copy) in the list of strings
1055 * contained in that property.
1056 *
1057 * Return: 0 on success, -EINVAL if the property does not exist, -ENODATA if
1058 * property does not have a value, and -EILSEQ if the string is not
1059 * null-terminated within the length of the property data.
1060 *
1061 * The out_string pointer is modified only if a valid string can be decoded.
1062 */
of_property_read_string_index(const struct device_node * np,const char * propname,int index,const char ** output)1063 static inline int of_property_read_string_index(const struct device_node *np,
1064 const char *propname,
1065 int index, const char **output)
1066 {
1067 int rc = of_property_read_string_helper(np, propname, output, 1, index);
1068 return rc < 0 ? rc : 0;
1069 }
1070
1071 /**
1072 * of_property_read_bool - Find a property
1073 * @np: device node from which the property value is to be read.
1074 * @propname: name of the property to be searched.
1075 *
1076 * Search for a boolean property in a device node. Usage on non-boolean
1077 * property types is deprecated.
1078 *
1079 * Return: true if the property exists false otherwise.
1080 */
of_property_read_bool(const struct device_node * np,const char * propname)1081 static inline bool of_property_read_bool(const struct device_node *np,
1082 const char *propname)
1083 {
1084 struct property *prop = of_find_property(np, propname, NULL);
1085
1086 return prop ? true : false;
1087 }
1088
1089 /**
1090 * of_property_present - Test if a property is present in a node
1091 * @np: device node to search for the property.
1092 * @propname: name of the property to be searched.
1093 *
1094 * Test for a property present in a device node.
1095 *
1096 * Return: true if the property exists false otherwise.
1097 */
of_property_present(const struct device_node * np,const char * propname)1098 static inline bool of_property_present(const struct device_node *np, const char *propname)
1099 {
1100 return of_property_read_bool(np, propname);
1101 }
1102
1103 /**
1104 * of_property_read_u8_array - Find and read an array of u8 from a property.
1105 *
1106 * @np: device node from which the property value is to be read.
1107 * @propname: name of the property to be searched.
1108 * @out_values: pointer to return value, modified only if return value is 0.
1109 * @sz: number of array elements to read
1110 *
1111 * Search for a property in a device node and read 8-bit value(s) from
1112 * it.
1113 *
1114 * dts entry of array should be like:
1115 * ``property = /bits/ 8 <0x50 0x60 0x70>;``
1116 *
1117 * Return: 0 on success, -EINVAL if the property does not exist,
1118 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1119 * property data isn't large enough.
1120 *
1121 * The out_values is modified only if a valid u8 value can be decoded.
1122 */
of_property_read_u8_array(const struct device_node * np,const char * propname,u8 * out_values,size_t sz)1123 static inline int of_property_read_u8_array(const struct device_node *np,
1124 const char *propname,
1125 u8 *out_values, size_t sz)
1126 {
1127 int ret = of_property_read_variable_u8_array(np, propname, out_values,
1128 sz, 0);
1129 if (ret >= 0)
1130 return 0;
1131 else
1132 return ret;
1133 }
1134
1135 /**
1136 * of_property_read_u16_array - Find and read an array of u16 from a property.
1137 *
1138 * @np: device node from which the property value is to be read.
1139 * @propname: name of the property to be searched.
1140 * @out_values: pointer to return value, modified only if return value is 0.
1141 * @sz: number of array elements to read
1142 *
1143 * Search for a property in a device node and read 16-bit value(s) from
1144 * it.
1145 *
1146 * dts entry of array should be like:
1147 * ``property = /bits/ 16 <0x5000 0x6000 0x7000>;``
1148 *
1149 * Return: 0 on success, -EINVAL if the property does not exist,
1150 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1151 * property data isn't large enough.
1152 *
1153 * The out_values is modified only if a valid u16 value can be decoded.
1154 */
of_property_read_u16_array(const struct device_node * np,const char * propname,u16 * out_values,size_t sz)1155 static inline int of_property_read_u16_array(const struct device_node *np,
1156 const char *propname,
1157 u16 *out_values, size_t sz)
1158 {
1159 int ret = of_property_read_variable_u16_array(np, propname, out_values,
1160 sz, 0);
1161 if (ret >= 0)
1162 return 0;
1163 else
1164 return ret;
1165 }
1166
1167 /**
1168 * of_property_read_u32_array - Find and read an array of 32 bit integers
1169 * from a property.
1170 *
1171 * @np: device node from which the property value is to be read.
1172 * @propname: name of the property to be searched.
1173 * @out_values: pointer to return value, modified only if return value is 0.
1174 * @sz: number of array elements to read
1175 *
1176 * Search for a property in a device node and read 32-bit value(s) from
1177 * it.
1178 *
1179 * Return: 0 on success, -EINVAL if the property does not exist,
1180 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1181 * property data isn't large enough.
1182 *
1183 * The out_values is modified only if a valid u32 value can be decoded.
1184 */
of_property_read_u32_array(const struct device_node * np,const char * propname,u32 * out_values,size_t sz)1185 static inline int of_property_read_u32_array(const struct device_node *np,
1186 const char *propname,
1187 u32 *out_values, size_t sz)
1188 {
1189 int ret = of_property_read_variable_u32_array(np, propname, out_values,
1190 sz, 0);
1191 if (ret >= 0)
1192 return 0;
1193 else
1194 return ret;
1195 }
1196
1197 /**
1198 * of_property_read_u64_array - Find and read an array of 64 bit integers
1199 * from a property.
1200 *
1201 * @np: device node from which the property value is to be read.
1202 * @propname: name of the property to be searched.
1203 * @out_values: pointer to return value, modified only if return value is 0.
1204 * @sz: number of array elements to read
1205 *
1206 * Search for a property in a device node and read 64-bit value(s) from
1207 * it.
1208 *
1209 * Return: 0 on success, -EINVAL if the property does not exist,
1210 * -ENODATA if property does not have a value, and -EOVERFLOW if the
1211 * property data isn't large enough.
1212 *
1213 * The out_values is modified only if a valid u64 value can be decoded.
1214 */
of_property_read_u64_array(const struct device_node * np,const char * propname,u64 * out_values,size_t sz)1215 static inline int of_property_read_u64_array(const struct device_node *np,
1216 const char *propname,
1217 u64 *out_values, size_t sz)
1218 {
1219 int ret = of_property_read_variable_u64_array(np, propname, out_values,
1220 sz, 0);
1221 if (ret >= 0)
1222 return 0;
1223 else
1224 return ret;
1225 }
1226
of_property_read_u8(const struct device_node * np,const char * propname,u8 * out_value)1227 static inline int of_property_read_u8(const struct device_node *np,
1228 const char *propname,
1229 u8 *out_value)
1230 {
1231 return of_property_read_u8_array(np, propname, out_value, 1);
1232 }
1233
of_property_read_u16(const struct device_node * np,const char * propname,u16 * out_value)1234 static inline int of_property_read_u16(const struct device_node *np,
1235 const char *propname,
1236 u16 *out_value)
1237 {
1238 return of_property_read_u16_array(np, propname, out_value, 1);
1239 }
1240
of_property_read_u32(const struct device_node * np,const char * propname,u32 * out_value)1241 static inline int of_property_read_u32(const struct device_node *np,
1242 const char *propname,
1243 u32 *out_value)
1244 {
1245 return of_property_read_u32_array(np, propname, out_value, 1);
1246 }
1247
of_property_read_s32(const struct device_node * np,const char * propname,s32 * out_value)1248 static inline int of_property_read_s32(const struct device_node *np,
1249 const char *propname,
1250 s32 *out_value)
1251 {
1252 return of_property_read_u32(np, propname, (u32*) out_value);
1253 }
1254
1255 #define of_for_each_phandle(it, err, np, ln, cn, cc) \
1256 for (of_phandle_iterator_init((it), (np), (ln), (cn), (cc)), \
1257 err = of_phandle_iterator_next(it); \
1258 err == 0; \
1259 err = of_phandle_iterator_next(it))
1260
1261 #define of_property_for_each_u32(np, propname, prop, p, u) \
1262 for (prop = of_find_property(np, propname, NULL), \
1263 p = of_prop_next_u32(prop, NULL, &u); \
1264 p; \
1265 p = of_prop_next_u32(prop, p, &u))
1266
1267 #define of_property_for_each_string(np, propname, prop, s) \
1268 for (prop = of_find_property(np, propname, NULL), \
1269 s = of_prop_next_string(prop, NULL); \
1270 s; \
1271 s = of_prop_next_string(prop, s))
1272
1273 #define for_each_node_by_name(dn, name) \
1274 for (dn = of_find_node_by_name(NULL, name); dn; \
1275 dn = of_find_node_by_name(dn, name))
1276 #define for_each_node_by_type(dn, type) \
1277 for (dn = of_find_node_by_type(NULL, type); dn; \
1278 dn = of_find_node_by_type(dn, type))
1279 #define for_each_compatible_node(dn, type, compatible) \
1280 for (dn = of_find_compatible_node(NULL, type, compatible); dn; \
1281 dn = of_find_compatible_node(dn, type, compatible))
1282 #define for_each_matching_node(dn, matches) \
1283 for (dn = of_find_matching_node(NULL, matches); dn; \
1284 dn = of_find_matching_node(dn, matches))
1285 #define for_each_matching_node_and_match(dn, matches, match) \
1286 for (dn = of_find_matching_node_and_match(NULL, matches, match); \
1287 dn; dn = of_find_matching_node_and_match(dn, matches, match))
1288
1289 #define for_each_child_of_node(parent, child) \
1290 for (child = of_get_next_child(parent, NULL); child != NULL; \
1291 child = of_get_next_child(parent, child))
1292 #define for_each_available_child_of_node(parent, child) \
1293 for (child = of_get_next_available_child(parent, NULL); child != NULL; \
1294 child = of_get_next_available_child(parent, child))
1295
1296 #define for_each_of_cpu_node(cpu) \
1297 for (cpu = of_get_next_cpu_node(NULL); cpu != NULL; \
1298 cpu = of_get_next_cpu_node(cpu))
1299
1300 #define for_each_node_with_property(dn, prop_name) \
1301 for (dn = of_find_node_with_property(NULL, prop_name); dn; \
1302 dn = of_find_node_with_property(dn, prop_name))
1303
of_get_child_count(const struct device_node * np)1304 static inline int of_get_child_count(const struct device_node *np)
1305 {
1306 struct device_node *child;
1307 int num = 0;
1308
1309 for_each_child_of_node(np, child)
1310 num++;
1311
1312 return num;
1313 }
1314
of_get_available_child_count(const struct device_node * np)1315 static inline int of_get_available_child_count(const struct device_node *np)
1316 {
1317 struct device_node *child;
1318 int num = 0;
1319
1320 for_each_available_child_of_node(np, child)
1321 num++;
1322
1323 return num;
1324 }
1325
1326 #define _OF_DECLARE_STUB(table, name, compat, fn, fn_type) \
1327 static const struct of_device_id __of_table_##name \
1328 __attribute__((unused)) \
1329 = { .compatible = compat, \
1330 .data = (fn == (fn_type)NULL) ? fn : fn }
1331
1332 #if defined(CONFIG_OF) && !defined(MODULE)
1333 #define _OF_DECLARE(table, name, compat, fn, fn_type) \
1334 static const struct of_device_id __of_table_##name \
1335 __used __section("__" #table "_of_table") \
1336 __aligned(__alignof__(struct of_device_id)) \
1337 = { .compatible = compat, \
1338 .data = (fn == (fn_type)NULL) ? fn : fn }
1339 #else
1340 #define _OF_DECLARE(table, name, compat, fn, fn_type) \
1341 _OF_DECLARE_STUB(table, name, compat, fn, fn_type)
1342 #endif
1343
1344 typedef int (*of_init_fn_2)(struct device_node *, struct device_node *);
1345 typedef int (*of_init_fn_1_ret)(struct device_node *);
1346 typedef void (*of_init_fn_1)(struct device_node *);
1347
1348 #define OF_DECLARE_1(table, name, compat, fn) \
1349 _OF_DECLARE(table, name, compat, fn, of_init_fn_1)
1350 #define OF_DECLARE_1_RET(table, name, compat, fn) \
1351 _OF_DECLARE(table, name, compat, fn, of_init_fn_1_ret)
1352 #define OF_DECLARE_2(table, name, compat, fn) \
1353 _OF_DECLARE(table, name, compat, fn, of_init_fn_2)
1354
1355 /**
1356 * struct of_changeset_entry - Holds a changeset entry
1357 *
1358 * @node: list_head for the log list
1359 * @action: notifier action
1360 * @np: pointer to the device node affected
1361 * @prop: pointer to the property affected
1362 * @old_prop: hold a pointer to the original property
1363 *
1364 * Every modification of the device tree during a changeset
1365 * is held in a list of of_changeset_entry structures.
1366 * That way we can recover from a partial application, or we can
1367 * revert the changeset
1368 */
1369 struct of_changeset_entry {
1370 struct list_head node;
1371 unsigned long action;
1372 struct device_node *np;
1373 struct property *prop;
1374 struct property *old_prop;
1375 };
1376
1377 /**
1378 * struct of_changeset - changeset tracker structure
1379 *
1380 * @entries: list_head for the changeset entries
1381 *
1382 * changesets are a convenient way to apply bulk changes to the
1383 * live tree. In case of an error, changes are rolled-back.
1384 * changesets live on after initial application, and if not
1385 * destroyed after use, they can be reverted in one single call.
1386 */
1387 struct of_changeset {
1388 struct list_head entries;
1389 };
1390
1391 enum of_reconfig_change {
1392 OF_RECONFIG_NO_CHANGE = 0,
1393 OF_RECONFIG_CHANGE_ADD,
1394 OF_RECONFIG_CHANGE_REMOVE,
1395 };
1396
1397 #ifdef CONFIG_OF_DYNAMIC
1398 extern int of_reconfig_notifier_register(struct notifier_block *);
1399 extern int of_reconfig_notifier_unregister(struct notifier_block *);
1400 extern int of_reconfig_notify(unsigned long, struct of_reconfig_data *rd);
1401 extern int of_reconfig_get_state_change(unsigned long action,
1402 struct of_reconfig_data *arg);
1403
1404 extern void of_changeset_init(struct of_changeset *ocs);
1405 extern void of_changeset_destroy(struct of_changeset *ocs);
1406 extern int of_changeset_apply(struct of_changeset *ocs);
1407 extern int of_changeset_revert(struct of_changeset *ocs);
1408 extern int of_changeset_action(struct of_changeset *ocs,
1409 unsigned long action, struct device_node *np,
1410 struct property *prop);
1411
of_changeset_attach_node(struct of_changeset * ocs,struct device_node * np)1412 static inline int of_changeset_attach_node(struct of_changeset *ocs,
1413 struct device_node *np)
1414 {
1415 return of_changeset_action(ocs, OF_RECONFIG_ATTACH_NODE, np, NULL);
1416 }
1417
of_changeset_detach_node(struct of_changeset * ocs,struct device_node * np)1418 static inline int of_changeset_detach_node(struct of_changeset *ocs,
1419 struct device_node *np)
1420 {
1421 return of_changeset_action(ocs, OF_RECONFIG_DETACH_NODE, np, NULL);
1422 }
1423
of_changeset_add_property(struct of_changeset * ocs,struct device_node * np,struct property * prop)1424 static inline int of_changeset_add_property(struct of_changeset *ocs,
1425 struct device_node *np, struct property *prop)
1426 {
1427 return of_changeset_action(ocs, OF_RECONFIG_ADD_PROPERTY, np, prop);
1428 }
1429
of_changeset_remove_property(struct of_changeset * ocs,struct device_node * np,struct property * prop)1430 static inline int of_changeset_remove_property(struct of_changeset *ocs,
1431 struct device_node *np, struct property *prop)
1432 {
1433 return of_changeset_action(ocs, OF_RECONFIG_REMOVE_PROPERTY, np, prop);
1434 }
1435
of_changeset_update_property(struct of_changeset * ocs,struct device_node * np,struct property * prop)1436 static inline int of_changeset_update_property(struct of_changeset *ocs,
1437 struct device_node *np, struct property *prop)
1438 {
1439 return of_changeset_action(ocs, OF_RECONFIG_UPDATE_PROPERTY, np, prop);
1440 }
1441 #else /* CONFIG_OF_DYNAMIC */
of_reconfig_notifier_register(struct notifier_block * nb)1442 static inline int of_reconfig_notifier_register(struct notifier_block *nb)
1443 {
1444 return -EINVAL;
1445 }
of_reconfig_notifier_unregister(struct notifier_block * nb)1446 static inline int of_reconfig_notifier_unregister(struct notifier_block *nb)
1447 {
1448 return -EINVAL;
1449 }
of_reconfig_notify(unsigned long action,struct of_reconfig_data * arg)1450 static inline int of_reconfig_notify(unsigned long action,
1451 struct of_reconfig_data *arg)
1452 {
1453 return -EINVAL;
1454 }
of_reconfig_get_state_change(unsigned long action,struct of_reconfig_data * arg)1455 static inline int of_reconfig_get_state_change(unsigned long action,
1456 struct of_reconfig_data *arg)
1457 {
1458 return -EINVAL;
1459 }
1460 #endif /* CONFIG_OF_DYNAMIC */
1461
1462 /**
1463 * of_device_is_system_power_controller - Tells if system-power-controller is found for device_node
1464 * @np: Pointer to the given device_node
1465 *
1466 * Return: true if present false otherwise
1467 */
of_device_is_system_power_controller(const struct device_node * np)1468 static inline bool of_device_is_system_power_controller(const struct device_node *np)
1469 {
1470 return of_property_read_bool(np, "system-power-controller");
1471 }
1472
1473 /*
1474 * Overlay support
1475 */
1476
1477 enum of_overlay_notify_action {
1478 OF_OVERLAY_INIT = 0, /* kzalloc() of ovcs sets this value */
1479 OF_OVERLAY_PRE_APPLY,
1480 OF_OVERLAY_POST_APPLY,
1481 OF_OVERLAY_PRE_REMOVE,
1482 OF_OVERLAY_POST_REMOVE,
1483 };
1484
of_overlay_action_name(enum of_overlay_notify_action action)1485 static inline char *of_overlay_action_name(enum of_overlay_notify_action action)
1486 {
1487 static char *of_overlay_action_name[] = {
1488 "init",
1489 "pre-apply",
1490 "post-apply",
1491 "pre-remove",
1492 "post-remove",
1493 };
1494
1495 return of_overlay_action_name[action];
1496 }
1497
1498 struct of_overlay_notify_data {
1499 struct device_node *overlay;
1500 struct device_node *target;
1501 };
1502
1503 #ifdef CONFIG_OF_OVERLAY
1504
1505 int of_overlay_fdt_apply(const void *overlay_fdt, u32 overlay_fdt_size,
1506 int *ovcs_id);
1507 int of_overlay_remove(int *ovcs_id);
1508 int of_overlay_remove_all(void);
1509
1510 int of_overlay_notifier_register(struct notifier_block *nb);
1511 int of_overlay_notifier_unregister(struct notifier_block *nb);
1512
1513 #else
1514
of_overlay_fdt_apply(void * overlay_fdt,u32 overlay_fdt_size,int * ovcs_id)1515 static inline int of_overlay_fdt_apply(void *overlay_fdt, u32 overlay_fdt_size,
1516 int *ovcs_id)
1517 {
1518 return -ENOTSUPP;
1519 }
1520
of_overlay_remove(int * ovcs_id)1521 static inline int of_overlay_remove(int *ovcs_id)
1522 {
1523 return -ENOTSUPP;
1524 }
1525
of_overlay_remove_all(void)1526 static inline int of_overlay_remove_all(void)
1527 {
1528 return -ENOTSUPP;
1529 }
1530
of_overlay_notifier_register(struct notifier_block * nb)1531 static inline int of_overlay_notifier_register(struct notifier_block *nb)
1532 {
1533 return 0;
1534 }
1535
of_overlay_notifier_unregister(struct notifier_block * nb)1536 static inline int of_overlay_notifier_unregister(struct notifier_block *nb)
1537 {
1538 return 0;
1539 }
1540
1541 #endif
1542
1543 #endif /* _LINUX_OF_H */
1544