blob: bb60433124b64686185681d913ced06c6f76f0bb [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass9a148602017-05-17 17:18:10 -06002/*
3 * Copyright (c) 2017 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Simon Glass9a148602017-05-17 17:18:10 -06005 */
6
7#ifndef _DM_OFNODE_H
8#define _DM_OFNODE_H
9
Simon Glassc4fc5622017-05-18 20:08:58 -060010/* TODO(sjg@chromium.org): Drop fdtdec.h include */
11#include <fdtdec.h>
12#include <dm/of.h>
Simon Glass39f1d282020-12-16 17:25:06 -070013#include <dm/of_access.h>
Stefan Roesec14df8b2020-09-23 08:23:27 +020014#include <log.h>
Marek Behúnbc194772022-04-07 00:33:01 +020015#include <phy_interface.h>
Simon Glassc4fc5622017-05-18 20:08:58 -060016
17/* Enable checks to protect against invalid calls */
18#undef OF_CHECKS
19
Simon Glassf7bfcc42017-07-25 08:29:55 -060020struct resource;
21
Simon Glass9a148602017-05-17 17:18:10 -060022/**
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +010023 * typedef union ofnode_union ofnode - reference to a device tree node
Simon Glass9a148602017-05-17 17:18:10 -060024 *
25 * This union can hold either a straightforward pointer to a struct device_node
26 * in the live device tree, or an offset within the flat device tree. In the
27 * latter case, the pointer value is just the integer offset within the flat DT.
28 *
29 * Thus we can reference nodes in both the live tree (once available) and the
30 * flat tree (until then). Functions are available to translate between an
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +010031 * ofnode and either an offset or a `struct device_node *`.
Simon Glass9a148602017-05-17 17:18:10 -060032 *
33 * The reference can also hold a null offset, in which case the pointer value
Simon Glassc4fc5622017-05-18 20:08:58 -060034 * here is NULL. This corresponds to a struct device_node * value of
Simon Glass9a148602017-05-17 17:18:10 -060035 * NULL, or an offset of -1.
36 *
37 * There is no ambiguity as to whether ofnode holds an offset or a node
38 * pointer: when the live tree is active it holds a node pointer, otherwise it
39 * holds an offset. The value itself does not need to be unique and in theory
40 * the same value could point to a valid device node or a valid offset. We
41 * could arrange for a unique value to be used (e.g. by making the pointer
42 * point to an offset within the flat device tree in the case of an offset) but
43 * this increases code size slightly due to the subtraction. Since it offers no
44 * real benefit, the approach described here seems best.
45 *
46 * For now these points use constant types, since we don't allow writing
47 * the DT.
48 *
49 * @np: Pointer to device node, used for live tree
Baruch Siach6bcca142017-11-09 13:44:28 +020050 * @of_offset: Pointer into flat device tree, used for flat tree. Note that this
Simon Glass9a148602017-05-17 17:18:10 -060051 * is not a really a pointer to a node: it is an offset value. See above.
52 */
53typedef union ofnode_union {
Heinrich Schuchardtb571d922020-07-24 18:39:43 +020054 const struct device_node *np;
Simon Glass9a148602017-05-17 17:18:10 -060055 long of_offset;
56} ofnode;
57
Simon Glassc4fc5622017-05-18 20:08:58 -060058struct ofnode_phandle_args {
59 ofnode node;
60 int args_count;
61 uint32_t args[OF_MAX_PHANDLE_ARGS];
62};
63
64/**
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +010065 * struct ofprop - reference to a property of a device tree node
Patrick Delaunaycaee1552020-01-13 11:34:56 +010066 *
67 * This struct hold the reference on one property of one node,
68 * using struct ofnode and an offset within the flat device tree or either
69 * a pointer to a struct property in the live device tree.
70 *
71 * Thus we can reference arguments in both the live tree and the flat tree.
72 *
73 * The property reference can also hold a null reference. This corresponds to
74 * a struct property NULL pointer or an offset of -1.
75 *
76 * @node: Pointer to device node
77 * @offset: Pointer into flat device tree, used for flat tree.
78 * @prop: Pointer to property, used for live treee.
79 */
80
81struct ofprop {
82 ofnode node;
83 union {
84 int offset;
85 const struct property *prop;
86 };
87};
88
89/**
Stefan Roesec14df8b2020-09-23 08:23:27 +020090 * ofnode_to_np() - convert an ofnode to a live DT node pointer
Simon Glassc4fc5622017-05-18 20:08:58 -060091 *
92 * This cannot be called if the reference contains an offset.
93 *
94 * @node: Reference containing struct device_node * (possibly invalid)
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +010095 * Return: pointer to device node (can be NULL)
Simon Glassc4fc5622017-05-18 20:08:58 -060096 */
97static inline const struct device_node *ofnode_to_np(ofnode node)
98{
99#ifdef OF_CHECKS
100 if (!of_live_active())
101 return NULL;
102#endif
103 return node.np;
104}
105
Simon Glass9a148602017-05-17 17:18:10 -0600106/**
107 * ofnode_to_offset() - convert an ofnode to a flat DT offset
108 *
109 * This cannot be called if the reference contains a node pointer.
110 *
111 * @node: Reference containing offset (possibly invalid)
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100112 * Return: DT offset (can be -1)
Simon Glass9a148602017-05-17 17:18:10 -0600113 */
114static inline int ofnode_to_offset(ofnode node)
115{
Simon Glassc4fc5622017-05-18 20:08:58 -0600116#ifdef OF_CHECKS
117 if (of_live_active())
118 return -1;
119#endif
Simon Glass9a148602017-05-17 17:18:10 -0600120 return node.of_offset;
121}
122
123/**
124 * ofnode_valid() - check if an ofnode is valid
125 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100126 * @node: Reference containing offset (possibly invalid)
127 * Return: true if the reference contains a valid ofnode, false if it is NULL
Simon Glass9a148602017-05-17 17:18:10 -0600128 */
129static inline bool ofnode_valid(ofnode node)
130{
Simon Glassc4fc5622017-05-18 20:08:58 -0600131 if (of_live_active())
132 return node.np != NULL;
133 else
Patrick Delaunay04fcfe72020-09-24 17:26:20 +0200134 return node.of_offset >= 0;
Simon Glass9a148602017-05-17 17:18:10 -0600135}
136
137/**
138 * offset_to_ofnode() - convert a DT offset to an ofnode
139 *
140 * @of_offset: DT offset (either valid, or -1)
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100141 * Return: reference to the associated DT offset
Simon Glass9a148602017-05-17 17:18:10 -0600142 */
143static inline ofnode offset_to_ofnode(int of_offset)
144{
145 ofnode node;
146
Simon Glassc4fc5622017-05-18 20:08:58 -0600147 if (of_live_active())
148 node.np = NULL;
149 else
Simon Glass1ab8b892019-12-06 21:41:36 -0700150 node.of_offset = of_offset >= 0 ? of_offset : -1;
Simon Glass9a148602017-05-17 17:18:10 -0600151
152 return node;
153}
154
155/**
Simon Glassc4fc5622017-05-18 20:08:58 -0600156 * np_to_ofnode() - convert a node pointer to an ofnode
157 *
158 * @np: Live node pointer (can be NULL)
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100159 * Return: reference to the associated node pointer
Simon Glassc4fc5622017-05-18 20:08:58 -0600160 */
161static inline ofnode np_to_ofnode(const struct device_node *np)
162{
163 ofnode node;
164
165 node.np = np;
166
167 return node;
168}
169
170/**
171 * ofnode_is_np() - check if a reference is a node pointer
172 *
173 * This function associated that if there is a valid live tree then all
174 * references will use it. This is because using the flat DT when the live tree
175 * is valid is not permitted.
176 *
177 * @node: reference to check (possibly invalid)
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100178 * Return: true if the reference is a live node pointer, false if it is a DT
Simon Glassc4fc5622017-05-18 20:08:58 -0600179 * offset
180 */
181static inline bool ofnode_is_np(ofnode node)
182{
183#ifdef OF_CHECKS
184 /*
185 * Check our assumption that flat tree offsets are not used when a
186 * live tree is in use.
187 */
188 assert(!ofnode_valid(node) ||
Stefan Roesec14df8b2020-09-23 08:23:27 +0200189 (of_live_active() ? ofnode_to_np(node)
190 : ofnode_to_np(node)));
Simon Glassc4fc5622017-05-18 20:08:58 -0600191#endif
192 return of_live_active() && ofnode_valid(node);
193}
194
195/**
Simon Glass9a148602017-05-17 17:18:10 -0600196 * ofnode_equal() - check if two references are equal
197 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100198 * @ref1: first reference to check (possibly invalid)
199 * @ref2: second reference to check (possibly invalid)
200 * Return: true if equal, else false
Simon Glass9a148602017-05-17 17:18:10 -0600201 */
202static inline bool ofnode_equal(ofnode ref1, ofnode ref2)
203{
204 /* We only need to compare the contents */
205 return ref1.of_offset == ref2.of_offset;
206}
207
Simon Glassc4fc5622017-05-18 20:08:58 -0600208/**
209 * ofnode_null() - Obtain a null ofnode
210 *
211 * This returns an ofnode which points to no node. It works both with the flat
212 * tree and livetree.
213 */
214static inline ofnode ofnode_null(void)
215{
216 ofnode node;
217
218 if (of_live_active())
219 node.np = NULL;
220 else
221 node.of_offset = -1;
222
223 return node;
224}
225
Simon Glass278ddba2020-11-28 17:50:07 -0700226static inline ofnode ofnode_root(void)
227{
228 ofnode node;
229
230 if (of_live_active())
231 node.np = gd_of_root();
232 else
233 node.of_offset = 0;
234
235 return node;
236}
237
Simon Glassc4fc5622017-05-18 20:08:58 -0600238/**
Kishon Vijay Abraham Id6388f22021-07-21 21:28:30 +0530239 * ofnode_name_eq() - Check if the node name is equivalent to a given name
240 * ignoring the unit address
241 *
242 * @node: valid node reference that has to be compared
243 * @name: name that has to be compared with the node name
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100244 * Return: true if matches, false if it doesn't match
Kishon Vijay Abraham Id6388f22021-07-21 21:28:30 +0530245 */
246bool ofnode_name_eq(ofnode node, const char *name);
247
248/**
Simon Glassc4fc5622017-05-18 20:08:58 -0600249 * ofnode_read_u32() - Read a 32-bit integer from a property
250 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100251 * @node: valid node reference to read property from
Simon Glassc4fc5622017-05-18 20:08:58 -0600252 * @propname: name of the property to read from
253 * @outp: place to put value (if found)
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100254 * Return: 0 if OK, -ve on error
Simon Glassc4fc5622017-05-18 20:08:58 -0600255 */
256int ofnode_read_u32(ofnode node, const char *propname, u32 *outp);
257
258/**
Dario Binacchi81d80b52020-03-29 18:04:41 +0200259 * ofnode_read_u32_index() - Read a 32-bit integer from a multi-value property
260 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100261 * @node: valid node reference to read property from
Dario Binacchi81d80b52020-03-29 18:04:41 +0200262 * @propname: name of the property to read from
263 * @index: index of the integer to return
264 * @outp: place to put value (if found)
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100265 * Return: 0 if OK, -ve on error
Dario Binacchi81d80b52020-03-29 18:04:41 +0200266 */
267int ofnode_read_u32_index(ofnode node, const char *propname, int index,
268 u32 *outp);
269
270/**
Simon Glassc4fc5622017-05-18 20:08:58 -0600271 * ofnode_read_s32() - Read a 32-bit integer from a property
272 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100273 * @node: valid node reference to read property from
Simon Glassc4fc5622017-05-18 20:08:58 -0600274 * @propname: name of the property to read from
275 * @outp: place to put value (if found)
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100276 * Return: 0 if OK, -ve on error
Simon Glassc4fc5622017-05-18 20:08:58 -0600277 */
278static inline int ofnode_read_s32(ofnode node, const char *propname,
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100279 s32 *outp)
Simon Glassc4fc5622017-05-18 20:08:58 -0600280{
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100281 return ofnode_read_u32(node, propname, (u32 *)outp);
Simon Glassc4fc5622017-05-18 20:08:58 -0600282}
283
284/**
285 * ofnode_read_u32_default() - Read a 32-bit integer from a property
286 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100287 * @node: valid node reference to read property from
Simon Glassc4fc5622017-05-18 20:08:58 -0600288 * @propname: name of the property to read from
289 * @def: default value to return if the property has no value
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100290 * Return: property value, or @def if not found
Simon Glassc4fc5622017-05-18 20:08:58 -0600291 */
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100292u32 ofnode_read_u32_default(ofnode node, const char *propname, u32 def);
Simon Glassc4fc5622017-05-18 20:08:58 -0600293
294/**
Dario Binacchi81d80b52020-03-29 18:04:41 +0200295 * ofnode_read_u32_index_default() - Read a 32-bit integer from a multi-value
296 * property
297 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100298 * @node: valid node reference to read property from
Dario Binacchi81d80b52020-03-29 18:04:41 +0200299 * @propname: name of the property to read from
300 * @index: index of the integer to return
301 * @def: default value to return if the property has no value
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100302 * Return: property value, or @def if not found
Dario Binacchi81d80b52020-03-29 18:04:41 +0200303 */
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100304u32 ofnode_read_u32_index_default(ofnode node, const char *propname, int index,
Dario Binacchi81d80b52020-03-29 18:04:41 +0200305 u32 def);
306
307/**
Simon Glassc4fc5622017-05-18 20:08:58 -0600308 * ofnode_read_s32_default() - Read a 32-bit integer from a property
309 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100310 * @node: valid node reference to read property from
Simon Glassc4fc5622017-05-18 20:08:58 -0600311 * @propname: name of the property to read from
312 * @def: default value to return if the property has no value
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100313 * Return: property value, or @def if not found
Simon Glassc4fc5622017-05-18 20:08:58 -0600314 */
315int ofnode_read_s32_default(ofnode node, const char *propname, s32 def);
316
317/**
Lukas Auerb03a60b2018-11-22 11:26:35 +0100318 * ofnode_read_u64() - Read a 64-bit integer from a property
319 *
320 * @node: valid node reference to read property from
321 * @propname: name of the property to read from
322 * @outp: place to put value (if found)
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100323 * Return: 0 if OK, -ve on error
Lukas Auerb03a60b2018-11-22 11:26:35 +0100324 */
325int ofnode_read_u64(ofnode node, const char *propname, u64 *outp);
326
327/**
Simon Glass9d54a7a2018-06-11 13:07:10 -0600328 * ofnode_read_u64_default() - Read a 64-bit integer from a property
329 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100330 * @node: valid node reference to read property from
Simon Glass9d54a7a2018-06-11 13:07:10 -0600331 * @propname: name of the property to read from
332 * @def: default value to return if the property has no value
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100333 * Return: property value, or @def if not found
Simon Glass9d54a7a2018-06-11 13:07:10 -0600334 */
T Karthik Reddy478860d2019-09-02 16:34:30 +0200335u64 ofnode_read_u64_default(ofnode node, const char *propname, u64 def);
Simon Glass9d54a7a2018-06-11 13:07:10 -0600336
337/**
Simon Glass0c2e9802020-01-27 08:49:44 -0700338 * ofnode_read_prop() - Read a property from a node
339 *
340 * @node: valid node reference to read property from
341 * @propname: name of the property to read
342 * @sizep: if non-NULL, returns the size of the property, or an error code
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100343 * if not found
344 * Return: property value, or NULL if there is no such property
Simon Glass0c2e9802020-01-27 08:49:44 -0700345 */
346const void *ofnode_read_prop(ofnode node, const char *propname, int *sizep);
347
348/**
Simon Glassc4fc5622017-05-18 20:08:58 -0600349 * ofnode_read_string() - Read a string from a property
350 *
Simon Glass0c2e9802020-01-27 08:49:44 -0700351 * @node: valid node reference to read property from
Simon Glassc4fc5622017-05-18 20:08:58 -0600352 * @propname: name of the property to read
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100353 * Return: string from property value, or NULL if there is no such property
Simon Glassc4fc5622017-05-18 20:08:58 -0600354 */
355const char *ofnode_read_string(ofnode node, const char *propname);
356
357/**
Simon Glass049ae1b2017-05-18 20:09:01 -0600358 * ofnode_read_u32_array() - Find and read an array of 32 bit integers
Simon Glassc4fc5622017-05-18 20:08:58 -0600359 *
360 * @node: valid node reference to read property from
361 * @propname: name of the property to read
362 * @out_values: pointer to return value, modified only if return value is 0
363 * @sz: number of array elements to read
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100364 * Return: 0 if OK, -ve on error
Simon Glassc4fc5622017-05-18 20:08:58 -0600365 *
366 * Search for a property in a device node and read 32-bit value(s) from
367 * it. Returns 0 on success, -EINVAL if the property does not exist,
368 * -ENODATA if property does not have a value, and -EOVERFLOW if the
369 * property data isn't large enough.
370 *
371 * The out_values is modified only if a valid u32 value can be decoded.
372 */
373int ofnode_read_u32_array(ofnode node, const char *propname,
374 u32 *out_values, size_t sz);
375
376/**
377 * ofnode_read_bool() - read a boolean value from a property
378 *
379 * @node: valid node reference to read property from
380 * @propname: name of property to read
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100381 * Return: true if property is present (meaning true), false if not present
Simon Glassc4fc5622017-05-18 20:08:58 -0600382 */
383bool ofnode_read_bool(ofnode node, const char *propname);
384
385/**
386 * ofnode_find_subnode() - find a named subnode of a parent node
387 *
388 * @node: valid reference to parent node
389 * @subnode_name: name of subnode to find
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100390 * Return: reference to subnode (which can be invalid if there is no such
Simon Glassc4fc5622017-05-18 20:08:58 -0600391 * subnode)
392 */
393ofnode ofnode_find_subnode(ofnode node, const char *subnode_name);
394
Simon Glass39f1d282020-12-16 17:25:06 -0700395#if CONFIG_IS_ENABLED(DM_INLINE_OFNODE)
Simon Glass3ba929a2020-10-30 21:38:53 -0600396#include <asm/global_data.h>
397
Simon Glass39f1d282020-12-16 17:25:06 -0700398static inline bool ofnode_is_enabled(ofnode node)
399{
400 if (ofnode_is_np(node)) {
401 return of_device_is_available(ofnode_to_np(node));
402 } else {
403 return fdtdec_get_is_enabled(gd->fdt_blob,
404 ofnode_to_offset(node));
405 }
406}
407
408static inline ofnode ofnode_first_subnode(ofnode node)
409{
410 assert(ofnode_valid(node));
411 if (ofnode_is_np(node))
412 return np_to_ofnode(node.np->child);
413
414 return offset_to_ofnode(
415 fdt_first_subnode(gd->fdt_blob, ofnode_to_offset(node)));
416}
417
418static inline ofnode ofnode_next_subnode(ofnode node)
419{
420 assert(ofnode_valid(node));
421 if (ofnode_is_np(node))
422 return np_to_ofnode(node.np->sibling);
423
424 return offset_to_ofnode(
425 fdt_next_subnode(gd->fdt_blob, ofnode_to_offset(node)));
426}
427#else
428/**
429 * ofnode_is_enabled() - Checks whether a node is enabled.
430 * This looks for a 'status' property. If this exists, then returns true if
431 * the status is 'okay' and false otherwise. If there is no status property,
432 * it returns true on the assumption that anything mentioned should be enabled
433 * by default.
434 *
435 * @node: node to examine
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100436 * Return: false (not enabled) or true (enabled)
Simon Glass39f1d282020-12-16 17:25:06 -0700437 */
438bool ofnode_is_enabled(ofnode node);
439
Simon Glassc4fc5622017-05-18 20:08:58 -0600440/**
441 * ofnode_first_subnode() - find the first subnode of a parent node
442 *
443 * @node: valid reference to a valid parent node
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100444 * Return: reference to the first subnode (which can be invalid if the parent
Simon Glassc4fc5622017-05-18 20:08:58 -0600445 * node has no subnodes)
446 */
447ofnode ofnode_first_subnode(ofnode node);
448
449/**
450 * ofnode_next_subnode() - find the next sibling of a subnode
451 *
452 * @node: valid reference to previous node (sibling)
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100453 * Return: reference to the next subnode (which can be invalid if the node
Simon Glassc4fc5622017-05-18 20:08:58 -0600454 * has no more siblings)
455 */
456ofnode ofnode_next_subnode(ofnode node);
Simon Glass39f1d282020-12-16 17:25:06 -0700457#endif /* DM_INLINE_OFNODE */
Simon Glassc4fc5622017-05-18 20:08:58 -0600458
459/**
Philipp Tomsich6fce1dd2018-02-23 17:38:49 +0100460 * ofnode_get_parent() - get the ofnode's parent (enclosing ofnode)
461 *
462 * @node: valid node to look up
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100463 * Return: ofnode reference of the parent node
Philipp Tomsich6fce1dd2018-02-23 17:38:49 +0100464 */
465ofnode ofnode_get_parent(ofnode node);
466
467/**
Simon Glassc4fc5622017-05-18 20:08:58 -0600468 * ofnode_get_name() - get the name of a node
469 *
470 * @node: valid node to look up
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100471 * Return: name of node
Simon Glassc4fc5622017-05-18 20:08:58 -0600472 */
473const char *ofnode_get_name(ofnode node);
474
475/**
Marek Behúne897e3c2021-05-26 14:08:18 +0200476 * ofnode_get_path() - get the full path of a node
477 *
478 * @node: valid node to look up
479 * @buf: buffer to write the node path into
480 * @buflen: buffer size
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100481 * Return: 0 if OK, -ve on error
Marek Behúne897e3c2021-05-26 14:08:18 +0200482 */
483int ofnode_get_path(ofnode node, char *buf, int buflen);
484
485/**
Kever Yang37df0e02018-02-23 17:38:50 +0100486 * ofnode_get_by_phandle() - get ofnode from phandle
487 *
488 * @phandle: phandle to look up
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100489 * Return: ofnode reference to the phandle
Kever Yang37df0e02018-02-23 17:38:50 +0100490 */
491ofnode ofnode_get_by_phandle(uint phandle);
492
493/**
Simon Glassc4fc5622017-05-18 20:08:58 -0600494 * ofnode_read_size() - read the size of a property
495 *
496 * @node: node to check
497 * @propname: property to check
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100498 * Return: size of property if present, or -EINVAL if not
Simon Glassc4fc5622017-05-18 20:08:58 -0600499 */
500int ofnode_read_size(ofnode node, const char *propname);
501
502/**
Keerthyd332e6e2019-04-24 17:19:53 +0530503 * ofnode_get_addr_size_index() - get an address/size from a node
504 * based on index
505 *
506 * This reads the register address/size from a node based on index
507 *
508 * @node: node to read from
509 * @index: Index of address to read (0 for first)
510 * @size: Pointer to size of the address
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100511 * Return: address, or FDT_ADDR_T_NONE if not present or invalid
Keerthyd332e6e2019-04-24 17:19:53 +0530512 */
513phys_addr_t ofnode_get_addr_size_index(ofnode node, int index,
514 fdt_size_t *size);
515
516/**
Marek Behún177ab7f2021-05-26 14:08:17 +0200517 * ofnode_get_addr_size_index_notrans() - get an address/size from a node
518 * based on index, without address
519 * translation
520 *
521 * This reads the register address/size from a node based on index.
522 * The resulting address is not translated. Useful for example for on-disk
523 * addresses.
524 *
525 * @node: node to read from
526 * @index: Index of address to read (0 for first)
527 * @size: Pointer to size of the address
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100528 * Return: address, or FDT_ADDR_T_NONE if not present or invalid
Marek Behún177ab7f2021-05-26 14:08:17 +0200529 */
530phys_addr_t ofnode_get_addr_size_index_notrans(ofnode node, int index,
531 fdt_size_t *size);
532
533/**
Simon Glass049ae1b2017-05-18 20:09:01 -0600534 * ofnode_get_addr_index() - get an address from a node
535 *
536 * This reads the register address from a node
537 *
538 * @node: node to read from
539 * @index: Index of address to read (0 for first)
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100540 * Return: address, or FDT_ADDR_T_NONE if not present or invalid
Simon Glass049ae1b2017-05-18 20:09:01 -0600541 */
542phys_addr_t ofnode_get_addr_index(ofnode node, int index);
543
544/**
545 * ofnode_get_addr() - get an address from a node
546 *
547 * This reads the register address from a node
548 *
549 * @node: node to read from
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100550 * Return: address, or FDT_ADDR_T_NONE if not present or invalid
Simon Glass049ae1b2017-05-18 20:09:01 -0600551 */
552phys_addr_t ofnode_get_addr(ofnode node);
553
554/**
Chen Guanqiao223f17d2021-04-12 14:51:11 +0800555 * ofnode_get_size() - get size from a node
556 *
557 * This reads the register size from a node
558 *
559 * @node: node to read from
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100560 * Return: size of the address, or FDT_SIZE_T_NONE if not present or invalid
Chen Guanqiao223f17d2021-04-12 14:51:11 +0800561 */
562fdt_size_t ofnode_get_size(ofnode node);
563
564/**
Simon Glassc4fc5622017-05-18 20:08:58 -0600565 * ofnode_stringlist_search() - find a string in a string list and return index
566 *
567 * Note that it is possible for this function to succeed on property values
568 * that are not NUL-terminated. That's because the function will stop after
569 * finding the first occurrence of @string. This can for example happen with
570 * small-valued cell properties, such as #address-cells, when searching for
571 * the empty string.
572 *
573 * @node: node to check
574 * @propname: name of the property containing the string list
575 * @string: string to look up in the string list
576 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100577 * Return:
Simon Glassc4fc5622017-05-18 20:08:58 -0600578 * the index of the string in the list of strings
579 * -ENODATA if the property is not found
580 * -EINVAL on some other error
581 */
582int ofnode_stringlist_search(ofnode node, const char *propname,
583 const char *string);
584
585/**
Simon Glass5fdb0052017-06-12 06:21:28 -0600586 * ofnode_read_string_index() - obtain an indexed string from a string list
Simon Glassc4fc5622017-05-18 20:08:58 -0600587 *
588 * Note that this will successfully extract strings from properties with
589 * non-NUL-terminated values. For example on small-valued cell properties
590 * this function will return the empty string.
591 *
592 * If non-NULL, the length of the string (on success) or a negative error-code
593 * (on failure) will be stored in the integer pointer to by lenp.
594 *
595 * @node: node to check
596 * @propname: name of the property containing the string list
Simon Glass7a3a1672021-10-23 17:26:06 -0600597 * @index: index of the string to return (cannot be negative)
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100598 * @outp: return location for the string
Simon Glassc4fc5622017-05-18 20:08:58 -0600599 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100600 * Return:
Simon Glass7a3a1672021-10-23 17:26:06 -0600601 * 0 if found or -ve error value if not found
Simon Glassc4fc5622017-05-18 20:08:58 -0600602 */
603int ofnode_read_string_index(ofnode node, const char *propname, int index,
604 const char **outp);
605
606/**
Simon Glass5fdb0052017-06-12 06:21:28 -0600607 * ofnode_read_string_count() - find the number of strings in a string list
608 *
609 * @node: node to check
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100610 * @property: name of the property containing the string list
611 * Return:
Simon Glass5fdb0052017-06-12 06:21:28 -0600612 * number of strings in the list, or -ve error value if not found
613 */
614int ofnode_read_string_count(ofnode node, const char *property);
615
616/**
Simon Glass9580bfc2021-10-23 17:26:07 -0600617 * ofnode_read_string_list() - read a list of strings
618 *
619 * This produces a list of string pointers with each one pointing to a string
620 * in the string list. If the property does not exist, it returns {NULL}.
621 *
622 * The data is allocated and the caller is reponsible for freeing the return
623 * value (the list of string pointers). The strings themselves may not be
624 * changed as they point directly into the devicetree property.
625 *
626 * @node: node to check
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100627 * @property: name of the property containing the string list
Simon Glass9580bfc2021-10-23 17:26:07 -0600628 * @listp: returns an allocated, NULL-terminated list of strings if the return
629 * value is > 0, else is set to NULL
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100630 * Return:
631 * number of strings in list, 0 if none, -ENOMEM if out of memory,
632 * -EINVAL if no such property, -EENODATA if property is empty
Simon Glass9580bfc2021-10-23 17:26:07 -0600633 */
634int ofnode_read_string_list(ofnode node, const char *property,
635 const char ***listp);
636
637/**
Simon Glassc4fc5622017-05-18 20:08:58 -0600638 * ofnode_parse_phandle_with_args() - Find a node pointed by phandle in a list
639 *
640 * This function is useful to parse lists of phandles and their arguments.
641 * Returns 0 on success and fills out_args, on error returns appropriate
642 * errno value.
643 *
644 * Caller is responsible to call of_node_put() on the returned out_args->np
645 * pointer.
646 *
647 * Example:
648 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100649 * .. code-block::
Simon Glassc4fc5622017-05-18 20:08:58 -0600650 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100651 * phandle1: node1 {
652 * #list-cells = <2>;
653 * };
654 * phandle2: node2 {
655 * #list-cells = <1>;
656 * };
657 * node3 {
658 * list = <&phandle1 1 2 &phandle2 3>;
659 * };
Simon Glassc4fc5622017-05-18 20:08:58 -0600660 *
661 * To get a device_node of the `node2' node you may call this:
662 * ofnode_parse_phandle_with_args(node3, "list", "#list-cells", 0, 1, &args);
663 *
664 * @node: device tree node containing a list
665 * @list_name: property name that contains a list
666 * @cells_name: property name that specifies phandles' arguments count
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100667 * @cell_count: Cell count to use if @cells_name is NULL
Simon Glassc4fc5622017-05-18 20:08:58 -0600668 * @index: index of a phandle to parse out
669 * @out_args: optional pointer to output arguments structure (will be filled)
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100670 * Return:
671 * 0 on success (with @out_args filled out if not NULL), -ENOENT if
672 * @list_name does not exist, -EINVAL if a phandle was not found,
673 * @cells_name could not be found, the arguments were truncated or there
674 * were too many arguments.
Simon Glassc4fc5622017-05-18 20:08:58 -0600675 */
676int ofnode_parse_phandle_with_args(ofnode node, const char *list_name,
677 const char *cells_name, int cell_count,
678 int index,
679 struct ofnode_phandle_args *out_args);
680
681/**
Patrice Chotardbe7dd602017-07-18 11:57:08 +0200682 * ofnode_count_phandle_with_args() - Count number of phandle in a list
683 *
684 * This function is useful to count phandles into a list.
685 * Returns number of phandle on success, on error returns appropriate
686 * errno value.
687 *
688 * @node: device tree node containing a list
689 * @list_name: property name that contains a list
690 * @cells_name: property name that specifies phandles' arguments count
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100691 * @cell_count: Cell count to use if @cells_name is NULL
692 * Return:
693 * number of phandle on success, -ENOENT if @list_name does not exist,
694 * -EINVAL if a phandle was not found, @cells_name could not be found.
Patrice Chotardbe7dd602017-07-18 11:57:08 +0200695 */
696int ofnode_count_phandle_with_args(ofnode node, const char *list_name,
Patrick Delaunayd776a842020-09-25 09:41:14 +0200697 const char *cells_name, int cell_count);
Patrice Chotardbe7dd602017-07-18 11:57:08 +0200698
699/**
Simon Glassc4fc5622017-05-18 20:08:58 -0600700 * ofnode_path() - find a node by full path
701 *
702 * @path: Full path to node, e.g. "/bus/spi@1"
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100703 * Return: reference to the node found. Use ofnode_valid() to check if it exists
Simon Glassc4fc5622017-05-18 20:08:58 -0600704 */
705ofnode ofnode_path(const char *path);
706
707/**
Simon Glasse09223c2020-01-27 08:49:46 -0700708 * ofnode_read_chosen_prop() - get the value of a chosen property
709 *
710 * This looks for a property within the /chosen node and returns its value
711 *
712 * @propname: Property name to look for
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100713 * @sizep: Returns size of property, or `FDT_ERR_...` error code if function
Simon Glasse09223c2020-01-27 08:49:46 -0700714 * returns NULL
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100715 * Return: property value if found, else NULL
Simon Glasse09223c2020-01-27 08:49:46 -0700716 */
717const void *ofnode_read_chosen_prop(const char *propname, int *sizep);
718
719/**
Simon Glassf3455962020-01-27 08:49:43 -0700720 * ofnode_read_chosen_string() - get the string value of a chosen property
Simon Glassc4fc5622017-05-18 20:08:58 -0600721 *
Simon Glassf3455962020-01-27 08:49:43 -0700722 * This looks for a property within the /chosen node and returns its value,
723 * checking that it is a valid nul-terminated string
Simon Glassc4fc5622017-05-18 20:08:58 -0600724 *
725 * @propname: Property name to look for
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100726 * Return: string value if found, else NULL
Simon Glassc4fc5622017-05-18 20:08:58 -0600727 */
Simon Glassf3455962020-01-27 08:49:43 -0700728const char *ofnode_read_chosen_string(const char *propname);
Simon Glassc4fc5622017-05-18 20:08:58 -0600729
730/**
Simon Glassc99ba912020-01-27 08:49:42 -0700731 * ofnode_get_chosen_node() - get a referenced node from the chosen node
Simon Glassc4fc5622017-05-18 20:08:58 -0600732 *
Simon Glassc99ba912020-01-27 08:49:42 -0700733 * This looks up a named property in the chosen node and uses that as a path to
734 * look up a code.
735 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100736 * @propname: Property name to look for
737 * Return: the referenced node if present, else ofnode_null()
Simon Glassc4fc5622017-05-18 20:08:58 -0600738 */
Simon Glassc99ba912020-01-27 08:49:42 -0700739ofnode ofnode_get_chosen_node(const char *propname);
Simon Glassc4fc5622017-05-18 20:08:58 -0600740
Michal Simek92a88622020-07-28 12:51:08 +0200741/**
742 * ofnode_read_aliases_prop() - get the value of a aliases property
743 *
744 * This looks for a property within the /aliases node and returns its value
745 *
746 * @propname: Property name to look for
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100747 * @sizep: Returns size of property, or `FDT_ERR_...` error code if function
Michal Simek92a88622020-07-28 12:51:08 +0200748 * returns NULL
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100749 * Return: property value if found, else NULL
Michal Simek92a88622020-07-28 12:51:08 +0200750 */
751const void *ofnode_read_aliases_prop(const char *propname, int *sizep);
752
753/**
754 * ofnode_get_aliases_node() - get a referenced node from the aliases node
755 *
756 * This looks up a named property in the aliases node and uses that as a path to
757 * look up a code.
758 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100759 * @propname: Property name to look for
760 * Return: the referenced node if present, else ofnode_null()
Michal Simek92a88622020-07-28 12:51:08 +0200761 */
762ofnode ofnode_get_aliases_node(const char *propname);
763
Simon Glassc4fc5622017-05-18 20:08:58 -0600764struct display_timing;
765/**
766 * ofnode_decode_display_timing() - decode display timings
767 *
768 * Decode display timings from the supplied 'display-timings' node.
769 * See doc/device-tree-bindings/video/display-timing.txt for binding
770 * information.
771 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100772 * @node: 'display-timing' node containing the timing subnodes
773 * @index: Index number to read (0=first timing subnode)
774 * @config: Place to put timings
775 * Return: 0 if OK, -FDT_ERR_NOTFOUND if not found
Simon Glassc4fc5622017-05-18 20:08:58 -0600776 */
777int ofnode_decode_display_timing(ofnode node, int index,
778 struct display_timing *config);
779
780/**
Patrick Delaunaycaee1552020-01-13 11:34:56 +0100781 * ofnode_get_property() - get a pointer to the value of a node property
Simon Glassc4fc5622017-05-18 20:08:58 -0600782 *
783 * @node: node to read
784 * @propname: property to read
785 * @lenp: place to put length on success
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100786 * Return: pointer to property, or NULL if not found
Simon Glassc4fc5622017-05-18 20:08:58 -0600787 */
Masahiro Yamada9cf85cb2017-06-22 16:54:05 +0900788const void *ofnode_get_property(ofnode node, const char *propname, int *lenp);
Simon Glassc4fc5622017-05-18 20:08:58 -0600789
790/**
Patrick Delaunaycaee1552020-01-13 11:34:56 +0100791 * ofnode_get_first_property()- get the reference of the first property
792 *
793 * Get reference to the first property of the node, it is used to iterate
794 * and read all the property with ofnode_get_property_by_prop().
795 *
796 * @node: node to read
797 * @prop: place to put argument reference
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100798 * Return: 0 if OK, -ve on error. -FDT_ERR_NOTFOUND if not found
Patrick Delaunaycaee1552020-01-13 11:34:56 +0100799 */
800int ofnode_get_first_property(ofnode node, struct ofprop *prop);
801
802/**
803 * ofnode_get_next_property() - get the reference of the next property
804 *
805 * Get reference to the next property of the node, it is used to iterate
806 * and read all the property with ofnode_get_property_by_prop().
807 *
808 * @prop: reference of current argument and place to put reference of next one
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100809 * Return: 0 if OK, -ve on error. -FDT_ERR_NOTFOUND if not found
Patrick Delaunaycaee1552020-01-13 11:34:56 +0100810 */
811int ofnode_get_next_property(struct ofprop *prop);
812
813/**
814 * ofnode_get_property_by_prop() - get a pointer to the value of a property
815 *
816 * Get value for the property identified by the provided reference.
817 *
818 * @prop: reference on property
819 * @propname: If non-NULL, place to property name on success,
820 * @lenp: If non-NULL, place to put length on success
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100821 * Return: 0 if OK, -ve on error. -FDT_ERR_NOTFOUND if not found
Patrick Delaunaycaee1552020-01-13 11:34:56 +0100822 */
823const void *ofnode_get_property_by_prop(const struct ofprop *prop,
824 const char **propname, int *lenp);
825
826/**
Simon Glassc4fc5622017-05-18 20:08:58 -0600827 * ofnode_is_available() - check if a node is marked available
828 *
829 * @node: node to check
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100830 * Return: true if node's 'status' property is "okay" (or is missing)
Simon Glassc4fc5622017-05-18 20:08:58 -0600831 */
832bool ofnode_is_available(ofnode node);
833
834/**
835 * ofnode_get_addr_size() - get address and size from a property
836 *
837 * This does no address translation. It simply reads an property that contains
838 * an address and a size value, one after the other.
839 *
840 * @node: node to read from
841 * @propname: property to read
842 * @sizep: place to put size value (on success)
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100843 * Return: address value, or FDT_ADDR_T_NONE on error
Simon Glassc4fc5622017-05-18 20:08:58 -0600844 */
845phys_addr_t ofnode_get_addr_size(ofnode node, const char *propname,
846 phys_size_t *sizep);
847
848/**
849 * ofnode_read_u8_array_ptr() - find an 8-bit array
850 *
851 * Look up a property in a node and return a pointer to its contents as a
852 * byte array of given length. The property must have at least enough data
853 * for the array (count bytes). It may have more, but this will be ignored.
854 * The data is not copied.
855 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100856 * @node: node to examine
857 * @propname: name of property to find
858 * @sz: number of array elements
859 * Return:
860 * pointer to byte array if found, or NULL if the property is not found or
861 * there is not enough data
Simon Glassc4fc5622017-05-18 20:08:58 -0600862 */
863const uint8_t *ofnode_read_u8_array_ptr(ofnode node, const char *propname,
864 size_t sz);
865
866/**
867 * ofnode_read_pci_addr() - look up a PCI address
868 *
869 * Look at an address property in a node and return the PCI address which
870 * corresponds to the given type in the form of fdt_pci_addr.
871 * The property must hold one fdt_pci_addr with a lengh.
872 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100873 * @node: node to examine
874 * @type: pci address type (FDT_PCI_SPACE_xxx)
875 * @propname: name of property to find
876 * @addr: returns pci address in the form of fdt_pci_addr
877 * Return:
878 * 0 if ok, -ENOENT if the property did not exist, -EINVAL if the
879 * format of the property was invalid, -ENXIO if the requested
880 * address type was not found
Simon Glassc4fc5622017-05-18 20:08:58 -0600881 */
882int ofnode_read_pci_addr(ofnode node, enum fdt_pci_space type,
883 const char *propname, struct fdt_pci_addr *addr);
884
885/**
Bin Mengfa157712018-08-03 01:14:35 -0700886 * ofnode_read_pci_vendev() - look up PCI vendor and device id
887 *
888 * Look at the compatible property of a device node that represents a PCI
889 * device and extract pci vendor id and device id from it.
890 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100891 * @node: node to examine
892 * @vendor: vendor id of the pci device
893 * @device: device id of the pci device
894 * Return: 0 if ok, negative on error
Bin Mengfa157712018-08-03 01:14:35 -0700895 */
896int ofnode_read_pci_vendev(ofnode node, u16 *vendor, u16 *device);
897
898/**
Michal Simeka253c3b2022-02-23 15:45:40 +0100899 * ofnode_read_eth_phy_id() - look up eth phy vendor and device id
900 *
901 * Look at the compatible property of a device node that represents a eth phy
902 * device and extract phy vendor id and device id from it.
903 *
Heinrich Schuchardtc9ae4a82022-03-24 16:22:32 +0100904 * @node: node to examine
905 * @vendor: vendor id of the eth phy device
906 * @device: device id of the eth phy device
907 * Return: 0 if ok, negative on error
Michal Simeka253c3b2022-02-23 15:45:40 +0100908 */
909int ofnode_read_eth_phy_id(ofnode node, u16 *vendor, u16 *device);
910
911/**
Simon Glassc4fc5622017-05-18 20:08:58 -0600912 * ofnode_read_addr_cells() - Get the number of address cells for a node
913 *
914 * This walks back up the tree to find the closest #address-cells property
915 * which controls the given node.
916 *
917 * @node: Node to check
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100918 * Return: number of address cells this node uses
Simon Glassc4fc5622017-05-18 20:08:58 -0600919 */
920int ofnode_read_addr_cells(ofnode node);
921
922/**
923 * ofnode_read_size_cells() - Get the number of size cells for a node
924 *
925 * This walks back up the tree to find the closest #size-cells property
926 * which controls the given node.
927 *
928 * @node: Node to check
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100929 * Return: number of size cells this node uses
Simon Glassc4fc5622017-05-18 20:08:58 -0600930 */
931int ofnode_read_size_cells(ofnode node);
932
933/**
Simon Glass4191dc12017-06-12 06:21:31 -0600934 * ofnode_read_simple_addr_cells() - Get the address cells property in a node
935 *
936 * This function matches fdt_address_cells().
937 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100938 * @node: Node to check
939 * Return: value of #address-cells property in this node, or 2 if none
Simon Glass4191dc12017-06-12 06:21:31 -0600940 */
941int ofnode_read_simple_addr_cells(ofnode node);
942
943/**
944 * ofnode_read_simple_size_cells() - Get the size cells property in a node
945 *
946 * This function matches fdt_size_cells().
947 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100948 * @node: Node to check
949 * Return: value of #size-cells property in this node, or 2 if none
Simon Glass4191dc12017-06-12 06:21:31 -0600950 */
951int ofnode_read_simple_size_cells(ofnode node);
952
953/**
Simon Glassc4fc5622017-05-18 20:08:58 -0600954 * ofnode_pre_reloc() - check if a node should be bound before relocation
955 *
956 * Device tree nodes can be marked as needing-to-be-bound in the loader stages
957 * via special device tree properties.
958 *
959 * Before relocation this function can be used to check if nodes are required
960 * in either SPL or TPL stages.
961 *
962 * After relocation and jumping into the real U-Boot binary it is possible to
963 * determine if a node was bound in one of SPL/TPL stages.
964 *
Patrick Delaunay63e4d112019-05-21 19:19:13 +0200965 * There are 4 settings currently in use
966 * - u-boot,dm-pre-proper: U-Boot proper pre-relocation only
Simon Glassc4fc5622017-05-18 20:08:58 -0600967 * - u-boot,dm-pre-reloc: legacy and indicates any of TPL or SPL
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100968 * Existing platforms only use it to indicate nodes needed in
969 * SPL. Should probably be replaced by u-boot,dm-spl for new platforms.
Patrick Delaunay63e4d112019-05-21 19:19:13 +0200970 * - u-boot,dm-spl: SPL and U-Boot pre-relocation
971 * - u-boot,dm-tpl: TPL and U-Boot pre-relocation
Simon Glassc4fc5622017-05-18 20:08:58 -0600972 *
973 * @node: node to check
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100974 * Return: true if node is needed in SPL/TL, false otherwise
Simon Glassc4fc5622017-05-18 20:08:58 -0600975 */
976bool ofnode_pre_reloc(ofnode node);
977
Simon Glassa8173d62018-06-11 13:07:12 -0600978/**
979 * ofnode_read_resource() - Read a resource from a node
980 *
981 * Read resource information from a node at the given index
982 *
983 * @node: Node to read from
984 * @index: Index of resource to read (0 = first)
985 * @res: Returns resource that was read, on success
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +0100986 * Return: 0 if OK, -ve on error
Simon Glassa8173d62018-06-11 13:07:12 -0600987 */
Simon Glassf7bfcc42017-07-25 08:29:55 -0600988int ofnode_read_resource(ofnode node, uint index, struct resource *res);
Simon Glassa8173d62018-06-11 13:07:12 -0600989
990/**
991 * ofnode_read_resource_byname() - Read a resource from a node by name
992 *
993 * Read resource information from a node matching the given name. This uses a
994 * 'reg-names' string list property with the names matching the associated
995 * 'reg' property list.
996 *
997 * @node: Node to read from
998 * @name: Name of resource to read
999 * @res: Returns resource that was read, on success
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +01001000 * Return: 0 if OK, -ve on error
Simon Glassa8173d62018-06-11 13:07:12 -06001001 */
Masahiro Yamada4dada2c2017-08-26 01:12:30 +09001002int ofnode_read_resource_byname(ofnode node, const char *name,
1003 struct resource *res);
Simon Glassf7bfcc42017-07-25 08:29:55 -06001004
Simon Glass28529762017-08-05 15:45:54 -06001005/**
Simon Glass954eeae2018-06-11 13:07:13 -06001006 * ofnode_by_compatible() - Find the next compatible node
1007 *
1008 * Find the next node after @from that is compatible with @compat
1009 *
1010 * @from: ofnode to start from (use ofnode_null() to start at the beginning)
1011 * @compat: Compatible string to match
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +01001012 * Return: ofnode found, or ofnode_null() if none
Simon Glass954eeae2018-06-11 13:07:13 -06001013 */
1014ofnode ofnode_by_compatible(ofnode from, const char *compat);
1015
1016/**
Jens Wiklander7b68dad2018-08-20 11:09:58 +02001017 * ofnode_by_prop_value() - Find the next node with given property value
1018 *
1019 * Find the next node after @from that has a @propname with a value
1020 * @propval and a length @proplen.
1021 *
1022 * @from: ofnode to start from (use ofnode_null() to start at the
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +01001023 * beginning)
1024 * @propname: property name to check
1025 * @propval: property value to search for
1026 * @proplen: length of the value in propval
1027 * Return: ofnode found, or ofnode_null() if none
Jens Wiklander7b68dad2018-08-20 11:09:58 +02001028 */
1029ofnode ofnode_by_prop_value(ofnode from, const char *propname,
1030 const void *propval, int proplen);
1031
1032/**
Simon Glass28529762017-08-05 15:45:54 -06001033 * ofnode_for_each_subnode() - iterate over all subnodes of a parent
1034 *
1035 * @node: child node (ofnode, lvalue)
1036 * @parent: parent node (ofnode)
1037 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +01001038 * This is a wrapper around a for loop and is used like so::
Simon Glass28529762017-08-05 15:45:54 -06001039 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +01001040 * ofnode node;
1041 * ofnode_for_each_subnode(node, parent) {
1042 * Use node
1043 * ...
1044 * }
Simon Glass28529762017-08-05 15:45:54 -06001045 *
1046 * Note that this is implemented as a macro and @node is used as
1047 * iterator in the loop. The parent variable can be a constant or even a
1048 * literal.
1049 */
1050#define ofnode_for_each_subnode(node, parent) \
1051 for (node = ofnode_first_subnode(parent); \
1052 ofnode_valid(node); \
1053 node = ofnode_next_subnode(node))
1054
Mario Sixaefac062018-01-15 11:07:19 +01001055/**
Michael Wallea7b9df22021-10-15 15:15:17 +02001056 * ofnode_for_each_compatible_node() - iterate over all nodes with a given
1057 * compatible string
1058 *
1059 * @node: child node (ofnode, lvalue)
1060 * @compat: compatible string to match
1061 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +01001062 * This is a wrapper around a for loop and is used like so::
Michael Wallea7b9df22021-10-15 15:15:17 +02001063 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +01001064 * ofnode node;
1065 * ofnode_for_each_compatible_node(node, parent, compatible) {
1066 * Use node
1067 * ...
1068 * }
Michael Wallea7b9df22021-10-15 15:15:17 +02001069 *
1070 * Note that this is implemented as a macro and @node is used as
1071 * iterator in the loop.
1072 */
1073#define ofnode_for_each_compatible_node(node, compat) \
1074 for (node = ofnode_by_compatible(ofnode_null(), compat); \
1075 ofnode_valid(node); \
1076 node = ofnode_by_compatible(node, compat))
1077
1078/**
developerd93c8b42020-05-02 11:35:09 +02001079 * ofnode_get_child_count() - get the child count of a ofnode
1080 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +01001081 * @parent: valid node to get its child count
1082 * Return: the number of subnodes
developerd93c8b42020-05-02 11:35:09 +02001083 */
1084int ofnode_get_child_count(ofnode parent);
1085
1086/**
Fabien Dessenne22236e02019-05-31 15:11:30 +02001087 * ofnode_translate_address() - Translate a device-tree address
Mario Sixaefac062018-01-15 11:07:19 +01001088 *
1089 * Translate an address from the device-tree into a CPU physical address. This
1090 * function walks up the tree and applies the various bus mappings along the
1091 * way.
1092 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +01001093 * @node: Device tree node giving the context in which to translate the address
Mario Sixaefac062018-01-15 11:07:19 +01001094 * @in_addr: pointer to the address to translate
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +01001095 * Return: the translated address; OF_BAD_ADDR on error
Mario Sixaefac062018-01-15 11:07:19 +01001096 */
1097u64 ofnode_translate_address(ofnode node, const fdt32_t *in_addr);
Masahiro Yamada9349bcc2018-04-19 12:14:02 +09001098
1099/**
Fabien Dessenne22236e02019-05-31 15:11:30 +02001100 * ofnode_translate_dma_address() - Translate a device-tree DMA address
1101 *
1102 * Translate a DMA address from the device-tree into a CPU physical address.
1103 * This function walks up the tree and applies the various bus mappings along
1104 * the way.
1105 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +01001106 * @node: Device tree node giving the context in which to translate the
1107 * DMA address
Fabien Dessenne22236e02019-05-31 15:11:30 +02001108 * @in_addr: pointer to the DMA address to translate
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +01001109 * Return: the translated DMA address; OF_BAD_ADDR on error
Fabien Dessenne22236e02019-05-31 15:11:30 +02001110 */
1111u64 ofnode_translate_dma_address(ofnode node, const fdt32_t *in_addr);
1112
1113/**
Nicolas Saenz Julienne50d2fa42021-01-12 13:55:22 +01001114 * ofnode_get_dma_range() - get dma-ranges for a specific DT node
1115 *
1116 * Get DMA ranges for a specifc node, this is useful to perform bus->cpu and
1117 * cpu->bus address translations
1118 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +01001119 * @node: Device tree node
1120 * @cpu: Pointer to variable storing the range's cpu address
1121 * @bus: Pointer to variable storing the range's bus address
1122 * @size: Pointer to variable storing the range's size
1123 * Return: translated DMA address or OF_BAD_ADDR on error
Nicolas Saenz Julienne50d2fa42021-01-12 13:55:22 +01001124 */
1125int ofnode_get_dma_range(ofnode node, phys_addr_t *cpu, dma_addr_t *bus,
1126 u64 *size);
1127
1128/**
Masahiro Yamada9349bcc2018-04-19 12:14:02 +09001129 * ofnode_device_is_compatible() - check if the node is compatible with compat
1130 *
1131 * This allows to check whether the node is comaptible with the compat.
1132 *
1133 * @node: Device tree node for which compatible needs to be verified.
1134 * @compat: Compatible string which needs to verified in the given node.
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +01001135 * Return: true if OK, false if the compatible is not found
Masahiro Yamada9349bcc2018-04-19 12:14:02 +09001136 */
1137int ofnode_device_is_compatible(ofnode node, const char *compat);
Mario Six047dafc2018-06-26 08:46:48 +02001138
1139/**
1140 * ofnode_write_prop() - Set a property of a ofnode
1141 *
1142 * Note that the value passed to the function is *not* allocated by the
1143 * function itself, but must be allocated by the caller if necessary.
1144 *
1145 * @node: The node for whose property should be set
1146 * @propname: The name of the property to set
1147 * @len: The length of the new value of the property
1148 * @value: The new value of the property (must be valid prior to calling
1149 * the function)
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +01001150 * Return: 0 if successful, -ve on error
Mario Six047dafc2018-06-26 08:46:48 +02001151 */
1152int ofnode_write_prop(ofnode node, const char *propname, int len,
1153 const void *value);
1154
1155/**
1156 * ofnode_write_string() - Set a string property of a ofnode
1157 *
1158 * Note that the value passed to the function is *not* allocated by the
1159 * function itself, but must be allocated by the caller if necessary.
1160 *
1161 * @node: The node for whose string property should be set
1162 * @propname: The name of the string property to set
1163 * @value: The new value of the string property (must be valid prior to
1164 * calling the function)
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +01001165 * Return: 0 if successful, -ve on error
Mario Six047dafc2018-06-26 08:46:48 +02001166 */
1167int ofnode_write_string(ofnode node, const char *propname, const char *value);
1168
1169/**
1170 * ofnode_set_enabled() - Enable or disable a device tree node given by its
1171 * ofnode
1172 *
1173 * This function effectively sets the node's "status" property to either "okay"
1174 * or "disable", hence making it available for driver model initialization or
1175 * not.
1176 *
1177 * @node: The node to enable
1178 * @value: Flag that tells the function to either disable or enable the
1179 * node
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +01001180 * Return: 0 if successful, -ve on error
Mario Six047dafc2018-06-26 08:46:48 +02001181 */
1182int ofnode_set_enabled(ofnode node, bool value);
1183
Simon Glass0034d962021-08-07 07:24:01 -06001184/**
Sean Anderson9b3a6392022-03-28 18:14:37 -04001185 * ofnode_get_phy_node() - Get PHY node for a MAC (if not fixed-link)
1186 *
1187 * This function parses PHY handle from the Ethernet controller's ofnode
1188 * (trying all possible PHY handle property names), and returns the PHY ofnode.
1189 *
1190 * Before this is used, ofnode_phy_is_fixed_link() should be checked first, and
1191 * if the result to that is true, this function should not be called.
1192 *
1193 * @eth_node: ofnode belonging to the Ethernet controller
1194 * Return: ofnode of the PHY, if it exists, otherwise an invalid ofnode
1195 */
1196ofnode ofnode_get_phy_node(ofnode eth_node);
1197
1198/**
1199 * ofnode_read_phy_mode() - Read PHY connection type from a MAC node
1200 *
1201 * This function parses the "phy-mode" / "phy-connection-type" property and
1202 * returns the corresponding PHY interface type.
1203 *
1204 * @mac_node: ofnode containing the property
1205 * Return: one of PHY_INTERFACE_MODE_* constants, PHY_INTERFACE_MODE_NA on
1206 * error
1207 */
1208phy_interface_t ofnode_read_phy_mode(ofnode mac_node);
1209
1210#if CONFIG_IS_ENABLED(DM)
1211/**
Simon Glass0034d962021-08-07 07:24:01 -06001212 * ofnode_conf_read_bool() - Read a boolean value from the U-Boot config
1213 *
1214 * This reads a property from the /config node of the devicetree.
1215 *
1216 * See doc/config.txt for bindings
1217 *
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +01001218 * @prop_name: property name to look up
1219 * Return: true, if it exists, false if not
Simon Glass0034d962021-08-07 07:24:01 -06001220 */
1221bool ofnode_conf_read_bool(const char *prop_name);
1222
1223/**
1224 * ofnode_conf_read_int() - Read an integer value from the U-Boot config
1225 *
1226 * This reads a property from the /config node of the devicetree.
1227 *
1228 * See doc/config.txt for bindings
1229 *
1230 * @prop_name: property name to look up
1231 * @default_val: default value to return if the property is not found
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +01001232 * Return: integer value, if found, or @default_val if not
Simon Glass0034d962021-08-07 07:24:01 -06001233 */
1234int ofnode_conf_read_int(const char *prop_name, int default_val);
1235
1236/**
1237 * ofnode_conf_read_str() - Read a string value from the U-Boot config
1238 *
1239 * This reads a property from the /config node of the devicetree.
1240 *
1241 * See doc/config.txt for bindings
1242 *
1243 * @prop_name: property name to look up
Patrick Delaunay92c1c5c2022-01-12 10:53:49 +01001244 * Return: string value, if found, or NULL if not
Simon Glass0034d962021-08-07 07:24:01 -06001245 */
1246const char *ofnode_conf_read_str(const char *prop_name);
1247
Sean Anderson9b3a6392022-03-28 18:14:37 -04001248#else /* CONFIG_DM */
1249static inline bool ofnode_conf_read_bool(const char *prop_name)
1250{
1251 return false;
1252}
Marek Behúnf4f1ddc2022-04-07 00:32:57 +02001253
Sean Anderson9b3a6392022-03-28 18:14:37 -04001254static inline int ofnode_conf_read_int(const char *prop_name, int default_val)
1255{
1256 return default_val;
1257}
1258
1259static inline const char *ofnode_conf_read_str(const char *prop_name)
1260{
1261 return NULL;
1262}
1263#endif /* CONFIG_DM */
Marek Behúnbc194772022-04-07 00:33:01 +02001264
Simon Glass9a148602017-05-17 17:18:10 -06001265#endif