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: Instruction/Exception emulation
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/ktime.h>
15 #include <linux/kvm_host.h>
16 #include <linux/vmalloc.h>
18 #include <linux/memblock.h>
19 #include <linux/random.h>
21 #include <asm/cacheflush.h>
22 #include <asm/cacheops.h>
23 #include <asm/cpu-info.h>
24 #include <asm/mmu_context.h>
25 #include <asm/tlbflush.h>
29 #include <asm/r4kcache.h>
30 #define CONFIG_MIPS_MT
32 #include "interrupt.h"
38 * Compute the return address and do emulate branch simulation, if required.
39 * This function should be called only in branch delay slot active.
41 static int kvm_compute_return_epc(struct kvm_vcpu
*vcpu
, unsigned long instpc
,
44 unsigned int dspcontrol
;
45 union mips_instruction insn
;
46 struct kvm_vcpu_arch
*arch
= &vcpu
->arch
;
52 kvm_err("%s: unaligned epc\n", __func__
);
56 /* Read the instruction */
57 err
= kvm_get_badinstrp((u32
*)epc
, vcpu
, &insn
.word
);
61 switch (insn
.i_format
.opcode
) {
62 /* jr and jalr are in r_format format. */
64 switch (insn
.r_format
.func
) {
66 arch
->gprs
[insn
.r_format
.rd
] = epc
+ 8;
69 nextpc
= arch
->gprs
[insn
.r_format
.rs
];
77 * This group contains:
78 * bltz_op, bgez_op, bltzl_op, bgezl_op,
79 * bltzal_op, bgezal_op, bltzall_op, bgezall_op.
82 switch (insn
.i_format
.rt
) {
85 if ((long)arch
->gprs
[insn
.i_format
.rs
] < 0)
86 epc
= epc
+ 4 + (insn
.i_format
.simmediate
<< 2);
94 if ((long)arch
->gprs
[insn
.i_format
.rs
] >= 0)
95 epc
= epc
+ 4 + (insn
.i_format
.simmediate
<< 2);
103 arch
->gprs
[31] = epc
+ 8;
104 if ((long)arch
->gprs
[insn
.i_format
.rs
] < 0)
105 epc
= epc
+ 4 + (insn
.i_format
.simmediate
<< 2);
113 arch
->gprs
[31] = epc
+ 8;
114 if ((long)arch
->gprs
[insn
.i_format
.rs
] >= 0)
115 epc
= epc
+ 4 + (insn
.i_format
.simmediate
<< 2);
122 kvm_err("%s: DSP branch but not DSP ASE\n",
127 dspcontrol
= rddsp(0x01);
129 if (dspcontrol
>= 32)
130 epc
= epc
+ 4 + (insn
.i_format
.simmediate
<< 2);
140 /* These are unconditional and in j_format. */
142 arch
->gprs
[31] = instpc
+ 8;
148 epc
|= (insn
.j_format
.target
<< 2);
152 /* These are conditional and in i_format. */
155 if (arch
->gprs
[insn
.i_format
.rs
] ==
156 arch
->gprs
[insn
.i_format
.rt
])
157 epc
= epc
+ 4 + (insn
.i_format
.simmediate
<< 2);
165 if (arch
->gprs
[insn
.i_format
.rs
] !=
166 arch
->gprs
[insn
.i_format
.rt
])
167 epc
= epc
+ 4 + (insn
.i_format
.simmediate
<< 2);
173 case blez_op
: /* POP06 */
174 #ifndef CONFIG_CPU_MIPSR6
175 case blezl_op
: /* removed in R6 */
177 if (insn
.i_format
.rt
!= 0)
179 if ((long)arch
->gprs
[insn
.i_format
.rs
] <= 0)
180 epc
= epc
+ 4 + (insn
.i_format
.simmediate
<< 2);
186 case bgtz_op
: /* POP07 */
187 #ifndef CONFIG_CPU_MIPSR6
188 case bgtzl_op
: /* removed in R6 */
190 if (insn
.i_format
.rt
!= 0)
192 if ((long)arch
->gprs
[insn
.i_format
.rs
] > 0)
193 epc
= epc
+ 4 + (insn
.i_format
.simmediate
<< 2);
199 /* And now the FPA/cp1 branch instructions. */
201 kvm_err("%s: unsupported cop1_op\n", __func__
);
204 #ifdef CONFIG_CPU_MIPSR6
205 /* R6 added the following compact branches with forbidden slots */
206 case blezl_op
: /* POP26 */
207 case bgtzl_op
: /* POP27 */
208 /* only rt == 0 isn't compact branch */
209 if (insn
.i_format
.rt
!= 0)
214 /* only rs == rt == 0 is reserved, rest are compact branches */
215 if (insn
.i_format
.rs
!= 0 || insn
.i_format
.rt
!= 0)
220 /* only rs == 0 isn't compact branch */
221 if (insn
.i_format
.rs
!= 0)
226 * If we've hit an exception on the forbidden slot, then
227 * the branch must not have been taken.
234 /* Fall through - Compact branches not supported before R6 */
244 enum emulation_result
update_pc(struct kvm_vcpu
*vcpu
, u32 cause
)
248 if (cause
& CAUSEF_BD
) {
249 err
= kvm_compute_return_epc(vcpu
, vcpu
->arch
.pc
,
257 kvm_debug("update_pc(): New PC: %#lx\n", vcpu
->arch
.pc
);
263 * kvm_get_badinstr() - Get bad instruction encoding.
264 * @opc: Guest pointer to faulting instruction.
265 * @vcpu: KVM VCPU information.
267 * Gets the instruction encoding of the faulting instruction, using the saved
268 * BadInstr register value if it exists, otherwise falling back to reading guest
271 * Returns: The instruction encoding of the faulting instruction.
273 int kvm_get_badinstr(u32
*opc
, struct kvm_vcpu
*vcpu
, u32
*out
)
275 if (cpu_has_badinstr
) {
276 *out
= vcpu
->arch
.host_cp0_badinstr
;
279 return kvm_get_inst(opc
, vcpu
, out
);
284 * kvm_get_badinstrp() - Get bad prior instruction encoding.
285 * @opc: Guest pointer to prior faulting instruction.
286 * @vcpu: KVM VCPU information.
288 * Gets the instruction encoding of the prior faulting instruction (the branch
289 * containing the delay slot which faulted), using the saved BadInstrP register
290 * value if it exists, otherwise falling back to reading guest memory at @opc.
292 * Returns: The instruction encoding of the prior faulting instruction.
294 int kvm_get_badinstrp(u32
*opc
, struct kvm_vcpu
*vcpu
, u32
*out
)
296 if (cpu_has_badinstrp
) {
297 *out
= vcpu
->arch
.host_cp0_badinstrp
;
300 return kvm_get_inst(opc
, vcpu
, out
);
305 * kvm_mips_count_disabled() - Find whether the CP0_Count timer is disabled.
306 * @vcpu: Virtual CPU.
308 * Returns: 1 if the CP0_Count timer is disabled by either the guest
309 * CP0_Cause.DC bit or the count_ctl.DC bit.
310 * 0 otherwise (in which case CP0_Count timer is running).
312 int kvm_mips_count_disabled(struct kvm_vcpu
*vcpu
)
314 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
316 return (vcpu
->arch
.count_ctl
& KVM_REG_MIPS_COUNT_CTL_DC
) ||
317 (kvm_read_c0_guest_cause(cop0
) & CAUSEF_DC
);
321 * kvm_mips_ktime_to_count() - Scale ktime_t to a 32-bit count.
323 * Caches the dynamic nanosecond bias in vcpu->arch.count_dyn_bias.
325 * Assumes !kvm_mips_count_disabled(@vcpu) (guest CP0_Count timer is running).
327 static u32
kvm_mips_ktime_to_count(struct kvm_vcpu
*vcpu
, ktime_t now
)
332 now_ns
= ktime_to_ns(now
);
333 delta
= now_ns
+ vcpu
->arch
.count_dyn_bias
;
335 if (delta
>= vcpu
->arch
.count_period
) {
336 /* If delta is out of safe range the bias needs adjusting */
337 periods
= div64_s64(now_ns
, vcpu
->arch
.count_period
);
338 vcpu
->arch
.count_dyn_bias
= -periods
* vcpu
->arch
.count_period
;
339 /* Recalculate delta with new bias */
340 delta
= now_ns
+ vcpu
->arch
.count_dyn_bias
;
344 * We've ensured that:
345 * delta < count_period
347 * Therefore the intermediate delta*count_hz will never overflow since
348 * at the boundary condition:
349 * delta = count_period
350 * delta = NSEC_PER_SEC * 2^32 / count_hz
351 * delta * count_hz = NSEC_PER_SEC * 2^32
353 return div_u64(delta
* vcpu
->arch
.count_hz
, NSEC_PER_SEC
);
357 * kvm_mips_count_time() - Get effective current time.
358 * @vcpu: Virtual CPU.
360 * Get effective monotonic ktime. This is usually a straightforward ktime_get(),
361 * except when the master disable bit is set in count_ctl, in which case it is
362 * count_resume, i.e. the time that the count was disabled.
364 * Returns: Effective monotonic ktime for CP0_Count.
366 static inline ktime_t
kvm_mips_count_time(struct kvm_vcpu
*vcpu
)
368 if (unlikely(vcpu
->arch
.count_ctl
& KVM_REG_MIPS_COUNT_CTL_DC
))
369 return vcpu
->arch
.count_resume
;
375 * kvm_mips_read_count_running() - Read the current count value as if running.
376 * @vcpu: Virtual CPU.
377 * @now: Kernel time to read CP0_Count at.
379 * Returns the current guest CP0_Count register at time @now and handles if the
380 * timer interrupt is pending and hasn't been handled yet.
382 * Returns: The current value of the guest CP0_Count register.
384 static u32
kvm_mips_read_count_running(struct kvm_vcpu
*vcpu
, ktime_t now
)
386 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
387 ktime_t expires
, threshold
;
391 /* Calculate the biased and scaled guest CP0_Count */
392 count
= vcpu
->arch
.count_bias
+ kvm_mips_ktime_to_count(vcpu
, now
);
393 compare
= kvm_read_c0_guest_compare(cop0
);
396 * Find whether CP0_Count has reached the closest timer interrupt. If
397 * not, we shouldn't inject it.
399 if ((s32
)(count
- compare
) < 0)
403 * The CP0_Count we're going to return has already reached the closest
404 * timer interrupt. Quickly check if it really is a new interrupt by
405 * looking at whether the interval until the hrtimer expiry time is
406 * less than 1/4 of the timer period.
408 expires
= hrtimer_get_expires(&vcpu
->arch
.comparecount_timer
);
409 threshold
= ktime_add_ns(now
, vcpu
->arch
.count_period
/ 4);
410 if (ktime_before(expires
, threshold
)) {
412 * Cancel it while we handle it so there's no chance of
413 * interference with the timeout handler.
415 running
= hrtimer_cancel(&vcpu
->arch
.comparecount_timer
);
417 /* Nothing should be waiting on the timeout */
418 kvm_mips_callbacks
->queue_timer_int(vcpu
);
421 * Restart the timer if it was running based on the expiry time
422 * we read, so that we don't push it back 2 periods.
425 expires
= ktime_add_ns(expires
,
426 vcpu
->arch
.count_period
);
427 hrtimer_start(&vcpu
->arch
.comparecount_timer
, expires
,
436 * kvm_mips_read_count() - Read the current count value.
437 * @vcpu: Virtual CPU.
439 * Read the current guest CP0_Count value, taking into account whether the timer
442 * Returns: The current guest CP0_Count value.
444 u32
kvm_mips_read_count(struct kvm_vcpu
*vcpu
)
446 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
448 /* If count disabled just read static copy of count */
449 if (kvm_mips_count_disabled(vcpu
))
450 return kvm_read_c0_guest_count(cop0
);
452 return kvm_mips_read_count_running(vcpu
, ktime_get());
456 * kvm_mips_freeze_hrtimer() - Safely stop the hrtimer.
457 * @vcpu: Virtual CPU.
458 * @count: Output pointer for CP0_Count value at point of freeze.
460 * Freeze the hrtimer safely and return both the ktime and the CP0_Count value
461 * at the point it was frozen. It is guaranteed that any pending interrupts at
462 * the point it was frozen are handled, and none after that point.
464 * This is useful where the time/CP0_Count is needed in the calculation of the
467 * Assumes !kvm_mips_count_disabled(@vcpu) (guest CP0_Count timer is running).
469 * Returns: The ktime at the point of freeze.
471 ktime_t
kvm_mips_freeze_hrtimer(struct kvm_vcpu
*vcpu
, u32
*count
)
475 /* stop hrtimer before finding time */
476 hrtimer_cancel(&vcpu
->arch
.comparecount_timer
);
479 /* find count at this point and handle pending hrtimer */
480 *count
= kvm_mips_read_count_running(vcpu
, now
);
486 * kvm_mips_resume_hrtimer() - Resume hrtimer, updating expiry.
487 * @vcpu: Virtual CPU.
488 * @now: ktime at point of resume.
489 * @count: CP0_Count at point of resume.
491 * Resumes the timer and updates the timer expiry based on @now and @count.
492 * This can be used in conjunction with kvm_mips_freeze_timer() when timer
493 * parameters need to be changed.
495 * It is guaranteed that a timer interrupt immediately after resume will be
496 * handled, but not if CP_Compare is exactly at @count. That case is already
497 * handled by kvm_mips_freeze_timer().
499 * Assumes !kvm_mips_count_disabled(@vcpu) (guest CP0_Count timer is running).
501 static void kvm_mips_resume_hrtimer(struct kvm_vcpu
*vcpu
,
502 ktime_t now
, u32 count
)
504 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
509 /* Calculate timeout (wrap 0 to 2^32) */
510 compare
= kvm_read_c0_guest_compare(cop0
);
511 delta
= (u64
)(u32
)(compare
- count
- 1) + 1;
512 delta
= div_u64(delta
* NSEC_PER_SEC
, vcpu
->arch
.count_hz
);
513 expire
= ktime_add_ns(now
, delta
);
515 /* Update hrtimer to use new timeout */
516 hrtimer_cancel(&vcpu
->arch
.comparecount_timer
);
517 hrtimer_start(&vcpu
->arch
.comparecount_timer
, expire
, HRTIMER_MODE_ABS
);
521 * kvm_mips_restore_hrtimer() - Restore hrtimer after a gap, updating expiry.
522 * @vcpu: Virtual CPU.
523 * @before: Time before Count was saved, lower bound of drift calculation.
524 * @count: CP0_Count at point of restore.
525 * @min_drift: Minimum amount of drift permitted before correction.
528 * Restores the timer from a particular @count, accounting for drift. This can
529 * be used in conjunction with kvm_mips_freeze_timer() when a hardware timer is
530 * to be used for a period of time, but the exact ktime corresponding to the
531 * final Count that must be restored is not known.
533 * It is gauranteed that a timer interrupt immediately after restore will be
534 * handled, but not if CP0_Compare is exactly at @count. That case should
535 * already be handled when the hardware timer state is saved.
537 * Assumes !kvm_mips_count_disabled(@vcpu) (guest CP0_Count timer is not
540 * Returns: Amount of correction to count_bias due to drift.
542 int kvm_mips_restore_hrtimer(struct kvm_vcpu
*vcpu
, ktime_t before
,
543 u32 count
, int min_drift
)
545 ktime_t now
, count_time
;
546 u32 now_count
, before_count
;
550 /* Calculate expected count at before */
551 before_count
= vcpu
->arch
.count_bias
+
552 kvm_mips_ktime_to_count(vcpu
, before
);
555 * Detect significantly negative drift, where count is lower than
556 * expected. Some negative drift is expected when hardware counter is
557 * set after kvm_mips_freeze_timer(), and it is harmless to allow the
558 * time to jump forwards a little, within reason. If the drift is too
559 * significant, adjust the bias to avoid a big Guest.CP0_Count jump.
561 drift
= count
- before_count
;
562 if (drift
< min_drift
) {
564 vcpu
->arch
.count_bias
+= drift
;
569 /* Calculate expected count right now */
571 now_count
= vcpu
->arch
.count_bias
+ kvm_mips_ktime_to_count(vcpu
, now
);
574 * Detect positive drift, where count is higher than expected, and
575 * adjust the bias to avoid guest time going backwards.
577 drift
= count
- now_count
;
580 vcpu
->arch
.count_bias
+= drift
;
585 /* Subtract nanosecond delta to find ktime when count was read */
586 delta
= (u64
)(u32
)(now_count
- count
);
587 delta
= div_u64(delta
* NSEC_PER_SEC
, vcpu
->arch
.count_hz
);
588 count_time
= ktime_sub_ns(now
, delta
);
591 /* Resume using the calculated ktime */
592 kvm_mips_resume_hrtimer(vcpu
, count_time
, count
);
597 * kvm_mips_write_count() - Modify the count and update timer.
598 * @vcpu: Virtual CPU.
599 * @count: Guest CP0_Count value to set.
601 * Sets the CP0_Count value and updates the timer accordingly.
603 void kvm_mips_write_count(struct kvm_vcpu
*vcpu
, u32 count
)
605 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
609 now
= kvm_mips_count_time(vcpu
);
610 vcpu
->arch
.count_bias
= count
- kvm_mips_ktime_to_count(vcpu
, now
);
612 if (kvm_mips_count_disabled(vcpu
))
613 /* The timer's disabled, adjust the static count */
614 kvm_write_c0_guest_count(cop0
, count
);
617 kvm_mips_resume_hrtimer(vcpu
, now
, count
);
621 * kvm_mips_init_count() - Initialise timer.
622 * @vcpu: Virtual CPU.
623 * @count_hz: Frequency of timer.
625 * Initialise the timer to the specified frequency, zero it, and set it going if
628 void kvm_mips_init_count(struct kvm_vcpu
*vcpu
, unsigned long count_hz
)
630 vcpu
->arch
.count_hz
= count_hz
;
631 vcpu
->arch
.count_period
= div_u64((u64
)NSEC_PER_SEC
<< 32, count_hz
);
632 vcpu
->arch
.count_dyn_bias
= 0;
635 kvm_mips_write_count(vcpu
, 0);
639 * kvm_mips_set_count_hz() - Update the frequency of the timer.
640 * @vcpu: Virtual CPU.
641 * @count_hz: Frequency of CP0_Count timer in Hz.
643 * Change the frequency of the CP0_Count timer. This is done atomically so that
644 * CP0_Count is continuous and no timer interrupt is lost.
646 * Returns: -EINVAL if @count_hz is out of range.
649 int kvm_mips_set_count_hz(struct kvm_vcpu
*vcpu
, s64 count_hz
)
651 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
656 /* ensure the frequency is in a sensible range... */
657 if (count_hz
<= 0 || count_hz
> NSEC_PER_SEC
)
659 /* ... and has actually changed */
660 if (vcpu
->arch
.count_hz
== count_hz
)
663 /* Safely freeze timer so we can keep it continuous */
664 dc
= kvm_mips_count_disabled(vcpu
);
666 now
= kvm_mips_count_time(vcpu
);
667 count
= kvm_read_c0_guest_count(cop0
);
669 now
= kvm_mips_freeze_hrtimer(vcpu
, &count
);
672 /* Update the frequency */
673 vcpu
->arch
.count_hz
= count_hz
;
674 vcpu
->arch
.count_period
= div_u64((u64
)NSEC_PER_SEC
<< 32, count_hz
);
675 vcpu
->arch
.count_dyn_bias
= 0;
677 /* Calculate adjusted bias so dynamic count is unchanged */
678 vcpu
->arch
.count_bias
= count
- kvm_mips_ktime_to_count(vcpu
, now
);
680 /* Update and resume hrtimer */
682 kvm_mips_resume_hrtimer(vcpu
, now
, count
);
687 * kvm_mips_write_compare() - Modify compare and update timer.
688 * @vcpu: Virtual CPU.
689 * @compare: New CP0_Compare value.
690 * @ack: Whether to acknowledge timer interrupt.
692 * Update CP0_Compare to a new value and update the timeout.
693 * If @ack, atomically acknowledge any pending timer interrupt, otherwise ensure
694 * any pending timer interrupt is preserved.
696 void kvm_mips_write_compare(struct kvm_vcpu
*vcpu
, u32 compare
, bool ack
)
698 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
700 u32 old_compare
= kvm_read_c0_guest_compare(cop0
);
701 s32 delta
= compare
- old_compare
;
703 ktime_t now
= ktime_set(0, 0); /* silence bogus GCC warning */
706 /* if unchanged, must just be an ack */
707 if (old_compare
== compare
) {
710 kvm_mips_callbacks
->dequeue_timer_int(vcpu
);
711 kvm_write_c0_guest_compare(cop0
, compare
);
716 * If guest CP0_Compare moves forward, CP0_GTOffset should be adjusted
717 * too to prevent guest CP0_Count hitting guest CP0_Compare.
719 * The new GTOffset corresponds to the new value of CP0_Compare, and is
720 * set prior to it being written into the guest context. We disable
721 * preemption until the new value is written to prevent restore of a
722 * GTOffset corresponding to the old CP0_Compare value.
724 if (IS_ENABLED(CONFIG_KVM_MIPS_VZ
) && delta
> 0) {
726 write_c0_gtoffset(compare
- read_c0_count());
727 back_to_back_c0_hazard();
730 /* freeze_hrtimer() takes care of timer interrupts <= count */
731 dc
= kvm_mips_count_disabled(vcpu
);
733 now
= kvm_mips_freeze_hrtimer(vcpu
, &count
);
736 kvm_mips_callbacks
->dequeue_timer_int(vcpu
);
737 else if (IS_ENABLED(CONFIG_KVM_MIPS_VZ
))
739 * With VZ, writing CP0_Compare acks (clears) CP0_Cause.TI, so
740 * preserve guest CP0_Cause.TI if we don't want to ack it.
742 cause
= kvm_read_c0_guest_cause(cop0
);
744 kvm_write_c0_guest_compare(cop0
, compare
);
746 if (IS_ENABLED(CONFIG_KVM_MIPS_VZ
)) {
750 back_to_back_c0_hazard();
752 if (!ack
&& cause
& CAUSEF_TI
)
753 kvm_write_c0_guest_cause(cop0
, cause
);
756 /* resume_hrtimer() takes care of timer interrupts > count */
758 kvm_mips_resume_hrtimer(vcpu
, now
, count
);
761 * If guest CP0_Compare is moving backward, we delay CP0_GTOffset change
762 * until after the new CP0_Compare is written, otherwise new guest
763 * CP0_Count could hit new guest CP0_Compare.
765 if (IS_ENABLED(CONFIG_KVM_MIPS_VZ
) && delta
<= 0)
766 write_c0_gtoffset(compare
- read_c0_count());
770 * kvm_mips_count_disable() - Disable count.
771 * @vcpu: Virtual CPU.
773 * Disable the CP0_Count timer. A timer interrupt on or before the final stop
774 * time will be handled but not after.
776 * Assumes CP0_Count was previously enabled but now Guest.CP0_Cause.DC or
777 * count_ctl.DC has been set (count disabled).
779 * Returns: The time that the timer was stopped.
781 static ktime_t
kvm_mips_count_disable(struct kvm_vcpu
*vcpu
)
783 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
788 hrtimer_cancel(&vcpu
->arch
.comparecount_timer
);
790 /* Set the static count from the dynamic count, handling pending TI */
792 count
= kvm_mips_read_count_running(vcpu
, now
);
793 kvm_write_c0_guest_count(cop0
, count
);
799 * kvm_mips_count_disable_cause() - Disable count using CP0_Cause.DC.
800 * @vcpu: Virtual CPU.
802 * Disable the CP0_Count timer and set CP0_Cause.DC. A timer interrupt on or
803 * before the final stop time will be handled if the timer isn't disabled by
804 * count_ctl.DC, but not after.
806 * Assumes CP0_Cause.DC is clear (count enabled).
808 void kvm_mips_count_disable_cause(struct kvm_vcpu
*vcpu
)
810 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
812 kvm_set_c0_guest_cause(cop0
, CAUSEF_DC
);
813 if (!(vcpu
->arch
.count_ctl
& KVM_REG_MIPS_COUNT_CTL_DC
))
814 kvm_mips_count_disable(vcpu
);
818 * kvm_mips_count_enable_cause() - Enable count using CP0_Cause.DC.
819 * @vcpu: Virtual CPU.
821 * Enable the CP0_Count timer and clear CP0_Cause.DC. A timer interrupt after
822 * the start time will be handled if the timer isn't disabled by count_ctl.DC,
823 * potentially before even returning, so the caller should be careful with
824 * ordering of CP0_Cause modifications so as not to lose it.
826 * Assumes CP0_Cause.DC is set (count disabled).
828 void kvm_mips_count_enable_cause(struct kvm_vcpu
*vcpu
)
830 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
833 kvm_clear_c0_guest_cause(cop0
, CAUSEF_DC
);
836 * Set the dynamic count to match the static count.
837 * This starts the hrtimer if count_ctl.DC allows it.
838 * Otherwise it conveniently updates the biases.
840 count
= kvm_read_c0_guest_count(cop0
);
841 kvm_mips_write_count(vcpu
, count
);
845 * kvm_mips_set_count_ctl() - Update the count control KVM register.
846 * @vcpu: Virtual CPU.
847 * @count_ctl: Count control register new value.
849 * Set the count control KVM register. The timer is updated accordingly.
851 * Returns: -EINVAL if reserved bits are set.
854 int kvm_mips_set_count_ctl(struct kvm_vcpu
*vcpu
, s64 count_ctl
)
856 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
857 s64 changed
= count_ctl
^ vcpu
->arch
.count_ctl
;
862 /* Only allow defined bits to be changed */
863 if (changed
& ~(s64
)(KVM_REG_MIPS_COUNT_CTL_DC
))
866 /* Apply new value */
867 vcpu
->arch
.count_ctl
= count_ctl
;
869 /* Master CP0_Count disable */
870 if (changed
& KVM_REG_MIPS_COUNT_CTL_DC
) {
871 /* Is CP0_Cause.DC already disabling CP0_Count? */
872 if (kvm_read_c0_guest_cause(cop0
) & CAUSEF_DC
) {
873 if (count_ctl
& KVM_REG_MIPS_COUNT_CTL_DC
)
874 /* Just record the current time */
875 vcpu
->arch
.count_resume
= ktime_get();
876 } else if (count_ctl
& KVM_REG_MIPS_COUNT_CTL_DC
) {
877 /* disable timer and record current time */
878 vcpu
->arch
.count_resume
= kvm_mips_count_disable(vcpu
);
881 * Calculate timeout relative to static count at resume
882 * time (wrap 0 to 2^32).
884 count
= kvm_read_c0_guest_count(cop0
);
885 compare
= kvm_read_c0_guest_compare(cop0
);
886 delta
= (u64
)(u32
)(compare
- count
- 1) + 1;
887 delta
= div_u64(delta
* NSEC_PER_SEC
,
888 vcpu
->arch
.count_hz
);
889 expire
= ktime_add_ns(vcpu
->arch
.count_resume
, delta
);
891 /* Handle pending interrupt */
893 if (ktime_compare(now
, expire
) >= 0)
894 /* Nothing should be waiting on the timeout */
895 kvm_mips_callbacks
->queue_timer_int(vcpu
);
897 /* Resume hrtimer without changing bias */
898 count
= kvm_mips_read_count_running(vcpu
, now
);
899 kvm_mips_resume_hrtimer(vcpu
, now
, count
);
907 * kvm_mips_set_count_resume() - Update the count resume KVM register.
908 * @vcpu: Virtual CPU.
909 * @count_resume: Count resume register new value.
911 * Set the count resume KVM register.
913 * Returns: -EINVAL if out of valid range (0..now).
916 int kvm_mips_set_count_resume(struct kvm_vcpu
*vcpu
, s64 count_resume
)
919 * It doesn't make sense for the resume time to be in the future, as it
920 * would be possible for the next interrupt to be more than a full
921 * period in the future.
923 if (count_resume
< 0 || count_resume
> ktime_to_ns(ktime_get()))
926 vcpu
->arch
.count_resume
= ns_to_ktime(count_resume
);
931 * kvm_mips_count_timeout() - Push timer forward on timeout.
932 * @vcpu: Virtual CPU.
934 * Handle an hrtimer event by push the hrtimer forward a period.
936 * Returns: The hrtimer_restart value to return to the hrtimer subsystem.
938 enum hrtimer_restart
kvm_mips_count_timeout(struct kvm_vcpu
*vcpu
)
940 /* Add the Count period to the current expiry time */
941 hrtimer_add_expires_ns(&vcpu
->arch
.comparecount_timer
,
942 vcpu
->arch
.count_period
);
943 return HRTIMER_RESTART
;
946 enum emulation_result
kvm_mips_emul_eret(struct kvm_vcpu
*vcpu
)
948 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
949 enum emulation_result er
= EMULATE_DONE
;
951 if (kvm_read_c0_guest_status(cop0
) & ST0_ERL
) {
952 kvm_clear_c0_guest_status(cop0
, ST0_ERL
);
953 vcpu
->arch
.pc
= kvm_read_c0_guest_errorepc(cop0
);
954 } else if (kvm_read_c0_guest_status(cop0
) & ST0_EXL
) {
955 kvm_debug("[%#lx] ERET to %#lx\n", vcpu
->arch
.pc
,
956 kvm_read_c0_guest_epc(cop0
));
957 kvm_clear_c0_guest_status(cop0
, ST0_EXL
);
958 vcpu
->arch
.pc
= kvm_read_c0_guest_epc(cop0
);
961 kvm_err("[%#lx] ERET when MIPS_SR_EXL|MIPS_SR_ERL == 0\n",
969 enum emulation_result
kvm_mips_emul_wait(struct kvm_vcpu
*vcpu
)
971 kvm_debug("[%#lx] !!!WAIT!!! (%#lx)\n", vcpu
->arch
.pc
,
972 vcpu
->arch
.pending_exceptions
);
974 ++vcpu
->stat
.wait_exits
;
975 trace_kvm_exit(vcpu
, KVM_TRACE_EXIT_WAIT
);
976 if (!vcpu
->arch
.pending_exceptions
) {
977 kvm_vz_lose_htimer(vcpu
);
979 kvm_vcpu_block(vcpu
);
982 * We we are runnable, then definitely go off to user space to
983 * check if any I/O interrupts are pending.
985 if (kvm_check_request(KVM_REQ_UNHALT
, vcpu
)) {
986 kvm_clear_request(KVM_REQ_UNHALT
, vcpu
);
987 vcpu
->run
->exit_reason
= KVM_EXIT_IRQ_WINDOW_OPEN
;
994 static void kvm_mips_change_entryhi(struct kvm_vcpu
*vcpu
,
995 unsigned long entryhi
)
997 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
998 struct mm_struct
*kern_mm
= &vcpu
->arch
.guest_kernel_mm
;
1000 u32 nasid
= entryhi
& KVM_ENTRYHI_ASID
;
1002 if (((kvm_read_c0_guest_entryhi(cop0
) & KVM_ENTRYHI_ASID
) != nasid
)) {
1003 trace_kvm_asid_change(vcpu
, kvm_read_c0_guest_entryhi(cop0
) &
1004 KVM_ENTRYHI_ASID
, nasid
);
1007 * Flush entries from the GVA page tables.
1008 * Guest user page table will get flushed lazily on re-entry to
1009 * guest user if the guest ASID actually changes.
1011 kvm_mips_flush_gva_pt(kern_mm
->pgd
, KMF_KERN
);
1014 * Regenerate/invalidate kernel MMU context.
1015 * The user MMU context will be regenerated lazily on re-entry
1016 * to guest user if the guest ASID actually changes.
1019 cpu
= smp_processor_id();
1020 get_new_mmu_context(kern_mm
);
1021 for_each_possible_cpu(i
)
1023 set_cpu_context(i
, kern_mm
, 0);
1026 kvm_write_c0_guest_entryhi(cop0
, entryhi
);
1029 enum emulation_result
kvm_mips_emul_tlbr(struct kvm_vcpu
*vcpu
)
1031 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
1032 struct kvm_mips_tlb
*tlb
;
1033 unsigned long pc
= vcpu
->arch
.pc
;
1036 index
= kvm_read_c0_guest_index(cop0
);
1037 if (index
< 0 || index
>= KVM_MIPS_GUEST_TLB_SIZE
) {
1039 kvm_debug("[%#lx] TLBR Index %#x out of range\n", pc
, index
);
1040 index
&= KVM_MIPS_GUEST_TLB_SIZE
- 1;
1043 tlb
= &vcpu
->arch
.guest_tlb
[index
];
1044 kvm_write_c0_guest_pagemask(cop0
, tlb
->tlb_mask
);
1045 kvm_write_c0_guest_entrylo0(cop0
, tlb
->tlb_lo
[0]);
1046 kvm_write_c0_guest_entrylo1(cop0
, tlb
->tlb_lo
[1]);
1047 kvm_mips_change_entryhi(vcpu
, tlb
->tlb_hi
);
1049 return EMULATE_DONE
;
1053 * kvm_mips_invalidate_guest_tlb() - Indicates a change in guest MMU map.
1054 * @vcpu: VCPU with changed mappings.
1055 * @tlb: TLB entry being removed.
1057 * This is called to indicate a single change in guest MMU mappings, so that we
1058 * can arrange TLB flushes on this and other CPUs.
1060 static void kvm_mips_invalidate_guest_tlb(struct kvm_vcpu
*vcpu
,
1061 struct kvm_mips_tlb
*tlb
)
1063 struct mm_struct
*kern_mm
= &vcpu
->arch
.guest_kernel_mm
;
1064 struct mm_struct
*user_mm
= &vcpu
->arch
.guest_user_mm
;
1068 /* No need to flush for entries which are already invalid */
1069 if (!((tlb
->tlb_lo
[0] | tlb
->tlb_lo
[1]) & ENTRYLO_V
))
1071 /* Don't touch host kernel page tables or TLB mappings */
1072 if ((unsigned long)tlb
->tlb_hi
> 0x7fffffff)
1074 /* User address space doesn't need flushing for KSeg2/3 changes */
1075 user
= tlb
->tlb_hi
< KVM_GUEST_KSEG0
;
1079 /* Invalidate page table entries */
1080 kvm_trap_emul_invalidate_gva(vcpu
, tlb
->tlb_hi
& VPN2_MASK
, user
);
1083 * Probe the shadow host TLB for the entry being overwritten, if one
1084 * matches, invalidate it
1086 kvm_mips_host_tlb_inv(vcpu
, tlb
->tlb_hi
, user
, true);
1088 /* Invalidate the whole ASID on other CPUs */
1089 cpu
= smp_processor_id();
1090 for_each_possible_cpu(i
) {
1094 set_cpu_context(i
, user_mm
, 0);
1095 set_cpu_context(i
, kern_mm
, 0);
1101 /* Write Guest TLB Entry @ Index */
1102 enum emulation_result
kvm_mips_emul_tlbwi(struct kvm_vcpu
*vcpu
)
1104 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
1105 int index
= kvm_read_c0_guest_index(cop0
);
1106 struct kvm_mips_tlb
*tlb
= NULL
;
1107 unsigned long pc
= vcpu
->arch
.pc
;
1109 if (index
< 0 || index
>= KVM_MIPS_GUEST_TLB_SIZE
) {
1110 kvm_debug("%s: illegal index: %d\n", __func__
, index
);
1111 kvm_debug("[%#lx] COP0_TLBWI [%d] (entryhi: %#lx, entrylo0: %#lx entrylo1: %#lx, mask: %#lx)\n",
1112 pc
, index
, kvm_read_c0_guest_entryhi(cop0
),
1113 kvm_read_c0_guest_entrylo0(cop0
),
1114 kvm_read_c0_guest_entrylo1(cop0
),
1115 kvm_read_c0_guest_pagemask(cop0
));
1116 index
= (index
& ~0x80000000) % KVM_MIPS_GUEST_TLB_SIZE
;
1119 tlb
= &vcpu
->arch
.guest_tlb
[index
];
1121 kvm_mips_invalidate_guest_tlb(vcpu
, tlb
);
1123 tlb
->tlb_mask
= kvm_read_c0_guest_pagemask(cop0
);
1124 tlb
->tlb_hi
= kvm_read_c0_guest_entryhi(cop0
);
1125 tlb
->tlb_lo
[0] = kvm_read_c0_guest_entrylo0(cop0
);
1126 tlb
->tlb_lo
[1] = kvm_read_c0_guest_entrylo1(cop0
);
1128 kvm_debug("[%#lx] COP0_TLBWI [%d] (entryhi: %#lx, entrylo0: %#lx entrylo1: %#lx, mask: %#lx)\n",
1129 pc
, index
, kvm_read_c0_guest_entryhi(cop0
),
1130 kvm_read_c0_guest_entrylo0(cop0
),
1131 kvm_read_c0_guest_entrylo1(cop0
),
1132 kvm_read_c0_guest_pagemask(cop0
));
1134 return EMULATE_DONE
;
1137 /* Write Guest TLB Entry @ Random Index */
1138 enum emulation_result
kvm_mips_emul_tlbwr(struct kvm_vcpu
*vcpu
)
1140 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
1141 struct kvm_mips_tlb
*tlb
= NULL
;
1142 unsigned long pc
= vcpu
->arch
.pc
;
1145 index
= prandom_u32_max(KVM_MIPS_GUEST_TLB_SIZE
);
1146 tlb
= &vcpu
->arch
.guest_tlb
[index
];
1148 kvm_mips_invalidate_guest_tlb(vcpu
, tlb
);
1150 tlb
->tlb_mask
= kvm_read_c0_guest_pagemask(cop0
);
1151 tlb
->tlb_hi
= kvm_read_c0_guest_entryhi(cop0
);
1152 tlb
->tlb_lo
[0] = kvm_read_c0_guest_entrylo0(cop0
);
1153 tlb
->tlb_lo
[1] = kvm_read_c0_guest_entrylo1(cop0
);
1155 kvm_debug("[%#lx] COP0_TLBWR[%d] (entryhi: %#lx, entrylo0: %#lx entrylo1: %#lx)\n",
1156 pc
, index
, kvm_read_c0_guest_entryhi(cop0
),
1157 kvm_read_c0_guest_entrylo0(cop0
),
1158 kvm_read_c0_guest_entrylo1(cop0
));
1160 return EMULATE_DONE
;
1163 enum emulation_result
kvm_mips_emul_tlbp(struct kvm_vcpu
*vcpu
)
1165 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
1166 long entryhi
= kvm_read_c0_guest_entryhi(cop0
);
1167 unsigned long pc
= vcpu
->arch
.pc
;
1170 index
= kvm_mips_guest_tlb_lookup(vcpu
, entryhi
);
1172 kvm_write_c0_guest_index(cop0
, index
);
1174 kvm_debug("[%#lx] COP0_TLBP (entryhi: %#lx), index: %d\n", pc
, entryhi
,
1177 return EMULATE_DONE
;
1181 * kvm_mips_config1_wrmask() - Find mask of writable bits in guest Config1
1182 * @vcpu: Virtual CPU.
1184 * Finds the mask of bits which are writable in the guest's Config1 CP0
1185 * register, by userland (currently read-only to the guest).
1187 unsigned int kvm_mips_config1_wrmask(struct kvm_vcpu
*vcpu
)
1189 unsigned int mask
= 0;
1191 /* Permit FPU to be present if FPU is supported */
1192 if (kvm_mips_guest_can_have_fpu(&vcpu
->arch
))
1193 mask
|= MIPS_CONF1_FP
;
1199 * kvm_mips_config3_wrmask() - Find mask of writable bits in guest Config3
1200 * @vcpu: Virtual CPU.
1202 * Finds the mask of bits which are writable in the guest's Config3 CP0
1203 * register, by userland (currently read-only to the guest).
1205 unsigned int kvm_mips_config3_wrmask(struct kvm_vcpu
*vcpu
)
1207 /* Config4 and ULRI are optional */
1208 unsigned int mask
= MIPS_CONF_M
| MIPS_CONF3_ULRI
;
1210 /* Permit MSA to be present if MSA is supported */
1211 if (kvm_mips_guest_can_have_msa(&vcpu
->arch
))
1212 mask
|= MIPS_CONF3_MSA
;
1218 * kvm_mips_config4_wrmask() - Find mask of writable bits in guest Config4
1219 * @vcpu: Virtual CPU.
1221 * Finds the mask of bits which are writable in the guest's Config4 CP0
1222 * register, by userland (currently read-only to the guest).
1224 unsigned int kvm_mips_config4_wrmask(struct kvm_vcpu
*vcpu
)
1226 /* Config5 is optional */
1227 unsigned int mask
= MIPS_CONF_M
;
1230 mask
|= 0xfc << MIPS_CONF4_KSCREXIST_SHIFT
;
1236 * kvm_mips_config5_wrmask() - Find mask of writable bits in guest Config5
1237 * @vcpu: Virtual CPU.
1239 * Finds the mask of bits which are writable in the guest's Config5 CP0
1240 * register, by the guest itself.
1242 unsigned int kvm_mips_config5_wrmask(struct kvm_vcpu
*vcpu
)
1244 unsigned int mask
= 0;
1246 /* Permit MSAEn changes if MSA supported and enabled */
1247 if (kvm_mips_guest_has_msa(&vcpu
->arch
))
1248 mask
|= MIPS_CONF5_MSAEN
;
1251 * Permit guest FPU mode changes if FPU is enabled and the relevant
1252 * feature exists according to FIR register.
1254 if (kvm_mips_guest_has_fpu(&vcpu
->arch
)) {
1256 mask
|= MIPS_CONF5_FRE
;
1257 /* We don't support UFR or UFE */
1263 enum emulation_result
kvm_mips_emulate_CP0(union mips_instruction inst
,
1264 u32
*opc
, u32 cause
,
1265 struct kvm_run
*run
,
1266 struct kvm_vcpu
*vcpu
)
1268 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
1269 enum emulation_result er
= EMULATE_DONE
;
1271 unsigned long curr_pc
;
1274 * Update PC and hold onto current PC in case there is
1275 * an error and we want to rollback the PC
1277 curr_pc
= vcpu
->arch
.pc
;
1278 er
= update_pc(vcpu
, cause
);
1279 if (er
== EMULATE_FAIL
)
1282 if (inst
.co_format
.co
) {
1283 switch (inst
.co_format
.func
) {
1284 case tlbr_op
: /* Read indexed TLB entry */
1285 er
= kvm_mips_emul_tlbr(vcpu
);
1287 case tlbwi_op
: /* Write indexed */
1288 er
= kvm_mips_emul_tlbwi(vcpu
);
1290 case tlbwr_op
: /* Write random */
1291 er
= kvm_mips_emul_tlbwr(vcpu
);
1293 case tlbp_op
: /* TLB Probe */
1294 er
= kvm_mips_emul_tlbp(vcpu
);
1297 kvm_err("!!!COP0_RFE!!!\n");
1300 er
= kvm_mips_emul_eret(vcpu
);
1301 goto dont_update_pc
;
1303 er
= kvm_mips_emul_wait(vcpu
);
1306 er
= kvm_mips_emul_hypcall(vcpu
, inst
);
1310 rt
= inst
.c0r_format
.rt
;
1311 rd
= inst
.c0r_format
.rd
;
1312 sel
= inst
.c0r_format
.sel
;
1314 switch (inst
.c0r_format
.rs
) {
1316 #ifdef CONFIG_KVM_MIPS_DEBUG_COP0_COUNTERS
1317 cop0
->stat
[rd
][sel
]++;
1320 if ((rd
== MIPS_CP0_COUNT
) && (sel
== 0)) {
1321 vcpu
->arch
.gprs
[rt
] =
1322 (s32
)kvm_mips_read_count(vcpu
);
1323 } else if ((rd
== MIPS_CP0_ERRCTL
) && (sel
== 0)) {
1324 vcpu
->arch
.gprs
[rt
] = 0x0;
1325 #ifdef CONFIG_KVM_MIPS_DYN_TRANS
1326 kvm_mips_trans_mfc0(inst
, opc
, vcpu
);
1329 vcpu
->arch
.gprs
[rt
] = (s32
)cop0
->reg
[rd
][sel
];
1331 #ifdef CONFIG_KVM_MIPS_DYN_TRANS
1332 kvm_mips_trans_mfc0(inst
, opc
, vcpu
);
1336 trace_kvm_hwr(vcpu
, KVM_TRACE_MFC0
,
1337 KVM_TRACE_COP0(rd
, sel
),
1338 vcpu
->arch
.gprs
[rt
]);
1342 vcpu
->arch
.gprs
[rt
] = cop0
->reg
[rd
][sel
];
1344 trace_kvm_hwr(vcpu
, KVM_TRACE_DMFC0
,
1345 KVM_TRACE_COP0(rd
, sel
),
1346 vcpu
->arch
.gprs
[rt
]);
1350 #ifdef CONFIG_KVM_MIPS_DEBUG_COP0_COUNTERS
1351 cop0
->stat
[rd
][sel
]++;
1353 trace_kvm_hwr(vcpu
, KVM_TRACE_MTC0
,
1354 KVM_TRACE_COP0(rd
, sel
),
1355 vcpu
->arch
.gprs
[rt
]);
1357 if ((rd
== MIPS_CP0_TLB_INDEX
)
1358 && (vcpu
->arch
.gprs
[rt
] >=
1359 KVM_MIPS_GUEST_TLB_SIZE
)) {
1360 kvm_err("Invalid TLB Index: %ld",
1361 vcpu
->arch
.gprs
[rt
]);
1365 if ((rd
== MIPS_CP0_PRID
) && (sel
== 1)) {
1367 * Preserve core number, and keep the exception
1368 * base in guest KSeg0.
1370 kvm_change_c0_guest_ebase(cop0
, 0x1ffff000,
1371 vcpu
->arch
.gprs
[rt
]);
1372 } else if (rd
== MIPS_CP0_TLB_HI
&& sel
== 0) {
1373 kvm_mips_change_entryhi(vcpu
,
1374 vcpu
->arch
.gprs
[rt
]);
1376 /* Are we writing to COUNT */
1377 else if ((rd
== MIPS_CP0_COUNT
) && (sel
== 0)) {
1378 kvm_mips_write_count(vcpu
, vcpu
->arch
.gprs
[rt
]);
1380 } else if ((rd
== MIPS_CP0_COMPARE
) && (sel
== 0)) {
1381 /* If we are writing to COMPARE */
1382 /* Clear pending timer interrupt, if any */
1383 kvm_mips_write_compare(vcpu
,
1384 vcpu
->arch
.gprs
[rt
],
1386 } else if ((rd
== MIPS_CP0_STATUS
) && (sel
== 0)) {
1387 unsigned int old_val
, val
, change
;
1389 old_val
= kvm_read_c0_guest_status(cop0
);
1390 val
= vcpu
->arch
.gprs
[rt
];
1391 change
= val
^ old_val
;
1393 /* Make sure that the NMI bit is never set */
1397 * Don't allow CU1 or FR to be set unless FPU
1398 * capability enabled and exists in guest
1401 if (!kvm_mips_guest_has_fpu(&vcpu
->arch
))
1402 val
&= ~(ST0_CU1
| ST0_FR
);
1405 * Also don't allow FR to be set if host doesn't
1408 if (!(current_cpu_data
.fpu_id
& MIPS_FPIR_F64
))
1412 /* Handle changes in FPU mode */
1416 * FPU and Vector register state is made
1417 * UNPREDICTABLE by a change of FR, so don't
1418 * even bother saving it.
1420 if (change
& ST0_FR
)
1424 * If MSA state is already live, it is undefined
1425 * how it interacts with FR=0 FPU state, and we
1426 * don't want to hit reserved instruction
1427 * exceptions trying to save the MSA state later
1428 * when CU=1 && FR=1, so play it safe and save
1431 if (change
& ST0_CU1
&& !(val
& ST0_FR
) &&
1432 vcpu
->arch
.aux_inuse
& KVM_MIPS_AUX_MSA
)
1436 * Propagate CU1 (FPU enable) changes
1437 * immediately if the FPU context is already
1438 * loaded. When disabling we leave the context
1439 * loaded so it can be quickly enabled again in
1442 if (change
& ST0_CU1
&&
1443 vcpu
->arch
.aux_inuse
& KVM_MIPS_AUX_FPU
)
1444 change_c0_status(ST0_CU1
, val
);
1448 kvm_write_c0_guest_status(cop0
, val
);
1450 #ifdef CONFIG_KVM_MIPS_DYN_TRANS
1452 * If FPU present, we need CU1/FR bits to take
1453 * effect fairly soon.
1455 if (!kvm_mips_guest_has_fpu(&vcpu
->arch
))
1456 kvm_mips_trans_mtc0(inst
, opc
, vcpu
);
1458 } else if ((rd
== MIPS_CP0_CONFIG
) && (sel
== 5)) {
1459 unsigned int old_val
, val
, change
, wrmask
;
1461 old_val
= kvm_read_c0_guest_config5(cop0
);
1462 val
= vcpu
->arch
.gprs
[rt
];
1464 /* Only a few bits are writable in Config5 */
1465 wrmask
= kvm_mips_config5_wrmask(vcpu
);
1466 change
= (val
^ old_val
) & wrmask
;
1467 val
= old_val
^ change
;
1470 /* Handle changes in FPU/MSA modes */
1474 * Propagate FRE changes immediately if the FPU
1475 * context is already loaded.
1477 if (change
& MIPS_CONF5_FRE
&&
1478 vcpu
->arch
.aux_inuse
& KVM_MIPS_AUX_FPU
)
1479 change_c0_config5(MIPS_CONF5_FRE
, val
);
1482 * Propagate MSAEn changes immediately if the
1483 * MSA context is already loaded. When disabling
1484 * we leave the context loaded so it can be
1485 * quickly enabled again in the near future.
1487 if (change
& MIPS_CONF5_MSAEN
&&
1488 vcpu
->arch
.aux_inuse
& KVM_MIPS_AUX_MSA
)
1489 change_c0_config5(MIPS_CONF5_MSAEN
,
1494 kvm_write_c0_guest_config5(cop0
, val
);
1495 } else if ((rd
== MIPS_CP0_CAUSE
) && (sel
== 0)) {
1496 u32 old_cause
, new_cause
;
1498 old_cause
= kvm_read_c0_guest_cause(cop0
);
1499 new_cause
= vcpu
->arch
.gprs
[rt
];
1500 /* Update R/W bits */
1501 kvm_change_c0_guest_cause(cop0
, 0x08800300,
1503 /* DC bit enabling/disabling timer? */
1504 if ((old_cause
^ new_cause
) & CAUSEF_DC
) {
1505 if (new_cause
& CAUSEF_DC
)
1506 kvm_mips_count_disable_cause(vcpu
);
1508 kvm_mips_count_enable_cause(vcpu
);
1510 } else if ((rd
== MIPS_CP0_HWRENA
) && (sel
== 0)) {
1511 u32 mask
= MIPS_HWRENA_CPUNUM
|
1512 MIPS_HWRENA_SYNCISTEP
|
1516 if (kvm_read_c0_guest_config3(cop0
) &
1518 mask
|= MIPS_HWRENA_ULR
;
1519 cop0
->reg
[rd
][sel
] = vcpu
->arch
.gprs
[rt
] & mask
;
1521 cop0
->reg
[rd
][sel
] = vcpu
->arch
.gprs
[rt
];
1522 #ifdef CONFIG_KVM_MIPS_DYN_TRANS
1523 kvm_mips_trans_mtc0(inst
, opc
, vcpu
);
1529 kvm_err("!!!!!!![%#lx]dmtc_op: rt: %d, rd: %d, sel: %d!!!!!!\n",
1530 vcpu
->arch
.pc
, rt
, rd
, sel
);
1531 trace_kvm_hwr(vcpu
, KVM_TRACE_DMTC0
,
1532 KVM_TRACE_COP0(rd
, sel
),
1533 vcpu
->arch
.gprs
[rt
]);
1538 #ifdef KVM_MIPS_DEBUG_COP0_COUNTERS
1539 cop0
->stat
[MIPS_CP0_STATUS
][0]++;
1542 vcpu
->arch
.gprs
[rt
] =
1543 kvm_read_c0_guest_status(cop0
);
1545 if (inst
.mfmc0_format
.sc
) {
1546 kvm_debug("[%#lx] mfmc0_op: EI\n",
1548 kvm_set_c0_guest_status(cop0
, ST0_IE
);
1550 kvm_debug("[%#lx] mfmc0_op: DI\n",
1552 kvm_clear_c0_guest_status(cop0
, ST0_IE
);
1559 u32 css
= cop0
->reg
[MIPS_CP0_STATUS
][2] & 0xf;
1561 (cop0
->reg
[MIPS_CP0_STATUS
][2] >> 6) & 0xf;
1563 * We don't support any shadow register sets, so
1564 * SRSCtl[PSS] == SRSCtl[CSS] = 0
1570 kvm_debug("WRPGPR[%d][%d] = %#lx\n", pss
, rd
,
1571 vcpu
->arch
.gprs
[rt
]);
1572 vcpu
->arch
.gprs
[rd
] = vcpu
->arch
.gprs
[rt
];
1576 kvm_err("[%#lx]MachEmulateCP0: unsupported COP0, copz: 0x%x\n",
1577 vcpu
->arch
.pc
, inst
.c0r_format
.rs
);
1584 /* Rollback PC only if emulation was unsuccessful */
1585 if (er
== EMULATE_FAIL
)
1586 vcpu
->arch
.pc
= curr_pc
;
1590 * This is for special instructions whose emulation
1591 * updates the PC, so do not overwrite the PC under
1598 enum emulation_result
kvm_mips_emulate_store(union mips_instruction inst
,
1600 struct kvm_run
*run
,
1601 struct kvm_vcpu
*vcpu
)
1603 enum emulation_result er
;
1605 void *data
= run
->mmio
.data
;
1606 unsigned long curr_pc
;
1609 * Update PC and hold onto current PC in case there is
1610 * an error and we want to rollback the PC
1612 curr_pc
= vcpu
->arch
.pc
;
1613 er
= update_pc(vcpu
, cause
);
1614 if (er
== EMULATE_FAIL
)
1617 rt
= inst
.i_format
.rt
;
1619 run
->mmio
.phys_addr
= kvm_mips_callbacks
->gva_to_gpa(
1620 vcpu
->arch
.host_cp0_badvaddr
);
1621 if (run
->mmio
.phys_addr
== KVM_INVALID_ADDR
)
1624 switch (inst
.i_format
.opcode
) {
1625 #if defined(CONFIG_64BIT) && defined(CONFIG_KVM_MIPS_VZ)
1628 *(u64
*)data
= vcpu
->arch
.gprs
[rt
];
1630 kvm_debug("[%#lx] OP_SD: eaddr: %#lx, gpr: %#lx, data: %#llx\n",
1631 vcpu
->arch
.pc
, vcpu
->arch
.host_cp0_badvaddr
,
1632 vcpu
->arch
.gprs
[rt
], *(u64
*)data
);
1638 *(u32
*)data
= vcpu
->arch
.gprs
[rt
];
1640 kvm_debug("[%#lx] OP_SW: eaddr: %#lx, gpr: %#lx, data: %#x\n",
1641 vcpu
->arch
.pc
, vcpu
->arch
.host_cp0_badvaddr
,
1642 vcpu
->arch
.gprs
[rt
], *(u32
*)data
);
1647 *(u16
*)data
= vcpu
->arch
.gprs
[rt
];
1649 kvm_debug("[%#lx] OP_SH: eaddr: %#lx, gpr: %#lx, data: %#x\n",
1650 vcpu
->arch
.pc
, vcpu
->arch
.host_cp0_badvaddr
,
1651 vcpu
->arch
.gprs
[rt
], *(u16
*)data
);
1656 *(u8
*)data
= vcpu
->arch
.gprs
[rt
];
1658 kvm_debug("[%#lx] OP_SB: eaddr: %#lx, gpr: %#lx, data: %#x\n",
1659 vcpu
->arch
.pc
, vcpu
->arch
.host_cp0_badvaddr
,
1660 vcpu
->arch
.gprs
[rt
], *(u8
*)data
);
1664 kvm_err("Store not yet supported (inst=0x%08x)\n",
1669 run
->mmio
.is_write
= 1;
1670 vcpu
->mmio_needed
= 1;
1671 vcpu
->mmio_is_write
= 1;
1672 return EMULATE_DO_MMIO
;
1675 /* Rollback PC if emulation was unsuccessful */
1676 vcpu
->arch
.pc
= curr_pc
;
1677 return EMULATE_FAIL
;
1680 enum emulation_result
kvm_mips_emulate_load(union mips_instruction inst
,
1681 u32 cause
, struct kvm_run
*run
,
1682 struct kvm_vcpu
*vcpu
)
1684 enum emulation_result er
;
1685 unsigned long curr_pc
;
1688 rt
= inst
.i_format
.rt
;
1689 op
= inst
.i_format
.opcode
;
1692 * Find the resume PC now while we have safe and easy access to the
1693 * prior branch instruction, and save it for
1694 * kvm_mips_complete_mmio_load() to restore later.
1696 curr_pc
= vcpu
->arch
.pc
;
1697 er
= update_pc(vcpu
, cause
);
1698 if (er
== EMULATE_FAIL
)
1700 vcpu
->arch
.io_pc
= vcpu
->arch
.pc
;
1701 vcpu
->arch
.pc
= curr_pc
;
1703 vcpu
->arch
.io_gpr
= rt
;
1705 run
->mmio
.phys_addr
= kvm_mips_callbacks
->gva_to_gpa(
1706 vcpu
->arch
.host_cp0_badvaddr
);
1707 if (run
->mmio
.phys_addr
== KVM_INVALID_ADDR
)
1708 return EMULATE_FAIL
;
1710 vcpu
->mmio_needed
= 2; /* signed */
1712 #if defined(CONFIG_64BIT) && defined(CONFIG_KVM_MIPS_VZ)
1718 vcpu
->mmio_needed
= 1; /* unsigned */
1726 vcpu
->mmio_needed
= 1; /* unsigned */
1733 vcpu
->mmio_needed
= 1; /* unsigned */
1740 kvm_err("Load not yet supported (inst=0x%08x)\n",
1742 vcpu
->mmio_needed
= 0;
1743 return EMULATE_FAIL
;
1746 run
->mmio
.is_write
= 0;
1747 vcpu
->mmio_is_write
= 0;
1748 return EMULATE_DO_MMIO
;
1751 #ifndef CONFIG_KVM_MIPS_VZ
1752 static enum emulation_result
kvm_mips_guest_cache_op(int (*fn
)(unsigned long),
1753 unsigned long curr_pc
,
1755 struct kvm_run
*run
,
1756 struct kvm_vcpu
*vcpu
,
1762 /* Carefully attempt the cache operation */
1763 kvm_trap_emul_gva_lockless_begin(vcpu
);
1765 kvm_trap_emul_gva_lockless_end(vcpu
);
1768 return EMULATE_DONE
;
1771 * Try to handle the fault and retry, maybe we just raced with a
1774 switch (kvm_trap_emul_gva_fault(vcpu
, addr
, false)) {
1777 /* bad virtual or physical address */
1778 return EMULATE_FAIL
;
1780 /* no matching guest TLB */
1781 vcpu
->arch
.host_cp0_badvaddr
= addr
;
1782 vcpu
->arch
.pc
= curr_pc
;
1783 kvm_mips_emulate_tlbmiss_ld(cause
, NULL
, run
, vcpu
);
1784 return EMULATE_EXCEPT
;
1785 case KVM_MIPS_TLBINV
:
1786 /* invalid matching guest TLB */
1787 vcpu
->arch
.host_cp0_badvaddr
= addr
;
1788 vcpu
->arch
.pc
= curr_pc
;
1789 kvm_mips_emulate_tlbinv_ld(cause
, NULL
, run
, vcpu
);
1790 return EMULATE_EXCEPT
;
1797 enum emulation_result
kvm_mips_emulate_cache(union mips_instruction inst
,
1798 u32
*opc
, u32 cause
,
1799 struct kvm_run
*run
,
1800 struct kvm_vcpu
*vcpu
)
1802 enum emulation_result er
= EMULATE_DONE
;
1803 u32 cache
, op_inst
, op
, base
;
1805 struct kvm_vcpu_arch
*arch
= &vcpu
->arch
;
1807 unsigned long curr_pc
;
1810 * Update PC and hold onto current PC in case there is
1811 * an error and we want to rollback the PC
1813 curr_pc
= vcpu
->arch
.pc
;
1814 er
= update_pc(vcpu
, cause
);
1815 if (er
== EMULATE_FAIL
)
1818 base
= inst
.i_format
.rs
;
1819 op_inst
= inst
.i_format
.rt
;
1820 if (cpu_has_mips_r6
)
1821 offset
= inst
.spec3_format
.simmediate
;
1823 offset
= inst
.i_format
.simmediate
;
1824 cache
= op_inst
& CacheOp_Cache
;
1825 op
= op_inst
& CacheOp_Op
;
1827 va
= arch
->gprs
[base
] + offset
;
1829 kvm_debug("CACHE (cache: %#x, op: %#x, base[%d]: %#lx, offset: %#x\n",
1830 cache
, op
, base
, arch
->gprs
[base
], offset
);
1833 * Treat INDEX_INV as a nop, basically issued by Linux on startup to
1834 * invalidate the caches entirely by stepping through all the
1837 if (op
== Index_Writeback_Inv
) {
1838 kvm_debug("@ %#lx/%#lx CACHE (cache: %#x, op: %#x, base[%d]: %#lx, offset: %#x\n",
1839 vcpu
->arch
.pc
, vcpu
->arch
.gprs
[31], cache
, op
, base
,
1840 arch
->gprs
[base
], offset
);
1842 if (cache
== Cache_D
) {
1843 #ifdef CONFIG_CPU_R4K_CACHE_TLB
1846 switch (boot_cpu_type()) {
1847 case CPU_CAVIUM_OCTEON3
:
1848 /* locally flush icache */
1849 local_flush_icache_range(0, 0);
1852 __flush_cache_all();
1856 } else if (cache
== Cache_I
) {
1857 #ifdef CONFIG_CPU_R4K_CACHE_TLB
1860 switch (boot_cpu_type()) {
1861 case CPU_CAVIUM_OCTEON3
:
1862 /* locally flush icache */
1863 local_flush_icache_range(0, 0);
1871 kvm_err("%s: unsupported CACHE INDEX operation\n",
1873 return EMULATE_FAIL
;
1876 #ifdef CONFIG_KVM_MIPS_DYN_TRANS
1877 kvm_mips_trans_cache_index(inst
, opc
, vcpu
);
1882 /* XXXKYMA: Only a subset of cache ops are supported, used by Linux */
1883 if (op_inst
== Hit_Writeback_Inv_D
|| op_inst
== Hit_Invalidate_D
) {
1885 * Perform the dcache part of icache synchronisation on the
1888 er
= kvm_mips_guest_cache_op(protected_writeback_dcache_line
,
1889 curr_pc
, va
, run
, vcpu
, cause
);
1890 if (er
!= EMULATE_DONE
)
1892 #ifdef CONFIG_KVM_MIPS_DYN_TRANS
1894 * Replace the CACHE instruction, with a SYNCI, not the same,
1897 kvm_mips_trans_cache_va(inst
, opc
, vcpu
);
1899 } else if (op_inst
== Hit_Invalidate_I
) {
1900 /* Perform the icache synchronisation on the guest's behalf */
1901 er
= kvm_mips_guest_cache_op(protected_writeback_dcache_line
,
1902 curr_pc
, va
, run
, vcpu
, cause
);
1903 if (er
!= EMULATE_DONE
)
1905 er
= kvm_mips_guest_cache_op(protected_flush_icache_line
,
1906 curr_pc
, va
, run
, vcpu
, cause
);
1907 if (er
!= EMULATE_DONE
)
1910 #ifdef CONFIG_KVM_MIPS_DYN_TRANS
1911 /* Replace the CACHE instruction, with a SYNCI */
1912 kvm_mips_trans_cache_va(inst
, opc
, vcpu
);
1915 kvm_err("NO-OP CACHE (cache: %#x, op: %#x, base[%d]: %#lx, offset: %#x\n",
1916 cache
, op
, base
, arch
->gprs
[base
], offset
);
1921 /* Rollback PC only if emulation was unsuccessful */
1922 if (er
== EMULATE_FAIL
)
1923 vcpu
->arch
.pc
= curr_pc
;
1924 /* Guest exception needs guest to resume */
1925 if (er
== EMULATE_EXCEPT
)
1931 enum emulation_result
kvm_mips_emulate_inst(u32 cause
, u32
*opc
,
1932 struct kvm_run
*run
,
1933 struct kvm_vcpu
*vcpu
)
1935 union mips_instruction inst
;
1936 enum emulation_result er
= EMULATE_DONE
;
1939 /* Fetch the instruction. */
1940 if (cause
& CAUSEF_BD
)
1942 err
= kvm_get_badinstr(opc
, vcpu
, &inst
.word
);
1944 return EMULATE_FAIL
;
1946 switch (inst
.r_format
.opcode
) {
1948 er
= kvm_mips_emulate_CP0(inst
, opc
, cause
, run
, vcpu
);
1951 #ifndef CONFIG_CPU_MIPSR6
1953 ++vcpu
->stat
.cache_exits
;
1954 trace_kvm_exit(vcpu
, KVM_TRACE_EXIT_CACHE
);
1955 er
= kvm_mips_emulate_cache(inst
, opc
, cause
, run
, vcpu
);
1959 switch (inst
.spec3_format
.func
) {
1961 ++vcpu
->stat
.cache_exits
;
1962 trace_kvm_exit(vcpu
, KVM_TRACE_EXIT_CACHE
);
1963 er
= kvm_mips_emulate_cache(inst
, opc
, cause
, run
,
1974 kvm_err("Instruction emulation not supported (%p/%#x)\n", opc
,
1976 kvm_arch_vcpu_dump_regs(vcpu
);
1983 #endif /* CONFIG_KVM_MIPS_VZ */
1986 * kvm_mips_guest_exception_base() - Find guest exception vector base address.
1988 * Returns: The base address of the current guest exception vector, taking
1989 * both Guest.CP0_Status.BEV and Guest.CP0_EBase into account.
1991 long kvm_mips_guest_exception_base(struct kvm_vcpu
*vcpu
)
1993 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
1995 if (kvm_read_c0_guest_status(cop0
) & ST0_BEV
)
1996 return KVM_GUEST_CKSEG1ADDR(0x1fc00200);
1998 return kvm_read_c0_guest_ebase(cop0
) & MIPS_EBASE_BASE
;
2001 enum emulation_result
kvm_mips_emulate_syscall(u32 cause
,
2003 struct kvm_run
*run
,
2004 struct kvm_vcpu
*vcpu
)
2006 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
2007 struct kvm_vcpu_arch
*arch
= &vcpu
->arch
;
2008 enum emulation_result er
= EMULATE_DONE
;
2010 if ((kvm_read_c0_guest_status(cop0
) & ST0_EXL
) == 0) {
2012 kvm_write_c0_guest_epc(cop0
, arch
->pc
);
2013 kvm_set_c0_guest_status(cop0
, ST0_EXL
);
2015 if (cause
& CAUSEF_BD
)
2016 kvm_set_c0_guest_cause(cop0
, CAUSEF_BD
);
2018 kvm_clear_c0_guest_cause(cop0
, CAUSEF_BD
);
2020 kvm_debug("Delivering SYSCALL @ pc %#lx\n", arch
->pc
);
2022 kvm_change_c0_guest_cause(cop0
, (0xff),
2023 (EXCCODE_SYS
<< CAUSEB_EXCCODE
));
2025 /* Set PC to the exception entry point */
2026 arch
->pc
= kvm_mips_guest_exception_base(vcpu
) + 0x180;
2029 kvm_err("Trying to deliver SYSCALL when EXL is already set\n");
2036 enum emulation_result
kvm_mips_emulate_tlbmiss_ld(u32 cause
,
2038 struct kvm_run
*run
,
2039 struct kvm_vcpu
*vcpu
)
2041 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
2042 struct kvm_vcpu_arch
*arch
= &vcpu
->arch
;
2043 unsigned long entryhi
= (vcpu
->arch
. host_cp0_badvaddr
& VPN2_MASK
) |
2044 (kvm_read_c0_guest_entryhi(cop0
) & KVM_ENTRYHI_ASID
);
2046 if ((kvm_read_c0_guest_status(cop0
) & ST0_EXL
) == 0) {
2048 kvm_write_c0_guest_epc(cop0
, arch
->pc
);
2049 kvm_set_c0_guest_status(cop0
, ST0_EXL
);
2051 if (cause
& CAUSEF_BD
)
2052 kvm_set_c0_guest_cause(cop0
, CAUSEF_BD
);
2054 kvm_clear_c0_guest_cause(cop0
, CAUSEF_BD
);
2056 kvm_debug("[EXL == 0] delivering TLB MISS @ pc %#lx\n",
2059 /* set pc to the exception entry point */
2060 arch
->pc
= kvm_mips_guest_exception_base(vcpu
) + 0x0;
2063 kvm_debug("[EXL == 1] delivering TLB MISS @ pc %#lx\n",
2066 arch
->pc
= kvm_mips_guest_exception_base(vcpu
) + 0x180;
2069 kvm_change_c0_guest_cause(cop0
, (0xff),
2070 (EXCCODE_TLBL
<< CAUSEB_EXCCODE
));
2072 /* setup badvaddr, context and entryhi registers for the guest */
2073 kvm_write_c0_guest_badvaddr(cop0
, vcpu
->arch
.host_cp0_badvaddr
);
2074 /* XXXKYMA: is the context register used by linux??? */
2075 kvm_write_c0_guest_entryhi(cop0
, entryhi
);
2077 return EMULATE_DONE
;
2080 enum emulation_result
kvm_mips_emulate_tlbinv_ld(u32 cause
,
2082 struct kvm_run
*run
,
2083 struct kvm_vcpu
*vcpu
)
2085 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
2086 struct kvm_vcpu_arch
*arch
= &vcpu
->arch
;
2087 unsigned long entryhi
=
2088 (vcpu
->arch
.host_cp0_badvaddr
& VPN2_MASK
) |
2089 (kvm_read_c0_guest_entryhi(cop0
) & KVM_ENTRYHI_ASID
);
2091 if ((kvm_read_c0_guest_status(cop0
) & ST0_EXL
) == 0) {
2093 kvm_write_c0_guest_epc(cop0
, arch
->pc
);
2094 kvm_set_c0_guest_status(cop0
, ST0_EXL
);
2096 if (cause
& CAUSEF_BD
)
2097 kvm_set_c0_guest_cause(cop0
, CAUSEF_BD
);
2099 kvm_clear_c0_guest_cause(cop0
, CAUSEF_BD
);
2101 kvm_debug("[EXL == 0] delivering TLB INV @ pc %#lx\n",
2104 kvm_debug("[EXL == 1] delivering TLB MISS @ pc %#lx\n",
2108 /* set pc to the exception entry point */
2109 arch
->pc
= kvm_mips_guest_exception_base(vcpu
) + 0x180;
2111 kvm_change_c0_guest_cause(cop0
, (0xff),
2112 (EXCCODE_TLBL
<< CAUSEB_EXCCODE
));
2114 /* setup badvaddr, context and entryhi registers for the guest */
2115 kvm_write_c0_guest_badvaddr(cop0
, vcpu
->arch
.host_cp0_badvaddr
);
2116 /* XXXKYMA: is the context register used by linux??? */
2117 kvm_write_c0_guest_entryhi(cop0
, entryhi
);
2119 return EMULATE_DONE
;
2122 enum emulation_result
kvm_mips_emulate_tlbmiss_st(u32 cause
,
2124 struct kvm_run
*run
,
2125 struct kvm_vcpu
*vcpu
)
2127 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
2128 struct kvm_vcpu_arch
*arch
= &vcpu
->arch
;
2129 unsigned long entryhi
= (vcpu
->arch
.host_cp0_badvaddr
& VPN2_MASK
) |
2130 (kvm_read_c0_guest_entryhi(cop0
) & KVM_ENTRYHI_ASID
);
2132 if ((kvm_read_c0_guest_status(cop0
) & ST0_EXL
) == 0) {
2134 kvm_write_c0_guest_epc(cop0
, arch
->pc
);
2135 kvm_set_c0_guest_status(cop0
, ST0_EXL
);
2137 if (cause
& CAUSEF_BD
)
2138 kvm_set_c0_guest_cause(cop0
, CAUSEF_BD
);
2140 kvm_clear_c0_guest_cause(cop0
, CAUSEF_BD
);
2142 kvm_debug("[EXL == 0] Delivering TLB MISS @ pc %#lx\n",
2145 /* Set PC to the exception entry point */
2146 arch
->pc
= kvm_mips_guest_exception_base(vcpu
) + 0x0;
2148 kvm_debug("[EXL == 1] Delivering TLB MISS @ pc %#lx\n",
2150 arch
->pc
= kvm_mips_guest_exception_base(vcpu
) + 0x180;
2153 kvm_change_c0_guest_cause(cop0
, (0xff),
2154 (EXCCODE_TLBS
<< CAUSEB_EXCCODE
));
2156 /* setup badvaddr, context and entryhi registers for the guest */
2157 kvm_write_c0_guest_badvaddr(cop0
, vcpu
->arch
.host_cp0_badvaddr
);
2158 /* XXXKYMA: is the context register used by linux??? */
2159 kvm_write_c0_guest_entryhi(cop0
, entryhi
);
2161 return EMULATE_DONE
;
2164 enum emulation_result
kvm_mips_emulate_tlbinv_st(u32 cause
,
2166 struct kvm_run
*run
,
2167 struct kvm_vcpu
*vcpu
)
2169 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
2170 struct kvm_vcpu_arch
*arch
= &vcpu
->arch
;
2171 unsigned long entryhi
= (vcpu
->arch
.host_cp0_badvaddr
& VPN2_MASK
) |
2172 (kvm_read_c0_guest_entryhi(cop0
) & KVM_ENTRYHI_ASID
);
2174 if ((kvm_read_c0_guest_status(cop0
) & ST0_EXL
) == 0) {
2176 kvm_write_c0_guest_epc(cop0
, arch
->pc
);
2177 kvm_set_c0_guest_status(cop0
, ST0_EXL
);
2179 if (cause
& CAUSEF_BD
)
2180 kvm_set_c0_guest_cause(cop0
, CAUSEF_BD
);
2182 kvm_clear_c0_guest_cause(cop0
, CAUSEF_BD
);
2184 kvm_debug("[EXL == 0] Delivering TLB MISS @ pc %#lx\n",
2187 kvm_debug("[EXL == 1] Delivering TLB MISS @ pc %#lx\n",
2191 /* Set PC to the exception entry point */
2192 arch
->pc
= kvm_mips_guest_exception_base(vcpu
) + 0x180;
2194 kvm_change_c0_guest_cause(cop0
, (0xff),
2195 (EXCCODE_TLBS
<< CAUSEB_EXCCODE
));
2197 /* setup badvaddr, context and entryhi registers for the guest */
2198 kvm_write_c0_guest_badvaddr(cop0
, vcpu
->arch
.host_cp0_badvaddr
);
2199 /* XXXKYMA: is the context register used by linux??? */
2200 kvm_write_c0_guest_entryhi(cop0
, entryhi
);
2202 return EMULATE_DONE
;
2205 enum emulation_result
kvm_mips_emulate_tlbmod(u32 cause
,
2207 struct kvm_run
*run
,
2208 struct kvm_vcpu
*vcpu
)
2210 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
2211 unsigned long entryhi
= (vcpu
->arch
.host_cp0_badvaddr
& VPN2_MASK
) |
2212 (kvm_read_c0_guest_entryhi(cop0
) & KVM_ENTRYHI_ASID
);
2213 struct kvm_vcpu_arch
*arch
= &vcpu
->arch
;
2215 if ((kvm_read_c0_guest_status(cop0
) & ST0_EXL
) == 0) {
2217 kvm_write_c0_guest_epc(cop0
, arch
->pc
);
2218 kvm_set_c0_guest_status(cop0
, ST0_EXL
);
2220 if (cause
& CAUSEF_BD
)
2221 kvm_set_c0_guest_cause(cop0
, CAUSEF_BD
);
2223 kvm_clear_c0_guest_cause(cop0
, CAUSEF_BD
);
2225 kvm_debug("[EXL == 0] Delivering TLB MOD @ pc %#lx\n",
2228 kvm_debug("[EXL == 1] Delivering TLB MOD @ pc %#lx\n",
2232 arch
->pc
= kvm_mips_guest_exception_base(vcpu
) + 0x180;
2234 kvm_change_c0_guest_cause(cop0
, (0xff),
2235 (EXCCODE_MOD
<< CAUSEB_EXCCODE
));
2237 /* setup badvaddr, context and entryhi registers for the guest */
2238 kvm_write_c0_guest_badvaddr(cop0
, vcpu
->arch
.host_cp0_badvaddr
);
2239 /* XXXKYMA: is the context register used by linux??? */
2240 kvm_write_c0_guest_entryhi(cop0
, entryhi
);
2242 return EMULATE_DONE
;
2245 enum emulation_result
kvm_mips_emulate_fpu_exc(u32 cause
,
2247 struct kvm_run
*run
,
2248 struct kvm_vcpu
*vcpu
)
2250 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
2251 struct kvm_vcpu_arch
*arch
= &vcpu
->arch
;
2253 if ((kvm_read_c0_guest_status(cop0
) & ST0_EXL
) == 0) {
2255 kvm_write_c0_guest_epc(cop0
, arch
->pc
);
2256 kvm_set_c0_guest_status(cop0
, ST0_EXL
);
2258 if (cause
& CAUSEF_BD
)
2259 kvm_set_c0_guest_cause(cop0
, CAUSEF_BD
);
2261 kvm_clear_c0_guest_cause(cop0
, CAUSEF_BD
);
2265 arch
->pc
= kvm_mips_guest_exception_base(vcpu
) + 0x180;
2267 kvm_change_c0_guest_cause(cop0
, (0xff),
2268 (EXCCODE_CPU
<< CAUSEB_EXCCODE
));
2269 kvm_change_c0_guest_cause(cop0
, (CAUSEF_CE
), (0x1 << CAUSEB_CE
));
2271 return EMULATE_DONE
;
2274 enum emulation_result
kvm_mips_emulate_ri_exc(u32 cause
,
2276 struct kvm_run
*run
,
2277 struct kvm_vcpu
*vcpu
)
2279 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
2280 struct kvm_vcpu_arch
*arch
= &vcpu
->arch
;
2281 enum emulation_result er
= EMULATE_DONE
;
2283 if ((kvm_read_c0_guest_status(cop0
) & ST0_EXL
) == 0) {
2285 kvm_write_c0_guest_epc(cop0
, arch
->pc
);
2286 kvm_set_c0_guest_status(cop0
, ST0_EXL
);
2288 if (cause
& CAUSEF_BD
)
2289 kvm_set_c0_guest_cause(cop0
, CAUSEF_BD
);
2291 kvm_clear_c0_guest_cause(cop0
, CAUSEF_BD
);
2293 kvm_debug("Delivering RI @ pc %#lx\n", arch
->pc
);
2295 kvm_change_c0_guest_cause(cop0
, (0xff),
2296 (EXCCODE_RI
<< CAUSEB_EXCCODE
));
2298 /* Set PC to the exception entry point */
2299 arch
->pc
= kvm_mips_guest_exception_base(vcpu
) + 0x180;
2302 kvm_err("Trying to deliver RI when EXL is already set\n");
2309 enum emulation_result
kvm_mips_emulate_bp_exc(u32 cause
,
2311 struct kvm_run
*run
,
2312 struct kvm_vcpu
*vcpu
)
2314 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
2315 struct kvm_vcpu_arch
*arch
= &vcpu
->arch
;
2316 enum emulation_result er
= EMULATE_DONE
;
2318 if ((kvm_read_c0_guest_status(cop0
) & ST0_EXL
) == 0) {
2320 kvm_write_c0_guest_epc(cop0
, arch
->pc
);
2321 kvm_set_c0_guest_status(cop0
, ST0_EXL
);
2323 if (cause
& CAUSEF_BD
)
2324 kvm_set_c0_guest_cause(cop0
, CAUSEF_BD
);
2326 kvm_clear_c0_guest_cause(cop0
, CAUSEF_BD
);
2328 kvm_debug("Delivering BP @ pc %#lx\n", arch
->pc
);
2330 kvm_change_c0_guest_cause(cop0
, (0xff),
2331 (EXCCODE_BP
<< CAUSEB_EXCCODE
));
2333 /* Set PC to the exception entry point */
2334 arch
->pc
= kvm_mips_guest_exception_base(vcpu
) + 0x180;
2337 kvm_err("Trying to deliver BP when EXL is already set\n");
2344 enum emulation_result
kvm_mips_emulate_trap_exc(u32 cause
,
2346 struct kvm_run
*run
,
2347 struct kvm_vcpu
*vcpu
)
2349 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
2350 struct kvm_vcpu_arch
*arch
= &vcpu
->arch
;
2351 enum emulation_result er
= EMULATE_DONE
;
2353 if ((kvm_read_c0_guest_status(cop0
) & ST0_EXL
) == 0) {
2355 kvm_write_c0_guest_epc(cop0
, arch
->pc
);
2356 kvm_set_c0_guest_status(cop0
, ST0_EXL
);
2358 if (cause
& CAUSEF_BD
)
2359 kvm_set_c0_guest_cause(cop0
, CAUSEF_BD
);
2361 kvm_clear_c0_guest_cause(cop0
, CAUSEF_BD
);
2363 kvm_debug("Delivering TRAP @ pc %#lx\n", arch
->pc
);
2365 kvm_change_c0_guest_cause(cop0
, (0xff),
2366 (EXCCODE_TR
<< CAUSEB_EXCCODE
));
2368 /* Set PC to the exception entry point */
2369 arch
->pc
= kvm_mips_guest_exception_base(vcpu
) + 0x180;
2372 kvm_err("Trying to deliver TRAP when EXL is already set\n");
2379 enum emulation_result
kvm_mips_emulate_msafpe_exc(u32 cause
,
2381 struct kvm_run
*run
,
2382 struct kvm_vcpu
*vcpu
)
2384 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
2385 struct kvm_vcpu_arch
*arch
= &vcpu
->arch
;
2386 enum emulation_result er
= EMULATE_DONE
;
2388 if ((kvm_read_c0_guest_status(cop0
) & ST0_EXL
) == 0) {
2390 kvm_write_c0_guest_epc(cop0
, arch
->pc
);
2391 kvm_set_c0_guest_status(cop0
, ST0_EXL
);
2393 if (cause
& CAUSEF_BD
)
2394 kvm_set_c0_guest_cause(cop0
, CAUSEF_BD
);
2396 kvm_clear_c0_guest_cause(cop0
, CAUSEF_BD
);
2398 kvm_debug("Delivering MSAFPE @ pc %#lx\n", arch
->pc
);
2400 kvm_change_c0_guest_cause(cop0
, (0xff),
2401 (EXCCODE_MSAFPE
<< CAUSEB_EXCCODE
));
2403 /* Set PC to the exception entry point */
2404 arch
->pc
= kvm_mips_guest_exception_base(vcpu
) + 0x180;
2407 kvm_err("Trying to deliver MSAFPE when EXL is already set\n");
2414 enum emulation_result
kvm_mips_emulate_fpe_exc(u32 cause
,
2416 struct kvm_run
*run
,
2417 struct kvm_vcpu
*vcpu
)
2419 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
2420 struct kvm_vcpu_arch
*arch
= &vcpu
->arch
;
2421 enum emulation_result er
= EMULATE_DONE
;
2423 if ((kvm_read_c0_guest_status(cop0
) & ST0_EXL
) == 0) {
2425 kvm_write_c0_guest_epc(cop0
, arch
->pc
);
2426 kvm_set_c0_guest_status(cop0
, ST0_EXL
);
2428 if (cause
& CAUSEF_BD
)
2429 kvm_set_c0_guest_cause(cop0
, CAUSEF_BD
);
2431 kvm_clear_c0_guest_cause(cop0
, CAUSEF_BD
);
2433 kvm_debug("Delivering FPE @ pc %#lx\n", arch
->pc
);
2435 kvm_change_c0_guest_cause(cop0
, (0xff),
2436 (EXCCODE_FPE
<< CAUSEB_EXCCODE
));
2438 /* Set PC to the exception entry point */
2439 arch
->pc
= kvm_mips_guest_exception_base(vcpu
) + 0x180;
2442 kvm_err("Trying to deliver FPE when EXL is already set\n");
2449 enum emulation_result
kvm_mips_emulate_msadis_exc(u32 cause
,
2451 struct kvm_run
*run
,
2452 struct kvm_vcpu
*vcpu
)
2454 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
2455 struct kvm_vcpu_arch
*arch
= &vcpu
->arch
;
2456 enum emulation_result er
= EMULATE_DONE
;
2458 if ((kvm_read_c0_guest_status(cop0
) & ST0_EXL
) == 0) {
2460 kvm_write_c0_guest_epc(cop0
, arch
->pc
);
2461 kvm_set_c0_guest_status(cop0
, ST0_EXL
);
2463 if (cause
& CAUSEF_BD
)
2464 kvm_set_c0_guest_cause(cop0
, CAUSEF_BD
);
2466 kvm_clear_c0_guest_cause(cop0
, CAUSEF_BD
);
2468 kvm_debug("Delivering MSADIS @ pc %#lx\n", arch
->pc
);
2470 kvm_change_c0_guest_cause(cop0
, (0xff),
2471 (EXCCODE_MSADIS
<< CAUSEB_EXCCODE
));
2473 /* Set PC to the exception entry point */
2474 arch
->pc
= kvm_mips_guest_exception_base(vcpu
) + 0x180;
2477 kvm_err("Trying to deliver MSADIS when EXL is already set\n");
2484 enum emulation_result
kvm_mips_handle_ri(u32 cause
, u32
*opc
,
2485 struct kvm_run
*run
,
2486 struct kvm_vcpu
*vcpu
)
2488 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
2489 struct kvm_vcpu_arch
*arch
= &vcpu
->arch
;
2490 enum emulation_result er
= EMULATE_DONE
;
2491 unsigned long curr_pc
;
2492 union mips_instruction inst
;
2496 * Update PC and hold onto current PC in case there is
2497 * an error and we want to rollback the PC
2499 curr_pc
= vcpu
->arch
.pc
;
2500 er
= update_pc(vcpu
, cause
);
2501 if (er
== EMULATE_FAIL
)
2504 /* Fetch the instruction. */
2505 if (cause
& CAUSEF_BD
)
2507 err
= kvm_get_badinstr(opc
, vcpu
, &inst
.word
);
2509 kvm_err("%s: Cannot get inst @ %p (%d)\n", __func__
, opc
, err
);
2510 return EMULATE_FAIL
;
2513 if (inst
.r_format
.opcode
== spec3_op
&&
2514 inst
.r_format
.func
== rdhwr_op
&&
2515 inst
.r_format
.rs
== 0 &&
2516 (inst
.r_format
.re
>> 3) == 0) {
2517 int usermode
= !KVM_GUEST_KERNEL_MODE(vcpu
);
2518 int rd
= inst
.r_format
.rd
;
2519 int rt
= inst
.r_format
.rt
;
2520 int sel
= inst
.r_format
.re
& 0x7;
2522 /* If usermode, check RDHWR rd is allowed by guest HWREna */
2523 if (usermode
&& !(kvm_read_c0_guest_hwrena(cop0
) & BIT(rd
))) {
2524 kvm_debug("RDHWR %#x disallowed by HWREna @ %p\n",
2529 case MIPS_HWR_CPUNUM
: /* CPU number */
2530 arch
->gprs
[rt
] = vcpu
->vcpu_id
;
2532 case MIPS_HWR_SYNCISTEP
: /* SYNCI length */
2533 arch
->gprs
[rt
] = min(current_cpu_data
.dcache
.linesz
,
2534 current_cpu_data
.icache
.linesz
);
2536 case MIPS_HWR_CC
: /* Read count register */
2537 arch
->gprs
[rt
] = (s32
)kvm_mips_read_count(vcpu
);
2539 case MIPS_HWR_CCRES
: /* Count register resolution */
2540 switch (current_cpu_data
.cputype
) {
2549 case MIPS_HWR_ULR
: /* Read UserLocal register */
2550 arch
->gprs
[rt
] = kvm_read_c0_guest_userlocal(cop0
);
2554 kvm_debug("RDHWR %#x not supported @ %p\n", rd
, opc
);
2558 trace_kvm_hwr(vcpu
, KVM_TRACE_RDHWR
, KVM_TRACE_HWR(rd
, sel
),
2559 vcpu
->arch
.gprs
[rt
]);
2561 kvm_debug("Emulate RI not supported @ %p: %#x\n",
2566 return EMULATE_DONE
;
2570 * Rollback PC (if in branch delay slot then the PC already points to
2571 * branch target), and pass the RI exception to the guest OS.
2573 vcpu
->arch
.pc
= curr_pc
;
2574 return kvm_mips_emulate_ri_exc(cause
, opc
, run
, vcpu
);
2577 enum emulation_result
kvm_mips_complete_mmio_load(struct kvm_vcpu
*vcpu
,
2578 struct kvm_run
*run
)
2580 unsigned long *gpr
= &vcpu
->arch
.gprs
[vcpu
->arch
.io_gpr
];
2581 enum emulation_result er
= EMULATE_DONE
;
2583 if (run
->mmio
.len
> sizeof(*gpr
)) {
2584 kvm_err("Bad MMIO length: %d", run
->mmio
.len
);
2589 /* Restore saved resume PC */
2590 vcpu
->arch
.pc
= vcpu
->arch
.io_pc
;
2592 switch (run
->mmio
.len
) {
2594 *gpr
= *(s64
*)run
->mmio
.data
;
2598 if (vcpu
->mmio_needed
== 2)
2599 *gpr
= *(s32
*)run
->mmio
.data
;
2601 *gpr
= *(u32
*)run
->mmio
.data
;
2605 if (vcpu
->mmio_needed
== 2)
2606 *gpr
= *(s16
*) run
->mmio
.data
;
2608 *gpr
= *(u16
*)run
->mmio
.data
;
2612 if (vcpu
->mmio_needed
== 2)
2613 *gpr
= *(s8
*) run
->mmio
.data
;
2615 *gpr
= *(u8
*) run
->mmio
.data
;
2623 static enum emulation_result
kvm_mips_emulate_exc(u32 cause
,
2625 struct kvm_run
*run
,
2626 struct kvm_vcpu
*vcpu
)
2628 u32 exccode
= (cause
>> CAUSEB_EXCCODE
) & 0x1f;
2629 struct mips_coproc
*cop0
= vcpu
->arch
.cop0
;
2630 struct kvm_vcpu_arch
*arch
= &vcpu
->arch
;
2631 enum emulation_result er
= EMULATE_DONE
;
2633 if ((kvm_read_c0_guest_status(cop0
) & ST0_EXL
) == 0) {
2635 kvm_write_c0_guest_epc(cop0
, arch
->pc
);
2636 kvm_set_c0_guest_status(cop0
, ST0_EXL
);
2638 if (cause
& CAUSEF_BD
)
2639 kvm_set_c0_guest_cause(cop0
, CAUSEF_BD
);
2641 kvm_clear_c0_guest_cause(cop0
, CAUSEF_BD
);
2643 kvm_change_c0_guest_cause(cop0
, (0xff),
2644 (exccode
<< CAUSEB_EXCCODE
));
2646 /* Set PC to the exception entry point */
2647 arch
->pc
= kvm_mips_guest_exception_base(vcpu
) + 0x180;
2648 kvm_write_c0_guest_badvaddr(cop0
, vcpu
->arch
.host_cp0_badvaddr
);
2650 kvm_debug("Delivering EXC %d @ pc %#lx, badVaddr: %#lx\n",
2651 exccode
, kvm_read_c0_guest_epc(cop0
),
2652 kvm_read_c0_guest_badvaddr(cop0
));
2654 kvm_err("Trying to deliver EXC when EXL is already set\n");
2661 enum emulation_result
kvm_mips_check_privilege(u32 cause
,
2663 struct kvm_run
*run
,
2664 struct kvm_vcpu
*vcpu
)
2666 enum emulation_result er
= EMULATE_DONE
;
2667 u32 exccode
= (cause
>> CAUSEB_EXCCODE
) & 0x1f;
2668 unsigned long badvaddr
= vcpu
->arch
.host_cp0_badvaddr
;
2670 int usermode
= !KVM_GUEST_KERNEL_MODE(vcpu
);
2679 case EXCCODE_MSAFPE
:
2681 case EXCCODE_MSADIS
:
2685 if (((cause
& CAUSEF_CE
) >> CAUSEB_CE
) == 0)
2686 er
= EMULATE_PRIV_FAIL
;
2694 * We we are accessing Guest kernel space, then send an
2695 * address error exception to the guest
2697 if (badvaddr
>= (unsigned long) KVM_GUEST_KSEG0
) {
2698 kvm_debug("%s: LD MISS @ %#lx\n", __func__
,
2701 cause
|= (EXCCODE_ADEL
<< CAUSEB_EXCCODE
);
2702 er
= EMULATE_PRIV_FAIL
;
2708 * We we are accessing Guest kernel space, then send an
2709 * address error exception to the guest
2711 if (badvaddr
>= (unsigned long) KVM_GUEST_KSEG0
) {
2712 kvm_debug("%s: ST MISS @ %#lx\n", __func__
,
2715 cause
|= (EXCCODE_ADES
<< CAUSEB_EXCCODE
);
2716 er
= EMULATE_PRIV_FAIL
;
2721 kvm_debug("%s: address error ST @ %#lx\n", __func__
,
2723 if ((badvaddr
& PAGE_MASK
) == KVM_GUEST_COMMPAGE_ADDR
) {
2725 cause
|= (EXCCODE_TLBS
<< CAUSEB_EXCCODE
);
2727 er
= EMULATE_PRIV_FAIL
;
2730 kvm_debug("%s: address error LD @ %#lx\n", __func__
,
2732 if ((badvaddr
& PAGE_MASK
) == KVM_GUEST_COMMPAGE_ADDR
) {
2734 cause
|= (EXCCODE_TLBL
<< CAUSEB_EXCCODE
);
2736 er
= EMULATE_PRIV_FAIL
;
2739 er
= EMULATE_PRIV_FAIL
;
2744 if (er
== EMULATE_PRIV_FAIL
)
2745 kvm_mips_emulate_exc(cause
, opc
, run
, vcpu
);
2751 * User Address (UA) fault, this could happen if
2752 * (1) TLB entry not present/valid in both Guest and shadow host TLBs, in this
2753 * case we pass on the fault to the guest kernel and let it handle it.
2754 * (2) TLB entry is present in the Guest TLB but not in the shadow, in this
2755 * case we inject the TLB from the Guest TLB into the shadow host TLB
2757 enum emulation_result
kvm_mips_handle_tlbmiss(u32 cause
,
2759 struct kvm_run
*run
,
2760 struct kvm_vcpu
*vcpu
,
2763 enum emulation_result er
= EMULATE_DONE
;
2764 u32 exccode
= (cause
>> CAUSEB_EXCCODE
) & 0x1f;
2765 unsigned long va
= vcpu
->arch
.host_cp0_badvaddr
;
2768 kvm_debug("kvm_mips_handle_tlbmiss: badvaddr: %#lx\n",
2769 vcpu
->arch
.host_cp0_badvaddr
);
2772 * KVM would not have got the exception if this entry was valid in the
2773 * shadow host TLB. Check the Guest TLB, if the entry is not there then
2774 * send the guest an exception. The guest exc handler should then inject
2775 * an entry into the guest TLB.
2777 index
= kvm_mips_guest_tlb_lookup(vcpu
,
2779 (kvm_read_c0_guest_entryhi(vcpu
->arch
.cop0
) &
2782 if (exccode
== EXCCODE_TLBL
) {
2783 er
= kvm_mips_emulate_tlbmiss_ld(cause
, opc
, run
, vcpu
);
2784 } else if (exccode
== EXCCODE_TLBS
) {
2785 er
= kvm_mips_emulate_tlbmiss_st(cause
, opc
, run
, vcpu
);
2787 kvm_err("%s: invalid exc code: %d\n", __func__
,
2792 struct kvm_mips_tlb
*tlb
= &vcpu
->arch
.guest_tlb
[index
];
2795 * Check if the entry is valid, if not then setup a TLB invalid
2796 * exception to the guest
2798 if (!TLB_IS_VALID(*tlb
, va
)) {
2799 if (exccode
== EXCCODE_TLBL
) {
2800 er
= kvm_mips_emulate_tlbinv_ld(cause
, opc
, run
,
2802 } else if (exccode
== EXCCODE_TLBS
) {
2803 er
= kvm_mips_emulate_tlbinv_st(cause
, opc
, run
,
2806 kvm_err("%s: invalid exc code: %d\n", __func__
,
2811 kvm_debug("Injecting hi: %#lx, lo0: %#lx, lo1: %#lx into shadow host TLB\n",
2812 tlb
->tlb_hi
, tlb
->tlb_lo
[0], tlb
->tlb_lo
[1]);
2814 * OK we have a Guest TLB entry, now inject it into the
2817 if (kvm_mips_handle_mapped_seg_tlb_fault(vcpu
, tlb
, va
,
2819 kvm_err("%s: handling mapped seg tlb fault for %lx, index: %u, vcpu: %p, ASID: %#lx\n",
2820 __func__
, va
, index
, vcpu
,