summaryrefslogtreecommitdiffstats
path: root/include/configs/sam9x60ek.h
diff options
context:
space:
mode:
authorClaudiu Beznea <claudiu.beznea@microchip.com>2020-10-07 18:17:07 +0300
committerEugen Hristev <eugen.hristev@microchip.com>2020-10-19 09:19:53 +0300
commit53040bc4d92dc9d50dea84f7036a1233b64f2a98 (patch)
tree80ef6581240bd1e5b897a243fa336d3acfad5e47 /include/configs/sam9x60ek.h
parent3d19a7ee8ca7af01f75ff24622ea3c9840cd5bca (diff)
downloadu-boot-53040bc4d92dc9d50dea84f7036a1233b64f2a98.tar.gz
u-boot-53040bc4d92dc9d50dea84f7036a1233b64f2a98.tar.xz
u-boot-53040bc4d92dc9d50dea84f7036a1233b64f2a98.zip
board: atmel: sam9x60ek: add SYS_MALLOC_F_LEN to SYS_INIT_SP_ADDR
Heap base address is computed based on SYS_INIT_SP_ADDR by subtracting the SYS_MALLOC_F_LEN value in board_init_f_init_reserve(). Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
Diffstat (limited to 'include/configs/sam9x60ek.h')
-rw-r--r--include/configs/sam9x60ek.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/configs/sam9x60ek.h b/include/configs/sam9x60ek.h
index 19714402ca..6a6f1de41d 100644
--- a/include/configs/sam9x60ek.h
+++ b/include/configs/sam9x60ek.h
@@ -40,7 +40,8 @@
#define CONFIG_SYS_SDRAM_SIZE 0x10000000 /* 256 megs */
#define CONFIG_SYS_INIT_SP_ADDR \
- (CONFIG_SYS_SDRAM_BASE + 16 * 1024 - GENERATED_GBL_DATA_SIZE)
+ (CONFIG_SYS_SDRAM_BASE + 16 * 1024 + CONFIG_SYS_MALLOC_F_LEN - \
+ GENERATED_GBL_DATA_SIZE)
/* NAND flash */
#ifdef CONFIG_CMD_NAND