blob: 8f9e9675283750ddce7afae77808c2689cd252c4 [file] [log] [blame]
Stephen Rothwell76c1ce72007-05-01 16:19:07 +10001#ifndef _LINUX_OF_H
2#define _LINUX_OF_H
3/*
4 * Definitions for talking to the Open Firmware PROM on
5 * Power Macintosh and other computers.
6 *
7 * Copyright (C) 1996-2005 Paul Mackerras.
8 *
9 * Updates for PPC64 by Peter Bergner & David Engebretsen, IBM Corp.
10 * Updates for SPARC64 by David S. Miller
11 * Derived from PowerPC and Sparc prom.h files by Stephen Rothwell, IBM Corp.
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version
16 * 2 of the License, or (at your option) any later version.
17 */
18#include <linux/types.h>
Jiri Slaby1977f032007-10-18 23:40:25 -070019#include <linux/bitops.h>
Kalle Valoe51130c2011-10-06 15:40:44 +030020#include <linux/errno.h>
Grant Likely75b57ec2014-02-20 18:02:11 +000021#include <linux/kobject.h>
Grant Likely283029d2008-01-09 06:20:40 +110022#include <linux/mod_devicetable.h>
Grant Likely0d351c32010-02-14 14:13:57 -070023#include <linux/spinlock.h>
Paul Mundt5ca4db62012-06-03 22:04:34 -070024#include <linux/topology.h>
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +000025#include <linux/notifier.h>
Rafael J. Wysockib31384f2014-11-04 01:28:56 +010026#include <linux/property.h>
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020027#include <linux/list.h>
Stephen Rothwell76c1ce72007-05-01 16:19:07 +100028
Jeremy Kerr2e89e682010-01-30 01:41:49 -070029#include <asm/byteorder.h>
Paul Gortmakerd0a99402011-10-29 10:17:06 -040030#include <asm/errno.h>
Jeremy Kerr2e89e682010-01-30 01:41:49 -070031
Grant Likely731581e2009-10-15 10:57:46 -060032typedef u32 phandle;
33typedef u32 ihandle;
34
35struct property {
36 char *name;
37 int length;
38 void *value;
39 struct property *next;
40 unsigned long _flags;
Rob Herring36689ec2017-09-29 20:08:28 -050041#if defined(CONFIG_OF_PROMTREE)
Grant Likely731581e2009-10-15 10:57:46 -060042 unsigned int unique_id;
Rob Herring36689ec2017-09-29 20:08:28 -050043#endif
Grant Likely75b57ec2014-02-20 18:02:11 +000044 struct bin_attribute attr;
Grant Likely731581e2009-10-15 10:57:46 -060045};
46
Grant Likely6f192492009-10-15 10:57:49 -060047#if defined(CONFIG_SPARC)
48struct of_irq_controller;
49#endif
50
51struct device_node {
52 const char *name;
53 const char *type;
Grant Likely6016a362010-01-28 14:06:53 -070054 phandle phandle;
Grant Likelyc22618a2012-11-14 22:37:12 +000055 const char *full_name;
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +010056 struct fwnode_handle fwnode;
Grant Likely6f192492009-10-15 10:57:49 -060057
58 struct property *properties;
59 struct property *deadprops; /* removed properties */
60 struct device_node *parent;
61 struct device_node *child;
62 struct device_node *sibling;
Grant Likely75b57ec2014-02-20 18:02:11 +000063 struct kobject kobj;
Grant Likely6f192492009-10-15 10:57:49 -060064 unsigned long _flags;
65 void *data;
66#if defined(CONFIG_SPARC)
Grant Likelyc22618a2012-11-14 22:37:12 +000067 const char *path_component_name;
Grant Likely6f192492009-10-15 10:57:49 -060068 unsigned int unique_id;
69 struct of_irq_controller *irq_trans;
70#endif
71};
72
Andreas Herrmannb66548e22014-01-17 12:08:30 +010073#define MAX_PHANDLE_ARGS 16
Grant Likely15c9a0a2011-12-12 09:25:57 -070074struct of_phandle_args {
75 struct device_node *np;
76 int args_count;
77 uint32_t args[MAX_PHANDLE_ARGS];
78};
79
Joerg Roedel74e1fbb2016-04-04 17:49:17 +020080struct 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
Grant Likelyf5242e52014-11-24 17:58:01 +000097struct of_reconfig_data {
98 struct device_node *dn;
99 struct property *prop;
100 struct property *old_prop;
101};
102
Pantelis Antoniou0829f6d2013-12-13 20:08:59 +0200103/* initialize a node */
104extern struct kobj_type of_node_ktype;
Sakari Ailus37081842017-06-06 12:37:37 +0300105extern const struct fwnode_operations of_fwnode_ops;
Pantelis Antoniou0829f6d2013-12-13 20:08:59 +0200106static inline void of_node_init(struct device_node *node)
107{
108 kobject_init(&node->kobj, &of_node_ktype);
Sakari Ailus37081842017-06-06 12:37:37 +0300109 node->fwnode.ops = &of_fwnode_ops;
Pantelis Antoniou0829f6d2013-12-13 20:08:59 +0200110}
111
112/* true when node is initialized */
113static inline int of_node_is_initialized(struct device_node *node)
114{
115 return node && node->kobj.state_initialized;
116}
117
118/* true when node is attached (i.e. present on sysfs) */
119static inline int of_node_is_attached(struct device_node *node)
120{
121 return node && node->kobj.state_in_sysfs;
122}
123
Grant Likely0f22dd32012-02-15 20:38:40 -0700124#ifdef CONFIG_OF_DYNAMIC
125extern struct device_node *of_node_get(struct device_node *node);
126extern void of_node_put(struct device_node *node);
127#else /* CONFIG_OF_DYNAMIC */
Rob Herring3ecdd052011-12-13 09:13:54 -0600128/* Dummy ref counting routines - to be implemented later */
129static inline struct device_node *of_node_get(struct device_node *node)
130{
131 return node;
132}
Grant Likely0f22dd32012-02-15 20:38:40 -0700133static inline void of_node_put(struct device_node *node) { }
134#endif /* !CONFIG_OF_DYNAMIC */
Rob Herring3ecdd052011-12-13 09:13:54 -0600135
Grant Likely41f88002009-11-23 20:07:01 -0700136/* Pointer for first entry in chain of all nodes. */
Grant Likely5063e252014-10-03 16:28:27 +0100137extern struct device_node *of_root;
Grant Likelyfc0bdae2010-02-14 07:13:55 -0700138extern struct device_node *of_chosen;
Shawn Guo611cad72011-08-15 15:28:14 +0800139extern struct device_node *of_aliases;
Grant Likelya752ee52014-03-28 08:12:18 -0700140extern struct device_node *of_stdout;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500141extern raw_spinlock_t devtree_lock;
Grant Likely41f88002009-11-23 20:07:01 -0700142
Pantelis Antoniou391b4592015-04-24 12:41:56 +0300143/* flag descriptions (need to be visible even when !CONFIG_OF) */
144#define OF_DYNAMIC 1 /* node and properties were allocated via kmalloc */
145#define OF_DETACHED 2 /* node has been detached from the device tree */
146#define OF_POPULATED 3 /* device already created for the node */
147#define OF_POPULATED_BUS 4 /* of_platform_populate recursed to children of this node */
148
Guenter Roeckb1d06b62015-11-06 19:28:22 -0800149#define OF_BAD_ADDR ((u64)-1)
150
Hans de Goede6d09dc62014-11-14 13:26:52 +0100151#ifdef CONFIG_OF
Sudeep Holla194ec932015-05-14 15:28:24 +0100152void of_core_init(void);
153
Sakari Ailusd20dc142017-05-24 17:53:55 +0300154static inline bool is_of_node(const struct fwnode_handle *fwnode)
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +0100155{
Sakari Ailusdb3e50f2017-07-21 14:39:31 +0300156 return !IS_ERR_OR_NULL(fwnode) && fwnode->ops == &of_fwnode_ops;
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +0100157}
158
Sakari Ailusd20dc142017-05-24 17:53:55 +0300159#define to_of_node(__fwnode) \
160 ({ \
161 typeof(__fwnode) __to_of_node_fwnode = (__fwnode); \
162 \
163 is_of_node(__to_of_node_fwnode) ? \
164 container_of(__to_of_node_fwnode, \
165 struct device_node, fwnode) : \
166 NULL; \
167 })
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +0100168
Sakari Ailusdebd3a32017-05-24 17:53:54 +0300169#define of_fwnode_handle(node) \
170 ({ \
171 typeof(node) __of_fwnode_handle_node = (node); \
172 \
173 __of_fwnode_handle_node ? \
174 &__of_fwnode_handle_node->fwnode : NULL; \
175 })
Sakari Ailus678318372017-03-28 10:52:23 +0300176
Sebastian Andrzej Siewior3bcbaf62011-02-22 21:07:46 +0100177static inline bool of_have_populated_dt(void)
178{
Grant Likely5063e252014-10-03 16:28:27 +0100179 return of_root != NULL;
Sebastian Andrzej Siewior3bcbaf62011-02-22 21:07:46 +0100180}
181
Andres Salomon035ebef2010-07-13 09:42:26 +0000182static inline bool of_node_is_root(const struct device_node *node)
183{
184 return node && (node->parent == NULL);
185}
186
Grant Likely50436312009-10-15 10:57:58 -0600187static inline int of_node_check_flag(struct device_node *n, unsigned long flag)
188{
189 return test_bit(flag, &n->_flags);
190}
191
Pawel Mollc6e126d2014-05-15 16:55:24 +0100192static inline int of_node_test_and_set_flag(struct device_node *n,
193 unsigned long flag)
194{
195 return test_and_set_bit(flag, &n->_flags);
196}
197
Grant Likely50436312009-10-15 10:57:58 -0600198static inline void of_node_set_flag(struct device_node *n, unsigned long flag)
199{
200 set_bit(flag, &n->_flags);
201}
202
Pantelis Antoniou588453c2013-11-08 17:03:56 +0200203static inline void of_node_clear_flag(struct device_node *n, unsigned long flag)
204{
205 clear_bit(flag, &n->_flags);
206}
207
208static inline int of_property_check_flag(struct property *p, unsigned long flag)
209{
210 return test_bit(flag, &p->_flags);
211}
212
213static inline void of_property_set_flag(struct property *p, unsigned long flag)
214{
215 set_bit(flag, &p->_flags);
216}
217
218static inline void of_property_clear_flag(struct property *p, unsigned long flag)
219{
220 clear_bit(flag, &p->_flags);
221}
222
Grant Likely5063e252014-10-03 16:28:27 +0100223extern struct device_node *__of_find_all_nodes(struct device_node *prev);
Grant Likelye91edcf2009-10-15 10:58:09 -0600224extern struct device_node *of_find_all_nodes(struct device_node *prev);
225
Grant Likelyb6caf2a2009-10-15 10:58:00 -0600226/*
Lennert Buytenhek3d6b8822011-02-22 18:18:51 +0100227 * OF address retrieval & translation
Grant Likelyb6caf2a2009-10-15 10:58:00 -0600228 */
229
230/* Helper to read a big number; size is in cells (not bytes) */
Jeremy Kerr2e89e682010-01-30 01:41:49 -0700231static inline u64 of_read_number(const __be32 *cell, int size)
Grant Likelyb6caf2a2009-10-15 10:58:00 -0600232{
233 u64 r = 0;
234 while (size--)
Jeremy Kerr2e89e682010-01-30 01:41:49 -0700235 r = (r << 32) | be32_to_cpu(*(cell++));
Grant Likelyb6caf2a2009-10-15 10:58:00 -0600236 return r;
237}
238
239/* Like of_read_number, but we want an unsigned long result */
Jeremy Kerr2e89e682010-01-30 01:41:49 -0700240static inline unsigned long of_read_ulong(const __be32 *cell, int size)
Grant Likelyb6caf2a2009-10-15 10:58:00 -0600241{
Grant Likely2be09cb2009-11-23 20:16:46 -0700242 /* toss away upper bits if unsigned long is smaller than u64 */
243 return of_read_number(cell, size);
Grant Likelyb6caf2a2009-10-15 10:58:00 -0600244}
Grant Likelyb6caf2a2009-10-15 10:58:00 -0600245
Rob Herringb5b4bb32013-09-07 14:08:20 -0500246#if defined(CONFIG_SPARC)
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000247#include <asm/prom.h>
Rob Herringb5b4bb32013-09-07 14:08:20 -0500248#endif
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000249
Grant Likely7c7b60c2010-02-14 07:13:50 -0700250/* Default #address and #size cells. Allow arch asm/prom.h to override */
251#if !defined(OF_ROOT_NODE_ADDR_CELLS_DEFAULT)
252#define OF_ROOT_NODE_ADDR_CELLS_DEFAULT 1
253#define OF_ROOT_NODE_SIZE_CELLS_DEFAULT 1
254#endif
255
Grant Likely61e955d2009-10-15 10:57:51 -0600256#define OF_IS_DYNAMIC(x) test_bit(OF_DYNAMIC, &x->_flags)
257#define OF_MARK_DYNAMIC(x) set_bit(OF_DYNAMIC, &x->_flags)
258
Steffen Trumtrarc0a05bf2012-12-18 11:32:03 +0100259static inline const char *of_node_full_name(const struct device_node *np)
Grant Likely74a7f082012-06-15 11:50:25 -0600260{
261 return np ? np->full_name : "<no-node>";
262}
263
Grant Likely5063e252014-10-03 16:28:27 +0100264#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)
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000267extern struct device_node *of_find_node_by_name(struct device_node *from,
268 const char *name);
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000269extern struct device_node *of_find_node_by_type(struct device_node *from,
270 const char *type);
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000271extern struct device_node *of_find_compatible_node(struct device_node *from,
272 const char *type, const char *compat);
Stephen Warren50c8af42012-11-20 16:12:20 -0700273extern 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);
Rob Herring662372e2014-02-03 08:53:44 -0600277
Leif Lindholm75c28c02014-11-28 11:34:28 +0000278extern struct device_node *of_find_node_opts_by_path(const char *path,
279 const char **opts);
280static inline struct device_node *of_find_node_by_path(const char *path)
281{
282 return of_find_node_opts_by_path(path, NULL);
283}
284
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000285extern struct device_node *of_find_node_by_phandle(phandle handle);
286extern struct device_node *of_get_parent(const struct device_node *node);
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000287extern struct device_node *of_get_next_parent(struct device_node *node);
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000288extern struct device_node *of_get_next_child(const struct device_node *node,
289 struct device_node *prev);
Timur Tabi32961932012-08-14 13:20:23 +0000290extern struct device_node *of_get_next_available_child(
291 const struct device_node *node, struct device_node *prev);
292
Srinivas Kandagatla9c197612012-09-18 08:10:28 +0100293extern struct device_node *of_get_child_by_name(const struct device_node *node,
294 const char *name);
Bryan Wu954e04b2013-09-24 10:38:26 -0700295
Sudeep KarkadaNageshaa3e31b42013-09-18 11:53:05 +0100296/* cache lookup */
297extern struct device_node *of_find_next_cache_node(const struct device_node *);
Sudeep Holla5fa23532017-01-16 10:40:43 +0000298extern int of_find_last_cache_level(unsigned int cpu);
Michael Ellerman1e291b142008-11-12 18:54:42 +0000299extern struct device_node *of_find_node_with_property(
300 struct device_node *from, const char *prop_name);
Michael Ellerman1e291b142008-11-12 18:54:42 +0000301
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000302extern struct property *of_find_property(const struct device_node *np,
303 const char *name,
304 int *lenp);
Heiko Stuebnerad54a0c2014-02-12 01:00:34 +0100305extern int of_property_count_elems_of_size(const struct device_node *np,
306 const char *propname, int elem_size);
Tony Prisk3daf3722013-03-23 17:02:15 +1300307extern int of_property_read_u32_index(const struct device_node *np,
308 const char *propname,
309 u32 index, u32 *out_value);
Alistair Popple2475a2b2017-04-03 19:51:42 +1000310extern int of_property_read_u64_index(const struct device_node *np,
311 const char *propname,
312 u32 index, u64 *out_value);
Richard Fitzgeralda67e9472016-09-12 14:01:29 +0100313extern int of_property_read_variable_u8_array(const struct device_node *np,
314 const char *propname, u8 *out_values,
315 size_t sz_min, size_t sz_max);
316extern int of_property_read_variable_u16_array(const struct device_node *np,
317 const char *propname, u16 *out_values,
318 size_t sz_min, size_t sz_max);
319extern int of_property_read_variable_u32_array(const struct device_node *np,
320 const char *propname,
321 u32 *out_values,
322 size_t sz_min,
323 size_t sz_max);
Jamie Iles4cd7f7a2011-09-14 20:49:59 +0100324extern int of_property_read_u64(const struct device_node *np,
325 const char *propname, u64 *out_value);
Richard Fitzgeralda67e9472016-09-12 14:01:29 +0100326extern int of_property_read_variable_u64_array(const struct device_node *np,
327 const char *propname,
328 u64 *out_values,
329 size_t sz_min,
330 size_t sz_max);
Rob Herring0e373632011-07-06 15:42:58 -0500331
David Rivshinfe99c702016-03-02 16:35:51 -0500332extern int of_property_read_string(const struct device_node *np,
Jamie Ilesaac285c2011-08-02 15:45:07 +0100333 const char *propname,
334 const char **out_string);
David Rivshinfe99c702016-03-02 16:35:51 -0500335extern int of_property_match_string(const struct device_node *np,
Grant Likely7aff0fe2011-12-12 09:25:58 -0700336 const char *propname,
337 const char *string);
David Rivshinfe99c702016-03-02 16:35:51 -0500338extern int of_property_read_string_helper(const struct device_node *np,
Grant Likelya87fa1d2014-11-03 15:15:35 +0000339 const char *propname,
340 const char **out_strs, size_t sz, int index);
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000341extern int of_device_is_compatible(const struct device_node *device,
342 const char *);
Benjamin Herrenschmidtb9c13fe32016-07-08 08:35:59 +1000343extern int of_device_compatible_match(struct device_node *device,
344 const char *const *compat);
Kevin Cernekee53a4ab92014-11-12 12:54:01 -0800345extern bool of_device_is_available(const struct device_node *device);
Kevin Cernekee37786c72015-04-09 13:05:14 -0700346extern bool of_device_is_big_endian(const struct device_node *device);
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000347extern const void *of_get_property(const struct device_node *node,
348 const char *name,
349 int *lenp);
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100350extern struct device_node *of_get_cpu_node(int cpu, unsigned int *thread);
Dong Aisheng8af0da92011-12-22 20:19:24 +0800351#define for_each_property_of_node(dn, pp) \
352 for (pp = dn->properties; pp != NULL; pp = pp->next)
Shawn Guo611cad72011-08-15 15:28:14 +0800353
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000354extern int of_n_addr_cells(struct device_node *np);
355extern int of_n_size_cells(struct device_node *np);
Grant Likely283029d2008-01-09 06:20:40 +1100356extern const struct of_device_id *of_match_node(
357 const struct of_device_id *matches, const struct device_node *node);
Grant Likely3f07af42008-07-25 22:25:13 -0400358extern int of_modalias_node(struct device_node *node, char *modalias, int len);
Grant Likely624cfca2013-10-11 22:05:10 +0100359extern void of_print_phandle_args(const char *msg, const struct of_phandle_args *args);
Steffen Trumtrarb8fbdc42012-11-22 12:16:43 +0100360extern struct device_node *of_parse_phandle(const struct device_node *np,
Grant Likely739649c2009-04-25 12:52:40 +0000361 const char *phandle_name,
362 int index);
Guennadi Liakhovetski93c667c2012-12-10 20:41:30 +0100363extern int of_parse_phandle_with_args(const struct device_node *np,
Anton Vorontsov64b60e02008-10-10 04:43:17 +0000364 const char *list_name, const char *cells_name, int index,
Grant Likely15c9a0a2011-12-12 09:25:57 -0700365 struct of_phandle_args *out_args);
Stephen Warren035fd942013-08-14 15:27:10 -0600366extern int of_parse_phandle_with_fixed_args(const struct device_node *np,
367 const char *list_name, int cells_count, int index,
368 struct of_phandle_args *out_args);
Grant Likelybd69f732013-02-10 22:57:21 +0000369extern int of_count_phandle_with_args(const struct device_node *np,
370 const char *list_name, const char *cells_name);
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000371
Joerg Roedel74e1fbb2016-04-04 17:49:17 +0200372/* phandle iterator functions */
373extern int of_phandle_iterator_init(struct of_phandle_iterator *it,
374 const struct device_node *np,
375 const char *list_name,
376 const char *cells_name,
377 int cell_count);
378
Joerg Roedelcd209b42016-04-04 17:49:18 +0200379extern int of_phandle_iterator_next(struct of_phandle_iterator *it);
Joerg Roedelabdaa772016-04-04 17:49:21 +0200380extern int of_phandle_iterator_args(struct of_phandle_iterator *it,
381 uint32_t *args,
382 int size);
Joerg Roedelcd209b42016-04-04 17:49:18 +0200383
Shawn Guo611cad72011-08-15 15:28:14 +0800384extern void of_alias_scan(void * (*dt_alloc)(u64 size, u64 align));
385extern int of_alias_get_id(struct device_node *np, const char *stem);
Wolfram Sang351d2242015-03-12 17:17:58 +0100386extern int of_alias_get_highest_id(const char *stem);
Shawn Guo611cad72011-08-15 15:28:14 +0800387
Grant Likely21b082e2010-02-14 07:13:38 -0700388extern int of_machine_is_compatible(const char *compat);
389
Nathan Fontenot79d1c712012-10-02 16:58:46 +0000390extern int of_add_property(struct device_node *np, struct property *prop);
391extern int of_remove_property(struct device_node *np, struct property *prop);
392extern int of_update_property(struct device_node *np, struct property *newprop);
Grant Likely21b082e2010-02-14 07:13:38 -0700393
Grant Likelyfcdeb7f2010-01-29 05:04:33 -0700394/* For updating the device tree at runtime */
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +0000395#define OF_RECONFIG_ATTACH_NODE 0x0001
396#define OF_RECONFIG_DETACH_NODE 0x0002
397#define OF_RECONFIG_ADD_PROPERTY 0x0003
398#define OF_RECONFIG_REMOVE_PROPERTY 0x0004
399#define OF_RECONFIG_UPDATE_PROPERTY 0x0005
400
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +0000401extern int of_attach_node(struct device_node *);
402extern int of_detach_node(struct device_node *);
Grant Likelyfcdeb7f2010-01-29 05:04:33 -0700403
Ben Dooks3a1e3622011-08-03 10:11:42 +0100404#define of_match_ptr(_ptr) (_ptr)
Stephen Warrenc541adc2012-04-04 09:27:46 -0600405
Richard Fitzgeralda67e9472016-09-12 14:01:29 +0100406/**
407 * of_property_read_u8_array - Find and read an array of u8 from a property.
408 *
409 * @np: device node from which the property value is to be read.
410 * @propname: name of the property to be searched.
411 * @out_values: pointer to return value, modified only if return value is 0.
412 * @sz: number of array elements to read
413 *
414 * Search for a property in a device node and read 8-bit value(s) from
415 * it. Returns 0 on success, -EINVAL if the property does not exist,
416 * -ENODATA if property does not have a value, and -EOVERFLOW if the
417 * property data isn't large enough.
418 *
419 * dts entry of array should be like:
420 * property = /bits/ 8 <0x50 0x60 0x70>;
421 *
422 * The out_values is modified only if a valid u8 value can be decoded.
423 */
424static inline int of_property_read_u8_array(const struct device_node *np,
425 const char *propname,
426 u8 *out_values, size_t sz)
427{
428 int ret = of_property_read_variable_u8_array(np, propname, out_values,
429 sz, 0);
430 if (ret >= 0)
431 return 0;
432 else
433 return ret;
434}
435
436/**
437 * of_property_read_u16_array - Find and read an array of u16 from a property.
438 *
439 * @np: device node from which the property value is to be read.
440 * @propname: name of the property to be searched.
441 * @out_values: pointer to return value, modified only if return value is 0.
442 * @sz: number of array elements to read
443 *
444 * Search for a property in a device node and read 16-bit value(s) from
445 * it. Returns 0 on success, -EINVAL if the property does not exist,
446 * -ENODATA if property does not have a value, and -EOVERFLOW if the
447 * property data isn't large enough.
448 *
449 * dts entry of array should be like:
450 * property = /bits/ 16 <0x5000 0x6000 0x7000>;
451 *
452 * The out_values is modified only if a valid u16 value can be decoded.
453 */
454static inline int of_property_read_u16_array(const struct device_node *np,
455 const char *propname,
456 u16 *out_values, size_t sz)
457{
458 int ret = of_property_read_variable_u16_array(np, propname, out_values,
459 sz, 0);
460 if (ret >= 0)
461 return 0;
462 else
463 return ret;
464}
465
466/**
467 * of_property_read_u32_array - Find and read an array of 32 bit integers
468 * from a property.
469 *
470 * @np: device node from which the property value is to be read.
471 * @propname: name of the property to be searched.
472 * @out_values: pointer to return value, modified only if return value is 0.
473 * @sz: number of array elements to read
474 *
475 * Search for a property in a device node and read 32-bit value(s) from
476 * it. Returns 0 on success, -EINVAL if the property does not exist,
477 * -ENODATA if property does not have a value, and -EOVERFLOW if the
478 * property data isn't large enough.
479 *
480 * The out_values is modified only if a valid u32 value can be decoded.
481 */
482static inline int of_property_read_u32_array(const struct device_node *np,
483 const char *propname,
484 u32 *out_values, size_t sz)
485{
486 int ret = of_property_read_variable_u32_array(np, propname, out_values,
487 sz, 0);
488 if (ret >= 0)
489 return 0;
490 else
491 return ret;
492}
493
494/**
495 * of_property_read_u64_array - Find and read an array of 64 bit integers
496 * from a property.
497 *
498 * @np: device node from which the property value is to be read.
499 * @propname: name of the property to be searched.
500 * @out_values: pointer to return value, modified only if return value is 0.
501 * @sz: number of array elements to read
502 *
503 * Search for a property in a device node and read 64-bit value(s) from
504 * it. Returns 0 on success, -EINVAL if the property does not exist,
505 * -ENODATA if property does not have a value, and -EOVERFLOW if the
506 * property data isn't large enough.
507 *
508 * The out_values is modified only if a valid u64 value can be decoded.
509 */
510static inline int of_property_read_u64_array(const struct device_node *np,
511 const char *propname,
512 u64 *out_values, size_t sz)
513{
514 int ret = of_property_read_variable_u64_array(np, propname, out_values,
515 sz, 0);
516 if (ret >= 0)
517 return 0;
518 else
519 return ret;
520}
521
Stephen Warrenc541adc2012-04-04 09:27:46 -0600522/*
523 * struct property *prop;
524 * const __be32 *p;
525 * u32 u;
526 *
527 * of_property_for_each_u32(np, "propname", prop, p, u)
528 * printk("U32 value: %x\n", u);
529 */
530const __be32 *of_prop_next_u32(struct property *prop, const __be32 *cur,
531 u32 *pu);
Stephen Warrenc541adc2012-04-04 09:27:46 -0600532/*
533 * struct property *prop;
534 * const char *s;
535 *
536 * of_property_for_each_string(np, "propname", prop, s)
537 * printk("String value: %s\n", s);
538 */
539const char *of_prop_next_string(struct property *prop, const char *cur);
Stephen Warrenc541adc2012-04-04 09:27:46 -0600540
Grant Likely3482f2c2014-03-27 17:18:55 -0700541bool of_console_check(struct device_node *dn, char *name, int index);
Sascha Hauer5c19e952013-08-05 14:40:44 +0200542
Shawn Guob98c0232011-07-08 16:27:33 +0800543#else /* CONFIG_OF */
Sebastian Andrzej Siewior3bcbaf62011-02-22 21:07:46 +0100544
Sudeep Holla194ec932015-05-14 15:28:24 +0100545static inline void of_core_init(void)
546{
547}
548
Sakari Ailusd20dc142017-05-24 17:53:55 +0300549static inline bool is_of_node(const struct fwnode_handle *fwnode)
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +0100550{
551 return false;
552}
553
Sakari Ailusd20dc142017-05-24 17:53:55 +0300554static inline struct device_node *to_of_node(const struct fwnode_handle *fwnode)
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +0100555{
556 return NULL;
557}
558
Stephen Rothwell4c358e12014-05-15 14:44:30 +1000559static inline const char* of_node_full_name(const struct device_node *np)
Grant Likely74a7f082012-06-15 11:50:25 -0600560{
561 return "<no-node>";
562}
563
Peter Ujfalusi1cc44f42012-09-10 13:46:24 +0300564static inline struct device_node *of_find_node_by_name(struct device_node *from,
565 const char *name)
566{
567 return NULL;
568}
569
Rob Herring662372e2014-02-03 08:53:44 -0600570static inline struct device_node *of_find_node_by_type(struct device_node *from,
571 const char *type)
572{
573 return NULL;
574}
575
576static inline struct device_node *of_find_matching_node_and_match(
577 struct device_node *from,
578 const struct of_device_id *matches,
579 const struct of_device_id **match)
580{
581 return NULL;
582}
583
Alexander Shiyan20cd4772014-04-16 10:49:20 +0400584static inline struct device_node *of_find_node_by_path(const char *path)
585{
586 return NULL;
587}
588
Leif Lindholm75c28c02014-11-28 11:34:28 +0000589static inline struct device_node *of_find_node_opts_by_path(const char *path,
590 const char **opts)
591{
592 return NULL;
593}
594
Suman Annace16b9d2015-06-17 11:53:53 -0500595static inline struct device_node *of_find_node_by_phandle(phandle handle)
596{
597 return NULL;
598}
599
Alexander Shiyan066ec1d2013-04-09 19:47:40 +0400600static inline struct device_node *of_get_parent(const struct device_node *node)
601{
602 return NULL;
603}
604
Rob Herring662372e2014-02-03 08:53:44 -0600605static inline struct device_node *of_get_next_child(
606 const struct device_node *node, struct device_node *prev)
607{
608 return NULL;
609}
610
611static inline struct device_node *of_get_next_available_child(
612 const struct device_node *node, struct device_node *prev)
613{
614 return NULL;
615}
616
617static inline struct device_node *of_find_node_with_property(
618 struct device_node *from, const char *prop_name)
619{
620 return NULL;
621}
622
Sakari Ailus678318372017-03-28 10:52:23 +0300623#define of_fwnode_handle(node) NULL
624
Sebastian Andrzej Siewior3bcbaf62011-02-22 21:07:46 +0100625static inline bool of_have_populated_dt(void)
626{
627 return false;
628}
629
Olof Johansson25c040c2012-10-07 10:40:54 -0700630static inline struct device_node *of_get_child_by_name(
631 const struct device_node *node,
632 const char *name)
633{
634 return NULL;
635}
636
Rajendra Nayak36a09042011-10-10 21:49:35 +0530637static inline int of_device_is_compatible(const struct device_node *device,
638 const char *name)
639{
640 return 0;
641}
642
Geert Uytterhoeven3bc16302017-04-25 19:38:48 +0200643static inline int of_device_compatible_match(struct device_node *device,
644 const char *const *compat)
645{
646 return 0;
647}
648
Kevin Cernekee53a4ab92014-11-12 12:54:01 -0800649static inline bool of_device_is_available(const struct device_node *device)
Rob Herringd7195692013-03-20 16:56:18 -0500650{
Kevin Cernekee53a4ab92014-11-12 12:54:01 -0800651 return false;
Rob Herringd7195692013-03-20 16:56:18 -0500652}
653
Kevin Cernekee37786c72015-04-09 13:05:14 -0700654static inline bool of_device_is_big_endian(const struct device_node *device)
655{
656 return false;
657}
658
Stephen Warrenaba3dff2011-09-21 13:23:10 -0600659static inline struct property *of_find_property(const struct device_node *np,
660 const char *name,
661 int *lenp)
662{
663 return NULL;
664}
665
Shawn Guo2261cc62012-02-15 10:47:42 -0800666static inline struct device_node *of_find_compatible_node(
667 struct device_node *from,
668 const char *type,
669 const char *compat)
670{
671 return NULL;
672}
673
Heiko Stuebnerad54a0c2014-02-12 01:00:34 +0100674static inline int of_property_count_elems_of_size(const struct device_node *np,
675 const char *propname, int elem_size)
676{
677 return -ENOSYS;
678}
679
Tony Prisk3daf3722013-03-23 17:02:15 +1300680static inline int of_property_read_u32_index(const struct device_node *np,
681 const char *propname, u32 index, u32 *out_value)
682{
683 return -ENOSYS;
684}
685
Viresh Kumarbe193242012-11-20 10:15:19 +0530686static inline int of_property_read_u8_array(const struct device_node *np,
687 const char *propname, u8 *out_values, size_t sz)
688{
689 return -ENOSYS;
690}
691
692static inline int of_property_read_u16_array(const struct device_node *np,
693 const char *propname, u16 *out_values, size_t sz)
694{
695 return -ENOSYS;
696}
697
Shawn Guob98c0232011-07-08 16:27:33 +0800698static inline int of_property_read_u32_array(const struct device_node *np,
Jamie Ilesaac285c2011-08-02 15:45:07 +0100699 const char *propname,
700 u32 *out_values, size_t sz)
Shawn Guob98c0232011-07-08 16:27:33 +0800701{
702 return -ENOSYS;
703}
704
Rafael J. Wysockib31384f2014-11-04 01:28:56 +0100705static inline int of_property_read_u64_array(const struct device_node *np,
706 const char *propname,
707 u64 *out_values, size_t sz)
708{
709 return -ENOSYS;
710}
711
David Rivshinfe99c702016-03-02 16:35:51 -0500712static inline int of_property_read_string(const struct device_node *np,
Jamie Ilesaac285c2011-08-02 15:45:07 +0100713 const char *propname,
714 const char **out_string)
Shawn Guob98c0232011-07-08 16:27:33 +0800715{
716 return -ENOSYS;
717}
718
David Rivshinfe99c702016-03-02 16:35:51 -0500719static inline int of_property_read_string_helper(const struct device_node *np,
Grant Likelya87fa1d2014-11-03 15:15:35 +0000720 const char *propname,
721 const char **out_strs, size_t sz, int index)
Benoit Cousson4fcd15a2011-09-27 17:45:43 +0200722{
723 return -ENOSYS;
724}
725
Stephen Warren89272b82011-08-05 16:50:30 -0600726static inline const void *of_get_property(const struct device_node *node,
727 const char *name,
728 int *lenp)
729{
730 return NULL;
731}
732
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100733static inline struct device_node *of_get_cpu_node(int cpu,
734 unsigned int *thread)
735{
736 return NULL;
737}
738
Jamie Iles4cd7f7a2011-09-14 20:49:59 +0100739static inline int of_property_read_u64(const struct device_node *np,
740 const char *propname, u64 *out_value)
741{
742 return -ENOSYS;
743}
744
David Rivshinfe99c702016-03-02 16:35:51 -0500745static inline int of_property_match_string(const struct device_node *np,
Thierry Redingbd3d5502012-04-13 16:18:34 +0200746 const char *propname,
747 const char *string)
748{
749 return -ENOSYS;
750}
751
Steffen Trumtrarb8fbdc42012-11-22 12:16:43 +0100752static inline struct device_node *of_parse_phandle(const struct device_node *np,
Rajendra Nayak36a09042011-10-10 21:49:35 +0530753 const char *phandle_name,
754 int index)
755{
756 return NULL;
757}
758
Kuninori Morimotoe93aeea2016-05-25 01:15:04 +0000759static inline int of_parse_phandle_with_args(const struct device_node *np,
Thierry Redinge05e5072012-04-13 16:19:21 +0200760 const char *list_name,
761 const char *cells_name,
762 int index,
763 struct of_phandle_args *out_args)
764{
765 return -ENOSYS;
766}
767
Stephen Warren035fd942013-08-14 15:27:10 -0600768static inline int of_parse_phandle_with_fixed_args(const struct device_node *np,
769 const char *list_name, int cells_count, int index,
770 struct of_phandle_args *out_args)
771{
772 return -ENOSYS;
773}
774
Grant Likelybd69f732013-02-10 22:57:21 +0000775static inline int of_count_phandle_with_args(struct device_node *np,
776 const char *list_name,
777 const char *cells_name)
778{
779 return -ENOSYS;
780}
781
Joerg Roedel74e1fbb2016-04-04 17:49:17 +0200782static inline int of_phandle_iterator_init(struct of_phandle_iterator *it,
783 const struct device_node *np,
784 const char *list_name,
785 const char *cells_name,
786 int cell_count)
787{
788 return -ENOSYS;
789}
790
Joerg Roedelcd209b42016-04-04 17:49:18 +0200791static inline int of_phandle_iterator_next(struct of_phandle_iterator *it)
792{
793 return -ENOSYS;
794}
795
Joerg Roedelabdaa772016-04-04 17:49:21 +0200796static inline int of_phandle_iterator_args(struct of_phandle_iterator *it,
797 uint32_t *args,
798 int size)
799{
800 return 0;
801}
802
Nicolas Ferreed5f8862011-10-27 11:07:28 +0200803static inline int of_alias_get_id(struct device_node *np, const char *stem)
804{
805 return -ENOSYS;
806}
807
Wolfram Sang351d2242015-03-12 17:17:58 +0100808static inline int of_alias_get_highest_id(const char *stem)
809{
810 return -ENOSYS;
811}
812
Stephen Warren50e07f82011-10-25 14:01:26 +0200813static inline int of_machine_is_compatible(const char *compat)
814{
815 return 0;
816}
817
Grant Likely3482f2c2014-03-27 17:18:55 -0700818static inline bool of_console_check(const struct device_node *dn, const char *name, int index)
Sascha Hauer5c19e952013-08-05 14:40:44 +0200819{
Grant Likely3482f2c2014-03-27 17:18:55 -0700820 return false;
Sascha Hauer5c19e952013-08-05 14:40:44 +0200821}
822
Sebastian Andrzej Siewior2adfffa2013-06-17 16:48:13 +0200823static inline const __be32 *of_prop_next_u32(struct property *prop,
824 const __be32 *cur, u32 *pu)
825{
826 return NULL;
827}
828
829static inline const char *of_prop_next_string(struct property *prop,
830 const char *cur)
831{
832 return NULL;
833}
834
Pantelis Antoniou0384e8c2015-01-21 19:05:57 +0200835static inline int of_node_check_flag(struct device_node *n, unsigned long flag)
836{
837 return 0;
838}
839
840static inline int of_node_test_and_set_flag(struct device_node *n,
841 unsigned long flag)
842{
843 return 0;
844}
845
846static inline void of_node_set_flag(struct device_node *n, unsigned long flag)
847{
848}
849
850static inline void of_node_clear_flag(struct device_node *n, unsigned long flag)
851{
852}
853
854static inline int of_property_check_flag(struct property *p, unsigned long flag)
855{
856 return 0;
857}
858
859static inline void of_property_set_flag(struct property *p, unsigned long flag)
860{
861}
862
863static inline void of_property_clear_flag(struct property *p, unsigned long flag)
864{
865}
866
Ben Dooks3a1e3622011-08-03 10:11:42 +0100867#define of_match_ptr(_ptr) NULL
Nicolas Ferre5762c202011-10-24 11:53:32 +0200868#define of_match_node(_matches, _node) NULL
Jeremy Kerr9dfbf202010-02-14 07:13:43 -0700869#endif /* CONFIG_OF */
Shawn Guob98c0232011-07-08 16:27:33 +0800870
Adam Thomson613e9722016-06-21 18:50:20 +0100871/* Default string compare functions, Allow arch asm/prom.h to override */
872#if !defined(of_compat_cmp)
873#define of_compat_cmp(s1, s2, l) strcasecmp((s1), (s2))
874#define of_prop_cmp(s1, s2) strcmp((s1), (s2))
875#define of_node_cmp(s1, s2) strcasecmp((s1), (s2))
876#endif
877
Rob Herring0c3f0612013-09-17 10:42:50 -0500878#if defined(CONFIG_OF) && defined(CONFIG_NUMA)
879extern int of_node_to_nid(struct device_node *np);
880#else
Konstantin Khlebnikovc8fff7b2015-04-08 19:59:20 +0300881static inline int of_node_to_nid(struct device_node *device)
882{
883 return NUMA_NO_NODE;
884}
Paul Mundt5ca4db62012-06-03 22:04:34 -0700885#endif
886
David Daney298535c2016-04-08 15:50:25 -0700887#ifdef CONFIG_OF_NUMA
888extern int of_numa_init(void);
889#else
890static inline int of_numa_init(void)
891{
892 return -ENOSYS;
893}
894#endif
895
Rob Herring662372e2014-02-03 08:53:44 -0600896static inline struct device_node *of_find_matching_node(
897 struct device_node *from,
898 const struct of_device_id *matches)
899{
900 return of_find_matching_node_and_match(from, matches, NULL);
901}
902
Jean-Christophe PLAGNIOL-VILLARDfa4d34c2012-02-07 12:12:51 +0800903/**
Heiko Stuebnerad54a0c2014-02-12 01:00:34 +0100904 * of_property_count_u8_elems - Count the number of u8 elements in a property
905 *
906 * @np: device node from which the property value is to be read.
907 * @propname: name of the property to be searched.
908 *
909 * Search for a property in a device node and count the number of u8 elements
910 * in it. Returns number of elements on sucess, -EINVAL if the property does
911 * not exist or its length does not match a multiple of u8 and -ENODATA if the
912 * property does not have a value.
913 */
914static inline int of_property_count_u8_elems(const struct device_node *np,
915 const char *propname)
916{
917 return of_property_count_elems_of_size(np, propname, sizeof(u8));
918}
919
920/**
921 * of_property_count_u16_elems - Count the number of u16 elements in a property
922 *
923 * @np: device node from which the property value is to be read.
924 * @propname: name of the property to be searched.
925 *
926 * Search for a property in a device node and count the number of u16 elements
927 * in it. Returns number of elements on sucess, -EINVAL if the property does
928 * not exist or its length does not match a multiple of u16 and -ENODATA if the
929 * property does not have a value.
930 */
931static inline int of_property_count_u16_elems(const struct device_node *np,
932 const char *propname)
933{
934 return of_property_count_elems_of_size(np, propname, sizeof(u16));
935}
936
937/**
938 * of_property_count_u32_elems - Count the number of u32 elements in a property
939 *
940 * @np: device node from which the property value is to be read.
941 * @propname: name of the property to be searched.
942 *
943 * Search for a property in a device node and count the number of u32 elements
944 * in it. Returns number of elements on sucess, -EINVAL if the property does
945 * not exist or its length does not match a multiple of u32 and -ENODATA if the
946 * property does not have a value.
947 */
948static inline int of_property_count_u32_elems(const struct device_node *np,
949 const char *propname)
950{
951 return of_property_count_elems_of_size(np, propname, sizeof(u32));
952}
953
954/**
955 * of_property_count_u64_elems - Count the number of u64 elements in a property
956 *
957 * @np: device node from which the property value is to be read.
958 * @propname: name of the property to be searched.
959 *
960 * Search for a property in a device node and count the number of u64 elements
961 * in it. Returns number of elements on sucess, -EINVAL if the property does
962 * not exist or its length does not match a multiple of u64 and -ENODATA if the
963 * property does not have a value.
964 */
965static inline int of_property_count_u64_elems(const struct device_node *np,
966 const char *propname)
967{
968 return of_property_count_elems_of_size(np, propname, sizeof(u64));
969}
970
Jean-Christophe PLAGNIOL-VILLARDfa4d34c2012-02-07 12:12:51 +0800971/**
Grant Likelya87fa1d2014-11-03 15:15:35 +0000972 * of_property_read_string_array() - Read an array of strings from a multiple
973 * strings property.
974 * @np: device node from which the property value is to be read.
975 * @propname: name of the property to be searched.
976 * @out_strs: output array of string pointers.
977 * @sz: number of array elements to read.
978 *
979 * Search for a property in a device tree node and retrieve a list of
980 * terminated string values (pointer to data, not a copy) in that property.
981 *
982 * If @out_strs is NULL, the number of strings in the property is returned.
983 */
David Rivshinfe99c702016-03-02 16:35:51 -0500984static inline int of_property_read_string_array(const struct device_node *np,
Grant Likelya87fa1d2014-11-03 15:15:35 +0000985 const char *propname, const char **out_strs,
986 size_t sz)
987{
988 return of_property_read_string_helper(np, propname, out_strs, sz, 0);
989}
990
991/**
992 * of_property_count_strings() - Find and return the number of strings from a
993 * multiple strings property.
994 * @np: device node from which the property value is to be read.
995 * @propname: name of the property to be searched.
996 *
997 * Search for a property in a device tree node and retrieve the number of null
998 * terminated string contain in it. Returns the number of strings on
999 * success, -EINVAL if the property does not exist, -ENODATA if property
1000 * does not have a value, and -EILSEQ if the string is not null-terminated
1001 * within the length of the property data.
1002 */
David Rivshinfe99c702016-03-02 16:35:51 -05001003static inline int of_property_count_strings(const struct device_node *np,
Grant Likelya87fa1d2014-11-03 15:15:35 +00001004 const char *propname)
1005{
1006 return of_property_read_string_helper(np, propname, NULL, 0, 0);
1007}
1008
1009/**
1010 * of_property_read_string_index() - Find and read a string from a multiple
1011 * strings property.
1012 * @np: device node from which the property value is to be read.
1013 * @propname: name of the property to be searched.
1014 * @index: index of the string in the list of strings
1015 * @out_string: pointer to null terminated return string, modified only if
1016 * return value is 0.
1017 *
1018 * Search for a property in a device tree node and retrieve a null
1019 * terminated string value (pointer to data, not a copy) in the list of strings
1020 * contained in that property.
1021 * Returns 0 on success, -EINVAL if the property does not exist, -ENODATA if
1022 * property does not have a value, and -EILSEQ if the string is not
1023 * null-terminated within the length of the property data.
1024 *
1025 * The out_string pointer is modified only if a valid string can be decoded.
1026 */
David Rivshinfe99c702016-03-02 16:35:51 -05001027static inline int of_property_read_string_index(const struct device_node *np,
Grant Likelya87fa1d2014-11-03 15:15:35 +00001028 const char *propname,
1029 int index, const char **output)
1030{
1031 int rc = of_property_read_string_helper(np, propname, output, 1, index);
1032 return rc < 0 ? rc : 0;
1033}
1034
1035/**
Jean-Christophe PLAGNIOL-VILLARDfa4d34c2012-02-07 12:12:51 +08001036 * of_property_read_bool - Findfrom a property
1037 * @np: device node from which the property value is to be read.
1038 * @propname: name of the property to be searched.
1039 *
1040 * Search for a property in a device node.
Geert Uytterhoeven31712c92015-05-04 19:42:19 +02001041 * Returns true if the property exists false otherwise.
Jean-Christophe PLAGNIOL-VILLARDfa4d34c2012-02-07 12:12:51 +08001042 */
1043static inline bool of_property_read_bool(const struct device_node *np,
1044 const char *propname)
1045{
1046 struct property *prop = of_find_property(np, propname, NULL);
1047
1048 return prop ? true : false;
1049}
1050
Viresh Kumarbe193242012-11-20 10:15:19 +05301051static inline int of_property_read_u8(const struct device_node *np,
1052 const char *propname,
1053 u8 *out_value)
1054{
1055 return of_property_read_u8_array(np, propname, out_value, 1);
1056}
1057
1058static inline int of_property_read_u16(const struct device_node *np,
1059 const char *propname,
1060 u16 *out_value)
1061{
1062 return of_property_read_u16_array(np, propname, out_value, 1);
1063}
1064
Shawn Guob98c0232011-07-08 16:27:33 +08001065static inline int of_property_read_u32(const struct device_node *np,
Jamie Ilesaac285c2011-08-02 15:45:07 +01001066 const char *propname,
Shawn Guob98c0232011-07-08 16:27:33 +08001067 u32 *out_value)
1068{
1069 return of_property_read_u32_array(np, propname, out_value, 1);
1070}
1071
Sebastian Reichele7a00e42014-04-06 12:52:11 +02001072static inline int of_property_read_s32(const struct device_node *np,
1073 const char *propname,
1074 s32 *out_value)
1075{
1076 return of_property_read_u32(np, propname, (u32*) out_value);
1077}
1078
Joerg Roedelf623ce92016-04-04 17:49:20 +02001079#define of_for_each_phandle(it, err, np, ln, cn, cc) \
1080 for (of_phandle_iterator_init((it), (np), (ln), (cn), (cc)), \
1081 err = of_phandle_iterator_next(it); \
1082 err == 0; \
1083 err = of_phandle_iterator_next(it))
1084
Sebastian Andrzej Siewior2adfffa2013-06-17 16:48:13 +02001085#define of_property_for_each_u32(np, propname, prop, p, u) \
1086 for (prop = of_find_property(np, propname, NULL), \
1087 p = of_prop_next_u32(prop, NULL, &u); \
1088 p; \
1089 p = of_prop_next_u32(prop, p, &u))
1090
1091#define of_property_for_each_string(np, propname, prop, s) \
1092 for (prop = of_find_property(np, propname, NULL), \
1093 s = of_prop_next_string(prop, NULL); \
1094 s; \
1095 s = of_prop_next_string(prop, s))
1096
Rob Herring662372e2014-02-03 08:53:44 -06001097#define for_each_node_by_name(dn, name) \
1098 for (dn = of_find_node_by_name(NULL, name); dn; \
1099 dn = of_find_node_by_name(dn, name))
1100#define for_each_node_by_type(dn, type) \
1101 for (dn = of_find_node_by_type(NULL, type); dn; \
1102 dn = of_find_node_by_type(dn, type))
1103#define for_each_compatible_node(dn, type, compatible) \
1104 for (dn = of_find_compatible_node(NULL, type, compatible); dn; \
1105 dn = of_find_compatible_node(dn, type, compatible))
1106#define for_each_matching_node(dn, matches) \
1107 for (dn = of_find_matching_node(NULL, matches); dn; \
1108 dn = of_find_matching_node(dn, matches))
1109#define for_each_matching_node_and_match(dn, matches, match) \
1110 for (dn = of_find_matching_node_and_match(NULL, matches, match); \
1111 dn; dn = of_find_matching_node_and_match(dn, matches, match))
1112
1113#define for_each_child_of_node(parent, child) \
1114 for (child = of_get_next_child(parent, NULL); child != NULL; \
1115 child = of_get_next_child(parent, child))
1116#define for_each_available_child_of_node(parent, child) \
1117 for (child = of_get_next_available_child(parent, NULL); child != NULL; \
1118 child = of_get_next_available_child(parent, child))
1119
1120#define for_each_node_with_property(dn, prop_name) \
1121 for (dn = of_find_node_with_property(NULL, prop_name); dn; \
1122 dn = of_find_node_with_property(dn, prop_name))
1123
1124static inline int of_get_child_count(const struct device_node *np)
1125{
1126 struct device_node *child;
1127 int num = 0;
1128
1129 for_each_child_of_node(np, child)
1130 num++;
1131
1132 return num;
1133}
1134
1135static inline int of_get_available_child_count(const struct device_node *np)
1136{
1137 struct device_node *child;
1138 int num = 0;
1139
1140 for_each_available_child_of_node(np, child)
1141 num++;
1142
1143 return num;
1144}
1145
Masahiro Yamada71f50c62016-01-22 01:33:51 +09001146#if defined(CONFIG_OF) && !defined(MODULE)
Rob Herring54196cc2014-05-08 16:09:24 -05001147#define _OF_DECLARE(table, name, compat, fn, fn_type) \
1148 static const struct of_device_id __of_table_##name \
1149 __used __section(__##table##_of_table) \
1150 = { .compatible = compat, \
1151 .data = (fn == (fn_type)NULL) ? fn : fn }
1152#else
Thierry Reding5f563582014-10-02 16:01:10 +02001153#define _OF_DECLARE(table, name, compat, fn, fn_type) \
Rob Herring54196cc2014-05-08 16:09:24 -05001154 static const struct of_device_id __of_table_##name \
1155 __attribute__((unused)) \
1156 = { .compatible = compat, \
1157 .data = (fn == (fn_type)NULL) ? fn : fn }
1158#endif
1159
1160typedef int (*of_init_fn_2)(struct device_node *, struct device_node *);
Daniel Lezcanoc35d9292016-04-18 23:06:48 +02001161typedef int (*of_init_fn_1_ret)(struct device_node *);
Rob Herring54196cc2014-05-08 16:09:24 -05001162typedef void (*of_init_fn_1)(struct device_node *);
1163
1164#define OF_DECLARE_1(table, name, compat, fn) \
1165 _OF_DECLARE(table, name, compat, fn, of_init_fn_1)
Daniel Lezcanoc35d9292016-04-18 23:06:48 +02001166#define OF_DECLARE_1_RET(table, name, compat, fn) \
1167 _OF_DECLARE(table, name, compat, fn, of_init_fn_1_ret)
Rob Herring54196cc2014-05-08 16:09:24 -05001168#define OF_DECLARE_2(table, name, compat, fn) \
1169 _OF_DECLARE(table, name, compat, fn, of_init_fn_2)
1170
Pantelis Antoniou201c9102014-07-04 19:58:49 +03001171/**
1172 * struct of_changeset_entry - Holds a changeset entry
1173 *
1174 * @node: list_head for the log list
1175 * @action: notifier action
1176 * @np: pointer to the device node affected
1177 * @prop: pointer to the property affected
1178 * @old_prop: hold a pointer to the original property
1179 *
1180 * Every modification of the device tree during a changeset
1181 * is held in a list of of_changeset_entry structures.
1182 * That way we can recover from a partial application, or we can
1183 * revert the changeset
1184 */
1185struct of_changeset_entry {
1186 struct list_head node;
1187 unsigned long action;
1188 struct device_node *np;
1189 struct property *prop;
1190 struct property *old_prop;
1191};
1192
1193/**
1194 * struct of_changeset - changeset tracker structure
1195 *
1196 * @entries: list_head for the changeset entries
1197 *
1198 * changesets are a convenient way to apply bulk changes to the
1199 * live tree. In case of an error, changes are rolled-back.
1200 * changesets live on after initial application, and if not
1201 * destroyed after use, they can be reverted in one single call.
1202 */
1203struct of_changeset {
1204 struct list_head entries;
1205};
1206
Pantelis Antonioub53a2342014-10-28 22:33:53 +02001207enum of_reconfig_change {
1208 OF_RECONFIG_NO_CHANGE = 0,
1209 OF_RECONFIG_CHANGE_ADD,
1210 OF_RECONFIG_CHANGE_REMOVE,
1211};
1212
Pantelis Antoniou201c9102014-07-04 19:58:49 +03001213#ifdef CONFIG_OF_DYNAMIC
Grant Likelyf6892d12014-11-21 15:14:58 +00001214extern int of_reconfig_notifier_register(struct notifier_block *);
1215extern int of_reconfig_notifier_unregister(struct notifier_block *);
Grant Likelyf5242e52014-11-24 17:58:01 +00001216extern int of_reconfig_notify(unsigned long, struct of_reconfig_data *rd);
1217extern int of_reconfig_get_state_change(unsigned long action,
1218 struct of_reconfig_data *arg);
Grant Likelyf6892d12014-11-21 15:14:58 +00001219
Pantelis Antoniou201c9102014-07-04 19:58:49 +03001220extern void of_changeset_init(struct of_changeset *ocs);
1221extern void of_changeset_destroy(struct of_changeset *ocs);
1222extern int of_changeset_apply(struct of_changeset *ocs);
1223extern int of_changeset_revert(struct of_changeset *ocs);
1224extern int of_changeset_action(struct of_changeset *ocs,
1225 unsigned long action, struct device_node *np,
1226 struct property *prop);
1227
1228static inline int of_changeset_attach_node(struct of_changeset *ocs,
1229 struct device_node *np)
1230{
1231 return of_changeset_action(ocs, OF_RECONFIG_ATTACH_NODE, np, NULL);
1232}
1233
1234static inline int of_changeset_detach_node(struct of_changeset *ocs,
1235 struct device_node *np)
1236{
1237 return of_changeset_action(ocs, OF_RECONFIG_DETACH_NODE, np, NULL);
1238}
1239
1240static inline int of_changeset_add_property(struct of_changeset *ocs,
1241 struct device_node *np, struct property *prop)
1242{
1243 return of_changeset_action(ocs, OF_RECONFIG_ADD_PROPERTY, np, prop);
1244}
1245
1246static inline int of_changeset_remove_property(struct of_changeset *ocs,
1247 struct device_node *np, struct property *prop)
1248{
1249 return of_changeset_action(ocs, OF_RECONFIG_REMOVE_PROPERTY, np, prop);
1250}
1251
1252static inline int of_changeset_update_property(struct of_changeset *ocs,
1253 struct device_node *np, struct property *prop)
1254{
1255 return of_changeset_action(ocs, OF_RECONFIG_UPDATE_PROPERTY, np, prop);
1256}
Grant Likelyf6892d12014-11-21 15:14:58 +00001257#else /* CONFIG_OF_DYNAMIC */
1258static inline int of_reconfig_notifier_register(struct notifier_block *nb)
1259{
1260 return -EINVAL;
1261}
1262static inline int of_reconfig_notifier_unregister(struct notifier_block *nb)
1263{
1264 return -EINVAL;
1265}
Grant Likelyf5242e52014-11-24 17:58:01 +00001266static inline int of_reconfig_notify(unsigned long action,
1267 struct of_reconfig_data *arg)
Grant Likelyf6892d12014-11-21 15:14:58 +00001268{
1269 return -EINVAL;
1270}
Grant Likelyf5242e52014-11-24 17:58:01 +00001271static inline int of_reconfig_get_state_change(unsigned long action,
1272 struct of_reconfig_data *arg)
Grant Likelyf6892d12014-11-21 15:14:58 +00001273{
1274 return -EINVAL;
1275}
1276#endif /* CONFIG_OF_DYNAMIC */
Pantelis Antoniou201c9102014-07-04 19:58:49 +03001277
Pantelis Antoniou7941b272014-07-04 19:59:20 +03001278/* CONFIG_OF_RESOLVE api */
1279extern int of_resolve_phandles(struct device_node *tree);
1280
Romain Periera4b4e042014-10-14 06:31:09 +00001281/**
Romain Perier8f731102014-11-25 12:28:25 +00001282 * of_device_is_system_power_controller - Tells if system-power-controller is found for device_node
Romain Periera4b4e042014-10-14 06:31:09 +00001283 * @np: Pointer to the given device_node
1284 *
1285 * return true if present false otherwise
1286 */
Romain Perier8f731102014-11-25 12:28:25 +00001287static inline bool of_device_is_system_power_controller(const struct device_node *np)
Romain Periera4b4e042014-10-14 06:31:09 +00001288{
Romain Perier8f731102014-11-25 12:28:25 +00001289 return of_property_read_bool(np, "system-power-controller");
Romain Periera4b4e042014-10-14 06:31:09 +00001290}
1291
Linus Torvalds7ef58b32014-12-11 13:06:58 -08001292/**
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001293 * Overlay support
1294 */
1295
Alan Tull39a842e2016-11-01 14:14:22 -05001296enum of_overlay_notify_action {
1297 OF_OVERLAY_PRE_APPLY,
1298 OF_OVERLAY_POST_APPLY,
1299 OF_OVERLAY_PRE_REMOVE,
1300 OF_OVERLAY_POST_REMOVE,
1301};
1302
1303struct of_overlay_notify_data {
1304 struct device_node *overlay;
1305 struct device_node *target;
1306};
1307
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001308#ifdef CONFIG_OF_OVERLAY
1309
1310/* ID based overlays; the API for external users */
1311int of_overlay_create(struct device_node *tree);
1312int of_overlay_destroy(int id);
1313int of_overlay_destroy_all(void);
1314
Alan Tull39a842e2016-11-01 14:14:22 -05001315int of_overlay_notifier_register(struct notifier_block *nb);
1316int of_overlay_notifier_unregister(struct notifier_block *nb);
1317
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001318#else
1319
1320static inline int of_overlay_create(struct device_node *tree)
1321{
1322 return -ENOTSUPP;
1323}
1324
1325static inline int of_overlay_destroy(int id)
1326{
1327 return -ENOTSUPP;
1328}
1329
1330static inline int of_overlay_destroy_all(void)
1331{
1332 return -ENOTSUPP;
1333}
1334
Alan Tull39a842e2016-11-01 14:14:22 -05001335static inline int of_overlay_notifier_register(struct notifier_block *nb)
1336{
1337 return 0;
1338}
1339
1340static inline int of_overlay_notifier_unregister(struct notifier_block *nb)
1341{
1342 return 0;
1343}
1344
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001345#endif
1346
Stephen Rothwell76c1ce72007-05-01 16:19:07 +10001347#endif /* _LINUX_OF_H */