aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-davinci/include/mach/da8xx.h
diff options
context:
space:
mode:
authorSekhar Nori <nsekhar@ti.com>2009-08-31 06:17:59 -0400
committerKevin Hilman <khilman@deeprootsystems.com>2009-11-25 13:21:19 -0500
commit6a28adef21e551602023afc5bba330f8013556d8 (patch)
tree6001f5b92b5550012b6ec9c6a25c3323842ebb2b /arch/arm/mach-davinci/include/mach/da8xx.h
parent3c60a66de662dca6e47951a78b73de1bf081e785 (diff)
davinci: DA8XX/OMAP-L1XX: Avoid use of IO_ADDRESS for SYSCFG module
Avoid use of IO_ADDRESS() for SYSCFG module by doing an ioremap() instead. Signed-off-by: Sekhar Nori <nsekhar@ti.com> Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/mach-davinci/include/mach/da8xx.h')
-rw-r--r--arch/arm/mach-davinci/include/mach/da8xx.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-davinci/include/mach/da8xx.h b/arch/arm/mach-davinci/include/mach/da8xx.h
index 1c42379a390d..11d2079a8203 100644
--- a/arch/arm/mach-davinci/include/mach/da8xx.h
+++ b/arch/arm/mach-davinci/include/mach/da8xx.h
@@ -18,6 +18,8 @@
18#include <mach/asp.h> 18#include <mach/asp.h>
19#include <mach/mmc.h> 19#include <mach/mmc.h>
20 20
21extern void __iomem *da8xx_syscfg_base;
22
21/* 23/*
22 * The cp_intc interrupt controller for the da8xx isn't in the same 24 * The cp_intc interrupt controller for the da8xx isn't in the same
23 * chunk of physical memory space as the other registers (like it is 25 * chunk of physical memory space as the other registers (like it is
@@ -30,6 +32,7 @@
30#define DA8XX_CP_INTC_VIRT (IO_VIRT - DA8XX_CP_INTC_SIZE - SZ_4K) 32#define DA8XX_CP_INTC_VIRT (IO_VIRT - DA8XX_CP_INTC_SIZE - SZ_4K)
31 33
32#define DA8XX_SYSCFG_BASE (IO_PHYS + 0x14000) 34#define DA8XX_SYSCFG_BASE (IO_PHYS + 0x14000)
35#define DA8XX_SYSCFG_VIRT(x) (da8xx_syscfg_base + (x))
33 36
34#define DA8XX_PSC0_BASE 0x01c10000 37#define DA8XX_PSC0_BASE 0x01c10000
35#define DA8XX_PLL0_BASE 0x01c11000 38#define DA8XX_PLL0_BASE 0x01c11000