summaryrefslogtreecommitdiff
path: root/Kconfig
diff options
context:
space:
mode:
authorPaul Kocialkowski <[email protected]>2024-07-28 22:24:51 +0200
committerTom Rini <[email protected]>2024-08-06 18:32:45 -0600
commitb979fd5e300347a9ce4d8587571b674af80987de (patch)
tree40e862c96258d75693b9fb83221bb8b03711781b /Kconfig
parent2f92cf6b93e684c7410582f24cc77999b4c0814c (diff)
omap3: Define common init stack pointer address in Kconfig
The init stack pointer was defined to the same value in each OMAP3 board defconfig. Move the common definition to the Kconfig option declaration instead. Signed-off-by: Paul Kocialkowski <[email protected]> Reviewed-by: Tom Rini <[email protected]> Tested-by: Derald D. Woods <[email protected]>
Diffstat (limited to 'Kconfig')
-rw-r--r--Kconfig2
1 files changed, 2 insertions, 0 deletions
diff --git a/Kconfig b/Kconfig
index 82df59f176e..98175a8f336 100644
--- a/Kconfig
+++ b/Kconfig
@@ -236,6 +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 TFABOOT
help
Typically, we use an initial stack pointer address that is calculated
@@ -249,6 +250,7 @@ config HAS_CUSTOM_SYS_INIT_SP_ADDR
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 TEXT_BASE if TFABOOT
config SYS_MALLOC_F