From: Hai Pham <[email protected]> Make CONFIG_SYS_LOAD_ADDR family-specific to prepare for R-Car Gen5 support. R-Car Gen5 uses different memory map compared to the current R-Car Gen3 and Gen4 and also different CONFIG_SYS_LOAD_ADDR. This is a preparatory change for R-Car Gen5. No functional change.
Signed-off-by: Hai Pham <[email protected]> Signed-off-by: Marek Vasut <[email protected]> # Upport --- Cc: Hai Pham <[email protected]> Cc: Khanh Le <[email protected]> Cc: Nobuhiro Iwamatsu <[email protected]> Cc: Paul Barker <[email protected]> Cc: Simon Glass <[email protected]> Cc: Tom Rini <[email protected]> Cc: [email protected] --- configs/renesas_rcar3.config | 1 + configs/renesas_rcar4.config | 1 + configs/renesas_rcar64.config | 1 - 3 files changed, 2 insertions(+), 1 deletion(-) diff --git a/configs/renesas_rcar3.config b/configs/renesas_rcar3.config index 9f2413ae928..f4713898bc6 100644 --- a/configs/renesas_rcar3.config +++ b/configs/renesas_rcar3.config @@ -1,4 +1,5 @@ #include <configs/renesas_rcar64.config> CONFIG_BITBANGMII=y +CONFIG_SYS_LOAD_ADDR=0x58000000 CONFIG_SYS_PBSIZE=2068 diff --git a/configs/renesas_rcar4.config b/configs/renesas_rcar4.config index 085d02b51c3..6ebd93ede9f 100644 --- a/configs/renesas_rcar4.config +++ b/configs/renesas_rcar4.config @@ -12,6 +12,7 @@ CONFIG_MMC_UHS_SUPPORT=y CONFIG_RENESAS_SDHI=y CONFIG_SPI_FLASH_SPANSION=y CONFIG_SYS_I2C_RCAR_I2C=y +CONFIG_SYS_LOAD_ADDR=0x58000000 CONFIG_ENV_RELOC_GD_ENV_ADDR=y CONFIG_USE_BOOTARGS=y CONFIG_USE_BOOTCOMMAND=y diff --git a/configs/renesas_rcar64.config b/configs/renesas_rcar64.config index 073f728bf09..c2cb88dc157 100644 --- a/configs/renesas_rcar64.config +++ b/configs/renesas_rcar64.config @@ -11,7 +11,6 @@ CONFIG_REMAKE_ELF=y CONFIG_RENESAS_RPC_SPI=y CONFIG_SUPPORT_RAW_INITRD=y CONFIG_SYSCON=y -CONFIG_SYS_LOAD_ADDR=0x58000000 CONFIG_SYS_MALLOC_BOOTPARAMS=y CONFIG_SYS_MALLOC_LEN=0x4000000 CONFIG_SYS_MONITOR_LEN=1048576 -- 2.51.0

