[RFC 00/12] riscv: Introduce Pseudo NMI

From: Xu Lu
Date: Mon Oct 23 2023 - 04:29:53 EST


Sorry to resend this patch series as I forgot to Cc the open list before.
Below is formal content.

The existing RISC-V kernel lacks an NMI mechanism as there is still no
ratified resumable NMI extension in RISC-V community, which can not
satisfy some scenarios like high precision perf sampling. There is an
incoming hardware extension called Smrnmi which supports resumable NMI
by providing new control registers to save status when NMI happens.
However, it is still a draft and requires privilege level switches for
kernel to utilize it as NMIs are automatically trapped into machine mode.

This patch series introduces a software pseudo NMI mechanism in RISC-V.
The existing RISC-V kernel disables interrupts via per cpu control
register CSR_STATUS, the SIE bit of which controls the enablement of all
interrupts of whole cpu. When SIE bit is clear, no interrupt is enabled.
This patch series implements NMI by switching interrupt disable way to
another per cpu control register CSR_IE. This register controls the
enablement of each separate interrupt. Each bit of CSR_IE corresponds
to a single major interrupt and a clear bit means disablement of
corresponding interrupt.

To implement pseudo NMI, we switch to CSR_IE masking when disabling
irqs. When interrupts are disabled, all bits of CSR_IE corresponding to
normal interrupts are cleared while bits corresponding to NMIs are still
kept as ones. The SIE bit of CSR_STATUS is now untouched and always kept
as one.

We measured performacne of Pseudo NMI patches based on v6.6-rc4 on SiFive
FU740 Soc with hackbench as our benchmark. The result shows 1.90%
performance degradation.

"hackbench 200 process 1000" (average over 10 runs)
+-----------+----------+------------+
| | v6.6-rc4 | Pseudo NMI |
+-----------+----------+------------+
| time | 251.646s | 256.416s |
+-----------+----------+------------+

The overhead mainly comes from two parts:

1. Saving and restoring CSR_IE register during kernel entry/return.
This part introduces about 0.57% performance overhead.

2. The extra instructions introduced by 'irqs_enabled_ie'. It is a
special value representing normal CSR_IE when irqs are enabled. It is
implemented via ALTERNATIVE to adapt to platforms without PMU. This
part introduces about 1.32% performance overhead.

Limits:

CSR_IE is now used for disabling irqs and any other code should
not touch this register to avoid corrupting irq status, which means
we do not support masking a single interrupt now.

We have tried to fix this by introducing a per cpu variable to save
CSR_IE value when disabling irqs. Then all operatations on CSR_IE
will be redirected to this variable and CSR_IE's value will be
restored from this variable when enabling irqs. Obviously this method
introduces extra memory accesses in hot code path.

TODO:

1. The adaption to hypervisor extension is ongoing.

2. The adaption to advanced interrupt architecture is ongoing.

This version of Pseudo NMI is rebased on v6.6-rc7.

Thanks in advance for comments.

Xu Lu (12):
riscv: Introduce CONFIG_RISCV_PSEUDO_NMI
riscv: Make CSR_IE register part of context
riscv: Switch to CSR_IE masking when disabling irqs
riscv: Switch back to CSR_STATUS masking when going idle
riscv: kvm: Switch back to CSR_STATUS masking when entering guest
riscv: Allow requesting irq as pseudo NMI
riscv: Handle pseudo NMI in arch irq handler
riscv: Enable NMIs during irqs disabled context
riscv: Enable NMIs during exceptions
riscv: Enable NMIs during interrupt handling
riscv: Request pmu overflow interrupt as NMI
riscv: Enable CONFIG_RISCV_PSEUDO_NMI in default

arch/riscv/Kconfig | 10 ++++
arch/riscv/include/asm/csr.h | 17 ++++++
arch/riscv/include/asm/irqflags.h | 91 ++++++++++++++++++++++++++++++
arch/riscv/include/asm/processor.h | 4 ++
arch/riscv/include/asm/ptrace.h | 7 +++
arch/riscv/include/asm/switch_to.h | 7 +++
arch/riscv/kernel/asm-offsets.c | 3 +
arch/riscv/kernel/entry.S | 18 ++++++
arch/riscv/kernel/head.S | 10 ++++
arch/riscv/kernel/irq.c | 17 ++++++
arch/riscv/kernel/process.c | 6 ++
arch/riscv/kernel/suspend_entry.S | 1 +
arch/riscv/kernel/traps.c | 54 ++++++++++++++----
arch/riscv/kvm/vcpu.c | 18 ++++--
drivers/clocksource/timer-clint.c | 4 ++
drivers/clocksource/timer-riscv.c | 4 ++
drivers/irqchip/irq-riscv-intc.c | 66 ++++++++++++++++++++++
drivers/perf/riscv_pmu_sbi.c | 21 ++++++-
18 files changed, 340 insertions(+), 18 deletions(-)

--
2.20.1