blob: 6a996d952171e1c282c5c78c07352bef79b22acd [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass4984de22017-05-17 17:18:10 -06002/*
3 * Copyright (c) 2017 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Simon Glass4984de22017-05-17 17:18:10 -06005 */
6
7#ifndef _DM_OFNODE_H
8#define _DM_OFNODE_H
9
Simon Glass9e512042017-05-18 20:08:58 -060010/* TODO(sjg@chromium.org): Drop fdtdec.h include */
11#include <fdtdec.h>
12#include <dm/of.h>
Simon Glassec1add12020-12-16 17:25:06 -070013#include <dm/of_access.h>
Stefan Roese45dbe752020-09-23 08:23:27 +020014#include <log.h>
Simon Glass9e512042017-05-18 20:08:58 -060015
16/* Enable checks to protect against invalid calls */
17#undef OF_CHECKS
18
Simon Glassdcf98852017-07-25 08:29:55 -060019struct resource;
20
Simon Glass4984de22017-05-17 17:18:10 -060021/**
Patrick Delaunaybe74f712022-01-12 10:53:49 +010022 * typedef union ofnode_union ofnode - reference to a device tree node
Simon Glass4984de22017-05-17 17:18:10 -060023 *
24 * This union can hold either a straightforward pointer to a struct device_node
25 * in the live device tree, or an offset within the flat device tree. In the
26 * latter case, the pointer value is just the integer offset within the flat DT.
27 *
28 * Thus we can reference nodes in both the live tree (once available) and the
29 * flat tree (until then). Functions are available to translate between an
Patrick Delaunaybe74f712022-01-12 10:53:49 +010030 * ofnode and either an offset or a `struct device_node *`.
Simon Glass4984de22017-05-17 17:18:10 -060031 *
32 * The reference can also hold a null offset, in which case the pointer value
Simon Glass9e512042017-05-18 20:08:58 -060033 * here is NULL. This corresponds to a struct device_node * value of
Simon Glass4984de22017-05-17 17:18:10 -060034 * NULL, or an offset of -1.
35 *
36 * There is no ambiguity as to whether ofnode holds an offset or a node
37 * pointer: when the live tree is active it holds a node pointer, otherwise it
38 * holds an offset. The value itself does not need to be unique and in theory
39 * the same value could point to a valid device node or a valid offset. We
40 * could arrange for a unique value to be used (e.g. by making the pointer
41 * point to an offset within the flat device tree in the case of an offset) but
42 * this increases code size slightly due to the subtraction. Since it offers no
43 * real benefit, the approach described here seems best.
44 *
45 * For now these points use constant types, since we don't allow writing
46 * the DT.
47 *
48 * @np: Pointer to device node, used for live tree
Baruch Siachafc1a782017-11-09 13:44:28 +020049 * @of_offset: Pointer into flat device tree, used for flat tree. Note that this
Simon Glass4984de22017-05-17 17:18:10 -060050 * is not a really a pointer to a node: it is an offset value. See above.
51 */
52typedef union ofnode_union {
Heinrich Schuchardtb9390ce2020-07-24 18:39:43 +020053 const struct device_node *np;
Simon Glass4984de22017-05-17 17:18:10 -060054 long of_offset;
55} ofnode;
56
Simon Glass9e512042017-05-18 20:08:58 -060057struct ofnode_phandle_args {
58 ofnode node;
59 int args_count;
60 uint32_t args[OF_MAX_PHANDLE_ARGS];
61};
62
63/**
Patrick Delaunaybe74f712022-01-12 10:53:49 +010064 * struct ofprop - reference to a property of a device tree node
Patrick Delaunayce891fca2020-01-13 11:34:56 +010065 *
66 * This struct hold the reference on one property of one node,
67 * using struct ofnode and an offset within the flat device tree or either
68 * a pointer to a struct property in the live device tree.
69 *
70 * Thus we can reference arguments in both the live tree and the flat tree.
71 *
72 * The property reference can also hold a null reference. This corresponds to
73 * a struct property NULL pointer or an offset of -1.
74 *
75 * @node: Pointer to device node
76 * @offset: Pointer into flat device tree, used for flat tree.
77 * @prop: Pointer to property, used for live treee.
78 */
79
80struct ofprop {
81 ofnode node;
82 union {
83 int offset;
84 const struct property *prop;
85 };
86};
87
88/**
Stefan Roese45dbe752020-09-23 08:23:27 +020089 * ofnode_to_np() - convert an ofnode to a live DT node pointer
Simon Glass9e512042017-05-18 20:08:58 -060090 *
91 * This cannot be called if the reference contains an offset.
92 *
93 * @node: Reference containing struct device_node * (possibly invalid)
Patrick Delaunaybe74f712022-01-12 10:53:49 +010094 * Return: pointer to device node (can be NULL)
Simon Glass9e512042017-05-18 20:08:58 -060095 */
96static inline const struct device_node *ofnode_to_np(ofnode node)
97{
98#ifdef OF_CHECKS
99 if (!of_live_active())
100 return NULL;
101#endif
102 return node.np;
103}
104
Simon Glass4984de22017-05-17 17:18:10 -0600105/**
106 * ofnode_to_offset() - convert an ofnode to a flat DT offset
107 *
108 * This cannot be called if the reference contains a node pointer.
109 *
110 * @node: Reference containing offset (possibly invalid)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100111 * Return: DT offset (can be -1)
Simon Glass4984de22017-05-17 17:18:10 -0600112 */
113static inline int ofnode_to_offset(ofnode node)
114{
Simon Glass9e512042017-05-18 20:08:58 -0600115#ifdef OF_CHECKS
116 if (of_live_active())
117 return -1;
118#endif
Simon Glass4984de22017-05-17 17:18:10 -0600119 return node.of_offset;
120}
121
122/**
123 * ofnode_valid() - check if an ofnode is valid
124 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100125 * @node: Reference containing offset (possibly invalid)
126 * Return: true if the reference contains a valid ofnode, false if it is NULL
Simon Glass4984de22017-05-17 17:18:10 -0600127 */
128static inline bool ofnode_valid(ofnode node)
129{
Simon Glass9e512042017-05-18 20:08:58 -0600130 if (of_live_active())
131 return node.np != NULL;
132 else
Patrick Delaunay6d9949f2020-09-24 17:26:20 +0200133 return node.of_offset >= 0;
Simon Glass4984de22017-05-17 17:18:10 -0600134}
135
136/**
137 * offset_to_ofnode() - convert a DT offset to an ofnode
138 *
139 * @of_offset: DT offset (either valid, or -1)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100140 * Return: reference to the associated DT offset
Simon Glass4984de22017-05-17 17:18:10 -0600141 */
142static inline ofnode offset_to_ofnode(int of_offset)
143{
144 ofnode node;
145
Simon Glass9e512042017-05-18 20:08:58 -0600146 if (of_live_active())
147 node.np = NULL;
148 else
Simon Glassb14c5332019-12-06 21:41:36 -0700149 node.of_offset = of_offset >= 0 ? of_offset : -1;
Simon Glass4984de22017-05-17 17:18:10 -0600150
151 return node;
152}
153
154/**
Simon Glass9e512042017-05-18 20:08:58 -0600155 * np_to_ofnode() - convert a node pointer to an ofnode
156 *
157 * @np: Live node pointer (can be NULL)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100158 * Return: reference to the associated node pointer
Simon Glass9e512042017-05-18 20:08:58 -0600159 */
160static inline ofnode np_to_ofnode(const struct device_node *np)
161{
162 ofnode node;
163
164 node.np = np;
165
166 return node;
167}
168
169/**
170 * ofnode_is_np() - check if a reference is a node pointer
171 *
172 * This function associated that if there is a valid live tree then all
173 * references will use it. This is because using the flat DT when the live tree
174 * is valid is not permitted.
175 *
176 * @node: reference to check (possibly invalid)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100177 * Return: true if the reference is a live node pointer, false if it is a DT
Simon Glass9e512042017-05-18 20:08:58 -0600178 * offset
179 */
180static inline bool ofnode_is_np(ofnode node)
181{
182#ifdef OF_CHECKS
183 /*
184 * Check our assumption that flat tree offsets are not used when a
185 * live tree is in use.
186 */
187 assert(!ofnode_valid(node) ||
Stefan Roese45dbe752020-09-23 08:23:27 +0200188 (of_live_active() ? ofnode_to_np(node)
189 : ofnode_to_np(node)));
Simon Glass9e512042017-05-18 20:08:58 -0600190#endif
191 return of_live_active() && ofnode_valid(node);
192}
193
194/**
Simon Glass4984de22017-05-17 17:18:10 -0600195 * ofnode_equal() - check if two references are equal
196 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100197 * @ref1: first reference to check (possibly invalid)
198 * @ref2: second reference to check (possibly invalid)
199 * Return: true if equal, else false
Simon Glass4984de22017-05-17 17:18:10 -0600200 */
201static inline bool ofnode_equal(ofnode ref1, ofnode ref2)
202{
203 /* We only need to compare the contents */
204 return ref1.of_offset == ref2.of_offset;
205}
206
Simon Glass9e512042017-05-18 20:08:58 -0600207/**
208 * ofnode_null() - Obtain a null ofnode
209 *
210 * This returns an ofnode which points to no node. It works both with the flat
211 * tree and livetree.
212 */
213static inline ofnode ofnode_null(void)
214{
215 ofnode node;
216
217 if (of_live_active())
218 node.np = NULL;
219 else
220 node.of_offset = -1;
221
222 return node;
223}
224
Simon Glassd0c20ce2020-11-28 17:50:07 -0700225static inline ofnode ofnode_root(void)
226{
227 ofnode node;
228
229 if (of_live_active())
230 node.np = gd_of_root();
231 else
232 node.of_offset = 0;
233
234 return node;
235}
236
Simon Glass9e512042017-05-18 20:08:58 -0600237/**
Kishon Vijay Abraham I77cbaf82021-07-21 21:28:30 +0530238 * ofnode_name_eq() - Check if the node name is equivalent to a given name
239 * ignoring the unit address
240 *
241 * @node: valid node reference that has to be compared
242 * @name: name that has to be compared with the node name
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100243 * Return: true if matches, false if it doesn't match
Kishon Vijay Abraham I77cbaf82021-07-21 21:28:30 +0530244 */
245bool ofnode_name_eq(ofnode node, const char *name);
246
247/**
Simon Glass9e512042017-05-18 20:08:58 -0600248 * ofnode_read_u32() - Read a 32-bit integer from a property
249 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100250 * @node: valid node reference to read property from
Simon Glass9e512042017-05-18 20:08:58 -0600251 * @propname: name of the property to read from
252 * @outp: place to put value (if found)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100253 * Return: 0 if OK, -ve on error
Simon Glass9e512042017-05-18 20:08:58 -0600254 */
255int ofnode_read_u32(ofnode node, const char *propname, u32 *outp);
256
257/**
Dario Binacchi4bb70752020-03-29 18:04:41 +0200258 * ofnode_read_u32_index() - Read a 32-bit integer from a multi-value property
259 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100260 * @node: valid node reference to read property from
Dario Binacchi4bb70752020-03-29 18:04:41 +0200261 * @propname: name of the property to read from
262 * @index: index of the integer to return
263 * @outp: place to put value (if found)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100264 * Return: 0 if OK, -ve on error
Dario Binacchi4bb70752020-03-29 18:04:41 +0200265 */
266int ofnode_read_u32_index(ofnode node, const char *propname, int index,
267 u32 *outp);
268
269/**
Simon Glass9e512042017-05-18 20:08:58 -0600270 * ofnode_read_s32() - Read a 32-bit integer from a property
271 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100272 * @node: valid node reference to read property from
Simon Glass9e512042017-05-18 20:08:58 -0600273 * @propname: name of the property to read from
274 * @outp: place to put value (if found)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100275 * Return: 0 if OK, -ve on error
Simon Glass9e512042017-05-18 20:08:58 -0600276 */
277static inline int ofnode_read_s32(ofnode node, const char *propname,
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100278 s32 *outp)
Simon Glass9e512042017-05-18 20:08:58 -0600279{
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100280 return ofnode_read_u32(node, propname, (u32 *)outp);
Simon Glass9e512042017-05-18 20:08:58 -0600281}
282
283/**
284 * ofnode_read_u32_default() - Read a 32-bit integer from a property
285 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100286 * @node: valid node reference to read property from
Simon Glass9e512042017-05-18 20:08:58 -0600287 * @propname: name of the property to read from
288 * @def: default value to return if the property has no value
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100289 * Return: property value, or @def if not found
Simon Glass9e512042017-05-18 20:08:58 -0600290 */
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100291u32 ofnode_read_u32_default(ofnode node, const char *propname, u32 def);
Simon Glass9e512042017-05-18 20:08:58 -0600292
293/**
Dario Binacchi4bb70752020-03-29 18:04:41 +0200294 * ofnode_read_u32_index_default() - Read a 32-bit integer from a multi-value
295 * property
296 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100297 * @node: valid node reference to read property from
Dario Binacchi4bb70752020-03-29 18:04:41 +0200298 * @propname: name of the property to read from
299 * @index: index of the integer to return
300 * @def: default value to return if the property has no value
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100301 * Return: property value, or @def if not found
Dario Binacchi4bb70752020-03-29 18:04:41 +0200302 */
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100303u32 ofnode_read_u32_index_default(ofnode node, const char *propname, int index,
Dario Binacchi4bb70752020-03-29 18:04:41 +0200304 u32 def);
305
306/**
Simon Glass9e512042017-05-18 20:08:58 -0600307 * ofnode_read_s32_default() - Read a 32-bit integer from a property
308 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100309 * @node: valid node reference to read property from
Simon Glass9e512042017-05-18 20:08:58 -0600310 * @propname: name of the property to read from
311 * @def: default value to return if the property has no value
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100312 * Return: property value, or @def if not found
Simon Glass9e512042017-05-18 20:08:58 -0600313 */
314int ofnode_read_s32_default(ofnode node, const char *propname, s32 def);
315
316/**
Lukas Auerafb30122018-11-22 11:26:35 +0100317 * ofnode_read_u64() - Read a 64-bit integer from a property
318 *
319 * @node: valid node reference to read property from
320 * @propname: name of the property to read from
321 * @outp: place to put value (if found)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100322 * Return: 0 if OK, -ve on error
Lukas Auerafb30122018-11-22 11:26:35 +0100323 */
324int ofnode_read_u64(ofnode node, const char *propname, u64 *outp);
325
326/**
Simon Glass7e5196c2018-06-11 13:07:10 -0600327 * ofnode_read_u64_default() - Read a 64-bit integer from a property
328 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100329 * @node: valid node reference to read property from
Simon Glass7e5196c2018-06-11 13:07:10 -0600330 * @propname: name of the property to read from
331 * @def: default value to return if the property has no value
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100332 * Return: property value, or @def if not found
Simon Glass7e5196c2018-06-11 13:07:10 -0600333 */
T Karthik Reddy3f3d7712019-09-02 16:34:30 +0200334u64 ofnode_read_u64_default(ofnode node, const char *propname, u64 def);
Simon Glass7e5196c2018-06-11 13:07:10 -0600335
336/**
Simon Glassa8167d82020-01-27 08:49:44 -0700337 * ofnode_read_prop() - Read a property from a node
338 *
339 * @node: valid node reference to read property from
340 * @propname: name of the property to read
341 * @sizep: if non-NULL, returns the size of the property, or an error code
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100342 * if not found
343 * Return: property value, or NULL if there is no such property
Simon Glassa8167d82020-01-27 08:49:44 -0700344 */
345const void *ofnode_read_prop(ofnode node, const char *propname, int *sizep);
346
347/**
Simon Glass9e512042017-05-18 20:08:58 -0600348 * ofnode_read_string() - Read a string from a property
349 *
Simon Glassa8167d82020-01-27 08:49:44 -0700350 * @node: valid node reference to read property from
Simon Glass9e512042017-05-18 20:08:58 -0600351 * @propname: name of the property to read
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100352 * Return: string from property value, or NULL if there is no such property
Simon Glass9e512042017-05-18 20:08:58 -0600353 */
354const char *ofnode_read_string(ofnode node, const char *propname);
355
356/**
Simon Glassbed77492017-05-18 20:09:01 -0600357 * ofnode_read_u32_array() - Find and read an array of 32 bit integers
Simon Glass9e512042017-05-18 20:08:58 -0600358 *
359 * @node: valid node reference to read property from
360 * @propname: name of the property to read
361 * @out_values: pointer to return value, modified only if return value is 0
362 * @sz: number of array elements to read
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100363 * Return: 0 if OK, -ve on error
Simon Glass9e512042017-05-18 20:08:58 -0600364 *
365 * Search for a property in a device node and read 32-bit value(s) from
366 * it. Returns 0 on success, -EINVAL if the property does not exist,
367 * -ENODATA if property does not have a value, and -EOVERFLOW if the
368 * property data isn't large enough.
369 *
370 * The out_values is modified only if a valid u32 value can be decoded.
371 */
372int ofnode_read_u32_array(ofnode node, const char *propname,
373 u32 *out_values, size_t sz);
374
375/**
376 * ofnode_read_bool() - read a boolean value from a property
377 *
378 * @node: valid node reference to read property from
379 * @propname: name of property to read
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100380 * Return: true if property is present (meaning true), false if not present
Simon Glass9e512042017-05-18 20:08:58 -0600381 */
382bool ofnode_read_bool(ofnode node, const char *propname);
383
384/**
385 * ofnode_find_subnode() - find a named subnode of a parent node
386 *
387 * @node: valid reference to parent node
388 * @subnode_name: name of subnode to find
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100389 * Return: reference to subnode (which can be invalid if there is no such
Simon Glass9e512042017-05-18 20:08:58 -0600390 * subnode)
391 */
392ofnode ofnode_find_subnode(ofnode node, const char *subnode_name);
393
Simon Glassec1add12020-12-16 17:25:06 -0700394#if CONFIG_IS_ENABLED(DM_INLINE_OFNODE)
Simon Glass401d1c42020-10-30 21:38:53 -0600395#include <asm/global_data.h>
396
Simon Glassec1add12020-12-16 17:25:06 -0700397static inline bool ofnode_is_enabled(ofnode node)
398{
399 if (ofnode_is_np(node)) {
400 return of_device_is_available(ofnode_to_np(node));
401 } else {
402 return fdtdec_get_is_enabled(gd->fdt_blob,
403 ofnode_to_offset(node));
404 }
405}
406
407static inline ofnode ofnode_first_subnode(ofnode node)
408{
409 assert(ofnode_valid(node));
410 if (ofnode_is_np(node))
411 return np_to_ofnode(node.np->child);
412
413 return offset_to_ofnode(
414 fdt_first_subnode(gd->fdt_blob, ofnode_to_offset(node)));
415}
416
417static inline ofnode ofnode_next_subnode(ofnode node)
418{
419 assert(ofnode_valid(node));
420 if (ofnode_is_np(node))
421 return np_to_ofnode(node.np->sibling);
422
423 return offset_to_ofnode(
424 fdt_next_subnode(gd->fdt_blob, ofnode_to_offset(node)));
425}
426#else
427/**
428 * ofnode_is_enabled() - Checks whether a node is enabled.
429 * This looks for a 'status' property. If this exists, then returns true if
430 * the status is 'okay' and false otherwise. If there is no status property,
431 * it returns true on the assumption that anything mentioned should be enabled
432 * by default.
433 *
434 * @node: node to examine
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100435 * Return: false (not enabled) or true (enabled)
Simon Glassec1add12020-12-16 17:25:06 -0700436 */
437bool ofnode_is_enabled(ofnode node);
438
Simon Glass9e512042017-05-18 20:08:58 -0600439/**
440 * ofnode_first_subnode() - find the first subnode of a parent node
441 *
442 * @node: valid reference to a valid parent node
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100443 * Return: reference to the first subnode (which can be invalid if the parent
Simon Glass9e512042017-05-18 20:08:58 -0600444 * node has no subnodes)
445 */
446ofnode ofnode_first_subnode(ofnode node);
447
448/**
449 * ofnode_next_subnode() - find the next sibling of a subnode
450 *
451 * @node: valid reference to previous node (sibling)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100452 * Return: reference to the next subnode (which can be invalid if the node
Simon Glass9e512042017-05-18 20:08:58 -0600453 * has no more siblings)
454 */
455ofnode ofnode_next_subnode(ofnode node);
Simon Glassec1add12020-12-16 17:25:06 -0700456#endif /* DM_INLINE_OFNODE */
Simon Glass9e512042017-05-18 20:08:58 -0600457
458/**
Philipp Tomsiche2d59972018-02-23 17:38:49 +0100459 * ofnode_get_parent() - get the ofnode's parent (enclosing ofnode)
460 *
461 * @node: valid node to look up
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100462 * Return: ofnode reference of the parent node
Philipp Tomsiche2d59972018-02-23 17:38:49 +0100463 */
464ofnode ofnode_get_parent(ofnode node);
465
466/**
Simon Glass9e512042017-05-18 20:08:58 -0600467 * ofnode_get_name() - get the name of a node
468 *
469 * @node: valid node to look up
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100470 * Return: name of node
Simon Glass9e512042017-05-18 20:08:58 -0600471 */
472const char *ofnode_get_name(ofnode node);
473
474/**
Marek Behún0e116be2021-05-26 14:08:18 +0200475 * ofnode_get_path() - get the full path of a node
476 *
477 * @node: valid node to look up
478 * @buf: buffer to write the node path into
479 * @buflen: buffer size
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100480 * Return: 0 if OK, -ve on error
Marek Behún0e116be2021-05-26 14:08:18 +0200481 */
482int ofnode_get_path(ofnode node, char *buf, int buflen);
483
484/**
Kever Yangb4f20762018-02-23 17:38:50 +0100485 * ofnode_get_by_phandle() - get ofnode from phandle
486 *
487 * @phandle: phandle to look up
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100488 * Return: ofnode reference to the phandle
Kever Yangb4f20762018-02-23 17:38:50 +0100489 */
490ofnode ofnode_get_by_phandle(uint phandle);
491
492/**
Simon Glass9e512042017-05-18 20:08:58 -0600493 * ofnode_read_size() - read the size of a property
494 *
495 * @node: node to check
496 * @propname: property to check
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100497 * Return: size of property if present, or -EINVAL if not
Simon Glass9e512042017-05-18 20:08:58 -0600498 */
499int ofnode_read_size(ofnode node, const char *propname);
500
501/**
Keerthye679d032019-04-24 17:19:53 +0530502 * ofnode_get_addr_size_index() - get an address/size from a node
503 * based on index
504 *
505 * This reads the register address/size from a node based on index
506 *
507 * @node: node to read from
508 * @index: Index of address to read (0 for first)
509 * @size: Pointer to size of the address
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100510 * Return: address, or FDT_ADDR_T_NONE if not present or invalid
Keerthye679d032019-04-24 17:19:53 +0530511 */
512phys_addr_t ofnode_get_addr_size_index(ofnode node, int index,
513 fdt_size_t *size);
514
515/**
Marek Behún31a7b712021-05-26 14:08:17 +0200516 * ofnode_get_addr_size_index_notrans() - get an address/size from a node
517 * based on index, without address
518 * translation
519 *
520 * This reads the register address/size from a node based on index.
521 * The resulting address is not translated. Useful for example for on-disk
522 * addresses.
523 *
524 * @node: node to read from
525 * @index: Index of address to read (0 for first)
526 * @size: Pointer to size of the address
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100527 * Return: address, or FDT_ADDR_T_NONE if not present or invalid
Marek Behún31a7b712021-05-26 14:08:17 +0200528 */
529phys_addr_t ofnode_get_addr_size_index_notrans(ofnode node, int index,
530 fdt_size_t *size);
531
532/**
Simon Glassbed77492017-05-18 20:09:01 -0600533 * ofnode_get_addr_index() - get an address from a node
534 *
535 * This reads the register address from a node
536 *
537 * @node: node to read from
538 * @index: Index of address to read (0 for first)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100539 * Return: address, or FDT_ADDR_T_NONE if not present or invalid
Simon Glassbed77492017-05-18 20:09:01 -0600540 */
541phys_addr_t ofnode_get_addr_index(ofnode node, int index);
542
543/**
544 * ofnode_get_addr() - get an address from a node
545 *
546 * This reads the register address from a node
547 *
548 * @node: node to read from
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100549 * Return: address, or FDT_ADDR_T_NONE if not present or invalid
Simon Glassbed77492017-05-18 20:09:01 -0600550 */
551phys_addr_t ofnode_get_addr(ofnode node);
552
553/**
Chen Guanqiaoaa351a12021-04-12 14:51:11 +0800554 * ofnode_get_size() - get size from a node
555 *
556 * This reads the register size from a node
557 *
558 * @node: node to read from
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100559 * Return: size of the address, or FDT_SIZE_T_NONE if not present or invalid
Chen Guanqiaoaa351a12021-04-12 14:51:11 +0800560 */
561fdt_size_t ofnode_get_size(ofnode node);
562
563/**
Simon Glass9e512042017-05-18 20:08:58 -0600564 * ofnode_stringlist_search() - find a string in a string list and return index
565 *
566 * Note that it is possible for this function to succeed on property values
567 * that are not NUL-terminated. That's because the function will stop after
568 * finding the first occurrence of @string. This can for example happen with
569 * small-valued cell properties, such as #address-cells, when searching for
570 * the empty string.
571 *
572 * @node: node to check
573 * @propname: name of the property containing the string list
574 * @string: string to look up in the string list
575 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100576 * Return:
Simon Glass9e512042017-05-18 20:08:58 -0600577 * the index of the string in the list of strings
578 * -ENODATA if the property is not found
579 * -EINVAL on some other error
580 */
581int ofnode_stringlist_search(ofnode node, const char *propname,
582 const char *string);
583
584/**
Simon Glass8c293d62017-06-12 06:21:28 -0600585 * ofnode_read_string_index() - obtain an indexed string from a string list
Simon Glass9e512042017-05-18 20:08:58 -0600586 *
587 * Note that this will successfully extract strings from properties with
588 * non-NUL-terminated values. For example on small-valued cell properties
589 * this function will return the empty string.
590 *
591 * If non-NULL, the length of the string (on success) or a negative error-code
592 * (on failure) will be stored in the integer pointer to by lenp.
593 *
594 * @node: node to check
595 * @propname: name of the property containing the string list
Simon Glass32c6a8e2021-10-23 17:26:06 -0600596 * @index: index of the string to return (cannot be negative)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100597 * @outp: return location for the string
Simon Glass9e512042017-05-18 20:08:58 -0600598 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100599 * Return:
Simon Glass32c6a8e2021-10-23 17:26:06 -0600600 * 0 if found or -ve error value if not found
Simon Glass9e512042017-05-18 20:08:58 -0600601 */
602int ofnode_read_string_index(ofnode node, const char *propname, int index,
603 const char **outp);
604
605/**
Simon Glass8c293d62017-06-12 06:21:28 -0600606 * ofnode_read_string_count() - find the number of strings in a string list
607 *
608 * @node: node to check
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100609 * @property: name of the property containing the string list
610 * Return:
Simon Glass8c293d62017-06-12 06:21:28 -0600611 * number of strings in the list, or -ve error value if not found
612 */
613int ofnode_read_string_count(ofnode node, const char *property);
614
615/**
Simon Glass075bfc92021-10-23 17:26:07 -0600616 * ofnode_read_string_list() - read a list of strings
617 *
618 * This produces a list of string pointers with each one pointing to a string
619 * in the string list. If the property does not exist, it returns {NULL}.
620 *
621 * The data is allocated and the caller is reponsible for freeing the return
622 * value (the list of string pointers). The strings themselves may not be
623 * changed as they point directly into the devicetree property.
624 *
625 * @node: node to check
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100626 * @property: name of the property containing the string list
Simon Glass075bfc92021-10-23 17:26:07 -0600627 * @listp: returns an allocated, NULL-terminated list of strings if the return
628 * value is > 0, else is set to NULL
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100629 * Return:
630 * number of strings in list, 0 if none, -ENOMEM if out of memory,
631 * -EINVAL if no such property, -EENODATA if property is empty
Simon Glass075bfc92021-10-23 17:26:07 -0600632 */
633int ofnode_read_string_list(ofnode node, const char *property,
634 const char ***listp);
635
636/**
Simon Glass9e512042017-05-18 20:08:58 -0600637 * ofnode_parse_phandle_with_args() - Find a node pointed by phandle in a list
638 *
639 * This function is useful to parse lists of phandles and their arguments.
640 * Returns 0 on success and fills out_args, on error returns appropriate
641 * errno value.
642 *
643 * Caller is responsible to call of_node_put() on the returned out_args->np
644 * pointer.
645 *
646 * Example:
647 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100648 * .. code-block::
Simon Glass9e512042017-05-18 20:08:58 -0600649 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100650 * phandle1: node1 {
651 * #list-cells = <2>;
652 * };
653 * phandle2: node2 {
654 * #list-cells = <1>;
655 * };
656 * node3 {
657 * list = <&phandle1 1 2 &phandle2 3>;
658 * };
Simon Glass9e512042017-05-18 20:08:58 -0600659 *
660 * To get a device_node of the `node2' node you may call this:
661 * ofnode_parse_phandle_with_args(node3, "list", "#list-cells", 0, 1, &args);
662 *
663 * @node: device tree node containing a list
664 * @list_name: property name that contains a list
665 * @cells_name: property name that specifies phandles' arguments count
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100666 * @cell_count: Cell count to use if @cells_name is NULL
Simon Glass9e512042017-05-18 20:08:58 -0600667 * @index: index of a phandle to parse out
668 * @out_args: optional pointer to output arguments structure (will be filled)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100669 * Return:
670 * 0 on success (with @out_args filled out if not NULL), -ENOENT if
671 * @list_name does not exist, -EINVAL if a phandle was not found,
672 * @cells_name could not be found, the arguments were truncated or there
673 * were too many arguments.
Simon Glass9e512042017-05-18 20:08:58 -0600674 */
675int ofnode_parse_phandle_with_args(ofnode node, const char *list_name,
676 const char *cells_name, int cell_count,
677 int index,
678 struct ofnode_phandle_args *out_args);
679
680/**
Patrice Chotard642346a2017-07-18 11:57:08 +0200681 * ofnode_count_phandle_with_args() - Count number of phandle in a list
682 *
683 * This function is useful to count phandles into a list.
684 * Returns number of phandle on success, on error returns appropriate
685 * errno value.
686 *
687 * @node: device tree node containing a list
688 * @list_name: property name that contains a list
689 * @cells_name: property name that specifies phandles' arguments count
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100690 * @cell_count: Cell count to use if @cells_name is NULL
691 * Return:
692 * number of phandle on success, -ENOENT if @list_name does not exist,
693 * -EINVAL if a phandle was not found, @cells_name could not be found.
Patrice Chotard642346a2017-07-18 11:57:08 +0200694 */
695int ofnode_count_phandle_with_args(ofnode node, const char *list_name,
Patrick Delaunay89f68302020-09-25 09:41:14 +0200696 const char *cells_name, int cell_count);
Patrice Chotard642346a2017-07-18 11:57:08 +0200697
698/**
Simon Glass9e512042017-05-18 20:08:58 -0600699 * ofnode_path() - find a node by full path
700 *
701 * @path: Full path to node, e.g. "/bus/spi@1"
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100702 * Return: reference to the node found. Use ofnode_valid() to check if it exists
Simon Glass9e512042017-05-18 20:08:58 -0600703 */
704ofnode ofnode_path(const char *path);
705
706/**
Simon Glassbd933bf2020-01-27 08:49:46 -0700707 * ofnode_read_chosen_prop() - get the value of a chosen property
708 *
709 * This looks for a property within the /chosen node and returns its value
710 *
711 * @propname: Property name to look for
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100712 * @sizep: Returns size of property, or `FDT_ERR_...` error code if function
Simon Glassbd933bf2020-01-27 08:49:46 -0700713 * returns NULL
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100714 * Return: property value if found, else NULL
Simon Glassbd933bf2020-01-27 08:49:46 -0700715 */
716const void *ofnode_read_chosen_prop(const char *propname, int *sizep);
717
718/**
Simon Glass14ca9f72020-01-27 08:49:43 -0700719 * ofnode_read_chosen_string() - get the string value of a chosen property
Simon Glass9e512042017-05-18 20:08:58 -0600720 *
Simon Glass14ca9f72020-01-27 08:49:43 -0700721 * This looks for a property within the /chosen node and returns its value,
722 * checking that it is a valid nul-terminated string
Simon Glass9e512042017-05-18 20:08:58 -0600723 *
724 * @propname: Property name to look for
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100725 * Return: string value if found, else NULL
Simon Glass9e512042017-05-18 20:08:58 -0600726 */
Simon Glass14ca9f72020-01-27 08:49:43 -0700727const char *ofnode_read_chosen_string(const char *propname);
Simon Glass9e512042017-05-18 20:08:58 -0600728
729/**
Simon Glass74d594a2020-01-27 08:49:42 -0700730 * ofnode_get_chosen_node() - get a referenced node from the chosen node
Simon Glass9e512042017-05-18 20:08:58 -0600731 *
Simon Glass74d594a2020-01-27 08:49:42 -0700732 * This looks up a named property in the chosen node and uses that as a path to
733 * look up a code.
734 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100735 * @propname: Property name to look for
736 * Return: the referenced node if present, else ofnode_null()
Simon Glass9e512042017-05-18 20:08:58 -0600737 */
Simon Glass74d594a2020-01-27 08:49:42 -0700738ofnode ofnode_get_chosen_node(const char *propname);
Simon Glass9e512042017-05-18 20:08:58 -0600739
Michal Simek305d3182020-07-28 12:51:08 +0200740/**
741 * ofnode_read_aliases_prop() - get the value of a aliases property
742 *
743 * This looks for a property within the /aliases node and returns its value
744 *
745 * @propname: Property name to look for
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100746 * @sizep: Returns size of property, or `FDT_ERR_...` error code if function
Michal Simek305d3182020-07-28 12:51:08 +0200747 * returns NULL
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100748 * Return: property value if found, else NULL
Michal Simek305d3182020-07-28 12:51:08 +0200749 */
750const void *ofnode_read_aliases_prop(const char *propname, int *sizep);
751
752/**
753 * ofnode_get_aliases_node() - get a referenced node from the aliases node
754 *
755 * This looks up a named property in the aliases node and uses that as a path to
756 * look up a code.
757 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100758 * @propname: Property name to look for
759 * Return: the referenced node if present, else ofnode_null()
Michal Simek305d3182020-07-28 12:51:08 +0200760 */
761ofnode ofnode_get_aliases_node(const char *propname);
762
Simon Glass9e512042017-05-18 20:08:58 -0600763struct display_timing;
764/**
765 * ofnode_decode_display_timing() - decode display timings
766 *
767 * Decode display timings from the supplied 'display-timings' node.
768 * See doc/device-tree-bindings/video/display-timing.txt for binding
769 * information.
770 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100771 * @node: 'display-timing' node containing the timing subnodes
772 * @index: Index number to read (0=first timing subnode)
773 * @config: Place to put timings
774 * Return: 0 if OK, -FDT_ERR_NOTFOUND if not found
Simon Glass9e512042017-05-18 20:08:58 -0600775 */
776int ofnode_decode_display_timing(ofnode node, int index,
777 struct display_timing *config);
778
779/**
Patrick Delaunayce891fca2020-01-13 11:34:56 +0100780 * ofnode_get_property() - get a pointer to the value of a node property
Simon Glass9e512042017-05-18 20:08:58 -0600781 *
782 * @node: node to read
783 * @propname: property to read
784 * @lenp: place to put length on success
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100785 * Return: pointer to property, or NULL if not found
Simon Glass9e512042017-05-18 20:08:58 -0600786 */
Masahiro Yamada61e51ba2017-06-22 16:54:05 +0900787const void *ofnode_get_property(ofnode node, const char *propname, int *lenp);
Simon Glass9e512042017-05-18 20:08:58 -0600788
789/**
Patrick Delaunayce891fca2020-01-13 11:34:56 +0100790 * ofnode_get_first_property()- get the reference of the first property
791 *
792 * Get reference to the first property of the node, it is used to iterate
793 * and read all the property with ofnode_get_property_by_prop().
794 *
795 * @node: node to read
796 * @prop: place to put argument reference
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100797 * Return: 0 if OK, -ve on error. -FDT_ERR_NOTFOUND if not found
Patrick Delaunayce891fca2020-01-13 11:34:56 +0100798 */
799int ofnode_get_first_property(ofnode node, struct ofprop *prop);
800
801/**
802 * ofnode_get_next_property() - get the reference of the next property
803 *
804 * Get reference to the next property of the node, it is used to iterate
805 * and read all the property with ofnode_get_property_by_prop().
806 *
807 * @prop: reference of current argument and place to put reference of next one
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100808 * Return: 0 if OK, -ve on error. -FDT_ERR_NOTFOUND if not found
Patrick Delaunayce891fca2020-01-13 11:34:56 +0100809 */
810int ofnode_get_next_property(struct ofprop *prop);
811
812/**
813 * ofnode_get_property_by_prop() - get a pointer to the value of a property
814 *
815 * Get value for the property identified by the provided reference.
816 *
817 * @prop: reference on property
818 * @propname: If non-NULL, place to property name on success,
819 * @lenp: If non-NULL, place to put length on success
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100820 * Return: 0 if OK, -ve on error. -FDT_ERR_NOTFOUND if not found
Patrick Delaunayce891fca2020-01-13 11:34:56 +0100821 */
822const void *ofnode_get_property_by_prop(const struct ofprop *prop,
823 const char **propname, int *lenp);
824
825/**
Simon Glass9e512042017-05-18 20:08:58 -0600826 * ofnode_is_available() - check if a node is marked available
827 *
828 * @node: node to check
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100829 * Return: true if node's 'status' property is "okay" (or is missing)
Simon Glass9e512042017-05-18 20:08:58 -0600830 */
831bool ofnode_is_available(ofnode node);
832
833/**
834 * ofnode_get_addr_size() - get address and size from a property
835 *
836 * This does no address translation. It simply reads an property that contains
837 * an address and a size value, one after the other.
838 *
839 * @node: node to read from
840 * @propname: property to read
841 * @sizep: place to put size value (on success)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100842 * Return: address value, or FDT_ADDR_T_NONE on error
Simon Glass9e512042017-05-18 20:08:58 -0600843 */
844phys_addr_t ofnode_get_addr_size(ofnode node, const char *propname,
845 phys_size_t *sizep);
846
847/**
848 * ofnode_read_u8_array_ptr() - find an 8-bit array
849 *
850 * Look up a property in a node and return a pointer to its contents as a
851 * byte array of given length. The property must have at least enough data
852 * for the array (count bytes). It may have more, but this will be ignored.
853 * The data is not copied.
854 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100855 * @node: node to examine
856 * @propname: name of property to find
857 * @sz: number of array elements
858 * Return:
859 * pointer to byte array if found, or NULL if the property is not found or
860 * there is not enough data
Simon Glass9e512042017-05-18 20:08:58 -0600861 */
862const uint8_t *ofnode_read_u8_array_ptr(ofnode node, const char *propname,
863 size_t sz);
864
865/**
866 * ofnode_read_pci_addr() - look up a PCI address
867 *
868 * Look at an address property in a node and return the PCI address which
869 * corresponds to the given type in the form of fdt_pci_addr.
870 * The property must hold one fdt_pci_addr with a lengh.
871 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100872 * @node: node to examine
873 * @type: pci address type (FDT_PCI_SPACE_xxx)
874 * @propname: name of property to find
875 * @addr: returns pci address in the form of fdt_pci_addr
876 * Return:
877 * 0 if ok, -ENOENT if the property did not exist, -EINVAL if the
878 * format of the property was invalid, -ENXIO if the requested
879 * address type was not found
Simon Glass9e512042017-05-18 20:08:58 -0600880 */
881int ofnode_read_pci_addr(ofnode node, enum fdt_pci_space type,
882 const char *propname, struct fdt_pci_addr *addr);
883
884/**
Bin Meng7b9cbad2018-08-03 01:14:35 -0700885 * ofnode_read_pci_vendev() - look up PCI vendor and device id
886 *
887 * Look at the compatible property of a device node that represents a PCI
888 * device and extract pci vendor id and device id from it.
889 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100890 * @node: node to examine
891 * @vendor: vendor id of the pci device
892 * @device: device id of the pci device
893 * Return: 0 if ok, negative on error
Bin Meng7b9cbad2018-08-03 01:14:35 -0700894 */
895int ofnode_read_pci_vendev(ofnode node, u16 *vendor, u16 *device);
896
897/**
Michal Simekdb681d42022-02-23 15:45:40 +0100898 * ofnode_read_eth_phy_id() - look up eth phy vendor and device id
899 *
900 * Look at the compatible property of a device node that represents a eth phy
901 * device and extract phy vendor id and device id from it.
902 *
Heinrich Schuchardtd23f2902022-03-24 16:22:32 +0100903 * @node: node to examine
904 * @vendor: vendor id of the eth phy device
905 * @device: device id of the eth phy device
906 * Return: 0 if ok, negative on error
Michal Simekdb681d42022-02-23 15:45:40 +0100907 */
908int ofnode_read_eth_phy_id(ofnode node, u16 *vendor, u16 *device);
909
910/**
Simon Glass9e512042017-05-18 20:08:58 -0600911 * ofnode_read_addr_cells() - Get the number of address cells for a node
912 *
913 * This walks back up the tree to find the closest #address-cells property
914 * which controls the given node.
915 *
916 * @node: Node to check
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100917 * Return: number of address cells this node uses
Simon Glass9e512042017-05-18 20:08:58 -0600918 */
919int ofnode_read_addr_cells(ofnode node);
920
921/**
922 * ofnode_read_size_cells() - Get the number of size cells for a node
923 *
924 * This walks back up the tree to find the closest #size-cells property
925 * which controls the given node.
926 *
927 * @node: Node to check
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100928 * Return: number of size cells this node uses
Simon Glass9e512042017-05-18 20:08:58 -0600929 */
930int ofnode_read_size_cells(ofnode node);
931
932/**
Simon Glass878d68c2017-06-12 06:21:31 -0600933 * ofnode_read_simple_addr_cells() - Get the address cells property in a node
934 *
935 * This function matches fdt_address_cells().
936 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100937 * @node: Node to check
938 * Return: value of #address-cells property in this node, or 2 if none
Simon Glass878d68c2017-06-12 06:21:31 -0600939 */
940int ofnode_read_simple_addr_cells(ofnode node);
941
942/**
943 * ofnode_read_simple_size_cells() - Get the size cells property in a node
944 *
945 * This function matches fdt_size_cells().
946 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100947 * @node: Node to check
948 * Return: value of #size-cells property in this node, or 2 if none
Simon Glass878d68c2017-06-12 06:21:31 -0600949 */
950int ofnode_read_simple_size_cells(ofnode node);
951
952/**
Simon Glass9e512042017-05-18 20:08:58 -0600953 * ofnode_pre_reloc() - check if a node should be bound before relocation
954 *
955 * Device tree nodes can be marked as needing-to-be-bound in the loader stages
956 * via special device tree properties.
957 *
958 * Before relocation this function can be used to check if nodes are required
959 * in either SPL or TPL stages.
960 *
961 * After relocation and jumping into the real U-Boot binary it is possible to
962 * determine if a node was bound in one of SPL/TPL stages.
963 *
Patrick Delaunay54e12232019-05-21 19:19:13 +0200964 * There are 4 settings currently in use
965 * - u-boot,dm-pre-proper: U-Boot proper pre-relocation only
Simon Glass9e512042017-05-18 20:08:58 -0600966 * - u-boot,dm-pre-reloc: legacy and indicates any of TPL or SPL
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100967 * Existing platforms only use it to indicate nodes needed in
968 * SPL. Should probably be replaced by u-boot,dm-spl for new platforms.
Patrick Delaunay54e12232019-05-21 19:19:13 +0200969 * - u-boot,dm-spl: SPL and U-Boot pre-relocation
970 * - u-boot,dm-tpl: TPL and U-Boot pre-relocation
Simon Glass9e512042017-05-18 20:08:58 -0600971 *
972 * @node: node to check
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100973 * Return: true if node is needed in SPL/TL, false otherwise
Simon Glass9e512042017-05-18 20:08:58 -0600974 */
975bool ofnode_pre_reloc(ofnode node);
976
Simon Glassc98ad442018-06-11 13:07:12 -0600977/**
978 * ofnode_read_resource() - Read a resource from a node
979 *
980 * Read resource information from a node at the given index
981 *
982 * @node: Node to read from
983 * @index: Index of resource to read (0 = first)
984 * @res: Returns resource that was read, on success
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100985 * Return: 0 if OK, -ve on error
Simon Glassc98ad442018-06-11 13:07:12 -0600986 */
Simon Glassdcf98852017-07-25 08:29:55 -0600987int ofnode_read_resource(ofnode node, uint index, struct resource *res);
Simon Glassc98ad442018-06-11 13:07:12 -0600988
989/**
990 * ofnode_read_resource_byname() - Read a resource from a node by name
991 *
992 * Read resource information from a node matching the given name. This uses a
993 * 'reg-names' string list property with the names matching the associated
994 * 'reg' property list.
995 *
996 * @node: Node to read from
997 * @name: Name of resource to read
998 * @res: Returns resource that was read, on success
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100999 * Return: 0 if OK, -ve on error
Simon Glassc98ad442018-06-11 13:07:12 -06001000 */
Masahiro Yamada7b8b47b2017-08-26 01:12:30 +09001001int ofnode_read_resource_byname(ofnode node, const char *name,
1002 struct resource *res);
Simon Glassdcf98852017-07-25 08:29:55 -06001003
Simon Glass3991f422017-08-05 15:45:54 -06001004/**
Simon Glassc60f6712018-06-11 13:07:13 -06001005 * ofnode_by_compatible() - Find the next compatible node
1006 *
1007 * Find the next node after @from that is compatible with @compat
1008 *
1009 * @from: ofnode to start from (use ofnode_null() to start at the beginning)
1010 * @compat: Compatible string to match
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001011 * Return: ofnode found, or ofnode_null() if none
Simon Glassc60f6712018-06-11 13:07:13 -06001012 */
1013ofnode ofnode_by_compatible(ofnode from, const char *compat);
1014
1015/**
Jens Wiklander61fba0f2018-08-20 11:09:58 +02001016 * ofnode_by_prop_value() - Find the next node with given property value
1017 *
1018 * Find the next node after @from that has a @propname with a value
1019 * @propval and a length @proplen.
1020 *
1021 * @from: ofnode to start from (use ofnode_null() to start at the
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001022 * beginning)
1023 * @propname: property name to check
1024 * @propval: property value to search for
1025 * @proplen: length of the value in propval
1026 * Return: ofnode found, or ofnode_null() if none
Jens Wiklander61fba0f2018-08-20 11:09:58 +02001027 */
1028ofnode ofnode_by_prop_value(ofnode from, const char *propname,
1029 const void *propval, int proplen);
1030
1031/**
Simon Glass3991f422017-08-05 15:45:54 -06001032 * ofnode_for_each_subnode() - iterate over all subnodes of a parent
1033 *
1034 * @node: child node (ofnode, lvalue)
1035 * @parent: parent node (ofnode)
1036 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001037 * This is a wrapper around a for loop and is used like so::
Simon Glass3991f422017-08-05 15:45:54 -06001038 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001039 * ofnode node;
1040 * ofnode_for_each_subnode(node, parent) {
1041 * Use node
1042 * ...
1043 * }
Simon Glass3991f422017-08-05 15:45:54 -06001044 *
1045 * Note that this is implemented as a macro and @node is used as
1046 * iterator in the loop. The parent variable can be a constant or even a
1047 * literal.
1048 */
1049#define ofnode_for_each_subnode(node, parent) \
1050 for (node = ofnode_first_subnode(parent); \
1051 ofnode_valid(node); \
1052 node = ofnode_next_subnode(node))
1053
Mario Six147c6072018-01-15 11:07:19 +01001054/**
Michael Walleb8ec9452021-10-15 15:15:17 +02001055 * ofnode_for_each_compatible_node() - iterate over all nodes with a given
1056 * compatible string
1057 *
1058 * @node: child node (ofnode, lvalue)
1059 * @compat: compatible string to match
1060 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001061 * This is a wrapper around a for loop and is used like so::
Michael Walleb8ec9452021-10-15 15:15:17 +02001062 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001063 * ofnode node;
1064 * ofnode_for_each_compatible_node(node, parent, compatible) {
1065 * Use node
1066 * ...
1067 * }
Michael Walleb8ec9452021-10-15 15:15:17 +02001068 *
1069 * Note that this is implemented as a macro and @node is used as
1070 * iterator in the loop.
1071 */
1072#define ofnode_for_each_compatible_node(node, compat) \
1073 for (node = ofnode_by_compatible(ofnode_null(), compat); \
1074 ofnode_valid(node); \
1075 node = ofnode_by_compatible(node, compat))
1076
1077/**
Chunfeng Yun89b84b82020-05-02 11:35:09 +02001078 * ofnode_get_child_count() - get the child count of a ofnode
1079 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001080 * @parent: valid node to get its child count
1081 * Return: the number of subnodes
Chunfeng Yun89b84b82020-05-02 11:35:09 +02001082 */
1083int ofnode_get_child_count(ofnode parent);
1084
1085/**
Fabien Dessenne641067f2019-05-31 15:11:30 +02001086 * ofnode_translate_address() - Translate a device-tree address
Mario Six147c6072018-01-15 11:07:19 +01001087 *
1088 * Translate an address from the device-tree into a CPU physical address. This
1089 * function walks up the tree and applies the various bus mappings along the
1090 * way.
1091 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001092 * @node: Device tree node giving the context in which to translate the address
Mario Six147c6072018-01-15 11:07:19 +01001093 * @in_addr: pointer to the address to translate
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001094 * Return: the translated address; OF_BAD_ADDR on error
Mario Six147c6072018-01-15 11:07:19 +01001095 */
1096u64 ofnode_translate_address(ofnode node, const fdt32_t *in_addr);
Masahiro Yamada5ccc2c22018-04-19 12:14:02 +09001097
1098/**
Fabien Dessenne641067f2019-05-31 15:11:30 +02001099 * ofnode_translate_dma_address() - Translate a device-tree DMA address
1100 *
1101 * Translate a DMA address from the device-tree into a CPU physical address.
1102 * This function walks up the tree and applies the various bus mappings along
1103 * the way.
1104 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001105 * @node: Device tree node giving the context in which to translate the
1106 * DMA address
Fabien Dessenne641067f2019-05-31 15:11:30 +02001107 * @in_addr: pointer to the DMA address to translate
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001108 * Return: the translated DMA address; OF_BAD_ADDR on error
Fabien Dessenne641067f2019-05-31 15:11:30 +02001109 */
1110u64 ofnode_translate_dma_address(ofnode node, const fdt32_t *in_addr);
1111
1112/**
Nicolas Saenz Julienne51bdb502021-01-12 13:55:22 +01001113 * ofnode_get_dma_range() - get dma-ranges for a specific DT node
1114 *
1115 * Get DMA ranges for a specifc node, this is useful to perform bus->cpu and
1116 * cpu->bus address translations
1117 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001118 * @node: Device tree node
1119 * @cpu: Pointer to variable storing the range's cpu address
1120 * @bus: Pointer to variable storing the range's bus address
1121 * @size: Pointer to variable storing the range's size
1122 * Return: translated DMA address or OF_BAD_ADDR on error
Nicolas Saenz Julienne51bdb502021-01-12 13:55:22 +01001123 */
1124int ofnode_get_dma_range(ofnode node, phys_addr_t *cpu, dma_addr_t *bus,
1125 u64 *size);
1126
1127/**
Masahiro Yamada5ccc2c22018-04-19 12:14:02 +09001128 * ofnode_device_is_compatible() - check if the node is compatible with compat
1129 *
1130 * This allows to check whether the node is comaptible with the compat.
1131 *
1132 * @node: Device tree node for which compatible needs to be verified.
1133 * @compat: Compatible string which needs to verified in the given node.
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001134 * Return: true if OK, false if the compatible is not found
Masahiro Yamada5ccc2c22018-04-19 12:14:02 +09001135 */
1136int ofnode_device_is_compatible(ofnode node, const char *compat);
Mario Sixe369e582018-06-26 08:46:48 +02001137
1138/**
1139 * ofnode_write_prop() - Set a property of a ofnode
1140 *
1141 * Note that the value passed to the function is *not* allocated by the
1142 * function itself, but must be allocated by the caller if necessary.
1143 *
1144 * @node: The node for whose property should be set
1145 * @propname: The name of the property to set
1146 * @len: The length of the new value of the property
1147 * @value: The new value of the property (must be valid prior to calling
1148 * the function)
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001149 * Return: 0 if successful, -ve on error
Mario Sixe369e582018-06-26 08:46:48 +02001150 */
1151int ofnode_write_prop(ofnode node, const char *propname, int len,
1152 const void *value);
1153
1154/**
1155 * ofnode_write_string() - Set a string property of a ofnode
1156 *
1157 * Note that the value passed to the function is *not* allocated by the
1158 * function itself, but must be allocated by the caller if necessary.
1159 *
1160 * @node: The node for whose string property should be set
1161 * @propname: The name of the string property to set
1162 * @value: The new value of the string property (must be valid prior to
1163 * calling the function)
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001164 * Return: 0 if successful, -ve on error
Mario Sixe369e582018-06-26 08:46:48 +02001165 */
1166int ofnode_write_string(ofnode node, const char *propname, const char *value);
1167
1168/**
1169 * ofnode_set_enabled() - Enable or disable a device tree node given by its
1170 * ofnode
1171 *
1172 * This function effectively sets the node's "status" property to either "okay"
1173 * or "disable", hence making it available for driver model initialization or
1174 * not.
1175 *
1176 * @node: The node to enable
1177 * @value: Flag that tells the function to either disable or enable the
1178 * node
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001179 * Return: 0 if successful, -ve on error
Mario Sixe369e582018-06-26 08:46:48 +02001180 */
1181int ofnode_set_enabled(ofnode node, bool value);
1182
Simon Glass7de8bd02021-08-07 07:24:01 -06001183/**
1184 * ofnode_conf_read_bool() - Read a boolean value from the U-Boot config
1185 *
1186 * This reads a property from the /config node of the devicetree.
1187 *
1188 * See doc/config.txt for bindings
1189 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001190 * @prop_name: property name to look up
1191 * Return: true, if it exists, false if not
Simon Glass7de8bd02021-08-07 07:24:01 -06001192 */
1193bool ofnode_conf_read_bool(const char *prop_name);
1194
1195/**
1196 * ofnode_conf_read_int() - Read an integer value from the U-Boot config
1197 *
1198 * This reads a property from the /config node of the devicetree.
1199 *
1200 * See doc/config.txt for bindings
1201 *
1202 * @prop_name: property name to look up
1203 * @default_val: default value to return if the property is not found
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001204 * Return: integer value, if found, or @default_val if not
Simon Glass7de8bd02021-08-07 07:24:01 -06001205 */
1206int ofnode_conf_read_int(const char *prop_name, int default_val);
1207
1208/**
1209 * ofnode_conf_read_str() - Read a string value from the U-Boot config
1210 *
1211 * This reads a property from the /config node of the devicetree.
1212 *
1213 * See doc/config.txt for bindings
1214 *
1215 * @prop_name: property name to look up
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001216 * Return: string value, if found, or NULL if not
Simon Glass7de8bd02021-08-07 07:24:01 -06001217 */
1218const char *ofnode_conf_read_str(const char *prop_name);
1219
Simon Glass4984de22017-05-17 17:18:10 -06001220#endif