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