blob: b99a1a8c295211d33979dfb06dea78b96296b53b [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
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);
Dong Aisheng8af0da92011-12-22 20:19:24 +0800353#define for_each_property_of_node(dn, pp) \
354 for (pp = dn->properties; pp != NULL; pp = pp->next)
Shawn Guo611cad72011-08-15 15:28:14 +0800355
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000356extern int of_n_addr_cells(struct device_node *np);
357extern int of_n_size_cells(struct device_node *np);
Grant Likely283029d2008-01-09 06:20:40 +1100358extern const struct of_device_id *of_match_node(
359 const struct of_device_id *matches, const struct device_node *node);
Grant Likely3f07af42008-07-25 22:25:13 -0400360extern int of_modalias_node(struct device_node *node, char *modalias, int len);
Grant Likely624cfca2013-10-11 22:05:10 +0100361extern void of_print_phandle_args(const char *msg, const struct of_phandle_args *args);
Steffen Trumtrarb8fbdc42012-11-22 12:16:43 +0100362extern struct device_node *of_parse_phandle(const struct device_node *np,
Grant Likely739649c2009-04-25 12:52:40 +0000363 const char *phandle_name,
364 int index);
Guennadi Liakhovetski93c667c2012-12-10 20:41:30 +0100365extern int of_parse_phandle_with_args(const struct device_node *np,
Anton Vorontsov64b60e02008-10-10 04:43:17 +0000366 const char *list_name, const char *cells_name, int index,
Grant Likely15c9a0a2011-12-12 09:25:57 -0700367 struct of_phandle_args *out_args);
Stephen Boydbd6f2fd2018-01-30 18:36:16 -0800368extern int of_parse_phandle_with_args_map(const struct device_node *np,
369 const char *list_name, const char *stem_name, int index,
370 struct of_phandle_args *out_args);
Stephen Warren035fd942013-08-14 15:27:10 -0600371extern int of_parse_phandle_with_fixed_args(const struct device_node *np,
372 const char *list_name, int cells_count, int index,
373 struct of_phandle_args *out_args);
Grant Likelybd69f732013-02-10 22:57:21 +0000374extern int of_count_phandle_with_args(const struct device_node *np,
375 const char *list_name, const char *cells_name);
Stephen Rothwell76c1ce72007-05-01 16:19:07 +1000376
Joerg Roedel74e1fbb2016-04-04 17:49:17 +0200377/* phandle iterator functions */
378extern int of_phandle_iterator_init(struct of_phandle_iterator *it,
379 const struct device_node *np,
380 const char *list_name,
381 const char *cells_name,
382 int cell_count);
383
Joerg Roedelcd209b42016-04-04 17:49:18 +0200384extern int of_phandle_iterator_next(struct of_phandle_iterator *it);
Joerg Roedelabdaa772016-04-04 17:49:21 +0200385extern int of_phandle_iterator_args(struct of_phandle_iterator *it,
386 uint32_t *args,
387 int size);
Joerg Roedelcd209b42016-04-04 17:49:18 +0200388
Shawn Guo611cad72011-08-15 15:28:14 +0800389extern void of_alias_scan(void * (*dt_alloc)(u64 size, u64 align));
390extern int of_alias_get_id(struct device_node *np, const char *stem);
Wolfram Sang351d2242015-03-12 17:17:58 +0100391extern int of_alias_get_highest_id(const char *stem);
Shawn Guo611cad72011-08-15 15:28:14 +0800392
Grant Likely21b082e2010-02-14 07:13:38 -0700393extern int of_machine_is_compatible(const char *compat);
394
Nathan Fontenot79d1c712012-10-02 16:58:46 +0000395extern int of_add_property(struct device_node *np, struct property *prop);
396extern int of_remove_property(struct device_node *np, struct property *prop);
397extern int of_update_property(struct device_node *np, struct property *newprop);
Grant Likely21b082e2010-02-14 07:13:38 -0700398
Grant Likelyfcdeb7f2010-01-29 05:04:33 -0700399/* For updating the device tree at runtime */
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +0000400#define OF_RECONFIG_ATTACH_NODE 0x0001
401#define OF_RECONFIG_DETACH_NODE 0x0002
402#define OF_RECONFIG_ADD_PROPERTY 0x0003
403#define OF_RECONFIG_REMOVE_PROPERTY 0x0004
404#define OF_RECONFIG_UPDATE_PROPERTY 0x0005
405
Nathan Fontenot1cf3d8b2012-10-02 16:57:57 +0000406extern int of_attach_node(struct device_node *);
407extern int of_detach_node(struct device_node *);
Grant Likelyfcdeb7f2010-01-29 05:04:33 -0700408
Ben Dooks3a1e3622011-08-03 10:11:42 +0100409#define of_match_ptr(_ptr) (_ptr)
Stephen Warrenc541adc2012-04-04 09:27:46 -0600410
Richard Fitzgeralda67e9472016-09-12 14:01:29 +0100411/**
412 * of_property_read_u8_array - Find and read an array of u8 from a property.
413 *
414 * @np: device node from which the property value is to be read.
415 * @propname: name of the property to be searched.
416 * @out_values: pointer to return value, modified only if return value is 0.
417 * @sz: number of array elements to read
418 *
419 * Search for a property in a device node and read 8-bit value(s) from
420 * it. Returns 0 on success, -EINVAL if the property does not exist,
421 * -ENODATA if property does not have a value, and -EOVERFLOW if the
422 * property data isn't large enough.
423 *
424 * dts entry of array should be like:
425 * property = /bits/ 8 <0x50 0x60 0x70>;
426 *
427 * The out_values is modified only if a valid u8 value can be decoded.
428 */
429static inline int of_property_read_u8_array(const struct device_node *np,
430 const char *propname,
431 u8 *out_values, size_t sz)
432{
433 int ret = of_property_read_variable_u8_array(np, propname, out_values,
434 sz, 0);
435 if (ret >= 0)
436 return 0;
437 else
438 return ret;
439}
440
441/**
442 * of_property_read_u16_array - Find and read an array of u16 from a property.
443 *
444 * @np: device node from which the property value is to be read.
445 * @propname: name of the property to be searched.
446 * @out_values: pointer to return value, modified only if return value is 0.
447 * @sz: number of array elements to read
448 *
449 * Search for a property in a device node and read 16-bit value(s) from
450 * it. Returns 0 on success, -EINVAL if the property does not exist,
451 * -ENODATA if property does not have a value, and -EOVERFLOW if the
452 * property data isn't large enough.
453 *
454 * dts entry of array should be like:
455 * property = /bits/ 16 <0x5000 0x6000 0x7000>;
456 *
457 * The out_values is modified only if a valid u16 value can be decoded.
458 */
459static inline int of_property_read_u16_array(const struct device_node *np,
460 const char *propname,
461 u16 *out_values, size_t sz)
462{
463 int ret = of_property_read_variable_u16_array(np, propname, out_values,
464 sz, 0);
465 if (ret >= 0)
466 return 0;
467 else
468 return ret;
469}
470
471/**
472 * of_property_read_u32_array - Find and read an array of 32 bit integers
473 * from a property.
474 *
475 * @np: device node from which the property value is to be read.
476 * @propname: name of the property to be searched.
477 * @out_values: pointer to return value, modified only if return value is 0.
478 * @sz: number of array elements to read
479 *
480 * Search for a property in a device node and read 32-bit value(s) from
481 * it. Returns 0 on success, -EINVAL if the property does not exist,
482 * -ENODATA if property does not have a value, and -EOVERFLOW if the
483 * property data isn't large enough.
484 *
485 * The out_values is modified only if a valid u32 value can be decoded.
486 */
487static inline int of_property_read_u32_array(const struct device_node *np,
488 const char *propname,
489 u32 *out_values, size_t sz)
490{
491 int ret = of_property_read_variable_u32_array(np, propname, out_values,
492 sz, 0);
493 if (ret >= 0)
494 return 0;
495 else
496 return ret;
497}
498
499/**
500 * of_property_read_u64_array - Find and read an array of 64 bit integers
501 * from a property.
502 *
503 * @np: device node from which the property value is to be read.
504 * @propname: name of the property to be searched.
505 * @out_values: pointer to return value, modified only if return value is 0.
506 * @sz: number of array elements to read
507 *
508 * Search for a property in a device node and read 64-bit value(s) from
509 * it. Returns 0 on success, -EINVAL if the property does not exist,
510 * -ENODATA if property does not have a value, and -EOVERFLOW if the
511 * property data isn't large enough.
512 *
513 * The out_values is modified only if a valid u64 value can be decoded.
514 */
515static inline int of_property_read_u64_array(const struct device_node *np,
516 const char *propname,
517 u64 *out_values, size_t sz)
518{
519 int ret = of_property_read_variable_u64_array(np, propname, out_values,
520 sz, 0);
521 if (ret >= 0)
522 return 0;
523 else
524 return ret;
525}
526
Stephen Warrenc541adc2012-04-04 09:27:46 -0600527/*
528 * struct property *prop;
529 * const __be32 *p;
530 * u32 u;
531 *
532 * of_property_for_each_u32(np, "propname", prop, p, u)
533 * printk("U32 value: %x\n", u);
534 */
535const __be32 *of_prop_next_u32(struct property *prop, const __be32 *cur,
536 u32 *pu);
Stephen Warrenc541adc2012-04-04 09:27:46 -0600537/*
538 * struct property *prop;
539 * const char *s;
540 *
541 * of_property_for_each_string(np, "propname", prop, s)
542 * printk("String value: %s\n", s);
543 */
544const char *of_prop_next_string(struct property *prop, const char *cur);
Stephen Warrenc541adc2012-04-04 09:27:46 -0600545
Grant Likely3482f2c2014-03-27 17:18:55 -0700546bool of_console_check(struct device_node *dn, char *name, int index);
Sascha Hauer5c19e952013-08-05 14:40:44 +0200547
Suzuki K Poulosea0e71cd2018-01-02 11:25:27 +0000548extern int of_cpu_node_to_id(struct device_node *np);
549
Shawn Guob98c0232011-07-08 16:27:33 +0800550#else /* CONFIG_OF */
Sebastian Andrzej Siewior3bcbaf62011-02-22 21:07:46 +0100551
Sudeep Holla194ec932015-05-14 15:28:24 +0100552static inline void of_core_init(void)
553{
554}
555
Sakari Ailusd20dc142017-05-24 17:53:55 +0300556static inline bool is_of_node(const struct fwnode_handle *fwnode)
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +0100557{
558 return false;
559}
560
Sakari Ailusd20dc142017-05-24 17:53:55 +0300561static inline struct device_node *to_of_node(const struct fwnode_handle *fwnode)
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +0100562{
563 return NULL;
564}
565
Stephen Rothwell4c358e12014-05-15 14:44:30 +1000566static inline const char* of_node_full_name(const struct device_node *np)
Grant Likely74a7f082012-06-15 11:50:25 -0600567{
568 return "<no-node>";
569}
570
Peter Ujfalusi1cc44f42012-09-10 13:46:24 +0300571static inline struct device_node *of_find_node_by_name(struct device_node *from,
572 const char *name)
573{
574 return NULL;
575}
576
Rob Herring662372e2014-02-03 08:53:44 -0600577static inline struct device_node *of_find_node_by_type(struct device_node *from,
578 const char *type)
579{
580 return NULL;
581}
582
583static inline struct device_node *of_find_matching_node_and_match(
584 struct device_node *from,
585 const struct of_device_id *matches,
586 const struct of_device_id **match)
587{
588 return NULL;
589}
590
Alexander Shiyan20cd4772014-04-16 10:49:20 +0400591static inline struct device_node *of_find_node_by_path(const char *path)
592{
593 return NULL;
594}
595
Leif Lindholm75c28c02014-11-28 11:34:28 +0000596static inline struct device_node *of_find_node_opts_by_path(const char *path,
597 const char **opts)
598{
599 return NULL;
600}
601
Suman Annace16b9d2015-06-17 11:53:53 -0500602static inline struct device_node *of_find_node_by_phandle(phandle handle)
603{
604 return NULL;
605}
606
Alexander Shiyan066ec1d2013-04-09 19:47:40 +0400607static inline struct device_node *of_get_parent(const struct device_node *node)
608{
609 return NULL;
610}
611
Rob Herring662372e2014-02-03 08:53:44 -0600612static inline struct device_node *of_get_next_child(
613 const struct device_node *node, struct device_node *prev)
614{
615 return NULL;
616}
617
618static inline struct device_node *of_get_next_available_child(
619 const struct device_node *node, struct device_node *prev)
620{
621 return NULL;
622}
623
624static inline struct device_node *of_find_node_with_property(
625 struct device_node *from, const char *prop_name)
626{
627 return NULL;
628}
629
Sakari Ailus67831832017-03-28 10:52:23 +0300630#define of_fwnode_handle(node) NULL
631
Sebastian Andrzej Siewior3bcbaf62011-02-22 21:07:46 +0100632static inline bool of_have_populated_dt(void)
633{
634 return false;
635}
636
Johan Hovold36156f92018-08-27 10:21:45 +0200637static inline struct device_node *of_get_compatible_child(const struct device_node *parent,
638 const char *compatible)
639{
640 return NULL;
641}
642
Olof Johansson25c040c2012-10-07 10:40:54 -0700643static inline struct device_node *of_get_child_by_name(
644 const struct device_node *node,
645 const char *name)
646{
647 return NULL;
648}
649
Rajendra Nayak36a09042011-10-10 21:49:35 +0530650static inline int of_device_is_compatible(const struct device_node *device,
651 const char *name)
652{
653 return 0;
654}
655
Geert Uytterhoeven3bc16302017-04-25 19:38:48 +0200656static inline int of_device_compatible_match(struct device_node *device,
657 const char *const *compat)
658{
659 return 0;
660}
661
Kevin Cernekee53a4ab92014-11-12 12:54:01 -0800662static inline bool of_device_is_available(const struct device_node *device)
Rob Herringd7195692013-03-20 16:56:18 -0500663{
Kevin Cernekee53a4ab92014-11-12 12:54:01 -0800664 return false;
Rob Herringd7195692013-03-20 16:56:18 -0500665}
666
Kevin Cernekee37786c72015-04-09 13:05:14 -0700667static inline bool of_device_is_big_endian(const struct device_node *device)
668{
669 return false;
670}
671
Stephen Warrenaba3dff2011-09-21 13:23:10 -0600672static inline struct property *of_find_property(const struct device_node *np,
673 const char *name,
674 int *lenp)
675{
676 return NULL;
677}
678
Shawn Guo2261cc62012-02-15 10:47:42 -0800679static inline struct device_node *of_find_compatible_node(
680 struct device_node *from,
681 const char *type,
682 const char *compat)
683{
684 return NULL;
685}
686
Heiko Stuebnerad54a0c2014-02-12 01:00:34 +0100687static inline int of_property_count_elems_of_size(const struct device_node *np,
688 const char *propname, int elem_size)
689{
690 return -ENOSYS;
691}
692
Viresh Kumarbe193242012-11-20 10:15:19 +0530693static inline int of_property_read_u8_array(const struct device_node *np,
694 const char *propname, u8 *out_values, size_t sz)
695{
696 return -ENOSYS;
697}
698
699static inline int of_property_read_u16_array(const struct device_node *np,
700 const char *propname, u16 *out_values, size_t sz)
701{
702 return -ENOSYS;
703}
704
Shawn Guob98c0232011-07-08 16:27:33 +0800705static inline int of_property_read_u32_array(const struct device_node *np,
Jamie Ilesaac285c2011-08-02 15:45:07 +0100706 const char *propname,
707 u32 *out_values, size_t sz)
Shawn Guob98c0232011-07-08 16:27:33 +0800708{
709 return -ENOSYS;
710}
711
Rafael J. Wysockib31384f2014-11-04 01:28:56 +0100712static inline int of_property_read_u64_array(const struct device_node *np,
713 const char *propname,
714 u64 *out_values, size_t sz)
715{
716 return -ENOSYS;
717}
718
Arnd Bergmann96c623e2017-11-06 14:26:10 +0100719static inline int of_property_read_u32_index(const struct device_node *np,
720 const char *propname, u32 index, u32 *out_value)
Shawn Guob98c0232011-07-08 16:27:33 +0800721{
722 return -ENOSYS;
723}
724
Arnd Bergmann96c623e2017-11-06 14:26:10 +0100725static inline int of_property_read_u64_index(const struct device_node *np,
726 const char *propname, u32 index, u64 *out_value)
Benoit Cousson4fcd15a2011-09-27 17:45:43 +0200727{
728 return -ENOSYS;
729}
730
Stephen Warren89272b82011-08-05 16:50:30 -0600731static inline const void *of_get_property(const struct device_node *node,
732 const char *name,
733 int *lenp)
734{
735 return NULL;
736}
737
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +0100738static inline struct device_node *of_get_cpu_node(int cpu,
739 unsigned int *thread)
740{
741 return NULL;
742}
743
Arnd Bergmann8a1ac5d2017-10-13 15:57:40 -0700744static inline int of_n_addr_cells(struct device_node *np)
745{
746 return 0;
747
748}
749static inline int of_n_size_cells(struct device_node *np)
750{
751 return 0;
752}
753
Arnd Bergmann96c623e2017-11-06 14:26:10 +0100754static inline int of_property_read_variable_u8_array(const struct device_node *np,
755 const char *propname, u8 *out_values,
756 size_t sz_min, size_t sz_max)
757{
758 return -ENOSYS;
759}
760
761static inline int of_property_read_variable_u16_array(const struct device_node *np,
762 const char *propname, u16 *out_values,
763 size_t sz_min, size_t sz_max)
764{
765 return -ENOSYS;
766}
767
768static inline int of_property_read_variable_u32_array(const struct device_node *np,
769 const char *propname,
770 u32 *out_values,
771 size_t sz_min,
772 size_t sz_max)
773{
774 return -ENOSYS;
775}
776
Jamie Iles4cd7f7a2011-09-14 20:49:59 +0100777static inline int of_property_read_u64(const struct device_node *np,
778 const char *propname, u64 *out_value)
779{
780 return -ENOSYS;
781}
782
Arnd Bergmann96c623e2017-11-06 14:26:10 +0100783static inline int of_property_read_variable_u64_array(const struct device_node *np,
784 const char *propname,
785 u64 *out_values,
786 size_t sz_min,
787 size_t sz_max)
788{
789 return -ENOSYS;
790}
791
792static inline int of_property_read_string(const struct device_node *np,
793 const char *propname,
794 const char **out_string)
795{
796 return -ENOSYS;
797}
798
David Rivshinfe99c702016-03-02 16:35:51 -0500799static inline int of_property_match_string(const struct device_node *np,
Thierry Redingbd3d5502012-04-13 16:18:34 +0200800 const char *propname,
801 const char *string)
802{
803 return -ENOSYS;
804}
805
Arnd Bergmann96c623e2017-11-06 14:26:10 +0100806static inline int of_property_read_string_helper(const struct device_node *np,
807 const char *propname,
808 const char **out_strs, size_t sz, int index)
809{
810 return -ENOSYS;
811}
812
Steffen Trumtrarb8fbdc42012-11-22 12:16:43 +0100813static inline struct device_node *of_parse_phandle(const struct device_node *np,
Rajendra Nayak36a09042011-10-10 21:49:35 +0530814 const char *phandle_name,
815 int index)
816{
817 return NULL;
818}
819
Kuninori Morimotoe93aeea2016-05-25 01:15:04 +0000820static inline int of_parse_phandle_with_args(const struct device_node *np,
Thierry Redinge05e5072012-04-13 16:19:21 +0200821 const char *list_name,
822 const char *cells_name,
823 int index,
824 struct of_phandle_args *out_args)
825{
826 return -ENOSYS;
827}
828
Stephen Boydbd6f2fd2018-01-30 18:36:16 -0800829static inline int of_parse_phandle_with_args_map(const struct device_node *np,
830 const char *list_name,
831 const char *stem_name,
832 int index,
833 struct of_phandle_args *out_args)
834{
835 return -ENOSYS;
836}
837
Stephen Warren035fd942013-08-14 15:27:10 -0600838static inline int of_parse_phandle_with_fixed_args(const struct device_node *np,
839 const char *list_name, int cells_count, int index,
840 struct of_phandle_args *out_args)
841{
842 return -ENOSYS;
843}
844
Grant Likelybd69f732013-02-10 22:57:21 +0000845static inline int of_count_phandle_with_args(struct device_node *np,
846 const char *list_name,
847 const char *cells_name)
848{
849 return -ENOSYS;
850}
851
Joerg Roedel74e1fbb2016-04-04 17:49:17 +0200852static inline int of_phandle_iterator_init(struct of_phandle_iterator *it,
853 const struct device_node *np,
854 const char *list_name,
855 const char *cells_name,
856 int cell_count)
857{
858 return -ENOSYS;
859}
860
Joerg Roedelcd209b42016-04-04 17:49:18 +0200861static inline int of_phandle_iterator_next(struct of_phandle_iterator *it)
862{
863 return -ENOSYS;
864}
865
Joerg Roedelabdaa772016-04-04 17:49:21 +0200866static inline int of_phandle_iterator_args(struct of_phandle_iterator *it,
867 uint32_t *args,
868 int size)
869{
870 return 0;
871}
872
Nicolas Ferreed5f8862011-10-27 11:07:28 +0200873static inline int of_alias_get_id(struct device_node *np, const char *stem)
874{
875 return -ENOSYS;
876}
877
Wolfram Sang351d2242015-03-12 17:17:58 +0100878static inline int of_alias_get_highest_id(const char *stem)
879{
880 return -ENOSYS;
881}
882
Stephen Warren50e07f82011-10-25 14:01:26 +0200883static inline int of_machine_is_compatible(const char *compat)
884{
885 return 0;
886}
887
Grant Likely3482f2c2014-03-27 17:18:55 -0700888static inline bool of_console_check(const struct device_node *dn, const char *name, int index)
Sascha Hauer5c19e952013-08-05 14:40:44 +0200889{
Grant Likely3482f2c2014-03-27 17:18:55 -0700890 return false;
Sascha Hauer5c19e952013-08-05 14:40:44 +0200891}
892
Sebastian Andrzej Siewior2adfffa2013-06-17 16:48:13 +0200893static inline const __be32 *of_prop_next_u32(struct property *prop,
894 const __be32 *cur, u32 *pu)
895{
896 return NULL;
897}
898
899static inline const char *of_prop_next_string(struct property *prop,
900 const char *cur)
901{
902 return NULL;
903}
904
Pantelis Antoniou0384e8c2015-01-21 19:05:57 +0200905static inline int of_node_check_flag(struct device_node *n, unsigned long flag)
906{
907 return 0;
908}
909
910static inline int of_node_test_and_set_flag(struct device_node *n,
911 unsigned long flag)
912{
913 return 0;
914}
915
916static inline void of_node_set_flag(struct device_node *n, unsigned long flag)
917{
918}
919
920static inline void of_node_clear_flag(struct device_node *n, unsigned long flag)
921{
922}
923
924static inline int of_property_check_flag(struct property *p, unsigned long flag)
925{
926 return 0;
927}
928
929static inline void of_property_set_flag(struct property *p, unsigned long flag)
930{
931}
932
933static inline void of_property_clear_flag(struct property *p, unsigned long flag)
934{
935}
936
Suzuki K Poulosea0e71cd2018-01-02 11:25:27 +0000937static inline int of_cpu_node_to_id(struct device_node *np)
938{
939 return -ENODEV;
940}
941
Ben Dooks3a1e3622011-08-03 10:11:42 +0100942#define of_match_ptr(_ptr) NULL
Nicolas Ferre5762c202011-10-24 11:53:32 +0200943#define of_match_node(_matches, _node) NULL
Jeremy Kerr9dfbf202010-02-14 07:13:43 -0700944#endif /* CONFIG_OF */
Shawn Guob98c0232011-07-08 16:27:33 +0800945
Adam Thomson613e9722016-06-21 18:50:20 +0100946/* Default string compare functions, Allow arch asm/prom.h to override */
947#if !defined(of_compat_cmp)
948#define of_compat_cmp(s1, s2, l) strcasecmp((s1), (s2))
949#define of_prop_cmp(s1, s2) strcmp((s1), (s2))
950#define of_node_cmp(s1, s2) strcasecmp((s1), (s2))
951#endif
952
Rob Herring0c3f0612013-09-17 10:42:50 -0500953#if defined(CONFIG_OF) && defined(CONFIG_NUMA)
954extern int of_node_to_nid(struct device_node *np);
955#else
Konstantin Khlebnikovc8fff7b2015-04-08 19:59:20 +0300956static inline int of_node_to_nid(struct device_node *device)
957{
958 return NUMA_NO_NODE;
959}
Paul Mundt5ca4db62012-06-03 22:04:34 -0700960#endif
961
David Daney298535c2016-04-08 15:50:25 -0700962#ifdef CONFIG_OF_NUMA
963extern int of_numa_init(void);
964#else
965static inline int of_numa_init(void)
966{
967 return -ENOSYS;
968}
969#endif
970
Rob Herring662372e2014-02-03 08:53:44 -0600971static inline struct device_node *of_find_matching_node(
972 struct device_node *from,
973 const struct of_device_id *matches)
974{
975 return of_find_matching_node_and_match(from, matches, NULL);
976}
977
Jean-Christophe PLAGNIOL-VILLARDfa4d34c2012-02-07 12:12:51 +0800978/**
Heiko Stuebnerad54a0c2014-02-12 01:00:34 +0100979 * of_property_count_u8_elems - Count the number of u8 elements in a property
980 *
981 * @np: device node from which the property value is to be read.
982 * @propname: name of the property to be searched.
983 *
984 * Search for a property in a device node and count the number of u8 elements
985 * in it. Returns number of elements on sucess, -EINVAL if the property does
986 * not exist or its length does not match a multiple of u8 and -ENODATA if the
987 * property does not have a value.
988 */
989static inline int of_property_count_u8_elems(const struct device_node *np,
990 const char *propname)
991{
992 return of_property_count_elems_of_size(np, propname, sizeof(u8));
993}
994
995/**
996 * of_property_count_u16_elems - Count the number of u16 elements in a property
997 *
998 * @np: device node from which the property value is to be read.
999 * @propname: name of the property to be searched.
1000 *
1001 * Search for a property in a device node and count the number of u16 elements
1002 * in it. Returns number of elements on sucess, -EINVAL if the property does
1003 * not exist or its length does not match a multiple of u16 and -ENODATA if the
1004 * property does not have a value.
1005 */
1006static inline int of_property_count_u16_elems(const struct device_node *np,
1007 const char *propname)
1008{
1009 return of_property_count_elems_of_size(np, propname, sizeof(u16));
1010}
1011
1012/**
1013 * of_property_count_u32_elems - Count the number of u32 elements in a property
1014 *
1015 * @np: device node from which the property value is to be read.
1016 * @propname: name of the property to be searched.
1017 *
1018 * Search for a property in a device node and count the number of u32 elements
1019 * in it. Returns number of elements on sucess, -EINVAL if the property does
1020 * not exist or its length does not match a multiple of u32 and -ENODATA if the
1021 * property does not have a value.
1022 */
1023static inline int of_property_count_u32_elems(const struct device_node *np,
1024 const char *propname)
1025{
1026 return of_property_count_elems_of_size(np, propname, sizeof(u32));
1027}
1028
1029/**
1030 * of_property_count_u64_elems - Count the number of u64 elements in a property
1031 *
1032 * @np: device node from which the property value is to be read.
1033 * @propname: name of the property to be searched.
1034 *
1035 * Search for a property in a device node and count the number of u64 elements
1036 * in it. Returns number of elements on sucess, -EINVAL if the property does
1037 * not exist or its length does not match a multiple of u64 and -ENODATA if the
1038 * property does not have a value.
1039 */
1040static inline int of_property_count_u64_elems(const struct device_node *np,
1041 const char *propname)
1042{
1043 return of_property_count_elems_of_size(np, propname, sizeof(u64));
1044}
1045
Jean-Christophe PLAGNIOL-VILLARDfa4d34c2012-02-07 12:12:51 +08001046/**
Grant Likelya87fa1d2014-11-03 15:15:35 +00001047 * of_property_read_string_array() - Read an array of strings from a multiple
1048 * strings property.
1049 * @np: device node from which the property value is to be read.
1050 * @propname: name of the property to be searched.
1051 * @out_strs: output array of string pointers.
1052 * @sz: number of array elements to read.
1053 *
1054 * Search for a property in a device tree node and retrieve a list of
1055 * terminated string values (pointer to data, not a copy) in that property.
1056 *
1057 * If @out_strs is NULL, the number of strings in the property is returned.
1058 */
David Rivshinfe99c702016-03-02 16:35:51 -05001059static inline int of_property_read_string_array(const struct device_node *np,
Grant Likelya87fa1d2014-11-03 15:15:35 +00001060 const char *propname, const char **out_strs,
1061 size_t sz)
1062{
1063 return of_property_read_string_helper(np, propname, out_strs, sz, 0);
1064}
1065
1066/**
1067 * of_property_count_strings() - Find and return the number of strings from a
1068 * multiple strings property.
1069 * @np: device node from which the property value is to be read.
1070 * @propname: name of the property to be searched.
1071 *
1072 * Search for a property in a device tree node and retrieve the number of null
1073 * terminated string contain in it. Returns the number of strings on
1074 * success, -EINVAL if the property does not exist, -ENODATA if property
1075 * does not have a value, and -EILSEQ if the string is not null-terminated
1076 * within the length of the property data.
1077 */
David Rivshinfe99c702016-03-02 16:35:51 -05001078static inline int of_property_count_strings(const struct device_node *np,
Grant Likelya87fa1d2014-11-03 15:15:35 +00001079 const char *propname)
1080{
1081 return of_property_read_string_helper(np, propname, NULL, 0, 0);
1082}
1083
1084/**
1085 * of_property_read_string_index() - Find and read a string from a multiple
1086 * strings property.
1087 * @np: device node from which the property value is to be read.
1088 * @propname: name of the property to be searched.
1089 * @index: index of the string in the list of strings
1090 * @out_string: pointer to null terminated return string, modified only if
1091 * return value is 0.
1092 *
1093 * Search for a property in a device tree node and retrieve a null
1094 * terminated string value (pointer to data, not a copy) in the list of strings
1095 * contained in that property.
1096 * Returns 0 on success, -EINVAL if the property does not exist, -ENODATA if
1097 * property does not have a value, and -EILSEQ if the string is not
1098 * null-terminated within the length of the property data.
1099 *
1100 * The out_string pointer is modified only if a valid string can be decoded.
1101 */
David Rivshinfe99c702016-03-02 16:35:51 -05001102static inline int of_property_read_string_index(const struct device_node *np,
Grant Likelya87fa1d2014-11-03 15:15:35 +00001103 const char *propname,
1104 int index, const char **output)
1105{
1106 int rc = of_property_read_string_helper(np, propname, output, 1, index);
1107 return rc < 0 ? rc : 0;
1108}
1109
1110/**
Jean-Christophe PLAGNIOL-VILLARDfa4d34c2012-02-07 12:12:51 +08001111 * of_property_read_bool - Findfrom a property
1112 * @np: device node from which the property value is to be read.
1113 * @propname: name of the property to be searched.
1114 *
1115 * Search for a property in a device node.
Geert Uytterhoeven31712c92015-05-04 19:42:19 +02001116 * Returns true if the property exists false otherwise.
Jean-Christophe PLAGNIOL-VILLARDfa4d34c2012-02-07 12:12:51 +08001117 */
1118static inline bool of_property_read_bool(const struct device_node *np,
1119 const char *propname)
1120{
1121 struct property *prop = of_find_property(np, propname, NULL);
1122
1123 return prop ? true : false;
1124}
1125
Viresh Kumarbe193242012-11-20 10:15:19 +05301126static inline int of_property_read_u8(const struct device_node *np,
1127 const char *propname,
1128 u8 *out_value)
1129{
1130 return of_property_read_u8_array(np, propname, out_value, 1);
1131}
1132
1133static inline int of_property_read_u16(const struct device_node *np,
1134 const char *propname,
1135 u16 *out_value)
1136{
1137 return of_property_read_u16_array(np, propname, out_value, 1);
1138}
1139
Shawn Guob98c0232011-07-08 16:27:33 +08001140static inline int of_property_read_u32(const struct device_node *np,
Jamie Ilesaac285c2011-08-02 15:45:07 +01001141 const char *propname,
Shawn Guob98c0232011-07-08 16:27:33 +08001142 u32 *out_value)
1143{
1144 return of_property_read_u32_array(np, propname, out_value, 1);
1145}
1146
Sebastian Reichele7a00e42014-04-06 12:52:11 +02001147static inline int of_property_read_s32(const struct device_node *np,
1148 const char *propname,
1149 s32 *out_value)
1150{
1151 return of_property_read_u32(np, propname, (u32*) out_value);
1152}
1153
Joerg Roedelf623ce92016-04-04 17:49:20 +02001154#define of_for_each_phandle(it, err, np, ln, cn, cc) \
1155 for (of_phandle_iterator_init((it), (np), (ln), (cn), (cc)), \
1156 err = of_phandle_iterator_next(it); \
1157 err == 0; \
1158 err = of_phandle_iterator_next(it))
1159
Sebastian Andrzej Siewior2adfffa2013-06-17 16:48:13 +02001160#define of_property_for_each_u32(np, propname, prop, p, u) \
1161 for (prop = of_find_property(np, propname, NULL), \
1162 p = of_prop_next_u32(prop, NULL, &u); \
1163 p; \
1164 p = of_prop_next_u32(prop, p, &u))
1165
1166#define of_property_for_each_string(np, propname, prop, s) \
1167 for (prop = of_find_property(np, propname, NULL), \
1168 s = of_prop_next_string(prop, NULL); \
1169 s; \
1170 s = of_prop_next_string(prop, s))
1171
Rob Herring662372e2014-02-03 08:53:44 -06001172#define for_each_node_by_name(dn, name) \
1173 for (dn = of_find_node_by_name(NULL, name); dn; \
1174 dn = of_find_node_by_name(dn, name))
1175#define for_each_node_by_type(dn, type) \
1176 for (dn = of_find_node_by_type(NULL, type); dn; \
1177 dn = of_find_node_by_type(dn, type))
1178#define for_each_compatible_node(dn, type, compatible) \
1179 for (dn = of_find_compatible_node(NULL, type, compatible); dn; \
1180 dn = of_find_compatible_node(dn, type, compatible))
1181#define for_each_matching_node(dn, matches) \
1182 for (dn = of_find_matching_node(NULL, matches); dn; \
1183 dn = of_find_matching_node(dn, matches))
1184#define for_each_matching_node_and_match(dn, matches, match) \
1185 for (dn = of_find_matching_node_and_match(NULL, matches, match); \
1186 dn; dn = of_find_matching_node_and_match(dn, matches, match))
1187
1188#define for_each_child_of_node(parent, child) \
1189 for (child = of_get_next_child(parent, NULL); child != NULL; \
1190 child = of_get_next_child(parent, child))
1191#define for_each_available_child_of_node(parent, child) \
1192 for (child = of_get_next_available_child(parent, NULL); child != NULL; \
1193 child = of_get_next_available_child(parent, child))
1194
1195#define for_each_node_with_property(dn, prop_name) \
1196 for (dn = of_find_node_with_property(NULL, prop_name); dn; \
1197 dn = of_find_node_with_property(dn, prop_name))
1198
1199static inline int of_get_child_count(const struct device_node *np)
1200{
1201 struct device_node *child;
1202 int num = 0;
1203
1204 for_each_child_of_node(np, child)
1205 num++;
1206
1207 return num;
1208}
1209
1210static inline int of_get_available_child_count(const struct device_node *np)
1211{
1212 struct device_node *child;
1213 int num = 0;
1214
1215 for_each_available_child_of_node(np, child)
1216 num++;
1217
1218 return num;
1219}
1220
Masahiro Yamada71f50c62016-01-22 01:33:51 +09001221#if defined(CONFIG_OF) && !defined(MODULE)
Rob Herring54196cc2014-05-08 16:09:24 -05001222#define _OF_DECLARE(table, name, compat, fn, fn_type) \
1223 static const struct of_device_id __of_table_##name \
1224 __used __section(__##table##_of_table) \
1225 = { .compatible = compat, \
1226 .data = (fn == (fn_type)NULL) ? fn : fn }
1227#else
Thierry Reding5f563582014-10-02 16:01:10 +02001228#define _OF_DECLARE(table, name, compat, fn, fn_type) \
Rob Herring54196cc2014-05-08 16:09:24 -05001229 static const struct of_device_id __of_table_##name \
1230 __attribute__((unused)) \
1231 = { .compatible = compat, \
1232 .data = (fn == (fn_type)NULL) ? fn : fn }
1233#endif
1234
1235typedef int (*of_init_fn_2)(struct device_node *, struct device_node *);
Daniel Lezcanoc35d9292016-04-18 23:06:48 +02001236typedef int (*of_init_fn_1_ret)(struct device_node *);
Rob Herring54196cc2014-05-08 16:09:24 -05001237typedef void (*of_init_fn_1)(struct device_node *);
1238
1239#define OF_DECLARE_1(table, name, compat, fn) \
1240 _OF_DECLARE(table, name, compat, fn, of_init_fn_1)
Daniel Lezcanoc35d9292016-04-18 23:06:48 +02001241#define OF_DECLARE_1_RET(table, name, compat, fn) \
1242 _OF_DECLARE(table, name, compat, fn, of_init_fn_1_ret)
Rob Herring54196cc2014-05-08 16:09:24 -05001243#define OF_DECLARE_2(table, name, compat, fn) \
1244 _OF_DECLARE(table, name, compat, fn, of_init_fn_2)
1245
Pantelis Antoniou201c9102014-07-04 19:58:49 +03001246/**
1247 * struct of_changeset_entry - Holds a changeset entry
1248 *
1249 * @node: list_head for the log list
1250 * @action: notifier action
1251 * @np: pointer to the device node affected
1252 * @prop: pointer to the property affected
1253 * @old_prop: hold a pointer to the original property
1254 *
1255 * Every modification of the device tree during a changeset
1256 * is held in a list of of_changeset_entry structures.
1257 * That way we can recover from a partial application, or we can
1258 * revert the changeset
1259 */
1260struct of_changeset_entry {
1261 struct list_head node;
1262 unsigned long action;
1263 struct device_node *np;
1264 struct property *prop;
1265 struct property *old_prop;
1266};
1267
1268/**
1269 * struct of_changeset - changeset tracker structure
1270 *
1271 * @entries: list_head for the changeset entries
1272 *
1273 * changesets are a convenient way to apply bulk changes to the
1274 * live tree. In case of an error, changes are rolled-back.
1275 * changesets live on after initial application, and if not
1276 * destroyed after use, they can be reverted in one single call.
1277 */
1278struct of_changeset {
1279 struct list_head entries;
1280};
1281
Pantelis Antonioub53a2342014-10-28 22:33:53 +02001282enum of_reconfig_change {
1283 OF_RECONFIG_NO_CHANGE = 0,
1284 OF_RECONFIG_CHANGE_ADD,
1285 OF_RECONFIG_CHANGE_REMOVE,
1286};
1287
Pantelis Antoniou201c9102014-07-04 19:58:49 +03001288#ifdef CONFIG_OF_DYNAMIC
Grant Likelyf6892d12014-11-21 15:14:58 +00001289extern int of_reconfig_notifier_register(struct notifier_block *);
1290extern int of_reconfig_notifier_unregister(struct notifier_block *);
Grant Likelyf5242e52014-11-24 17:58:01 +00001291extern int of_reconfig_notify(unsigned long, struct of_reconfig_data *rd);
1292extern int of_reconfig_get_state_change(unsigned long action,
1293 struct of_reconfig_data *arg);
Grant Likelyf6892d12014-11-21 15:14:58 +00001294
Pantelis Antoniou201c9102014-07-04 19:58:49 +03001295extern void of_changeset_init(struct of_changeset *ocs);
1296extern void of_changeset_destroy(struct of_changeset *ocs);
1297extern int of_changeset_apply(struct of_changeset *ocs);
1298extern int of_changeset_revert(struct of_changeset *ocs);
1299extern int of_changeset_action(struct of_changeset *ocs,
1300 unsigned long action, struct device_node *np,
1301 struct property *prop);
1302
1303static inline int of_changeset_attach_node(struct of_changeset *ocs,
1304 struct device_node *np)
1305{
1306 return of_changeset_action(ocs, OF_RECONFIG_ATTACH_NODE, np, NULL);
1307}
1308
1309static inline int of_changeset_detach_node(struct of_changeset *ocs,
1310 struct device_node *np)
1311{
1312 return of_changeset_action(ocs, OF_RECONFIG_DETACH_NODE, np, NULL);
1313}
1314
1315static inline int of_changeset_add_property(struct of_changeset *ocs,
1316 struct device_node *np, struct property *prop)
1317{
1318 return of_changeset_action(ocs, OF_RECONFIG_ADD_PROPERTY, np, prop);
1319}
1320
1321static inline int of_changeset_remove_property(struct of_changeset *ocs,
1322 struct device_node *np, struct property *prop)
1323{
1324 return of_changeset_action(ocs, OF_RECONFIG_REMOVE_PROPERTY, np, prop);
1325}
1326
1327static inline int of_changeset_update_property(struct of_changeset *ocs,
1328 struct device_node *np, struct property *prop)
1329{
1330 return of_changeset_action(ocs, OF_RECONFIG_UPDATE_PROPERTY, np, prop);
1331}
Grant Likelyf6892d12014-11-21 15:14:58 +00001332#else /* CONFIG_OF_DYNAMIC */
1333static inline int of_reconfig_notifier_register(struct notifier_block *nb)
1334{
1335 return -EINVAL;
1336}
1337static inline int of_reconfig_notifier_unregister(struct notifier_block *nb)
1338{
1339 return -EINVAL;
1340}
Grant Likelyf5242e52014-11-24 17:58:01 +00001341static inline int of_reconfig_notify(unsigned long action,
1342 struct of_reconfig_data *arg)
Grant Likelyf6892d12014-11-21 15:14:58 +00001343{
1344 return -EINVAL;
1345}
Grant Likelyf5242e52014-11-24 17:58:01 +00001346static inline int of_reconfig_get_state_change(unsigned long action,
1347 struct of_reconfig_data *arg)
Grant Likelyf6892d12014-11-21 15:14:58 +00001348{
1349 return -EINVAL;
1350}
1351#endif /* CONFIG_OF_DYNAMIC */
Pantelis Antoniou201c9102014-07-04 19:58:49 +03001352
Romain Periera4b4e042014-10-14 06:31:09 +00001353/**
Romain Perier8f731102014-11-25 12:28:25 +00001354 * of_device_is_system_power_controller - Tells if system-power-controller is found for device_node
Romain Periera4b4e042014-10-14 06:31:09 +00001355 * @np: Pointer to the given device_node
1356 *
1357 * return true if present false otherwise
1358 */
Romain Perier8f731102014-11-25 12:28:25 +00001359static inline bool of_device_is_system_power_controller(const struct device_node *np)
Romain Periera4b4e042014-10-14 06:31:09 +00001360{
Romain Perier8f731102014-11-25 12:28:25 +00001361 return of_property_read_bool(np, "system-power-controller");
Romain Periera4b4e042014-10-14 06:31:09 +00001362}
1363
Linus Torvalds7ef58b32014-12-11 13:06:58 -08001364/**
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001365 * Overlay support
1366 */
1367
Alan Tull39a842e2016-11-01 14:14:22 -05001368enum of_overlay_notify_action {
Frank Rowand24789c52017-10-17 16:36:26 -07001369 OF_OVERLAY_PRE_APPLY = 0,
Alan Tull39a842e2016-11-01 14:14:22 -05001370 OF_OVERLAY_POST_APPLY,
1371 OF_OVERLAY_PRE_REMOVE,
1372 OF_OVERLAY_POST_REMOVE,
1373};
1374
1375struct of_overlay_notify_data {
1376 struct device_node *overlay;
1377 struct device_node *target;
1378};
1379
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001380#ifdef CONFIG_OF_OVERLAY
1381
Frank Rowand39a751a2018-02-12 00:19:42 -08001382int of_overlay_fdt_apply(const void *overlay_fdt, u32 overlay_fdt_size,
1383 int *ovcs_id);
Frank Rowand24789c52017-10-17 16:36:26 -07001384int of_overlay_remove(int *ovcs_id);
Frank Rowand0290c4c2017-10-17 16:36:23 -07001385int of_overlay_remove_all(void);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001386
Alan Tull39a842e2016-11-01 14:14:22 -05001387int of_overlay_notifier_register(struct notifier_block *nb);
1388int of_overlay_notifier_unregister(struct notifier_block *nb);
1389
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001390#else
1391
Frank Rowand39a751a2018-02-12 00:19:42 -08001392static inline int of_overlay_fdt_apply(void *overlay_fdt, int *ovcs_id)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001393{
1394 return -ENOTSUPP;
1395}
1396
Frank Rowand24789c52017-10-17 16:36:26 -07001397static inline int of_overlay_remove(int *ovcs_id)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001398{
1399 return -ENOTSUPP;
1400}
1401
Frank Rowand0290c4c2017-10-17 16:36:23 -07001402static inline int of_overlay_remove_all(void)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001403{
1404 return -ENOTSUPP;
1405}
1406
Alan Tull39a842e2016-11-01 14:14:22 -05001407static inline int of_overlay_notifier_register(struct notifier_block *nb)
1408{
1409 return 0;
1410}
1411
1412static inline int of_overlay_notifier_unregister(struct notifier_block *nb)
1413{
1414 return 0;
1415}
1416
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001417#endif
1418
Stephen Rothwell76c1ce72007-05-01 16:19:07 +10001419#endif /* _LINUX_OF_H */