On 01-18 18:18, Jens Maus wrote: > > > I am afraid you will have to connect that UART debug cable and share > > what is the memory map on your device :-) > > No problem.
Thanks, but could you apply attached patch and send me the logs when there is HDMI monitor connected to the board and one when cable is unplugged. Regards, Ivan
>From f9e039d3febbb046fe06f72731e7ba558927aa55 Mon Sep 17 00:00:00 2001 From: "Ivan T. Ivanov" <iiva...@suse.de> Date: Fri, 19 Jan 2024 07:22:39 +0200 Subject: [PATCH] fdtdec: hack: Show DRAM size parameters --- lib/fdtdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fdtdec.c b/lib/fdtdec.c index b2c59ab381..84cbd82cdb 100644 --- a/lib/fdtdec.c +++ b/lib/fdtdec.c @@ -1107,7 +1107,7 @@ int fdtdec_setup_memory_banksize(void) gd->bd->bi_dram[bank].size = (phys_size_t)(res.end - res.start + 1); - debug("%s: DRAM Bank #%d: start = 0x%llx, size = 0x%llx\n", + printf("%s: DRAM Bank #%d: start = 0x%llx, size = 0x%llx\n", __func__, bank, (unsigned long long)gd->bd->bi_dram[bank].start, (unsigned long long)gd->bd->bi_dram[bank].size); -- 2.35.3