From: Neil Armstrong Date: Thu, 8 Aug 2024 23:59:26 +0000 (+0200) Subject: mach-snapdragon: use 1MiB for get_page_table_size() X-Git-Url: http://git.dujemihanovic.xyz/img/static/git-favicon.png?a=commitdiff_plain;h=d57a6da542b9d6810992a980f09abfe7da47e1b7;p=u-boot.git mach-snapdragon: use 1MiB for get_page_table_size() With 14+ entries in the memory map, we need quite a bit more space for the page tables. Signed-off-by: Neil Armstrong Signed-off-by: Caleb Connolly --- diff --git a/arch/arm/mach-snapdragon/board.c b/arch/arm/mach-snapdragon/board.c index 93de516d9e..3b9178925c 100644 --- a/arch/arm/mach-snapdragon/board.c +++ b/arch/arm/mach-snapdragon/board.c @@ -414,7 +414,7 @@ static void build_mem_map(void) u64 get_page_table_size(void) { - return SZ_64K; + return SZ_1M; } static int fdt_cmp_res(const void *v1, const void *v2)