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