Rockchip: bootloader: use correct ddrbin for RK3399

We are currently using an older ddrbin for RK3399 which doesn't align
with the miniloader version - this leads to this error during ATF init:

INFO:    If lpddr4 need support multi frequency,
INFO:    please update loader!
INFO:    Current ctl index[0] freq=400MHz
INFO:    Current ctl index[1] freq=800MHz
INFO:    plat_rockchip_pmu_init(1190): pd status 3e

Fix this by using correct ddrbin.
This commit is contained in:
Alex Bee 2021-05-10 14:04:40 +02:00
parent 77bf137f57
commit b190c0d3c4

View File

@ -26,7 +26,7 @@ case "${PKG_SOC}" in
PKG_LOAD_ADDR="0x200000"
;;
rk3399)
PKG_DATAFILE="${PKG_RKBIN}/rk33/rk3399_ddr_800MHz_v1.17.bin"
PKG_DATAFILE="${PKG_RKBIN}/rk33/rk3399_ddr_800MHz_v1.24.bin"
PKG_LOADER="${PKG_RKBIN}/rk33/rk3399_miniloader_v1.24.bin"
PKG_BL31="${PKG_RKBIN}/rk33/rk3399_bl31_v1.31.elf"
PKG_BL31_ADDR="0x40000"