]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
arc: cache: Add required NOPs after invalidation of instruction cache
authorAlexey Brodkin <abrodkin@synopsys.com>
Fri, 17 Nov 2017 13:02:17 +0000 (16:02 +0300)
committerAlexey Brodkin <abrodkin@synopsys.com>
Fri, 24 Nov 2017 16:38:23 +0000 (19:38 +0300)
As per ARC HS databook (see chapter 5.3.3.2) it is required to add
3 NOPs after each write to IC_IVIC which we do from now on.

Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Cc: Eugeniy Paltsev <paltsev@synopsys.com>
arch/arc/lib/cache.c

index cbae27e9fcecb78f49fd422f907515515709b12a..d8741fe959c3fc7ddec39ecaf6bfaa7443cb8d38 100644 (file)
@@ -278,6 +278,13 @@ void invalidate_icache_all(void)
        /* Any write to IC_IVIC register triggers invalidation of entire I$ */
        if (icache_status()) {
                write_aux_reg(ARC_AUX_IC_IVIC, 1);
+               /*
+                * As per ARC HS databook (see chapter 5.3.3.2)
+                * it is required to add 3 NOPs after each write to IC_IVIC.
+                */
+               __builtin_arc_nop();
+               __builtin_arc_nop();
+               __builtin_arc_nop();
                read_aux_reg(ARC_AUX_IC_CTRL);  /* blocks */
        }
 }