From: Tim Harvey Date: Fri, 9 Jun 2023 16:54:01 +0000 (-0700) Subject: board: gateworks: venice: display dram speed X-Git-Url: http://git.dujemihanovic.xyz/img/static/git-logo.png?a=commitdiff_plain;h=80fbbf4c810452bfbd140a36658aaaaca406b7a0;p=u-boot.git board: gateworks: venice: display dram speed Display dram speed during configuration. Signed-off-by: Tim Harvey --- diff --git a/board/gateworks/venice/spl.c b/board/gateworks/venice/spl.c index 50056da3ee..c81498e830 100644 --- a/board/gateworks/venice/spl.c +++ b/board/gateworks/venice/spl.c @@ -83,9 +83,12 @@ static void spl_dram_init(int size) printf("DRAM : LPDDR4 "); if (size > 512) - printf("%d GiB\n", size / 1024); + printf("%d GiB", size / 1024); else - printf("%d MiB\n", size); + printf("%d MiB", size); + printf(" %dMT/s %dMHz\n", + dram_timing->fsp_msg[0].drate, + dram_timing->fsp_msg[0].drate / 2); ddr_init(dram_timing); }