Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2013 Google, Inc |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef __DM_UTIL_H |
Masahiro Yamada | 1833130 | 2014-10-07 14:49:38 +0900 | [diff] [blame] | 7 | #define __DM_UTIL_H |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 8 | |
Simon Glass | c8b5e22 | 2022-05-08 04:39:26 -0600 | [diff] [blame] | 9 | struct dm_stats; |
| 10 | |
Simon Glass | 85bf4f2 | 2020-10-03 11:31:26 -0600 | [diff] [blame] | 11 | #if CONFIG_IS_ENABLED(DM_WARN) |
Patrick Delaunay | 8690ce9 | 2021-07-30 12:13:11 +0200 | [diff] [blame] | 12 | #define dm_warn(fmt...) log(LOGC_DM, LOGL_WARNING, ##fmt) |
Simon Glass | dffe2ec | 2014-11-10 17:16:49 -0700 | [diff] [blame] | 13 | #else |
| 14 | static inline void dm_warn(const char *fmt, ...) |
| 15 | { |
| 16 | } |
| 17 | #endif |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 18 | |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 19 | struct list_head; |
| 20 | |
| 21 | /** |
| 22 | * list_count_items() - Count number of items in a list |
| 23 | * |
| 24 | * @param head: Head of list |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 25 | * Return: number of items, or 0 if empty |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 26 | */ |
| 27 | int list_count_items(struct list_head *head); |
| 28 | |
Simon Glass | e5314c1 | 2023-01-17 10:47:12 -0700 | [diff] [blame] | 29 | /** |
AKASHI Takahiro | f06f082 | 2023-08-23 10:49:47 +0900 | [diff] [blame^] | 30 | * Dump out a tree of all devices starting @uclass |
Simon Glass | e5314c1 | 2023-01-17 10:47:12 -0700 | [diff] [blame] | 31 | * |
AKASHI Takahiro | f06f082 | 2023-08-23 10:49:47 +0900 | [diff] [blame^] | 32 | * @dev_name: udevice name |
| 33 | * @extended: true if forword-matching expected |
Simon Glass | e5314c1 | 2023-01-17 10:47:12 -0700 | [diff] [blame] | 34 | * @sort: Sort by uclass name |
| 35 | */ |
AKASHI Takahiro | f06f082 | 2023-08-23 10:49:47 +0900 | [diff] [blame^] | 36 | void dm_dump_tree(char *dev_name, bool extended, bool sort); |
Simon Glass | d9f9a89 | 2015-06-23 15:38:35 -0600 | [diff] [blame] | 37 | |
AKASHI Takahiro | f06f082 | 2023-08-23 10:49:47 +0900 | [diff] [blame^] | 38 | /* |
| 39 | * Dump out a list of uclasses and their devices |
| 40 | * |
| 41 | * @uclass: uclass name |
| 42 | * @extended: true if forword-matching expected |
| 43 | */ |
| 44 | void dm_dump_uclass(char *uclass, bool extended); |
Simon Glass | d9f9a89 | 2015-06-23 15:38:35 -0600 | [diff] [blame] | 45 | |
Masahiro Yamada | f929c0b | 2015-07-25 21:52:38 +0900 | [diff] [blame] | 46 | #ifdef CONFIG_DEBUG_DEVRES |
| 47 | /* Dump out a list of device resources */ |
| 48 | void dm_dump_devres(void); |
| 49 | #else |
| 50 | static inline void dm_dump_devres(void) |
| 51 | { |
| 52 | } |
| 53 | #endif |
| 54 | |
Sean Anderson | 0282757 | 2020-01-17 14:48:09 -0500 | [diff] [blame] | 55 | /* Dump out a list of drivers */ |
| 56 | void dm_dump_drivers(void); |
| 57 | |
Niel Fourie | 39832fb | 2020-03-24 16:17:05 +0100 | [diff] [blame] | 58 | /* Dump out a list with each driver's compatibility strings */ |
| 59 | void dm_dump_driver_compat(void); |
| 60 | |
| 61 | /* Dump out a list of drivers with static platform data */ |
| 62 | void dm_dump_static_driver_info(void); |
| 63 | |
Simon Glass | c8b5e22 | 2022-05-08 04:39:26 -0600 | [diff] [blame] | 64 | /** |
| 65 | * dm_dump_mem() - Dump stats on memory usage in driver model |
| 66 | * |
| 67 | * @mem: Stats to dump |
| 68 | */ |
| 69 | void dm_dump_mem(struct dm_stats *stats); |
| 70 | |
Simon Glass | 781aa3e | 2021-03-15 17:25:40 +1300 | [diff] [blame] | 71 | #if CONFIG_IS_ENABLED(OF_PLATDATA_INST) && CONFIG_IS_ENABLED(READ_ONLY) |
| 72 | void *dm_priv_to_rw(void *priv); |
| 73 | #else |
| 74 | static inline void *dm_priv_to_rw(void *priv) |
| 75 | { |
| 76 | return priv; |
| 77 | } |
| 78 | #endif |
Pierre-Clément Tosi | fe51fb9 | 2021-09-30 17:52:45 +0200 | [diff] [blame] | 79 | |
| 80 | #endif |