aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Kocialkowski2024-07-28 17:45:22 +0200
committerPaul Kocialkowski2024-07-28 19:53:04 +0200
commit4377ecbb5abdd83c35c37e327c0782342a9813ca (patch)
tree9105ecb8ff1008734c568e10375cdd8074d37cbc
parente11173c14baaa0ad79573dacb8e72db4160466b4 (diff)
am33xx: Unify init stack pointer address across boards
The AM33xx chiliboard and guardian boards use a slightly different init stack pointer address compared to other AM33xx boards, for no particular reason. Align the address with other AM33xx boards prior to removing it as a per-board option in a later commit. Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
-rw-r--r--configs/am335x_guardian_defconfig2
-rw-r--r--configs/chiliboard_defconfig2
2 files changed, 2 insertions, 2 deletions
diff --git a/configs/am335x_guardian_defconfig b/configs/am335x_guardian_defconfig
index 75138542431..e68bada6c13 100644
--- a/configs/am335x_guardian_defconfig
+++ b/configs/am335x_guardian_defconfig
@@ -4,7 +4,7 @@ CONFIG_ARCH_OMAP2PLUS=y
CONFIG_SPL_LIBCOMMON_SUPPORT=y
CONFIG_SPL_LIBGENERIC_SUPPORT=y
CONFIG_HAS_CUSTOM_SYS_INIT_SP_ADDR=y
-CONFIG_CUSTOM_SYS_INIT_SP_ADDR=0x4030fef0
+CONFIG_CUSTOM_SYS_INIT_SP_ADDR=0x4030ff00
CONFIG_ENV_SIZE=0x40000
CONFIG_ENV_OFFSET=0x500000
CONFIG_DEFAULT_DEVICE_TREE="am335x-guardian"
diff --git a/configs/chiliboard_defconfig b/configs/chiliboard_defconfig
index c574d93806a..da61c86e396 100644
--- a/configs/chiliboard_defconfig
+++ b/configs/chiliboard_defconfig
@@ -4,7 +4,7 @@ CONFIG_ARCH_OMAP2PLUS=y
CONFIG_SPL_LIBCOMMON_SUPPORT=y
CONFIG_SPL_LIBGENERIC_SUPPORT=y
CONFIG_HAS_CUSTOM_SYS_INIT_SP_ADDR=y
-CONFIG_CUSTOM_SYS_INIT_SP_ADDR=0x4030fef0
+CONFIG_CUSTOM_SYS_INIT_SP_ADDR=0x4030ff00
CONFIG_ENV_SIZE=0x2000
CONFIG_ENV_OFFSET=0x20000
CONFIG_DM_GPIO=y