]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
4984de2b SG |
2 | /* |
3 | * Copyright (c) 2017 Google, Inc | |
4 | * Written by Simon Glass <[email protected]> | |
4984de2b SG |
5 | */ |
6 | ||
7 | #ifndef _DM_OFNODE_H | |
8 | #define _DM_OFNODE_H | |
9 | ||
9e512045 SG |
10 | /* TODO([email protected]): Drop fdtdec.h include */ |
11 | #include <fdtdec.h> | |
12 | #include <dm/of.h> | |
ec1add1e | 13 | #include <dm/of_access.h> |
45dbe75d | 14 | #include <log.h> |
9e512045 SG |
15 | |
16 | /* Enable checks to protect against invalid calls */ | |
17 | #undef OF_CHECKS | |
18 | ||
dcf98852 SG |
19 | struct resource; |
20 | ||
4984de2b | 21 | /** |
be74f71a | 22 | * typedef union ofnode_union ofnode - reference to a device tree node |
4984de2b SG |
23 | * |
24 | * This union can hold either a straightforward pointer to a struct device_node | |
25 | * in the live device tree, or an offset within the flat device tree. In the | |
26 | * latter case, the pointer value is just the integer offset within the flat DT. | |
27 | * | |
28 | * Thus we can reference nodes in both the live tree (once available) and the | |
29 | * flat tree (until then). Functions are available to translate between an | |
be74f71a | 30 | * ofnode and either an offset or a `struct device_node *`. |
4984de2b SG |
31 | * |
32 | * The reference can also hold a null offset, in which case the pointer value | |
9e512045 | 33 | * here is NULL. This corresponds to a struct device_node * value of |
4984de2b SG |
34 | * NULL, or an offset of -1. |
35 | * | |
36 | * There is no ambiguity as to whether ofnode holds an offset or a node | |
37 | * pointer: when the live tree is active it holds a node pointer, otherwise it | |
38 | * holds an offset. The value itself does not need to be unique and in theory | |
39 | * the same value could point to a valid device node or a valid offset. We | |
40 | * could arrange for a unique value to be used (e.g. by making the pointer | |
41 | * point to an offset within the flat device tree in the case of an offset) but | |
42 | * this increases code size slightly due to the subtraction. Since it offers no | |
43 | * real benefit, the approach described here seems best. | |
44 | * | |
45 | * For now these points use constant types, since we don't allow writing | |
46 | * the DT. | |
47 | * | |
48 | * @np: Pointer to device node, used for live tree | |
afc1a78a | 49 | * @of_offset: Pointer into flat device tree, used for flat tree. Note that this |
4984de2b SG |
50 | * is not a really a pointer to a node: it is an offset value. See above. |
51 | */ | |
52 | typedef union ofnode_union { | |
b9390ce5 | 53 | const struct device_node *np; |
4984de2b SG |
54 | long of_offset; |
55 | } ofnode; | |
56 | ||
9e512045 SG |
57 | struct ofnode_phandle_args { |
58 | ofnode node; | |
59 | int args_count; | |
60 | uint32_t args[OF_MAX_PHANDLE_ARGS]; | |
61 | }; | |
62 | ||
ce891fca | 63 | /** |
be74f71a | 64 | * struct ofprop - reference to a property of a device tree node |
ce891fca PD |
65 | * |
66 | * This struct hold the reference on one property of one node, | |
67 | * using struct ofnode and an offset within the flat device tree or either | |
68 | * a pointer to a struct property in the live device tree. | |
69 | * | |
70 | * Thus we can reference arguments in both the live tree and the flat tree. | |
71 | * | |
72 | * The property reference can also hold a null reference. This corresponds to | |
73 | * a struct property NULL pointer or an offset of -1. | |
74 | * | |
75 | * @node: Pointer to device node | |
76 | * @offset: Pointer into flat device tree, used for flat tree. | |
77 | * @prop: Pointer to property, used for live treee. | |
78 | */ | |
79 | ||
80 | struct ofprop { | |
81 | ofnode node; | |
82 | union { | |
83 | int offset; | |
84 | const struct property *prop; | |
85 | }; | |
86 | }; | |
87 | ||
9e512045 | 88 | /** |
45dbe75d | 89 | * ofnode_to_np() - convert an ofnode to a live DT node pointer |
9e512045 SG |
90 | * |
91 | * This cannot be called if the reference contains an offset. | |
92 | * | |
93 | * @node: Reference containing struct device_node * (possibly invalid) | |
be74f71a | 94 | * Return: pointer to device node (can be NULL) |
9e512045 SG |
95 | */ |
96 | static inline const struct device_node *ofnode_to_np(ofnode node) | |
97 | { | |
98 | #ifdef OF_CHECKS | |
99 | if (!of_live_active()) | |
100 | return NULL; | |
101 | #endif | |
102 | return node.np; | |
103 | } | |
104 | ||
4984de2b SG |
105 | /** |
106 | * ofnode_to_offset() - convert an ofnode to a flat DT offset | |
107 | * | |
108 | * This cannot be called if the reference contains a node pointer. | |
109 | * | |
110 | * @node: Reference containing offset (possibly invalid) | |
be74f71a | 111 | * Return: DT offset (can be -1) |
4984de2b SG |
112 | */ |
113 | static inline int ofnode_to_offset(ofnode node) | |
114 | { | |
9e512045 SG |
115 | #ifdef OF_CHECKS |
116 | if (of_live_active()) | |
117 | return -1; | |
118 | #endif | |
4984de2b SG |
119 | return node.of_offset; |
120 | } | |
121 | ||
122 | /** | |
123 | * ofnode_valid() - check if an ofnode is valid | |
124 | * | |
be74f71a PD |
125 | * @node: Reference containing offset (possibly invalid) |
126 | * Return: true if the reference contains a valid ofnode, false if it is NULL | |
4984de2b SG |
127 | */ |
128 | static inline bool ofnode_valid(ofnode node) | |
129 | { | |
9e512045 SG |
130 | if (of_live_active()) |
131 | return node.np != NULL; | |
132 | else | |
6d9949fe | 133 | return node.of_offset >= 0; |
4984de2b SG |
134 | } |
135 | ||
136 | /** | |
137 | * offset_to_ofnode() - convert a DT offset to an ofnode | |
138 | * | |
139 | * @of_offset: DT offset (either valid, or -1) | |
be74f71a | 140 | * Return: reference to the associated DT offset |
4984de2b SG |
141 | */ |
142 | static inline ofnode offset_to_ofnode(int of_offset) | |
143 | { | |
144 | ofnode node; | |
145 | ||
9e512045 SG |
146 | if (of_live_active()) |
147 | node.np = NULL; | |
148 | else | |
b14c5339 | 149 | node.of_offset = of_offset >= 0 ? of_offset : -1; |
9e512045 SG |
150 | |
151 | return node; | |
152 | } | |
153 | ||
154 | /** | |
155 | * np_to_ofnode() - convert a node pointer to an ofnode | |
156 | * | |
157 | * @np: Live node pointer (can be NULL) | |
be74f71a | 158 | * Return: reference to the associated node pointer |
9e512045 SG |
159 | */ |
160 | static inline ofnode np_to_ofnode(const struct device_node *np) | |
161 | { | |
162 | ofnode node; | |
163 | ||
164 | node.np = np; | |
4984de2b SG |
165 | |
166 | return node; | |
167 | } | |
168 | ||
9e512045 SG |
169 | /** |
170 | * ofnode_is_np() - check if a reference is a node pointer | |
171 | * | |
172 | * This function associated that if there is a valid live tree then all | |
173 | * references will use it. This is because using the flat DT when the live tree | |
174 | * is valid is not permitted. | |
175 | * | |
176 | * @node: reference to check (possibly invalid) | |
be74f71a | 177 | * Return: true if the reference is a live node pointer, false if it is a DT |
9e512045 SG |
178 | * offset |
179 | */ | |
180 | static inline bool ofnode_is_np(ofnode node) | |
181 | { | |
182 | #ifdef OF_CHECKS | |
183 | /* | |
184 | * Check our assumption that flat tree offsets are not used when a | |
185 | * live tree is in use. | |
186 | */ | |
187 | assert(!ofnode_valid(node) || | |
45dbe75d SR |
188 | (of_live_active() ? ofnode_to_np(node) |
189 | : ofnode_to_np(node))); | |
9e512045 SG |
190 | #endif |
191 | return of_live_active() && ofnode_valid(node); | |
192 | } | |
193 | ||
4984de2b SG |
194 | /** |
195 | * ofnode_equal() - check if two references are equal | |
196 | * | |
be74f71a PD |
197 | * @ref1: first reference to check (possibly invalid) |
198 | * @ref2: second reference to check (possibly invalid) | |
199 | * Return: true if equal, else false | |
4984de2b SG |
200 | */ |
201 | static inline bool ofnode_equal(ofnode ref1, ofnode ref2) | |
202 | { | |
203 | /* We only need to compare the contents */ | |
204 | return ref1.of_offset == ref2.of_offset; | |
205 | } | |
206 | ||
9e512045 SG |
207 | /** |
208 | * ofnode_null() - Obtain a null ofnode | |
209 | * | |
210 | * This returns an ofnode which points to no node. It works both with the flat | |
211 | * tree and livetree. | |
212 | */ | |
213 | static inline ofnode ofnode_null(void) | |
214 | { | |
215 | ofnode node; | |
216 | ||
217 | if (of_live_active()) | |
218 | node.np = NULL; | |
219 | else | |
220 | node.of_offset = -1; | |
221 | ||
222 | return node; | |
223 | } | |
224 | ||
d0c20ce6 SG |
225 | static inline ofnode ofnode_root(void) |
226 | { | |
227 | ofnode node; | |
228 | ||
229 | if (of_live_active()) | |
230 | node.np = gd_of_root(); | |
231 | else | |
232 | node.of_offset = 0; | |
233 | ||
234 | return node; | |
235 | } | |
236 | ||
77cbaf88 KVA |
237 | /** |
238 | * ofnode_name_eq() - Check if the node name is equivalent to a given name | |
239 | * ignoring the unit address | |
240 | * | |
241 | * @node: valid node reference that has to be compared | |
242 | * @name: name that has to be compared with the node name | |
be74f71a | 243 | * Return: true if matches, false if it doesn't match |
77cbaf88 KVA |
244 | */ |
245 | bool ofnode_name_eq(ofnode node, const char *name); | |
246 | ||
9e512045 SG |
247 | /** |
248 | * ofnode_read_u32() - Read a 32-bit integer from a property | |
249 | * | |
be74f71a | 250 | * @node: valid node reference to read property from |
9e512045 SG |
251 | * @propname: name of the property to read from |
252 | * @outp: place to put value (if found) | |
be74f71a | 253 | * Return: 0 if OK, -ve on error |
9e512045 SG |
254 | */ |
255 | int ofnode_read_u32(ofnode node, const char *propname, u32 *outp); | |
256 | ||
4bb7075c DB |
257 | /** |
258 | * ofnode_read_u32_index() - Read a 32-bit integer from a multi-value property | |
259 | * | |
be74f71a | 260 | * @node: valid node reference to read property from |
4bb7075c DB |
261 | * @propname: name of the property to read from |
262 | * @index: index of the integer to return | |
263 | * @outp: place to put value (if found) | |
be74f71a | 264 | * Return: 0 if OK, -ve on error |
4bb7075c DB |
265 | */ |
266 | int ofnode_read_u32_index(ofnode node, const char *propname, int index, | |
267 | u32 *outp); | |
268 | ||
9e512045 SG |
269 | /** |
270 | * ofnode_read_s32() - Read a 32-bit integer from a property | |
271 | * | |
be74f71a | 272 | * @node: valid node reference to read property from |
9e512045 SG |
273 | * @propname: name of the property to read from |
274 | * @outp: place to put value (if found) | |
be74f71a | 275 | * Return: 0 if OK, -ve on error |
9e512045 SG |
276 | */ |
277 | static inline int ofnode_read_s32(ofnode node, const char *propname, | |
be74f71a | 278 | s32 *outp) |
9e512045 | 279 | { |
be74f71a | 280 | return ofnode_read_u32(node, propname, (u32 *)outp); |
9e512045 SG |
281 | } |
282 | ||
283 | /** | |
284 | * ofnode_read_u32_default() - Read a 32-bit integer from a property | |
285 | * | |
be74f71a | 286 | * @node: valid node reference to read property from |
9e512045 SG |
287 | * @propname: name of the property to read from |
288 | * @def: default value to return if the property has no value | |
be74f71a | 289 | * Return: property value, or @def if not found |
9e512045 | 290 | */ |
be74f71a | 291 | u32 ofnode_read_u32_default(ofnode node, const char *propname, u32 def); |
9e512045 | 292 | |
4bb7075c DB |
293 | /** |
294 | * ofnode_read_u32_index_default() - Read a 32-bit integer from a multi-value | |
295 | * property | |
296 | * | |
be74f71a | 297 | * @node: valid node reference to read property from |
4bb7075c DB |
298 | * @propname: name of the property to read from |
299 | * @index: index of the integer to return | |
300 | * @def: default value to return if the property has no value | |
be74f71a | 301 | * Return: property value, or @def if not found |
4bb7075c | 302 | */ |
be74f71a | 303 | u32 ofnode_read_u32_index_default(ofnode node, const char *propname, int index, |
4bb7075c DB |
304 | u32 def); |
305 | ||
9e512045 SG |
306 | /** |
307 | * ofnode_read_s32_default() - Read a 32-bit integer from a property | |
308 | * | |
be74f71a | 309 | * @node: valid node reference to read property from |
9e512045 SG |
310 | * @propname: name of the property to read from |
311 | * @def: default value to return if the property has no value | |
be74f71a | 312 | * Return: property value, or @def if not found |
9e512045 SG |
313 | */ |
314 | int ofnode_read_s32_default(ofnode node, const char *propname, s32 def); | |
315 | ||
afb30129 LA |
316 | /** |
317 | * ofnode_read_u64() - Read a 64-bit integer from a property | |
318 | * | |
319 | * @node: valid node reference to read property from | |
320 | * @propname: name of the property to read from | |
321 | * @outp: place to put value (if found) | |
be74f71a | 322 | * Return: 0 if OK, -ve on error |
afb30129 LA |
323 | */ |
324 | int ofnode_read_u64(ofnode node, const char *propname, u64 *outp); | |
325 | ||
7e5196c4 SG |
326 | /** |
327 | * ofnode_read_u64_default() - Read a 64-bit integer from a property | |
328 | * | |
be74f71a | 329 | * @node: valid node reference to read property from |
7e5196c4 SG |
330 | * @propname: name of the property to read from |
331 | * @def: default value to return if the property has no value | |
be74f71a | 332 | * Return: property value, or @def if not found |
7e5196c4 | 333 | */ |
3f3d7715 | 334 | u64 ofnode_read_u64_default(ofnode node, const char *propname, u64 def); |
7e5196c4 | 335 | |
a8167d8e SG |
336 | /** |
337 | * ofnode_read_prop() - Read a property from a node | |
338 | * | |
339 | * @node: valid node reference to read property from | |
340 | * @propname: name of the property to read | |
341 | * @sizep: if non-NULL, returns the size of the property, or an error code | |
be74f71a PD |
342 | * if not found |
343 | * Return: property value, or NULL if there is no such property | |
a8167d8e SG |
344 | */ |
345 | const void *ofnode_read_prop(ofnode node, const char *propname, int *sizep); | |
346 | ||
9e512045 SG |
347 | /** |
348 | * ofnode_read_string() - Read a string from a property | |
349 | * | |
a8167d8e | 350 | * @node: valid node reference to read property from |
9e512045 | 351 | * @propname: name of the property to read |
be74f71a | 352 | * Return: string from property value, or NULL if there is no such property |
9e512045 SG |
353 | */ |
354 | const char *ofnode_read_string(ofnode node, const char *propname); | |
355 | ||
356 | /** | |
bed77496 | 357 | * ofnode_read_u32_array() - Find and read an array of 32 bit integers |
9e512045 SG |
358 | * |
359 | * @node: valid node reference to read property from | |
360 | * @propname: name of the property to read | |
361 | * @out_values: pointer to return value, modified only if return value is 0 | |
362 | * @sz: number of array elements to read | |
be74f71a | 363 | * Return: 0 if OK, -ve on error |
9e512045 SG |
364 | * |
365 | * Search for a property in a device node and read 32-bit value(s) from | |
366 | * it. Returns 0 on success, -EINVAL if the property does not exist, | |
367 | * -ENODATA if property does not have a value, and -EOVERFLOW if the | |
368 | * property data isn't large enough. | |
369 | * | |
370 | * The out_values is modified only if a valid u32 value can be decoded. | |
371 | */ | |
372 | int ofnode_read_u32_array(ofnode node, const char *propname, | |
373 | u32 *out_values, size_t sz); | |
374 | ||
375 | /** | |
376 | * ofnode_read_bool() - read a boolean value from a property | |
377 | * | |
378 | * @node: valid node reference to read property from | |
379 | * @propname: name of property to read | |
be74f71a | 380 | * Return: true if property is present (meaning true), false if not present |
9e512045 SG |
381 | */ |
382 | bool ofnode_read_bool(ofnode node, const char *propname); | |
383 | ||
384 | /** | |
385 | * ofnode_find_subnode() - find a named subnode of a parent node | |
386 | * | |
387 | * @node: valid reference to parent node | |
388 | * @subnode_name: name of subnode to find | |
be74f71a | 389 | * Return: reference to subnode (which can be invalid if there is no such |
9e512045 SG |
390 | * subnode) |
391 | */ | |
392 | ofnode ofnode_find_subnode(ofnode node, const char *subnode_name); | |
393 | ||
ec1add1e | 394 | #if CONFIG_IS_ENABLED(DM_INLINE_OFNODE) |
401d1c4f SG |
395 | #include <asm/global_data.h> |
396 | ||
ec1add1e SG |
397 | static inline bool ofnode_is_enabled(ofnode node) |
398 | { | |
399 | if (ofnode_is_np(node)) { | |
400 | return of_device_is_available(ofnode_to_np(node)); | |
401 | } else { | |
402 | return fdtdec_get_is_enabled(gd->fdt_blob, | |
403 | ofnode_to_offset(node)); | |
404 | } | |
405 | } | |
406 | ||
407 | static inline ofnode ofnode_first_subnode(ofnode node) | |
408 | { | |
409 | assert(ofnode_valid(node)); | |
410 | if (ofnode_is_np(node)) | |
411 | return np_to_ofnode(node.np->child); | |
412 | ||
413 | return offset_to_ofnode( | |
414 | fdt_first_subnode(gd->fdt_blob, ofnode_to_offset(node))); | |
415 | } | |
416 | ||
417 | static inline ofnode ofnode_next_subnode(ofnode node) | |
418 | { | |
419 | assert(ofnode_valid(node)); | |
420 | if (ofnode_is_np(node)) | |
421 | return np_to_ofnode(node.np->sibling); | |
422 | ||
423 | return offset_to_ofnode( | |
424 | fdt_next_subnode(gd->fdt_blob, ofnode_to_offset(node))); | |
425 | } | |
426 | #else | |
427 | /** | |
428 | * ofnode_is_enabled() - Checks whether a node is enabled. | |
429 | * This looks for a 'status' property. If this exists, then returns true if | |
430 | * the status is 'okay' and false otherwise. If there is no status property, | |
431 | * it returns true on the assumption that anything mentioned should be enabled | |
432 | * by default. | |
433 | * | |
434 | * @node: node to examine | |
be74f71a | 435 | * Return: false (not enabled) or true (enabled) |
ec1add1e SG |
436 | */ |
437 | bool ofnode_is_enabled(ofnode node); | |
438 | ||
9e512045 SG |
439 | /** |
440 | * ofnode_first_subnode() - find the first subnode of a parent node | |
441 | * | |
442 | * @node: valid reference to a valid parent node | |
be74f71a | 443 | * Return: reference to the first subnode (which can be invalid if the parent |
9e512045 SG |
444 | * node has no subnodes) |
445 | */ | |
446 | ofnode ofnode_first_subnode(ofnode node); | |
447 | ||
448 | /** | |
449 | * ofnode_next_subnode() - find the next sibling of a subnode | |
450 | * | |
451 | * @node: valid reference to previous node (sibling) | |
be74f71a | 452 | * Return: reference to the next subnode (which can be invalid if the node |
9e512045 SG |
453 | * has no more siblings) |
454 | */ | |
455 | ofnode ofnode_next_subnode(ofnode node); | |
ec1add1e | 456 | #endif /* DM_INLINE_OFNODE */ |
9e512045 | 457 | |
e2d5997f PT |
458 | /** |
459 | * ofnode_get_parent() - get the ofnode's parent (enclosing ofnode) | |
460 | * | |
461 | * @node: valid node to look up | |
be74f71a | 462 | * Return: ofnode reference of the parent node |
e2d5997f PT |
463 | */ |
464 | ofnode ofnode_get_parent(ofnode node); | |
465 | ||
9e512045 SG |
466 | /** |
467 | * ofnode_get_name() - get the name of a node | |
468 | * | |
469 | * @node: valid node to look up | |
be74f71a | 470 | * Return: name of node |
9e512045 SG |
471 | */ |
472 | const char *ofnode_get_name(ofnode node); | |
473 | ||
0e116bea MB |
474 | /** |
475 | * ofnode_get_path() - get the full path of a node | |
476 | * | |
477 | * @node: valid node to look up | |
478 | * @buf: buffer to write the node path into | |
479 | * @buflen: buffer size | |
be74f71a | 480 | * Return: 0 if OK, -ve on error |
0e116bea MB |
481 | */ |
482 | int ofnode_get_path(ofnode node, char *buf, int buflen); | |
483 | ||
b4f20767 KY |
484 | /** |
485 | * ofnode_get_by_phandle() - get ofnode from phandle | |
486 | * | |
487 | * @phandle: phandle to look up | |
be74f71a | 488 | * Return: ofnode reference to the phandle |
b4f20767 KY |
489 | */ |
490 | ofnode ofnode_get_by_phandle(uint phandle); | |
491 | ||
9e512045 SG |
492 | /** |
493 | * ofnode_read_size() - read the size of a property | |
494 | * | |
495 | * @node: node to check | |
496 | * @propname: property to check | |
be74f71a | 497 | * Return: size of property if present, or -EINVAL if not |
9e512045 SG |
498 | */ |
499 | int ofnode_read_size(ofnode node, const char *propname); | |
500 | ||
e679d03b K |
501 | /** |
502 | * ofnode_get_addr_size_index() - get an address/size from a node | |
503 | * based on index | |
504 | * | |
505 | * This reads the register address/size from a node based on index | |
506 | * | |
507 | * @node: node to read from | |
508 | * @index: Index of address to read (0 for first) | |
509 | * @size: Pointer to size of the address | |
be74f71a | 510 | * Return: address, or FDT_ADDR_T_NONE if not present or invalid |
e679d03b K |
511 | */ |
512 | phys_addr_t ofnode_get_addr_size_index(ofnode node, int index, | |
513 | fdt_size_t *size); | |
514 | ||
31a7b719 MB |
515 | /** |
516 | * ofnode_get_addr_size_index_notrans() - get an address/size from a node | |
517 | * based on index, without address | |
518 | * translation | |
519 | * | |
520 | * This reads the register address/size from a node based on index. | |
521 | * The resulting address is not translated. Useful for example for on-disk | |
522 | * addresses. | |
523 | * | |
524 | * @node: node to read from | |
525 | * @index: Index of address to read (0 for first) | |
526 | * @size: Pointer to size of the address | |
be74f71a | 527 | * Return: address, or FDT_ADDR_T_NONE if not present or invalid |
31a7b719 MB |
528 | */ |
529 | phys_addr_t ofnode_get_addr_size_index_notrans(ofnode node, int index, | |
530 | fdt_size_t *size); | |
531 | ||
bed77496 SG |
532 | /** |
533 | * ofnode_get_addr_index() - get an address from a node | |
534 | * | |
535 | * This reads the register address from a node | |
536 | * | |
537 | * @node: node to read from | |
538 | * @index: Index of address to read (0 for first) | |
be74f71a | 539 | * Return: address, or FDT_ADDR_T_NONE if not present or invalid |
bed77496 SG |
540 | */ |
541 | phys_addr_t ofnode_get_addr_index(ofnode node, int index); | |
542 | ||
543 | /** | |
544 | * ofnode_get_addr() - get an address from a node | |
545 | * | |
546 | * This reads the register address from a node | |
547 | * | |
548 | * @node: node to read from | |
be74f71a | 549 | * Return: address, or FDT_ADDR_T_NONE if not present or invalid |
bed77496 SG |
550 | */ |
551 | phys_addr_t ofnode_get_addr(ofnode node); | |
552 | ||
aa351a14 CG |
553 | /** |
554 | * ofnode_get_size() - get size from a node | |
555 | * | |
556 | * This reads the register size from a node | |
557 | * | |
558 | * @node: node to read from | |
be74f71a | 559 | * Return: size of the address, or FDT_SIZE_T_NONE if not present or invalid |
aa351a14 CG |
560 | */ |
561 | fdt_size_t ofnode_get_size(ofnode node); | |
562 | ||
9e512045 SG |
563 | /** |
564 | * ofnode_stringlist_search() - find a string in a string list and return index | |
565 | * | |
566 | * Note that it is possible for this function to succeed on property values | |
567 | * that are not NUL-terminated. That's because the function will stop after | |
568 | * finding the first occurrence of @string. This can for example happen with | |
569 | * small-valued cell properties, such as #address-cells, when searching for | |
570 | * the empty string. | |
571 | * | |
572 | * @node: node to check | |
573 | * @propname: name of the property containing the string list | |
574 | * @string: string to look up in the string list | |
575 | * | |
be74f71a | 576 | * Return: |
9e512045 SG |
577 | * the index of the string in the list of strings |
578 | * -ENODATA if the property is not found | |
579 | * -EINVAL on some other error | |
580 | */ | |
581 | int ofnode_stringlist_search(ofnode node, const char *propname, | |
582 | const char *string); | |
583 | ||
584 | /** | |
8c293d6a | 585 | * ofnode_read_string_index() - obtain an indexed string from a string list |
9e512045 SG |
586 | * |
587 | * Note that this will successfully extract strings from properties with | |
588 | * non-NUL-terminated values. For example on small-valued cell properties | |
589 | * this function will return the empty string. | |
590 | * | |
591 | * If non-NULL, the length of the string (on success) or a negative error-code | |
592 | * (on failure) will be stored in the integer pointer to by lenp. | |
593 | * | |
594 | * @node: node to check | |
595 | * @propname: name of the property containing the string list | |
32c6a8e1 | 596 | * @index: index of the string to return (cannot be negative) |
be74f71a | 597 | * @outp: return location for the string |
9e512045 | 598 | * |
be74f71a | 599 | * Return: |
32c6a8e1 | 600 | * 0 if found or -ve error value if not found |
9e512045 SG |
601 | */ |
602 | int ofnode_read_string_index(ofnode node, const char *propname, int index, | |
603 | const char **outp); | |
604 | ||
8c293d6a SG |
605 | /** |
606 | * ofnode_read_string_count() - find the number of strings in a string list | |
607 | * | |
608 | * @node: node to check | |
be74f71a PD |
609 | * @property: name of the property containing the string list |
610 | * Return: | |
8c293d6a SG |
611 | * number of strings in the list, or -ve error value if not found |
612 | */ | |
613 | int ofnode_read_string_count(ofnode node, const char *property); | |
614 | ||
075bfc95 SG |
615 | /** |
616 | * ofnode_read_string_list() - read a list of strings | |
617 | * | |
618 | * This produces a list of string pointers with each one pointing to a string | |
619 | * in the string list. If the property does not exist, it returns {NULL}. | |
620 | * | |
621 | * The data is allocated and the caller is reponsible for freeing the return | |
622 | * value (the list of string pointers). The strings themselves may not be | |
623 | * changed as they point directly into the devicetree property. | |
624 | * | |
625 | * @node: node to check | |
be74f71a | 626 | * @property: name of the property containing the string list |
075bfc95 SG |
627 | * @listp: returns an allocated, NULL-terminated list of strings if the return |
628 | * value is > 0, else is set to NULL | |
be74f71a PD |
629 | * Return: |
630 | * number of strings in list, 0 if none, -ENOMEM if out of memory, | |
631 | * -EINVAL if no such property, -EENODATA if property is empty | |
075bfc95 SG |
632 | */ |
633 | int ofnode_read_string_list(ofnode node, const char *property, | |
634 | const char ***listp); | |
635 | ||
9e512045 SG |
636 | /** |
637 | * ofnode_parse_phandle_with_args() - Find a node pointed by phandle in a list | |
638 | * | |
639 | * This function is useful to parse lists of phandles and their arguments. | |
640 | * Returns 0 on success and fills out_args, on error returns appropriate | |
641 | * errno value. | |
642 | * | |
643 | * Caller is responsible to call of_node_put() on the returned out_args->np | |
644 | * pointer. | |
645 | * | |
646 | * Example: | |
647 | * | |
be74f71a | 648 | * .. code-block:: |
9e512045 | 649 | * |
be74f71a PD |
650 | * phandle1: node1 { |
651 | * #list-cells = <2>; | |
652 | * }; | |
653 | * phandle2: node2 { | |
654 | * #list-cells = <1>; | |
655 | * }; | |
656 | * node3 { | |
657 | * list = <&phandle1 1 2 &phandle2 3>; | |
658 | * }; | |
9e512045 SG |
659 | * |
660 | * To get a device_node of the `node2' node you may call this: | |
661 | * ofnode_parse_phandle_with_args(node3, "list", "#list-cells", 0, 1, &args); | |
662 | * | |
663 | * @node: device tree node containing a list | |
664 | * @list_name: property name that contains a list | |
665 | * @cells_name: property name that specifies phandles' arguments count | |
be74f71a | 666 | * @cell_count: Cell count to use if @cells_name is NULL |
9e512045 SG |
667 | * @index: index of a phandle to parse out |
668 | * @out_args: optional pointer to output arguments structure (will be filled) | |
be74f71a PD |
669 | * Return: |
670 | * 0 on success (with @out_args filled out if not NULL), -ENOENT if | |
671 | * @list_name does not exist, -EINVAL if a phandle was not found, | |
672 | * @cells_name could not be found, the arguments were truncated or there | |
673 | * were too many arguments. | |
9e512045 SG |
674 | */ |
675 | int ofnode_parse_phandle_with_args(ofnode node, const char *list_name, | |
676 | const char *cells_name, int cell_count, | |
677 | int index, | |
678 | struct ofnode_phandle_args *out_args); | |
679 | ||
642346ae PC |
680 | /** |
681 | * ofnode_count_phandle_with_args() - Count number of phandle in a list | |
682 | * | |
683 | * This function is useful to count phandles into a list. | |
684 | * Returns number of phandle on success, on error returns appropriate | |
685 | * errno value. | |
686 | * | |
687 | * @node: device tree node containing a list | |
688 | * @list_name: property name that contains a list | |
689 | * @cells_name: property name that specifies phandles' arguments count | |
be74f71a PD |
690 | * @cell_count: Cell count to use if @cells_name is NULL |
691 | * Return: | |
692 | * number of phandle on success, -ENOENT if @list_name does not exist, | |
693 | * -EINVAL if a phandle was not found, @cells_name could not be found. | |
642346ae PC |
694 | */ |
695 | int ofnode_count_phandle_with_args(ofnode node, const char *list_name, | |
89f68302 | 696 | const char *cells_name, int cell_count); |
642346ae | 697 | |
9e512045 SG |
698 | /** |
699 | * ofnode_path() - find a node by full path | |
700 | * | |
701 | * @path: Full path to node, e.g. "/bus/spi@1" | |
be74f71a | 702 | * Return: reference to the node found. Use ofnode_valid() to check if it exists |
9e512045 SG |
703 | */ |
704 | ofnode ofnode_path(const char *path); | |
705 | ||
bd933bfd SG |
706 | /** |
707 | * ofnode_read_chosen_prop() - get the value of a chosen property | |
708 | * | |
709 | * This looks for a property within the /chosen node and returns its value | |
710 | * | |
711 | * @propname: Property name to look for | |
be74f71a | 712 | * @sizep: Returns size of property, or `FDT_ERR_...` error code if function |
bd933bfd | 713 | * returns NULL |
be74f71a | 714 | * Return: property value if found, else NULL |
bd933bfd SG |
715 | */ |
716 | const void *ofnode_read_chosen_prop(const char *propname, int *sizep); | |
717 | ||
9e512045 | 718 | /** |
14ca9f7f | 719 | * ofnode_read_chosen_string() - get the string value of a chosen property |
9e512045 | 720 | * |
14ca9f7f SG |
721 | * This looks for a property within the /chosen node and returns its value, |
722 | * checking that it is a valid nul-terminated string | |
9e512045 SG |
723 | * |
724 | * @propname: Property name to look for | |
be74f71a | 725 | * Return: string value if found, else NULL |
9e512045 | 726 | */ |
14ca9f7f | 727 | const char *ofnode_read_chosen_string(const char *propname); |
9e512045 SG |
728 | |
729 | /** | |
74d594a2 | 730 | * ofnode_get_chosen_node() - get a referenced node from the chosen node |
9e512045 | 731 | * |
74d594a2 SG |
732 | * This looks up a named property in the chosen node and uses that as a path to |
733 | * look up a code. | |
734 | * | |
be74f71a PD |
735 | * @propname: Property name to look for |
736 | * Return: the referenced node if present, else ofnode_null() | |
9e512045 | 737 | */ |
74d594a2 | 738 | ofnode ofnode_get_chosen_node(const char *propname); |
9e512045 | 739 | |
305d3188 MS |
740 | /** |
741 | * ofnode_read_aliases_prop() - get the value of a aliases property | |
742 | * | |
743 | * This looks for a property within the /aliases node and returns its value | |
744 | * | |
745 | * @propname: Property name to look for | |
be74f71a | 746 | * @sizep: Returns size of property, or `FDT_ERR_...` error code if function |
305d3188 | 747 | * returns NULL |
be74f71a | 748 | * Return: property value if found, else NULL |
305d3188 MS |
749 | */ |
750 | const void *ofnode_read_aliases_prop(const char *propname, int *sizep); | |
751 | ||
752 | /** | |
753 | * ofnode_get_aliases_node() - get a referenced node from the aliases node | |
754 | * | |
755 | * This looks up a named property in the aliases node and uses that as a path to | |
756 | * look up a code. | |
757 | * | |
be74f71a PD |
758 | * @propname: Property name to look for |
759 | * Return: the referenced node if present, else ofnode_null() | |
305d3188 MS |
760 | */ |
761 | ofnode ofnode_get_aliases_node(const char *propname); | |
762 | ||
9e512045 SG |
763 | struct display_timing; |
764 | /** | |
765 | * ofnode_decode_display_timing() - decode display timings | |
766 | * | |
767 | * Decode display timings from the supplied 'display-timings' node. | |
768 | * See doc/device-tree-bindings/video/display-timing.txt for binding | |
769 | * information. | |
770 | * | |
be74f71a PD |
771 | * @node: 'display-timing' node containing the timing subnodes |
772 | * @index: Index number to read (0=first timing subnode) | |
773 | * @config: Place to put timings | |
774 | * Return: 0 if OK, -FDT_ERR_NOTFOUND if not found | |
9e512045 SG |
775 | */ |
776 | int ofnode_decode_display_timing(ofnode node, int index, | |
777 | struct display_timing *config); | |
778 | ||
779 | /** | |
ce891fca | 780 | * ofnode_get_property() - get a pointer to the value of a node property |
9e512045 SG |
781 | * |
782 | * @node: node to read | |
783 | * @propname: property to read | |
784 | * @lenp: place to put length on success | |
be74f71a | 785 | * Return: pointer to property, or NULL if not found |
9e512045 | 786 | */ |
61e51bab | 787 | const void *ofnode_get_property(ofnode node, const char *propname, int *lenp); |
9e512045 | 788 | |
ce891fca PD |
789 | /** |
790 | * ofnode_get_first_property()- get the reference of the first property | |
791 | * | |
792 | * Get reference to the first property of the node, it is used to iterate | |
793 | * and read all the property with ofnode_get_property_by_prop(). | |
794 | * | |
795 | * @node: node to read | |
796 | * @prop: place to put argument reference | |
be74f71a | 797 | * Return: 0 if OK, -ve on error. -FDT_ERR_NOTFOUND if not found |
ce891fca PD |
798 | */ |
799 | int ofnode_get_first_property(ofnode node, struct ofprop *prop); | |
800 | ||
801 | /** | |
802 | * ofnode_get_next_property() - get the reference of the next property | |
803 | * | |
804 | * Get reference to the next property of the node, it is used to iterate | |
805 | * and read all the property with ofnode_get_property_by_prop(). | |
806 | * | |
807 | * @prop: reference of current argument and place to put reference of next one | |
be74f71a | 808 | * Return: 0 if OK, -ve on error. -FDT_ERR_NOTFOUND if not found |
ce891fca PD |
809 | */ |
810 | int ofnode_get_next_property(struct ofprop *prop); | |
811 | ||
812 | /** | |
813 | * ofnode_get_property_by_prop() - get a pointer to the value of a property | |
814 | * | |
815 | * Get value for the property identified by the provided reference. | |
816 | * | |
817 | * @prop: reference on property | |
818 | * @propname: If non-NULL, place to property name on success, | |
819 | * @lenp: If non-NULL, place to put length on success | |
be74f71a | 820 | * Return: 0 if OK, -ve on error. -FDT_ERR_NOTFOUND if not found |
ce891fca PD |
821 | */ |
822 | const void *ofnode_get_property_by_prop(const struct ofprop *prop, | |
823 | const char **propname, int *lenp); | |
824 | ||
9e512045 SG |
825 | /** |
826 | * ofnode_is_available() - check if a node is marked available | |
827 | * | |
828 | * @node: node to check | |
be74f71a | 829 | * Return: true if node's 'status' property is "okay" (or is missing) |
9e512045 SG |
830 | */ |
831 | bool ofnode_is_available(ofnode node); | |
832 | ||
833 | /** | |
834 | * ofnode_get_addr_size() - get address and size from a property | |
835 | * | |
836 | * This does no address translation. It simply reads an property that contains | |
837 | * an address and a size value, one after the other. | |
838 | * | |
839 | * @node: node to read from | |
840 | * @propname: property to read | |
841 | * @sizep: place to put size value (on success) | |
be74f71a | 842 | * Return: address value, or FDT_ADDR_T_NONE on error |
9e512045 SG |
843 | */ |
844 | phys_addr_t ofnode_get_addr_size(ofnode node, const char *propname, | |
845 | phys_size_t *sizep); | |
846 | ||
847 | /** | |
848 | * ofnode_read_u8_array_ptr() - find an 8-bit array | |
849 | * | |
850 | * Look up a property in a node and return a pointer to its contents as a | |
851 | * byte array of given length. The property must have at least enough data | |
852 | * for the array (count bytes). It may have more, but this will be ignored. | |
853 | * The data is not copied. | |
854 | * | |
be74f71a PD |
855 | * @node: node to examine |
856 | * @propname: name of property to find | |
857 | * @sz: number of array elements | |
858 | * Return: | |
859 | * pointer to byte array if found, or NULL if the property is not found or | |
860 | * there is not enough data | |
9e512045 SG |
861 | */ |
862 | const uint8_t *ofnode_read_u8_array_ptr(ofnode node, const char *propname, | |
863 | size_t sz); | |
864 | ||
865 | /** | |
866 | * ofnode_read_pci_addr() - look up a PCI address | |
867 | * | |
868 | * Look at an address property in a node and return the PCI address which | |
869 | * corresponds to the given type in the form of fdt_pci_addr. | |
870 | * The property must hold one fdt_pci_addr with a lengh. | |
871 | * | |
be74f71a PD |
872 | * @node: node to examine |
873 | * @type: pci address type (FDT_PCI_SPACE_xxx) | |
874 | * @propname: name of property to find | |
875 | * @addr: returns pci address in the form of fdt_pci_addr | |
876 | * Return: | |
877 | * 0 if ok, -ENOENT if the property did not exist, -EINVAL if the | |
878 | * format of the property was invalid, -ENXIO if the requested | |
879 | * address type was not found | |
9e512045 SG |
880 | */ |
881 | int ofnode_read_pci_addr(ofnode node, enum fdt_pci_space type, | |
882 | const char *propname, struct fdt_pci_addr *addr); | |
883 | ||
7b9cbadd BM |
884 | /** |
885 | * ofnode_read_pci_vendev() - look up PCI vendor and device id | |
886 | * | |
887 | * Look at the compatible property of a device node that represents a PCI | |
888 | * device and extract pci vendor id and device id from it. | |
889 | * | |
be74f71a PD |
890 | * @node: node to examine |
891 | * @vendor: vendor id of the pci device | |
892 | * @device: device id of the pci device | |
893 | * Return: 0 if ok, negative on error | |
7b9cbadd BM |
894 | */ |
895 | int ofnode_read_pci_vendev(ofnode node, u16 *vendor, u16 *device); | |
896 | ||
db681d49 MS |
897 | /** |
898 | * ofnode_read_eth_phy_id() - look up eth phy vendor and device id | |
899 | * | |
900 | * Look at the compatible property of a device node that represents a eth phy | |
901 | * device and extract phy vendor id and device id from it. | |
902 | * | |
903 | * @param node node to examine | |
904 | * @param vendor vendor id of the eth phy device | |
905 | * @param device device id of the eth phy device | |
906 | * @return 0 if ok, negative on error | |
907 | */ | |
908 | int ofnode_read_eth_phy_id(ofnode node, u16 *vendor, u16 *device); | |
909 | ||
9e512045 SG |
910 | /** |
911 | * ofnode_read_addr_cells() - Get the number of address cells for a node | |
912 | * | |
913 | * This walks back up the tree to find the closest #address-cells property | |
914 | * which controls the given node. | |
915 | * | |
916 | * @node: Node to check | |
be74f71a | 917 | * Return: number of address cells this node uses |
9e512045 SG |
918 | */ |
919 | int ofnode_read_addr_cells(ofnode node); | |
920 | ||
921 | /** | |
922 | * ofnode_read_size_cells() - Get the number of size cells for a node | |
923 | * | |
924 | * This walks back up the tree to find the closest #size-cells property | |
925 | * which controls the given node. | |
926 | * | |
927 | * @node: Node to check | |
be74f71a | 928 | * Return: number of size cells this node uses |
9e512045 SG |
929 | */ |
930 | int ofnode_read_size_cells(ofnode node); | |
931 | ||
878d68c0 SG |
932 | /** |
933 | * ofnode_read_simple_addr_cells() - Get the address cells property in a node | |
934 | * | |
935 | * This function matches fdt_address_cells(). | |
936 | * | |
be74f71a PD |
937 | * @node: Node to check |
938 | * Return: value of #address-cells property in this node, or 2 if none | |
878d68c0 SG |
939 | */ |
940 | int ofnode_read_simple_addr_cells(ofnode node); | |
941 | ||
942 | /** | |
943 | * ofnode_read_simple_size_cells() - Get the size cells property in a node | |
944 | * | |
945 | * This function matches fdt_size_cells(). | |
946 | * | |
be74f71a PD |
947 | * @node: Node to check |
948 | * Return: value of #size-cells property in this node, or 2 if none | |
878d68c0 SG |
949 | */ |
950 | int ofnode_read_simple_size_cells(ofnode node); | |
951 | ||
9e512045 SG |
952 | /** |
953 | * ofnode_pre_reloc() - check if a node should be bound before relocation | |
954 | * | |
955 | * Device tree nodes can be marked as needing-to-be-bound in the loader stages | |
956 | * via special device tree properties. | |
957 | * | |
958 | * Before relocation this function can be used to check if nodes are required | |
959 | * in either SPL or TPL stages. | |
960 | * | |
961 | * After relocation and jumping into the real U-Boot binary it is possible to | |
962 | * determine if a node was bound in one of SPL/TPL stages. | |
963 | * | |
54e1223a PD |
964 | * There are 4 settings currently in use |
965 | * - u-boot,dm-pre-proper: U-Boot proper pre-relocation only | |
9e512045 | 966 | * - u-boot,dm-pre-reloc: legacy and indicates any of TPL or SPL |
be74f71a PD |
967 | * Existing platforms only use it to indicate nodes needed in |
968 | * SPL. Should probably be replaced by u-boot,dm-spl for new platforms. | |
54e1223a PD |
969 | * - u-boot,dm-spl: SPL and U-Boot pre-relocation |
970 | * - u-boot,dm-tpl: TPL and U-Boot pre-relocation | |
9e512045 SG |
971 | * |
972 | * @node: node to check | |
be74f71a | 973 | * Return: true if node is needed in SPL/TL, false otherwise |
9e512045 SG |
974 | */ |
975 | bool ofnode_pre_reloc(ofnode node); | |
976 | ||
c98ad443 SG |
977 | /** |
978 | * ofnode_read_resource() - Read a resource from a node | |
979 | * | |
980 | * Read resource information from a node at the given index | |
981 | * | |
982 | * @node: Node to read from | |
983 | * @index: Index of resource to read (0 = first) | |
984 | * @res: Returns resource that was read, on success | |
be74f71a | 985 | * Return: 0 if OK, -ve on error |
c98ad443 | 986 | */ |
dcf98852 | 987 | int ofnode_read_resource(ofnode node, uint index, struct resource *res); |
c98ad443 SG |
988 | |
989 | /** | |
990 | * ofnode_read_resource_byname() - Read a resource from a node by name | |
991 | * | |
992 | * Read resource information from a node matching the given name. This uses a | |
993 | * 'reg-names' string list property with the names matching the associated | |
994 | * 'reg' property list. | |
995 | * | |
996 | * @node: Node to read from | |
997 | * @name: Name of resource to read | |
998 | * @res: Returns resource that was read, on success | |
be74f71a | 999 | * Return: 0 if OK, -ve on error |
c98ad443 | 1000 | */ |
7b8b47bd MY |
1001 | int ofnode_read_resource_byname(ofnode node, const char *name, |
1002 | struct resource *res); | |
dcf98852 | 1003 | |
c60f671b SG |
1004 | /** |
1005 | * ofnode_by_compatible() - Find the next compatible node | |
1006 | * | |
1007 | * Find the next node after @from that is compatible with @compat | |
1008 | * | |
1009 | * @from: ofnode to start from (use ofnode_null() to start at the beginning) | |
1010 | * @compat: Compatible string to match | |
be74f71a | 1011 | * Return: ofnode found, or ofnode_null() if none |
c60f671b SG |
1012 | */ |
1013 | ofnode ofnode_by_compatible(ofnode from, const char *compat); | |
1014 | ||
61fba0fa JW |
1015 | /** |
1016 | * ofnode_by_prop_value() - Find the next node with given property value | |
1017 | * | |
1018 | * Find the next node after @from that has a @propname with a value | |
1019 | * @propval and a length @proplen. | |
1020 | * | |
1021 | * @from: ofnode to start from (use ofnode_null() to start at the | |
be74f71a PD |
1022 | * beginning) |
1023 | * @propname: property name to check | |
1024 | * @propval: property value to search for | |
1025 | * @proplen: length of the value in propval | |
1026 | * Return: ofnode found, or ofnode_null() if none | |
61fba0fa JW |
1027 | */ |
1028 | ofnode ofnode_by_prop_value(ofnode from, const char *propname, | |
1029 | const void *propval, int proplen); | |
1030 | ||
3991f42e SG |
1031 | /** |
1032 | * ofnode_for_each_subnode() - iterate over all subnodes of a parent | |
1033 | * | |
1034 | * @node: child node (ofnode, lvalue) | |
1035 | * @parent: parent node (ofnode) | |
1036 | * | |
be74f71a | 1037 | * This is a wrapper around a for loop and is used like so:: |
3991f42e | 1038 | * |
be74f71a PD |
1039 | * ofnode node; |
1040 | * ofnode_for_each_subnode(node, parent) { | |
1041 | * Use node | |
1042 | * ... | |
1043 | * } | |
3991f42e SG |
1044 | * |
1045 | * Note that this is implemented as a macro and @node is used as | |
1046 | * iterator in the loop. The parent variable can be a constant or even a | |
1047 | * literal. | |
1048 | */ | |
1049 | #define ofnode_for_each_subnode(node, parent) \ | |
1050 | for (node = ofnode_first_subnode(parent); \ | |
1051 | ofnode_valid(node); \ | |
1052 | node = ofnode_next_subnode(node)) | |
1053 | ||
b8ec9458 MW |
1054 | /** |
1055 | * ofnode_for_each_compatible_node() - iterate over all nodes with a given | |
1056 | * compatible string | |
1057 | * | |
1058 | * @node: child node (ofnode, lvalue) | |
1059 | * @compat: compatible string to match | |
1060 | * | |
be74f71a | 1061 | * This is a wrapper around a for loop and is used like so:: |
b8ec9458 | 1062 | * |
be74f71a PD |
1063 | * ofnode node; |
1064 | * ofnode_for_each_compatible_node(node, parent, compatible) { | |
1065 | * Use node | |
1066 | * ... | |
1067 | * } | |
b8ec9458 MW |
1068 | * |
1069 | * Note that this is implemented as a macro and @node is used as | |
1070 | * iterator in the loop. | |
1071 | */ | |
1072 | #define ofnode_for_each_compatible_node(node, compat) \ | |
1073 | for (node = ofnode_by_compatible(ofnode_null(), compat); \ | |
1074 | ofnode_valid(node); \ | |
1075 | node = ofnode_by_compatible(node, compat)) | |
1076 | ||
89b84b85 CY |
1077 | /** |
1078 | * ofnode_get_child_count() - get the child count of a ofnode | |
1079 | * | |
be74f71a PD |
1080 | * @parent: valid node to get its child count |
1081 | * Return: the number of subnodes | |
89b84b85 CY |
1082 | */ |
1083 | int ofnode_get_child_count(ofnode parent); | |
1084 | ||
147c6074 | 1085 | /** |
641067fb | 1086 | * ofnode_translate_address() - Translate a device-tree address |
147c6074 MS |
1087 | * |
1088 | * Translate an address from the device-tree into a CPU physical address. This | |
1089 | * function walks up the tree and applies the various bus mappings along the | |
1090 | * way. | |
1091 | * | |
be74f71a | 1092 | * @node: Device tree node giving the context in which to translate the address |
147c6074 | 1093 | * @in_addr: pointer to the address to translate |
be74f71a | 1094 | * Return: the translated address; OF_BAD_ADDR on error |
147c6074 MS |
1095 | */ |
1096 | u64 ofnode_translate_address(ofnode node, const fdt32_t *in_addr); | |
5ccc2c21 | 1097 | |
641067fb FD |
1098 | /** |
1099 | * ofnode_translate_dma_address() - Translate a device-tree DMA address | |
1100 | * | |
1101 | * Translate a DMA address from the device-tree into a CPU physical address. | |
1102 | * This function walks up the tree and applies the various bus mappings along | |
1103 | * the way. | |
1104 | * | |
be74f71a PD |
1105 | * @node: Device tree node giving the context in which to translate the |
1106 | * DMA address | |
641067fb | 1107 | * @in_addr: pointer to the DMA address to translate |
be74f71a | 1108 | * Return: the translated DMA address; OF_BAD_ADDR on error |
641067fb FD |
1109 | */ |
1110 | u64 ofnode_translate_dma_address(ofnode node, const fdt32_t *in_addr); | |
1111 | ||
51bdb509 NSJ |
1112 | /** |
1113 | * ofnode_get_dma_range() - get dma-ranges for a specific DT node | |
1114 | * | |
1115 | * Get DMA ranges for a specifc node, this is useful to perform bus->cpu and | |
1116 | * cpu->bus address translations | |
1117 | * | |
be74f71a PD |
1118 | * @node: Device tree node |
1119 | * @cpu: Pointer to variable storing the range's cpu address | |
1120 | * @bus: Pointer to variable storing the range's bus address | |
1121 | * @size: Pointer to variable storing the range's size | |
1122 | * Return: translated DMA address or OF_BAD_ADDR on error | |
51bdb509 NSJ |
1123 | */ |
1124 | int ofnode_get_dma_range(ofnode node, phys_addr_t *cpu, dma_addr_t *bus, | |
1125 | u64 *size); | |
1126 | ||
5ccc2c21 MY |
1127 | /** |
1128 | * ofnode_device_is_compatible() - check if the node is compatible with compat | |
1129 | * | |
1130 | * This allows to check whether the node is comaptible with the compat. | |
1131 | * | |
1132 | * @node: Device tree node for which compatible needs to be verified. | |
1133 | * @compat: Compatible string which needs to verified in the given node. | |
be74f71a | 1134 | * Return: true if OK, false if the compatible is not found |
5ccc2c21 MY |
1135 | */ |
1136 | int ofnode_device_is_compatible(ofnode node, const char *compat); | |
e369e58d MS |
1137 | |
1138 | /** | |
1139 | * ofnode_write_prop() - Set a property of a ofnode | |
1140 | * | |
1141 | * Note that the value passed to the function is *not* allocated by the | |
1142 | * function itself, but must be allocated by the caller if necessary. | |
1143 | * | |
1144 | * @node: The node for whose property should be set | |
1145 | * @propname: The name of the property to set | |
1146 | * @len: The length of the new value of the property | |
1147 | * @value: The new value of the property (must be valid prior to calling | |
1148 | * the function) | |
be74f71a | 1149 | * Return: 0 if successful, -ve on error |
e369e58d MS |
1150 | */ |
1151 | int ofnode_write_prop(ofnode node, const char *propname, int len, | |
1152 | const void *value); | |
1153 | ||
1154 | /** | |
1155 | * ofnode_write_string() - Set a string property of a ofnode | |
1156 | * | |
1157 | * Note that the value passed to the function is *not* allocated by the | |
1158 | * function itself, but must be allocated by the caller if necessary. | |
1159 | * | |
1160 | * @node: The node for whose string property should be set | |
1161 | * @propname: The name of the string property to set | |
1162 | * @value: The new value of the string property (must be valid prior to | |
1163 | * calling the function) | |
be74f71a | 1164 | * Return: 0 if successful, -ve on error |
e369e58d MS |
1165 | */ |
1166 | int ofnode_write_string(ofnode node, const char *propname, const char *value); | |
1167 | ||
1168 | /** | |
1169 | * ofnode_set_enabled() - Enable or disable a device tree node given by its | |
1170 | * ofnode | |
1171 | * | |
1172 | * This function effectively sets the node's "status" property to either "okay" | |
1173 | * or "disable", hence making it available for driver model initialization or | |
1174 | * not. | |
1175 | * | |
1176 | * @node: The node to enable | |
1177 | * @value: Flag that tells the function to either disable or enable the | |
1178 | * node | |
be74f71a | 1179 | * Return: 0 if successful, -ve on error |
e369e58d MS |
1180 | */ |
1181 | int ofnode_set_enabled(ofnode node, bool value); | |
1182 | ||
7de8bd03 SG |
1183 | /** |
1184 | * ofnode_conf_read_bool() - Read a boolean value from the U-Boot config | |
1185 | * | |
1186 | * This reads a property from the /config node of the devicetree. | |
1187 | * | |
1188 | * See doc/config.txt for bindings | |
1189 | * | |
be74f71a PD |
1190 | * @prop_name: property name to look up |
1191 | * Return: true, if it exists, false if not | |
7de8bd03 SG |
1192 | */ |
1193 | bool ofnode_conf_read_bool(const char *prop_name); | |
1194 | ||
1195 | /** | |
1196 | * ofnode_conf_read_int() - Read an integer value from the U-Boot config | |
1197 | * | |
1198 | * This reads a property from the /config node of the devicetree. | |
1199 | * | |
1200 | * See doc/config.txt for bindings | |
1201 | * | |
1202 | * @prop_name: property name to look up | |
1203 | * @default_val: default value to return if the property is not found | |
be74f71a | 1204 | * Return: integer value, if found, or @default_val if not |
7de8bd03 SG |
1205 | */ |
1206 | int ofnode_conf_read_int(const char *prop_name, int default_val); | |
1207 | ||
1208 | /** | |
1209 | * ofnode_conf_read_str() - Read a string value from the U-Boot config | |
1210 | * | |
1211 | * This reads a property from the /config node of the devicetree. | |
1212 | * | |
1213 | * See doc/config.txt for bindings | |
1214 | * | |
1215 | * @prop_name: property name to look up | |
be74f71a | 1216 | * Return: string value, if found, or NULL if not |
7de8bd03 SG |
1217 | */ |
1218 | const char *ofnode_conf_read_str(const char *prop_name); | |
1219 | ||
4984de2b | 1220 | #endif |