]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
ARM: cache: tauros2: add disable and resume callback
authorChao Xie <chao.xie@marvell.com>
Mon, 7 May 2012 03:23:59 +0000 (11:23 +0800)
committerHaojian Zhuang <haojian.zhuang@gmail.com>
Mon, 7 May 2012 03:43:48 +0000 (11:43 +0800)
For the SOC chips using tauros2 cache, will need disable
and resume tauros2 cache for SOC suspend/resume.

Signed-off-by: Chao Xie <chao.xie@marvell.com>
Signed-off-by: Haojian Zhuang <haojian.zhuang@gmail.com>
arch/arm/mm/cache-tauros2.c

index 1fbca05fe906aa647ce5a3297dbe9c4681e6a7fc..23a7643e9a875925be1280d1bff0c3ee6ffab7ee 100644 (file)
@@ -108,6 +108,26 @@ static void tauros2_flush_range(unsigned long start, unsigned long end)
 
        dsb();
 }
+
+static void tauros2_disable(void)
+{
+       __asm__ __volatile__ (
+       "mcr    p15, 1, %0, c7, c11, 0 @L2 Cache Clean All\n\t"
+       "mrc    p15, 0, %0, c1, c0, 0\n\t"
+       "bic    %0, %0, #(1 << 26)\n\t"
+       "mcr    p15, 0, %0, c1, c0, 0  @Disable L2 Cache\n\t"
+       : : "r" (0x0));
+}
+
+static void tauros2_resume(void)
+{
+       __asm__ __volatile__ (
+       "mcr    p15, 1, %0, c7, c7, 0 @L2 Cache Invalidate All\n\t"
+       "mrc    p15, 0, %0, c1, c0, 0\n\t"
+       "orr    %0, %0, #(1 << 26)\n\t"
+       "mcr    p15, 0, %0, c1, c0, 0 @Enable L2 Cache\n\t"
+       : : "r" (0x0));
+}
 #endif
 
 static inline u32 __init read_extra_features(void)
@@ -194,6 +214,8 @@ void __init tauros2_init(void)
                outer_cache.inv_range = tauros2_inv_range;
                outer_cache.clean_range = tauros2_clean_range;
                outer_cache.flush_range = tauros2_flush_range;
+               outer_cache.disable = tauros2_disable;
+               outer_cache.resume = tauros2_resume;
        }
 #endif
 
@@ -219,6 +241,8 @@ void __init tauros2_init(void)
                outer_cache.inv_range = tauros2_inv_range;
                outer_cache.clean_range = tauros2_clean_range;
                outer_cache.flush_range = tauros2_flush_range;
+               outer_cache.disable = tauros2_disable;
+               outer_cache.resume = tauros2_resume;
        }
 #endif