blob: e8ddb128b8adc8472b41c0bd4811f16cb0ac16aa [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{
James Hoganf4474d52017-03-14 10:15:39 +00001097 return kvm_mips_pending_timer(vcpu) ||
1098 kvm_read_c0_guest_cause(vcpu->arch.cop0) & C_TI;
Sanjay Lal669e8462012-11-21 18:34:02 -08001099}
1100
1101int kvm_arch_vcpu_dump_regs(struct kvm_vcpu *vcpu)
1102{
1103 int i;
1104 struct mips_coproc *cop0;
1105
1106 if (!vcpu)
1107 return -1;
1108
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001109 kvm_debug("VCPU Register Dump:\n");
1110 kvm_debug("\tpc = 0x%08lx\n", vcpu->arch.pc);
1111 kvm_debug("\texceptions: %08lx\n", vcpu->arch.pending_exceptions);
Sanjay Lal669e8462012-11-21 18:34:02 -08001112
1113 for (i = 0; i < 32; i += 4) {
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001114 kvm_debug("\tgpr%02d: %08lx %08lx %08lx %08lx\n", i,
Sanjay Lal669e8462012-11-21 18:34:02 -08001115 vcpu->arch.gprs[i],
1116 vcpu->arch.gprs[i + 1],
1117 vcpu->arch.gprs[i + 2], vcpu->arch.gprs[i + 3]);
1118 }
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001119 kvm_debug("\thi: 0x%08lx\n", vcpu->arch.hi);
1120 kvm_debug("\tlo: 0x%08lx\n", vcpu->arch.lo);
Sanjay Lal669e8462012-11-21 18:34:02 -08001121
1122 cop0 = vcpu->arch.cop0;
James Hogana27660f2017-03-14 10:15:25 +00001123 kvm_debug("\tStatus: 0x%08x, Cause: 0x%08x\n",
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001124 kvm_read_c0_guest_status(cop0),
1125 kvm_read_c0_guest_cause(cop0));
Sanjay Lal669e8462012-11-21 18:34:02 -08001126
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001127 kvm_debug("\tEPC: 0x%08lx\n", kvm_read_c0_guest_epc(cop0));
Sanjay Lal669e8462012-11-21 18:34:02 -08001128
1129 return 0;
1130}
1131
1132int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
1133{
1134 int i;
1135
David Daney8d17dd02013-05-23 09:49:08 -07001136 for (i = 1; i < ARRAY_SIZE(vcpu->arch.gprs); i++)
David Daneybf32ebf2013-05-23 09:49:07 -07001137 vcpu->arch.gprs[i] = regs->gpr[i];
David Daney8d17dd02013-05-23 09:49:08 -07001138 vcpu->arch.gprs[0] = 0; /* zero is special, and cannot be set. */
Sanjay Lal669e8462012-11-21 18:34:02 -08001139 vcpu->arch.hi = regs->hi;
1140 vcpu->arch.lo = regs->lo;
1141 vcpu->arch.pc = regs->pc;
1142
David Daney4c73fb22013-05-23 09:49:09 -07001143 return 0;
Sanjay Lal669e8462012-11-21 18:34:02 -08001144}
1145
1146int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
1147{
1148 int i;
1149
David Daney8d17dd02013-05-23 09:49:08 -07001150 for (i = 0; i < ARRAY_SIZE(vcpu->arch.gprs); i++)
David Daneybf32ebf2013-05-23 09:49:07 -07001151 regs->gpr[i] = vcpu->arch.gprs[i];
Sanjay Lal669e8462012-11-21 18:34:02 -08001152
1153 regs->hi = vcpu->arch.hi;
1154 regs->lo = vcpu->arch.lo;
1155 regs->pc = vcpu->arch.pc;
1156
David Daney4c73fb22013-05-23 09:49:09 -07001157 return 0;
Sanjay Lal669e8462012-11-21 18:34:02 -08001158}
1159
James Hogan0fae34f2014-05-29 10:16:39 +01001160static void kvm_mips_comparecount_func(unsigned long data)
Sanjay Lal669e8462012-11-21 18:34:02 -08001161{
1162 struct kvm_vcpu *vcpu = (struct kvm_vcpu *)data;
1163
1164 kvm_mips_callbacks->queue_timer_int(vcpu);
1165
1166 vcpu->arch.wait = 0;
Marcelo Tosatti85773702016-02-19 09:46:39 +01001167 if (swait_active(&vcpu->wq))
1168 swake_up(&vcpu->wq);
Sanjay Lal669e8462012-11-21 18:34:02 -08001169}
1170
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001171/* low level hrtimer wake routine */
James Hogan0fae34f2014-05-29 10:16:39 +01001172static enum hrtimer_restart kvm_mips_comparecount_wakeup(struct hrtimer *timer)
Sanjay Lal669e8462012-11-21 18:34:02 -08001173{
1174 struct kvm_vcpu *vcpu;
1175
1176 vcpu = container_of(timer, struct kvm_vcpu, arch.comparecount_timer);
1177 kvm_mips_comparecount_func((unsigned long) vcpu);
James Hogane30492b2014-05-29 10:16:35 +01001178 return kvm_mips_count_timeout(vcpu);
Sanjay Lal669e8462012-11-21 18:34:02 -08001179}
1180
1181int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
1182{
James Hoganf7f14272016-09-08 22:57:03 +01001183 int err;
1184
1185 err = kvm_mips_callbacks->vcpu_init(vcpu);
1186 if (err)
1187 return err;
1188
Sanjay Lal669e8462012-11-21 18:34:02 -08001189 hrtimer_init(&vcpu->arch.comparecount_timer, CLOCK_MONOTONIC,
1190 HRTIMER_MODE_REL);
1191 vcpu->arch.comparecount_timer.function = kvm_mips_comparecount_wakeup;
Sanjay Lal669e8462012-11-21 18:34:02 -08001192 return 0;
1193}
1194
James Hogan630766b2016-09-08 23:00:24 +01001195void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
1196{
1197 kvm_mips_callbacks->vcpu_uninit(vcpu);
1198}
1199
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001200int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
1201 struct kvm_translation *tr)
Sanjay Lal669e8462012-11-21 18:34:02 -08001202{
1203 return 0;
1204}
1205
1206/* Initial guest state */
1207int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu)
1208{
1209 return kvm_mips_callbacks->vcpu_setup(vcpu);
1210}
1211
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001212static void kvm_mips_set_c0_status(void)
Sanjay Lal669e8462012-11-21 18:34:02 -08001213{
James Hogan8cffd192016-06-09 14:19:08 +01001214 u32 status = read_c0_status();
Sanjay Lal669e8462012-11-21 18:34:02 -08001215
Sanjay Lal669e8462012-11-21 18:34:02 -08001216 if (cpu_has_dsp)
1217 status |= (ST0_MX);
1218
1219 write_c0_status(status);
1220 ehb();
1221}
1222
1223/*
1224 * Return value is in the form (errcode<<2 | RESUME_FLAG_HOST | RESUME_FLAG_NV)
1225 */
1226int kvm_mips_handle_exit(struct kvm_run *run, struct kvm_vcpu *vcpu)
1227{
James Hogan8cffd192016-06-09 14:19:08 +01001228 u32 cause = vcpu->arch.host_cp0_cause;
1229 u32 exccode = (cause >> CAUSEB_EXCCODE) & 0x1f;
1230 u32 __user *opc = (u32 __user *) vcpu->arch.pc;
Sanjay Lal669e8462012-11-21 18:34:02 -08001231 unsigned long badvaddr = vcpu->arch.host_cp0_badvaddr;
1232 enum emulation_result er = EMULATE_DONE;
James Hogan122e51d2016-11-28 17:23:14 +00001233 u32 inst;
Sanjay Lal669e8462012-11-21 18:34:02 -08001234 int ret = RESUME_GUEST;
1235
James Hogan4841e0d2016-11-28 22:45:04 +00001236 vcpu->mode = OUTSIDE_GUEST_MODE;
1237
James Hoganc4c6f2c2015-02-04 10:52:03 +00001238 /* re-enable HTW before enabling interrupts */
James Hoganea1bdbf2017-03-14 10:15:30 +00001239 if (!IS_ENABLED(CONFIG_KVM_MIPS_VZ))
1240 htw_start();
James Hoganc4c6f2c2015-02-04 10:52:03 +00001241
Sanjay Lal669e8462012-11-21 18:34:02 -08001242 /* Set a default exit reason */
1243 run->exit_reason = KVM_EXIT_UNKNOWN;
1244 run->ready_for_interrupt_injection = 1;
1245
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001246 /*
1247 * Set the appropriate status bits based on host CPU features,
1248 * before we hit the scheduler
1249 */
Sanjay Lal669e8462012-11-21 18:34:02 -08001250 kvm_mips_set_c0_status();
1251
1252 local_irq_enable();
1253
1254 kvm_debug("kvm_mips_handle_exit: cause: %#x, PC: %p, kvm_run: %p, kvm_vcpu: %p\n",
1255 cause, opc, run, vcpu);
James Hogan1e09e862016-06-14 09:40:12 +01001256 trace_kvm_exit(vcpu, exccode);
Sanjay Lal669e8462012-11-21 18:34:02 -08001257
James Hoganea1bdbf2017-03-14 10:15:30 +00001258 if (!IS_ENABLED(CONFIG_KVM_MIPS_VZ)) {
1259 /*
1260 * Do a privilege check, if in UM most of these exit conditions
1261 * end up causing an exception to be delivered to the Guest
1262 * Kernel
1263 */
1264 er = kvm_mips_check_privilege(cause, opc, run, vcpu);
1265 if (er == EMULATE_PRIV_FAIL) {
1266 goto skip_emul;
1267 } else if (er == EMULATE_FAIL) {
1268 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1269 ret = RESUME_HOST;
1270 goto skip_emul;
1271 }
Sanjay Lal669e8462012-11-21 18:34:02 -08001272 }
1273
1274 switch (exccode) {
James Hogan16d100db2015-12-16 23:49:33 +00001275 case EXCCODE_INT:
1276 kvm_debug("[%d]EXCCODE_INT @ %p\n", vcpu->vcpu_id, opc);
Sanjay Lal669e8462012-11-21 18:34:02 -08001277
1278 ++vcpu->stat.int_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001279
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001280 if (need_resched())
Sanjay Lal669e8462012-11-21 18:34:02 -08001281 cond_resched();
Sanjay Lal669e8462012-11-21 18:34:02 -08001282
1283 ret = RESUME_GUEST;
1284 break;
1285
James Hogan16d100db2015-12-16 23:49:33 +00001286 case EXCCODE_CPU:
1287 kvm_debug("EXCCODE_CPU: @ PC: %p\n", opc);
Sanjay Lal669e8462012-11-21 18:34:02 -08001288
1289 ++vcpu->stat.cop_unusable_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001290 ret = kvm_mips_callbacks->handle_cop_unusable(vcpu);
1291 /* XXXKYMA: Might need to return to user space */
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001292 if (run->exit_reason == KVM_EXIT_IRQ_WINDOW_OPEN)
Sanjay Lal669e8462012-11-21 18:34:02 -08001293 ret = RESUME_HOST;
Sanjay Lal669e8462012-11-21 18:34:02 -08001294 break;
1295
James Hogan16d100db2015-12-16 23:49:33 +00001296 case EXCCODE_MOD:
Sanjay Lal669e8462012-11-21 18:34:02 -08001297 ++vcpu->stat.tlbmod_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001298 ret = kvm_mips_callbacks->handle_tlb_mod(vcpu);
1299 break;
1300
James Hogan16d100db2015-12-16 23:49:33 +00001301 case EXCCODE_TLBS:
James Hogana27660f2017-03-14 10:15:25 +00001302 kvm_debug("TLB ST fault: cause %#x, status %#x, PC: %p, BadVaddr: %#lx\n",
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001303 cause, kvm_read_c0_guest_status(vcpu->arch.cop0), opc,
1304 badvaddr);
Sanjay Lal669e8462012-11-21 18:34:02 -08001305
1306 ++vcpu->stat.tlbmiss_st_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001307 ret = kvm_mips_callbacks->handle_tlb_st_miss(vcpu);
1308 break;
1309
James Hogan16d100db2015-12-16 23:49:33 +00001310 case EXCCODE_TLBL:
Sanjay Lal669e8462012-11-21 18:34:02 -08001311 kvm_debug("TLB LD fault: cause %#x, PC: %p, BadVaddr: %#lx\n",
1312 cause, opc, badvaddr);
1313
1314 ++vcpu->stat.tlbmiss_ld_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001315 ret = kvm_mips_callbacks->handle_tlb_ld_miss(vcpu);
1316 break;
1317
James Hogan16d100db2015-12-16 23:49:33 +00001318 case EXCCODE_ADES:
Sanjay Lal669e8462012-11-21 18:34:02 -08001319 ++vcpu->stat.addrerr_st_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001320 ret = kvm_mips_callbacks->handle_addr_err_st(vcpu);
1321 break;
1322
James Hogan16d100db2015-12-16 23:49:33 +00001323 case EXCCODE_ADEL:
Sanjay Lal669e8462012-11-21 18:34:02 -08001324 ++vcpu->stat.addrerr_ld_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001325 ret = kvm_mips_callbacks->handle_addr_err_ld(vcpu);
1326 break;
1327
James Hogan16d100db2015-12-16 23:49:33 +00001328 case EXCCODE_SYS:
Sanjay Lal669e8462012-11-21 18:34:02 -08001329 ++vcpu->stat.syscall_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001330 ret = kvm_mips_callbacks->handle_syscall(vcpu);
1331 break;
1332
James Hogan16d100db2015-12-16 23:49:33 +00001333 case EXCCODE_RI:
Sanjay Lal669e8462012-11-21 18:34:02 -08001334 ++vcpu->stat.resvd_inst_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001335 ret = kvm_mips_callbacks->handle_res_inst(vcpu);
1336 break;
1337
James Hogan16d100db2015-12-16 23:49:33 +00001338 case EXCCODE_BP:
Sanjay Lal669e8462012-11-21 18:34:02 -08001339 ++vcpu->stat.break_inst_exits;
Sanjay Lal669e8462012-11-21 18:34:02 -08001340 ret = kvm_mips_callbacks->handle_break(vcpu);
1341 break;
1342
James Hogan16d100db2015-12-16 23:49:33 +00001343 case EXCCODE_TR:
James Hogan0a560422015-02-06 16:03:57 +00001344 ++vcpu->stat.trap_inst_exits;
James Hogan0a560422015-02-06 16:03:57 +00001345 ret = kvm_mips_callbacks->handle_trap(vcpu);
1346 break;
1347
James Hogan16d100db2015-12-16 23:49:33 +00001348 case EXCCODE_MSAFPE:
James Hoganc2537ed2015-02-06 10:56:27 +00001349 ++vcpu->stat.msa_fpe_exits;
James Hoganc2537ed2015-02-06 10:56:27 +00001350 ret = kvm_mips_callbacks->handle_msa_fpe(vcpu);
1351 break;
1352
James Hogan16d100db2015-12-16 23:49:33 +00001353 case EXCCODE_FPE:
James Hogan1c0cd662015-02-06 10:56:27 +00001354 ++vcpu->stat.fpe_exits;
James Hogan1c0cd662015-02-06 10:56:27 +00001355 ret = kvm_mips_callbacks->handle_fpe(vcpu);
1356 break;
1357
James Hogan16d100db2015-12-16 23:49:33 +00001358 case EXCCODE_MSADIS:
James Hoganc2537ed2015-02-06 10:56:27 +00001359 ++vcpu->stat.msa_disabled_exits;
James Hogan98119ad2015-02-06 11:11:56 +00001360 ret = kvm_mips_callbacks->handle_msa_disabled(vcpu);
1361 break;
1362
James Hogan28c1e762017-03-14 10:15:24 +00001363 case EXCCODE_GE:
1364 /* defer exit accounting to handler */
1365 ret = kvm_mips_callbacks->handle_guest_exit(vcpu);
1366 break;
1367
Sanjay Lal669e8462012-11-21 18:34:02 -08001368 default:
James Hogan122e51d2016-11-28 17:23:14 +00001369 if (cause & CAUSEF_BD)
1370 opc += 1;
1371 inst = 0;
James Hogan6a97c772015-04-23 16:54:35 +01001372 kvm_get_badinstr(opc, vcpu, &inst);
James Hogana27660f2017-03-14 10:15:25 +00001373 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 +00001374 exccode, opc, inst, badvaddr,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001375 kvm_read_c0_guest_status(vcpu->arch.cop0));
Sanjay Lal669e8462012-11-21 18:34:02 -08001376 kvm_arch_vcpu_dump_regs(vcpu);
1377 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1378 ret = RESUME_HOST;
1379 break;
1380
1381 }
1382
1383skip_emul:
1384 local_irq_disable();
1385
James Hoganf4474d52017-03-14 10:15:39 +00001386 if (ret == RESUME_GUEST)
1387 kvm_vz_acquire_htimer(vcpu);
1388
Sanjay Lal669e8462012-11-21 18:34:02 -08001389 if (er == EMULATE_DONE && !(ret & RESUME_HOST))
1390 kvm_mips_deliver_interrupts(vcpu, cause);
1391
1392 if (!(ret & RESUME_HOST)) {
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001393 /* Only check for signals if not already exiting to userspace */
Sanjay Lal669e8462012-11-21 18:34:02 -08001394 if (signal_pending(current)) {
1395 run->exit_reason = KVM_EXIT_INTR;
1396 ret = (-EINTR << 2) | RESUME_HOST;
1397 ++vcpu->stat.signal_exits;
James Hogan1e09e862016-06-14 09:40:12 +01001398 trace_kvm_exit(vcpu, KVM_TRACE_EXIT_SIGNAL);
Sanjay Lal669e8462012-11-21 18:34:02 -08001399 }
1400 }
1401
James Hogan98e91b82014-11-18 14:09:12 +00001402 if (ret == RESUME_GUEST) {
James Hogan93258602016-06-14 09:40:14 +01001403 trace_kvm_reenter(vcpu);
1404
James Hogan4841e0d2016-11-28 22:45:04 +00001405 /*
1406 * Make sure the read of VCPU requests in vcpu_reenter()
1407 * callback is not reordered ahead of the write to vcpu->mode,
1408 * or we could miss a TLB flush request while the requester sees
1409 * the VCPU as outside of guest mode and not needing an IPI.
1410 */
1411 smp_store_mb(vcpu->mode, IN_GUEST_MODE);
1412
James Hogana2c046e2016-11-18 13:14:37 +00001413 kvm_mips_callbacks->vcpu_reenter(run, vcpu);
James Hogan25b08c72016-09-16 00:06:43 +01001414
James Hogan98e91b82014-11-18 14:09:12 +00001415 /*
James Hogan539cb89fb2015-03-05 11:43:36 +00001416 * If FPU / MSA are enabled (i.e. the guest's FPU / MSA context
1417 * is live), restore FCR31 / MSACSR.
James Hogan98e91b82014-11-18 14:09:12 +00001418 *
1419 * This should be before returning to the guest exception
James Hogan539cb89fb2015-03-05 11:43:36 +00001420 * vector, as it may well cause an [MSA] FP exception if there
1421 * are pending exception bits unmasked. (see
James Hogan98e91b82014-11-18 14:09:12 +00001422 * kvm_mips_csr_die_notifier() for how that is handled).
1423 */
1424 if (kvm_mips_guest_has_fpu(&vcpu->arch) &&
1425 read_c0_status() & ST0_CU1)
1426 __kvm_restore_fcsr(&vcpu->arch);
James Hogan539cb89fb2015-03-05 11:43:36 +00001427
1428 if (kvm_mips_guest_has_msa(&vcpu->arch) &&
1429 read_c0_config5() & MIPS_CONF5_MSAEN)
1430 __kvm_restore_msacsr(&vcpu->arch);
James Hogan98e91b82014-11-18 14:09:12 +00001431 }
1432
James Hoganc4c6f2c2015-02-04 10:52:03 +00001433 /* Disable HTW before returning to guest or host */
James Hoganea1bdbf2017-03-14 10:15:30 +00001434 if (!IS_ENABLED(CONFIG_KVM_MIPS_VZ))
1435 htw_stop();
James Hoganc4c6f2c2015-02-04 10:52:03 +00001436
Sanjay Lal669e8462012-11-21 18:34:02 -08001437 return ret;
1438}
1439
James Hogan98e91b82014-11-18 14:09:12 +00001440/* Enable FPU for guest and restore context */
1441void kvm_own_fpu(struct kvm_vcpu *vcpu)
1442{
1443 struct mips_coproc *cop0 = vcpu->arch.cop0;
1444 unsigned int sr, cfg5;
1445
1446 preempt_disable();
1447
James Hogan539cb89fb2015-03-05 11:43:36 +00001448 sr = kvm_read_c0_guest_status(cop0);
1449
1450 /*
1451 * If MSA state is already live, it is undefined how it interacts with
1452 * FR=0 FPU state, and we don't want to hit reserved instruction
1453 * exceptions trying to save the MSA state later when CU=1 && FR=1, so
1454 * play it safe and save it first.
1455 *
1456 * In theory we shouldn't ever hit this case since kvm_lose_fpu() should
1457 * get called when guest CU1 is set, however we can't trust the guest
1458 * not to clobber the status register directly via the commpage.
1459 */
1460 if (cpu_has_msa && sr & ST0_CU1 && !(sr & ST0_FR) &&
James Hoganf9431762016-06-14 09:40:10 +01001461 vcpu->arch.aux_inuse & KVM_MIPS_AUX_MSA)
James Hogan539cb89fb2015-03-05 11:43:36 +00001462 kvm_lose_fpu(vcpu);
1463
James Hogan98e91b82014-11-18 14:09:12 +00001464 /*
1465 * Enable FPU for guest
1466 * We set FR and FRE according to guest context
1467 */
James Hogan98e91b82014-11-18 14:09:12 +00001468 change_c0_status(ST0_CU1 | ST0_FR, sr);
1469 if (cpu_has_fre) {
1470 cfg5 = kvm_read_c0_guest_config5(cop0);
1471 change_c0_config5(MIPS_CONF5_FRE, cfg5);
1472 }
1473 enable_fpu_hazard();
1474
1475 /* If guest FPU state not active, restore it now */
James Hoganf9431762016-06-14 09:40:10 +01001476 if (!(vcpu->arch.aux_inuse & KVM_MIPS_AUX_FPU)) {
James Hogan98e91b82014-11-18 14:09:12 +00001477 __kvm_restore_fpu(&vcpu->arch);
James Hoganf9431762016-06-14 09:40:10 +01001478 vcpu->arch.aux_inuse |= KVM_MIPS_AUX_FPU;
James Hogan04ebebf2016-06-14 09:40:11 +01001479 trace_kvm_aux(vcpu, KVM_TRACE_AUX_RESTORE, KVM_TRACE_AUX_FPU);
1480 } else {
1481 trace_kvm_aux(vcpu, KVM_TRACE_AUX_ENABLE, KVM_TRACE_AUX_FPU);
James Hogan98e91b82014-11-18 14:09:12 +00001482 }
1483
1484 preempt_enable();
1485}
1486
James Hogan539cb89fb2015-03-05 11:43:36 +00001487#ifdef CONFIG_CPU_HAS_MSA
1488/* Enable MSA for guest and restore context */
1489void kvm_own_msa(struct kvm_vcpu *vcpu)
1490{
1491 struct mips_coproc *cop0 = vcpu->arch.cop0;
1492 unsigned int sr, cfg5;
1493
1494 preempt_disable();
1495
1496 /*
1497 * Enable FPU if enabled in guest, since we're restoring FPU context
1498 * anyway. We set FR and FRE according to guest context.
1499 */
1500 if (kvm_mips_guest_has_fpu(&vcpu->arch)) {
1501 sr = kvm_read_c0_guest_status(cop0);
1502
1503 /*
1504 * If FR=0 FPU state is already live, it is undefined how it
1505 * interacts with MSA state, so play it safe and save it first.
1506 */
1507 if (!(sr & ST0_FR) &&
James Hoganf9431762016-06-14 09:40:10 +01001508 (vcpu->arch.aux_inuse & (KVM_MIPS_AUX_FPU |
1509 KVM_MIPS_AUX_MSA)) == KVM_MIPS_AUX_FPU)
James Hogan539cb89fb2015-03-05 11:43:36 +00001510 kvm_lose_fpu(vcpu);
1511
1512 change_c0_status(ST0_CU1 | ST0_FR, sr);
1513 if (sr & ST0_CU1 && cpu_has_fre) {
1514 cfg5 = kvm_read_c0_guest_config5(cop0);
1515 change_c0_config5(MIPS_CONF5_FRE, cfg5);
1516 }
1517 }
1518
1519 /* Enable MSA for guest */
1520 set_c0_config5(MIPS_CONF5_MSAEN);
1521 enable_fpu_hazard();
1522
James Hoganf9431762016-06-14 09:40:10 +01001523 switch (vcpu->arch.aux_inuse & (KVM_MIPS_AUX_FPU | KVM_MIPS_AUX_MSA)) {
1524 case KVM_MIPS_AUX_FPU:
James Hogan539cb89fb2015-03-05 11:43:36 +00001525 /*
1526 * Guest FPU state already loaded, only restore upper MSA state
1527 */
1528 __kvm_restore_msa_upper(&vcpu->arch);
James Hoganf9431762016-06-14 09:40:10 +01001529 vcpu->arch.aux_inuse |= KVM_MIPS_AUX_MSA;
James Hogan04ebebf2016-06-14 09:40:11 +01001530 trace_kvm_aux(vcpu, KVM_TRACE_AUX_RESTORE, KVM_TRACE_AUX_MSA);
James Hogan539cb89fb2015-03-05 11:43:36 +00001531 break;
1532 case 0:
1533 /* Neither FPU or MSA already active, restore full MSA state */
1534 __kvm_restore_msa(&vcpu->arch);
James Hoganf9431762016-06-14 09:40:10 +01001535 vcpu->arch.aux_inuse |= KVM_MIPS_AUX_MSA;
James Hogan539cb89fb2015-03-05 11:43:36 +00001536 if (kvm_mips_guest_has_fpu(&vcpu->arch))
James Hoganf9431762016-06-14 09:40:10 +01001537 vcpu->arch.aux_inuse |= KVM_MIPS_AUX_FPU;
James Hogan04ebebf2016-06-14 09:40:11 +01001538 trace_kvm_aux(vcpu, KVM_TRACE_AUX_RESTORE,
1539 KVM_TRACE_AUX_FPU_MSA);
James Hogan539cb89fb2015-03-05 11:43:36 +00001540 break;
1541 default:
James Hogan04ebebf2016-06-14 09:40:11 +01001542 trace_kvm_aux(vcpu, KVM_TRACE_AUX_ENABLE, KVM_TRACE_AUX_MSA);
James Hogan539cb89fb2015-03-05 11:43:36 +00001543 break;
1544 }
1545
1546 preempt_enable();
1547}
1548#endif
1549
1550/* Drop FPU & MSA without saving it */
James Hogan98e91b82014-11-18 14:09:12 +00001551void kvm_drop_fpu(struct kvm_vcpu *vcpu)
1552{
1553 preempt_disable();
James Hoganf9431762016-06-14 09:40:10 +01001554 if (cpu_has_msa && vcpu->arch.aux_inuse & KVM_MIPS_AUX_MSA) {
James Hogan539cb89fb2015-03-05 11:43:36 +00001555 disable_msa();
James Hogan04ebebf2016-06-14 09:40:11 +01001556 trace_kvm_aux(vcpu, KVM_TRACE_AUX_DISCARD, KVM_TRACE_AUX_MSA);
James Hoganf9431762016-06-14 09:40:10 +01001557 vcpu->arch.aux_inuse &= ~KVM_MIPS_AUX_MSA;
James Hogan539cb89fb2015-03-05 11:43:36 +00001558 }
James Hoganf9431762016-06-14 09:40:10 +01001559 if (vcpu->arch.aux_inuse & KVM_MIPS_AUX_FPU) {
James Hogan98e91b82014-11-18 14:09:12 +00001560 clear_c0_status(ST0_CU1 | ST0_FR);
James Hogan04ebebf2016-06-14 09:40:11 +01001561 trace_kvm_aux(vcpu, KVM_TRACE_AUX_DISCARD, KVM_TRACE_AUX_FPU);
James Hoganf9431762016-06-14 09:40:10 +01001562 vcpu->arch.aux_inuse &= ~KVM_MIPS_AUX_FPU;
James Hogan98e91b82014-11-18 14:09:12 +00001563 }
1564 preempt_enable();
1565}
1566
James Hogan539cb89fb2015-03-05 11:43:36 +00001567/* Save and disable FPU & MSA */
James Hogan98e91b82014-11-18 14:09:12 +00001568void kvm_lose_fpu(struct kvm_vcpu *vcpu)
1569{
1570 /*
James Hoganc58cf742017-03-14 10:15:17 +00001571 * With T&E, FPU & MSA get disabled in root context (hardware) when it
1572 * is disabled in guest context (software), but the register state in
1573 * the hardware may still be in use.
1574 * This is why we explicitly re-enable the hardware before saving.
James Hogan98e91b82014-11-18 14:09:12 +00001575 */
1576
1577 preempt_disable();
James Hoganf9431762016-06-14 09:40:10 +01001578 if (cpu_has_msa && vcpu->arch.aux_inuse & KVM_MIPS_AUX_MSA) {
James Hoganc58cf742017-03-14 10:15:17 +00001579 if (!IS_ENABLED(CONFIG_KVM_MIPS_VZ)) {
1580 set_c0_config5(MIPS_CONF5_MSAEN);
1581 enable_fpu_hazard();
1582 }
James Hogan539cb89fb2015-03-05 11:43:36 +00001583
1584 __kvm_save_msa(&vcpu->arch);
James Hogan04ebebf2016-06-14 09:40:11 +01001585 trace_kvm_aux(vcpu, KVM_TRACE_AUX_SAVE, KVM_TRACE_AUX_FPU_MSA);
James Hogan539cb89fb2015-03-05 11:43:36 +00001586
1587 /* Disable MSA & FPU */
1588 disable_msa();
James Hoganf9431762016-06-14 09:40:10 +01001589 if (vcpu->arch.aux_inuse & KVM_MIPS_AUX_FPU) {
James Hogan539cb89fb2015-03-05 11:43:36 +00001590 clear_c0_status(ST0_CU1 | ST0_FR);
James Hogan4ac33422016-04-22 10:38:49 +01001591 disable_fpu_hazard();
1592 }
James Hoganf9431762016-06-14 09:40:10 +01001593 vcpu->arch.aux_inuse &= ~(KVM_MIPS_AUX_FPU | KVM_MIPS_AUX_MSA);
1594 } else if (vcpu->arch.aux_inuse & KVM_MIPS_AUX_FPU) {
James Hoganc58cf742017-03-14 10:15:17 +00001595 if (!IS_ENABLED(CONFIG_KVM_MIPS_VZ)) {
1596 set_c0_status(ST0_CU1);
1597 enable_fpu_hazard();
1598 }
James Hogan98e91b82014-11-18 14:09:12 +00001599
1600 __kvm_save_fpu(&vcpu->arch);
James Hoganf9431762016-06-14 09:40:10 +01001601 vcpu->arch.aux_inuse &= ~KVM_MIPS_AUX_FPU;
James Hogan04ebebf2016-06-14 09:40:11 +01001602 trace_kvm_aux(vcpu, KVM_TRACE_AUX_SAVE, KVM_TRACE_AUX_FPU);
James Hogan98e91b82014-11-18 14:09:12 +00001603
1604 /* Disable FPU */
1605 clear_c0_status(ST0_CU1 | ST0_FR);
James Hogan4ac33422016-04-22 10:38:49 +01001606 disable_fpu_hazard();
James Hogan98e91b82014-11-18 14:09:12 +00001607 }
1608 preempt_enable();
1609}
1610
1611/*
James Hogan539cb89fb2015-03-05 11:43:36 +00001612 * Step over a specific ctc1 to FCSR and a specific ctcmsa to MSACSR which are
1613 * used to restore guest FCSR/MSACSR state and may trigger a "harmless" FP/MSAFP
1614 * exception if cause bits are set in the value being written.
James Hogan98e91b82014-11-18 14:09:12 +00001615 */
1616static int kvm_mips_csr_die_notify(struct notifier_block *self,
1617 unsigned long cmd, void *ptr)
1618{
1619 struct die_args *args = (struct die_args *)ptr;
1620 struct pt_regs *regs = args->regs;
1621 unsigned long pc;
1622
James Hogan539cb89fb2015-03-05 11:43:36 +00001623 /* Only interested in FPE and MSAFPE */
1624 if (cmd != DIE_FP && cmd != DIE_MSAFP)
James Hogan98e91b82014-11-18 14:09:12 +00001625 return NOTIFY_DONE;
1626
1627 /* Return immediately if guest context isn't active */
1628 if (!(current->flags & PF_VCPU))
1629 return NOTIFY_DONE;
1630
1631 /* Should never get here from user mode */
1632 BUG_ON(user_mode(regs));
1633
1634 pc = instruction_pointer(regs);
1635 switch (cmd) {
1636 case DIE_FP:
1637 /* match 2nd instruction in __kvm_restore_fcsr */
1638 if (pc != (unsigned long)&__kvm_restore_fcsr + 4)
1639 return NOTIFY_DONE;
1640 break;
James Hogan539cb89fb2015-03-05 11:43:36 +00001641 case DIE_MSAFP:
1642 /* match 2nd/3rd instruction in __kvm_restore_msacsr */
1643 if (!cpu_has_msa ||
1644 pc < (unsigned long)&__kvm_restore_msacsr + 4 ||
1645 pc > (unsigned long)&__kvm_restore_msacsr + 8)
1646 return NOTIFY_DONE;
1647 break;
James Hogan98e91b82014-11-18 14:09:12 +00001648 }
1649
1650 /* Move PC forward a little and continue executing */
1651 instruction_pointer(regs) += 4;
1652
1653 return NOTIFY_STOP;
1654}
1655
1656static struct notifier_block kvm_mips_csr_die_notifier = {
1657 .notifier_call = kvm_mips_csr_die_notify,
1658};
1659
James Hogan2db9d232015-12-16 23:49:32 +00001660static int __init kvm_mips_init(void)
Sanjay Lal669e8462012-11-21 18:34:02 -08001661{
1662 int ret;
1663
James Hogan1e5217f52016-06-23 17:34:45 +01001664 ret = kvm_mips_entry_setup();
1665 if (ret)
1666 return ret;
1667
Sanjay Lal669e8462012-11-21 18:34:02 -08001668 ret = kvm_init(NULL, sizeof(struct kvm_vcpu), 0, THIS_MODULE);
1669
1670 if (ret)
1671 return ret;
1672
James Hogan98e91b82014-11-18 14:09:12 +00001673 register_die_notifier(&kvm_mips_csr_die_notifier);
1674
Sanjay Lal669e8462012-11-21 18:34:02 -08001675 return 0;
1676}
1677
James Hogan2db9d232015-12-16 23:49:32 +00001678static void __exit kvm_mips_exit(void)
Sanjay Lal669e8462012-11-21 18:34:02 -08001679{
1680 kvm_exit();
1681
James Hogan98e91b82014-11-18 14:09:12 +00001682 unregister_die_notifier(&kvm_mips_csr_die_notifier);
Sanjay Lal669e8462012-11-21 18:34:02 -08001683}
1684
1685module_init(kvm_mips_init);
1686module_exit(kvm_mips_exit);
1687
1688EXPORT_TRACEPOINT_SYMBOL(kvm_exit);