aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2/common.h
diff options
context:
space:
mode:
authorTony Lindgren <tony@atomide.com>2011-12-16 17:01:03 -0500
committerTony Lindgren <tony@atomide.com>2011-12-16 17:01:03 -0500
commit7f760f1abcd1a36b52776c90f6a601dd90f06ecb (patch)
treec5f29a48b528ecc352dbc5c2a246d7860177ac59 /arch/arm/mach-omap2/common.h
parent9d297f5ee1b92a84e2cd6c547c3ac1f893128359 (diff)
parentda27468655540b083525177f5dc6f3b1f6e3b869 (diff)
Merge branch 'for_3.3/uart/runtime-pm' of git://git.kernel.org/pub/scm/linux/kernel/git/khilman/linux-omap-pm into uart
Conflicts: arch/arm/mach-omap2/pm34xx.c
Diffstat (limited to 'arch/arm/mach-omap2/common.h')
-rw-r--r--arch/arm/mach-omap2/common.h23
1 files changed, 17 insertions, 6 deletions
diff --git a/arch/arm/mach-omap2/common.h b/arch/arm/mach-omap2/common.h
index 0911e843f079..90bd2ae85596 100644
--- a/arch/arm/mach-omap2/common.h
+++ b/arch/arm/mach-omap2/common.h
@@ -54,10 +54,18 @@ static inline void omap34xx_map_common_io(void)
54} 54}
55#endif 55#endif
56 56
57#ifdef CONFIG_SOC_OMAPTI816X 57#ifdef CONFIG_SOC_OMAPTI81XX
58extern void omapti816x_map_common_io(void); 58extern void omapti81xx_map_common_io(void);
59#else 59#else
60static inline void omapti816x_map_common_io(void) 60static inline void omapti81xx_map_common_io(void)
61{
62}
63#endif
64
65#ifdef CONFIG_SOC_OMAPAM33XX
66extern void omapam33xx_map_common_io(void);
67#else
68static inline void omapam33xx_map_common_io(void)
61{ 69{
62} 70}
63#endif 71#endif
@@ -84,7 +92,7 @@ void omap35xx_init_early(void);
84void omap3630_init_early(void); 92void omap3630_init_early(void);
85void omap3_init_early(void); /* Do not use this one */ 93void omap3_init_early(void); /* Do not use this one */
86void am35xx_init_early(void); 94void am35xx_init_early(void);
87void ti816x_init_early(void); 95void ti81xx_init_early(void);
88void omap4430_init_early(void); 96void omap4430_init_early(void);
89 97
90/* 98/*
@@ -108,7 +116,8 @@ void omap2_set_globals_242x(void);
108void omap2_set_globals_243x(void); 116void omap2_set_globals_243x(void);
109void omap2_set_globals_3xxx(void); 117void omap2_set_globals_3xxx(void);
110void omap2_set_globals_443x(void); 118void omap2_set_globals_443x(void);
111void omap2_set_globals_ti816x(void); 119void omap2_set_globals_ti81xx(void);
120void omap2_set_globals_am33xx(void);
112 121
113/* These get called from omap2_set_globals_xxxx(), do not call these */ 122/* These get called from omap2_set_globals_xxxx(), do not call these */
114void omap2_set_globals_tap(struct omap_globals *); 123void omap2_set_globals_tap(struct omap_globals *);
@@ -119,7 +128,9 @@ void omap2_set_globals_prcm(struct omap_globals *);
119void omap242x_map_io(void); 128void omap242x_map_io(void);
120void omap243x_map_io(void); 129void omap243x_map_io(void);
121void omap3_map_io(void); 130void omap3_map_io(void);
131void am33xx_map_io(void);
122void omap4_map_io(void); 132void omap4_map_io(void);
133void ti81xx_map_io(void);
123 134
124/** 135/**
125 * omap_test_timeout - busy-loop, testing a condition 136 * omap_test_timeout - busy-loop, testing a condition
@@ -148,7 +159,7 @@ extern struct device *omap4_get_dsp_device(void);
148 159
149void omap2_init_irq(void); 160void omap2_init_irq(void);
150void omap3_init_irq(void); 161void omap3_init_irq(void);
151void ti816x_init_irq(void); 162void ti81xx_init_irq(void);
152extern int omap_irq_pending(void); 163extern int omap_irq_pending(void);
153void omap_intc_save_context(void); 164void omap_intc_save_context(void);
154void omap_intc_restore_context(void); 165void omap_intc_restore_context(void);