blob: 1fa088854cb66e6833d11aec91ff2f569a5587b1 [file] [log] [blame]
Sanjay Lal669e8462012-11-21 18:34:02 -08001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * KVM/MIPS: MIPS specific KVM APIs
7 *
8 * Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved.
9 * Authors: Sanjay Lal <sanjayl@kymasys.com>
Deng-Cheng Zhud116e812014-06-26 12:11:34 -070010 */
Sanjay Lal669e8462012-11-21 18:34:02 -080011
James Hogan05108702016-06-15 19:29:56 +010012#include <linux/bitops.h>
Sanjay Lal669e8462012-11-21 18:34:02 -080013#include <linux/errno.h>
14#include <linux/err.h>
James Hogan98e91b82014-11-18 14:09:12 +000015#include <linux/kdebug.h>
Sanjay Lal669e8462012-11-21 18:34:02 -080016#include <linux/module.h>
James Hogand852b5f2016-10-19 00:24:27 +010017#include <linux/uaccess.h>
Sanjay Lal669e8462012-11-21 18:34:02 -080018#include <linux/vmalloc.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010019#include <linux/sched/signal.h>
Sanjay Lal669e8462012-11-21 18:34:02 -080020#include <linux/fs.h>
21#include <linux/bootmem.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010022
James Hoganf7982172015-02-04 17:06:37 +000023#include <asm/fpu.h>
Sanjay Lal669e8462012-11-21 18:34:02 -080024#include <asm/page.h>
25#include <asm/cacheflush.h>
26#include <asm/mmu_context.h>
James Hogan06c158c2015-05-01 13:50:18 +010027#include <asm/pgalloc.h>
James Hoganc4c6f2c2015-02-04 10:52:03 +000028#include <asm/pgtable.h>
Sanjay Lal669e8462012-11-21 18:34:02 -080029
30#include <linux/kvm_host.h>
31
Deng-Cheng Zhud7d5b052014-06-26 12:11:38 -070032#include "interrupt.h"
33#include "commpage.h"
Sanjay Lal669e8462012-11-21 18:34:02 -080034
35#define CREATE_TRACE_POINTS
36#include "trace.h"
37
38#ifndef VECTORSPACING
39#define VECTORSPACING 0x100 /* for EI/VI mode */
40#endif
41
Deng-Cheng Zhud116e812014-06-26 12:11:34 -070042#define VCPU_STAT(x) offsetof(struct kvm_vcpu, stat.x)
Sanjay Lal669e8462012-11-21 18:34:02 -080043struct kvm_stats_debugfs_item debugfs_entries[] = {
Deng-Cheng Zhud116e812014-06-26 12:11:34 -070044 { "wait", VCPU_STAT(wait_exits), KVM_STAT_VCPU },
45 { "cache", VCPU_STAT(cache_exits), KVM_STAT_VCPU },
46 { "signal", VCPU_STAT(signal_exits), KVM_STAT_VCPU },
47 { "interrupt", VCPU_STAT(int_exits), KVM_STAT_VCPU },
48 { "cop_unsuable", VCPU_STAT(cop_unusable_exits), KVM_STAT_VCPU },
49 { "tlbmod", VCPU_STAT(tlbmod_exits), KVM_STAT_VCPU },
50 { "tlbmiss_ld", VCPU_STAT(tlbmiss_ld_exits), KVM_STAT_VCPU },
51 { "tlbmiss_st", VCPU_STAT(tlbmiss_st_exits), KVM_STAT_VCPU },
52 { "addrerr_st", VCPU_STAT(addrerr_st_exits), KVM_STAT_VCPU },
53 { "addrerr_ld", VCPU_STAT(addrerr_ld_exits), KVM_STAT_VCPU },
54 { "syscall", VCPU_STAT(syscall_exits), KVM_STAT_VCPU },
55 { "resvd_inst", VCPU_STAT(resvd_inst_exits), KVM_STAT_VCPU },
56 { "break_inst", VCPU_STAT(break_inst_exits), KVM_STAT_VCPU },
James Hogan0a560422015-02-06 16:03:57 +000057 { "trap_inst", VCPU_STAT(trap_inst_exits), KVM_STAT_VCPU },
James Hoganc2537ed2015-02-06 10:56:27 +000058 { "msa_fpe", VCPU_STAT(msa_fpe_exits), KVM_STAT_VCPU },
James Hogan1c0cd662015-02-06 10:56:27 +000059 { "fpe", VCPU_STAT(fpe_exits), KVM_STAT_VCPU },
James Hoganc2537ed2015-02-06 10:56:27 +000060 { "msa_disabled", VCPU_STAT(msa_disabled_exits), KVM_STAT_VCPU },
Deng-Cheng Zhud116e812014-06-26 12:11:34 -070061 { "flush_dcache", VCPU_STAT(flush_dcache_exits), KVM_STAT_VCPU },
James Hogana7244922017-03-14 10:15:18 +000062#ifdef CONFIG_KVM_MIPS_VZ
63 { "vz_gpsi", VCPU_STAT(vz_gpsi_exits), KVM_STAT_VCPU },
64 { "vz_gsfc", VCPU_STAT(vz_gsfc_exits), KVM_STAT_VCPU },
65 { "vz_hc", VCPU_STAT(vz_hc_exits), KVM_STAT_VCPU },
66 { "vz_grr", VCPU_STAT(vz_grr_exits), KVM_STAT_VCPU },
67 { "vz_gva", VCPU_STAT(vz_gva_exits), KVM_STAT_VCPU },
68 { "vz_ghfc", VCPU_STAT(vz_ghfc_exits), KVM_STAT_VCPU },
69 { "vz_gpa", VCPU_STAT(vz_gpa_exits), KVM_STAT_VCPU },
70 { "vz_resvd", VCPU_STAT(vz_resvd_exits), KVM_STAT_VCPU },
71#endif
Paolo Bonzinif7819512015-02-04 18:20:58 +010072 { "halt_successful_poll", VCPU_STAT(halt_successful_poll), KVM_STAT_VCPU },
Paolo Bonzini62bea5b2015-09-15 18:27:57 +020073 { "halt_attempted_poll", VCPU_STAT(halt_attempted_poll), KVM_STAT_VCPU },
Christian Borntraeger3491caf2016-05-13 12:16:35 +020074 { "halt_poll_invalid", VCPU_STAT(halt_poll_invalid), KVM_STAT_VCPU },
Deng-Cheng Zhud116e812014-06-26 12:11:34 -070075 { "halt_wakeup", VCPU_STAT(halt_wakeup), KVM_STAT_VCPU },
Sanjay Lal669e8462012-11-21 18:34:02 -080076 {NULL}
77};
78
Deng-Cheng Zhud116e812014-06-26 12:11:34 -070079/*
80 * XXXKYMA: We are simulatoring a processor that has the WII bit set in
81 * Config7, so we are "runnable" if interrupts are pending
Sanjay Lal669e8462012-11-21 18:34:02 -080082 */
83int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
84{
85 return !!(vcpu->arch.pending_exceptions);
86}
87
88int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
89{
90 return 1;
91}
92
Radim Krčmář13a34e02014-08-28 15:13:03 +020093int kvm_arch_hardware_enable(void)
Sanjay Lal669e8462012-11-21 18:34:02 -080094{
James Hoganedab4fe2017-03-14 10:15:23 +000095 return kvm_mips_callbacks->hardware_enable();
96}
97
98void kvm_arch_hardware_disable(void)
99{
100 kvm_mips_callbacks->hardware_disable();
Sanjay Lal669e8462012-11-21 18:34:02 -0800101}
102
Sanjay Lal669e8462012-11-21 18:34:02 -0800103int kvm_arch_hardware_setup(void)
104{
105 return 0;
106}
107
Sanjay Lal669e8462012-11-21 18:34:02 -0800108void kvm_arch_check_processor_compat(void *rtn)
109{
Deng-Cheng Zhud98403a2014-06-26 12:11:36 -0700110 *(int *)rtn = 0;
Sanjay Lal669e8462012-11-21 18:34:02 -0800111}
112
Sanjay Lal669e8462012-11-21 18:34:02 -0800113int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
114{
James Hogana8a3c422017-03-14 10:15:19 +0000115 switch (type) {
116 case KVM_VM_MIPS_TE:
117 break;
118 default:
119 /* Unsupported KVM type */
120 return -EINVAL;
121 };
122
James Hogan06c158c2015-05-01 13:50:18 +0100123 /* Allocate page table to map GPA -> RPA */
124 kvm->arch.gpa_mm.pgd = kvm_pgd_alloc();
125 if (!kvm->arch.gpa_mm.pgd)
126 return -ENOMEM;
127
Sanjay Lal669e8462012-11-21 18:34:02 -0800128 return 0;
129}
130
Luiz Capitulino235539b2016-09-07 14:47:23 -0400131bool kvm_arch_has_vcpu_debugfs(void)
132{
133 return false;
134}
135
136int kvm_arch_create_vcpu_debugfs(struct kvm_vcpu *vcpu)
137{
138 return 0;
139}
140
Sanjay Lal669e8462012-11-21 18:34:02 -0800141void kvm_mips_free_vcpus(struct kvm *kvm)
142{
143 unsigned int i;
144 struct kvm_vcpu *vcpu;
145
Sanjay Lal669e8462012-11-21 18:34:02 -0800146 kvm_for_each_vcpu(i, vcpu, kvm) {
147 kvm_arch_vcpu_free(vcpu);
148 }
149
150 mutex_lock(&kvm->lock);
151
152 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
153 kvm->vcpus[i] = NULL;
154
155 atomic_set(&kvm->online_vcpus, 0);
156
157 mutex_unlock(&kvm->lock);
158}
159
James Hogan06c158c2015-05-01 13:50:18 +0100160static void kvm_mips_free_gpa_pt(struct kvm *kvm)
161{
162 /* It should always be safe to remove after flushing the whole range */
163 WARN_ON(!kvm_mips_flush_gpa_pt(kvm, 0, ~0));
164 pgd_free(NULL, kvm->arch.gpa_mm.pgd);
165}
166
Sanjay Lal669e8462012-11-21 18:34:02 -0800167void kvm_arch_destroy_vm(struct kvm *kvm)
168{
169 kvm_mips_free_vcpus(kvm);
James Hogan06c158c2015-05-01 13:50:18 +0100170 kvm_mips_free_gpa_pt(kvm);
Sanjay Lal669e8462012-11-21 18:34:02 -0800171}
172
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700173long kvm_arch_dev_ioctl(struct file *filp, unsigned int ioctl,
174 unsigned long arg)
Sanjay Lal669e8462012-11-21 18:34:02 -0800175{
David Daneyed829852013-05-23 09:49:10 -0700176 return -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -0800177}
178
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530179int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
180 unsigned long npages)
Sanjay Lal669e8462012-11-21 18:34:02 -0800181{
182 return 0;
183}
184
James Hoganb6209112016-10-25 00:01:37 +0100185void kvm_arch_flush_shadow_all(struct kvm *kvm)
186{
187 /* Flush whole GPA */
188 kvm_mips_flush_gpa_pt(kvm, 0, ~0);
189
190 /* Let implementation do the rest */
191 kvm_mips_callbacks->flush_shadow_all(kvm);
192}
193
194void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
195 struct kvm_memory_slot *slot)
196{
197 /*
198 * The slot has been made invalid (ready for moving or deletion), so we
199 * need to ensure that it can no longer be accessed by any guest VCPUs.
200 */
201
202 spin_lock(&kvm->mmu_lock);
203 /* Flush slot from GPA */
204 kvm_mips_flush_gpa_pt(kvm, slot->base_gfn,
205 slot->base_gfn + slot->npages - 1);
206 /* Let implementation do the rest */
207 kvm_mips_callbacks->flush_shadow_memslot(kvm, slot);
208 spin_unlock(&kvm->mmu_lock);
209}
210
Sanjay Lal669e8462012-11-21 18:34:02 -0800211int kvm_arch_prepare_memory_region(struct kvm *kvm,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700212 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200213 const struct kvm_userspace_memory_region *mem,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700214 enum kvm_mr_change change)
Sanjay Lal669e8462012-11-21 18:34:02 -0800215{
216 return 0;
217}
218
219void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200220 const struct kvm_userspace_memory_region *mem,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700221 const struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +0200222 const struct kvm_memory_slot *new,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700223 enum kvm_mr_change change)
Sanjay Lal669e8462012-11-21 18:34:02 -0800224{
James Hogana1ac9e12016-12-06 14:56:20 +0000225 int needs_flush;
226
Sanjay Lal669e8462012-11-21 18:34:02 -0800227 kvm_debug("%s: kvm: %p slot: %d, GPA: %llx, size: %llx, QVA: %llx\n",
228 __func__, kvm, mem->slot, mem->guest_phys_addr,
229 mem->memory_size, mem->userspace_addr);
James Hogana1ac9e12016-12-06 14:56:20 +0000230
231 /*
232 * If dirty page logging is enabled, write protect all pages in the slot
233 * ready for dirty logging.
234 *
235 * There is no need to do this in any of the following cases:
236 * CREATE: No dirty mappings will already exist.
237 * MOVE/DELETE: The old mappings will already have been cleaned up by
238 * kvm_arch_flush_shadow_memslot()
239 */
240 if (change == KVM_MR_FLAGS_ONLY &&
241 (!(old->flags & KVM_MEM_LOG_DIRTY_PAGES) &&
242 new->flags & KVM_MEM_LOG_DIRTY_PAGES)) {
243 spin_lock(&kvm->mmu_lock);
244 /* Write protect GPA page table entries */
245 needs_flush = kvm_mips_mkclean_gpa_pt(kvm, new->base_gfn,
246 new->base_gfn + new->npages - 1);
247 /* Let implementation do the rest */
248 if (needs_flush)
249 kvm_mips_callbacks->flush_shadow_memslot(kvm, new);
250 spin_unlock(&kvm->mmu_lock);
251 }
Sanjay Lal669e8462012-11-21 18:34:02 -0800252}
253
James Hogand7b8f892016-06-23 17:34:40 +0100254static inline void dump_handler(const char *symbol, void *start, void *end)
255{
256 u32 *p;
257
258 pr_debug("LEAF(%s)\n", symbol);
259
260 pr_debug("\t.set push\n");
261 pr_debug("\t.set noreorder\n");
262
263 for (p = start; p < (u32 *)end; ++p)
264 pr_debug("\t.word\t0x%08x\t\t# %p\n", *p, p);
265
266 pr_debug("\t.set\tpop\n");
267
268 pr_debug("\tEND(%s)\n", symbol);
269}
270
Sanjay Lal669e8462012-11-21 18:34:02 -0800271struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
272{
James Hogan90e93112016-06-23 17:34:39 +0100273 int err, size;
James Hogana7cfa7a2016-09-10 23:56:46 +0100274 void *gebase, *p, *handler, *refill_start, *refill_end;
Sanjay Lal669e8462012-11-21 18:34:02 -0800275 int i;
276
277 struct kvm_vcpu *vcpu = kzalloc(sizeof(struct kvm_vcpu), GFP_KERNEL);
278
279 if (!vcpu) {
280 err = -ENOMEM;
281 goto out;
282 }
283
284 err = kvm_vcpu_init(vcpu, kvm, id);
285
286 if (err)
287 goto out_free_cpu;
288
James Hogan6e95bfd2014-05-29 10:16:43 +0100289 kvm_debug("kvm @ %p: create cpu %d at %p\n", kvm, id, vcpu);
Sanjay Lal669e8462012-11-21 18:34:02 -0800290
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700291 /*
292 * Allocate space for host mode exception handlers that handle
Sanjay Lal669e8462012-11-21 18:34:02 -0800293 * guest mode exits
294 */
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700295 if (cpu_has_veic || cpu_has_vint)
Sanjay Lal669e8462012-11-21 18:34:02 -0800296 size = 0x200 + VECTORSPACING * 64;
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700297 else
James Hogan7006e2d2014-05-29 10:16:23 +0100298 size = 0x4000;
Sanjay Lal669e8462012-11-21 18:34:02 -0800299
Sanjay Lal669e8462012-11-21 18:34:02 -0800300 gebase = kzalloc(ALIGN(size, PAGE_SIZE), GFP_KERNEL);
301
302 if (!gebase) {
303 err = -ENOMEM;
James Hogan585bb8f2015-11-11 14:21:20 +0000304 goto out_uninit_cpu;
Sanjay Lal669e8462012-11-21 18:34:02 -0800305 }
James Hogan6e95bfd2014-05-29 10:16:43 +0100306 kvm_debug("Allocated %d bytes for KVM Exception Handlers @ %p\n",
307 ALIGN(size, PAGE_SIZE), gebase);
Sanjay Lal669e8462012-11-21 18:34:02 -0800308
James Hogan2a06dab2016-07-08 11:53:26 +0100309 /*
310 * Check new ebase actually fits in CP0_EBase. The lack of a write gate
311 * limits us to the low 512MB of physical address space. If the memory
312 * we allocate is out of range, just give up now.
313 */
314 if (!cpu_has_ebase_wg && virt_to_phys(gebase) >= 0x20000000) {
315 kvm_err("CP0_EBase.WG required for guest exception base %pK\n",
316 gebase);
317 err = -ENOMEM;
318 goto out_free_gebase;
319 }
320
Sanjay Lal669e8462012-11-21 18:34:02 -0800321 /* Save new ebase */
322 vcpu->arch.guest_ebase = gebase;
323
James Hogan90e93112016-06-23 17:34:39 +0100324 /* Build guest exception vectors dynamically in unmapped memory */
James Hogan1f9ca622016-06-23 17:34:46 +0100325 handler = gebase + 0x2000;
Sanjay Lal669e8462012-11-21 18:34:02 -0800326
James Hogan1934a3a2017-03-14 10:15:26 +0000327 /* TLB refill (or XTLB refill on 64-bit VZ where KX=1) */
James Hogana7cfa7a2016-09-10 23:56:46 +0100328 refill_start = gebase;
James Hogan1934a3a2017-03-14 10:15:26 +0000329 if (IS_ENABLED(CONFIG_KVM_MIPS_VZ) && IS_ENABLED(CONFIG_64BIT))
330 refill_start += 0x080;
James Hogana7cfa7a2016-09-10 23:56:46 +0100331 refill_end = kvm_mips_build_tlb_refill_exception(refill_start, handler);
Sanjay Lal669e8462012-11-21 18:34:02 -0800332
333 /* General Exception Entry point */
James Hogan1f9ca622016-06-23 17:34:46 +0100334 kvm_mips_build_exception(gebase + 0x180, handler);
Sanjay Lal669e8462012-11-21 18:34:02 -0800335
336 /* For vectored interrupts poke the exception code @ all offsets 0-7 */
337 for (i = 0; i < 8; i++) {
338 kvm_debug("L1 Vectored handler @ %p\n",
339 gebase + 0x200 + (i * VECTORSPACING));
James Hogan1f9ca622016-06-23 17:34:46 +0100340 kvm_mips_build_exception(gebase + 0x200 + i * VECTORSPACING,
341 handler);
Sanjay Lal669e8462012-11-21 18:34:02 -0800342 }
343
James Hogan90e93112016-06-23 17:34:39 +0100344 /* General exit handler */
James Hogan1f9ca622016-06-23 17:34:46 +0100345 p = handler;
James Hogan90e93112016-06-23 17:34:39 +0100346 p = kvm_mips_build_exit(p);
Sanjay Lal669e8462012-11-21 18:34:02 -0800347
James Hogan90e93112016-06-23 17:34:39 +0100348 /* Guest entry routine */
349 vcpu->arch.vcpu_run = p;
350 p = kvm_mips_build_vcpu_run(p);
James Hogan797179b2016-06-09 10:50:43 +0100351
James Hogand7b8f892016-06-23 17:34:40 +0100352 /* Dump the generated code */
353 pr_debug("#include <asm/asm.h>\n");
354 pr_debug("#include <asm/regdef.h>\n");
355 pr_debug("\n");
356 dump_handler("kvm_vcpu_run", vcpu->arch.vcpu_run, p);
James Hogana7cfa7a2016-09-10 23:56:46 +0100357 dump_handler("kvm_tlb_refill", refill_start, refill_end);
James Hogand7b8f892016-06-23 17:34:40 +0100358 dump_handler("kvm_gen_exc", gebase + 0x180, gebase + 0x200);
359 dump_handler("kvm_exit", gebase + 0x2000, vcpu->arch.vcpu_run);
360
Sanjay Lal669e8462012-11-21 18:34:02 -0800361 /* Invalidate the icache for these ranges */
James Hogan32eb12a2017-01-03 17:43:01 +0000362 flush_icache_range((unsigned long)gebase,
363 (unsigned long)gebase + ALIGN(size, PAGE_SIZE));
Sanjay Lal669e8462012-11-21 18:34:02 -0800364
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700365 /*
366 * Allocate comm page for guest kernel, a TLB will be reserved for
367 * mapping GVA @ 0xFFFF8000 to this page
368 */
Sanjay Lal669e8462012-11-21 18:34:02 -0800369 vcpu->arch.kseg0_commpage = kzalloc(PAGE_SIZE << 1, GFP_KERNEL);
370
371 if (!vcpu->arch.kseg0_commpage) {
372 err = -ENOMEM;
373 goto out_free_gebase;
374 }
375
James Hogan6e95bfd2014-05-29 10:16:43 +0100376 kvm_debug("Allocated COMM page @ %p\n", vcpu->arch.kseg0_commpage);
Sanjay Lal669e8462012-11-21 18:34:02 -0800377 kvm_mips_commpage_init(vcpu);
378
379 /* Init */
380 vcpu->arch.last_sched_cpu = -1;
381
Sanjay Lal669e8462012-11-21 18:34:02 -0800382 return vcpu;
383
384out_free_gebase:
385 kfree(gebase);
386
James Hogan585bb8f2015-11-11 14:21:20 +0000387out_uninit_cpu:
388 kvm_vcpu_uninit(vcpu);
389
Sanjay Lal669e8462012-11-21 18:34:02 -0800390out_free_cpu:
391 kfree(vcpu);
392
393out:
394 return ERR_PTR(err);
395}
396
397void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
398{
399 hrtimer_cancel(&vcpu->arch.comparecount_timer);
400
401 kvm_vcpu_uninit(vcpu);
402
403 kvm_mips_dump_stats(vcpu);
404
James Hoganaba859292016-12-16 15:57:00 +0000405 kvm_mmu_free_memory_caches(vcpu);
James Hoganc6c0a662014-05-29 10:16:44 +0100406 kfree(vcpu->arch.guest_ebase);
407 kfree(vcpu->arch.kseg0_commpage);
Deng-Cheng Zhu8c9eb042014-06-24 10:31:08 -0700408 kfree(vcpu);
Sanjay Lal669e8462012-11-21 18:34:02 -0800409}
410
411void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
412{
413 kvm_arch_vcpu_free(vcpu);
414}
415
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700416int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
417 struct kvm_guest_debug *dbg)
Sanjay Lal669e8462012-11-21 18:34:02 -0800418{
David Daneyed829852013-05-23 09:49:10 -0700419 return -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -0800420}
421
422int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
423{
Paolo Bonzini460df4c2017-02-08 11:50:15 +0100424 int r = -EINTR;
Sanjay Lal669e8462012-11-21 18:34:02 -0800425 sigset_t sigsaved;
426
427 if (vcpu->sigset_active)
428 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
429
430 if (vcpu->mmio_needed) {
431 if (!vcpu->mmio_is_write)
432 kvm_mips_complete_mmio_load(vcpu, run);
433 vcpu->mmio_needed = 0;
434 }
435
Paolo Bonzini460df4c2017-02-08 11:50:15 +0100436 if (run->immediate_exit)
437 goto out;
438
James Hoganf7982172015-02-04 17:06:37 +0000439 lose_fpu(1);
440
James Hogan044f0f02014-05-29 10:16:32 +0100441 local_irq_disable();
Paolo Bonzini6edaa532016-06-15 15:18:26 +0200442 guest_enter_irqoff();
James Hogan93258602016-06-14 09:40:14 +0100443 trace_kvm_enter(vcpu);
James Hogan25b08c72016-09-16 00:06:43 +0100444
James Hogan4841e0d2016-11-28 22:45:04 +0000445 /*
446 * Make sure the read of VCPU requests in vcpu_run() callback is not
447 * reordered ahead of the write to vcpu->mode, or we could miss a TLB
448 * flush request while the requester sees the VCPU as outside of guest
449 * mode and not needing an IPI.
450 */
451 smp_store_mb(vcpu->mode, IN_GUEST_MODE);
452
James Hogana2c046e2016-11-18 13:14:37 +0000453 r = kvm_mips_callbacks->vcpu_run(run, vcpu);
James Hogan25b08c72016-09-16 00:06:43 +0100454
James Hogan93258602016-06-14 09:40:14 +0100455 trace_kvm_out(vcpu);
Paolo Bonzini6edaa532016-06-15 15:18:26 +0200456 guest_exit_irqoff();
Sanjay Lal669e8462012-11-21 18:34:02 -0800457 local_irq_enable();
458
Paolo Bonzini460df4c2017-02-08 11:50:15 +0100459out:
Sanjay Lal669e8462012-11-21 18:34:02 -0800460 if (vcpu->sigset_active)
461 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
462
463 return r;
464}
465
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700466int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
467 struct kvm_mips_interrupt *irq)
Sanjay Lal669e8462012-11-21 18:34:02 -0800468{
469 int intr = (int)irq->irq;
470 struct kvm_vcpu *dvcpu = NULL;
471
472 if (intr == 3 || intr == -3 || intr == 4 || intr == -4)
473 kvm_debug("%s: CPU: %d, INTR: %d\n", __func__, irq->cpu,
474 (int)intr);
475
476 if (irq->cpu == -1)
477 dvcpu = vcpu;
478 else
479 dvcpu = vcpu->kvm->vcpus[irq->cpu];
480
481 if (intr == 2 || intr == 3 || intr == 4) {
482 kvm_mips_callbacks->queue_io_int(dvcpu, irq);
483
484 } else if (intr == -2 || intr == -3 || intr == -4) {
485 kvm_mips_callbacks->dequeue_io_int(dvcpu, irq);
486 } else {
487 kvm_err("%s: invalid interrupt ioctl (%d:%d)\n", __func__,
488 irq->cpu, irq->irq);
489 return -EINVAL;
490 }
491
492 dvcpu->arch.wait = 0;
493
Marcelo Tosatti85773702016-02-19 09:46:39 +0100494 if (swait_active(&dvcpu->wq))
495 swake_up(&dvcpu->wq);
Sanjay Lal669e8462012-11-21 18:34:02 -0800496
497 return 0;
498}
499
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700500int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
501 struct kvm_mp_state *mp_state)
Sanjay Lal669e8462012-11-21 18:34:02 -0800502{
David Daneyed829852013-05-23 09:49:10 -0700503 return -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -0800504}
505
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700506int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
507 struct kvm_mp_state *mp_state)
Sanjay Lal669e8462012-11-21 18:34:02 -0800508{
David Daneyed829852013-05-23 09:49:10 -0700509 return -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -0800510}
511
David Daney4c73fb22013-05-23 09:49:09 -0700512static u64 kvm_mips_get_one_regs[] = {
513 KVM_REG_MIPS_R0,
514 KVM_REG_MIPS_R1,
515 KVM_REG_MIPS_R2,
516 KVM_REG_MIPS_R3,
517 KVM_REG_MIPS_R4,
518 KVM_REG_MIPS_R5,
519 KVM_REG_MIPS_R6,
520 KVM_REG_MIPS_R7,
521 KVM_REG_MIPS_R8,
522 KVM_REG_MIPS_R9,
523 KVM_REG_MIPS_R10,
524 KVM_REG_MIPS_R11,
525 KVM_REG_MIPS_R12,
526 KVM_REG_MIPS_R13,
527 KVM_REG_MIPS_R14,
528 KVM_REG_MIPS_R15,
529 KVM_REG_MIPS_R16,
530 KVM_REG_MIPS_R17,
531 KVM_REG_MIPS_R18,
532 KVM_REG_MIPS_R19,
533 KVM_REG_MIPS_R20,
534 KVM_REG_MIPS_R21,
535 KVM_REG_MIPS_R22,
536 KVM_REG_MIPS_R23,
537 KVM_REG_MIPS_R24,
538 KVM_REG_MIPS_R25,
539 KVM_REG_MIPS_R26,
540 KVM_REG_MIPS_R27,
541 KVM_REG_MIPS_R28,
542 KVM_REG_MIPS_R29,
543 KVM_REG_MIPS_R30,
544 KVM_REG_MIPS_R31,
545
James Hogan70e92c7e2016-07-04 19:35:11 +0100546#ifndef CONFIG_CPU_MIPSR6
David Daney4c73fb22013-05-23 09:49:09 -0700547 KVM_REG_MIPS_HI,
548 KVM_REG_MIPS_LO,
James Hogan70e92c7e2016-07-04 19:35:11 +0100549#endif
David Daney4c73fb22013-05-23 09:49:09 -0700550 KVM_REG_MIPS_PC,
David Daney4c73fb22013-05-23 09:49:09 -0700551};
552
James Hogane5775932016-06-15 19:29:51 +0100553static u64 kvm_mips_get_one_regs_fpu[] = {
554 KVM_REG_MIPS_FCR_IR,
555 KVM_REG_MIPS_FCR_CSR,
556};
557
558static u64 kvm_mips_get_one_regs_msa[] = {
559 KVM_REG_MIPS_MSA_IR,
560 KVM_REG_MIPS_MSA_CSR,
561};
562
James Hoganf5c43bd2016-06-15 19:29:49 +0100563static unsigned long kvm_mips_num_regs(struct kvm_vcpu *vcpu)
564{
565 unsigned long ret;
566
567 ret = ARRAY_SIZE(kvm_mips_get_one_regs);
James Hogane5775932016-06-15 19:29:51 +0100568 if (kvm_mips_guest_can_have_fpu(&vcpu->arch)) {
569 ret += ARRAY_SIZE(kvm_mips_get_one_regs_fpu) + 48;
570 /* odd doubles */
571 if (boot_cpu_data.fpu_id & MIPS_FPIR_F64)
572 ret += 16;
573 }
574 if (kvm_mips_guest_can_have_msa(&vcpu->arch))
575 ret += ARRAY_SIZE(kvm_mips_get_one_regs_msa) + 32;
James Hoganf5c43bd2016-06-15 19:29:49 +0100576 ret += kvm_mips_callbacks->num_regs(vcpu);
577
578 return ret;
579}
580
581static int kvm_mips_copy_reg_indices(struct kvm_vcpu *vcpu, u64 __user *indices)
582{
James Hogane5775932016-06-15 19:29:51 +0100583 u64 index;
584 unsigned int i;
585
James Hoganf5c43bd2016-06-15 19:29:49 +0100586 if (copy_to_user(indices, kvm_mips_get_one_regs,
587 sizeof(kvm_mips_get_one_regs)))
588 return -EFAULT;
589 indices += ARRAY_SIZE(kvm_mips_get_one_regs);
590
James Hogane5775932016-06-15 19:29:51 +0100591 if (kvm_mips_guest_can_have_fpu(&vcpu->arch)) {
592 if (copy_to_user(indices, kvm_mips_get_one_regs_fpu,
593 sizeof(kvm_mips_get_one_regs_fpu)))
594 return -EFAULT;
595 indices += ARRAY_SIZE(kvm_mips_get_one_regs_fpu);
596
597 for (i = 0; i < 32; ++i) {
598 index = KVM_REG_MIPS_FPR_32(i);
599 if (copy_to_user(indices, &index, sizeof(index)))
600 return -EFAULT;
601 ++indices;
602
603 /* skip odd doubles if no F64 */
604 if (i & 1 && !(boot_cpu_data.fpu_id & MIPS_FPIR_F64))
605 continue;
606
607 index = KVM_REG_MIPS_FPR_64(i);
608 if (copy_to_user(indices, &index, sizeof(index)))
609 return -EFAULT;
610 ++indices;
611 }
612 }
613
614 if (kvm_mips_guest_can_have_msa(&vcpu->arch)) {
615 if (copy_to_user(indices, kvm_mips_get_one_regs_msa,
616 sizeof(kvm_mips_get_one_regs_msa)))
617 return -EFAULT;
618 indices += ARRAY_SIZE(kvm_mips_get_one_regs_msa);
619
620 for (i = 0; i < 32; ++i) {
621 index = KVM_REG_MIPS_VEC_128(i);
622 if (copy_to_user(indices, &index, sizeof(index)))
623 return -EFAULT;
624 ++indices;
625 }
626 }
627
James Hoganf5c43bd2016-06-15 19:29:49 +0100628 return kvm_mips_callbacks->copy_reg_indices(vcpu, indices);
629}
630
David Daney4c73fb22013-05-23 09:49:09 -0700631static int kvm_mips_get_reg(struct kvm_vcpu *vcpu,
632 const struct kvm_one_reg *reg)
633{
David Daney4c73fb22013-05-23 09:49:09 -0700634 struct mips_coproc *cop0 = vcpu->arch.cop0;
James Hogan379245c2014-12-02 15:48:24 +0000635 struct mips_fpu_struct *fpu = &vcpu->arch.fpu;
James Hoganf8be02d2014-05-29 10:16:29 +0100636 int ret;
David Daney4c73fb22013-05-23 09:49:09 -0700637 s64 v;
James Hoganab86bd62014-12-02 15:48:24 +0000638 s64 vs[2];
James Hogan379245c2014-12-02 15:48:24 +0000639 unsigned int idx;
David Daney4c73fb22013-05-23 09:49:09 -0700640
641 switch (reg->id) {
James Hogan379245c2014-12-02 15:48:24 +0000642 /* General purpose registers */
David Daney4c73fb22013-05-23 09:49:09 -0700643 case KVM_REG_MIPS_R0 ... KVM_REG_MIPS_R31:
644 v = (long)vcpu->arch.gprs[reg->id - KVM_REG_MIPS_R0];
645 break;
James Hogan70e92c7e2016-07-04 19:35:11 +0100646#ifndef CONFIG_CPU_MIPSR6
David Daney4c73fb22013-05-23 09:49:09 -0700647 case KVM_REG_MIPS_HI:
648 v = (long)vcpu->arch.hi;
649 break;
650 case KVM_REG_MIPS_LO:
651 v = (long)vcpu->arch.lo;
652 break;
James Hogan70e92c7e2016-07-04 19:35:11 +0100653#endif
David Daney4c73fb22013-05-23 09:49:09 -0700654 case KVM_REG_MIPS_PC:
655 v = (long)vcpu->arch.pc;
656 break;
657
James Hogan379245c2014-12-02 15:48:24 +0000658 /* Floating point registers */
659 case KVM_REG_MIPS_FPR_32(0) ... KVM_REG_MIPS_FPR_32(31):
660 if (!kvm_mips_guest_has_fpu(&vcpu->arch))
661 return -EINVAL;
662 idx = reg->id - KVM_REG_MIPS_FPR_32(0);
663 /* Odd singles in top of even double when FR=0 */
664 if (kvm_read_c0_guest_status(cop0) & ST0_FR)
665 v = get_fpr32(&fpu->fpr[idx], 0);
666 else
667 v = get_fpr32(&fpu->fpr[idx & ~1], idx & 1);
668 break;
669 case KVM_REG_MIPS_FPR_64(0) ... KVM_REG_MIPS_FPR_64(31):
670 if (!kvm_mips_guest_has_fpu(&vcpu->arch))
671 return -EINVAL;
672 idx = reg->id - KVM_REG_MIPS_FPR_64(0);
673 /* Can't access odd doubles in FR=0 mode */
674 if (idx & 1 && !(kvm_read_c0_guest_status(cop0) & ST0_FR))
675 return -EINVAL;
676 v = get_fpr64(&fpu->fpr[idx], 0);
677 break;
678 case KVM_REG_MIPS_FCR_IR:
679 if (!kvm_mips_guest_has_fpu(&vcpu->arch))
680 return -EINVAL;
681 v = boot_cpu_data.fpu_id;
682 break;
683 case KVM_REG_MIPS_FCR_CSR:
684 if (!kvm_mips_guest_has_fpu(&vcpu->arch))
685 return -EINVAL;
686 v = fpu->fcr31;
687 break;
688
James Hoganab86bd62014-12-02 15:48:24 +0000689 /* MIPS SIMD Architecture (MSA) registers */
690 case KVM_REG_MIPS_VEC_128(0) ... KVM_REG_MIPS_VEC_128(31):
691 if (!kvm_mips_guest_has_msa(&vcpu->arch))
692 return -EINVAL;
693 /* Can't access MSA registers in FR=0 mode */
694 if (!(kvm_read_c0_guest_status(cop0) & ST0_FR))
695 return -EINVAL;
696 idx = reg->id - KVM_REG_MIPS_VEC_128(0);
697#ifdef CONFIG_CPU_LITTLE_ENDIAN
698 /* least significant byte first */
699 vs[0] = get_fpr64(&fpu->fpr[idx], 0);
700 vs[1] = get_fpr64(&fpu->fpr[idx], 1);
701#else
702 /* most significant byte first */
703 vs[0] = get_fpr64(&fpu->fpr[idx], 1);
704 vs[1] = get_fpr64(&fpu->fpr[idx], 0);
705#endif
706 break;
707 case KVM_REG_MIPS_MSA_IR:
708 if (!kvm_mips_guest_has_msa(&vcpu->arch))
709 return -EINVAL;
710 v = boot_cpu_data.msa_id;
711 break;
712 case KVM_REG_MIPS_MSA_CSR:
713 if (!kvm_mips_guest_has_msa(&vcpu->arch))
714 return -EINVAL;
715 v = fpu->msacsr;
716 break;
717
James Hoganf8be02d2014-05-29 10:16:29 +0100718 /* registers to be handled specially */
James Hogancc68d222016-06-15 19:29:48 +0100719 default:
James Hoganf8be02d2014-05-29 10:16:29 +0100720 ret = kvm_mips_callbacks->get_one_reg(vcpu, reg, &v);
721 if (ret)
722 return ret;
723 break;
David Daney4c73fb22013-05-23 09:49:09 -0700724 }
David Daney681865d2013-06-10 12:33:48 -0700725 if ((reg->id & KVM_REG_SIZE_MASK) == KVM_REG_SIZE_U64) {
726 u64 __user *uaddr64 = (u64 __user *)(long)reg->addr;
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700727
David Daney681865d2013-06-10 12:33:48 -0700728 return put_user(v, uaddr64);
729 } else if ((reg->id & KVM_REG_SIZE_MASK) == KVM_REG_SIZE_U32) {
730 u32 __user *uaddr32 = (u32 __user *)(long)reg->addr;
731 u32 v32 = (u32)v;
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700732
David Daney681865d2013-06-10 12:33:48 -0700733 return put_user(v32, uaddr32);
James Hoganab86bd62014-12-02 15:48:24 +0000734 } else if ((reg->id & KVM_REG_SIZE_MASK) == KVM_REG_SIZE_U128) {
735 void __user *uaddr = (void __user *)(long)reg->addr;
736
Michael S. Tsirkin0178fd72016-02-28 17:35:59 +0200737 return copy_to_user(uaddr, vs, 16) ? -EFAULT : 0;
David Daney681865d2013-06-10 12:33:48 -0700738 } else {
739 return -EINVAL;
740 }
David Daney4c73fb22013-05-23 09:49:09 -0700741}
742
743static int kvm_mips_set_reg(struct kvm_vcpu *vcpu,
744 const struct kvm_one_reg *reg)
745{
David Daney4c73fb22013-05-23 09:49:09 -0700746 struct mips_coproc *cop0 = vcpu->arch.cop0;
James Hogan379245c2014-12-02 15:48:24 +0000747 struct mips_fpu_struct *fpu = &vcpu->arch.fpu;
748 s64 v;
James Hoganab86bd62014-12-02 15:48:24 +0000749 s64 vs[2];
James Hogan379245c2014-12-02 15:48:24 +0000750 unsigned int idx;
David Daney4c73fb22013-05-23 09:49:09 -0700751
David Daney681865d2013-06-10 12:33:48 -0700752 if ((reg->id & KVM_REG_SIZE_MASK) == KVM_REG_SIZE_U64) {
753 u64 __user *uaddr64 = (u64 __user *)(long)reg->addr;
754
755 if (get_user(v, uaddr64) != 0)
756 return -EFAULT;
757 } else if ((reg->id & KVM_REG_SIZE_MASK) == KVM_REG_SIZE_U32) {
758 u32 __user *uaddr32 = (u32 __user *)(long)reg->addr;
759 s32 v32;
760
761 if (get_user(v32, uaddr32) != 0)
762 return -EFAULT;
763 v = (s64)v32;
James Hoganab86bd62014-12-02 15:48:24 +0000764 } else if ((reg->id & KVM_REG_SIZE_MASK) == KVM_REG_SIZE_U128) {
765 void __user *uaddr = (void __user *)(long)reg->addr;
766
Michael S. Tsirkin0178fd72016-02-28 17:35:59 +0200767 return copy_from_user(vs, uaddr, 16) ? -EFAULT : 0;
David Daney681865d2013-06-10 12:33:48 -0700768 } else {
769 return -EINVAL;
770 }
David Daney4c73fb22013-05-23 09:49:09 -0700771
772 switch (reg->id) {
James Hogan379245c2014-12-02 15:48:24 +0000773 /* General purpose registers */
David Daney4c73fb22013-05-23 09:49:09 -0700774 case KVM_REG_MIPS_R0:
775 /* Silently ignore requests to set $0 */
776 break;
777 case KVM_REG_MIPS_R1 ... KVM_REG_MIPS_R31:
778 vcpu->arch.gprs[reg->id - KVM_REG_MIPS_R0] = v;
779 break;
James Hogan70e92c7e2016-07-04 19:35:11 +0100780#ifndef CONFIG_CPU_MIPSR6
David Daney4c73fb22013-05-23 09:49:09 -0700781 case KVM_REG_MIPS_HI:
782 vcpu->arch.hi = v;
783 break;
784 case KVM_REG_MIPS_LO:
785 vcpu->arch.lo = v;
786 break;
James Hogan70e92c7e2016-07-04 19:35:11 +0100787#endif
David Daney4c73fb22013-05-23 09:49:09 -0700788 case KVM_REG_MIPS_PC:
789 vcpu->arch.pc = v;
790 break;
791
James Hogan379245c2014-12-02 15:48:24 +0000792 /* Floating point registers */
793 case KVM_REG_MIPS_FPR_32(0) ... KVM_REG_MIPS_FPR_32(31):
794 if (!kvm_mips_guest_has_fpu(&vcpu->arch))
795 return -EINVAL;
796 idx = reg->id - KVM_REG_MIPS_FPR_32(0);
797 /* Odd singles in top of even double when FR=0 */
798 if (kvm_read_c0_guest_status(cop0) & ST0_FR)
799 set_fpr32(&fpu->fpr[idx], 0, v);
800 else
801 set_fpr32(&fpu->fpr[idx & ~1], idx & 1, v);
802 break;
803 case KVM_REG_MIPS_FPR_64(0) ... KVM_REG_MIPS_FPR_64(31):
804 if (!kvm_mips_guest_has_fpu(&vcpu->arch))
805 return -EINVAL;
806 idx = reg->id - KVM_REG_MIPS_FPR_64(0);
807 /* Can't access odd doubles in FR=0 mode */
808 if (idx & 1 && !(kvm_read_c0_guest_status(cop0) & ST0_FR))
809 return -EINVAL;
810 set_fpr64(&fpu->fpr[idx], 0, v);
811 break;
812 case KVM_REG_MIPS_FCR_IR:
813 if (!kvm_mips_guest_has_fpu(&vcpu->arch))
814 return -EINVAL;
815 /* Read-only */
816 break;
817 case KVM_REG_MIPS_FCR_CSR:
818 if (!kvm_mips_guest_has_fpu(&vcpu->arch))
819 return -EINVAL;
820 fpu->fcr31 = v;
821 break;
822
James Hoganab86bd62014-12-02 15:48:24 +0000823 /* MIPS SIMD Architecture (MSA) registers */
824 case KVM_REG_MIPS_VEC_128(0) ... KVM_REG_MIPS_VEC_128(31):
825 if (!kvm_mips_guest_has_msa(&vcpu->arch))
826 return -EINVAL;
827 idx = reg->id - KVM_REG_MIPS_VEC_128(0);
828#ifdef CONFIG_CPU_LITTLE_ENDIAN
829 /* least significant byte first */
830 set_fpr64(&fpu->fpr[idx], 0, vs[0]);
831 set_fpr64(&fpu->fpr[idx], 1, vs[1]);
832#else
833 /* most significant byte first */
834 set_fpr64(&fpu->fpr[idx], 1, vs[0]);
835 set_fpr64(&fpu->fpr[idx], 0, vs[1]);
836#endif
837 break;
838 case KVM_REG_MIPS_MSA_IR:
839 if (!kvm_mips_guest_has_msa(&vcpu->arch))
840 return -EINVAL;
841 /* Read-only */
842 break;
843 case KVM_REG_MIPS_MSA_CSR:
844 if (!kvm_mips_guest_has_msa(&vcpu->arch))
845 return -EINVAL;
846 fpu->msacsr = v;
847 break;
848
James Hoganf8be02d2014-05-29 10:16:29 +0100849 /* registers to be handled specially */
David Daney4c73fb22013-05-23 09:49:09 -0700850 default:
James Hogancc68d222016-06-15 19:29:48 +0100851 return kvm_mips_callbacks->set_one_reg(vcpu, reg, v);
David Daney4c73fb22013-05-23 09:49:09 -0700852 }
853 return 0;
854}
855
James Hogan5fafd8742014-12-08 23:07:56 +0000856static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
857 struct kvm_enable_cap *cap)
858{
859 int r = 0;
860
861 if (!kvm_vm_ioctl_check_extension(vcpu->kvm, cap->cap))
862 return -EINVAL;
863 if (cap->flags)
864 return -EINVAL;
865 if (cap->args[0])
866 return -EINVAL;
867
868 switch (cap->cap) {
869 case KVM_CAP_MIPS_FPU:
870 vcpu->arch.fpu_enabled = true;
871 break;
James Hogand952bd02014-12-08 23:07:56 +0000872 case KVM_CAP_MIPS_MSA:
873 vcpu->arch.msa_enabled = true;
874 break;
James Hogan5fafd8742014-12-08 23:07:56 +0000875 default:
876 r = -EINVAL;
877 break;
878 }
879
880 return r;
881}
882
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700883long kvm_arch_vcpu_ioctl(struct file *filp, unsigned int ioctl,
884 unsigned long arg)
Sanjay Lal669e8462012-11-21 18:34:02 -0800885{
886 struct kvm_vcpu *vcpu = filp->private_data;
887 void __user *argp = (void __user *)arg;
888 long r;
Sanjay Lal669e8462012-11-21 18:34:02 -0800889
890 switch (ioctl) {
David Daney4c73fb22013-05-23 09:49:09 -0700891 case KVM_SET_ONE_REG:
892 case KVM_GET_ONE_REG: {
893 struct kvm_one_reg reg;
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700894
David Daney4c73fb22013-05-23 09:49:09 -0700895 if (copy_from_user(&reg, argp, sizeof(reg)))
896 return -EFAULT;
897 if (ioctl == KVM_SET_ONE_REG)
898 return kvm_mips_set_reg(vcpu, &reg);
899 else
900 return kvm_mips_get_reg(vcpu, &reg);
901 }
902 case KVM_GET_REG_LIST: {
903 struct kvm_reg_list __user *user_list = argp;
David Daney4c73fb22013-05-23 09:49:09 -0700904 struct kvm_reg_list reg_list;
905 unsigned n;
906
907 if (copy_from_user(&reg_list, user_list, sizeof(reg_list)))
908 return -EFAULT;
909 n = reg_list.n;
James Hoganf5c43bd2016-06-15 19:29:49 +0100910 reg_list.n = kvm_mips_num_regs(vcpu);
David Daney4c73fb22013-05-23 09:49:09 -0700911 if (copy_to_user(user_list, &reg_list, sizeof(reg_list)))
912 return -EFAULT;
913 if (n < reg_list.n)
914 return -E2BIG;
James Hoganf5c43bd2016-06-15 19:29:49 +0100915 return kvm_mips_copy_reg_indices(vcpu, user_list->reg);
David Daney4c73fb22013-05-23 09:49:09 -0700916 }
Sanjay Lal669e8462012-11-21 18:34:02 -0800917 case KVM_INTERRUPT:
918 {
919 struct kvm_mips_interrupt irq;
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700920
Sanjay Lal669e8462012-11-21 18:34:02 -0800921 if (copy_from_user(&irq, argp, sizeof(irq)))
Markus Elfring5a6da5f2017-01-19 11:10:26 +0100922 return -EFAULT;
Sanjay Lal669e8462012-11-21 18:34:02 -0800923 kvm_debug("[%d] %s: irq: %d\n", vcpu->vcpu_id, __func__,
924 irq.irq);
925
926 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
927 break;
928 }
James Hogan5fafd8742014-12-08 23:07:56 +0000929 case KVM_ENABLE_CAP: {
930 struct kvm_enable_cap cap;
931
James Hogan5fafd8742014-12-08 23:07:56 +0000932 if (copy_from_user(&cap, argp, sizeof(cap)))
Markus Elfring5a6da5f2017-01-19 11:10:26 +0100933 return -EFAULT;
James Hogan5fafd8742014-12-08 23:07:56 +0000934 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
935 break;
936 }
Sanjay Lal669e8462012-11-21 18:34:02 -0800937 default:
David Daney4c73fb22013-05-23 09:49:09 -0700938 r = -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -0800939 }
Sanjay Lal669e8462012-11-21 18:34:02 -0800940 return r;
941}
942
James Hogane88643b2016-12-06 14:50:52 +0000943/**
944 * kvm_vm_ioctl_get_dirty_log - get and clear the log of dirty pages in a slot
945 * @kvm: kvm instance
946 * @log: slot id and address to which we copy the log
947 *
948 * Steps 1-4 below provide general overview of dirty page logging. See
949 * kvm_get_dirty_log_protect() function description for additional details.
950 *
951 * We call kvm_get_dirty_log_protect() to handle steps 1-3, upon return we
952 * always flush the TLB (step 4) even if previous step failed and the dirty
953 * bitmap may be corrupt. Regardless of previous outcome the KVM logging API
954 * does not preclude user space subsequent dirty log read. Flushing TLB ensures
955 * writes will be marked dirty for next log read.
956 *
957 * 1. Take a snapshot of the bit and clear it if needed.
958 * 2. Write protect the corresponding page.
959 * 3. Copy the snapshot to the userspace.
960 * 4. Flush TLB's if needed.
961 */
Sanjay Lal669e8462012-11-21 18:34:02 -0800962int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
963{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +0200964 struct kvm_memslots *slots;
Sanjay Lal669e8462012-11-21 18:34:02 -0800965 struct kvm_memory_slot *memslot;
James Hogane88643b2016-12-06 14:50:52 +0000966 bool is_dirty = false;
Sanjay Lal669e8462012-11-21 18:34:02 -0800967 int r;
Sanjay Lal669e8462012-11-21 18:34:02 -0800968
969 mutex_lock(&kvm->slots_lock);
970
James Hogane88643b2016-12-06 14:50:52 +0000971 r = kvm_get_dirty_log_protect(kvm, log, &is_dirty);
Sanjay Lal669e8462012-11-21 18:34:02 -0800972
Sanjay Lal669e8462012-11-21 18:34:02 -0800973 if (is_dirty) {
Paolo Bonzini9f6b8022015-05-17 16:20:07 +0200974 slots = kvm_memslots(kvm);
975 memslot = id_to_memslot(slots, log->slot);
Sanjay Lal669e8462012-11-21 18:34:02 -0800976
James Hogane88643b2016-12-06 14:50:52 +0000977 /* Let implementation handle TLB/GVA invalidation */
978 kvm_mips_callbacks->flush_shadow_memslot(kvm, memslot);
Sanjay Lal669e8462012-11-21 18:34:02 -0800979 }
980
Sanjay Lal669e8462012-11-21 18:34:02 -0800981 mutex_unlock(&kvm->slots_lock);
982 return r;
Sanjay Lal669e8462012-11-21 18:34:02 -0800983}
984
985long kvm_arch_vm_ioctl(struct file *filp, unsigned int ioctl, unsigned long arg)
986{
987 long r;
988
989 switch (ioctl) {
990 default:
David Daneyed829852013-05-23 09:49:10 -0700991 r = -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -0800992 }
993
994 return r;
995}
996
997int kvm_arch_init(void *opaque)
998{
Sanjay Lal669e8462012-11-21 18:34:02 -0800999 if (kvm_mips_callbacks) {
1000 kvm_err("kvm: module already exists\n");
1001 return -EEXIST;
1002 }
1003
Deng-Cheng Zhud98403a2014-06-26 12:11:36 -07001004 return kvm_mips_emulation_init(&kvm_mips_callbacks);
Sanjay Lal669e8462012-11-21 18:34:02 -08001005}
1006
1007void kvm_arch_exit(void)
1008{
1009 kvm_mips_callbacks = NULL;
1010}
1011
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001012int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
1013 struct kvm_sregs *sregs)
Sanjay Lal669e8462012-11-21 18:34:02 -08001014{
David Daneyed829852013-05-23 09:49:10 -07001015 return -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -08001016}
1017
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001018int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
1019 struct kvm_sregs *sregs)
Sanjay Lal669e8462012-11-21 18:34:02 -08001020{
David Daneyed829852013-05-23 09:49:10 -07001021 return -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -08001022}
1023
Dominik Dingel31928aa2014-12-04 15:47:07 +01001024void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Sanjay Lal669e8462012-11-21 18:34:02 -08001025{
Sanjay Lal669e8462012-11-21 18:34:02 -08001026}
1027
1028int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
1029{
David Daneyed829852013-05-23 09:49:10 -07001030 return -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -08001031}
1032
1033int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
1034{
David Daneyed829852013-05-23 09:49:10 -07001035 return -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -08001036}
1037
1038int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
1039{
1040 return VM_FAULT_SIGBUS;
1041}
1042
Alexander Graf784aa3d2014-07-14 18:27:35 +02001043int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Sanjay Lal669e8462012-11-21 18:34:02 -08001044{
1045 int r;
1046
1047 switch (ext) {
David Daney4c73fb22013-05-23 09:49:09 -07001048 case KVM_CAP_ONE_REG:
James Hogan5fafd8742014-12-08 23:07:56 +00001049 case KVM_CAP_ENABLE_CAP:
James Hogan230c5722015-05-08 17:11:49 +01001050 case KVM_CAP_READONLY_MEM:
James Hogan411740f2016-12-13 16:32:39 +00001051 case KVM_CAP_SYNC_MMU:
Paolo Bonzini460df4c2017-02-08 11:50:15 +01001052 case KVM_CAP_IMMEDIATE_EXIT:
David Daney4c73fb22013-05-23 09:49:09 -07001053 r = 1;
1054 break;
Sanjay Lal669e8462012-11-21 18:34:02 -08001055 case KVM_CAP_COALESCED_MMIO:
1056 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
1057 break;
James Hogan12ed1fa2016-12-13 22:39:39 +00001058 case KVM_CAP_NR_VCPUS:
1059 r = num_online_cpus();
1060 break;
1061 case KVM_CAP_MAX_VCPUS:
1062 r = KVM_MAX_VCPUS;
1063 break;
James Hogan5fafd8742014-12-08 23:07:56 +00001064 case KVM_CAP_MIPS_FPU:
James Hogan556f2a52016-04-22 10:38:48 +01001065 /* We don't handle systems with inconsistent cpu_has_fpu */
1066 r = !!raw_cpu_has_fpu;
James Hogan5fafd8742014-12-08 23:07:56 +00001067 break;
James Hogand952bd02014-12-08 23:07:56 +00001068 case KVM_CAP_MIPS_MSA:
1069 /*
1070 * We don't support MSA vector partitioning yet:
1071 * 1) It would require explicit support which can't be tested
1072 * yet due to lack of support in current hardware.
1073 * 2) It extends the state that would need to be saved/restored
1074 * by e.g. QEMU for migration.
1075 *
1076 * When vector partitioning hardware becomes available, support
1077 * could be added by requiring a flag when enabling
1078 * KVM_CAP_MIPS_MSA capability to indicate that userland knows
1079 * to save/restore the appropriate extra state.
1080 */
1081 r = cpu_has_msa && !(boot_cpu_data.msa_id & MSA_IR_WRPF);
1082 break;
Sanjay Lal669e8462012-11-21 18:34:02 -08001083 default:
James Hogan607ef2f2017-03-14 10:15:22 +00001084 r = kvm_mips_callbacks->check_extension(kvm, ext);
Sanjay Lal669e8462012-11-21 18:34:02 -08001085 break;
1086 }
1087 return r;
Sanjay Lal669e8462012-11-21 18:34:02 -08001088}
1089
1090int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
1091{
1092 return kvm_mips_pending_timer(vcpu);
1093}
1094
1095int kvm_arch_vcpu_dump_regs(struct kvm_vcpu *vcpu)
1096{
1097 int i;
1098 struct mips_coproc *cop0;
1099
1100 if (!vcpu)
1101 return -1;
1102
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001103 kvm_debug("VCPU Register Dump:\n");
1104 kvm_debug("\tpc = 0x%08lx\n", vcpu->arch.pc);
1105 kvm_debug("\texceptions: %08lx\n", vcpu->arch.pending_exceptions);
Sanjay Lal669e8462012-11-21 18:34:02 -08001106
1107 for (i = 0; i < 32; i += 4) {
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001108 kvm_debug("\tgpr%02d: %08lx %08lx %08lx %08lx\n", i,
Sanjay Lal669e8462012-11-21 18:34:02 -08001109 vcpu->arch.gprs[i],
1110 vcpu->arch.gprs[i + 1],
1111 vcpu->arch.gprs[i + 2], vcpu->arch.gprs[i + 3]);
1112 }
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001113 kvm_debug("\thi: 0x%08lx\n", vcpu->arch.hi);
1114 kvm_debug("\tlo: 0x%08lx\n", vcpu->arch.lo);
Sanjay Lal669e8462012-11-21 18:34:02 -08001115
1116 cop0 = vcpu->arch.cop0;
James Hogana27660f2017-03-14 10:15:25 +00001117 kvm_debug("\tStatus: 0x%08x, Cause: 0x%08x\n",
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001118 kvm_read_c0_guest_status(cop0),
1119 kvm_read_c0_guest_cause(cop0));
Sanjay Lal669e8462012-11-21 18:34:02 -08001120
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001121 kvm_debug("\tEPC: 0x%08lx\n", kvm_read_c0_guest_epc(cop0));
Sanjay Lal669e8462012-11-21 18:34:02 -08001122
1123 return 0;
1124}
1125
1126int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
1127{
1128 int i;
1129
David Daney8d17dd02013-05-23 09:49:08 -07001130 for (i = 1; i < ARRAY_SIZE(vcpu->arch.gprs); i++)
David Daneybf32ebf2013-05-23 09:49:07 -07001131 vcpu->arch.gprs[i] = regs->gpr[i];
David Daney8d17dd02013-05-23 09:49:08 -07001132 vcpu->arch.gprs[0] = 0; /* zero is special, and cannot be set. */
Sanjay Lal669e8462012-11-21 18:34:02 -08001133 vcpu->arch.hi = regs->hi;
1134 vcpu->arch.lo = regs->lo;
1135 vcpu->arch.pc = regs->pc;
1136
David Daney4c73fb22013-05-23 09:49:09 -07001137 return 0;
Sanjay Lal669e8462012-11-21 18:34:02 -08001138}
1139
1140int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
1141{
1142 int i;
1143
David Daney8d17dd02013-05-23 09:49:08 -07001144 for (i = 0; i < ARRAY_SIZE(vcpu->arch.gprs); i++)
David Daneybf32ebf2013-05-23 09:49:07 -07001145 regs->gpr[i] = vcpu->arch.gprs[i];
Sanjay Lal669e8462012-11-21 18:34:02 -08001146
1147 regs->hi = vcpu->arch.hi;
1148 regs->lo = vcpu->arch.lo;
1149 regs->pc = vcpu->arch.pc;
1150
David Daney4c73fb22013-05-23 09:49:09 -07001151 return 0;
Sanjay Lal669e8462012-11-21 18:34:02 -08001152}
1153
James Hogan0fae34f2014-05-29 10:16:39 +01001154static void kvm_mips_comparecount_func(unsigned long data)
Sanjay Lal669e8462012-11-21 18:34:02 -08001155{
1156 struct kvm_vcpu *vcpu = (struct kvm_vcpu *)data;
1157
1158 kvm_mips_callbacks->queue_timer_int(vcpu);
1159
1160 vcpu->arch.wait = 0;
Marcelo Tosatti85773702016-02-19 09:46:39 +01001161 if (swait_active(&vcpu->wq))
1162 swake_up(&vcpu->wq);
Sanjay Lal669e8462012-11-21 18:34:02 -08001163}
1164
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001165/* low level hrtimer wake routine */
James Hogan0fae34f2014-05-29 10:16:39 +01001166static enum hrtimer_restart kvm_mips_comparecount_wakeup(struct hrtimer *timer)
Sanjay Lal669e8462012-11-21 18:34:02 -08001167{
1168 struct kvm_vcpu *vcpu;
1169
1170 vcpu = container_of(timer, struct kvm_vcpu, arch.comparecount_timer);
1171 kvm_mips_comparecount_func((unsigned long) vcpu);
James Hogane30492b2014-05-29 10:16:35 +01001172 return kvm_mips_count_timeout(vcpu);
Sanjay Lal669e8462012-11-21 18:34:02 -08001173}
1174
1175int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
1176{
James Hoganf7f14272016-09-08 22:57:03 +01001177 int err;
1178
1179 err = kvm_mips_callbacks->vcpu_init(vcpu);
1180 if (err)
1181 return err;
1182
Sanjay Lal669e8462012-11-21 18:34:02 -08001183 hrtimer_init(&vcpu->arch.comparecount_timer, CLOCK_MONOTONIC,
1184 HRTIMER_MODE_REL);
1185 vcpu->arch.comparecount_timer.function = kvm_mips_comparecount_wakeup;
Sanjay Lal669e8462012-11-21 18:34:02 -08001186 return 0;
1187}
1188
James Hogan630766b2016-09-08 23:00:24 +01001189void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
1190{
1191 kvm_mips_callbacks->vcpu_uninit(vcpu);
1192}
1193
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001194int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
1195 struct kvm_translation *tr)
Sanjay Lal669e8462012-11-21 18:34:02 -08001196{
1197 return 0;
1198}
1199
1200/* Initial guest state */
1201int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu)
1202{
1203 return kvm_mips_callbacks->vcpu_setup(vcpu);
1204}
1205
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001206static void kvm_mips_set_c0_status(void)
Sanjay Lal669e8462012-11-21 18:34:02 -08001207{
James Hogan8cffd192016-06-09 14:19:08 +01001208 u32 status = read_c0_status();
Sanjay Lal669e8462012-11-21 18:34:02 -08001209
Sanjay Lal669e8462012-11-21 18:34:02 -08001210 if (cpu_has_dsp)
1211 status |= (ST0_MX);
1212
1213 write_c0_status(status);
1214 ehb();
1215}
1216
1217/*
1218 * Return value is in the form (errcode<<2 | RESUME_FLAG_HOST | RESUME_FLAG_NV)
1219 */
1220int kvm_mips_handle_exit(struct kvm_run *run, struct kvm_vcpu *vcpu)
1221{
James Hogan8cffd192016-06-09 14:19:08 +01001222 u32 cause = vcpu->arch.host_cp0_cause;
1223 u32 exccode = (cause >> CAUSEB_EXCCODE) & 0x1f;
1224 u32 __user *opc = (u32 __user *) vcpu->arch.pc;
Sanjay Lal669e8462012-11-21 18:34:02 -08001225 unsigned long badvaddr = vcpu->arch.host_cp0_badvaddr;
1226 enum emulation_result er = EMULATE_DONE;
James Hogan122e51d2016-11-28 17:23:14 +00001227 u32 inst;
Sanjay Lal669e8462012-11-21 18:34:02 -08001228 int ret = RESUME_GUEST;
1229
James Hogan4841e0d2016-11-28 22:45:04 +00001230 vcpu->mode = OUTSIDE_GUEST_MODE;
1231
James Hoganc4c6f2c2015-02-04 10:52:03 +00001232 /* re-enable HTW before enabling interrupts */
1233 htw_start();
1234
Sanjay Lal669e8462012-11-21 18:34:02 -08001235 /* Set a default exit reason */
1236 run->exit_reason = KVM_EXIT_UNKNOWN;
1237 run->ready_for_interrupt_injection = 1;
1238
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001239 /*
1240 * Set the appropriate status bits based on host CPU features,
1241 * before we hit the scheduler
1242 */
Sanjay Lal669e8462012-11-21 18:34:02 -08001243 kvm_mips_set_c0_status();
1244
1245 local_irq_enable();
1246
1247 kvm_debug("kvm_mips_handle_exit: cause: %#x, PC: %p, kvm_run: %p, kvm_vcpu: %p\n",
1248 cause, opc, run, vcpu);
James Hogan1e09e862016-06-14 09:40:12 +01001249 trace_kvm_exit(vcpu, exccode);
Sanjay Lal669e8462012-11-21 18:34:02 -08001250
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001251 /*
1252 * Do a privilege check, if in UM most of these exit conditions end up
Sanjay Lal669e8462012-11-21 18:34:02 -08001253 * causing an exception to be delivered to the Guest Kernel
1254 */
1255 er = kvm_mips_check_privilege(cause, opc, run, vcpu);
1256 if (er == EMULATE_PRIV_FAIL) {
1257 goto skip_emul;
1258 } else if (er == EMULATE_FAIL) {
1259 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1260 ret = RESUME_HOST;
1261 goto skip_emul;
1262 }
1263
1264 switch (exccode) {
James Hogan16d100db2015-12-16 23:49:33 +00001265 case EXCCODE_INT:
1266 kvm_debug("[%d]EXCCODE_INT @ %p\n", vcpu->vcpu_id, opc);
Sanjay Lal669e8462012-11-21 18:34:02 -08001267
1268 ++vcpu->stat.int_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001269
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001270 if (need_resched())
Sanjay Lal669e8462012-11-21 18:34:02 -08001271 cond_resched();
Sanjay Lal669e8462012-11-21 18:34:02 -08001272
1273 ret = RESUME_GUEST;
1274 break;
1275
James Hogan16d100db2015-12-16 23:49:33 +00001276 case EXCCODE_CPU:
1277 kvm_debug("EXCCODE_CPU: @ PC: %p\n", opc);
Sanjay Lal669e8462012-11-21 18:34:02 -08001278
1279 ++vcpu->stat.cop_unusable_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001280 ret = kvm_mips_callbacks->handle_cop_unusable(vcpu);
1281 /* XXXKYMA: Might need to return to user space */
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001282 if (run->exit_reason == KVM_EXIT_IRQ_WINDOW_OPEN)
Sanjay Lal669e8462012-11-21 18:34:02 -08001283 ret = RESUME_HOST;
Sanjay Lal669e8462012-11-21 18:34:02 -08001284 break;
1285
James Hogan16d100db2015-12-16 23:49:33 +00001286 case EXCCODE_MOD:
Sanjay Lal669e8462012-11-21 18:34:02 -08001287 ++vcpu->stat.tlbmod_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001288 ret = kvm_mips_callbacks->handle_tlb_mod(vcpu);
1289 break;
1290
James Hogan16d100db2015-12-16 23:49:33 +00001291 case EXCCODE_TLBS:
James Hogana27660f2017-03-14 10:15:25 +00001292 kvm_debug("TLB ST fault: cause %#x, status %#x, PC: %p, BadVaddr: %#lx\n",
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001293 cause, kvm_read_c0_guest_status(vcpu->arch.cop0), opc,
1294 badvaddr);
Sanjay Lal669e8462012-11-21 18:34:02 -08001295
1296 ++vcpu->stat.tlbmiss_st_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001297 ret = kvm_mips_callbacks->handle_tlb_st_miss(vcpu);
1298 break;
1299
James Hogan16d100db2015-12-16 23:49:33 +00001300 case EXCCODE_TLBL:
Sanjay Lal669e8462012-11-21 18:34:02 -08001301 kvm_debug("TLB LD fault: cause %#x, PC: %p, BadVaddr: %#lx\n",
1302 cause, opc, badvaddr);
1303
1304 ++vcpu->stat.tlbmiss_ld_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001305 ret = kvm_mips_callbacks->handle_tlb_ld_miss(vcpu);
1306 break;
1307
James Hogan16d100db2015-12-16 23:49:33 +00001308 case EXCCODE_ADES:
Sanjay Lal669e8462012-11-21 18:34:02 -08001309 ++vcpu->stat.addrerr_st_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001310 ret = kvm_mips_callbacks->handle_addr_err_st(vcpu);
1311 break;
1312
James Hogan16d100db2015-12-16 23:49:33 +00001313 case EXCCODE_ADEL:
Sanjay Lal669e8462012-11-21 18:34:02 -08001314 ++vcpu->stat.addrerr_ld_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001315 ret = kvm_mips_callbacks->handle_addr_err_ld(vcpu);
1316 break;
1317
James Hogan16d100db2015-12-16 23:49:33 +00001318 case EXCCODE_SYS:
Sanjay Lal669e8462012-11-21 18:34:02 -08001319 ++vcpu->stat.syscall_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001320 ret = kvm_mips_callbacks->handle_syscall(vcpu);
1321 break;
1322
James Hogan16d100db2015-12-16 23:49:33 +00001323 case EXCCODE_RI:
Sanjay Lal669e8462012-11-21 18:34:02 -08001324 ++vcpu->stat.resvd_inst_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001325 ret = kvm_mips_callbacks->handle_res_inst(vcpu);
1326 break;
1327
James Hogan16d100db2015-12-16 23:49:33 +00001328 case EXCCODE_BP:
Sanjay Lal669e8462012-11-21 18:34:02 -08001329 ++vcpu->stat.break_inst_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001330 ret = kvm_mips_callbacks->handle_break(vcpu);
1331 break;
1332
James Hogan16d100db2015-12-16 23:49:33 +00001333 case EXCCODE_TR:
James Hogan0a560422015-02-06 16:03:57 +00001334 ++vcpu->stat.trap_inst_exits;
James Hogan0a560422015-02-06 16:03:57 +00001335 ret = kvm_mips_callbacks->handle_trap(vcpu);
1336 break;
1337
James Hogan16d100db2015-12-16 23:49:33 +00001338 case EXCCODE_MSAFPE:
James Hoganc2537ed2015-02-06 10:56:27 +00001339 ++vcpu->stat.msa_fpe_exits;
James Hoganc2537ed2015-02-06 10:56:27 +00001340 ret = kvm_mips_callbacks->handle_msa_fpe(vcpu);
1341 break;
1342
James Hogan16d100db2015-12-16 23:49:33 +00001343 case EXCCODE_FPE:
James Hogan1c0cd662015-02-06 10:56:27 +00001344 ++vcpu->stat.fpe_exits;
James Hogan1c0cd662015-02-06 10:56:27 +00001345 ret = kvm_mips_callbacks->handle_fpe(vcpu);
1346 break;
1347
James Hogan16d100db2015-12-16 23:49:33 +00001348 case EXCCODE_MSADIS:
James Hoganc2537ed2015-02-06 10:56:27 +00001349 ++vcpu->stat.msa_disabled_exits;
James Hogan98119ad2015-02-06 11:11:56 +00001350 ret = kvm_mips_callbacks->handle_msa_disabled(vcpu);
1351 break;
1352
James Hogan28c1e762017-03-14 10:15:24 +00001353 case EXCCODE_GE:
1354 /* defer exit accounting to handler */
1355 ret = kvm_mips_callbacks->handle_guest_exit(vcpu);
1356 break;
1357
Sanjay Lal669e8462012-11-21 18:34:02 -08001358 default:
James Hogan122e51d2016-11-28 17:23:14 +00001359 if (cause & CAUSEF_BD)
1360 opc += 1;
1361 inst = 0;
James Hogan6a97c772015-04-23 16:54:35 +01001362 kvm_get_badinstr(opc, vcpu, &inst);
James Hogana27660f2017-03-14 10:15:25 +00001363 kvm_err("Exception Code: %d, not yet handled, @ PC: %p, inst: 0x%08x BadVaddr: %#lx Status: %#x\n",
James Hogan122e51d2016-11-28 17:23:14 +00001364 exccode, opc, inst, badvaddr,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001365 kvm_read_c0_guest_status(vcpu->arch.cop0));
Sanjay Lal669e8462012-11-21 18:34:02 -08001366 kvm_arch_vcpu_dump_regs(vcpu);
1367 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1368 ret = RESUME_HOST;
1369 break;
1370
1371 }
1372
1373skip_emul:
1374 local_irq_disable();
1375
1376 if (er == EMULATE_DONE && !(ret & RESUME_HOST))
1377 kvm_mips_deliver_interrupts(vcpu, cause);
1378
1379 if (!(ret & RESUME_HOST)) {
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001380 /* Only check for signals if not already exiting to userspace */
Sanjay Lal669e8462012-11-21 18:34:02 -08001381 if (signal_pending(current)) {
1382 run->exit_reason = KVM_EXIT_INTR;
1383 ret = (-EINTR << 2) | RESUME_HOST;
1384 ++vcpu->stat.signal_exits;
James Hogan1e09e862016-06-14 09:40:12 +01001385 trace_kvm_exit(vcpu, KVM_TRACE_EXIT_SIGNAL);
Sanjay Lal669e8462012-11-21 18:34:02 -08001386 }
1387 }
1388
James Hogan98e91b82014-11-18 14:09:12 +00001389 if (ret == RESUME_GUEST) {
James Hogan93258602016-06-14 09:40:14 +01001390 trace_kvm_reenter(vcpu);
1391
James Hogan4841e0d2016-11-28 22:45:04 +00001392 /*
1393 * Make sure the read of VCPU requests in vcpu_reenter()
1394 * callback is not reordered ahead of the write to vcpu->mode,
1395 * or we could miss a TLB flush request while the requester sees
1396 * the VCPU as outside of guest mode and not needing an IPI.
1397 */
1398 smp_store_mb(vcpu->mode, IN_GUEST_MODE);
1399
James Hogana2c046e2016-11-18 13:14:37 +00001400 kvm_mips_callbacks->vcpu_reenter(run, vcpu);
James Hogan25b08c72016-09-16 00:06:43 +01001401
James Hogan98e91b82014-11-18 14:09:12 +00001402 /*
James Hogan539cb89fb2015-03-05 11:43:36 +00001403 * If FPU / MSA are enabled (i.e. the guest's FPU / MSA context
1404 * is live), restore FCR31 / MSACSR.
James Hogan98e91b82014-11-18 14:09:12 +00001405 *
1406 * This should be before returning to the guest exception
James Hogan539cb89fb2015-03-05 11:43:36 +00001407 * vector, as it may well cause an [MSA] FP exception if there
1408 * are pending exception bits unmasked. (see
James Hogan98e91b82014-11-18 14:09:12 +00001409 * kvm_mips_csr_die_notifier() for how that is handled).
1410 */
1411 if (kvm_mips_guest_has_fpu(&vcpu->arch) &&
1412 read_c0_status() & ST0_CU1)
1413 __kvm_restore_fcsr(&vcpu->arch);
James Hogan539cb89fb2015-03-05 11:43:36 +00001414
1415 if (kvm_mips_guest_has_msa(&vcpu->arch) &&
1416 read_c0_config5() & MIPS_CONF5_MSAEN)
1417 __kvm_restore_msacsr(&vcpu->arch);
James Hogan98e91b82014-11-18 14:09:12 +00001418 }
1419
James Hoganc4c6f2c2015-02-04 10:52:03 +00001420 /* Disable HTW before returning to guest or host */
1421 htw_stop();
1422
Sanjay Lal669e8462012-11-21 18:34:02 -08001423 return ret;
1424}
1425
James Hogan98e91b82014-11-18 14:09:12 +00001426/* Enable FPU for guest and restore context */
1427void kvm_own_fpu(struct kvm_vcpu *vcpu)
1428{
1429 struct mips_coproc *cop0 = vcpu->arch.cop0;
1430 unsigned int sr, cfg5;
1431
1432 preempt_disable();
1433
James Hogan539cb89fb2015-03-05 11:43:36 +00001434 sr = kvm_read_c0_guest_status(cop0);
1435
1436 /*
1437 * If MSA state is already live, it is undefined how it interacts with
1438 * FR=0 FPU state, and we don't want to hit reserved instruction
1439 * exceptions trying to save the MSA state later when CU=1 && FR=1, so
1440 * play it safe and save it first.
1441 *
1442 * In theory we shouldn't ever hit this case since kvm_lose_fpu() should
1443 * get called when guest CU1 is set, however we can't trust the guest
1444 * not to clobber the status register directly via the commpage.
1445 */
1446 if (cpu_has_msa && sr & ST0_CU1 && !(sr & ST0_FR) &&
James Hoganf9431762016-06-14 09:40:10 +01001447 vcpu->arch.aux_inuse & KVM_MIPS_AUX_MSA)
James Hogan539cb89fb2015-03-05 11:43:36 +00001448 kvm_lose_fpu(vcpu);
1449
James Hogan98e91b82014-11-18 14:09:12 +00001450 /*
1451 * Enable FPU for guest
1452 * We set FR and FRE according to guest context
1453 */
James Hogan98e91b82014-11-18 14:09:12 +00001454 change_c0_status(ST0_CU1 | ST0_FR, sr);
1455 if (cpu_has_fre) {
1456 cfg5 = kvm_read_c0_guest_config5(cop0);
1457 change_c0_config5(MIPS_CONF5_FRE, cfg5);
1458 }
1459 enable_fpu_hazard();
1460
1461 /* If guest FPU state not active, restore it now */
James Hoganf9431762016-06-14 09:40:10 +01001462 if (!(vcpu->arch.aux_inuse & KVM_MIPS_AUX_FPU)) {
James Hogan98e91b82014-11-18 14:09:12 +00001463 __kvm_restore_fpu(&vcpu->arch);
James Hoganf9431762016-06-14 09:40:10 +01001464 vcpu->arch.aux_inuse |= KVM_MIPS_AUX_FPU;
James Hogan04ebebf2016-06-14 09:40:11 +01001465 trace_kvm_aux(vcpu, KVM_TRACE_AUX_RESTORE, KVM_TRACE_AUX_FPU);
1466 } else {
1467 trace_kvm_aux(vcpu, KVM_TRACE_AUX_ENABLE, KVM_TRACE_AUX_FPU);
James Hogan98e91b82014-11-18 14:09:12 +00001468 }
1469
1470 preempt_enable();
1471}
1472
James Hogan539cb89fb2015-03-05 11:43:36 +00001473#ifdef CONFIG_CPU_HAS_MSA
1474/* Enable MSA for guest and restore context */
1475void kvm_own_msa(struct kvm_vcpu *vcpu)
1476{
1477 struct mips_coproc *cop0 = vcpu->arch.cop0;
1478 unsigned int sr, cfg5;
1479
1480 preempt_disable();
1481
1482 /*
1483 * Enable FPU if enabled in guest, since we're restoring FPU context
1484 * anyway. We set FR and FRE according to guest context.
1485 */
1486 if (kvm_mips_guest_has_fpu(&vcpu->arch)) {
1487 sr = kvm_read_c0_guest_status(cop0);
1488
1489 /*
1490 * If FR=0 FPU state is already live, it is undefined how it
1491 * interacts with MSA state, so play it safe and save it first.
1492 */
1493 if (!(sr & ST0_FR) &&
James Hoganf9431762016-06-14 09:40:10 +01001494 (vcpu->arch.aux_inuse & (KVM_MIPS_AUX_FPU |
1495 KVM_MIPS_AUX_MSA)) == KVM_MIPS_AUX_FPU)
James Hogan539cb89fb2015-03-05 11:43:36 +00001496 kvm_lose_fpu(vcpu);
1497
1498 change_c0_status(ST0_CU1 | ST0_FR, sr);
1499 if (sr & ST0_CU1 && cpu_has_fre) {
1500 cfg5 = kvm_read_c0_guest_config5(cop0);
1501 change_c0_config5(MIPS_CONF5_FRE, cfg5);
1502 }
1503 }
1504
1505 /* Enable MSA for guest */
1506 set_c0_config5(MIPS_CONF5_MSAEN);
1507 enable_fpu_hazard();
1508
James Hoganf9431762016-06-14 09:40:10 +01001509 switch (vcpu->arch.aux_inuse & (KVM_MIPS_AUX_FPU | KVM_MIPS_AUX_MSA)) {
1510 case KVM_MIPS_AUX_FPU:
James Hogan539cb89fb2015-03-05 11:43:36 +00001511 /*
1512 * Guest FPU state already loaded, only restore upper MSA state
1513 */
1514 __kvm_restore_msa_upper(&vcpu->arch);
James Hoganf9431762016-06-14 09:40:10 +01001515 vcpu->arch.aux_inuse |= KVM_MIPS_AUX_MSA;
James Hogan04ebebf2016-06-14 09:40:11 +01001516 trace_kvm_aux(vcpu, KVM_TRACE_AUX_RESTORE, KVM_TRACE_AUX_MSA);
James Hogan539cb89fb2015-03-05 11:43:36 +00001517 break;
1518 case 0:
1519 /* Neither FPU or MSA already active, restore full MSA state */
1520 __kvm_restore_msa(&vcpu->arch);
James Hoganf9431762016-06-14 09:40:10 +01001521 vcpu->arch.aux_inuse |= KVM_MIPS_AUX_MSA;
James Hogan539cb89fb2015-03-05 11:43:36 +00001522 if (kvm_mips_guest_has_fpu(&vcpu->arch))
James Hoganf9431762016-06-14 09:40:10 +01001523 vcpu->arch.aux_inuse |= KVM_MIPS_AUX_FPU;
James Hogan04ebebf2016-06-14 09:40:11 +01001524 trace_kvm_aux(vcpu, KVM_TRACE_AUX_RESTORE,
1525 KVM_TRACE_AUX_FPU_MSA);
James Hogan539cb89fb2015-03-05 11:43:36 +00001526 break;
1527 default:
James Hogan04ebebf2016-06-14 09:40:11 +01001528 trace_kvm_aux(vcpu, KVM_TRACE_AUX_ENABLE, KVM_TRACE_AUX_MSA);
James Hogan539cb89fb2015-03-05 11:43:36 +00001529 break;
1530 }
1531
1532 preempt_enable();
1533}
1534#endif
1535
1536/* Drop FPU & MSA without saving it */
James Hogan98e91b82014-11-18 14:09:12 +00001537void kvm_drop_fpu(struct kvm_vcpu *vcpu)
1538{
1539 preempt_disable();
James Hoganf9431762016-06-14 09:40:10 +01001540 if (cpu_has_msa && vcpu->arch.aux_inuse & KVM_MIPS_AUX_MSA) {
James Hogan539cb89fb2015-03-05 11:43:36 +00001541 disable_msa();
James Hogan04ebebf2016-06-14 09:40:11 +01001542 trace_kvm_aux(vcpu, KVM_TRACE_AUX_DISCARD, KVM_TRACE_AUX_MSA);
James Hoganf9431762016-06-14 09:40:10 +01001543 vcpu->arch.aux_inuse &= ~KVM_MIPS_AUX_MSA;
James Hogan539cb89fb2015-03-05 11:43:36 +00001544 }
James Hoganf9431762016-06-14 09:40:10 +01001545 if (vcpu->arch.aux_inuse & KVM_MIPS_AUX_FPU) {
James Hogan98e91b82014-11-18 14:09:12 +00001546 clear_c0_status(ST0_CU1 | ST0_FR);
James Hogan04ebebf2016-06-14 09:40:11 +01001547 trace_kvm_aux(vcpu, KVM_TRACE_AUX_DISCARD, KVM_TRACE_AUX_FPU);
James Hoganf9431762016-06-14 09:40:10 +01001548 vcpu->arch.aux_inuse &= ~KVM_MIPS_AUX_FPU;
James Hogan98e91b82014-11-18 14:09:12 +00001549 }
1550 preempt_enable();
1551}
1552
James Hogan539cb89fb2015-03-05 11:43:36 +00001553/* Save and disable FPU & MSA */
James Hogan98e91b82014-11-18 14:09:12 +00001554void kvm_lose_fpu(struct kvm_vcpu *vcpu)
1555{
1556 /*
James Hoganc58cf742017-03-14 10:15:17 +00001557 * With T&E, FPU & MSA get disabled in root context (hardware) when it
1558 * is disabled in guest context (software), but the register state in
1559 * the hardware may still be in use.
1560 * This is why we explicitly re-enable the hardware before saving.
James Hogan98e91b82014-11-18 14:09:12 +00001561 */
1562
1563 preempt_disable();
James Hoganf9431762016-06-14 09:40:10 +01001564 if (cpu_has_msa && vcpu->arch.aux_inuse & KVM_MIPS_AUX_MSA) {
James Hoganc58cf742017-03-14 10:15:17 +00001565 if (!IS_ENABLED(CONFIG_KVM_MIPS_VZ)) {
1566 set_c0_config5(MIPS_CONF5_MSAEN);
1567 enable_fpu_hazard();
1568 }
James Hogan539cb89fb2015-03-05 11:43:36 +00001569
1570 __kvm_save_msa(&vcpu->arch);
James Hogan04ebebf2016-06-14 09:40:11 +01001571 trace_kvm_aux(vcpu, KVM_TRACE_AUX_SAVE, KVM_TRACE_AUX_FPU_MSA);
James Hogan539cb89fb2015-03-05 11:43:36 +00001572
1573 /* Disable MSA & FPU */
1574 disable_msa();
James Hoganf9431762016-06-14 09:40:10 +01001575 if (vcpu->arch.aux_inuse & KVM_MIPS_AUX_FPU) {
James Hogan539cb89fb2015-03-05 11:43:36 +00001576 clear_c0_status(ST0_CU1 | ST0_FR);
James Hogan4ac33422016-04-22 10:38:49 +01001577 disable_fpu_hazard();
1578 }
James Hoganf9431762016-06-14 09:40:10 +01001579 vcpu->arch.aux_inuse &= ~(KVM_MIPS_AUX_FPU | KVM_MIPS_AUX_MSA);
1580 } else if (vcpu->arch.aux_inuse & KVM_MIPS_AUX_FPU) {
James Hoganc58cf742017-03-14 10:15:17 +00001581 if (!IS_ENABLED(CONFIG_KVM_MIPS_VZ)) {
1582 set_c0_status(ST0_CU1);
1583 enable_fpu_hazard();
1584 }
James Hogan98e91b82014-11-18 14:09:12 +00001585
1586 __kvm_save_fpu(&vcpu->arch);
James Hoganf9431762016-06-14 09:40:10 +01001587 vcpu->arch.aux_inuse &= ~KVM_MIPS_AUX_FPU;
James Hogan04ebebf2016-06-14 09:40:11 +01001588 trace_kvm_aux(vcpu, KVM_TRACE_AUX_SAVE, KVM_TRACE_AUX_FPU);
James Hogan98e91b82014-11-18 14:09:12 +00001589
1590 /* Disable FPU */
1591 clear_c0_status(ST0_CU1 | ST0_FR);
James Hogan4ac33422016-04-22 10:38:49 +01001592 disable_fpu_hazard();
James Hogan98e91b82014-11-18 14:09:12 +00001593 }
1594 preempt_enable();
1595}
1596
1597/*
James Hogan539cb89fb2015-03-05 11:43:36 +00001598 * Step over a specific ctc1 to FCSR and a specific ctcmsa to MSACSR which are
1599 * used to restore guest FCSR/MSACSR state and may trigger a "harmless" FP/MSAFP
1600 * exception if cause bits are set in the value being written.
James Hogan98e91b82014-11-18 14:09:12 +00001601 */
1602static int kvm_mips_csr_die_notify(struct notifier_block *self,
1603 unsigned long cmd, void *ptr)
1604{
1605 struct die_args *args = (struct die_args *)ptr;
1606 struct pt_regs *regs = args->regs;
1607 unsigned long pc;
1608
James Hogan539cb89fb2015-03-05 11:43:36 +00001609 /* Only interested in FPE and MSAFPE */
1610 if (cmd != DIE_FP && cmd != DIE_MSAFP)
James Hogan98e91b82014-11-18 14:09:12 +00001611 return NOTIFY_DONE;
1612
1613 /* Return immediately if guest context isn't active */
1614 if (!(current->flags & PF_VCPU))
1615 return NOTIFY_DONE;
1616
1617 /* Should never get here from user mode */
1618 BUG_ON(user_mode(regs));
1619
1620 pc = instruction_pointer(regs);
1621 switch (cmd) {
1622 case DIE_FP:
1623 /* match 2nd instruction in __kvm_restore_fcsr */
1624 if (pc != (unsigned long)&__kvm_restore_fcsr + 4)
1625 return NOTIFY_DONE;
1626 break;
James Hogan539cb89fb2015-03-05 11:43:36 +00001627 case DIE_MSAFP:
1628 /* match 2nd/3rd instruction in __kvm_restore_msacsr */
1629 if (!cpu_has_msa ||
1630 pc < (unsigned long)&__kvm_restore_msacsr + 4 ||
1631 pc > (unsigned long)&__kvm_restore_msacsr + 8)
1632 return NOTIFY_DONE;
1633 break;
James Hogan98e91b82014-11-18 14:09:12 +00001634 }
1635
1636 /* Move PC forward a little and continue executing */
1637 instruction_pointer(regs) += 4;
1638
1639 return NOTIFY_STOP;
1640}
1641
1642static struct notifier_block kvm_mips_csr_die_notifier = {
1643 .notifier_call = kvm_mips_csr_die_notify,
1644};
1645
James Hogan2db9d232015-12-16 23:49:32 +00001646static int __init kvm_mips_init(void)
Sanjay Lal669e8462012-11-21 18:34:02 -08001647{
1648 int ret;
1649
James Hogan1e5217f52016-06-23 17:34:45 +01001650 ret = kvm_mips_entry_setup();
1651 if (ret)
1652 return ret;
1653
Sanjay Lal669e8462012-11-21 18:34:02 -08001654 ret = kvm_init(NULL, sizeof(struct kvm_vcpu), 0, THIS_MODULE);
1655
1656 if (ret)
1657 return ret;
1658
James Hogan98e91b82014-11-18 14:09:12 +00001659 register_die_notifier(&kvm_mips_csr_die_notifier);
1660
Sanjay Lal669e8462012-11-21 18:34:02 -08001661 return 0;
1662}
1663
James Hogan2db9d232015-12-16 23:49:32 +00001664static void __exit kvm_mips_exit(void)
Sanjay Lal669e8462012-11-21 18:34:02 -08001665{
1666 kvm_exit();
1667
James Hogan98e91b82014-11-18 14:09:12 +00001668 unregister_die_notifier(&kvm_mips_csr_die_notifier);
Sanjay Lal669e8462012-11-21 18:34:02 -08001669}
1670
1671module_init(kvm_mips_init);
1672module_exit(kvm_mips_exit);
1673
1674EXPORT_TRACEPOINT_SYMBOL(kvm_exit);