From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sergei Ianovich Date: Sat, 14 Dec 2013 09:41:59 +0400 Subject: [U-Boot] [PATCH 3/4] arm: pxa: fix 2nd flash chip address on LP-8x4x In-Reply-To: <1386999720-23460-1-git-send-email-ynvich@gmail.com> References: <1386999720-23460-1-git-send-email-ynvich@gmail.com> Message-ID: <1386999720-23460-4-git-send-email-ynvich@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Initial configuration has worng address of the second chip. There is an alias for the 1st chip at 0x02000000 in earlier verions of LP-8x4x, so the boot normally. However, new LP-8x4xs have a bigger 1st flash chip, and hang on boot without this patch. Signed-off-by: Sergei Ianovich --- include/configs/lp8x4x.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/lp8x4x.h b/include/configs/lp8x4x.h index 6df6f2b..55658ab 100644 --- a/include/configs/lp8x4x.h +++ b/include/configs/lp8x4x.h @@ -150,7 +150,7 @@ #define CONFIG_ENV_SECT_SIZE 0x40000 #define PHYS_FLASH_1 0x00000000 /* Flash Bank #1 */ -#define PHYS_FLASH_2 0x02000000 /* Flash Bank #2 */ +#define PHYS_FLASH_2 0x04000000 /* Flash Bank #2 */ #define CONFIG_SYS_FLASH_CFI #define CONFIG_FLASH_CFI_DRIVER 1 -- 1.8.4.2