All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mtd: spi-nor: Add support for Fujitsu MB85RS1MT FRAM
@ 2014-09-10  8:53 ` Rostislav Lisovy
  0 siblings, 0 replies; 4+ messages in thread
From: Rostislav Lisovy @ 2014-09-10  8:53 UTC (permalink / raw)
  To: David Woodhouse, Brian Norris, Marek Vasut, Huang Shijie,
	linux-mtd, linux-kernel
  Cc: sojkam1, michal.vokac, lisovy, Rostislav Lisovy

Tested with this particular FRAM chip

Signed-off-by: Rostislav Lisovy <lisovy@merica.cz>
---
 drivers/mtd/spi-nor/spi-nor.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/mtd/spi-nor/spi-nor.c b/drivers/mtd/spi-nor/spi-nor.c
index b5ad6be..a914be9 100644
--- a/drivers/mtd/spi-nor/spi-nor.c
+++ b/drivers/mtd/spi-nor/spi-nor.c
@@ -505,6 +505,9 @@ const struct spi_device_id spi_nor_ids[] = {
 	{ "mr25h256", CAT25_INFO( 32 * 1024, 1, 256, 2, SPI_NOR_NO_ERASE | SPI_NOR_NO_FR) },
 	{ "mr25h10",  CAT25_INFO(128 * 1024, 1, 256, 3, SPI_NOR_NO_ERASE | SPI_NOR_NO_FR) },
 
+	/* Fujitsu */
+	{ "mb85rs1mt", INFO(0x047f27, 0, 128 * 1024, 1, SPI_NOR_NO_ERASE) },
+
 	/* GigaDevice */
 	{ "gd25q32", INFO(0xc84016, 0, 64 * 1024,  64, SECT_4K) },
 	{ "gd25q64", INFO(0xc84017, 0, 64 * 1024, 128, SECT_4K) },
-- 
1.9.1


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

* [PATCH] mtd: spi-nor: Add support for Fujitsu MB85RS1MT FRAM
@ 2014-09-10  8:53 ` Rostislav Lisovy
  0 siblings, 0 replies; 4+ messages in thread
From: Rostislav Lisovy @ 2014-09-10  8:53 UTC (permalink / raw)
  To: David Woodhouse, Brian Norris, Marek Vasut, Huang Shijie,
	linux-mtd, linux-kernel
  Cc: michal.vokac, lisovy, Rostislav Lisovy, sojkam1

Tested with this particular FRAM chip

Signed-off-by: Rostislav Lisovy <lisovy@merica.cz>
---
 drivers/mtd/spi-nor/spi-nor.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/mtd/spi-nor/spi-nor.c b/drivers/mtd/spi-nor/spi-nor.c
