diff options
author | Michael Walle <michael@walle.cc> | 2020-12-01 00:12:39 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-12-02 16:21:58 -0500 |
commit | 382985675c7576d05969f61edbe14fb0a5ef1f0a (patch) | |
tree | 45b4630825903474d618d2e0d833a126ebd9f5ba /drivers/mtd | |
parent | e405efcf4b62810bdd08974d2a928353dba8d6ae (diff) | |
download | u-boot-382985675c7576d05969f61edbe14fb0a5ef1f0a.zip u-boot-382985675c7576d05969f61edbe14fb0a5ef1f0a.tar.gz u-boot-382985675c7576d05969f61edbe14fb0a5ef1f0a.tar.bz2 |
mtd: spi-nor-ids: add Winbond W25Q32JW-IM flash
The Kontron SMARC-sAL28 board uses that flash.
This is the same change as in the linux commit f3418718c0ec ("mtd:
spi-nor: Add support for w25q32jwm").
Signed-off-by: Michael Walle <michael@walle.cc>
Reported-by: Leo Krueger <leo.krueger@zal.aero>
Diffstat (limited to 'drivers/mtd')
-rw-r--r-- | drivers/mtd/spi/spi-nor-ids.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/mtd/spi/spi-nor-ids.c b/drivers/mtd/spi/spi-nor-ids.c index bc9d4f7..09e8196 100644 --- a/drivers/mtd/spi/spi-nor-ids.c +++ b/drivers/mtd/spi/spi-nor-ids.c @@ -278,6 +278,11 @@ const struct flash_info spi_nor_ids[] = { SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ | SPI_NOR_HAS_LOCK | SPI_NOR_HAS_TB) }, + { + INFO("w25q32jwm", 0xef8016, 0, 64 * 1024, 64, + SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ | + SPI_NOR_HAS_LOCK | SPI_NOR_HAS_TB) + }, { INFO("w25x64", 0xef3017, 0, 64 * 1024, 128, SECT_4K) }, { INFO("w25q64dw", 0xef6017, 0, 64 * 1024, 128, |