All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mtd: m25p80: add Spansion S25FL204K support
@ 2015-06-15 20:20 Antony Pavlov
  2015-06-15 21:04 ` Rafał Miłecki
  0 siblings, 1 reply; 3+ messages in thread
From: Antony Pavlov @ 2015-06-15 20:20 UTC (permalink / raw)
  To: linux-mtd
  Cc: Marek Vasut, Brian Norris, David Woodhouse, Rafał Miłecki

Spansion S25FL204K is a 4-Mbit 3.0V Serial Flash Memory
with Uniform 4 kB Sectors.

Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
---
 drivers/mtd/devices/m25p80.c  | 2 +-
 drivers/mtd/spi-nor/spi-nor.c | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/mtd/devices/m25p80.c b/drivers/mtd/devices/m25p80.c
index 3af137f..85be835 100644
--- a/drivers/mtd/devices/m25p80.c
+++ b/drivers/mtd/devices/m25p80.c
@@ -281,7 +281,7 @@ static const struct spi_device_id m25p_ids[] = {
 	{"s25fl512s"},	{"s70fl01gs"},	{"s25sl12800"},	{"s25sl12801"},
 	{"s25fl129p0"},	{"s25fl129p1"},	{"s25sl004a"},	{"s25sl008a"},
 	{"s25sl016a"},	{"s25sl032a"},	{"s25sl064a"},	{"s25fl008k"},
-	{"s25fl016k"},	{"s25fl064k"},	{"s25fl132k"},
+	{"s25fl016k"},	{"s25fl064k"},	{"s25fl132k"},	{"s25fl204k"},
 	{"sst25vf040b"},{"sst25vf080b"},{"sst25vf016b"},{"sst25vf032b"},
 	{"sst25vf064c"},{"sst25wf512"},	{"sst25wf010"},	{"sst25wf020"},
 	{"sst25wf040"},
diff --git a/drivers/mtd/spi-nor/spi-nor.c b/drivers/mtd/spi-nor/spi-nor.c
index 14a5d23..274083c 100644
--- a/drivers/mtd/spi-nor/spi-nor.c
+++ b/drivers/mtd/spi-nor/spi-nor.c
@@ -614,6 +614,7 @@ static const struct spi_device_id spi_nor_ids[] = {
 	{ "s25fl016k",  INFO(0xef4015,      0,  64 * 1024,  32, SECT_4K) },
 	{ "s25fl064k",  INFO(0xef4017,      0,  64 * 1024, 128, SECT_4K) },
 	{ "s25fl132k",  INFO(0x014016,      0,  64 * 1024,  64, 0) },
+	{ "s25fl204k",  INFO(0x014013,      0,  64 * 1024,   8, SECT_4K) },
 
 	/* SST -- large erase sizes are "overlays", "sectors" are 4K */
 	{ "sst25vf040b", INFO(0xbf258d, 0, 64 * 1024,  8, SECT_4K | SST_WRITE) },
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] mtd: m25p80: add Spansion S25FL204K support
  2015-06-15 20:20 [PATCH] mtd: m25p80: add Spansion S25FL204K support Antony Pavlov
@ 2015-06-15 21:04 ` Rafał Miłecki
  2015-06-16  5:58   ` Antony Pavlov
  0 siblings, 1 reply; 3+ messages in thread
From: Rafał Miłecki @ 2015-06-15 21:04 UTC (permalink / raw)
  To: Antony Pavlov; +Cc: Marek Vasut, David Woodhouse, Brian Norris, linux-mtd

On 15 June 2015 at 22:20, Antony Pavlov <antonynpavlov@gmail.com> wrote:
> Spansion S25FL204K is a 4-Mbit 3.0V Serial Flash Memory
> with Uniform 4 kB Sectors.
>
> Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
> ---
>  drivers/mtd/devices/m25p80.c  | 2 +-
>  drivers/mtd/spi-nor/spi-nor.c | 1 +
>  2 files changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/mtd/devices/m25p80.c b/drivers/mtd/devices/m25p80.c
> index 3af137f..85be835 100644
> --- a/drivers/mtd/devices/m25p80.c
> +++ b/drivers/mtd/devices/m25p80.c
> @@ -281,7 +281,7 @@ static const struct spi_device_id m25p_ids[] = {
>         {"s25fl512s"},  {"s70fl01gs"},  {"s25sl12800"}, {"s25sl12801"},
>         {"s25fl129p0"}, {"s25fl129p1"}, {"s25sl004a"},  {"s25sl008a"},
>         {"s25sl016a"},  {"s25sl032a"},  {"s25sl064a"},  {"s25fl008k"},
> -       {"s25fl016k"},  {"s25fl064k"},  {"s25fl132k"},
> +       {"s25fl016k"},  {"s25fl064k"},  {"s25fl132k"},  {"s25fl204k"},
>         {"sst25vf040b"},{"sst25vf080b"},{"sst25vf016b"},{"sst25vf032b"},
>         {"sst25vf064c"},{"sst25wf512"}, {"sst25wf010"}, {"sst25wf020"},
>         {"sst25wf040"},

And why do we need it in this table (above)? You didn't add any extra
handling for it. You also didn't call it anything like "nonjedec", so
I guess it supports JEDEC's RD ID.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] mtd: m25p80: add Spansion S25FL204K support
  2015-06-15 21:04 ` Rafał Miłecki
