From 3d73c0bb5124e9a6f185f8a0ae08aad565acd028 Mon Sep 17 00:00:00 2001 From: Steve Moorby Date: Sat, 28 Dec 2013 15:23:41 +0000 Subject: [PATCH] topic: Added Spansion S25FL128S and S25FL256S spifi devices. S25FL256S device tested on mbest LPC4357 EVM, S25S128S untested but from the same data sheet. Change-Id: Idf58416aab08671fe29d22c3c34c2118b25a9d45 Signed-off-by: Steve Moorby Reviewed-on: http://openocd.zylin.com/1844 Tested-by: jenkins Reviewed-by: Andreas Fritiofson --- src/flash/nor/spi.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/flash/nor/spi.c b/src/flash/nor/spi.c index 789757e32..2eef63263 100644 --- a/src/flash/nor/spi.c +++ b/src/flash/nor/spi.c @@ -51,6 +51,8 @@ struct flash_device flash_devices[] = { FLASH_ID("sp s25fl016", 0xd8, 0xc7, 0x00140201, 0x100, 0x10000, 0x200000), FLASH_ID("sp s25fl032", 0xd8, 0xc7, 0x00150201, 0x100, 0x10000, 0x400000), FLASH_ID("sp s25fl064", 0xd8, 0xc7, 0x00160201, 0x100, 0x10000, 0x800000), + FLASH_ID("sp s25fl128", 0xd8, 0xC7, 0x00182001, 0x100, 0x10000, 0x1000000), + FLASH_ID("sp s25fl256", 0xd8, 0xC7, 0x00190201, 0x100, 0x10000, 0x2000000), FLASH_ID("atmel 25f512", 0x52, 0xc7, 0x0065001f, 0x80, 0x8000, 0x10000), FLASH_ID("atmel 25f1024", 0x52, 0x62, 0x0060001f, 0x100, 0x8000, 0x20000), FLASH_ID("atmel 25f2048", 0x52, 0x62, 0x0063001f, 0x100, 0x10000, 0x40000), -- 2.11.4.GIT