blob: c556a18f7d9c5aeb37540f4b64692d62d5864466 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass644ec0a2017-05-18 20:08:54 -06002/*
3 * Originally from Linux v4.9
4 * Copyright (C) 1996-2005 Paul Mackerras.
5 *
6 * Updates for PPC64 by Peter Bergner & David Engebretsen, IBM Corp.
7 * Updates for SPARC64 by David S. Miller
8 * Derived from PowerPC and Sparc prom.h files by Stephen Rothwell, IBM Corp.
9 *
10 * Copyright (c) 2017 Google, Inc
11 * Written by Simon Glass <sjg@chromium.org>
12 *
13 * Modified for U-Boot
14 * Copyright (c) 2017 Google, Inc
Simon Glass644ec0a2017-05-18 20:08:54 -060015 */
16
17#ifndef _DM_OF_ACCESS_H
18#define _DM_OF_ACCESS_H
19
20#include <dm/of.h>
21
22/**
23 * of_find_all_nodes - Get next node in global list
24 * @prev: Previous node or NULL to start iteration
25 * of_node_put() will be called on it
26 *
27 * Returns a node pointer with refcount incremented, use
28 * of_node_put() on it when done.
29 */
30struct device_node *of_find_all_nodes(struct device_node *prev);
31
32#define for_each_of_allnodes_from(from, dn) \
33 for (dn = of_find_all_nodes(from); dn; dn = of_find_all_nodes(dn))
34#define for_each_of_allnodes(dn) for_each_of_allnodes_from(NULL, dn)
35
36/* Dummy functions to mirror Linux. These are not used in U-Boot */
37#define of_node_get(x) (x)
38static inline void of_node_put(const struct device_node *np) { }
39
40/**
41 * of_n_addr_cells() - Get the number of address cells for a node
42 *
43 * This walks back up the tree to find the closest #address-cells property
44 * which controls the given node.
45 *
46 * @np: Node pointer to check
Patrick Delaunaybe74f712022-01-12 10:53:49 +010047 * Return: number of address cells this node uses
Simon Glass644ec0a2017-05-18 20:08:54 -060048 */
49int of_n_addr_cells(const struct device_node *np);
50
51/**
52 * of_n_size_cells() - Get the number of size cells for a node
53 *
54 * This walks back up the tree to find the closest #size-cells property
55 * which controls the given node.
56 *
57 * @np: Node pointer to check
Patrick Delaunaybe74f712022-01-12 10:53:49 +010058 * Return: number of size cells this node uses
Simon Glass644ec0a2017-05-18 20:08:54 -060059 */
60int of_n_size_cells(const struct device_node *np);
61
62/**
Simon Glass878d68c2017-06-12 06:21:31 -060063 * of_simple_addr_cells() - Get the address cells property in a node
64 *
65 * This function matches fdt_address_cells().
66 *
67 * @np: Node pointer to check
Patrick Delaunaybe74f712022-01-12 10:53:49 +010068 * Return: value of #address-cells property in this node, or 2 if none
Simon Glass878d68c2017-06-12 06:21:31 -060069 */
70int of_simple_addr_cells(const struct device_node *np);
71
72/**
73 * of_simple_size_cells() - Get the size cells property in a node
74 *
75 * This function matches fdt_size_cells().
76 *
77 * @np: Node pointer to check
Patrick Delaunaybe74f712022-01-12 10:53:49 +010078 * Return: value of #size-cells property in this node, or 2 if none
Simon Glass878d68c2017-06-12 06:21:31 -060079 */
80int of_simple_size_cells(const struct device_node *np);
81
82/**
Simon Glass644ec0a2017-05-18 20:08:54 -060083 * of_find_property() - find a property in a node
84 *
85 * @np: Pointer to device node holding property
86 * @name: Name of property
87 * @lenp: If non-NULL, returns length of property
Patrick Delaunaybe74f712022-01-12 10:53:49 +010088 * Return: pointer to property, or NULL if not found
Simon Glass644ec0a2017-05-18 20:08:54 -060089 */
90struct property *of_find_property(const struct device_node *np,
91 const char *name, int *lenp);
92
93/**
94 * of_get_property() - get a property value
95 *
96 * Find a property with a given name for a given node and return the value.
97 *
98 * @np: Pointer to device node holding property
99 * @name: Name of property
100 * @lenp: If non-NULL, returns length of property
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100101 * Return: pointer to property value, or NULL if not found
Simon Glass644ec0a2017-05-18 20:08:54 -0600102 */
103const void *of_get_property(const struct device_node *np, const char *name,
104 int *lenp);
105
106/**
Patrick Delaunayce891fca2020-01-13 11:34:56 +0100107 * of_get_first_property()- get to the pointer of the first property
108 *
109 * Get pointer to the first property of the node, it is used to iterate
110 * and read all the property with of_get_next_property_by_prop().
111 *
112 * @np: Pointer to device node
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100113 * Return: pointer to property or NULL if not found
Patrick Delaunayce891fca2020-01-13 11:34:56 +0100114 */
115const struct property *of_get_first_property(const struct device_node *np);
116
117/**
118 * of_get_next_property() - get to the pointer of the next property
119 *
120 * Get pointer to the next property of the node, it is used to iterate
121 * and read all the property with of_get_property_by_prop().
122 *
123 * @np: Pointer to device node
124 * @property: pointer of the current property
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100125 * Return: pointer to next property or NULL if not found
Patrick Delaunayce891fca2020-01-13 11:34:56 +0100126 */
127const struct property *of_get_next_property(const struct device_node *np,
128 const struct property *property);
129
130/**
131 * of_get_property_by_prop() - get a property value of a node property
132 *
133 * Get value for the property identified by node and property pointer.
134 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100135 * @np: Pointer to device node
Patrick Delaunayce891fca2020-01-13 11:34:56 +0100136 * @property: pointer of the property to read
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100137 * @name: place to property name on success
Patrick Delaunayce891fca2020-01-13 11:34:56 +0100138 * @lenp: place to put length on success
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100139 * Return: pointer to property value or NULL if error
Patrick Delaunayce891fca2020-01-13 11:34:56 +0100140 */
141const void *of_get_property_by_prop(const struct device_node *np,
142 const struct property *property,
143 const char **name,
144 int *lenp);
145
146/**
Simon Glass644ec0a2017-05-18 20:08:54 -0600147 * of_device_is_compatible() - Check if the node matches given constraints
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100148 * @np: Pointer to device node
Simon Glass644ec0a2017-05-18 20:08:54 -0600149 * @compat: required compatible string, NULL or "" for any match
150 * @type: required device_type value, NULL or "" for any match
151 * @name: required node name, NULL or "" for any match
152 *
153 * Checks if the given @compat, @type and @name strings match the
154 * properties of the given @device. A constraints can be skipped by
155 * passing NULL or an empty string as the constraint.
156 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100157 * Return: 0 for no match, and a positive integer on match. The return
Simon Glass644ec0a2017-05-18 20:08:54 -0600158 * value is a relative score with larger values indicating better
159 * matches. The score is weighted for the most specific compatible value
160 * to get the highest score. Matching type is next, followed by matching
161 * name. Practically speaking, this results in the following priority
162 * order for matches:
163 *
164 * 1. specific compatible && type && name
165 * 2. specific compatible && type
166 * 3. specific compatible && name
167 * 4. specific compatible
168 * 5. general compatible && type && name
169 * 6. general compatible && type
170 * 7. general compatible && name
171 * 8. general compatible
172 * 9. type && name
173 * 10. type
174 * 11. name
175 */
176int of_device_is_compatible(const struct device_node *np, const char *compat,
177 const char *type, const char *name);
178
179/**
180 * of_device_is_available() - check if a device is available for use
181 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100182 * @np: Pointer to device node to check for availability
Simon Glass644ec0a2017-05-18 20:08:54 -0600183 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100184 * Return: true if the status property is absent or set to "okay", false
Simon Glass644ec0a2017-05-18 20:08:54 -0600185 * otherwise
186 */
187bool of_device_is_available(const struct device_node *np);
188
189/**
190 * of_get_parent() - Get a node's parent, if any
191 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100192 * @np: Pointer to device node to check
193 * Return: a node pointer, or NULL if none
Simon Glass644ec0a2017-05-18 20:08:54 -0600194 */
195struct device_node *of_get_parent(const struct device_node *np);
196
197/**
198 * of_find_node_opts_by_path() - Find a node matching a full OF path
199 *
Simon Glass33104842022-07-30 15:52:08 -0600200 * Note that alias processing is only available on the control FDT (gd->of_root).
201 * For other trees it is skipped, so any attempt to obtain an alias will result
202 * in returning NULL.
203 *
204 * @root: Root node of the tree to use. If this is NULL, then gd->of_root is used
Simon Glass644ec0a2017-05-18 20:08:54 -0600205 * @path: Either the full path to match, or if the path does not start with
206 * '/', the name of a property of the /aliases node (an alias). In the
207 * case of an alias, the node matching the alias' value will be returned.
208 * @opts: Address of a pointer into which to store the start of an options
209 * string appended to the end of the path with a ':' separator. Can be NULL
210 *
211 * Valid paths:
212 * /foo/bar Full path
213 * foo Valid alias
214 * foo/bar Valid alias + relative path
215 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100216 * Return: a node pointer or NULL if not found
Simon Glass644ec0a2017-05-18 20:08:54 -0600217 */
Simon Glass33104842022-07-30 15:52:08 -0600218struct device_node *of_find_node_opts_by_path(struct device_node *root,
219 const char *path,
Simon Glass644ec0a2017-05-18 20:08:54 -0600220 const char **opts);
221
222static inline struct device_node *of_find_node_by_path(const char *path)
223{
Simon Glass33104842022-07-30 15:52:08 -0600224 return of_find_node_opts_by_path(NULL, path, NULL);
Simon Glass644ec0a2017-05-18 20:08:54 -0600225}
226
227/**
228 * of_find_compatible_node() - find a node based on its compatible string
229 *
230 * Find a node based on type and one of the tokens in its "compatible" property
231 * @from: Node to start searching from or NULL. the node you pass will not be
232 * searched, only the next one will; typically, you pass what the previous
233 * call returned.
234 * @type: The type string to match "device_type" or NULL to ignore
235 * @compatible: The string to match to one of the tokens in the device
236 * "compatible" list.
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100237 * Return: node pointer or NULL if not found
Simon Glass644ec0a2017-05-18 20:08:54 -0600238 */
239struct device_node *of_find_compatible_node(struct device_node *from,
240 const char *type, const char *compatible);
241
242/**
Jens Wiklander61fba0f2018-08-20 11:09:58 +0200243 * of_find_node_by_prop_value() - find a node with a given property value
244 *
245 * Find a node based on a property value.
246 * @from: Node to start searching from or NULL. the node you pass will not be
247 * searched, only the next one will; typically, you pass what the previous
248 * call returned.
249 * @propname: property name to check
250 * @propval: property value to search for
251 * @proplen: length of the value in propval
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100252 * Return: node pointer or NULL if not found
Jens Wiklander61fba0f2018-08-20 11:09:58 +0200253 */
254struct device_node *of_find_node_by_prop_value(struct device_node *from,
255 const char *propname,
256 const void *propval,
257 int proplen);
258/**
Simon Glass644ec0a2017-05-18 20:08:54 -0600259 * of_find_node_by_phandle() - Find a node given a phandle
260 *
Simon Glass829d5122022-09-06 20:26:57 -0600261 * @root: root node to start from (NULL for default device tree)
Simon Glass644ec0a2017-05-18 20:08:54 -0600262 * @handle: phandle of the node to find
263 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100264 * Return: node pointer, or NULL if not found
Simon Glass644ec0a2017-05-18 20:08:54 -0600265 */
Simon Glass829d5122022-09-06 20:26:57 -0600266struct device_node *of_find_node_by_phandle(struct device_node *root,
267 phandle handle);
Simon Glass644ec0a2017-05-18 20:08:54 -0600268
269/**
Stefan Herbrechtsmeierb471bdc2022-06-14 15:21:30 +0200270 * of_read_u8() - Find and read a 8-bit integer from a property
271 *
272 * Search for a property in a device node and read a 8-bit value from
273 * it.
274 *
275 * @np: device node from which the property value is to be read.
276 * @propname: name of the property to be searched.
277 * @outp: pointer to return value, modified only if return value is 0.
278 *
279 * Return: 0 on success, -EINVAL if the property does not exist,
280 * -ENODATA if property does not have a value, and -EOVERFLOW if the
281 * property data isn't large enough.
282 */
283int of_read_u8(const struct device_node *np, const char *propname, u8 *outp);
284
285/**
286 * of_read_u16() - Find and read a 16-bit integer from a property
287 *
288 * Search for a property in a device node and read a 16-bit value from
289 * it.
290 *
291 * @np: device node from which the property value is to be read.
292 * @propname: name of the property to be searched.
293 * @outp: pointer to return value, modified only if return value is 0.
294 *
295 * Return: 0 on success, -EINVAL if the property does not exist,
296 * -ENODATA if property does not have a value, and -EOVERFLOW if the
297 * property data isn't large enough.
298 */
299int of_read_u16(const struct device_node *np, const char *propname, u16 *outp);
300
301/**
Simon Glass644ec0a2017-05-18 20:08:54 -0600302 * of_read_u32() - Find and read a 32-bit integer from a property
303 *
304 * Search for a property in a device node and read a 32-bit value from
305 * it.
306 *
307 * @np: device node from which the property value is to be read.
308 * @propname: name of the property to be searched.
309 * @outp: pointer to return value, modified only if return value is 0.
310 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100311 * Return: 0 on success, -EINVAL if the property does not exist,
Simon Glass644ec0a2017-05-18 20:08:54 -0600312 * -ENODATA if property does not have a value, and -EOVERFLOW if the
313 * property data isn't large enough.
314 */
315int of_read_u32(const struct device_node *np, const char *propname, u32 *outp);
316
317/**
Dario Binacchi4bb70752020-03-29 18:04:41 +0200318 * of_read_u32_index() - Find and read a 32-bit value from a multi-value
319 * property
320 *
321 * Search for a property in a device node and read a 32-bit value from
322 * it.
323 *
324 * @np: device node from which the property value is to be read.
325 * @propname: name of the property to be searched.
326 * @index: index of the u32 in the list of values
327 * @outp: pointer to return value, modified only if return value is 0.
328 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100329 * Return:
Simon Glass66d0d0c2022-09-06 20:27:18 -0600330 * 0 on success, -EINVAL if the property does not exist, or -EOVERFLOW if the
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100331 * property data isn't large enough.
Dario Binacchi4bb70752020-03-29 18:04:41 +0200332 */
333int of_read_u32_index(const struct device_node *np, const char *propname,
334 int index, u32 *outp);
335
336/**
Simon Glass7e5196c2018-06-11 13:07:10 -0600337 * of_read_u64() - Find and read a 64-bit integer from a property
338 *
339 * Search for a property in a device node and read a 64-bit value from
340 * it.
341 *
342 * @np: device node from which the property value is to be read.
343 * @propname: name of the property to be searched.
344 * @outp: pointer to return value, modified only if return value is 0.
345 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100346 * Return:
Simon Glass66d0d0c2022-09-06 20:27:18 -0600347 * 0 on success, -EINVAL if the property does not exist, or -EOVERFLOW if the
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100348 * property data isn't large enough.
Simon Glass7e5196c2018-06-11 13:07:10 -0600349 */
350int of_read_u64(const struct device_node *np, const char *propname, u64 *outp);
351
352/**
Simon Glass644ec0a2017-05-18 20:08:54 -0600353 * of_read_u32_array() - Find and read an array of 32 bit integers
354 *
355 * Search for a property in a device node and read 32-bit value(s) from
356 * it.
357 *
358 * @np: device node from which the property value is to be read.
359 * @propname: name of the property to be searched.
360 * @out_values: pointer to return value, modified only if return value is 0.
361 * @sz: number of array elements to read
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100362 * Return:
Simon Glass66d0d0c2022-09-06 20:27:18 -0600363 * 0 on success, -EINVAL if the property does not exist, or -EOVERFLOW if
364 * longer than sz.
Simon Glass644ec0a2017-05-18 20:08:54 -0600365 */
366int of_read_u32_array(const struct device_node *np, const char *propname,
367 u32 *out_values, size_t sz);
368
369/**
370 * of_property_match_string() - Find string in a list and return index
371 *
372 * This function searches a string list property and returns the index
373 * of a specific string value.
374 *
375 * @np: pointer to node containing string list property
376 * @propname: string list property name
377 * @string: pointer to string to search for in string list
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100378 * Return:
379 * 0 on success, -EINVAL if the property does not exist, -ENODATA
380 * if property does not have a value, and -EOVERFLOW is longer than sz.
Simon Glass644ec0a2017-05-18 20:08:54 -0600381 */
382int of_property_match_string(const struct device_node *np, const char *propname,
383 const char *string);
384
385int of_property_read_string_helper(const struct device_node *np,
386 const char *propname, const char **out_strs,
387 size_t sz, int index);
388
389/**
390 * of_property_read_string_index() - Find and read a string from a multiple
391 * strings property.
392 * @np: device node from which the property value is to be read.
393 * @propname: name of the property to be searched.
394 * @index: index of the string in the list of strings
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100395 * @output: pointer to null terminated return string, modified only if
Simon Glass644ec0a2017-05-18 20:08:54 -0600396 * return value is 0.
397 *
398 * Search for a property in a device tree node and retrieve a null
399 * terminated string value (pointer to data, not a copy) in the list of strings
400 * contained in that property.
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100401 *
402 * Return:
403 * 0 on success, -EINVAL if the property does not exist, -ENODATA if
404 * property does not have a value, and -EILSEQ if the string is not
405 * null-terminated within the length of the property data.
Simon Glass644ec0a2017-05-18 20:08:54 -0600406 *
407 * The out_string pointer is modified only if a valid string can be decoded.
408 */
409static inline int of_property_read_string_index(const struct device_node *np,
410 const char *propname,
411 int index, const char **output)
412{
413 int rc = of_property_read_string_helper(np, propname, output, 1, index);
414 return rc < 0 ? rc : 0;
415}
416
417/**
Simon Glass8c293d62017-06-12 06:21:28 -0600418 * of_property_count_strings() - Find and return the number of strings from a
419 * multiple strings property.
420 * @np: device node from which the property value is to be read.
421 * @propname: name of the property to be searched.
422 *
423 * Search for a property in a device tree node and retrieve the number of null
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100424 * terminated string contain in it.
425 *
426 * Return:
427 * the number of strings on success, -EINVAL if the property does not exist,
428 * -ENODATA if property does not have a value, and -EILSEQ if the string is
429 * not null-terminated within the length of the property data.
Simon Glass8c293d62017-06-12 06:21:28 -0600430 */
431static inline int of_property_count_strings(const struct device_node *np,
432 const char *propname)
433{
434 return of_property_read_string_helper(np, propname, NULL, 0, 0);
435}
436
437/**
Simon Glass644ec0a2017-05-18 20:08:54 -0600438 * of_parse_phandle - Resolve a phandle property to a device_node pointer
439 * @np: Pointer to device node holding phandle property
440 * @phandle_name: Name of property holding a phandle value
441 * @index: For properties holding a table of phandles, this is the index into
442 * the table
443 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100444 * Return:
445 * the device_node pointer with refcount incremented. Use
446 * of_node_put() on it when done.
Simon Glass644ec0a2017-05-18 20:08:54 -0600447 */
448struct device_node *of_parse_phandle(const struct device_node *np,
449 const char *phandle_name, int index);
450
451/**
452 * of_parse_phandle_with_args() - Find a node pointed by phandle in a list
453 *
454 * @np: pointer to a device tree node containing a list
455 * @list_name: property name that contains a list
456 * @cells_name: property name that specifies phandles' arguments count
Patrick Delaunay01d89e32020-09-10 18:26:17 +0200457 * @cells_count: Cell count to use if @cells_name is NULL
Simon Glass644ec0a2017-05-18 20:08:54 -0600458 * @index: index of a phandle to parse out
459 * @out_args: optional pointer to output arguments structure (will be filled)
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100460 * Return:
461 * 0 on success (with @out_args filled out if not NULL), -ENOENT if
462 * @list_name does not exist, -EINVAL if a phandle was not found,
463 * @cells_name could not be found, the arguments were truncated or there
464 * were too many arguments.
Simon Glass644ec0a2017-05-18 20:08:54 -0600465 *
466 * This function is useful to parse lists of phandles and their arguments.
467 * Returns 0 on success and fills out_args, on error returns appropriate
468 * errno value.
469 *
470 * Caller is responsible to call of_node_put() on the returned out_args->np
471 * pointer.
472 *
473 * Example:
474 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100475 * .. code-block::
Simon Glass644ec0a2017-05-18 20:08:54 -0600476 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100477 * phandle1: node1 {
478 * #list-cells = <2>;
479 * };
480 * phandle2: node2 {
481 * #list-cells = <1>;
482 * };
483 * node3 {
484 * list = <&phandle1 1 2 &phandle2 3>;
485 * };
Simon Glass644ec0a2017-05-18 20:08:54 -0600486 *
487 * To get a device_node of the `node2' node you may call this:
488 * of_parse_phandle_with_args(node3, "list", "#list-cells", 1, &args);
489 */
490int of_parse_phandle_with_args(const struct device_node *np,
491 const char *list_name, const char *cells_name,
Patrick Delaunay01d89e32020-09-10 18:26:17 +0200492 int cells_count, int index,
493 struct of_phandle_args *out_args);
Simon Glass644ec0a2017-05-18 20:08:54 -0600494
495/**
Patrice Chotard642346a2017-07-18 11:57:08 +0200496 * of_count_phandle_with_args() - Count the number of phandle in a list
497 *
498 * @np: pointer to a device tree node containing a list
499 * @list_name: property name that contains a list
500 * @cells_name: property name that specifies phandles' arguments count
Patrick Delaunay89f68302020-09-25 09:41:14 +0200501 * @cells_count: Cell count to use if @cells_name is NULL
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100502 * Return:
503 * number of phandle found, -ENOENT if @list_name does not exist,
504 * -EINVAL if a phandle was not found, @cells_name could not be found,
505 * the arguments were truncated or there were too many arguments.
Patrice Chotard642346a2017-07-18 11:57:08 +0200506 *
507 * Returns number of phandle found on success, on error returns appropriate
508 * errno value.
Patrice Chotard642346a2017-07-18 11:57:08 +0200509 */
510int of_count_phandle_with_args(const struct device_node *np,
Patrick Delaunay89f68302020-09-25 09:41:14 +0200511 const char *list_name, const char *cells_name,
512 int cells_count);
Patrice Chotard642346a2017-07-18 11:57:08 +0200513
514/**
Simon Glass644ec0a2017-05-18 20:08:54 -0600515 * of_alias_scan() - Scan all properties of the 'aliases' node
516 *
517 * The function scans all the properties of the 'aliases' node and populates
518 * the lookup table with the properties. It returns the number of alias
519 * properties found, or an error code in case of failure.
520 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100521 * Return: 9 if OK, -ENOMEM if not enough memory
Simon Glass644ec0a2017-05-18 20:08:54 -0600522 */
523int of_alias_scan(void);
524
525/**
526 * of_alias_get_id - Get alias id for the given device_node
527 *
528 * Travels the lookup table to get the alias id for the given device_node and
529 * alias stem.
530 *
531 * @np: Pointer to the given device_node
532 * @stem: Alias stem of the given device_node
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100533 * Return: alias ID, if found, else -ENODEV
Simon Glass644ec0a2017-05-18 20:08:54 -0600534 */
535int of_alias_get_id(const struct device_node *np, const char *stem);
536
537/**
Michal Simek5ebc7c72019-01-31 16:30:57 +0100538 * of_alias_get_highest_id - Get highest alias id for the given stem
539 * @stem: Alias stem to be examined
540 *
541 * The function travels the lookup table to get the highest alias id for the
542 * given alias stem.
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100543 * Return: alias ID, if found, else -1
Michal Simek5ebc7c72019-01-31 16:30:57 +0100544 */
545int of_alias_get_highest_id(const char *stem);
546
547/**
Simon Glass644ec0a2017-05-18 20:08:54 -0600548 * of_get_stdout() - Get node to use for stdout
549 *
Patrick Delaunaybe74f712022-01-12 10:53:49 +0100550 * Return: node referred to by stdout-path alias, or NULL if none
Simon Glass644ec0a2017-05-18 20:08:54 -0600551 */
552struct device_node *of_get_stdout(void);
553
Simon Glass39e42be2022-07-30 15:52:13 -0600554/**
555 * of_write_prop() - Write a property to the device tree
556 *
557 * @np: device node to which the property value is to be written
558 * @propname: name of the property to write
559 * @value: value of the property
560 * @len: length of the property in bytes
561 * Returns: 0 if OK, -ve on error
562 */
563int of_write_prop(struct device_node *np, const char *propname, int len,
564 const void *value);
565
Simon Glassffe90392022-09-06 20:27:02 -0600566/**
567 * of_add_subnode() - add a new subnode to a node
568 *
569 * @node: parent node to add to
570 * @name: name of subnode
571 * @len: length of name (so the caller does not need to nul-terminate a
572 * partial string), or -1 for strlen(@name)
573 * @subnodep: returns pointer to new subnode (valid if the function returns 0
574 * or -EEXIST)
575 * Returns 0 if OK, -EEXIST if already exists, -ENOMEM if out of memory, other
576 * -ve on other error
577 */
578int of_add_subnode(struct device_node *node, const char *name, int len,
579 struct device_node **subnodep);
580
Simon Glass644ec0a2017-05-18 20:08:54 -0600581#endif