blob: 5795115c490bb5d37fd6449f3b40b14e79832206 [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>
Marek Behún123ca112022-04-07 00:33:01 +020015#include <phy_interface.h>
Simon Glass9e512042017-05-18 20:08:58 -060016
17/* Enable checks to protect against invalid calls */
18#undef OF_CHECKS
19
Simon Glass62b1db32023-09-26 08:14:43 -060020struct abuf;
Simon Glassdcf98852017-07-25 08:29:55 -060021struct resource;
22
Simon Glass5063ced2022-07-30 15:52:06 -060023#include <dm/ofnode_decl.h>
Michal Simekdb5e3492023-08-31 08:59:05 +020024#include <linux/errno.h>
Simon Glass4984de22017-05-17 17:18:10 -060025
Simon Glass9e512042017-05-18 20:08:58 -060026struct ofnode_phandle_args {
27 ofnode node;
28 int args_count;
29 uint32_t args[OF_MAX_PHANDLE_ARGS];
30};
31
Simon Glass92291652022-09-06 20:27:26 -060032#if CONFIG_IS_ENABLED(OFNODE_MULTI_TREE)
Simon Glass9e512042017-05-18 20:08:58 -060033/**
Simon Glassee88ba72022-09-06 20:27:19 -060034 * oftree_reset() - reset the state of the oftree list
35 *
36 * Reset the oftree list so it can be started again. This should be called
37 * once the control FDT is in place, but before the ofnode interface is used.
38 */
Simon Glass92291652022-09-06 20:27:26 -060039void oftree_reset(void);
Simon Glassee88ba72022-09-06 20:27:19 -060040
41/**
Simon Glassa3f50d02022-09-06 20:27:20 -060042 * ofnode_to_fdt() - convert an ofnode to a flat DT pointer
43 *
44 * This cannot be called if the reference contains a node pointer.
45 *
46 * @node: Reference containing offset (possibly invalid)
47 * Return: DT offset (can be NULL)
48 */
Simon Glass92291652022-09-06 20:27:26 -060049__attribute_const__ void *ofnode_to_fdt(ofnode node);
Simon Glassa3f50d02022-09-06 20:27:20 -060050
51/**
Simon Glass2187cb72022-09-06 20:27:23 -060052 * ofnode_to_offset() - convert an ofnode to a flat DT offset
53 *
54 * This cannot be called if the reference contains a node pointer.
55 *
56 * @node: Reference containing offset (possibly invalid)
57 * Return: DT offset (can be -1)
58 */
Simon Glass92291652022-09-06 20:27:26 -060059__attribute_const__ int ofnode_to_offset(ofnode node);
60
61/**
62 * oftree_from_fdt() - Returns an oftree from a flat device tree pointer
63 *
Simon Glasse7a18f72022-10-11 09:47:19 -060064 * If @fdt is not already registered in the list of current device trees, it is
65 * added to the list.
66 *
Simon Glass92291652022-09-06 20:27:26 -060067 * @fdt: Device tree to use
68 *
69 * Returns: reference to the given node
70 */
71oftree oftree_from_fdt(void *fdt);
72
73/**
74 * noffset_to_ofnode() - convert a DT offset to an ofnode
75 *
76 * @other_node: Node in the same tree to use as a reference
77 * @of_offset: DT offset (either valid, or -1)
78 * Return: reference to the associated DT offset
79 */
80ofnode noffset_to_ofnode(ofnode other_node, int of_offset);
81
82#else /* !OFNODE_MULTI_TREE */
83static inline void oftree_reset(void) {}
84
85static inline void *ofnode_to_fdt(ofnode node)
86{
87#ifdef OF_CHECKS
88 if (of_live_active())
89 return NULL;
90#endif
91 /* Use the control FDT by default */
92 return (void *)gd->fdt_blob;
93}
94
95static inline __attribute_const__ int ofnode_to_offset(ofnode node)
Simon Glass2187cb72022-09-06 20:27:23 -060096{
97#ifdef OF_CHECKS
98 if (of_live_active())
99 return -1;
100#endif
101 return node.of_offset;
102}
103
Simon Glass92291652022-09-06 20:27:26 -0600104static inline oftree oftree_from_fdt(void *fdt)
105{
106 oftree tree;
107
108 /* we cannot access other trees without OFNODE_MULTI_TREE */
109 if (fdt == gd->fdt_blob)
110 tree.fdt = fdt;
111 else
112 tree.fdt = NULL;
113
114 return tree;
115}
116
117static inline ofnode noffset_to_ofnode(ofnode other_node, int of_offset)
118{
119 ofnode node;
120
121 if (of_live_active())
122 node.np = NULL;
123 else
124 node.of_offset = of_offset;
125
126 return node;
127}
128
129#endif /* OFNODE_MULTI_TREE */
130
Simon Glass2187cb72022-09-06 20:27:23 -0600131/**
Simon Glasse0c3c212023-09-26 08:14:40 -0600132 * oftree_new() - Create a new, empty tree
133 *
134 * @treep: Returns a pointer to the tree, on success
135 * Returns: 0 on success, -ENOMEM if out of memory, -E2BIG if !OF_LIVE and
136 * there are too many (flattrees) already
137 */
138int oftree_new(oftree *treep);
139
140/**
Simon Glass62b1db32023-09-26 08:14:43 -0600141 * oftree_to_fdt() - Convert an oftree to a flat FDT
142 *
143 * @tree: tree to flatten (if livetree) or copy (if not)
144 * @buf: Returns inited buffer containing the newly created flat tree. Note
145 * that for flat tree the buffer is not allocated. In either case the caller
146 * must call abut_uninit() to free any memory used by @buf
147 * Return: 0 on success, -ENOMEM if out of memory, other -ve value for any other
148 * error
149 */
150int oftree_to_fdt(oftree tree, struct abuf *buf);
151
152/**
Stefan Roese45dbe752020-09-23 08:23:27 +0200153 * ofnode_to_np() - convert an ofnode to a live DT node pointer
Simon Glass9e512042017-05-18 20:08:58 -0600154 *
155 * This cannot be called if the reference contains an offset.
156 *
157 * @node: Reference containing struct device_node * (possibly invalid)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100158 * Return: pointer to device node (can be NULL)
Simon Glass9e512042017-05-18 20:08:58 -0600159 */
Simon Glass98306982022-09-06 20:27:04 -0600160static inline struct device_node *ofnode_to_np(ofnode node)
Simon Glass9e512042017-05-18 20:08:58 -0600161{
162#ifdef OF_CHECKS
163 if (!of_live_active())
164 return NULL;
165#endif
166 return node.np;
167}
168
Simon Glass4984de22017-05-17 17:18:10 -0600169/**
Simon Glass4984de22017-05-17 17:18:10 -0600170 * ofnode_valid() - check if an ofnode is valid
171 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100172 * @node: Reference containing offset (possibly invalid)
Simon Glass92291652022-09-06 20:27:26 -0600173 * Return: true if the reference contains a valid ofnode, false if not
Simon Glass4984de22017-05-17 17:18:10 -0600174 */
175static inline bool ofnode_valid(ofnode node)
176{
Simon Glass9e512042017-05-18 20:08:58 -0600177 if (of_live_active())
178 return node.np != NULL;
179 else
Patrick Delaunay6d9949f2020-09-24 17:26:20 +0200180 return node.of_offset >= 0;
Simon Glass4984de22017-05-17 17:18:10 -0600181}
182
183/**
Simon Glass928d2672022-09-06 20:27:22 -0600184 * oftree_lookup_fdt() - obtain the FDT pointer from an oftree
185 *
186 * This can only be called when flat tree is enabled
187 *
188 * @tree: Tree to look at
189 * @return FDT pointer from the tree
190 */
191static inline void *oftree_lookup_fdt(oftree tree)
192{
193 if (of_live_active())
194 return NULL;
195 else
196 return tree.fdt;
197}
198
199/**
Simon Glass4984de22017-05-17 17:18:10 -0600200 * offset_to_ofnode() - convert a DT offset to an ofnode
201 *
202 * @of_offset: DT offset (either valid, or -1)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100203 * Return: reference to the associated DT offset
Simon Glass4984de22017-05-17 17:18:10 -0600204 */
205static inline ofnode offset_to_ofnode(int of_offset)
206{
207 ofnode node;
208
Simon Glass9e512042017-05-18 20:08:58 -0600209 if (of_live_active())
210 node.np = NULL;
211 else
Simon Glassb14c5332019-12-06 21:41:36 -0700212 node.of_offset = of_offset >= 0 ? of_offset : -1;
Simon Glass4984de22017-05-17 17:18:10 -0600213
214 return node;
215}
216
217/**
Simon Glass9e512042017-05-18 20:08:58 -0600218 * np_to_ofnode() - convert a node pointer to an ofnode
219 *
220 * @np: Live node pointer (can be NULL)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100221 * Return: reference to the associated node pointer
Simon Glass9e512042017-05-18 20:08:58 -0600222 */
Simon Glass98306982022-09-06 20:27:04 -0600223static inline ofnode np_to_ofnode(struct device_node *np)
Simon Glass9e512042017-05-18 20:08:58 -0600224{
225 ofnode node;
226
227 node.np = np;
228
229 return node;
230}
231
232/**
233 * ofnode_is_np() - check if a reference is a node pointer
234 *
235 * This function associated that if there is a valid live tree then all
236 * references will use it. This is because using the flat DT when the live tree
237 * is valid is not permitted.
238 *
239 * @node: reference to check (possibly invalid)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100240 * Return: true if the reference is a live node pointer, false if it is a DT
Simon Glass9e512042017-05-18 20:08:58 -0600241 * offset
242 */
243static inline bool ofnode_is_np(ofnode node)
244{
245#ifdef OF_CHECKS
246 /*
247 * Check our assumption that flat tree offsets are not used when a
248 * live tree is in use.
249 */
250 assert(!ofnode_valid(node) ||
Stefan Roese45dbe752020-09-23 08:23:27 +0200251 (of_live_active() ? ofnode_to_np(node)
252 : ofnode_to_np(node)));
Simon Glass9e512042017-05-18 20:08:58 -0600253#endif
254 return of_live_active() && ofnode_valid(node);
255}
256
257/**
Simon Glass4984de22017-05-17 17:18:10 -0600258 * ofnode_equal() - check if two references are equal
259 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100260 * @ref1: first reference to check (possibly invalid)
261 * @ref2: second reference to check (possibly invalid)
262 * Return: true if equal, else false
Simon Glass4984de22017-05-17 17:18:10 -0600263 */
264static inline bool ofnode_equal(ofnode ref1, ofnode ref2)
265{
266 /* We only need to compare the contents */
267 return ref1.of_offset == ref2.of_offset;
268}
269
Simon Glass9e512042017-05-18 20:08:58 -0600270/**
Simon Glass085d5942022-09-06 20:27:21 -0600271 * oftree_valid() - check if an oftree is valid
272 *
273 * @tree: Reference containing oftree
274 * Return: true if the reference contains a valid oftree, false if node
275 */
276static inline bool oftree_valid(oftree tree)
277{
278 if (of_live_active())
279 return tree.np;
280 else
281 return tree.fdt;
282}
283
284/**
285 * oftree_null() - Obtain a null oftree
286 *
287 * This returns an oftree which points to no tree. It works both with the flat
288 * tree and livetree.
289 */
290static inline oftree oftree_null(void)
291{
292 oftree tree;
293
294 if (of_live_active())
295 tree.np = NULL;
296 else
297 tree.fdt = NULL;
298
299 return tree;
300}
301
302/**
Simon Glass9e512042017-05-18 20:08:58 -0600303 * ofnode_null() - Obtain a null ofnode
304 *
305 * This returns an ofnode which points to no node. It works both with the flat
306 * tree and livetree.
307 */
308static inline ofnode ofnode_null(void)
309{
310 ofnode node;
311
312 if (of_live_active())
313 node.np = NULL;
314 else
315 node.of_offset = -1;
316
317 return node;
318}
319
Simon Glassd0c20ce2020-11-28 17:50:07 -0700320static inline ofnode ofnode_root(void)
321{
322 ofnode node;
323
324 if (of_live_active())
325 node.np = gd_of_root();
326 else
327 node.of_offset = 0;
328
329 return node;
330}
331
Simon Glass9e512042017-05-18 20:08:58 -0600332/**
Simon Glass52ad21a2022-09-06 20:27:16 -0600333 * ofprop_valid() - check if an ofprop is valid
334 *
335 * @prop: Pointer to ofprop to check
336 * Return: true if the reference contains a valid ofprop, false if not
337 */
338static inline bool ofprop_valid(struct ofprop *prop)
339{
340 if (of_live_active())
341 return prop->prop;
342 else
343 return prop->offset >= 0;
344}
345
346/**
Simon Glass33104842022-07-30 15:52:08 -0600347 * oftree_default() - Returns the default device tree (U-Boot's control FDT)
348 *
349 * Returns: reference to the control FDT
350 */
351static inline oftree oftree_default(void)
352{
353 oftree tree;
354
355 if (of_live_active())
356 tree.np = gd_of_root();
357 else
358 tree.fdt = (void *)gd->fdt_blob;
359
360 return tree;
361}
362
363/**
Simon Glass085d5942022-09-06 20:27:21 -0600364 * oftree_from_np() - Returns an oftree from a node pointer
365 *
366 * @root: Root node of the tree
367 * Returns: reference to the given node
368 */
369static inline oftree oftree_from_np(struct device_node *root)
370{
371 oftree tree;
372
373 tree.np = root;
374
375 return tree;
376}
377
378/**
Simon Glassa8f2ac22023-06-01 10:22:42 -0600379 * oftree_dispose() - Dispose of an oftree
380 *
381 * This can be used to dispose of a tree that has been created (other than
382 * the control FDT which must not be disposed)
383 *
384 * @tree: Tree to dispose
385 */
386void oftree_dispose(oftree tree);
387
388/**
Kishon Vijay Abraham I77cbaf82021-07-21 21:28:30 +0530389 * ofnode_name_eq() - Check if the node name is equivalent to a given name
390 * ignoring the unit address
391 *
392 * @node: valid node reference that has to be compared
393 * @name: name that has to be compared with the node name
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100394 * Return: true if matches, false if it doesn't match
Kishon Vijay Abraham I77cbaf82021-07-21 21:28:30 +0530395 */
396bool ofnode_name_eq(ofnode node, const char *name);
397
398/**
Stefan Herbrechtsmeierb471bdc2022-06-14 15:21:30 +0200399 * ofnode_read_u8() - Read a 8-bit integer from a property
400 *
401 * @node: valid node reference to read property from
402 * @propname: name of the property to read from
403 * @outp: place to put value (if found)
404 * Return: 0 if OK, -ve on error
405 */
406int ofnode_read_u8(ofnode node, const char *propname, u8 *outp);
407
408/**
409 * ofnode_read_u8_default() - Read a 8-bit integer from a property
410 *
411 * @node: valid node reference to read property from
412 * @propname: name of the property to read from
413 * @def: default value to return if the property has no value
414 * Return: property value, or @def if not found
415 */
416u8 ofnode_read_u8_default(ofnode node, const char *propname, u8 def);
417
418/**
419 * ofnode_read_u16() - Read a 16-bit integer from a property
420 *
421 * @node: valid node reference to read property from
422 * @propname: name of the property to read from
423 * @outp: place to put value (if found)
424 * Return: 0 if OK, -ve on error
425 */
426int ofnode_read_u16(ofnode node, const char *propname, u16 *outp);
427
428/**
429 * ofnode_read_u16_default() - Read a 16-bit integer from a property
430 *
431 * @node: valid node reference to read property from
432 * @propname: name of the property to read from
433 * @def: default value to return if the property has no value
434 * Return: property value, or @def if not found
435 */
436u16 ofnode_read_u16_default(ofnode node, const char *propname, u16 def);
437
438/**
Simon Glass9e512042017-05-18 20:08:58 -0600439 * ofnode_read_u32() - Read a 32-bit integer from a property
440 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100441 * @node: valid node reference to read property from
Simon Glass9e512042017-05-18 20:08:58 -0600442 * @propname: name of the property to read from
443 * @outp: place to put value (if found)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100444 * Return: 0 if OK, -ve on error
Simon Glass9e512042017-05-18 20:08:58 -0600445 */
446int ofnode_read_u32(ofnode node, const char *propname, u32 *outp);
447
448/**
Dario Binacchi4bb70752020-03-29 18:04:41 +0200449 * ofnode_read_u32_index() - Read a 32-bit integer from a multi-value property
450 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100451 * @node: valid node reference to read property from
Dario Binacchi4bb70752020-03-29 18:04:41 +0200452 * @propname: name of the property to read from
453 * @index: index of the integer to return
454 * @outp: place to put value (if found)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100455 * Return: 0 if OK, -ve on error
Dario Binacchi4bb70752020-03-29 18:04:41 +0200456 */
457int ofnode_read_u32_index(ofnode node, const char *propname, int index,
458 u32 *outp);
459
460/**
Michal Simekfa12dfa2023-08-25 11:37:46 +0200461 * ofnode_read_u64_index() - Read a 64-bit integer from a multi-value property
462 *
463 * @node: valid node reference to read property from
464 * @propname: name of the property to read from
465 * @index: index of the integer to return
466 * @outp: place to put value (if found)
467 * Return: 0 if OK, -ve on error
468 */
469int ofnode_read_u64_index(ofnode node, const char *propname, int index,
470 u64 *outp);
471
472/**
Simon Glass9e512042017-05-18 20:08:58 -0600473 * ofnode_read_s32() - Read a 32-bit integer from a property
474 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100475 * @node: valid node reference to read property from
Simon Glass9e512042017-05-18 20:08:58 -0600476 * @propname: name of the property to read from
477 * @outp: place to put value (if found)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100478 * Return: 0 if OK, -ve on error
Simon Glass9e512042017-05-18 20:08:58 -0600479 */
480static inline int ofnode_read_s32(ofnode node, const char *propname,
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100481 s32 *outp)
Simon Glass9e512042017-05-18 20:08:58 -0600482{
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100483 return ofnode_read_u32(node, propname, (u32 *)outp);
Simon Glass9e512042017-05-18 20:08:58 -0600484}
485
486/**
487 * ofnode_read_u32_default() - Read a 32-bit integer from a property
488 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100489 * @node: valid node reference to read property from
Simon Glass9e512042017-05-18 20:08:58 -0600490 * @propname: name of the property to read from
491 * @def: default value to return if the property has no value
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100492 * Return: property value, or @def if not found
Simon Glass9e512042017-05-18 20:08:58 -0600493 */
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100494u32 ofnode_read_u32_default(ofnode node, const char *propname, u32 def);
Simon Glass9e512042017-05-18 20:08:58 -0600495
496/**
Dario Binacchi4bb70752020-03-29 18:04:41 +0200497 * ofnode_read_u32_index_default() - Read a 32-bit integer from a multi-value
498 * property
499 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100500 * @node: valid node reference to read property from
Dario Binacchi4bb70752020-03-29 18:04:41 +0200501 * @propname: name of the property to read from
502 * @index: index of the integer to return
503 * @def: default value to return if the property has no value
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100504 * Return: property value, or @def if not found
Dario Binacchi4bb70752020-03-29 18:04:41 +0200505 */
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100506u32 ofnode_read_u32_index_default(ofnode node, const char *propname, int index,
Dario Binacchi4bb70752020-03-29 18:04:41 +0200507 u32 def);
508
509/**
Simon Glass9e512042017-05-18 20:08:58 -0600510 * ofnode_read_s32_default() - Read a 32-bit integer from a property
511 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100512 * @node: valid node reference to read property from
Simon Glass9e512042017-05-18 20:08:58 -0600513 * @propname: name of the property to read from
514 * @def: default value to return if the property has no value
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100515 * Return: property value, or @def if not found
Simon Glass9e512042017-05-18 20:08:58 -0600516 */
517int ofnode_read_s32_default(ofnode node, const char *propname, s32 def);
518
519/**
Lukas Auerafb30122018-11-22 11:26:35 +0100520 * ofnode_read_u64() - Read a 64-bit integer from a property
521 *
522 * @node: valid node reference to read property from
523 * @propname: name of the property to read from
524 * @outp: place to put value (if found)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100525 * Return: 0 if OK, -ve on error
Lukas Auerafb30122018-11-22 11:26:35 +0100526 */
527int ofnode_read_u64(ofnode node, const char *propname, u64 *outp);
528
529/**
Simon Glass7e5196c2018-06-11 13:07:10 -0600530 * ofnode_read_u64_default() - Read a 64-bit integer from a property
531 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100532 * @node: valid node reference to read property from
Simon Glass7e5196c2018-06-11 13:07:10 -0600533 * @propname: name of the property to read from
534 * @def: default value to return if the property has no value
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100535 * Return: property value, or @def if not found
Simon Glass7e5196c2018-06-11 13:07:10 -0600536 */
T Karthik Reddy3f3d7712019-09-02 16:34:30 +0200537u64 ofnode_read_u64_default(ofnode node, const char *propname, u64 def);
Simon Glass7e5196c2018-06-11 13:07:10 -0600538
539/**
Simon Glassa8167d82020-01-27 08:49:44 -0700540 * ofnode_read_prop() - Read a property from a node
541 *
542 * @node: valid node reference to read property from
543 * @propname: name of the property to read
544 * @sizep: if non-NULL, returns the size of the property, or an error code
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100545 * if not found
546 * Return: property value, or NULL if there is no such property
Simon Glassa8167d82020-01-27 08:49:44 -0700547 */
548const void *ofnode_read_prop(ofnode node, const char *propname, int *sizep);
549
550/**
Simon Glass9e512042017-05-18 20:08:58 -0600551 * ofnode_read_string() - Read a string from a property
552 *
Simon Glassa8167d82020-01-27 08:49:44 -0700553 * @node: valid node reference to read property from
Simon Glass9e512042017-05-18 20:08:58 -0600554 * @propname: name of the property to read
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100555 * Return: string from property value, or NULL if there is no such property
Simon Glass9e512042017-05-18 20:08:58 -0600556 */
557const char *ofnode_read_string(ofnode node, const char *propname);
558
559/**
Simon Glassbed77492017-05-18 20:09:01 -0600560 * ofnode_read_u32_array() - Find and read an array of 32 bit integers
Simon Glass9e512042017-05-18 20:08:58 -0600561 *
562 * @node: valid node reference to read property from
563 * @propname: name of the property to read
564 * @out_values: pointer to return value, modified only if return value is 0
565 * @sz: number of array elements to read
Simon Glass66d0d0c2022-09-06 20:27:18 -0600566 * Return: 0 on success, -EINVAL if the property does not exist,
567 * -ENODATA if property does not have a value, and -EOVERFLOW if the
568 * property data isn't large enough
Simon Glass9e512042017-05-18 20:08:58 -0600569 *
570 * Search for a property in a device node and read 32-bit value(s) from
Simon Glass66d0d0c2022-09-06 20:27:18 -0600571 * it.
Simon Glass9e512042017-05-18 20:08:58 -0600572 *
573 * The out_values is modified only if a valid u32 value can be decoded.
574 */
575int ofnode_read_u32_array(ofnode node, const char *propname,
576 u32 *out_values, size_t sz);
577
578/**
579 * ofnode_read_bool() - read a boolean value from a property
580 *
581 * @node: valid node reference to read property from
582 * @propname: name of property to read
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100583 * Return: true if property is present (meaning true), false if not present
Simon Glass9e512042017-05-18 20:08:58 -0600584 */
585bool ofnode_read_bool(ofnode node, const char *propname);
586
587/**
588 * ofnode_find_subnode() - find a named subnode of a parent node
589 *
590 * @node: valid reference to parent node
591 * @subnode_name: name of subnode to find
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100592 * Return: reference to subnode (which can be invalid if there is no such
Simon Glass9e512042017-05-18 20:08:58 -0600593 * subnode)
594 */
595ofnode ofnode_find_subnode(ofnode node, const char *subnode_name);
596
Simon Glassec1add12020-12-16 17:25:06 -0700597#if CONFIG_IS_ENABLED(DM_INLINE_OFNODE)
Simon Glass401d1c42020-10-30 21:38:53 -0600598#include <asm/global_data.h>
599
Simon Glassec1add12020-12-16 17:25:06 -0700600static inline bool ofnode_is_enabled(ofnode node)
601{
602 if (ofnode_is_np(node)) {
603 return of_device_is_available(ofnode_to_np(node));
604 } else {
605 return fdtdec_get_is_enabled(gd->fdt_blob,
606 ofnode_to_offset(node));
607 }
608}
609
610static inline ofnode ofnode_first_subnode(ofnode node)
611{
612 assert(ofnode_valid(node));
613 if (ofnode_is_np(node))
614 return np_to_ofnode(node.np->child);
615
616 return offset_to_ofnode(
617 fdt_first_subnode(gd->fdt_blob, ofnode_to_offset(node)));
618}
619
620static inline ofnode ofnode_next_subnode(ofnode node)
621{
622 assert(ofnode_valid(node));
623 if (ofnode_is_np(node))
624 return np_to_ofnode(node.np->sibling);
625
626 return offset_to_ofnode(
627 fdt_next_subnode(gd->fdt_blob, ofnode_to_offset(node)));
628}
629#else
630/**
631 * ofnode_is_enabled() - Checks whether a node is enabled.
632 * This looks for a 'status' property. If this exists, then returns true if
633 * the status is 'okay' and false otherwise. If there is no status property,
634 * it returns true on the assumption that anything mentioned should be enabled
635 * by default.
636 *
637 * @node: node to examine
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100638 * Return: false (not enabled) or true (enabled)
Simon Glassec1add12020-12-16 17:25:06 -0700639 */
640bool ofnode_is_enabled(ofnode node);
641
Simon Glass9e512042017-05-18 20:08:58 -0600642/**
643 * ofnode_first_subnode() - find the first subnode of a parent node
644 *
645 * @node: valid reference to a valid parent node
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100646 * Return: reference to the first subnode (which can be invalid if the parent
Simon Glass9e512042017-05-18 20:08:58 -0600647 * node has no subnodes)
648 */
649ofnode ofnode_first_subnode(ofnode node);
650
651/**
652 * ofnode_next_subnode() - find the next sibling of a subnode
653 *
654 * @node: valid reference to previous node (sibling)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100655 * Return: reference to the next subnode (which can be invalid if the node
Simon Glass9e512042017-05-18 20:08:58 -0600656 * has no more siblings)
657 */
658ofnode ofnode_next_subnode(ofnode node);
Simon Glassec1add12020-12-16 17:25:06 -0700659#endif /* DM_INLINE_OFNODE */
Simon Glass9e512042017-05-18 20:08:58 -0600660
661/**
Philipp Tomsiche2d59972018-02-23 17:38:49 +0100662 * ofnode_get_parent() - get the ofnode's parent (enclosing ofnode)
663 *
664 * @node: valid node to look up
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100665 * Return: ofnode reference of the parent node
Philipp Tomsiche2d59972018-02-23 17:38:49 +0100666 */
667ofnode ofnode_get_parent(ofnode node);
668
669/**
Simon Glass9e512042017-05-18 20:08:58 -0600670 * ofnode_get_name() - get the name of a node
671 *
672 * @node: valid node to look up
Simon Glassf46ec932022-09-06 20:27:15 -0600673 * Return: name of node (for the root node this is "")
Simon Glass9e512042017-05-18 20:08:58 -0600674 */
675const char *ofnode_get_name(ofnode node);
676
677/**
Marek Behún0e116be2021-05-26 14:08:18 +0200678 * ofnode_get_path() - get the full path of a node
679 *
680 * @node: valid node to look up
681 * @buf: buffer to write the node path into
682 * @buflen: buffer size
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100683 * Return: 0 if OK, -ve on error
Marek Behún0e116be2021-05-26 14:08:18 +0200684 */
685int ofnode_get_path(ofnode node, char *buf, int buflen);
686
687/**
Kever Yangb4f20762018-02-23 17:38:50 +0100688 * ofnode_get_by_phandle() - get ofnode from phandle
689 *
Simon Glass829d5122022-09-06 20:26:57 -0600690 * This uses the default (control) device tree
691 *
Kever Yangb4f20762018-02-23 17:38:50 +0100692 * @phandle: phandle to look up
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100693 * Return: ofnode reference to the phandle
Kever Yangb4f20762018-02-23 17:38:50 +0100694 */
695ofnode ofnode_get_by_phandle(uint phandle);
696
697/**
Simon Glass928d2672022-09-06 20:27:22 -0600698 * oftree_get_by_phandle() - get ofnode from phandle
699 *
700 * @tree: tree to use
701 * @phandle: phandle to look up
702 * Return: ofnode reference to the phandle
703 */
704ofnode oftree_get_by_phandle(oftree tree, uint phandle);
705
706/**
Simon Glass9e512042017-05-18 20:08:58 -0600707 * ofnode_read_size() - read the size of a property
708 *
709 * @node: node to check
710 * @propname: property to check
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100711 * Return: size of property if present, or -EINVAL if not
Simon Glass9e512042017-05-18 20:08:58 -0600712 */
713int ofnode_read_size(ofnode node, const char *propname);
714
715/**
Keerthye679d032019-04-24 17:19:53 +0530716 * ofnode_get_addr_size_index() - get an address/size from a node
717 * based on index
718 *
719 * This reads the register address/size from a node based on index
720 *
721 * @node: node to read from
722 * @index: Index of address to read (0 for first)
723 * @size: Pointer to size of the address
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100724 * Return: address, or FDT_ADDR_T_NONE if not present or invalid
Keerthye679d032019-04-24 17:19:53 +0530725 */
Johan Jonkeraecae812023-03-13 01:30:33 +0100726fdt_addr_t ofnode_get_addr_size_index(ofnode node, int index,
727 fdt_size_t *size);
Keerthye679d032019-04-24 17:19:53 +0530728
729/**
Marek Behún31a7b712021-05-26 14:08:17 +0200730 * ofnode_get_addr_size_index_notrans() - get an address/size from a node
731 * based on index, without address
732 * translation
733 *
734 * This reads the register address/size from a node based on index.
735 * The resulting address is not translated. Useful for example for on-disk
736 * addresses.
737 *
738 * @node: node to read from
739 * @index: Index of address to read (0 for first)
740 * @size: Pointer to size of the address
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100741 * Return: address, or FDT_ADDR_T_NONE if not present or invalid
Marek Behún31a7b712021-05-26 14:08:17 +0200742 */
Johan Jonkeraecae812023-03-13 01:30:33 +0100743fdt_addr_t ofnode_get_addr_size_index_notrans(ofnode node, int index,
744 fdt_size_t *size);
Marek Behún31a7b712021-05-26 14:08:17 +0200745
746/**
Simon Glassbed77492017-05-18 20:09:01 -0600747 * ofnode_get_addr_index() - get an address from a node
748 *
749 * This reads the register address from a node
750 *
751 * @node: node to read from
752 * @index: Index of address to read (0 for first)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100753 * Return: address, or FDT_ADDR_T_NONE if not present or invalid
Simon Glassbed77492017-05-18 20:09:01 -0600754 */
Johan Jonkeraecae812023-03-13 01:30:33 +0100755fdt_addr_t ofnode_get_addr_index(ofnode node, int index);
Simon Glassbed77492017-05-18 20:09:01 -0600756
757/**
758 * ofnode_get_addr() - get an address from a node
759 *
760 * This reads the register address from a node
761 *
762 * @node: node to read from
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100763 * Return: address, or FDT_ADDR_T_NONE if not present or invalid
Simon Glassbed77492017-05-18 20:09:01 -0600764 */
Johan Jonkeraecae812023-03-13 01:30:33 +0100765fdt_addr_t ofnode_get_addr(ofnode node);
Simon Glassbed77492017-05-18 20:09:01 -0600766
767/**
Chen Guanqiaoaa351a12021-04-12 14:51:11 +0800768 * ofnode_get_size() - get size from a node
769 *
770 * This reads the register size from a node
771 *
772 * @node: node to read from
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100773 * Return: size of the address, or FDT_SIZE_T_NONE if not present or invalid
Chen Guanqiaoaa351a12021-04-12 14:51:11 +0800774 */
775fdt_size_t ofnode_get_size(ofnode node);
776
777/**
Simon Glass9e512042017-05-18 20:08:58 -0600778 * ofnode_stringlist_search() - find a string in a string list and return index
779 *
780 * Note that it is possible for this function to succeed on property values
781 * that are not NUL-terminated. That's because the function will stop after
782 * finding the first occurrence of @string. This can for example happen with
783 * small-valued cell properties, such as #address-cells, when searching for
784 * the empty string.
785 *
786 * @node: node to check
787 * @propname: name of the property containing the string list
788 * @string: string to look up in the string list
789 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100790 * Return:
Simon Glass9e512042017-05-18 20:08:58 -0600791 * the index of the string in the list of strings
792 * -ENODATA if the property is not found
793 * -EINVAL on some other error
794 */
795int ofnode_stringlist_search(ofnode node, const char *propname,
796 const char *string);
797
798/**
Simon Glass8c293d62017-06-12 06:21:28 -0600799 * ofnode_read_string_index() - obtain an indexed string from a string list
Simon Glass9e512042017-05-18 20:08:58 -0600800 *
801 * Note that this will successfully extract strings from properties with
802 * non-NUL-terminated values. For example on small-valued cell properties
803 * this function will return the empty string.
804 *
805 * If non-NULL, the length of the string (on success) or a negative error-code
806 * (on failure) will be stored in the integer pointer to by lenp.
807 *
808 * @node: node to check
809 * @propname: name of the property containing the string list
Simon Glass32c6a8e2021-10-23 17:26:06 -0600810 * @index: index of the string to return (cannot be negative)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100811 * @outp: return location for the string
Simon Glass9e512042017-05-18 20:08:58 -0600812 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100813 * Return:
Simon Glass32c6a8e2021-10-23 17:26:06 -0600814 * 0 if found or -ve error value if not found
Simon Glass9e512042017-05-18 20:08:58 -0600815 */
816int ofnode_read_string_index(ofnode node, const char *propname, int index,
817 const char **outp);
818
819/**
Simon Glass8c293d62017-06-12 06:21:28 -0600820 * ofnode_read_string_count() - find the number of strings in a string list
821 *
822 * @node: node to check
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100823 * @property: name of the property containing the string list
824 * Return:
Simon Glass8c293d62017-06-12 06:21:28 -0600825 * number of strings in the list, or -ve error value if not found
826 */
827int ofnode_read_string_count(ofnode node, const char *property);
828
829/**
Simon Glass075bfc92021-10-23 17:26:07 -0600830 * ofnode_read_string_list() - read a list of strings
831 *
832 * This produces a list of string pointers with each one pointing to a string
833 * in the string list. If the property does not exist, it returns {NULL}.
834 *
835 * The data is allocated and the caller is reponsible for freeing the return
836 * value (the list of string pointers). The strings themselves may not be
837 * changed as they point directly into the devicetree property.
838 *
839 * @node: node to check
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100840 * @property: name of the property containing the string list
Simon Glass075bfc92021-10-23 17:26:07 -0600841 * @listp: returns an allocated, NULL-terminated list of strings if the return
842 * value is > 0, else is set to NULL
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100843 * Return:
844 * number of strings in list, 0 if none, -ENOMEM if out of memory,
845 * -EINVAL if no such property, -EENODATA if property is empty
Simon Glass075bfc92021-10-23 17:26:07 -0600846 */
847int ofnode_read_string_list(ofnode node, const char *property,
848 const char ***listp);
849
850/**
Simon Glass9e512042017-05-18 20:08:58 -0600851 * ofnode_parse_phandle_with_args() - Find a node pointed by phandle in a list
852 *
853 * This function is useful to parse lists of phandles and their arguments.
854 * Returns 0 on success and fills out_args, on error returns appropriate
855 * errno value.
856 *
857 * Caller is responsible to call of_node_put() on the returned out_args->np
858 * pointer.
859 *
860 * Example:
861 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100862 * .. code-block::
Simon Glass9e512042017-05-18 20:08:58 -0600863 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100864 * phandle1: node1 {
865 * #list-cells = <2>;
866 * };
867 * phandle2: node2 {
868 * #list-cells = <1>;
869 * };
870 * node3 {
871 * list = <&phandle1 1 2 &phandle2 3>;
872 * };
Simon Glass9e512042017-05-18 20:08:58 -0600873 *
874 * To get a device_node of the `node2' node you may call this:
875 * ofnode_parse_phandle_with_args(node3, "list", "#list-cells", 0, 1, &args);
876 *
877 * @node: device tree node containing a list
878 * @list_name: property name that contains a list
879 * @cells_name: property name that specifies phandles' arguments count
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100880 * @cell_count: Cell count to use if @cells_name is NULL
Simon Glass9e512042017-05-18 20:08:58 -0600881 * @index: index of a phandle to parse out
882 * @out_args: optional pointer to output arguments structure (will be filled)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100883 * Return:
884 * 0 on success (with @out_args filled out if not NULL), -ENOENT if
885 * @list_name does not exist, -EINVAL if a phandle was not found,
886 * @cells_name could not be found, the arguments were truncated or there
887 * were too many arguments.
Simon Glass9e512042017-05-18 20:08:58 -0600888 */
889int ofnode_parse_phandle_with_args(ofnode node, const char *list_name,
890 const char *cells_name, int cell_count,
891 int index,
892 struct ofnode_phandle_args *out_args);
893
894/**
Patrice Chotard642346a2017-07-18 11:57:08 +0200895 * ofnode_count_phandle_with_args() - Count number of phandle in a list
896 *
897 * This function is useful to count phandles into a list.
898 * Returns number of phandle on success, on error returns appropriate
899 * errno value.
900 *
901 * @node: device tree node containing a list
902 * @list_name: property name that contains a list
903 * @cells_name: property name that specifies phandles' arguments count
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100904 * @cell_count: Cell count to use if @cells_name is NULL
905 * Return:
906 * number of phandle on success, -ENOENT if @list_name does not exist,
907 * -EINVAL if a phandle was not found, @cells_name could not be found.
Patrice Chotard642346a2017-07-18 11:57:08 +0200908 */
909int ofnode_count_phandle_with_args(ofnode node, const char *list_name,
Patrick Delaunay89f68302020-09-25 09:41:14 +0200910 const char *cells_name, int cell_count);
Patrice Chotard642346a2017-07-18 11:57:08 +0200911
912/**
Simon Glass9e512042017-05-18 20:08:58 -0600913 * ofnode_path() - find a node by full path
914 *
Simon Glass33104842022-07-30 15:52:08 -0600915 * This uses the control FDT.
916 *
Simon Glass9e512042017-05-18 20:08:58 -0600917 * @path: Full path to node, e.g. "/bus/spi@1"
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100918 * Return: reference to the node found. Use ofnode_valid() to check if it exists
Simon Glass9e512042017-05-18 20:08:58 -0600919 */
920ofnode ofnode_path(const char *path);
921
922/**
Simon Glassb7bd94f2022-09-06 20:27:24 -0600923 * oftree_path() - find a node by full path from a root node
Simon Glass33104842022-07-30 15:52:08 -0600924 *
925 * @tree: Device tree to use
926 * @path: Full path to node, e.g. "/bus/spi@1"
927 * Return: reference to the node found. Use ofnode_valid() to check if it exists
928 */
Simon Glassb7bd94f2022-09-06 20:27:24 -0600929ofnode oftree_path(oftree tree, const char *path);
930
931/**
932 * oftree_root() - get the root node of a tree
933 *
934 * @tree: Device tree to use
935 * Return: reference to the root node
936 */
937ofnode oftree_root(oftree tree);
Simon Glass33104842022-07-30 15:52:08 -0600938
939/**
Simon Glassbd933bf2020-01-27 08:49:46 -0700940 * ofnode_read_chosen_prop() - get the value of a chosen property
941 *
Simon Glassb7bd94f2022-09-06 20:27:24 -0600942 * This looks for a property within the /chosen node and returns its value.
943 *
944 * This only works with the control FDT.
Simon Glassbd933bf2020-01-27 08:49:46 -0700945 *
946 * @propname: Property name to look for
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100947 * @sizep: Returns size of property, or `FDT_ERR_...` error code if function
Simon Glassbd933bf2020-01-27 08:49:46 -0700948 * returns NULL
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100949 * Return: property value if found, else NULL
Simon Glassbd933bf2020-01-27 08:49:46 -0700950 */
951const void *ofnode_read_chosen_prop(const char *propname, int *sizep);
952
953/**
Simon Glass14ca9f72020-01-27 08:49:43 -0700954 * ofnode_read_chosen_string() - get the string value of a chosen property
Simon Glass9e512042017-05-18 20:08:58 -0600955 *
Simon Glass14ca9f72020-01-27 08:49:43 -0700956 * This looks for a property within the /chosen node and returns its value,
957 * checking that it is a valid nul-terminated string
Simon Glass9e512042017-05-18 20:08:58 -0600958 *
Simon Glass988f1462022-09-06 20:27:28 -0600959 * This only works with the control FDT.
960 *
Simon Glass9e512042017-05-18 20:08:58 -0600961 * @propname: Property name to look for
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100962 * Return: string value if found, else NULL
Simon Glass9e512042017-05-18 20:08:58 -0600963 */
Simon Glass14ca9f72020-01-27 08:49:43 -0700964const char *ofnode_read_chosen_string(const char *propname);
Simon Glass9e512042017-05-18 20:08:58 -0600965
966/**
Simon Glass74d594a2020-01-27 08:49:42 -0700967 * ofnode_get_chosen_node() - get a referenced node from the chosen node
Simon Glass9e512042017-05-18 20:08:58 -0600968 *
Simon Glass74d594a2020-01-27 08:49:42 -0700969 * This looks up a named property in the chosen node and uses that as a path to
970 * look up a code.
971 *
Simon Glass988f1462022-09-06 20:27:28 -0600972 * This only works with the control FDT.
973 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100974 * @propname: Property name to look for
975 * Return: the referenced node if present, else ofnode_null()
Simon Glass9e512042017-05-18 20:08:58 -0600976 */
Simon Glass74d594a2020-01-27 08:49:42 -0700977ofnode ofnode_get_chosen_node(const char *propname);
Simon Glass9e512042017-05-18 20:08:58 -0600978
Michal Simek305d3182020-07-28 12:51:08 +0200979/**
Algapally Santosh Sagarbd9ff682023-09-21 16:50:43 +0530980 * ofnode_read_baud() - get the baudrate from string value of chosen property
981 *
982 * This looks for stdout-path property within the /chosen node and parses its
983 * value to return baudrate.
984 *
985 * This only works with the control FDT.
986 *
987 * Return: baudrate value if found, else -ve error code
988 */
989int ofnode_read_baud(void);
990
991/**
Michal Simek305d3182020-07-28 12:51:08 +0200992 * ofnode_read_aliases_prop() - get the value of a aliases property
993 *
994 * This looks for a property within the /aliases node and returns its value
995 *
996 * @propname: Property name to look for
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100997 * @sizep: Returns size of property, or `FDT_ERR_...` error code if function
Michal Simek305d3182020-07-28 12:51:08 +0200998 * returns NULL
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100999 * Return: property value if found, else NULL
Michal Simek305d3182020-07-28 12:51:08 +02001000 */
1001const void *ofnode_read_aliases_prop(const char *propname, int *sizep);
1002
1003/**
1004 * ofnode_get_aliases_node() - get a referenced node from the aliases node
1005 *
1006 * This looks up a named property in the aliases node and uses that as a path to
1007 * look up a code.
1008 *
Simon Glass988f1462022-09-06 20:27:28 -06001009 * This only works with the control FDT.
1010 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001011 * @propname: Property name to look for
1012 * Return: the referenced node if present, else ofnode_null()
Michal Simek305d3182020-07-28 12:51:08 +02001013 */
1014ofnode ofnode_get_aliases_node(const char *propname);
1015
Simon Glass9e512042017-05-18 20:08:58 -06001016struct display_timing;
1017/**
1018 * ofnode_decode_display_timing() - decode display timings
1019 *
1020 * Decode display timings from the supplied 'display-timings' node.
1021 * See doc/device-tree-bindings/video/display-timing.txt for binding
1022 * information.
1023 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001024 * @node: 'display-timing' node containing the timing subnodes
1025 * @index: Index number to read (0=first timing subnode)
1026 * @config: Place to put timings
1027 * Return: 0 if OK, -FDT_ERR_NOTFOUND if not found
Simon Glass9e512042017-05-18 20:08:58 -06001028 */
1029int ofnode_decode_display_timing(ofnode node, int index,
1030 struct display_timing *config);
1031
1032/**
Nikhil M Jain0347cc72023-01-31 15:35:14 +05301033 * ofnode_decode_panel_timing() - decode display timings
1034 *
1035 * Decode panel timings from the supplied 'panel-timings' node.
1036 *
1037 * @node: 'display-timing' node containing the timing subnodes
1038 * @config: Place to put timings
1039 * Return: 0 if OK, -FDT_ERR_NOTFOUND if not found
1040 */
1041int ofnode_decode_panel_timing(ofnode node,
1042 struct display_timing *config);
1043
1044/**
Patrick Delaunayce891fca2020-01-13 11:34:56 +01001045 * ofnode_get_property() - get a pointer to the value of a node property
Simon Glass9e512042017-05-18 20:08:58 -06001046 *
1047 * @node: node to read
1048 * @propname: property to read
1049 * @lenp: place to put length on success
Simon Glassd9216c82023-09-26 08:14:44 -06001050 * Return: pointer to property value, or NULL if not found or empty
Simon Glass9e512042017-05-18 20:08:58 -06001051 */
Masahiro Yamada61e51ba2017-06-22 16:54:05 +09001052const void *ofnode_get_property(ofnode node, const char *propname, int *lenp);
Simon Glass9e512042017-05-18 20:08:58 -06001053
1054/**
Simon Glassd9216c82023-09-26 08:14:44 -06001055 * ofnode_has_property() - check if a node has a named property
1056 *
1057 * @node: node to read
1058 * @propname: property to read
1059 * Return: true if the property exists in the node, false if not
1060 */
1061bool ofnode_has_property(ofnode node, const char *propname);
1062
1063/**
Simon Glass4b1f5712022-09-06 20:27:13 -06001064 * ofnode_first_property()- get the reference of the first property
Patrick Delaunayce891fca2020-01-13 11:34:56 +01001065 *
1066 * Get reference to the first property of the node, it is used to iterate
Simon Glass92432242022-09-06 20:27:14 -06001067 * and read all the property with ofprop_get_property().
Patrick Delaunayce891fca2020-01-13 11:34:56 +01001068 *
1069 * @node: node to read
1070 * @prop: place to put argument reference
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001071 * Return: 0 if OK, -ve on error. -FDT_ERR_NOTFOUND if not found
Patrick Delaunayce891fca2020-01-13 11:34:56 +01001072 */
Simon Glass4b1f5712022-09-06 20:27:13 -06001073int ofnode_first_property(ofnode node, struct ofprop *prop);
Patrick Delaunayce891fca2020-01-13 11:34:56 +01001074
1075/**
Simon Glass4b1f5712022-09-06 20:27:13 -06001076 * ofnode_next_property() - get the reference of the next property
Patrick Delaunayce891fca2020-01-13 11:34:56 +01001077 *
1078 * Get reference to the next property of the node, it is used to iterate
Simon Glass92432242022-09-06 20:27:14 -06001079 * and read all the property with ofprop_get_property().
Patrick Delaunayce891fca2020-01-13 11:34:56 +01001080 *
1081 * @prop: reference of current argument and place to put reference of next one
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001082 * Return: 0 if OK, -ve on error. -FDT_ERR_NOTFOUND if not found
Patrick Delaunayce891fca2020-01-13 11:34:56 +01001083 */
Simon Glass4b1f5712022-09-06 20:27:13 -06001084int ofnode_next_property(struct ofprop *prop);
Patrick Delaunayce891fca2020-01-13 11:34:56 +01001085
1086/**
Simon Glass52ad21a2022-09-06 20:27:16 -06001087 * ofnode_for_each_prop() - iterate over all properties of a node
1088 *
1089 * @prop: struct ofprop
1090 * @node: node (lvalue, ofnode)
1091 *
1092 * This is a wrapper around a for loop and is used like this::
1093 *
1094 * ofnode node;
1095 * struct ofprop prop;
1096 *
1097 * ofnode_for_each_prop(prop, node) {
1098 * ...use prop...
1099 * }
1100 *
1101 * Note that this is implemented as a macro and @prop is used as
1102 * iterator in the loop. The parent variable can be a constant or even a
1103 * literal.
1104 */
1105#define ofnode_for_each_prop(prop, node) \
1106 for (ofnode_first_property(node, &prop); \
1107 ofprop_valid(&prop); \
1108 ofnode_next_property(&prop))
1109
1110/**
Simon Glass92432242022-09-06 20:27:14 -06001111 * ofprop_get_property() - get a pointer to the value of a property
Patrick Delaunayce891fca2020-01-13 11:34:56 +01001112 *
1113 * Get value for the property identified by the provided reference.
1114 *
1115 * @prop: reference on property
1116 * @propname: If non-NULL, place to property name on success,
Simon Glass92432242022-09-06 20:27:14 -06001117 * @lenp: If non-NULL, place to put length on success, or error code on failure
1118 * Return: pointer to property, or NULL if not found
Patrick Delaunayce891fca2020-01-13 11:34:56 +01001119 */
Simon Glass92432242022-09-06 20:27:14 -06001120const void *ofprop_get_property(const struct ofprop *prop,
1121 const char **propname, int *lenp);
Patrick Delaunayce891fca2020-01-13 11:34:56 +01001122
1123/**
Simon Glass9e512042017-05-18 20:08:58 -06001124 * ofnode_get_addr_size() - get address and size from a property
1125 *
1126 * This does no address translation. It simply reads an property that contains
1127 * an address and a size value, one after the other.
1128 *
1129 * @node: node to read from
1130 * @propname: property to read
1131 * @sizep: place to put size value (on success)
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001132 * Return: address value, or FDT_ADDR_T_NONE on error
Simon Glass9e512042017-05-18 20:08:58 -06001133 */
Johan Jonkeraecae812023-03-13 01:30:33 +01001134fdt_addr_t ofnode_get_addr_size(ofnode node, const char *propname,
1135 fdt_size_t *sizep);
Simon Glass9e512042017-05-18 20:08:58 -06001136
1137/**
1138 * ofnode_read_u8_array_ptr() - find an 8-bit array
1139 *
1140 * Look up a property in a node and return a pointer to its contents as a
1141 * byte array of given length. The property must have at least enough data
1142 * for the array (count bytes). It may have more, but this will be ignored.
1143 * The data is not copied.
1144 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001145 * @node: node to examine
1146 * @propname: name of property to find
1147 * @sz: number of array elements
1148 * Return:
1149 * pointer to byte array if found, or NULL if the property is not found or
1150 * there is not enough data
Simon Glass9e512042017-05-18 20:08:58 -06001151 */
1152const uint8_t *ofnode_read_u8_array_ptr(ofnode node, const char *propname,
1153 size_t sz);
1154
1155/**
1156 * ofnode_read_pci_addr() - look up a PCI address
1157 *
1158 * Look at an address property in a node and return the PCI address which
1159 * corresponds to the given type in the form of fdt_pci_addr.
1160 * The property must hold one fdt_pci_addr with a lengh.
1161 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001162 * @node: node to examine
1163 * @type: pci address type (FDT_PCI_SPACE_xxx)
1164 * @propname: name of property to find
1165 * @addr: returns pci address in the form of fdt_pci_addr
Simon Glassf69d3d62023-09-26 08:14:58 -06001166 * @size: if non-null, returns register-space size
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001167 * Return:
1168 * 0 if ok, -ENOENT if the property did not exist, -EINVAL if the
1169 * format of the property was invalid, -ENXIO if the requested
1170 * address type was not found
Simon Glass9e512042017-05-18 20:08:58 -06001171 */
1172int ofnode_read_pci_addr(ofnode node, enum fdt_pci_space type,
Simon Glassf69d3d62023-09-26 08:14:58 -06001173 const char *propname, struct fdt_pci_addr *addr,
1174 fdt_size_t *size);
Simon Glass9e512042017-05-18 20:08:58 -06001175
1176/**
Bin Meng7b9cbad2018-08-03 01:14:35 -07001177 * ofnode_read_pci_vendev() - look up PCI vendor and device id
1178 *
1179 * Look at the compatible property of a device node that represents a PCI
1180 * device and extract pci vendor id and device id from it.
1181 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001182 * @node: node to examine
1183 * @vendor: vendor id of the pci device
1184 * @device: device id of the pci device
1185 * Return: 0 if ok, negative on error
Bin Meng7b9cbad2018-08-03 01:14:35 -07001186 */
1187int ofnode_read_pci_vendev(ofnode node, u16 *vendor, u16 *device);
1188
1189/**
Michal Simekdb681d42022-02-23 15:45:40 +01001190 * ofnode_read_eth_phy_id() - look up eth phy vendor and device id
1191 *
1192 * Look at the compatible property of a device node that represents a eth phy
1193 * device and extract phy vendor id and device id from it.
1194 *
Heinrich Schuchardtd23f2902022-03-24 16:22:32 +01001195 * @node: node to examine
1196 * @vendor: vendor id of the eth phy device
1197 * @device: device id of the eth phy device
1198 * Return: 0 if ok, negative on error
Michal Simekdb681d42022-02-23 15:45:40 +01001199 */
1200int ofnode_read_eth_phy_id(ofnode node, u16 *vendor, u16 *device);
1201
1202/**
Simon Glass9e512042017-05-18 20:08:58 -06001203 * ofnode_read_addr_cells() - Get the number of address cells for a node
1204 *
1205 * This walks back up the tree to find the closest #address-cells property
1206 * which controls the given node.
1207 *
1208 * @node: Node to check
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001209 * Return: number of address cells this node uses
Simon Glass9e512042017-05-18 20:08:58 -06001210 */
1211int ofnode_read_addr_cells(ofnode node);
1212
1213/**
1214 * ofnode_read_size_cells() - Get the number of size cells for a node
1215 *
1216 * This walks back up the tree to find the closest #size-cells property
1217 * which controls the given node.
1218 *
1219 * @node: Node to check
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001220 * Return: number of size cells this node uses
Simon Glass9e512042017-05-18 20:08:58 -06001221 */
1222int ofnode_read_size_cells(ofnode node);
1223
1224/**
Simon Glass878d68c2017-06-12 06:21:31 -06001225 * ofnode_read_simple_addr_cells() - Get the address cells property in a node
1226 *
1227 * This function matches fdt_address_cells().
1228 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001229 * @node: Node to check
1230 * Return: value of #address-cells property in this node, or 2 if none
Simon Glass878d68c2017-06-12 06:21:31 -06001231 */
1232int ofnode_read_simple_addr_cells(ofnode node);
1233
1234/**
1235 * ofnode_read_simple_size_cells() - Get the size cells property in a node
1236 *
1237 * This function matches fdt_size_cells().
1238 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001239 * @node: Node to check
1240 * Return: value of #size-cells property in this node, or 2 if none
Simon Glass878d68c2017-06-12 06:21:31 -06001241 */
1242int ofnode_read_simple_size_cells(ofnode node);
1243
1244/**
Simon Glass9e512042017-05-18 20:08:58 -06001245 * ofnode_pre_reloc() - check if a node should be bound before relocation
1246 *
1247 * Device tree nodes can be marked as needing-to-be-bound in the loader stages
1248 * via special device tree properties.
1249 *
1250 * Before relocation this function can be used to check if nodes are required
1251 * in either SPL or TPL stages.
1252 *
1253 * After relocation and jumping into the real U-Boot binary it is possible to
1254 * determine if a node was bound in one of SPL/TPL stages.
1255 *
Patrick Delaunay54e12232019-05-21 19:19:13 +02001256 * There are 4 settings currently in use
Jonas Karlman9e644282023-08-20 22:03:18 +00001257 * - bootph-some-ram: U-Boot proper pre-relocation phase
Simon Glasse316fba2023-02-13 08:56:34 -07001258 * - bootph-all: all phases
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001259 * Existing platforms only use it to indicate nodes needed in
Simon Glasse316fba2023-02-13 08:56:34 -07001260 * SPL. Should probably be replaced by bootph-pre-ram for new platforms.
Jonas Karlman9e644282023-08-20 22:03:18 +00001261 * - bootph-pre-ram: SPL phase
1262 * - bootph-pre-sram: TPL phase
Simon Glass9e512042017-05-18 20:08:58 -06001263 *
1264 * @node: node to check
Jonas Karlman9e644282023-08-20 22:03:18 +00001265 * Return: true if node should be or was bound, false otherwise
Simon Glass9e512042017-05-18 20:08:58 -06001266 */
1267bool ofnode_pre_reloc(ofnode node);
1268
Simon Glassc98ad442018-06-11 13:07:12 -06001269/**
1270 * ofnode_read_resource() - Read a resource from a node
1271 *
1272 * Read resource information from a node at the given index
1273 *
1274 * @node: Node to read from
1275 * @index: Index of resource to read (0 = first)
1276 * @res: Returns resource that was read, on success
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001277 * Return: 0 if OK, -ve on error
Simon Glassc98ad442018-06-11 13:07:12 -06001278 */
Simon Glassdcf98852017-07-25 08:29:55 -06001279int ofnode_read_resource(ofnode node, uint index, struct resource *res);
Simon Glassc98ad442018-06-11 13:07:12 -06001280
1281/**
1282 * ofnode_read_resource_byname() - Read a resource from a node by name
1283 *
1284 * Read resource information from a node matching the given name. This uses a
1285 * 'reg-names' string list property with the names matching the associated
1286 * 'reg' property list.
1287 *
1288 * @node: Node to read from
1289 * @name: Name of resource to read
1290 * @res: Returns resource that was read, on success
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001291 * Return: 0 if OK, -ve on error
Simon Glassc98ad442018-06-11 13:07:12 -06001292 */
Masahiro Yamada7b8b47b2017-08-26 01:12:30 +09001293int ofnode_read_resource_byname(ofnode node, const char *name,
1294 struct resource *res);
Simon Glassdcf98852017-07-25 08:29:55 -06001295
Simon Glass3991f422017-08-05 15:45:54 -06001296/**
Simon Glassc60f6712018-06-11 13:07:13 -06001297 * ofnode_by_compatible() - Find the next compatible node
1298 *
1299 * Find the next node after @from that is compatible with @compat
1300 *
1301 * @from: ofnode to start from (use ofnode_null() to start at the beginning)
1302 * @compat: Compatible string to match
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001303 * Return: ofnode found, or ofnode_null() if none
Simon Glassc60f6712018-06-11 13:07:13 -06001304 */
1305ofnode ofnode_by_compatible(ofnode from, const char *compat);
1306
1307/**
Jens Wiklander61fba0f2018-08-20 11:09:58 +02001308 * ofnode_by_prop_value() - Find the next node with given property value
1309 *
1310 * Find the next node after @from that has a @propname with a value
1311 * @propval and a length @proplen.
1312 *
Simon Glass2187cb72022-09-06 20:27:23 -06001313 * @from: ofnode to start from. Use ofnode_null() to start at the
1314 * beginning, or the return value from oftree_root() to start at the first
1315 * child of the root
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001316 * @propname: property name to check
1317 * @propval: property value to search for
1318 * @proplen: length of the value in propval
1319 * Return: ofnode found, or ofnode_null() if none
Jens Wiklander61fba0f2018-08-20 11:09:58 +02001320 */
1321ofnode ofnode_by_prop_value(ofnode from, const char *propname,
1322 const void *propval, int proplen);
1323
1324/**
Simon Glass3991f422017-08-05 15:45:54 -06001325 * ofnode_for_each_subnode() - iterate over all subnodes of a parent
1326 *
1327 * @node: child node (ofnode, lvalue)
1328 * @parent: parent node (ofnode)
1329 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001330 * This is a wrapper around a for loop and is used like so::
Simon Glass3991f422017-08-05 15:45:54 -06001331 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001332 * ofnode node;
1333 * ofnode_for_each_subnode(node, parent) {
1334 * Use node
1335 * ...
1336 * }
Simon Glass3991f422017-08-05 15:45:54 -06001337 *
1338 * Note that this is implemented as a macro and @node is used as
1339 * iterator in the loop. The parent variable can be a constant or even a
1340 * literal.
1341 */
1342#define ofnode_for_each_subnode(node, parent) \
1343 for (node = ofnode_first_subnode(parent); \
1344 ofnode_valid(node); \
1345 node = ofnode_next_subnode(node))
1346
Mario Six147c6072018-01-15 11:07:19 +01001347/**
Michael Walleb8ec9452021-10-15 15:15:17 +02001348 * ofnode_for_each_compatible_node() - iterate over all nodes with a given
1349 * compatible string
1350 *
1351 * @node: child node (ofnode, lvalue)
1352 * @compat: compatible string to match
1353 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001354 * This is a wrapper around a for loop and is used like so::
Michael Walleb8ec9452021-10-15 15:15:17 +02001355 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001356 * ofnode node;
1357 * ofnode_for_each_compatible_node(node, parent, compatible) {
1358 * Use node
1359 * ...
1360 * }
Michael Walleb8ec9452021-10-15 15:15:17 +02001361 *
1362 * Note that this is implemented as a macro and @node is used as
1363 * iterator in the loop.
1364 */
1365#define ofnode_for_each_compatible_node(node, compat) \
1366 for (node = ofnode_by_compatible(ofnode_null(), compat); \
1367 ofnode_valid(node); \
1368 node = ofnode_by_compatible(node, compat))
1369
1370/**
Chunfeng Yun89b84b82020-05-02 11:35:09 +02001371 * ofnode_get_child_count() - get the child count of a ofnode
1372 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001373 * @parent: valid node to get its child count
1374 * Return: the number of subnodes
Chunfeng Yun89b84b82020-05-02 11:35:09 +02001375 */
1376int ofnode_get_child_count(ofnode parent);
1377
1378/**
Fabien Dessenne641067f2019-05-31 15:11:30 +02001379 * ofnode_translate_address() - Translate a device-tree address
Mario Six147c6072018-01-15 11:07:19 +01001380 *
1381 * Translate an address from the device-tree into a CPU physical address. This
1382 * function walks up the tree and applies the various bus mappings along the
1383 * way.
1384 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001385 * @node: Device tree node giving the context in which to translate the address
Mario Six147c6072018-01-15 11:07:19 +01001386 * @in_addr: pointer to the address to translate
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001387 * Return: the translated address; OF_BAD_ADDR on error
Mario Six147c6072018-01-15 11:07:19 +01001388 */
1389u64 ofnode_translate_address(ofnode node, const fdt32_t *in_addr);
Masahiro Yamada5ccc2c22018-04-19 12:14:02 +09001390
1391/**
Fabien Dessenne641067f2019-05-31 15:11:30 +02001392 * ofnode_translate_dma_address() - Translate a device-tree DMA address
1393 *
1394 * Translate a DMA address from the device-tree into a CPU physical address.
1395 * This function walks up the tree and applies the various bus mappings along
1396 * the way.
1397 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001398 * @node: Device tree node giving the context in which to translate the
1399 * DMA address
Fabien Dessenne641067f2019-05-31 15:11:30 +02001400 * @in_addr: pointer to the DMA address to translate
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001401 * Return: the translated DMA address; OF_BAD_ADDR on error
Fabien Dessenne641067f2019-05-31 15:11:30 +02001402 */
1403u64 ofnode_translate_dma_address(ofnode node, const fdt32_t *in_addr);
1404
1405/**
Nicolas Saenz Julienne51bdb502021-01-12 13:55:22 +01001406 * ofnode_get_dma_range() - get dma-ranges for a specific DT node
1407 *
1408 * Get DMA ranges for a specifc node, this is useful to perform bus->cpu and
1409 * cpu->bus address translations
1410 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001411 * @node: Device tree node
1412 * @cpu: Pointer to variable storing the range's cpu address
1413 * @bus: Pointer to variable storing the range's bus address
1414 * @size: Pointer to variable storing the range's size
1415 * Return: translated DMA address or OF_BAD_ADDR on error
Nicolas Saenz Julienne51bdb502021-01-12 13:55:22 +01001416 */
1417int ofnode_get_dma_range(ofnode node, phys_addr_t *cpu, dma_addr_t *bus,
1418 u64 *size);
1419
1420/**
Masahiro Yamada5ccc2c22018-04-19 12:14:02 +09001421 * ofnode_device_is_compatible() - check if the node is compatible with compat
1422 *
1423 * This allows to check whether the node is comaptible with the compat.
1424 *
1425 * @node: Device tree node for which compatible needs to be verified.
1426 * @compat: Compatible string which needs to verified in the given node.
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001427 * Return: true if OK, false if the compatible is not found
Masahiro Yamada5ccc2c22018-04-19 12:14:02 +09001428 */
1429int ofnode_device_is_compatible(ofnode node, const char *compat);
Mario Sixe369e582018-06-26 08:46:48 +02001430
1431/**
1432 * ofnode_write_prop() - Set a property of a ofnode
1433 *
Simon Glass0b58eaa2022-09-06 20:27:32 -06001434 * Note that if @copy is false, the value passed to the function is *not*
1435 * allocated by the function itself, but must be allocated by the caller if
1436 * necessary. However it does allocate memory for the property struct and name.
Mario Sixe369e582018-06-26 08:46:48 +02001437 *
1438 * @node: The node for whose property should be set
1439 * @propname: The name of the property to set
Mario Sixe369e582018-06-26 08:46:48 +02001440 * @value: The new value of the property (must be valid prior to calling
1441 * the function)
Simon Glassbe0789a2022-07-30 15:52:10 -06001442 * @len: The length of the new value of the property
Simon Glass0b58eaa2022-09-06 20:27:32 -06001443 * @copy: true to allocate memory for the value. This only has any effect with
1444 * live tree, since flat tree handles this automatically. It allows a
1445 * node's value to be written to the tree, without requiring that the
1446 * caller allocate it
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001447 * Return: 0 if successful, -ve on error
Mario Sixe369e582018-06-26 08:46:48 +02001448 */
Simon Glassbe0789a2022-07-30 15:52:10 -06001449int ofnode_write_prop(ofnode node, const char *propname, const void *value,
Simon Glass0b58eaa2022-09-06 20:27:32 -06001450 int len, bool copy);
Mario Sixe369e582018-06-26 08:46:48 +02001451
1452/**
1453 * ofnode_write_string() - Set a string property of a ofnode
1454 *
1455 * Note that the value passed to the function is *not* allocated by the
1456 * function itself, but must be allocated by the caller if necessary.
1457 *
1458 * @node: The node for whose string property should be set
1459 * @propname: The name of the string property to set
1460 * @value: The new value of the string property (must be valid prior to
1461 * calling the function)
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001462 * Return: 0 if successful, -ve on error
Mario Sixe369e582018-06-26 08:46:48 +02001463 */
1464int ofnode_write_string(ofnode node, const char *propname, const char *value);
1465
1466/**
Simon Glass55f79902022-07-30 15:52:14 -06001467 * ofnode_write_u32() - Set an integer property of an ofnode
1468 *
1469 * @node: The node for whose string property should be set
1470 * @propname: The name of the string property to set
1471 * @value: The new value of the 32-bit integer property
1472 * Return: 0 if successful, -ve on error
1473 */
1474int ofnode_write_u32(ofnode node, const char *propname, u32 value);
1475
1476/**
Simon Glass7071c822023-09-26 08:14:45 -06001477 * ofnode_write_u64() - Set an integer property of an ofnode
1478 *
1479 * @node: The node for whose string property should be set
1480 * @propname: The name of the string property to set
1481 * @value: The new value of the 64-bit integer property
1482 * Return: 0 if successful, -ve on error
1483 */
1484int ofnode_write_u64(ofnode node, const char *propname, u64 value);
1485
1486/**
Simon Glassd9216c82023-09-26 08:14:44 -06001487 * ofnode_write_bool() - Set a boolean property of an ofnode
1488 *
1489 * This either adds or deleted a property with a zero-length value
1490 *
1491 * @node: The node for whose string property should be set
1492 * @propname: The name of the string property to set
1493 * @value: The new value of the boolean property
1494 * Return: 0 if successful, -ve on error
1495 */
1496int ofnode_write_bool(ofnode node, const char *propname, bool value);
1497
1498/**
1499 * ofnode_delete_prop() - Delete a property
1500 *
1501 * @node: Node containing the property to delete
1502 * @propname: Name of property to delete
1503 * Return: 0 if successful, -ve on error
1504 */
1505int ofnode_delete_prop(ofnode node, const char *propname);
1506
1507/**
Mario Sixe369e582018-06-26 08:46:48 +02001508 * ofnode_set_enabled() - Enable or disable a device tree node given by its
1509 * ofnode
1510 *
1511 * This function effectively sets the node's "status" property to either "okay"
1512 * or "disable", hence making it available for driver model initialization or
1513 * not.
1514 *
1515 * @node: The node to enable
1516 * @value: Flag that tells the function to either disable or enable the
1517 * node
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001518 * Return: 0 if successful, -ve on error
Mario Sixe369e582018-06-26 08:46:48 +02001519 */
1520int ofnode_set_enabled(ofnode node, bool value);
1521
Simon Glass7de8bd02021-08-07 07:24:01 -06001522/**
Sean Anderson8b52f232022-03-28 18:14:37 -04001523 * ofnode_get_phy_node() - Get PHY node for a MAC (if not fixed-link)
1524 *
1525 * This function parses PHY handle from the Ethernet controller's ofnode
1526 * (trying all possible PHY handle property names), and returns the PHY ofnode.
1527 *
1528 * Before this is used, ofnode_phy_is_fixed_link() should be checked first, and
1529 * if the result to that is true, this function should not be called.
1530 *
1531 * @eth_node: ofnode belonging to the Ethernet controller
1532 * Return: ofnode of the PHY, if it exists, otherwise an invalid ofnode
1533 */
1534ofnode ofnode_get_phy_node(ofnode eth_node);
1535
1536/**
1537 * ofnode_read_phy_mode() - Read PHY connection type from a MAC node
1538 *
1539 * This function parses the "phy-mode" / "phy-connection-type" property and
1540 * returns the corresponding PHY interface type.
1541 *
1542 * @mac_node: ofnode containing the property
1543 * Return: one of PHY_INTERFACE_MODE_* constants, PHY_INTERFACE_MODE_NA on
1544 * error
1545 */
1546phy_interface_t ofnode_read_phy_mode(ofnode mac_node);
1547
1548#if CONFIG_IS_ENABLED(DM)
1549/**
Simon Glass7de8bd02021-08-07 07:24:01 -06001550 * ofnode_conf_read_bool() - Read a boolean value from the U-Boot config
1551 *
1552 * This reads a property from the /config node of the devicetree.
1553 *
Simon Glass988f1462022-09-06 20:27:28 -06001554 * This only works with the control FDT.
1555 *
1556 * See doc/device-tree-bindings/config.txt for bindings
Simon Glass7de8bd02021-08-07 07:24:01 -06001557 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001558 * @prop_name: property name to look up
1559 * Return: true, if it exists, false if not
Simon Glass7de8bd02021-08-07 07:24:01 -06001560 */
1561bool ofnode_conf_read_bool(const char *prop_name);
1562
1563/**
1564 * ofnode_conf_read_int() - Read an integer value from the U-Boot config
1565 *
1566 * This reads a property from the /config node of the devicetree.
1567 *
Simon Glass988f1462022-09-06 20:27:28 -06001568 * See doc/device-tree-bindings/config.txt for bindings
Simon Glass7de8bd02021-08-07 07:24:01 -06001569 *
1570 * @prop_name: property name to look up
1571 * @default_val: default value to return if the property is not found
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001572 * Return: integer value, if found, or @default_val if not
Simon Glass7de8bd02021-08-07 07:24:01 -06001573 */
1574int ofnode_conf_read_int(const char *prop_name, int default_val);
1575
1576/**
1577 * ofnode_conf_read_str() - Read a string value from the U-Boot config
1578 *
1579 * This reads a property from the /config node of the devicetree.
1580 *
Simon Glass988f1462022-09-06 20:27:28 -06001581 * This only works with the control FDT.
1582 *
1583 * See doc/device-tree-bindings/config.txt for bindings
Simon Glass7de8bd02021-08-07 07:24:01 -06001584 *
1585 * @prop_name: property name to look up
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001586 * Return: string value, if found, or NULL if not
Simon Glass7de8bd02021-08-07 07:24:01 -06001587 */
1588const char *ofnode_conf_read_str(const char *prop_name);
1589
Michal Simekdb5e3492023-08-31 08:59:05 +02001590/**
1591 * ofnode_read_bootscript_address() - Read bootscr-address or bootscr-ram-offset
1592 *
1593 * @bootscr_address: pointer to 64bit address where bootscr-address property value
1594 * is stored
1595 * @bootscr_offset: pointer to 64bit offset address where bootscr-ram-offset
1596 * property value is stored
1597 *
1598 * This reads a bootscr-address or bootscr-ram-offset property from
1599 * the /options/u-boot/ node of the devicetree. bootscr-address holds the full
1600 * address of the boot script file. bootscr-ram-offset holds the boot script
1601 * file offset from the start of the ram base address. When bootscr-address is
1602 * defined, bootscr-ram-offset property is ignored.
1603 *
1604 * This only works with the control FDT.
1605 *
1606 * Return: 0 if OK, -EINVAL if property is not found.
1607 */
1608int ofnode_read_bootscript_address(u64 *bootscr_address, u64 *bootscr_offset);
1609
Michal Simek44f35e12023-08-31 09:04:27 +02001610/**
1611 * ofnode_read_bootscript_flash() - Read bootscr-flash-offset/size
1612 *
1613 * @bootscr_flash_offset: pointer to 64bit offset where bootscr-flash-offset
1614 * property value is stored
1615 * @bootscr_flash_size: pointer to 64bit size where bootscr-flash-size property
1616 * value is stored
1617 *
1618 * This reads a bootscr-flash-offset and bootscr-flash-size properties from
1619 * the /options/u-boot/ node of the devicetree. bootscr-flash-offset holds
1620 * the offset of the boot script file from start of flash. bootscr-flash-size
1621 * holds the boot script size in flash. When bootscr-flash-size is not defined,
1622 * bootscr-flash-offset property is cleaned.
1623 *
1624 * This only works with the control FDT.
1625 *
1626 * Return: 0 if OK, -EINVAL if property is not found or incorrect.
1627 */
1628int ofnode_read_bootscript_flash(u64 *bootscr_flash_offset,
1629 u64 *bootscr_flash_size);
1630
Sean Anderson8b52f232022-03-28 18:14:37 -04001631#else /* CONFIG_DM */
1632static inline bool ofnode_conf_read_bool(const char *prop_name)
1633{
1634 return false;
1635}
Marek Behúnf3dd2132022-04-07 00:32:57 +02001636
Sean Anderson8b52f232022-03-28 18:14:37 -04001637static inline int ofnode_conf_read_int(const char *prop_name, int default_val)
1638{
1639 return default_val;
1640}
1641
1642static inline const char *ofnode_conf_read_str(const char *prop_name)
1643{
1644 return NULL;
1645}
Simon Glassffe90392022-09-06 20:27:02 -06001646
Michal Simekdb5e3492023-08-31 08:59:05 +02001647static inline int ofnode_read_bootscript_address(u64 *bootscr_address, u64 *bootscr_offset)
1648{
1649 return -EINVAL;
1650}
1651
Michal Simek44f35e12023-08-31 09:04:27 +02001652static inline int ofnode_read_bootscript_flash(u64 *bootscr_flash_offset,
1653 u64 *bootscr_flash_size)
1654{
1655 return -EINVAL;
1656}
1657
Sean Anderson8b52f232022-03-28 18:14:37 -04001658#endif /* CONFIG_DM */
Marek Behún123ca112022-04-07 00:33:01 +02001659
Simon Glassffe90392022-09-06 20:27:02 -06001660/**
1661 * of_add_subnode() - add a new subnode to a node
1662 *
1663 * @parent: parent node to add to
1664 * @name: name of subnode
1665 * @nodep: returns pointer to new subnode (valid if the function returns 0
1666 * or -EEXIST)
1667 * Returns 0 if OK, -EEXIST if already exists, -ENOMEM if out of memory, other
1668 * -ve on other error
1669 */
1670int ofnode_add_subnode(ofnode parent, const char *name, ofnode *nodep);
1671
Simon Glassdb1ef1e2022-09-06 20:27:33 -06001672/**
1673 * ofnode_copy_props() - copy all properties from one node to another
1674 *
Simon Glass24797092023-09-26 08:14:37 -06001675 * Makes a copy of all properties from the source node to the destination node.
Simon Glassdb1ef1e2022-09-06 20:27:33 -06001676 * Existing properties in the destination node remain unchanged, except that
1677 * any with the same name are overwritten, including changing the size of the
1678 * property.
1679 *
1680 * For livetree, properties are copied / allocated, so the source tree does not
1681 * need to be present afterwards.
1682 *
Simon Glass24797092023-09-26 08:14:37 -06001683 * @dst: Destination node to write properties to
Simon Glassdb1ef1e2022-09-06 20:27:33 -06001684 * @src: Source node to read properties from
Simon Glassdb1ef1e2022-09-06 20:27:33 -06001685 */
Simon Glass24797092023-09-26 08:14:37 -06001686int ofnode_copy_props(ofnode dst, ofnode src);
Simon Glassdb1ef1e2022-09-06 20:27:33 -06001687
Simon Glassc15862f2023-09-26 08:14:41 -06001688/**
1689 * ofnode_copy_node() - Copy a node to another place
1690 *
1691 * If a node with this name already exists in dst_parent, this returns an
1692 * .error
1693 *
1694 * @dst_parent: Parent of the newly copied node
1695 * @name: Name to give the new node
1696 * @src: Source node to copy
1697 * @nodep: Returns the new node, or the existing node if there is one
1698 * Return: 0 if OK, -EEXIST if dst_parent already has a node with this parent
1699 */
1700int ofnode_copy_node(ofnode dst_parent, const char *name, ofnode src,
1701 ofnode *nodep);
1702
Simon Glass67fb2152023-09-26 08:14:42 -06001703/**
1704 * ofnode_delete() - Delete a node
1705 *
1706 * Delete a node from the tree
1707 *
1708 * @nodep: Pointer to node to delete (set to ofnode_null() on success)
1709 * Return: 0 if OK, -ENOENT if the node does not exist, -EPERM if it is the root
1710 * node (wWhich cannot be removed), -EFAULT if the tree is broken (to_remove is
1711 * not a child of its parent),
1712 *
1713 */
1714int ofnode_delete(ofnode *nodep);
1715
Simon Glass4984de22017-05-17 17:18:10 -06001716#endif