blob: 1bb5d01d5dec0527563fa73f2d2f144c3345dca3 [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) {
James Hoganc992a4f2017-03-14 10:15:31 +0000116#ifdef CONFIG_KVM_MIPS_VZ
117 case KVM_VM_MIPS_VZ:
118#else
James Hogana8a3c422017-03-14 10:15:19 +0000119 case KVM_VM_MIPS_TE:
James Hoganc992a4f2017-03-14 10:15:31 +0000120#endif
James Hogana8a3c422017-03-14 10:15:19 +0000121 break;
122 default:
123 /* Unsupported KVM type */
124 return -EINVAL;
125 };
126
James Hogan06c158c2015-05-01 13:50:18 +0100127 /* Allocate page table to map GPA -> RPA */
128 kvm->arch.gpa_mm.pgd = kvm_pgd_alloc();
129 if (!kvm->arch.gpa_mm.pgd)
130 return -ENOMEM;
131
Sanjay Lal669e8462012-11-21 18:34:02 -0800132 return 0;
133}
134
Luiz Capitulino235539b2016-09-07 14:47:23 -0400135bool kvm_arch_has_vcpu_debugfs(void)
136{
137 return false;
138}
139
140int kvm_arch_create_vcpu_debugfs(struct kvm_vcpu *vcpu)
141{
142 return 0;
143}
144
Sanjay Lal669e8462012-11-21 18:34:02 -0800145void kvm_mips_free_vcpus(struct kvm *kvm)
146{
147 unsigned int i;
148 struct kvm_vcpu *vcpu;
149
Sanjay Lal669e8462012-11-21 18:34:02 -0800150 kvm_for_each_vcpu(i, vcpu, kvm) {
151 kvm_arch_vcpu_free(vcpu);
152 }
153
154 mutex_lock(&kvm->lock);
155
156 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
157 kvm->vcpus[i] = NULL;
158
159 atomic_set(&kvm->online_vcpus, 0);
160
161 mutex_unlock(&kvm->lock);
162}
163
James Hogan06c158c2015-05-01 13:50:18 +0100164static void kvm_mips_free_gpa_pt(struct kvm *kvm)
165{
166 /* It should always be safe to remove after flushing the whole range */
167 WARN_ON(!kvm_mips_flush_gpa_pt(kvm, 0, ~0));
168 pgd_free(NULL, kvm->arch.gpa_mm.pgd);
169}
170
Sanjay Lal669e8462012-11-21 18:34:02 -0800171void kvm_arch_destroy_vm(struct kvm *kvm)
172{
173 kvm_mips_free_vcpus(kvm);
James Hogan06c158c2015-05-01 13:50:18 +0100174 kvm_mips_free_gpa_pt(kvm);
Sanjay Lal669e8462012-11-21 18:34:02 -0800175}
176
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700177long kvm_arch_dev_ioctl(struct file *filp, unsigned int ioctl,
178 unsigned long arg)
Sanjay Lal669e8462012-11-21 18:34:02 -0800179{
David Daneyed829852013-05-23 09:49:10 -0700180 return -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -0800181}
182
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530183int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
184 unsigned long npages)
Sanjay Lal669e8462012-11-21 18:34:02 -0800185{
186 return 0;
187}
188
James Hoganb6209112016-10-25 00:01:37 +0100189void kvm_arch_flush_shadow_all(struct kvm *kvm)
190{
191 /* Flush whole GPA */
192 kvm_mips_flush_gpa_pt(kvm, 0, ~0);
193
194 /* Let implementation do the rest */
195 kvm_mips_callbacks->flush_shadow_all(kvm);
196}
197
198void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
199 struct kvm_memory_slot *slot)
200{
201 /*
202 * The slot has been made invalid (ready for moving or deletion), so we
203 * need to ensure that it can no longer be accessed by any guest VCPUs.
204 */
205
206 spin_lock(&kvm->mmu_lock);
207 /* Flush slot from GPA */
208 kvm_mips_flush_gpa_pt(kvm, slot->base_gfn,
209 slot->base_gfn + slot->npages - 1);
210 /* Let implementation do the rest */
211 kvm_mips_callbacks->flush_shadow_memslot(kvm, slot);
212 spin_unlock(&kvm->mmu_lock);
213}
214
Sanjay Lal669e8462012-11-21 18:34:02 -0800215int kvm_arch_prepare_memory_region(struct kvm *kvm,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700216 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200217 const struct kvm_userspace_memory_region *mem,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700218 enum kvm_mr_change change)
Sanjay Lal669e8462012-11-21 18:34:02 -0800219{
220 return 0;
221}
222
223void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200224 const struct kvm_userspace_memory_region *mem,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700225 const struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +0200226 const struct kvm_memory_slot *new,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700227 enum kvm_mr_change change)
Sanjay Lal669e8462012-11-21 18:34:02 -0800228{
James Hogana1ac9e12016-12-06 14:56:20 +0000229 int needs_flush;
230
Sanjay Lal669e8462012-11-21 18:34:02 -0800231 kvm_debug("%s: kvm: %p slot: %d, GPA: %llx, size: %llx, QVA: %llx\n",
232 __func__, kvm, mem->slot, mem->guest_phys_addr,
233 mem->memory_size, mem->userspace_addr);
James Hogana1ac9e12016-12-06 14:56:20 +0000234
235 /*
236 * If dirty page logging is enabled, write protect all pages in the slot
237 * ready for dirty logging.
238 *
239 * There is no need to do this in any of the following cases:
240 * CREATE: No dirty mappings will already exist.
241 * MOVE/DELETE: The old mappings will already have been cleaned up by
242 * kvm_arch_flush_shadow_memslot()
243 */
244 if (change == KVM_MR_FLAGS_ONLY &&
245 (!(old->flags & KVM_MEM_LOG_DIRTY_PAGES) &&
246 new->flags & KVM_MEM_LOG_DIRTY_PAGES)) {
247 spin_lock(&kvm->mmu_lock);
248 /* Write protect GPA page table entries */
249 needs_flush = kvm_mips_mkclean_gpa_pt(kvm, new->base_gfn,
250 new->base_gfn + new->npages - 1);
251 /* Let implementation do the rest */
252 if (needs_flush)
253 kvm_mips_callbacks->flush_shadow_memslot(kvm, new);
254 spin_unlock(&kvm->mmu_lock);
255 }
Sanjay Lal669e8462012-11-21 18:34:02 -0800256}
257
James Hogand7b8f892016-06-23 17:34:40 +0100258static inline void dump_handler(const char *symbol, void *start, void *end)
259{
260 u32 *p;
261
262 pr_debug("LEAF(%s)\n", symbol);
263
264 pr_debug("\t.set push\n");
265 pr_debug("\t.set noreorder\n");
266
267 for (p = start; p < (u32 *)end; ++p)
268 pr_debug("\t.word\t0x%08x\t\t# %p\n", *p, p);
269
270 pr_debug("\t.set\tpop\n");
271
272 pr_debug("\tEND(%s)\n", symbol);
273}
274
Sanjay Lal669e8462012-11-21 18:34:02 -0800275struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
276{
James Hogan90e93112016-06-23 17:34:39 +0100277 int err, size;
James Hogana7cfa7a2016-09-10 23:56:46 +0100278 void *gebase, *p, *handler, *refill_start, *refill_end;
Sanjay Lal669e8462012-11-21 18:34:02 -0800279 int i;
280
281 struct kvm_vcpu *vcpu = kzalloc(sizeof(struct kvm_vcpu), GFP_KERNEL);
282
283 if (!vcpu) {
284 err = -ENOMEM;
285 goto out;
286 }
287
288 err = kvm_vcpu_init(vcpu, kvm, id);
289
290 if (err)
291 goto out_free_cpu;
292
James Hogan6e95bfd2014-05-29 10:16:43 +0100293 kvm_debug("kvm @ %p: create cpu %d at %p\n", kvm, id, vcpu);
Sanjay Lal669e8462012-11-21 18:34:02 -0800294
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700295 /*
296 * Allocate space for host mode exception handlers that handle
Sanjay Lal669e8462012-11-21 18:34:02 -0800297 * guest mode exits
298 */
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700299 if (cpu_has_veic || cpu_has_vint)
Sanjay Lal669e8462012-11-21 18:34:02 -0800300 size = 0x200 + VECTORSPACING * 64;
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700301 else
James Hogan7006e2d2014-05-29 10:16:23 +0100302 size = 0x4000;
Sanjay Lal669e8462012-11-21 18:34:02 -0800303
Sanjay Lal669e8462012-11-21 18:34:02 -0800304 gebase = kzalloc(ALIGN(size, PAGE_SIZE), GFP_KERNEL);
305
306 if (!gebase) {
307 err = -ENOMEM;
James Hogan585bb8f2015-11-11 14:21:20 +0000308 goto out_uninit_cpu;
Sanjay Lal669e8462012-11-21 18:34:02 -0800309 }
James Hogan6e95bfd2014-05-29 10:16:43 +0100310 kvm_debug("Allocated %d bytes for KVM Exception Handlers @ %p\n",
311 ALIGN(size, PAGE_SIZE), gebase);
Sanjay Lal669e8462012-11-21 18:34:02 -0800312
James Hogan2a06dab2016-07-08 11:53:26 +0100313 /*
314 * Check new ebase actually fits in CP0_EBase. The lack of a write gate
315 * limits us to the low 512MB of physical address space. If the memory
316 * we allocate is out of range, just give up now.
317 */
318 if (!cpu_has_ebase_wg && virt_to_phys(gebase) >= 0x20000000) {
319 kvm_err("CP0_EBase.WG required for guest exception base %pK\n",
320 gebase);
321 err = -ENOMEM;
322 goto out_free_gebase;
323 }
324
Sanjay Lal669e8462012-11-21 18:34:02 -0800325 /* Save new ebase */
326 vcpu->arch.guest_ebase = gebase;
327
James Hogan90e93112016-06-23 17:34:39 +0100328 /* Build guest exception vectors dynamically in unmapped memory */
James Hogan1f9ca622016-06-23 17:34:46 +0100329 handler = gebase + 0x2000;
Sanjay Lal669e8462012-11-21 18:34:02 -0800330
James Hogan1934a3a2017-03-14 10:15:26 +0000331 /* TLB refill (or XTLB refill on 64-bit VZ where KX=1) */
James Hogana7cfa7a2016-09-10 23:56:46 +0100332 refill_start = gebase;
James Hogan1934a3a2017-03-14 10:15:26 +0000333 if (IS_ENABLED(CONFIG_KVM_MIPS_VZ) && IS_ENABLED(CONFIG_64BIT))
334 refill_start += 0x080;
James Hogana7cfa7a2016-09-10 23:56:46 +0100335 refill_end = kvm_mips_build_tlb_refill_exception(refill_start, handler);
Sanjay Lal669e8462012-11-21 18:34:02 -0800336
337 /* General Exception Entry point */
James Hogan1f9ca622016-06-23 17:34:46 +0100338 kvm_mips_build_exception(gebase + 0x180, handler);
Sanjay Lal669e8462012-11-21 18:34:02 -0800339
340 /* For vectored interrupts poke the exception code @ all offsets 0-7 */
341 for (i = 0; i < 8; i++) {
342 kvm_debug("L1 Vectored handler @ %p\n",
343 gebase + 0x200 + (i * VECTORSPACING));
James Hogan1f9ca622016-06-23 17:34:46 +0100344 kvm_mips_build_exception(gebase + 0x200 + i * VECTORSPACING,
345 handler);
Sanjay Lal669e8462012-11-21 18:34:02 -0800346 }
347
James Hogan90e93112016-06-23 17:34:39 +0100348 /* General exit handler */
James Hogan1f9ca622016-06-23 17:34:46 +0100349 p = handler;
James Hogan90e93112016-06-23 17:34:39 +0100350 p = kvm_mips_build_exit(p);
Sanjay Lal669e8462012-11-21 18:34:02 -0800351
James Hogan90e93112016-06-23 17:34:39 +0100352 /* Guest entry routine */
353 vcpu->arch.vcpu_run = p;
354 p = kvm_mips_build_vcpu_run(p);
James Hogan797179b2016-06-09 10:50:43 +0100355
James Hogand7b8f892016-06-23 17:34:40 +0100356 /* Dump the generated code */
357 pr_debug("#include <asm/asm.h>\n");
358 pr_debug("#include <asm/regdef.h>\n");
359 pr_debug("\n");
360 dump_handler("kvm_vcpu_run", vcpu->arch.vcpu_run, p);
James Hogana7cfa7a2016-09-10 23:56:46 +0100361 dump_handler("kvm_tlb_refill", refill_start, refill_end);
James Hogand7b8f892016-06-23 17:34:40 +0100362 dump_handler("kvm_gen_exc", gebase + 0x180, gebase + 0x200);
363 dump_handler("kvm_exit", gebase + 0x2000, vcpu->arch.vcpu_run);
364
Sanjay Lal669e8462012-11-21 18:34:02 -0800365 /* Invalidate the icache for these ranges */
James Hogan32eb12a2017-01-03 17:43:01 +0000366 flush_icache_range((unsigned long)gebase,
367 (unsigned long)gebase + ALIGN(size, PAGE_SIZE));
Sanjay Lal669e8462012-11-21 18:34:02 -0800368
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700369 /*
370 * Allocate comm page for guest kernel, a TLB will be reserved for
371 * mapping GVA @ 0xFFFF8000 to this page
372 */
Sanjay Lal669e8462012-11-21 18:34:02 -0800373 vcpu->arch.kseg0_commpage = kzalloc(PAGE_SIZE << 1, GFP_KERNEL);
374
375 if (!vcpu->arch.kseg0_commpage) {
376 err = -ENOMEM;
377 goto out_free_gebase;
378 }
379
James Hogan6e95bfd2014-05-29 10:16:43 +0100380 kvm_debug("Allocated COMM page @ %p\n", vcpu->arch.kseg0_commpage);
Sanjay Lal669e8462012-11-21 18:34:02 -0800381 kvm_mips_commpage_init(vcpu);
382
383 /* Init */
384 vcpu->arch.last_sched_cpu = -1;
James Hoganc992a4f2017-03-14 10:15:31 +0000385 vcpu->arch.last_exec_cpu = -1;
Sanjay Lal669e8462012-11-21 18:34:02 -0800386
Sanjay Lal669e8462012-11-21 18:34:02 -0800387 return vcpu;
388
389out_free_gebase:
390 kfree(gebase);
391
James Hogan585bb8f2015-11-11 14:21:20 +0000392out_uninit_cpu:
393 kvm_vcpu_uninit(vcpu);
394
Sanjay Lal669e8462012-11-21 18:34:02 -0800395out_free_cpu:
396 kfree(vcpu);
397
398out:
399 return ERR_PTR(err);
400}
401
402void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
403{
404 hrtimer_cancel(&vcpu->arch.comparecount_timer);
405
406 kvm_vcpu_uninit(vcpu);
407
408 kvm_mips_dump_stats(vcpu);
409
James Hoganaba859292016-12-16 15:57:00 +0000410 kvm_mmu_free_memory_caches(vcpu);
James Hoganc6c0a662014-05-29 10:16:44 +0100411 kfree(vcpu->arch.guest_ebase);
412 kfree(vcpu->arch.kseg0_commpage);
Deng-Cheng Zhu8c9eb042014-06-24 10:31:08 -0700413 kfree(vcpu);
Sanjay Lal669e8462012-11-21 18:34:02 -0800414}
415
416void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
417{
418 kvm_arch_vcpu_free(vcpu);
419}
420
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700421int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
422 struct kvm_guest_debug *dbg)
Sanjay Lal669e8462012-11-21 18:34:02 -0800423{
David Daneyed829852013-05-23 09:49:10 -0700424 return -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -0800425}
426
427int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
428{
Paolo Bonzini460df4c2017-02-08 11:50:15 +0100429 int r = -EINTR;
Sanjay Lal669e8462012-11-21 18:34:02 -0800430 sigset_t sigsaved;
431
432 if (vcpu->sigset_active)
433 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
434
435 if (vcpu->mmio_needed) {
436 if (!vcpu->mmio_is_write)
437 kvm_mips_complete_mmio_load(vcpu, run);
438 vcpu->mmio_needed = 0;
439 }
440
Paolo Bonzini460df4c2017-02-08 11:50:15 +0100441 if (run->immediate_exit)
442 goto out;
443
James Hoganf7982172015-02-04 17:06:37 +0000444 lose_fpu(1);
445
James Hogan044f0f02014-05-29 10:16:32 +0100446 local_irq_disable();
Paolo Bonzini6edaa532016-06-15 15:18:26 +0200447 guest_enter_irqoff();
James Hogan93258602016-06-14 09:40:14 +0100448 trace_kvm_enter(vcpu);
James Hogan25b08c72016-09-16 00:06:43 +0100449
James Hogan4841e0d2016-11-28 22:45:04 +0000450 /*
451 * Make sure the read of VCPU requests in vcpu_run() callback is not
452 * reordered ahead of the write to vcpu->mode, or we could miss a TLB
453 * flush request while the requester sees the VCPU as outside of guest
454 * mode and not needing an IPI.
455 */
456 smp_store_mb(vcpu->mode, IN_GUEST_MODE);
457
James Hogana2c046e2016-11-18 13:14:37 +0000458 r = kvm_mips_callbacks->vcpu_run(run, vcpu);
James Hogan25b08c72016-09-16 00:06:43 +0100459
James Hogan93258602016-06-14 09:40:14 +0100460 trace_kvm_out(vcpu);
Paolo Bonzini6edaa532016-06-15 15:18:26 +0200461 guest_exit_irqoff();
Sanjay Lal669e8462012-11-21 18:34:02 -0800462 local_irq_enable();
463
Paolo Bonzini460df4c2017-02-08 11:50:15 +0100464out:
Sanjay Lal669e8462012-11-21 18:34:02 -0800465 if (vcpu->sigset_active)
466 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
467
468 return r;
469}
470
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700471int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
472 struct kvm_mips_interrupt *irq)
Sanjay Lal669e8462012-11-21 18:34:02 -0800473{
474 int intr = (int)irq->irq;
475 struct kvm_vcpu *dvcpu = NULL;
476
477 if (intr == 3 || intr == -3 || intr == 4 || intr == -4)
478 kvm_debug("%s: CPU: %d, INTR: %d\n", __func__, irq->cpu,
479 (int)intr);
480
481 if (irq->cpu == -1)
482 dvcpu = vcpu;
483 else
484 dvcpu = vcpu->kvm->vcpus[irq->cpu];
485
486 if (intr == 2 || intr == 3 || intr == 4) {
487 kvm_mips_callbacks->queue_io_int(dvcpu, irq);
488
489 } else if (intr == -2 || intr == -3 || intr == -4) {
490 kvm_mips_callbacks->dequeue_io_int(dvcpu, irq);
491 } else {
492 kvm_err("%s: invalid interrupt ioctl (%d:%d)\n", __func__,
493 irq->cpu, irq->irq);
494 return -EINVAL;
495 }
496
497 dvcpu->arch.wait = 0;
498
Marcelo Tosatti85773702016-02-19 09:46:39 +0100499 if (swait_active(&dvcpu->wq))
500 swake_up(&dvcpu->wq);
Sanjay Lal669e8462012-11-21 18:34:02 -0800501
502 return 0;
503}
504
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700505int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
506 struct kvm_mp_state *mp_state)
Sanjay Lal669e8462012-11-21 18:34:02 -0800507{
David Daneyed829852013-05-23 09:49:10 -0700508 return -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -0800509}
510
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700511int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
512 struct kvm_mp_state *mp_state)
Sanjay Lal669e8462012-11-21 18:34:02 -0800513{
David Daneyed829852013-05-23 09:49:10 -0700514 return -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -0800515}
516
David Daney4c73fb22013-05-23 09:49:09 -0700517static u64 kvm_mips_get_one_regs[] = {
518 KVM_REG_MIPS_R0,
519 KVM_REG_MIPS_R1,
520 KVM_REG_MIPS_R2,
521 KVM_REG_MIPS_R3,
522 KVM_REG_MIPS_R4,
523 KVM_REG_MIPS_R5,
524 KVM_REG_MIPS_R6,
525 KVM_REG_MIPS_R7,
526 KVM_REG_MIPS_R8,
527 KVM_REG_MIPS_R9,
528 KVM_REG_MIPS_R10,
529 KVM_REG_MIPS_R11,
530 KVM_REG_MIPS_R12,
531 KVM_REG_MIPS_R13,
532 KVM_REG_MIPS_R14,
533 KVM_REG_MIPS_R15,
534 KVM_REG_MIPS_R16,
535 KVM_REG_MIPS_R17,
536 KVM_REG_MIPS_R18,
537 KVM_REG_MIPS_R19,
538 KVM_REG_MIPS_R20,
539 KVM_REG_MIPS_R21,
540 KVM_REG_MIPS_R22,
541 KVM_REG_MIPS_R23,
542 KVM_REG_MIPS_R24,
543 KVM_REG_MIPS_R25,
544 KVM_REG_MIPS_R26,
545 KVM_REG_MIPS_R27,
546 KVM_REG_MIPS_R28,
547 KVM_REG_MIPS_R29,
548 KVM_REG_MIPS_R30,
549 KVM_REG_MIPS_R31,
550
James Hogan70e92c7e2016-07-04 19:35:11 +0100551#ifndef CONFIG_CPU_MIPSR6
David Daney4c73fb22013-05-23 09:49:09 -0700552 KVM_REG_MIPS_HI,
553 KVM_REG_MIPS_LO,
James Hogan70e92c7e2016-07-04 19:35:11 +0100554#endif
David Daney4c73fb22013-05-23 09:49:09 -0700555 KVM_REG_MIPS_PC,
David Daney4c73fb22013-05-23 09:49:09 -0700556};
557
James Hogane5775932016-06-15 19:29:51 +0100558static u64 kvm_mips_get_one_regs_fpu[] = {
559 KVM_REG_MIPS_FCR_IR,
560 KVM_REG_MIPS_FCR_CSR,
561};
562
563static u64 kvm_mips_get_one_regs_msa[] = {
564 KVM_REG_MIPS_MSA_IR,
565 KVM_REG_MIPS_MSA_CSR,
566};
567
James Hoganf5c43bd2016-06-15 19:29:49 +0100568static unsigned long kvm_mips_num_regs(struct kvm_vcpu *vcpu)
569{
570 unsigned long ret;
571
572 ret = ARRAY_SIZE(kvm_mips_get_one_regs);
James Hogane5775932016-06-15 19:29:51 +0100573 if (kvm_mips_guest_can_have_fpu(&vcpu->arch)) {
574 ret += ARRAY_SIZE(kvm_mips_get_one_regs_fpu) + 48;
575 /* odd doubles */
576 if (boot_cpu_data.fpu_id & MIPS_FPIR_F64)
577 ret += 16;
578 }
579 if (kvm_mips_guest_can_have_msa(&vcpu->arch))
580 ret += ARRAY_SIZE(kvm_mips_get_one_regs_msa) + 32;
James Hoganf5c43bd2016-06-15 19:29:49 +0100581 ret += kvm_mips_callbacks->num_regs(vcpu);
582
583 return ret;
584}
585
586static int kvm_mips_copy_reg_indices(struct kvm_vcpu *vcpu, u64 __user *indices)
587{
James Hogane5775932016-06-15 19:29:51 +0100588 u64 index;
589 unsigned int i;
590
James Hoganf5c43bd2016-06-15 19:29:49 +0100591 if (copy_to_user(indices, kvm_mips_get_one_regs,
592 sizeof(kvm_mips_get_one_regs)))
593 return -EFAULT;
594 indices += ARRAY_SIZE(kvm_mips_get_one_regs);
595
James Hogane5775932016-06-15 19:29:51 +0100596 if (kvm_mips_guest_can_have_fpu(&vcpu->arch)) {
597 if (copy_to_user(indices, kvm_mips_get_one_regs_fpu,
598 sizeof(kvm_mips_get_one_regs_fpu)))
599 return -EFAULT;
600 indices += ARRAY_SIZE(kvm_mips_get_one_regs_fpu);
601
602 for (i = 0; i < 32; ++i) {
603 index = KVM_REG_MIPS_FPR_32(i);
604 if (copy_to_user(indices, &index, sizeof(index)))
605 return -EFAULT;
606 ++indices;
607
608 /* skip odd doubles if no F64 */
609 if (i & 1 && !(boot_cpu_data.fpu_id & MIPS_FPIR_F64))
610 continue;
611
612 index = KVM_REG_MIPS_FPR_64(i);
613 if (copy_to_user(indices, &index, sizeof(index)))
614 return -EFAULT;
615 ++indices;
616 }
617 }
618
619 if (kvm_mips_guest_can_have_msa(&vcpu->arch)) {
620 if (copy_to_user(indices, kvm_mips_get_one_regs_msa,
621 sizeof(kvm_mips_get_one_regs_msa)))
622 return -EFAULT;
623 indices += ARRAY_SIZE(kvm_mips_get_one_regs_msa);
624
625 for (i = 0; i < 32; ++i) {
626 index = KVM_REG_MIPS_VEC_128(i);
627 if (copy_to_user(indices, &index, sizeof(index)))
628 return -EFAULT;
629 ++indices;
630 }
631 }
632
James Hoganf5c43bd2016-06-15 19:29:49 +0100633 return kvm_mips_callbacks->copy_reg_indices(vcpu, indices);
634}
635
David Daney4c73fb22013-05-23 09:49:09 -0700636static int kvm_mips_get_reg(struct kvm_vcpu *vcpu,
637 const struct kvm_one_reg *reg)
638{
David Daney4c73fb22013-05-23 09:49:09 -0700639 struct mips_coproc *cop0 = vcpu->arch.cop0;
James Hogan379245c2014-12-02 15:48:24 +0000640 struct mips_fpu_struct *fpu = &vcpu->arch.fpu;
James Hoganf8be02d2014-05-29 10:16:29 +0100641 int ret;
David Daney4c73fb22013-05-23 09:49:09 -0700642 s64 v;
James Hoganab86bd62014-12-02 15:48:24 +0000643 s64 vs[2];
James Hogan379245c2014-12-02 15:48:24 +0000644 unsigned int idx;
David Daney4c73fb22013-05-23 09:49:09 -0700645
646 switch (reg->id) {
James Hogan379245c2014-12-02 15:48:24 +0000647 /* General purpose registers */
David Daney4c73fb22013-05-23 09:49:09 -0700648 case KVM_REG_MIPS_R0 ... KVM_REG_MIPS_R31:
649 v = (long)vcpu->arch.gprs[reg->id - KVM_REG_MIPS_R0];
650 break;
James Hogan70e92c7e2016-07-04 19:35:11 +0100651#ifndef CONFIG_CPU_MIPSR6
David Daney4c73fb22013-05-23 09:49:09 -0700652 case KVM_REG_MIPS_HI:
653 v = (long)vcpu->arch.hi;
654 break;
655 case KVM_REG_MIPS_LO:
656 v = (long)vcpu->arch.lo;
657 break;
James Hogan70e92c7e2016-07-04 19:35:11 +0100658#endif
David Daney4c73fb22013-05-23 09:49:09 -0700659 case KVM_REG_MIPS_PC:
660 v = (long)vcpu->arch.pc;
661 break;
662
James Hogan379245c2014-12-02 15:48:24 +0000663 /* Floating point registers */
664 case KVM_REG_MIPS_FPR_32(0) ... KVM_REG_MIPS_FPR_32(31):
665 if (!kvm_mips_guest_has_fpu(&vcpu->arch))
666 return -EINVAL;
667 idx = reg->id - KVM_REG_MIPS_FPR_32(0);
668 /* Odd singles in top of even double when FR=0 */
669 if (kvm_read_c0_guest_status(cop0) & ST0_FR)
670 v = get_fpr32(&fpu->fpr[idx], 0);
671 else
672 v = get_fpr32(&fpu->fpr[idx & ~1], idx & 1);
673 break;
674 case KVM_REG_MIPS_FPR_64(0) ... KVM_REG_MIPS_FPR_64(31):
675 if (!kvm_mips_guest_has_fpu(&vcpu->arch))
676 return -EINVAL;
677 idx = reg->id - KVM_REG_MIPS_FPR_64(0);
678 /* Can't access odd doubles in FR=0 mode */
679 if (idx & 1 && !(kvm_read_c0_guest_status(cop0) & ST0_FR))
680 return -EINVAL;
681 v = get_fpr64(&fpu->fpr[idx], 0);
682 break;
683 case KVM_REG_MIPS_FCR_IR:
684 if (!kvm_mips_guest_has_fpu(&vcpu->arch))
685 return -EINVAL;
686 v = boot_cpu_data.fpu_id;
687 break;
688 case KVM_REG_MIPS_FCR_CSR:
689 if (!kvm_mips_guest_has_fpu(&vcpu->arch))
690 return -EINVAL;
691 v = fpu->fcr31;
692 break;
693
James Hoganab86bd62014-12-02 15:48:24 +0000694 /* MIPS SIMD Architecture (MSA) registers */
695 case KVM_REG_MIPS_VEC_128(0) ... KVM_REG_MIPS_VEC_128(31):
696 if (!kvm_mips_guest_has_msa(&vcpu->arch))
697 return -EINVAL;
698 /* Can't access MSA registers in FR=0 mode */
699 if (!(kvm_read_c0_guest_status(cop0) & ST0_FR))
700 return -EINVAL;
701 idx = reg->id - KVM_REG_MIPS_VEC_128(0);
702#ifdef CONFIG_CPU_LITTLE_ENDIAN
703 /* least significant byte first */
704 vs[0] = get_fpr64(&fpu->fpr[idx], 0);
705 vs[1] = get_fpr64(&fpu->fpr[idx], 1);
706#else
707 /* most significant byte first */
708 vs[0] = get_fpr64(&fpu->fpr[idx], 1);
709 vs[1] = get_fpr64(&fpu->fpr[idx], 0);
710#endif
711 break;
712 case KVM_REG_MIPS_MSA_IR:
713 if (!kvm_mips_guest_has_msa(&vcpu->arch))
714 return -EINVAL;
715 v = boot_cpu_data.msa_id;
716 break;
717 case KVM_REG_MIPS_MSA_CSR:
718 if (!kvm_mips_guest_has_msa(&vcpu->arch))
719 return -EINVAL;
720 v = fpu->msacsr;
721 break;
722
James Hoganf8be02d2014-05-29 10:16:29 +0100723 /* registers to be handled specially */
James Hogancc68d222016-06-15 19:29:48 +0100724 default:
James Hoganf8be02d2014-05-29 10:16:29 +0100725 ret = kvm_mips_callbacks->get_one_reg(vcpu, reg, &v);
726 if (ret)
727 return ret;
728 break;
David Daney4c73fb22013-05-23 09:49:09 -0700729 }
David Daney681865d2013-06-10 12:33:48 -0700730 if ((reg->id & KVM_REG_SIZE_MASK) == KVM_REG_SIZE_U64) {
731 u64 __user *uaddr64 = (u64 __user *)(long)reg->addr;
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700732
David Daney681865d2013-06-10 12:33:48 -0700733 return put_user(v, uaddr64);
734 } else if ((reg->id & KVM_REG_SIZE_MASK) == KVM_REG_SIZE_U32) {
735 u32 __user *uaddr32 = (u32 __user *)(long)reg->addr;
736 u32 v32 = (u32)v;
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700737
David Daney681865d2013-06-10 12:33:48 -0700738 return put_user(v32, uaddr32);
James Hoganab86bd62014-12-02 15:48:24 +0000739 } else if ((reg->id & KVM_REG_SIZE_MASK) == KVM_REG_SIZE_U128) {
740 void __user *uaddr = (void __user *)(long)reg->addr;
741
Michael S. Tsirkin0178fd72016-02-28 17:35:59 +0200742 return copy_to_user(uaddr, vs, 16) ? -EFAULT : 0;
David Daney681865d2013-06-10 12:33:48 -0700743 } else {
744 return -EINVAL;
745 }
David Daney4c73fb22013-05-23 09:49:09 -0700746}
747
748static int kvm_mips_set_reg(struct kvm_vcpu *vcpu,
749 const struct kvm_one_reg *reg)
750{
David Daney4c73fb22013-05-23 09:49:09 -0700751 struct mips_coproc *cop0 = vcpu->arch.cop0;
James Hogan379245c2014-12-02 15:48:24 +0000752 struct mips_fpu_struct *fpu = &vcpu->arch.fpu;
753 s64 v;
James Hoganab86bd62014-12-02 15:48:24 +0000754 s64 vs[2];
James Hogan379245c2014-12-02 15:48:24 +0000755 unsigned int idx;
David Daney4c73fb22013-05-23 09:49:09 -0700756
David Daney681865d2013-06-10 12:33:48 -0700757 if ((reg->id & KVM_REG_SIZE_MASK) == KVM_REG_SIZE_U64) {
758 u64 __user *uaddr64 = (u64 __user *)(long)reg->addr;
759
760 if (get_user(v, uaddr64) != 0)
761 return -EFAULT;
762 } else if ((reg->id & KVM_REG_SIZE_MASK) == KVM_REG_SIZE_U32) {
763 u32 __user *uaddr32 = (u32 __user *)(long)reg->addr;
764 s32 v32;
765
766 if (get_user(v32, uaddr32) != 0)
767 return -EFAULT;
768 v = (s64)v32;
James Hoganab86bd62014-12-02 15:48:24 +0000769 } else if ((reg->id & KVM_REG_SIZE_MASK) == KVM_REG_SIZE_U128) {
770 void __user *uaddr = (void __user *)(long)reg->addr;
771
Michael S. Tsirkin0178fd72016-02-28 17:35:59 +0200772 return copy_from_user(vs, uaddr, 16) ? -EFAULT : 0;
David Daney681865d2013-06-10 12:33:48 -0700773 } else {
774 return -EINVAL;
775 }
David Daney4c73fb22013-05-23 09:49:09 -0700776
777 switch (reg->id) {
James Hogan379245c2014-12-02 15:48:24 +0000778 /* General purpose registers */
David Daney4c73fb22013-05-23 09:49:09 -0700779 case KVM_REG_MIPS_R0:
780 /* Silently ignore requests to set $0 */
781 break;
782 case KVM_REG_MIPS_R1 ... KVM_REG_MIPS_R31:
783 vcpu->arch.gprs[reg->id - KVM_REG_MIPS_R0] = v;
784 break;
James Hogan70e92c7e2016-07-04 19:35:11 +0100785#ifndef CONFIG_CPU_MIPSR6
David Daney4c73fb22013-05-23 09:49:09 -0700786 case KVM_REG_MIPS_HI:
787 vcpu->arch.hi = v;
788 break;
789 case KVM_REG_MIPS_LO:
790 vcpu->arch.lo = v;
791 break;
James Hogan70e92c7e2016-07-04 19:35:11 +0100792#endif
David Daney4c73fb22013-05-23 09:49:09 -0700793 case KVM_REG_MIPS_PC:
794 vcpu->arch.pc = v;
795 break;
796
James Hogan379245c2014-12-02 15:48:24 +0000797 /* Floating point registers */
798 case KVM_REG_MIPS_FPR_32(0) ... KVM_REG_MIPS_FPR_32(31):
799 if (!kvm_mips_guest_has_fpu(&vcpu->arch))
800 return -EINVAL;
801 idx = reg->id - KVM_REG_MIPS_FPR_32(0);
802 /* Odd singles in top of even double when FR=0 */
803 if (kvm_read_c0_guest_status(cop0) & ST0_FR)
804 set_fpr32(&fpu->fpr[idx], 0, v);
805 else
806 set_fpr32(&fpu->fpr[idx & ~1], idx & 1, v);
807 break;
808 case KVM_REG_MIPS_FPR_64(0) ... KVM_REG_MIPS_FPR_64(31):
809 if (!kvm_mips_guest_has_fpu(&vcpu->arch))
810 return -EINVAL;
811 idx = reg->id - KVM_REG_MIPS_FPR_64(0);
812 /* Can't access odd doubles in FR=0 mode */
813 if (idx & 1 && !(kvm_read_c0_guest_status(cop0) & ST0_FR))
814 return -EINVAL;
815 set_fpr64(&fpu->fpr[idx], 0, v);
816 break;
817 case KVM_REG_MIPS_FCR_IR:
818 if (!kvm_mips_guest_has_fpu(&vcpu->arch))
819 return -EINVAL;
820 /* Read-only */
821 break;
822 case KVM_REG_MIPS_FCR_CSR:
823 if (!kvm_mips_guest_has_fpu(&vcpu->arch))
824 return -EINVAL;
825 fpu->fcr31 = v;
826 break;
827
James Hoganab86bd62014-12-02 15:48:24 +0000828 /* MIPS SIMD Architecture (MSA) registers */
829 case KVM_REG_MIPS_VEC_128(0) ... KVM_REG_MIPS_VEC_128(31):
830 if (!kvm_mips_guest_has_msa(&vcpu->arch))
831 return -EINVAL;
832 idx = reg->id - KVM_REG_MIPS_VEC_128(0);
833#ifdef CONFIG_CPU_LITTLE_ENDIAN
834 /* least significant byte first */
835 set_fpr64(&fpu->fpr[idx], 0, vs[0]);
836 set_fpr64(&fpu->fpr[idx], 1, vs[1]);
837#else
838 /* most significant byte first */
839 set_fpr64(&fpu->fpr[idx], 1, vs[0]);
840 set_fpr64(&fpu->fpr[idx], 0, vs[1]);
841#endif
842 break;
843 case KVM_REG_MIPS_MSA_IR:
844 if (!kvm_mips_guest_has_msa(&vcpu->arch))
845 return -EINVAL;
846 /* Read-only */
847 break;
848 case KVM_REG_MIPS_MSA_CSR:
849 if (!kvm_mips_guest_has_msa(&vcpu->arch))
850 return -EINVAL;
851 fpu->msacsr = v;
852 break;
853
James Hoganf8be02d2014-05-29 10:16:29 +0100854 /* registers to be handled specially */
David Daney4c73fb22013-05-23 09:49:09 -0700855 default:
James Hogancc68d222016-06-15 19:29:48 +0100856 return kvm_mips_callbacks->set_one_reg(vcpu, reg, v);
David Daney4c73fb22013-05-23 09:49:09 -0700857 }
858 return 0;
859}
860
James Hogan5fafd8742014-12-08 23:07:56 +0000861static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
862 struct kvm_enable_cap *cap)
863{
864 int r = 0;
865
866 if (!kvm_vm_ioctl_check_extension(vcpu->kvm, cap->cap))
867 return -EINVAL;
868 if (cap->flags)
869 return -EINVAL;
870 if (cap->args[0])
871 return -EINVAL;
872
873 switch (cap->cap) {
874 case KVM_CAP_MIPS_FPU:
875 vcpu->arch.fpu_enabled = true;
876 break;
James Hogand952bd02014-12-08 23:07:56 +0000877 case KVM_CAP_MIPS_MSA:
878 vcpu->arch.msa_enabled = true;
879 break;
James Hogan5fafd8742014-12-08 23:07:56 +0000880 default:
881 r = -EINVAL;
882 break;
883 }
884
885 return r;
886}
887
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700888long kvm_arch_vcpu_ioctl(struct file *filp, unsigned int ioctl,
889 unsigned long arg)
Sanjay Lal669e8462012-11-21 18:34:02 -0800890{
891 struct kvm_vcpu *vcpu = filp->private_data;
892 void __user *argp = (void __user *)arg;
893 long r;
Sanjay Lal669e8462012-11-21 18:34:02 -0800894
895 switch (ioctl) {
David Daney4c73fb22013-05-23 09:49:09 -0700896 case KVM_SET_ONE_REG:
897 case KVM_GET_ONE_REG: {
898 struct kvm_one_reg reg;
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700899
David Daney4c73fb22013-05-23 09:49:09 -0700900 if (copy_from_user(&reg, argp, sizeof(reg)))
901 return -EFAULT;
902 if (ioctl == KVM_SET_ONE_REG)
903 return kvm_mips_set_reg(vcpu, &reg);
904 else
905 return kvm_mips_get_reg(vcpu, &reg);
906 }
907 case KVM_GET_REG_LIST: {
908 struct kvm_reg_list __user *user_list = argp;
David Daney4c73fb22013-05-23 09:49:09 -0700909 struct kvm_reg_list reg_list;
910 unsigned n;
911
912 if (copy_from_user(&reg_list, user_list, sizeof(reg_list)))
913 return -EFAULT;
914 n = reg_list.n;
James Hoganf5c43bd2016-06-15 19:29:49 +0100915 reg_list.n = kvm_mips_num_regs(vcpu);
David Daney4c73fb22013-05-23 09:49:09 -0700916 if (copy_to_user(user_list, &reg_list, sizeof(reg_list)))
917 return -EFAULT;
918 if (n < reg_list.n)
919 return -E2BIG;
James Hoganf5c43bd2016-06-15 19:29:49 +0100920 return kvm_mips_copy_reg_indices(vcpu, user_list->reg);
David Daney4c73fb22013-05-23 09:49:09 -0700921 }
Sanjay Lal669e8462012-11-21 18:34:02 -0800922 case KVM_INTERRUPT:
923 {
924 struct kvm_mips_interrupt irq;
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700925
Sanjay Lal669e8462012-11-21 18:34:02 -0800926 if (copy_from_user(&irq, argp, sizeof(irq)))
Markus Elfring5a6da5f2017-01-19 11:10:26 +0100927 return -EFAULT;
Sanjay Lal669e8462012-11-21 18:34:02 -0800928 kvm_debug("[%d] %s: irq: %d\n", vcpu->vcpu_id, __func__,
929 irq.irq);
930
931 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
932 break;
933 }
James Hogan5fafd8742014-12-08 23:07:56 +0000934 case KVM_ENABLE_CAP: {
935 struct kvm_enable_cap cap;
936
James Hogan5fafd8742014-12-08 23:07:56 +0000937 if (copy_from_user(&cap, argp, sizeof(cap)))
Markus Elfring5a6da5f2017-01-19 11:10:26 +0100938 return -EFAULT;
James Hogan5fafd8742014-12-08 23:07:56 +0000939 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
940 break;
941 }
Sanjay Lal669e8462012-11-21 18:34:02 -0800942 default:
David Daney4c73fb22013-05-23 09:49:09 -0700943 r = -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -0800944 }
Sanjay Lal669e8462012-11-21 18:34:02 -0800945 return r;
946}
947
James Hogane88643b2016-12-06 14:50:52 +0000948/**
949 * kvm_vm_ioctl_get_dirty_log - get and clear the log of dirty pages in a slot
950 * @kvm: kvm instance
951 * @log: slot id and address to which we copy the log
952 *
953 * Steps 1-4 below provide general overview of dirty page logging. See
954 * kvm_get_dirty_log_protect() function description for additional details.
955 *
956 * We call kvm_get_dirty_log_protect() to handle steps 1-3, upon return we
957 * always flush the TLB (step 4) even if previous step failed and the dirty
958 * bitmap may be corrupt. Regardless of previous outcome the KVM logging API
959 * does not preclude user space subsequent dirty log read. Flushing TLB ensures
960 * writes will be marked dirty for next log read.
961 *
962 * 1. Take a snapshot of the bit and clear it if needed.
963 * 2. Write protect the corresponding page.
964 * 3. Copy the snapshot to the userspace.
965 * 4. Flush TLB's if needed.
966 */
Sanjay Lal669e8462012-11-21 18:34:02 -0800967int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
968{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +0200969 struct kvm_memslots *slots;
Sanjay Lal669e8462012-11-21 18:34:02 -0800970 struct kvm_memory_slot *memslot;
James Hogane88643b2016-12-06 14:50:52 +0000971 bool is_dirty = false;
Sanjay Lal669e8462012-11-21 18:34:02 -0800972 int r;
Sanjay Lal669e8462012-11-21 18:34:02 -0800973
974 mutex_lock(&kvm->slots_lock);
975
James Hogane88643b2016-12-06 14:50:52 +0000976 r = kvm_get_dirty_log_protect(kvm, log, &is_dirty);
Sanjay Lal669e8462012-11-21 18:34:02 -0800977
Sanjay Lal669e8462012-11-21 18:34:02 -0800978 if (is_dirty) {
Paolo Bonzini9f6b8022015-05-17 16:20:07 +0200979 slots = kvm_memslots(kvm);
980 memslot = id_to_memslot(slots, log->slot);
Sanjay Lal669e8462012-11-21 18:34:02 -0800981
James Hogane88643b2016-12-06 14:50:52 +0000982 /* Let implementation handle TLB/GVA invalidation */
983 kvm_mips_callbacks->flush_shadow_memslot(kvm, memslot);
Sanjay Lal669e8462012-11-21 18:34:02 -0800984 }
985
Sanjay Lal669e8462012-11-21 18:34:02 -0800986 mutex_unlock(&kvm->slots_lock);
987 return r;
Sanjay Lal669e8462012-11-21 18:34:02 -0800988}
989
990long kvm_arch_vm_ioctl(struct file *filp, unsigned int ioctl, unsigned long arg)
991{
992 long r;
993
994 switch (ioctl) {
995 default:
David Daneyed829852013-05-23 09:49:10 -0700996 r = -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -0800997 }
998
999 return r;
1000}
1001
1002int kvm_arch_init(void *opaque)
1003{
Sanjay Lal669e8462012-11-21 18:34:02 -08001004 if (kvm_mips_callbacks) {
1005 kvm_err("kvm: module already exists\n");
1006 return -EEXIST;
1007 }
1008
Deng-Cheng Zhud98403a2014-06-26 12:11:36 -07001009 return kvm_mips_emulation_init(&kvm_mips_callbacks);
Sanjay Lal669e8462012-11-21 18:34:02 -08001010}
1011
1012void kvm_arch_exit(void)
1013{
1014 kvm_mips_callbacks = NULL;
1015}
1016
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001017int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
1018 struct kvm_sregs *sregs)
Sanjay Lal669e8462012-11-21 18:34:02 -08001019{
David Daneyed829852013-05-23 09:49:10 -07001020 return -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -08001021}
1022
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001023int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
1024 struct kvm_sregs *sregs)
Sanjay Lal669e8462012-11-21 18:34:02 -08001025{
David Daneyed829852013-05-23 09:49:10 -07001026 return -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -08001027}
1028
Dominik Dingel31928aa2014-12-04 15:47:07 +01001029void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Sanjay Lal669e8462012-11-21 18:34:02 -08001030{
Sanjay Lal669e8462012-11-21 18:34:02 -08001031}
1032
1033int kvm_arch_vcpu_ioctl_get_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_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
1039{
David Daneyed829852013-05-23 09:49:10 -07001040 return -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -08001041}
1042
1043int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
1044{
1045 return VM_FAULT_SIGBUS;
1046}
1047
Alexander Graf784aa3d2014-07-14 18:27:35 +02001048int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Sanjay Lal669e8462012-11-21 18:34:02 -08001049{
1050 int r;
1051
1052 switch (ext) {
David Daney4c73fb22013-05-23 09:49:09 -07001053 case KVM_CAP_ONE_REG:
James Hogan5fafd8742014-12-08 23:07:56 +00001054 case KVM_CAP_ENABLE_CAP:
James Hogan230c5722015-05-08 17:11:49 +01001055 case KVM_CAP_READONLY_MEM:
James Hogan411740f2016-12-13 16:32:39 +00001056 case KVM_CAP_SYNC_MMU:
Paolo Bonzini460df4c2017-02-08 11:50:15 +01001057 case KVM_CAP_IMMEDIATE_EXIT:
David Daney4c73fb22013-05-23 09:49:09 -07001058 r = 1;
1059 break;
Sanjay Lal669e8462012-11-21 18:34:02 -08001060 case KVM_CAP_COALESCED_MMIO:
1061 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
1062 break;
James Hogan12ed1fa2016-12-13 22:39:39 +00001063 case KVM_CAP_NR_VCPUS:
1064 r = num_online_cpus();
1065 break;
1066 case KVM_CAP_MAX_VCPUS:
1067 r = KVM_MAX_VCPUS;
1068 break;
James Hogan5fafd8742014-12-08 23:07:56 +00001069 case KVM_CAP_MIPS_FPU:
James Hogan556f2a52016-04-22 10:38:48 +01001070 /* We don't handle systems with inconsistent cpu_has_fpu */
1071 r = !!raw_cpu_has_fpu;
James Hogan5fafd8742014-12-08 23:07:56 +00001072 break;
James Hogand952bd02014-12-08 23:07:56 +00001073 case KVM_CAP_MIPS_MSA:
1074 /*
1075 * We don't support MSA vector partitioning yet:
1076 * 1) It would require explicit support which can't be tested
1077 * yet due to lack of support in current hardware.
1078 * 2) It extends the state that would need to be saved/restored
1079 * by e.g. QEMU for migration.
1080 *
1081 * When vector partitioning hardware becomes available, support
1082 * could be added by requiring a flag when enabling
1083 * KVM_CAP_MIPS_MSA capability to indicate that userland knows
1084 * to save/restore the appropriate extra state.
1085 */
1086 r = cpu_has_msa && !(boot_cpu_data.msa_id & MSA_IR_WRPF);
1087 break;
Sanjay Lal669e8462012-11-21 18:34:02 -08001088 default:
James Hogan607ef2f2017-03-14 10:15:22 +00001089 r = kvm_mips_callbacks->check_extension(kvm, ext);
Sanjay Lal669e8462012-11-21 18:34:02 -08001090 break;
1091 }
1092 return r;
Sanjay Lal669e8462012-11-21 18:34:02 -08001093}
1094
1095int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
1096{
1097 return kvm_mips_pending_timer(vcpu);
1098}
1099
1100int kvm_arch_vcpu_dump_regs(struct kvm_vcpu *vcpu)
1101{
1102 int i;
1103 struct mips_coproc *cop0;
1104
1105 if (!vcpu)
1106 return -1;
1107
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001108 kvm_debug("VCPU Register Dump:\n");
1109 kvm_debug("\tpc = 0x%08lx\n", vcpu->arch.pc);
1110 kvm_debug("\texceptions: %08lx\n", vcpu->arch.pending_exceptions);
Sanjay Lal669e8462012-11-21 18:34:02 -08001111
1112 for (i = 0; i < 32; i += 4) {
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001113 kvm_debug("\tgpr%02d: %08lx %08lx %08lx %08lx\n", i,
Sanjay Lal669e8462012-11-21 18:34:02 -08001114 vcpu->arch.gprs[i],
1115 vcpu->arch.gprs[i + 1],
1116 vcpu->arch.gprs[i + 2], vcpu->arch.gprs[i + 3]);
1117 }
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001118 kvm_debug("\thi: 0x%08lx\n", vcpu->arch.hi);
1119 kvm_debug("\tlo: 0x%08lx\n", vcpu->arch.lo);
Sanjay Lal669e8462012-11-21 18:34:02 -08001120
1121 cop0 = vcpu->arch.cop0;
James Hogana27660f2017-03-14 10:15:25 +00001122 kvm_debug("\tStatus: 0x%08x, Cause: 0x%08x\n",
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001123 kvm_read_c0_guest_status(cop0),
1124 kvm_read_c0_guest_cause(cop0));
Sanjay Lal669e8462012-11-21 18:34:02 -08001125
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001126 kvm_debug("\tEPC: 0x%08lx\n", kvm_read_c0_guest_epc(cop0));
Sanjay Lal669e8462012-11-21 18:34:02 -08001127
1128 return 0;
1129}
1130
1131int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
1132{
1133 int i;
1134
David Daney8d17dd02013-05-23 09:49:08 -07001135 for (i = 1; i < ARRAY_SIZE(vcpu->arch.gprs); i++)
David Daneybf32ebf2013-05-23 09:49:07 -07001136 vcpu->arch.gprs[i] = regs->gpr[i];
David Daney8d17dd02013-05-23 09:49:08 -07001137 vcpu->arch.gprs[0] = 0; /* zero is special, and cannot be set. */
Sanjay Lal669e8462012-11-21 18:34:02 -08001138 vcpu->arch.hi = regs->hi;
1139 vcpu->arch.lo = regs->lo;
1140 vcpu->arch.pc = regs->pc;
1141
David Daney4c73fb22013-05-23 09:49:09 -07001142 return 0;
Sanjay Lal669e8462012-11-21 18:34:02 -08001143}
1144
1145int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
1146{
1147 int i;
1148
David Daney8d17dd02013-05-23 09:49:08 -07001149 for (i = 0; i < ARRAY_SIZE(vcpu->arch.gprs); i++)
David Daneybf32ebf2013-05-23 09:49:07 -07001150 regs->gpr[i] = vcpu->arch.gprs[i];
Sanjay Lal669e8462012-11-21 18:34:02 -08001151
1152 regs->hi = vcpu->arch.hi;
1153 regs->lo = vcpu->arch.lo;
1154 regs->pc = vcpu->arch.pc;
1155
David Daney4c73fb22013-05-23 09:49:09 -07001156 return 0;
Sanjay Lal669e8462012-11-21 18:34:02 -08001157}
1158
James Hogan0fae34f2014-05-29 10:16:39 +01001159static void kvm_mips_comparecount_func(unsigned long data)
Sanjay Lal669e8462012-11-21 18:34:02 -08001160{
1161 struct kvm_vcpu *vcpu = (struct kvm_vcpu *)data;
1162
1163 kvm_mips_callbacks->queue_timer_int(vcpu);
1164
1165 vcpu->arch.wait = 0;
Marcelo Tosatti85773702016-02-19 09:46:39 +01001166 if (swait_active(&vcpu->wq))
1167 swake_up(&vcpu->wq);
Sanjay Lal669e8462012-11-21 18:34:02 -08001168}
1169
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001170/* low level hrtimer wake routine */
James Hogan0fae34f2014-05-29 10:16:39 +01001171static enum hrtimer_restart kvm_mips_comparecount_wakeup(struct hrtimer *timer)
Sanjay Lal669e8462012-11-21 18:34:02 -08001172{
1173 struct kvm_vcpu *vcpu;
1174
1175 vcpu = container_of(timer, struct kvm_vcpu, arch.comparecount_timer);
1176 kvm_mips_comparecount_func((unsigned long) vcpu);
James Hogane30492b2014-05-29 10:16:35 +01001177 return kvm_mips_count_timeout(vcpu);
Sanjay Lal669e8462012-11-21 18:34:02 -08001178}
1179
1180int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
1181{
James Hoganf7f14272016-09-08 22:57:03 +01001182 int err;
1183
1184 err = kvm_mips_callbacks->vcpu_init(vcpu);
1185 if (err)
1186 return err;
1187
Sanjay Lal669e8462012-11-21 18:34:02 -08001188 hrtimer_init(&vcpu->arch.comparecount_timer, CLOCK_MONOTONIC,
1189 HRTIMER_MODE_REL);
1190 vcpu->arch.comparecount_timer.function = kvm_mips_comparecount_wakeup;
Sanjay Lal669e8462012-11-21 18:34:02 -08001191 return 0;
1192}
1193
James Hogan630766b2016-09-08 23:00:24 +01001194void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
1195{
1196 kvm_mips_callbacks->vcpu_uninit(vcpu);
1197}
1198
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001199int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
1200 struct kvm_translation *tr)
Sanjay Lal669e8462012-11-21 18:34:02 -08001201{
1202 return 0;
1203}
1204
1205/* Initial guest state */
1206int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu)
1207{
1208 return kvm_mips_callbacks->vcpu_setup(vcpu);
1209}
1210
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001211static void kvm_mips_set_c0_status(void)
Sanjay Lal669e8462012-11-21 18:34:02 -08001212{
James Hogan8cffd192016-06-09 14:19:08 +01001213 u32 status = read_c0_status();
Sanjay Lal669e8462012-11-21 18:34:02 -08001214
Sanjay Lal669e8462012-11-21 18:34:02 -08001215 if (cpu_has_dsp)
1216 status |= (ST0_MX);
1217
1218 write_c0_status(status);
1219 ehb();
1220}
1221
1222/*
1223 * Return value is in the form (errcode<<2 | RESUME_FLAG_HOST | RESUME_FLAG_NV)
1224 */
1225int kvm_mips_handle_exit(struct kvm_run *run, struct kvm_vcpu *vcpu)
1226{
James Hogan8cffd192016-06-09 14:19:08 +01001227 u32 cause = vcpu->arch.host_cp0_cause;
1228 u32 exccode = (cause >> CAUSEB_EXCCODE) & 0x1f;
1229 u32 __user *opc = (u32 __user *) vcpu->arch.pc;
Sanjay Lal669e8462012-11-21 18:34:02 -08001230 unsigned long badvaddr = vcpu->arch.host_cp0_badvaddr;
1231 enum emulation_result er = EMULATE_DONE;
James Hogan122e51d2016-11-28 17:23:14 +00001232 u32 inst;
Sanjay Lal669e8462012-11-21 18:34:02 -08001233 int ret = RESUME_GUEST;
1234
James Hogan4841e0d2016-11-28 22:45:04 +00001235 vcpu->mode = OUTSIDE_GUEST_MODE;
1236
James Hoganc4c6f2c2015-02-04 10:52:03 +00001237 /* re-enable HTW before enabling interrupts */
James Hoganea1bdbf2017-03-14 10:15:30 +00001238 if (!IS_ENABLED(CONFIG_KVM_MIPS_VZ))
1239 htw_start();
James Hoganc4c6f2c2015-02-04 10:52:03 +00001240
Sanjay Lal669e8462012-11-21 18:34:02 -08001241 /* Set a default exit reason */
1242 run->exit_reason = KVM_EXIT_UNKNOWN;
1243 run->ready_for_interrupt_injection = 1;
1244
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001245 /*
1246 * Set the appropriate status bits based on host CPU features,
1247 * before we hit the scheduler
1248 */
Sanjay Lal669e8462012-11-21 18:34:02 -08001249 kvm_mips_set_c0_status();
1250
1251 local_irq_enable();
1252
1253 kvm_debug("kvm_mips_handle_exit: cause: %#x, PC: %p, kvm_run: %p, kvm_vcpu: %p\n",
1254 cause, opc, run, vcpu);
James Hogan1e09e862016-06-14 09:40:12 +01001255 trace_kvm_exit(vcpu, exccode);
Sanjay Lal669e8462012-11-21 18:34:02 -08001256
James Hoganea1bdbf2017-03-14 10:15:30 +00001257 if (!IS_ENABLED(CONFIG_KVM_MIPS_VZ)) {
1258 /*
1259 * Do a privilege check, if in UM most of these exit conditions
1260 * end up causing an exception to be delivered to the Guest
1261 * Kernel
1262 */
1263 er = kvm_mips_check_privilege(cause, opc, run, vcpu);
1264 if (er == EMULATE_PRIV_FAIL) {
1265 goto skip_emul;
1266 } else if (er == EMULATE_FAIL) {
1267 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1268 ret = RESUME_HOST;
1269 goto skip_emul;
1270 }
Sanjay Lal669e8462012-11-21 18:34:02 -08001271 }
1272
1273 switch (exccode) {
James Hogan16d100db2015-12-16 23:49:33 +00001274 case EXCCODE_INT:
1275 kvm_debug("[%d]EXCCODE_INT @ %p\n", vcpu->vcpu_id, opc);
Sanjay Lal669e8462012-11-21 18:34:02 -08001276
1277 ++vcpu->stat.int_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001278
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001279 if (need_resched())
Sanjay Lal669e8462012-11-21 18:34:02 -08001280 cond_resched();
Sanjay Lal669e8462012-11-21 18:34:02 -08001281
1282 ret = RESUME_GUEST;
1283 break;
1284
James Hogan16d100db2015-12-16 23:49:33 +00001285 case EXCCODE_CPU:
1286 kvm_debug("EXCCODE_CPU: @ PC: %p\n", opc);
Sanjay Lal669e8462012-11-21 18:34:02 -08001287
1288 ++vcpu->stat.cop_unusable_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001289 ret = kvm_mips_callbacks->handle_cop_unusable(vcpu);
1290 /* XXXKYMA: Might need to return to user space */
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001291 if (run->exit_reason == KVM_EXIT_IRQ_WINDOW_OPEN)
Sanjay Lal669e8462012-11-21 18:34:02 -08001292 ret = RESUME_HOST;
Sanjay Lal669e8462012-11-21 18:34:02 -08001293 break;
1294
James Hogan16d100db2015-12-16 23:49:33 +00001295 case EXCCODE_MOD:
Sanjay Lal669e8462012-11-21 18:34:02 -08001296 ++vcpu->stat.tlbmod_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001297 ret = kvm_mips_callbacks->handle_tlb_mod(vcpu);
1298 break;
1299
James Hogan16d100db2015-12-16 23:49:33 +00001300 case EXCCODE_TLBS:
James Hogana27660f2017-03-14 10:15:25 +00001301 kvm_debug("TLB ST fault: cause %#x, status %#x, PC: %p, BadVaddr: %#lx\n",
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001302 cause, kvm_read_c0_guest_status(vcpu->arch.cop0), opc,
1303 badvaddr);
Sanjay Lal669e8462012-11-21 18:34:02 -08001304
1305 ++vcpu->stat.tlbmiss_st_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001306 ret = kvm_mips_callbacks->handle_tlb_st_miss(vcpu);
1307 break;
1308
James Hogan16d100db2015-12-16 23:49:33 +00001309 case EXCCODE_TLBL:
Sanjay Lal669e8462012-11-21 18:34:02 -08001310 kvm_debug("TLB LD fault: cause %#x, PC: %p, BadVaddr: %#lx\n",
1311 cause, opc, badvaddr);
1312
1313 ++vcpu->stat.tlbmiss_ld_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001314 ret = kvm_mips_callbacks->handle_tlb_ld_miss(vcpu);
1315 break;
1316
James Hogan16d100db2015-12-16 23:49:33 +00001317 case EXCCODE_ADES:
Sanjay Lal669e8462012-11-21 18:34:02 -08001318 ++vcpu->stat.addrerr_st_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001319 ret = kvm_mips_callbacks->handle_addr_err_st(vcpu);
1320 break;
1321
James Hogan16d100db2015-12-16 23:49:33 +00001322 case EXCCODE_ADEL:
Sanjay Lal669e8462012-11-21 18:34:02 -08001323 ++vcpu->stat.addrerr_ld_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001324 ret = kvm_mips_callbacks->handle_addr_err_ld(vcpu);
1325 break;
1326
James Hogan16d100db2015-12-16 23:49:33 +00001327 case EXCCODE_SYS:
Sanjay Lal669e8462012-11-21 18:34:02 -08001328 ++vcpu->stat.syscall_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001329 ret = kvm_mips_callbacks->handle_syscall(vcpu);
1330 break;
1331
James Hogan16d100db2015-12-16 23:49:33 +00001332 case EXCCODE_RI:
Sanjay Lal669e8462012-11-21 18:34:02 -08001333 ++vcpu->stat.resvd_inst_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001334 ret = kvm_mips_callbacks->handle_res_inst(vcpu);
1335 break;
1336
James Hogan16d100db2015-12-16 23:49:33 +00001337 case EXCCODE_BP:
Sanjay Lal669e8462012-11-21 18:34:02 -08001338 ++vcpu->stat.break_inst_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001339 ret = kvm_mips_callbacks->handle_break(vcpu);
1340 break;
1341
James Hogan16d100db2015-12-16 23:49:33 +00001342 case EXCCODE_TR:
James Hogan0a560422015-02-06 16:03:57 +00001343 ++vcpu->stat.trap_inst_exits;
James Hogan0a560422015-02-06 16:03:57 +00001344 ret = kvm_mips_callbacks->handle_trap(vcpu);
1345 break;
1346
James Hogan16d100db2015-12-16 23:49:33 +00001347 case EXCCODE_MSAFPE:
James Hoganc2537ed2015-02-06 10:56:27 +00001348 ++vcpu->stat.msa_fpe_exits;
James Hoganc2537ed2015-02-06 10:56:27 +00001349 ret = kvm_mips_callbacks->handle_msa_fpe(vcpu);
1350 break;
1351
James Hogan16d100db2015-12-16 23:49:33 +00001352 case EXCCODE_FPE:
James Hogan1c0cd662015-02-06 10:56:27 +00001353 ++vcpu->stat.fpe_exits;
James Hogan1c0cd662015-02-06 10:56:27 +00001354 ret = kvm_mips_callbacks->handle_fpe(vcpu);
1355 break;
1356
James Hogan16d100db2015-12-16 23:49:33 +00001357 case EXCCODE_MSADIS:
James Hoganc2537ed2015-02-06 10:56:27 +00001358 ++vcpu->stat.msa_disabled_exits;
James Hogan98119ad2015-02-06 11:11:56 +00001359 ret = kvm_mips_callbacks->handle_msa_disabled(vcpu);
1360 break;
1361
James Hogan28c1e762017-03-14 10:15:24 +00001362 case EXCCODE_GE:
1363 /* defer exit accounting to handler */
1364 ret = kvm_mips_callbacks->handle_guest_exit(vcpu);
1365 break;
1366
Sanjay Lal669e8462012-11-21 18:34:02 -08001367 default:
James Hogan122e51d2016-11-28 17:23:14 +00001368 if (cause & CAUSEF_BD)
1369 opc += 1;
1370 inst = 0;
James Hogan6a97c772015-04-23 16:54:35 +01001371 kvm_get_badinstr(opc, vcpu, &inst);
James Hogana27660f2017-03-14 10:15:25 +00001372 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 +00001373 exccode, opc, inst, badvaddr,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001374 kvm_read_c0_guest_status(vcpu->arch.cop0));
Sanjay Lal669e8462012-11-21 18:34:02 -08001375 kvm_arch_vcpu_dump_regs(vcpu);
1376 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1377 ret = RESUME_HOST;
1378 break;
1379
1380 }
1381
1382skip_emul:
1383 local_irq_disable();
1384
1385 if (er == EMULATE_DONE && !(ret & RESUME_HOST))
1386 kvm_mips_deliver_interrupts(vcpu, cause);
1387
1388 if (!(ret & RESUME_HOST)) {
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001389 /* Only check for signals if not already exiting to userspace */
Sanjay Lal669e8462012-11-21 18:34:02 -08001390 if (signal_pending(current)) {
1391 run->exit_reason = KVM_EXIT_INTR;
1392 ret = (-EINTR << 2) | RESUME_HOST;
1393 ++vcpu->stat.signal_exits;
James Hogan1e09e862016-06-14 09:40:12 +01001394 trace_kvm_exit(vcpu, KVM_TRACE_EXIT_SIGNAL);
Sanjay Lal669e8462012-11-21 18:34:02 -08001395 }
1396 }
1397
James Hogan98e91b82014-11-18 14:09:12 +00001398 if (ret == RESUME_GUEST) {
James Hogan93258602016-06-14 09:40:14 +01001399 trace_kvm_reenter(vcpu);
1400
James Hogan4841e0d2016-11-28 22:45:04 +00001401 /*
1402 * Make sure the read of VCPU requests in vcpu_reenter()
1403 * callback is not reordered ahead of the write to vcpu->mode,
1404 * or we could miss a TLB flush request while the requester sees
1405 * the VCPU as outside of guest mode and not needing an IPI.
1406 */
1407 smp_store_mb(vcpu->mode, IN_GUEST_MODE);
1408
James Hogana2c046e2016-11-18 13:14:37 +00001409 kvm_mips_callbacks->vcpu_reenter(run, vcpu);
James Hogan25b08c72016-09-16 00:06:43 +01001410
James Hogan98e91b82014-11-18 14:09:12 +00001411 /*
James Hogan539cb89fb2015-03-05 11:43:36 +00001412 * If FPU / MSA are enabled (i.e. the guest's FPU / MSA context
1413 * is live), restore FCR31 / MSACSR.
James Hogan98e91b82014-11-18 14:09:12 +00001414 *
1415 * This should be before returning to the guest exception
James Hogan539cb89fb2015-03-05 11:43:36 +00001416 * vector, as it may well cause an [MSA] FP exception if there
1417 * are pending exception bits unmasked. (see
James Hogan98e91b82014-11-18 14:09:12 +00001418 * kvm_mips_csr_die_notifier() for how that is handled).
1419 */
1420 if (kvm_mips_guest_has_fpu(&vcpu->arch) &&
1421 read_c0_status() & ST0_CU1)
1422 __kvm_restore_fcsr(&vcpu->arch);
James Hogan539cb89fb2015-03-05 11:43:36 +00001423
1424 if (kvm_mips_guest_has_msa(&vcpu->arch) &&
1425 read_c0_config5() & MIPS_CONF5_MSAEN)
1426 __kvm_restore_msacsr(&vcpu->arch);
James Hogan98e91b82014-11-18 14:09:12 +00001427 }
1428
James Hoganc4c6f2c2015-02-04 10:52:03 +00001429 /* Disable HTW before returning to guest or host */
James Hoganea1bdbf2017-03-14 10:15:30 +00001430 if (!IS_ENABLED(CONFIG_KVM_MIPS_VZ))
1431 htw_stop();
James Hoganc4c6f2c2015-02-04 10:52:03 +00001432
Sanjay Lal669e8462012-11-21 18:34:02 -08001433 return ret;
1434}
1435
James Hogan98e91b82014-11-18 14:09:12 +00001436/* Enable FPU for guest and restore context */
1437void kvm_own_fpu(struct kvm_vcpu *vcpu)
1438{
1439 struct mips_coproc *cop0 = vcpu->arch.cop0;
1440 unsigned int sr, cfg5;
1441
1442 preempt_disable();
1443
James Hogan539cb89fb2015-03-05 11:43:36 +00001444 sr = kvm_read_c0_guest_status(cop0);
1445
1446 /*
1447 * If MSA state is already live, it is undefined how it interacts with
1448 * FR=0 FPU state, and we don't want to hit reserved instruction
1449 * exceptions trying to save the MSA state later when CU=1 && FR=1, so
1450 * play it safe and save it first.
1451 *
1452 * In theory we shouldn't ever hit this case since kvm_lose_fpu() should
1453 * get called when guest CU1 is set, however we can't trust the guest
1454 * not to clobber the status register directly via the commpage.
1455 */
1456 if (cpu_has_msa && sr & ST0_CU1 && !(sr & ST0_FR) &&
James Hoganf9431762016-06-14 09:40:10 +01001457 vcpu->arch.aux_inuse & KVM_MIPS_AUX_MSA)
James Hogan539cb89fb2015-03-05 11:43:36 +00001458 kvm_lose_fpu(vcpu);
1459
James Hogan98e91b82014-11-18 14:09:12 +00001460 /*
1461 * Enable FPU for guest
1462 * We set FR and FRE according to guest context
1463 */
James Hogan98e91b82014-11-18 14:09:12 +00001464 change_c0_status(ST0_CU1 | ST0_FR, sr);
1465 if (cpu_has_fre) {
1466 cfg5 = kvm_read_c0_guest_config5(cop0);
1467 change_c0_config5(MIPS_CONF5_FRE, cfg5);
1468 }
1469 enable_fpu_hazard();
1470
1471 /* If guest FPU state not active, restore it now */
James Hoganf9431762016-06-14 09:40:10 +01001472 if (!(vcpu->arch.aux_inuse & KVM_MIPS_AUX_FPU)) {
James Hogan98e91b82014-11-18 14:09:12 +00001473 __kvm_restore_fpu(&vcpu->arch);
James Hoganf9431762016-06-14 09:40:10 +01001474 vcpu->arch.aux_inuse |= KVM_MIPS_AUX_FPU;
James Hogan04ebebf2016-06-14 09:40:11 +01001475 trace_kvm_aux(vcpu, KVM_TRACE_AUX_RESTORE, KVM_TRACE_AUX_FPU);
1476 } else {
1477 trace_kvm_aux(vcpu, KVM_TRACE_AUX_ENABLE, KVM_TRACE_AUX_FPU);
James Hogan98e91b82014-11-18 14:09:12 +00001478 }
1479
1480 preempt_enable();
1481}
1482
James Hogan539cb89fb2015-03-05 11:43:36 +00001483#ifdef CONFIG_CPU_HAS_MSA
1484/* Enable MSA for guest and restore context */
1485void kvm_own_msa(struct kvm_vcpu *vcpu)
1486{
1487 struct mips_coproc *cop0 = vcpu->arch.cop0;
1488 unsigned int sr, cfg5;
1489
1490 preempt_disable();
1491
1492 /*
1493 * Enable FPU if enabled in guest, since we're restoring FPU context
1494 * anyway. We set FR and FRE according to guest context.
1495 */
1496 if (kvm_mips_guest_has_fpu(&vcpu->arch)) {
1497 sr = kvm_read_c0_guest_status(cop0);
1498
1499 /*
1500 * If FR=0 FPU state is already live, it is undefined how it
1501 * interacts with MSA state, so play it safe and save it first.
1502 */
1503 if (!(sr & ST0_FR) &&
James Hoganf9431762016-06-14 09:40:10 +01001504 (vcpu->arch.aux_inuse & (KVM_MIPS_AUX_FPU |
1505 KVM_MIPS_AUX_MSA)) == KVM_MIPS_AUX_FPU)
James Hogan539cb89fb2015-03-05 11:43:36 +00001506 kvm_lose_fpu(vcpu);
1507
1508 change_c0_status(ST0_CU1 | ST0_FR, sr);
1509 if (sr & ST0_CU1 && cpu_has_fre) {
1510 cfg5 = kvm_read_c0_guest_config5(cop0);
1511 change_c0_config5(MIPS_CONF5_FRE, cfg5);
1512 }
1513 }
1514
1515 /* Enable MSA for guest */
1516 set_c0_config5(MIPS_CONF5_MSAEN);
1517 enable_fpu_hazard();
1518
James Hoganf9431762016-06-14 09:40:10 +01001519 switch (vcpu->arch.aux_inuse & (KVM_MIPS_AUX_FPU | KVM_MIPS_AUX_MSA)) {
1520 case KVM_MIPS_AUX_FPU:
James Hogan539cb89fb2015-03-05 11:43:36 +00001521 /*
1522 * Guest FPU state already loaded, only restore upper MSA state
1523 */
1524 __kvm_restore_msa_upper(&vcpu->arch);
James Hoganf9431762016-06-14 09:40:10 +01001525 vcpu->arch.aux_inuse |= KVM_MIPS_AUX_MSA;
James Hogan04ebebf2016-06-14 09:40:11 +01001526 trace_kvm_aux(vcpu, KVM_TRACE_AUX_RESTORE, KVM_TRACE_AUX_MSA);
James Hogan539cb89fb2015-03-05 11:43:36 +00001527 break;
1528 case 0:
1529 /* Neither FPU or MSA already active, restore full MSA state */
1530 __kvm_restore_msa(&vcpu->arch);
James Hoganf9431762016-06-14 09:40:10 +01001531 vcpu->arch.aux_inuse |= KVM_MIPS_AUX_MSA;
James Hogan539cb89fb2015-03-05 11:43:36 +00001532 if (kvm_mips_guest_has_fpu(&vcpu->arch))
James Hoganf9431762016-06-14 09:40:10 +01001533 vcpu->arch.aux_inuse |= KVM_MIPS_AUX_FPU;
James Hogan04ebebf2016-06-14 09:40:11 +01001534 trace_kvm_aux(vcpu, KVM_TRACE_AUX_RESTORE,
1535 KVM_TRACE_AUX_FPU_MSA);
James Hogan539cb89fb2015-03-05 11:43:36 +00001536 break;
1537 default:
James Hogan04ebebf2016-06-14 09:40:11 +01001538 trace_kvm_aux(vcpu, KVM_TRACE_AUX_ENABLE, KVM_TRACE_AUX_MSA);
James Hogan539cb89fb2015-03-05 11:43:36 +00001539 break;
1540 }
1541
1542 preempt_enable();
1543}
1544#endif
1545
1546/* Drop FPU & MSA without saving it */
James Hogan98e91b82014-11-18 14:09:12 +00001547void kvm_drop_fpu(struct kvm_vcpu *vcpu)
1548{
1549 preempt_disable();
James Hoganf9431762016-06-14 09:40:10 +01001550 if (cpu_has_msa && vcpu->arch.aux_inuse & KVM_MIPS_AUX_MSA) {
James Hogan539cb89fb2015-03-05 11:43:36 +00001551 disable_msa();
James Hogan04ebebf2016-06-14 09:40:11 +01001552 trace_kvm_aux(vcpu, KVM_TRACE_AUX_DISCARD, KVM_TRACE_AUX_MSA);
James Hoganf9431762016-06-14 09:40:10 +01001553 vcpu->arch.aux_inuse &= ~KVM_MIPS_AUX_MSA;
James Hogan539cb89fb2015-03-05 11:43:36 +00001554 }
James Hoganf9431762016-06-14 09:40:10 +01001555 if (vcpu->arch.aux_inuse & KVM_MIPS_AUX_FPU) {
James Hogan98e91b82014-11-18 14:09:12 +00001556 clear_c0_status(ST0_CU1 | ST0_FR);
James Hogan04ebebf2016-06-14 09:40:11 +01001557 trace_kvm_aux(vcpu, KVM_TRACE_AUX_DISCARD, KVM_TRACE_AUX_FPU);
James Hoganf9431762016-06-14 09:40:10 +01001558 vcpu->arch.aux_inuse &= ~KVM_MIPS_AUX_FPU;
James Hogan98e91b82014-11-18 14:09:12 +00001559 }
1560 preempt_enable();
1561}
1562
James Hogan539cb89fb2015-03-05 11:43:36 +00001563/* Save and disable FPU & MSA */
James Hogan98e91b82014-11-18 14:09:12 +00001564void kvm_lose_fpu(struct kvm_vcpu *vcpu)
1565{
1566 /*
James Hoganc58cf742017-03-14 10:15:17 +00001567 * With T&E, FPU & MSA get disabled in root context (hardware) when it
1568 * is disabled in guest context (software), but the register state in
1569 * the hardware may still be in use.
1570 * This is why we explicitly re-enable the hardware before saving.
James Hogan98e91b82014-11-18 14:09:12 +00001571 */
1572
1573 preempt_disable();
James Hoganf9431762016-06-14 09:40:10 +01001574 if (cpu_has_msa && vcpu->arch.aux_inuse & KVM_MIPS_AUX_MSA) {
James Hoganc58cf742017-03-14 10:15:17 +00001575 if (!IS_ENABLED(CONFIG_KVM_MIPS_VZ)) {
1576 set_c0_config5(MIPS_CONF5_MSAEN);
1577 enable_fpu_hazard();
1578 }
James Hogan539cb89fb2015-03-05 11:43:36 +00001579
1580 __kvm_save_msa(&vcpu->arch);
James Hogan04ebebf2016-06-14 09:40:11 +01001581 trace_kvm_aux(vcpu, KVM_TRACE_AUX_SAVE, KVM_TRACE_AUX_FPU_MSA);
James Hogan539cb89fb2015-03-05 11:43:36 +00001582
1583 /* Disable MSA & FPU */
1584 disable_msa();
James Hoganf9431762016-06-14 09:40:10 +01001585 if (vcpu->arch.aux_inuse & KVM_MIPS_AUX_FPU) {
James Hogan539cb89fb2015-03-05 11:43:36 +00001586 clear_c0_status(ST0_CU1 | ST0_FR);
James Hogan4ac33422016-04-22 10:38:49 +01001587 disable_fpu_hazard();
1588 }
James Hoganf9431762016-06-14 09:40:10 +01001589 vcpu->arch.aux_inuse &= ~(KVM_MIPS_AUX_FPU | KVM_MIPS_AUX_MSA);
1590 } else if (vcpu->arch.aux_inuse & KVM_MIPS_AUX_FPU) {
James Hoganc58cf742017-03-14 10:15:17 +00001591 if (!IS_ENABLED(CONFIG_KVM_MIPS_VZ)) {
1592 set_c0_status(ST0_CU1);
1593 enable_fpu_hazard();
1594 }
James Hogan98e91b82014-11-18 14:09:12 +00001595
1596 __kvm_save_fpu(&vcpu->arch);
James Hoganf9431762016-06-14 09:40:10 +01001597 vcpu->arch.aux_inuse &= ~KVM_MIPS_AUX_FPU;
James Hogan04ebebf2016-06-14 09:40:11 +01001598 trace_kvm_aux(vcpu, KVM_TRACE_AUX_SAVE, KVM_TRACE_AUX_FPU);
James Hogan98e91b82014-11-18 14:09:12 +00001599
1600 /* Disable FPU */
1601 clear_c0_status(ST0_CU1 | ST0_FR);
James Hogan4ac33422016-04-22 10:38:49 +01001602 disable_fpu_hazard();
James Hogan98e91b82014-11-18 14:09:12 +00001603 }
1604 preempt_enable();
1605}
1606
1607/*
James Hogan539cb89fb2015-03-05 11:43:36 +00001608 * Step over a specific ctc1 to FCSR and a specific ctcmsa to MSACSR which are
1609 * used to restore guest FCSR/MSACSR state and may trigger a "harmless" FP/MSAFP
1610 * exception if cause bits are set in the value being written.
James Hogan98e91b82014-11-18 14:09:12 +00001611 */
1612static int kvm_mips_csr_die_notify(struct notifier_block *self,
1613 unsigned long cmd, void *ptr)
1614{
1615 struct die_args *args = (struct die_args *)ptr;
1616 struct pt_regs *regs = args->regs;
1617 unsigned long pc;
1618
James Hogan539cb89fb2015-03-05 11:43:36 +00001619 /* Only interested in FPE and MSAFPE */
1620 if (cmd != DIE_FP && cmd != DIE_MSAFP)
James Hogan98e91b82014-11-18 14:09:12 +00001621 return NOTIFY_DONE;
1622
1623 /* Return immediately if guest context isn't active */
1624 if (!(current->flags & PF_VCPU))
1625 return NOTIFY_DONE;
1626
1627 /* Should never get here from user mode */
1628 BUG_ON(user_mode(regs));
1629
1630 pc = instruction_pointer(regs);
1631 switch (cmd) {
1632 case DIE_FP:
1633 /* match 2nd instruction in __kvm_restore_fcsr */
1634 if (pc != (unsigned long)&__kvm_restore_fcsr + 4)
1635 return NOTIFY_DONE;
1636 break;
James Hogan539cb89fb2015-03-05 11:43:36 +00001637 case DIE_MSAFP:
1638 /* match 2nd/3rd instruction in __kvm_restore_msacsr */
1639 if (!cpu_has_msa ||
1640 pc < (unsigned long)&__kvm_restore_msacsr + 4 ||
1641 pc > (unsigned long)&__kvm_restore_msacsr + 8)
1642 return NOTIFY_DONE;
1643 break;
James Hogan98e91b82014-11-18 14:09:12 +00001644 }
1645
1646 /* Move PC forward a little and continue executing */
1647 instruction_pointer(regs) += 4;
1648
1649 return NOTIFY_STOP;
1650}
1651
1652static struct notifier_block kvm_mips_csr_die_notifier = {
1653 .notifier_call = kvm_mips_csr_die_notify,
1654};
1655
James Hogan2db9d232015-12-16 23:49:32 +00001656static int __init kvm_mips_init(void)
Sanjay Lal669e8462012-11-21 18:34:02 -08001657{
1658 int ret;
1659
James Hogan1e5217f52016-06-23 17:34:45 +01001660 ret = kvm_mips_entry_setup();
1661 if (ret)
1662 return ret;
1663
Sanjay Lal669e8462012-11-21 18:34:02 -08001664 ret = kvm_init(NULL, sizeof(struct kvm_vcpu), 0, THIS_MODULE);
1665
1666 if (ret)
1667 return ret;
1668
James Hogan98e91b82014-11-18 14:09:12 +00001669 register_die_notifier(&kvm_mips_csr_die_notifier);
1670
Sanjay Lal669e8462012-11-21 18:34:02 -08001671 return 0;
1672}
1673
James Hogan2db9d232015-12-16 23:49:32 +00001674static void __exit kvm_mips_exit(void)
Sanjay Lal669e8462012-11-21 18:34:02 -08001675{
1676 kvm_exit();
1677
James Hogan98e91b82014-11-18 14:09:12 +00001678 unregister_die_notifier(&kvm_mips_csr_die_notifier);
Sanjay Lal669e8462012-11-21 18:34:02 -08001679}
1680
1681module_init(kvm_mips_init);
1682module_exit(kvm_mips_exit);
1683
1684EXPORT_TRACEPOINT_SYMBOL(kvm_exit);