aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arc/mm
diff options
context:
space:
mode:
authorVineet Gupta <vgupta@synopsys.com>2015-06-04 05:09:15 -0400
committerVineet Gupta <vgupta@synopsys.com>2015-06-22 04:36:56 -0400
commitbcc4d65abec2adb74157b34519e80331eb4427eb (patch)
treebb35ec4fc31cc6f9e8d3063c82cf682e2e723434 /arch/arc/mm
parentd1f317d8254413447bcd6b6adbde24a985d256c2 (diff)
ARCv2: MMUv4: support aliasing icache config
This is also default for AXS103 release Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Diffstat (limited to 'arch/arc/mm')
-rw-r--r--arch/arc/mm/cache.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/arch/arc/mm/cache.c b/arch/arc/mm/cache.c
index 7a898f57d84b..0eaaee60fd0b 100644
--- a/arch/arc/mm/cache.c
+++ b/arch/arc/mm/cache.c
@@ -21,6 +21,9 @@
21#include <asm/cachectl.h> 21#include <asm/cachectl.h>
22#include <asm/setup.h> 22#include <asm/setup.h>
23 23
24void (*_cache_line_loop_ic_fn)(unsigned long paddr, unsigned long vaddr,
25 unsigned long sz, const int cacheop);
26
24char *arc_cache_mumbojumbo(int c, char *buf, int len) 27char *arc_cache_mumbojumbo(int c, char *buf, int len)
25{ 28{
26 int n = 0; 29 int n = 0;
@@ -414,7 +417,7 @@ __ic_line_inv_vaddr_local(unsigned long paddr, unsigned long vaddr,
414 unsigned long flags; 417 unsigned long flags;
415 418
416 local_irq_save(flags); 419 local_irq_save(flags);
417 __cache_line_loop(paddr, vaddr, sz, OP_INV_IC); 420 (*_cache_line_loop_ic_fn)(paddr, vaddr, sz, OP_INV_IC);
418 local_irq_restore(flags); 421 local_irq_restore(flags);
419} 422}
420 423
@@ -746,6 +749,15 @@ void arc_cache_init(void)
746 if (ic->ver != CONFIG_ARC_MMU_VER) 749 if (ic->ver != CONFIG_ARC_MMU_VER)
747 panic("Cache ver [%d] doesn't match MMU ver [%d]\n", 750 panic("Cache ver [%d] doesn't match MMU ver [%d]\n",
748 ic->ver, CONFIG_ARC_MMU_VER); 751 ic->ver, CONFIG_ARC_MMU_VER);
752
753 /*
754 * In MMU v4 (HS38x) the alising icache config uses IVIL/PTAG
755 * pair to provide vaddr/paddr respectively, just as in MMU v3
756 */
757 if (is_isa_arcv2() && ic->alias)
758 _cache_line_loop_ic_fn = __cache_line_loop_v3;
759 else
760 _cache_line_loop_ic_fn = __cache_line_loop;
749 } 761 }
750 762
751 if (IS_ENABLED(CONFIG_ARC_HAS_DCACHE)) { 763 if (IS_ENABLED(CONFIG_ARC_HAS_DCACHE)) {