diff options
author | DENG Qingfang <dqfext@gmail.com> | 2019-10-22 18:59:39 +0200 |
---|---|---|
committer | Tudor Ambarus <tudor.ambarus@microchip.com> | 2019-10-23 08:27:19 +0200 |
commit | 172b33212d76a4bc4b18ba952e8a431b4a2d6c15 (patch) | |
tree | f176968b55dbb724d9a5cb1f57d54b13cd5928c8 /drivers/mtd/spi-nor | |
parent | mtd: spi-nor: intel-spi: add support for Intel Cannon Lake SPI flash (diff) | |
download | linux-172b33212d76a4bc4b18ba952e8a431b4a2d6c15.tar.xz linux-172b33212d76a4bc4b18ba952e8a431b4a2d6c15.zip |
mtd: spi-nor: add support for en25qh16
Tested on HiWiFi C526A
Datasheet is available at:
http://www.xinyahong.com/upLoad/product/month_1411/201411201256018276.pdf
Signed-off-by: DENG Qingfang <dqfext@gmail.com>
Signed-off-by: Tudor Ambarus <tudor.ambarus@microchip.com>
Diffstat (limited to 'drivers/mtd/spi-nor')
-rw-r--r-- | drivers/mtd/spi-nor/spi-nor.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/mtd/spi-nor/spi-nor.c b/drivers/mtd/spi-nor/spi-nor.c index 7acf4a93b592..013102792166 100644 --- a/drivers/mtd/spi-nor/spi-nor.c +++ b/drivers/mtd/spi-nor/spi-nor.c @@ -2179,6 +2179,8 @@ static const struct flash_info spi_nor_ids[] = { { "en25q64", INFO(0x1c3017, 0, 64 * 1024, 128, SECT_4K) }, { "en25q80a", INFO(0x1c3014, 0, 64 * 1024, 16, SECT_4K | SPI_NOR_DUAL_READ) }, + { "en25qh16", INFO(0x1c7015, 0, 64 * 1024, 32, + SECT_4K | SPI_NOR_DUAL_READ) }, { "en25qh32", INFO(0x1c7016, 0, 64 * 1024, 64, 0) }, { "en25qh64", INFO(0x1c7017, 0, 64 * 1024, 128, SECT_4K | SPI_NOR_DUAL_READ) }, |