summaryrefslogtreecommitdiffstats
path: root/drivers/mtd
diff options
context:
space:
mode:
authorMika Westerberg2015-02-05 17:39:02 +0100
committerBrian Norris2015-04-06 04:09:08 +0200
commite88e567f15a26fc62da8e4e0c56d5319b40f628b (patch)
treecca45dfb27fba23b588a43920fee79164c7142e7 /drivers/mtd
parentmtd: spi-nor: add support for the Winbond W25X05 flash (diff)
downloadkernel-qcow2-linux-e88e567f15a26fc62da8e4e0c56d5319b40f628b.tar.gz
kernel-qcow2-linux-e88e567f15a26fc62da8e4e0c56d5319b40f628b.tar.xz
kernel-qcow2-linux-e88e567f15a26fc62da8e4e0c56d5319b40f628b.zip
mtd: spi-nor: Add support for Winbond w25q64dw serial flash
Add Winbond (w25q64dw) 8MB flash to the list of supported chips. Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Diffstat (limited to 'drivers/mtd')
-rw-r--r--drivers/mtd/spi-nor/spi-nor.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mtd/spi-nor/spi-nor.c b/drivers/mtd/spi-nor/spi-nor.c
index 6a5e7cc01056..6a1df02b1999 100644
--- a/drivers/mtd/spi-nor/spi-nor.c
+++ b/drivers/mtd/spi-nor/spi-nor.c
@@ -674,6 +674,7 @@ static const struct spi_device_id spi_nor_ids[] = {
{ "w25q32dw", INFO(0xef6016, 0, 64 * 1024, 64, SECT_4K) },
{ "w25x64", INFO(0xef3017, 0, 64 * 1024, 128, SECT_4K) },
{ "w25q64", INFO(0xef4017, 0, 64 * 1024, 128, SECT_4K) },
+ { "w25q64dw", INFO(0xef6017, 0, 64 * 1024, 128, SECT_4K) },
{ "w25q80", INFO(0xef5014, 0, 64 * 1024, 16, SECT_4K) },
{ "w25q80bl", INFO(0xef4014, 0, 64 * 1024, 16, SECT_4K) },
{ "w25q128", INFO(0xef4018, 0, 64 * 1024, 256, SECT_4K) },