diff options
| author | Prasad Kummari <prasad.kummari@amd.com> | 2024-06-17 09:48:42 +0530 | 
|---|---|---|
| committer | Michal Simek <michal.simek@amd.com> | 2024-08-05 16:10:36 +0200 | 
| commit | c43d65e2664397141834bad6f08711bdb8b2df70 (patch) | |
| tree | 1374fb86f642b474974c00f0b3bc1e03729cb373 /drivers | |
| parent | 510faea376d29285349596546d31482e38ce049d (diff) | |
mtd: spi-nor: ids: Add IS25LP01GG flash support
Add support for ISSI 128MB flash IS25LP01GG. This part
supports 4byte opcodes. It also supports dual and quad
read.
Signed-off-by: Prasad Kummari <prasad.kummari@amd.com>
Reviewed-by: Dhruva Gole <d-gole@ti.com>
Link: https://lore.kernel.org/r/20240617041841.1336632-1-prasad.kummari@amd.com
Signed-off-by: Michal Simek <michal.simek@amd.com>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/mtd/spi/spi-nor-ids.c | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/drivers/mtd/spi/spi-nor-ids.c b/drivers/mtd/spi/spi-nor-ids.c index 2206d734810..88709a52b3a 100644 --- a/drivers/mtd/spi/spi-nor-ids.c +++ b/drivers/mtd/spi/spi-nor-ids.c @@ -241,6 +241,8 @@ const struct flash_info spi_nor_ids[] = {  			SECT_4K | USE_FSR | SPI_NOR_OCTAL_READ | SPI_NOR_4B_OPCODES) },  	{ INFO("is25lx512",  0x9d5a1a, 0, 64 * 1024, 1024,  			SECT_4K | USE_FSR | SPI_NOR_4B_OPCODES | SPI_NOR_HAS_TB) }, +	{ INFO("is25lp01gg",  0x9d6021, 0, 64 * 1024, 2048, +			SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ | SPI_NOR_HAS_TB) },  #endif  #ifdef CONFIG_SPI_FLASH_MACRONIX	/* MACRONIX */  	/* Macronix */ | 
