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 "kvm_mips_opcode.h"
20 #include "kvm_mips_int.h"
22 static gpa_t
kvm_trap_emul_gva_to_gpa_cb(gva_t gva
)
25 uint32_t kseg
= KSEGX(gva
);
27 if ((kseg
== CKSEG0
) || (kseg
== CKSEG1
))
30 printk("%s: cannot find GPA for GVA: %#lx\n", __func__
, gva
);
31 kvm_mips_dump_host_tlbs();
32 gpa
= KVM_INVALID_ADDR
;
36 kvm_debug("%s: gva %#lx, gpa: %#llx\n", __func__
, gva
, gpa
);
43 static int kvm_trap_emul_handle_cop_unusable(struct kvm_vcpu
*vcpu
)
45 struct kvm_run
*run
= vcpu
->run
;
46 uint32_t __user
*opc
= (uint32_t __user
*) vcpu
->arch
.pc
;
47 unsigned long cause
= vcpu
->arch
.host_cp0_cause
;
48 enum emulation_result er
= EMULATE_DONE
;
49 int ret
= RESUME_GUEST
;
51 if (((cause
& CAUSEF_CE
) >> CAUSEB_CE
) == 1) {
52 er
= kvm_mips_emulate_fpu_exc(cause
, opc
, run
, vcpu
);
54 er
= kvm_mips_emulate_inst(cause
, opc
, run
, vcpu
);
62 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
67 run
->exit_reason
= KVM_EXIT_INTR
;
77 static int kvm_trap_emul_handle_tlb_mod(struct kvm_vcpu
*vcpu
)
79 struct kvm_run
*run
= vcpu
->run
;
80 uint32_t __user
*opc
= (uint32_t __user
*) vcpu
->arch
.pc
;
81 unsigned long badvaddr
= vcpu
->arch
.host_cp0_badvaddr
;
82 unsigned long cause
= vcpu
->arch
.host_cp0_cause
;
83 enum emulation_result er
= EMULATE_DONE
;
84 int ret
= RESUME_GUEST
;
86 if (KVM_GUEST_KSEGX(badvaddr
) < KVM_GUEST_KSEG0
87 || KVM_GUEST_KSEGX(badvaddr
) == KVM_GUEST_KSEG23
) {
90 ("USER/KSEG23 ADDR TLB MOD fault: cause %#lx, PC: %p, BadVaddr: %#lx\n",
91 cause
, opc
, badvaddr
);
93 er
= kvm_mips_handle_tlbmod(cause
, opc
, run
, vcpu
);
95 if (er
== EMULATE_DONE
)
98 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
101 } else if (KVM_GUEST_KSEGX(badvaddr
) == KVM_GUEST_KSEG0
) {
102 /* XXXKYMA: The guest kernel does not expect to get this fault when we are not
103 * using HIGHMEM. Need to address this in a HIGHMEM kernel
106 ("TLB MOD fault not handled, cause %#lx, PC: %p, BadVaddr: %#lx\n",
107 cause
, opc
, badvaddr
);
108 kvm_mips_dump_host_tlbs();
109 kvm_arch_vcpu_dump_regs(vcpu
);
110 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
114 ("Illegal TLB Mod fault address , 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
;
124 static int kvm_trap_emul_handle_tlb_st_miss(struct kvm_vcpu
*vcpu
)
126 struct kvm_run
*run
= vcpu
->run
;
127 uint32_t __user
*opc
= (uint32_t __user
*) vcpu
->arch
.pc
;
128 unsigned long badvaddr
= vcpu
->arch
.host_cp0_badvaddr
;
129 unsigned long cause
= vcpu
->arch
.host_cp0_cause
;
130 enum emulation_result er
= EMULATE_DONE
;
131 int ret
= RESUME_GUEST
;
133 if (((badvaddr
& PAGE_MASK
) == KVM_GUEST_COMMPAGE_ADDR
)
134 && KVM_GUEST_KERNEL_MODE(vcpu
)) {
135 if (kvm_mips_handle_commpage_tlb_fault(badvaddr
, vcpu
) < 0) {
136 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
139 } else if (KVM_GUEST_KSEGX(badvaddr
) < KVM_GUEST_KSEG0
140 || KVM_GUEST_KSEGX(badvaddr
) == KVM_GUEST_KSEG23
) {
143 ("USER ADDR TLB LD fault: cause %#lx, PC: %p, BadVaddr: %#lx\n",
144 cause
, opc
, badvaddr
);
146 er
= kvm_mips_handle_tlbmiss(cause
, opc
, run
, vcpu
);
147 if (er
== EMULATE_DONE
)
150 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
153 } else if (KVM_GUEST_KSEGX(badvaddr
) == KVM_GUEST_KSEG0
) {
154 /* All KSEG0 faults are handled by KVM, as the guest kernel does not
155 * expect to ever get them
157 if (kvm_mips_handle_kseg0_tlb_fault
158 (vcpu
->arch
.host_cp0_badvaddr
, vcpu
) < 0) {
159 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
164 ("Illegal TLB LD fault address , cause %#lx, PC: %p, BadVaddr: %#lx\n",
165 cause
, opc
, badvaddr
);
166 kvm_mips_dump_host_tlbs();
167 kvm_arch_vcpu_dump_regs(vcpu
);
168 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
174 static int kvm_trap_emul_handle_tlb_ld_miss(struct kvm_vcpu
*vcpu
)
176 struct kvm_run
*run
= vcpu
->run
;
177 uint32_t __user
*opc
= (uint32_t __user
*) vcpu
->arch
.pc
;
178 unsigned long badvaddr
= vcpu
->arch
.host_cp0_badvaddr
;
179 unsigned long cause
= vcpu
->arch
.host_cp0_cause
;
180 enum emulation_result er
= EMULATE_DONE
;
181 int ret
= RESUME_GUEST
;
183 if (((badvaddr
& PAGE_MASK
) == KVM_GUEST_COMMPAGE_ADDR
)
184 && KVM_GUEST_KERNEL_MODE(vcpu
)) {
185 if (kvm_mips_handle_commpage_tlb_fault(badvaddr
, vcpu
) < 0) {
186 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
189 } else if (KVM_GUEST_KSEGX(badvaddr
) < KVM_GUEST_KSEG0
190 || KVM_GUEST_KSEGX(badvaddr
) == KVM_GUEST_KSEG23
) {
192 kvm_debug("USER ADDR TLB ST fault: PC: %#lx, BadVaddr: %#lx\n",
193 vcpu
->arch
.pc
, badvaddr
);
196 /* User Address (UA) fault, this could happen if
197 * (1) TLB entry not present/valid in both Guest and shadow host TLBs, in this
198 * case we pass on the fault to the guest kernel and let it handle it.
199 * (2) TLB entry is present in the Guest TLB but not in the shadow, in this
200 * case we inject the TLB from the Guest TLB into the shadow host TLB
203 er
= kvm_mips_handle_tlbmiss(cause
, opc
, run
, vcpu
);
204 if (er
== EMULATE_DONE
)
207 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
210 } else if (KVM_GUEST_KSEGX(badvaddr
) == KVM_GUEST_KSEG0
) {
211 if (kvm_mips_handle_kseg0_tlb_fault
212 (vcpu
->arch
.host_cp0_badvaddr
, vcpu
) < 0) {
213 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
218 ("Illegal TLB ST fault address , cause %#lx, PC: %p, BadVaddr: %#lx\n",
219 cause
, opc
, badvaddr
);
220 kvm_mips_dump_host_tlbs();
221 kvm_arch_vcpu_dump_regs(vcpu
);
222 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
228 static int kvm_trap_emul_handle_addr_err_st(struct kvm_vcpu
*vcpu
)
230 struct kvm_run
*run
= vcpu
->run
;
231 uint32_t __user
*opc
= (uint32_t __user
*) vcpu
->arch
.pc
;
232 unsigned long badvaddr
= vcpu
->arch
.host_cp0_badvaddr
;
233 unsigned long cause
= vcpu
->arch
.host_cp0_cause
;
234 enum emulation_result er
= EMULATE_DONE
;
235 int ret
= RESUME_GUEST
;
237 if (KVM_GUEST_KERNEL_MODE(vcpu
)
238 && (KSEGX(badvaddr
) == CKSEG0
|| KSEGX(badvaddr
) == CKSEG1
)) {
240 kvm_debug("Emulate Store to MMIO space\n");
242 er
= kvm_mips_emulate_inst(cause
, opc
, run
, vcpu
);
243 if (er
== EMULATE_FAIL
) {
244 printk("Emulate Store to MMIO space failed\n");
245 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
248 run
->exit_reason
= KVM_EXIT_MMIO
;
253 ("Address Error (STORE): cause %#lx, PC: %p, BadVaddr: %#lx\n",
254 cause
, opc
, badvaddr
);
255 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
261 static int kvm_trap_emul_handle_addr_err_ld(struct kvm_vcpu
*vcpu
)
263 struct kvm_run
*run
= vcpu
->run
;
264 uint32_t __user
*opc
= (uint32_t __user
*) vcpu
->arch
.pc
;
265 unsigned long badvaddr
= vcpu
->arch
.host_cp0_badvaddr
;
266 unsigned long cause
= vcpu
->arch
.host_cp0_cause
;
267 enum emulation_result er
= EMULATE_DONE
;
268 int ret
= RESUME_GUEST
;
270 if (KSEGX(badvaddr
) == CKSEG0
|| KSEGX(badvaddr
) == CKSEG1
) {
272 kvm_debug("Emulate Load from MMIO space @ %#lx\n", badvaddr
);
274 er
= kvm_mips_emulate_inst(cause
, opc
, run
, vcpu
);
275 if (er
== EMULATE_FAIL
) {
276 printk("Emulate Load from MMIO space failed\n");
277 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
280 run
->exit_reason
= KVM_EXIT_MMIO
;
285 ("Address Error (LOAD): cause %#lx, PC: %p, BadVaddr: %#lx\n",
286 cause
, opc
, badvaddr
);
287 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
294 static int kvm_trap_emul_handle_syscall(struct kvm_vcpu
*vcpu
)
296 struct kvm_run
*run
= vcpu
->run
;
297 uint32_t __user
*opc
= (uint32_t __user
*) vcpu
->arch
.pc
;
298 unsigned long cause
= vcpu
->arch
.host_cp0_cause
;
299 enum emulation_result er
= EMULATE_DONE
;
300 int ret
= RESUME_GUEST
;
302 er
= kvm_mips_emulate_syscall(cause
, opc
, run
, vcpu
);
303 if (er
== EMULATE_DONE
)
306 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
312 static int kvm_trap_emul_handle_res_inst(struct kvm_vcpu
*vcpu
)
314 struct kvm_run
*run
= vcpu
->run
;
315 uint32_t __user
*opc
= (uint32_t __user
*) vcpu
->arch
.pc
;
316 unsigned long cause
= vcpu
->arch
.host_cp0_cause
;
317 enum emulation_result er
= EMULATE_DONE
;
318 int ret
= RESUME_GUEST
;
320 er
= kvm_mips_handle_ri(cause
, opc
, run
, vcpu
);
321 if (er
== EMULATE_DONE
)
324 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
330 static int kvm_trap_emul_handle_break(struct kvm_vcpu
*vcpu
)
332 struct kvm_run
*run
= vcpu
->run
;
333 uint32_t __user
*opc
= (uint32_t __user
*) vcpu
->arch
.pc
;
334 unsigned long cause
= vcpu
->arch
.host_cp0_cause
;
335 enum emulation_result er
= EMULATE_DONE
;
336 int ret
= RESUME_GUEST
;
338 er
= kvm_mips_emulate_bp_exc(cause
, opc
, run
, vcpu
);
339 if (er
== EMULATE_DONE
)
342 run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
348 static int kvm_trap_emul_vm_init(struct kvm
*kvm
)
353 static int kvm_trap_emul_vcpu_init(struct kvm_vcpu
*vcpu
)
358 static int kvm_trap_emul_vcpu_setup(struct kvm_vcpu
*vcpu
)
360 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
362 int vcpu_id
= vcpu
->vcpu_id
;
364 /* Arch specific stuff, set up config registers properly so that the
365 * guest will come up as expected, for now we simulate a
368 kvm_write_c0_guest_prid(cop0
, 0x00019300);
369 kvm_write_c0_guest_config(cop0
,
370 MIPS_CONFIG0
| (0x1 << CP0C0_AR
) |
371 (MMU_TYPE_R4000
<< CP0C0_MT
));
373 /* Read the cache characteristics from the host Config1 Register */
374 config1
= (read_c0_config1() & ~0x7f);
376 /* Set up MMU size */
377 config1
&= ~(0x3f << 25);
378 config1
|= ((KVM_MIPS_GUEST_TLB_SIZE
- 1) << 25);
380 /* We unset some bits that we aren't emulating */
382 ~((1 << CP0C1_C2
) | (1 << CP0C1_MD
) | (1 << CP0C1_PC
) |
383 (1 << CP0C1_WR
) | (1 << CP0C1_CA
));
384 kvm_write_c0_guest_config1(cop0
, config1
);
386 kvm_write_c0_guest_config2(cop0
, MIPS_CONFIG2
);
387 /* MIPS_CONFIG2 | (read_c0_config2() & 0xfff) */
388 kvm_write_c0_guest_config3(cop0
,
389 MIPS_CONFIG3
| (0 << CP0C3_VInt
) | (1 <<
392 /* Set Wait IE/IXMT Ignore in Config7, IAR, AR */
393 kvm_write_c0_guest_config7(cop0
, (MIPS_CONF7_WII
) | (1 << 10));
395 /* Setup IntCtl defaults, compatibilty mode for timer interrupts (HW5) */
396 kvm_write_c0_guest_intctl(cop0
, 0xFC000000);
398 /* Put in vcpu id as CPUNum into Ebase Reg to handle SMP Guests */
399 kvm_write_c0_guest_ebase(cop0
, KVM_GUEST_KSEG0
| (vcpu_id
& 0xFF));
404 static struct kvm_mips_callbacks kvm_trap_emul_callbacks
= {
406 .handle_cop_unusable
= kvm_trap_emul_handle_cop_unusable
,
407 .handle_tlb_mod
= kvm_trap_emul_handle_tlb_mod
,
408 .handle_tlb_st_miss
= kvm_trap_emul_handle_tlb_st_miss
,
409 .handle_tlb_ld_miss
= kvm_trap_emul_handle_tlb_ld_miss
,
410 .handle_addr_err_st
= kvm_trap_emul_handle_addr_err_st
,
411 .handle_addr_err_ld
= kvm_trap_emul_handle_addr_err_ld
,
412 .handle_syscall
= kvm_trap_emul_handle_syscall
,
413 .handle_res_inst
= kvm_trap_emul_handle_res_inst
,
414 .handle_break
= kvm_trap_emul_handle_break
,
416 .vm_init
= kvm_trap_emul_vm_init
,
417 .vcpu_init
= kvm_trap_emul_vcpu_init
,
418 .vcpu_setup
= kvm_trap_emul_vcpu_setup
,
419 .gva_to_gpa
= kvm_trap_emul_gva_to_gpa_cb
,
420 .queue_timer_int
= kvm_mips_queue_timer_int_cb
,
421 .dequeue_timer_int
= kvm_mips_dequeue_timer_int_cb
,
422 .queue_io_int
= kvm_mips_queue_io_int_cb
,
423 .dequeue_io_int
= kvm_mips_dequeue_io_int_cb
,
424 .irq_deliver
= kvm_mips_irq_deliver_cb
,
425 .irq_clear
= kvm_mips_irq_clear_cb
,
428 int kvm_mips_emulation_init(struct kvm_mips_callbacks
**install_callbacks
)
430 *install_callbacks
= &kvm_trap_emul_callbacks
;