index b5ad6be..a914be9 100644
--- a/drivers/mtd/spi-nor/spi-nor.c
+++ b/drivers/mtd/spi-nor/spi-nor.c
@@ -505,6 +505,9 @@ const struct spi_device_id spi_nor_ids[] = {
 	{ "mr25h256", CAT25_INFO( 32 * 1024, 1, 256, 2, SPI_NOR_NO_ERASE | SPI_NOR_NO_FR) },
 	{ "mr25h10",  CAT25_INFO(128 * 1024, 1, 256, 3, SPI_NOR_NO_ERASE | SPI_NOR_NO_FR) },
 
+	/* Fujitsu */
+	{ "mb85rs1mt", INFO(0x047f27, 0, 128 * 1024, 1, SPI_NOR_NO_ERASE) },
+
 	/* GigaDevice */
 	{ "gd25q32", INFO(0xc84016, 0, 64 * 1024,  64, SECT_4K) },
 	{ "gd25q64", INFO(0xc84017, 0, 64 * 1024, 128, SECT_4K) },
-- 
1.9.1

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

* Re: [PATCH] mtd: spi-nor: Add support for Fujitsu MB85RS1MT FRAM
  2014-09-10  8:53 ` Rostislav Lisovy
@ 2014-09-10 14:55   ` Marek Vasut
  -1 siblings, 0 replies; 4+ messages in thread
From: Marek Vasut @ 2014-09-10 14:55 UTC (permalink / raw)
  To: Rostislav Lisovy
  Cc: David Woodhouse, Brian Norris, Huang Shijie, linux-mtd,
	linux-kernel, sojkam1, michal.vokac, Rostislav Lisovy

On Wednesday, September 10, 2014 at 10:53:50 AM, Rostislav Lisovy wrote:
> Tested with this particular FRAM chip
> 
> Signed-off-by: Rostislav Lisovy <lisovy@merica.cz>
> ---
>  drivers/mtd/spi-nor/spi-nor.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/drivers/mtd/spi-nor/spi-nor.c b/drivers/mtd/spi-nor/spi-nor.c
> index b5ad6be..a914be9 100644
> --- a/drivers/mtd/spi-nor/spi-nor.c
> +++ b/drivers/mtd/spi-nor/spi-nor.c
> @@ -505,6 +505,9 @@ const struct spi_device_id spi_nor_ids[] = {
>  	{ "mr25h256", CAT25_INFO( 32 * 1024, 1, 256, 2, SPI_NOR_NO_ERASE |
> SPI_NOR_NO_FR) }, { "mr25h10",  CAT25_INFO(128 * 1024, 1, 256, 3,
> SPI_NOR_NO_ERASE | SPI_NOR_NO_FR) },
> 
> +	/* Fujitsu */
> +	{ "mb85rs1mt", INFO(0x047f27, 0, 128 * 1024, 1, SPI_NOR_NO_ERASE) },
> +
>  	/* GigaDevice */
>  	{ "gd25q32", INFO(0xc84016, 0, 64 * 1024,  64, SECT_4K) },
>  	{ "gd25q64", INFO(0xc84017, 0, 64 * 1024, 128, SECT_4K) },

Looks OK,

Acked-by: Marek Vasut <marex@denx.de>

Best regards,
Marek Vasut

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

* Re: [PATCH] mtd: spi-nor: Add support for Fujitsu MB85RS1MT FRAM
@ 2014-09-10 14:55   ` Marek Vasut
  0 siblings, 0 replies; 4+ messages in thread
From: Marek Vasut @ 2014-09-10 14:55 UTC (permalink / raw)
  To: Rostislav Lisovy
  Cc: Rostislav Lisovy, linux-kernel, Huang Shijie, linux-mtd,
	michal.vokac, Brian Norris, David Woodhouse, sojkam1

On Wednesday, September 10, 2014 at 10:53:50 AM, Rostislav Lisovy wrote:
> Tested with this particular FRAM chip
> 
> Signed-off-by: Rostislav Lisovy <lisovy@merica.cz>
> ---
>  drivers/mtd/spi-nor/spi-nor.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/drivers/mtd/spi-nor/spi-nor.c b/drivers/mtd/spi-nor/spi-nor.c
> index b5ad6be..a914be9 100644
> --- a/drivers/mtd/spi-nor/spi-nor.c
> +++ b/drivers/mtd/spi-nor/spi-nor.c
> @@ -505,6 +505,9 @@ const struct spi_device_id spi_nor_ids[] = {
>  	{ "mr25h256", CAT25_INFO( 32 * 1024, 1, 256, 2, SPI_NOR_NO_ERASE |
> SPI_NOR_NO_FR) }, { "mr25h10",  CAT25_INFO(128 * 1024, 1, 256, 3,
> SPI_NOR_NO_ERASE | SPI_NOR_NO_FR) },
> 
> +	/* Fujitsu */
> +	{ "mb85rs1mt", INFO(0x047f27, 0, 128 * 1024, 1, SPI_NOR_NO_ERASE) },
> +
>  	/* GigaDevice */
>  	{ "gd25q32", INFO(0xc84016, 0, 64 * 1024,  64, SECT_4K) },
>  	{ "gd25q64", INFO(0xc84017, 0, 64 * 1024, 128, SECT_4K) },

Looks OK,

Acked-by: Marek Vasut <marex@denx.de>

Best regards,
Marek Vasut

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

end of thread, other threads:[~2014-09-10 15:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-10  8:53 [PATCH] mtd: spi-nor: Add support for Fujitsu MB85RS1MT FRAM Rostislav Lisovy
2014-09-10  8:53 ` Rostislav Lisovy
2014-09-10 14:55 ` Marek Vasut
2014-09-10 14:55   ` Marek Vasut

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.