[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20240925131547.42396-1-luxu.kernel@bytedance.com>
Date: Wed, 25 Sep 2024 21:15:45 +0800
From: Xu Lu <luxu.kernel@...edance.com>
To: paul.walmsley@...ive.com,
palmer@...belt.com,
aou@...s.berkeley.edu,
andy.chiu@...ive.com,
guoren@...nel.org,
christoph.muellner@...ll.eu,
ajones@...tanamicro.com
Cc: linux-riscv@...ts.infradead.org,
linux-kernel@...r.kernel.org,
lihangjing@...edance.com,
dengliang.1214@...edance.com,
xieyongji@...edance.com,
chaiwen.cc@...edance.com,
Xu Lu <luxu.kernel@...edance.com>
Subject: [PATCH v3 0/2] riscv: Idle thread using Zawrs extension
This is the third version of idle thread based on Zawrs extension. We
noticed that Zawrs is supported in v6.11 now and rebased our code on
it. Below is the original description.
This patch series introduces a new implementation of idle thread using
Zawrs extension.
The Zawrs[0] extension introduces two new instructions named WRS.STO and
WRS.NTO in RISC-V. When software registers a reservation set using LR
instruction, a subsequent WRS.STO or WRS.NTO instruction will cause the
hart to stall in a low-power state until a store happens to the
reservation set or an interrupt becomes pending. The difference between
these two instructions is that WRS.STO will terminate stall after an
implementation-defined timeout while WRS.NTO won't.
This patch series implements idle thread using WRS.NTO instruction.
Besides, we found there is no need to send a real IPI to wake up an idle
CPU. Instead, we write IPI information to the reservation set of an idle
CPU to wake it up and let it handle IPI quickly, without going through
tranditional interrupt handling routine.
[0] https://github.com/riscv/riscv-zawrs/blob/main/zawrs.adoc
Xu Lu (2):
riscv: process: Introduce idle thread using Zawrs extension
riscv: Use Zawrs to accelerate IPI to idle cpu
arch/riscv/Kconfig | 10 +++
arch/riscv/include/asm/cpuidle.h | 11 +---
arch/riscv/include/asm/processor.h | 32 +++++++++
arch/riscv/include/asm/smp.h | 14 ++++
arch/riscv/kernel/cpu.c | 5 ++
arch/riscv/kernel/process.c | 102 ++++++++++++++++++++++++++++-
arch/riscv/kernel/smp.c | 51 +++++++++++----
7 files changed, 203 insertions(+), 22 deletions(-)
--
2.20.1
Powered by blists - more mailing lists