diff options
author | Tony Lindgren <tony@atomide.com> | 2010-08-04 07:43:45 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2010-08-04 07:43:45 -0400 |
commit | 7590d1defdc720a97a9e186f45f529c4ae1b40f7 (patch) | |
tree | e7ffdc043a2847f410d654d8e99e001f3138937a /arch/arm/plat-omap/include | |
parent | 7e788b4289bb025a96e327c604cb2db92e17108f (diff) | |
parent | 869fef41547db95df8523bf67845a21313709428 (diff) |
Merge branch 'devel-map-io' into omap-for-linus
Diffstat (limited to 'arch/arm/plat-omap/include')
-rw-r--r-- | arch/arm/plat-omap/include/plat/common.h | 7 | ||||
-rw-r--r-- | arch/arm/plat-omap/include/plat/vram.h | 4 |
2 files changed, 7 insertions, 4 deletions
diff --git a/arch/arm/plat-omap/include/plat/common.h b/arch/arm/plat-omap/include/plat/common.h index fe83e901ba6c..9776b41ad76f 100644 --- a/arch/arm/plat-omap/include/plat/common.h +++ b/arch/arm/plat-omap/include/plat/common.h | |||
@@ -34,6 +34,8 @@ struct sys_timer; | |||
34 | extern void omap_map_common_io(void); | 34 | extern void omap_map_common_io(void); |
35 | extern struct sys_timer omap_timer; | 35 | extern struct sys_timer omap_timer; |
36 | 36 | ||
37 | extern void omap_reserve(void); | ||
38 | |||
37 | /* | 39 | /* |
38 | * IO bases for various OMAP processors | 40 | * IO bases for various OMAP processors |
39 | * Except the tap base, rest all the io bases | 41 | * Except the tap base, rest all the io bases |
@@ -56,8 +58,7 @@ struct omap_globals { | |||
56 | 58 | ||
57 | void omap2_set_globals_242x(void); | 59 | void omap2_set_globals_242x(void); |
58 | void omap2_set_globals_243x(void); | 60 | void omap2_set_globals_243x(void); |
59 | void omap2_set_globals_343x(void); | 61 | void omap2_set_globals_3xxx(void); |
60 | void omap2_set_globals_36xx(void); | ||
61 | void omap2_set_globals_443x(void); | 62 | void omap2_set_globals_443x(void); |
62 | 63 | ||
63 | /* These get called from omap2_set_globals_xxxx(), do not call these */ | 64 | /* These get called from omap2_set_globals_xxxx(), do not call these */ |
@@ -67,6 +68,8 @@ void omap2_set_globals_control(struct omap_globals *); | |||
67 | void omap2_set_globals_prcm(struct omap_globals *); | 68 | void omap2_set_globals_prcm(struct omap_globals *); |
68 | void omap2_set_globals_uart(struct omap_globals *); | 69 | void omap2_set_globals_uart(struct omap_globals *); |
69 | 70 | ||
71 | void omap3_map_io(void); | ||
72 | |||
70 | /** | 73 | /** |
71 | * omap_test_timeout - busy-loop, testing a condition | 74 | * omap_test_timeout - busy-loop, testing a condition |
72 | * @cond: condition to test until it evaluates to true | 75 | * @cond: condition to test until it evaluates to true |
diff --git a/arch/arm/plat-omap/include/plat/vram.h b/arch/arm/plat-omap/include/plat/vram.h index edd4987758a6..0aa4ecd12c7d 100644 --- a/arch/arm/plat-omap/include/plat/vram.h +++ b/arch/arm/plat-omap/include/plat/vram.h | |||
@@ -38,7 +38,7 @@ extern void omap_vram_get_info(unsigned long *vram, unsigned long *free_vram, | |||
38 | extern void omap_vram_set_sdram_vram(u32 size, u32 start); | 38 | extern void omap_vram_set_sdram_vram(u32 size, u32 start); |
39 | extern void omap_vram_set_sram_vram(u32 size, u32 start); | 39 | extern void omap_vram_set_sram_vram(u32 size, u32 start); |
40 | 40 | ||
41 | extern void omap_vram_reserve_sdram(void); | 41 | extern void omap_vram_reserve_sdram_memblock(void); |
42 | extern unsigned long omap_vram_reserve_sram(unsigned long sram_pstart, | 42 | extern unsigned long omap_vram_reserve_sram(unsigned long sram_pstart, |
43 | unsigned long sram_vstart, | 43 | unsigned long sram_vstart, |
44 | unsigned long sram_size, | 44 | unsigned long sram_size, |
@@ -48,7 +48,7 @@ extern unsigned long omap_vram_reserve_sram(unsigned long sram_pstart, | |||
48 | static inline void omap_vram_set_sdram_vram(u32 size, u32 start) { } | 48 | static inline void omap_vram_set_sdram_vram(u32 size, u32 start) { } |
49 | static inline void omap_vram_set_sram_vram(u32 size, u32 start) { } | 49 | static inline void omap_vram_set_sram_vram(u32 size, u32 start) { } |
50 | 50 | ||
51 | static inline void omap_vram_reserve_sdram(void) { } | 51 | static inline void omap_vram_reserve_sdram_memblock(void) { } |
52 | static inline unsigned long omap_vram_reserve_sram(unsigned long sram_pstart, | 52 | static inline unsigned long omap_vram_reserve_sram(unsigned long sram_pstart, |
53 | unsigned long sram_vstart, | 53 | unsigned long sram_vstart, |
54 | unsigned long sram_size, | 54 | unsigned long sram_size, |