RISC-V: Clear SIP bit only when using SBI IPI operations
authorAnup Patel <apatel@ventanamicro.com>
Tue, 28 Mar 2023 03:52:17 +0000 (09:22 +0530)
committerMarc Zyngier <maz@kernel.org>
Sat, 8 Apr 2023 10:26:23 +0000 (11:26 +0100)
The software interrupt pending (i.e. [M|S]SIP) bit is writeable for
S-mode but read-only for M-mode so we clear this bit only when using
SBI IPI operations.

Signed-off-by: Anup Patel <apatel@ventanamicro.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Atish Patra <atishp@rivosinc.com>
Acked-by: Palmer Dabbelt <palmer@rivosinc.com>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Link: https://lore.kernel.org/r/20230328035223.1480939-2-apatel@ventanamicro.com
arch/riscv/kernel/sbi.c
arch/riscv/kernel/smp.c

index 5c87db8fdff2d1eabe0eb6e72740bc5ae78fb3b0..ac99a70ead6a23f2f1a5a4937519e3ff037fa21b 100644 (file)
@@ -646,8 +646,14 @@ static void sbi_send_cpumask_ipi(const struct cpumask *target)
        sbi_send_ipi(target);
 }
 
+static void sbi_ipi_clear(void)
+{
+       csr_clear(CSR_IP, IE_SIE);
+}
+
 static const struct riscv_ipi_ops sbi_ipi_ops = {
-       .ipi_inject = sbi_send_cpumask_ipi
+       .ipi_inject = sbi_send_cpumask_ipi,
+       .ipi_clear = sbi_ipi_clear
 };
 
 void __init sbi_init(void)
index 8c3b59f1f9b802947a39099cf94fb12702e64229..8a12768c09ee4dce9572fbae307b523ca8f7ef3d 100644 (file)
@@ -112,8 +112,6 @@ void riscv_clear_ipi(void)
 {
        if (ipi_ops && ipi_ops->ipi_clear)
                ipi_ops->ipi_clear();
-
-       csr_clear(CSR_IP, IE_SIE);
 }
 EXPORT_SYMBOL_GPL(riscv_clear_ipi);