Re: [PATCH] ls10xxx: Use a sane SPL_SYS_MALLOC_F_LEN default

2022-04-28 Thread Tom Rini
On Thu, Apr 28, 2022 at 12:31:08PM -0400, Sean Anderson wrote: > Hi Fabio, > > On 4/28/22 12:23 PM, Fabio Estevam wrote: > > Hi Sean, > > > > On Thu, Apr 28, 2022 at 1:02 PM Sean Anderson > > wrote: > >> > >> SPL_SYS_MALLOC_F_LEN defaults to SYS_MALLOC_F_LEN. 0x1 (the new > >> default) is

Re: [PATCH] ls10xxx: Use a sane SPL_SYS_MALLOC_F_LEN default

2022-04-28 Thread Fabio Estevam
Hi Sean, On 28/04/2022 13:31, Sean Anderson wrote: That would also work. The primary problem is that between v2 and v3 the default got raised from 0x2000 to 0x1. Do you remember why you added layerscape stuff in the first place? The only non-default value for this property for this

Re: [PATCH] ls10xxx: Use a sane SPL_SYS_MALLOC_F_LEN default

2022-04-28 Thread Sean Anderson
Hi Fabio, On 4/28/22 12:23 PM, Fabio Estevam wrote: > Hi Sean, > > On Thu, Apr 28, 2022 at 1:02 PM Sean Anderson wrote: >> >> SPL_SYS_MALLOC_F_LEN defaults to SYS_MALLOC_F_LEN. 0x1 (the new >> default) is 64 KiB, or around half of the total OCRAM size. Revert to >> the previous default of

Re: [PATCH] ls10xxx: Use a sane SPL_SYS_MALLOC_F_LEN default

2022-04-28 Thread Fabio Estevam
Hi Sean, On Thu, Apr 28, 2022 at 1:02 PM Sean Anderson wrote: > > SPL_SYS_MALLOC_F_LEN defaults to SYS_MALLOC_F_LEN. 0x1 (the new > default) is 64 KiB, or around half of the total OCRAM size. Revert to > the previous default of 0x2000. This fixes SPL boot. > > Fixes: 545eceb520

[PATCH] ls10xxx: Use a sane SPL_SYS_MALLOC_F_LEN default

2022-04-28 Thread Sean Anderson
SPL_SYS_MALLOC_F_LEN defaults to SYS_MALLOC_F_LEN. 0x1 (the new default) is 64 KiB, or around half of the total OCRAM size. Revert to the previous default of 0x2000. This fixes SPL boot. Fixes: 545eceb520 ("imx8/ls10xx: Use a sane SYS_MALLOC_F_LEN default") Signed-off-by: Sean Anderson ---