From: Marek Vasut <marex@denx.de>
To: Michal Suchanek <hramrach@gmail.com>
Cc: Geert Uytterhoeven <geert+renesas@glider.be>,
David Woodhouse <dwmw2@infradead.org>,
Rafa?? Mi??ecki <zajec5@gmail.com>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
linux-mtd@lists.infradead.org,
"grmoore@altera.com" <grmoore@altera.com>,
Brian Norris <computersforpeace@gmail.com>,
Ben Hutchings <ben@decadent.org.uk>,
Alison Chaiken <alison_chaiken@mentor.com>,
"Bean Huo \(beanhuo\)" <beanhuo@micron.com>
Subject: Re: [PATCH 3/3] MTD: spi-nor: add flag to not use sector erase.
Date: Mon, 4 May 2015 16:11:26 +0200 [thread overview]
Message-ID: <201505041611.26119.marex@denx.de> (raw)
In-Reply-To: <CAOMqctTwrN3onS0EuW1ZB0ZDcw4X+WrKwnFbYizPpwXY8cCLWQ@mail.gmail.com>
On Monday, May 04, 2015 at 03:39:44 PM, Michal Suchanek wrote:
> On 4 May 2015 at 15:35, Marek Vasut <marex@denx.de> wrote:
> > On Monday, May 04, 2015 at 03:18:56 PM, Michal Suchanek wrote:
> >> On 4 May 2015 at 14:12, Marek Vasut <marex@denx.de> wrote:
> >> > On Monday, May 04, 2015 at 01:11:03 PM, Michal Suchanek wrote:
> >> >> It mentions both
> >> >> 32KB Block Erase (BE) (52H)
> >> >> and
> >> >> 64KB Block Erase (BE) (D8H)
> >> >
> >> > The SPI NOR framework will use 0xbe opcode, no problem.
> >> >
> >> >> So the chip probably tries its best to be compatible with any command
> >> >> set and this last patch is not needed. The memory organization table
> >> >> on page 7 is not all that reassuring, though.
> >> >
> >> > Which exact part do you refer to please ?
> >>
> >> Start of page 7 where it says sector size 32/64K in either datasheet.
> >>
> >> It can refer to both BE opcode variants being supported but it's quite
> >> unclear.
> >
> > My guess here would be that the internal organisation of the SPI NOR is
> > in 4k blocks, which is no surprise really. My understanding is that
> > opcode 0x52 erases 8x4k sector (ie. 32k of data) while 0xd8 erases 16x4k
> > sector (ie. 64k of data). I don't see any problem here -- there are two
> > different opcodes which do two different things and their behavior
> > matches the one on various other SPI NORs.
> >
> >> Write protection seems to be calculated in 4k sectors and not blocks
> >> so the block size does not seem very relevant.
> >
> > See above. Does it make sense now please ?
>
> Yes,
>
> makes sense.
I'm glad to hear this got cleared up, thanks ! :)
Best regards,
Marek Vasut
WARNING: multiple messages have this Message-ID (diff)
From: Marek Vasut <marex@denx.de>
To: Michal Suchanek <hramrach@gmail.com>
Cc: David Woodhouse <dwmw2@infradead.org>,
Brian Norris <computersforpeace@gmail.com>,
"Rafa?? Mi??ecki" <zajec5@gmail.com>,
Alison Chaiken <alison_chaiken@mentor.com>,
Ben Hutchings <ben@decadent.org.uk>,
Geert Uytterhoeven <geert+renesas@glider.be>,
"Bean Huo (beanhuo)" <beanhuo@micron.com>,
"grmoore@altera.com" <grmoore@altera.com>,
linux-mtd@lists.infradead.org,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH 3/3] MTD: spi-nor: add flag to not use sector erase.
Date: Mon, 4 May 2015 16:11:26 +0200 [thread overview]
Message-ID: <201505041611.26119.marex@denx.de> (raw)
In-Reply-To: <CAOMqctTwrN3onS0EuW1ZB0ZDcw4X+WrKwnFbYizPpwXY8cCLWQ@mail.gmail.com>
On Monday, May 04, 2015 at 03:39:44 PM, Michal Suchanek wrote:
> On 4 May 2015 at 15:35, Marek Vasut <marex@denx.de> wrote:
> > On Monday, May 04, 2015 at 03:18:56 PM, Michal Suchanek wrote:
> >> On 4 May 2015 at 14:12, Marek Vasut <marex@denx.de> wrote:
> >> > On Monday, May 04, 2015 at 01:11:03 PM, Michal Suchanek wrote:
> >> >> It mentions both
> >> >> 32KB Block Erase (BE) (52H)
> >> >> and
> >> >> 64KB Block Erase (BE) (D8H)
> >> >
> >> > The SPI NOR framework will use 0xbe opcode, no problem.
> >> >
> >> >> So the chip probably tries its best to be compatible with any command
> >> >> set and this last patch is not needed. The memory organization table
> >> >> on page 7 is not all that reassuring, though.
> >> >
> >> > Which exact part do you refer to please ?
> >>
> >> Start of page 7 where it says sector size 32/64K in either datasheet.
> >>
> >> It can refer to both BE opcode variants being supported but it's quite
> >> unclear.
> >
> > My guess here would be that the internal organisation of the SPI NOR is
> > in 4k blocks, which is no surprise really. My understanding is that
> > opcode 0x52 erases 8x4k sector (ie. 32k of data) while 0xd8 erases 16x4k
> > sector (ie. 64k of data). I don't see any problem here -- there are two
> > different opcodes which do two different things and their behavior
> > matches the one on various other SPI NORs.
> >
> >> Write protection seems to be calculated in 4k sectors and not blocks
> >> so the block size does not seem very relevant.
> >
> > See above. Does it make sense now please ?
>
> Yes,
>
> makes sense.
I'm glad to hear this got cleared up, thanks ! :)
Best regards,
Marek Vasut
next prev parent reply other threads:[~2015-05-04 14:11 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-30 21:42 [PATCH 0/3] Minor fix and new Chip IDs for spi-nor Michal Suchanek
2015-04-30 13:33 ` [PATCH 1/3] MTD: m25p80: fix write return value Michal Suchanek
2015-04-30 23:09 ` Marek Vasut
2015-04-30 23:09 ` Marek Vasut
2015-05-20 23:45 ` Brian Norris
2015-05-20 23:45 ` Brian Norris
2015-05-21 8:33 ` Michal Suchanek
2015-05-21 8:33 ` Michal Suchanek
2015-04-30 19:02 ` [PATCH 2/3] MTD: spi-nor: Add Pm25LD020 and GD25Q41B chip ID Michal Suchanek
2015-04-30 21:13 ` [PATCH 3/3] MTD: spi-nor: add flag to not use sector erase Michal Suchanek
2015-04-30 23:13 ` Marek Vasut
2015-04-30 23:13 ` Marek Vasut
2015-05-01 7:05 ` Michal Suchanek
2015-05-01 7:05 ` Michal Suchanek
2015-05-01 10:50 ` Jonas Gorski
2015-05-01 10:50 ` Jonas Gorski
2015-05-01 14:20 ` Marek Vasut
2015-05-01 14:20 ` Marek Vasut
2015-05-04 11:11 ` Michal Suchanek
2015-05-04 11:11 ` Michal Suchanek
2015-05-04 12:12 ` Marek Vasut
2015-05-04 12:12 ` Marek Vasut
2015-05-04 13:18 ` Michal Suchanek
2015-05-04 13:18 ` Michal Suchanek
2015-05-04 13:35 ` Marek Vasut
2015-05-04 13:35 ` Marek Vasut
2015-05-04 13:39 ` Michal Suchanek
2015-05-04 13:39 ` Michal Suchanek
2015-05-04 14:11 ` Marek Vasut [this message]
2015-05-04 14:11 ` Marek Vasut
2015-05-01 21:56 ` Rafał Miłecki
2015-05-01 21:56 ` Rafał Miłecki
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=201505041611.26119.marex@denx.de \
--to=marex@denx.de \
--cc=alison_chaiken@mentor.com \
--cc=beanhuo@micron.com \
--cc=ben@decadent.org.uk \
--cc=computersforpeace@gmail.com \
--cc=dwmw2@infradead.org \
--cc=geert+renesas@glider.be \
--cc=grmoore@altera.com \
--cc=hramrach@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mtd@lists.infradead.org \
--cc=zajec5@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.