blob: 1aca0dbd35dfd4c9a58d4cd611c16531d3fdf4d1 [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
Pantelis Antoniou391b4592015-04-24 12:41:56 +0300141/* flag descriptions (need to be visible even when !CONFIG_OF) */
142#define OF_DYNAMIC 1 /* node and properties were allocated via kmalloc */
143#define OF_DETACHED 2 /* node has been detached from the device tree */
144#define OF_POPULATED 3 /* device already created for the node */
145#define OF_POPULATED_BUS 4 /* of_platform_populate recursed to children of this node */
146
Guenter Roeckb1d06b62015-11-06 19:28:22 -0800147#define OF_BAD_ADDR ((u64)-1)
148
Hans de Goede6d09dc62014-11-14 13:26:52 +0100149#ifdef CONFIG_OF
Sudeep Holla194ec932015-05-14 15:28:24 +0100150void of_core_init(void);
151
Sakari Ailusd20dc142017-05-24 17:53:55 +0300152static inline bool is_of_node(const struct fwnode_handle *fwnode)
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +0100153{
Sakari Ailusdb3e50f2017-07-21 14:39:31 +0300154 return !IS_ERR_OR_NULL(fwnode) && fwnode->ops == &of_fwnode_ops;
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +0100155}
156
Sakari Ailusd20dc142017-05-24 17:53:55 +0300157#define to_of_node(__fwnode) \
158 ({ \
159 typeof(__fwnode) __to_of_node_fwnode = (__fwnode); \
160 \
161 is_of_node(__to_of_node_fwnode) ? \
162 container_of(__to_of_node_fwnode, \
163 struct device_node, fwnode) : \
164 NULL; \
165 })
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +0100166
Sakari Ailusdebd3a32017-05-24 17:53:54 +0300167#define of_fwnode_handle(node) \
168 ({ \
169 typeof(node) __of_fwnode_handle_node = (node); \
170 \
171 __of_fwnode_handle_node ? \
172 &__of_fwnode_handle_node->fwnode : NULL; \
173 })
Sakari Ailus67831832017-03-28 10:52:23 +0300174
Sebastian Andrzej Siewior3bcbaf62011-02-22 21:07:46 +0100175static inline bool of_have_populated_dt(void)
176{
Grant Likely5063e252014-10-03 16:28:27 +0100177 return of_root != NULL;
Sebastian Andrzej Siewior3bcbaf62011-02-22 21:07:46 +0100178}
179
Andres Salomon035ebef2010-07-13 09:42:26 +0000180static inline bool of_node_is_root(const struct device_node *node)
181{
182 return node && (node->parent == NULL);
183}
184
Grant Likely50436312009-10-15 10:57:58 -0600185static inline int of_node_check_flag(struct device_node *n, unsigned long flag)
186{
187 return test_bit(flag, &n->_flags);
188}
189
Pawel Mollc6e126d2014-05-15 16:55:24 +0100190static inline int of_node_test_and_set_flag(struct device_node *n,
191 unsigned long flag)
192{
193 return test_and_set_bit(flag, &n->_flags);
194}
195
Grant Likely50436312009-10-15 10:57:58 -0600196static inline void of_node_set_flag(struct device_node *n, unsigned long flag)
197{
198 set_bit(flag, &n->_flags);
199}
200
Pantelis Antoniou588453c2013-11-08 17:03:56 +0200201static inline void of_node_clear_flag(struct device_node *n, unsigned long flag)
202{
203 clear_bit(flag, &n->_flags);
204}
205
Rob Herring16bba302017-10-04 14:30:02 -0500206#if defined(CONFIG_OF_DYNAMIC) || defined(CONFIG_SPARC)
Pantelis Antoniou588453c2013-11-08 17:03:56 +0200207static inline int of_property_check_flag(struct property *p, unsigned long flag)
208{
209 return test_bit(flag, &p->_flags);
210}
211
212static inline void of_property_set_flag(struct property *p, unsigned long flag)
213{
214 set_bit(flag, &p->_flags);
215}
216
217static inline void of_property_clear_flag(struct property *p, unsigned long flag)
218{
219 clear_bit(flag, &p->_flags);
220}
Rob Herring16bba302017-10-04 14:30:02 -0500221#endif
Pantelis Antoniou588453c2013-11-08 17:03:56 +0200222
Grant Likely5063e252014-10-03 16:28:27 +0100223extern struct device_node *__of_find_all_nodes(struct device_node *prev);
Grant Likelye91edcf2009-10-15 10:58:09 -0600224extern struct device_node *of_find_all_nodes(struct device_node *prev);
225
Grant Likelyb6caf2a2009-10-15 10:58:00 -0600226/*
Lennert Buytenhek3d6b8822011-02-22 18:18:51 +0100227 * OF address retrieval & translation
Grant Likelyb6caf2a2009-10-15 10:58:00 -0600228 */
229
230/* Helper to read a big number; size is in cells (not bytes) */
Jeremy Kerr2e89e682010-01-30 01:41:49 -0700231static inline u64 of_read_number(const __be32 *cell, int size)
Grant Likelyb6caf2a2009-10-15 10:58:00 -0600232{
233 u64 r = 0;
234 while (size--)
Jeremy Kerr2e89e682010-01-30 01:41:49 -0700235 r = (r << 32) | be32_to_cpu(*(cell++));
Grant Likelyb6caf2a2009-10-15 10:58:00 -0600236 return r;
237}
238
239/* Like of_read_number, but we want an unsigned long result */
Jeremy Kerr2e89e682010-01-30 01:41:49 -0700240static inline unsigned long of_read_ulong(const __be32 *cell, int size)
Grant Likelyb6caf2a2009-10-15 10:58:00 -0600241{
Grant Likely2be09cb2009-11-23 20:16:46 -0700242 /* toss away upper bits if unsigned long is smaller than u64 */
243 return of_read_number(cell, size);
Grant Likelyb6caf2a2009-10-15 10:58:00 -0600244}
Grant Likelyb6caf2a2009-10-15 10:58:00 -0600245
Rob Herringb5b4bb32013-09-07 14:08:20 -0500246#if defined(CONFIG_SPARC)
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000247#include <asm/prom.h>
Rob Herringb5b4bb32013-09-07 14:08:20 -0500248#endif
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000249
Grant Likely7c7b60c2010-02-14 07:13:50 -0700250/* Default #address and #size cells. Allow arch asm/prom.h to override */
251#if !defined(OF_ROOT_NODE_ADDR_CELLS_DEFAULT)
252#define OF_ROOT_NODE_ADDR_CELLS_DEFAULT 1
253#define OF_ROOT_NODE_SIZE_CELLS_DEFAULT 1
254#endif
255
Grant Likely61e955d2009-10-15 10:57:51 -0600256#define OF_IS_DYNAMIC(x) test_bit(OF_DYNAMIC, &x->_flags)
257#define OF_MARK_DYNAMIC(x) set_bit(OF_DYNAMIC, &x->_flags)
258
Rob Herringf42b0e182018-08-27 07:50:47 -0500259extern bool of_node_name_eq(const struct device_node *np, const char *name);
260extern bool of_node_name_prefix(const struct device_node *np, const char *prefix);
261
Steffen Trumtrarc0a05bf2012-12-18 11:32:03 +0100262static inline const char *of_node_full_name(const struct device_node *np)
Grant Likely74a7f082012-06-15 11:50:25 -0600263{
264 return np ? np->full_name : "<no-node>";
265}
266
Grant Likely5063e252014-10-03 16:28:27 +0100267#define for_each_of_allnodes_from(from, dn) \
268 for (dn = __of_find_all_nodes(from); dn; dn = __of_find_all_nodes(dn))
269#define for_each_of_allnodes(dn) for_each_of_allnodes_from(NULL, dn)
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000270extern struct device_node *of_find_node_by_name(struct device_node *from,
271 const char *name);
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000272extern struct device_node *of_find_node_by_type(struct device_node *from,
273 const char *type);
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000274extern struct device_node *of_find_compatible_node(struct device_node *from,
275 const char *type, const char *compat);
Stephen Warren50c8af42012-11-20 16:12:20 -0700276extern struct device_node *of_find_matching_node_and_match(
277 struct device_node *from,
278 const struct of_device_id *matches,
279 const struct of_device_id **match);
Rob Herring662372e2014-02-03 08:53:44 -0600280
Leif Lindholm75c28c02014-11-28 11:34:28 +0000281extern struct device_node *of_find_node_opts_by_path(const char *path,
282 const char **opts);
283static inline struct device_node *of_find_node_by_path(const char *path)
284{
285 return of_find_node_opts_by_path(path, NULL);
286}
287
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000288extern struct device_node *of_find_node_by_phandle(phandle handle);
289extern struct device_node *of_get_parent(const struct device_node *node);
Michael Ellermanf4eb0102007-10-26 16:54:31 +1000290extern struct device_node *of_get_next_parent(struct device_node *node);
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000291extern struct device_node *of_get_next_child(const struct device_node *node,
292 struct device_node *prev);
Timur Tabi32961932012-08-14 13:20:23 +0000293extern struct device_node *of_get_next_available_child(
294 const struct device_node *node, struct device_node *prev);
295
Johan Hovold36156f92018-08-27 10:21:45 +0200296extern struct device_node *of_get_compatible_child(const struct device_node *parent,
297 const char *compatible);
Srinivas Kandagatla9c197612012-09-18 08:10:28 +0100298extern struct device_node *of_get_child_by_name(const struct device_node *node,
299 const char *name);
Bryan Wu954e04b2013-09-24 10:38:26 -0700300
Sudeep KarkadaNageshaa3e31b42013-09-18 11:53:05 +0100301/* cache lookup */
302extern struct device_node *of_find_next_cache_node(const struct device_node *);
Sudeep Holla5fa23532017-01-16 10:40:43 +0000303extern int of_find_last_cache_level(unsigned int cpu);
Michael Ellerman1e291b142008-11-12 18:54:42 +0000304extern struct device_node *of_find_node_with_property(
305 struct device_node *from, const char *prop_name);
Michael Ellerman1e291b142008-11-12 18:54:42 +0000306
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000307extern struct property *of_find_property(const struct device_node *np,
308 const char *name,
309 int *lenp);
Heiko Stuebnerad54a0c2014-02-12 01:00:34 +0100310extern int of_property_count_elems_of_size(const struct device_node *np,
311 const char *propname, int elem_size);
Tony Prisk3daf3722013-03-23 17:02:15 +1300312extern int of_property_read_u32_index(const struct device_node *np,
313 const char *propname,
314 u32 index, u32 *out_value);
Alistair Popple2475a2b2017-04-03 19:51:42 +1000315extern int of_property_read_u64_index(const struct device_node *np,
316 const char *propname,
317 u32 index, u64 *out_value);
Richard Fitzgeralda67e9472016-09-12 14:01:29 +0100318extern int of_property_read_variable_u8_array(const struct device_node *np,
319 const char *propname, u8 *out_values,
320 size_t sz_min, size_t sz_max);
321extern int of_property_read_variable_u16_array(const struct device_node *np,
322 const char *propname, u16 *out_values,
323 size_t sz_min, size_t sz_max);
324extern int of_property_read_variable_u32_array(const struct device_node *np,
325 const char *propname,
326 u32 *out_values,
327 size_t sz_min,
328 size_t sz_max);
Jamie Iles4cd7f7a2011-09-14 20:49:59 +0100329extern int of_property_read_u64(const struct device_node *np,
330 const char *propname, u64 *out_value);
Richard Fitzgeralda67e9472016-09-12 14:01:29 +0100331extern int of_property_read_variable_u64_array(const struct device_node *np,
332 const char *propname,
333 u64 *out_values,
334 size_t sz_min,
335 size_t sz_max);
Rob Herring0e373632011-07-06 15:42:58 -0500336
David Rivshinfe99c702016-03-02 16:35:51 -0500337extern int of_property_read_string(const struct device_node *np,
Jamie Ilesaac285c2011-08-02 15:45:07 +0100338 const char *propname,
339 const char **out_string);
David Rivshinfe99c702016-03-02 16:35:51 -0500340extern int of_property_match_string(const struct device_node *np,
Grant Likely7aff0fe2011-12-12 09:25:58 -0700341 const char *propname,
342 const char *string);
David Rivshinfe99c702016-03-02 16:35:51 -0500343extern int of_property_read_string_helper(const struct device_node *np,
Grant Likelya87fa1d2014-11-03 15:15:35 +0000344 const char *propname,
345 const char **out_strs, size_t sz, int index);
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000346extern int of_device_is_compatible(const struct device_node *device,
347 const char *);
Benjamin Herrenschmidtb9c13fe32016-07-08 08:35:59 +1000348extern int of_device_compatible_match(struct device_node *device,
349 const char *const *compat);
Kevin Cernekee53a4ab92014-11-12 12:54:01 -0800350extern bool of_device_is_available(const struct device_node *device);
Kevin Cernekee37786c72015-04-09 13:05:14 -0700351extern bool of_device_is_big_endian(const struct device_node *device);
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000352extern const void *of_get_property(const struct device_node *node,
353 const char *name,
354 int *lenp);
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100355extern struct device_node *of_get_cpu_node(int cpu, unsigned int *thread);
Rob Herringf1f207e2018-08-22 15:04:40 -0500356extern struct device_node *of_get_next_cpu_node(struct device_node *prev);
357
Dong Aisheng8af0da92011-12-22 20:19:24 +0800358#define for_each_property_of_node(dn, pp) \
359 for (pp = dn->properties; pp != NULL; pp = pp->next)
Shawn Guo611cad72011-08-15 15:28:14 +0800360
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000361extern int of_n_addr_cells(struct device_node *np);
362extern int of_n_size_cells(struct device_node *np);
Grant Likely283029d2008-01-09 06:20:40 +1100363extern const struct of_device_id *of_match_node(
364 const struct of_device_id *matches, const struct device_node *node);
Grant Likely3f07af42008-07-25 22:25:13 -0400365extern int of_modalias_node(struct device_node *node, char *modalias, int len);
Grant Likely624cfca2013-10-11 22:05:10 +0100366extern void of_print_phandle_args(const char *msg, const struct of_phandle_args *args);
Steffen Trumtrarb8fbdc42012-11-22 12:16:43 +0100367extern struct device_node *of_parse_phandle(const struct device_node *np,
Grant Likely739649c2009-04-25 12:52:40 +0000368 const char *phandle_name,
369 int index);
Guennadi Liakhovetski93c667c2012-12-10 20:41:30 +0100370extern int of_parse_phandle_with_args(const struct device_node *np,
Anton Vorontsov64b60e02008-10-10 04:43:17 +0000371 const char *list_name, const char *cells_name, int index,
Grant Likely15c9a0a2011-12-12 09:25:57 -0700372 struct of_phandle_args *out_args);
Stephen Boydbd6f2fd2018-01-30 18:36:16 -0800373extern int of_parse_phandle_with_args_map(const struct device_node *np,
374 const char *list_name, const char *stem_name, int index,
375 struct of_phandle_args *out_args);
Stephen Warren035fd942013-08-14 15:27:10 -0600376extern int of_parse_phandle_with_fixed_args(const struct device_node *np,
377 const char *list_name, int cells_count, int index,
378 struct of_phandle_args *out_args);
Grant Likelybd69f732013-02-10 22:57:21 +0000379extern int of_count_phandle_with_args(const struct device_node *np,
380 const char *list_name, const char *cells_name);
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000381
Joerg Roedel74e1fbb2016-04-04 17:49:17 +0200382/* phandle iterator functions */
383extern int of_phandle_iterator_init(struct of_phandle_iterator *it,
384 const struct device_node *np,
385 const char *list_name,
386 const char *cells_name,
387 int cell_count);
388
Joerg Roedelcd209b42016-04-04 17:49:18 +0200389extern int of_phandle_iterator_next(struct of_phandle_iterator *it);
Joerg Roedelabdaa772016-04-04 17:49:21 +0200390extern int of_phandle_iterator_args(struct of_phandle_iterator *it,
391 uint32_t *args,
392 int size);
Joerg Roedelcd209b42016-04-04 17:49:18 +0200393
Shawn Guo611cad72011-08-15 15:28:14 +0800394extern void of_alias_scan(void * (*dt_alloc)(u64 size, u64 align));
395extern int of_alias_get_id(struct device_node *np, const char *stem);
Wolfram Sang351d2242015-03-12 17:17:58 +0100396extern int of_alias_get_highest_id(const char *stem);
Shawn Guo611cad72011-08-15 15:28:14 +0800397
Grant Likely21b082e2010-02-14 07:13:38 -0700398extern int of_machine_is_compatible(const char *compat);
399
Nathan Fontenot79d1c712012-10-02 16:58:46 +0000400extern int of_add_property(struct device_node *np, struct property *prop);
401extern int of_remove_property(struct device_node *np, struct property *prop);
402extern int of_update_property(struct device_node *np, struct property *newprop);
Grant Likely21b082e2010-02-14 07:13:38 -0700403
Grant Likelyfcdeb7f2010-01-29 05:04:33 -0700404/* For updating the device tree at runtime */
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +0000405#define OF_RECONFIG_ATTACH_NODE 0x0001
406#define OF_RECONFIG_DETACH_NODE 0x0002
407#define OF_RECONFIG_ADD_PROPERTY 0x0003
408#define OF_RECONFIG_REMOVE_PROPERTY 0x0004
409#define OF_RECONFIG_UPDATE_PROPERTY 0x0005
410
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +0000411extern int of_attach_node(struct device_node *);
412extern int of_detach_node(struct device_node *);
Grant Likelyfcdeb7f2010-01-29 05:04:33 -0700413
Ben Dooks3a1e3622011-08-03 10:11:42 +0100414#define of_match_ptr(_ptr) (_ptr)
Stephen Warrenc541adc2012-04-04 09:27:46 -0600415
Richard Fitzgeralda67e9472016-09-12 14:01:29 +0100416/**
417 * of_property_read_u8_array - Find and read an array of u8 from a property.
418 *
419 * @np: device node from which the property value is to be read.
420 * @propname: name of the property to be searched.
421 * @out_values: pointer to return value, modified only if return value is 0.
422 * @sz: number of array elements to read
423 *
424 * Search for a property in a device node and read 8-bit value(s) from
425 * it. Returns 0 on success, -EINVAL if the property does not exist,
426 * -ENODATA if property does not have a value, and -EOVERFLOW if the
427 * property data isn't large enough.
428 *
429 * dts entry of array should be like:
430 * property = /bits/ 8 <0x50 0x60 0x70>;
431 *
432 * The out_values is modified only if a valid u8 value can be decoded.
433 */
434static inline int of_property_read_u8_array(const struct device_node *np,
435 const char *propname,
436 u8 *out_values, size_t sz)
437{
438 int ret = of_property_read_variable_u8_array(np, propname, out_values,
439 sz, 0);
440 if (ret >= 0)
441 return 0;
442 else
443 return ret;
444}
445
446/**
447 * of_property_read_u16_array - Find and read an array of u16 from a property.
448 *
449 * @np: device node from which the property value is to be read.
450 * @propname: name of the property to be searched.
451 * @out_values: pointer to return value, modified only if return value is 0.
452 * @sz: number of array elements to read
453 *
454 * Search for a property in a device node and read 16-bit value(s) from
455 * it. Returns 0 on success, -EINVAL if the property does not exist,
456 * -ENODATA if property does not have a value, and -EOVERFLOW if the
457 * property data isn't large enough.
458 *
459 * dts entry of array should be like:
460 * property = /bits/ 16 <0x5000 0x6000 0x7000>;
461 *
462 * The out_values is modified only if a valid u16 value can be decoded.
463 */
464static inline int of_property_read_u16_array(const struct device_node *np,
465 const char *propname,
466 u16 *out_values, size_t sz)
467{
468 int ret = of_property_read_variable_u16_array(np, propname, out_values,
469 sz, 0);
470 if (ret >= 0)
471 return 0;
472 else
473 return ret;
474}
475
476/**
477 * of_property_read_u32_array - Find and read an array of 32 bit integers
478 * from a property.
479 *
480 * @np: device node from which the property value is to be read.
481 * @propname: name of the property to be searched.
482 * @out_values: pointer to return value, modified only if return value is 0.
483 * @sz: number of array elements to read
484 *
485 * Search for a property in a device node and read 32-bit value(s) from
486 * it. Returns 0 on success, -EINVAL if the property does not exist,
487 * -ENODATA if property does not have a value, and -EOVERFLOW if the
488 * property data isn't large enough.
489 *
490 * The out_values is modified only if a valid u32 value can be decoded.
491 */
492static inline int of_property_read_u32_array(const struct device_node *np,
493 const char *propname,
494 u32 *out_values, size_t sz)
495{
496 int ret = of_property_read_variable_u32_array(np, propname, out_values,
497 sz, 0);
498 if (ret >= 0)
499 return 0;
500 else
501 return ret;
502}
503
504/**
505 * of_property_read_u64_array - Find and read an array of 64 bit integers
506 * from a property.
507 *
508 * @np: device node from which the property value is to be read.
509 * @propname: name of the property to be searched.
510 * @out_values: pointer to return value, modified only if return value is 0.
511 * @sz: number of array elements to read
512 *
513 * Search for a property in a device node and read 64-bit value(s) from
514 * it. Returns 0 on success, -EINVAL if the property does not exist,
515 * -ENODATA if property does not have a value, and -EOVERFLOW if the
516 * property data isn't large enough.
517 *
518 * The out_values is modified only if a valid u64 value can be decoded.
519 */
520static inline int of_property_read_u64_array(const struct device_node *np,
521 const char *propname,
522 u64 *out_values, size_t sz)
523{
524 int ret = of_property_read_variable_u64_array(np, propname, out_values,
525 sz, 0);
526 if (ret >= 0)
527 return 0;
528 else
529 return ret;
530}
531
Stephen Warrenc541adc2012-04-04 09:27:46 -0600532/*
533 * struct property *prop;
534 * const __be32 *p;
535 * u32 u;
536 *
537 * of_property_for_each_u32(np, "propname", prop, p, u)
538 * printk("U32 value: %x\n", u);
539 */
540const __be32 *of_prop_next_u32(struct property *prop, const __be32 *cur,
541 u32 *pu);
Stephen Warrenc541adc2012-04-04 09:27:46 -0600542/*
543 * struct property *prop;
544 * const char *s;
545 *
546 * of_property_for_each_string(np, "propname", prop, s)
547 * printk("String value: %s\n", s);
548 */
549const char *of_prop_next_string(struct property *prop, const char *cur);
Stephen Warrenc541adc2012-04-04 09:27:46 -0600550
Grant Likely3482f2c2014-03-27 17:18:55 -0700551bool of_console_check(struct device_node *dn, char *name, int index);
Sascha Hauer5c19e952013-08-05 14:40:44 +0200552
Suzuki K Poulosea0e71cd2018-01-02 11:25:27 +0000553extern int of_cpu_node_to_id(struct device_node *np);
554
Shawn Guob98c0232011-07-08 16:27:33 +0800555#else /* CONFIG_OF */
Sebastian Andrzej Siewior3bcbaf62011-02-22 21:07:46 +0100556
Sudeep Holla194ec932015-05-14 15:28:24 +0100557static inline void of_core_init(void)
558{
559}
560
Sakari Ailusd20dc142017-05-24 17:53:55 +0300561static inline bool is_of_node(const struct fwnode_handle *fwnode)
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +0100562{
563 return false;
564}
565
Sakari Ailusd20dc142017-05-24 17:53:55 +0300566static inline struct device_node *to_of_node(const struct fwnode_handle *fwnode)
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +0100567{
568 return NULL;
569}
570
Rob Herringf42b0e182018-08-27 07:50:47 -0500571static inline bool of_node_name_eq(const struct device_node *np, const char *name)
572{
573 return false;
574}
575
576static inline bool of_node_name_prefix(const struct device_node *np, const char *prefix)
577{
578 return false;
579}
580
Stephen Rothwell4c358e12014-05-15 14:44:30 +1000581static inline const char* of_node_full_name(const struct device_node *np)
Grant Likely74a7f082012-06-15 11:50:25 -0600582{
583 return "<no-node>";
584}
585
Peter Ujfalusi1cc44f42012-09-10 13:46:24 +0300586static inline struct device_node *of_find_node_by_name(struct device_node *from,
587 const char *name)
588{
589 return NULL;
590}
591
Rob Herring662372e2014-02-03 08:53:44 -0600592static inline struct device_node *of_find_node_by_type(struct device_node *from,
593 const char *type)
594{
595 return NULL;
596}
597
598static inline struct device_node *of_find_matching_node_and_match(
599 struct device_node *from,
600 const struct of_device_id *matches,
601 const struct of_device_id **match)
602{
603 return NULL;
604}
605
Alexander Shiyan20cd4772014-04-16 10:49:20 +0400606static inline struct device_node *of_find_node_by_path(const char *path)
607{
608 return NULL;
609}
610
Leif Lindholm75c28c02014-11-28 11:34:28 +0000611static inline struct device_node *of_find_node_opts_by_path(const char *path,
612 const char **opts)
613{
614 return NULL;
615}
616
Suman Annace16b9d2015-06-17 11:53:53 -0500617static inline struct device_node *of_find_node_by_phandle(phandle handle)
618{
619 return NULL;
620}
621
Alexander Shiyan066ec1d2013-04-09 19:47:40 +0400622static inline struct device_node *of_get_parent(const struct device_node *node)
623{
624 return NULL;
625}
626
Rob Herring662372e2014-02-03 08:53:44 -0600627static inline struct device_node *of_get_next_child(
628 const struct device_node *node, struct device_node *prev)
629{
630 return NULL;
631}
632
633static inline struct device_node *of_get_next_available_child(
634 const struct device_node *node, struct device_node *prev)
635{
636 return NULL;
637}
638
639static inline struct device_node *of_find_node_with_property(
640 struct device_node *from, const char *prop_name)
641{
642 return NULL;
643}
644
Sakari Ailus67831832017-03-28 10:52:23 +0300645#define of_fwnode_handle(node) NULL
646
Sebastian Andrzej Siewior3bcbaf62011-02-22 21:07:46 +0100647static inline bool of_have_populated_dt(void)
648{
649 return false;
650}
651
Johan Hovold36156f92018-08-27 10:21:45 +0200652static inline struct device_node *of_get_compatible_child(const struct device_node *parent,
653 const char *compatible)
654{
655 return NULL;
656}
657
Olof Johansson25c040c2012-10-07 10:40:54 -0700658static inline struct device_node *of_get_child_by_name(
659 const struct device_node *node,
660 const char *name)
661{
662 return NULL;
663}
664
Rajendra Nayak36a09042011-10-10 21:49:35 +0530665static inline int of_device_is_compatible(const struct device_node *device,
666 const char *name)
667{
668 return 0;
669}
670
Geert Uytterhoeven3bc16302017-04-25 19:38:48 +0200671static inline int of_device_compatible_match(struct device_node *device,
672 const char *const *compat)
673{
674 return 0;
675}
676
Kevin Cernekee53a4ab92014-11-12 12:54:01 -0800677static inline bool of_device_is_available(const struct device_node *device)
Rob Herringd7195692013-03-20 16:56:18 -0500678{
Kevin Cernekee53a4ab92014-11-12 12:54:01 -0800679 return false;
Rob Herringd7195692013-03-20 16:56:18 -0500680}
681
Kevin Cernekee37786c72015-04-09 13:05:14 -0700682static inline bool of_device_is_big_endian(const struct device_node *device)
683{
684 return false;
685}
686
Stephen Warrenaba3dff2011-09-21 13:23:10 -0600687static inline struct property *of_find_property(const struct device_node *np,
688 const char *name,
689 int *lenp)
690{
691 return NULL;
692}
693
Shawn Guo2261cc62012-02-15 10:47:42 -0800694static inline struct device_node *of_find_compatible_node(
695 struct device_node *from,
696 const char *type,
697 const char *compat)
698{
699 return NULL;
700}
701
Heiko Stuebnerad54a0c2014-02-12 01:00:34 +0100702static inline int of_property_count_elems_of_size(const struct device_node *np,
703 const char *propname, int elem_size)
704{
705 return -ENOSYS;
706}
707
Viresh Kumarbe193242012-11-20 10:15:19 +0530708static inline int of_property_read_u8_array(const struct device_node *np,
709 const char *propname, u8 *out_values, size_t sz)
710{
711 return -ENOSYS;
712}
713
714static inline int of_property_read_u16_array(const struct device_node *np,
715 const char *propname, u16 *out_values, size_t sz)
716{
717 return -ENOSYS;
718}
719
Shawn Guob98c0232011-07-08 16:27:33 +0800720static inline int of_property_read_u32_array(const struct device_node *np,
Jamie Ilesaac285c2011-08-02 15:45:07 +0100721 const char *propname,
722 u32 *out_values, size_t sz)
Shawn Guob98c0232011-07-08 16:27:33 +0800723{
724 return -ENOSYS;
725}
726
Rafael J. Wysockib31384f2014-11-04 01:28:56 +0100727static inline int of_property_read_u64_array(const struct device_node *np,
728 const char *propname,
729 u64 *out_values, size_t sz)
730{
731 return -ENOSYS;
732}
733
Arnd Bergmann96c623e2017-11-06 14:26:10 +0100734static inline int of_property_read_u32_index(const struct device_node *np,
735 const char *propname, u32 index, u32 *out_value)
Shawn Guob98c0232011-07-08 16:27:33 +0800736{
737 return -ENOSYS;
738}
739
Arnd Bergmann96c623e2017-11-06 14:26:10 +0100740static inline int of_property_read_u64_index(const struct device_node *np,
741 const char *propname, u32 index, u64 *out_value)
Benoit Cousson4fcd15a2011-09-27 17:45:43 +0200742{
743 return -ENOSYS;
744}
745
Stephen Warren89272b82011-08-05 16:50:30 -0600746static inline const void *of_get_property(const struct device_node *node,
747 const char *name,
748 int *lenp)
749{
750 return NULL;
751}
752
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100753static inline struct device_node *of_get_cpu_node(int cpu,
754 unsigned int *thread)
755{
756 return NULL;
757}
758
Rob Herringf1f207e2018-08-22 15:04:40 -0500759static inline struct device_node *of_get_next_cpu_node(struct device_node *prev)
760{
761 return NULL;
762}
763
Arnd Bergmann8a1ac5d2017-10-13 15:57:40 -0700764static inline int of_n_addr_cells(struct device_node *np)
765{
766 return 0;
767
768}
769static inline int of_n_size_cells(struct device_node *np)
770{
771 return 0;
772}
773
Arnd Bergmann96c623e2017-11-06 14:26:10 +0100774static inline int of_property_read_variable_u8_array(const struct device_node *np,
775 const char *propname, u8 *out_values,
776 size_t sz_min, size_t sz_max)
777{
778 return -ENOSYS;
779}
780
781static inline int of_property_read_variable_u16_array(const struct device_node *np,
782 const char *propname, u16 *out_values,
783 size_t sz_min, size_t sz_max)
784{
785 return -ENOSYS;
786}
787
788static inline int of_property_read_variable_u32_array(const struct device_node *np,
789 const char *propname,
790 u32 *out_values,
791 size_t sz_min,
792 size_t sz_max)
793{
794 return -ENOSYS;
795}
796
Jamie Iles4cd7f7a2011-09-14 20:49:59 +0100797static inline int of_property_read_u64(const struct device_node *np,
798 const char *propname, u64 *out_value)
799{
800 return -ENOSYS;
801}
802
Arnd Bergmann96c623e2017-11-06 14:26:10 +0100803static inline int of_property_read_variable_u64_array(const struct device_node *np,
804 const char *propname,
805 u64 *out_values,
806 size_t sz_min,
807 size_t sz_max)
808{
809 return -ENOSYS;
810}
811
812static inline int of_property_read_string(const struct device_node *np,
813 const char *propname,
814 const char **out_string)
815{
816 return -ENOSYS;
817}
818
David Rivshinfe99c702016-03-02 16:35:51 -0500819static inline int of_property_match_string(const struct device_node *np,
Thierry Redingbd3d5502012-04-13 16:18:34 +0200820 const char *propname,
821 const char *string)
822{
823 return -ENOSYS;
824}
825
Arnd Bergmann96c623e2017-11-06 14:26:10 +0100826static inline int of_property_read_string_helper(const struct device_node *np,
827 const char *propname,
828 const char **out_strs, size_t sz, int index)
829{
830 return -ENOSYS;
831}
832
Steffen Trumtrarb8fbdc42012-11-22 12:16:43 +0100833static inline struct device_node *of_parse_phandle(const struct device_node *np,
Rajendra Nayak36a09042011-10-10 21:49:35 +0530834 const char *phandle_name,
835 int index)
836{
837 return NULL;
838}
839
Kuninori Morimotoe93aeea2016-05-25 01:15:04 +0000840static inline int of_parse_phandle_with_args(const struct device_node *np,
Thierry Redinge05e5072012-04-13 16:19:21 +0200841 const char *list_name,
842 const char *cells_name,
843 int index,
844 struct of_phandle_args *out_args)
845{
846 return -ENOSYS;
847}
848
Stephen Boydbd6f2fd2018-01-30 18:36:16 -0800849static inline int of_parse_phandle_with_args_map(const struct device_node *np,
850 const char *list_name,
851 const char *stem_name,
852 int index,
853 struct of_phandle_args *out_args)
854{
855 return -ENOSYS;
856}
857
Stephen Warren035fd942013-08-14 15:27:10 -0600858static inline int of_parse_phandle_with_fixed_args(const struct device_node *np,
859 const char *list_name, int cells_count, int index,
860 struct of_phandle_args *out_args)
861{
862 return -ENOSYS;
863}
864
Grant Likelybd69f732013-02-10 22:57:21 +0000865static inline int of_count_phandle_with_args(struct device_node *np,
866 const char *list_name,
867 const char *cells_name)
868{
869 return -ENOSYS;
870}
871
Joerg Roedel74e1fbb2016-04-04 17:49:17 +0200872static inline int of_phandle_iterator_init(struct of_phandle_iterator *it,
873 const struct device_node *np,
874 const char *list_name,
875 const char *cells_name,
876 int cell_count)
877{
878 return -ENOSYS;
879}
880
Joerg Roedelcd209b42016-04-04 17:49:18 +0200881static inline int of_phandle_iterator_next(struct of_phandle_iterator *it)
882{
883 return -ENOSYS;
884}
885
Joerg Roedelabdaa772016-04-04 17:49:21 +0200886static inline int of_phandle_iterator_args(struct of_phandle_iterator *it,
887 uint32_t *args,
888 int size)
889{
890 return 0;
891}
892
Nicolas Ferreed5f8862011-10-27 11:07:28 +0200893static inline int of_alias_get_id(struct device_node *np, const char *stem)
894{
895 return -ENOSYS;
896}
897
Wolfram Sang351d2242015-03-12 17:17:58 +0100898static inline int of_alias_get_highest_id(const char *stem)
899{
900 return -ENOSYS;
901}
902
Stephen Warren50e07f82011-10-25 14:01:26 +0200903static inline int of_machine_is_compatible(const char *compat)
904{
905 return 0;
906}
907
Grant Likely3482f2c2014-03-27 17:18:55 -0700908static inline bool of_console_check(const struct device_node *dn, const char *name, int index)
Sascha Hauer5c19e952013-08-05 14:40:44 +0200909{
Grant Likely3482f2c2014-03-27 17:18:55 -0700910 return false;
Sascha Hauer5c19e952013-08-05 14:40:44 +0200911}
912
Sebastian Andrzej Siewior2adfffa2013-06-17 16:48:13 +0200913static inline const __be32 *of_prop_next_u32(struct property *prop,
914 const __be32 *cur, u32 *pu)
915{
916 return NULL;
917}
918
919static inline const char *of_prop_next_string(struct property *prop,
920 const char *cur)
921{
922 return NULL;
923}
924
Pantelis Antoniou0384e8c2015-01-21 19:05:57 +0200925static inline int of_node_check_flag(struct device_node *n, unsigned long flag)
926{
927 return 0;
928}
929
930static inline int of_node_test_and_set_flag(struct device_node *n,
931 unsigned long flag)
932{
933 return 0;
934}
935
936static inline void of_node_set_flag(struct device_node *n, unsigned long flag)
937{
938}
939
940static inline void of_node_clear_flag(struct device_node *n, unsigned long flag)
941{
942}
943
944static inline int of_property_check_flag(struct property *p, unsigned long flag)
945{
946 return 0;
947}
948
949static inline void of_property_set_flag(struct property *p, unsigned long flag)
950{
951}
952
953static inline void of_property_clear_flag(struct property *p, unsigned long flag)
954{
955}
956
Suzuki K Poulosea0e71cd2018-01-02 11:25:27 +0000957static inline int of_cpu_node_to_id(struct device_node *np)
958{
959 return -ENODEV;
960}
961
Ben Dooks3a1e3622011-08-03 10:11:42 +0100962#define of_match_ptr(_ptr) NULL
Nicolas Ferre5762c202011-10-24 11:53:32 +0200963#define of_match_node(_matches, _node) NULL
Jeremy Kerr9dfbf202010-02-14 07:13:43 -0700964#endif /* CONFIG_OF */
Shawn Guob98c0232011-07-08 16:27:33 +0800965
Adam Thomson613e9722016-06-21 18:50:20 +0100966/* Default string compare functions, Allow arch asm/prom.h to override */
967#if !defined(of_compat_cmp)
968#define of_compat_cmp(s1, s2, l) strcasecmp((s1), (s2))
969#define of_prop_cmp(s1, s2) strcmp((s1), (s2))
970#define of_node_cmp(s1, s2) strcasecmp((s1), (s2))
971#endif
972
Rob Herring0c3f0612013-09-17 10:42:50 -0500973#if defined(CONFIG_OF) && defined(CONFIG_NUMA)
974extern int of_node_to_nid(struct device_node *np);
975#else
Konstantin Khlebnikovc8fff7b2015-04-08 19:59:20 +0300976static inline int of_node_to_nid(struct device_node *device)
977{
978 return NUMA_NO_NODE;
979}
Paul Mundt5ca4db62012-06-03 22:04:34 -0700980#endif
981
David Daney298535c2016-04-08 15:50:25 -0700982#ifdef CONFIG_OF_NUMA
983extern int of_numa_init(void);
984#else
985static inline int of_numa_init(void)
986{
987 return -ENOSYS;
988}
989#endif
990
Rob Herring662372e2014-02-03 08:53:44 -0600991static inline struct device_node *of_find_matching_node(
992 struct device_node *from,
993 const struct of_device_id *matches)
994{
995 return of_find_matching_node_and_match(from, matches, NULL);
996}
997
Rob Herring0413bed2018-08-28 15:10:48 -0500998static inline const char *of_node_get_device_type(const struct device_node *np)
999{
1000 return of_get_property(np, "type", NULL);
1001}
1002
1003static inline bool of_node_is_type(const struct device_node *np, const char *type)
1004{
1005 const char *match = of_node_get_device_type(np);
1006
1007 return np && match && type && !strcmp(match, type);
1008}
1009
Jean-Christophe PLAGNIOL-VILLARDfa4d34c2012-02-07 12:12:51 +08001010/**
Heiko Stuebnerad54a0c2014-02-12 01:00:34 +01001011 * of_property_count_u8_elems - Count the number of u8 elements in a property
1012 *
1013 * @np: device node from which the property value is to be read.
1014 * @propname: name of the property to be searched.
1015 *
1016 * Search for a property in a device node and count the number of u8 elements
1017 * in it. Returns number of elements on sucess, -EINVAL if the property does
1018 * not exist or its length does not match a multiple of u8 and -ENODATA if the
1019 * property does not have a value.
1020 */
1021static inline int of_property_count_u8_elems(const struct device_node *np,
1022 const char *propname)
1023{
1024 return of_property_count_elems_of_size(np, propname, sizeof(u8));
1025}
1026
1027/**
1028 * of_property_count_u16_elems - Count the number of u16 elements in a property
1029 *
1030 * @np: device node from which the property value is to be read.
1031 * @propname: name of the property to be searched.
1032 *
1033 * Search for a property in a device node and count the number of u16 elements
1034 * in it. Returns number of elements on sucess, -EINVAL if the property does
1035 * not exist or its length does not match a multiple of u16 and -ENODATA if the
1036 * property does not have a value.
1037 */
1038static inline int of_property_count_u16_elems(const struct device_node *np,
1039 const char *propname)
1040{
1041 return of_property_count_elems_of_size(np, propname, sizeof(u16));
1042}
1043
1044/**
1045 * of_property_count_u32_elems - Count the number of u32 elements in a property
1046 *
1047 * @np: device node from which the property value is to be read.
1048 * @propname: name of the property to be searched.
1049 *
1050 * Search for a property in a device node and count the number of u32 elements
1051 * in it. Returns number of elements on sucess, -EINVAL if the property does
1052 * not exist or its length does not match a multiple of u32 and -ENODATA if the
1053 * property does not have a value.
1054 */
1055static inline int of_property_count_u32_elems(const struct device_node *np,
1056 const char *propname)
1057{
1058 return of_property_count_elems_of_size(np, propname, sizeof(u32));
1059}
1060
1061/**
1062 * of_property_count_u64_elems - Count the number of u64 elements in a property
1063 *
1064 * @np: device node from which the property value is to be read.
1065 * @propname: name of the property to be searched.
1066 *
1067 * Search for a property in a device node and count the number of u64 elements
1068 * in it. Returns number of elements on sucess, -EINVAL if the property does
1069 * not exist or its length does not match a multiple of u64 and -ENODATA if the
1070 * property does not have a value.
1071 */
1072static inline int of_property_count_u64_elems(const struct device_node *np,
1073 const char *propname)
1074{
1075 return of_property_count_elems_of_size(np, propname, sizeof(u64));
1076}
1077
Jean-Christophe PLAGNIOL-VILLARDfa4d34c2012-02-07 12:12:51 +08001078/**
Grant Likelya87fa1d2014-11-03 15:15:35 +00001079 * of_property_read_string_array() - Read an array of strings from a multiple
1080 * strings property.
1081 * @np: device node from which the property value is to be read.
1082 * @propname: name of the property to be searched.
1083 * @out_strs: output array of string pointers.
1084 * @sz: number of array elements to read.
1085 *
1086 * Search for a property in a device tree node and retrieve a list of
1087 * terminated string values (pointer to data, not a copy) in that property.
1088 *
1089 * If @out_strs is NULL, the number of strings in the property is returned.
1090 */
David Rivshinfe99c702016-03-02 16:35:51 -05001091static inline int of_property_read_string_array(const struct device_node *np,
Grant Likelya87fa1d2014-11-03 15:15:35 +00001092 const char *propname, const char **out_strs,
1093 size_t sz)
1094{
1095 return of_property_read_string_helper(np, propname, out_strs, sz, 0);
1096}
1097
1098/**
1099 * of_property_count_strings() - Find and return the number of strings from a
1100 * multiple 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 *
1104 * Search for a property in a device tree node and retrieve the number of null
1105 * terminated string contain in it. Returns the number of strings on
1106 * success, -EINVAL if the property does not exist, -ENODATA if property
1107 * does not have a value, and -EILSEQ if the string is not null-terminated
1108 * within the length of the property data.
1109 */
David Rivshinfe99c702016-03-02 16:35:51 -05001110static inline int of_property_count_strings(const struct device_node *np,
Grant Likelya87fa1d2014-11-03 15:15:35 +00001111 const char *propname)
1112{
1113 return of_property_read_string_helper(np, propname, NULL, 0, 0);
1114}
1115
1116/**
1117 * of_property_read_string_index() - Find and read a string from a multiple
1118 * strings property.
1119 * @np: device node from which the property value is to be read.
1120 * @propname: name of the property to be searched.
1121 * @index: index of the string in the list of strings
1122 * @out_string: pointer to null terminated return string, modified only if
1123 * return value is 0.
1124 *
1125 * Search for a property in a device tree node and retrieve a null
1126 * terminated string value (pointer to data, not a copy) in the list of strings
1127 * contained in that property.
1128 * Returns 0 on success, -EINVAL if the property does not exist, -ENODATA if
1129 * property does not have a value, and -EILSEQ if the string is not
1130 * null-terminated within the length of the property data.
1131 *
1132 * The out_string pointer is modified only if a valid string can be decoded.
1133 */
David Rivshinfe99c702016-03-02 16:35:51 -05001134static inline int of_property_read_string_index(const struct device_node *np,
Grant Likelya87fa1d2014-11-03 15:15:35 +00001135 const char *propname,
1136 int index, const char **output)
1137{
1138 int rc = of_property_read_string_helper(np, propname, output, 1, index);
1139 return rc < 0 ? rc : 0;
1140}
1141
1142/**
Jean-Christophe PLAGNIOL-VILLARDfa4d34c2012-02-07 12:12:51 +08001143 * of_property_read_bool - Findfrom a property
1144 * @np: device node from which the property value is to be read.
1145 * @propname: name of the property to be searched.
1146 *
1147 * Search for a property in a device node.
Geert Uytterhoeven31712c92015-05-04 19:42:19 +02001148 * Returns true if the property exists false otherwise.
Jean-Christophe PLAGNIOL-VILLARDfa4d34c2012-02-07 12:12:51 +08001149 */
1150static inline bool of_property_read_bool(const struct device_node *np,
1151 const char *propname)
1152{
1153 struct property *prop = of_find_property(np, propname, NULL);
1154
1155 return prop ? true : false;
1156}
1157
Viresh Kumarbe193242012-11-20 10:15:19 +05301158static inline int of_property_read_u8(const struct device_node *np,
1159 const char *propname,
1160 u8 *out_value)
1161{
1162 return of_property_read_u8_array(np, propname, out_value, 1);
1163}
1164
1165static inline int of_property_read_u16(const struct device_node *np,
1166 const char *propname,
1167 u16 *out_value)
1168{
1169 return of_property_read_u16_array(np, propname, out_value, 1);
1170}
1171
Shawn Guob98c0232011-07-08 16:27:33 +08001172static inline int of_property_read_u32(const struct device_node *np,
Jamie Ilesaac285c2011-08-02 15:45:07 +01001173 const char *propname,
Shawn Guob98c0232011-07-08 16:27:33 +08001174 u32 *out_value)
1175{
1176 return of_property_read_u32_array(np, propname, out_value, 1);
1177}
1178
Sebastian Reichele7a00e42014-04-06 12:52:11 +02001179static inline int of_property_read_s32(const struct device_node *np,
1180 const char *propname,
1181 s32 *out_value)
1182{
1183 return of_property_read_u32(np, propname, (u32*) out_value);
1184}
1185
Joerg Roedelf623ce92016-04-04 17:49:20 +02001186#define of_for_each_phandle(it, err, np, ln, cn, cc) \
1187 for (of_phandle_iterator_init((it), (np), (ln), (cn), (cc)), \
1188 err = of_phandle_iterator_next(it); \
1189 err == 0; \
1190 err = of_phandle_iterator_next(it))
1191
Sebastian Andrzej Siewior2adfffa2013-06-17 16:48:13 +02001192#define of_property_for_each_u32(np, propname, prop, p, u) \
1193 for (prop = of_find_property(np, propname, NULL), \
1194 p = of_prop_next_u32(prop, NULL, &u); \
1195 p; \
1196 p = of_prop_next_u32(prop, p, &u))
1197
1198#define of_property_for_each_string(np, propname, prop, s) \
1199 for (prop = of_find_property(np, propname, NULL), \
1200 s = of_prop_next_string(prop, NULL); \
1201 s; \
1202 s = of_prop_next_string(prop, s))
1203
Rob Herring662372e2014-02-03 08:53:44 -06001204#define for_each_node_by_name(dn, name) \
1205 for (dn = of_find_node_by_name(NULL, name); dn; \
1206 dn = of_find_node_by_name(dn, name))
1207#define for_each_node_by_type(dn, type) \
1208 for (dn = of_find_node_by_type(NULL, type); dn; \
1209 dn = of_find_node_by_type(dn, type))
1210#define for_each_compatible_node(dn, type, compatible) \
1211 for (dn = of_find_compatible_node(NULL, type, compatible); dn; \
1212 dn = of_find_compatible_node(dn, type, compatible))
1213#define for_each_matching_node(dn, matches) \
1214 for (dn = of_find_matching_node(NULL, matches); dn; \
1215 dn = of_find_matching_node(dn, matches))
1216#define for_each_matching_node_and_match(dn, matches, match) \
1217 for (dn = of_find_matching_node_and_match(NULL, matches, match); \
1218 dn; dn = of_find_matching_node_and_match(dn, matches, match))
1219
1220#define for_each_child_of_node(parent, child) \
1221 for (child = of_get_next_child(parent, NULL); child != NULL; \
1222 child = of_get_next_child(parent, child))
1223#define for_each_available_child_of_node(parent, child) \
1224 for (child = of_get_next_available_child(parent, NULL); child != NULL; \
1225 child = of_get_next_available_child(parent, child))
1226
Rob Herringf1f207e2018-08-22 15:04:40 -05001227#define for_each_of_cpu_node(cpu) \
1228 for (cpu = of_get_next_cpu_node(NULL); cpu != NULL; \
1229 cpu = of_get_next_cpu_node(cpu))
1230
Rob Herring662372e2014-02-03 08:53:44 -06001231#define for_each_node_with_property(dn, prop_name) \
1232 for (dn = of_find_node_with_property(NULL, prop_name); dn; \
1233 dn = of_find_node_with_property(dn, prop_name))
1234
1235static inline int of_get_child_count(const struct device_node *np)
1236{
1237 struct device_node *child;
1238 int num = 0;
1239
1240 for_each_child_of_node(np, child)
1241 num++;
1242
1243 return num;
1244}
1245
1246static inline int of_get_available_child_count(const struct device_node *np)
1247{
1248 struct device_node *child;
1249 int num = 0;
1250
1251 for_each_available_child_of_node(np, child)
1252 num++;
1253
1254 return num;
1255}
1256
Masahiro Yamada71f50c62016-01-22 01:33:51 +09001257#if defined(CONFIG_OF) && !defined(MODULE)
Rob Herring54196cc2014-05-08 16:09:24 -05001258#define _OF_DECLARE(table, name, compat, fn, fn_type) \
1259 static const struct of_device_id __of_table_##name \
1260 __used __section(__##table##_of_table) \
1261 = { .compatible = compat, \
1262 .data = (fn == (fn_type)NULL) ? fn : fn }
1263#else
Thierry Reding5f563582014-10-02 16:01:10 +02001264#define _OF_DECLARE(table, name, compat, fn, fn_type) \
Rob Herring54196cc2014-05-08 16:09:24 -05001265 static const struct of_device_id __of_table_##name \
1266 __attribute__((unused)) \
1267 = { .compatible = compat, \
1268 .data = (fn == (fn_type)NULL) ? fn : fn }
1269#endif
1270
1271typedef int (*of_init_fn_2)(struct device_node *, struct device_node *);
Daniel Lezcanoc35d9292016-04-18 23:06:48 +02001272typedef int (*of_init_fn_1_ret)(struct device_node *);
Rob Herring54196cc2014-05-08 16:09:24 -05001273typedef void (*of_init_fn_1)(struct device_node *);
1274
1275#define OF_DECLARE_1(table, name, compat, fn) \
1276 _OF_DECLARE(table, name, compat, fn, of_init_fn_1)
Daniel Lezcanoc35d9292016-04-18 23:06:48 +02001277#define OF_DECLARE_1_RET(table, name, compat, fn) \
1278 _OF_DECLARE(table, name, compat, fn, of_init_fn_1_ret)
Rob Herring54196cc2014-05-08 16:09:24 -05001279#define OF_DECLARE_2(table, name, compat, fn) \
1280 _OF_DECLARE(table, name, compat, fn, of_init_fn_2)
1281
Pantelis Antoniou201c9102014-07-04 19:58:49 +03001282/**
1283 * struct of_changeset_entry - Holds a changeset entry
1284 *
1285 * @node: list_head for the log list
1286 * @action: notifier action
1287 * @np: pointer to the device node affected
1288 * @prop: pointer to the property affected
1289 * @old_prop: hold a pointer to the original property
1290 *
1291 * Every modification of the device tree during a changeset
1292 * is held in a list of of_changeset_entry structures.
1293 * That way we can recover from a partial application, or we can
1294 * revert the changeset
1295 */
1296struct of_changeset_entry {
1297 struct list_head node;
1298 unsigned long action;
1299 struct device_node *np;
1300 struct property *prop;
1301 struct property *old_prop;
1302};
1303
1304/**
1305 * struct of_changeset - changeset tracker structure
1306 *
1307 * @entries: list_head for the changeset entries
1308 *
1309 * changesets are a convenient way to apply bulk changes to the
1310 * live tree. In case of an error, changes are rolled-back.
1311 * changesets live on after initial application, and if not
1312 * destroyed after use, they can be reverted in one single call.
1313 */
1314struct of_changeset {
1315 struct list_head entries;
1316};
1317
Pantelis Antonioub53a2342014-10-28 22:33:53 +02001318enum of_reconfig_change {
1319 OF_RECONFIG_NO_CHANGE = 0,
1320 OF_RECONFIG_CHANGE_ADD,
1321 OF_RECONFIG_CHANGE_REMOVE,
1322};
1323
Pantelis Antoniou201c9102014-07-04 19:58:49 +03001324#ifdef CONFIG_OF_DYNAMIC
Grant Likelyf6892d12014-11-21 15:14:58 +00001325extern int of_reconfig_notifier_register(struct notifier_block *);
1326extern int of_reconfig_notifier_unregister(struct notifier_block *);
Grant Likelyf5242e52014-11-24 17:58:01 +00001327extern int of_reconfig_notify(unsigned long, struct of_reconfig_data *rd);
1328extern int of_reconfig_get_state_change(unsigned long action,
1329 struct of_reconfig_data *arg);
Grant Likelyf6892d12014-11-21 15:14:58 +00001330
Pantelis Antoniou201c9102014-07-04 19:58:49 +03001331extern void of_changeset_init(struct of_changeset *ocs);
1332extern void of_changeset_destroy(struct of_changeset *ocs);
1333extern int of_changeset_apply(struct of_changeset *ocs);
1334extern int of_changeset_revert(struct of_changeset *ocs);
1335extern int of_changeset_action(struct of_changeset *ocs,
1336 unsigned long action, struct device_node *np,
1337 struct property *prop);
1338
1339static inline int of_changeset_attach_node(struct of_changeset *ocs,
1340 struct device_node *np)
1341{
1342 return of_changeset_action(ocs, OF_RECONFIG_ATTACH_NODE, np, NULL);
1343}
1344
1345static inline int of_changeset_detach_node(struct of_changeset *ocs,
1346 struct device_node *np)
1347{
1348 return of_changeset_action(ocs, OF_RECONFIG_DETACH_NODE, np, NULL);
1349}
1350
1351static inline int of_changeset_add_property(struct of_changeset *ocs,
1352 struct device_node *np, struct property *prop)
1353{
1354 return of_changeset_action(ocs, OF_RECONFIG_ADD_PROPERTY, np, prop);
1355}
1356
1357static inline int of_changeset_remove_property(struct of_changeset *ocs,
1358 struct device_node *np, struct property *prop)
1359{
1360 return of_changeset_action(ocs, OF_RECONFIG_REMOVE_PROPERTY, np, prop);
1361}
1362
1363static inline int of_changeset_update_property(struct of_changeset *ocs,
1364 struct device_node *np, struct property *prop)
1365{
1366 return of_changeset_action(ocs, OF_RECONFIG_UPDATE_PROPERTY, np, prop);
1367}
Grant Likelyf6892d12014-11-21 15:14:58 +00001368#else /* CONFIG_OF_DYNAMIC */
1369static inline int of_reconfig_notifier_register(struct notifier_block *nb)
1370{
1371 return -EINVAL;
1372}
1373static inline int of_reconfig_notifier_unregister(struct notifier_block *nb)
1374{
1375 return -EINVAL;
1376}
Grant Likelyf5242e52014-11-24 17:58:01 +00001377static inline int of_reconfig_notify(unsigned long action,
1378 struct of_reconfig_data *arg)
Grant Likelyf6892d12014-11-21 15:14:58 +00001379{
1380 return -EINVAL;
1381}
Grant Likelyf5242e52014-11-24 17:58:01 +00001382static inline int of_reconfig_get_state_change(unsigned long action,
1383 struct of_reconfig_data *arg)
Grant Likelyf6892d12014-11-21 15:14:58 +00001384{
1385 return -EINVAL;
1386}
1387#endif /* CONFIG_OF_DYNAMIC */
Pantelis Antoniou201c9102014-07-04 19:58:49 +03001388
Romain Periera4b4e042014-10-14 06:31:09 +00001389/**
Romain Perier8f731102014-11-25 12:28:25 +00001390 * of_device_is_system_power_controller - Tells if system-power-controller is found for device_node
Romain Periera4b4e042014-10-14 06:31:09 +00001391 * @np: Pointer to the given device_node
1392 *
1393 * return true if present false otherwise
1394 */
Romain Perier8f731102014-11-25 12:28:25 +00001395static inline bool of_device_is_system_power_controller(const struct device_node *np)
Romain Periera4b4e042014-10-14 06:31:09 +00001396{
Romain Perier8f731102014-11-25 12:28:25 +00001397 return of_property_read_bool(np, "system-power-controller");
Romain Periera4b4e042014-10-14 06:31:09 +00001398}
1399
Linus Torvalds7ef58b32014-12-11 13:06:58 -08001400/**
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001401 * Overlay support
1402 */
1403
Alan Tull39a842e2016-11-01 14:14:22 -05001404enum of_overlay_notify_action {
Frank Rowand24789c52017-10-17 16:36:26 -07001405 OF_OVERLAY_PRE_APPLY = 0,
Alan Tull39a842e2016-11-01 14:14:22 -05001406 OF_OVERLAY_POST_APPLY,
1407 OF_OVERLAY_PRE_REMOVE,
1408 OF_OVERLAY_POST_REMOVE,
1409};
1410
1411struct of_overlay_notify_data {
1412 struct device_node *overlay;
1413 struct device_node *target;
1414};
1415
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001416#ifdef CONFIG_OF_OVERLAY
1417
Frank Rowand39a751a2018-02-12 00:19:42 -08001418int of_overlay_fdt_apply(const void *overlay_fdt, u32 overlay_fdt_size,
1419 int *ovcs_id);
Frank Rowand24789c52017-10-17 16:36:26 -07001420int of_overlay_remove(int *ovcs_id);
Frank Rowand0290c4c2017-10-17 16:36:23 -07001421int of_overlay_remove_all(void);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001422
Alan Tull39a842e2016-11-01 14:14:22 -05001423int of_overlay_notifier_register(struct notifier_block *nb);
1424int of_overlay_notifier_unregister(struct notifier_block *nb);
1425
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001426#else
1427
Frank Rowand39a751a2018-02-12 00:19:42 -08001428static inline int of_overlay_fdt_apply(void *overlay_fdt, int *ovcs_id)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001429{
1430 return -ENOTSUPP;
1431}
1432
Frank Rowand24789c52017-10-17 16:36:26 -07001433static inline int of_overlay_remove(int *ovcs_id)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001434{
1435 return -ENOTSUPP;
1436}
1437
Frank Rowand0290c4c2017-10-17 16:36:23 -07001438static inline int of_overlay_remove_all(void)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001439{
1440 return -ENOTSUPP;
1441}
1442
Alan Tull39a842e2016-11-01 14:14:22 -05001443static inline int of_overlay_notifier_register(struct notifier_block *nb)
1444{
1445 return 0;
1446}
1447
1448static inline int of_overlay_notifier_unregister(struct notifier_block *nb)
1449{
1450 return 0;
1451}
1452
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001453#endif
1454
Stephen Rothwell76c1ce72007-05-01 16:19:07 +10001455#endif /* _LINUX_OF_H */