Re: [PATCH 2/2]: Introducing 'gpmc-nand.c' for GPMC specific NAND init

2009-12-13 Thread Vimal Singh
 Any news on posting the updated version of this? Would be nice to
 get it in this merge window, so time's running out :)

 When re-posting, please also cc linux-arm-ker...@lists.infradead.org
 in addition to linux-omap list. That way we can have it quickly
 reviewed there too.


Sorry for replying late. Last week I was on vacation.
I will drop new version of this patch today.

-- 
Regards,
Vimal Singh
--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 2/2]: Introducing 'gpmc-nand.c' for GPMC specific NAND init

2009-12-08 Thread Tony Lindgren
* Tony Lindgren t...@atomide.com [091207 09:56]:
 * Vimal Singh vimal.neww...@gmail.com [091207 05:28]:
  On Mon, Dec 7, 2009 at 11:59 AM, Vimal Singh vimal.neww...@gmail.com 
  wrote:
   On Sat, Dec 5, 2009 at 3:31 AM, Tony Lindgren t...@atomide.com wrote:
   Hi,
  
   Looks good, just one comment below.
  
   * Govindraj.R govindraj.r...@ti.com [091204 05:37]:
   From: Vimal Singh vimalsi...@ti.com
   Date: Wed, 25 Nov 2009 18:23:15 +0530
   Subject: [PATCH] Introducing 'gpmc-nand.c' for GPMC specific NAND init
  
   Introducing 'gpmc-nand.c' for GPMC specific NAND init.
   For example: GPMC timing parameters and all.
   This patch also migrates gpmc related calls from 'nand/omap2.c'
   to 'gpmc-nand.c'.
  
   Signed-off-by: Vimal Singh vimalsi...@ti.com
   ---
    arch/arm/mach-omap2/Makefile           |    3 +
    arch/arm/mach-omap2/gpmc-nand.c        |  141 
   
    arch/arm/plat-omap/include/plat/nand.h |    6 ++
    drivers/mtd/nand/omap2.c               |   26 +-
    4 files changed, 153 insertions(+), 23 deletions(-)
    create mode 100644 arch/arm/mach-omap2/gpmc-nand.c
  
   snip
  
   --- /dev/null
   +++ b/arch/arm/mach-omap2/gpmc-nand.c
  
   snip
  
   +int __init gpmc_nand_init(struct omap_nand_platform_data *_nand_data)
   +{
   +     unsigned int val;
   +     int err = 0;
   +     struct device *dev = gpmc_nand_device.dev;
   +
   +     gpmc_nand_data = _nand_data;
   +     gpmc_nand_data-nand_setup = gpmc_nand_setup;
   +     gpmc_nand_device.dev.platform_data = gpmc_nand_data;
   +
   +     err = gpmc_nand_setup(gpmc_nand_data-gpmc_cs_baseaddr);
   +     if (err  0) {
   +             dev_err(dev, NAND platform setup failed: %d\n, err);
   +             return err;
   +     }
   +
   +     /* Enable RD PIN Monitoring Reg */
   +     if (gpmc_nand_data-dev_ready) {
   +             val  = gpmc_cs_read_reg(gpmc_nand_data-cs,
   +                                              GPMC_CS_CONFIG1);
   +             val |= WR_RD_PIN_MONITORING;
   +             gpmc_cs_write_reg(gpmc_nand_data-cs,
   +                                             GPMC_CS_CONFIG1, val);
   +     }
  
   Above looks OK..
  
   +     val  = gpmc_cs_read_reg(gpmc_nand_data-cs, GPMC_CS_CONFIG7);
   +     val = ~(0xf  8);
   +     val |=  (0xc  0xf)  8;
   +     gpmc_cs_write_reg(gpmc_nand_data-cs, GPMC_CS_CONFIG7, val);
  
   ..but this looks messy. Maybe use some GPMC defines for the
   0xf  8 mask?
  
   Then the 0xc  0xf part looks a bit redundant, what's the 0xf
   there for?
  
   I know it's all from the old code, but might as well clean it up
   while at it :)
  
   Ok, I'll drop next version of this patch for this.
  
  
  In fact this peace of code is not required too. This will be taken
  care in 'gpmc_cs_request'.
  I will remove it.
 
 OK, cool.

Any news on posting the updated version of this? Would be nice to
get it in this merge window, so time's running out :)

When re-posting, please also cc linux-arm-ker...@lists.infradead.org
in addition to linux-omap list. That way we can have it quickly
reviewed there too.

Tony
--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 2/2]: Introducing 'gpmc-nand.c' for GPMC specific NAND init

