aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordmitry pervushin <dpervushin@gmail.com>2015-02-04 11:26:14 +0100
committerPaul Fertser <fercerpav@gmail.com>2015-02-24 14:48:37 +0000
commit73867c260ab39a8208232499d2f960021612e116 (patch)
treea4d1f71f99b7e91a9fc90294833aeb95e2873808
parent40d6e8826872906651fabffc9a6463e7e074fc8c (diff)
flash/nor/spi: add GigaDevice SPI flash
Signed-off-by: dmitry pervushin <dpervushin@gmail.com> Change-Id: I5a239dc67754ef4be1d9ec36186f434b09aa1e25 Reviewed-on: http://openocd.zylin.com/2530 Tested-by: jenkins Reviewed-by: Paul Fertser <fercerpav@gmail.com>
-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 32c00b85..5bb322c1 100644
--- a/src/flash/nor/spi.c
+++ b/src/flash/nor/spi.c
@@ -74,5 +74,6 @@ const struct flash_device flash_devices[] = {
FLASH_ID("win w25q32fv", 0xd8, 0xc7, 0x001640ef, 0x100, 0x10000, 0x400000),
FLASH_ID("win w25q32dw", 0xd8, 0xc7, 0x001660ef, 0x100, 0x10000, 0x400000),
FLASH_ID("win w25q64cv", 0xd8, 0xc7, 0x001740ef, 0x100, 0x10000, 0x800000),
+ FLASH_ID("gd gd25q20", 0x20, 0xc7, 0x00c84012, 0x100, 0x1000, 0x80000),
FLASH_ID(NULL, 0, 0, 0, 0, 0, 0)
};