]> bbs.cooldavid.org Git - net-next-2.6.git/blobdiff - arch/arm/kernel/setup.c
ARM: 6431/1: fix isb regression on CPU < v7
[net-next-2.6.git] / arch / arm / kernel / setup.c
index 9fc483393bae6fd9fe444c38bc66e7f1e0a95d34..e0430d036cea0d8699364bedd013ba7400f34606 100644 (file)
@@ -246,11 +246,12 @@ static int cpu_has_aliasing_icache(unsigned int arch)
        /* arch specifies the register format */
        switch (arch) {
        case CPU_ARCH_ARMv7:
-               asm("mcr        p15, 2, %1, c0, c0, 0   @ set CSSELR\n"
-                   "isb\n"
-                   "mrc        p15, 1, %0, c0, c0, 0   @ read CCSIDR"
-                   : "=r" (id_reg)
+               asm("mcr        p15, 2, %0, c0, c0, 0 @ set CSSELR"
+                   : /* No output operands */
                    : "r" (1));
+               isb();
+               asm("mrc        p15, 1, %0, c0, c0, 0 @ read CCSIDR"
+                   : "=r" (id_reg));
                line_size = 4 << ((id_reg & 0x7) + 2);
                num_sets = ((id_reg >> 13) & 0x7fff) + 1;
                aliasing_icache = (line_size * num_sets) > PAGE_SIZE;