]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
mtd: spi-nor: Add support for sst26vf016b
authorJoseph Kust <joseph.kust@rockwellcollins.com>
Sun, 17 Nov 2019 21:55:47 +0000 (15:55 -0600)
committerTudor Ambarus <tudor.ambarus@microchip.com>
Fri, 10 Jan 2020 17:02:00 +0000 (19:02 +0200)
Adds support for sst26vf016b, a smaller variant of the sst26vf064b.
Tested on a sama5d3 SOC using the atmel,at91rm9200-spi controller.
The dual read could not be tested.

SPI_NOR_QUAD_READ is not added because it requires that the IOC bit
from the Configuration Register to be set to 1, which is not the case:
its default value at power-up is zero and we don't set it to one in
spi-nor either.

Signed-off-by: Joseph Kust <joseph.kust@rockwellcollins.com>
Signed-off-by: Brandon Maier <brandon.maier@rockwellcollins.com>
[tudor.ambarus@microchip.com: Drop quad read flag, amend commit description]
Signed-off-by: Tudor Ambarus <tudor.ambarus@microchip.com>
drivers/mtd/spi-nor/spi-nor.c

index addb6319fcbbc36669560719131d5dc030496996..ce6af78b25db975879fa2c2a77c7255b051d9658 100644 (file)
@@ -2577,6 +2577,8 @@ static const struct flash_info spi_nor_ids[] = {
        { "sst25wf080",  INFO(0xbf2505, 0, 64 * 1024, 16, SECT_4K | SST_WRITE) },
        { "sst26wf016b", INFO(0xbf2651, 0, 64 * 1024, 32, SECT_4K |
                              SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) },
+       { "sst26vf016b", INFO(0xbf2641, 0, 64 * 1024, 32, SECT_4K |
+                             SPI_NOR_DUAL_READ) },
        { "sst26vf064b", INFO(0xbf2643, 0, 64 * 1024, 128, SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) },
 
        /* ST Microelectronics -- newer production may have feature updates */