aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2/common.h
diff options
context:
space:
mode:
authorR Sricharan <r.sricharan@ti.com>2012-06-05 06:51:32 -0400
committerSantosh Shilimkar <santosh.shilimkar@ti.com>2012-07-09 09:44:39 -0400
commit05e152c76a1efaa3165afecf5acf535c8283f386 (patch)
treeb8f78f3fb8612bc007855964823ddca2490911bc /arch/arm/mach-omap2/common.h
parentb13e80a8bfe442406495a2fc9e7cbb79d33df48a (diff)
ARM: OMAP5: Add minimal support for OMAP5430 SOC
OMAP5430 is Texas Instrument's SOC based on ARM Cortex-A15 SMP architecture. It's a dual core SOC with GIC used for interrupt handling and with an integrated L2 cache controller. OMAP5432 is another variant of OMAP5430, with a memory controller supporting DDR3 and SATA. Patch includes: - The machine specific headers and sources updates. - Platform header updates. - Minimum initialisation support for serial. - IO table init Signed-off-by: R Sricharan <r.sricharan@ti.com> Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Diffstat (limited to 'arch/arm/mach-omap2/common.h')
-rw-r--r--arch/arm/mach-omap2/common.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/common.h b/arch/arm/mach-omap2/common.h
index 404f172d95a8..399e5bb13835 100644
--- a/arch/arm/mach-omap2/common.h
+++ b/arch/arm/mach-omap2/common.h
@@ -115,6 +115,14 @@ static inline int omap_mux_late_init(void)
115} 115}
116#endif 116#endif
117 117
118#ifdef CONFIG_SOC_OMAP5
119extern void omap5_map_common_io(void);
120#else
121static inline void omap5_map_common_io(void)
122{
123}
124#endif
125
118extern void omap2_init_common_infrastructure(void); 126extern void omap2_init_common_infrastructure(void);
119 127
120extern struct sys_timer omap2_timer; 128extern struct sys_timer omap2_timer;
@@ -134,6 +142,7 @@ void am35xx_init_early(void);
134void ti81xx_init_early(void); 142void ti81xx_init_early(void);
135void am33xx_init_early(void); 143void am33xx_init_early(void);
136void omap4430_init_early(void); 144void omap4430_init_early(void);
145void omap5_init_early(void);
137void omap3_init_late(void); /* Do not use this one */ 146void omap3_init_late(void); /* Do not use this one */
138void omap4430_init_late(void); 147void omap4430_init_late(void);
139void omap2420_init_late(void); 148void omap2420_init_late(void);
@@ -169,6 +178,7 @@ void omap2_set_globals_242x(void);
169void omap2_set_globals_243x(void); 178void omap2_set_globals_243x(void);
170void omap2_set_globals_3xxx(void); 179void omap2_set_globals_3xxx(void);
171void omap2_set_globals_443x(void); 180void omap2_set_globals_443x(void);
181void omap2_set_globals_5xxx(void);
172void omap2_set_globals_ti81xx(void); 182void omap2_set_globals_ti81xx(void);
173void omap2_set_globals_am33xx(void); 183void omap2_set_globals_am33xx(void);
174 184
@@ -188,6 +198,7 @@ void omap243x_map_io(void);
188void omap3_map_io(void); 198void omap3_map_io(void);
189void am33xx_map_io(void); 199void am33xx_map_io(void);
190void omap4_map_io(void); 200void omap4_map_io(void);
201void omap5_map_io(void);
191void ti81xx_map_io(void); 202void ti81xx_map_io(void);
192void omap_barriers_init(void); 203void omap_barriers_init(void);
193 204