blob: 389e30e7fb448f3da00e6ccff45d037257d1ec2e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glassf11c7ab2017-05-18 20:09:03 -06002/*
3 * Function to read values from the device tree node attached to a udevice.
4 *
5 * Copyright (c) 2017 Google, Inc
6 * Written by Simon Glass <sjg@chromium.org>
Simon Glassf11c7ab2017-05-18 20:09:03 -06007 */
8
9#ifndef _DM_READ_H
10#define _DM_READ_H
11
12#include <dm/fdtaddr.h>
13#include <dm/ofnode.h>
14#include <dm/uclass.h>
15
Simon Glassa4481012017-06-12 06:21:29 -060016struct resource;
17
Simon Glassf11c7ab2017-05-18 20:09:03 -060018#if CONFIG_IS_ENABLED(OF_LIVE)
19static inline const struct device_node *dev_np(struct udevice *dev)
20{
21 return ofnode_to_np(dev->node);
22}
23#else
24static inline const struct device_node *dev_np(struct udevice *dev)
25{
26 return NULL;
27}
28#endif
29
30/**
31 * dev_ofnode() - get the DT node reference associated with a udevice
32 *
33 * @dev: device to check
34 * @return reference of the the device's DT node
35 */
36static inline ofnode dev_ofnode(struct udevice *dev)
37{
38 return dev->node;
39}
40
41static inline bool dev_of_valid(struct udevice *dev)
42{
43 return ofnode_valid(dev_ofnode(dev));
44}
45
Simon Glass47a0fd32017-05-18 20:09:04 -060046#ifndef CONFIG_DM_DEV_READ_INLINE
47/**
Masahiro Yamada3ab48f62017-12-30 02:00:05 +090048 * dev_read_u32() - read a 32-bit integer from a device's DT property
49 *
50 * @dev: device to read DT property from
51 * @propname: name of the property to read from
52 * @outp: place to put value (if found)
53 * @return 0 if OK, -ve on error
54 */
55int dev_read_u32(struct udevice *dev, const char *propname, u32 *outp);
56
57/**
Simon Glass47a0fd32017-05-18 20:09:04 -060058 * dev_read_u32_default() - read a 32-bit integer from a device's DT property
59 *
60 * @dev: device to read DT property from
61 * @propname: name of the property to read from
62 * @def: default value to return if the property has no value
63 * @return property value, or @def if not found
64 */
65int dev_read_u32_default(struct udevice *dev, const char *propname, int def);
Simon Glassf11c7ab2017-05-18 20:09:03 -060066
67/**
Simon Glassa1b17e42018-12-10 10:37:37 -070068 * dev_read_s32() - read a signed 32-bit integer from a device's DT property
69 *
70 * @dev: device to read DT property from
71 * @propname: name of the property to read from
72 * @outp: place to put value (if found)
73 * @return 0 if OK, -ve on error
74 */
75int dev_read_s32(struct udevice *dev, const char *propname, s32 *outp);
76
77/**
78 * dev_read_s32_default() - read a signed 32-bit int from a device's DT property
79 *
80 * @dev: device to read DT property from
81 * @propname: name of the property to read from
82 * @def: default value to return if the property has no value
83 * @return property value, or @def if not found
84 */
85int dev_read_s32_default(struct udevice *dev, const char *propname, int def);
86
87/**
88 * dev_read_u32u() - read a 32-bit integer from a device's DT property
89 *
90 * This version uses a standard uint type.
91 *
92 * @dev: device to read DT property from
93 * @propname: name of the property to read from
94 * @outp: place to put value (if found)
95 * @return 0 if OK, -ve on error
96 */
97int dev_read_u32u(struct udevice *dev, const char *propname, uint *outp);
98
99/**
Simon Glassf11c7ab2017-05-18 20:09:03 -0600100 * dev_read_string() - Read a string from a device's DT property
101 *
102 * @dev: device to read DT property from
103 * @propname: name of the property to read
104 * @return string from property value, or NULL if there is no such property
105 */
Simon Glass47a0fd32017-05-18 20:09:04 -0600106const char *dev_read_string(struct udevice *dev, const char *propname);
Simon Glassf11c7ab2017-05-18 20:09:03 -0600107
108/**
109 * dev_read_bool() - read a boolean value from a device's DT property
110 *
111 * @dev: device to read DT property from
112 * @propname: name of property to read
113 * @return true if property is present (meaning true), false if not present
114 */
Simon Glass47a0fd32017-05-18 20:09:04 -0600115bool dev_read_bool(struct udevice *dev, const char *propname);
Simon Glassf11c7ab2017-05-18 20:09:03 -0600116
117/**
118 * dev_read_subnode() - find a named subnode of a device
119 *
120 * @dev: device whose DT node contains the subnode
121 * @subnode_name: name of subnode to find
122 * @return reference to subnode (which can be invalid if there is no such
123 * subnode)
124 */
Simon Glass47a0fd32017-05-18 20:09:04 -0600125ofnode dev_read_subnode(struct udevice *dev, const char *subbnode_name);
Simon Glassf11c7ab2017-05-18 20:09:03 -0600126
127/**
128 * dev_read_size() - read the size of a property
129 *
130 * @dev: device to check
131 * @propname: property to check
132 * @return size of property if present, or -EINVAL if not
133 */
Simon Glass47a0fd32017-05-18 20:09:04 -0600134int dev_read_size(struct udevice *dev, const char *propname);
Simon Glassf11c7ab2017-05-18 20:09:03 -0600135
136/**
137 * dev_read_addr_index() - Get the indexed reg property of a device
138 *
139 * @dev: Device to read from
140 * @index: the 'reg' property can hold a list of <addr, size> pairs
141 * and @index is used to select which one is required
142 *
143 * @return address or FDT_ADDR_T_NONE if not found
144 */
Simon Glass47a0fd32017-05-18 20:09:04 -0600145fdt_addr_t dev_read_addr_index(struct udevice *dev, int index);
Simon Glassf11c7ab2017-05-18 20:09:03 -0600146
147/**
Álvaro Fernández Rojas30a90f52018-04-29 21:56:54 +0200148 * dev_remap_addr_index() - Get the indexed reg property of a device
149 * as a memory-mapped I/O pointer
150 *
151 * @dev: Device to read from
152 * @index: the 'reg' property can hold a list of <addr, size> pairs
153 * and @index is used to select which one is required
154 *
155 * @return pointer or NULL if not found
156 */
157void *dev_remap_addr_index(struct udevice *dev, int index);
158
159/**
Álvaro Fernández Rojas79598822018-12-03 19:37:09 +0100160 * dev_read_addr_name() - Get the reg property of a device, indexed by name
161 *
162 * @dev: Device to read from
163 * @name: the 'reg' property can hold a list of <addr, size> pairs, with the
164 * 'reg-names' property providing named-based identification. @index
165 * indicates the value to search for in 'reg-names'.
166 *
167 * @return address or FDT_ADDR_T_NONE if not found
168 */
169fdt_addr_t dev_read_addr_name(struct udevice *dev, const char* name);
170
171/**
172 * dev_remap_addr_name() - Get the reg property of a device, indexed by name,
173 * as a memory-mapped I/O pointer
174 *
175 * @dev: Device to read from
176 * @name: the 'reg' property can hold a list of <addr, size> pairs, with the
177 * 'reg-names' property providing named-based identification. @index
178 * indicates the value to search for in 'reg-names'.
179 *
180 * @return pointer or NULL if not found
181 */
182void *dev_remap_addr_name(struct udevice *dev, const char* name);
183
184/**
Simon Glassf11c7ab2017-05-18 20:09:03 -0600185 * dev_read_addr() - Get the reg property of a device
186 *
187 * @dev: Device to read from
188 *
189 * @return address or FDT_ADDR_T_NONE if not found
190 */
Simon Glass47a0fd32017-05-18 20:09:04 -0600191fdt_addr_t dev_read_addr(struct udevice *dev);
Simon Glassf11c7ab2017-05-18 20:09:03 -0600192
193/**
Philipp Tomsichc131c8b2017-09-11 22:04:12 +0200194 * dev_read_addr_ptr() - Get the reg property of a device
195 * as a pointer
196 *
197 * @dev: Device to read from
198 *
199 * @return pointer or NULL if not found
200 */
201void *dev_read_addr_ptr(struct udevice *dev);
202
203/**
Álvaro Fernández Rojas30a90f52018-04-29 21:56:54 +0200204 * dev_remap_addr() - Get the reg property of a device as a
205 * memory-mapped I/O pointer
206 *
207 * @dev: Device to read from
208 *
209 * @return pointer or NULL if not found
210 */
211void *dev_remap_addr(struct udevice *dev);
212
213/**
Simon Glassf11c7ab2017-05-18 20:09:03 -0600214 * dev_read_addr_size() - get address and size from a device property
215 *
216 * This does no address translation. It simply reads an property that contains
217 * an address and a size value, one after the other.
218 *
219 * @dev: Device to read from
220 * @propname: property to read
221 * @sizep: place to put size value (on success)
222 * @return address value, or FDT_ADDR_T_NONE on error
223 */
Simon Glass47a0fd32017-05-18 20:09:04 -0600224fdt_addr_t dev_read_addr_size(struct udevice *dev, const char *propname,
225 fdt_size_t *sizep);
Simon Glassf11c7ab2017-05-18 20:09:03 -0600226
227/**
228 * dev_read_name() - get the name of a device's node
229 *
230 * @node: valid node to look up
231 * @return name of node
232 */
Simon Glass47a0fd32017-05-18 20:09:04 -0600233const char *dev_read_name(struct udevice *dev);
Simon Glassf11c7ab2017-05-18 20:09:03 -0600234
235/**
236 * dev_read_stringlist_search() - find string in a string list and return index
237 *
238 * Note that it is possible for this function to succeed on property values
239 * that are not NUL-terminated. That's because the function will stop after
240 * finding the first occurrence of @string. This can for example happen with
241 * small-valued cell properties, such as #address-cells, when searching for
242 * the empty string.
243 *
244 * @dev: device to check
245 * @propname: name of the property containing the string list
246 * @string: string to look up in the string list
247 *
248 * @return:
249 * the index of the string in the list of strings
250 * -ENODATA if the property is not found
251 * -EINVAL on some other error
252 */
Simon Glass47a0fd32017-05-18 20:09:04 -0600253int dev_read_stringlist_search(struct udevice *dev, const char *property,
254 const char *string);
Simon Glassf11c7ab2017-05-18 20:09:03 -0600255
256/**
Jean-Jacques Hiblotb5a144a2017-09-21 17:03:09 +0200257 * dev_read_string_index() - obtain an indexed string from a string list
258 *
259 * @dev: device to examine
260 * @propname: name of the property containing the string list
261 * @index: index of the string to return
262 * @out: return location for the string
263 *
264 * @return:
265 * length of string, if found or -ve error value if not found
266 */
267int dev_read_string_index(struct udevice *dev, const char *propname, int index,
268 const char **outp);
269
270/**
271 * dev_read_string_count() - find the number of strings in a string list
272 *
273 * @dev: device to examine
274 * @propname: name of the property containing the string list
275 * @return:
276 * number of strings in the list, or -ve error value if not found
277 */
278int dev_read_string_count(struct udevice *dev, const char *propname);
279/**
Simon Glassf11c7ab2017-05-18 20:09:03 -0600280 * dev_read_phandle_with_args() - Find a node pointed by phandle in a list
281 *
282 * This function is useful to parse lists of phandles and their arguments.
283 * Returns 0 on success and fills out_args, on error returns appropriate
284 * errno value.
285 *
286 * Caller is responsible to call of_node_put() on the returned out_args->np
287 * pointer.
288 *
289 * Example:
290 *
291 * phandle1: node1 {
292 * #list-cells = <2>;
293 * }
294 *
295 * phandle2: node2 {
296 * #list-cells = <1>;
297 * }
298 *
299 * node3 {
300 * list = <&phandle1 1 2 &phandle2 3>;
301 * }
302 *
303 * To get a device_node of the `node2' node you may call this:
304 * dev_read_phandle_with_args(dev, "list", "#list-cells", 0, 1, &args);
305 *
306 * @dev: device whose node containing a list
307 * @list_name: property name that contains a list
308 * @cells_name: property name that specifies phandles' arguments count
309 * @cells_count: Cell count to use if @cells_name is NULL
310 * @index: index of a phandle to parse out
311 * @out_args: optional pointer to output arguments structure (will be filled)
312 * @return 0 on success (with @out_args filled out if not NULL), -ENOENT if
313 * @list_name does not exist, -EINVAL if a phandle was not found,
314 * @cells_name could not be found, the arguments were truncated or there
315 * were too many arguments.
316 */
Simon Glass47a0fd32017-05-18 20:09:04 -0600317int dev_read_phandle_with_args(struct udevice *dev, const char *list_name,
318 const char *cells_name, int cell_count,
319 int index,
320 struct ofnode_phandle_args *out_args);
Simon Glassf11c7ab2017-05-18 20:09:03 -0600321
322/**
Patrice Chotard642346a2017-07-18 11:57:08 +0200323 * dev_count_phandle_with_args() - Return phandle number in a list
324 *
325 * This function is usefull to get phandle number contained in a property list.
326 * For example, this allows to allocate the right amount of memory to keep
327 * clock's reference contained into the "clocks" property.
328 *
329 *
330 * @dev: device whose node containing a list
331 * @list_name: property name that contains a list
332 * @cells_name: property name that specifies phandles' arguments count
333 * @Returns number of phandle found on success, on error returns appropriate
334 * errno value.
335 */
336
337int dev_count_phandle_with_args(struct udevice *dev, const char *list_name,
338 const char *cells_name);
339
340/**
Simon Glassf11c7ab2017-05-18 20:09:03 -0600341 * dev_read_addr_cells() - Get the number of address cells for a device's node
342 *
343 * This walks back up the tree to find the closest #address-cells property
344 * which controls the given node.
345 *
Mario Six7ba50412018-01-15 11:09:36 +0100346 * @dev: device to check
Simon Glassf11c7ab2017-05-18 20:09:03 -0600347 * @return number of address cells this node uses
348 */
Simon Glass47a0fd32017-05-18 20:09:04 -0600349int dev_read_addr_cells(struct udevice *dev);
Simon Glassf11c7ab2017-05-18 20:09:03 -0600350
351/**
352 * dev_read_size_cells() - Get the number of size cells for a device's node
353 *
354 * This walks back up the tree to find the closest #size-cells property
355 * which controls the given node.
356 *
Mario Six7ba50412018-01-15 11:09:36 +0100357 * @dev: device to check
Simon Glassf11c7ab2017-05-18 20:09:03 -0600358 * @return number of size cells this node uses
359 */
Simon Glass47a0fd32017-05-18 20:09:04 -0600360int dev_read_size_cells(struct udevice *dev);
Simon Glassf11c7ab2017-05-18 20:09:03 -0600361
362/**
Simon Glass878d68c2017-06-12 06:21:31 -0600363 * dev_read_addr_cells() - Get the address cells property in a node
364 *
365 * This function matches fdt_address_cells().
366 *
Mario Six7ba50412018-01-15 11:09:36 +0100367 * @dev: device to check
Simon Glass878d68c2017-06-12 06:21:31 -0600368 * @return number of address cells this node uses
369 */
370int dev_read_simple_addr_cells(struct udevice *dev);
371
372/**
373 * dev_read_size_cells() - Get the size cells property in a node
374 *
375 * This function matches fdt_size_cells().
376 *
Mario Six7ba50412018-01-15 11:09:36 +0100377 * @dev: device to check
Simon Glass878d68c2017-06-12 06:21:31 -0600378 * @return number of size cells this node uses
379 */
380int dev_read_simple_size_cells(struct udevice *dev);
381
382/**
Simon Glassf11c7ab2017-05-18 20:09:03 -0600383 * dev_read_phandle() - Get the phandle from a device
384 *
385 * @dev: device to check
386 * @return phandle (1 or greater), or 0 if no phandle or other error
387 */
Simon Glass47a0fd32017-05-18 20:09:04 -0600388int dev_read_phandle(struct udevice *dev);
Simon Glassf11c7ab2017-05-18 20:09:03 -0600389
390/**
391 * dev_read_prop()- - read a property from a device's node
392 *
393 * @dev: device to check
394 * @propname: property to read
395 * @lenp: place to put length on success
396 * @return pointer to property, or NULL if not found
397 */
Masahiro Yamadafd736212017-07-17 12:18:39 +0900398const void *dev_read_prop(struct udevice *dev, const char *propname, int *lenp);
Simon Glassf11c7ab2017-05-18 20:09:03 -0600399
400/**
401 * dev_read_alias_seq() - Get the alias sequence number of a node
402 *
403 * This works out whether a node is pointed to by an alias, and if so, the
404 * sequence number of that alias. Aliases are of the form <base><num> where
405 * <num> is the sequence number. For example spi2 would be sequence number 2.
406 *
407 * @dev: device to look up
408 * @devnump: set to the sequence number if one is found
409 * @return 0 if a sequence was found, -ve if not
410 */
Simon Glass47a0fd32017-05-18 20:09:04 -0600411int dev_read_alias_seq(struct udevice *dev, int *devnump);
Simon Glassf11c7ab2017-05-18 20:09:03 -0600412
413/**
414 * dev_read_u32_array() - Find and read an array of 32 bit integers
415 *
416 * Search for a property in a device node and read 32-bit value(s) from
417 * it.
418 *
419 * The out_values is modified only if a valid u32 value can be decoded.
420 *
421 * @dev: device to look up
422 * @propname: name of the property to read
423 * @out_values: pointer to return value, modified only if return value is 0
424 * @sz: number of array elements to read
425 * @return 0 on success, -EINVAL if the property does not exist, -ENODATA if
426 * property does not have a value, and -EOVERFLOW if the property data isn't
427 * large enough.
428 */
Simon Glass47a0fd32017-05-18 20:09:04 -0600429int dev_read_u32_array(struct udevice *dev, const char *propname,
430 u32 *out_values, size_t sz);
Simon Glassf11c7ab2017-05-18 20:09:03 -0600431
432/**
433 * dev_read_first_subnode() - find the first subnode of a device's node
434 *
435 * @dev: device to look up
436 * @return reference to the first subnode (which can be invalid if the device's
437 * node has no subnodes)
438 */
Simon Glass47a0fd32017-05-18 20:09:04 -0600439ofnode dev_read_first_subnode(struct udevice *dev);
Simon Glassf11c7ab2017-05-18 20:09:03 -0600440
441/**
442 * ofnode_next_subnode() - find the next sibling of a subnode
443 *
444 * @node: valid reference to previous node (sibling)
445 * @return reference to the next subnode (which can be invalid if the node
446 * has no more siblings)
447 */
Simon Glass47a0fd32017-05-18 20:09:04 -0600448ofnode dev_read_next_subnode(ofnode node);
Simon Glassf11c7ab2017-05-18 20:09:03 -0600449
450/**
451 * dev_read_u8_array_ptr() - find an 8-bit array
452 *
453 * Look up a device's node property and return a pointer to its contents as a
454 * byte array of given length. The property must have at least enough data
455 * for the array (count bytes). It may have more, but this will be ignored.
456 * The data is not copied.
457 *
458 * @dev: device to look up
459 * @propname: name of property to find
460 * @sz: number of array elements
461 * @return pointer to byte array if found, or NULL if the property is not
462 * found or there is not enough data
463 */
Simon Glass47a0fd32017-05-18 20:09:04 -0600464const uint8_t *dev_read_u8_array_ptr(struct udevice *dev, const char *propname,
465 size_t sz);
466
Simon Glassf7d6fcf2017-06-12 06:21:30 -0600467/**
468 * dev_read_enabled() - check whether a node is enabled
469 *
470 * This looks for a 'status' property. If this exists, then returns 1 if
471 * the status is 'ok' and 0 otherwise. If there is no status property,
472 * it returns 1 on the assumption that anything mentioned should be enabled
473 * by default.
474 *
475 * @dev: device to examine
476 * @return integer value 0 (not enabled) or 1 (enabled)
477 */
478int dev_read_enabled(struct udevice *dev);
479
Simon Glassdcf98852017-07-25 08:29:55 -0600480/**
481 * dev_read_resource() - obtain an indexed resource from a device.
482 *
Masahiro Yamada7b8b47b2017-08-26 01:12:30 +0900483 * @dev: device to examine
Simon Glassdcf98852017-07-25 08:29:55 -0600484 * @index index of the resource to retrieve (0 = first)
485 * @res returns the resource
486 * @return 0 if ok, negative on error
487 */
488int dev_read_resource(struct udevice *dev, uint index, struct resource *res);
489
Masahiro Yamada7b8b47b2017-08-26 01:12:30 +0900490/**
491 * dev_read_resource_byname() - obtain a named resource from a device.
492 *
493 * @dev: device to examine
494 * @name: name of the resource to retrieve
495 * @res: returns the resource
496 * @return 0 if ok, negative on error
497 */
498int dev_read_resource_byname(struct udevice *dev, const char *name,
499 struct resource *res);
500
Mario Six147c6072018-01-15 11:07:19 +0100501/**
502 * dev_translate_address() - Tranlate a device-tree address
503 *
504 * Translate an address from the device-tree into a CPU physical address. This
505 * function walks up the tree and applies the various bus mappings along the
506 * way.
507 *
508 * @dev: device giving the context in which to translate the address
509 * @in_addr: pointer to the address to translate
510 * @return the translated address; OF_BAD_ADDR on error
511 */
512u64 dev_translate_address(struct udevice *dev, const fdt32_t *in_addr);
Simon Glass47a0fd32017-05-18 20:09:04 -0600513#else /* CONFIG_DM_DEV_READ_INLINE is enabled */
514
Masahiro Yamada3ab48f62017-12-30 02:00:05 +0900515static inline int dev_read_u32(struct udevice *dev,
516 const char *propname, u32 *outp)
517{
518 return ofnode_read_u32(dev_ofnode(dev), propname, outp);
519}
520
Simon Glass47a0fd32017-05-18 20:09:04 -0600521static inline int dev_read_u32_default(struct udevice *dev,
522 const char *propname, int def)
523{
524 return ofnode_read_u32_default(dev_ofnode(dev), propname, def);
525}
526
Simon Glassa1b17e42018-12-10 10:37:37 -0700527static inline int dev_read_s32(struct udevice *dev,
528 const char *propname, s32 *outp)
529{
530 return ofnode_read_s32(dev_ofnode(dev), propname, outp);
531}
532
533static inline int dev_read_s32_default(struct udevice *dev,
534 const char *propname, int def)
535{
536 return ofnode_read_s32_default(dev_ofnode(dev), propname, def);
537}
538
539static inline int dev_read_u32u(struct udevice *dev,
540 const char *propname, uint *outp)
541{
542 u32 val;
543 int ret;
544
545 ret = ofnode_read_u32(dev_ofnode(dev), propname, &val);
546 if (ret)
547 return ret;
548 *outp = val;
549
550 return 0;
551}
552
Simon Glass47a0fd32017-05-18 20:09:04 -0600553static inline const char *dev_read_string(struct udevice *dev,
554 const char *propname)
555{
556 return ofnode_read_string(dev_ofnode(dev), propname);
557}
558
559static inline bool dev_read_bool(struct udevice *dev, const char *propname)
560{
561 return ofnode_read_bool(dev_ofnode(dev), propname);
562}
563
564static inline ofnode dev_read_subnode(struct udevice *dev,
565 const char *subbnode_name)
566{
567 return ofnode_find_subnode(dev_ofnode(dev), subbnode_name);
568}
569
570static inline int dev_read_size(struct udevice *dev, const char *propname)
571{
572 return ofnode_read_size(dev_ofnode(dev), propname);
573}
574
575static inline fdt_addr_t dev_read_addr_index(struct udevice *dev, int index)
576{
577 return devfdt_get_addr_index(dev, index);
578}
579
Álvaro Fernández Rojas79598822018-12-03 19:37:09 +0100580static inline fdt_addr_t dev_read_addr_name(struct udevice *dev,
581 const char *name)
582{
583 return devfdt_get_addr_name(dev, name);
584}
585
Simon Glass47a0fd32017-05-18 20:09:04 -0600586static inline fdt_addr_t dev_read_addr(struct udevice *dev)
587{
588 return devfdt_get_addr(dev);
589}
590
Philipp Tomsichc131c8b2017-09-11 22:04:12 +0200591static inline void *dev_read_addr_ptr(struct udevice *dev)
592{
593 return devfdt_get_addr_ptr(dev);
594}
595
Álvaro Fernández Rojas30a90f52018-04-29 21:56:54 +0200596static inline void *dev_remap_addr(struct udevice *dev)
597{
598 return devfdt_remap_addr(dev);
599}
600
601static inline void *dev_remap_addr_index(struct udevice *dev, int index)
602{
603 return devfdt_remap_addr_index(dev, index);
604}
605
Álvaro Fernández Rojas79598822018-12-03 19:37:09 +0100606static inline void *dev_remap_addr_name(struct udevice *dev, const char *name)
607{
608 return devfdt_remap_addr_name(dev, name);
609}
610
Simon Glass47a0fd32017-05-18 20:09:04 -0600611static inline fdt_addr_t dev_read_addr_size(struct udevice *dev,
612 const char *propname,
613 fdt_size_t *sizep)
614{
615 return ofnode_get_addr_size(dev_ofnode(dev), propname, sizep);
616}
617
618static inline const char *dev_read_name(struct udevice *dev)
619{
620 return ofnode_get_name(dev_ofnode(dev));
621}
622
623static inline int dev_read_stringlist_search(struct udevice *dev,
624 const char *propname,
625 const char *string)
626{
627 return ofnode_stringlist_search(dev_ofnode(dev), propname, string);
628}
629
Jean-Jacques Hiblotb5a144a2017-09-21 17:03:09 +0200630static inline int dev_read_string_index(struct udevice *dev,
631 const char *propname, int index,
632 const char **outp)
633{
634 return ofnode_read_string_index(dev_ofnode(dev), propname, index, outp);
635}
636
637static inline int dev_read_string_count(struct udevice *dev,
638 const char *propname)
639{
640 return ofnode_read_string_count(dev_ofnode(dev), propname);
641}
642
Simon Glass47a0fd32017-05-18 20:09:04 -0600643static inline int dev_read_phandle_with_args(struct udevice *dev,
644 const char *list_name, const char *cells_name, int cell_count,
645 int index, struct ofnode_phandle_args *out_args)
646{
647 return ofnode_parse_phandle_with_args(dev_ofnode(dev), list_name,
648 cells_name, cell_count, index,
649 out_args);
650}
651
Patrice Chotard642346a2017-07-18 11:57:08 +0200652static inline int dev_count_phandle_with_args(struct udevice *dev,
653 const char *list_name, const char *cells_name)
654{
655 return ofnode_count_phandle_with_args(dev_ofnode(dev), list_name,
656 cells_name);
657}
658
Simon Glass47a0fd32017-05-18 20:09:04 -0600659static inline int dev_read_addr_cells(struct udevice *dev)
660{
Simon Glass878d68c2017-06-12 06:21:31 -0600661 /* NOTE: this call should walk up the parent stack */
Simon Glass47a0fd32017-05-18 20:09:04 -0600662 return fdt_address_cells(gd->fdt_blob, dev_of_offset(dev));
663}
664
665static inline int dev_read_size_cells(struct udevice *dev)
666{
Simon Glass878d68c2017-06-12 06:21:31 -0600667 /* NOTE: this call should walk up the parent stack */
668 return fdt_size_cells(gd->fdt_blob, dev_of_offset(dev));
669}
670
671static inline int dev_read_simple_addr_cells(struct udevice *dev)
672{
673 return fdt_address_cells(gd->fdt_blob, dev_of_offset(dev));
674}
675
676static inline int dev_read_simple_size_cells(struct udevice *dev)
677{
Simon Glass47a0fd32017-05-18 20:09:04 -0600678 return fdt_size_cells(gd->fdt_blob, dev_of_offset(dev));
679}
680
681static inline int dev_read_phandle(struct udevice *dev)
682{
683 return fdt_get_phandle(gd->fdt_blob, dev_of_offset(dev));
684}
685
Masahiro Yamadafd736212017-07-17 12:18:39 +0900686static inline const void *dev_read_prop(struct udevice *dev,
687 const char *propname, int *lenp)
Simon Glass47a0fd32017-05-18 20:09:04 -0600688{
Masahiro Yamada61e51ba2017-06-22 16:54:05 +0900689 return ofnode_get_property(dev_ofnode(dev), propname, lenp);
Simon Glass47a0fd32017-05-18 20:09:04 -0600690}
691
692static inline int dev_read_alias_seq(struct udevice *dev, int *devnump)
693{
694 return fdtdec_get_alias_seq(gd->fdt_blob, dev->uclass->uc_drv->name,
695 dev_of_offset(dev), devnump);
696}
697
698static inline int dev_read_u32_array(struct udevice *dev, const char *propname,
699 u32 *out_values, size_t sz)
700{
701 return ofnode_read_u32_array(dev_ofnode(dev), propname, out_values, sz);
702}
703
704static inline ofnode dev_read_first_subnode(struct udevice *dev)
705{
706 return ofnode_first_subnode(dev_ofnode(dev));
707}
708
709static inline ofnode dev_read_next_subnode(ofnode node)
710{
711 return ofnode_next_subnode(node);
712}
713
Simon Glassf11c7ab2017-05-18 20:09:03 -0600714static inline const uint8_t *dev_read_u8_array_ptr(struct udevice *dev,
715 const char *propname, size_t sz)
716{
717 return ofnode_read_u8_array_ptr(dev_ofnode(dev), propname, sz);
718}
719
Simon Glassf7d6fcf2017-06-12 06:21:30 -0600720static inline int dev_read_enabled(struct udevice *dev)
721{
722 return fdtdec_get_is_enabled(gd->fdt_blob, dev_of_offset(dev));
723}
724
Simon Glassdcf98852017-07-25 08:29:55 -0600725static inline int dev_read_resource(struct udevice *dev, uint index,
726 struct resource *res)
727{
728 return ofnode_read_resource(dev_ofnode(dev), index, res);
729}
730
Masahiro Yamada7b8b47b2017-08-26 01:12:30 +0900731static inline int dev_read_resource_byname(struct udevice *dev,
732 const char *name,
733 struct resource *res)
734{
735 return ofnode_read_resource_byname(dev_ofnode(dev), name, res);
736}
737
Mario Six147c6072018-01-15 11:07:19 +0100738static inline u64 dev_translate_address(struct udevice *dev, const fdt32_t *in_addr)
739{
740 return ofnode_translate_address(dev_ofnode(dev), in_addr);
741}
742
Simon Glassf11c7ab2017-05-18 20:09:03 -0600743#endif /* CONFIG_DM_DEV_READ_INLINE */
744
745/**
746 * dev_for_each_subnode() - Helper function to iterate through subnodes
747 *
748 * This creates a for() loop which works through the subnodes in a device's
749 * device-tree node.
750 *
751 * @subnode: ofnode holding the current subnode
752 * @dev: device to use for interation (struct udevice *)
753 */
754#define dev_for_each_subnode(subnode, dev) \
755 for (subnode = dev_read_first_subnode(dev); \
756 ofnode_valid(subnode); \
757 subnode = ofnode_next_subnode(subnode))
758
759#endif