2009-12-07 Thread Vimal Singh
On Mon, Dec 7, 2009 at 11:59 AM, Vimal Singh vimal.neww...@gmail.com wrote:
 On Sat, Dec 5, 2009 at 3:31 AM, Tony Lindgren t...@atomide.com wrote:
 Hi,

 Looks good, just one comment below.

 * Govindraj.R govindraj.r...@ti.com [091204 05:37]:
 From: Vimal Singh vimalsi...@ti.com
 Date: Wed, 25 Nov 2009 18:23:15 +0530
 Subject: [PATCH] Introducing 'gpmc-nand.c' for GPMC specific NAND init

 Introducing 'gpmc-nand.c' for GPMC specific NAND init.
 For example: GPMC timing parameters and all.
 This patch also migrates gpmc related calls from 'nand/omap2.c'
 to 'gpmc-nand.c'.

 Signed-off-by: Vimal Singh vimalsi...@ti.com
 ---
  arch/arm/mach-omap2/Makefile           |    3 +
  arch/arm/mach-omap2/gpmc-nand.c        |  141 
 
  arch/arm/plat-omap/include/plat/nand.h |    6 ++
  drivers/mtd/nand/omap2.c               |   26 +-
  4 files changed, 153 insertions(+), 23 deletions(-)
  create mode 100644 arch/arm/mach-omap2/gpmc-nand.c

 snip

 --- /dev/null
 +++ b/arch/arm/mach-omap2/gpmc-nand.c

 snip

 +int __init gpmc_nand_init(struct omap_nand_platform_data *_nand_data)
 +{
 +     unsigned int val;
 +     int err = 0;
 +     struct device *dev = gpmc_nand_device.dev;
 +
 +     gpmc_nand_data = _nand_data;
 +     gpmc_nand_data-nand_setup = gpmc_nand_setup;
 +     gpmc_nand_device.dev.platform_data = gpmc_nand_data;
 +
 +     err = gpmc_nand_setup(gpmc_nand_data-gpmc_cs_baseaddr);
 +     if (err  0) {
 +             dev_err(dev, NAND platform setup failed: %d\n, err);
 +             return err;
 +     }
 +
 +     /* Enable RD PIN Monitoring Reg */
 +     if (gpmc_nand_data-dev_ready) {
 +             val  = gpmc_cs_read_reg(gpmc_nand_data-cs,
 +                                              GPMC_CS_CONFIG1);
 +             val |= WR_RD_PIN_MONITORING;
 +             gpmc_cs_write_reg(gpmc_nand_data-cs,
 +                                             GPMC_CS_CONFIG1, val);
 +     }

 Above looks OK..

 +     val  = gpmc_cs_read_reg(gpmc_nand_data-cs, GPMC_CS_CONFIG7);
 +     val = ~(0xf  8);
 +     val |=  (0xc  0xf)  8;
 +     gpmc_cs_write_reg(gpmc_nand_data-cs, GPMC_CS_CONFIG7, val);

 ..but this looks messy. Maybe use some GPMC defines for the
 0xf  8 mask?

 Then the 0xc  0xf part looks a bit redundant, what's the 0xf
 there for?

 I know it's all from the old code, but might as well clean it up
 while at it :)

 Ok, I'll drop next version of this patch for this.


In fact this peace of code is not required too. This will be taken
care in 'gpmc_cs_request'.
I will remove it.


-- 
Regards,
Vimal Singh
--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 2/2]: Introducing 'gpmc-nand.c' for GPMC specific NAND init

