aboutsummaryrefslogtreecommitdiff
path: root/Kconfig
diff options
context:
space:
mode:
authorPaul Kocialkowski2024-07-28 17:39:09 +0200
committerPaul Kocialkowski2024-07-28 19:53:12 +0200
commite14b3d8913316e3a85e10c44689c6bee6f20f22f (patch)
treeb571443e165355e0fa77ae0783b76f97e6494aab /Kconfig
parent4377ecbb5abdd83c35c37e327c0782342a9813ca (diff)
am33xx: Define common init stack pointer address in Kconfig
The init stack pointer was defined to the same value in each AM33xx board defconfig. Move the common definition to the Kconfig option declaration instead. Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
Diffstat (limited to 'Kconfig')
-rw-r--r--Kconfig3
1 files changed, 2 insertions, 1 deletions
diff --git a/Kconfig b/Kconfig
index 98175a8f336..45656e90b91 100644
--- a/Kconfig
+++ b/Kconfig
@@ -236,7 +236,7 @@ config SYS_BOOT_GET_KBD
config HAS_CUSTOM_SYS_INIT_SP_ADDR
bool "Use a custom location for the initial stack pointer address"
depends on ARC || (ARM && !INIT_SP_RELATIVE) || MIPS || PPC || RISCV
- default y if OMAP34XX
+ default y if OMAP34XX || AM33XX
default y if TFABOOT
help
Typically, we use an initial stack pointer address that is calculated
@@ -251,6 +251,7 @@ config CUSTOM_SYS_INIT_SP_ADDR
hex "Static location for the initial stack pointer"
depends on HAS_CUSTOM_SYS_INIT_SP_ADDR
default 0x4020ff00 if OMAP34XX
+ default 0x4030ff00 if AM33XX
default TEXT_BASE if TFABOOT
config SYS_MALLOC_F