xref: /rk3399_rockchip-uboot/include/dm/of_access.h (revision 8c293d6ac9c9f698a2b5db8def9d1cef725b5011)
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 /**
64644ec0a9SSimon Glass  * of_find_property() - find a property in a node
65644ec0a9SSimon Glass  *
66644ec0a9SSimon Glass  * @np: Pointer to device node holding property
67644ec0a9SSimon Glass  * @name: Name of property
68644ec0a9SSimon Glass  * @lenp: If non-NULL, returns length of property
69644ec0a9SSimon Glass  * @return pointer to property, or NULL if not found
70644ec0a9SSimon Glass  */
71644ec0a9SSimon Glass struct property *of_find_property(const struct device_node *np,
72644ec0a9SSimon Glass 				  const char *name, int *lenp);
73644ec0a9SSimon Glass 
74644ec0a9SSimon Glass /**
75644ec0a9SSimon Glass  * of_get_property() - get a property value
76644ec0a9SSimon Glass  *
77644ec0a9SSimon Glass  * Find a property with a given name for a given node and return the value.
78644ec0a9SSimon Glass  *
79644ec0a9SSimon Glass  * @np: Pointer to device node holding property
80644ec0a9SSimon Glass  * @name: Name of property
81644ec0a9SSimon Glass  * @lenp: If non-NULL, returns length of property
82644ec0a9SSimon Glass  * @return pointer to property value, or NULL if not found
83644ec0a9SSimon Glass  */
84644ec0a9SSimon Glass const void *of_get_property(const struct device_node *np, const char *name,
85644ec0a9SSimon Glass 			    int *lenp);
86644ec0a9SSimon Glass 
87644ec0a9SSimon Glass /**
88644ec0a9SSimon Glass  * of_device_is_compatible() - Check if the node matches given constraints
89644ec0a9SSimon Glass  * @device: pointer to node
90644ec0a9SSimon Glass  * @compat: required compatible string, NULL or "" for any match
91644ec0a9SSimon Glass  * @type: required device_type value, NULL or "" for any match
92644ec0a9SSimon Glass  * @name: required node name, NULL or "" for any match
93644ec0a9SSimon Glass  *
94644ec0a9SSimon Glass  * Checks if the given @compat, @type and @name strings match the
95644ec0a9SSimon Glass  * properties of the given @device. A constraints can be skipped by
96644ec0a9SSimon Glass  * passing NULL or an empty string as the constraint.
97644ec0a9SSimon Glass  *
98644ec0a9SSimon Glass  * @return 0 for no match, and a positive integer on match. The return
99644ec0a9SSimon Glass  * value is a relative score with larger values indicating better
100644ec0a9SSimon Glass  * matches. The score is weighted for the most specific compatible value
101644ec0a9SSimon Glass  * to get the highest score. Matching type is next, followed by matching
102644ec0a9SSimon Glass  * name. Practically speaking, this results in the following priority
103644ec0a9SSimon Glass  * order for matches:
104644ec0a9SSimon Glass  *
105644ec0a9SSimon Glass  * 1. specific compatible && type && name
106644ec0a9SSimon Glass  * 2. specific compatible && type
107644ec0a9SSimon Glass  * 3. specific compatible && name
108644ec0a9SSimon Glass  * 4. specific compatible
109644ec0a9SSimon Glass  * 5. general compatible && type && name
110644ec0a9SSimon Glass  * 6. general compatible && type
111644ec0a9SSimon Glass  * 7. general compatible && name
112644ec0a9SSimon Glass  * 8. general compatible
113644ec0a9SSimon Glass  * 9. type && name
114644ec0a9SSimon Glass  * 10. type
115644ec0a9SSimon Glass  * 11. name
116644ec0a9SSimon Glass  */
117644ec0a9SSimon Glass int of_device_is_compatible(const struct device_node *np, const char *compat,
118644ec0a9SSimon Glass 			    const char *type, const char *name);
119644ec0a9SSimon Glass 
120644ec0a9SSimon Glass /**
121644ec0a9SSimon Glass  * of_device_is_available() - check if a device is available for use
122644ec0a9SSimon Glass  *
123644ec0a9SSimon Glass  * @device: Node to check for availability
124644ec0a9SSimon Glass  *
125644ec0a9SSimon Glass  * @return true if the status property is absent or set to "okay", false
126644ec0a9SSimon Glass  * otherwise
127644ec0a9SSimon Glass  */
128644ec0a9SSimon Glass bool of_device_is_available(const struct device_node *np);
129644ec0a9SSimon Glass 
130644ec0a9SSimon Glass /**
131644ec0a9SSimon Glass  * of_get_parent() - Get a node's parent, if any
132644ec0a9SSimon Glass  *
133644ec0a9SSimon Glass  * @node: Node to check
134644ec0a9SSimon Glass  * @eturns a node pointer, or NULL if none
135644ec0a9SSimon Glass  */
136644ec0a9SSimon Glass struct device_node *of_get_parent(const struct device_node *np);
137644ec0a9SSimon Glass 
138644ec0a9SSimon Glass /**
139644ec0a9SSimon Glass  * of_find_node_opts_by_path() - Find a node matching a full OF path
140644ec0a9SSimon Glass  *
141644ec0a9SSimon Glass  * @path: Either the full path to match, or if the path does not start with
142644ec0a9SSimon Glass  *	'/', the name of a property of the /aliases node (an alias). In the
143644ec0a9SSimon Glass  *	case of an alias, the node matching the alias' value will be returned.
144644ec0a9SSimon Glass  * @opts: Address of a pointer into which to store the start of an options
145644ec0a9SSimon Glass  *	string appended to the end of the path with a ':' separator. Can be NULL
146644ec0a9SSimon Glass  *
147644ec0a9SSimon Glass  * Valid paths:
148644ec0a9SSimon Glass  *	/foo/bar	Full path
149644ec0a9SSimon Glass  *	foo		Valid alias
150644ec0a9SSimon Glass  *	foo/bar		Valid alias + relative path
151644ec0a9SSimon Glass  *
152644ec0a9SSimon Glass  * @return a node pointer or NULL if not found
153644ec0a9SSimon Glass  */
154644ec0a9SSimon Glass struct device_node *of_find_node_opts_by_path(const char *path,
155644ec0a9SSimon Glass 					      const char **opts);
156644ec0a9SSimon Glass 
157644ec0a9SSimon Glass static inline struct device_node *of_find_node_by_path(const char *path)
158644ec0a9SSimon Glass {
159644ec0a9SSimon Glass 	return of_find_node_opts_by_path(path, NULL);
160644ec0a9SSimon Glass }
161644ec0a9SSimon Glass 
162644ec0a9SSimon Glass /**
163644ec0a9SSimon Glass  * of_find_compatible_node() - find a node based on its compatible string
164644ec0a9SSimon Glass  *
165644ec0a9SSimon Glass  * Find a node based on type and one of the tokens in its "compatible" property
166644ec0a9SSimon Glass  * @from: Node to start searching from or NULL. the node you pass will not be
167644ec0a9SSimon Glass  *	searched, only the next one will; typically, you pass what the previous
168644ec0a9SSimon Glass  *	call returned.
169644ec0a9SSimon Glass  * @type: The type string to match "device_type" or NULL to ignore
170644ec0a9SSimon Glass  * @compatible:	The string to match to one of the tokens in the device
171644ec0a9SSimon Glass  *	"compatible" list.
172644ec0a9SSimon Glass  * @return node pointer or NULL if not found
173644ec0a9SSimon Glass  */
174644ec0a9SSimon Glass struct device_node *of_find_compatible_node(struct device_node *from,
175644ec0a9SSimon Glass 				const char *type, const char *compatible);
176644ec0a9SSimon Glass 
177644ec0a9SSimon Glass /**
178644ec0a9SSimon Glass  * of_find_node_by_phandle() - Find a node given a phandle
179644ec0a9SSimon Glass  *
180644ec0a9SSimon Glass  * @handle:	phandle of the node to find
181644ec0a9SSimon Glass  *
182644ec0a9SSimon Glass  * @return node pointer, or NULL if not found
183644ec0a9SSimon Glass  */
184644ec0a9SSimon Glass struct device_node *of_find_node_by_phandle(phandle handle);
185644ec0a9SSimon Glass 
186644ec0a9SSimon Glass /**
187644ec0a9SSimon Glass  * of_read_u32() - Find and read a 32-bit integer from a property
188644ec0a9SSimon Glass  *
189644ec0a9SSimon Glass  * Search for a property in a device node and read a 32-bit value from
190644ec0a9SSimon Glass  * it.
191644ec0a9SSimon Glass  *
192644ec0a9SSimon Glass  * @np:		device node from which the property value is to be read.
193644ec0a9SSimon Glass  * @propname:	name of the property to be searched.
194644ec0a9SSimon Glass  * @outp:	pointer to return value, modified only if return value is 0.
195644ec0a9SSimon Glass  *
196644ec0a9SSimon Glass  * @return 0 on success, -EINVAL if the property does not exist,
197644ec0a9SSimon Glass  * -ENODATA if property does not have a value, and -EOVERFLOW if the
198644ec0a9SSimon Glass  * property data isn't large enough.
199644ec0a9SSimon Glass  */
200644ec0a9SSimon Glass int of_read_u32(const struct device_node *np, const char *propname, u32 *outp);
201644ec0a9SSimon Glass 
202644ec0a9SSimon Glass /**
203644ec0a9SSimon Glass  * of_read_u32_array() - Find and read an array of 32 bit integers
204644ec0a9SSimon Glass  *
205644ec0a9SSimon Glass  * Search for a property in a device node and read 32-bit value(s) from
206644ec0a9SSimon Glass  * it.
207644ec0a9SSimon Glass  *
208644ec0a9SSimon Glass  * @np:		device node from which the property value is to be read.
209644ec0a9SSimon Glass  * @propname:	name of the property to be searched.
210644ec0a9SSimon Glass  * @out_values:	pointer to return value, modified only if return value is 0.
211644ec0a9SSimon Glass  * @sz:		number of array elements to read
212644ec0a9SSimon Glass  * @return 0 on success, -EINVAL if the property does not exist, -ENODATA
213644ec0a9SSimon Glass  * if property does not have a value, and -EOVERFLOW is longer than sz.
214644ec0a9SSimon Glass  */
215644ec0a9SSimon Glass int of_read_u32_array(const struct device_node *np, const char *propname,
216644ec0a9SSimon Glass 		      u32 *out_values, size_t sz);
217644ec0a9SSimon Glass 
218644ec0a9SSimon Glass /**
219644ec0a9SSimon Glass  * of_property_match_string() - Find string in a list and return index
220644ec0a9SSimon Glass  *
221644ec0a9SSimon Glass  * This function searches a string list property and returns the index
222644ec0a9SSimon Glass  * of a specific string value.
223644ec0a9SSimon Glass  *
224644ec0a9SSimon Glass  * @np: pointer to node containing string list property
225644ec0a9SSimon Glass  * @propname: string list property name
226644ec0a9SSimon Glass  * @string: pointer to string to search for in string list
227644ec0a9SSimon Glass  * @return 0 on success, -EINVAL if the property does not exist, -ENODATA
228644ec0a9SSimon Glass  * if property does not have a value, and -EOVERFLOW is longer than sz.
229644ec0a9SSimon Glass  */
230644ec0a9SSimon Glass int of_property_match_string(const struct device_node *np, const char *propname,
231644ec0a9SSimon Glass 			     const char *string);
232644ec0a9SSimon Glass 
233644ec0a9SSimon Glass int of_property_read_string_helper(const struct device_node *np,
234644ec0a9SSimon Glass 				   const char *propname, const char **out_strs,
235644ec0a9SSimon Glass 				   size_t sz, int index);
236644ec0a9SSimon Glass 
237644ec0a9SSimon Glass /**
238644ec0a9SSimon Glass  * of_property_read_string_index() - Find and read a string from a multiple
239644ec0a9SSimon Glass  * strings property.
240644ec0a9SSimon Glass  * @np:		device node from which the property value is to be read.
241644ec0a9SSimon Glass  * @propname:	name of the property to be searched.
242644ec0a9SSimon Glass  * @index:	index of the string in the list of strings
243644ec0a9SSimon Glass  * @out_string:	pointer to null terminated return string, modified only if
244644ec0a9SSimon Glass  *		return value is 0.
245644ec0a9SSimon Glass  *
246644ec0a9SSimon Glass  * Search for a property in a device tree node and retrieve a null
247644ec0a9SSimon Glass  * terminated string value (pointer to data, not a copy) in the list of strings
248644ec0a9SSimon Glass  * contained in that property.
249644ec0a9SSimon Glass  * Returns 0 on success, -EINVAL if the property does not exist, -ENODATA if
250644ec0a9SSimon Glass  * property does not have a value, and -EILSEQ if the string is not
251644ec0a9SSimon Glass  * null-terminated within the length of the property data.
252644ec0a9SSimon Glass  *
253644ec0a9SSimon Glass  * The out_string pointer is modified only if a valid string can be decoded.
254644ec0a9SSimon Glass  */
255644ec0a9SSimon Glass static inline int of_property_read_string_index(const struct device_node *np,
256644ec0a9SSimon Glass 						const char *propname,
257644ec0a9SSimon Glass 						int index, const char **output)
258644ec0a9SSimon Glass {
259644ec0a9SSimon Glass 	int rc = of_property_read_string_helper(np, propname, output, 1, index);
260644ec0a9SSimon Glass 	return rc < 0 ? rc : 0;
261644ec0a9SSimon Glass }
262644ec0a9SSimon Glass 
263644ec0a9SSimon Glass /**
264*8c293d6aSSimon Glass  * of_property_count_strings() - Find and return the number of strings from a
265*8c293d6aSSimon Glass  * multiple strings property.
266*8c293d6aSSimon Glass  * @np:		device node from which the property value is to be read.
267*8c293d6aSSimon Glass  * @propname:	name of the property to be searched.
268*8c293d6aSSimon Glass  *
269*8c293d6aSSimon Glass  * Search for a property in a device tree node and retrieve the number of null
270*8c293d6aSSimon Glass  * terminated string contain in it. Returns the number of strings on
271*8c293d6aSSimon Glass  * success, -EINVAL if the property does not exist, -ENODATA if property
272*8c293d6aSSimon Glass  * does not have a value, and -EILSEQ if the string is not null-terminated
273*8c293d6aSSimon Glass  * within the length of the property data.
274*8c293d6aSSimon Glass  */
275*8c293d6aSSimon Glass static inline int of_property_count_strings(const struct device_node *np,
276*8c293d6aSSimon Glass 					    const char *propname)
277*8c293d6aSSimon Glass {
278*8c293d6aSSimon Glass 	return of_property_read_string_helper(np, propname, NULL, 0, 0);
279*8c293d6aSSimon Glass }
280*8c293d6aSSimon Glass 
281*8c293d6aSSimon Glass /**
282644ec0a9SSimon Glass  * of_parse_phandle - Resolve a phandle property to a device_node pointer
283644ec0a9SSimon Glass  * @np: Pointer to device node holding phandle property
284644ec0a9SSimon Glass  * @phandle_name: Name of property holding a phandle value
285644ec0a9SSimon Glass  * @index: For properties holding a table of phandles, this is the index into
286644ec0a9SSimon Glass  *         the table
287644ec0a9SSimon Glass  *
288644ec0a9SSimon Glass  * Returns the device_node pointer with refcount incremented.  Use
289644ec0a9SSimon Glass  * of_node_put() on it when done.
290644ec0a9SSimon Glass  */
291644ec0a9SSimon Glass struct device_node *of_parse_phandle(const struct device_node *np,
292644ec0a9SSimon Glass 				     const char *phandle_name, int index);
293644ec0a9SSimon Glass 
294644ec0a9SSimon Glass /**
295644ec0a9SSimon Glass  * of_parse_phandle_with_args() - Find a node pointed by phandle in a list
296644ec0a9SSimon Glass  *
297644ec0a9SSimon Glass  * @np:		pointer to a device tree node containing a list
298644ec0a9SSimon Glass  * @list_name:	property name that contains a list
299644ec0a9SSimon Glass  * @cells_name:	property name that specifies phandles' arguments count
300644ec0a9SSimon Glass  * @index:	index of a phandle to parse out
301644ec0a9SSimon Glass  * @out_args:	optional pointer to output arguments structure (will be filled)
302644ec0a9SSimon Glass  * @return 0 on success (with @out_args filled out if not NULL), -ENOENT if
303644ec0a9SSimon Glass  *	@list_name does not exist, -EINVAL if a phandle was not found,
304644ec0a9SSimon Glass  *	@cells_name could not be found, the arguments were truncated or there
305644ec0a9SSimon Glass  *	were too many arguments.
306644ec0a9SSimon Glass  *
307644ec0a9SSimon Glass  * This function is useful to parse lists of phandles and their arguments.
308644ec0a9SSimon Glass  * Returns 0 on success and fills out_args, on error returns appropriate
309644ec0a9SSimon Glass  * errno value.
310644ec0a9SSimon Glass  *
311644ec0a9SSimon Glass  * Caller is responsible to call of_node_put() on the returned out_args->np
312644ec0a9SSimon Glass  * pointer.
313644ec0a9SSimon Glass  *
314644ec0a9SSimon Glass  * Example:
315644ec0a9SSimon Glass  *
316644ec0a9SSimon Glass  * phandle1: node1 {
317644ec0a9SSimon Glass  *	#list-cells = <2>;
318644ec0a9SSimon Glass  * }
319644ec0a9SSimon Glass  *
320644ec0a9SSimon Glass  * phandle2: node2 {
321644ec0a9SSimon Glass  *	#list-cells = <1>;
322644ec0a9SSimon Glass  * }
323644ec0a9SSimon Glass  *
324644ec0a9SSimon Glass  * node3 {
325644ec0a9SSimon Glass  *	list = <&phandle1 1 2 &phandle2 3>;
326644ec0a9SSimon Glass  * }
327644ec0a9SSimon Glass  *
328644ec0a9SSimon Glass  * To get a device_node of the `node2' node you may call this:
329644ec0a9SSimon Glass  * of_parse_phandle_with_args(node3, "list", "#list-cells", 1, &args);
330644ec0a9SSimon Glass  */
331644ec0a9SSimon Glass int of_parse_phandle_with_args(const struct device_node *np,
332644ec0a9SSimon Glass 			       const char *list_name, const char *cells_name,
333644ec0a9SSimon Glass 			       int index, struct of_phandle_args *out_args);
334644ec0a9SSimon Glass 
335644ec0a9SSimon Glass /**
336644ec0a9SSimon Glass  * of_alias_scan() - Scan all properties of the 'aliases' node
337644ec0a9SSimon Glass  *
338644ec0a9SSimon Glass  * The function scans all the properties of the 'aliases' node and populates
339644ec0a9SSimon Glass  * the lookup table with the properties.  It returns the number of alias
340644ec0a9SSimon Glass  * properties found, or an error code in case of failure.
341644ec0a9SSimon Glass  *
342644ec0a9SSimon Glass  * @return 9 if OK, -ENOMEM if not enough memory
343644ec0a9SSimon Glass  */
344644ec0a9SSimon Glass int of_alias_scan(void);
345644ec0a9SSimon Glass 
346644ec0a9SSimon Glass /**
347644ec0a9SSimon Glass  * of_alias_get_id - Get alias id for the given device_node
348644ec0a9SSimon Glass  *
349644ec0a9SSimon Glass  * Travels the lookup table to get the alias id for the given device_node and
350644ec0a9SSimon Glass  * alias stem.
351644ec0a9SSimon Glass  *
352644ec0a9SSimon Glass  * @np:		Pointer to the given device_node
353644ec0a9SSimon Glass  * @stem:	Alias stem of the given device_node
354644ec0a9SSimon Glass  * @return alias ID, if found, else -ENODEV
355644ec0a9SSimon Glass  */
356644ec0a9SSimon Glass int of_alias_get_id(const struct device_node *np, const char *stem);
357644ec0a9SSimon Glass 
358644ec0a9SSimon Glass /**
359644ec0a9SSimon Glass  * of_get_stdout() - Get node to use for stdout
360644ec0a9SSimon Glass  *
361644ec0a9SSimon Glass  * @return node referred to by stdout-path alias, or NULL if none
362644ec0a9SSimon Glass  */
363644ec0a9SSimon Glass struct device_node *of_get_stdout(void);
364644ec0a9SSimon Glass 
365644ec0a9SSimon Glass #endif
366