blob: 2fa4f7b1813dfab700083172e190bba6db738e13 [file] [log] [blame]
Anup Patelfd7bb4a2021-09-27 17:10:08 +05301// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (C) 2019 Western Digital Corporation or its affiliates.
4 *
5 * Authors:
6 * Anup Patel <anup.patel@wdc.com>
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/kvm_host.h>
15#include <asm/csr.h>
16#include <asm/sbi.h>
17
18static unsigned long vmid_version = 1;
19static unsigned long vmid_next;
20static unsigned long vmid_bits;
21static DEFINE_SPINLOCK(vmid_lock);
22
23void kvm_riscv_stage2_vmid_detect(void)
24{
25 unsigned long old;
26
27 /* Figure-out number of VMID bits in HW */
28 old = csr_read(CSR_HGATP);
29 csr_write(CSR_HGATP, old | HGATP_VMID_MASK);
30 vmid_bits = csr_read(CSR_HGATP);
31 vmid_bits = (vmid_bits & HGATP_VMID_MASK) >> HGATP_VMID_SHIFT;
32 vmid_bits = fls_long(vmid_bits);
33 csr_write(CSR_HGATP, old);
34
35 /* We polluted local TLB so flush all guest TLB */
36 __kvm_riscv_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
43unsigned long kvm_riscv_stage2_vmid_bits(void)
44{
45 return vmid_bits;
46}
47
48int kvm_riscv_stage2_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
57bool kvm_riscv_stage2_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
66void kvm_riscv_stage2_vmid_update(struct kvm_vcpu *vcpu)
67{
Marc Zyngier46808a42021-11-16 16:04:02 +000068 unsigned long i;
Anup Patelfd7bb4a2021-09-27 17:10:08 +053069 struct kvm_vcpu *v;
Anup Patelfd7bb4a2021-09-27 17:10:08 +053070 struct kvm_vmid *vmid = &vcpu->kvm->arch.vmid;
71
72 if (!kvm_riscv_stage2_vmid_ver_changed(vmid))
73 return;
74
75 spin_lock(&vmid_lock);
76
77 /*
78 * We need to re-check the vmid_version here to ensure that if
79 * another vcpu already allocated a valid vmid for this vm.
80 */
81 if (!kvm_riscv_stage2_vmid_ver_changed(vmid)) {
82 spin_unlock(&vmid_lock);
83 return;
84 }
85
86 /* First user of a new VMID version? */
87 if (unlikely(vmid_next == 0)) {
88 WRITE_ONCE(vmid_version, READ_ONCE(vmid_version) + 1);
89 vmid_next = 1;
90
91 /*
92 * We ran out of VMIDs so we increment vmid_version and
93 * start assigning VMIDs from 1.
94 *
95 * This also means existing VMIDs assignement to all Guest
96 * instances is invalid and we have force VMID re-assignement
97 * for all Guest instances. The Guest instances that were not
98 * running will automatically pick-up new VMIDs because will
99 * call kvm_riscv_stage2_vmid_update() whenever they enter
100 * in-kernel run loop. For Guest instances that are already
101 * running, we force VM exits on all host CPUs using IPI and
102 * flush all Guest TLBs.
103 */
Atish Patra26fb7512022-01-20 01:09:18 -0800104 sbi_remote_hfence_gvma(cpu_online_mask, 0, 0);
Anup Patelfd7bb4a2021-09-27 17:10:08 +0530105 }
106
107 vmid->vmid = vmid_next;
108 vmid_next++;
109 vmid_next &= (1 << vmid_bits) - 1;
110
111 WRITE_ONCE(vmid->vmid_version, READ_ONCE(vmid_version));
112
113 spin_unlock(&vmid_lock);
114
115 /* Request stage2 page table update for all VCPUs */
116 kvm_for_each_vcpu(i, v, vcpu->kvm)
117 kvm_make_request(KVM_REQ_UPDATE_HGATP, v);
118}