2009-12-07 Thread Tony Lindgren
* Vimal Singh vimal.neww...@gmail.com [091207 05:28]:
 On Mon, Dec 7, 2009 at 11:59 AM, Vimal Singh vimal.neww...@gmail.com wrote:
  On Sat, Dec 5, 2009 at 3:31 AM, Tony Lindgren t...@atomide.com wrote:
  Hi,
 
  Looks good, just one comment below.
 
  * Govindraj.R govindraj.r...@ti.com [091204 05:37]:
  From: Vimal Singh vimalsi...@ti.com
  Date: Wed, 25 Nov 2009 18:23:15 +0530
  Subject: [PATCH] Introducing 'gpmc-nand.c' for GPMC specific NAND init
 
  Introducing 'gpmc-nand.c' for GPMC specific NAND init.
  For example: GPMC timing parameters and all.
  This patch also migrates gpmc related calls from 'nand/omap2.c'
  to 'gpmc-nand.c'.
 
  Signed-off-by: Vimal Singh vimalsi...@ti.com
  ---
   arch/arm/mach-omap2/Makefile           |    3 +
   arch/arm/mach-omap2/gpmc-nand.c        |  141 
  
   arch/arm/plat-omap/include/plat/nand.h |    6 ++
   drivers/mtd/nand/omap2.c               |   26 +-
   4 files changed, 153 insertions(+), 23 deletions(-)
   create mode 100644 arch/arm/mach-omap2/gpmc-nand.c
 
  snip
 
  --- /dev/null
  +++ b/arch/arm/mach-omap2/gpmc-nand.c
 
  snip
 
  +int __init gpmc_nand_init(struct omap_nand_platform_data *_nand_data)
  +{
  +     unsigned int val;
  +     int err = 0;
  +     struct device *dev = gpmc_nand_device.dev;
  +
  +     gpmc_nand_data = _nand_data;
  +     gpmc_nand_data-nand_setup = gpmc_nand_setup;
  +     gpmc_nand_device.dev.platform_data = gpmc_nand_data;
  +
  +     err = gpmc_nand_setup(gpmc_nand_data-gpmc_cs_baseaddr);
  +     if (err  0) {
  +             dev_err(dev, NAND platform setup failed: %d\n, err);
  +             return err;
  +     }
  +
  +     /* Enable RD PIN Monitoring Reg */
  +     if (gpmc_nand_data-dev_ready) {
  +             val  = gpmc_cs_read_reg(gpmc_nand_data-cs,
  +                                              GPMC_CS_CONFIG1);
  +             val |= WR_RD_PIN_MONITORING;
  +             gpmc_cs_write_reg(gpmc_nand_data-cs,
  +                                             GPMC_CS_CONFIG1, val);
  +     }
 
  Above looks OK..
 
  +     val  = gpmc_cs_read_reg(gpmc_nand_data-cs, GPMC_CS_CONFIG7);
  +     val = ~(0xf  8);
  +     val |=  (0xc  0xf)  8;
  +     gpmc_cs_write_reg(gpmc_nand_data-cs, GPMC_CS_CONFIG7, val);
 
  ..but this looks messy. Maybe use some GPMC defines for the
  0xf  8 mask?
 
  Then the 0xc  0xf part looks a bit redundant, what's the 0xf
  there for?
 
  I know it's all from the old code, but might as well clean it up
  while at it :)
 
  Ok, I'll drop next version of this patch for this.
 
 
 In fact this peace of code is not required too. This will be taken
 care in 'gpmc_cs_request'.
 I will remove it.

OK, cool.

Tony
--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 2/2]: Introducing 'gpmc-nand.c' for GPMC specific NAND init

2009-12-06 Thread Vimal Singh
On Sat, Dec 5, 2009 at 3:31 AM, Tony Lindgren t...@atomide.com wrote:
 Hi,

 Looks good, just one comment below.

 * Govindraj.R govindraj.r...@ti.com [091204 05:37]:
 From: Vimal Singh vimalsi...@ti.com
 Date: Wed, 25 Nov 2009 18:23:15 +0530
 Subject: [PATCH] Introducing 'gpmc-nand.c' for GPMC specific NAND init

 Introducing 'gpmc-nand.c' for GPMC specific NAND init.
 For example: GPMC timing parameters and all.
 This patch also migrates gpmc related calls from 'nand/omap2.c'
 to 'gpmc-nand.c'.

 Signed-off-by: Vimal Singh vimalsi...@ti.com
 ---
  arch/arm/mach-omap2/Makefile           |    3 +
  arch/arm/mach-omap2/gpmc-nand.c        |  141 
 
  arch/arm/plat-omap/include/plat/nand.h |    6 ++
  drivers/mtd/nand/omap2.c               |   26 +-
  4 files changed, 153 insertions(+), 23 deletions(-)
  create mode 100644 arch/arm/mach-omap2/gpmc-nand.c

 snip

 --- /dev/null
 +++ b/arch/arm/mach-omap2/gpmc-nand.c

 snip

 +int __init gpmc_nand_init(struct omap_nand_platform_data *_nand_data)
 +{
 +     unsigned int val;
 +     int err = 0;
 +     struct device *dev = gpmc_nand_device.dev;
 +
 +     gpmc_nand_data = _nand_data;
 +     gpmc_nand_data-nand_setup = gpmc_nand_setup;
 +     gpmc_nand_device.dev.platform_data = gpmc_nand_data;
 +
 +     err = gpmc_nand_setup(gpmc_nand_data-gpmc_cs_baseaddr);
 +     if (err  0) {
 +             dev_err(dev, NAND platform setup failed: %d\n, err);
 +             return err;
 +     }
 +
 +     /* Enable RD PIN Monitoring Reg */
 +     if (gpmc_nand_data-dev_ready) {
 +             val  = gpmc_cs_read_reg(gpmc_nand_data-cs,
 +                                              GPMC_CS_CONFIG1);
 +             val |= WR_RD_PIN_MONITORING;
 +             gpmc_cs_write_reg(gpmc_nand_data-cs,
 +                                             GPMC_CS_CONFIG1, val);
 +     }

 Above looks OK..

 +     val  = gpmc_cs_read_reg(gpmc_nand_data-cs, GPMC_CS_CONFIG7);
 +     val = ~(0xf  8);
 +     val |=  (0xc  0xf)  8;
 +     gpmc_cs_write_reg(gpmc_nand_data-cs, GPMC_CS_CONFIG7, val);

 ..but this looks messy. Maybe use some GPMC defines for the
 0xf  8 mask?

 Then the 0xc  0xf part looks a bit redundant, what's the 0xf
 there for?

 I know it's all from the old code, but might as well clean it up
 while at it :)

