Re: [U-Boot] [PATCH 5/6] spl: support using full malloc with SYS_MALLOC_F_LEN

2019-03-19 Thread Simon Goldschmidt
Hi Simon, you were replying to v1 where v2 has already been sent. However, this patch hasn't changed, so I'm commenting here. Am 19.03.2019 um 02:24 schrieb Simon Glass: Hi Simon, On Tue, 12 Mar 2019 at 05:35, Simon Goldschmidt wrote: Some platforms (like socfpga A10) need a big hep befor

Re: [U-Boot] [PATCH 5/6] spl: support using full malloc with SYS_MALLOC_F_LEN

2019-03-18 Thread Simon Glass
Hi Simon, On Tue, 12 Mar 2019 at 05:35, Simon Goldschmidt wrote: > > Some platforms (like socfpga A10) need a big hep before SDRAM is available > (e.g. because FAT is used). For such platforms, simple_malloc is often not > a good option as it does not support freeing memory. These platforms often

[U-Boot] [PATCH 5/6] spl: support using full malloc with SYS_MALLOC_F_LEN

2019-03-11 Thread Simon Goldschmidt
Some platforms (like socfpga A10) need a big hep before SDRAM is available (e.g. because FAT is used). For such platforms, simple_malloc is often not a good option as it does not support freeing memory. These platforms often use the non-Kconfig defines CONFIG_SYS_SPL_MALLOC_START (and its SIZE). T