blob: 5a5309d79a70f87cfa9b9938895169e1c951ee56 [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 Glassdcf98852017-07-25 08:29:55 -060020struct resource;
21
Simon Glass5063ced2022-07-30 15:52:06 -060022#include <dm/ofnode_decl.h>
Simon Glass4984de22017-05-17 17:18:10 -060023
Simon Glass9e512042017-05-18 20:08:58 -060024struct ofnode_phandle_args {
25 ofnode node;
26 int args_count;
27 uint32_t args[OF_MAX_PHANDLE_ARGS];
28};
29
30/**
Stefan Roese45dbe752020-09-23 08:23:27 +020031 * ofnode_to_np() - convert an ofnode to a live DT node pointer
Simon Glass9e512042017-05-18 20:08:58 -060032 *
33 * This cannot be called if the reference contains an offset.
34 *
35 * @node: Reference containing struct device_node * (possibly invalid)
Patrick Delaunaybe74f712022-01-12 10:53:49 +010036 * Return: pointer to device node (can be NULL)
Simon Glass9e512042017-05-18 20:08:58 -060037 */
38static inline const struct device_node *ofnode_to_np(ofnode node)
39{
40#ifdef OF_CHECKS
41 if (!of_live_active())
42 return NULL;
43#endif
44 return node.np;
45}
46
Simon Glass4984de22017-05-17 17:18:10 -060047/**
48 * ofnode_to_offset() - convert an ofnode to a flat DT offset
49 *
50 * This cannot be called if the reference contains a node pointer.
51 *
52 * @node: Reference containing offset (possibly invalid)
Patrick Delaunaybe74f712022-01-12 10:53:49 +010053 * Return: DT offset (can be -1)
Simon Glass4984de22017-05-17 17:18:10 -060054 */
55static inline int ofnode_to_offset(ofnode node)
56{
Simon Glass9e512042017-05-18 20:08:58 -060057#ifdef OF_CHECKS
58 if (of_live_active())
59 return -1;
60#endif
Simon Glass4984de22017-05-17 17:18:10 -060061 return node.of_offset;
62}
63
64/**
65 * ofnode_valid() - check if an ofnode is valid
66 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +010067 * @node: Reference containing offset (possibly invalid)
68 * Return: true if the reference contains a valid ofnode, false if it is NULL
Simon Glass4984de22017-05-17 17:18:10 -060069 */
70static inline bool ofnode_valid(ofnode node)
71{
Simon Glass9e512042017-05-18 20:08:58 -060072 if (of_live_active())
73 return node.np != NULL;
74 else
Patrick Delaunay6d9949f2020-09-24 17:26:20 +020075 return node.of_offset >= 0;
Simon Glass4984de22017-05-17 17:18:10 -060076}
77
78/**
79 * offset_to_ofnode() - convert a DT offset to an ofnode
80 *
81 * @of_offset: DT offset (either valid, or -1)
Patrick Delaunaybe74f712022-01-12 10:53:49 +010082 * Return: reference to the associated DT offset
Simon Glass4984de22017-05-17 17:18:10 -060083 */
84static inline ofnode offset_to_ofnode(int of_offset)
85{
86 ofnode node;
87
Simon Glass9e512042017-05-18 20:08:58 -060088 if (of_live_active())
89 node.np = NULL;
90 else
Simon Glassb14c5332019-12-06 21:41:36 -070091 node.of_offset = of_offset >= 0 ? of_offset : -1;
Simon Glass4984de22017-05-17 17:18:10 -060092
93 return node;
94}
95
96/**
Simon Glass9e512042017-05-18 20:08:58 -060097 * np_to_ofnode() - convert a node pointer to an ofnode
98 *
99 * @np: Live node pointer (can be NULL)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100100 * Return: reference to the associated node pointer
Simon Glass9e512042017-05-18 20:08:58 -0600101 */
102static inline ofnode np_to_ofnode(const struct device_node *np)
103{
104 ofnode node;
105
106 node.np = np;
107
108 return node;
109}
110
111/**
112 * ofnode_is_np() - check if a reference is a node pointer
113 *
114 * This function associated that if there is a valid live tree then all
115 * references will use it. This is because using the flat DT when the live tree
116 * is valid is not permitted.
117 *
118 * @node: reference to check (possibly invalid)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100119 * Return: true if the reference is a live node pointer, false if it is a DT
Simon Glass9e512042017-05-18 20:08:58 -0600120 * offset
121 */
122static inline bool ofnode_is_np(ofnode node)
123{
124#ifdef OF_CHECKS
125 /*
126 * Check our assumption that flat tree offsets are not used when a
127 * live tree is in use.
128 */
129 assert(!ofnode_valid(node) ||
Stefan Roese45dbe752020-09-23 08:23:27 +0200130 (of_live_active() ? ofnode_to_np(node)
131 : ofnode_to_np(node)));
Simon Glass9e512042017-05-18 20:08:58 -0600132#endif
133 return of_live_active() && ofnode_valid(node);
134}
135
136/**
Simon Glass4984de22017-05-17 17:18:10 -0600137 * ofnode_equal() - check if two references are equal
138 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100139 * @ref1: first reference to check (possibly invalid)
140 * @ref2: second reference to check (possibly invalid)
141 * Return: true if equal, else false
Simon Glass4984de22017-05-17 17:18:10 -0600142 */
143static inline bool ofnode_equal(ofnode ref1, ofnode ref2)
144{
145 /* We only need to compare the contents */
146 return ref1.of_offset == ref2.of_offset;
147}
148
Simon Glass9e512042017-05-18 20:08:58 -0600149/**
150 * ofnode_null() - Obtain a null ofnode
151 *
152 * This returns an ofnode which points to no node. It works both with the flat
153 * tree and livetree.
154 */
155static inline ofnode ofnode_null(void)
156{
157 ofnode node;
158
159 if (of_live_active())
160 node.np = NULL;
161 else
162 node.of_offset = -1;
163
164 return node;
165}
166
Simon Glassd0c20ce2020-11-28 17:50:07 -0700167static inline ofnode ofnode_root(void)
168{
169 ofnode node;
170
171 if (of_live_active())
172 node.np = gd_of_root();
173 else
174 node.of_offset = 0;
175
176 return node;
177}
178
Simon Glass9e512042017-05-18 20:08:58 -0600179/**
Kishon Vijay Abraham I77cbaf82021-07-21 21:28:30 +0530180 * ofnode_name_eq() - Check if the node name is equivalent to a given name
181 * ignoring the unit address
182 *
183 * @node: valid node reference that has to be compared
184 * @name: name that has to be compared with the node name
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100185 * Return: true if matches, false if it doesn't match
Kishon Vijay Abraham I77cbaf82021-07-21 21:28:30 +0530186 */
187bool ofnode_name_eq(ofnode node, const char *name);
188
189/**
Simon Glass9e512042017-05-18 20:08:58 -0600190 * ofnode_read_u32() - Read a 32-bit integer from a property
191 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100192 * @node: valid node reference to read property from
Simon Glass9e512042017-05-18 20:08:58 -0600193 * @propname: name of the property to read from
194 * @outp: place to put value (if found)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100195 * Return: 0 if OK, -ve on error
Simon Glass9e512042017-05-18 20:08:58 -0600196 */
197int ofnode_read_u32(ofnode node, const char *propname, u32 *outp);
198
199/**
Dario Binacchi4bb70752020-03-29 18:04:41 +0200200 * ofnode_read_u32_index() - Read a 32-bit integer from a multi-value property
201 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100202 * @node: valid node reference to read property from
Dario Binacchi4bb70752020-03-29 18:04:41 +0200203 * @propname: name of the property to read from
204 * @index: index of the integer to return
205 * @outp: place to put value (if found)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100206 * Return: 0 if OK, -ve on error
Dario Binacchi4bb70752020-03-29 18:04:41 +0200207 */
208int ofnode_read_u32_index(ofnode node, const char *propname, int index,
209 u32 *outp);
210
211/**
Simon Glass9e512042017-05-18 20:08:58 -0600212 * ofnode_read_s32() - Read a 32-bit integer from a property
213 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100214 * @node: valid node reference to read property from
Simon Glass9e512042017-05-18 20:08:58 -0600215 * @propname: name of the property to read from
216 * @outp: place to put value (if found)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100217 * Return: 0 if OK, -ve on error
Simon Glass9e512042017-05-18 20:08:58 -0600218 */
219static inline int ofnode_read_s32(ofnode node, const char *propname,
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100220 s32 *outp)
Simon Glass9e512042017-05-18 20:08:58 -0600221{
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100222 return ofnode_read_u32(node, propname, (u32 *)outp);
Simon Glass9e512042017-05-18 20:08:58 -0600223}
224
225/**
226 * ofnode_read_u32_default() - Read a 32-bit integer from a property
227 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100228 * @node: valid node reference to read property from
Simon Glass9e512042017-05-18 20:08:58 -0600229 * @propname: name of the property to read from
230 * @def: default value to return if the property has no value
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100231 * Return: property value, or @def if not found
Simon Glass9e512042017-05-18 20:08:58 -0600232 */
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100233u32 ofnode_read_u32_default(ofnode node, const char *propname, u32 def);
Simon Glass9e512042017-05-18 20:08:58 -0600234
235/**
Dario Binacchi4bb70752020-03-29 18:04:41 +0200236 * ofnode_read_u32_index_default() - Read a 32-bit integer from a multi-value
237 * property
238 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100239 * @node: valid node reference to read property from
Dario Binacchi4bb70752020-03-29 18:04:41 +0200240 * @propname: name of the property to read from
241 * @index: index of the integer to return
242 * @def: default value to return if the property has no value
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100243 * Return: property value, or @def if not found
Dario Binacchi4bb70752020-03-29 18:04:41 +0200244 */
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100245u32 ofnode_read_u32_index_default(ofnode node, const char *propname, int index,
Dario Binacchi4bb70752020-03-29 18:04:41 +0200246 u32 def);
247
248/**
Simon Glass9e512042017-05-18 20:08:58 -0600249 * ofnode_read_s32_default() - Read a 32-bit integer from a property
250 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100251 * @node: valid node reference to read property from
Simon Glass9e512042017-05-18 20:08:58 -0600252 * @propname: name of the property to read from
253 * @def: default value to return if the property has no value
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100254 * Return: property value, or @def if not found
Simon Glass9e512042017-05-18 20:08:58 -0600255 */
256int ofnode_read_s32_default(ofnode node, const char *propname, s32 def);
257
258/**
Lukas Auerafb30122018-11-22 11:26:35 +0100259 * ofnode_read_u64() - Read a 64-bit integer from a property
260 *
261 * @node: valid node reference to read property from
262 * @propname: name of the property to read from
263 * @outp: place to put value (if found)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100264 * Return: 0 if OK, -ve on error
Lukas Auerafb30122018-11-22 11:26:35 +0100265 */
266int ofnode_read_u64(ofnode node, const char *propname, u64 *outp);
267
268/**
Simon Glass7e5196c2018-06-11 13:07:10 -0600269 * ofnode_read_u64_default() - Read a 64-bit integer from a property
270 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100271 * @node: valid node reference to read property from
Simon Glass7e5196c2018-06-11 13:07:10 -0600272 * @propname: name of the property to read from
273 * @def: default value to return if the property has no value
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100274 * Return: property value, or @def if not found
Simon Glass7e5196c2018-06-11 13:07:10 -0600275 */
T Karthik Reddy3f3d7712019-09-02 16:34:30 +0200276u64 ofnode_read_u64_default(ofnode node, const char *propname, u64 def);
Simon Glass7e5196c2018-06-11 13:07:10 -0600277
278/**
Simon Glassa8167d82020-01-27 08:49:44 -0700279 * ofnode_read_prop() - Read a property from a node
280 *
281 * @node: valid node reference to read property from
282 * @propname: name of the property to read
283 * @sizep: if non-NULL, returns the size of the property, or an error code
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100284 * if not found
285 * Return: property value, or NULL if there is no such property
Simon Glassa8167d82020-01-27 08:49:44 -0700286 */
287const void *ofnode_read_prop(ofnode node, const char *propname, int *sizep);
288
289/**
Simon Glass9e512042017-05-18 20:08:58 -0600290 * ofnode_read_string() - Read a string from a property
291 *
Simon Glassa8167d82020-01-27 08:49:44 -0700292 * @node: valid node reference to read property from
Simon Glass9e512042017-05-18 20:08:58 -0600293 * @propname: name of the property to read
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100294 * Return: string from property value, or NULL if there is no such property
Simon Glass9e512042017-05-18 20:08:58 -0600295 */
296const char *ofnode_read_string(ofnode node, const char *propname);
297
298/**
Simon Glassbed77492017-05-18 20:09:01 -0600299 * ofnode_read_u32_array() - Find and read an array of 32 bit integers
Simon Glass9e512042017-05-18 20:08:58 -0600300 *
301 * @node: valid node reference to read property from
302 * @propname: name of the property to read
303 * @out_values: pointer to return value, modified only if return value is 0
304 * @sz: number of array elements to read
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100305 * Return: 0 if OK, -ve on error
Simon Glass9e512042017-05-18 20:08:58 -0600306 *
307 * Search for a property in a device node and read 32-bit value(s) from
308 * it. Returns 0 on success, -EINVAL if the property does not exist,
309 * -ENODATA if property does not have a value, and -EOVERFLOW if the
310 * property data isn't large enough.
311 *
312 * The out_values is modified only if a valid u32 value can be decoded.
313 */
314int ofnode_read_u32_array(ofnode node, const char *propname,
315 u32 *out_values, size_t sz);
316
317/**
318 * ofnode_read_bool() - read a boolean value from a property
319 *
320 * @node: valid node reference to read property from
321 * @propname: name of property to read
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100322 * Return: true if property is present (meaning true), false if not present
Simon Glass9e512042017-05-18 20:08:58 -0600323 */
324bool ofnode_read_bool(ofnode node, const char *propname);
325
326/**
327 * ofnode_find_subnode() - find a named subnode of a parent node
328 *
329 * @node: valid reference to parent node
330 * @subnode_name: name of subnode to find
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100331 * Return: reference to subnode (which can be invalid if there is no such
Simon Glass9e512042017-05-18 20:08:58 -0600332 * subnode)
333 */
334ofnode ofnode_find_subnode(ofnode node, const char *subnode_name);
335
Simon Glassec1add12020-12-16 17:25:06 -0700336#if CONFIG_IS_ENABLED(DM_INLINE_OFNODE)
Simon Glass401d1c42020-10-30 21:38:53 -0600337#include <asm/global_data.h>
338
Simon Glassec1add12020-12-16 17:25:06 -0700339static inline bool ofnode_is_enabled(ofnode node)
340{
341 if (ofnode_is_np(node)) {
342 return of_device_is_available(ofnode_to_np(node));
343 } else {
344 return fdtdec_get_is_enabled(gd->fdt_blob,
345 ofnode_to_offset(node));
346 }
347}
348
349static inline ofnode ofnode_first_subnode(ofnode node)
350{
351 assert(ofnode_valid(node));
352 if (ofnode_is_np(node))
353 return np_to_ofnode(node.np->child);
354
355 return offset_to_ofnode(
356 fdt_first_subnode(gd->fdt_blob, ofnode_to_offset(node)));
357}
358
359static inline ofnode ofnode_next_subnode(ofnode node)
360{
361 assert(ofnode_valid(node));
362 if (ofnode_is_np(node))
363 return np_to_ofnode(node.np->sibling);
364
365 return offset_to_ofnode(
366 fdt_next_subnode(gd->fdt_blob, ofnode_to_offset(node)));
367}
368#else
369/**
370 * ofnode_is_enabled() - Checks whether a node is enabled.
371 * This looks for a 'status' property. If this exists, then returns true if
372 * the status is 'okay' and false otherwise. If there is no status property,
373 * it returns true on the assumption that anything mentioned should be enabled
374 * by default.
375 *
376 * @node: node to examine
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100377 * Return: false (not enabled) or true (enabled)
Simon Glassec1add12020-12-16 17:25:06 -0700378 */
379bool ofnode_is_enabled(ofnode node);
380
Simon Glass9e512042017-05-18 20:08:58 -0600381/**
382 * ofnode_first_subnode() - find the first subnode of a parent node
383 *
384 * @node: valid reference to a valid parent node
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100385 * Return: reference to the first subnode (which can be invalid if the parent
Simon Glass9e512042017-05-18 20:08:58 -0600386 * node has no subnodes)
387 */
388ofnode ofnode_first_subnode(ofnode node);
389
390/**
391 * ofnode_next_subnode() - find the next sibling of a subnode
392 *
393 * @node: valid reference to previous node (sibling)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100394 * Return: reference to the next subnode (which can be invalid if the node
Simon Glass9e512042017-05-18 20:08:58 -0600395 * has no more siblings)
396 */
397ofnode ofnode_next_subnode(ofnode node);
Simon Glassec1add12020-12-16 17:25:06 -0700398#endif /* DM_INLINE_OFNODE */
Simon Glass9e512042017-05-18 20:08:58 -0600399
400/**
Philipp Tomsiche2d59972018-02-23 17:38:49 +0100401 * ofnode_get_parent() - get the ofnode's parent (enclosing ofnode)
402 *
403 * @node: valid node to look up
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100404 * Return: ofnode reference of the parent node
Philipp Tomsiche2d59972018-02-23 17:38:49 +0100405 */
406ofnode ofnode_get_parent(ofnode node);
407
408/**
Simon Glass9e512042017-05-18 20:08:58 -0600409 * ofnode_get_name() - get the name of a node
410 *
411 * @node: valid node to look up
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100412 * Return: name of node
Simon Glass9e512042017-05-18 20:08:58 -0600413 */
414const char *ofnode_get_name(ofnode node);
415
416/**
Marek Behún0e116be2021-05-26 14:08:18 +0200417 * ofnode_get_path() - get the full path of a node
418 *
419 * @node: valid node to look up
420 * @buf: buffer to write the node path into
421 * @buflen: buffer size
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100422 * Return: 0 if OK, -ve on error
Marek Behún0e116be2021-05-26 14:08:18 +0200423 */
424int ofnode_get_path(ofnode node, char *buf, int buflen);
425
426/**
Kever Yangb4f20762018-02-23 17:38:50 +0100427 * ofnode_get_by_phandle() - get ofnode from phandle
428 *
429 * @phandle: phandle to look up
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100430 * Return: ofnode reference to the phandle
Kever Yangb4f20762018-02-23 17:38:50 +0100431 */
432ofnode ofnode_get_by_phandle(uint phandle);
433
434/**
Simon Glass9e512042017-05-18 20:08:58 -0600435 * ofnode_read_size() - read the size of a property
436 *
437 * @node: node to check
438 * @propname: property to check
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100439 * Return: size of property if present, or -EINVAL if not
Simon Glass9e512042017-05-18 20:08:58 -0600440 */
441int ofnode_read_size(ofnode node, const char *propname);
442
443/**
Keerthye679d032019-04-24 17:19:53 +0530444 * ofnode_get_addr_size_index() - get an address/size from a node
445 * based on index
446 *
447 * This reads the register address/size from a node based on index
448 *
449 * @node: node to read from
450 * @index: Index of address to read (0 for first)
451 * @size: Pointer to size of the address
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100452 * Return: address, or FDT_ADDR_T_NONE if not present or invalid
Keerthye679d032019-04-24 17:19:53 +0530453 */
454phys_addr_t ofnode_get_addr_size_index(ofnode node, int index,
455 fdt_size_t *size);
456
457/**
Marek Behún31a7b712021-05-26 14:08:17 +0200458 * ofnode_get_addr_size_index_notrans() - get an address/size from a node
459 * based on index, without address
460 * translation
461 *
462 * This reads the register address/size from a node based on index.
463 * The resulting address is not translated. Useful for example for on-disk
464 * addresses.
465 *
466 * @node: node to read from
467 * @index: Index of address to read (0 for first)
468 * @size: Pointer to size of the address
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100469 * Return: address, or FDT_ADDR_T_NONE if not present or invalid
Marek Behún31a7b712021-05-26 14:08:17 +0200470 */
471phys_addr_t ofnode_get_addr_size_index_notrans(ofnode node, int index,
472 fdt_size_t *size);
473
474/**
Simon Glassbed77492017-05-18 20:09:01 -0600475 * ofnode_get_addr_index() - get an address from a node
476 *
477 * This reads the register address from a node
478 *
479 * @node: node to read from
480 * @index: Index of address to read (0 for first)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100481 * Return: address, or FDT_ADDR_T_NONE if not present or invalid
Simon Glassbed77492017-05-18 20:09:01 -0600482 */
483phys_addr_t ofnode_get_addr_index(ofnode node, int index);
484
485/**
486 * ofnode_get_addr() - get an address from a node
487 *
488 * This reads the register address from a node
489 *
490 * @node: node to read from
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100491 * Return: address, or FDT_ADDR_T_NONE if not present or invalid
Simon Glassbed77492017-05-18 20:09:01 -0600492 */
493phys_addr_t ofnode_get_addr(ofnode node);
494
495/**
Chen Guanqiaoaa351a12021-04-12 14:51:11 +0800496 * ofnode_get_size() - get size from a node
497 *
498 * This reads the register size from a node
499 *
500 * @node: node to read from
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100501 * Return: size of the address, or FDT_SIZE_T_NONE if not present or invalid
Chen Guanqiaoaa351a12021-04-12 14:51:11 +0800502 */
503fdt_size_t ofnode_get_size(ofnode node);
504
505/**
Simon Glass9e512042017-05-18 20:08:58 -0600506 * ofnode_stringlist_search() - find a string in a string list and return index
507 *
508 * Note that it is possible for this function to succeed on property values
509 * that are not NUL-terminated. That's because the function will stop after
510 * finding the first occurrence of @string. This can for example happen with
511 * small-valued cell properties, such as #address-cells, when searching for
512 * the empty string.
513 *
514 * @node: node to check
515 * @propname: name of the property containing the string list
516 * @string: string to look up in the string list
517 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100518 * Return:
Simon Glass9e512042017-05-18 20:08:58 -0600519 * the index of the string in the list of strings
520 * -ENODATA if the property is not found
521 * -EINVAL on some other error
522 */
523int ofnode_stringlist_search(ofnode node, const char *propname,
524 const char *string);
525
526/**
Simon Glass8c293d62017-06-12 06:21:28 -0600527 * ofnode_read_string_index() - obtain an indexed string from a string list
Simon Glass9e512042017-05-18 20:08:58 -0600528 *
529 * Note that this will successfully extract strings from properties with
530 * non-NUL-terminated values. For example on small-valued cell properties
531 * this function will return the empty string.
532 *
533 * If non-NULL, the length of the string (on success) or a negative error-code
534 * (on failure) will be stored in the integer pointer to by lenp.
535 *
536 * @node: node to check
537 * @propname: name of the property containing the string list
Simon Glass32c6a8e2021-10-23 17:26:06 -0600538 * @index: index of the string to return (cannot be negative)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100539 * @outp: return location for the string
Simon Glass9e512042017-05-18 20:08:58 -0600540 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100541 * Return:
Simon Glass32c6a8e2021-10-23 17:26:06 -0600542 * 0 if found or -ve error value if not found
Simon Glass9e512042017-05-18 20:08:58 -0600543 */
544int ofnode_read_string_index(ofnode node, const char *propname, int index,
545 const char **outp);
546
547/**
Simon Glass8c293d62017-06-12 06:21:28 -0600548 * ofnode_read_string_count() - find the number of strings in a string list
549 *
550 * @node: node to check
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100551 * @property: name of the property containing the string list
552 * Return:
Simon Glass8c293d62017-06-12 06:21:28 -0600553 * number of strings in the list, or -ve error value if not found
554 */
555int ofnode_read_string_count(ofnode node, const char *property);
556
557/**
Simon Glass075bfc92021-10-23 17:26:07 -0600558 * ofnode_read_string_list() - read a list of strings
559 *
560 * This produces a list of string pointers with each one pointing to a string
561 * in the string list. If the property does not exist, it returns {NULL}.
562 *
563 * The data is allocated and the caller is reponsible for freeing the return
564 * value (the list of string pointers). The strings themselves may not be
565 * changed as they point directly into the devicetree property.
566 *
567 * @node: node to check
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100568 * @property: name of the property containing the string list
Simon Glass075bfc92021-10-23 17:26:07 -0600569 * @listp: returns an allocated, NULL-terminated list of strings if the return
570 * value is > 0, else is set to NULL
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100571 * Return:
572 * number of strings in list, 0 if none, -ENOMEM if out of memory,
573 * -EINVAL if no such property, -EENODATA if property is empty
Simon Glass075bfc92021-10-23 17:26:07 -0600574 */
575int ofnode_read_string_list(ofnode node, const char *property,
576 const char ***listp);
577
578/**
Simon Glass9e512042017-05-18 20:08:58 -0600579 * ofnode_parse_phandle_with_args() - Find a node pointed by phandle in a list
580 *
581 * This function is useful to parse lists of phandles and their arguments.
582 * Returns 0 on success and fills out_args, on error returns appropriate
583 * errno value.
584 *
585 * Caller is responsible to call of_node_put() on the returned out_args->np
586 * pointer.
587 *
588 * Example:
589 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100590 * .. code-block::
Simon Glass9e512042017-05-18 20:08:58 -0600591 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100592 * phandle1: node1 {
593 * #list-cells = <2>;
594 * };
595 * phandle2: node2 {
596 * #list-cells = <1>;
597 * };
598 * node3 {
599 * list = <&phandle1 1 2 &phandle2 3>;
600 * };
Simon Glass9e512042017-05-18 20:08:58 -0600601 *
602 * To get a device_node of the `node2' node you may call this:
603 * ofnode_parse_phandle_with_args(node3, "list", "#list-cells", 0, 1, &args);
604 *
605 * @node: device tree node containing a list
606 * @list_name: property name that contains a list
607 * @cells_name: property name that specifies phandles' arguments count
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100608 * @cell_count: Cell count to use if @cells_name is NULL
Simon Glass9e512042017-05-18 20:08:58 -0600609 * @index: index of a phandle to parse out
610 * @out_args: optional pointer to output arguments structure (will be filled)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100611 * Return:
612 * 0 on success (with @out_args filled out if not NULL), -ENOENT if
613 * @list_name does not exist, -EINVAL if a phandle was not found,
614 * @cells_name could not be found, the arguments were truncated or there
615 * were too many arguments.
Simon Glass9e512042017-05-18 20:08:58 -0600616 */
617int ofnode_parse_phandle_with_args(ofnode node, const char *list_name,
618 const char *cells_name, int cell_count,
619 int index,
620 struct ofnode_phandle_args *out_args);
621
622/**
Patrice Chotard642346a2017-07-18 11:57:08 +0200623 * ofnode_count_phandle_with_args() - Count number of phandle in a list
624 *
625 * This function is useful to count phandles into a list.
626 * Returns number of phandle on success, on error returns appropriate
627 * errno value.
628 *
629 * @node: device tree node containing a list
630 * @list_name: property name that contains a list
631 * @cells_name: property name that specifies phandles' arguments count
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100632 * @cell_count: Cell count to use if @cells_name is NULL
633 * Return:
634 * number of phandle on success, -ENOENT if @list_name does not exist,
635 * -EINVAL if a phandle was not found, @cells_name could not be found.
Patrice Chotard642346a2017-07-18 11:57:08 +0200636 */
637int ofnode_count_phandle_with_args(ofnode node, const char *list_name,
Patrick Delaunay89f68302020-09-25 09:41:14 +0200638 const char *cells_name, int cell_count);
Patrice Chotard642346a2017-07-18 11:57:08 +0200639
640/**
Simon Glass9e512042017-05-18 20:08:58 -0600641 * ofnode_path() - find a node by full path
642 *
643 * @path: Full path to node, e.g. "/bus/spi@1"
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100644 * Return: reference to the node found. Use ofnode_valid() to check if it exists
Simon Glass9e512042017-05-18 20:08:58 -0600645 */
646ofnode ofnode_path(const char *path);
647
648/**
Simon Glassbd933bf2020-01-27 08:49:46 -0700649 * ofnode_read_chosen_prop() - get the value of a chosen property
650 *
651 * This looks for a property within the /chosen node and returns its value
652 *
653 * @propname: Property name to look for
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100654 * @sizep: Returns size of property, or `FDT_ERR_...` error code if function
Simon Glassbd933bf2020-01-27 08:49:46 -0700655 * returns NULL
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100656 * Return: property value if found, else NULL
Simon Glassbd933bf2020-01-27 08:49:46 -0700657 */
658const void *ofnode_read_chosen_prop(const char *propname, int *sizep);
659
660/**
Simon Glass14ca9f72020-01-27 08:49:43 -0700661 * ofnode_read_chosen_string() - get the string value of a chosen property
Simon Glass9e512042017-05-18 20:08:58 -0600662 *
Simon Glass14ca9f72020-01-27 08:49:43 -0700663 * This looks for a property within the /chosen node and returns its value,
664 * checking that it is a valid nul-terminated string
Simon Glass9e512042017-05-18 20:08:58 -0600665 *
666 * @propname: Property name to look for
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100667 * Return: string value if found, else NULL
Simon Glass9e512042017-05-18 20:08:58 -0600668 */
Simon Glass14ca9f72020-01-27 08:49:43 -0700669const char *ofnode_read_chosen_string(const char *propname);
Simon Glass9e512042017-05-18 20:08:58 -0600670
671/**
Simon Glass74d594a2020-01-27 08:49:42 -0700672 * ofnode_get_chosen_node() - get a referenced node from the chosen node
Simon Glass9e512042017-05-18 20:08:58 -0600673 *
Simon Glass74d594a2020-01-27 08:49:42 -0700674 * This looks up a named property in the chosen node and uses that as a path to
675 * look up a code.
676 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100677 * @propname: Property name to look for
678 * Return: the referenced node if present, else ofnode_null()
Simon Glass9e512042017-05-18 20:08:58 -0600679 */
Simon Glass74d594a2020-01-27 08:49:42 -0700680ofnode ofnode_get_chosen_node(const char *propname);
Simon Glass9e512042017-05-18 20:08:58 -0600681
Michal Simek305d3182020-07-28 12:51:08 +0200682/**
683 * ofnode_read_aliases_prop() - get the value of a aliases property
684 *
685 * This looks for a property within the /aliases node and returns its value
686 *
687 * @propname: Property name to look for
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100688 * @sizep: Returns size of property, or `FDT_ERR_...` error code if function
Michal Simek305d3182020-07-28 12:51:08 +0200689 * returns NULL
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100690 * Return: property value if found, else NULL
Michal Simek305d3182020-07-28 12:51:08 +0200691 */
692const void *ofnode_read_aliases_prop(const char *propname, int *sizep);
693
694/**
695 * ofnode_get_aliases_node() - get a referenced node from the aliases node
696 *
697 * This looks up a named property in the aliases node and uses that as a path to
698 * look up a code.
699 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100700 * @propname: Property name to look for
701 * Return: the referenced node if present, else ofnode_null()
Michal Simek305d3182020-07-28 12:51:08 +0200702 */
703ofnode ofnode_get_aliases_node(const char *propname);
704
Simon Glass9e512042017-05-18 20:08:58 -0600705struct display_timing;
706/**
707 * ofnode_decode_display_timing() - decode display timings
708 *
709 * Decode display timings from the supplied 'display-timings' node.
710 * See doc/device-tree-bindings/video/display-timing.txt for binding
711 * information.
712 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100713 * @node: 'display-timing' node containing the timing subnodes
714 * @index: Index number to read (0=first timing subnode)
715 * @config: Place to put timings
716 * Return: 0 if OK, -FDT_ERR_NOTFOUND if not found
Simon Glass9e512042017-05-18 20:08:58 -0600717 */
718int ofnode_decode_display_timing(ofnode node, int index,
719 struct display_timing *config);
720
721/**
Patrick Delaunayce891fca2020-01-13 11:34:56 +0100722 * ofnode_get_property() - get a pointer to the value of a node property
Simon Glass9e512042017-05-18 20:08:58 -0600723 *
724 * @node: node to read
725 * @propname: property to read
726 * @lenp: place to put length on success
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100727 * Return: pointer to property, or NULL if not found
Simon Glass9e512042017-05-18 20:08:58 -0600728 */
Masahiro Yamada61e51ba2017-06-22 16:54:05 +0900729const void *ofnode_get_property(ofnode node, const char *propname, int *lenp);
Simon Glass9e512042017-05-18 20:08:58 -0600730
731/**
Patrick Delaunayce891fca2020-01-13 11:34:56 +0100732 * ofnode_get_first_property()- get the reference of the first property
733 *
734 * Get reference to the first property of the node, it is used to iterate
735 * and read all the property with ofnode_get_property_by_prop().
736 *
737 * @node: node to read
738 * @prop: place to put argument reference
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100739 * Return: 0 if OK, -ve on error. -FDT_ERR_NOTFOUND if not found
Patrick Delaunayce891fca2020-01-13 11:34:56 +0100740 */
741int ofnode_get_first_property(ofnode node, struct ofprop *prop);
742
743/**
744 * ofnode_get_next_property() - get the reference of the next property
745 *
746 * Get reference to the next property of the node, it is used to iterate
747 * and read all the property with ofnode_get_property_by_prop().
748 *
749 * @prop: reference of current argument and place to put reference of next one
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100750 * Return: 0 if OK, -ve on error. -FDT_ERR_NOTFOUND if not found
Patrick Delaunayce891fca2020-01-13 11:34:56 +0100751 */
752int ofnode_get_next_property(struct ofprop *prop);
753
754/**
755 * ofnode_get_property_by_prop() - get a pointer to the value of a property
756 *
757 * Get value for the property identified by the provided reference.
758 *
759 * @prop: reference on property
760 * @propname: If non-NULL, place to property name on success,
761 * @lenp: If non-NULL, place to put length on success
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100762 * Return: 0 if OK, -ve on error. -FDT_ERR_NOTFOUND if not found
Patrick Delaunayce891fca2020-01-13 11:34:56 +0100763 */
764const void *ofnode_get_property_by_prop(const struct ofprop *prop,
765 const char **propname, int *lenp);
766
767/**
Simon Glass9e512042017-05-18 20:08:58 -0600768 * ofnode_is_available() - check if a node is marked available
769 *
770 * @node: node to check
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100771 * Return: true if node's 'status' property is "okay" (or is missing)
Simon Glass9e512042017-05-18 20:08:58 -0600772 */
773bool ofnode_is_available(ofnode node);
774
775/**
776 * ofnode_get_addr_size() - get address and size from a property
777 *
778 * This does no address translation. It simply reads an property that contains
779 * an address and a size value, one after the other.
780 *
781 * @node: node to read from
782 * @propname: property to read
783 * @sizep: place to put size value (on success)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100784 * Return: address value, or FDT_ADDR_T_NONE on error
Simon Glass9e512042017-05-18 20:08:58 -0600785 */
786phys_addr_t ofnode_get_addr_size(ofnode node, const char *propname,
787 phys_size_t *sizep);
788
789/**
790 * ofnode_read_u8_array_ptr() - find an 8-bit array
791 *
792 * Look up a property in a node and return a pointer to its contents as a
793 * byte array of given length. The property must have at least enough data
794 * for the array (count bytes). It may have more, but this will be ignored.
795 * The data is not copied.
796 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100797 * @node: node to examine
798 * @propname: name of property to find
799 * @sz: number of array elements
800 * Return:
801 * pointer to byte array if found, or NULL if the property is not found or
802 * there is not enough data
Simon Glass9e512042017-05-18 20:08:58 -0600803 */
804const uint8_t *ofnode_read_u8_array_ptr(ofnode node, const char *propname,
805 size_t sz);
806
807/**
808 * ofnode_read_pci_addr() - look up a PCI address
809 *
810 * Look at an address property in a node and return the PCI address which
811 * corresponds to the given type in the form of fdt_pci_addr.
812 * The property must hold one fdt_pci_addr with a lengh.
813 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100814 * @node: node to examine
815 * @type: pci address type (FDT_PCI_SPACE_xxx)
816 * @propname: name of property to find
817 * @addr: returns pci address in the form of fdt_pci_addr
818 * Return:
819 * 0 if ok, -ENOENT if the property did not exist, -EINVAL if the
820 * format of the property was invalid, -ENXIO if the requested
821 * address type was not found
Simon Glass9e512042017-05-18 20:08:58 -0600822 */
823int ofnode_read_pci_addr(ofnode node, enum fdt_pci_space type,
824 const char *propname, struct fdt_pci_addr *addr);
825
826/**
Bin Meng7b9cbad2018-08-03 01:14:35 -0700827 * ofnode_read_pci_vendev() - look up PCI vendor and device id
828 *
829 * Look at the compatible property of a device node that represents a PCI
830 * device and extract pci vendor id and device id from it.
831 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100832 * @node: node to examine
833 * @vendor: vendor id of the pci device
834 * @device: device id of the pci device
835 * Return: 0 if ok, negative on error
Bin Meng7b9cbad2018-08-03 01:14:35 -0700836 */
837int ofnode_read_pci_vendev(ofnode node, u16 *vendor, u16 *device);
838
839/**
Michal Simekdb681d42022-02-23 15:45:40 +0100840 * ofnode_read_eth_phy_id() - look up eth phy vendor and device id
841 *
842 * Look at the compatible property of a device node that represents a eth phy
843 * device and extract phy vendor id and device id from it.
844 *
Heinrich Schuchardtd23f2902022-03-24 16:22:32 +0100845 * @node: node to examine
846 * @vendor: vendor id of the eth phy device
847 * @device: device id of the eth phy device
848 * Return: 0 if ok, negative on error
Michal Simekdb681d42022-02-23 15:45:40 +0100849 */
850int ofnode_read_eth_phy_id(ofnode node, u16 *vendor, u16 *device);
851
852/**
Simon Glass9e512042017-05-18 20:08:58 -0600853 * ofnode_read_addr_cells() - Get the number of address cells for a node
854 *
855 * This walks back up the tree to find the closest #address-cells property
856 * which controls the given node.
857 *
858 * @node: Node to check
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100859 * Return: number of address cells this node uses
Simon Glass9e512042017-05-18 20:08:58 -0600860 */
861int ofnode_read_addr_cells(ofnode node);
862
863/**
864 * ofnode_read_size_cells() - Get the number of size cells for a node
865 *
866 * This walks back up the tree to find the closest #size-cells property
867 * which controls the given node.
868 *
869 * @node: Node to check
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100870 * Return: number of size cells this node uses
Simon Glass9e512042017-05-18 20:08:58 -0600871 */
872int ofnode_read_size_cells(ofnode node);
873
874/**
Simon Glass878d68c2017-06-12 06:21:31 -0600875 * ofnode_read_simple_addr_cells() - Get the address cells property in a node
876 *
877 * This function matches fdt_address_cells().
878 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100879 * @node: Node to check
880 * Return: value of #address-cells property in this node, or 2 if none
Simon Glass878d68c2017-06-12 06:21:31 -0600881 */
882int ofnode_read_simple_addr_cells(ofnode node);
883
884/**
885 * ofnode_read_simple_size_cells() - Get the size cells property in a node
886 *
887 * This function matches fdt_size_cells().
888 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100889 * @node: Node to check
890 * Return: value of #size-cells property in this node, or 2 if none
Simon Glass878d68c2017-06-12 06:21:31 -0600891 */
892int ofnode_read_simple_size_cells(ofnode node);
893
894/**
Simon Glass9e512042017-05-18 20:08:58 -0600895 * ofnode_pre_reloc() - check if a node should be bound before relocation
896 *
897 * Device tree nodes can be marked as needing-to-be-bound in the loader stages
898 * via special device tree properties.
899 *
900 * Before relocation this function can be used to check if nodes are required
901 * in either SPL or TPL stages.
902 *
903 * After relocation and jumping into the real U-Boot binary it is possible to
904 * determine if a node was bound in one of SPL/TPL stages.
905 *
Patrick Delaunay54e12232019-05-21 19:19:13 +0200906 * There are 4 settings currently in use
907 * - u-boot,dm-pre-proper: U-Boot proper pre-relocation only
Simon Glass9e512042017-05-18 20:08:58 -0600908 * - u-boot,dm-pre-reloc: legacy and indicates any of TPL or SPL
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100909 * Existing platforms only use it to indicate nodes needed in
910 * SPL. Should probably be replaced by u-boot,dm-spl for new platforms.
Patrick Delaunay54e12232019-05-21 19:19:13 +0200911 * - u-boot,dm-spl: SPL and U-Boot pre-relocation
912 * - u-boot,dm-tpl: TPL and U-Boot pre-relocation
Simon Glass9e512042017-05-18 20:08:58 -0600913 *
914 * @node: node to check
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100915 * Return: true if node is needed in SPL/TL, false otherwise
Simon Glass9e512042017-05-18 20:08:58 -0600916 */
917bool ofnode_pre_reloc(ofnode node);
918
Simon Glassc98ad442018-06-11 13:07:12 -0600919/**
920 * ofnode_read_resource() - Read a resource from a node
921 *
922 * Read resource information from a node at the given index
923 *
924 * @node: Node to read from
925 * @index: Index of resource to read (0 = first)
926 * @res: Returns resource that was read, on success
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100927 * Return: 0 if OK, -ve on error
Simon Glassc98ad442018-06-11 13:07:12 -0600928 */
Simon Glassdcf98852017-07-25 08:29:55 -0600929int ofnode_read_resource(ofnode node, uint index, struct resource *res);
Simon Glassc98ad442018-06-11 13:07:12 -0600930
931/**
932 * ofnode_read_resource_byname() - Read a resource from a node by name
933 *
934 * Read resource information from a node matching the given name. This uses a
935 * 'reg-names' string list property with the names matching the associated
936 * 'reg' property list.
937 *
938 * @node: Node to read from
939 * @name: Name of resource to read
940 * @res: Returns resource that was read, on success
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100941 * Return: 0 if OK, -ve on error
Simon Glassc98ad442018-06-11 13:07:12 -0600942 */
Masahiro Yamada7b8b47b2017-08-26 01:12:30 +0900943int ofnode_read_resource_byname(ofnode node, const char *name,
944 struct resource *res);
Simon Glassdcf98852017-07-25 08:29:55 -0600945
Simon Glass3991f422017-08-05 15:45:54 -0600946/**
Simon Glassc60f6712018-06-11 13:07:13 -0600947 * ofnode_by_compatible() - Find the next compatible node
948 *
949 * Find the next node after @from that is compatible with @compat
950 *
951 * @from: ofnode to start from (use ofnode_null() to start at the beginning)
952 * @compat: Compatible string to match
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100953 * Return: ofnode found, or ofnode_null() if none
Simon Glassc60f6712018-06-11 13:07:13 -0600954 */
955ofnode ofnode_by_compatible(ofnode from, const char *compat);
956
957/**
Jens Wiklander61fba0f2018-08-20 11:09:58 +0200958 * ofnode_by_prop_value() - Find the next node with given property value
959 *
960 * Find the next node after @from that has a @propname with a value
961 * @propval and a length @proplen.
962 *
963 * @from: ofnode to start from (use ofnode_null() to start at the
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100964 * beginning)
965 * @propname: property name to check
966 * @propval: property value to search for
967 * @proplen: length of the value in propval
968 * Return: ofnode found, or ofnode_null() if none
Jens Wiklander61fba0f2018-08-20 11:09:58 +0200969 */
970ofnode ofnode_by_prop_value(ofnode from, const char *propname,
971 const void *propval, int proplen);
972
973/**
Simon Glass3991f422017-08-05 15:45:54 -0600974 * ofnode_for_each_subnode() - iterate over all subnodes of a parent
975 *
976 * @node: child node (ofnode, lvalue)
977 * @parent: parent node (ofnode)
978 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100979 * This is a wrapper around a for loop and is used like so::
Simon Glass3991f422017-08-05 15:45:54 -0600980 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100981 * ofnode node;
982 * ofnode_for_each_subnode(node, parent) {
983 * Use node
984 * ...
985 * }
Simon Glass3991f422017-08-05 15:45:54 -0600986 *
987 * Note that this is implemented as a macro and @node is used as
988 * iterator in the loop. The parent variable can be a constant or even a
989 * literal.
990 */
991#define ofnode_for_each_subnode(node, parent) \
992 for (node = ofnode_first_subnode(parent); \
993 ofnode_valid(node); \
994 node = ofnode_next_subnode(node))
995
Mario Six147c6072018-01-15 11:07:19 +0100996/**
Michael Walleb8ec9452021-10-15 15:15:17 +0200997 * ofnode_for_each_compatible_node() - iterate over all nodes with a given
998 * compatible string
999 *
1000 * @node: child node (ofnode, lvalue)
1001 * @compat: compatible string to match
1002 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001003 * This is a wrapper around a for loop and is used like so::
Michael Walleb8ec9452021-10-15 15:15:17 +02001004 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001005 * ofnode node;
1006 * ofnode_for_each_compatible_node(node, parent, compatible) {
1007 * Use node
1008 * ...
1009 * }
Michael Walleb8ec9452021-10-15 15:15:17 +02001010 *
1011 * Note that this is implemented as a macro and @node is used as
1012 * iterator in the loop.
1013 */
1014#define ofnode_for_each_compatible_node(node, compat) \
1015 for (node = ofnode_by_compatible(ofnode_null(), compat); \
1016 ofnode_valid(node); \
1017 node = ofnode_by_compatible(node, compat))
1018
1019/**
Chunfeng Yun89b84b82020-05-02 11:35:09 +02001020 * ofnode_get_child_count() - get the child count of a ofnode
1021 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001022 * @parent: valid node to get its child count
1023 * Return: the number of subnodes
Chunfeng Yun89b84b82020-05-02 11:35:09 +02001024 */
1025int ofnode_get_child_count(ofnode parent);
1026
1027/**
Fabien Dessenne641067f2019-05-31 15:11:30 +02001028 * ofnode_translate_address() - Translate a device-tree address
Mario Six147c6072018-01-15 11:07:19 +01001029 *
1030 * Translate an address from the device-tree into a CPU physical address. This
1031 * function walks up the tree and applies the various bus mappings along the
1032 * way.
1033 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001034 * @node: Device tree node giving the context in which to translate the address
Mario Six147c6072018-01-15 11:07:19 +01001035 * @in_addr: pointer to the address to translate
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001036 * Return: the translated address; OF_BAD_ADDR on error
Mario Six147c6072018-01-15 11:07:19 +01001037 */
1038u64 ofnode_translate_address(ofnode node, const fdt32_t *in_addr);
Masahiro Yamada5ccc2c22018-04-19 12:14:02 +09001039
1040/**
Fabien Dessenne641067f2019-05-31 15:11:30 +02001041 * ofnode_translate_dma_address() - Translate a device-tree DMA address
1042 *
1043 * Translate a DMA address from the device-tree into a CPU physical address.
1044 * This function walks up the tree and applies the various bus mappings along
1045 * the way.
1046 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001047 * @node: Device tree node giving the context in which to translate the
1048 * DMA address
Fabien Dessenne641067f2019-05-31 15:11:30 +02001049 * @in_addr: pointer to the DMA address to translate
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001050 * Return: the translated DMA address; OF_BAD_ADDR on error
Fabien Dessenne641067f2019-05-31 15:11:30 +02001051 */
1052u64 ofnode_translate_dma_address(ofnode node, const fdt32_t *in_addr);
1053
1054/**
Nicolas Saenz Julienne51bdb502021-01-12 13:55:22 +01001055 * ofnode_get_dma_range() - get dma-ranges for a specific DT node
1056 *
1057 * Get DMA ranges for a specifc node, this is useful to perform bus->cpu and
1058 * cpu->bus address translations
1059 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001060 * @node: Device tree node
1061 * @cpu: Pointer to variable storing the range's cpu address
1062 * @bus: Pointer to variable storing the range's bus address
1063 * @size: Pointer to variable storing the range's size
1064 * Return: translated DMA address or OF_BAD_ADDR on error
Nicolas Saenz Julienne51bdb502021-01-12 13:55:22 +01001065 */
1066int ofnode_get_dma_range(ofnode node, phys_addr_t *cpu, dma_addr_t *bus,
1067 u64 *size);
1068
1069/**
Masahiro Yamada5ccc2c22018-04-19 12:14:02 +09001070 * ofnode_device_is_compatible() - check if the node is compatible with compat
1071 *
1072 * This allows to check whether the node is comaptible with the compat.
1073 *
1074 * @node: Device tree node for which compatible needs to be verified.
1075 * @compat: Compatible string which needs to verified in the given node.
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001076 * Return: true if OK, false if the compatible is not found
Masahiro Yamada5ccc2c22018-04-19 12:14:02 +09001077 */
1078int ofnode_device_is_compatible(ofnode node, const char *compat);
Mario Sixe369e582018-06-26 08:46:48 +02001079
1080/**
1081 * ofnode_write_prop() - Set a property of a ofnode
1082 *
1083 * Note that the value passed to the function is *not* allocated by the
Simon Glass72b338a2022-07-30 15:52:07 -06001084 * function itself, but must be allocated by the caller if necessary. However
1085 * it does allocate memory for the property struct and name.
Mario Sixe369e582018-06-26 08:46:48 +02001086 *
1087 * @node: The node for whose property should be set
1088 * @propname: The name of the property to set
1089 * @len: The length of the new value of the property
1090 * @value: The new value of the property (must be valid prior to calling
1091 * the function)
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001092 * Return: 0 if successful, -ve on error
Mario Sixe369e582018-06-26 08:46:48 +02001093 */
1094int ofnode_write_prop(ofnode node, const char *propname, int len,
1095 const void *value);
1096
1097/**
1098 * ofnode_write_string() - Set a string property of a ofnode
1099 *
1100 * Note that the value passed to the function is *not* allocated by the
1101 * function itself, but must be allocated by the caller if necessary.
1102 *
1103 * @node: The node for whose string property should be set
1104 * @propname: The name of the string property to set
1105 * @value: The new value of the string property (must be valid prior to
1106 * calling the function)
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001107 * Return: 0 if successful, -ve on error
Mario Sixe369e582018-06-26 08:46:48 +02001108 */
1109int ofnode_write_string(ofnode node, const char *propname, const char *value);
1110
1111/**
1112 * ofnode_set_enabled() - Enable or disable a device tree node given by its
1113 * ofnode
1114 *
1115 * This function effectively sets the node's "status" property to either "okay"
1116 * or "disable", hence making it available for driver model initialization or
1117 * not.
1118 *
1119 * @node: The node to enable
1120 * @value: Flag that tells the function to either disable or enable the
1121 * node
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001122 * Return: 0 if successful, -ve on error
Mario Sixe369e582018-06-26 08:46:48 +02001123 */
1124int ofnode_set_enabled(ofnode node, bool value);
1125
Simon Glass7de8bd02021-08-07 07:24:01 -06001126/**
Sean Anderson8b52f232022-03-28 18:14:37 -04001127 * ofnode_get_phy_node() - Get PHY node for a MAC (if not fixed-link)
1128 *
1129 * This function parses PHY handle from the Ethernet controller's ofnode
1130 * (trying all possible PHY handle property names), and returns the PHY ofnode.
1131 *
1132 * Before this is used, ofnode_phy_is_fixed_link() should be checked first, and
1133 * if the result to that is true, this function should not be called.
1134 *
1135 * @eth_node: ofnode belonging to the Ethernet controller
1136 * Return: ofnode of the PHY, if it exists, otherwise an invalid ofnode
1137 */
1138ofnode ofnode_get_phy_node(ofnode eth_node);
1139
1140/**
1141 * ofnode_read_phy_mode() - Read PHY connection type from a MAC node
1142 *
1143 * This function parses the "phy-mode" / "phy-connection-type" property and
1144 * returns the corresponding PHY interface type.
1145 *
1146 * @mac_node: ofnode containing the property
1147 * Return: one of PHY_INTERFACE_MODE_* constants, PHY_INTERFACE_MODE_NA on
1148 * error
1149 */
1150phy_interface_t ofnode_read_phy_mode(ofnode mac_node);
1151
1152#if CONFIG_IS_ENABLED(DM)
1153/**
Simon Glass7de8bd02021-08-07 07:24:01 -06001154 * ofnode_conf_read_bool() - Read a boolean value from the U-Boot config
1155 *
1156 * This reads a property from the /config node of the devicetree.
1157 *
1158 * See doc/config.txt for bindings
1159 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001160 * @prop_name: property name to look up
1161 * Return: true, if it exists, false if not
Simon Glass7de8bd02021-08-07 07:24:01 -06001162 */
1163bool ofnode_conf_read_bool(const char *prop_name);
1164
1165/**
1166 * ofnode_conf_read_int() - Read an integer value from the U-Boot config
1167 *
1168 * This reads a property from the /config node of the devicetree.
1169 *
1170 * See doc/config.txt for bindings
1171 *
1172 * @prop_name: property name to look up
1173 * @default_val: default value to return if the property is not found
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001174 * Return: integer value, if found, or @default_val if not
Simon Glass7de8bd02021-08-07 07:24:01 -06001175 */
1176int ofnode_conf_read_int(const char *prop_name, int default_val);
1177
1178/**
1179 * ofnode_conf_read_str() - Read a string value from the U-Boot config
1180 *
1181 * This reads a property from the /config node of the devicetree.
1182 *
1183 * See doc/config.txt for bindings
1184 *
1185 * @prop_name: property name to look up
Patrick Delaunaybe74f712022-01-12 10:53:49 +01001186 * Return: string value, if found, or NULL if not
Simon Glass7de8bd02021-08-07 07:24:01 -06001187 */
1188const char *ofnode_conf_read_str(const char *prop_name);
1189
Sean Anderson8b52f232022-03-28 18:14:37 -04001190#else /* CONFIG_DM */
1191static inline bool ofnode_conf_read_bool(const char *prop_name)
1192{
1193 return false;
1194}
Marek Behúnf3dd2132022-04-07 00:32:57 +02001195
Sean Anderson8b52f232022-03-28 18:14:37 -04001196static inline int ofnode_conf_read_int(const char *prop_name, int default_val)
1197{
1198 return default_val;
1199}
1200
1201static inline const char *ofnode_conf_read_str(const char *prop_name)
1202{
1203 return NULL;
1204}
1205#endif /* CONFIG_DM */
Marek Behún123ca112022-04-07 00:33:01 +02001206
Simon Glass4984de22017-05-17 17:18:10 -06001207#endif