xref: /rk3399_rockchip-uboot/include/dm/of_access.h (revision 04539b46d521a675e53806a7cc0164ad191203b0)
1644ec0a9SSimon Glass /*
2644ec0a9SSimon Glass  * Originally from Linux v4.9
3644ec0a9SSimon Glass  * Copyright (C) 1996-2005 Paul Mackerras.
4644ec0a9SSimon Glass  *
5644ec0a9SSimon Glass  * Updates for PPC64 by Peter Bergner & David Engebretsen, IBM Corp.
6644ec0a9SSimon Glass  * Updates for SPARC64 by David S. Miller
7644ec0a9SSimon Glass  * Derived from PowerPC and Sparc prom.h files by Stephen Rothwell, IBM Corp.
8644ec0a9SSimon Glass  *
9644ec0a9SSimon Glass  * Copyright (c) 2017 Google, Inc
10644ec0a9SSimon Glass  * Written by Simon Glass <sjg@chromium.org>
11644ec0a9SSimon Glass  *
12644ec0a9SSimon Glass  * Modified for U-Boot
13644ec0a9SSimon Glass  * Copyright (c) 2017 Google, Inc
14644ec0a9SSimon Glass  *
15644ec0a9SSimon Glass  * SPDX-License-Identifier:	GPL-2.0+
16644ec0a9SSimon Glass  */
17644ec0a9SSimon Glass 
18644ec0a9SSimon Glass #ifndef _DM_OF_ACCESS_H
19644ec0a9SSimon Glass #define _DM_OF_ACCESS_H
20644ec0a9SSimon Glass 
21644ec0a9SSimon Glass #include <dm/of.h>
22644ec0a9SSimon Glass 
23644ec0a9SSimon Glass /**
24644ec0a9SSimon Glass  * of_find_all_nodes - Get next node in global list
25644ec0a9SSimon Glass  * @prev:	Previous node or NULL to start iteration
26644ec0a9SSimon Glass  *		of_node_put() will be called on it
27644ec0a9SSimon Glass  *
28644ec0a9SSimon Glass  * Returns a node pointer with refcount incremented, use
29644ec0a9SSimon Glass  * of_node_put() on it when done.
30644ec0a9SSimon Glass  */
31644ec0a9SSimon Glass struct device_node *of_find_all_nodes(struct device_node *prev);
32644ec0a9SSimon Glass 
33644ec0a9SSimon Glass #define for_each_of_allnodes_from(from, dn) \
34644ec0a9SSimon Glass 	for (dn = of_find_all_nodes(from); dn; dn = of_find_all_nodes(dn))
35644ec0a9SSimon Glass #define for_each_of_allnodes(dn) for_each_of_allnodes_from(NULL, dn)
36644ec0a9SSimon Glass 
37644ec0a9SSimon Glass /* Dummy functions to mirror Linux. These are not used in U-Boot */
38644ec0a9SSimon Glass #define of_node_get(x) (x)
39644ec0a9SSimon Glass static inline void of_node_put(const struct device_node *np) { }
40644ec0a9SSimon Glass 
41644ec0a9SSimon Glass /**
42644ec0a9SSimon Glass  * of_n_addr_cells() - Get the number of address cells for a node
43644ec0a9SSimon Glass  *
44644ec0a9SSimon Glass  * This walks back up the tree to find the closest #address-cells property
45644ec0a9SSimon Glass  * which controls the given node.
46644ec0a9SSimon Glass  *
47644ec0a9SSimon Glass  * @np: Node pointer to check
48644ec0a9SSimon Glass  * @return number of address cells this node uses
49644ec0a9SSimon Glass  */
50644ec0a9SSimon Glass int of_n_addr_cells(const struct device_node *np);
51644ec0a9SSimon Glass 
52644ec0a9SSimon Glass /**
53644ec0a9SSimon Glass  * of_n_size_cells() - Get the number of size cells for a node
54644ec0a9SSimon Glass  *
55644ec0a9SSimon Glass  * This walks back up the tree to find the closest #size-cells property
56644ec0a9SSimon Glass  * which controls the given node.
57644ec0a9SSimon Glass  *
58644ec0a9SSimon Glass  * @np: Node pointer to check
59644ec0a9SSimon Glass  * @return number of size cells this node uses
60644ec0a9SSimon Glass  */
61644ec0a9SSimon Glass int of_n_size_cells(const struct device_node *np);
62644ec0a9SSimon Glass 
63644ec0a9SSimon Glass /**
64878d68c0SSimon Glass  * of_simple_addr_cells() - Get the address cells property in a node
65878d68c0SSimon Glass  *
66878d68c0SSimon Glass  * This function matches fdt_address_cells().
67878d68c0SSimon Glass  *
68878d68c0SSimon Glass  * @np: Node pointer to check
69878d68c0SSimon Glass  * @return value of #address-cells property in this node, or 2 if none
70878d68c0SSimon Glass  */
71878d68c0SSimon Glass int of_simple_addr_cells(const struct device_node *np);
72878d68c0SSimon Glass 
73878d68c0SSimon Glass /**
74878d68c0SSimon Glass  * of_simple_size_cells() - Get the size cells property in a node
75878d68c0SSimon Glass  *
76878d68c0SSimon Glass  * This function matches fdt_size_cells().
77878d68c0SSimon Glass  *
78878d68c0SSimon Glass  * @np: Node pointer to check
79878d68c0SSimon Glass  * @return value of #size-cells property in this node, or 2 if none
80878d68c0SSimon Glass  */
81878d68c0SSimon Glass int of_simple_size_cells(const struct device_node *np);
82878d68c0SSimon Glass 
83878d68c0SSimon Glass /**
84644ec0a9SSimon Glass  * of_find_property() - find a property in a node
85644ec0a9SSimon Glass  *
86644ec0a9SSimon Glass  * @np: Pointer to device node holding property
87644ec0a9SSimon Glass  * @name: Name of property
88644ec0a9SSimon Glass  * @lenp: If non-NULL, returns length of property
89644ec0a9SSimon Glass  * @return pointer to property, or NULL if not found
90644ec0a9SSimon Glass  */
91644ec0a9SSimon Glass struct property *of_find_property(const struct device_node *np,
92644ec0a9SSimon Glass 				  const char *name, int *lenp);
93644ec0a9SSimon Glass 
94644ec0a9SSimon Glass /**
95644ec0a9SSimon Glass  * of_get_property() - get a property value
96644ec0a9SSimon Glass  *
97644ec0a9SSimon Glass  * Find a property with a given name for a given node and return the value.
98644ec0a9SSimon Glass  *
99644ec0a9SSimon Glass  * @np: Pointer to device node holding property
100644ec0a9SSimon Glass  * @name: Name of property
101644ec0a9SSimon Glass  * @lenp: If non-NULL, returns length of property
102644ec0a9SSimon Glass  * @return pointer to property value, or NULL if not found
103644ec0a9SSimon Glass  */
104644ec0a9SSimon Glass const void *of_get_property(const struct device_node *np, const char *name,
105644ec0a9SSimon Glass 			    int *lenp);
106644ec0a9SSimon Glass 
107644ec0a9SSimon Glass /**
108644ec0a9SSimon Glass  * of_device_is_compatible() - Check if the node matches given constraints
109644ec0a9SSimon Glass  * @device: pointer to node
110644ec0a9SSimon Glass  * @compat: required compatible string, NULL or "" for any match
111644ec0a9SSimon Glass  * @type: required device_type value, NULL or "" for any match
112644ec0a9SSimon Glass  * @name: required node name, NULL or "" for any match
113644ec0a9SSimon Glass  *
114644ec0a9SSimon Glass  * Checks if the given @compat, @type and @name strings match the
115644ec0a9SSimon Glass  * properties of the given @device. A constraints can be skipped by
116644ec0a9SSimon Glass  * passing NULL or an empty string as the constraint.
117644ec0a9SSimon Glass  *
118644ec0a9SSimon Glass  * @return 0 for no match, and a positive integer on match. The return
119644ec0a9SSimon Glass  * value is a relative score with larger values indicating better
120644ec0a9SSimon Glass  * matches. The score is weighted for the most specific compatible value
121644ec0a9SSimon Glass  * to get the highest score. Matching type is next, followed by matching
122644ec0a9SSimon Glass  * name. Practically speaking, this results in the following priority
123644ec0a9SSimon Glass  * order for matches:
124644ec0a9SSimon Glass  *
125644ec0a9SSimon Glass  * 1. specific compatible && type && name
126644ec0a9SSimon Glass  * 2. specific compatible && type
127644ec0a9SSimon Glass  * 3. specific compatible && name
128644ec0a9SSimon Glass  * 4. specific compatible
129644ec0a9SSimon Glass  * 5. general compatible && type && name
130644ec0a9SSimon Glass  * 6. general compatible && type
131644ec0a9SSimon Glass  * 7. general compatible && name
132644ec0a9SSimon Glass  * 8. general compatible
133644ec0a9SSimon Glass  * 9. type && name
134644ec0a9SSimon Glass  * 10. type
135644ec0a9SSimon Glass  * 11. name
136644ec0a9SSimon Glass  */
137644ec0a9SSimon Glass int of_device_is_compatible(const struct device_node *np, const char *compat,
138644ec0a9SSimon Glass 			    const char *type, const char *name);
139644ec0a9SSimon Glass 
140644ec0a9SSimon Glass /**
141644ec0a9SSimon Glass  * of_device_is_available() - check if a device is available for use
142644ec0a9SSimon Glass  *
143644ec0a9SSimon Glass  * @device: Node to check for availability
144644ec0a9SSimon Glass  *
145644ec0a9SSimon Glass  * @return true if the status property is absent or set to "okay", false
146644ec0a9SSimon Glass  * otherwise
147644ec0a9SSimon Glass  */
148644ec0a9SSimon Glass bool of_device_is_available(const struct device_node *np);
149644ec0a9SSimon Glass 
150644ec0a9SSimon Glass /**
151644ec0a9SSimon Glass  * of_get_parent() - Get a node's parent, if any
152644ec0a9SSimon Glass  *
153644ec0a9SSimon Glass  * @node: Node to check
154644ec0a9SSimon Glass  * @eturns a node pointer, or NULL if none
155644ec0a9SSimon Glass  */
156644ec0a9SSimon Glass struct device_node *of_get_parent(const struct device_node *np);
157644ec0a9SSimon Glass 
158644ec0a9SSimon Glass /**
159644ec0a9SSimon Glass  * of_find_node_opts_by_path() - Find a node matching a full OF path
160644ec0a9SSimon Glass  *
161644ec0a9SSimon Glass  * @path: Either the full path to match, or if the path does not start with
162644ec0a9SSimon Glass  *	'/', the name of a property of the /aliases node (an alias). In the
163644ec0a9SSimon Glass  *	case of an alias, the node matching the alias' value will be returned.
164644ec0a9SSimon Glass  * @opts: Address of a pointer into which to store the start of an options
165644ec0a9SSimon Glass  *	string appended to the end of the path with a ':' separator. Can be NULL
166644ec0a9SSimon Glass  *
167644ec0a9SSimon Glass  * Valid paths:
168644ec0a9SSimon Glass  *	/foo/bar	Full path
169644ec0a9SSimon Glass  *	foo		Valid alias
170644ec0a9SSimon Glass  *	foo/bar		Valid alias + relative path
171644ec0a9SSimon Glass  *
172644ec0a9SSimon Glass  * @return a node pointer or NULL if not found
173644ec0a9SSimon Glass  */
174644ec0a9SSimon Glass struct device_node *of_find_node_opts_by_path(const char *path,
175644ec0a9SSimon Glass 					      const char **opts);
176644ec0a9SSimon Glass 
177644ec0a9SSimon Glass static inline struct device_node *of_find_node_by_path(const char *path)
178644ec0a9SSimon Glass {
179644ec0a9SSimon Glass 	return of_find_node_opts_by_path(path, NULL);
180644ec0a9SSimon Glass }
181644ec0a9SSimon Glass 
182644ec0a9SSimon Glass /**
183644ec0a9SSimon Glass  * of_find_compatible_node() - find a node based on its compatible string
184644ec0a9SSimon Glass  *
185644ec0a9SSimon Glass  * Find a node based on type and one of the tokens in its "compatible" property
186644ec0a9SSimon Glass  * @from: Node to start searching from or NULL. the node you pass will not be
187644ec0a9SSimon Glass  *	searched, only the next one will; typically, you pass what the previous
188644ec0a9SSimon Glass  *	call returned.
189644ec0a9SSimon Glass  * @type: The type string to match "device_type" or NULL to ignore
190644ec0a9SSimon Glass  * @compatible:	The string to match to one of the tokens in the device
191644ec0a9SSimon Glass  *	"compatible" list.
192644ec0a9SSimon Glass  * @return node pointer or NULL if not found
193644ec0a9SSimon Glass  */
194644ec0a9SSimon Glass struct device_node *of_find_compatible_node(struct device_node *from,
195644ec0a9SSimon Glass 				const char *type, const char *compatible);
196644ec0a9SSimon Glass 
197644ec0a9SSimon Glass /**
198644ec0a9SSimon Glass  * of_find_node_by_phandle() - Find a node given a phandle
199644ec0a9SSimon Glass  *
200644ec0a9SSimon Glass  * @handle:	phandle of the node to find
201644ec0a9SSimon Glass  *
202644ec0a9SSimon Glass  * @return node pointer, or NULL if not found
203644ec0a9SSimon Glass  */
204644ec0a9SSimon Glass struct device_node *of_find_node_by_phandle(phandle handle);
205644ec0a9SSimon Glass 
206644ec0a9SSimon Glass /**
207644ec0a9SSimon Glass  * of_read_u32() - Find and read a 32-bit integer from a property
208644ec0a9SSimon Glass  *
209644ec0a9SSimon Glass  * Search for a property in a device node and read a 32-bit value from
210644ec0a9SSimon Glass  * it.
211644ec0a9SSimon Glass  *
212644ec0a9SSimon Glass  * @np:		device node from which the property value is to be read.
213644ec0a9SSimon Glass  * @propname:	name of the property to be searched.
214644ec0a9SSimon Glass  * @outp:	pointer to return value, modified only if return value is 0.
215644ec0a9SSimon Glass  *
216644ec0a9SSimon Glass  * @return 0 on success, -EINVAL if the property does not exist,
217644ec0a9SSimon Glass  * -ENODATA if property does not have a value, and -EOVERFLOW if the
218644ec0a9SSimon Glass  * property data isn't large enough.
219644ec0a9SSimon Glass  */
220644ec0a9SSimon Glass int of_read_u32(const struct device_node *np, const char *propname, u32 *outp);
221644ec0a9SSimon Glass 
222644ec0a9SSimon Glass /**
223d59cf5aeSJoseph Chen  * of_property_read_u64 - Find and read a 64 bit integer from a property
224d59cf5aeSJoseph Chen  * @np:         device node from which the property value is to be read.
225d59cf5aeSJoseph Chen  * @propname:   name of the property to be searched.
226d59cf5aeSJoseph Chen  * @out_value:  pointer to return value, modified only if return value is 0.
227d59cf5aeSJoseph Chen  *
228d59cf5aeSJoseph Chen  * Search for a property in a device node and read a 64-bit value from
229d59cf5aeSJoseph Chen  * it. Returns 0 on success, -EINVAL if the property does not exist,
230d59cf5aeSJoseph Chen  * -ENODATA if property does not have a value, and -EOVERFLOW if the
231d59cf5aeSJoseph Chen  * property data isn't large enough.
232d59cf5aeSJoseph Chen  *
233d59cf5aeSJoseph Chen  * The out_value is modified only if a valid u64 value can be decoded.
234d59cf5aeSJoseph Chen  */
235d59cf5aeSJoseph Chen int of_property_read_u64(const struct device_node *np, const char *propname,
236d59cf5aeSJoseph Chen                          u64 *out_value);
237d59cf5aeSJoseph Chen 
238d59cf5aeSJoseph Chen /**
239644ec0a9SSimon Glass  * of_read_u32_array() - Find and read an array of 32 bit integers
240644ec0a9SSimon Glass  *
241644ec0a9SSimon Glass  * Search for a property in a device node and read 32-bit value(s) from
242644ec0a9SSimon Glass  * it.
243644ec0a9SSimon Glass  *
244644ec0a9SSimon Glass  * @np:		device node from which the property value is to be read.
245644ec0a9SSimon Glass  * @propname:	name of the property to be searched.
246644ec0a9SSimon Glass  * @out_values:	pointer to return value, modified only if return value is 0.
247644ec0a9SSimon Glass  * @sz:		number of array elements to read
248644ec0a9SSimon Glass  * @return 0 on success, -EINVAL if the property does not exist, -ENODATA
249644ec0a9SSimon Glass  * if property does not have a value, and -EOVERFLOW is longer than sz.
250644ec0a9SSimon Glass  */
251644ec0a9SSimon Glass int of_read_u32_array(const struct device_node *np, const char *propname,
252644ec0a9SSimon Glass 		      u32 *out_values, size_t sz);
253644ec0a9SSimon Glass 
254644ec0a9SSimon Glass /**
255*04539b46SJoseph Chen  * of_write_u32_array() - Find and write an array of 32 bit integers
256*04539b46SJoseph Chen  *
257*04539b46SJoseph Chen  * Search for a property in a device node and write 32-bit value(s) to
258*04539b46SJoseph Chen  * it.
259*04539b46SJoseph Chen  *
260*04539b46SJoseph Chen  * @np:		device node from which the property value is to be read.
261*04539b46SJoseph Chen  * @propname:	name of the property to be searched.
262*04539b46SJoseph Chen  * @values:	pointer to update value, modified only if return value is 0.
263*04539b46SJoseph Chen  * @sz:		number of array elements to read
264*04539b46SJoseph Chen  * @return 0 on success, -EINVAL if the property does not exist, -ENODATA
265*04539b46SJoseph Chen  * if property does not have a value, and -EOVERFLOW is longer than sz.
266*04539b46SJoseph Chen  */
267*04539b46SJoseph Chen int of_write_u32_array(const struct device_node *np, const char *propname,
268*04539b46SJoseph Chen 		       u32 *values, size_t sz);
269*04539b46SJoseph Chen 
270*04539b46SJoseph Chen /**
271644ec0a9SSimon Glass  * of_property_match_string() - Find string in a list and return index
272644ec0a9SSimon Glass  *
273644ec0a9SSimon Glass  * This function searches a string list property and returns the index
274644ec0a9SSimon Glass  * of a specific string value.
275644ec0a9SSimon Glass  *
276644ec0a9SSimon Glass  * @np: pointer to node containing string list property
277644ec0a9SSimon Glass  * @propname: string list property name
278644ec0a9SSimon Glass  * @string: pointer to string to search for in string list
279644ec0a9SSimon Glass  * @return 0 on success, -EINVAL if the property does not exist, -ENODATA
280644ec0a9SSimon Glass  * if property does not have a value, and -EOVERFLOW is longer than sz.
281644ec0a9SSimon Glass  */
282644ec0a9SSimon Glass int of_property_match_string(const struct device_node *np, const char *propname,
283644ec0a9SSimon Glass 			     const char *string);
284644ec0a9SSimon Glass 
285644ec0a9SSimon Glass int of_property_read_string_helper(const struct device_node *np,
286644ec0a9SSimon Glass 				   const char *propname, const char **out_strs,
287644ec0a9SSimon Glass 				   size_t sz, int index);
288644ec0a9SSimon Glass 
289644ec0a9SSimon Glass /**
290644ec0a9SSimon Glass  * of_property_read_string_index() - Find and read a string from a multiple
291644ec0a9SSimon Glass  * strings property.
292644ec0a9SSimon Glass  * @np:		device node from which the property value is to be read.
293644ec0a9SSimon Glass  * @propname:	name of the property to be searched.
294644ec0a9SSimon Glass  * @index:	index of the string in the list of strings
295644ec0a9SSimon Glass  * @out_string:	pointer to null terminated return string, modified only if
296644ec0a9SSimon Glass  *		return value is 0.
297644ec0a9SSimon Glass  *
298644ec0a9SSimon Glass  * Search for a property in a device tree node and retrieve a null
299644ec0a9SSimon Glass  * terminated string value (pointer to data, not a copy) in the list of strings
300644ec0a9SSimon Glass  * contained in that property.
301644ec0a9SSimon Glass  * Returns 0 on success, -EINVAL if the property does not exist, -ENODATA if
302644ec0a9SSimon Glass  * property does not have a value, and -EILSEQ if the string is not
303644ec0a9SSimon Glass  * null-terminated within the length of the property data.
304644ec0a9SSimon Glass  *
305644ec0a9SSimon Glass  * The out_string pointer is modified only if a valid string can be decoded.
306644ec0a9SSimon Glass  */
307644ec0a9SSimon Glass static inline int of_property_read_string_index(const struct device_node *np,
308644ec0a9SSimon Glass 						const char *propname,
309644ec0a9SSimon Glass 						int index, const char **output)
310644ec0a9SSimon Glass {
311644ec0a9SSimon Glass 	int rc = of_property_read_string_helper(np, propname, output, 1, index);
312644ec0a9SSimon Glass 	return rc < 0 ? rc : 0;
313644ec0a9SSimon Glass }
314644ec0a9SSimon Glass 
315644ec0a9SSimon Glass /**
3168c293d6aSSimon Glass  * of_property_count_strings() - Find and return the number of strings from a
3178c293d6aSSimon Glass  * multiple strings property.
3188c293d6aSSimon Glass  * @np:		device node from which the property value is to be read.
3198c293d6aSSimon Glass  * @propname:	name of the property to be searched.
3208c293d6aSSimon Glass  *
3218c293d6aSSimon Glass  * Search for a property in a device tree node and retrieve the number of null
3228c293d6aSSimon Glass  * terminated string contain in it. Returns the number of strings on
3238c293d6aSSimon Glass  * success, -EINVAL if the property does not exist, -ENODATA if property
3248c293d6aSSimon Glass  * does not have a value, and -EILSEQ if the string is not null-terminated
3258c293d6aSSimon Glass  * within the length of the property data.
3268c293d6aSSimon Glass  */
3278c293d6aSSimon Glass static inline int of_property_count_strings(const struct device_node *np,
3288c293d6aSSimon Glass 					    const char *propname)
3298c293d6aSSimon Glass {
3308c293d6aSSimon Glass 	return of_property_read_string_helper(np, propname, NULL, 0, 0);
3318c293d6aSSimon Glass }
3328c293d6aSSimon Glass 
3338c293d6aSSimon Glass /**
334644ec0a9SSimon Glass  * of_parse_phandle - Resolve a phandle property to a device_node pointer
335644ec0a9SSimon Glass  * @np: Pointer to device node holding phandle property
336644ec0a9SSimon Glass  * @phandle_name: Name of property holding a phandle value
337644ec0a9SSimon Glass  * @index: For properties holding a table of phandles, this is the index into
338644ec0a9SSimon Glass  *         the table
339644ec0a9SSimon Glass  *
340644ec0a9SSimon Glass  * Returns the device_node pointer with refcount incremented.  Use
341644ec0a9SSimon Glass  * of_node_put() on it when done.
342644ec0a9SSimon Glass  */
343644ec0a9SSimon Glass struct device_node *of_parse_phandle(const struct device_node *np,
344644ec0a9SSimon Glass 				     const char *phandle_name, int index);
345644ec0a9SSimon Glass 
346644ec0a9SSimon Glass /**
347644ec0a9SSimon Glass  * of_parse_phandle_with_args() - Find a node pointed by phandle in a list
348644ec0a9SSimon Glass  *
349644ec0a9SSimon Glass  * @np:		pointer to a device tree node containing a list
350644ec0a9SSimon Glass  * @list_name:	property name that contains a list
351644ec0a9SSimon Glass  * @cells_name:	property name that specifies phandles' arguments count
352644ec0a9SSimon Glass  * @index:	index of a phandle to parse out
353644ec0a9SSimon Glass  * @out_args:	optional pointer to output arguments structure (will be filled)
354644ec0a9SSimon Glass  * @return 0 on success (with @out_args filled out if not NULL), -ENOENT if
355644ec0a9SSimon Glass  *	@list_name does not exist, -EINVAL if a phandle was not found,
356644ec0a9SSimon Glass  *	@cells_name could not be found, the arguments were truncated or there
357644ec0a9SSimon Glass  *	were too many arguments.
358644ec0a9SSimon Glass  *
359644ec0a9SSimon Glass  * This function is useful to parse lists of phandles and their arguments.
360644ec0a9SSimon Glass  * Returns 0 on success and fills out_args, on error returns appropriate
361644ec0a9SSimon Glass  * errno value.
362644ec0a9SSimon Glass  *
363644ec0a9SSimon Glass  * Caller is responsible to call of_node_put() on the returned out_args->np
364644ec0a9SSimon Glass  * pointer.
365644ec0a9SSimon Glass  *
366644ec0a9SSimon Glass  * Example:
367644ec0a9SSimon Glass  *
368644ec0a9SSimon Glass  * phandle1: node1 {
369644ec0a9SSimon Glass  *	#list-cells = <2>;
370644ec0a9SSimon Glass  * }
371644ec0a9SSimon Glass  *
372644ec0a9SSimon Glass  * phandle2: node2 {
373644ec0a9SSimon Glass  *	#list-cells = <1>;
374644ec0a9SSimon Glass  * }
375644ec0a9SSimon Glass  *
376644ec0a9SSimon Glass  * node3 {
377644ec0a9SSimon Glass  *	list = <&phandle1 1 2 &phandle2 3>;
378644ec0a9SSimon Glass  * }
379644ec0a9SSimon Glass  *
380644ec0a9SSimon Glass  * To get a device_node of the `node2' node you may call this:
381644ec0a9SSimon Glass  * of_parse_phandle_with_args(node3, "list", "#list-cells", 1, &args);
382644ec0a9SSimon Glass  */
383644ec0a9SSimon Glass int of_parse_phandle_with_args(const struct device_node *np,
384644ec0a9SSimon Glass 			       const char *list_name, const char *cells_name,
385644ec0a9SSimon Glass 			       int index, struct of_phandle_args *out_args);
386644ec0a9SSimon Glass 
387644ec0a9SSimon Glass /**
388642346aeSPatrice Chotard  * of_count_phandle_with_args() - Count the number of phandle in a list
389642346aeSPatrice Chotard  *
390642346aeSPatrice Chotard  * @np:		pointer to a device tree node containing a list
391642346aeSPatrice Chotard  * @list_name:	property name that contains a list
392642346aeSPatrice Chotard  * @cells_name:	property name that specifies phandles' arguments count
393642346aeSPatrice Chotard  * @return number of phandle found, -ENOENT if
394642346aeSPatrice Chotard  *	@list_name does not exist, -EINVAL if a phandle was not found,
395642346aeSPatrice Chotard  *	@cells_name could not be found, the arguments were truncated or there
396642346aeSPatrice Chotard  *	were too many arguments.
397642346aeSPatrice Chotard  *
398642346aeSPatrice Chotard  * Returns number of phandle found on success, on error returns appropriate
399642346aeSPatrice Chotard  * errno value.
400642346aeSPatrice Chotard  *
401642346aeSPatrice Chotard  */
402642346aeSPatrice Chotard int of_count_phandle_with_args(const struct device_node *np,
403642346aeSPatrice Chotard 			       const char *list_name, const char *cells_name);
404642346aeSPatrice Chotard 
405642346aeSPatrice Chotard /**
406644ec0a9SSimon Glass  * of_alias_scan() - Scan all properties of the 'aliases' node
407644ec0a9SSimon Glass  *
408644ec0a9SSimon Glass  * The function scans all the properties of the 'aliases' node and populates
409644ec0a9SSimon Glass  * the lookup table with the properties.  It returns the number of alias
410644ec0a9SSimon Glass  * properties found, or an error code in case of failure.
411644ec0a9SSimon Glass  *
412644ec0a9SSimon Glass  * @return 9 if OK, -ENOMEM if not enough memory
413644ec0a9SSimon Glass  */
414644ec0a9SSimon Glass int of_alias_scan(void);
415644ec0a9SSimon Glass 
416644ec0a9SSimon Glass /**
417644ec0a9SSimon Glass  * of_alias_get_id - Get alias id for the given device_node
418644ec0a9SSimon Glass  *
419644ec0a9SSimon Glass  * Travels the lookup table to get the alias id for the given device_node and
420644ec0a9SSimon Glass  * alias stem.
421644ec0a9SSimon Glass  *
422644ec0a9SSimon Glass  * @np:		Pointer to the given device_node
423644ec0a9SSimon Glass  * @stem:	Alias stem of the given device_node
424644ec0a9SSimon Glass  * @return alias ID, if found, else -ENODEV
425644ec0a9SSimon Glass  */
426644ec0a9SSimon Glass int of_alias_get_id(const struct device_node *np, const char *stem);
427644ec0a9SSimon Glass 
428644ec0a9SSimon Glass /**
4292e02c4e2SJoseph Chen  * of_alias_get_dev - Get device_node by given stem and alias id
4302e02c4e2SJoseph Chen  *
4312e02c4e2SJoseph Chen  * Travels the lookup table to get the device_node by given stem and alias id.
4322e02c4e2SJoseph Chen  *
4332e02c4e2SJoseph Chen  * @stem:	Alias stem of the given device_node
4342e02c4e2SJoseph Chen  * @id:         Alias id of the given device_node
4352e02c4e2SJoseph Chen  * @return device_node, if found, else NULL
4362e02c4e2SJoseph Chen  */
4372e02c4e2SJoseph Chen struct device_node *of_alias_get_dev(const char *stem, int id);
4382e02c4e2SJoseph Chen 
4392e02c4e2SJoseph Chen /**
4402e02c4e2SJoseph Chen  * of_alias_dump - Dump of alias nodes added in aliases_lookup.
4412e02c4e2SJoseph Chen  */
4422e02c4e2SJoseph Chen struct device_node *of_alias_dump(void);
4432e02c4e2SJoseph Chen 
4442e02c4e2SJoseph Chen /**
445644ec0a9SSimon Glass  * of_get_stdout() - Get node to use for stdout
446644ec0a9SSimon Glass  *
447644ec0a9SSimon Glass  * @return node referred to by stdout-path alias, or NULL if none
448644ec0a9SSimon Glass  */
449644ec0a9SSimon Glass struct device_node *of_get_stdout(void);
450644ec0a9SSimon Glass 
451644ec0a9SSimon Glass #endif
452