From patchwork Mon Mar 9 03:37:37 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Ooi, Joyce" X-Patchwork-Id: 243373 List-Id: U-Boot discussion From: joyce.ooi at intel.com (Ooi, Joyce) Date: Mon, 9 Mar 2020 11:37:37 +0800 Subject: [PATCH] arm: socfpga: increase QSPI kernel Image size for Stratix10 and Agilex Message-ID: <20200309033737.17232-1-joyce.ooi@intel.com> From: Joyce Ooi This patch increases the allocated kernel Image size to 32MB for QSPI for Stratix10 and Agilex as the latest kernel size has increased. Signed-off-by: Joyce Ooi Reviewed-by: Ley Foon Tan --- include/configs/socfpga_agilex_socdk.h | 8 ++++---- include/configs/socfpga_stratix10_socdk.h | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/include/configs/socfpga_agilex_socdk.h b/include/configs/socfpga_agilex_socdk.h index 6a90ce6..4bb2e8f 100644 --- a/include/configs/socfpga_agilex_socdk.h +++ b/include/configs/socfpga_agilex_socdk.h @@ -78,7 +78,7 @@ #ifdef CONFIG_ENV_IS_IN_SPI_FLASH #undef CONFIG_ENV_OFFSET #undef CONFIG_ENV_SIZE -#define CONFIG_ENV_OFFSET 0x02080000 +#define CONFIG_ENV_OFFSET 0x020C0000 #define CONFIG_ENV_SIZE (64 * 1024) #define CONFIG_ENV_SECT_SIZE (64 * 1024) #endif /* CONFIG_ENV_IS_IN_SPI_FLASH */ @@ -120,9 +120,9 @@ unsigned int cm_get_qspi_controller_clk_hz(void); #define CONFIG_BOOTARGS "earlycon" #define CONFIG_EXTRA_ENV_SETTINGS \ - "qspibootimageaddr=0x020B0000\0" \ - "qspifdtaddr=0x02090000\0" \ - "bootimagesize=0x01400000\0" \ + "qspibootimageaddr=0x020E0000\0" \ + "qspifdtaddr=0x020D0000\0" \ + "bootimagesize=0x01F00000\0" \ "fdtimagesize=0x00010000\0" \ "qspiload=sf read ${loadaddr} ${qspibootimageaddr} ${bootimagesize};" \ "sf read ${fdt_addr} ${qspifdtaddr} ${fdtimagesize}\0" \ diff --git a/include/configs/socfpga_stratix10_socdk.h b/include/configs/socfpga_stratix10_socdk.h index 28fb546..1c41fc4 100644 --- a/include/configs/socfpga_stratix10_socdk.h +++ b/include/configs/socfpga_stratix10_socdk.h @@ -78,7 +78,7 @@ #ifdef CONFIG_ENV_IS_IN_SPI_FLASH #undef CONFIG_ENV_OFFSET #undef CONFIG_ENV_SIZE -#define CONFIG_ENV_OFFSET 0x02080000 +#define CONFIG_ENV_OFFSET 0x020C0000 #define CONFIG_ENV_SIZE (64 * 1024) #define CONFIG_ENV_SECT_SIZE (64 * 1024) #endif /* CONFIG_ENV_IS_IN_SPI_FLASH */ @@ -116,9 +116,9 @@ unsigned int cm_get_qspi_controller_clk_hz(void); #endif #define CONFIG_EXTRA_ENV_SETTINGS \ - "qspibootimageaddr=0x020B0000\0" \ - "qspifdtaddr=0x02090000\0" \ - "bootimagesize=0x01400000\0" \ + "qspibootimageaddr=0x020E0000\0" \ + "qspifdtaddr=0x020D0000\0" \ + "bootimagesize=0x01F00000\0" \ "fdtimagesize=0x00010000\0" \ "qspiload=sf read ${loadaddr} ${qspibootimageaddr} ${bootimagesize};" \ "sf read ${fdt_addr} ${qspifdtaddr} ${fdtimagesize}\0" \