aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRomain Porte <[email protected]>2017-12-28 11:03:24 +0100
committerCyrille Pitchen <[email protected]>2017-12-28 12:26:05 +0100
commit17407ec3354d291541099b2a7cd71545d9402e14 (patch)
tree95c09c24b8efcbefa8208d667646a6b64e6ff304
parent0074a8f3b30302383ce59867299975fbf37a4061 (diff)
mtd: spi-nor: Add ISSI is25lp080d support
Add support for a new ISSI 1MB SPI NOR chip that was tested in our lab. Datasheet is available at: http://www.issi.com/WW/pdf/25LP-WP080D.pdf Testing was done only without the SPI_NOR_{DUAL,QUAD}_READ flags that were added later, according to the datasheet. Tested-by: Pascal Fabreges <[email protected]> Reviewed-by: Alexander Sverdlin <[email protected]> Signed-off-by: Romain Porte <[email protected]> Signed-off-by: Cyrille Pitchen <[email protected]>
-rw-r--r--drivers/mtd/spi-nor/spi-nor.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/mtd/spi-nor/spi-nor.c b/drivers/mtd/spi-nor/spi-nor.c
index 79c598425352..d445a4d3b770 100644
--- a/drivers/mtd/spi-nor/spi-nor.c
+++ b/drivers/mtd/spi-nor/spi-nor.c
@@ -1048,6 +1048,8 @@ static const struct flash_info spi_nor_ids[] = {
{ "is25cd512", INFO(0x7f9d20, 0, 32 * 1024, 2, SECT_4K) },
{ "is25lq040b", INFO(0x9d4013, 0, 64 * 1024, 8,
SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) },
+ { "is25lp080d", INFO(0x9d6014, 0, 64 * 1024, 16,
+ SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) },
{ "is25lp128", INFO(0x9d6018, 0, 64 * 1024, 256,
SECT_4K | SPI_NOR_DUAL_READ) },