From: Masahiro Yamada <yamada.m@jp.panasonic.com>
Date: Tue, 11 Nov 2014 12:50:41 +0000 (+0900)
Subject: ARM: UniPhier: decrease pre-reloc malloc area size
X-Git-Tag: v2025.01-rc5-pxa1908~14323^2~2
X-Git-Url: http://git.dujemihanovic.xyz/img/%22http:/www.sics.se/static/git-logo.png?a=commitdiff_plain;h=0d8c7f747ee508c13a7a1682013de8e7b3f1f32e;p=u-boot.git

ARM: UniPhier: decrease pre-reloc malloc area size

In the current implementation of the boot sequence of UniPhier
platform, 32KB temporary RAM is available before relocation.
The malloc area and the stack shares the 32KB area.

With CONFIG_SYS_MALLOC_F_LEN set to 0x7000 (28KB), only 0x1000 (4KB)
is left for the stack.  In some use cases, the system hangs up
with stack over-flow.

Even with driver-model UART enabled, the malloc area of 0x2000 (8KB)
should be enough.

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
---

diff --git a/include/configs/uniphier-common.h b/include/configs/uniphier-common.h
index c779c9fdac..45becc1795 100644
--- a/include/configs/uniphier-common.h
+++ b/include/configs/uniphier-common.h
@@ -43,7 +43,7 @@ are defined. Select only one of them."
 #define CONFIG_SMC911X_BASE		CONFIG_SUPPORT_CARD_ETHER_BASE
 #define CONFIG_SMC911X_32_BIT
 
-#define CONFIG_SYS_MALLOC_F_LEN  0x7000
+#define CONFIG_SYS_MALLOC_F_LEN  0x2000
 
 /*-----------------------------------------------------------------------
  * MMU and Cache Setting