diff options
author | Lokesh Vutla <lokeshvutla@ti.com> | 2012-10-01 14:47:05 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2012-10-18 19:22:22 -0400 |
commit | f583f0f2c720e4ac7d2ffd65996717bf0345a3e5 (patch) | |
tree | 79b30e3c770d616e1906cb1a4cce6012538a72d2 | |
parent | f300af86a85c69fb1552b5389f968ea1a3e0a3eb (diff) |
ARM: OMAP2+: Move omap_reserve() locally to mach-omap2
omap_reserve() callback is defned only for mach-omap2.
So, moving definition of omap_reserve() to mach-omap2.
This helps is moving plat/omap_secure.h local to
mach-omap2
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
-rw-r--r-- | arch/arm/mach-omap2/common.c | 20 | ||||
-rw-r--r-- | arch/arm/mach-omap2/common.h | 1 | ||||
-rw-r--r-- | arch/arm/plat-omap/common.c | 21 |
3 files changed, 21 insertions, 21 deletions
diff --git a/arch/arm/mach-omap2/common.c b/arch/arm/mach-omap2/common.c index 17950c6e130b..4ce0d63e941b 100644 --- a/arch/arm/mach-omap2/common.c +++ b/arch/arm/mach-omap2/common.c | |||
@@ -16,8 +16,11 @@ | |||
16 | #include <linux/init.h> | 16 | #include <linux/init.h> |
17 | #include <linux/clk.h> | 17 | #include <linux/clk.h> |
18 | #include <linux/io.h> | 18 | #include <linux/io.h> |
19 | #include <linux/platform_data/dsp-omap.h> | ||
19 | 20 | ||
20 | #include <plat/clock.h> | 21 | #include <plat/clock.h> |
22 | #include <plat/omap-secure.h> | ||
23 | #include <plat/vram.h> | ||
21 | 24 | ||
22 | #include "soc.h" | 25 | #include "soc.h" |
23 | #include "iomap.h" | 26 | #include "iomap.h" |
@@ -200,3 +203,20 @@ void __init omap5_map_io(void) | |||
200 | omap5_map_common_io(); | 203 | omap5_map_common_io(); |
201 | } | 204 | } |
202 | #endif | 205 | #endif |
206 | |||
207 | /* | ||
208 | * Stub function for OMAP2 so that common files | ||
209 | * continue to build when custom builds are used | ||
210 | */ | ||
211 | int __weak omap_secure_ram_reserve_memblock(void) | ||
212 | { | ||
213 | return 0; | ||
214 | } | ||
215 | |||
216 | void __init omap_reserve(void) | ||
217 | { | ||
218 | omap_vram_reserve_sdram_memblock(); | ||
219 | omap_dsp_reserve_sdram_memblock(); | ||
220 | omap_secure_ram_reserve_memblock(); | ||
221 | omap_barrier_reserve_memblock(); | ||
222 | } | ||
diff --git a/arch/arm/mach-omap2/common.h b/arch/arm/mach-omap2/common.h index b91b2a2308aa..42b1b2e009d3 100644 --- a/arch/arm/mach-omap2/common.h +++ b/arch/arm/mach-omap2/common.h | |||
@@ -343,6 +343,7 @@ extern void omap_sdrc_init(struct omap_sdrc_params *sdrc_cs0, | |||
343 | struct omap_sdrc_params *sdrc_cs1); | 343 | struct omap_sdrc_params *sdrc_cs1); |
344 | struct omap2_hsmmc_info; | 344 | struct omap2_hsmmc_info; |
345 | extern int omap4_twl6030_hsmmc_init(struct omap2_hsmmc_info *controllers); | 345 | extern int omap4_twl6030_hsmmc_init(struct omap2_hsmmc_info *controllers); |
346 | extern void omap_reserve(void); | ||
346 | 347 | ||
347 | #endif /* __ASSEMBLER__ */ | 348 | #endif /* __ASSEMBLER__ */ |
348 | #endif /* __ARCH_ARM_MACH_OMAP2PLUS_COMMON_H */ | 349 | #endif /* __ARCH_ARM_MACH_OMAP2PLUS_COMMON_H */ |
diff --git a/arch/arm/plat-omap/common.c b/arch/arm/plat-omap/common.c index 2a9db0128a96..a1555e028123 100644 --- a/arch/arm/plat-omap/common.c +++ b/arch/arm/plat-omap/common.c | |||
@@ -17,32 +17,11 @@ | |||
17 | #include <linux/dma-mapping.h> | 17 | #include <linux/dma-mapping.h> |
18 | 18 | ||
19 | #include "common.h" | 19 | #include "common.h" |
20 | #include <plat/vram.h> | ||
21 | #include <linux/platform_data/dsp-omap.h> | ||
22 | #include <plat-omap/dma-omap.h> | 20 | #include <plat-omap/dma-omap.h> |
23 | 21 | ||
24 | #include <plat/omap-secure.h> | ||
25 | |||
26 | void __init omap_reserve(void) | ||
27 | { | ||
28 | omap_vram_reserve_sdram_memblock(); | ||
29 | omap_dsp_reserve_sdram_memblock(); | ||
30 | omap_secure_ram_reserve_memblock(); | ||
31 | omap_barrier_reserve_memblock(); | ||
32 | } | ||
33 | |||
34 | void __init omap_init_consistent_dma_size(void) | 22 | void __init omap_init_consistent_dma_size(void) |
35 | { | 23 | { |
36 | #ifdef CONFIG_FB_OMAP_CONSISTENT_DMA_SIZE | 24 | #ifdef CONFIG_FB_OMAP_CONSISTENT_DMA_SIZE |
37 | init_consistent_dma_size(CONFIG_FB_OMAP_CONSISTENT_DMA_SIZE << 20); | 25 | init_consistent_dma_size(CONFIG_FB_OMAP_CONSISTENT_DMA_SIZE << 20); |
38 | #endif | 26 | #endif |
39 | } | 27 | } |
40 | |||
41 | /* | ||
42 | * Stub function for OMAP2 so that common files | ||
43 | * continue to build when custom builds are used | ||
44 | */ | ||
45 | int __weak omap_secure_ram_reserve_memblock(void) | ||
46 | { | ||
47 | return 0; | ||
48 | } | ||