From patchwork Mon Feb 3 06:06:01 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kuldeep Singh X-Patchwork-Id: 235796 List-Id: U-Boot discussion From: kuldeep.singh at nxp.com (Kuldeep Singh) Date: Mon, 3 Feb 2020 11:36:01 +0530 Subject: [PATCH 2/2] configs: ls2080ardb: Make BOOTCOMMAND access flash memory as per spi-mem In-Reply-To: <1580709961-24830-1-git-send-email-kuldeep.singh@nxp.com> References: <1580709961-24830-1-git-send-email-kuldeep.singh@nxp.com> Message-ID: <1580709961-24830-2-git-send-email-kuldeep.singh@nxp.com> BOOT command currently access spi-nor flash memory directly. As per spi-mem framework, flash memory access via absolute addresses is no more possible. Use flash APIs to access memory instead of directly using it. Signed-off-by: Kuldeep Singh --- include/configs/ls2080ardb.h | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/include/configs/ls2080ardb.h b/include/configs/ls2080ardb.h index 6a74f62..87d2aeb 100644 --- a/include/configs/ls2080ardb.h +++ b/include/configs/ls2080ardb.h @@ -509,9 +509,11 @@ unsigned long get_board_sys_clk(void); #ifdef CONFIG_TFABOOT #define QSPI_NOR_BOOTCOMMAND \ "env exists mcinitcmd && env exists secureboot "\ - "&& esbc_validate 0x20780000; " \ + "&& sf read 0x80780000 0x780000 0x40000 " \ + "&& esbc_validate 0x80780000; " \ "env exists mcinitcmd && " \ - "fsl_mc lazyapply dpl 0x20d00000; " \ + "sf read 0x80d00000 0xd00000 0x40000 && " \ + "fsl_mc lazyapply dpl 0x80d00000 ; " \ "run distro_bootcmd;run qspi_bootcmd; " \ "env exists secureboot && esbc_halt;" @@ -539,9 +541,11 @@ unsigned long get_board_sys_clk(void); /* Try to boot an on-QSPI kernel first, then do normal distro boot */ #define CONFIG_BOOTCOMMAND \ "env exists mcinitcmd && env exists secureboot "\ - "&& esbc_validate 0x20780000; " \ + "&& sf read 0x80780000 0x780000 0x40000 " \ + "&& esbc_validate 0x80780000; " \ "env exists mcinitcmd && " \ - "fsl_mc lazyapply dpl 0x20d00000; " \ + "sf read 0x80d00000 0xd00000 0x40000 && " \ + "fsl_mc lazyapply dpl 0x80d00000; " \ "run distro_bootcmd;run qspi_bootcmd; " \ "env exists secureboot && esbc_halt;" #elif defined(CONFIG_SD_BOOT)