mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-30 19:11:37 +02:00
arm: mediatek: fix ram init for mt7622 (decrease to 1G)
RAM init on mt7622 based bananapi R64 is broken since v2023.10. Increasing the mem-map does not help here, so i reduced the maximum available ram in get_ram_size call from 2G to 1G (board has only 1G). Fixes: 5fd6d4c7b3ad ("arm: mediatek: retrieve ram_base from dts node for armv8 platform") Signed-off-by: Frank Wunderlich <frank-w@public-files.de>
This commit is contained in:
parent
c38af2ccfd
commit
efee71ab4d
@ -28,7 +28,7 @@ int dram_init(void)
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
gd->ram_size = get_ram_size((void *)gd->ram_base, SZ_2G);
|
||||
gd->ram_size = get_ram_size((void *)gd->ram_base, SZ_1G);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user