All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/2] sf: stmicro: Add support for N25Q64
@ 2013-01-23 12:58 Michal Simek
  2013-01-23 12:58 ` [U-Boot] [PATCH 2/2] sf: stmicro: Add support for N25Q64A Michal Simek
  2013-01-23 13:43 ` [U-Boot] [PATCH 1/2] sf: stmicro: Add support for N25Q64 Andrew Dyer
  0 siblings, 2 replies; 4+ messages in thread
From: Michal Simek @ 2013-01-23 12:58 UTC (permalink / raw)
  To: u-boot

From: Jagannadha Sutradharudu Teki <jagannadha.sutradharudu-teki@xilinx.com>

Add support for Numonyx N25Q064 SPI flash.

Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
---
 drivers/mtd/spi/stmicro.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/drivers/mtd/spi/stmicro.c b/drivers/mtd/spi/stmicro.c
index 30b626a..96403ee 100644
--- a/drivers/mtd/spi/stmicro.c
+++ b/drivers/mtd/spi/stmicro.c
@@ -93,6 +93,12 @@ static const struct stmicro_spi_flash_params stmicro_spi_flash_table[] = {
 		.name = "M25P128",
 	},
 	{
+		.id = 0xba17,
+		.pages_per_sector = 256,
+		.nr_sectors = 128,
+		.name = "N25Q64",
+	},
+	{
 		.id = 0xba18,
 		.pages_per_sector = 256,
 		.nr_sectors = 256,
-- 
1.7.0.4

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

* [U-Boot] [PATCH 2/2] sf: stmicro: Add support for N25Q64A
  2013-01-23 12:58 [U-Boot] [PATCH 1/2] sf: stmicro: Add support for N25Q64 Michal Simek
@ 2013-01-23 12:58 ` Michal Simek
  2013-01-23 13:43 ` [U-Boot] [PATCH 1/2] sf: stmicro: Add support for N25Q64 Andrew Dyer
  1 sibling, 0 replies; 4+ messages in thread
From: Michal Simek @ 2013-01-23 12:58 UTC (permalink / raw)
  To: u-boot

From: Jagannadha Sutradharudu Teki <jagannadha.sutradharudu-teki@xilinx.com>

Add support for Numonyx N25Q64A SPI flash.

Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
---
 drivers/mtd/spi/stmicro.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/drivers/mtd/spi/stmicro.c b/drivers/mtd/spi/stmicro.c
index 96403ee..32df827 100644
--- a/drivers/mtd/spi/stmicro.c
+++ b/drivers/mtd/spi/stmicro.c
@@ -99,6 +99,12 @@ static const struct stmicro_spi_flash_params stmicro_spi_flash_table[] = {
 		.name = "N25Q64",
 	},
 	{
+		.id = 0xbb17,
+		.pages_per_sector = 256,
+		.nr_sectors = 128,
+		.name = "N25Q64A",
+	},
+	{
 		.id = 0xba18,
 		.pages_per_sector = 256,
 		.nr_sectors = 256,
-- 
1.7.0.4

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

* [U-Boot] [PATCH 1/2] sf: stmicro: Add support for N25Q64
  2013-01-23 12:58 [U-Boot] [PATCH 1/2] sf: stmicro: Add support for N25Q64 Michal Simek
  2013-01-23 12:58 ` [U-Boot] [PATCH 2/2] sf: stmicro: Add support for N25Q64A Michal Simek
@ 2013-01-23 13:43 ` Andrew Dyer
  2013-01-23 14:08   ` Jagannadha Sutradharudu Teki
  1 sibling, 1 reply; 4+ messages in thread
From: Andrew Dyer @ 2013-01-23 13:43 UTC (permalink / raw)
  To: u-boot

On Wed, Jan 23, 2013 at 6:58 AM, Michal Simek <michal.simek@xilinx.com>wrote:

> From: Jagannadha Sutradharudu Teki <
> jagannadha.sutradharudu-teki at xilinx.com>
>
> Add support for Numonyx N25Q064 SPI flash.
>
> Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
> ---
>  drivers/mtd/spi/stmicro.c |    6 ++++++
>  1 files changed, 6 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/mtd/spi/stmicro.c b/drivers/mtd/spi/stmicro.c
> index 30b626a..96403ee 100644
> --- a/drivers/mtd/spi/stmicro.c
> +++ b/drivers/mtd/spi/stmicro.c
> @@ -93,6 +93,12 @@ static const struct stmicro_spi_flash_params
> stmicro_spi_flash_table[] = {
>                 .name = "M25P128",
>         },
>         {
> +               .id = 0xba17,
> +               .pages_per_sector = 256,
> +               .nr_sectors = 128,
> +               .name = "N25Q64",
> +       },
> +       {
>                 .id = 0xba18,
>                 .pages_per_sector = 256,
>                 .nr_sectors = 256,
> --
> 1.7.0.4
>
>
This part is made by Micron, ST doesn't sell flash and Numonyx doesn't
exist anymore.  Is this really the right place?



> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
>

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

* [U-Boot] [PATCH 1/2] sf: stmicro: Add support for N25Q64
  2013-01-23 13:43 ` [U-Boot] [PATCH 1/2] sf: stmicro: Add support for N25Q64 Andrew Dyer
@ 2013-01-23 14:08   ` Jagannadha Sutradharudu Teki
  0 siblings, 0 replies; 4+ messages in thread
From: Jagannadha Sutradharudu Teki @ 2013-01-23 14:08 UTC (permalink / raw)
  To: u-boot

Hi Andrew,

For Stmicro and Numonyx have same manufacture Id (0x20).

Recently they is support added to identify both the flashes in same file stmicro.c
http://git.denx.de/cgi-bin/gitweb.cgi?p=u-boot.git;a=commitdiff;h=63ff6a66aef4d838fa6e3737d3e242697c0a591d

Thanks,
Jagan.

From: Andrew Dyer [mailto:amdyer at gmail.com]
Sent: 23 January 2013 19:13
To: Michal Simek
Cc: u-boot at lists.denx.de; Jagannadha Sutradharudu Teki
Subject: Re: [U-Boot] [PATCH 1/2] sf: stmicro: Add support for N25Q64

On Wed, Jan 23, 2013 at 6:58 AM, Michal Simek <michal.simek at xilinx.com<mailto:michal.simek@xilinx.com>> wrote:
From: Jagannadha Sutradharudu Teki <jagannadha.sutradharudu-teki at xilinx.com<mailto:jagannadha.sutradharudu-teki@xilinx.com>>

Add support for Numonyx N25Q064 SPI flash.

Signed-off-by: Jagannadha Sutradharudu Teki <jaganna at xilinx.com<mailto:jaganna@xilinx.com>>
Signed-off-by: Michal Simek <michal.simek at xilinx.com<mailto:michal.simek@xilinx.com>>
---
 drivers/mtd/spi/stmicro.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/drivers/mtd/spi/stmicro.c b/drivers/mtd/spi/stmicro.c
index 30b626a..96403ee 100644
--- a/drivers/mtd/spi/stmicro.c
+++ b/drivers/mtd/spi/stmicro.c
@@ -93,6 +93,12 @@ static const struct stmicro_spi_flash_params stmicro_spi_flash_table[] = {
                .name = "M25P128",
        },
        {
+               .id = 0xba17,
+               .pages_per_sector = 256,
+               .nr_sectors = 128,
+               .name = "N25Q64",
+       },
+       {
                .id = 0xba18,
                .pages_per_sector = 256,
                .nr_sectors = 256,
--
1.7.0.4

This part is made by Micron, ST doesn't sell flash and Numonyx doesn't exist anymore.  Is this really the right place?

_______________________________________________
U-Boot mailing list
U-Boot at lists.denx.de<mailto:U-Boot@lists.denx.de>
http://lists.denx.de/mailman/listinfo/u-boot



This email and any attachments are intended for the sole use of the named recipient(s) and contain(s) confidential information that may be proprietary, privileged or copyrighted under applicable law. If you are not the intended recipient, do not read, copy, or forward this email message or any attachments. Delete this email message and any attachments immediately.

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

end of thread, other threads:[~2013-01-23 14:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-01-23 12:58 [U-Boot] [PATCH 1/2] sf: stmicro: Add support for N25Q64 Michal Simek
2013-01-23 12:58 ` [U-Boot] [PATCH 2/2] sf: stmicro: Add support for N25Q64A Michal Simek
2013-01-23 13:43 ` [U-Boot] [PATCH 1/2] sf: stmicro: Add support for N25Q64 Andrew Dyer
2013-01-23 14:08   ` Jagannadha Sutradharudu Teki

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.