From: T Karthik Reddy Date: Mon, 11 Feb 2019 04:13:52 +0000 (+0530) Subject: drivers: mtd: spi: Add support for ISSI flash parts X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5f40810b6606e18ebfea232b57fd32a834b891b0;p=thirdparty%2Fu-boot.git drivers: mtd: spi: Add support for ISSI flash parts This patch adds support for IS25LP512M, IS25WP512M flash parts. Signed-off-by: T Karthik Reddy Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal Simek --- diff --git a/drivers/mtd/spi/spi_flash_ids.c b/drivers/mtd/spi/spi_flash_ids.c index 75c2dc82946..b265d0edb2f 100644 --- a/drivers/mtd/spi/spi_flash_ids.c +++ b/drivers/mtd/spi/spi_flash_ids.c @@ -79,10 +79,12 @@ const struct spi_flash_info spi_flash_ids[] = { {"is25wp064d", INFO(0x9d7017, 0x0, 64 * 1024, 128, RD_QUAD) }, {"is25lp128", INFO(0x9d6018, 0x0, 64 * 1024, 256, 0) }, {"is25lp256d", INFO(0x9d6019, 0x0, 64 * 1024, 512, RD_QUAD) }, + {"is25lp512", INFO(0x9d601a, 0x0, 64 * 1024, 1024, RD_QUAD) }, {"is25wp032", INFO(0x9d7016, 0x0, 64 * 1024, 64, RD_FULL | SECT_4K) }, {"is25wp064", INFO(0x9d7017, 0x0, 64 * 1024, 128, RD_FULL | SECT_4K) }, {"is25wp128", INFO(0x9d7018, 0x0, 64 * 1024, 256, RD_FULL | SECT_4K) }, {"is25wp256d", INFO(0x9d7019, 0x0, 64 * 1024, 512, RD_QUAD) }, + {"is25wp512", INFO(0x9d701a, 0x0, 64 * 1024, 1024, RD_QUAD) }, #endif #ifdef CONFIG_SPI_FLASH_MACRONIX /* MACRONIX */ {"mx25l2006e", INFO(0xc22012, 0x0, 64 * 1024, 4, 0) },