@ 2015-06-16  5:58   ` Antony Pavlov
  0 siblings, 0 replies; 3+ messages in thread
From: Antony Pavlov @ 2015-06-16  5:58 UTC (permalink / raw)
  To: Rafał Miłecki
  Cc: Marek Vasut, David Woodhouse, Brian Norris, linux-mtd

On Mon, 15 Jun 2015 23:04:37 +0200
Rafał Miłecki <zajec5@gmail.com> wrote:

> On 15 June 2015 at 22:20, Antony Pavlov <antonynpavlov@gmail.com> wrote:
> > Spansion S25FL204K is a 4-Mbit 3.0V Serial Flash Memory
> > with Uniform 4 kB Sectors.
> >
> > Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
> > ---
> >  drivers/mtd/devices/m25p80.c  | 2 +-
> >  drivers/mtd/spi-nor/spi-nor.c | 1 +
> >  2 files changed, 2 insertions(+), 1 deletion(-)
> >
> > diff --git a/drivers/mtd/devices/m25p80.c b/drivers/mtd/devices/m25p80.c
> > index 3af137f..85be835 100644
> > --- a/drivers/mtd/devices/m25p80.c
> > +++ b/drivers/mtd/devices/m25p80.c
> > @@ -281,7 +281,7 @@ static const struct spi_device_id m25p_ids[] = {
> >         {"s25fl512s"},  {"s70fl01gs"},  {"s25sl12800"}, {"s25sl12801"},
> >         {"s25fl129p0"}, {"s25fl129p1"}, {"s25sl004a"},  {"s25sl008a"},
> >         {"s25sl016a"},  {"s25sl032a"},  {"s25sl064a"},  {"s25fl008k"},
> > -       {"s25fl016k"},  {"s25fl064k"},  {"s25fl132k"},
> > +       {"s25fl016k"},  {"s25fl064k"},  {"s25fl132k"},  {"s25fl204k"},
> >         {"sst25vf040b"},{"sst25vf080b"},{"sst25vf016b"},{"sst25vf032b"},
> >         {"sst25vf064c"},{"sst25wf512"}, {"sst25wf010"}, {"sst25wf020"},
> >         {"sst25wf040"},
> 
> And why do we need it in this table (above)? You didn't add any extra
> handling for it. You also didn't call it anything like "nonjedec", so
> I guess it supports JEDEC's RD ID.

My original patch was made for linux-3.19 (Feb 8 2015), 
I just used commit 3e38933dd894b4 as an example

  commit 3e38933dd894b48d422113cb26fd3510fd2a80bd
  Author: Knut Wohlrab <knut.wohlrab@de.bosch.com>
  Date:   Mon Nov 10 16:54:53 2014 +0100

      mtd: m25p80: Add support for serial flash Spansion S25FL132K

Now I see that some things are changed with commit 1103b8517041b.

  commit 1103b8517041b08286cae0da8481bef9164c961a
  Author: Brian Norris <computersforpeace@gmail.com>
  Date:   Fri Mar 27 10:29:50 2015 -0700

      mtd: m25p80: bind to "nor-jedec" ID, for auto-detection

I will resubmit V2 of my patch in a short while.

-- 
Best regards,
  Antony Pavlov

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-06-16  5:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-15 20:20 [PATCH] mtd: m25p80: add Spansion S25FL204K support Antony Pavlov
2015-06-15 21:04 ` Rafał Miłecki
2015-06-16  5:58   ` Antony Pavlov

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.