blob: 2c4709a09b78d5d3fbfed506ea0c977d894a8c46 [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
12#include <linux/errno.h>
13#include <linux/err.h>
James Hogan98e91b82014-11-18 14:09:12 +000014#include <linux/kdebug.h>
Sanjay Lal669e8462012-11-21 18:34:02 -080015#include <linux/module.h>
16#include <linux/vmalloc.h>
17#include <linux/fs.h>
18#include <linux/bootmem.h>
James Hoganf7982172015-02-04 17:06:37 +000019#include <asm/fpu.h>
Sanjay Lal669e8462012-11-21 18:34:02 -080020#include <asm/page.h>
21#include <asm/cacheflush.h>
22#include <asm/mmu_context.h>
James Hoganc4c6f2c2015-02-04 10:52:03 +000023#include <asm/pgtable.h>
Sanjay Lal669e8462012-11-21 18:34:02 -080024
25#include <linux/kvm_host.h>
26
Deng-Cheng Zhud7d5b052014-06-26 12:11:38 -070027#include "interrupt.h"
28#include "commpage.h"
Sanjay Lal669e8462012-11-21 18:34:02 -080029
30#define CREATE_TRACE_POINTS
31#include "trace.h"
32
33#ifndef VECTORSPACING
34#define VECTORSPACING 0x100 /* for EI/VI mode */
35#endif
36
Deng-Cheng Zhud116e812014-06-26 12:11:34 -070037#define VCPU_STAT(x) offsetof(struct kvm_vcpu, stat.x)
Sanjay Lal669e8462012-11-21 18:34:02 -080038struct kvm_stats_debugfs_item debugfs_entries[] = {
Deng-Cheng Zhud116e812014-06-26 12:11:34 -070039 { "wait", VCPU_STAT(wait_exits), KVM_STAT_VCPU },
40 { "cache", VCPU_STAT(cache_exits), KVM_STAT_VCPU },
41 { "signal", VCPU_STAT(signal_exits), KVM_STAT_VCPU },
42 { "interrupt", VCPU_STAT(int_exits), KVM_STAT_VCPU },
43 { "cop_unsuable", VCPU_STAT(cop_unusable_exits), KVM_STAT_VCPU },
44 { "tlbmod", VCPU_STAT(tlbmod_exits), KVM_STAT_VCPU },
45 { "tlbmiss_ld", VCPU_STAT(tlbmiss_ld_exits), KVM_STAT_VCPU },
46 { "tlbmiss_st", VCPU_STAT(tlbmiss_st_exits), KVM_STAT_VCPU },
47 { "addrerr_st", VCPU_STAT(addrerr_st_exits), KVM_STAT_VCPU },
48 { "addrerr_ld", VCPU_STAT(addrerr_ld_exits), KVM_STAT_VCPU },
49 { "syscall", VCPU_STAT(syscall_exits), KVM_STAT_VCPU },
50 { "resvd_inst", VCPU_STAT(resvd_inst_exits), KVM_STAT_VCPU },
51 { "break_inst", VCPU_STAT(break_inst_exits), KVM_STAT_VCPU },
James Hogan0a560422015-02-06 16:03:57 +000052 { "trap_inst", VCPU_STAT(trap_inst_exits), KVM_STAT_VCPU },
James Hoganc2537ed2015-02-06 10:56:27 +000053 { "msa_fpe", VCPU_STAT(msa_fpe_exits), KVM_STAT_VCPU },
James Hogan1c0cd662015-02-06 10:56:27 +000054 { "fpe", VCPU_STAT(fpe_exits), KVM_STAT_VCPU },
James Hoganc2537ed2015-02-06 10:56:27 +000055 { "msa_disabled", VCPU_STAT(msa_disabled_exits), KVM_STAT_VCPU },
Deng-Cheng Zhud116e812014-06-26 12:11:34 -070056 { "flush_dcache", VCPU_STAT(flush_dcache_exits), KVM_STAT_VCPU },
Paolo Bonzinif7819512015-02-04 18:20:58 +010057 { "halt_successful_poll", VCPU_STAT(halt_successful_poll), KVM_STAT_VCPU },
Paolo Bonzini62bea5b2015-09-15 18:27:57 +020058 { "halt_attempted_poll", VCPU_STAT(halt_attempted_poll), KVM_STAT_VCPU },
Christian Borntraeger3491caf2016-05-13 12:16:35 +020059 { "halt_poll_invalid", VCPU_STAT(halt_poll_invalid), KVM_STAT_VCPU },
Deng-Cheng Zhud116e812014-06-26 12:11:34 -070060 { "halt_wakeup", VCPU_STAT(halt_wakeup), KVM_STAT_VCPU },
Sanjay Lal669e8462012-11-21 18:34:02 -080061 {NULL}
62};
63
64static int kvm_mips_reset_vcpu(struct kvm_vcpu *vcpu)
65{
66 int i;
Deng-Cheng Zhud116e812014-06-26 12:11:34 -070067
Sanjay Lal669e8462012-11-21 18:34:02 -080068 for_each_possible_cpu(i) {
69 vcpu->arch.guest_kernel_asid[i] = 0;
70 vcpu->arch.guest_user_asid[i] = 0;
71 }
Deng-Cheng Zhud116e812014-06-26 12:11:34 -070072
Sanjay Lal669e8462012-11-21 18:34:02 -080073 return 0;
74}
75
Deng-Cheng Zhud116e812014-06-26 12:11:34 -070076/*
77 * XXXKYMA: We are simulatoring a processor that has the WII bit set in
78 * Config7, so we are "runnable" if interrupts are pending
Sanjay Lal669e8462012-11-21 18:34:02 -080079 */
80int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
81{
82 return !!(vcpu->arch.pending_exceptions);
83}
84
85int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
86{
87 return 1;
88}
89
Radim Krčmář13a34e02014-08-28 15:13:03 +020090int kvm_arch_hardware_enable(void)
Sanjay Lal669e8462012-11-21 18:34:02 -080091{
92 return 0;
93}
94
Sanjay Lal669e8462012-11-21 18:34:02 -080095int kvm_arch_hardware_setup(void)
96{
97 return 0;
98}
99
Sanjay Lal669e8462012-11-21 18:34:02 -0800100void kvm_arch_check_processor_compat(void *rtn)
101{
Deng-Cheng Zhud98403a2014-06-26 12:11:36 -0700102 *(int *)rtn = 0;
Sanjay Lal669e8462012-11-21 18:34:02 -0800103}
104
105static void kvm_mips_init_tlbs(struct kvm *kvm)
106{
107 unsigned long wired;
108
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700109 /*
110 * Add a wired entry to the TLB, it is used to map the commpage to
111 * the Guest kernel
112 */
Sanjay Lal669e8462012-11-21 18:34:02 -0800113 wired = read_c0_wired();
114 write_c0_wired(wired + 1);
115 mtc0_tlbw_hazard();
116 kvm->arch.commpage_tlb = wired;
117
118 kvm_debug("[%d] commpage TLB: %d\n", smp_processor_id(),
119 kvm->arch.commpage_tlb);
120}
121
122static void kvm_mips_init_vm_percpu(void *arg)
123{
124 struct kvm *kvm = (struct kvm *)arg;
125
126 kvm_mips_init_tlbs(kvm);
127 kvm_mips_callbacks->vm_init(kvm);
128
129}
130
131int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
132{
133 if (atomic_inc_return(&kvm_mips_instance) == 1) {
James Hogan6e95bfd2014-05-29 10:16:43 +0100134 kvm_debug("%s: 1st KVM instance, setup host TLB parameters\n",
135 __func__);
Sanjay Lal669e8462012-11-21 18:34:02 -0800136 on_each_cpu(kvm_mips_init_vm_percpu, kvm, 1);
137 }
138
Sanjay Lal669e8462012-11-21 18:34:02 -0800139 return 0;
140}
141
142void kvm_mips_free_vcpus(struct kvm *kvm)
143{
144 unsigned int i;
145 struct kvm_vcpu *vcpu;
146
147 /* Put the pages we reserved for the guest pmap */
148 for (i = 0; i < kvm->arch.guest_pmap_npages; i++) {
149 if (kvm->arch.guest_pmap[i] != KVM_INVALID_PAGE)
James Hogan9befad22016-06-09 14:19:11 +0100150 kvm_release_pfn_clean(kvm->arch.guest_pmap[i]);
Sanjay Lal669e8462012-11-21 18:34:02 -0800151 }
James Hoganc6c0a662014-05-29 10:16:44 +0100152 kfree(kvm->arch.guest_pmap);
Sanjay Lal669e8462012-11-21 18:34:02 -0800153
154 kvm_for_each_vcpu(i, vcpu, kvm) {
155 kvm_arch_vcpu_free(vcpu);
156 }
157
158 mutex_lock(&kvm->lock);
159
160 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
161 kvm->vcpus[i] = NULL;
162
163 atomic_set(&kvm->online_vcpus, 0);
164
165 mutex_unlock(&kvm->lock);
166}
167
Sanjay Lal669e8462012-11-21 18:34:02 -0800168static void kvm_mips_uninit_tlbs(void *arg)
169{
170 /* Restore wired count */
171 write_c0_wired(0);
172 mtc0_tlbw_hazard();
173 /* Clear out all the TLBs */
174 kvm_local_flush_tlb_all();
175}
176
177void kvm_arch_destroy_vm(struct kvm *kvm)
178{
179 kvm_mips_free_vcpus(kvm);
180
181 /* If this is the last instance, restore wired count */
182 if (atomic_dec_return(&kvm_mips_instance) == 0) {
James Hogan6e95bfd2014-05-29 10:16:43 +0100183 kvm_debug("%s: last KVM instance, restoring TLB parameters\n",
184 __func__);
Sanjay Lal669e8462012-11-21 18:34:02 -0800185 on_each_cpu(kvm_mips_uninit_tlbs, NULL, 1);
186 }
187}
188
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700189long kvm_arch_dev_ioctl(struct file *filp, unsigned int ioctl,
190 unsigned long arg)
Sanjay Lal669e8462012-11-21 18:34:02 -0800191{
David Daneyed829852013-05-23 09:49:10 -0700192 return -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -0800193}
194
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530195int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
196 unsigned long npages)
Sanjay Lal669e8462012-11-21 18:34:02 -0800197{
198 return 0;
199}
200
201int kvm_arch_prepare_memory_region(struct kvm *kvm,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700202 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200203 const struct kvm_userspace_memory_region *mem,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700204 enum kvm_mr_change change)
Sanjay Lal669e8462012-11-21 18:34:02 -0800205{
206 return 0;
207}
208
209void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200210 const struct kvm_userspace_memory_region *mem,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700211 const struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +0200212 const struct kvm_memory_slot *new,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700213 enum kvm_mr_change change)
Sanjay Lal669e8462012-11-21 18:34:02 -0800214{
215 unsigned long npages = 0;
Deng-Cheng Zhud98403a2014-06-26 12:11:36 -0700216 int i;
Sanjay Lal669e8462012-11-21 18:34:02 -0800217
218 kvm_debug("%s: kvm: %p slot: %d, GPA: %llx, size: %llx, QVA: %llx\n",
219 __func__, kvm, mem->slot, mem->guest_phys_addr,
220 mem->memory_size, mem->userspace_addr);
221
222 /* Setup Guest PMAP table */
223 if (!kvm->arch.guest_pmap) {
224 if (mem->slot == 0)
225 npages = mem->memory_size >> PAGE_SHIFT;
226
227 if (npages) {
228 kvm->arch.guest_pmap_npages = npages;
229 kvm->arch.guest_pmap =
230 kzalloc(npages * sizeof(unsigned long), GFP_KERNEL);
231
232 if (!kvm->arch.guest_pmap) {
James Hoganf7fdcb62015-12-16 23:49:39 +0000233 kvm_err("Failed to allocate guest PMAP\n");
Deng-Cheng Zhud98403a2014-06-26 12:11:36 -0700234 return;
Sanjay Lal669e8462012-11-21 18:34:02 -0800235 }
236
James Hogan6e95bfd2014-05-29 10:16:43 +0100237 kvm_debug("Allocated space for Guest PMAP Table (%ld pages) @ %p\n",
238 npages, kvm->arch.guest_pmap);
Sanjay Lal669e8462012-11-21 18:34:02 -0800239
240 /* Now setup the page table */
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700241 for (i = 0; i < npages; i++)
Sanjay Lal669e8462012-11-21 18:34:02 -0800242 kvm->arch.guest_pmap[i] = KVM_INVALID_PAGE;
Sanjay Lal669e8462012-11-21 18:34:02 -0800243 }
244 }
Sanjay Lal669e8462012-11-21 18:34:02 -0800245}
246
Sanjay Lal669e8462012-11-21 18:34:02 -0800247struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id)
248{
Sanjay Lal669e8462012-11-21 18:34:02 -0800249 int err, size, offset;
250 void *gebase;
251 int i;
252
253 struct kvm_vcpu *vcpu = kzalloc(sizeof(struct kvm_vcpu), GFP_KERNEL);
254
255 if (!vcpu) {
256 err = -ENOMEM;
257 goto out;
258 }
259
260 err = kvm_vcpu_init(vcpu, kvm, id);
261
262 if (err)
263 goto out_free_cpu;
264
James Hogan6e95bfd2014-05-29 10:16:43 +0100265 kvm_debug("kvm @ %p: create cpu %d at %p\n", kvm, id, vcpu);
Sanjay Lal669e8462012-11-21 18:34:02 -0800266
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700267 /*
268 * Allocate space for host mode exception handlers that handle
Sanjay Lal669e8462012-11-21 18:34:02 -0800269 * guest mode exits
270 */
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700271 if (cpu_has_veic || cpu_has_vint)
Sanjay Lal669e8462012-11-21 18:34:02 -0800272 size = 0x200 + VECTORSPACING * 64;
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700273 else
James Hogan7006e2d2014-05-29 10:16:23 +0100274 size = 0x4000;
Sanjay Lal669e8462012-11-21 18:34:02 -0800275
Sanjay Lal669e8462012-11-21 18:34:02 -0800276 gebase = kzalloc(ALIGN(size, PAGE_SIZE), GFP_KERNEL);
277
278 if (!gebase) {
279 err = -ENOMEM;
James Hogan585bb8f2015-11-11 14:21:20 +0000280 goto out_uninit_cpu;
Sanjay Lal669e8462012-11-21 18:34:02 -0800281 }
James Hogan6e95bfd2014-05-29 10:16:43 +0100282 kvm_debug("Allocated %d bytes for KVM Exception Handlers @ %p\n",
283 ALIGN(size, PAGE_SIZE), gebase);
Sanjay Lal669e8462012-11-21 18:34:02 -0800284
285 /* Save new ebase */
286 vcpu->arch.guest_ebase = gebase;
287
288 /* Copy L1 Guest Exception handler to correct offset */
289
290 /* TLB Refill, EXL = 0 */
291 memcpy(gebase, mips32_exception,
292 mips32_exceptionEnd - mips32_exception);
293
294 /* General Exception Entry point */
295 memcpy(gebase + 0x180, mips32_exception,
296 mips32_exceptionEnd - mips32_exception);
297
298 /* For vectored interrupts poke the exception code @ all offsets 0-7 */
299 for (i = 0; i < 8; i++) {
300 kvm_debug("L1 Vectored handler @ %p\n",
301 gebase + 0x200 + (i * VECTORSPACING));
302 memcpy(gebase + 0x200 + (i * VECTORSPACING), mips32_exception,
303 mips32_exceptionEnd - mips32_exception);
304 }
305
306 /* General handler, relocate to unmapped space for sanity's sake */
307 offset = 0x2000;
James Hogan6e95bfd2014-05-29 10:16:43 +0100308 kvm_debug("Installing KVM Exception handlers @ %p, %#x bytes\n",
309 gebase + offset,
310 mips32_GuestExceptionEnd - mips32_GuestException);
Sanjay Lal669e8462012-11-21 18:34:02 -0800311
312 memcpy(gebase + offset, mips32_GuestException,
313 mips32_GuestExceptionEnd - mips32_GuestException);
314
James Hogan797179b2016-06-09 10:50:43 +0100315#ifdef MODULE
316 offset += mips32_GuestExceptionEnd - mips32_GuestException;
317 memcpy(gebase + offset, (char *)__kvm_mips_vcpu_run,
318 __kvm_mips_vcpu_run_end - (char *)__kvm_mips_vcpu_run);
319 vcpu->arch.vcpu_run = gebase + offset;
320#else
321 vcpu->arch.vcpu_run = __kvm_mips_vcpu_run;
322#endif
323
Sanjay Lal669e8462012-11-21 18:34:02 -0800324 /* Invalidate the icache for these ranges */
James Hoganfacaaec2014-05-29 10:16:25 +0100325 local_flush_icache_range((unsigned long)gebase,
326 (unsigned long)gebase + ALIGN(size, PAGE_SIZE));
Sanjay Lal669e8462012-11-21 18:34:02 -0800327
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700328 /*
329 * Allocate comm page for guest kernel, a TLB will be reserved for
330 * mapping GVA @ 0xFFFF8000 to this page
331 */
Sanjay Lal669e8462012-11-21 18:34:02 -0800332 vcpu->arch.kseg0_commpage = kzalloc(PAGE_SIZE << 1, GFP_KERNEL);
333
334 if (!vcpu->arch.kseg0_commpage) {
335 err = -ENOMEM;
336 goto out_free_gebase;
337 }
338
James Hogan6e95bfd2014-05-29 10:16:43 +0100339 kvm_debug("Allocated COMM page @ %p\n", vcpu->arch.kseg0_commpage);
Sanjay Lal669e8462012-11-21 18:34:02 -0800340 kvm_mips_commpage_init(vcpu);
341
342 /* Init */
343 vcpu->arch.last_sched_cpu = -1;
344
345 /* Start off the timer */
James Hogane30492b2014-05-29 10:16:35 +0100346 kvm_mips_init_count(vcpu);
Sanjay Lal669e8462012-11-21 18:34:02 -0800347
348 return vcpu;
349
350out_free_gebase:
351 kfree(gebase);
352
James Hogan585bb8f2015-11-11 14:21:20 +0000353out_uninit_cpu:
354 kvm_vcpu_uninit(vcpu);
355
Sanjay Lal669e8462012-11-21 18:34:02 -0800356out_free_cpu:
357 kfree(vcpu);
358
359out:
360 return ERR_PTR(err);
361}
362
363void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
364{
365 hrtimer_cancel(&vcpu->arch.comparecount_timer);
366
367 kvm_vcpu_uninit(vcpu);
368
369 kvm_mips_dump_stats(vcpu);
370
James Hoganc6c0a662014-05-29 10:16:44 +0100371 kfree(vcpu->arch.guest_ebase);
372 kfree(vcpu->arch.kseg0_commpage);
Deng-Cheng Zhu8c9eb042014-06-24 10:31:08 -0700373 kfree(vcpu);
Sanjay Lal669e8462012-11-21 18:34:02 -0800374}
375
376void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
377{
378 kvm_arch_vcpu_free(vcpu);
379}
380
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700381int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
382 struct kvm_guest_debug *dbg)
Sanjay Lal669e8462012-11-21 18:34:02 -0800383{
David Daneyed829852013-05-23 09:49:10 -0700384 return -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -0800385}
386
387int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run)
388{
389 int r = 0;
390 sigset_t sigsaved;
391
392 if (vcpu->sigset_active)
393 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
394
395 if (vcpu->mmio_needed) {
396 if (!vcpu->mmio_is_write)
397 kvm_mips_complete_mmio_load(vcpu, run);
398 vcpu->mmio_needed = 0;
399 }
400
James Hoganf7982172015-02-04 17:06:37 +0000401 lose_fpu(1);
402
James Hogan044f0f02014-05-29 10:16:32 +0100403 local_irq_disable();
Sanjay Lal669e8462012-11-21 18:34:02 -0800404 /* Check if we have any exceptions/interrupts pending */
405 kvm_mips_deliver_interrupts(vcpu,
406 kvm_read_c0_guest_cause(vcpu->arch.cop0));
407
Christian Borntraegerccf73aaf2015-04-30 13:43:31 +0200408 __kvm_guest_enter();
Sanjay Lal669e8462012-11-21 18:34:02 -0800409
James Hoganc4c6f2c2015-02-04 10:52:03 +0000410 /* Disable hardware page table walking while in guest */
411 htw_stop();
412
James Hogan93258602016-06-14 09:40:14 +0100413 trace_kvm_enter(vcpu);
James Hogan797179b2016-06-09 10:50:43 +0100414 r = vcpu->arch.vcpu_run(run, vcpu);
James Hogan93258602016-06-14 09:40:14 +0100415 trace_kvm_out(vcpu);
Sanjay Lal669e8462012-11-21 18:34:02 -0800416
James Hoganc4c6f2c2015-02-04 10:52:03 +0000417 /* Re-enable HTW before enabling interrupts */
418 htw_start();
419
Christian Borntraegerccf73aaf2015-04-30 13:43:31 +0200420 __kvm_guest_exit();
Sanjay Lal669e8462012-11-21 18:34:02 -0800421 local_irq_enable();
422
423 if (vcpu->sigset_active)
424 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
425
426 return r;
427}
428
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700429int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
430 struct kvm_mips_interrupt *irq)
Sanjay Lal669e8462012-11-21 18:34:02 -0800431{
432 int intr = (int)irq->irq;
433 struct kvm_vcpu *dvcpu = NULL;
434
435 if (intr == 3 || intr == -3 || intr == 4 || intr == -4)
436 kvm_debug("%s: CPU: %d, INTR: %d\n", __func__, irq->cpu,
437 (int)intr);
438
439 if (irq->cpu == -1)
440 dvcpu = vcpu;
441 else
442 dvcpu = vcpu->kvm->vcpus[irq->cpu];
443
444 if (intr == 2 || intr == 3 || intr == 4) {
445 kvm_mips_callbacks->queue_io_int(dvcpu, irq);
446
447 } else if (intr == -2 || intr == -3 || intr == -4) {
448 kvm_mips_callbacks->dequeue_io_int(dvcpu, irq);
449 } else {
450 kvm_err("%s: invalid interrupt ioctl (%d:%d)\n", __func__,
451 irq->cpu, irq->irq);
452 return -EINVAL;
453 }
454
455 dvcpu->arch.wait = 0;
456
Marcelo Tosatti85773702016-02-19 09:46:39 +0100457 if (swait_active(&dvcpu->wq))
458 swake_up(&dvcpu->wq);
Sanjay Lal669e8462012-11-21 18:34:02 -0800459
460 return 0;
461}
462
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700463int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
464 struct kvm_mp_state *mp_state)
Sanjay Lal669e8462012-11-21 18:34:02 -0800465{
David Daneyed829852013-05-23 09:49:10 -0700466 return -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -0800467}
468
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700469int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
470 struct kvm_mp_state *mp_state)
Sanjay Lal669e8462012-11-21 18:34:02 -0800471{
David Daneyed829852013-05-23 09:49:10 -0700472 return -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -0800473}
474
David Daney4c73fb22013-05-23 09:49:09 -0700475static u64 kvm_mips_get_one_regs[] = {
476 KVM_REG_MIPS_R0,
477 KVM_REG_MIPS_R1,
478 KVM_REG_MIPS_R2,
479 KVM_REG_MIPS_R3,
480 KVM_REG_MIPS_R4,
481 KVM_REG_MIPS_R5,
482 KVM_REG_MIPS_R6,
483 KVM_REG_MIPS_R7,
484 KVM_REG_MIPS_R8,
485 KVM_REG_MIPS_R9,
486 KVM_REG_MIPS_R10,
487 KVM_REG_MIPS_R11,
488 KVM_REG_MIPS_R12,
489 KVM_REG_MIPS_R13,
490 KVM_REG_MIPS_R14,
491 KVM_REG_MIPS_R15,
492 KVM_REG_MIPS_R16,
493 KVM_REG_MIPS_R17,
494 KVM_REG_MIPS_R18,
495 KVM_REG_MIPS_R19,
496 KVM_REG_MIPS_R20,
497 KVM_REG_MIPS_R21,
498 KVM_REG_MIPS_R22,
499 KVM_REG_MIPS_R23,
500 KVM_REG_MIPS_R24,
501 KVM_REG_MIPS_R25,
502 KVM_REG_MIPS_R26,
503 KVM_REG_MIPS_R27,
504 KVM_REG_MIPS_R28,
505 KVM_REG_MIPS_R29,
506 KVM_REG_MIPS_R30,
507 KVM_REG_MIPS_R31,
508
509 KVM_REG_MIPS_HI,
510 KVM_REG_MIPS_LO,
511 KVM_REG_MIPS_PC,
512
513 KVM_REG_MIPS_CP0_INDEX,
514 KVM_REG_MIPS_CP0_CONTEXT,
James Hogan7767b7d2014-05-29 10:16:30 +0100515 KVM_REG_MIPS_CP0_USERLOCAL,
David Daney4c73fb22013-05-23 09:49:09 -0700516 KVM_REG_MIPS_CP0_PAGEMASK,
517 KVM_REG_MIPS_CP0_WIRED,
James Hogan16fd5c12014-05-29 10:16:31 +0100518 KVM_REG_MIPS_CP0_HWRENA,
David Daney4c73fb22013-05-23 09:49:09 -0700519 KVM_REG_MIPS_CP0_BADVADDR,
James Hoganf8be02d2014-05-29 10:16:29 +0100520 KVM_REG_MIPS_CP0_COUNT,
David Daney4c73fb22013-05-23 09:49:09 -0700521 KVM_REG_MIPS_CP0_ENTRYHI,
James Hoganf8be02d2014-05-29 10:16:29 +0100522 KVM_REG_MIPS_CP0_COMPARE,
David Daney4c73fb22013-05-23 09:49:09 -0700523 KVM_REG_MIPS_CP0_STATUS,
524 KVM_REG_MIPS_CP0_CAUSE,
James Hoganfb6df0c2014-05-29 10:16:27 +0100525 KVM_REG_MIPS_CP0_EPC,
James Hogan1068eaa2014-06-26 13:56:52 +0100526 KVM_REG_MIPS_CP0_PRID,
David Daney4c73fb22013-05-23 09:49:09 -0700527 KVM_REG_MIPS_CP0_CONFIG,
528 KVM_REG_MIPS_CP0_CONFIG1,
529 KVM_REG_MIPS_CP0_CONFIG2,
530 KVM_REG_MIPS_CP0_CONFIG3,
James Hoganc7716072014-06-26 15:11:29 +0100531 KVM_REG_MIPS_CP0_CONFIG4,
532 KVM_REG_MIPS_CP0_CONFIG5,
David Daney4c73fb22013-05-23 09:49:09 -0700533 KVM_REG_MIPS_CP0_CONFIG7,
James Hoganf8239342014-05-29 10:16:37 +0100534 KVM_REG_MIPS_CP0_ERROREPC,
535
536 KVM_REG_MIPS_COUNT_CTL,
537 KVM_REG_MIPS_COUNT_RESUME,
James Hoganf74a8e22014-05-29 10:16:38 +0100538 KVM_REG_MIPS_COUNT_HZ,
David Daney4c73fb22013-05-23 09:49:09 -0700539};
540
James Hoganf5c43bd2016-06-15 19:29:49 +0100541static unsigned long kvm_mips_num_regs(struct kvm_vcpu *vcpu)
542{
543 unsigned long ret;
544
545 ret = ARRAY_SIZE(kvm_mips_get_one_regs);
546 ret += kvm_mips_callbacks->num_regs(vcpu);
547
548 return ret;
549}
550
551static int kvm_mips_copy_reg_indices(struct kvm_vcpu *vcpu, u64 __user *indices)
552{
553 if (copy_to_user(indices, kvm_mips_get_one_regs,
554 sizeof(kvm_mips_get_one_regs)))
555 return -EFAULT;
556 indices += ARRAY_SIZE(kvm_mips_get_one_regs);
557
558 return kvm_mips_callbacks->copy_reg_indices(vcpu, indices);
559}
560
David Daney4c73fb22013-05-23 09:49:09 -0700561static int kvm_mips_get_reg(struct kvm_vcpu *vcpu,
562 const struct kvm_one_reg *reg)
563{
David Daney4c73fb22013-05-23 09:49:09 -0700564 struct mips_coproc *cop0 = vcpu->arch.cop0;
James Hogan379245c2014-12-02 15:48:24 +0000565 struct mips_fpu_struct *fpu = &vcpu->arch.fpu;
James Hoganf8be02d2014-05-29 10:16:29 +0100566 int ret;
David Daney4c73fb22013-05-23 09:49:09 -0700567 s64 v;
James Hoganab86bd62014-12-02 15:48:24 +0000568 s64 vs[2];
James Hogan379245c2014-12-02 15:48:24 +0000569 unsigned int idx;
David Daney4c73fb22013-05-23 09:49:09 -0700570
571 switch (reg->id) {
James Hogan379245c2014-12-02 15:48:24 +0000572 /* General purpose registers */
David Daney4c73fb22013-05-23 09:49:09 -0700573 case KVM_REG_MIPS_R0 ... KVM_REG_MIPS_R31:
574 v = (long)vcpu->arch.gprs[reg->id - KVM_REG_MIPS_R0];
575 break;
576 case KVM_REG_MIPS_HI:
577 v = (long)vcpu->arch.hi;
578 break;
579 case KVM_REG_MIPS_LO:
580 v = (long)vcpu->arch.lo;
581 break;
582 case KVM_REG_MIPS_PC:
583 v = (long)vcpu->arch.pc;
584 break;
585
James Hogan379245c2014-12-02 15:48:24 +0000586 /* Floating point registers */
587 case KVM_REG_MIPS_FPR_32(0) ... KVM_REG_MIPS_FPR_32(31):
588 if (!kvm_mips_guest_has_fpu(&vcpu->arch))
589 return -EINVAL;
590 idx = reg->id - KVM_REG_MIPS_FPR_32(0);
591 /* Odd singles in top of even double when FR=0 */
592 if (kvm_read_c0_guest_status(cop0) & ST0_FR)
593 v = get_fpr32(&fpu->fpr[idx], 0);
594 else
595 v = get_fpr32(&fpu->fpr[idx & ~1], idx & 1);
596 break;
597 case KVM_REG_MIPS_FPR_64(0) ... KVM_REG_MIPS_FPR_64(31):
598 if (!kvm_mips_guest_has_fpu(&vcpu->arch))
599 return -EINVAL;
600 idx = reg->id - KVM_REG_MIPS_FPR_64(0);
601 /* Can't access odd doubles in FR=0 mode */
602 if (idx & 1 && !(kvm_read_c0_guest_status(cop0) & ST0_FR))
603 return -EINVAL;
604 v = get_fpr64(&fpu->fpr[idx], 0);
605 break;
606 case KVM_REG_MIPS_FCR_IR:
607 if (!kvm_mips_guest_has_fpu(&vcpu->arch))
608 return -EINVAL;
609 v = boot_cpu_data.fpu_id;
610 break;
611 case KVM_REG_MIPS_FCR_CSR:
612 if (!kvm_mips_guest_has_fpu(&vcpu->arch))
613 return -EINVAL;
614 v = fpu->fcr31;
615 break;
616
James Hoganab86bd62014-12-02 15:48:24 +0000617 /* MIPS SIMD Architecture (MSA) registers */
618 case KVM_REG_MIPS_VEC_128(0) ... KVM_REG_MIPS_VEC_128(31):
619 if (!kvm_mips_guest_has_msa(&vcpu->arch))
620 return -EINVAL;
621 /* Can't access MSA registers in FR=0 mode */
622 if (!(kvm_read_c0_guest_status(cop0) & ST0_FR))
623 return -EINVAL;
624 idx = reg->id - KVM_REG_MIPS_VEC_128(0);
625#ifdef CONFIG_CPU_LITTLE_ENDIAN
626 /* least significant byte first */
627 vs[0] = get_fpr64(&fpu->fpr[idx], 0);
628 vs[1] = get_fpr64(&fpu->fpr[idx], 1);
629#else
630 /* most significant byte first */
631 vs[0] = get_fpr64(&fpu->fpr[idx], 1);
632 vs[1] = get_fpr64(&fpu->fpr[idx], 0);
633#endif
634 break;
635 case KVM_REG_MIPS_MSA_IR:
636 if (!kvm_mips_guest_has_msa(&vcpu->arch))
637 return -EINVAL;
638 v = boot_cpu_data.msa_id;
639 break;
640 case KVM_REG_MIPS_MSA_CSR:
641 if (!kvm_mips_guest_has_msa(&vcpu->arch))
642 return -EINVAL;
643 v = fpu->msacsr;
644 break;
645
James Hogan379245c2014-12-02 15:48:24 +0000646 /* Co-processor 0 registers */
David Daney4c73fb22013-05-23 09:49:09 -0700647 case KVM_REG_MIPS_CP0_INDEX:
648 v = (long)kvm_read_c0_guest_index(cop0);
649 break;
650 case KVM_REG_MIPS_CP0_CONTEXT:
651 v = (long)kvm_read_c0_guest_context(cop0);
652 break;
James Hogan7767b7d2014-05-29 10:16:30 +0100653 case KVM_REG_MIPS_CP0_USERLOCAL:
654 v = (long)kvm_read_c0_guest_userlocal(cop0);
655 break;
David Daney4c73fb22013-05-23 09:49:09 -0700656 case KVM_REG_MIPS_CP0_PAGEMASK:
657 v = (long)kvm_read_c0_guest_pagemask(cop0);
658 break;
659 case KVM_REG_MIPS_CP0_WIRED:
660 v = (long)kvm_read_c0_guest_wired(cop0);
661 break;
James Hogan16fd5c12014-05-29 10:16:31 +0100662 case KVM_REG_MIPS_CP0_HWRENA:
663 v = (long)kvm_read_c0_guest_hwrena(cop0);
664 break;
David Daney4c73fb22013-05-23 09:49:09 -0700665 case KVM_REG_MIPS_CP0_BADVADDR:
666 v = (long)kvm_read_c0_guest_badvaddr(cop0);
667 break;
668 case KVM_REG_MIPS_CP0_ENTRYHI:
669 v = (long)kvm_read_c0_guest_entryhi(cop0);
670 break;
James Hoganf8be02d2014-05-29 10:16:29 +0100671 case KVM_REG_MIPS_CP0_COMPARE:
672 v = (long)kvm_read_c0_guest_compare(cop0);
673 break;
David Daney4c73fb22013-05-23 09:49:09 -0700674 case KVM_REG_MIPS_CP0_STATUS:
675 v = (long)kvm_read_c0_guest_status(cop0);
676 break;
677 case KVM_REG_MIPS_CP0_CAUSE:
678 v = (long)kvm_read_c0_guest_cause(cop0);
679 break;
James Hoganfb6df0c2014-05-29 10:16:27 +0100680 case KVM_REG_MIPS_CP0_EPC:
681 v = (long)kvm_read_c0_guest_epc(cop0);
682 break;
James Hogan1068eaa2014-06-26 13:56:52 +0100683 case KVM_REG_MIPS_CP0_PRID:
684 v = (long)kvm_read_c0_guest_prid(cop0);
685 break;
David Daney4c73fb22013-05-23 09:49:09 -0700686 case KVM_REG_MIPS_CP0_CONFIG:
687 v = (long)kvm_read_c0_guest_config(cop0);
688 break;
689 case KVM_REG_MIPS_CP0_CONFIG1:
690 v = (long)kvm_read_c0_guest_config1(cop0);
691 break;
692 case KVM_REG_MIPS_CP0_CONFIG2:
693 v = (long)kvm_read_c0_guest_config2(cop0);
694 break;
695 case KVM_REG_MIPS_CP0_CONFIG3:
696 v = (long)kvm_read_c0_guest_config3(cop0);
697 break;
James Hoganc7716072014-06-26 15:11:29 +0100698 case KVM_REG_MIPS_CP0_CONFIG4:
699 v = (long)kvm_read_c0_guest_config4(cop0);
700 break;
701 case KVM_REG_MIPS_CP0_CONFIG5:
702 v = (long)kvm_read_c0_guest_config5(cop0);
703 break;
David Daney4c73fb22013-05-23 09:49:09 -0700704 case KVM_REG_MIPS_CP0_CONFIG7:
705 v = (long)kvm_read_c0_guest_config7(cop0);
706 break;
James Hogane93d4c12014-06-26 13:47:22 +0100707 case KVM_REG_MIPS_CP0_ERROREPC:
708 v = (long)kvm_read_c0_guest_errorepc(cop0);
709 break;
James Hoganf8be02d2014-05-29 10:16:29 +0100710 /* registers to be handled specially */
James Hogancc68d222016-06-15 19:29:48 +0100711 default:
James Hoganf8be02d2014-05-29 10:16:29 +0100712 ret = kvm_mips_callbacks->get_one_reg(vcpu, reg, &v);
713 if (ret)
714 return ret;
715 break;
David Daney4c73fb22013-05-23 09:49:09 -0700716 }
David Daney681865d2013-06-10 12:33:48 -0700717 if ((reg->id & KVM_REG_SIZE_MASK) == KVM_REG_SIZE_U64) {
718 u64 __user *uaddr64 = (u64 __user *)(long)reg->addr;
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700719
David Daney681865d2013-06-10 12:33:48 -0700720 return put_user(v, uaddr64);
721 } else if ((reg->id & KVM_REG_SIZE_MASK) == KVM_REG_SIZE_U32) {
722 u32 __user *uaddr32 = (u32 __user *)(long)reg->addr;
723 u32 v32 = (u32)v;
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700724
David Daney681865d2013-06-10 12:33:48 -0700725 return put_user(v32, uaddr32);
James Hoganab86bd62014-12-02 15:48:24 +0000726 } else if ((reg->id & KVM_REG_SIZE_MASK) == KVM_REG_SIZE_U128) {
727 void __user *uaddr = (void __user *)(long)reg->addr;
728
Michael S. Tsirkin0178fd72016-02-28 17:35:59 +0200729 return copy_to_user(uaddr, vs, 16) ? -EFAULT : 0;
David Daney681865d2013-06-10 12:33:48 -0700730 } else {
731 return -EINVAL;
732 }
David Daney4c73fb22013-05-23 09:49:09 -0700733}
734
735static int kvm_mips_set_reg(struct kvm_vcpu *vcpu,
736 const struct kvm_one_reg *reg)
737{
David Daney4c73fb22013-05-23 09:49:09 -0700738 struct mips_coproc *cop0 = vcpu->arch.cop0;
James Hogan379245c2014-12-02 15:48:24 +0000739 struct mips_fpu_struct *fpu = &vcpu->arch.fpu;
740 s64 v;
James Hoganab86bd62014-12-02 15:48:24 +0000741 s64 vs[2];
James Hogan379245c2014-12-02 15:48:24 +0000742 unsigned int idx;
David Daney4c73fb22013-05-23 09:49:09 -0700743
David Daney681865d2013-06-10 12:33:48 -0700744 if ((reg->id & KVM_REG_SIZE_MASK) == KVM_REG_SIZE_U64) {
745 u64 __user *uaddr64 = (u64 __user *)(long)reg->addr;
746
747 if (get_user(v, uaddr64) != 0)
748 return -EFAULT;
749 } else if ((reg->id & KVM_REG_SIZE_MASK) == KVM_REG_SIZE_U32) {
750 u32 __user *uaddr32 = (u32 __user *)(long)reg->addr;
751 s32 v32;
752
753 if (get_user(v32, uaddr32) != 0)
754 return -EFAULT;
755 v = (s64)v32;
James Hoganab86bd62014-12-02 15:48:24 +0000756 } else if ((reg->id & KVM_REG_SIZE_MASK) == KVM_REG_SIZE_U128) {
757 void __user *uaddr = (void __user *)(long)reg->addr;
758
Michael S. Tsirkin0178fd72016-02-28 17:35:59 +0200759 return copy_from_user(vs, uaddr, 16) ? -EFAULT : 0;
David Daney681865d2013-06-10 12:33:48 -0700760 } else {
761 return -EINVAL;
762 }
David Daney4c73fb22013-05-23 09:49:09 -0700763
764 switch (reg->id) {
James Hogan379245c2014-12-02 15:48:24 +0000765 /* General purpose registers */
David Daney4c73fb22013-05-23 09:49:09 -0700766 case KVM_REG_MIPS_R0:
767 /* Silently ignore requests to set $0 */
768 break;
769 case KVM_REG_MIPS_R1 ... KVM_REG_MIPS_R31:
770 vcpu->arch.gprs[reg->id - KVM_REG_MIPS_R0] = v;
771 break;
772 case KVM_REG_MIPS_HI:
773 vcpu->arch.hi = v;
774 break;
775 case KVM_REG_MIPS_LO:
776 vcpu->arch.lo = v;
777 break;
778 case KVM_REG_MIPS_PC:
779 vcpu->arch.pc = v;
780 break;
781
James Hogan379245c2014-12-02 15:48:24 +0000782 /* Floating point registers */
783 case KVM_REG_MIPS_FPR_32(0) ... KVM_REG_MIPS_FPR_32(31):
784 if (!kvm_mips_guest_has_fpu(&vcpu->arch))
785 return -EINVAL;
786 idx = reg->id - KVM_REG_MIPS_FPR_32(0);
787 /* Odd singles in top of even double when FR=0 */
788 if (kvm_read_c0_guest_status(cop0) & ST0_FR)
789 set_fpr32(&fpu->fpr[idx], 0, v);
790 else
791 set_fpr32(&fpu->fpr[idx & ~1], idx & 1, v);
792 break;
793 case KVM_REG_MIPS_FPR_64(0) ... KVM_REG_MIPS_FPR_64(31):
794 if (!kvm_mips_guest_has_fpu(&vcpu->arch))
795 return -EINVAL;
796 idx = reg->id - KVM_REG_MIPS_FPR_64(0);
797 /* Can't access odd doubles in FR=0 mode */
798 if (idx & 1 && !(kvm_read_c0_guest_status(cop0) & ST0_FR))
799 return -EINVAL;
800 set_fpr64(&fpu->fpr[idx], 0, v);
801 break;
802 case KVM_REG_MIPS_FCR_IR:
803 if (!kvm_mips_guest_has_fpu(&vcpu->arch))
804 return -EINVAL;
805 /* Read-only */
806 break;
807 case KVM_REG_MIPS_FCR_CSR:
808 if (!kvm_mips_guest_has_fpu(&vcpu->arch))
809 return -EINVAL;
810 fpu->fcr31 = v;
811 break;
812
James Hoganab86bd62014-12-02 15:48:24 +0000813 /* MIPS SIMD Architecture (MSA) registers */
814 case KVM_REG_MIPS_VEC_128(0) ... KVM_REG_MIPS_VEC_128(31):
815 if (!kvm_mips_guest_has_msa(&vcpu->arch))
816 return -EINVAL;
817 idx = reg->id - KVM_REG_MIPS_VEC_128(0);
818#ifdef CONFIG_CPU_LITTLE_ENDIAN
819 /* least significant byte first */
820 set_fpr64(&fpu->fpr[idx], 0, vs[0]);
821 set_fpr64(&fpu->fpr[idx], 1, vs[1]);
822#else
823 /* most significant byte first */
824 set_fpr64(&fpu->fpr[idx], 1, vs[0]);
825 set_fpr64(&fpu->fpr[idx], 0, vs[1]);
826#endif
827 break;
828 case KVM_REG_MIPS_MSA_IR:
829 if (!kvm_mips_guest_has_msa(&vcpu->arch))
830 return -EINVAL;
831 /* Read-only */
832 break;
833 case KVM_REG_MIPS_MSA_CSR:
834 if (!kvm_mips_guest_has_msa(&vcpu->arch))
835 return -EINVAL;
836 fpu->msacsr = v;
837 break;
838
James Hogan379245c2014-12-02 15:48:24 +0000839 /* Co-processor 0 registers */
David Daney4c73fb22013-05-23 09:49:09 -0700840 case KVM_REG_MIPS_CP0_INDEX:
841 kvm_write_c0_guest_index(cop0, v);
842 break;
843 case KVM_REG_MIPS_CP0_CONTEXT:
844 kvm_write_c0_guest_context(cop0, v);
845 break;
James Hogan7767b7d2014-05-29 10:16:30 +0100846 case KVM_REG_MIPS_CP0_USERLOCAL:
847 kvm_write_c0_guest_userlocal(cop0, v);
848 break;
David Daney4c73fb22013-05-23 09:49:09 -0700849 case KVM_REG_MIPS_CP0_PAGEMASK:
850 kvm_write_c0_guest_pagemask(cop0, v);
851 break;
852 case KVM_REG_MIPS_CP0_WIRED:
853 kvm_write_c0_guest_wired(cop0, v);
854 break;
James Hogan16fd5c12014-05-29 10:16:31 +0100855 case KVM_REG_MIPS_CP0_HWRENA:
856 kvm_write_c0_guest_hwrena(cop0, v);
857 break;
David Daney4c73fb22013-05-23 09:49:09 -0700858 case KVM_REG_MIPS_CP0_BADVADDR:
859 kvm_write_c0_guest_badvaddr(cop0, v);
860 break;
861 case KVM_REG_MIPS_CP0_ENTRYHI:
862 kvm_write_c0_guest_entryhi(cop0, v);
863 break;
864 case KVM_REG_MIPS_CP0_STATUS:
865 kvm_write_c0_guest_status(cop0, v);
866 break;
James Hoganfb6df0c2014-05-29 10:16:27 +0100867 case KVM_REG_MIPS_CP0_EPC:
868 kvm_write_c0_guest_epc(cop0, v);
869 break;
James Hogan1068eaa2014-06-26 13:56:52 +0100870 case KVM_REG_MIPS_CP0_PRID:
871 kvm_write_c0_guest_prid(cop0, v);
872 break;
David Daney4c73fb22013-05-23 09:49:09 -0700873 case KVM_REG_MIPS_CP0_ERROREPC:
874 kvm_write_c0_guest_errorepc(cop0, v);
875 break;
James Hoganf8be02d2014-05-29 10:16:29 +0100876 /* registers to be handled specially */
David Daney4c73fb22013-05-23 09:49:09 -0700877 default:
James Hogancc68d222016-06-15 19:29:48 +0100878 return kvm_mips_callbacks->set_one_reg(vcpu, reg, v);
David Daney4c73fb22013-05-23 09:49:09 -0700879 }
880 return 0;
881}
882
James Hogan5fafd8742014-12-08 23:07:56 +0000883static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
884 struct kvm_enable_cap *cap)
885{
886 int r = 0;
887
888 if (!kvm_vm_ioctl_check_extension(vcpu->kvm, cap->cap))
889 return -EINVAL;
890 if (cap->flags)
891 return -EINVAL;
892 if (cap->args[0])
893 return -EINVAL;
894
895 switch (cap->cap) {
896 case KVM_CAP_MIPS_FPU:
897 vcpu->arch.fpu_enabled = true;
898 break;
James Hogand952bd02014-12-08 23:07:56 +0000899 case KVM_CAP_MIPS_MSA:
900 vcpu->arch.msa_enabled = true;
901 break;
James Hogan5fafd8742014-12-08 23:07:56 +0000902 default:
903 r = -EINVAL;
904 break;
905 }
906
907 return r;
908}
909
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700910long kvm_arch_vcpu_ioctl(struct file *filp, unsigned int ioctl,
911 unsigned long arg)
Sanjay Lal669e8462012-11-21 18:34:02 -0800912{
913 struct kvm_vcpu *vcpu = filp->private_data;
914 void __user *argp = (void __user *)arg;
915 long r;
Sanjay Lal669e8462012-11-21 18:34:02 -0800916
917 switch (ioctl) {
David Daney4c73fb22013-05-23 09:49:09 -0700918 case KVM_SET_ONE_REG:
919 case KVM_GET_ONE_REG: {
920 struct kvm_one_reg reg;
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700921
David Daney4c73fb22013-05-23 09:49:09 -0700922 if (copy_from_user(&reg, argp, sizeof(reg)))
923 return -EFAULT;
924 if (ioctl == KVM_SET_ONE_REG)
925 return kvm_mips_set_reg(vcpu, &reg);
926 else
927 return kvm_mips_get_reg(vcpu, &reg);
928 }
929 case KVM_GET_REG_LIST: {
930 struct kvm_reg_list __user *user_list = argp;
David Daney4c73fb22013-05-23 09:49:09 -0700931 struct kvm_reg_list reg_list;
932 unsigned n;
933
934 if (copy_from_user(&reg_list, user_list, sizeof(reg_list)))
935 return -EFAULT;
936 n = reg_list.n;
James Hoganf5c43bd2016-06-15 19:29:49 +0100937 reg_list.n = kvm_mips_num_regs(vcpu);
David Daney4c73fb22013-05-23 09:49:09 -0700938 if (copy_to_user(user_list, &reg_list, sizeof(reg_list)))
939 return -EFAULT;
940 if (n < reg_list.n)
941 return -E2BIG;
James Hoganf5c43bd2016-06-15 19:29:49 +0100942 return kvm_mips_copy_reg_indices(vcpu, user_list->reg);
David Daney4c73fb22013-05-23 09:49:09 -0700943 }
Sanjay Lal669e8462012-11-21 18:34:02 -0800944 case KVM_NMI:
945 /* Treat the NMI as a CPU reset */
946 r = kvm_mips_reset_vcpu(vcpu);
947 break;
948 case KVM_INTERRUPT:
949 {
950 struct kvm_mips_interrupt irq;
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700951
Sanjay Lal669e8462012-11-21 18:34:02 -0800952 r = -EFAULT;
953 if (copy_from_user(&irq, argp, sizeof(irq)))
954 goto out;
955
Sanjay Lal669e8462012-11-21 18:34:02 -0800956 kvm_debug("[%d] %s: irq: %d\n", vcpu->vcpu_id, __func__,
957 irq.irq);
958
959 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
960 break;
961 }
James Hogan5fafd8742014-12-08 23:07:56 +0000962 case KVM_ENABLE_CAP: {
963 struct kvm_enable_cap cap;
964
965 r = -EFAULT;
966 if (copy_from_user(&cap, argp, sizeof(cap)))
967 goto out;
968 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
969 break;
970 }
Sanjay Lal669e8462012-11-21 18:34:02 -0800971 default:
David Daney4c73fb22013-05-23 09:49:09 -0700972 r = -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -0800973 }
974
975out:
976 return r;
977}
978
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700979/* Get (and clear) the dirty memory log for a memory slot. */
Sanjay Lal669e8462012-11-21 18:34:02 -0800980int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
981{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +0200982 struct kvm_memslots *slots;
Sanjay Lal669e8462012-11-21 18:34:02 -0800983 struct kvm_memory_slot *memslot;
984 unsigned long ga, ga_end;
985 int is_dirty = 0;
986 int r;
987 unsigned long n;
988
989 mutex_lock(&kvm->slots_lock);
990
991 r = kvm_get_dirty_log(kvm, log, &is_dirty);
992 if (r)
993 goto out;
994
995 /* If nothing is dirty, don't bother messing with page tables. */
996 if (is_dirty) {
Paolo Bonzini9f6b8022015-05-17 16:20:07 +0200997 slots = kvm_memslots(kvm);
998 memslot = id_to_memslot(slots, log->slot);
Sanjay Lal669e8462012-11-21 18:34:02 -0800999
1000 ga = memslot->base_gfn << PAGE_SHIFT;
1001 ga_end = ga + (memslot->npages << PAGE_SHIFT);
1002
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001003 kvm_info("%s: dirty, ga: %#lx, ga_end %#lx\n", __func__, ga,
1004 ga_end);
Sanjay Lal669e8462012-11-21 18:34:02 -08001005
1006 n = kvm_dirty_bitmap_bytes(memslot);
1007 memset(memslot->dirty_bitmap, 0, n);
1008 }
1009
1010 r = 0;
1011out:
1012 mutex_unlock(&kvm->slots_lock);
1013 return r;
1014
1015}
1016
1017long kvm_arch_vm_ioctl(struct file *filp, unsigned int ioctl, unsigned long arg)
1018{
1019 long r;
1020
1021 switch (ioctl) {
1022 default:
David Daneyed829852013-05-23 09:49:10 -07001023 r = -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -08001024 }
1025
1026 return r;
1027}
1028
1029int kvm_arch_init(void *opaque)
1030{
Sanjay Lal669e8462012-11-21 18:34:02 -08001031 if (kvm_mips_callbacks) {
1032 kvm_err("kvm: module already exists\n");
1033 return -EEXIST;
1034 }
1035
Deng-Cheng Zhud98403a2014-06-26 12:11:36 -07001036 return kvm_mips_emulation_init(&kvm_mips_callbacks);
Sanjay Lal669e8462012-11-21 18:34:02 -08001037}
1038
1039void kvm_arch_exit(void)
1040{
1041 kvm_mips_callbacks = NULL;
1042}
1043
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001044int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
1045 struct kvm_sregs *sregs)
Sanjay Lal669e8462012-11-21 18:34:02 -08001046{
David Daneyed829852013-05-23 09:49:10 -07001047 return -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -08001048}
1049
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001050int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
1051 struct kvm_sregs *sregs)
Sanjay Lal669e8462012-11-21 18:34:02 -08001052{
David Daneyed829852013-05-23 09:49:10 -07001053 return -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -08001054}
1055
Dominik Dingel31928aa2014-12-04 15:47:07 +01001056void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Sanjay Lal669e8462012-11-21 18:34:02 -08001057{
Sanjay Lal669e8462012-11-21 18:34:02 -08001058}
1059
1060int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
1061{
David Daneyed829852013-05-23 09:49:10 -07001062 return -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -08001063}
1064
1065int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
1066{
David Daneyed829852013-05-23 09:49:10 -07001067 return -ENOIOCTLCMD;
Sanjay Lal669e8462012-11-21 18:34:02 -08001068}
1069
1070int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
1071{
1072 return VM_FAULT_SIGBUS;
1073}
1074
Alexander Graf784aa3d2014-07-14 18:27:35 +02001075int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Sanjay Lal669e8462012-11-21 18:34:02 -08001076{
1077 int r;
1078
1079 switch (ext) {
David Daney4c73fb22013-05-23 09:49:09 -07001080 case KVM_CAP_ONE_REG:
James Hogan5fafd8742014-12-08 23:07:56 +00001081 case KVM_CAP_ENABLE_CAP:
David Daney4c73fb22013-05-23 09:49:09 -07001082 r = 1;
1083 break;
Sanjay Lal669e8462012-11-21 18:34:02 -08001084 case KVM_CAP_COALESCED_MMIO:
1085 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
1086 break;
James Hogan5fafd8742014-12-08 23:07:56 +00001087 case KVM_CAP_MIPS_FPU:
James Hogan556f2a52016-04-22 10:38:48 +01001088 /* We don't handle systems with inconsistent cpu_has_fpu */
1089 r = !!raw_cpu_has_fpu;
James Hogan5fafd8742014-12-08 23:07:56 +00001090 break;
James Hogand952bd02014-12-08 23:07:56 +00001091 case KVM_CAP_MIPS_MSA:
1092 /*
1093 * We don't support MSA vector partitioning yet:
1094 * 1) It would require explicit support which can't be tested
1095 * yet due to lack of support in current hardware.
1096 * 2) It extends the state that would need to be saved/restored
1097 * by e.g. QEMU for migration.
1098 *
1099 * When vector partitioning hardware becomes available, support
1100 * could be added by requiring a flag when enabling
1101 * KVM_CAP_MIPS_MSA capability to indicate that userland knows
1102 * to save/restore the appropriate extra state.
1103 */
1104 r = cpu_has_msa && !(boot_cpu_data.msa_id & MSA_IR_WRPF);
1105 break;
Sanjay Lal669e8462012-11-21 18:34:02 -08001106 default:
1107 r = 0;
1108 break;
1109 }
1110 return r;
Sanjay Lal669e8462012-11-21 18:34:02 -08001111}
1112
1113int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
1114{
1115 return kvm_mips_pending_timer(vcpu);
1116}
1117
1118int kvm_arch_vcpu_dump_regs(struct kvm_vcpu *vcpu)
1119{
1120 int i;
1121 struct mips_coproc *cop0;
1122
1123 if (!vcpu)
1124 return -1;
1125
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001126 kvm_debug("VCPU Register Dump:\n");
1127 kvm_debug("\tpc = 0x%08lx\n", vcpu->arch.pc);
1128 kvm_debug("\texceptions: %08lx\n", vcpu->arch.pending_exceptions);
Sanjay Lal669e8462012-11-21 18:34:02 -08001129
1130 for (i = 0; i < 32; i += 4) {
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001131 kvm_debug("\tgpr%02d: %08lx %08lx %08lx %08lx\n", i,
Sanjay Lal669e8462012-11-21 18:34:02 -08001132 vcpu->arch.gprs[i],
1133 vcpu->arch.gprs[i + 1],
1134 vcpu->arch.gprs[i + 2], vcpu->arch.gprs[i + 3]);
1135 }
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001136 kvm_debug("\thi: 0x%08lx\n", vcpu->arch.hi);
1137 kvm_debug("\tlo: 0x%08lx\n", vcpu->arch.lo);
Sanjay Lal669e8462012-11-21 18:34:02 -08001138
1139 cop0 = vcpu->arch.cop0;
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001140 kvm_debug("\tStatus: 0x%08lx, Cause: 0x%08lx\n",
1141 kvm_read_c0_guest_status(cop0),
1142 kvm_read_c0_guest_cause(cop0));
Sanjay Lal669e8462012-11-21 18:34:02 -08001143
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001144 kvm_debug("\tEPC: 0x%08lx\n", kvm_read_c0_guest_epc(cop0));
Sanjay Lal669e8462012-11-21 18:34:02 -08001145
1146 return 0;
1147}
1148
1149int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
1150{
1151 int i;
1152
David Daney8d17dd02013-05-23 09:49:08 -07001153 for (i = 1; i < ARRAY_SIZE(vcpu->arch.gprs); i++)
David Daneybf32ebf2013-05-23 09:49:07 -07001154 vcpu->arch.gprs[i] = regs->gpr[i];
David Daney8d17dd02013-05-23 09:49:08 -07001155 vcpu->arch.gprs[0] = 0; /* zero is special, and cannot be set. */
Sanjay Lal669e8462012-11-21 18:34:02 -08001156 vcpu->arch.hi = regs->hi;
1157 vcpu->arch.lo = regs->lo;
1158 vcpu->arch.pc = regs->pc;
1159
David Daney4c73fb22013-05-23 09:49:09 -07001160 return 0;
Sanjay Lal669e8462012-11-21 18:34:02 -08001161}
1162
1163int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
1164{
1165 int i;
1166
David Daney8d17dd02013-05-23 09:49:08 -07001167 for (i = 0; i < ARRAY_SIZE(vcpu->arch.gprs); i++)
David Daneybf32ebf2013-05-23 09:49:07 -07001168 regs->gpr[i] = vcpu->arch.gprs[i];
Sanjay Lal669e8462012-11-21 18:34:02 -08001169
1170 regs->hi = vcpu->arch.hi;
1171 regs->lo = vcpu->arch.lo;
1172 regs->pc = vcpu->arch.pc;
1173
David Daney4c73fb22013-05-23 09:49:09 -07001174 return 0;
Sanjay Lal669e8462012-11-21 18:34:02 -08001175}
1176
James Hogan0fae34f2014-05-29 10:16:39 +01001177static void kvm_mips_comparecount_func(unsigned long data)
Sanjay Lal669e8462012-11-21 18:34:02 -08001178{
1179 struct kvm_vcpu *vcpu = (struct kvm_vcpu *)data;
1180
1181 kvm_mips_callbacks->queue_timer_int(vcpu);
1182
1183 vcpu->arch.wait = 0;
Marcelo Tosatti85773702016-02-19 09:46:39 +01001184 if (swait_active(&vcpu->wq))
1185 swake_up(&vcpu->wq);
Sanjay Lal669e8462012-11-21 18:34:02 -08001186}
1187
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001188/* low level hrtimer wake routine */
James Hogan0fae34f2014-05-29 10:16:39 +01001189static enum hrtimer_restart kvm_mips_comparecount_wakeup(struct hrtimer *timer)
Sanjay Lal669e8462012-11-21 18:34:02 -08001190{
1191 struct kvm_vcpu *vcpu;
1192
1193 vcpu = container_of(timer, struct kvm_vcpu, arch.comparecount_timer);
1194 kvm_mips_comparecount_func((unsigned long) vcpu);
James Hogane30492b2014-05-29 10:16:35 +01001195 return kvm_mips_count_timeout(vcpu);
Sanjay Lal669e8462012-11-21 18:34:02 -08001196}
1197
1198int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
1199{
1200 kvm_mips_callbacks->vcpu_init(vcpu);
1201 hrtimer_init(&vcpu->arch.comparecount_timer, CLOCK_MONOTONIC,
1202 HRTIMER_MODE_REL);
1203 vcpu->arch.comparecount_timer.function = kvm_mips_comparecount_wakeup;
Sanjay Lal669e8462012-11-21 18:34:02 -08001204 return 0;
1205}
1206
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001207int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
1208 struct kvm_translation *tr)
Sanjay Lal669e8462012-11-21 18:34:02 -08001209{
1210 return 0;
1211}
1212
1213/* Initial guest state */
1214int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu)
1215{
1216 return kvm_mips_callbacks->vcpu_setup(vcpu);
1217}
1218
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001219static void kvm_mips_set_c0_status(void)
Sanjay Lal669e8462012-11-21 18:34:02 -08001220{
James Hogan8cffd192016-06-09 14:19:08 +01001221 u32 status = read_c0_status();
Sanjay Lal669e8462012-11-21 18:34:02 -08001222
Sanjay Lal669e8462012-11-21 18:34:02 -08001223 if (cpu_has_dsp)
1224 status |= (ST0_MX);
1225
1226 write_c0_status(status);
1227 ehb();
1228}
1229
1230/*
1231 * Return value is in the form (errcode<<2 | RESUME_FLAG_HOST | RESUME_FLAG_NV)
1232 */
1233int kvm_mips_handle_exit(struct kvm_run *run, struct kvm_vcpu *vcpu)
1234{
James Hogan8cffd192016-06-09 14:19:08 +01001235 u32 cause = vcpu->arch.host_cp0_cause;
1236 u32 exccode = (cause >> CAUSEB_EXCCODE) & 0x1f;
1237 u32 __user *opc = (u32 __user *) vcpu->arch.pc;
Sanjay Lal669e8462012-11-21 18:34:02 -08001238 unsigned long badvaddr = vcpu->arch.host_cp0_badvaddr;
1239 enum emulation_result er = EMULATE_DONE;
1240 int ret = RESUME_GUEST;
1241
James Hoganc4c6f2c2015-02-04 10:52:03 +00001242 /* re-enable HTW before enabling interrupts */
1243 htw_start();
1244
Sanjay Lal669e8462012-11-21 18:34:02 -08001245 /* Set a default exit reason */
1246 run->exit_reason = KVM_EXIT_UNKNOWN;
1247 run->ready_for_interrupt_injection = 1;
1248
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001249 /*
1250 * Set the appropriate status bits based on host CPU features,
1251 * before we hit the scheduler
1252 */
Sanjay Lal669e8462012-11-21 18:34:02 -08001253 kvm_mips_set_c0_status();
1254
1255 local_irq_enable();
1256
1257 kvm_debug("kvm_mips_handle_exit: cause: %#x, PC: %p, kvm_run: %p, kvm_vcpu: %p\n",
1258 cause, opc, run, vcpu);
James Hogan1e09e862016-06-14 09:40:12 +01001259 trace_kvm_exit(vcpu, exccode);
Sanjay Lal669e8462012-11-21 18:34:02 -08001260
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001261 /*
1262 * Do a privilege check, if in UM most of these exit conditions end up
Sanjay Lal669e8462012-11-21 18:34:02 -08001263 * causing an exception to be delivered to the Guest Kernel
1264 */
1265 er = kvm_mips_check_privilege(cause, opc, run, vcpu);
1266 if (er == EMULATE_PRIV_FAIL) {
1267 goto skip_emul;
1268 } else if (er == EMULATE_FAIL) {
1269 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1270 ret = RESUME_HOST;
1271 goto skip_emul;
1272 }
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:
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001302 kvm_debug("TLB ST fault: cause %#x, status %#lx, PC: %p, BadVaddr: %#lx\n",
1303 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
Sanjay Lal669e8462012-11-21 18:34:02 -08001363 default:
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001364 kvm_err("Exception Code: %d, not yet handled, @ PC: %p, inst: 0x%08x BadVaddr: %#lx Status: %#lx\n",
1365 exccode, opc, kvm_get_inst(opc, vcpu), badvaddr,
1366 kvm_read_c0_guest_status(vcpu->arch.cop0));
Sanjay Lal669e8462012-11-21 18:34:02 -08001367 kvm_arch_vcpu_dump_regs(vcpu);
1368 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1369 ret = RESUME_HOST;
1370 break;
1371
1372 }
1373
1374skip_emul:
1375 local_irq_disable();
1376
1377 if (er == EMULATE_DONE && !(ret & RESUME_HOST))
1378 kvm_mips_deliver_interrupts(vcpu, cause);
1379
1380 if (!(ret & RESUME_HOST)) {
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001381 /* Only check for signals if not already exiting to userspace */
Sanjay Lal669e8462012-11-21 18:34:02 -08001382 if (signal_pending(current)) {
1383 run->exit_reason = KVM_EXIT_INTR;
1384 ret = (-EINTR << 2) | RESUME_HOST;
1385 ++vcpu->stat.signal_exits;
James Hogan1e09e862016-06-14 09:40:12 +01001386 trace_kvm_exit(vcpu, KVM_TRACE_EXIT_SIGNAL);
Sanjay Lal669e8462012-11-21 18:34:02 -08001387 }
1388 }
1389
James Hogan98e91b82014-11-18 14:09:12 +00001390 if (ret == RESUME_GUEST) {
James Hogan93258602016-06-14 09:40:14 +01001391 trace_kvm_reenter(vcpu);
1392
James Hogan98e91b82014-11-18 14:09:12 +00001393 /*
James Hogan539cb89fb2015-03-05 11:43:36 +00001394 * If FPU / MSA are enabled (i.e. the guest's FPU / MSA context
1395 * is live), restore FCR31 / MSACSR.
James Hogan98e91b82014-11-18 14:09:12 +00001396 *
1397 * This should be before returning to the guest exception
James Hogan539cb89fb2015-03-05 11:43:36 +00001398 * vector, as it may well cause an [MSA] FP exception if there
1399 * are pending exception bits unmasked. (see
James Hogan98e91b82014-11-18 14:09:12 +00001400 * kvm_mips_csr_die_notifier() for how that is handled).
1401 */
1402 if (kvm_mips_guest_has_fpu(&vcpu->arch) &&
1403 read_c0_status() & ST0_CU1)
1404 __kvm_restore_fcsr(&vcpu->arch);
James Hogan539cb89fb2015-03-05 11:43:36 +00001405
1406 if (kvm_mips_guest_has_msa(&vcpu->arch) &&
1407 read_c0_config5() & MIPS_CONF5_MSAEN)
1408 __kvm_restore_msacsr(&vcpu->arch);
James Hogan98e91b82014-11-18 14:09:12 +00001409 }
1410
James Hoganc4c6f2c2015-02-04 10:52:03 +00001411 /* Disable HTW before returning to guest or host */
1412 htw_stop();
1413
Sanjay Lal669e8462012-11-21 18:34:02 -08001414 return ret;
1415}
1416
James Hogan98e91b82014-11-18 14:09:12 +00001417/* Enable FPU for guest and restore context */
1418void kvm_own_fpu(struct kvm_vcpu *vcpu)
1419{
1420 struct mips_coproc *cop0 = vcpu->arch.cop0;
1421 unsigned int sr, cfg5;
1422
1423 preempt_disable();
1424
James Hogan539cb89fb2015-03-05 11:43:36 +00001425 sr = kvm_read_c0_guest_status(cop0);
1426
1427 /*
1428 * If MSA state is already live, it is undefined how it interacts with
1429 * FR=0 FPU state, and we don't want to hit reserved instruction
1430 * exceptions trying to save the MSA state later when CU=1 && FR=1, so
1431 * play it safe and save it first.
1432 *
1433 * In theory we shouldn't ever hit this case since kvm_lose_fpu() should
1434 * get called when guest CU1 is set, however we can't trust the guest
1435 * not to clobber the status register directly via the commpage.
1436 */
1437 if (cpu_has_msa && sr & ST0_CU1 && !(sr & ST0_FR) &&
James Hoganf9431762016-06-14 09:40:10 +01001438 vcpu->arch.aux_inuse & KVM_MIPS_AUX_MSA)
James Hogan539cb89fb2015-03-05 11:43:36 +00001439 kvm_lose_fpu(vcpu);
1440
James Hogan98e91b82014-11-18 14:09:12 +00001441 /*
1442 * Enable FPU for guest
1443 * We set FR and FRE according to guest context
1444 */
James Hogan98e91b82014-11-18 14:09:12 +00001445 change_c0_status(ST0_CU1 | ST0_FR, sr);
1446 if (cpu_has_fre) {
1447 cfg5 = kvm_read_c0_guest_config5(cop0);
1448 change_c0_config5(MIPS_CONF5_FRE, cfg5);
1449 }
1450 enable_fpu_hazard();
1451
1452 /* If guest FPU state not active, restore it now */
James Hoganf9431762016-06-14 09:40:10 +01001453 if (!(vcpu->arch.aux_inuse & KVM_MIPS_AUX_FPU)) {
James Hogan98e91b82014-11-18 14:09:12 +00001454 __kvm_restore_fpu(&vcpu->arch);
James Hoganf9431762016-06-14 09:40:10 +01001455 vcpu->arch.aux_inuse |= KVM_MIPS_AUX_FPU;
James Hogan04ebebf2016-06-14 09:40:11 +01001456 trace_kvm_aux(vcpu, KVM_TRACE_AUX_RESTORE, KVM_TRACE_AUX_FPU);
1457 } else {
1458 trace_kvm_aux(vcpu, KVM_TRACE_AUX_ENABLE, KVM_TRACE_AUX_FPU);
James Hogan98e91b82014-11-18 14:09:12 +00001459 }
1460
1461 preempt_enable();
1462}
1463
James Hogan539cb89fb2015-03-05 11:43:36 +00001464#ifdef CONFIG_CPU_HAS_MSA
1465/* Enable MSA for guest and restore context */
1466void kvm_own_msa(struct kvm_vcpu *vcpu)
1467{
1468 struct mips_coproc *cop0 = vcpu->arch.cop0;
1469 unsigned int sr, cfg5;
1470
1471 preempt_disable();
1472
1473 /*
1474 * Enable FPU if enabled in guest, since we're restoring FPU context
1475 * anyway. We set FR and FRE according to guest context.
1476 */
1477 if (kvm_mips_guest_has_fpu(&vcpu->arch)) {
1478 sr = kvm_read_c0_guest_status(cop0);
1479
1480 /*
1481 * If FR=0 FPU state is already live, it is undefined how it
1482 * interacts with MSA state, so play it safe and save it first.
1483 */
1484 if (!(sr & ST0_FR) &&
James Hoganf9431762016-06-14 09:40:10 +01001485 (vcpu->arch.aux_inuse & (KVM_MIPS_AUX_FPU |
1486 KVM_MIPS_AUX_MSA)) == KVM_MIPS_AUX_FPU)
James Hogan539cb89fb2015-03-05 11:43:36 +00001487 kvm_lose_fpu(vcpu);
1488
1489 change_c0_status(ST0_CU1 | ST0_FR, sr);
1490 if (sr & ST0_CU1 && cpu_has_fre) {
1491 cfg5 = kvm_read_c0_guest_config5(cop0);
1492 change_c0_config5(MIPS_CONF5_FRE, cfg5);
1493 }
1494 }
1495
1496 /* Enable MSA for guest */
1497 set_c0_config5(MIPS_CONF5_MSAEN);
1498 enable_fpu_hazard();
1499
James Hoganf9431762016-06-14 09:40:10 +01001500 switch (vcpu->arch.aux_inuse & (KVM_MIPS_AUX_FPU | KVM_MIPS_AUX_MSA)) {
1501 case KVM_MIPS_AUX_FPU:
James Hogan539cb89fb2015-03-05 11:43:36 +00001502 /*
1503 * Guest FPU state already loaded, only restore upper MSA state
1504 */
1505 __kvm_restore_msa_upper(&vcpu->arch);
James Hoganf9431762016-06-14 09:40:10 +01001506 vcpu->arch.aux_inuse |= KVM_MIPS_AUX_MSA;
James Hogan04ebebf2016-06-14 09:40:11 +01001507 trace_kvm_aux(vcpu, KVM_TRACE_AUX_RESTORE, KVM_TRACE_AUX_MSA);
James Hogan539cb89fb2015-03-05 11:43:36 +00001508 break;
1509 case 0:
1510 /* Neither FPU or MSA already active, restore full MSA state */
1511 __kvm_restore_msa(&vcpu->arch);
James Hoganf9431762016-06-14 09:40:10 +01001512 vcpu->arch.aux_inuse |= KVM_MIPS_AUX_MSA;
James Hogan539cb89fb2015-03-05 11:43:36 +00001513 if (kvm_mips_guest_has_fpu(&vcpu->arch))
James Hoganf9431762016-06-14 09:40:10 +01001514 vcpu->arch.aux_inuse |= KVM_MIPS_AUX_FPU;
James Hogan04ebebf2016-06-14 09:40:11 +01001515 trace_kvm_aux(vcpu, KVM_TRACE_AUX_RESTORE,
1516 KVM_TRACE_AUX_FPU_MSA);
James Hogan539cb89fb2015-03-05 11:43:36 +00001517 break;
1518 default:
James Hogan04ebebf2016-06-14 09:40:11 +01001519 trace_kvm_aux(vcpu, KVM_TRACE_AUX_ENABLE, KVM_TRACE_AUX_MSA);
James Hogan539cb89fb2015-03-05 11:43:36 +00001520 break;
1521 }
1522
1523 preempt_enable();
1524}
1525#endif
1526
1527/* Drop FPU & MSA without saving it */
James Hogan98e91b82014-11-18 14:09:12 +00001528void kvm_drop_fpu(struct kvm_vcpu *vcpu)
1529{
1530 preempt_disable();
James Hoganf9431762016-06-14 09:40:10 +01001531 if (cpu_has_msa && vcpu->arch.aux_inuse & KVM_MIPS_AUX_MSA) {
James Hogan539cb89fb2015-03-05 11:43:36 +00001532 disable_msa();
James Hogan04ebebf2016-06-14 09:40:11 +01001533 trace_kvm_aux(vcpu, KVM_TRACE_AUX_DISCARD, KVM_TRACE_AUX_MSA);
James Hoganf9431762016-06-14 09:40:10 +01001534 vcpu->arch.aux_inuse &= ~KVM_MIPS_AUX_MSA;
James Hogan539cb89fb2015-03-05 11:43:36 +00001535 }
James Hoganf9431762016-06-14 09:40:10 +01001536 if (vcpu->arch.aux_inuse & KVM_MIPS_AUX_FPU) {
James Hogan98e91b82014-11-18 14:09:12 +00001537 clear_c0_status(ST0_CU1 | ST0_FR);
James Hogan04ebebf2016-06-14 09:40:11 +01001538 trace_kvm_aux(vcpu, KVM_TRACE_AUX_DISCARD, KVM_TRACE_AUX_FPU);
James Hoganf9431762016-06-14 09:40:10 +01001539 vcpu->arch.aux_inuse &= ~KVM_MIPS_AUX_FPU;
James Hogan98e91b82014-11-18 14:09:12 +00001540 }
1541 preempt_enable();
1542}
1543
James Hogan539cb89fb2015-03-05 11:43:36 +00001544/* Save and disable FPU & MSA */
James Hogan98e91b82014-11-18 14:09:12 +00001545void kvm_lose_fpu(struct kvm_vcpu *vcpu)
1546{
1547 /*
James Hogan539cb89fb2015-03-05 11:43:36 +00001548 * FPU & MSA get disabled in root context (hardware) when it is disabled
1549 * in guest context (software), but the register state in the hardware
1550 * may still be in use. This is why we explicitly re-enable the hardware
James Hogan98e91b82014-11-18 14:09:12 +00001551 * before saving.
1552 */
1553
1554 preempt_disable();
James Hoganf9431762016-06-14 09:40:10 +01001555 if (cpu_has_msa && vcpu->arch.aux_inuse & KVM_MIPS_AUX_MSA) {
James Hogan539cb89fb2015-03-05 11:43:36 +00001556 set_c0_config5(MIPS_CONF5_MSAEN);
1557 enable_fpu_hazard();
1558
1559 __kvm_save_msa(&vcpu->arch);
James Hogan04ebebf2016-06-14 09:40:11 +01001560 trace_kvm_aux(vcpu, KVM_TRACE_AUX_SAVE, KVM_TRACE_AUX_FPU_MSA);
James Hogan539cb89fb2015-03-05 11:43:36 +00001561
1562 /* Disable MSA & FPU */
1563 disable_msa();
James Hoganf9431762016-06-14 09:40:10 +01001564 if (vcpu->arch.aux_inuse & KVM_MIPS_AUX_FPU) {
James Hogan539cb89fb2015-03-05 11:43:36 +00001565 clear_c0_status(ST0_CU1 | ST0_FR);
James Hogan4ac33422016-04-22 10:38:49 +01001566 disable_fpu_hazard();
1567 }
James Hoganf9431762016-06-14 09:40:10 +01001568 vcpu->arch.aux_inuse &= ~(KVM_MIPS_AUX_FPU | KVM_MIPS_AUX_MSA);
1569 } else if (vcpu->arch.aux_inuse & KVM_MIPS_AUX_FPU) {
James Hogan98e91b82014-11-18 14:09:12 +00001570 set_c0_status(ST0_CU1);
1571 enable_fpu_hazard();
1572
1573 __kvm_save_fpu(&vcpu->arch);
James Hoganf9431762016-06-14 09:40:10 +01001574 vcpu->arch.aux_inuse &= ~KVM_MIPS_AUX_FPU;
James Hogan04ebebf2016-06-14 09:40:11 +01001575 trace_kvm_aux(vcpu, KVM_TRACE_AUX_SAVE, KVM_TRACE_AUX_FPU);
James Hogan98e91b82014-11-18 14:09:12 +00001576
1577 /* Disable FPU */
1578 clear_c0_status(ST0_CU1 | ST0_FR);
James Hogan4ac33422016-04-22 10:38:49 +01001579 disable_fpu_hazard();
James Hogan98e91b82014-11-18 14:09:12 +00001580 }
1581 preempt_enable();
1582}
1583
1584/*
James Hogan539cb89fb2015-03-05 11:43:36 +00001585 * Step over a specific ctc1 to FCSR and a specific ctcmsa to MSACSR which are
1586 * used to restore guest FCSR/MSACSR state and may trigger a "harmless" FP/MSAFP
1587 * exception if cause bits are set in the value being written.
James Hogan98e91b82014-11-18 14:09:12 +00001588 */
1589static int kvm_mips_csr_die_notify(struct notifier_block *self,
1590 unsigned long cmd, void *ptr)
1591{
1592 struct die_args *args = (struct die_args *)ptr;
1593 struct pt_regs *regs = args->regs;
1594 unsigned long pc;
1595
James Hogan539cb89fb2015-03-05 11:43:36 +00001596 /* Only interested in FPE and MSAFPE */
1597 if (cmd != DIE_FP && cmd != DIE_MSAFP)
James Hogan98e91b82014-11-18 14:09:12 +00001598 return NOTIFY_DONE;
1599
1600 /* Return immediately if guest context isn't active */
1601 if (!(current->flags & PF_VCPU))
1602 return NOTIFY_DONE;
1603
1604 /* Should never get here from user mode */
1605 BUG_ON(user_mode(regs));
1606
1607 pc = instruction_pointer(regs);
1608 switch (cmd) {
1609 case DIE_FP:
1610 /* match 2nd instruction in __kvm_restore_fcsr */
1611 if (pc != (unsigned long)&__kvm_restore_fcsr + 4)
1612 return NOTIFY_DONE;
1613 break;
James Hogan539cb89fb2015-03-05 11:43:36 +00001614 case DIE_MSAFP:
1615 /* match 2nd/3rd instruction in __kvm_restore_msacsr */
1616 if (!cpu_has_msa ||
1617 pc < (unsigned long)&__kvm_restore_msacsr + 4 ||
1618 pc > (unsigned long)&__kvm_restore_msacsr + 8)
1619 return NOTIFY_DONE;
1620 break;
James Hogan98e91b82014-11-18 14:09:12 +00001621 }
1622
1623 /* Move PC forward a little and continue executing */
1624 instruction_pointer(regs) += 4;
1625
1626 return NOTIFY_STOP;
1627}
1628
1629static struct notifier_block kvm_mips_csr_die_notifier = {
1630 .notifier_call = kvm_mips_csr_die_notify,
1631};
1632
James Hogan2db9d232015-12-16 23:49:32 +00001633static int __init kvm_mips_init(void)
Sanjay Lal669e8462012-11-21 18:34:02 -08001634{
1635 int ret;
1636
1637 ret = kvm_init(NULL, sizeof(struct kvm_vcpu), 0, THIS_MODULE);
1638
1639 if (ret)
1640 return ret;
1641
James Hogan98e91b82014-11-18 14:09:12 +00001642 register_die_notifier(&kvm_mips_csr_die_notifier);
1643
Sanjay Lal669e8462012-11-21 18:34:02 -08001644 return 0;
1645}
1646
James Hogan2db9d232015-12-16 23:49:32 +00001647static void __exit kvm_mips_exit(void)
Sanjay Lal669e8462012-11-21 18:34:02 -08001648{
1649 kvm_exit();
1650
James Hogan98e91b82014-11-18 14:09:12 +00001651 unregister_die_notifier(&kvm_mips_csr_die_notifier);
Sanjay Lal669e8462012-11-21 18:34:02 -08001652}
1653
1654module_init(kvm_mips_init);
1655module_exit(kvm_mips_exit);
1656
1657EXPORT_TRACEPOINT_SYMBOL(kvm_exit);