Re: [PATCH v1] board: toradex: verdin-am62_r5: Increase SPL_STACK_R_MALLOC_SIMPLE_LEN

2024-03-22 Thread Tom Rini
On Wed, 20 Mar 2024 13:48:45 -0300, Hiago De Franco wrote:

> Increase the SPL_STACK_R_MALLOC_SIMPLE_LEN to 0x20 to accommodate the
> size of tispl.bin fit image. With the recent upgrade of ti-linux-firmware
> from version v9.1.0 to v9.2.5, the size of tispl.bin fit image has
> increased to 1.4MB, causing allocation errors in the R5 SPL:
> 
> ```
> alloc space exhausted
> Could not get FIT buffer of 1325056 bytes
> check CONFIG_SPL_SYS_MALLOC_SIZE
> ```
> 
> [...]

Applied to u-boot/master, thanks!

-- 
Tom




Re: [PATCH v1] board: toradex: verdin-am62_r5: Increase SPL_STACK_R_MALLOC_SIMPLE_LEN

2024-03-21 Thread Tom Rini
On Thu, Mar 21, 2024 at 06:07:32PM +0100, Francesco Dolcini wrote:
> On Wed, Mar 20, 2024 at 01:48:45PM -0300, Hiago De Franco wrote:
> > From: Hiago De Franco 
> > 
> > Increase the SPL_STACK_R_MALLOC_SIMPLE_LEN to 0x20 to accommodate the
> > size of tispl.bin fit image. With the recent upgrade of ti-linux-firmware
> > from version v9.1.0 to v9.2.5, the size of tispl.bin fit image has
> > increased to 1.4MB, causing allocation errors in the R5 SPL:
> > 
> > ```
> > alloc space exhausted
> > Could not get FIT buffer of 1325056 bytes
> > check CONFIG_SPL_SYS_MALLOC_SIZE
> > ```
> > 
> > Signed-off-by: Hiago De Franco 
> Reviewed-by: Francesco Dolcini 
> 
> 
> Tom, this is also a candidate for master, thanks :-)

OK, thanks.

-- 
Tom


signature.asc
Description: PGP signature


Re: [PATCH v1] board: toradex: verdin-am62_r5: Increase SPL_STACK_R_MALLOC_SIMPLE_LEN

2024-03-21 Thread Francesco Dolcini
On Wed, Mar 20, 2024 at 01:48:45PM -0300, Hiago De Franco wrote:
> From: Hiago De Franco 
> 
> Increase the SPL_STACK_R_MALLOC_SIMPLE_LEN to 0x20 to accommodate the
> size of tispl.bin fit image. With the recent upgrade of ti-linux-firmware
> from version v9.1.0 to v9.2.5, the size of tispl.bin fit image has
> increased to 1.4MB, causing allocation errors in the R5 SPL:
> 
> ```
> alloc space exhausted
> Could not get FIT buffer of 1325056 bytes
> check CONFIG_SPL_SYS_MALLOC_SIZE
> ```
> 
> Signed-off-by: Hiago De Franco 
Reviewed-by: Francesco Dolcini 


Tom, this is also a candidate for master, thanks :-)

Francesco



[PATCH v1] board: toradex: verdin-am62_r5: Increase SPL_STACK_R_MALLOC_SIMPLE_LEN

2024-03-20 Thread Hiago De Franco
From: Hiago De Franco 

Increase the SPL_STACK_R_MALLOC_SIMPLE_LEN to 0x20 to accommodate the
size of tispl.bin fit image. With the recent upgrade of ti-linux-firmware
from version v9.1.0 to v9.2.5, the size of tispl.bin fit image has
increased to 1.4MB, causing allocation errors in the R5 SPL:

```
alloc space exhausted
Could not get FIT buffer of 1325056 bytes
check CONFIG_SPL_SYS_MALLOC_SIZE
```

Signed-off-by: Hiago De Franco 
---
 configs/verdin-am62_r5_defconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configs/verdin-am62_r5_defconfig b/configs/verdin-am62_r5_defconfig
index a3febdcb6941..5b4b81c925a0 100644
--- a/configs/verdin-am62_r5_defconfig
+++ b/configs/verdin-am62_r5_defconfig
@@ -35,7 +35,7 @@ CONFIG_SPL_BSS_MAX_SIZE=0x3000
 CONFIG_SPL_SYS_REPORT_STACK_F_USAGE=y
 CONFIG_SPL_SYS_MALLOC_SIMPLE=y
 CONFIG_SPL_STACK_R=y
-CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x14
+CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x20
 CONFIG_SPL_SEPARATE_BSS=y
 CONFIG_SPL_SYS_MALLOC=y
 CONFIG_SPL_HAS_CUSTOM_MALLOC_START=y
-- 
2.39.2