Ok, I'll drop next version of this patch for this.


-- 
Regards,
Vimal Singh
--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 2/2]: Introducing 'gpmc-nand.c' for GPMC specific NAND init

2009-12-04 Thread Vimal Singh
Hi all,

Please ignore previous patch, it has a compilation error.
Correct patch is present below.

-vimal

From e024a2e6aa2051259ad904daff13bdac73b3b1b8 Mon Sep 17 00:00:00 2001
From: Vimal Singh vimalsi...@ti.com
Date: Wed, 25 Nov 2009 18:23:15 +0530
Subject: [PATCH] Introducing 'gpmc-nand.c' for GPMC specific NAND init

Introducing 'gpmc-nand.c' for GPMC specific NAND init.
For example: GPMC timing parameters and all.
This patch also migrates gpmc related calls from 'nand/omap2.c'
to 'gpmc-nand.c'.

Signed-off-by: Vimal Singh vimalsi...@ti.com
---
 arch/arm/mach-omap2/Makefile   |3 +
 arch/arm/mach-omap2/gpmc-nand.c|  142 
 arch/arm/plat-omap/include/plat/nand.h |6 ++
 drivers/mtd/nand/omap2.c   |   26 +-
 4 files changed, 154 insertions(+), 23 deletions(-)
 create mode 100644 arch/arm/mach-omap2/gpmc-nand.c

diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile
index 59b0ccc..0dfe27a 100644
--- a/arch/arm/mach-omap2/Makefile
+++ b/arch/arm/mach-omap2/Makefile
@@ -103,5 +103,8 @@ obj-y   += usb-ehci.o
 onenand-$(CONFIG_MTD_ONENAND_OMAP2):= gpmc-onenand.o
 obj-y  += $(onenand-m) $(onenand-y)

+nand-$(CONFIG_MTD_NAND_OMAP2)  := gpmc-nand.o
+obj-y  += $(nand-m) $(nand-y)
+
 smc91x-$(CONFIG_SMC91X):= gpmc-smc91x.o
 obj-y  += $(smc91x-m) $(smc91x-y)
