From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from ec2-18-194-220-216.eu-central-1.compute.amazonaws.com ([18.194.220.216] helo=sysam.it) by bombadil.infradead.org with esmtp (Exim 4.87 #1 (Red Hat Linux)) id 1eGCqs-0002lj-FL for linux-mtd@lists.infradead.org; Sat, 18 Nov 2017 23:48:48 +0000 Date: Sun, 19 Nov 2017 00:48:23 +0100 From: Angelo Dureghello To: linux-mtd@lists.infradead.org, boris.brezillon@free-electrons.com, cyrille.pitchen@wedev4u.fr Subject: [PATCH v3] mtd: spi-nor: add support for ISSI is25lp128 Message-ID: <20171118234822.ijchd2cmvc6elerq@jerusalem> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Add support for ISSI is25lp128 spi nor flash. Signed-off-by: Angelo Dureghello --- Changes for v2: - add commit message. Changes for v3: - add SPI_NOR_DUAL_READ flag. --- drivers/mtd/spi-nor/spi-nor.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/mtd/spi-nor/spi-nor.c b/drivers/mtd/spi-nor/spi-nor.c index 19c000722cbc..b987353440ea 100644 --- a/drivers/mtd/spi-nor/spi-nor.c +++ b/drivers/mtd/spi-nor/spi-nor.c @@ -1005,6 +1005,8 @@ static const struct flash_info spi_nor_ids[] = { /* ISSI */ { "is25cd512", INFO(0x7f9d20, 0, 32 * 1024, 2, SECT_4K) }, + { "is25lp128", INFO(0x9d6018, 0, 64 * 1024, 256, + SECT_4K | SPI_NOR_DUAL_READ) }, /* Macronix */ { "mx25l512e", INFO(0xc22010, 0, 64 * 1024, 1, SECT_4K) }, -- 2.15.0