Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/riscv/kvm/vmid.c
29521 views
1
// SPDX-License-Identifier: GPL-2.0
2
/*
3
* Copyright (C) 2019 Western Digital Corporation or its affiliates.
4
*
5
* Authors:
6
* Anup Patel <[email protected]>
7
*/
8
9
#include <linux/bitops.h>
10
#include <linux/cpumask.h>
11
#include <linux/errno.h>
12
#include <linux/err.h>
13
#include <linux/module.h>
14
#include <linux/smp.h>
15
#include <linux/kvm_host.h>
16
#include <asm/csr.h>
17
#include <asm/kvm_mmu.h>
18
#include <asm/kvm_tlb.h>
19
#include <asm/kvm_vmid.h>
20
21
static unsigned long vmid_version = 1;
22
static unsigned long vmid_next;
23
static unsigned long vmid_bits __ro_after_init;
24
static DEFINE_SPINLOCK(vmid_lock);
25
26
void __init kvm_riscv_gstage_vmid_detect(void)
27
{
28
/* Figure-out number of VMID bits in HW */
29
csr_write(CSR_HGATP, (kvm_riscv_gstage_mode << HGATP_MODE_SHIFT) | HGATP_VMID);
30
vmid_bits = csr_read(CSR_HGATP);
31
vmid_bits = (vmid_bits & HGATP_VMID) >> HGATP_VMID_SHIFT;
32
vmid_bits = fls_long(vmid_bits);
33
csr_write(CSR_HGATP, 0);
34
35
/* We polluted local TLB so flush all guest TLB */
36
kvm_riscv_local_hfence_gvma_all();
37
38
/* We don't use VMID bits if they are not sufficient */
39
if ((1UL << vmid_bits) < num_possible_cpus())
40
vmid_bits = 0;
41
}
42
43
unsigned long kvm_riscv_gstage_vmid_bits(void)
44
{
45
return vmid_bits;
46
}
47
48
int kvm_riscv_gstage_vmid_init(struct kvm *kvm)
49
{
50
/* Mark the initial VMID and VMID version invalid */
51
kvm->arch.vmid.vmid_version = 0;
52
kvm->arch.vmid.vmid = 0;
53
54
return 0;
55
}
56
57
bool kvm_riscv_gstage_vmid_ver_changed(struct kvm_vmid *vmid)
58
{
59
if (!vmid_bits)
60
return false;
61
62
return unlikely(READ_ONCE(vmid->vmid_version) !=
63
READ_ONCE(vmid_version));
64
}
65
66
static void __local_hfence_gvma_all(void *info)
67
{
68
kvm_riscv_local_hfence_gvma_all();
69
}
70
71
void kvm_riscv_gstage_vmid_update(struct kvm_vcpu *vcpu)
72
{
73
unsigned long i;
74
struct kvm_vcpu *v;
75
struct kvm_vmid *vmid = &vcpu->kvm->arch.vmid;
76
77
if (!kvm_riscv_gstage_vmid_ver_changed(vmid))
78
return;
79
80
spin_lock(&vmid_lock);
81
82
/*
83
* We need to re-check the vmid_version here to ensure that if
84
* another vcpu already allocated a valid vmid for this vm.
85
*/
86
if (!kvm_riscv_gstage_vmid_ver_changed(vmid)) {
87
spin_unlock(&vmid_lock);
88
return;
89
}
90
91
/* First user of a new VMID version? */
92
if (unlikely(vmid_next == 0)) {
93
WRITE_ONCE(vmid_version, READ_ONCE(vmid_version) + 1);
94
vmid_next = 1;
95
96
/*
97
* We ran out of VMIDs so we increment vmid_version and
98
* start assigning VMIDs from 1.
99
*
100
* This also means existing VMIDs assignment to all Guest
101
* instances is invalid and we have force VMID re-assignement
102
* for all Guest instances. The Guest instances that were not
103
* running will automatically pick-up new VMIDs because will
104
* call kvm_riscv_gstage_vmid_update() whenever they enter
105
* in-kernel run loop. For Guest instances that are already
106
* running, we force VM exits on all host CPUs using IPI and
107
* flush all Guest TLBs.
108
*/
109
on_each_cpu_mask(cpu_online_mask, __local_hfence_gvma_all,
110
NULL, 1);
111
}
112
113
vmid->vmid = vmid_next;
114
vmid_next++;
115
vmid_next &= (1 << vmid_bits) - 1;
116
117
WRITE_ONCE(vmid->vmid_version, READ_ONCE(vmid_version));
118
119
spin_unlock(&vmid_lock);
120
121
/* Request G-stage page table update for all VCPUs */
122
kvm_for_each_vcpu(i, v, vcpu->kvm)
123
kvm_make_request(KVM_REQ_UPDATE_HGATP, v);
124
}
125
126
void kvm_riscv_gstage_vmid_sanitize(struct kvm_vcpu *vcpu)
127
{
128
unsigned long vmid;
129
130
if (!kvm_riscv_gstage_vmid_bits() ||
131
vcpu->arch.last_exit_cpu == vcpu->cpu)
132
return;
133
134
/*
135
* On RISC-V platforms with hardware VMID support, we share same
136
* VMID for all VCPUs of a particular Guest/VM. This means we might
137
* have stale G-stage TLB entries on the current Host CPU due to
138
* some other VCPU of the same Guest which ran previously on the
139
* current Host CPU.
140
*
141
* To cleanup stale TLB entries, we simply flush all G-stage TLB
142
* entries by VMID whenever underlying Host CPU changes for a VCPU.
143
*/
144
145
vmid = READ_ONCE(vcpu->kvm->arch.vmid.vmid);
146
kvm_riscv_local_hfence_gvma_vmid_all(vmid);
147
}
148
149