diff --git a/arch/arm/mach-omap2/gpmc-nand.c b/arch/arm/mach-omap2/gpmc-nand.c
new file mode 100644
index 000..0621e39
--- /dev/null
+++ b/arch/arm/mach-omap2/gpmc-nand.c
@@ -0,0 +1,142 @@
+/*
+ * gpmc-nand.c
+ *
+ * Copyright (C) 2009 Texas Instruments
+ * Vimal Singh vimalsi...@ti.com
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+
+#include linux/kernel.h
+#include linux/platform_device.h
+#include linux/io.h
+
+#include asm/mach/flash.h
+
+#include plat/nand.h
+#include plat/board.h
+#include plat/gpmc.h
+
+#define WR_RD_PIN_MONITORING   0x0060
+
+static struct omap_nand_platform_data *gpmc_nand_data;
+
+static struct resource gpmc_nand_resource = {
+   .flags  = IORESOURCE_MEM,
+};
+
+static struct platform_device gpmc_nand_device = {
+   .name   = omap2-nand,
+   .id = 0,
+   .num_resources  = 1,
+   .resource   = gpmc_nand_resource,
+};
+
+static int omap2_nand_gpmc_config(int cs, void __iomem *nand_base)
+{
+   struct gpmc_timings t;
+   int err;
+
+   const int cs_rd_off = 36;
+   const int cs_wr_off = 36;
+   const int adv_on = 6;
+   const int adv_rd_off = 24;
+   const int adv_wr_off = 36;
+   const int oe_off = 48;
+   const int we_off = 30;
+   const int rd_cycle = 72;
+   const int wr_cycle = 72;
+   const int access = 54;
+   const int wr_data_mux_bus = 8;
+   const int wr_access = 30;
+
+   memset(t, 0, sizeof(t));
+   t.sync_clk = 0;
+   t.cs_on = 0;
+   t.adv_on = gpmc_round_ns_to_ticks(adv_on);
+
+   /* Read */
+   t.adv_rd_off = gpmc_round_ns_to_ticks(adv_rd_off);
+   t.oe_on  = t.adv_on;
+   t.access = gpmc_round_ns_to_ticks(access);
+   t.oe_off = gpmc_round_ns_to_ticks(oe_off);
+   t.cs_rd_off = gpmc_round_ns_to_ticks(cs_rd_off);
+   t.rd_cycle  = gpmc_round_ns_to_ticks(rd_cycle);
+
+   /* Write */
+   t.adv_wr_off = gpmc_round_ns_to_ticks(adv_wr_off);
+   t.we_on  = t.oe_on;
+   if (cpu_is_omap34xx()) {
+   t.wr_data_mux_bus = gpmc_round_ns_to_ticks(wr_data_mux_bus);
+   t.wr_access = gpmc_round_ns_to_ticks(wr_access);
+   }
+   t.we_off = gpmc_round_ns_to_ticks(we_off);
+   t.cs_wr_off = gpmc_round_ns_to_ticks(cs_wr_off);
+   t.wr_cycle  = gpmc_round_ns_to_ticks(wr_cycle);
+
+   /* Configure GPMC */
+   gpmc_cs_write_reg(cs, GPMC_CS_CONFIG1,
+   GPMC_CONFIG1_DEVICESIZE(gpmc_nand_data-devsize) |
+   GPMC_CONFIG1_DEVICETYPE_NAND);
+
+   err = gpmc_cs_set_timings(cs, t);
+   if (err)
+   return err;
+
+   return 0;
+}
+
+static int gpmc_nand_setup(void __iomem *nand_base)
+{
+   struct device *dev = gpmc_nand_device.dev;
+
+   /* Set timings in GPMC */
+   if (omap2_nand_gpmc_config(gpmc_nand_data-cs, nand_base)  0) {
+   dev_err(dev, Unable to set gpmc timings\n);
+   return -EINVAL;
+   }
+
+   return 0;
+}
+
+int __init gpmc_nand_init(struct omap_nand_platform_data *_nand_data)
+{
+   unsigned int val;
+   int err = 0;
+   struct device *dev = gpmc_nand_device.dev;
+
+   gpmc_nand_data = _nand_data;
+   gpmc_nand_data-nand_setup = gpmc_nand_setup;
+   

Re: [PATCH 2/2]: Introducing 'gpmc-nand.c' for GPMC specific NAND init

2009-12-04 Thread Vimal Singh
Ahh.. this is my bad.

[...]
 +       err = gpmc_nand_setup((void __iomem *)
 +                                       gpmc_nand_data-gpmc_cs_baseaddr);
we just do not need casting here.

Apologies for making noise and confusion.
Please take this one.

-vimal

From e024a2e6aa2051259ad904daff13bdac73b3b1b8 Mon Sep 17 00:00:00 2001
From: Vimal Singh vimalsi...@ti.com
Date: Wed, 25 Nov 2009 18:23:15 +0530
Subject: [PATCH] Introducing 'gpmc-nand.c' for GPMC specific NAND init

Introducing 'gpmc-nand.c' for GPMC specific NAND init.
For example: GPMC timing parameters and all.
This patch also migrates gpmc related calls from 'nand/omap2.c'
to 'gpmc-nand.c'.

Signed-off-by: Vimal Singh vimalsi...@ti.com
---
 arch/arm/mach-omap2/Makefile   |3 +
 arch/arm/mach-omap2/gpmc-nand.c|  141 
 arch/arm/plat-omap/include/plat/nand.h |6 ++
 drivers/mtd/nand/omap2.c   |   26 +-
 4 files changed, 153 insertions(+), 23 deletions(-)
 create mode 100644 arch/arm/mach-omap2/gpmc-nand.c

diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile
index 59b0ccc..0dfe27a 100644
--- a/arch/arm/mach-omap2/Makefile
+++ b/arch/arm/mach-omap2/Makefile
@@ -103,5 +103,8 @@ obj-y   += usb-ehci.o
 onenand-$(CONFIG_MTD_ONENAND_OMAP2):= gpmc-onenand.o
 obj-y  += $(onenand-m) $(onenand-y)

+nand-$(CONFIG_MTD_NAND_OMAP2)  := gpmc-nand.o
+obj-y  += $(nand-m) $(nand-y)
+
 smc91x-$(CONFIG_SMC91X):= gpmc-smc91x.o
 obj-y  += $(smc91x-m) $(smc91x-y)
diff --git a/arch/arm/mach-omap2/gpmc-nand.c b/arch/arm/mach-omap2/gpmc-nand.c
new file mode 100644
index 000..0621e39
--- /dev/null
+++ b/arch/arm/mach-omap2/gpmc-nand.c
@@ -0,0 +1,141 @@
+/*
+ * gpmc-nand.c
+ *
+ * Copyright (C) 2009 Texas Instruments
+ * Vimal Singh vimalsi...@ti.com
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+
+#include linux/kernel.h
+#include linux/platform_device.h
+#include linux/io.h
+
+#include asm/mach/flash.h
+
+#include plat/nand.h
+#include plat/board.h
+#include plat/gpmc.h
+
+#define WR_RD_PIN_MONITORING   0x0060
+
+static struct omap_nand_platform_data *gpmc_nand_data;
+
+static struct resource gpmc_nand_resource = {
+   .flags  = IORESOURCE_MEM,
+};
+
+static struct platform_device gpmc_nand_device = {
+   .name   = omap2-nand,
+   .id = 0,
+   .num_resources  = 1,
+   .resource   = gpmc_nand_resource,
+};
+
+static int omap2_nand_gpmc_config(int cs, void __iomem *nand_base)
+{
+   struct gpmc_timings t;
+   int err;
+
+   const int cs_rd_off = 36;
+   const int cs_wr_off = 36;
+   const int adv_on = 6;
+   const int adv_rd_off = 24;
+   const int adv_wr_off = 36;
+   const int oe_off = 48;
+   const int we_off = 30;
+   const int rd_cycle = 72;
+   const int wr_cycle = 72;
+   const int access = 54;
+   const int wr_data_mux_bus = 8;
+   const int wr_access = 30;
+
+   memset(t, 0, sizeof(t));
+   t.sync_clk = 0;
+   t.cs_on = 0;
+   t.adv_on = gpmc_round_ns_to_ticks(adv_on);
+
+   /* Read */
+   t.adv_rd_off = gpmc_round_ns_to_ticks(adv_rd_off);
+   t.oe_on  = t.adv_on;
+   t.access = gpmc_round_ns_to_ticks(access);
+   t.oe_off = gpmc_round_ns_to_ticks(oe_off);
+   t.cs_rd_off = gpmc_round_ns_to_ticks(cs_rd_off);
+   t.rd_cycle  = gpmc_round_ns_to_ticks(rd_cycle);
+
+   /* Write */
+   t.adv_wr_off = gpmc_round_ns_to_ticks(adv_wr_off);
+   t.we_on  = t.oe_on;
+   if (cpu_is_omap34xx()) {
+   t.wr_data_mux_bus = gpmc_round_ns_to_ticks(wr_data_mux_bus);
+   t.wr_access = gpmc_round_ns_to_ticks(wr_access);
+   }
+   t.we_off = gpmc_round_ns_to_ticks(we_off);
+   t.cs_wr_off = gpmc_round_ns_to_ticks(cs_wr_off);
+   t.wr_cycle  = gpmc_round_ns_to_ticks(wr_cycle);
+
+   /* Configure GPMC */
+   gpmc_cs_write_reg(cs, GPMC_CS_CONFIG1,
+   GPMC_CONFIG1_DEVICESIZE(gpmc_nand_data-devsize) |
+   GPMC_CONFIG1_DEVICETYPE_NAND);
+
+   err = gpmc_cs_set_timings(cs, t);
+   if (err)
+   return err;
+
+   return 0;
+}
+
+static int gpmc_nand_setup(void __iomem *nand_base)
+{
+   struct device *dev = gpmc_nand_device.dev;
+
+   /* Set timings in GPMC */
+   if (omap2_nand_gpmc_config(gpmc_nand_data-cs, nand_base)  0) {
+   dev_err(dev, Unable to set gpmc timings\n);
+   return -EINVAL;
+   }
+
+   return 0;
+}
+
+int __init gpmc_nand_init(struct omap_nand_platform_data *_nand_data)
+{
+   unsigned int val;
+   int err = 0;
+   struct device *dev = 

Re: [PATCH 2/2]: Introducing 'gpmc-nand.c' for GPMC specific NAND init

2009-12-04 Thread Govindraj
This patch got line wrapped.

-- 
---
Regards,
Govindraj.R


On Fri, Dec 4, 2009 at 6:44 PM, Vimal Singh vimal.neww...@gmail.com wrote:
 Ahh.. this is my bad.

 [...]
 +       err = gpmc_nand_setup((void __iomem *)
 +                                       gpmc_nand_data-gpmc_cs_baseaddr);
 we just do not need casting here.

 Apologies for making noise and confusion.
 Please take this one.

 -vimal

 From e024a2e6aa2051259ad904daff13bdac73b3b1b8 Mon Sep 17 00:00:00 2001
 From: Vimal Singh vimalsi...@ti.com
 Date: Wed, 25 Nov 2009 18:23:15 +0530
 Subject: [PATCH] Introducing 'gpmc-nand.c' for GPMC specific NAND init

 Introducing 'gpmc-nand.c' for GPMC specific NAND init.
 For example: GPMC timing parameters and all.
 This patch also migrates gpmc related calls from 'nand/omap2.c'
 to 'gpmc-nand.c'.

 Signed-off-by: Vimal Singh vimalsi...@ti.com
 ---
  arch/arm/mach-omap2/Makefile           |    3 +
  arch/arm/mach-omap2/gpmc-nand.c        |  141 
 
  arch/arm/plat-omap/include/plat/nand.h |    6 ++
  drivers/mtd/nand/omap2.c               |   26 +-
  4 files changed, 153 insertions(+), 23 deletions(-)
  create mode 100644 arch/arm/mach-omap2/gpmc-nand.c

 diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile
 index 59b0ccc..0dfe27a 100644
 --- a/arch/arm/mach-omap2/Makefile
 +++ b/arch/arm/mach-omap2/Makefile
 @@ -103,5 +103,8 @@ obj-y                                       += usb-ehci.o
  onenand-$(CONFIG_MTD_ONENAND_OMAP2)    := gpmc-onenand.o
  obj-y                                  += $(onenand-m) $(onenand-y)

 +nand-$(CONFIG_MTD_NAND_OMAP2)          := gpmc-nand.o
 +obj-y                                  += $(nand-m) $(nand-y)
 +
  smc91x-$(CONFIG_SMC91X)                        := gpmc-smc91x.o
  obj-y                                  += $(smc91x-m) $(smc91x-y)
 diff --git a/arch/arm/mach-omap2/gpmc-nand.c b/arch/arm/mach-omap2/gpmc-nand.c
 new file mode 100644
 index 000..0621e39
 --- /dev/null
 +++ b/arch/arm/mach-omap2/gpmc-nand.c
 @@ -0,0 +1,141 @@
 +/*
 + * gpmc-nand.c
 + *
 + * Copyright (C) 2009 Texas Instruments
 + * Vimal Singh vimalsi...@ti.com
 + *
 + * This program is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License version 2 as
 + * published by the Free Software Foundation.
 + */
 +
 +#include linux/kernel.h
 +#include linux/platform_device.h
 +#include linux/io.h
 +
 +#include asm/mach/flash.h
 +
 +#include plat/nand.h
 +#include plat/board.h
 +#include plat/gpmc.h
 +
 +#define WR_RD_PIN_MONITORING   0x0060
 +
 +static struct omap_nand_platform_data *gpmc_nand_data;
 +
 +static struct resource gpmc_nand_resource = {
 +       .flags          = IORESOURCE_MEM,
 +};
 +
 +static struct platform_device gpmc_nand_device = {
 +       .name           = omap2-nand,
 +       .id             = 0,
 +       .num_resources  = 1,
 +       .resource       = gpmc_nand_resource,
 +};
 +
 +static int omap2_nand_gpmc_config(int cs, void __iomem *nand_base)
 +{
 +       struct gpmc_timings t;
 +       int err;
 +
 +       const int cs_rd_off = 36;
 +       const int cs_wr_off = 36;
 +       const int adv_on = 6;
 +       const int adv_rd_off = 24;
 +       const int adv_wr_off = 36;
 +       const int oe_off = 48;
 +       const int we_off = 30;
 +       const int rd_cycle = 72;
 +       const int wr_cycle = 72;
 +       const int access = 54;
 +       const int wr_data_mux_bus = 8;
 +       const int wr_access = 30;
 +
 +       memset(t, 0, sizeof(t));
 +       t.sync_clk = 0;
 +       t.cs_on = 0;
 +       t.adv_on = gpmc_round_ns_to_ticks(adv_on);
 +
 +       /* Read */
 +       t.adv_rd_off = gpmc_round_ns_to_ticks(adv_rd_off);
 +       t.oe_on  = t.adv_on;
 +       t.access = gpmc_round_ns_to_ticks(access);
 +       t.oe_off = gpmc_round_ns_to_ticks(oe_off);
 +       t.cs_rd_off = gpmc_round_ns_to_ticks(cs_rd_off);
 +       t.rd_cycle  = gpmc_round_ns_to_ticks(rd_cycle);
 +
 +       /* Write */
 +       t.adv_wr_off = gpmc_round_ns_to_ticks(adv_wr_off);
 +       t.we_on  = t.oe_on;
 +       if (cpu_is_omap34xx()) {
 +               t.wr_data_mux_bus = gpmc_round_ns_to_ticks(wr_data_mux_bus);
 +               t.wr_access = gpmc_round_ns_to_ticks(wr_access);
 +       }
 +       t.we_off = gpmc_round_ns_to_ticks(we_off);
 +       t.cs_wr_off = gpmc_round_ns_to_ticks(cs_wr_off);
 +       t.wr_cycle  = gpmc_round_ns_to_ticks(wr_cycle);
 +
 +       /* Configure GPMC */
 +       gpmc_cs_write_reg(cs, GPMC_CS_CONFIG1,
 +                       GPMC_CONFIG1_DEVICESIZE(gpmc_nand_data-devsize) |
 +                       GPMC_CONFIG1_DEVICETYPE_NAND);
 +
 +       err = gpmc_cs_set_timings(cs, t);
 +       if (err)
 +               return err;
 +
 +       return 0;
 +}
 +
 +static int gpmc_nand_setup(void __iomem *nand_base)
 +{
 +       struct device *dev = gpmc_nand_device.dev;
 +
 +       /* Set timings in GPMC */
 +       if (omap2_nand_gpmc_config(gpmc_nand_data-cs, nand_base)  0) {
 +    

Re: [PATCH 2/2]: Introducing 'gpmc-nand.c' for GPMC specific NAND init

2009-12-04 Thread Tony Lindgren
Hi,

Looks good, just one comment below.

* Govindraj.R govindraj.r...@ti.com [091204 05:37]:
 From: Vimal Singh vimalsi...@ti.com
 Date: Wed, 25 Nov 2009 18:23:15 +0530
 Subject: [PATCH] Introducing 'gpmc-nand.c' for GPMC specific NAND init
 
 Introducing 'gpmc-nand.c' for GPMC specific NAND init.
 For example: GPMC timing parameters and all.
 This patch also migrates gpmc related calls from 'nand/omap2.c'
 to 'gpmc-nand.c'.
 
 Signed-off-by: Vimal Singh vimalsi...@ti.com
 ---
  arch/arm/mach-omap2/Makefile   |3 +
  arch/arm/mach-omap2/gpmc-nand.c|  141 
 
  arch/arm/plat-omap/include/plat/nand.h |6 ++
  drivers/mtd/nand/omap2.c   |   26 +-
  4 files changed, 153 insertions(+), 23 deletions(-)
  create mode 100644 arch/arm/mach-omap2/gpmc-nand.c

snip
 
 --- /dev/null
 +++ b/arch/arm/mach-omap2/gpmc-nand.c

snip

 +int __init gpmc_nand_init(struct omap_nand_platform_data *_nand_data)
 +{
 + unsigned int val;
 + int err = 0;
 + struct device *dev = gpmc_nand_device.dev;
 +
 + gpmc_nand_data = _nand_data;
 + gpmc_nand_data-nand_setup = gpmc_nand_setup;
 + gpmc_nand_device.dev.platform_data = gpmc_nand_data;
 +
 + err = gpmc_nand_setup(gpmc_nand_data-gpmc_cs_baseaddr);
 + if (err  0) {
 + dev_err(dev, NAND platform setup failed: %d\n, err);
 + return err;
 + }
 +
 + /* Enable RD PIN Monitoring Reg */
 + if (gpmc_nand_data-dev_ready) {
 + val  = gpmc_cs_read_reg(gpmc_nand_data-cs,
 +  GPMC_CS_CONFIG1);
 + val |= WR_RD_PIN_MONITORING;
 + gpmc_cs_write_reg(gpmc_nand_data-cs,
 + GPMC_CS_CONFIG1, val);
 + }

Above looks OK..

 + val  = gpmc_cs_read_reg(gpmc_nand_data-cs, GPMC_CS_CONFIG7);
 + val = ~(0xf  8);
 + val |=  (0xc  0xf)  8;
 + gpmc_cs_write_reg(gpmc_nand_data-cs, GPMC_CS_CONFIG7, val);

..but this looks messy. Maybe use some GPMC defines for the
0xf  8 mask?

Then the 0xc  0xf part looks a bit redundant, what's the 0xf
there for?

I know it's all from the old code, but might as well clean it up
while at it :)

Regards,

Tony
--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html