From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yogesh Gaur Date: Thu, 11 May 2017 14:05:34 +0530 Subject: [U-Boot] [PATCH] LS2081ARDB: Enable CONFIG_SPI_FLASH_BAR option Message-ID: <1494491734-10354-1-git-send-email-yogeshnarayan.gaur@nxp.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On LS2081ARDB both QSPI and DSPI are having flash n25q512a of micron family which supports EAR Read/Write cmds, thus enable CONFIG_SPI_FLASH_BAR config. Else only lower 16MiB accessible for these flashes. Signed-off-by: Yogesh Gaur --- Depends on : https://patchwork.ozlabs.org/patch/755920/ include/configs/ls2080ardb.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/configs/ls2080ardb.h b/include/configs/ls2080ardb.h index 6abf54b..08ac9a9 100644 --- a/include/configs/ls2080ardb.h +++ b/include/configs/ls2080ardb.h @@ -299,6 +299,11 @@ unsigned long get_board_sys_clk(void); #ifdef CONFIG_FSL_QSPI #ifdef CONFIG_TARGET_LS2081ARDB #define CONFIG_SPI_FLASH_STMICRO +/* + * On LS2081ARDB both QSPI and DSPI are having flash n25q512a of micron + * family which supports EAR Read/Write cmds, thus enable below config + */ +#define CONFIG_SPI_FLASH_BAR #else #define CONFIG_SPI_FLASH_SPANSION #endif -- 1.9.1