From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kumar Gala Date: Mon, 3 Oct 2011 09:37:08 -0500 Subject: [U-Boot] [PATCH] spi/eon: add support for new EON spi flash EN25Q32B Message-ID: <1317652628-31948-1-git-send-email-galak@kernel.crashing.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de From: Shaohui Xie Signed-off-by: Shaohui Xie Signed-off-by: Kumar Gala --- drivers/mtd/spi/eon.c | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/drivers/mtd/spi/eon.c b/drivers/mtd/spi/eon.c index 806b44e..4c64494 100644 --- a/drivers/mtd/spi/eon.c +++ b/drivers/mtd/spi/eon.c @@ -41,6 +41,14 @@ static const struct eon_spi_flash_params eon_spi_flash_table[] = { .nr_sectors = 4096, .name = "EN25Q128", }, + { + .idcode1 = 0x16, + .page_size = 256, + .pages_per_sector = 16, + .sectors_per_block = 16, + .nr_sectors = 1024, + .name = "EN25Q32B", + }, }; static int eon_erase(struct spi_flash *flash, u32 offset, size_t len) -- 1.7.3.4