* [PATCH] m25p80: Add support for two new Spansion SPI devices (S25FL-K)
@ 2010-09-01 11:14 Gernot Hoyler
2010-09-01 23:26 ` Artem Bityutskiy
0 siblings, 1 reply; 6+ messages in thread
From: Gernot Hoyler @ 2010-09-01 11:14 UTC (permalink / raw)
To: linux-mtd
This patch adds support for Spansion S25FL016K and S25FL064K SPI flash.
It has been tested with physical devices. Note that both parts exhibit
a Winbond manufacturer ID so they might also be added to that section.
Signed-off-by: Gernot Hoyler <gernot.hoyler@spansion.com>
---
drivers/mtd/devices/m25p80.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/drivers/mtd/devices/m25p80.c b/drivers/mtd/devices/m25p80.c
index 6f512b5..1f0f703 100644
--- a/drivers/mtd/devices/m25p80.c
+++ b/drivers/mtd/devices/m25p80.c
@@ -666,6 +666,8 @@ static const struct spi_device_id m25p_ids[] = {
{ "s25sl12801", INFO(0x012018, 0x0301, 64 * 1024, 256, 0) },
{ "s25fl129p0", INFO(0x012018, 0x4d00, 256 * 1024, 64, 0) },
{ "s25fl129p1", INFO(0x012018, 0x4d01, 64 * 1024, 256, 0) },
+ { "s25fl016k", INFO(0xef4015, 0, 64 * 1024, 32, SECT_4K) },
+ { "s25fl064k", INFO(0xef4017, 0, 64 * 1024, 128, SECT_4K) },
/* SST -- large erase sizes are "overlays", "sectors" are 4K */
{ "sst25vf040b", INFO(0xbf258d, 0, 64 * 1024, 8, SECT_4K) },
--
1.6.2.2
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH] m25p80: Add support for two new Spansion SPI devices (S25FL-K)
2010-09-01 11:14 [PATCH] m25p80: Add support for two new Spansion SPI devices (S25FL-K) Gernot Hoyler
@ 2010-09-01 23:26 ` Artem Bityutskiy
2010-09-02 9:41 ` Hoyler, Gernot
0 siblings, 1 reply; 6+ messages in thread
From: Artem Bityutskiy @ 2010-09-01 23:26 UTC (permalink / raw)
To: Gernot Hoyler; +Cc: linux-mtd
On Wed, 2010-09-01 at 13:14 +0200, Gernot Hoyler wrote:
> This patch adds support for Spansion S25FL016K and S25FL064K SPI flash.
> It has been tested with physical devices. Note that both parts exhibit
> a Winbond manufacturer ID so they might also be added to that section.
>
>
> Signed-off-by: Gernot Hoyler <gernot.hoyler@spansion.com>
> ---
> drivers/mtd/devices/m25p80.c | 2 ++
> 1 files changed, 2 insertions(+), 0 deletions(-)
Would you please, send a patch which is applicable to the current mtd
tree: http://git.infradead.org/mtd-2.6.git
--
Best Regards,
Artem Bityutskiy (Битюцкий Артём)
^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: [PATCH] m25p80: Add support for two new Spansion SPI devices (S25FL-K)
2010-09-01 23:26 ` Artem Bityutskiy
@ 2010-09-02 9:41 ` Hoyler, Gernot
2010-09-02 9:53 ` Artem Bityutskiy
0 siblings, 1 reply; 6+ messages in thread
From: Hoyler, Gernot @ 2010-09-02 9:41 UTC (permalink / raw)
To: dedekind1@gmail.com; +Cc: linux-mtd@lists.infradead.org
> Would you please, send a patch which is applicable to the current mtd
> tree: http://git.infradead.org/mtd-2.6.git
Hmm, it should. If have cloned git://git.infradead.org/mtd-2.6,
created a new head, applied and committed my changes to that new head.
Then I have created the patch via "git format-patch master..head" and
(manually) added the signed-off-by line. Also, I have verified that I
can apply the patch to the latest master head via "patch -p1 < ...".
Did I miss something?
Thx, Gernot
^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: [PATCH] m25p80: Add support for two new Spansion SPI devices (S25FL-K)
2010-09-02 9:41 ` Hoyler, Gernot
@ 2010-09-02 9:53 ` Artem Bityutskiy
2010-09-02 15:27 ` Gernot Hoyler
0 siblings, 1 reply; 6+ messages in thread
From: Artem Bityutskiy @ 2010-09-02 9:53 UTC (permalink / raw)
To: Hoyler, Gernot; +Cc: linux-mtd@lists.infradead.org
On Thu, 2010-09-02 at 02:41 -0700, Hoyler, Gernot wrote:
> > Would you please, send a patch which is applicable to the current mtd
> > tree: http://git.infradead.org/mtd-2.6.git
>
> Hmm, it should. If have cloned git://git.infradead.org/mtd-2.6,
> created a new head, applied and committed my changes to that new head.
> Then I have created the patch via "git format-patch master..head" and
> (manually) added the signed-off-by line. Also, I have verified that I
> can apply the patch to the latest master head via "patch -p1 < ...".
Could you please try to save your own e-mail and apply it with git am ?
--
Best Regards,
Artem Bityutskiy (Битюцкий Артём)
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Re: [PATCH] m25p80: Add support for two new Spansion SPI devices (S25FL-K)
2010-09-02 9:53 ` Artem Bityutskiy
@ 2010-09-02 15:27 ` Gernot Hoyler
2010-09-02 17:58 ` Artem Bityutskiy
0 siblings, 1 reply; 6+ messages in thread
From: Gernot Hoyler @ 2010-09-02 15:27 UTC (permalink / raw)
To: dedekind1, linux-mtd
This patch adds support for Spansion S25FL016K and S25FL064K SPI flash.
It has been tested with physical devices. Note that both parts exhibit
a Winbond manufacturer ID so they might also be added to that section.
Signed-off-by: Gernot Hoyler <Gernot.Hoyler@spansion.com>
---
drivers/mtd/devices/m25p80.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/drivers/mtd/devices/m25p80.c b/drivers/mtd/devices/m25p80.c
index 6f512b5..1f0f703 100644
--- a/drivers/mtd/devices/m25p80.c
+++ b/drivers/mtd/devices/m25p80.c
@@ -666,6 +666,8 @@ static const struct spi_device_id m25p_ids[] = {
{ "s25sl12801", INFO(0x012018, 0x0301, 64 * 1024, 256, 0) },
{ "s25fl129p0", INFO(0x012018, 0x4d00, 256 * 1024, 64, 0) },
{ "s25fl129p1", INFO(0x012018, 0x4d01, 64 * 1024, 256, 0) },
+ { "s25fl016k", INFO(0xef4015, 0, 64 * 1024, 32, SECT_4K) },
+ { "s25fl064k", INFO(0xef4017, 0, 64 * 1024, 128, SECT_4K) },
/* SST -- large erase sizes are "overlays", "sectors" are 4K */
{ "sst25vf040b", INFO(0xbf258d, 0, 64 * 1024, 8, SECT_4K) },
--
1.6.2.2
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: Re: [PATCH] m25p80: Add support for two new Spansion SPI devices (S25FL-K)
2010-09-02 15:27 ` Gernot Hoyler
@ 2010-09-02 17:58 ` Artem Bityutskiy
0 siblings, 0 replies; 6+ messages in thread
From: Artem Bityutskiy @ 2010-09-02 17:58 UTC (permalink / raw)
To: Gernot Hoyler; +Cc: linux-mtd
On Thu, 2010-09-02 at 17:27 +0200, Gernot Hoyler wrote:
> This patch adds support for Spansion S25FL016K and S25FL064K SPI flash.
> It has been tested with physical devices. Note that both parts exhibit
> a Winbond manufacturer ID so they might also be added to that section.
>
> Signed-off-by: Gernot Hoyler <Gernot.Hoyler@spansion.com>
Pushed to l2-mtd-2.6.git, thanks.
--
Best Regards,
Artem Bityutskiy (Битюцкий Артём)
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2010-09-02 17:58 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-01 11:14 [PATCH] m25p80: Add support for two new Spansion SPI devices (S25FL-K) Gernot Hoyler
2010-09-01 23:26 ` Artem Bityutskiy
2010-09-02 9:41 ` Hoyler, Gernot
2010-09-02 9:53 ` Artem Bityutskiy
2010-09-02 15:27 ` Gernot Hoyler
2010-09-02 17:58 ` Artem Bityutskiy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).