From: Marek Szyprowski Date: Thu, 13 Feb 2020 08:50:54 +0000 (+0100) Subject: config: rpi: Increase malloc buffer size X-Git-Tag: accepted/tizen/unified/20200214.050352~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F29%2F224829%2F2;p=platform%2Fkernel%2Fu-boot.git config: rpi: Increase malloc buffer size GENET ethernet driver and THORdown consume more memory than the default 4M, so increase the malloc buffer size to 16M to let them work together. Signed-off-by: Marek Szyprowski Change-Id: I1c4d386761699fcb72b1a76d90d50518554a2980 --- diff --git a/include/configs/rpi.h b/include/configs/rpi.h index aa6be35..f88ab2d 100644 --- a/include/configs/rpi.h +++ b/include/configs/rpi.h @@ -57,7 +57,7 @@ #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + \ CONFIG_SYS_SDRAM_SIZE - \ GENERATED_GBL_DATA_SIZE) -#define CONFIG_SYS_MALLOC_LEN SZ_4M +#define CONFIG_SYS_MALLOC_LEN SZ_16M #define CONFIG_SYS_MEMTEST_START 0x00100000 #define CONFIG_SYS_MEMTEST_END 0x00200000 #define CONFIG_LOADADDR 0x00200000