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
6 * KVM/MIPS: Deliver/Emulate exceptions to the guest kernel
8 * Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved.
9 * Authors: Sanjay Lal <sanjayl@kymasys.com>
12 #include <linux/errno.h>
13 #include <linux/err.h>
14 #include <linux/module.h>
15 #include <linux/vmalloc.h>
17 #include <linux/kvm_host.h>
19 #include "interrupt.h"
21 static gpa_t
kvm_trap_emul_gva_to_gpa_cb(gva_t gva
)
24 uint32_t kseg
= KSEGX(gva
);
26 if ((kseg
== CKSEG0
) || (kseg
== CKSEG1
))
29 kvm_err("%s: cannot find GPA for GVA: %#lx\n", __func__
, gva
);
30 kvm_mips_dump_host_tlbs();
31 gpa
= KVM_INVALID_ADDR
;
34 kvm_debug("%s: gva %#lx, gpa: %#llx\n", __func__
, gva
, gpa
);
39 static int kvm_trap_emul_handle_cop_unusable(struct kvm_vcpu
*vcpu
)
41 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
42 struct kvm_run
*run
= vcpu
->run
;
43 uint32_t __user
*opc
= (uint32_t __user
*) vcpu
->arch
.pc
;
44 unsigned long cause
= vcpu
->arch
.host_cp0_cause
;
45 enum emulation_result er
= EMULATE_DONE
;
46 int ret
= RESUME_GUEST
;
48 if (((cause
& CAUSEF_CE
) >> CAUSEB_CE
) == 1) {
50 if (!kvm_mips_guest_has_fpu(&vcpu
->arch
) ||
51 (kvm_read_c0_guest_status(cop0
) & ST0_CU1
) == 0) {
53 * Unusable/no FPU in guest:
54 * deliver guest COP1 Unusable Exception
56 er
= kvm_mips_emulate_fpu_exc(cause
, opc
, run
, vcpu
);
58 /* Restore FPU state */
63 er
= kvm_mips_emulate_inst(cause
, opc
, run
, vcpu
);
72 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
77 run
->exit_reason
= KVM_EXIT_INTR
;
87 static int kvm_trap_emul_handle_tlb_mod(struct kvm_vcpu
*vcpu
)
89 struct kvm_run
*run
= vcpu
->run
;
90 uint32_t __user
*opc
= (uint32_t __user
*) vcpu
->arch
.pc
;
91 unsigned long badvaddr
= vcpu
->arch
.host_cp0_badvaddr
;
92 unsigned long cause
= vcpu
->arch
.host_cp0_cause
;
93 enum emulation_result er
= EMULATE_DONE
;
94 int ret
= RESUME_GUEST
;
96 if (KVM_GUEST_KSEGX(badvaddr
) < KVM_GUEST_KSEG0
97 || KVM_GUEST_KSEGX(badvaddr
) == KVM_GUEST_KSEG23
) {
98 kvm_debug("USER/KSEG23 ADDR TLB MOD fault: cause %#lx, PC: %p, BadVaddr: %#lx\n",
99 cause
, opc
, badvaddr
);
100 er
= kvm_mips_handle_tlbmod(cause
, opc
, run
, vcpu
);
102 if (er
== EMULATE_DONE
)
105 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
108 } else if (KVM_GUEST_KSEGX(badvaddr
) == KVM_GUEST_KSEG0
) {
110 * XXXKYMA: The guest kernel does not expect to get this fault
111 * when we are not using HIGHMEM. Need to address this in a
114 kvm_err("TLB MOD fault not handled, cause %#lx, PC: %p, BadVaddr: %#lx\n",
115 cause
, opc
, badvaddr
);
116 kvm_mips_dump_host_tlbs();
117 kvm_arch_vcpu_dump_regs(vcpu
);
118 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
121 kvm_err("Illegal TLB Mod fault address , cause %#lx, PC: %p, BadVaddr: %#lx\n",
122 cause
, opc
, badvaddr
);
123 kvm_mips_dump_host_tlbs();
124 kvm_arch_vcpu_dump_regs(vcpu
);
125 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
131 static int kvm_trap_emul_handle_tlb_st_miss(struct kvm_vcpu
*vcpu
)
133 struct kvm_run
*run
= vcpu
->run
;
134 uint32_t __user
*opc
= (uint32_t __user
*) vcpu
->arch
.pc
;
135 unsigned long badvaddr
= vcpu
->arch
.host_cp0_badvaddr
;
136 unsigned long cause
= vcpu
->arch
.host_cp0_cause
;
137 enum emulation_result er
= EMULATE_DONE
;
138 int ret
= RESUME_GUEST
;
140 if (((badvaddr
& PAGE_MASK
) == KVM_GUEST_COMMPAGE_ADDR
)
141 && KVM_GUEST_KERNEL_MODE(vcpu
)) {
142 if (kvm_mips_handle_commpage_tlb_fault(badvaddr
, vcpu
) < 0) {
143 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
146 } else if (KVM_GUEST_KSEGX(badvaddr
) < KVM_GUEST_KSEG0
147 || KVM_GUEST_KSEGX(badvaddr
) == KVM_GUEST_KSEG23
) {
148 kvm_debug("USER ADDR TLB LD fault: cause %#lx, PC: %p, BadVaddr: %#lx\n",
149 cause
, opc
, badvaddr
);
150 er
= kvm_mips_handle_tlbmiss(cause
, opc
, run
, vcpu
);
151 if (er
== EMULATE_DONE
)
154 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
157 } else if (KVM_GUEST_KSEGX(badvaddr
) == KVM_GUEST_KSEG0
) {
159 * All KSEG0 faults are handled by KVM, as the guest kernel does
160 * not expect to ever get them
162 if (kvm_mips_handle_kseg0_tlb_fault
163 (vcpu
->arch
.host_cp0_badvaddr
, vcpu
) < 0) {
164 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
168 kvm_err("Illegal TLB LD fault address , cause %#lx, PC: %p, BadVaddr: %#lx\n",
169 cause
, opc
, badvaddr
);
170 kvm_mips_dump_host_tlbs();
171 kvm_arch_vcpu_dump_regs(vcpu
);
172 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
178 static int kvm_trap_emul_handle_tlb_ld_miss(struct kvm_vcpu
*vcpu
)
180 struct kvm_run
*run
= vcpu
->run
;
181 uint32_t __user
*opc
= (uint32_t __user
*) vcpu
->arch
.pc
;
182 unsigned long badvaddr
= vcpu
->arch
.host_cp0_badvaddr
;
183 unsigned long cause
= vcpu
->arch
.host_cp0_cause
;
184 enum emulation_result er
= EMULATE_DONE
;
185 int ret
= RESUME_GUEST
;
187 if (((badvaddr
& PAGE_MASK
) == KVM_GUEST_COMMPAGE_ADDR
)
188 && KVM_GUEST_KERNEL_MODE(vcpu
)) {
189 if (kvm_mips_handle_commpage_tlb_fault(badvaddr
, vcpu
) < 0) {
190 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
193 } else if (KVM_GUEST_KSEGX(badvaddr
) < KVM_GUEST_KSEG0
194 || KVM_GUEST_KSEGX(badvaddr
) == KVM_GUEST_KSEG23
) {
195 kvm_debug("USER ADDR TLB ST fault: PC: %#lx, BadVaddr: %#lx\n",
196 vcpu
->arch
.pc
, badvaddr
);
199 * User Address (UA) fault, this could happen if
200 * (1) TLB entry not present/valid in both Guest and shadow host
201 * TLBs, in this case we pass on the fault to the guest
202 * kernel and let it handle it.
203 * (2) TLB entry is present in the Guest TLB but not in the
204 * shadow, in this case we inject the TLB from the Guest TLB
205 * into the shadow host TLB
208 er
= kvm_mips_handle_tlbmiss(cause
, opc
, run
, vcpu
);
209 if (er
== EMULATE_DONE
)
212 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
215 } else if (KVM_GUEST_KSEGX(badvaddr
) == KVM_GUEST_KSEG0
) {
216 if (kvm_mips_handle_kseg0_tlb_fault
217 (vcpu
->arch
.host_cp0_badvaddr
, vcpu
) < 0) {
218 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
222 kvm_err("Illegal TLB ST fault address , cause %#lx, PC: %p, BadVaddr: %#lx\n",
223 cause
, opc
, badvaddr
);
224 kvm_mips_dump_host_tlbs();
225 kvm_arch_vcpu_dump_regs(vcpu
);
226 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
232 static int kvm_trap_emul_handle_addr_err_st(struct kvm_vcpu
*vcpu
)
234 struct kvm_run
*run
= vcpu
->run
;
235 uint32_t __user
*opc
= (uint32_t __user
*) vcpu
->arch
.pc
;
236 unsigned long badvaddr
= vcpu
->arch
.host_cp0_badvaddr
;
237 unsigned long cause
= vcpu
->arch
.host_cp0_cause
;
238 enum emulation_result er
= EMULATE_DONE
;
239 int ret
= RESUME_GUEST
;
241 if (KVM_GUEST_KERNEL_MODE(vcpu
)
242 && (KSEGX(badvaddr
) == CKSEG0
|| KSEGX(badvaddr
) == CKSEG1
)) {
243 kvm_debug("Emulate Store to MMIO space\n");
244 er
= kvm_mips_emulate_inst(cause
, opc
, run
, vcpu
);
245 if (er
== EMULATE_FAIL
) {
246 kvm_err("Emulate Store to MMIO space failed\n");
247 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
250 run
->exit_reason
= KVM_EXIT_MMIO
;
254 kvm_err("Address Error (STORE): cause %#lx, PC: %p, BadVaddr: %#lx\n",
255 cause
, opc
, badvaddr
);
256 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
262 static int kvm_trap_emul_handle_addr_err_ld(struct kvm_vcpu
*vcpu
)
264 struct kvm_run
*run
= vcpu
->run
;
265 uint32_t __user
*opc
= (uint32_t __user
*) vcpu
->arch
.pc
;
266 unsigned long badvaddr
= vcpu
->arch
.host_cp0_badvaddr
;
267 unsigned long cause
= vcpu
->arch
.host_cp0_cause
;
268 enum emulation_result er
= EMULATE_DONE
;
269 int ret
= RESUME_GUEST
;
271 if (KSEGX(badvaddr
) == CKSEG0
|| KSEGX(badvaddr
) == CKSEG1
) {
272 kvm_debug("Emulate Load from MMIO space @ %#lx\n", badvaddr
);
273 er
= kvm_mips_emulate_inst(cause
, opc
, run
, vcpu
);
274 if (er
== EMULATE_FAIL
) {
275 kvm_err("Emulate Load from MMIO space failed\n");
276 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
279 run
->exit_reason
= KVM_EXIT_MMIO
;
283 kvm_err("Address Error (LOAD): cause %#lx, PC: %p, BadVaddr: %#lx\n",
284 cause
, opc
, badvaddr
);
285 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
292 static int kvm_trap_emul_handle_syscall(struct kvm_vcpu
*vcpu
)
294 struct kvm_run
*run
= vcpu
->run
;
295 uint32_t __user
*opc
= (uint32_t __user
*) vcpu
->arch
.pc
;
296 unsigned long cause
= vcpu
->arch
.host_cp0_cause
;
297 enum emulation_result er
= EMULATE_DONE
;
298 int ret
= RESUME_GUEST
;
300 er
= kvm_mips_emulate_syscall(cause
, opc
, run
, vcpu
);
301 if (er
== EMULATE_DONE
)
304 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
310 static int kvm_trap_emul_handle_res_inst(struct kvm_vcpu
*vcpu
)
312 struct kvm_run
*run
= vcpu
->run
;
313 uint32_t __user
*opc
= (uint32_t __user
*) vcpu
->arch
.pc
;
314 unsigned long cause
= vcpu
->arch
.host_cp0_cause
;
315 enum emulation_result er
= EMULATE_DONE
;
316 int ret
= RESUME_GUEST
;
318 er
= kvm_mips_handle_ri(cause
, opc
, run
, vcpu
);
319 if (er
== EMULATE_DONE
)
322 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
328 static int kvm_trap_emul_handle_break(struct kvm_vcpu
*vcpu
)
330 struct kvm_run
*run
= vcpu
->run
;
331 uint32_t __user
*opc
= (uint32_t __user
*) vcpu
->arch
.pc
;
332 unsigned long cause
= vcpu
->arch
.host_cp0_cause
;
333 enum emulation_result er
= EMULATE_DONE
;
334 int ret
= RESUME_GUEST
;
336 er
= kvm_mips_emulate_bp_exc(cause
, opc
, run
, vcpu
);
337 if (er
== EMULATE_DONE
)
340 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
346 static int kvm_trap_emul_handle_trap(struct kvm_vcpu
*vcpu
)
348 struct kvm_run
*run
= vcpu
->run
;
349 uint32_t __user
*opc
= (uint32_t __user
*)vcpu
->arch
.pc
;
350 unsigned long cause
= vcpu
->arch
.host_cp0_cause
;
351 enum emulation_result er
= EMULATE_DONE
;
352 int ret
= RESUME_GUEST
;
354 er
= kvm_mips_emulate_trap_exc(cause
, opc
, run
, vcpu
);
355 if (er
== EMULATE_DONE
) {
358 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
364 static int kvm_trap_emul_handle_msa_fpe(struct kvm_vcpu
*vcpu
)
366 struct kvm_run
*run
= vcpu
->run
;
367 uint32_t __user
*opc
= (uint32_t __user
*)vcpu
->arch
.pc
;
368 unsigned long cause
= vcpu
->arch
.host_cp0_cause
;
369 enum emulation_result er
= EMULATE_DONE
;
370 int ret
= RESUME_GUEST
;
372 er
= kvm_mips_emulate_msafpe_exc(cause
, opc
, run
, vcpu
);
373 if (er
== EMULATE_DONE
) {
376 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
382 static int kvm_trap_emul_handle_fpe(struct kvm_vcpu
*vcpu
)
384 struct kvm_run
*run
= vcpu
->run
;
385 uint32_t __user
*opc
= (uint32_t __user
*)vcpu
->arch
.pc
;
386 unsigned long cause
= vcpu
->arch
.host_cp0_cause
;
387 enum emulation_result er
= EMULATE_DONE
;
388 int ret
= RESUME_GUEST
;
390 er
= kvm_mips_emulate_fpe_exc(cause
, opc
, run
, vcpu
);
391 if (er
== EMULATE_DONE
) {
394 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
401 * kvm_trap_emul_handle_msa_disabled() - Guest used MSA while disabled in root.
402 * @vcpu: Virtual CPU context.
404 * Handle when the guest attempts to use MSA when it is disabled.
406 static int kvm_trap_emul_handle_msa_disabled(struct kvm_vcpu
*vcpu
)
408 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
409 struct kvm_run
*run
= vcpu
->run
;
410 uint32_t __user
*opc
= (uint32_t __user
*) vcpu
->arch
.pc
;
411 unsigned long cause
= vcpu
->arch
.host_cp0_cause
;
412 enum emulation_result er
= EMULATE_DONE
;
413 int ret
= RESUME_GUEST
;
415 if (!kvm_mips_guest_has_msa(&vcpu
->arch
) ||
416 (kvm_read_c0_guest_status(cop0
) & (ST0_CU1
| ST0_FR
)) == ST0_CU1
) {
418 * No MSA in guest, or FPU enabled and not in FR=1 mode,
419 * guest reserved instruction exception
421 er
= kvm_mips_emulate_ri_exc(cause
, opc
, run
, vcpu
);
422 } else if (!(kvm_read_c0_guest_config5(cop0
) & MIPS_CONF5_MSAEN
)) {
423 /* MSA disabled by guest, guest MSA disabled exception */
424 er
= kvm_mips_emulate_msadis_exc(cause
, opc
, run
, vcpu
);
426 /* Restore MSA/FPU state */
437 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
447 static int kvm_trap_emul_vm_init(struct kvm
*kvm
)
452 static int kvm_trap_emul_vcpu_init(struct kvm_vcpu
*vcpu
)
457 static int kvm_trap_emul_vcpu_setup(struct kvm_vcpu
*vcpu
)
459 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
461 int vcpu_id
= vcpu
->vcpu_id
;
464 * Arch specific stuff, set up config registers properly so that the
465 * guest will come up as expected, for now we simulate a MIPS 24kc
467 kvm_write_c0_guest_prid(cop0
, 0x00019300);
468 /* Have config1, Cacheable, noncoherent, write-back, write allocate */
469 kvm_write_c0_guest_config(cop0
, MIPS_CONF_M
| (0x3 << CP0C0_K0
) |
471 (MMU_TYPE_R4000
<< CP0C0_MT
));
473 /* Read the cache characteristics from the host Config1 Register */
474 config1
= (read_c0_config1() & ~0x7f);
476 /* Set up MMU size */
477 config1
&= ~(0x3f << 25);
478 config1
|= ((KVM_MIPS_GUEST_TLB_SIZE
- 1) << 25);
480 /* We unset some bits that we aren't emulating */
482 ~((1 << CP0C1_C2
) | (1 << CP0C1_MD
) | (1 << CP0C1_PC
) |
483 (1 << CP0C1_WR
) | (1 << CP0C1_CA
));
484 kvm_write_c0_guest_config1(cop0
, config1
);
486 /* Have config3, no tertiary/secondary caches implemented */
487 kvm_write_c0_guest_config2(cop0
, MIPS_CONF_M
);
488 /* MIPS_CONF_M | (read_c0_config2() & 0xfff) */
490 /* Have config4, UserLocal */
491 kvm_write_c0_guest_config3(cop0
, MIPS_CONF_M
| MIPS_CONF3_ULRI
);
494 kvm_write_c0_guest_config4(cop0
, MIPS_CONF_M
);
497 kvm_write_c0_guest_config5(cop0
, 0);
499 /* Set Wait IE/IXMT Ignore in Config7, IAR, AR */
500 kvm_write_c0_guest_config7(cop0
, (MIPS_CONF7_WII
) | (1 << 10));
503 * Setup IntCtl defaults, compatibilty mode for timer interrupts (HW5)
505 kvm_write_c0_guest_intctl(cop0
, 0xFC000000);
507 /* Put in vcpu id as CPUNum into Ebase Reg to handle SMP Guests */
508 kvm_write_c0_guest_ebase(cop0
, KVM_GUEST_KSEG0
| (vcpu_id
& 0xFF));
513 static int kvm_trap_emul_get_one_reg(struct kvm_vcpu
*vcpu
,
514 const struct kvm_one_reg
*reg
,
518 case KVM_REG_MIPS_CP0_COUNT
:
519 *v
= kvm_mips_read_count(vcpu
);
521 case KVM_REG_MIPS_COUNT_CTL
:
522 *v
= vcpu
->arch
.count_ctl
;
524 case KVM_REG_MIPS_COUNT_RESUME
:
525 *v
= ktime_to_ns(vcpu
->arch
.count_resume
);
527 case KVM_REG_MIPS_COUNT_HZ
:
528 *v
= vcpu
->arch
.count_hz
;
536 static int kvm_trap_emul_set_one_reg(struct kvm_vcpu
*vcpu
,
537 const struct kvm_one_reg
*reg
,
540 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
542 unsigned int cur
, change
;
545 case KVM_REG_MIPS_CP0_COUNT
:
546 kvm_mips_write_count(vcpu
, v
);
548 case KVM_REG_MIPS_CP0_COMPARE
:
549 kvm_mips_write_compare(vcpu
, v
);
551 case KVM_REG_MIPS_CP0_CAUSE
:
553 * If the timer is stopped or started (DC bit) it must look
554 * atomic with changes to the interrupt pending bits (TI, IRQ5).
555 * A timer interrupt should not happen in between.
557 if ((kvm_read_c0_guest_cause(cop0
) ^ v
) & CAUSEF_DC
) {
559 /* disable timer first */
560 kvm_mips_count_disable_cause(vcpu
);
561 kvm_change_c0_guest_cause(cop0
, ~CAUSEF_DC
, v
);
563 /* enable timer last */
564 kvm_change_c0_guest_cause(cop0
, ~CAUSEF_DC
, v
);
565 kvm_mips_count_enable_cause(vcpu
);
568 kvm_write_c0_guest_cause(cop0
, v
);
571 case KVM_REG_MIPS_CP0_CONFIG
:
572 /* read-only for now */
574 case KVM_REG_MIPS_CP0_CONFIG1
:
575 cur
= kvm_read_c0_guest_config1(cop0
);
576 change
= (cur
^ v
) & kvm_mips_config1_wrmask(vcpu
);
579 kvm_write_c0_guest_config1(cop0
, v
);
582 case KVM_REG_MIPS_CP0_CONFIG2
:
583 /* read-only for now */
585 case KVM_REG_MIPS_CP0_CONFIG3
:
586 cur
= kvm_read_c0_guest_config3(cop0
);
587 change
= (cur
^ v
) & kvm_mips_config3_wrmask(vcpu
);
590 kvm_write_c0_guest_config3(cop0
, v
);
593 case KVM_REG_MIPS_CP0_CONFIG4
:
594 cur
= kvm_read_c0_guest_config4(cop0
);
595 change
= (cur
^ v
) & kvm_mips_config4_wrmask(vcpu
);
598 kvm_write_c0_guest_config4(cop0
, v
);
601 case KVM_REG_MIPS_CP0_CONFIG5
:
602 cur
= kvm_read_c0_guest_config5(cop0
);
603 change
= (cur
^ v
) & kvm_mips_config5_wrmask(vcpu
);
606 kvm_write_c0_guest_config5(cop0
, v
);
609 case KVM_REG_MIPS_COUNT_CTL
:
610 ret
= kvm_mips_set_count_ctl(vcpu
, v
);
612 case KVM_REG_MIPS_COUNT_RESUME
:
613 ret
= kvm_mips_set_count_resume(vcpu
, v
);
615 case KVM_REG_MIPS_COUNT_HZ
:
616 ret
= kvm_mips_set_count_hz(vcpu
, v
);
624 static int kvm_trap_emul_vcpu_get_regs(struct kvm_vcpu
*vcpu
)
631 static int kvm_trap_emul_vcpu_set_regs(struct kvm_vcpu
*vcpu
)
636 static struct kvm_mips_callbacks kvm_trap_emul_callbacks
= {
638 .handle_cop_unusable
= kvm_trap_emul_handle_cop_unusable
,
639 .handle_tlb_mod
= kvm_trap_emul_handle_tlb_mod
,
640 .handle_tlb_st_miss
= kvm_trap_emul_handle_tlb_st_miss
,
641 .handle_tlb_ld_miss
= kvm_trap_emul_handle_tlb_ld_miss
,
642 .handle_addr_err_st
= kvm_trap_emul_handle_addr_err_st
,
643 .handle_addr_err_ld
= kvm_trap_emul_handle_addr_err_ld
,
644 .handle_syscall
= kvm_trap_emul_handle_syscall
,
645 .handle_res_inst
= kvm_trap_emul_handle_res_inst
,
646 .handle_break
= kvm_trap_emul_handle_break
,
647 .handle_trap
= kvm_trap_emul_handle_trap
,
648 .handle_msa_fpe
= kvm_trap_emul_handle_msa_fpe
,
649 .handle_fpe
= kvm_trap_emul_handle_fpe
,
650 .handle_msa_disabled
= kvm_trap_emul_handle_msa_disabled
,
652 .vm_init
= kvm_trap_emul_vm_init
,
653 .vcpu_init
= kvm_trap_emul_vcpu_init
,
654 .vcpu_setup
= kvm_trap_emul_vcpu_setup
,
655 .gva_to_gpa
= kvm_trap_emul_gva_to_gpa_cb
,
656 .queue_timer_int
= kvm_mips_queue_timer_int_cb
,
657 .dequeue_timer_int
= kvm_mips_dequeue_timer_int_cb
,
658 .queue_io_int
= kvm_mips_queue_io_int_cb
,
659 .dequeue_io_int
= kvm_mips_dequeue_io_int_cb
,
660 .irq_deliver
= kvm_mips_irq_deliver_cb
,
661 .irq_clear
= kvm_mips_irq_clear_cb
,
662 .get_one_reg
= kvm_trap_emul_get_one_reg
,
663 .set_one_reg
= kvm_trap_emul_set_one_reg
,
664 .vcpu_get_regs
= kvm_trap_emul_vcpu_get_regs
,
665 .vcpu_set_regs
= kvm_trap_emul_vcpu_set_regs
,
668 int kvm_mips_emulation_init(struct kvm_mips_callbacks
**install_callbacks
)
670 *install_callbacks
= &kvm_trap_emul_callbacks
;