[PATCH 8/8] omap3: GPMC register definition at common location

2010-04-13 Thread Sukumar Ghorai
GPMC register definition move to common place in gpmc.h.

Signed-off-by: Sukumar Ghorai s-gho...@ti.com
Signed-off-by: Vimal Singh vimalsi...@ti.com
---
 arch/arm/mach-omap2/gpmc.c |   38 +--
 arch/arm/plat-omap/include/plat/gpmc.h |   36 +++--
 drivers/mtd/nand/omap2.c   |   14 ---
 3 files changed, 40 insertions(+), 48 deletions(-)

diff --git a/arch/arm/mach-omap2/gpmc.c b/arch/arm/mach-omap2/gpmc.c
index 5bc3ca0..9c77af0 100644
--- a/arch/arm/mach-omap2/gpmc.c
+++ b/arch/arm/mach-omap2/gpmc.c
@@ -28,40 +28,6 @@
 
 #include plat/sdrc.h
 
-/* GPMC register offsets */
-#define GPMC_REVISION  0x00
-#define GPMC_SYSCONFIG 0x10
-#define GPMC_SYSSTATUS 0x14
-#define GPMC_IRQSTATUS 0x18
-#define GPMC_IRQENABLE 0x1c
-#define GPMC_TIMEOUT_CONTROL   0x40
-#define GPMC_ERR_ADDRESS   0x44
-#define GPMC_ERR_TYPE  0x48
-#define GPMC_CONFIG0x50
-#define GPMC_STATUS0x54
-#define GPMC_PREFETCH_CONFIG1  0x1e0
-#define GPMC_PREFETCH_CONFIG2  0x1e4
-#define GPMC_PREFETCH_CONTROL  0x1ec
-#define GPMC_PREFETCH_STATUS   0x1f0
-#define GPMC_ECC_CONFIG0x1f4
-#define GPMC_ECC_CONTROL   0x1f8
-#define GPMC_ECC_SIZE_CONFIG   0x1fc
-
-#define GPMC_CS0   0x60
-#define GPMC_CS_SIZE   0x30
-
-#define GPMC_MEM_START 0x
-#define GPMC_MEM_END   0x3FFF
-#define BOOT_ROM_SPACE 0x10/* 1MB */
-
-#define GPMC_CHUNK_SHIFT   24  /* 16 MB */
-#define GPMC_SECTION_SHIFT 28  /* 128 MB */
-
-#define PREFETCH_FIFOTHRESHOLD (0x40  8)
-#define CS_NUM_SHIFT   24
-#define ENABLE_PREFETCH(0x1  7)
-#define DMA_MPU_MODE   2
-
 /* Structure to save gpmc cs context */
 struct gpmc_cs_config {
u32 config1;
@@ -112,7 +78,7 @@ void gpmc_cs_write_reg(int cs, int idx, u32 val)
 {
void __iomem *reg_addr;
 
-   reg_addr = gpmc_base + GPMC_CS0 + (cs * GPMC_CS_SIZE) + idx;
+   reg_addr = gpmc_base + GPMC_CS0_BASE + (cs * GPMC_CS_SIZE) + idx;
__raw_writel(val, reg_addr);
 }
 
@@ -120,7 +86,7 @@ u32 gpmc_cs_read_reg(int cs, int idx)
 {
void __iomem *reg_addr;
 
-   reg_addr = gpmc_base + GPMC_CS0 + (cs * GPMC_CS_SIZE) + idx;
+   reg_addr = gpmc_base + GPMC_CS0_BASE + (cs * GPMC_CS_SIZE) + idx;
return __raw_readl(reg_addr);
 }
 
diff --git a/arch/arm/plat-omap/include/plat/gpmc.h 
b/arch/arm/plat-omap/include/plat/gpmc.h
index 145838a..347d212 100644
--- a/arch/arm/plat-omap/include/plat/gpmc.h
+++ b/arch/arm/plat-omap/include/plat/gpmc.h
@@ -25,10 +25,40 @@
 #define GPMC_CS_NAND_ADDRESS   0x20
 #define GPMC_CS_NAND_DATA  0x24
 
-#define GPMC_CONFIG0x50
-#define GPMC_STATUS0x54
+/* GPMC register offsets */
+#define GPMC_REVISION   0x00
+#define GPMC_SYSCONFIG  0x10
+#define GPMC_SYSSTATUS  0x14
+#define GPMC_IRQSTATUS  0x18
+#define GPMC_IRQENABLE  0x1c
+#define GPMC_TIMEOUT_CONTROL0x40
+#define GPMC_ERR_ADDRESS0x44
+#define GPMC_ERR_TYPE   0x48
+#define GPMC_CONFIG 0x50
+#define GPMC_STATUS 0x54
+#define GPMC_PREFETCH_CONFIG1   0x1e0
+#define GPMC_PREFETCH_CONFIG2   0x1e4
+#define GPMC_PREFETCH_CONTROL   0x1ec
+#define GPMC_PREFETCH_STATUS0x1f0
+#define GPMC_ECC_CONFIG 0x1f4
+#define GPMC_ECC_CONTROL0x1f8
+#define GPMC_ECC_SIZE_CONFIG0x1fc
+#define GPMC_ECC1_RESULT0x200
+
 #define GPMC_CS0_BASE  0x60
-#define GPMC_CS_SIZE   0x30
+#define GPMC_CS_SIZE0x30
+
+#define GPMC_MEM_START  0x
+#define GPMC_MEM_END0x3FFF
+#define BOOT_ROM_SPACE  0x10/* 1MB */
+
+#define GPMC_CHUNK_SHIFT24  /* 16 MB */
+#define GPMC_SECTION_SHIFT  28  /* 128 MB */
+
+#define PREFETCH_FIFOTHRESHOLD  (0x40  8)
+#define CS_NUM_SHIFT24
+#define ENABLE_PREFETCH (0x1  7)
+#define DMA_MPU_MODE2
 
 #define GPMC_CONFIG1_WRAPBURST_SUPP (1  31)
 #define GPMC_CONFIG1_READMULTIPLE_SUPP  (1  30)
diff --git a/drivers/mtd/nand/omap2.c b/drivers/mtd/nand/omap2.c
index 26aec00..ceb3877 100644
--- a/drivers/mtd/nand/omap2.c
+++ b/drivers/mtd/nand/omap2.c
@@ -22,12 +22,6 @@
 #include plat/gpmc.h
 #include plat/nand.h
 
-#define GPMC_IRQ_STATUS0x18
-#define GPMC_ECC_CONFIG0x1F4
-#define GPMC_ECC_CONTROL   0x1F8
-#define GPMC_ECC_SIZE_CONFIG   0x1FC
-#define GPMC_ECC1_RESULT   0x200
-
 #defineDRIVER_NAME omap2-nand
 
 #defineNAND_WP_OFF 0
@@ -36,6 +30,7 @@
 #defineGPMC_BUF_FULL   0x0001
 #defineGPMC_BUF_EMPTY  0x
 
+#ifdef CONFIG_MTD_NAND_OMAP_HWECC
 #define NAND_Ecc_P1e   (1  0)
 #define NAND_Ecc_P2e   (1  1)
 #define NAND_Ecc_P4e   (1  2)
@@ -102,6 

Recall: [PATCH 8/8] omap3: GPMC register definition at common location

2010-04-13 Thread Ghorai, Sukumar
Ghorai, Sukumar would like to recall the message, [PATCH 8/8] omap3: GPMC 
register definition at common location.--
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