diff mbox

[U-Boot,3/4,v2] SPL: P1022DS: fix the problem booting from spi flash

Message ID 1390549809-23070-3-git-send-email-ying.zhang@freescale.com
State Accepted
Delegated to: York Sun
Headers show

Commit Message

ying.zhang@freescale.com Jan. 24, 2014, 7:50 a.m. UTC
From: Ying Zhang <b40530@freescale.com>

There was no enough memory for malloc in SPL booting from spi flash, so
relayout the memory in SPL: reduce the memory for global data from 16K
Bytes to 4K Bytes, save the space for malloc.

Signed-off-by: Ying Zhang <b40530@freescale.com>
---
Change from v1:
- Move the content about P2020RDB to 2 of patchset.

 include/configs/P1022DS.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

York Sun Feb. 24, 2014, 11:49 p.m. UTC | #1
On 01/23/2014 11:50 PM, ying.zhang@freescale.com wrote:
> From: Ying Zhang <b40530@freescale.com>
> 
> There was no enough memory for malloc in SPL booting from spi flash, so
> relayout the memory in SPL: reduce the memory for global data from 16K
> Bytes to 4K Bytes, save the space for malloc.
> 
> Signed-off-by: Ying Zhang <b40530@freescale.com>
> ---
> Change from v1:
> - Move the content about P2020RDB to 2 of patchset.
> 

Applied to u-boot-mpc85xx/master. Thanks.

York
diff mbox

Patch

diff --git a/include/configs/P1022DS.h b/include/configs/P1022DS.h
index edc8931..e9e7e88 100644
--- a/include/configs/P1022DS.h
+++ b/include/configs/P1022DS.h
@@ -366,10 +366,10 @@ 
 #define CONFIG_SYS_L2_SIZE		(256 << 10)
 #define CONFIG_SYS_INIT_L2_END	(CONFIG_SYS_INIT_L2_ADDR + CONFIG_SYS_L2_SIZE)
 #define CONFIG_SPL_RELOC_TEXT_BASE	0xf8f81000
-#define CONFIG_SPL_RELOC_STACK		(CONFIG_SYS_INIT_L2_ADDR + 128 * 1024)
+#define CONFIG_SPL_RELOC_STACK		(CONFIG_SYS_INIT_L2_ADDR + 116 * 1024)
 #define CONFIG_SPL_RELOC_STACK_SIZE	(32 << 10)
-#define CONFIG_SPL_RELOC_MALLOC_ADDR	(CONFIG_SYS_INIT_L2_ADDR + 160 * 1024)
-#define CONFIG_SPL_RELOC_MALLOC_SIZE	(96 << 10)
+#define CONFIG_SPL_RELOC_MALLOC_ADDR	(CONFIG_SYS_INIT_L2_ADDR + 148 * 1024)
+#define CONFIG_SPL_RELOC_MALLOC_SIZE	(108 << 10)
 #define CONFIG_SPL_GD_ADDR		(CONFIG_SYS_INIT_L2_ADDR + 112 * 1024)
 #elif defined(CONFIG_NAND)
 #ifdef CONFIG_TPL_BUILD