davinci: Move the da830/omap-l137 #defines to header file
authorRajashekhara, Sudhakar <sudhakar.raj@ti.com>
Fri, 10 Jul 2009 06:08:31 +0000 (02:08 -0400)
committerKevin Hilman <khilman@deeprootsystems.com>
Wed, 26 Aug 2009 07:57:02 +0000 (10:57 +0300)
With the introduction of TI da850/omap-l138, some of the macros
defined for da830/omap-l137 will be needed in da850 source file.
So, move the common macros to da8xx.h header file.

Also, modify the macro names from DA830_... to DA8XX_.

Signed-off-by: Sudhakar Rajashekhara <sudhakar.raj@ti.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
arch/arm/mach-davinci/da830.c
arch/arm/mach-davinci/include/mach/da8xx.h

index ab4242869b66df950339f81f1f9b34b130633fc4..999f69c9372b4764956f844e5cf5f20f047ace98 100644 (file)
 #include "clock.h"
 #include "mux.h"
 
-#define DA830_PSC0_BASE                0x01c10000
-#define DA830_PLL0_BASE                0x01c11000
-#define DA830_JTAG_ID_REG      0x01c14018
-#define DA830_TIMER64P0_BASE   0x01c20000
-#define DA830_TIMER64P1_BASE   0x01c21000
-#define DA830_GPIO_BASE                0x01e26000
-#define DA830_PSC1_BASE                0x01e27000
-
 /* Offsets of the 8 compare registers on the da830 */
 #define DA830_CMP12_0          0x60
 #define DA830_CMP12_1          0x64
@@ -49,7 +41,7 @@
 
 static struct pll_data pll0_data = {
        .num            = 1,
-       .phys_base      = DA830_PLL0_BASE,
+       .phys_base      = DA8XX_PLL0_BASE,
        .flags          = PLL_HAS_PREDIV | PLL_HAS_POSTDIV,
 };
 
@@ -1174,8 +1166,8 @@ static struct map_desc da830_io_desc[] = {
 };
 
 static void __iomem *da830_psc_bases[] = {
-       IO_ADDRESS(DA830_PSC0_BASE),
-       IO_ADDRESS(DA830_PSC1_BASE),
+       IO_ADDRESS(DA8XX_PSC0_BASE),
+       IO_ADDRESS(DA8XX_PSC1_BASE),
 };
 
 /* Contents of JTAG ID register used to identify exact cpu type */
@@ -1191,14 +1183,14 @@ static struct davinci_id da830_ids[] = {
 
 static struct davinci_timer_instance da830_timer_instance[2] = {
        {
-               .base           = IO_ADDRESS(DA830_TIMER64P0_BASE),
+               .base           = IO_ADDRESS(DA8XX_TIMER64P0_BASE),
                .bottom_irq     = IRQ_DA8XX_TINT12_0,
                .top_irq        = IRQ_DA8XX_TINT34_0,
                .cmp_off        = DA830_CMP12_0,
                .cmp_irq        = IRQ_DA830_T12CMPINT0_0,
        },
        {
-               .base           = IO_ADDRESS(DA830_TIMER64P1_BASE),
+               .base           = IO_ADDRESS(DA8XX_TIMER64P1_BASE),
                .bottom_irq     = IRQ_DA8XX_TINT12_1,
                .top_irq        = IRQ_DA8XX_TINT34_1,
                .cmp_off        = DA830_CMP12_0,
@@ -1220,7 +1212,7 @@ static struct davinci_timer_info da830_timer_info = {
 static struct davinci_soc_info davinci_soc_info_da830 = {
        .io_desc                = da830_io_desc,
        .io_desc_num            = ARRAY_SIZE(da830_io_desc),
-       .jtag_id_base           = IO_ADDRESS(DA830_JTAG_ID_REG),
+       .jtag_id_base           = IO_ADDRESS(DA8XX_JTAG_ID_REG),
        .ids                    = da830_ids,
        .ids_num                = ARRAY_SIZE(da830_ids),
        .cpu_clks               = da830_clks,
@@ -1234,7 +1226,7 @@ static struct davinci_soc_info davinci_soc_info_da830 = {
        .intc_irq_prios         = da830_default_priorities,
        .intc_irq_num           = DA830_N_CP_INTC_IRQ,
        .timer_info             = &da830_timer_info,
-       .gpio_base              = IO_ADDRESS(DA830_GPIO_BASE),
+       .gpio_base              = IO_ADDRESS(DA8XX_GPIO_BASE),
        .gpio_num               = 128,
        .gpio_irq               = IRQ_DA8XX_GPIO0,
        .serial_dev             = &da8xx_serial_device,
index 084db271c7c4a462ee943f04fba82a7a93d6de2a..65b42431ddeceb84b31f70a8c5b0ddfe55bfa664 100644 (file)
 
 #define DA8XX_BOOT_CFG_BASE    (IO_PHYS + 0x14000)
 
+#define DA8XX_PSC0_BASE                0x01c10000
+#define DA8XX_PLL0_BASE                0x01c11000
+#define DA8XX_JTAG_ID_REG      0x01c14018
+#define DA8XX_TIMER64P0_BASE   0x01c20000
+#define DA8XX_TIMER64P1_BASE   0x01c21000
+#define DA8XX_GPIO_BASE                0x01e26000
+#define DA8XX_PSC1_BASE                0x01e27000
+
 void __init da830_init(void);
 
 int da8xx_register_edma(void);
This page took 0.027993 seconds and 5 git commands to generate.