]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
riscv: Call riscv_user_isa_enable() only on the boot hart
authorSamuel Holland <samuel.holland@sifive.com>
Wed, 14 Aug 2024 08:10:56 +0000 (01:10 -0700)
committerPalmer Dabbelt <palmer@rivosinc.com>
Sat, 5 Oct 2024 15:51:15 +0000 (08:51 -0700)
Now that the [ms]envcfg CSR value is maintained per thread, not per
hart, riscv_user_isa_enable() only needs to be called once during boot,
to set the value for the init task. This also allows it to be marked as
__init.

Reviewed-by: Andrew Jones <ajones@ventanamicro.com>
Reviewed-by: Conor Dooley <conor.dooley@microchip.com>
Reviewed-by: Deepak Gupta <debug@rivosinc.com>
Signed-off-by: Samuel Holland <samuel.holland@sifive.com>
Reviewed-by: Charlie Jenkins <charlie@rivosinc.com>
Link: https://lore.kernel.org/r/20240814081126.956287-4-samuel.holland@sifive.com
Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
arch/riscv/include/asm/cpufeature.h
arch/riscv/kernel/cpufeature.c
arch/riscv/kernel/smpboot.c

index 45f9c1171a486a4dc6a4e0c80d64bf80a724b48f..ce9a995730c147df9f03a67173bf653b146886ea 100644 (file)
@@ -31,7 +31,7 @@ DECLARE_PER_CPU(struct riscv_cpuinfo, riscv_cpuinfo);
 /* Per-cpu ISA extensions. */
 extern struct riscv_isainfo hart_isa[NR_CPUS];
 
-void riscv_user_isa_enable(void);
+void __init riscv_user_isa_enable(void);
 
 #define _RISCV_ISA_EXT_DATA(_name, _id, _subset_exts, _subset_exts_size, _validate) {  \
        .name = #_name,                                                                 \
index 27bafc5dd62df6adde3c42e3fb07e19f32cacf31..b3a057c36996f1cbdb6d2112fabcf97a045e5474 100644 (file)
@@ -920,12 +920,12 @@ unsigned long riscv_get_elf_hwcap(void)
        return hwcap;
 }
 
-void riscv_user_isa_enable(void)
+void __init riscv_user_isa_enable(void)
 {
        if (riscv_has_extension_unlikely(RISCV_ISA_EXT_ZICBOZ))
                current->thread.envcfg |= ENVCFG_CBZE;
        else if (any_cpu_has_zicboz)
-               pr_warn_once("Zicboz disabled as it is unavailable on some harts\n");
+               pr_warn("Zicboz disabled as it is unavailable on some harts\n");
 }
 
 #ifdef CONFIG_RISCV_ALTERNATIVE
index 0f8f1c95ac38c9d028fb9a1f7e9172141a3f80c1..e36d20205bd7d3de2dd64db5069b73508bd83eb6 100644 (file)
@@ -233,8 +233,6 @@ asmlinkage __visible void smp_callin(void)
        numa_add_cpu(curr_cpuid);
        set_cpu_online(curr_cpuid, true);
 
-       riscv_user_isa_enable();
-
        /*
         * Remote cache and TLB flushes are ignored while the CPU is offline,
         * so flush them both right now just in case.