summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authoryanhong.wang <yanhong.wang@starfivetech.com>2022-05-16 13:52:04 +0300
committerYanhong Wang <yanhong.wang@linux.starfivetech.com>2022-10-18 11:24:35 +0300
commit41f9b1fe8d38ff8ab4f4e44aa953125834f9b41c (patch)
tree790b0e7cc4a7d7cc2b96b9e378cf44b6d3c2dd98 /include
parent00018eb98a12f2ebbbd25fcca0d1262939ebc769 (diff)
downloadu-boot-41f9b1fe8d38ff8ab4f4e44aa953125834f9b41c.tar.xz
board:starfive: Modify dynamic alloc memory start addr in SPL
Modify the dynamic alloc memory start address from L2 LIM to DDR. Signed-off-by: yanhong.wang <yanhong.wang@starfivetech.com>
Diffstat (limited to 'include')
-rw-r--r--include/configs/starfive-evb.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/configs/starfive-evb.h b/include/configs/starfive-evb.h
index 65c92ca339..d20fcbafca 100644
--- a/include/configs/starfive-evb.h
+++ b/include/configs/starfive-evb.h
@@ -16,9 +16,8 @@
#define CONFIG_SPL_MAX_SIZE 0x00040000
#define CONFIG_SPL_BSS_START_ADDR 0x08040000
#define CONFIG_SPL_BSS_MAX_SIZE 0x00010000
-#define CONFIG_SYS_SPL_MALLOC_START (CONFIG_SPL_BSS_START_ADDR + \
- CONFIG_SPL_BSS_MAX_SIZE)
-#define CONFIG_SYS_SPL_MALLOC_SIZE 0x00100000
+#define CONFIG_SYS_SPL_MALLOC_START (0x80000000)
+#define CONFIG_SYS_SPL_MALLOC_SIZE 0x00800000
#define CONFIG_SPL_STACK (0x08000000 + 0x00180000 - \
GENERATED_GBL_DATA_SIZE)