Skip to content
Snippets Groups Projects
Commit 633fdab0 authored by Kever Yang's avatar Kever Yang Committed by Simon Glass
Browse files

rk3399: Reserve space for ARM Trust Firmware


RK3399 needs reserve 0x200000 at the beginning of DRAM, for ATF bl31.

Signed-off-by: default avatarKever Yang <kever.yang@rock-chips.com>
Acked-by: default avatarSimon Glass <sjg@chromium.org>
parent b357a7f7
No related merge requests found
......@@ -21,6 +21,7 @@ int dram_init(void)
void dram_init_banksize(void)
{
gd->bd->bi_dram[0].start = 0;
/* Reserve 0x200000 for ATF bl31 */
gd->bd->bi_dram[0].start = 0x200000;
gd->bd->bi_dram[0].size = 0x80000000;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment