From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-out.m-online.net ([212.18.0.10]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1VRSdF-0005Ij-HS for linux-mtd@lists.infradead.org; Wed, 02 Oct 2013 20:02:50 +0000 From: Marek Vasut To: Brian Norris Subject: Re: [PATCH] mtd: m25p80: Add support for Micron N25Q512A memory Date: Wed, 2 Oct 2013 22:02:19 +0200 References: <1378270016-9280-1-git-send-email-Priyanka.Jain@freescale.com> <20131002185123.GT23337@ld-irv-0074.broadcom.com> In-Reply-To: MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <201310022202.19877.marex@denx.de> Cc: Priyanka Jain , "linux-mtd@lists.infradead.org" , Artem Bityutskiy List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Hi Brian, > + Marek for real! > > On Wed, Oct 2, 2013 at 11:51 AM, Brian Norris > > wrote: > > + Marek > > > > On Wed, Sep 04, 2013 at 10:16:56AM +0530, Priyanka Jain wrote: > >> Micron N25Q512A is a spi flash memory with following features: > >> -64MB size, 1.8V, Mulitple I/O, 4KB Sector erase memory. > >> -Memory is organised as 1024(64KB) main sectors. > >> -Each sector is divided into 256 pages. > >> -Register set/Opcodes are similar to other N25Q family products. > >> > >> Signed-off-by: Priyanka Jain > >> --- > >> > >> drivers/mtd/devices/m25p80.c | 1 + > >> 1 files changed, 1 insertions(+), 0 deletions(-) > >> > >> diff --git a/drivers/mtd/devices/m25p80.c b/drivers/mtd/devices/m25p80.c > >> index 26b14f9..94e3b53 100644 > >> --- a/drivers/mtd/devices/m25p80.c > >> +++ b/drivers/mtd/devices/m25p80.c > >> @@ -774,6 +774,7 @@ static const struct spi_device_id m25p_ids[] = { > >> > >> { "n25q128a11", INFO(0x20bb18, 0, 64 * 1024, 256, 0) }, > >> { "n25q128a13", INFO(0x20ba18, 0, 64 * 1024, 256, 0) }, > >> { "n25q256a", INFO(0x20ba19, 0, 64 * 1024, 512, SECT_4K) }, > >> > >> + { "n25q512a", INFO(0x20bb20, 0, 64 * 1024, 512, SECT_4K) }, Why does this n25q256a and n25q512a have exactly the same geometry? I mean, those chips differ in size, do they not ? ;-) > > This device actually has the same ID as Micron's next line (MT25QL512A). > > They have the same geometry, so maybe that's not a problem. > > > > (FWIW, I haven't gotten either flash working here, but I'm suspecting > > board problems.) > > > >> /* PMC */ > >> { "pm25lv512", INFO(0, 0, 32 * 1024, 2, SECT_4K_PMC) }, > > > > I'll give Marek a chance to look at this, then I'll take this into > > l2-mtd.git if there are no objections. btw. I got me a board with n25q256a. The chip works fine with recent linux kernel, so the ST-related 4-byte addressing change works perfectly. Best regards, Marek Vasut