riscv: vector: make Vector always available for softirq context
authorAndy Chiu <andy.chiu@sifive.com>
Mon, 15 Jan 2024 05:59:21 +0000 (05:59 +0000)
committerPalmer Dabbelt <palmer@rivosinc.com>
Tue, 16 Jan 2024 15:13:54 +0000 (07:13 -0800)
The goal of this patch is to provide full support of Vector in kernel
softirq context. So that some of the crypto alogrithms won't need scalar
fallbacks.

By disabling bottom halves in active kernel-mode Vector, softirq will
not be able to nest on top of any kernel-mode Vector. So, softirq
context is able to use Vector whenever it runs.

After this patch, Vector context cannot start with irqs disabled.
Otherwise local_bh_enable() may run in a wrong context.

Disabling bh is not enough for RT-kernel to prevent preeemption. So
we must disable preemption, which also implies disabling bh on RT.

Related-to: commit 696207d4258b ("arm64/sve: Make kernel FPU protection RT friendly")
Related-to: commit 66c3ec5a7120 ("arm64: neon: Forbid when irqs are disabled")
Signed-off-by: Andy Chiu <andy.chiu@sifive.com>
Reviewed-by: Eric Biggers <ebiggers@google.com>
Tested-by: Björn Töpel <bjorn@rivosinc.com>
Tested-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Link: https://lore.kernel.org/r/20240115055929.4736-3-andy.chiu@sifive.com
Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
arch/riscv/include/asm/processor.h
arch/riscv/include/asm/simd.h
arch/riscv/kernel/kernel_mode_vector.c

index 4809f20a205307680e8c7d398a2e4ba703ebc64b..55ace554f20211b1566f0f30b14aefdf71e17474 100644 (file)
@@ -78,7 +78,8 @@ struct pt_regs;
  * following meaning:
  *
  *  - bit 0: indicates whether the in-kernel Vector context is active. The
- *    activation of this state disables the preemption.
+ *    activation of this state disables the preemption. On a non-RT kernel, it
+ *    also disable bh.
  */
 #define RISCV_KERNEL_MODE_V    0x1
 
index ef8af413a9fc77c9569365b230cb631c1ea92517..4d699e16c9a96855d9eaedfa953a1c9b38fb69b5 100644 (file)
@@ -28,8 +28,12 @@ static __must_check inline bool may_use_simd(void)
        /*
         * RISCV_KERNEL_MODE_V is only set while preemption is disabled,
         * and is clear whenever preemption is enabled.
+        *
+        * Kernel-mode Vector temporarily disables bh. So we must not return
+        * true on irq_disabled(). Otherwise we would fail the lockdep check
+        * calling local_bh_enable()
         */
-       return !in_hardirq() && !in_nmi() && !(riscv_v_flags() & RISCV_KERNEL_MODE_V);
+       return !in_hardirq() && !in_nmi() && !irqs_disabled() && !(riscv_v_flags() & RISCV_KERNEL_MODE_V);
 }
 
 #else /* ! CONFIG_RISCV_ISA_V */
index 114cf4f0a0eb628889d26037cb67181c69e34766..2fc145edae3ddf5f8d15c0b78c8213406116c548 100644 (file)
@@ -46,7 +46,14 @@ static inline void riscv_v_stop(u32 flags)
  */
 void get_cpu_vector_context(void)
 {
-       preempt_disable();
+       /*
+        * disable softirqs so it is impossible for softirqs to nest
+        * get_cpu_vector_context() when kernel is actively using Vector.
+        */
+       if (!IS_ENABLED(CONFIG_PREEMPT_RT))
+               local_bh_disable();
+       else
+               preempt_disable();
 
        riscv_v_start(RISCV_KERNEL_MODE_V);
 }
@@ -62,7 +69,10 @@ void put_cpu_vector_context(void)
 {
        riscv_v_stop(RISCV_KERNEL_MODE_V);
 
-       preempt_enable();
+       if (!IS_ENABLED(CONFIG_PREEMPT_RT))
+               local_bh_enable();
+       else
+               preempt_enable();
 }
 
 /*