Added support for SPI Flash Winbond W25Q64CV
authorGianluca Renzi <gianlucarenzi@eurekelettronica.it>
Tue, 6 Nov 2012 13:04:22 +0000 (13:04 +0000)
committerSpencer Oliver <spen@spen-soft.co.uk>
Tue, 6 Nov 2012 14:33:45 +0000 (14:33 +0000)
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>
src/flash/nor/spi.c

index 7046edd846a4c919c2d74b008fb328cbd7f8d36b..7b0abd331852f1356a869c124470522ef6246d52 100644 (file)
@@ -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)
 };