blob: 664cd5573ae27253f5abc38015ef38068390580c [file] [log] [blame]
Rob Herringaf6074f2017-12-27 12:55:14 -06001/* SPDX-License-Identifier: GPL-2.0+ */
Stephen Rothwell76c1ce72007-05-01 16:19:07 +10002#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.
Stephen Rothwell76c1ce72007-05-01 16:19:07 +100013 */
14#include <linux/types.h>
Jiri Slaby1977f032007-10-18 23:40:25 -070015#include <linux/bitops.h>
Kalle Valoe51130c2011-10-06 15:40:44 +030016#include <linux/errno.h>
Grant Likely75b57ec2014-02-20 18:02:11 +000017#include <linux/kobject.h>
Grant Likely283029d2008-01-09 06:20:40 +110018#include <linux/mod_devicetable.h>
Grant Likely0d351c32010-02-14 14:13:57 -070019#include <linux/spinlock.h>
Paul Mundt5ca4db62012-06-03 22:04:34 -070020#include <linux/topology.h>
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +000021#include <linux/notifier.h>
Rafael J. Wysockib31384f2014-11-04 01:28:56 +010022#include <linux/property.h>
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020023#include <linux/list.h>
Stephen Rothwell76c1ce72007-05-01 16:19:07 +100024
Jeremy Kerr2e89e682010-01-30 01:41:49 -070025#include <asm/byteorder.h>
Paul Gortmakerd0a99402011-10-29 10:17:06 -040026#include <asm/errno.h>
Jeremy Kerr2e89e682010-01-30 01:41:49 -070027
Grant Likely731581e2009-10-15 10:57:46 -060028typedef u32 phandle;
29typedef u32 ihandle;
30
31struct property {
32 char *name;
33 int length;
34 void *value;
35 struct property *next;
Rob Herring16bba302017-10-04 14:30:02 -050036#if defined(CONFIG_OF_DYNAMIC) || defined(CONFIG_SPARC)
Grant Likely731581e2009-10-15 10:57:46 -060037 unsigned long _flags;
Rob Herring16bba302017-10-04 14:30:02 -050038#endif
Rob Herring36689ec2017-09-29 20:08:28 -050039#if defined(CONFIG_OF_PROMTREE)
Grant Likely731581e2009-10-15 10:57:46 -060040 unsigned int unique_id;
Rob Herring36689ec2017-09-29 20:08:28 -050041#endif
Rob Herringb56b5522017-10-04 14:09:40 -050042#if defined(CONFIG_OF_KOBJ)
Grant Likely75b57ec2014-02-20 18:02:11 +000043 struct bin_attribute attr;
Rob Herringb56b5522017-10-04 14:09:40 -050044#endif
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;
Rob Herringb56b5522017-10-04 14:09:40 -050063#if defined(CONFIG_OF_KOBJ)
Grant Likely75b57ec2014-02-20 18:02:11 +000064 struct kobject kobj;
Rob Herringb56b5522017-10-04 14:09:40 -050065#endif
Grant Likely6f192492009-10-15 10:57:49 -060066 unsigned long _flags;
67 void *data;
68#if defined(CONFIG_SPARC)
Grant Likelyc22618a2012-11-14 22:37:12 +000069 const char *path_component_name;
Grant Likely6f192492009-10-15 10:57:49 -060070 unsigned int unique_id;
71 struct of_irq_controller *irq_trans;
72#endif
73};
74
Andreas Herrmannb66548e22014-01-17 12:08:30 +010075#define MAX_PHANDLE_ARGS 16
Grant Likely15c9a0a2011-12-12 09:25:57 -070076struct of_phandle_args {
77 struct device_node *np;
78 int args_count;
79 uint32_t args[MAX_PHANDLE_ARGS];
80};
81
Joerg Roedel74e1fbb2016-04-04 17:49:17 +020082struct of_phandle_iterator {
83 /* Common iterator information */
84 const char *cells_name;
85 int cell_count;
86 const struct device_node *parent;
87
88 /* List size information */
89 const __be32 *list_end;
90 const __be32 *phandle_end;
91
92 /* Current position state */
93 const __be32 *cur;
94 uint32_t cur_count;
95 phandle phandle;
96 struct device_node *node;
97};
98
Grant Likelyf5242e52014-11-24 17:58:01 +000099struct of_reconfig_data {
100 struct device_node *dn;
101 struct property *prop;
102 struct property *old_prop;
103};
104
Pantelis Antoniou0829f6d2013-12-13 20:08:59 +0200105/* initialize a node */
106extern struct kobj_type of_node_ktype;
Sakari Ailus37081842017-06-06 12:37:37 +0300107extern const struct fwnode_operations of_fwnode_ops;
Pantelis Antoniou0829f6d2013-12-13 20:08:59 +0200108static inline void of_node_init(struct device_node *node)
109{
Rob Herringb56b5522017-10-04 14:09:40 -0500110#if defined(CONFIG_OF_KOBJ)
Pantelis Antoniou0829f6d2013-12-13 20:08:59 +0200111 kobject_init(&node->kobj, &of_node_ktype);
Rob Herringb56b5522017-10-04 14:09:40 -0500112#endif
Sakari Ailus37081842017-06-06 12:37:37 +0300113 node->fwnode.ops = &of_fwnode_ops;
Pantelis Antoniou0829f6d2013-12-13 20:08:59 +0200114}
115
Rob Herringb56b5522017-10-04 14:09:40 -0500116#if defined(CONFIG_OF_KOBJ)
Rob Herring0c3c2342017-10-04 14:04:01 -0500117#define of_node_kobj(n) (&(n)->kobj)
Rob Herringb56b5522017-10-04 14:09:40 -0500118#else
119#define of_node_kobj(n) NULL
120#endif
Pantelis Antoniou0829f6d2013-12-13 20:08:59 +0200121
Grant Likely0f22dd32012-02-15 20:38:40 -0700122#ifdef CONFIG_OF_DYNAMIC
123extern struct device_node *of_node_get(struct device_node *node);
124extern void of_node_put(struct device_node *node);
125#else /* CONFIG_OF_DYNAMIC */
Rob Herring3ecdd052011-12-13 09:13:54 -0600126/* Dummy ref counting routines - to be implemented later */
127static inline struct device_node *of_node_get(struct device_node *node)
128{
129 return node;
130}
Grant Likely0f22dd32012-02-15 20:38:40 -0700131static inline void of_node_put(struct device_node *node) { }
132#endif /* !CONFIG_OF_DYNAMIC */
Rob Herring3ecdd052011-12-13 09:13:54 -0600133
Grant Likely41f88002009-11-23 20:07:01 -0700134/* Pointer for first entry in chain of all nodes. */
Grant Likely5063e252014-10-03 16:28:27 +0100135extern struct device_node *of_root;
Grant Likelyfc0bdae2010-02-14 07:13:55 -0700136extern struct device_node *of_chosen;
Shawn Guo611cad72011-08-15 15:28:14 +0800137extern struct device_node *of_aliases;
Grant Likelya752ee52014-03-28 08:12:18 -0700138extern struct device_node *of_stdout;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500139extern raw_spinlock_t devtree_lock;
Grant Likely41f88002009-11-23 20:07:01 -0700140
Frank Rowand144552c72018-10-04 20:24:17 -0700141/*
142 * struct device_node flag descriptions
143 * (need to be visible even when !CONFIG_OF)
144 */
145#define OF_DYNAMIC 1 /* (and properties) allocated via kmalloc */
146#define OF_DETACHED 2 /* detached from the device tree */
147#define OF_POPULATED 3 /* device already created */
148#define OF_POPULATED_BUS 4 /* platform bus created for children */
149#define OF_OVERLAY 5 /* allocated for an overlay */
150#define OF_OVERLAY_FREE_CSET 6 /* in overlay cset being freed */
Pantelis Antoniou391b4592015-04-24 12:41:56 +0300151
Guenter Roeckb1d06b62015-11-06 19:28:22 -0800152#define OF_BAD_ADDR ((u64)-1)
153
Hans de Goede6d09dc62014-11-14 13:26:52 +0100154#ifdef CONFIG_OF
Sudeep Holla194ec932015-05-14 15:28:24 +0100155void of_core_init(void);
156
Sakari Ailusd20dc142017-05-24 17:53:55 +0300157static inline bool is_of_node(const struct fwnode_handle *fwnode)
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +0100158{
Sakari Ailusdb3e50f2017-07-21 14:39:31 +0300159 return !IS_ERR_OR_NULL(fwnode) && fwnode->ops == &of_fwnode_ops;
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +0100160}
161
Sakari Ailusd20dc142017-05-24 17:53:55 +0300162#define to_of_node(__fwnode) \
163 ({ \
164 typeof(__fwnode) __to_of_node_fwnode = (__fwnode); \
165 \
166 is_of_node(__to_of_node_fwnode) ? \
167 container_of(__to_of_node_fwnode, \
168 struct device_node, fwnode) : \
169 NULL; \
170 })
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +0100171
Sakari Ailusdebd3a32017-05-24 17:53:54 +0300172#define of_fwnode_handle(node) \
173 ({ \
174 typeof(node) __of_fwnode_handle_node = (node); \
175 \
176 __of_fwnode_handle_node ? \
177 &__of_fwnode_handle_node->fwnode : NULL; \
178 })
Sakari Ailus67831832017-03-28 10:52:23 +0300179
Sebastian Andrzej Siewior3bcbaf62011-02-22 21:07:46 +0100180static inline bool of_have_populated_dt(void)
181{
Grant Likely5063e252014-10-03 16:28:27 +0100182 return of_root != NULL;
Sebastian Andrzej Siewior3bcbaf62011-02-22 21:07:46 +0100183}
184
Andres Salomon035ebef2010-07-13 09:42:26 +0000185static inline bool of_node_is_root(const struct device_node *node)
186{
187 return node && (node->parent == NULL);
188}
189
Grant Likely50436312009-10-15 10:57:58 -0600190static inline int of_node_check_flag(struct device_node *n, unsigned long flag)
191{
192 return test_bit(flag, &n->_flags);
193}
194
Pawel Mollc6e126d2014-05-15 16:55:24 +0100195static inline int of_node_test_and_set_flag(struct device_node *n,
196 unsigned long flag)
197{
198 return test_and_set_bit(flag, &n->_flags);
199}
200
Grant Likely50436312009-10-15 10:57:58 -0600201static inline void of_node_set_flag(struct device_node *n, unsigned long flag)
202{
203 set_bit(flag, &n->_flags);
204}
205
Pantelis Antoniou588453c2013-11-08 17:03:56 +0200206static inline void of_node_clear_flag(struct device_node *n, unsigned long flag)
207{
208 clear_bit(flag, &n->_flags);
209}
210
Rob Herring16bba302017-10-04 14:30:02 -0500211#if defined(CONFIG_OF_DYNAMIC) || defined(CONFIG_SPARC)
Pantelis Antoniou588453c2013-11-08 17:03:56 +0200212static inline int of_property_check_flag(struct property *p, unsigned long flag)
213{
214 return test_bit(flag, &p->_flags);
215}
216
217static inline void of_property_set_flag(struct property *p, unsigned long flag)
218{
219 set_bit(flag, &p->_flags);
220}
221
222static inline void of_property_clear_flag(struct property *p, unsigned long flag)
223{
224 clear_bit(flag, &p->_flags);
225}
Rob Herring16bba302017-10-04 14:30:02 -0500226#endif
Pantelis Antoniou588453c2013-11-08 17:03:56 +0200227
Grant Likely5063e252014-10-03 16:28:27 +0100228extern struct device_node *__of_find_all_nodes(struct device_node *prev);
Grant Likelye91edcf2009-10-15 10:58:09 -0600229extern struct device_node *of_find_all_nodes(struct device_node *prev);
230
Grant Likelyb6caf2a2009-10-15 10:58:00 -0600231/*
Lennert Buytenhek3d6b8822011-02-22 18:18:51 +0100232 * OF address retrieval & translation
Grant Likelyb6caf2a2009-10-15 10:58:00 -0600233 */
234
235/* Helper to read a big number; size is in cells (not bytes) */
Jeremy Kerr2e89e682010-01-30 01:41:49 -0700236static inline u64 of_read_number(const __be32 *cell, int size)
Grant Likelyb6caf2a2009-10-15 10:58:00 -0600237{
238 u64 r = 0;
239 while (size--)
Jeremy Kerr2e89e682010-01-30 01:41:49 -0700240 r = (r << 32) | be32_to_cpu(*(cell++));
Grant Likelyb6caf2a2009-10-15 10:58:00 -0600241 return r;
242}
243
244/* Like of_read_number, but we want an unsigned long result */
Jeremy Kerr2e89e682010-01-30 01:41:49 -0700245static inline unsigned long of_read_ulong(const __be32 *cell, int size)
Grant Likelyb6caf2a2009-10-15 10:58:00 -0600246{
Grant Likely2be09cb2009-11-23 20:16:46 -0700247 /* toss away upper bits if unsigned long is smaller than u64 */
248 return of_read_number(cell, size);
Grant Likelyb6caf2a2009-10-15 10:58:00 -0600249}
Grant Likelyb6caf2a2009-10-15 10:58:00 -0600250
Rob Herringb5b4bb32013-09-07 14:08:20 -0500251#if defined(CONFIG_SPARC)
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000252#include <asm/prom.h>
Rob Herringb5b4bb32013-09-07 14:08:20 -0500253#endif
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000254
Grant Likely61e955d2009-10-15 10:57:51 -0600255#define OF_IS_DYNAMIC(x) test_bit(OF_DYNAMIC, &x->_flags)
256#define OF_MARK_DYNAMIC(x) set_bit(OF_DYNAMIC, &x->_flags)
257
Rob Herringf42b0e182018-08-27 07:50:47 -0500258extern bool of_node_name_eq(const struct device_node *np, const char *name);
259extern bool of_node_name_prefix(const struct device_node *np, const char *prefix);
260
Steffen Trumtrarc0a05bf2012-12-18 11:32:03 +0100261static inline const char *of_node_full_name(const struct device_node *np)
Grant Likely74a7f082012-06-15 11:50:25 -0600262{
263 return np ? np->full_name : "<no-node>";
264}
265
Grant Likely5063e252014-10-03 16:28:27 +0100266#define for_each_of_allnodes_from(from, dn) \
267 for (dn = __of_find_all_nodes(from); dn; dn = __of_find_all_nodes(dn))
268#define for_each_of_allnodes(dn) for_each_of_allnodes_from(NULL, dn)
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000269extern struct device_node *of_find_node_by_name(struct device_node *from,
270 const char *name);
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000271extern struct device_node *of_find_node_by_type(struct device_node *from,
272 const char *type);
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000273extern struct device_node *of_find_compatible_node(struct device_node *from,
274 const char *type, const char *compat);
Stephen Warren50c8af42012-11-20 16:12:20 -0700275extern struct device_node *of_find_matching_node_and_match(
276 struct device_node *from,
277 const struct of_device_id *matches,
278 const struct of_device_id **match);
Rob Herring662372e2014-02-03 08:53:44 -0600279
Leif Lindholm75c28c02014-11-28 11:34:28 +0000280extern struct device_node *of_find_node_opts_by_path(const char *path,
281 const char **opts);
282static inline struct device_node *of_find_node_by_path(const char *path)
283{
284 return of_find_node_opts_by_path(path, NULL);
285}
286
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000287extern struct device_node *of_find_node_by_phandle(phandle handle);
288extern struct device_node *of_get_parent(const struct device_node *node);
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000289extern struct device_node *of_get_next_parent(struct device_node *node);
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000290extern struct device_node *of_get_next_child(const struct device_node *node,
291 struct device_node *prev);
Timur Tabi32961932012-08-14 13:20:23 +0000292extern struct device_node *of_get_next_available_child(
293 const struct device_node *node, struct device_node *prev);
294
Johan Hovold36156f92018-08-27 10:21:45 +0200295extern struct device_node *of_get_compatible_child(const struct device_node *parent,
296 const char *compatible);
Srinivas Kandagatla9c197612012-09-18 08:10:28 +0100297extern struct device_node *of_get_child_by_name(const struct device_node *node,
298 const char *name);
Bryan Wu954e04b2013-09-24 10:38:26 -0700299
Sudeep KarkadaNageshaa3e31b42013-09-18 11:53:05 +0100300/* cache lookup */
301extern struct device_node *of_find_next_cache_node(const struct device_node *);
Sudeep Holla5fa23532017-01-16 10:40:43 +0000302extern int of_find_last_cache_level(unsigned int cpu);
Michael Ellerman1e291b142008-11-12 18:54:42 +0000303extern struct device_node *of_find_node_with_property(
304 struct device_node *from, const char *prop_name);
Michael Ellerman1e291b142008-11-12 18:54:42 +0000305
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000306extern struct property *of_find_property(const struct device_node *np,
307 const char *name,
308 int *lenp);
Heiko Stuebnerad54a0c2014-02-12 01:00:34 +0100309extern int of_property_count_elems_of_size(const struct device_node *np,
310 const char *propname, int elem_size);
Tony Prisk3daf3722013-03-23 17:02:15 +1300311extern int of_property_read_u32_index(const struct device_node *np,
312 const char *propname,
313 u32 index, u32 *out_value);
Alistair Popple2475a2b2017-04-03 19:51:42 +1000314extern int of_property_read_u64_index(const struct device_node *np,
315 const char *propname,
316 u32 index, u64 *out_value);
Richard Fitzgeralda67e9472016-09-12 14:01:29 +0100317extern int of_property_read_variable_u8_array(const struct device_node *np,
318 const char *propname, u8 *out_values,
319 size_t sz_min, size_t sz_max);
320extern int of_property_read_variable_u16_array(const struct device_node *np,
321 const char *propname, u16 *out_values,
322 size_t sz_min, size_t sz_max);
323extern int of_property_read_variable_u32_array(const struct device_node *np,
324 const char *propname,
325 u32 *out_values,
326 size_t sz_min,
327 size_t sz_max);
Jamie Iles4cd7f7a2011-09-14 20:49:59 +0100328extern int of_property_read_u64(const struct device_node *np,
329 const char *propname, u64 *out_value);
Richard Fitzgeralda67e9472016-09-12 14:01:29 +0100330extern int of_property_read_variable_u64_array(const struct device_node *np,
331 const char *propname,
332 u64 *out_values,
333 size_t sz_min,
334 size_t sz_max);
Rob Herring0e373632011-07-06 15:42:58 -0500335
David Rivshinfe99c702016-03-02 16:35:51 -0500336extern int of_property_read_string(const struct device_node *np,
Jamie Ilesaac285c2011-08-02 15:45:07 +0100337 const char *propname,
338 const char **out_string);
David Rivshinfe99c702016-03-02 16:35:51 -0500339extern int of_property_match_string(const struct device_node *np,
Grant Likely7aff0fe2011-12-12 09:25:58 -0700340 const char *propname,
341 const char *string);
David Rivshinfe99c702016-03-02 16:35:51 -0500342extern int of_property_read_string_helper(const struct device_node *np,
Grant Likelya87fa1d2014-11-03 15:15:35 +0000343 const char *propname,
344 const char **out_strs, size_t sz, int index);
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000345extern int of_device_is_compatible(const struct device_node *device,
346 const char *);
Benjamin Herrenschmidtb9c13fe32016-07-08 08:35:59 +1000347extern int of_device_compatible_match(struct device_node *device,
348 const char *const *compat);
Kevin Cernekee53a4ab92014-11-12 12:54:01 -0800349extern bool of_device_is_available(const struct device_node *device);
Kevin Cernekee37786c72015-04-09 13:05:14 -0700350extern bool of_device_is_big_endian(const struct device_node *device);
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000351extern const void *of_get_property(const struct device_node *node,
352 const char *name,
353 int *lenp);
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100354extern struct device_node *of_get_cpu_node(int cpu, unsigned int *thread);
Rob Herringf1f207e2018-08-22 15:04:40 -0500355extern struct device_node *of_get_next_cpu_node(struct device_node *prev);
356
Dong Aisheng8af0da92011-12-22 20:19:24 +0800357#define for_each_property_of_node(dn, pp) \
358 for (pp = dn->properties; pp != NULL; pp = pp->next)
Shawn Guo611cad72011-08-15 15:28:14 +0800359
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000360extern int of_n_addr_cells(struct device_node *np);
361extern int of_n_size_cells(struct device_node *np);
Grant Likely283029d2008-01-09 06:20:40 +1100362extern const struct of_device_id *of_match_node(
363 const struct of_device_id *matches, const struct device_node *node);
Grant Likely3f07af42008-07-25 22:25:13 -0400364extern int of_modalias_node(struct device_node *node, char *modalias, int len);
Grant Likely624cfca2013-10-11 22:05:10 +0100365extern void of_print_phandle_args(const char *msg, const struct of_phandle_args *args);
Steffen Trumtrarb8fbdc42012-11-22 12:16:43 +0100366extern struct device_node *of_parse_phandle(const struct device_node *np,
Grant Likely739649c2009-04-25 12:52:40 +0000367 const char *phandle_name,
368 int index);
Guennadi Liakhovetski93c667c2012-12-10 20:41:30 +0100369extern int of_parse_phandle_with_args(const struct device_node *np,
Anton Vorontsov64b60e02008-10-10 04:43:17 +0000370 const char *list_name, const char *cells_name, int index,
Grant Likely15c9a0a2011-12-12 09:25:57 -0700371 struct of_phandle_args *out_args);
Stephen Boydbd6f2fd2018-01-30 18:36:16 -0800372extern 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);
Stephen Warren035fd942013-08-14 15:27:10 -0600375extern 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);
Grant Likelybd69f732013-02-10 22:57:21 +0000378extern int of_count_phandle_with_args(const struct device_node *np,
379 const char *list_name, const char *cells_name);
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000380
Joerg Roedel74e1fbb2016-04-04 17:49:17 +0200381/* phandle iterator functions */
382extern int of_phandle_iterator_init(struct of_phandle_iterator *it,
383 const struct device_node *np,
384 const char *list_name,
385 const char *cells_name,
386 int cell_count);
387
Joerg Roedelcd209b42016-04-04 17:49:18 +0200388extern int of_phandle_iterator_next(struct of_phandle_iterator *it);
Joerg Roedelabdaa772016-04-04 17:49:21 +0200389extern int of_phandle_iterator_args(struct of_phandle_iterator *it,
390 uint32_t *args,
391 int size);
Joerg Roedelcd209b42016-04-04 17:49:18 +0200392
Shawn Guo611cad72011-08-15 15:28:14 +0800393extern void of_alias_scan(void * (*dt_alloc)(u64 size, u64 align));
394extern int of_alias_get_id(struct device_node *np, const char *stem);
Wolfram Sang351d2242015-03-12 17:17:58 +0100395extern int of_alias_get_highest_id(const char *stem);
Michal Simekb1078c32018-09-20 13:41:52 +0200396extern int of_alias_get_alias_list(const struct of_device_id *matches,
397 const char *stem, unsigned long *bitmap,
398 unsigned int nbits);
Shawn Guo611cad72011-08-15 15:28:14 +0800399
Grant Likely21b082e2010-02-14 07:13:38 -0700400extern int of_machine_is_compatible(const char *compat);
401
Nathan Fontenot79d1c712012-10-02 16:58:46 +0000402extern int of_add_property(struct device_node *np, struct property *prop);
403extern int of_remove_property(struct device_node *np, struct property *prop);
404extern int of_update_property(struct device_node *np, struct property *newprop);
Grant Likely21b082e2010-02-14 07:13:38 -0700405
Grant Likelyfcdeb7f2010-01-29 05:04:33 -0700406/* For updating the device tree at runtime */
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +0000407#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
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +0000413extern int of_attach_node(struct device_node *);
414extern int of_detach_node(struct device_node *);
Grant Likelyfcdeb7f2010-01-29 05:04:33 -0700415
Ben Dooks3a1e3622011-08-03 10:11:42 +0100416#define of_match_ptr(_ptr) (_ptr)
Stephen Warrenc541adc2012-04-04 09:27:46 -0600417
Richard Fitzgeralda67e9472016-09-12 14:01:29 +0100418/**
419 * of_property_read_u8_array - Find and read an array of u8 from a property.
420 *
421 * @np: device node from which the property value is to be read.
422 * @propname: name of the property to be searched.
423 * @out_values: pointer to return value, modified only if return value is 0.
424 * @sz: number of array elements to read
425 *
426 * Search for a property in a device node and read 8-bit value(s) from
427 * it. Returns 0 on success, -EINVAL if the property does not exist,
428 * -ENODATA if property does not have a value, and -EOVERFLOW if the
429 * property data isn't large enough.
430 *
431 * dts entry of array should be like:
432 * property = /bits/ 8 <0x50 0x60 0x70>;
433 *
434 * The out_values is modified only if a valid u8 value can be decoded.
435 */
436static inline int of_property_read_u8_array(const struct device_node *np,
437 const char *propname,
438 u8 *out_values, size_t sz)
439{
440 int ret = of_property_read_variable_u8_array(np, propname, out_values,
441 sz, 0);
442 if (ret >= 0)
443 return 0;
444 else
445 return ret;
446}
447
448/**
449 * of_property_read_u16_array - Find and read an array of u16 from a property.
450 *
451 * @np: device node from which the property value is to be read.
452 * @propname: name of the property to be searched.
453 * @out_values: pointer to return value, modified only if return value is 0.
454 * @sz: number of array elements to read
455 *
456 * Search for a property in a device node and read 16-bit value(s) from
457 * it. Returns 0 on success, -EINVAL if the property does not exist,
458 * -ENODATA if property does not have a value, and -EOVERFLOW if the
459 * property data isn't large enough.
460 *
461 * dts entry of array should be like:
462 * property = /bits/ 16 <0x5000 0x6000 0x7000>;
463 *
464 * The out_values is modified only if a valid u16 value can be decoded.
465 */
466static inline int of_property_read_u16_array(const struct device_node *np,
467 const char *propname,
468 u16 *out_values, size_t sz)
469{
470 int ret = of_property_read_variable_u16_array(np, propname, out_values,
471 sz, 0);
472 if (ret >= 0)
473 return 0;
474 else
475 return ret;
476}
477
478/**
479 * of_property_read_u32_array - Find and read an array of 32 bit integers
480 * from a property.
481 *
482 * @np: device node from which the property value is to be read.
483 * @propname: name of the property to be searched.
484 * @out_values: pointer to return value, modified only if return value is 0.
485 * @sz: number of array elements to read
486 *
487 * Search for a property in a device node and read 32-bit value(s) from
488 * it. Returns 0 on success, -EINVAL if the property does not exist,
489 * -ENODATA if property does not have a value, and -EOVERFLOW if the
490 * property data isn't large enough.
491 *
492 * The out_values is modified only if a valid u32 value can be decoded.
493 */
494static inline int of_property_read_u32_array(const struct device_node *np,
495 const char *propname,
496 u32 *out_values, size_t sz)
497{
498 int ret = of_property_read_variable_u32_array(np, propname, out_values,
499 sz, 0);
500 if (ret >= 0)
501 return 0;
502 else
503 return ret;
504}
505
506/**
507 * of_property_read_u64_array - Find and read an array of 64 bit integers
508 * from a property.
509 *
510 * @np: device node from which the property value is to be read.
511 * @propname: name of the property to be searched.
512 * @out_values: pointer to return value, modified only if return value is 0.
513 * @sz: number of array elements to read
514 *
515 * Search for a property in a device node and read 64-bit value(s) from
516 * it. Returns 0 on success, -EINVAL if the property does not exist,
517 * -ENODATA if property does not have a value, and -EOVERFLOW if the
518 * property data isn't large enough.
519 *
520 * The out_values is modified only if a valid u64 value can be decoded.
521 */
522static inline int of_property_read_u64_array(const struct device_node *np,
523 const char *propname,
524 u64 *out_values, size_t sz)
525{
526 int ret = of_property_read_variable_u64_array(np, propname, out_values,
527 sz, 0);
528 if (ret >= 0)
529 return 0;
530 else
531 return ret;
532}
533
Stephen Warrenc541adc2012-04-04 09:27:46 -0600534/*
535 * struct property *prop;
536 * const __be32 *p;
537 * u32 u;
538 *
539 * of_property_for_each_u32(np, "propname", prop, p, u)
540 * printk("U32 value: %x\n", u);
541 */
542const __be32 *of_prop_next_u32(struct property *prop, const __be32 *cur,
543 u32 *pu);
Stephen Warrenc541adc2012-04-04 09:27:46 -0600544/*
545 * struct property *prop;
546 * const char *s;
547 *
548 * of_property_for_each_string(np, "propname", prop, s)
549 * printk("String value: %s\n", s);
550 */
551const char *of_prop_next_string(struct property *prop, const char *cur);
Stephen Warrenc541adc2012-04-04 09:27:46 -0600552
Grant Likely3482f2c2014-03-27 17:18:55 -0700553bool of_console_check(struct device_node *dn, char *name, int index);
Sascha Hauer5c19e952013-08-05 14:40:44 +0200554
Suzuki K Poulosea0e71cd2018-01-02 11:25:27 +0000555extern int of_cpu_node_to_id(struct device_node *np);
556
Nipun Gupta2a6db712018-09-10 19:19:16 +0530557int of_map_rid(struct device_node *np, u32 rid,
558 const char *map_name, const char *map_mask_name,
559 struct device_node **target, u32 *id_out);
560
Shawn Guob98c0232011-07-08 16:27:33 +0800561#else /* CONFIG_OF */
Sebastian Andrzej Siewior3bcbaf62011-02-22 21:07:46 +0100562
Sudeep Holla194ec932015-05-14 15:28:24 +0100563static inline void of_core_init(void)
564{
565}
566
Sakari Ailusd20dc142017-05-24 17:53:55 +0300567static inline bool is_of_node(const struct fwnode_handle *fwnode)
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +0100568{
569 return false;
570}
571
Sakari Ailusd20dc142017-05-24 17:53:55 +0300572static inline struct device_node *to_of_node(const struct fwnode_handle *fwnode)
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +0100573{
574 return NULL;
575}
576
Rob Herringf42b0e182018-08-27 07:50:47 -0500577static inline bool of_node_name_eq(const struct device_node *np, const char *name)
578{
579 return false;
580}
581
582static inline bool of_node_name_prefix(const struct device_node *np, const char *prefix)
583{
584 return false;
585}
586
Stephen Rothwell4c358e12014-05-15 14:44:30 +1000587static inline const char* of_node_full_name(const struct device_node *np)
Grant Likely74a7f082012-06-15 11:50:25 -0600588{
589 return "<no-node>";
590}
591
Peter Ujfalusi1cc44f42012-09-10 13:46:24 +0300592static inline struct device_node *of_find_node_by_name(struct device_node *from,
593 const char *name)
594{
595 return NULL;
596}
597
Rob Herring662372e2014-02-03 08:53:44 -0600598static inline struct device_node *of_find_node_by_type(struct device_node *from,
599 const char *type)
600{
601 return NULL;
602}
603
604static inline struct device_node *of_find_matching_node_and_match(
605 struct device_node *from,
606 const struct of_device_id *matches,
607 const struct of_device_id **match)
608{
609 return NULL;
610}
611
Alexander Shiyan20cd4772014-04-16 10:49:20 +0400612static inline struct device_node *of_find_node_by_path(const char *path)
613{
614 return NULL;
615}
616
Leif Lindholm75c28c02014-11-28 11:34:28 +0000617static inline struct device_node *of_find_node_opts_by_path(const char *path,
618 const char **opts)
619{
620 return NULL;
621}
622
Suman Annace16b9d2015-06-17 11:53:53 -0500623static inline struct device_node *of_find_node_by_phandle(phandle handle)
624{
625 return NULL;
626}
627
Alexander Shiyan066ec1d2013-04-09 19:47:40 +0400628static inline struct device_node *of_get_parent(const struct device_node *node)
629{
630 return NULL;
631}
632
Rob Herring662372e2014-02-03 08:53:44 -0600633static inline struct device_node *of_get_next_child(
634 const struct device_node *node, struct device_node *prev)
635{
636 return NULL;
637}
638
639static inline struct device_node *of_get_next_available_child(
640 const struct device_node *node, struct device_node *prev)
641{
642 return NULL;
643}
644
645static inline struct device_node *of_find_node_with_property(
646 struct device_node *from, const char *prop_name)
647{
648 return NULL;
649}
650
Sakari Ailus67831832017-03-28 10:52:23 +0300651#define of_fwnode_handle(node) NULL
652
Sebastian Andrzej Siewior3bcbaf62011-02-22 21:07:46 +0100653static inline bool of_have_populated_dt(void)
654{
655 return false;
656}
657
Johan Hovold36156f92018-08-27 10:21:45 +0200658static inline struct device_node *of_get_compatible_child(const struct device_node *parent,
659 const char *compatible)
660{
661 return NULL;
662}
663
Olof Johansson25c040c2012-10-07 10:40:54 -0700664static inline struct device_node *of_get_child_by_name(
665 const struct device_node *node,
666 const char *name)
667{
668 return NULL;
669}
670
Rajendra Nayak36a09042011-10-10 21:49:35 +0530671static inline int of_device_is_compatible(const struct device_node *device,
672 const char *name)
673{
674 return 0;
675}
676
Geert Uytterhoeven3bc16302017-04-25 19:38:48 +0200677static inline int of_device_compatible_match(struct device_node *device,
678 const char *const *compat)
679{
680 return 0;
681}
682
Kevin Cernekee53a4ab92014-11-12 12:54:01 -0800683static inline bool of_device_is_available(const struct device_node *device)
Rob Herringd7195692013-03-20 16:56:18 -0500684{
Kevin Cernekee53a4ab92014-11-12 12:54:01 -0800685 return false;
Rob Herringd7195692013-03-20 16:56:18 -0500686}
687
Kevin Cernekee37786c72015-04-09 13:05:14 -0700688static inline bool of_device_is_big_endian(const struct device_node *device)
689{
690 return false;
691}
692
Stephen Warrenaba3dff2011-09-21 13:23:10 -0600693static inline struct property *of_find_property(const struct device_node *np,
694 const char *name,
695 int *lenp)
696{
697 return NULL;
698}
699
Shawn Guo2261cc62012-02-15 10:47:42 -0800700static inline struct device_node *of_find_compatible_node(
701 struct device_node *from,
702 const char *type,
703 const char *compat)
704{
705 return NULL;
706}
707
Heiko Stuebnerad54a0c2014-02-12 01:00:34 +0100708static inline int of_property_count_elems_of_size(const struct device_node *np,
709 const char *propname, int elem_size)
710{
711 return -ENOSYS;
712}
713
Viresh Kumarbe193242012-11-20 10:15:19 +0530714static inline int of_property_read_u8_array(const struct device_node *np,
715 const char *propname, u8 *out_values, size_t sz)
716{
717 return -ENOSYS;
718}
719
720static inline int of_property_read_u16_array(const struct device_node *np,
721 const char *propname, u16 *out_values, size_t sz)
722{
723 return -ENOSYS;
724}
725
Shawn Guob98c0232011-07-08 16:27:33 +0800726static inline int of_property_read_u32_array(const struct device_node *np,
Jamie Ilesaac285c2011-08-02 15:45:07 +0100727 const char *propname,
728 u32 *out_values, size_t sz)
Shawn Guob98c0232011-07-08 16:27:33 +0800729{
730 return -ENOSYS;
731}
732
Rafael J. Wysockib31384f2014-11-04 01:28:56 +0100733static inline int of_property_read_u64_array(const struct device_node *np,
734 const char *propname,
735 u64 *out_values, size_t sz)
736{
737 return -ENOSYS;
738}
739
Arnd Bergmann96c623e2017-11-06 14:26:10 +0100740static inline int of_property_read_u32_index(const struct device_node *np,
741 const char *propname, u32 index, u32 *out_value)
Shawn Guob98c0232011-07-08 16:27:33 +0800742{
743 return -ENOSYS;
744}
745
Arnd Bergmann96c623e2017-11-06 14:26:10 +0100746static inline int of_property_read_u64_index(const struct device_node *np,
747 const char *propname, u32 index, u64 *out_value)
Benoit Cousson4fcd15a2011-09-27 17:45:43 +0200748{
749 return -ENOSYS;
750}
751
Stephen Warren89272b82011-08-05 16:50:30 -0600752static inline const void *of_get_property(const struct device_node *node,
753 const char *name,
754 int *lenp)
755{
756 return NULL;
757}
758
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100759static inline struct device_node *of_get_cpu_node(int cpu,
760 unsigned int *thread)
761{
762 return NULL;
763}
764
Rob Herringf1f207e2018-08-22 15:04:40 -0500765static inline struct device_node *of_get_next_cpu_node(struct device_node *prev)
766{
767 return NULL;
768}
769
Arnd Bergmann8a1ac5d2017-10-13 15:57:40 -0700770static inline int of_n_addr_cells(struct device_node *np)
771{
772 return 0;
773
774}
775static inline int of_n_size_cells(struct device_node *np)
776{
777 return 0;
778}
779
Arnd Bergmann96c623e2017-11-06 14:26:10 +0100780static inline int of_property_read_variable_u8_array(const struct device_node *np,
781 const char *propname, u8 *out_values,
782 size_t sz_min, size_t sz_max)
783{
784 return -ENOSYS;
785}
786
787static inline int of_property_read_variable_u16_array(const struct device_node *np,
788 const char *propname, u16 *out_values,
789 size_t sz_min, size_t sz_max)
790{
791 return -ENOSYS;
792}
793
794static inline int of_property_read_variable_u32_array(const struct device_node *np,
795 const char *propname,
796 u32 *out_values,
797 size_t sz_min,
798 size_t sz_max)
799{
800 return -ENOSYS;
801}
802
Jamie Iles4cd7f7a2011-09-14 20:49:59 +0100803static inline int of_property_read_u64(const struct device_node *np,
804 const char *propname, u64 *out_value)
805{
806 return -ENOSYS;
807}
808
Arnd Bergmann96c623e2017-11-06 14:26:10 +0100809static inline int of_property_read_variable_u64_array(const struct device_node *np,
810 const char *propname,
811 u64 *out_values,
812 size_t sz_min,
813 size_t sz_max)
814{
815 return -ENOSYS;
816}
817
818static inline int of_property_read_string(const struct device_node *np,
819 const char *propname,
820 const char **out_string)
821{
822 return -ENOSYS;
823}
824
David Rivshinfe99c702016-03-02 16:35:51 -0500825static inline int of_property_match_string(const struct device_node *np,
Thierry Redingbd3d5502012-04-13 16:18:34 +0200826 const char *propname,
827 const char *string)
828{
829 return -ENOSYS;
830}
831
Arnd Bergmann96c623e2017-11-06 14:26:10 +0100832static inline int of_property_read_string_helper(const struct device_node *np,
833 const char *propname,
834 const char **out_strs, size_t sz, int index)
835{
836 return -ENOSYS;
837}
838
Steffen Trumtrarb8fbdc42012-11-22 12:16:43 +0100839static inline struct device_node *of_parse_phandle(const struct device_node *np,
Rajendra Nayak36a09042011-10-10 21:49:35 +0530840 const char *phandle_name,
841 int index)
842{
843 return NULL;
844}
845
Kuninori Morimotoe93aeea2016-05-25 01:15:04 +0000846static inline int of_parse_phandle_with_args(const struct device_node *np,
Thierry Redinge05e5072012-04-13 16:19:21 +0200847 const char *list_name,
848 const char *cells_name,
849 int index,
850 struct of_phandle_args *out_args)
851{
852 return -ENOSYS;
853}
854
Stephen Boydbd6f2fd2018-01-30 18:36:16 -0800855static inline int of_parse_phandle_with_args_map(const struct device_node *np,
856 const char *list_name,
857 const char *stem_name,
858 int index,
859 struct of_phandle_args *out_args)
860{
861 return -ENOSYS;
862}
863
Stephen Warren035fd942013-08-14 15:27:10 -0600864static inline int of_parse_phandle_with_fixed_args(const struct device_node *np,
865 const char *list_name, int cells_count, int index,
866 struct of_phandle_args *out_args)
867{
868 return -ENOSYS;
869}
870
Grant Likelybd69f732013-02-10 22:57:21 +0000871static inline int of_count_phandle_with_args(struct device_node *np,
872 const char *list_name,
873 const char *cells_name)
874{
875 return -ENOSYS;
876}
877
Joerg Roedel74e1fbb2016-04-04 17:49:17 +0200878static inline int of_phandle_iterator_init(struct of_phandle_iterator *it,
879 const struct device_node *np,
880 const char *list_name,
881 const char *cells_name,
882 int cell_count)
883{
884 return -ENOSYS;
885}
886
Joerg Roedelcd209b42016-04-04 17:49:18 +0200887static inline int of_phandle_iterator_next(struct of_phandle_iterator *it)
888{
889 return -ENOSYS;
890}
891
Joerg Roedelabdaa772016-04-04 17:49:21 +0200892static inline int of_phandle_iterator_args(struct of_phandle_iterator *it,
893 uint32_t *args,
894 int size)
895{
896 return 0;
897}
898
Nicolas Ferreed5f8862011-10-27 11:07:28 +0200899static inline int of_alias_get_id(struct device_node *np, const char *stem)
900{
901 return -ENOSYS;
902}
903
Wolfram Sang351d2242015-03-12 17:17:58 +0100904static inline int of_alias_get_highest_id(const char *stem)
905{
906 return -ENOSYS;
907}
908
Michal Simekb1078c32018-09-20 13:41:52 +0200909static inline int of_alias_get_alias_list(const struct of_device_id *matches,
910 const char *stem, unsigned long *bitmap,
911 unsigned int nbits)
912{
913 return -ENOSYS;
914}
915
Stephen Warren50e07f82011-10-25 14:01:26 +0200916static inline int of_machine_is_compatible(const char *compat)
917{
918 return 0;
919}
920
Grant Likely3482f2c2014-03-27 17:18:55 -0700921static inline bool of_console_check(const struct device_node *dn, const char *name, int index)
Sascha Hauer5c19e952013-08-05 14:40:44 +0200922{
Grant Likely3482f2c2014-03-27 17:18:55 -0700923 return false;
Sascha Hauer5c19e952013-08-05 14:40:44 +0200924}
925
Sebastian Andrzej Siewior2adfffa2013-06-17 16:48:13 +0200926static inline const __be32 *of_prop_next_u32(struct property *prop,
927 const __be32 *cur, u32 *pu)
928{
929 return NULL;
930}
931
932static inline const char *of_prop_next_string(struct property *prop,
933 const char *cur)
934{
935 return NULL;
936}
937
Pantelis Antoniou0384e8c2015-01-21 19:05:57 +0200938static inline int of_node_check_flag(struct device_node *n, unsigned long flag)
939{
940 return 0;
941}
942
943static inline int of_node_test_and_set_flag(struct device_node *n,
944 unsigned long flag)
945{
946 return 0;
947}
948
949static inline void of_node_set_flag(struct device_node *n, unsigned long flag)
950{
951}
952
953static inline void of_node_clear_flag(struct device_node *n, unsigned long flag)
954{
955}
956
957static inline int of_property_check_flag(struct property *p, unsigned long flag)
958{
959 return 0;
960}
961
962static inline void of_property_set_flag(struct property *p, unsigned long flag)
963{
964}
965
966static inline void of_property_clear_flag(struct property *p, unsigned long flag)
967{
968}
969
Suzuki K Poulosea0e71cd2018-01-02 11:25:27 +0000970static inline int of_cpu_node_to_id(struct device_node *np)
971{
972 return -ENODEV;
973}
974
Nipun Gupta2a6db712018-09-10 19:19:16 +0530975static inline int of_map_rid(struct device_node *np, u32 rid,
976 const char *map_name, const char *map_mask_name,
977 struct device_node **target, u32 *id_out)
978{
979 return -EINVAL;
980}
981
Ben Dooks3a1e3622011-08-03 10:11:42 +0100982#define of_match_ptr(_ptr) NULL
Nicolas Ferre5762c202011-10-24 11:53:32 +0200983#define of_match_node(_matches, _node) NULL
Jeremy Kerr9dfbf202010-02-14 07:13:43 -0700984#endif /* CONFIG_OF */
Shawn Guob98c0232011-07-08 16:27:33 +0800985
Adam Thomson613e9722016-06-21 18:50:20 +0100986/* Default string compare functions, Allow arch asm/prom.h to override */
987#if !defined(of_compat_cmp)
988#define of_compat_cmp(s1, s2, l) strcasecmp((s1), (s2))
989#define of_prop_cmp(s1, s2) strcmp((s1), (s2))
990#define of_node_cmp(s1, s2) strcasecmp((s1), (s2))
991#endif
992
Rob Herring0c3f0612013-09-17 10:42:50 -0500993#if defined(CONFIG_OF) && defined(CONFIG_NUMA)
994extern int of_node_to_nid(struct device_node *np);
995#else
Konstantin Khlebnikovc8fff7b2015-04-08 19:59:20 +0300996static inline int of_node_to_nid(struct device_node *device)
997{
998 return NUMA_NO_NODE;
999}
Paul Mundt5ca4db62012-06-03 22:04:34 -07001000#endif
1001
David Daney298535c2016-04-08 15:50:25 -07001002#ifdef CONFIG_OF_NUMA
1003extern int of_numa_init(void);
1004#else
1005static inline int of_numa_init(void)
1006{
1007 return -ENOSYS;
1008}
1009#endif
1010
Rob Herring662372e2014-02-03 08:53:44 -06001011static inline struct device_node *of_find_matching_node(
1012 struct device_node *from,
1013 const struct of_device_id *matches)
1014{
1015 return of_find_matching_node_and_match(from, matches, NULL);
1016}
1017
Rob Herring0413bed2018-08-28 15:10:48 -05001018static inline const char *of_node_get_device_type(const struct device_node *np)
1019{
Rob Herring5d5a0ab2018-10-01 10:54:51 -05001020 return of_get_property(np, "device_type", NULL);
Rob Herring0413bed2018-08-28 15:10:48 -05001021}
1022
1023static inline bool of_node_is_type(const struct device_node *np, const char *type)
1024{
1025 const char *match = of_node_get_device_type(np);
1026
1027 return np && match && type && !strcmp(match, type);
1028}
1029
Jean-Christophe PLAGNIOL-VILLARDfa4d34c2012-02-07 12:12:51 +08001030/**
Heiko Stuebnerad54a0c2014-02-12 01:00:34 +01001031 * of_property_count_u8_elems - Count the number of u8 elements in a property
1032 *
1033 * @np: device node from which the property value is to be read.
1034 * @propname: name of the property to be searched.
1035 *
1036 * Search for a property in a device node and count the number of u8 elements
1037 * in it. Returns number of elements on sucess, -EINVAL if the property does
1038 * not exist or its length does not match a multiple of u8 and -ENODATA if the
1039 * property does not have a value.
1040 */
1041static inline int of_property_count_u8_elems(const struct device_node *np,
1042 const char *propname)
1043{
1044 return of_property_count_elems_of_size(np, propname, sizeof(u8));
1045}
1046
1047/**
1048 * of_property_count_u16_elems - Count the number of u16 elements in a property
1049 *
1050 * @np: device node from which the property value is to be read.
1051 * @propname: name of the property to be searched.
1052 *
1053 * Search for a property in a device node and count the number of u16 elements
1054 * in it. Returns number of elements on sucess, -EINVAL if the property does
1055 * not exist or its length does not match a multiple of u16 and -ENODATA if the
1056 * property does not have a value.
1057 */
1058static inline int of_property_count_u16_elems(const struct device_node *np,
1059 const char *propname)
1060{
1061 return of_property_count_elems_of_size(np, propname, sizeof(u16));
1062}
1063
1064/**
1065 * of_property_count_u32_elems - Count the number of u32 elements in a property
1066 *
1067 * @np: device node from which the property value is to be read.
1068 * @propname: name of the property to be searched.
1069 *
1070 * Search for a property in a device node and count the number of u32 elements
1071 * in it. Returns number of elements on sucess, -EINVAL if the property does
1072 * not exist or its length does not match a multiple of u32 and -ENODATA if the
1073 * property does not have a value.
1074 */
1075static inline int of_property_count_u32_elems(const struct device_node *np,
1076 const char *propname)
1077{
1078 return of_property_count_elems_of_size(np, propname, sizeof(u32));
1079}
1080
1081/**
1082 * of_property_count_u64_elems - Count the number of u64 elements in a property
1083 *
1084 * @np: device node from which the property value is to be read.
1085 * @propname: name of the property to be searched.
1086 *
1087 * Search for a property in a device node and count the number of u64 elements
1088 * in it. Returns number of elements on sucess, -EINVAL if the property does
1089 * not exist or its length does not match a multiple of u64 and -ENODATA if the
1090 * property does not have a value.
1091 */
1092static inline int of_property_count_u64_elems(const struct device_node *np,
1093 const char *propname)
1094{
1095 return of_property_count_elems_of_size(np, propname, sizeof(u64));
1096}
1097
Jean-Christophe PLAGNIOL-VILLARDfa4d34c2012-02-07 12:12:51 +08001098/**
Grant Likelya87fa1d2014-11-03 15:15:35 +00001099 * of_property_read_string_array() - Read an array of strings from a multiple
1100 * strings property.
1101 * @np: device node from which the property value is to be read.
1102 * @propname: name of the property to be searched.
1103 * @out_strs: output array of string pointers.
1104 * @sz: number of array elements to read.
1105 *
1106 * Search for a property in a device tree node and retrieve a list of
1107 * terminated string values (pointer to data, not a copy) in that property.
1108 *
1109 * If @out_strs is NULL, the number of strings in the property is returned.
1110 */
David Rivshinfe99c702016-03-02 16:35:51 -05001111static inline int of_property_read_string_array(const struct device_node *np,
Grant Likelya87fa1d2014-11-03 15:15:35 +00001112 const char *propname, const char **out_strs,
1113 size_t sz)
1114{
1115 return of_property_read_string_helper(np, propname, out_strs, sz, 0);
1116}
1117
1118/**
1119 * of_property_count_strings() - Find and return the number of strings from a
1120 * multiple strings property.
1121 * @np: device node from which the property value is to be read.
1122 * @propname: name of the property to be searched.
1123 *
1124 * Search for a property in a device tree node and retrieve the number of null
1125 * terminated string contain in it. Returns the number of strings on
1126 * success, -EINVAL if the property does not exist, -ENODATA if property
1127 * does not have a value, and -EILSEQ if the string is not null-terminated
1128 * within the length of the property data.
1129 */
David Rivshinfe99c702016-03-02 16:35:51 -05001130static inline int of_property_count_strings(const struct device_node *np,
Grant Likelya87fa1d2014-11-03 15:15:35 +00001131 const char *propname)
1132{
1133 return of_property_read_string_helper(np, propname, NULL, 0, 0);
1134}
1135
1136/**
1137 * of_property_read_string_index() - Find and read a string from a multiple
1138 * strings property.
1139 * @np: device node from which the property value is to be read.
1140 * @propname: name of the property to be searched.
1141 * @index: index of the string in the list of strings
1142 * @out_string: pointer to null terminated return string, modified only if
1143 * return value is 0.
1144 *
1145 * Search for a property in a device tree node and retrieve a null
1146 * terminated string value (pointer to data, not a copy) in the list of strings
1147 * contained in that property.
1148 * Returns 0 on success, -EINVAL if the property does not exist, -ENODATA if
1149 * property does not have a value, and -EILSEQ if the string is not
1150 * null-terminated within the length of the property data.
1151 *
1152 * The out_string pointer is modified only if a valid string can be decoded.
1153 */
David Rivshinfe99c702016-03-02 16:35:51 -05001154static inline int of_property_read_string_index(const struct device_node *np,
Grant Likelya87fa1d2014-11-03 15:15:35 +00001155 const char *propname,
1156 int index, const char **output)
1157{
1158 int rc = of_property_read_string_helper(np, propname, output, 1, index);
1159 return rc < 0 ? rc : 0;
1160}
1161
1162/**
Jean-Christophe PLAGNIOL-VILLARDfa4d34c2012-02-07 12:12:51 +08001163 * of_property_read_bool - Findfrom a property
1164 * @np: device node from which the property value is to be read.
1165 * @propname: name of the property to be searched.
1166 *
1167 * Search for a property in a device node.
Geert Uytterhoeven31712c92015-05-04 19:42:19 +02001168 * Returns true if the property exists false otherwise.
Jean-Christophe PLAGNIOL-VILLARDfa4d34c2012-02-07 12:12:51 +08001169 */
1170static inline bool of_property_read_bool(const struct device_node *np,
1171 const char *propname)
1172{
1173 struct property *prop = of_find_property(np, propname, NULL);
1174
1175 return prop ? true : false;
1176}
1177
Viresh Kumarbe193242012-11-20 10:15:19 +05301178static inline int of_property_read_u8(const struct device_node *np,
1179 const char *propname,
1180 u8 *out_value)
1181{
1182 return of_property_read_u8_array(np, propname, out_value, 1);
1183}
1184
1185static inline int of_property_read_u16(const struct device_node *np,
1186 const char *propname,
1187 u16 *out_value)
1188{
1189 return of_property_read_u16_array(np, propname, out_value, 1);
1190}
1191
Shawn Guob98c0232011-07-08 16:27:33 +08001192static inline int of_property_read_u32(const struct device_node *np,
Jamie Ilesaac285c2011-08-02 15:45:07 +01001193 const char *propname,
Shawn Guob98c0232011-07-08 16:27:33 +08001194 u32 *out_value)
1195{
1196 return of_property_read_u32_array(np, propname, out_value, 1);
1197}
1198
Sebastian Reichele7a00e42014-04-06 12:52:11 +02001199static inline int of_property_read_s32(const struct device_node *np,
1200 const char *propname,
1201 s32 *out_value)
1202{
1203 return of_property_read_u32(np, propname, (u32*) out_value);
1204}
1205
Joerg Roedelf623ce92016-04-04 17:49:20 +02001206#define of_for_each_phandle(it, err, np, ln, cn, cc) \
1207 for (of_phandle_iterator_init((it), (np), (ln), (cn), (cc)), \
1208 err = of_phandle_iterator_next(it); \
1209 err == 0; \
1210 err = of_phandle_iterator_next(it))
1211
Sebastian Andrzej Siewior2adfffa2013-06-17 16:48:13 +02001212#define of_property_for_each_u32(np, propname, prop, p, u) \
1213 for (prop = of_find_property(np, propname, NULL), \
1214 p = of_prop_next_u32(prop, NULL, &u); \
1215 p; \
1216 p = of_prop_next_u32(prop, p, &u))
1217
1218#define of_property_for_each_string(np, propname, prop, s) \
1219 for (prop = of_find_property(np, propname, NULL), \
1220 s = of_prop_next_string(prop, NULL); \
1221 s; \
1222 s = of_prop_next_string(prop, s))
1223
Rob Herring662372e2014-02-03 08:53:44 -06001224#define for_each_node_by_name(dn, name) \
1225 for (dn = of_find_node_by_name(NULL, name); dn; \
1226 dn = of_find_node_by_name(dn, name))
1227#define for_each_node_by_type(dn, type) \
1228 for (dn = of_find_node_by_type(NULL, type); dn; \
1229 dn = of_find_node_by_type(dn, type))
1230#define for_each_compatible_node(dn, type, compatible) \
1231 for (dn = of_find_compatible_node(NULL, type, compatible); dn; \
1232 dn = of_find_compatible_node(dn, type, compatible))
1233#define for_each_matching_node(dn, matches) \
1234 for (dn = of_find_matching_node(NULL, matches); dn; \
1235 dn = of_find_matching_node(dn, matches))
1236#define for_each_matching_node_and_match(dn, matches, match) \
1237 for (dn = of_find_matching_node_and_match(NULL, matches, match); \
1238 dn; dn = of_find_matching_node_and_match(dn, matches, match))
1239
1240#define for_each_child_of_node(parent, child) \
1241 for (child = of_get_next_child(parent, NULL); child != NULL; \
1242 child = of_get_next_child(parent, child))
1243#define for_each_available_child_of_node(parent, child) \
1244 for (child = of_get_next_available_child(parent, NULL); child != NULL; \
1245 child = of_get_next_available_child(parent, child))
1246
Rob Herringf1f207e2018-08-22 15:04:40 -05001247#define for_each_of_cpu_node(cpu) \
1248 for (cpu = of_get_next_cpu_node(NULL); cpu != NULL; \
1249 cpu = of_get_next_cpu_node(cpu))
1250
Rob Herring662372e2014-02-03 08:53:44 -06001251#define for_each_node_with_property(dn, prop_name) \
1252 for (dn = of_find_node_with_property(NULL, prop_name); dn; \
1253 dn = of_find_node_with_property(dn, prop_name))
1254
1255static inline int of_get_child_count(const struct device_node *np)
1256{
1257 struct device_node *child;
1258 int num = 0;
1259
1260 for_each_child_of_node(np, child)
1261 num++;
1262
1263 return num;
1264}
1265
1266static inline int of_get_available_child_count(const struct device_node *np)
1267{
1268 struct device_node *child;
1269 int num = 0;
1270
1271 for_each_available_child_of_node(np, child)
1272 num++;
1273
1274 return num;
1275}
1276
Masahiro Yamada71f50c62016-01-22 01:33:51 +09001277#if defined(CONFIG_OF) && !defined(MODULE)
Rob Herring54196cc2014-05-08 16:09:24 -05001278#define _OF_DECLARE(table, name, compat, fn, fn_type) \
1279 static const struct of_device_id __of_table_##name \
1280 __used __section(__##table##_of_table) \
1281 = { .compatible = compat, \
1282 .data = (fn == (fn_type)NULL) ? fn : fn }
1283#else
Thierry Reding5f563582014-10-02 16:01:10 +02001284#define _OF_DECLARE(table, name, compat, fn, fn_type) \
Rob Herring54196cc2014-05-08 16:09:24 -05001285 static const struct of_device_id __of_table_##name \
1286 __attribute__((unused)) \
1287 = { .compatible = compat, \
1288 .data = (fn == (fn_type)NULL) ? fn : fn }
1289#endif
1290
1291typedef int (*of_init_fn_2)(struct device_node *, struct device_node *);
Daniel Lezcanoc35d9292016-04-18 23:06:48 +02001292typedef int (*of_init_fn_1_ret)(struct device_node *);
Rob Herring54196cc2014-05-08 16:09:24 -05001293typedef void (*of_init_fn_1)(struct device_node *);
1294
1295#define OF_DECLARE_1(table, name, compat, fn) \
1296 _OF_DECLARE(table, name, compat, fn, of_init_fn_1)
Daniel Lezcanoc35d9292016-04-18 23:06:48 +02001297#define OF_DECLARE_1_RET(table, name, compat, fn) \
1298 _OF_DECLARE(table, name, compat, fn, of_init_fn_1_ret)
Rob Herring54196cc2014-05-08 16:09:24 -05001299#define OF_DECLARE_2(table, name, compat, fn) \
1300 _OF_DECLARE(table, name, compat, fn, of_init_fn_2)
1301
Pantelis Antoniou201c9102014-07-04 19:58:49 +03001302/**
1303 * struct of_changeset_entry - Holds a changeset entry
1304 *
1305 * @node: list_head for the log list
1306 * @action: notifier action
1307 * @np: pointer to the device node affected
1308 * @prop: pointer to the property affected
1309 * @old_prop: hold a pointer to the original property
1310 *
1311 * Every modification of the device tree during a changeset
1312 * is held in a list of of_changeset_entry structures.
1313 * That way we can recover from a partial application, or we can
1314 * revert the changeset
1315 */
1316struct of_changeset_entry {
1317 struct list_head node;
1318 unsigned long action;
1319 struct device_node *np;
1320 struct property *prop;
1321 struct property *old_prop;
1322};
1323
1324/**
1325 * struct of_changeset - changeset tracker structure
1326 *
1327 * @entries: list_head for the changeset entries
1328 *
1329 * changesets are a convenient way to apply bulk changes to the
1330 * live tree. In case of an error, changes are rolled-back.
1331 * changesets live on after initial application, and if not
1332 * destroyed after use, they can be reverted in one single call.
1333 */
1334struct of_changeset {
1335 struct list_head entries;
1336};
1337
Pantelis Antonioub53a2342014-10-28 22:33:53 +02001338enum of_reconfig_change {
1339 OF_RECONFIG_NO_CHANGE = 0,
1340 OF_RECONFIG_CHANGE_ADD,
1341 OF_RECONFIG_CHANGE_REMOVE,
1342};
1343
Pantelis Antoniou201c9102014-07-04 19:58:49 +03001344#ifdef CONFIG_OF_DYNAMIC
Grant Likelyf6892d12014-11-21 15:14:58 +00001345extern int of_reconfig_notifier_register(struct notifier_block *);
1346extern int of_reconfig_notifier_unregister(struct notifier_block *);
Grant Likelyf5242e52014-11-24 17:58:01 +00001347extern int of_reconfig_notify(unsigned long, struct of_reconfig_data *rd);
1348extern int of_reconfig_get_state_change(unsigned long action,
1349 struct of_reconfig_data *arg);
Grant Likelyf6892d12014-11-21 15:14:58 +00001350
Pantelis Antoniou201c9102014-07-04 19:58:49 +03001351extern void of_changeset_init(struct of_changeset *ocs);
1352extern void of_changeset_destroy(struct of_changeset *ocs);
1353extern int of_changeset_apply(struct of_changeset *ocs);
1354extern int of_changeset_revert(struct of_changeset *ocs);
1355extern int of_changeset_action(struct of_changeset *ocs,
1356 unsigned long action, struct device_node *np,
1357 struct property *prop);
1358
1359static inline int of_changeset_attach_node(struct of_changeset *ocs,
1360 struct device_node *np)
1361{
1362 return of_changeset_action(ocs, OF_RECONFIG_ATTACH_NODE, np, NULL);
1363}
1364
1365static inline int of_changeset_detach_node(struct of_changeset *ocs,
1366 struct device_node *np)
1367{
1368 return of_changeset_action(ocs, OF_RECONFIG_DETACH_NODE, np, NULL);
1369}
1370
1371static inline int of_changeset_add_property(struct of_changeset *ocs,
1372 struct device_node *np, struct property *prop)
1373{
1374 return of_changeset_action(ocs, OF_RECONFIG_ADD_PROPERTY, np, prop);
1375}
1376
1377static inline int of_changeset_remove_property(struct of_changeset *ocs,
1378 struct device_node *np, struct property *prop)
1379{
1380 return of_changeset_action(ocs, OF_RECONFIG_REMOVE_PROPERTY, np, prop);
1381}
1382
1383static inline int of_changeset_update_property(struct of_changeset *ocs,
1384 struct device_node *np, struct property *prop)
1385{
1386 return of_changeset_action(ocs, OF_RECONFIG_UPDATE_PROPERTY, np, prop);
1387}
Grant Likelyf6892d12014-11-21 15:14:58 +00001388#else /* CONFIG_OF_DYNAMIC */
1389static inline int of_reconfig_notifier_register(struct notifier_block *nb)
1390{
1391 return -EINVAL;
1392}
1393static inline int of_reconfig_notifier_unregister(struct notifier_block *nb)
1394{
1395 return -EINVAL;
1396}
Grant Likelyf5242e52014-11-24 17:58:01 +00001397static inline int of_reconfig_notify(unsigned long action,
1398 struct of_reconfig_data *arg)
Grant Likelyf6892d12014-11-21 15:14:58 +00001399{
1400 return -EINVAL;
1401}
Grant Likelyf5242e52014-11-24 17:58:01 +00001402static inline int of_reconfig_get_state_change(unsigned long action,
1403 struct of_reconfig_data *arg)
Grant Likelyf6892d12014-11-21 15:14:58 +00001404{
1405 return -EINVAL;
1406}
1407#endif /* CONFIG_OF_DYNAMIC */
Pantelis Antoniou201c9102014-07-04 19:58:49 +03001408
Romain Periera4b4e042014-10-14 06:31:09 +00001409/**
Romain Perier8f731102014-11-25 12:28:25 +00001410 * of_device_is_system_power_controller - Tells if system-power-controller is found for device_node
Romain Periera4b4e042014-10-14 06:31:09 +00001411 * @np: Pointer to the given device_node
1412 *
1413 * return true if present false otherwise
1414 */
Romain Perier8f731102014-11-25 12:28:25 +00001415static inline bool of_device_is_system_power_controller(const struct device_node *np)
Romain Periera4b4e042014-10-14 06:31:09 +00001416{
Romain Perier8f731102014-11-25 12:28:25 +00001417 return of_property_read_bool(np, "system-power-controller");
Romain Periera4b4e042014-10-14 06:31:09 +00001418}
1419
Linus Torvalds7ef58b32014-12-11 13:06:58 -08001420/**
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001421 * Overlay support
1422 */
1423
Alan Tull39a842e2016-11-01 14:14:22 -05001424enum of_overlay_notify_action {
Frank Rowand24789c52017-10-17 16:36:26 -07001425 OF_OVERLAY_PRE_APPLY = 0,
Alan Tull39a842e2016-11-01 14:14:22 -05001426 OF_OVERLAY_POST_APPLY,
1427 OF_OVERLAY_PRE_REMOVE,
1428 OF_OVERLAY_POST_REMOVE,
1429};
1430
1431struct of_overlay_notify_data {
1432 struct device_node *overlay;
1433 struct device_node *target;
1434};
1435
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001436#ifdef CONFIG_OF_OVERLAY
1437
Frank Rowand39a751a2018-02-12 00:19:42 -08001438int of_overlay_fdt_apply(const void *overlay_fdt, u32 overlay_fdt_size,
1439 int *ovcs_id);
Frank Rowand24789c52017-10-17 16:36:26 -07001440int of_overlay_remove(int *ovcs_id);
Frank Rowand0290c4c2017-10-17 16:36:23 -07001441int of_overlay_remove_all(void);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001442
Alan Tull39a842e2016-11-01 14:14:22 -05001443int of_overlay_notifier_register(struct notifier_block *nb);
1444int of_overlay_notifier_unregister(struct notifier_block *nb);
1445
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001446#else
1447
Frank Rowand39a751a2018-02-12 00:19:42 -08001448static inline int of_overlay_fdt_apply(void *overlay_fdt, int *ovcs_id)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001449{
1450 return -ENOTSUPP;
1451}
1452
Frank Rowand24789c52017-10-17 16:36:26 -07001453static inline int of_overlay_remove(int *ovcs_id)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001454{
1455 return -ENOTSUPP;
1456}
1457
Frank Rowand0290c4c2017-10-17 16:36:23 -07001458static inline int of_overlay_remove_all(void)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001459{
1460 return -ENOTSUPP;
1461}
1462
Alan Tull39a842e2016-11-01 14:14:22 -05001463static inline int of_overlay_notifier_register(struct notifier_block *nb)
1464{
1465 return 0;
1466}
1467
1468static inline int of_overlay_notifier_unregister(struct notifier_block *nb)
1469{
1470 return 0;
1471}
1472
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001473#endif
1474
Stephen Rothwell76c1ce72007-05-01 16:19:07 +10001475#endif /* _LINUX_OF_H */