blob: 0f4e81e6fb2326952a676ca55c97bf0251bc70b8 [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;
Grant Likely6016a362010-01-28 14:06:53 -070053 phandle phandle;
Grant Likelyc22618a2012-11-14 22:37:12 +000054 const char *full_name;
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +010055 struct fwnode_handle fwnode;
Grant Likely6f192492009-10-15 10:57:49 -060056
57 struct property *properties;
58 struct property *deadprops; /* removed properties */
59 struct device_node *parent;
60 struct device_node *child;
61 struct device_node *sibling;
Rob Herringb56b5522017-10-04 14:09:40 -050062#if defined(CONFIG_OF_KOBJ)
Grant Likely75b57ec2014-02-20 18:02:11 +000063 struct kobject kobj;
Rob Herringb56b5522017-10-04 14:09:40 -050064#endif
Grant Likely6f192492009-10-15 10:57:49 -060065 unsigned long _flags;
66 void *data;
67#if defined(CONFIG_SPARC)
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{
Rob Herringb56b5522017-10-04 14:09:40 -0500108#if defined(CONFIG_OF_KOBJ)
Pantelis Antoniou0829f6d2013-12-13 20:08:59 +0200109 kobject_init(&node->kobj, &of_node_ktype);
Rob Herringb56b5522017-10-04 14:09:40 -0500110#endif
Sakari Ailus37081842017-06-06 12:37:37 +0300111 node->fwnode.ops = &of_fwnode_ops;
Pantelis Antoniou0829f6d2013-12-13 20:08:59 +0200112}
113
Rob Herringb56b5522017-10-04 14:09:40 -0500114#if defined(CONFIG_OF_KOBJ)
Rob Herring0c3c2342017-10-04 14:04:01 -0500115#define of_node_kobj(n) (&(n)->kobj)
Rob Herringb56b5522017-10-04 14:09:40 -0500116#else
117#define of_node_kobj(n) NULL
118#endif
Pantelis Antoniou0829f6d2013-12-13 20:08:59 +0200119
Grant Likely0f22dd32012-02-15 20:38:40 -0700120#ifdef CONFIG_OF_DYNAMIC
121extern struct device_node *of_node_get(struct device_node *node);
122extern void of_node_put(struct device_node *node);
123#else /* CONFIG_OF_DYNAMIC */
Rob Herring3ecdd052011-12-13 09:13:54 -0600124/* Dummy ref counting routines - to be implemented later */
125static inline struct device_node *of_node_get(struct device_node *node)
126{
127 return node;
128}
Grant Likely0f22dd32012-02-15 20:38:40 -0700129static inline void of_node_put(struct device_node *node) { }
130#endif /* !CONFIG_OF_DYNAMIC */
Rob Herring3ecdd052011-12-13 09:13:54 -0600131
Grant Likely41f88002009-11-23 20:07:01 -0700132/* Pointer for first entry in chain of all nodes. */
Grant Likely5063e252014-10-03 16:28:27 +0100133extern struct device_node *of_root;
Grant Likelyfc0bdae2010-02-14 07:13:55 -0700134extern struct device_node *of_chosen;
Shawn Guo611cad72011-08-15 15:28:14 +0800135extern struct device_node *of_aliases;
Grant Likelya752ee52014-03-28 08:12:18 -0700136extern struct device_node *of_stdout;
Thomas Gleixnerd6d3c4e2013-02-06 15:30:56 -0500137extern raw_spinlock_t devtree_lock;
Grant Likely41f88002009-11-23 20:07:01 -0700138
Frank Rowand144552c72018-10-04 20:24:17 -0700139/*
140 * struct device_node flag descriptions
141 * (need to be visible even when !CONFIG_OF)
142 */
143#define OF_DYNAMIC 1 /* (and properties) allocated via kmalloc */
144#define OF_DETACHED 2 /* detached from the device tree */
145#define OF_POPULATED 3 /* device already created */
146#define OF_POPULATED_BUS 4 /* platform bus created for children */
147#define OF_OVERLAY 5 /* allocated for an overlay */
148#define OF_OVERLAY_FREE_CSET 6 /* in overlay cset being freed */
Pantelis Antoniou391b4592015-04-24 12:41:56 +0300149
Guenter Roeckb1d06b62015-11-06 19:28:22 -0800150#define OF_BAD_ADDR ((u64)-1)
151
Hans de Goede6d09dc62014-11-14 13:26:52 +0100152#ifdef CONFIG_OF
Sudeep Holla194ec932015-05-14 15:28:24 +0100153void of_core_init(void);
154
Sakari Ailusd20dc142017-05-24 17:53:55 +0300155static inline bool is_of_node(const struct fwnode_handle *fwnode)
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +0100156{
Sakari Ailusdb3e50f2017-07-21 14:39:31 +0300157 return !IS_ERR_OR_NULL(fwnode) && fwnode->ops == &of_fwnode_ops;
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +0100158}
159
Sakari Ailusd20dc142017-05-24 17:53:55 +0300160#define to_of_node(__fwnode) \
161 ({ \
162 typeof(__fwnode) __to_of_node_fwnode = (__fwnode); \
163 \
164 is_of_node(__to_of_node_fwnode) ? \
165 container_of(__to_of_node_fwnode, \
166 struct device_node, fwnode) : \
167 NULL; \
168 })
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +0100169
Sakari Ailusdebd3a32017-05-24 17:53:54 +0300170#define of_fwnode_handle(node) \
171 ({ \
172 typeof(node) __of_fwnode_handle_node = (node); \
173 \
174 __of_fwnode_handle_node ? \
175 &__of_fwnode_handle_node->fwnode : NULL; \
176 })
Sakari Ailus67831832017-03-28 10:52:23 +0300177
Sebastian Andrzej Siewior3bcbaf62011-02-22 21:07:46 +0100178static inline bool of_have_populated_dt(void)
179{
Grant Likely5063e252014-10-03 16:28:27 +0100180 return of_root != NULL;
Sebastian Andrzej Siewior3bcbaf62011-02-22 21:07:46 +0100181}
182
Andres Salomon035ebef2010-07-13 09:42:26 +0000183static inline bool of_node_is_root(const struct device_node *node)
184{
185 return node && (node->parent == NULL);
186}
187
Grant Likely50436312009-10-15 10:57:58 -0600188static inline int of_node_check_flag(struct device_node *n, unsigned long flag)
189{
190 return test_bit(flag, &n->_flags);
191}
192
Pawel Mollc6e126d2014-05-15 16:55:24 +0100193static inline int of_node_test_and_set_flag(struct device_node *n,
194 unsigned long flag)
195{
196 return test_and_set_bit(flag, &n->_flags);
197}
198
Grant Likely50436312009-10-15 10:57:58 -0600199static inline void of_node_set_flag(struct device_node *n, unsigned long flag)
200{
201 set_bit(flag, &n->_flags);
202}
203
Pantelis Antoniou588453c2013-11-08 17:03:56 +0200204static inline void of_node_clear_flag(struct device_node *n, unsigned long flag)
205{
206 clear_bit(flag, &n->_flags);
207}
208
Rob Herring16bba302017-10-04 14:30:02 -0500209#if defined(CONFIG_OF_DYNAMIC) || defined(CONFIG_SPARC)
Pantelis Antoniou588453c2013-11-08 17:03:56 +0200210static inline int of_property_check_flag(struct property *p, unsigned long flag)
211{
212 return test_bit(flag, &p->_flags);
213}
214
215static inline void of_property_set_flag(struct property *p, unsigned long flag)
216{
217 set_bit(flag, &p->_flags);
218}
219
220static inline void of_property_clear_flag(struct property *p, unsigned long flag)
221{
222 clear_bit(flag, &p->_flags);
223}
Rob Herring16bba302017-10-04 14:30:02 -0500224#endif
Pantelis Antoniou588453c2013-11-08 17:03:56 +0200225
Grant Likely5063e252014-10-03 16:28:27 +0100226extern struct device_node *__of_find_all_nodes(struct device_node *prev);
Grant Likelye91edcf2009-10-15 10:58:09 -0600227extern struct device_node *of_find_all_nodes(struct device_node *prev);
228
Grant Likelyb6caf2a2009-10-15 10:58:00 -0600229/*
Lennert Buytenhek3d6b8822011-02-22 18:18:51 +0100230 * OF address retrieval & translation
Grant Likelyb6caf2a2009-10-15 10:58:00 -0600231 */
232
233/* Helper to read a big number; size is in cells (not bytes) */
Jeremy Kerr2e89e682010-01-30 01:41:49 -0700234static inline u64 of_read_number(const __be32 *cell, int size)
Grant Likelyb6caf2a2009-10-15 10:58:00 -0600235{
236 u64 r = 0;
Phong Tran44086862019-04-30 21:56:24 +0700237 for (; size--; cell++)
238 r = (r << 32) | be32_to_cpu(*cell);
Grant Likelyb6caf2a2009-10-15 10:58:00 -0600239 return r;
240}
241
242/* Like of_read_number, but we want an unsigned long result */
Jeremy Kerr2e89e682010-01-30 01:41:49 -0700243static inline unsigned long of_read_ulong(const __be32 *cell, int size)
Grant Likelyb6caf2a2009-10-15 10:58:00 -0600244{
Grant Likely2be09cb2009-11-23 20:16:46 -0700245 /* toss away upper bits if unsigned long is smaller than u64 */
246 return of_read_number(cell, size);
Grant Likelyb6caf2a2009-10-15 10:58:00 -0600247}
Grant Likelyb6caf2a2009-10-15 10:58:00 -0600248
Rob Herringb5b4bb32013-09-07 14:08:20 -0500249#if defined(CONFIG_SPARC)
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000250#include <asm/prom.h>
Rob Herringb5b4bb32013-09-07 14:08:20 -0500251#endif
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000252
Grant Likely61e955d2009-10-15 10:57:51 -0600253#define OF_IS_DYNAMIC(x) test_bit(OF_DYNAMIC, &x->_flags)
254#define OF_MARK_DYNAMIC(x) set_bit(OF_DYNAMIC, &x->_flags)
255
Rob Herringf42b0e182018-08-27 07:50:47 -0500256extern bool of_node_name_eq(const struct device_node *np, const char *name);
257extern bool of_node_name_prefix(const struct device_node *np, const char *prefix);
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
Johan Hovold36156f92018-08-27 10:21:45 +0200293extern struct device_node *of_get_compatible_child(const struct device_node *parent,
294 const char *compatible);
Srinivas Kandagatla9c197612012-09-18 08:10:28 +0100295extern struct device_node *of_get_child_by_name(const struct device_node *node,
296 const char *name);
Bryan Wu954e04b2013-09-24 10:38:26 -0700297
Sudeep KarkadaNageshaa3e31b42013-09-18 11:53:05 +0100298/* cache lookup */
299extern struct device_node *of_find_next_cache_node(const struct device_node *);
Sudeep Holla5fa23532017-01-16 10:40:43 +0000300extern int of_find_last_cache_level(unsigned int cpu);
Michael Ellerman1e291b142008-11-12 18:54:42 +0000301extern struct device_node *of_find_node_with_property(
302 struct device_node *from, const char *prop_name);
Michael Ellerman1e291b142008-11-12 18:54:42 +0000303
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000304extern struct property *of_find_property(const struct device_node *np,
305 const char *name,
306 int *lenp);
Heiko Stuebnerad54a0c2014-02-12 01:00:34 +0100307extern int of_property_count_elems_of_size(const struct device_node *np,
308 const char *propname, int elem_size);
Tony Prisk3daf3722013-03-23 17:02:15 +1300309extern int of_property_read_u32_index(const struct device_node *np,
310 const char *propname,
311 u32 index, u32 *out_value);
Alistair Popple2475a2b2017-04-03 19:51:42 +1000312extern int of_property_read_u64_index(const struct device_node *np,
313 const char *propname,
314 u32 index, u64 *out_value);
Richard Fitzgeralda67e9472016-09-12 14:01:29 +0100315extern int of_property_read_variable_u8_array(const struct device_node *np,
316 const char *propname, u8 *out_values,
317 size_t sz_min, size_t sz_max);
318extern int of_property_read_variable_u16_array(const struct device_node *np,
319 const char *propname, u16 *out_values,
320 size_t sz_min, size_t sz_max);
321extern int of_property_read_variable_u32_array(const struct device_node *np,
322 const char *propname,
323 u32 *out_values,
324 size_t sz_min,
325 size_t sz_max);
Jamie Iles4cd7f7a2011-09-14 20:49:59 +0100326extern int of_property_read_u64(const struct device_node *np,
327 const char *propname, u64 *out_value);
Richard Fitzgeralda67e9472016-09-12 14:01:29 +0100328extern int of_property_read_variable_u64_array(const struct device_node *np,
329 const char *propname,
330 u64 *out_values,
331 size_t sz_min,
332 size_t sz_max);
Rob Herring0e373632011-07-06 15:42:58 -0500333
David Rivshinfe99c702016-03-02 16:35:51 -0500334extern int of_property_read_string(const struct device_node *np,
Jamie Ilesaac285c2011-08-02 15:45:07 +0100335 const char *propname,
336 const char **out_string);
David Rivshinfe99c702016-03-02 16:35:51 -0500337extern int of_property_match_string(const struct device_node *np,
Grant Likely7aff0fe2011-12-12 09:25:58 -0700338 const char *propname,
339 const char *string);
David Rivshinfe99c702016-03-02 16:35:51 -0500340extern int of_property_read_string_helper(const struct device_node *np,
Grant Likelya87fa1d2014-11-03 15:15:35 +0000341 const char *propname,
342 const char **out_strs, size_t sz, int index);
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000343extern int of_device_is_compatible(const struct device_node *device,
344 const char *);
Benjamin Herrenschmidtb9c13fe32016-07-08 08:35:59 +1000345extern int of_device_compatible_match(struct device_node *device,
346 const char *const *compat);
Kevin Cernekee53a4ab92014-11-12 12:54:01 -0800347extern bool of_device_is_available(const struct device_node *device);
Kevin Cernekee37786c72015-04-09 13:05:14 -0700348extern bool of_device_is_big_endian(const struct device_node *device);
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000349extern const void *of_get_property(const struct device_node *node,
350 const char *name,
351 int *lenp);
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100352extern struct device_node *of_get_cpu_node(int cpu, unsigned int *thread);
Rob Herringf1f207e2018-08-22 15:04:40 -0500353extern struct device_node *of_get_next_cpu_node(struct device_node *prev);
Ulf Hanssonb9f8c262019-10-10 12:01:48 +0200354extern struct device_node *of_get_cpu_state_node(struct device_node *cpu_node,
355 int index);
Rob Herringf1f207e2018-08-22 15:04:40 -0500356
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
Lorenzo Pieralisi746a71d2020-06-19 09:20:07 +0100557int of_map_id(struct device_node *np, u32 id,
Nipun Gupta2a6db712018-09-10 19:19:16 +0530558 const char *map_name, const char *map_mask_name,
559 struct device_node **target, u32 *id_out);
560
Nicolas Saenz Julienne18bf6e92021-03-03 15:33:15 +0800561phys_addr_t of_dma_get_max_cpu_address(struct device_node *np);
562
Shawn Guob98c0232011-07-08 16:27:33 +0800563#else /* CONFIG_OF */
Sebastian Andrzej Siewior3bcbaf62011-02-22 21:07:46 +0100564
Sudeep Holla194ec932015-05-14 15:28:24 +0100565static inline void of_core_init(void)
566{
567}
568
Sakari Ailusd20dc142017-05-24 17:53:55 +0300569static inline bool is_of_node(const struct fwnode_handle *fwnode)
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +0100570{
571 return false;
572}
573
Sakari Ailusd20dc142017-05-24 17:53:55 +0300574static inline struct device_node *to_of_node(const struct fwnode_handle *fwnode)
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +0100575{
576 return NULL;
577}
578
Rob Herringf42b0e182018-08-27 07:50:47 -0500579static inline bool of_node_name_eq(const struct device_node *np, const char *name)
580{
581 return false;
582}
583
584static inline bool of_node_name_prefix(const struct device_node *np, const char *prefix)
585{
586 return false;
587}
588
Stephen Rothwell4c358e12014-05-15 14:44:30 +1000589static inline const char* of_node_full_name(const struct device_node *np)
Grant Likely74a7f082012-06-15 11:50:25 -0600590{
591 return "<no-node>";
592}
593
Peter Ujfalusi1cc44f42012-09-10 13:46:24 +0300594static inline struct device_node *of_find_node_by_name(struct device_node *from,
595 const char *name)
596{
597 return NULL;
598}
599
Rob Herring662372e2014-02-03 08:53:44 -0600600static inline struct device_node *of_find_node_by_type(struct device_node *from,
601 const char *type)
602{
603 return NULL;
604}
605
606static inline struct device_node *of_find_matching_node_and_match(
607 struct device_node *from,
608 const struct of_device_id *matches,
609 const struct of_device_id **match)
610{
611 return NULL;
612}
613
Alexander Shiyan20cd4772014-04-16 10:49:20 +0400614static inline struct device_node *of_find_node_by_path(const char *path)
615{
616 return NULL;
617}
618
Leif Lindholm75c28c02014-11-28 11:34:28 +0000619static inline struct device_node *of_find_node_opts_by_path(const char *path,
620 const char **opts)
621{
622 return NULL;
623}
624
Suman Annace16b9d2015-06-17 11:53:53 -0500625static inline struct device_node *of_find_node_by_phandle(phandle handle)
626{
627 return NULL;
628}
629
Alexander Shiyan066ec1d2013-04-09 19:47:40 +0400630static inline struct device_node *of_get_parent(const struct device_node *node)
631{
632 return NULL;
633}
634
Randy Dunlap943c8a82020-06-29 09:43:52 -0700635static inline struct device_node *of_get_next_parent(struct device_node *node)
636{
637 return NULL;
638}
639
Rob Herring662372e2014-02-03 08:53:44 -0600640static inline struct device_node *of_get_next_child(
641 const struct device_node *node, struct device_node *prev)
642{
643 return NULL;
644}
645
646static inline struct device_node *of_get_next_available_child(
647 const struct device_node *node, struct device_node *prev)
648{
649 return NULL;
650}
651
652static inline struct device_node *of_find_node_with_property(
653 struct device_node *from, const char *prop_name)
654{
655 return NULL;
656}
657
Sakari Ailus67831832017-03-28 10:52:23 +0300658#define of_fwnode_handle(node) NULL
659
Sebastian Andrzej Siewior3bcbaf62011-02-22 21:07:46 +0100660static inline bool of_have_populated_dt(void)
661{
662 return false;
663}
664
Johan Hovold36156f92018-08-27 10:21:45 +0200665static inline struct device_node *of_get_compatible_child(const struct device_node *parent,
666 const char *compatible)
667{
668 return NULL;
669}
670
Olof Johansson25c040c2012-10-07 10:40:54 -0700671static inline struct device_node *of_get_child_by_name(
672 const struct device_node *node,
673 const char *name)
674{
675 return NULL;
676}
677
Rajendra Nayak36a09042011-10-10 21:49:35 +0530678static inline int of_device_is_compatible(const struct device_node *device,
679 const char *name)
680{
681 return 0;
682}
683
Geert Uytterhoeven3bc16302017-04-25 19:38:48 +0200684static inline int of_device_compatible_match(struct device_node *device,
685 const char *const *compat)
686{
687 return 0;
688}
689
Kevin Cernekee53a4ab92014-11-12 12:54:01 -0800690static inline bool of_device_is_available(const struct device_node *device)
Rob Herringd7195692013-03-20 16:56:18 -0500691{
Kevin Cernekee53a4ab92014-11-12 12:54:01 -0800692 return false;
Rob Herringd7195692013-03-20 16:56:18 -0500693}
694
Kevin Cernekee37786c72015-04-09 13:05:14 -0700695static inline bool of_device_is_big_endian(const struct device_node *device)
696{
697 return false;
698}
699
Stephen Warrenaba3dff2011-09-21 13:23:10 -0600700static inline struct property *of_find_property(const struct device_node *np,
701 const char *name,
702 int *lenp)
703{
704 return NULL;
705}
706
Shawn Guo2261cc62012-02-15 10:47:42 -0800707static inline struct device_node *of_find_compatible_node(
708 struct device_node *from,
709 const char *type,
710 const char *compat)
711{
712 return NULL;
713}
714
Heiko Stuebnerad54a0c2014-02-12 01:00:34 +0100715static inline int of_property_count_elems_of_size(const struct device_node *np,
716 const char *propname, int elem_size)
717{
718 return -ENOSYS;
719}
720
Viresh Kumarbe193242012-11-20 10:15:19 +0530721static inline int of_property_read_u8_array(const struct device_node *np,
722 const char *propname, u8 *out_values, size_t sz)
723{
724 return -ENOSYS;
725}
726
727static inline int of_property_read_u16_array(const struct device_node *np,
728 const char *propname, u16 *out_values, size_t sz)
729{
730 return -ENOSYS;
731}
732
Shawn Guob98c0232011-07-08 16:27:33 +0800733static inline int of_property_read_u32_array(const struct device_node *np,
Jamie Ilesaac285c2011-08-02 15:45:07 +0100734 const char *propname,
735 u32 *out_values, size_t sz)
Shawn Guob98c0232011-07-08 16:27:33 +0800736{
737 return -ENOSYS;
738}
739
Rafael J. Wysockib31384f2014-11-04 01:28:56 +0100740static inline int of_property_read_u64_array(const struct device_node *np,
741 const char *propname,
742 u64 *out_values, size_t sz)
743{
744 return -ENOSYS;
745}
746
Arnd Bergmann96c623e2017-11-06 14:26:10 +0100747static inline int of_property_read_u32_index(const struct device_node *np,
748 const char *propname, u32 index, u32 *out_value)
Shawn Guob98c0232011-07-08 16:27:33 +0800749{
750 return -ENOSYS;
751}
752
Arnd Bergmann96c623e2017-11-06 14:26:10 +0100753static inline int of_property_read_u64_index(const struct device_node *np,
754 const char *propname, u32 index, u64 *out_value)
Benoit Cousson4fcd15a2011-09-27 17:45:43 +0200755{
756 return -ENOSYS;
757}
758
Stephen Warren89272b82011-08-05 16:50:30 -0600759static inline const void *of_get_property(const struct device_node *node,
760 const char *name,
761 int *lenp)
762{
763 return NULL;
764}
765
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100766static inline struct device_node *of_get_cpu_node(int cpu,
767 unsigned int *thread)
768{
769 return NULL;
770}
771
Rob Herringf1f207e2018-08-22 15:04:40 -0500772static inline struct device_node *of_get_next_cpu_node(struct device_node *prev)
773{
774 return NULL;
775}
776
Ulf Hanssonb9f8c262019-10-10 12:01:48 +0200777static inline struct device_node *of_get_cpu_state_node(struct device_node *cpu_node,
778 int index)
779{
780 return NULL;
781}
782
Arnd Bergmann8a1ac5d2017-10-13 15:57:40 -0700783static inline int of_n_addr_cells(struct device_node *np)
784{
785 return 0;
786
787}
788static inline int of_n_size_cells(struct device_node *np)
789{
790 return 0;
791}
792
Arnd Bergmann96c623e2017-11-06 14:26:10 +0100793static inline int of_property_read_variable_u8_array(const struct device_node *np,
794 const char *propname, u8 *out_values,
795 size_t sz_min, size_t sz_max)
796{
797 return -ENOSYS;
798}
799
800static inline int of_property_read_variable_u16_array(const struct device_node *np,
801 const char *propname, u16 *out_values,
802 size_t sz_min, size_t sz_max)
803{
804 return -ENOSYS;
805}
806
807static inline int of_property_read_variable_u32_array(const struct device_node *np,
808 const char *propname,
809 u32 *out_values,
810 size_t sz_min,
811 size_t sz_max)
812{
813 return -ENOSYS;
814}
815
Jamie Iles4cd7f7a2011-09-14 20:49:59 +0100816static inline int of_property_read_u64(const struct device_node *np,
817 const char *propname, u64 *out_value)
818{
819 return -ENOSYS;
820}
821
Arnd Bergmann96c623e2017-11-06 14:26:10 +0100822static inline int of_property_read_variable_u64_array(const struct device_node *np,
823 const char *propname,
824 u64 *out_values,
825 size_t sz_min,
826 size_t sz_max)
827{
828 return -ENOSYS;
829}
830
831static inline int of_property_read_string(const struct device_node *np,
832 const char *propname,
833 const char **out_string)
834{
835 return -ENOSYS;
836}
837
David Rivshinfe99c702016-03-02 16:35:51 -0500838static inline int of_property_match_string(const struct device_node *np,
Thierry Redingbd3d5502012-04-13 16:18:34 +0200839 const char *propname,
840 const char *string)
841{
842 return -ENOSYS;
843}
844
Arnd Bergmann96c623e2017-11-06 14:26:10 +0100845static inline int of_property_read_string_helper(const struct device_node *np,
846 const char *propname,
847 const char **out_strs, size_t sz, int index)
848{
849 return -ENOSYS;
850}
851
Steffen Trumtrarb8fbdc42012-11-22 12:16:43 +0100852static inline struct device_node *of_parse_phandle(const struct device_node *np,
Rajendra Nayak36a09042011-10-10 21:49:35 +0530853 const char *phandle_name,
854 int index)
855{
856 return NULL;
857}
858
Kuninori Morimotoe93aeea2016-05-25 01:15:04 +0000859static inline int of_parse_phandle_with_args(const struct device_node *np,
Thierry Redinge05e5072012-04-13 16:19:21 +0200860 const char *list_name,
861 const char *cells_name,
862 int index,
863 struct of_phandle_args *out_args)
864{
865 return -ENOSYS;
866}
867
Stephen Boydbd6f2fd2018-01-30 18:36:16 -0800868static inline int of_parse_phandle_with_args_map(const struct device_node *np,
869 const char *list_name,
870 const char *stem_name,
871 int index,
872 struct of_phandle_args *out_args)
873{
874 return -ENOSYS;
875}
876
Stephen Warren035fd942013-08-14 15:27:10 -0600877static inline int of_parse_phandle_with_fixed_args(const struct device_node *np,
878 const char *list_name, int cells_count, int index,
879 struct of_phandle_args *out_args)
880{
881 return -ENOSYS;
882}
883
Grant Likelybd69f732013-02-10 22:57:21 +0000884static inline int of_count_phandle_with_args(struct device_node *np,
885 const char *list_name,
886 const char *cells_name)
887{
888 return -ENOSYS;
889}
890
Joerg Roedel74e1fbb2016-04-04 17:49:17 +0200891static inline int of_phandle_iterator_init(struct of_phandle_iterator *it,
892 const struct device_node *np,
893 const char *list_name,
894 const char *cells_name,
895 int cell_count)
896{
897 return -ENOSYS;
898}
899
Joerg Roedelcd209b42016-04-04 17:49:18 +0200900static inline int of_phandle_iterator_next(struct of_phandle_iterator *it)
901{
902 return -ENOSYS;
903}
904
Joerg Roedelabdaa772016-04-04 17:49:21 +0200905static inline int of_phandle_iterator_args(struct of_phandle_iterator *it,
906 uint32_t *args,
907 int size)
908{
909 return 0;
910}
911
Nicolas Ferreed5f8862011-10-27 11:07:28 +0200912static inline int of_alias_get_id(struct device_node *np, const char *stem)
913{
914 return -ENOSYS;
915}
916
Wolfram Sang351d2242015-03-12 17:17:58 +0100917static inline int of_alias_get_highest_id(const char *stem)
918{
919 return -ENOSYS;
920}
921
Michal Simekb1078c32018-09-20 13:41:52 +0200922static inline int of_alias_get_alias_list(const struct of_device_id *matches,
923 const char *stem, unsigned long *bitmap,
924 unsigned int nbits)
925{
926 return -ENOSYS;
927}
928
Stephen Warren50e07f82011-10-25 14:01:26 +0200929static inline int of_machine_is_compatible(const char *compat)
930{
931 return 0;
932}
933
Florian Fainelli0f7c5312020-09-04 14:37:29 -0700934static inline int of_remove_property(struct device_node *np, struct property *prop)
935{
936 return 0;
937}
938
Grant Likely3482f2c2014-03-27 17:18:55 -0700939static inline bool of_console_check(const struct device_node *dn, const char *name, int index)
Sascha Hauer5c19e952013-08-05 14:40:44 +0200940{
Grant Likely3482f2c2014-03-27 17:18:55 -0700941 return false;
Sascha Hauer5c19e952013-08-05 14:40:44 +0200942}
943
Sebastian Andrzej Siewior2adfffa2013-06-17 16:48:13 +0200944static inline const __be32 *of_prop_next_u32(struct property *prop,
945 const __be32 *cur, u32 *pu)
946{
947 return NULL;
948}
949
950static inline const char *of_prop_next_string(struct property *prop,
951 const char *cur)
952{
953 return NULL;
954}
955
Pantelis Antoniou0384e8c2015-01-21 19:05:57 +0200956static inline int of_node_check_flag(struct device_node *n, unsigned long flag)
957{
958 return 0;
959}
960
961static inline int of_node_test_and_set_flag(struct device_node *n,
962 unsigned long flag)
963{
964 return 0;
965}
966
967static inline void of_node_set_flag(struct device_node *n, unsigned long flag)
968{
969}
970
971static inline void of_node_clear_flag(struct device_node *n, unsigned long flag)
972{
973}
974
975static inline int of_property_check_flag(struct property *p, unsigned long flag)
976{
977 return 0;
978}
979
980static inline void of_property_set_flag(struct property *p, unsigned long flag)
981{
982}
983
984static inline void of_property_clear_flag(struct property *p, unsigned long flag)
985{
986}
987
Suzuki K Poulosea0e71cd2018-01-02 11:25:27 +0000988static inline int of_cpu_node_to_id(struct device_node *np)
989{
990 return -ENODEV;
991}
992
Lorenzo Pieralisi746a71d2020-06-19 09:20:07 +0100993static inline int of_map_id(struct device_node *np, u32 id,
Nipun Gupta2a6db712018-09-10 19:19:16 +0530994 const char *map_name, const char *map_mask_name,
995 struct device_node **target, u32 *id_out)
996{
997 return -EINVAL;
998}
999
Nicolas Saenz Julienne18bf6e92021-03-03 15:33:15 +08001000static inline phys_addr_t of_dma_get_max_cpu_address(struct device_node *np)
1001{
1002 return PHYS_ADDR_MAX;
1003}
1004
Ben Dooks3a1e3622011-08-03 10:11:42 +01001005#define of_match_ptr(_ptr) NULL
Nicolas Ferre5762c202011-10-24 11:53:32 +02001006#define of_match_node(_matches, _node) NULL
Jeremy Kerr9dfbf202010-02-14 07:13:43 -07001007#endif /* CONFIG_OF */
Shawn Guob98c0232011-07-08 16:27:33 +08001008
Adam Thomson613e9722016-06-21 18:50:20 +01001009/* Default string compare functions, Allow arch asm/prom.h to override */
1010#if !defined(of_compat_cmp)
1011#define of_compat_cmp(s1, s2, l) strcasecmp((s1), (s2))
1012#define of_prop_cmp(s1, s2) strcmp((s1), (s2))
1013#define of_node_cmp(s1, s2) strcasecmp((s1), (s2))
1014#endif
1015
Frank Rowand6f751182018-10-04 20:32:04 -07001016static inline int of_prop_val_eq(struct property *p1, struct property *p2)
1017{
1018 return p1->length == p2->length &&
1019 !memcmp(p1->value, p2->value, (size_t)p1->length);
1020}
1021
Rob Herring0c3f0612013-09-17 10:42:50 -05001022#if defined(CONFIG_OF) && defined(CONFIG_NUMA)
1023extern int of_node_to_nid(struct device_node *np);
1024#else
Konstantin Khlebnikovc8fff7b2015-04-08 19:59:20 +03001025static inline int of_node_to_nid(struct device_node *device)
1026{
1027 return NUMA_NO_NODE;
1028}
Paul Mundt5ca4db62012-06-03 22:04:34 -07001029#endif
1030
David Daney298535c2016-04-08 15:50:25 -07001031#ifdef CONFIG_OF_NUMA
1032extern int of_numa_init(void);
1033#else
1034static inline int of_numa_init(void)
1035{
1036 return -ENOSYS;
1037}
1038#endif
1039
Rob Herring662372e2014-02-03 08:53:44 -06001040static inline struct device_node *of_find_matching_node(
1041 struct device_node *from,
1042 const struct of_device_id *matches)
1043{
1044 return of_find_matching_node_and_match(from, matches, NULL);
1045}
1046
Rob Herring0413bed2018-08-28 15:10:48 -05001047static inline const char *of_node_get_device_type(const struct device_node *np)
1048{
Rob Herring5d5a0ab2018-10-01 10:54:51 -05001049 return of_get_property(np, "device_type", NULL);
Rob Herring0413bed2018-08-28 15:10:48 -05001050}
1051
1052static inline bool of_node_is_type(const struct device_node *np, const char *type)
1053{
1054 const char *match = of_node_get_device_type(np);
1055
1056 return np && match && type && !strcmp(match, type);
1057}
1058
Jean-Christophe PLAGNIOL-VILLARDfa4d34c2012-02-07 12:12:51 +08001059/**
Heiko Stuebnerad54a0c2014-02-12 01:00:34 +01001060 * of_property_count_u8_elems - Count the number of u8 elements in a property
1061 *
1062 * @np: device node from which the property value is to be read.
1063 * @propname: name of the property to be searched.
1064 *
1065 * Search for a property in a device node and count the number of u8 elements
1066 * in it. Returns number of elements on sucess, -EINVAL if the property does
1067 * not exist or its length does not match a multiple of u8 and -ENODATA if the
1068 * property does not have a value.
1069 */
1070static inline int of_property_count_u8_elems(const struct device_node *np,
1071 const char *propname)
1072{
1073 return of_property_count_elems_of_size(np, propname, sizeof(u8));
1074}
1075
1076/**
1077 * of_property_count_u16_elems - Count the number of u16 elements in a property
1078 *
1079 * @np: device node from which the property value is to be read.
1080 * @propname: name of the property to be searched.
1081 *
1082 * Search for a property in a device node and count the number of u16 elements
1083 * in it. Returns number of elements on sucess, -EINVAL if the property does
1084 * not exist or its length does not match a multiple of u16 and -ENODATA if the
1085 * property does not have a value.
1086 */
1087static inline int of_property_count_u16_elems(const struct device_node *np,
1088 const char *propname)
1089{
1090 return of_property_count_elems_of_size(np, propname, sizeof(u16));
1091}
1092
1093/**
1094 * of_property_count_u32_elems - Count the number of u32 elements in a property
1095 *
1096 * @np: device node from which the property value is to be read.
1097 * @propname: name of the property to be searched.
1098 *
1099 * Search for a property in a device node and count the number of u32 elements
1100 * in it. Returns number of elements on sucess, -EINVAL if the property does
1101 * not exist or its length does not match a multiple of u32 and -ENODATA if the
1102 * property does not have a value.
1103 */
1104static inline int of_property_count_u32_elems(const struct device_node *np,
1105 const char *propname)
1106{
1107 return of_property_count_elems_of_size(np, propname, sizeof(u32));
1108}
1109
1110/**
1111 * of_property_count_u64_elems - Count the number of u64 elements in a property
1112 *
1113 * @np: device node from which the property value is to be read.
1114 * @propname: name of the property to be searched.
1115 *
1116 * Search for a property in a device node and count the number of u64 elements
1117 * in it. Returns number of elements on sucess, -EINVAL if the property does
1118 * not exist or its length does not match a multiple of u64 and -ENODATA if the
1119 * property does not have a value.
1120 */
1121static inline int of_property_count_u64_elems(const struct device_node *np,
1122 const char *propname)
1123{
1124 return of_property_count_elems_of_size(np, propname, sizeof(u64));
1125}
1126
Jean-Christophe PLAGNIOL-VILLARDfa4d34c2012-02-07 12:12:51 +08001127/**
Grant Likelya87fa1d2014-11-03 15:15:35 +00001128 * of_property_read_string_array() - Read an array of strings from a multiple
1129 * strings property.
1130 * @np: device node from which the property value is to be read.
1131 * @propname: name of the property to be searched.
1132 * @out_strs: output array of string pointers.
1133 * @sz: number of array elements to read.
1134 *
1135 * Search for a property in a device tree node and retrieve a list of
1136 * terminated string values (pointer to data, not a copy) in that property.
1137 *
1138 * If @out_strs is NULL, the number of strings in the property is returned.
1139 */
David Rivshinfe99c702016-03-02 16:35:51 -05001140static inline int of_property_read_string_array(const struct device_node *np,
Grant Likelya87fa1d2014-11-03 15:15:35 +00001141 const char *propname, const char **out_strs,
1142 size_t sz)
1143{
1144 return of_property_read_string_helper(np, propname, out_strs, sz, 0);
1145}
1146
1147/**
1148 * of_property_count_strings() - Find and return the number of strings from a
1149 * multiple strings property.
1150 * @np: device node from which the property value is to be read.
1151 * @propname: name of the property to be searched.
1152 *
1153 * Search for a property in a device tree node and retrieve the number of null
1154 * terminated string contain in it. Returns the number of strings on
1155 * success, -EINVAL if the property does not exist, -ENODATA if property
1156 * does not have a value, and -EILSEQ if the string is not null-terminated
1157 * within the length of the property data.
1158 */
David Rivshinfe99c702016-03-02 16:35:51 -05001159static inline int of_property_count_strings(const struct device_node *np,
Grant Likelya87fa1d2014-11-03 15:15:35 +00001160 const char *propname)
1161{
1162 return of_property_read_string_helper(np, propname, NULL, 0, 0);
1163}
1164
1165/**
1166 * of_property_read_string_index() - Find and read a string from a multiple
1167 * strings property.
1168 * @np: device node from which the property value is to be read.
1169 * @propname: name of the property to be searched.
1170 * @index: index of the string in the list of strings
1171 * @out_string: pointer to null terminated return string, modified only if
1172 * return value is 0.
1173 *
1174 * Search for a property in a device tree node and retrieve a null
1175 * terminated string value (pointer to data, not a copy) in the list of strings
1176 * contained in that property.
1177 * Returns 0 on success, -EINVAL if the property does not exist, -ENODATA if
1178 * property does not have a value, and -EILSEQ if the string is not
1179 * null-terminated within the length of the property data.
1180 *
1181 * The out_string pointer is modified only if a valid string can be decoded.
1182 */
David Rivshinfe99c702016-03-02 16:35:51 -05001183static inline int of_property_read_string_index(const struct device_node *np,
Grant Likelya87fa1d2014-11-03 15:15:35 +00001184 const char *propname,
1185 int index, const char **output)
1186{
1187 int rc = of_property_read_string_helper(np, propname, output, 1, index);
1188 return rc < 0 ? rc : 0;
1189}
1190
1191/**
Thierry Redingf1765a12019-07-26 12:17:44 +02001192 * of_property_read_bool - Find a property
Jean-Christophe PLAGNIOL-VILLARDfa4d34c2012-02-07 12:12:51 +08001193 * @np: device node from which the property value is to be read.
1194 * @propname: name of the property to be searched.
1195 *
1196 * Search for a property in a device node.
Geert Uytterhoeven31712c92015-05-04 19:42:19 +02001197 * Returns true if the property exists false otherwise.
Jean-Christophe PLAGNIOL-VILLARDfa4d34c2012-02-07 12:12:51 +08001198 */
1199static inline bool of_property_read_bool(const struct device_node *np,
1200 const char *propname)
1201{
1202 struct property *prop = of_find_property(np, propname, NULL);
1203
1204 return prop ? true : false;
1205}
1206
Viresh Kumarbe193242012-11-20 10:15:19 +05301207static inline int of_property_read_u8(const struct device_node *np,
1208 const char *propname,
1209 u8 *out_value)
1210{
1211 return of_property_read_u8_array(np, propname, out_value, 1);
1212}
1213
1214static inline int of_property_read_u16(const struct device_node *np,
1215 const char *propname,
1216 u16 *out_value)
1217{
1218 return of_property_read_u16_array(np, propname, out_value, 1);
1219}
1220
Shawn Guob98c0232011-07-08 16:27:33 +08001221static inline int of_property_read_u32(const struct device_node *np,
Jamie Ilesaac285c2011-08-02 15:45:07 +01001222 const char *propname,
Shawn Guob98c0232011-07-08 16:27:33 +08001223 u32 *out_value)
1224{
1225 return of_property_read_u32_array(np, propname, out_value, 1);
1226}
1227
Sebastian Reichele7a00e42014-04-06 12:52:11 +02001228static inline int of_property_read_s32(const struct device_node *np,
1229 const char *propname,
1230 s32 *out_value)
1231{
1232 return of_property_read_u32(np, propname, (u32*) out_value);
1233}
1234
Joerg Roedelf623ce92016-04-04 17:49:20 +02001235#define of_for_each_phandle(it, err, np, ln, cn, cc) \
1236 for (of_phandle_iterator_init((it), (np), (ln), (cn), (cc)), \
1237 err = of_phandle_iterator_next(it); \
1238 err == 0; \
1239 err = of_phandle_iterator_next(it))
1240
Sebastian Andrzej Siewior2adfffa2013-06-17 16:48:13 +02001241#define of_property_for_each_u32(np, propname, prop, p, u) \
1242 for (prop = of_find_property(np, propname, NULL), \
1243 p = of_prop_next_u32(prop, NULL, &u); \
1244 p; \
1245 p = of_prop_next_u32(prop, p, &u))
1246
1247#define of_property_for_each_string(np, propname, prop, s) \
1248 for (prop = of_find_property(np, propname, NULL), \
1249 s = of_prop_next_string(prop, NULL); \
1250 s; \
1251 s = of_prop_next_string(prop, s))
1252
Rob Herring662372e2014-02-03 08:53:44 -06001253#define for_each_node_by_name(dn, name) \
1254 for (dn = of_find_node_by_name(NULL, name); dn; \
1255 dn = of_find_node_by_name(dn, name))
1256#define for_each_node_by_type(dn, type) \
1257 for (dn = of_find_node_by_type(NULL, type); dn; \
1258 dn = of_find_node_by_type(dn, type))
1259#define for_each_compatible_node(dn, type, compatible) \
1260 for (dn = of_find_compatible_node(NULL, type, compatible); dn; \
1261 dn = of_find_compatible_node(dn, type, compatible))
1262#define for_each_matching_node(dn, matches) \
1263 for (dn = of_find_matching_node(NULL, matches); dn; \
1264 dn = of_find_matching_node(dn, matches))
1265#define for_each_matching_node_and_match(dn, matches, match) \
1266 for (dn = of_find_matching_node_and_match(NULL, matches, match); \
1267 dn; dn = of_find_matching_node_and_match(dn, matches, match))
1268
1269#define for_each_child_of_node(parent, child) \
1270 for (child = of_get_next_child(parent, NULL); child != NULL; \
1271 child = of_get_next_child(parent, child))
1272#define for_each_available_child_of_node(parent, child) \
1273 for (child = of_get_next_available_child(parent, NULL); child != NULL; \
1274 child = of_get_next_available_child(parent, child))
1275
Rob Herringf1f207e2018-08-22 15:04:40 -05001276#define for_each_of_cpu_node(cpu) \
1277 for (cpu = of_get_next_cpu_node(NULL); cpu != NULL; \
1278 cpu = of_get_next_cpu_node(cpu))
1279
Rob Herring662372e2014-02-03 08:53:44 -06001280#define for_each_node_with_property(dn, prop_name) \
1281 for (dn = of_find_node_with_property(NULL, prop_name); dn; \
1282 dn = of_find_node_with_property(dn, prop_name))
1283
1284static inline int of_get_child_count(const struct device_node *np)
1285{
1286 struct device_node *child;
1287 int num = 0;
1288
1289 for_each_child_of_node(np, child)
1290 num++;
1291
1292 return num;
1293}
1294
1295static inline int of_get_available_child_count(const struct device_node *np)
1296{
1297 struct device_node *child;
1298 int num = 0;
1299
1300 for_each_available_child_of_node(np, child)
1301 num++;
1302
1303 return num;
1304}
1305
Masahiro Yamada71f50c62016-01-22 01:33:51 +09001306#if defined(CONFIG_OF) && !defined(MODULE)
Rob Herring54196cc2014-05-08 16:09:24 -05001307#define _OF_DECLARE(table, name, compat, fn, fn_type) \
1308 static const struct of_device_id __of_table_##name \
Joe Perches33def842020-10-21 19:36:07 -07001309 __used __section("__" #table "_of_table") \
Johan Hovold94bc6f52020-11-23 11:23:12 +01001310 __aligned(__alignof__(struct of_device_id)) \
Rob Herring54196cc2014-05-08 16:09:24 -05001311 = { .compatible = compat, \
1312 .data = (fn == (fn_type)NULL) ? fn : fn }
1313#else
Thierry Reding5f563582014-10-02 16:01:10 +02001314#define _OF_DECLARE(table, name, compat, fn, fn_type) \
Rob Herring54196cc2014-05-08 16:09:24 -05001315 static const struct of_device_id __of_table_##name \
1316 __attribute__((unused)) \
1317 = { .compatible = compat, \
1318 .data = (fn == (fn_type)NULL) ? fn : fn }
1319#endif
1320
1321typedef int (*of_init_fn_2)(struct device_node *, struct device_node *);
Daniel Lezcanoc35d9292016-04-18 23:06:48 +02001322typedef int (*of_init_fn_1_ret)(struct device_node *);
Rob Herring54196cc2014-05-08 16:09:24 -05001323typedef void (*of_init_fn_1)(struct device_node *);
1324
1325#define OF_DECLARE_1(table, name, compat, fn) \
1326 _OF_DECLARE(table, name, compat, fn, of_init_fn_1)
Daniel Lezcanoc35d9292016-04-18 23:06:48 +02001327#define OF_DECLARE_1_RET(table, name, compat, fn) \
1328 _OF_DECLARE(table, name, compat, fn, of_init_fn_1_ret)
Rob Herring54196cc2014-05-08 16:09:24 -05001329#define OF_DECLARE_2(table, name, compat, fn) \
1330 _OF_DECLARE(table, name, compat, fn, of_init_fn_2)
1331
Pantelis Antoniou201c9102014-07-04 19:58:49 +03001332/**
1333 * struct of_changeset_entry - Holds a changeset entry
1334 *
1335 * @node: list_head for the log list
1336 * @action: notifier action
1337 * @np: pointer to the device node affected
1338 * @prop: pointer to the property affected
1339 * @old_prop: hold a pointer to the original property
1340 *
1341 * Every modification of the device tree during a changeset
1342 * is held in a list of of_changeset_entry structures.
1343 * That way we can recover from a partial application, or we can
1344 * revert the changeset
1345 */
1346struct of_changeset_entry {
1347 struct list_head node;
1348 unsigned long action;
1349 struct device_node *np;
1350 struct property *prop;
1351 struct property *old_prop;
1352};
1353
1354/**
1355 * struct of_changeset - changeset tracker structure
1356 *
1357 * @entries: list_head for the changeset entries
1358 *
1359 * changesets are a convenient way to apply bulk changes to the
1360 * live tree. In case of an error, changes are rolled-back.
1361 * changesets live on after initial application, and if not
1362 * destroyed after use, they can be reverted in one single call.
1363 */
1364struct of_changeset {
1365 struct list_head entries;
1366};
1367
Pantelis Antonioub53a2342014-10-28 22:33:53 +02001368enum of_reconfig_change {
1369 OF_RECONFIG_NO_CHANGE = 0,
1370 OF_RECONFIG_CHANGE_ADD,
1371 OF_RECONFIG_CHANGE_REMOVE,
1372};
1373
Pantelis Antoniou201c9102014-07-04 19:58:49 +03001374#ifdef CONFIG_OF_DYNAMIC
Grant Likelyf6892d12014-11-21 15:14:58 +00001375extern int of_reconfig_notifier_register(struct notifier_block *);
1376extern int of_reconfig_notifier_unregister(struct notifier_block *);
Grant Likelyf5242e52014-11-24 17:58:01 +00001377extern int of_reconfig_notify(unsigned long, struct of_reconfig_data *rd);
1378extern int of_reconfig_get_state_change(unsigned long action,
1379 struct of_reconfig_data *arg);
Grant Likelyf6892d12014-11-21 15:14:58 +00001380
Pantelis Antoniou201c9102014-07-04 19:58:49 +03001381extern void of_changeset_init(struct of_changeset *ocs);
1382extern void of_changeset_destroy(struct of_changeset *ocs);
1383extern int of_changeset_apply(struct of_changeset *ocs);
1384extern int of_changeset_revert(struct of_changeset *ocs);
1385extern int of_changeset_action(struct of_changeset *ocs,
1386 unsigned long action, struct device_node *np,
1387 struct property *prop);
1388
1389static inline int of_changeset_attach_node(struct of_changeset *ocs,
1390 struct device_node *np)
1391{
1392 return of_changeset_action(ocs, OF_RECONFIG_ATTACH_NODE, np, NULL);
1393}
1394
1395static inline int of_changeset_detach_node(struct of_changeset *ocs,
1396 struct device_node *np)
1397{
1398 return of_changeset_action(ocs, OF_RECONFIG_DETACH_NODE, np, NULL);
1399}
1400
1401static inline int of_changeset_add_property(struct of_changeset *ocs,
1402 struct device_node *np, struct property *prop)
1403{
1404 return of_changeset_action(ocs, OF_RECONFIG_ADD_PROPERTY, np, prop);
1405}
1406
1407static inline int of_changeset_remove_property(struct of_changeset *ocs,
1408 struct device_node *np, struct property *prop)
1409{
1410 return of_changeset_action(ocs, OF_RECONFIG_REMOVE_PROPERTY, np, prop);
1411}
1412
1413static inline int of_changeset_update_property(struct of_changeset *ocs,
1414 struct device_node *np, struct property *prop)
1415{
1416 return of_changeset_action(ocs, OF_RECONFIG_UPDATE_PROPERTY, np, prop);
1417}
Grant Likelyf6892d12014-11-21 15:14:58 +00001418#else /* CONFIG_OF_DYNAMIC */
1419static inline int of_reconfig_notifier_register(struct notifier_block *nb)
1420{
1421 return -EINVAL;
1422}
1423static inline int of_reconfig_notifier_unregister(struct notifier_block *nb)
1424{
1425 return -EINVAL;
1426}
Grant Likelyf5242e52014-11-24 17:58:01 +00001427static inline int of_reconfig_notify(unsigned long action,
1428 struct of_reconfig_data *arg)
Grant Likelyf6892d12014-11-21 15:14:58 +00001429{
1430 return -EINVAL;
1431}
Grant Likelyf5242e52014-11-24 17:58:01 +00001432static inline int of_reconfig_get_state_change(unsigned long action,
1433 struct of_reconfig_data *arg)
Grant Likelyf6892d12014-11-21 15:14:58 +00001434{
1435 return -EINVAL;
1436}
1437#endif /* CONFIG_OF_DYNAMIC */
Pantelis Antoniou201c9102014-07-04 19:58:49 +03001438
Romain Periera4b4e042014-10-14 06:31:09 +00001439/**
Romain Perier8f731102014-11-25 12:28:25 +00001440 * of_device_is_system_power_controller - Tells if system-power-controller is found for device_node
Romain Periera4b4e042014-10-14 06:31:09 +00001441 * @np: Pointer to the given device_node
1442 *
1443 * return true if present false otherwise
1444 */
Romain Perier8f731102014-11-25 12:28:25 +00001445static inline bool of_device_is_system_power_controller(const struct device_node *np)
Romain Periera4b4e042014-10-14 06:31:09 +00001446{
Romain Perier8f731102014-11-25 12:28:25 +00001447 return of_property_read_bool(np, "system-power-controller");
Romain Periera4b4e042014-10-14 06:31:09 +00001448}
1449
Linus Torvalds7ef58b32014-12-11 13:06:58 -08001450/**
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001451 * Overlay support
1452 */
1453
Alan Tull39a842e2016-11-01 14:14:22 -05001454enum of_overlay_notify_action {
Frank Rowand24789c52017-10-17 16:36:26 -07001455 OF_OVERLAY_PRE_APPLY = 0,
Alan Tull39a842e2016-11-01 14:14:22 -05001456 OF_OVERLAY_POST_APPLY,
1457 OF_OVERLAY_PRE_REMOVE,
1458 OF_OVERLAY_POST_REMOVE,
1459};
1460
1461struct of_overlay_notify_data {
1462 struct device_node *overlay;
1463 struct device_node *target;
1464};
1465
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001466#ifdef CONFIG_OF_OVERLAY
1467
Frank Rowand39a751a2018-02-12 00:19:42 -08001468int of_overlay_fdt_apply(const void *overlay_fdt, u32 overlay_fdt_size,
1469 int *ovcs_id);
Frank Rowand24789c52017-10-17 16:36:26 -07001470int of_overlay_remove(int *ovcs_id);
Frank Rowand0290c4c2017-10-17 16:36:23 -07001471int of_overlay_remove_all(void);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001472
Alan Tull39a842e2016-11-01 14:14:22 -05001473int of_overlay_notifier_register(struct notifier_block *nb);
1474int of_overlay_notifier_unregister(struct notifier_block *nb);
1475
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001476#else
1477
Chris Packhamecb0abc2019-03-22 13:23:41 +13001478static inline int of_overlay_fdt_apply(void *overlay_fdt, u32 overlay_fdt_size,
1479 int *ovcs_id)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001480{
1481 return -ENOTSUPP;
1482}
1483
Frank Rowand24789c52017-10-17 16:36:26 -07001484static inline int of_overlay_remove(int *ovcs_id)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001485{
1486 return -ENOTSUPP;
1487}
1488
Frank Rowand0290c4c2017-10-17 16:36:23 -07001489static inline int of_overlay_remove_all(void)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001490{
1491 return -ENOTSUPP;
1492}
1493
Alan Tull39a842e2016-11-01 14:14:22 -05001494static inline int of_overlay_notifier_register(struct notifier_block *nb)
1495{
1496 return 0;
1497}
1498
1499static inline int of_overlay_notifier_unregister(struct notifier_block *nb)
1500{
1501 return 0;
1502}
1503
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001504#endif
1505
Stephen Rothwell76c1ce72007-05-01 16:19:07 +10001506#endif /* _LINUX_OF_H */