board: visionfive2: Fixup memory size passed to kernel

Use fdt_fixup_memory to make the memory size data from dtb match
the actual size.

Signed-off-by: Shengyu Qu <wiagn233@outlook.com>
Tested-by: Milan P. Stanić <mps@arvanta.net>
This commit is contained in:
Shengyu Qu 2023-09-17 03:36:33 +08:00 committed by Leo Yu-Chi Liang
parent 7d4810cac5
commit 43177705ab

View file

@ -9,8 +9,10 @@
#include <asm/sections.h>
#include <cpu_func.h>
#include <dm.h>
#include <fdt_support.h>
#include <linux/bitops.h>
DECLARE_GLOBAL_DATA_PTR;
#define JH7110_L2_PREFETCHER_BASE_ADDR 0x2030000
#define JH7110_L2_PREFETCHER_HART_OFFSET 0x2000
@ -51,3 +53,8 @@ void *board_fdt_blob_setup(int *err)
return (ulong *)&_end;
}
int ft_board_setup(void *blob, struct bd_info *bd)
{
return fdt_fixup_memory(blob, 0x40000000, gd->ram_size);
}