All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [RFC PATCH 1/2] ARM: cache: Introduce weak dram_bank_setup function
@ 2013-01-08 11:18 R Sricharan
  2013-01-08 11:18 ` [U-Boot] [RFC PATCH 2/2] ARM: mmu: Set domain permissions to client access R Sricharan
  2013-01-08 11:52 ` [U-Boot] [RFC PATCH 1/2] ARM: cache: Introduce weak dram_bank_setup function Stefan Roese
  0 siblings, 2 replies; 4+ messages in thread
From: R Sricharan @ 2013-01-08 11:18 UTC (permalink / raw)
  To: u-boot

Introduce a weak version of dram_bank_setup function
to allow a platform specific redefinition.

This is used in the subsequent patch to setup dram region
without 'XN' attribute in order to enable the region
under client permissions.

Signed-off-by: R Sricharan <r.sricharan@ti.com>
Cc: Vincent Stehle <v-stehle@ti.com>
Cc: Tom Rini <trini@ti.com>
---
 arch/arm/include/asm/cache.h |    1 +
 arch/arm/lib/cache-cp15.c    |    7 ++++++-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/arch/arm/include/asm/cache.h b/arch/arm/include/asm/cache.h
index eef6a5a..93811d2 100644
--- a/arch/arm/include/asm/cache.h
+++ b/arch/arm/include/asm/cache.h
@@ -42,6 +42,7 @@ static inline void invalidate_l2_cache(void)
 void l2_cache_enable(void);
 void l2_cache_disable(void);
 
+void dram_bank_mmu_setup(int bank);
 /*
  * The current upper bound for ARM L1 data cache line sizes is 64 bytes.  We
  * use that value for aligning DMA buffers unless the board config has specified
diff --git a/arch/arm/lib/cache-cp15.c b/arch/arm/lib/cache-cp15.c
index 6edf815..843078e 100644
--- a/arch/arm/lib/cache-cp15.c
+++ b/arch/arm/lib/cache-cp15.c
@@ -23,6 +23,8 @@
 
 #include <common.h>
 #include <asm/system.h>
+#include <asm/cache.h>
+#include <linux/compiler.h>
 
 #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
 
@@ -77,7 +79,7 @@ void mmu_set_region_dcache_behaviour(u32 start, int size,
 	mmu_page_table_flush((u32)&page_table[start], (u32)&page_table[end]);
 }
 
-static inline void dram_bank_mmu_setup(int bank)
+void __dram_bank_mmu_setup(int bank)
 {
 	bd_t *bd = gd->bd;
 	int	i;
@@ -94,6 +96,9 @@ static inline void dram_bank_mmu_setup(int bank)
 	}
 }
 
+void dram_bank_mmu_setup(int bank)
+	__attribute__((weak, alias("__dram_bank_mmu_setup")));
+
 /* to activate the MMU we need to set up virtual memory: use 1M areas */
 static inline void mmu_setup(void)
 {
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-01-08 13:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-08 11:18 [U-Boot] [RFC PATCH 1/2] ARM: cache: Introduce weak dram_bank_setup function R Sricharan
2013-01-08 11:18 ` [U-Boot] [RFC PATCH 2/2] ARM: mmu: Set domain permissions to client access R Sricharan
2013-01-08 11:52 ` [U-Boot] [RFC PATCH 1/2] ARM: cache: Introduce weak dram_bank_setup function Stefan Roese
2013-01-08 13:03   ` R Sricharan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.