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