aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGianluca Renzi <gianlucarenzi@eurekelettronica.it>2012-11-06 13:04:22 +0000
committerSpencer Oliver <spen@spen-soft.co.uk>2012-11-06 14:33:45 +0000
commitd8d1c62cc3bcf0143313a68adf61382b15ee60ba (patch)
treed6641a878eee1ae044df3c1ff596a5baf8989ef5
parente22a6d2e06d9aa3fdb33d666199b82732ec6fcfe (diff)
Added support for SPI Flash Winbond W25Q64CV
Added in spi device table SPI Flash Winbond W25Q64CV 64Mbit Its Device ID 0x001740ef is the same as Spansion S25FL064K (may be a clone?) Change-Id: I3cdbd182a0ccde75c78684cb9d54c76059bf34e0 Signed-off-by: Gianluca Renzi <gianlucarenzi@eurekelettronica.it> Reviewed-on: http://openocd.zylin.com/928 Tested-by: jenkins Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
-rw-r--r--src/flash/nor/spi.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/flash/nor/spi.c b/src/flash/nor/spi.c
index 7046edd8..7b0abd33 100644
--- a/src/flash/nor/spi.c
+++ b/src/flash/nor/spi.c
@@ -66,5 +66,6 @@ struct flash_device flash_devices[] = {
FLASH_ID("mac 25l3205", 0xd8, 0xC7, 0x001620c2, 0x100, 0x10000, 0x400000),
FLASH_ID("mac 25l6405", 0xd8, 0xC7, 0x001720c2, 0x100, 0x10000, 0x800000),
FLASH_ID("win w25q32dw", 0xd8, 0xC7, 0x001660ef, 0x100, 0x10000, 0x400000),
+ FLASH_ID("win w25q64cv", 0xd8, 0xC7, 0x001740ef, 0x100, 0x10000, 0x800000),
FLASH_ID(NULL, 0, 0, 0, 0, 0, 0)
};