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