* [PATCH v4] RISC-V: KVM: Flush VS-stage TLB after VCPU migration for split two-stage TLBs
@ 2025-11-17 8:45 Hui Min Mina Chou
2025-11-19 4:07 ` Nutty.Liu
2025-11-23 6:04 ` Anup Patel
0 siblings, 2 replies; 4+ messages in thread
From: Hui Min Mina Chou @ 2025-11-17 8:45 UTC (permalink / raw)
To: anup, atish.patra, pjw, palmer, aou, alex
Cc: kvm, kvm-riscv, linux-riscv, linux-kernel, tim609, minachou,
ben717, az70021, Radim Krčmář
Most implementations cache the combined result of two-stage
translation, but some, like Andes cores, use split TLBs that
store VS-stage and G-stage entries separately.
On such systems, when a VCPU migrates to another CPU, an additional
HFENCE.VVMA is required to avoid using stale VS-stage entries, which
could otherwise cause guest faults.
Introduce a static key to identify CPUs with split two-stage TLBs.
When enabled, KVM issues an extra HFENCE.VVMA on VCPU migration to
prevent stale VS-stage mappings.
Signed-off-by: Hui Min Mina Chou <minachou@andestech.com>
Signed-off-by: Ben Zong-You Xie <ben717@andestech.com>
Reviewed-by: Radim Krčmář <rkrcmar@ventanamicro.com>
---
Changelog:
v4:
- Rename the patch subject
- Remove the Fixes tag
- Add a static key so that HFENCE.VVMA is issued only on CPUs with
split two-stage TLBs
- Add kvm_riscv_setup_vendor_features() to detect mvendorid/marchid
and enable the key when required
v3:
- Resolved build warning; updated header declaration and call side to
kvm_riscv_local_tlb_sanitize
- Add Radim Krčmář's Reviewed-by tag
(https://lore.kernel.org/all/20251023032517.2527193-1-minachou@andestech.com/)
v2:
- Updated Fixes commit to 92e450507d56
- Renamed function to kvm_riscv_local_tlb_sanitize
(https://lore.kernel.org/all/20251021083105.4029305-1-minachou@andestech.com/)
---
arch/riscv/include/asm/kvm_host.h | 2 ++
arch/riscv/include/asm/kvm_vmid.h | 2 +-
arch/riscv/kvm/main.c | 14 ++++++++++++++
arch/riscv/kvm/vcpu.c | 2 +-
arch/riscv/kvm/vmid.c | 6 +++++-
5 files changed, 23 insertions(+), 3 deletions(-)
diff --git a/arch/riscv/include/asm/kvm_host.h b/arch/riscv/include/asm/kvm_host.h
index d71d3299a335..21abac2f804e 100644
--- a/arch/riscv/include/asm/kvm_host.h
+++ b/arch/riscv/include/asm/kvm_host.h
@@ -323,4 +323,6 @@ bool kvm_riscv_vcpu_stopped(struct kvm_vcpu *vcpu);
void kvm_riscv_vcpu_record_steal_time(struct kvm_vcpu *vcpu);
+DECLARE_STATIC_KEY_FALSE(kvm_riscv_tlb_split_mode);
+
#endif /* __RISCV_KVM_HOST_H__ */
diff --git a/arch/riscv/include/asm/kvm_vmid.h b/arch/riscv/include/asm/kvm_vmid.h
index ab98e1434fb7..75fb6e872ccd 100644
--- a/arch/riscv/include/asm/kvm_vmid.h
+++ b/arch/riscv/include/asm/kvm_vmid.h
@@ -22,6 +22,6 @@ unsigned long kvm_riscv_gstage_vmid_bits(void);
int kvm_riscv_gstage_vmid_init(struct kvm *kvm);
bool kvm_riscv_gstage_vmid_ver_changed(struct kvm_vmid *vmid);
void kvm_riscv_gstage_vmid_update(struct kvm_vcpu *vcpu);
-void kvm_riscv_gstage_vmid_sanitize(struct kvm_vcpu *vcpu);
+void kvm_riscv_local_tlb_sanitize(struct kvm_vcpu *vcpu);
#endif
diff --git a/arch/riscv/kvm/main.c b/arch/riscv/kvm/main.c
index 67c876de74ef..bf0e4f1abe0f 100644
--- a/arch/riscv/kvm/main.c
+++ b/arch/riscv/kvm/main.c
@@ -15,6 +15,18 @@
#include <asm/kvm_nacl.h>
#include <asm/sbi.h>
+DEFINE_STATIC_KEY_FALSE(kvm_riscv_tlb_split_mode);
+
+static void kvm_riscv_setup_vendor_features(void)
+{
+ /* Andes AX66: split two-stage TLBs */
+ if (riscv_cached_mvendorid(0) == ANDES_VENDOR_ID &&
+ (riscv_cached_marchid(0) & 0xFFFF) == 0x8A66) {
+ static_branch_enable(&kvm_riscv_tlb_split_mode);
+ kvm_info("using split two-stage TLBs requiring extra HFENCE.VVMA\n");
+ }
+}
+
long kvm_arch_dev_ioctl(struct file *filp,
unsigned int ioctl, unsigned long arg)
{
@@ -159,6 +171,8 @@ static int __init riscv_kvm_init(void)
kvm_info("AIA available with %d guest external interrupts\n",
kvm_riscv_aia_nr_hgei);
+ kvm_riscv_setup_vendor_features();
+
kvm_register_perf_callbacks(NULL);
rc = kvm_init(sizeof(struct kvm_vcpu), 0, THIS_MODULE);
diff --git a/arch/riscv/kvm/vcpu.c b/arch/riscv/kvm/vcpu.c
index 3ebcfffaa978..796218e4a462 100644
--- a/arch/riscv/kvm/vcpu.c
+++ b/arch/riscv/kvm/vcpu.c
@@ -968,7 +968,7 @@ int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu)
* Note: This should be done after G-stage VMID has been
* updated using kvm_riscv_gstage_vmid_ver_changed()
*/
- kvm_riscv_gstage_vmid_sanitize(vcpu);
+ kvm_riscv_local_tlb_sanitize(vcpu);
trace_kvm_entry(vcpu);
diff --git a/arch/riscv/kvm/vmid.c b/arch/riscv/kvm/vmid.c
index 3b426c800480..1dbd50c67a88 100644
--- a/arch/riscv/kvm/vmid.c
+++ b/arch/riscv/kvm/vmid.c
@@ -125,7 +125,7 @@ void kvm_riscv_gstage_vmid_update(struct kvm_vcpu *vcpu)
kvm_make_request(KVM_REQ_UPDATE_HGATP, v);
}
-void kvm_riscv_gstage_vmid_sanitize(struct kvm_vcpu *vcpu)
+void kvm_riscv_local_tlb_sanitize(struct kvm_vcpu *vcpu)
{
unsigned long vmid;
@@ -146,4 +146,8 @@ void kvm_riscv_gstage_vmid_sanitize(struct kvm_vcpu *vcpu)
vmid = READ_ONCE(vcpu->kvm->arch.vmid.vmid);
kvm_riscv_local_hfence_gvma_vmid_all(vmid);
+
+ /* For split TLB designs, flush VS-stage entries also */
+ if (static_branch_unlikely(&kvm_riscv_tlb_split_mode))
+ kvm_riscv_local_hfence_vvma_all(vmid);
}
--
2.34.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v4] RISC-V: KVM: Flush VS-stage TLB after VCPU migration for split two-stage TLBs
2025-11-17 8:45 [PATCH v4] RISC-V: KVM: Flush VS-stage TLB after VCPU migration for split two-stage TLBs Hui Min Mina Chou
@ 2025-11-19 4:07 ` Nutty.Liu
2025-11-23 6:04 ` Anup Patel
1 sibling, 0 replies; 4+ messages in thread
From: Nutty.Liu @ 2025-11-19 4:07 UTC (permalink / raw)
To: Hui Min Mina Chou, anup, atish.patra, pjw, palmer, aou, alex
Cc: kvm, kvm-riscv, linux-riscv, linux-kernel, tim609, ben717,
az70021, Radim Krčmář
On 11/17/2025 4:45 PM, Hui Min Mina Chou wrote:
> Most implementations cache the combined result of two-stage
> translation, but some, like Andes cores, use split TLBs that
> store VS-stage and G-stage entries separately.
>
> On such systems, when a VCPU migrates to another CPU, an additional
> HFENCE.VVMA is required to avoid using stale VS-stage entries, which
> could otherwise cause guest faults.
>
> Introduce a static key to identify CPUs with split two-stage TLBs.
> When enabled, KVM issues an extra HFENCE.VVMA on VCPU migration to
> prevent stale VS-stage mappings.
>
> Signed-off-by: Hui Min Mina Chou <minachou@andestech.com>
> Signed-off-by: Ben Zong-You Xie <ben717@andestech.com>
> Reviewed-by: Radim Krčmář <rkrcmar@ventanamicro.com>
> ---
> Changelog:
>
> v4:
> - Rename the patch subject
> - Remove the Fixes tag
> - Add a static key so that HFENCE.VVMA is issued only on CPUs with
> split two-stage TLBs
> - Add kvm_riscv_setup_vendor_features() to detect mvendorid/marchid
> and enable the key when required
>
> v3:
> - Resolved build warning; updated header declaration and call side to
> kvm_riscv_local_tlb_sanitize
> - Add Radim Krčmář's Reviewed-by tag
> (https://lore.kernel.org/all/20251023032517.2527193-1-minachou@andestech.com/)
>
> v2:
> - Updated Fixes commit to 92e450507d56
> - Renamed function to kvm_riscv_local_tlb_sanitize
> (https://lore.kernel.org/all/20251021083105.4029305-1-minachou@andestech.com/)
> ---
> arch/riscv/include/asm/kvm_host.h | 2 ++
> arch/riscv/include/asm/kvm_vmid.h | 2 +-
> arch/riscv/kvm/main.c | 14 ++++++++++++++
> arch/riscv/kvm/vcpu.c | 2 +-
> arch/riscv/kvm/vmid.c | 6 +++++-
> 5 files changed, 23 insertions(+), 3 deletions(-)
>
> diff --git a/arch/riscv/include/asm/kvm_host.h b/arch/riscv/include/asm/kvm_host.h
> index d71d3299a335..21abac2f804e 100644
> --- a/arch/riscv/include/asm/kvm_host.h
> +++ b/arch/riscv/include/asm/kvm_host.h
> @@ -323,4 +323,6 @@ bool kvm_riscv_vcpu_stopped(struct kvm_vcpu *vcpu);
>
> void kvm_riscv_vcpu_record_steal_time(struct kvm_vcpu *vcpu);
>
> +DECLARE_STATIC_KEY_FALSE(kvm_riscv_tlb_split_mode);
> +
> #endif /* __RISCV_KVM_HOST_H__ */
> diff --git a/arch/riscv/include/asm/kvm_vmid.h b/arch/riscv/include/asm/kvm_vmid.h
> index ab98e1434fb7..75fb6e872ccd 100644
> --- a/arch/riscv/include/asm/kvm_vmid.h
> +++ b/arch/riscv/include/asm/kvm_vmid.h
> @@ -22,6 +22,6 @@ unsigned long kvm_riscv_gstage_vmid_bits(void);
> int kvm_riscv_gstage_vmid_init(struct kvm *kvm);
> bool kvm_riscv_gstage_vmid_ver_changed(struct kvm_vmid *vmid);
> void kvm_riscv_gstage_vmid_update(struct kvm_vcpu *vcpu);
> -void kvm_riscv_gstage_vmid_sanitize(struct kvm_vcpu *vcpu);
> +void kvm_riscv_local_tlb_sanitize(struct kvm_vcpu *vcpu);
>
> #endif
> diff --git a/arch/riscv/kvm/main.c b/arch/riscv/kvm/main.c
> index 67c876de74ef..bf0e4f1abe0f 100644
> --- a/arch/riscv/kvm/main.c
> +++ b/arch/riscv/kvm/main.c
> @@ -15,6 +15,18 @@
> #include <asm/kvm_nacl.h>
> #include <asm/sbi.h>
>
> +DEFINE_STATIC_KEY_FALSE(kvm_riscv_tlb_split_mode);
> +
> +static void kvm_riscv_setup_vendor_features(void)
> +{
> + /* Andes AX66: split two-stage TLBs */
> + if (riscv_cached_mvendorid(0) == ANDES_VENDOR_ID &&
> + (riscv_cached_marchid(0) & 0xFFFF) == 0x8A66) {
How about to define a macro like 'ANDES_ARCH_ID' instead of '0x8A66'
(like 'ANDES_VENDOR_ID') ?
Otherwise,
Reviewed-by: Nutty Liu <nutty.liu@hotmail.com>
Thanks,
Nutty
> + static_branch_enable(&kvm_riscv_tlb_split_mode);
> + kvm_info("using split two-stage TLBs requiring extra HFENCE.VVMA\n");
> + }
> +}
> +
> long kvm_arch_dev_ioctl(struct file *filp,
> unsigned int ioctl, unsigned long arg)
> {
> @@ -159,6 +171,8 @@ static int __init riscv_kvm_init(void)
> kvm_info("AIA available with %d guest external interrupts\n",
> kvm_riscv_aia_nr_hgei);
>
> + kvm_riscv_setup_vendor_features();
> +
> kvm_register_perf_callbacks(NULL);
>
> rc = kvm_init(sizeof(struct kvm_vcpu), 0, THIS_MODULE);
> diff --git a/arch/riscv/kvm/vcpu.c b/arch/riscv/kvm/vcpu.c
> index 3ebcfffaa978..796218e4a462 100644
> --- a/arch/riscv/kvm/vcpu.c
> +++ b/arch/riscv/kvm/vcpu.c
> @@ -968,7 +968,7 @@ int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu)
> * Note: This should be done after G-stage VMID has been
> * updated using kvm_riscv_gstage_vmid_ver_changed()
> */
> - kvm_riscv_gstage_vmid_sanitize(vcpu);
> + kvm_riscv_local_tlb_sanitize(vcpu);
>
> trace_kvm_entry(vcpu);
>
> diff --git a/arch/riscv/kvm/vmid.c b/arch/riscv/kvm/vmid.c
> index 3b426c800480..1dbd50c67a88 100644
> --- a/arch/riscv/kvm/vmid.c
> +++ b/arch/riscv/kvm/vmid.c
> @@ -125,7 +125,7 @@ void kvm_riscv_gstage_vmid_update(struct kvm_vcpu *vcpu)
> kvm_make_request(KVM_REQ_UPDATE_HGATP, v);
> }
>
> -void kvm_riscv_gstage_vmid_sanitize(struct kvm_vcpu *vcpu)
> +void kvm_riscv_local_tlb_sanitize(struct kvm_vcpu *vcpu)
> {
> unsigned long vmid;
>
> @@ -146,4 +146,8 @@ void kvm_riscv_gstage_vmid_sanitize(struct kvm_vcpu *vcpu)
>
> vmid = READ_ONCE(vcpu->kvm->arch.vmid.vmid);
> kvm_riscv_local_hfence_gvma_vmid_all(vmid);
> +
> + /* For split TLB designs, flush VS-stage entries also */
> + if (static_branch_unlikely(&kvm_riscv_tlb_split_mode))
> + kvm_riscv_local_hfence_vvma_all(vmid);
> }
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v4] RISC-V: KVM: Flush VS-stage TLB after VCPU migration for split two-stage TLBs
2025-11-17 8:45 [PATCH v4] RISC-V: KVM: Flush VS-stage TLB after VCPU migration for split two-stage TLBs Hui Min Mina Chou
2025-11-19 4:07 ` Nutty.Liu
@ 2025-11-23 6:04 ` Anup Patel
2025-11-28 3:59 ` Mina Chou
1 sibling, 1 reply; 4+ messages in thread
From: Anup Patel @ 2025-11-23 6:04 UTC (permalink / raw)
To: Hui Min Mina Chou
Cc: atish.patra, pjw, palmer, aou, alex, kvm, kvm-riscv, linux-riscv,
linux-kernel, tim609, ben717, az70021,
Radim Krčmář
A shorter patch subject can be:
"RISC-V: KVM: Flush VS-stage TLB after VCPU migration for Andes cores"
On Mon, Nov 17, 2025 at 2:19 PM Hui Min Mina Chou
<minachou@andestech.com> wrote:
>
> Most implementations cache the combined result of two-stage
> translation, but some, like Andes cores, use split TLBs that
> store VS-stage and G-stage entries separately.
>
> On such systems, when a VCPU migrates to another CPU, an additional
> HFENCE.VVMA is required to avoid using stale VS-stage entries, which
> could otherwise cause guest faults.
>
> Introduce a static key to identify CPUs with split two-stage TLBs.
> When enabled, KVM issues an extra HFENCE.VVMA on VCPU migration to
> prevent stale VS-stage mappings.
>
> Signed-off-by: Hui Min Mina Chou <minachou@andestech.com>
> Signed-off-by: Ben Zong-You Xie <ben717@andestech.com>
> Reviewed-by: Radim Krčmář <rkrcmar@ventanamicro.com>
> ---
> Changelog:
>
> v4:
> - Rename the patch subject
> - Remove the Fixes tag
> - Add a static key so that HFENCE.VVMA is issued only on CPUs with
> split two-stage TLBs
> - Add kvm_riscv_setup_vendor_features() to detect mvendorid/marchid
> and enable the key when required
>
> v3:
> - Resolved build warning; updated header declaration and call side to
> kvm_riscv_local_tlb_sanitize
> - Add Radim Krčmář's Reviewed-by tag
> (https://lore.kernel.org/all/20251023032517.2527193-1-minachou@andestech.com/)
>
> v2:
> - Updated Fixes commit to 92e450507d56
> - Renamed function to kvm_riscv_local_tlb_sanitize
> (https://lore.kernel.org/all/20251021083105.4029305-1-minachou@andestech.com/)
> ---
> arch/riscv/include/asm/kvm_host.h | 2 ++
> arch/riscv/include/asm/kvm_vmid.h | 2 +-
> arch/riscv/kvm/main.c | 14 ++++++++++++++
> arch/riscv/kvm/vcpu.c | 2 +-
> arch/riscv/kvm/vmid.c | 6 +++++-
> 5 files changed, 23 insertions(+), 3 deletions(-)
>
> diff --git a/arch/riscv/include/asm/kvm_host.h b/arch/riscv/include/asm/kvm_host.h
> index d71d3299a335..21abac2f804e 100644
> --- a/arch/riscv/include/asm/kvm_host.h
> +++ b/arch/riscv/include/asm/kvm_host.h
> @@ -323,4 +323,6 @@ bool kvm_riscv_vcpu_stopped(struct kvm_vcpu *vcpu);
>
> void kvm_riscv_vcpu_record_steal_time(struct kvm_vcpu *vcpu);
>
> +DECLARE_STATIC_KEY_FALSE(kvm_riscv_tlb_split_mode);
> +
"kvm_riscv_vsstage_tlb_no_gpa" is a better name for the static key.
> #endif /* __RISCV_KVM_HOST_H__ */
> diff --git a/arch/riscv/include/asm/kvm_vmid.h b/arch/riscv/include/asm/kvm_vmid.h
> index ab98e1434fb7..75fb6e872ccd 100644
> --- a/arch/riscv/include/asm/kvm_vmid.h
> +++ b/arch/riscv/include/asm/kvm_vmid.h
> @@ -22,6 +22,6 @@ unsigned long kvm_riscv_gstage_vmid_bits(void);
> int kvm_riscv_gstage_vmid_init(struct kvm *kvm);
> bool kvm_riscv_gstage_vmid_ver_changed(struct kvm_vmid *vmid);
> void kvm_riscv_gstage_vmid_update(struct kvm_vcpu *vcpu);
> -void kvm_riscv_gstage_vmid_sanitize(struct kvm_vcpu *vcpu);
> +void kvm_riscv_local_tlb_sanitize(struct kvm_vcpu *vcpu);
kvm_riscv_local_tlb_sanitize() must be declared in kvm_tlb.h
>
> #endif
> diff --git a/arch/riscv/kvm/main.c b/arch/riscv/kvm/main.c
> index 67c876de74ef..bf0e4f1abe0f 100644
> --- a/arch/riscv/kvm/main.c
> +++ b/arch/riscv/kvm/main.c
> @@ -15,6 +15,18 @@
> #include <asm/kvm_nacl.h>
> #include <asm/sbi.h>
>
> +DEFINE_STATIC_KEY_FALSE(kvm_riscv_tlb_split_mode);
> +
> +static void kvm_riscv_setup_vendor_features(void)
> +{
> + /* Andes AX66: split two-stage TLBs */
> + if (riscv_cached_mvendorid(0) == ANDES_VENDOR_ID &&
> + (riscv_cached_marchid(0) & 0xFFFF) == 0x8A66) {
> + static_branch_enable(&kvm_riscv_tlb_split_mode);
> + kvm_info("using split two-stage TLBs requiring extra HFENCE.VVMA\n");
I think the "VS-stage TLB does not cache guest physical addresses
and VMID" message is more clear.
> + }
> +}
> +
> long kvm_arch_dev_ioctl(struct file *filp,
> unsigned int ioctl, unsigned long arg)
> {
> @@ -159,6 +171,8 @@ static int __init riscv_kvm_init(void)
> kvm_info("AIA available with %d guest external interrupts\n",
> kvm_riscv_aia_nr_hgei);
>
> + kvm_riscv_setup_vendor_features();
> +
> kvm_register_perf_callbacks(NULL);
>
> rc = kvm_init(sizeof(struct kvm_vcpu), 0, THIS_MODULE);
> diff --git a/arch/riscv/kvm/vcpu.c b/arch/riscv/kvm/vcpu.c
> index 3ebcfffaa978..796218e4a462 100644
> --- a/arch/riscv/kvm/vcpu.c
> +++ b/arch/riscv/kvm/vcpu.c
> @@ -968,7 +968,7 @@ int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu)
> * Note: This should be done after G-stage VMID has been
> * updated using kvm_riscv_gstage_vmid_ver_changed()
> */
> - kvm_riscv_gstage_vmid_sanitize(vcpu);
> + kvm_riscv_local_tlb_sanitize(vcpu);
>
> trace_kvm_entry(vcpu);
>
> diff --git a/arch/riscv/kvm/vmid.c b/arch/riscv/kvm/vmid.c
> index 3b426c800480..1dbd50c67a88 100644
> --- a/arch/riscv/kvm/vmid.c
> +++ b/arch/riscv/kvm/vmid.c
> @@ -125,7 +125,7 @@ void kvm_riscv_gstage_vmid_update(struct kvm_vcpu *vcpu)
> kvm_make_request(KVM_REQ_UPDATE_HGATP, v);
> }
>
> -void kvm_riscv_gstage_vmid_sanitize(struct kvm_vcpu *vcpu)
> +void kvm_riscv_local_tlb_sanitize(struct kvm_vcpu *vcpu)
> {
> unsigned long vmid;
>
> @@ -146,4 +146,8 @@ void kvm_riscv_gstage_vmid_sanitize(struct kvm_vcpu *vcpu)
>
> vmid = READ_ONCE(vcpu->kvm->arch.vmid.vmid);
> kvm_riscv_local_hfence_gvma_vmid_all(vmid);
> +
> + /* For split TLB designs, flush VS-stage entries also */
> + if (static_branch_unlikely(&kvm_riscv_tlb_split_mode))
> + kvm_riscv_local_hfence_vvma_all(vmid);
> }
kvm_riscv_local_tlb_sanitize() implementation must be
moved to kvm/tlb.c
> --
> 2.34.1
>
I will take care of the above comments at the time of merging
this patch. If any further changes are required then I can squash
changes before the end of next week.
Queued this patch for Linux-6.19.
Thanks,
Anup
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v4] RISC-V: KVM: Flush VS-stage TLB after VCPU migration for split two-stage TLBs
2025-11-23 6:04 ` Anup Patel
@ 2025-11-28 3:59 ` Mina Chou
0 siblings, 0 replies; 4+ messages in thread
From: Mina Chou @ 2025-11-28 3:59 UTC (permalink / raw)
To: Anup Patel
Cc: atish.patra, pjw, palmer, aou, alex, kvm, kvm-riscv, linux-riscv,
linux-kernel, tim609, ben717, az70021, rkrcmar, nutty.liu
On Sun, Nov 23, 2025 at 11:34:28AM +0530, Anup Patel wrote:
> [EXTERNAL MAIL]
>
> A shorter patch subject can be:
> "RISC-V: KVM: Flush VS-stage TLB after VCPU migration for Andes cores"
>
> On Mon, Nov 17, 2025 at 2:19???PM Hui Min Mina Chou
> <minachou@andestech.com> wrote:
> >
> > Most implementations cache the combined result of two-stage
> > translation, but some, like Andes cores, use split TLBs that
> > store VS-stage and G-stage entries separately.
> >
> > On such systems, when a VCPU migrates to another CPU, an additional
> > HFENCE.VVMA is required to avoid using stale VS-stage entries, which
> > could otherwise cause guest faults.
> >
> > Introduce a static key to identify CPUs with split two-stage TLBs.
> > When enabled, KVM issues an extra HFENCE.VVMA on VCPU migration to
> > prevent stale VS-stage mappings.
> >
> > Signed-off-by: Hui Min Mina Chou <minachou@andestech.com>
> > Signed-off-by: Ben Zong-You Xie <ben717@andestech.com>
> > Reviewed-by: Radim Kr??m???? <rkrcmar@ventanamicro.com>
> > ---
> > Changelog:
> >
> > v4:
> > - Rename the patch subject
> > - Remove the Fixes tag
> > - Add a static key so that HFENCE.VVMA is issued only on CPUs with
> > split two-stage TLBs
> > - Add kvm_riscv_setup_vendor_features() to detect mvendorid/marchid
> > and enable the key when required
> >
> > v3:
> > - Resolved build warning; updated header declaration and call side to
> > kvm_riscv_local_tlb_sanitize
> > - Add Radim Kr??m????'s Reviewed-by tag
> > (https://lore.kernel.org/all/20251023032517.2527193-1-minachou@andestech.com/)
> >
> > v2:
> > - Updated Fixes commit to 92e450507d56
> > - Renamed function to kvm_riscv_local_tlb_sanitize
> > (https://lore.kernel.org/all/20251021083105.4029305-1-minachou@andestech.com/)
> > ---
> > arch/riscv/include/asm/kvm_host.h | 2 ++
> > arch/riscv/include/asm/kvm_vmid.h | 2 +-
> > arch/riscv/kvm/main.c | 14 ++++++++++++++
> > arch/riscv/kvm/vcpu.c | 2 +-
> > arch/riscv/kvm/vmid.c | 6 +++++-
> > 5 files changed, 23 insertions(+), 3 deletions(-)
> >
> > diff --git a/arch/riscv/include/asm/kvm_host.h b/arch/riscv/include/asm/kvm_host.h
> > index d71d3299a335..21abac2f804e 100644
> > --- a/arch/riscv/include/asm/kvm_host.h
> > +++ b/arch/riscv/include/asm/kvm_host.h
> > @@ -323,4 +323,6 @@ bool kvm_riscv_vcpu_stopped(struct kvm_vcpu *vcpu);
> >
> > void kvm_riscv_vcpu_record_steal_time(struct kvm_vcpu *vcpu);
> >
> > +DECLARE_STATIC_KEY_FALSE(kvm_riscv_tlb_split_mode);
> > +
>
> "kvm_riscv_vsstage_tlb_no_gpa" is a better name for the static key.
>
> > #endif /* __RISCV_KVM_HOST_H__ */
> > diff --git a/arch/riscv/include/asm/kvm_vmid.h b/arch/riscv/include/asm/kvm_vmid.h
> > index ab98e1434fb7..75fb6e872ccd 100644
> > --- a/arch/riscv/include/asm/kvm_vmid.h
> > +++ b/arch/riscv/include/asm/kvm_vmid.h
> > @@ -22,6 +22,6 @@ unsigned long kvm_riscv_gstage_vmid_bits(void);
> > int kvm_riscv_gstage_vmid_init(struct kvm *kvm);
> > bool kvm_riscv_gstage_vmid_ver_changed(struct kvm_vmid *vmid);
> > void kvm_riscv_gstage_vmid_update(struct kvm_vcpu *vcpu);
> > -void kvm_riscv_gstage_vmid_sanitize(struct kvm_vcpu *vcpu);
> > +void kvm_riscv_local_tlb_sanitize(struct kvm_vcpu *vcpu);
>
> kvm_riscv_local_tlb_sanitize() must be declared in kvm_tlb.h
>
> >
> > #endif
> > diff --git a/arch/riscv/kvm/main.c b/arch/riscv/kvm/main.c
> > index 67c876de74ef..bf0e4f1abe0f 100644
> > --- a/arch/riscv/kvm/main.c
> > +++ b/arch/riscv/kvm/main.c
> > @@ -15,6 +15,18 @@
> > #include <asm/kvm_nacl.h>
> > #include <asm/sbi.h>
> >
> > +DEFINE_STATIC_KEY_FALSE(kvm_riscv_tlb_split_mode);
> > +
> > +static void kvm_riscv_setup_vendor_features(void)
> > +{
> > + /* Andes AX66: split two-stage TLBs */
> > + if (riscv_cached_mvendorid(0) == ANDES_VENDOR_ID &&
> > + (riscv_cached_marchid(0) & 0xFFFF) == 0x8A66) {
> > + static_branch_enable(&kvm_riscv_tlb_split_mode);
> > + kvm_info("using split two-stage TLBs requiring extra HFENCE.VVMA\n");
>
> I think the "VS-stage TLB does not cache guest physical addresses
> and VMID" message is more clear.
>
> > + }
> > +}
> > +
> > long kvm_arch_dev_ioctl(struct file *filp,
> > unsigned int ioctl, unsigned long arg)
> > {
> > @@ -159,6 +171,8 @@ static int __init riscv_kvm_init(void)
> > kvm_info("AIA available with %d guest external interrupts\n",
> > kvm_riscv_aia_nr_hgei);
> >
> > + kvm_riscv_setup_vendor_features();
> > +
> > kvm_register_perf_callbacks(NULL);
> >
> > rc = kvm_init(sizeof(struct kvm_vcpu), 0, THIS_MODULE);
> > diff --git a/arch/riscv/kvm/vcpu.c b/arch/riscv/kvm/vcpu.c
> > index 3ebcfffaa978..796218e4a462 100644
> > --- a/arch/riscv/kvm/vcpu.c
> > +++ b/arch/riscv/kvm/vcpu.c
> > @@ -968,7 +968,7 @@ int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu)
> > * Note: This should be done after G-stage VMID has been
> > * updated using kvm_riscv_gstage_vmid_ver_changed()
> > */
> > - kvm_riscv_gstage_vmid_sanitize(vcpu);
> > + kvm_riscv_local_tlb_sanitize(vcpu);
> >
> > trace_kvm_entry(vcpu);
> >
> > diff --git a/arch/riscv/kvm/vmid.c b/arch/riscv/kvm/vmid.c
> > index 3b426c800480..1dbd50c67a88 100644
> > --- a/arch/riscv/kvm/vmid.c
> > +++ b/arch/riscv/kvm/vmid.c
> > @@ -125,7 +125,7 @@ void kvm_riscv_gstage_vmid_update(struct kvm_vcpu *vcpu)
> > kvm_make_request(KVM_REQ_UPDATE_HGATP, v);
> > }
> >
> > -void kvm_riscv_gstage_vmid_sanitize(struct kvm_vcpu *vcpu)
> > +void kvm_riscv_local_tlb_sanitize(struct kvm_vcpu *vcpu)
> > {
> > unsigned long vmid;
> >
> > @@ -146,4 +146,8 @@ void kvm_riscv_gstage_vmid_sanitize(struct kvm_vcpu *vcpu)
> >
> > vmid = READ_ONCE(vcpu->kvm->arch.vmid.vmid);
> > kvm_riscv_local_hfence_gvma_vmid_all(vmid);
> > +
> > + /* For split TLB designs, flush VS-stage entries also */
> > + if (static_branch_unlikely(&kvm_riscv_tlb_split_mode))
> > + kvm_riscv_local_hfence_vvma_all(vmid);
> > }
>
> kvm_riscv_local_tlb_sanitize() implementation must be
> moved to kvm/tlb.c
>
> > --
> > 2.34.1
> >
>
> I will take care of the above comments at the time of merging
> this patch. If any further changes are required then I can squash
> changes before the end of next week.
>
> Queued this patch for Linux-6.19.
>
> Thanks,
> Anup
Hi Anup,
I won't be making any further changes to this patch. Thanks a lot
for your help and suggestions!
Regarding Nutty's comment about using a macro for ANDES_ARCH_ID,
we'll clean up the Andes CPU-related defines and update that part
in a future patch. Thanks also to Nutty for the suggestion!
Thanks again!
Mina
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-11-28 4:02 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-17 8:45 [PATCH v4] RISC-V: KVM: Flush VS-stage TLB after VCPU migration for split two-stage TLBs Hui Min Mina Chou
2025-11-19 4:07 ` Nutty.Liu
2025-11-23 6:04 ` Anup Patel
2025-11-28 3:59 ` Mina Chou
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox