MIPS: smp-cps: Disable coherence setup for unsupported ISA
authorJiaxun Yang <jiaxun.yang@flygoat.com>
Tue, 4 Apr 2023 09:33:41 +0000 (10:33 +0100)
committerThomas Bogendoerfer <tsbogend@alpha.franken.de>
Wed, 5 Apr 2023 07:45:08 +0000 (09:45 +0200)
We don't know how to do coherence setup on ISA before MIPS
Release 1.

As CPS support only servers simulation purpose on those cores,
and simulators are always coherent, just disable initialization
code and provide user a warning in case coherence is not setup
properly.

Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
arch/mips/kernel/cps-vec.S
arch/mips/kernel/smp-cps.c

index 8ef492da827f847ae109dd22820f62af3a357529..64ecfdac6580b8341ccefe8ebf200b44fb7ce928 100644 (file)
@@ -116,6 +116,8 @@ not_nmi:
        li      t0, ST0_CU1 | ST0_CU0 | ST0_BEV | STATUS_BITDEPS
        mtc0    t0, CP0_STATUS
 
+       /* We don't know how to do coherence setup on earlier ISA */
+#if MIPS_ISA_REV > 0
        /* Skip cache & coherence setup if we're already coherent */
        lw      s7, GCR_CL_COHERENCE_OFS(s1)
        bnez    s7, 1f
@@ -129,6 +131,7 @@ not_nmi:
        li      t0, 0xff
        sw      t0, GCR_CL_COHERENCE_OFS(s1)
        ehb
+#endif /* MIPS_ISA_REV > 0 */
 
        /* Set Kseg0 CCA to that in s0 */
 1:     mfc0    t0, CP0_CONFIG
@@ -515,6 +518,7 @@ LEAF(mips_cps_boot_vpes)
         nop
        END(mips_cps_boot_vpes)
 
+#if MIPS_ISA_REV > 0
 LEAF(mips_cps_cache_init)
        /*
         * Clear the bits used to index the caches. Note that the architecture
@@ -588,6 +592,7 @@ dcache_done:
        jr      ra
         nop
        END(mips_cps_cache_init)
+#endif /* MIPS_ISA_REV > 0 */
 
 #if defined(CONFIG_MIPS_CPS_PM) && defined(CONFIG_CPU_PM)
 
index 4fc288bb85b96a054e33c6e0e835c60911f75936..f968a319d87f92b56ad6bec17583100d4395bca0 100644 (file)
@@ -361,6 +361,8 @@ out:
 
 static void cps_init_secondary(void)
 {
+       int core = cpu_core(&current_cpu_data);
+
        /* Disable MT - we only want to run 1 TC per VPE */
        if (cpu_has_mipsmt)
                dmt();
@@ -376,6 +378,9 @@ static void cps_init_secondary(void)
                BUG_ON(ident != mips_cm_vp_id(smp_processor_id()));
        }
 
+       if (core > 0 && !read_gcr_cl_coherence())
+               pr_warn("Core %u is not in coherent domain\n", core);
+
        if (cpu_has_veic)
                clear_c0_status(ST0_IM);
        else