diff options
| author | Andrew Davis <[email protected]> | 2025-12-08 13:06:33 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-12-31 10:13:00 -0600 |
| commit | d2bd9ee7de35b80092e1abaf8feb576dba25128f (patch) | |
| tree | 0eb38213fc41b49177dbd65978ba34fd2b24a52e /common/spl | |
| parent | 0082756320d713c412d6df13c0a3be9b29cf7496 (diff) | |
spl: Kconfig: k3: Increase malloc size after relocation for R5
Seems the "generous 2MB space" is no longer enough for SPL on some K3 R5
platforms so let's increase this to 4MB. That matches what we give to
ARM64 SPL, so combine these.
Signed-off-by: Andrew Davis <[email protected]>
Reviewed-by: Bryan Brattlof <[email protected]>
Diffstat (limited to 'common/spl')
| -rw-r--r-- | common/spl/Kconfig | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig index 3b7b6cafef8..0411a5edc9f 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -465,8 +465,7 @@ config SPL_STACK_R_ADDR config SPL_STACK_R_MALLOC_SIMPLE_LEN depends on SPL_STACK_R && SPL_SYS_MALLOC_SIMPLE hex "Size of malloc_simple heap after switching to DRAM SPL stack" - default 0x400000 if ARCH_K3 && ARM64 - default 0x200000 if ARCH_K3 && CPU_V7R + default 0x400000 if ARCH_K3 default 0x100000 help Specify the amount of the stack to use as memory pool for |
