diff options
author | Tony Lindgren <tony@atomide.com> | 2012-10-29 14:36:25 -0700 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2012-10-31 10:14:13 -0700 |
commit | d8cfd6c8b4f58b0c09811eefa4b9e022c75099f7 (patch) | |
tree | 21d644adee8b7995bfc724950a2bd17603a14047 /arch/arm/plat-omap/include | |
parent | bf027ca13738b1548910351952c3fe9b63263a9a (diff) |
ARM: OMAP: Introduce common omap_map_sram() and omap_sram_reset()
This will allow us to separate out omap1 and omap2+ specific
code in the later patches.
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/plat-omap/include')
-rw-r--r-- | arch/arm/plat-omap/include/plat/sram.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/plat-omap/include/plat/sram.h b/arch/arm/plat-omap/include/plat/sram.h index c60025a45ee1..ba4525059a99 100644 --- a/arch/arm/plat-omap/include/plat/sram.h +++ b/arch/arm/plat-omap/include/plat/sram.h @@ -1,5 +1,9 @@ int omap_sram_init(void); +void omap_map_sram(unsigned long start, unsigned long size, + unsigned long skip, int cached); +void omap_sram_reset(void); + extern void *omap_sram_push_address(unsigned long size); /* Macro to push a function to the internal SRAM, using the fncpy API */ |