diff options
author | Jagannadha Sutradharudu Teki <jagannadh.teki@gmail.com> | 2012-12-12 04:48:56 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-02-04 09:14:21 -0500 |
commit | 3981d02e0bbaecce9cb32c6f2366417a51c033ec (patch) | |
tree | 74245b054ee0a3b378447484d8f9f8c06b2ebfbd | |
parent | 34765e88532dfe0f8210baba9f9482de470d2202 (diff) | |
download | u-boot-imx-3981d02e0bbaecce9cb32c6f2366417a51c033ec.zip u-boot-imx-3981d02e0bbaecce9cb32c6f2366417a51c033ec.tar.gz u-boot-imx-3981d02e0bbaecce9cb32c6f2366417a51c033ec.tar.bz2 |
sf: stmicro: add support for N25Q064
Add support for Numonyx N25Q064 SPI flash.
Signed-off-by: Jagannadha Sutradharudu Teki <jagannadh.teki@gmail.com>
-rw-r--r-- | drivers/mtd/spi/stmicro.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/mtd/spi/stmicro.c b/drivers/mtd/spi/stmicro.c index 30b626a..9ec938a 100644 --- a/drivers/mtd/spi/stmicro.c +++ b/drivers/mtd/spi/stmicro.c @@ -93,6 +93,12 @@ static const struct stmicro_spi_flash_params stmicro_spi_flash_table[] = { .name = "M25P128", }, { + .id = 0xba17, + .pages_per_sector = 256, + .nr_sectors = 128, + .name = "N25Q064", + }, + { .id = 0xba18, .pages_per_sector = 256, .nr_sectors = 256, |