From 713d22beda59f5caedea1ed896303ca55307220c Mon Sep 17 00:00:00 2001 From: Jaehoon Chung Date: Fri, 29 Jun 2018 18:35:42 +0900 Subject: [PATCH] configs: rpi3: enable CONFIG_SPL_ATF configuration Enable CONFIG_SPL_ATF config and defined ATF_TEXT_BASE in configs/rpi.h. Change-Id: I24f2115b6386232fb53eb105dcbeffd3495fb55e Signed-off-by: Jaehoon Chung --- configs/rpi_3_defconfig | 2 +- include/configs/rpi.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/configs/rpi_3_defconfig b/configs/rpi_3_defconfig index 2872b33a82..f6b638d55d 100644 --- a/configs/rpi_3_defconfig +++ b/configs/rpi_3_defconfig @@ -31,8 +31,8 @@ CONFIG_SPL_STACK_R=y CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x200000 CONFIG_SPL_SEPARATE_BSS=y CONFIG_SPL_ENV_SUPPORT=y +CONFIG_SPL_ATF=y CONFIG_SPL_ATF_SUPPORT=y -CONFIG_SPL_ATF_TEXT_BASE=0x08400000 CONFIG_SPL_BOARD_INIT=y CONFIG_SYS_PROMPT="U-Boot> " CONFIG_CMD_GPIO=y diff --git a/include/configs/rpi.h b/include/configs/rpi.h index d35d6f0402..be0df96319 100644 --- a/include/configs/rpi.h +++ b/include/configs/rpi.h @@ -53,6 +53,7 @@ #define CONFIG_SPL_BSS_MAX_SIZE 0x00040000 #define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION 1 #define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME "u-boot.img" +#define CONFIG_SPL_ATF_TEXT_BASE 0x08400000 #endif /* -- 2.34.1