diff options
| author | Miquel Raynal <miquel.raynal@bootlin.com> | 2026-09-04 20:13:00 +0200 |
|---|---|---|
| committer | Michael Walle <mwalle@kernel.org> | 2026-09-07 09:45:22 +0200 |
| commit | 677a0d6752eda1480eae3e187c5dfe7367f9d752 (patch) | |
| tree | f673da30f953394706539c4744ac0205cf809f1a | |
| parent | 6397f5f8f8754218dd3a059d39eba6b57d04dc3d (diff) | |
| download | linux-next-677a0d6752eda1480eae3e187c5dfe7367f9d752.tar.gz linux-next-677a0d6752eda1480eae3e187c5dfe7367f9d752.zip | |
mtd: spi-nor: winbond: Add support for W25Q01RV-M
There is an ID collision with the chip of same density from the JV
family. Both chips are very similar in practice, it is mostly a matter
of electrical differences (mostly power consumption being lower).
As a significant difference, RV chips identify themselves as supporting
the new SFDP (rev F) field which forces an alternate write SR2
opcode (0x31).
Reviewed-by: Takahiro Kuwano <takahiro.kuwano@infineon.com>
Reviewed-by: Michael Walle <mwalle@kernel.org>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Signed-off-by: Michael Walle <mwalle@kernel.org>
| -rw-r--r-- | drivers/mtd/spi-nor/winbond.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/spi-nor/winbond.c b/drivers/mtd/spi-nor/winbond.c index 91d0e67c93b6..96791ee019e0 100644 --- a/drivers/mtd/spi-nor/winbond.c +++ b/drivers/mtd/spi-nor/winbond.c @@ -398,7 +398,7 @@ static const struct flash_info winbond_nor_parts[] = { .flags = SPI_NOR_HAS_LOCK | SPI_NOR_HAS_TB | SPI_NOR_TB_SR_BIT6 | SPI_NOR_4BIT_BP | SPI_NOR_HAS_CMP, }, { - /* W25Q01JV-M */ + /* W25Q01JV-M, W25Q01RV-M */ .id = SNOR_ID(0xef, 0x70, 0x21), .flags = SPI_NOR_HAS_LOCK | SPI_NOR_HAS_TB | SPI_NOR_TB_SR_BIT6 | SPI_NOR_4BIT_BP | SPI_NOR_HAS_CMP, |
