From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?B?SsOpcsO0bWU=?= Carretero Date: Sun, 8 Apr 2012 16:55:55 -0400 Subject: [U-Boot] [PATCH] spi_flash/stmicro: add geometrical info for N25Q256 from Micron Message-ID: <20120408165555.2d396ca0@Bidule> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Note: because 4-byte addressing is not supported yet, at the moment only the first 16MiB of the device are available. Signed-off-by: J?r?me Carretero CC: Mike Frysinger --- drivers/mtd/spi/stmicro.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/drivers/mtd/spi/stmicro.c b/drivers/mtd/spi/stmicro.c index a9b33cf..1a8c334 100644 --- a/drivers/mtd/spi/stmicro.c +++ b/drivers/mtd/spi/stmicro.c @@ -111,6 +111,13 @@ static const struct stmicro_spi_flash_params stmicro_spi_flash_table[] = { .nr_sectors = 64, .name = "M25P128", }, + { + .idcode1 = 0x19, + .page_size = 256, + .pages_per_sector = 256, + .nr_sectors = 512, + .name = "N25Q256", + }, }; static int stmicro_erase(struct spi_flash *flash, u32 offset, size_t len) -- 1.7.9.4