aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-ep93xx/soc.h
diff options
context:
space:
mode:
authorRyan Mallon <rmallon@gmail.com>2012-01-10 17:29:26 -0500
committerRyan Mallon <rmallon@gmail.com>2012-03-13 20:42:27 -0400
commita05baf335b8bc25e0fab0fd1821e796174f98ea1 (patch)
treef6cea3047979b47024b2d2dbbf700cee8861beaa /arch/arm/mach-ep93xx/soc.h
parent73303d129201de7af7fa837597e9c470c5efa71f (diff)
ep93xx: Move peripheral defines to local SoC header
Move the AHB/APB peripheral defines to local SoC header since they are only needed by the core SoC code. The UART defines are not moved because they are used by the mach/uncompress.h header. Signed-off-by: Ryan Mallon <rmallon@gmail.com> Reviewed-by: Mika Westerberg <mika.westerberg@iki.fi> Acked-by: Hartley Sweeten <hsweeten@visionengravers.com> Acked-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/mach-ep93xx/soc.h')
-rw-r--r--arch/arm/mach-ep93xx/soc.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/arch/arm/mach-ep93xx/soc.h b/arch/arm/mach-ep93xx/soc.h
index 2f6641e57692..5266998f71e0 100644
--- a/arch/arm/mach-ep93xx/soc.h
+++ b/arch/arm/mach-ep93xx/soc.h
@@ -47,4 +47,61 @@
47#define EP93XX_SDCE3_PHYS_BASE_ASYNC 0xf0000000 /* ASDO Pin = 0 */ 47#define EP93XX_SDCE3_PHYS_BASE_ASYNC 0xf0000000 /* ASDO Pin = 0 */
48#define EP93XX_CS0_PHYS_BASE_SYNC 0xf0000000 /* ASDO Pin = 1 */ 48#define EP93XX_CS0_PHYS_BASE_SYNC 0xf0000000 /* ASDO Pin = 1 */
49 49
50/* AHB peripherals */
51#define EP93XX_DMA_BASE EP93XX_AHB_IOMEM(0x00000000)
52
53#define EP93XX_ETHERNET_PHYS_BASE EP93XX_AHB_PHYS(0x00010000)
54#define EP93XX_ETHERNET_BASE EP93XX_AHB_IOMEM(0x00010000)
55
56#define EP93XX_USB_PHYS_BASE EP93XX_AHB_PHYS(0x00020000)
57#define EP93XX_USB_BASE EP93XX_AHB_IOMEM(0x00020000)
58
59#define EP93XX_RASTER_PHYS_BASE EP93XX_AHB_PHYS(0x00030000)
60#define EP93XX_RASTER_BASE EP93XX_AHB_IOMEM(0x00030000)
61
62#define EP93XX_GRAPHICS_ACCEL_BASE EP93XX_AHB_IOMEM(0x00040000)
63
64#define EP93XX_SDRAM_CONTROLLER_BASE EP93XX_AHB_IOMEM(0x00060000)
65
66#define EP93XX_PCMCIA_CONTROLLER_BASE EP93XX_AHB_IOMEM(0x00080000)
67
68#define EP93XX_BOOT_ROM_BASE EP93XX_AHB_IOMEM(0x00090000)
69
70#define EP93XX_IDE_BASE EP93XX_AHB_IOMEM(0x000a0000)
71
72#define EP93XX_VIC1_BASE EP93XX_AHB_IOMEM(0x000b0000)
73
74#define EP93XX_VIC2_BASE EP93XX_AHB_IOMEM(0x000c0000)
75
76/* APB peripherals */
77#define EP93XX_TIMER_BASE EP93XX_APB_IOMEM(0x00010000)
78
79#define EP93XX_I2S_PHYS_BASE EP93XX_APB_PHYS(0x00020000)
80#define EP93XX_I2S_BASE EP93XX_APB_IOMEM(0x00020000)
81
82#define EP93XX_SECURITY_BASE EP93XX_APB_IOMEM(0x00030000)
83
84#define EP93XX_AAC_PHYS_BASE EP93XX_APB_PHYS(0x00080000)
85#define EP93XX_AAC_BASE EP93XX_APB_IOMEM(0x00080000)
86
87#define EP93XX_SPI_PHYS_BASE EP93XX_APB_PHYS(0x000a0000)
88#define EP93XX_SPI_BASE EP93XX_APB_IOMEM(0x000a0000)
89
90#define EP93XX_IRDA_BASE EP93XX_APB_IOMEM(0x000b0000)
91
92#define EP93XX_KEY_MATRIX_PHYS_BASE EP93XX_APB_PHYS(0x000f0000)
93#define EP93XX_KEY_MATRIX_BASE EP93XX_APB_IOMEM(0x000f0000)
94
95#define EP93XX_ADC_BASE EP93XX_APB_IOMEM(0x00100000)
96#define EP93XX_TOUCHSCREEN_BASE EP93XX_APB_IOMEM(0x00100000)
97
98#define EP93XX_PWM_PHYS_BASE EP93XX_APB_PHYS(0x00110000)
99#define EP93XX_PWM_BASE EP93XX_APB_IOMEM(0x00110000)
100
101#define EP93XX_RTC_PHYS_BASE EP93XX_APB_PHYS(0x00120000)
102#define EP93XX_RTC_BASE EP93XX_APB_IOMEM(0x00120000)
103
104#define EP93XX_WATCHDOG_PHYS_BASE EP93XX_APB_PHYS(0x00140000)
105#define EP93XX_WATCHDOG_BASE EP93XX_APB_IOMEM(0x00140000)
106
50#endif /* _EP93XX_SOC_H */ 107#endif /* _EP93XX_SOC_H */