mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-02-28 07:02:22 +01:00
ARM: uniphier: skip memreserve of unused DRAM bank of LD20
Now the "for" loop here iterates on the detected memory banks.
It must skip unused DRAM banks.
Fixes: c995f3a3c5 ("ARM: uniphier: use gd->bd->bi_dram for memory reserve on LD20 SoC")
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
This commit is contained in:
parent
0f5bf09cf1
commit
87c3308cbf
1 changed files with 3 additions and 0 deletions
|
|
@ -256,6 +256,9 @@ int ft_board_setup(void *fdt, bd_t *bd)
|
|||
return 0;
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(gd->bd->bi_dram); i++) {
|
||||
if (!gd->bd->bi_dram[i].size)
|
||||
continue;
|
||||
|
||||
rsv_addr = gd->bd->bi_dram[i].start + gd->bd->bi_dram[i].size;
|
||||
rsv_addr -= rsv_size;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue