diff options
author | Paul Kocialkowski | 2024-07-29 20:59:52 +0200 |
---|---|---|
committer | Paul Kocialkowski | 2024-07-29 21:00:27 +0200 |
commit | 5e5fe0f38dfe2820859855529aaa75368f4d6300 (patch) | |
tree | c7b4559587815071deaacfdd8b29d348dad121cf /common/spl/spl.c | |
parent | 06c332a3a1b1d3d97e72debaf83ba2bf9fdf4693 (diff) |
DEBUG: spl: Add DM dump in board_init_romap/sniper/work
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
Diffstat (limited to 'common/spl/spl.c')
-rw-r--r-- | common/spl/spl.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/spl/spl.c b/common/spl/spl.c index 7794ddccade..52180709ad5 100644 --- a/common/spl/spl.c +++ b/common/spl/spl.c @@ -740,6 +740,9 @@ void board_init_r(gd_t *dummy1, ulong dummy2) dm_dump_mem(&mem); } + dm_dump_drivers(); + dm_dump_tree(NULL, false, false); + memset(&spl_image, '\0', sizeof(spl_image)); if (IS_ENABLED(CONFIG_SPL_OS_BOOT)) spl_image.arg = (void *)SPL_PAYLOAD_ARGS_ADDR; |