projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a717b81
)
arm: socfpga: spl: Adjust the SYS_INIT_RAM_SIZE to have room for the spl malloc
author
Dinh Nguyen
<dinguyen@opensource.altera.com>
Mon, 30 Mar 2015 22:01:13 +0000
(17:01 -0500)
committer
Marek Vasut
<marex@denx.de>
Tue, 21 Apr 2015 10:23:17 +0000
(12:23 +0200)
We need to adjust the SYS_INIT_RAM_SIZE to have room for the
SPL_MALLOC_SIZE.
Signed-off-by: Dinh Nguyen <dinguyen@opensource.altera.com>
include/configs/socfpga_common.h
patch
|
blob
|
history
diff --git
a/include/configs/socfpga_common.h
b/include/configs/socfpga_common.h
index 1111c16ee474f8fc93ea763b69e7e1eb4809445f..41bb52bc8c071199fe09e56f8ec0a1f0d220e1b8 100644
(file)
--- a/
include/configs/socfpga_common.h
+++ b/
include/configs/socfpga_common.h
@@
-40,7
+40,7
@@
#define CONFIG_SYS_MEMTEST_END PHYS_SDRAM_1_SIZE
#define CONFIG_SYS_INIT_RAM_ADDR 0xFFFF0000
-#define CONFIG_SYS_INIT_RAM_SIZE (0x10000 -
0x100
)
+#define CONFIG_SYS_INIT_RAM_SIZE (0x10000 -
CONFIG_SYS_SPL_MALLOC_SIZE
)
#define CONFIG_SYS_INIT_SP_ADDR \
(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_RAM_SIZE - \
GENERATED_GBL_DATA_SIZE)