mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-29 09:45:52 +00:00
board: gateworks: venice: display dram speed
Display dram speed during configuration. Signed-off-by: Tim Harvey <tharvey@gateworks.com>
This commit is contained in:
parent
a59b3cd035
commit
80fbbf4c81
1 changed files with 5 additions and 2 deletions
|
@ -83,9 +83,12 @@ static void spl_dram_init(int size)
|
||||||
|
|
||||||
printf("DRAM : LPDDR4 ");
|
printf("DRAM : LPDDR4 ");
|
||||||
if (size > 512)
|
if (size > 512)
|
||||||
printf("%d GiB\n", size / 1024);
|
printf("%d GiB", size / 1024);
|
||||||
else
|
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);
|
ddr_init(dram_timing);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue