summaryrefslogtreecommitdiff
path: root/Kconfig
diff options
context:
space:
mode:
authorPaul Kocialkowski <[email protected]>2024-07-28 22:24:54 +0200
committerTom Rini <[email protected]>2024-08-06 18:32:45 -0600
commite7f605816ae6b49c1bb774152e3cce20654f01ac (patch)
tree649bc5840e91366be6bd287bd185e9f2a52ee72f /Kconfig
parent7cf8ded76ca25922e2f84f78058596db8408d89e (diff)
am43xx: Define common init stack pointer address in Kconfig
The init stack pointer was defined to the same value in each AM43xx 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--Kconfig3
1 files changed, 2 insertions, 1 deletions
diff --git a/Kconfig b/Kconfig
index 45656e90b91..19ce371a9cc 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 || AM33XX
+ default y if OMAP34XX || AM33XX || AM43XX
default y if TFABOOT
help
Typically, we use an initial stack pointer address that is calculated
@@ -252,6 +252,7 @@ config CUSTOM_SYS_INIT_SP_ADDR
depends on HAS_CUSTOM_SYS_INIT_SP_ADDR
default 0x4020ff00 if OMAP34XX
default 0x4030ff00 if AM33XX
+ default 0x4033ff00 if AM43XX
default TEXT_BASE if TFABOOT
config SYS_MALLOC_F