[U-Boot] [PATCH] armv8: ls1046afrwy: Define CONFIG_ENV_ADDR for QSPI Boot

This patch defines CONFIG_ENV_ADDR for QSPI Boot which specifies the start address of the flash sector containing the environment. It fixes the issue that bootcmd is always set as default at bootup.
Signed-off-by: Alison Wang alison.wang@nxp.com --- include/configs/ls1046afrwy.h | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/include/configs/ls1046afrwy.h b/include/configs/ls1046afrwy.h index 791bb8dc47..8609ebfecc 100644 --- a/include/configs/ls1046afrwy.h +++ b/include/configs/ls1046afrwy.h @@ -103,6 +103,9 @@ #define CONFIG_ENV_SIZE 0x2000 /* 8KB */ #define CONFIG_ENV_OFFSET 0x500000 /* 5MB */ #define CONFIG_ENV_SECT_SIZE 0x40000 /* 256KB */ +#define CONFIG_SYS_FSL_QSPI_BASE 0x40000000 +#define CONFIG_ENV_ADDR (CONFIG_SYS_FSL_QSPI_BASE + \ + CONFIG_ENV_OFFSET)
/* FMan */ #ifdef CONFIG_SYS_DPAA_FMAN

-----Original Message----- From: Alison Wang Sent: Monday, July 22, 2019 12:47 PM To: Prabhakar Kushwaha prabhakar.kushwaha@nxp.com; u- boot@lists.denx.de Cc: Alison Wang alison.wang@nxp.com Subject: [PATCH] armv8: ls1046afrwy: Define CONFIG_ENV_ADDR for QSPI Boot
This patch defines CONFIG_ENV_ADDR for QSPI Boot which specifies the start address of the flash sector containing the environment. It fixes the issue that bootcmd is always set as default at bootup.
Signed-off-by: Alison Wang alison.wang@nxp.com
This patch has been applied to fsl-qoriq master, awaiting upstream.
--pk
participants (2)
-
Alison Wang
-
Prabhakar Kushwaha