diff options
author | IWAMOTO Masahiko <[email protected]> | 2016-10-05 08:22:52 +0000 |
---|---|---|
committer | Cyrille Pitchen <[email protected]> | 2016-11-26 17:31:02 +0100 |
commit | edd0c8f4932dbf3e21036cb443ba5bdf7449d02b (patch) | |
tree | 03b17ea8d104fb364dde84ed7e51244c5837446c | |
parent | 61e4611864b396c7e9040b7335f25d3921bc87cd (diff) |
mtd: spi-nor: Add support for mr25h40
Add Everspin mr25h40 512KB MRAM to the list of supported chips.
Signed-off-by: Masahiko Iwamoto <[email protected]>
Reviewed-by: Jagan Teki <[email protected]>
Acked-by: Marek Vasut <[email protected]>
Signed-off-by: Cyrille Pitchen <[email protected]>
-rw-r--r-- | drivers/mtd/spi-nor/spi-nor.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mtd/spi-nor/spi-nor.c b/drivers/mtd/spi-nor/spi-nor.c index 72f59a7de173..da7cd69d4857 100644 --- a/drivers/mtd/spi-nor/spi-nor.c +++ b/drivers/mtd/spi-nor/spi-nor.c @@ -826,6 +826,7 @@ static const struct flash_info spi_nor_ids[] = { /* Everspin */ { "mr25h256", CAT25_INFO( 32 * 1024, 1, 256, 2, SPI_NOR_NO_ERASE | SPI_NOR_NO_FR) }, { "mr25h10", CAT25_INFO(128 * 1024, 1, 256, 3, SPI_NOR_NO_ERASE | SPI_NOR_NO_FR) }, + { "mr25h40", CAT25_INFO(512 * 1024, 1, 256, 3, SPI_NOR_NO_ERASE | SPI_NOR_NO_FR) }, /* Fujitsu */ { "mb85rs1mt", INFO(0x047f27, 0, 128 * 1024, 1, SPI_NOR_NO_ERASE) }, |