diff options
| author | Flaviu Nistor <[email protected]> | 2026-03-18 22:09:12 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-04-15 14:45:18 -0600 |
| commit | 3ee5a4c5994434de53e9a877a2ac893d3fb8c535 (patch) | |
| tree | 28fe5596bff1377edefe616ba610439e628ab22f /drivers | |
| parent | 3e33474a0c60502d96c6eb215b635e2397110a74 (diff) | |
mtd: spi-nor: Add is25wx128 and is25lx128 chips
Add is25wx128 and is25lx128 ISSI chips to
spi-nor id table.
Both chips have a size of 16MB but is25wx128
is the 1.8V version and is25lx128 is the 3v
version.
Signed-off-by: Flaviu Nistor <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/mtd/spi/spi-nor-ids.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/mtd/spi/spi-nor-ids.c b/drivers/mtd/spi/spi-nor-ids.c index 2c2a6484a1a..c71ba4481a9 100644 --- a/drivers/mtd/spi/spi-nor-ids.c +++ b/drivers/mtd/spi/spi-nor-ids.c @@ -269,8 +269,12 @@ const struct flash_info spi_nor_ids[] = { SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) }, { INFO("is25wp01gg", 0x9d7021, 0, 64 * 1024, 2048, SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) }, + { INFO("is25wx128", 0x9d5b18, 0, 64 * 1024, 256, + SECT_4K | USE_FSR | SPI_NOR_OCTAL_READ) }, { INFO("is25wx256", 0x9d5b19, 0, 128 * 1024, 256, SECT_4K | USE_FSR | SPI_NOR_OCTAL_READ | SPI_NOR_4B_OPCODES) }, + { INFO("is25lx128", 0x9d5a18, 0, 64 * 1024, 256, + SECT_4K | USE_FSR | SPI_NOR_OCTAL_READ) }, { 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, |
