Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2013 Google, Inc |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef __DM_UTIL_H |
Masahiro Yamada | b1799fc | 2014-10-07 14:49:38 +0900 | [diff] [blame] | 7 | #define __DM_UTIL_H |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 8 | |
Simon Glass | a94f468 | 2014-11-10 17:16:49 -0700 | [diff] [blame] | 9 | #ifdef CONFIG_DM_WARN |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 10 | void dm_warn(const char *fmt, ...); |
Simon Glass | a94f468 | 2014-11-10 17:16:49 -0700 | [diff] [blame] | 11 | #else |
| 12 | static inline void dm_warn(const char *fmt, ...) |
| 13 | { |
| 14 | } |
| 15 | #endif |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 16 | |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 17 | struct list_head; |
| 18 | |
| 19 | /** |
| 20 | * list_count_items() - Count number of items in a list |
| 21 | * |
| 22 | * @param head: Head of list |
| 23 | * @return number of items, or 0 if empty |
| 24 | */ |
| 25 | int list_count_items(struct list_head *head); |
| 26 | |
Simon Glass | 304fbef | 2015-06-23 15:38:35 -0600 | [diff] [blame] | 27 | /* Dump out a tree of all devices */ |
| 28 | void dm_dump_all(void); |
| 29 | |
| 30 | /* Dump out a list of uclasses and their devices */ |
| 31 | void dm_dump_uclass(void); |
| 32 | |
Masahiro Yamada | 40b6f2d | 2015-07-25 21:52:38 +0900 | [diff] [blame] | 33 | #ifdef CONFIG_DEBUG_DEVRES |
| 34 | /* Dump out a list of device resources */ |
| 35 | void dm_dump_devres(void); |
| 36 | #else |
| 37 | static inline void dm_dump_devres(void) |
| 38 | { |
| 39 | } |
| 40 | #endif |
| 41 | |
Heiko Stübner | 27326c7 | 2017-02-18 19:46:21 +0100 | [diff] [blame] | 42 | /** |
| 43 | * Check if a dt node should be or was bound before relocation. |
| 44 | * |
| 45 | * Devicetree nodes can be marked as needed to be bound |
| 46 | * in the loader stages via special devicetree properties. |
| 47 | * |
| 48 | * Before relocation this function can be used to check if nodes |
| 49 | * are required in either SPL or TPL stages. |
| 50 | * |
| 51 | * After relocation and jumping into the real U-Boot binary |
| 52 | * it is possible to determine if a node was bound in one of |
| 53 | * SPL/TPL stages. |
| 54 | * |
| 55 | * There are 3 settings currently in use |
| 56 | * - |
| 57 | * - u-boot,dm-pre-reloc: legacy and indicates any of TPL or SPL |
Bin Meng | e601ab1 | 2018-10-10 22:06:57 -0700 | [diff] [blame] | 58 | * Existing platforms only use it to indicate nodes needed in |
Heiko Stübner | 27326c7 | 2017-02-18 19:46:21 +0100 | [diff] [blame] | 59 | * SPL. Should probably be replaced by u-boot,dm-spl for |
| 60 | * existing platforms. |
| 61 | * @blob: devicetree |
| 62 | * @offset: node offset |
| 63 | * |
| 64 | * Returns true if node is needed in SPL/TL, false otherwise. |
| 65 | */ |
Heiko Stübner | d905cf7 | 2017-02-23 17:30:38 +0100 | [diff] [blame] | 66 | bool dm_fdt_pre_reloc(const void *blob, int offset); |
Heiko Stübner | 27326c7 | 2017-02-18 19:46:21 +0100 | [diff] [blame] | 67 | |
Bin Meng | e601ab1 | 2018-10-10 22:06:57 -0700 | [diff] [blame] | 68 | /** |
| 69 | * Check if an of node should be or was bound before relocation. |
| 70 | * |
| 71 | * Devicetree nodes can be marked as needed to be bound |
| 72 | * in the loader stages via special devicetree properties. |
| 73 | * |
| 74 | * Before relocation this function can be used to check if nodes |
| 75 | * are required in either SPL or TPL stages. |
| 76 | * |
| 77 | * After relocation and jumping into the real U-Boot binary |
| 78 | * it is possible to determine if a node was bound in one of |
| 79 | * SPL/TPL stages. |
| 80 | * |
| 81 | * There are 3 settings currently in use |
| 82 | * - |
| 83 | * - u-boot,dm-pre-reloc: legacy and indicates any of TPL or SPL |
| 84 | * Existing platforms only use it to indicate nodes needed in |
| 85 | * SPL. Should probably be replaced by u-boot,dm-spl for |
| 86 | * existing platforms. |
| 87 | * @node: of node |
| 88 | * |
| 89 | * Returns true if node is needed in SPL/TL, false otherwise. |
| 90 | */ |
| 91 | bool dm_ofnode_pre_reloc(ofnode node); |
| 92 | |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 93 | #endif |