2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License, version 2, as
4 * published by the Free Software Foundation.
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
11 * You should have received a copy of the GNU General Public License
12 * along with this program; if not, write to the Free Software
13 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
15 * Copyright IBM Corp. 2007
16 * Copyright 2010-2011 Freescale Semiconductor, Inc.
18 * Authors: Hollis Blanchard <hollisb@us.ibm.com>
19 * Christian Ehrhardt <ehrhardt@linux.vnet.ibm.com>
20 * Scott Wood <scottwood@freescale.com>
21 * Varun Sethi <varun.sethi@freescale.com>
24 #include <linux/errno.h>
25 #include <linux/err.h>
26 #include <linux/kvm_host.h>
27 #include <linux/gfp.h>
28 #include <linux/module.h>
29 #include <linux/vmalloc.h>
32 #include <asm/cputable.h>
33 #include <asm/uaccess.h>
34 #include <asm/kvm_ppc.h>
35 #include <asm/cacheflush.h>
36 #include <asm/dbell.h>
37 #include <asm/hw_irq.h>
44 #define CREATE_TRACE_POINTS
45 #include "trace_booke.h"
47 unsigned long kvmppc_booke_handlers
;
49 #define VM_STAT(x) offsetof(struct kvm, stat.x), KVM_STAT_VM
50 #define VCPU_STAT(x) offsetof(struct kvm_vcpu, stat.x), KVM_STAT_VCPU
52 struct kvm_stats_debugfs_item debugfs_entries
[] = {
53 { "mmio", VCPU_STAT(mmio_exits
) },
54 { "sig", VCPU_STAT(signal_exits
) },
55 { "itlb_r", VCPU_STAT(itlb_real_miss_exits
) },
56 { "itlb_v", VCPU_STAT(itlb_virt_miss_exits
) },
57 { "dtlb_r", VCPU_STAT(dtlb_real_miss_exits
) },
58 { "dtlb_v", VCPU_STAT(dtlb_virt_miss_exits
) },
59 { "sysc", VCPU_STAT(syscall_exits
) },
60 { "isi", VCPU_STAT(isi_exits
) },
61 { "dsi", VCPU_STAT(dsi_exits
) },
62 { "inst_emu", VCPU_STAT(emulated_inst_exits
) },
63 { "dec", VCPU_STAT(dec_exits
) },
64 { "ext_intr", VCPU_STAT(ext_intr_exits
) },
65 { "halt_successful_poll", VCPU_STAT(halt_successful_poll
) },
66 { "halt_wakeup", VCPU_STAT(halt_wakeup
) },
67 { "doorbell", VCPU_STAT(dbell_exits
) },
68 { "guest doorbell", VCPU_STAT(gdbell_exits
) },
69 { "remote_tlb_flush", VM_STAT(remote_tlb_flush
) },
73 /* TODO: use vcpu_printf() */
74 void kvmppc_dump_vcpu(struct kvm_vcpu
*vcpu
)
78 printk("pc: %08lx msr: %08llx\n", vcpu
->arch
.pc
, vcpu
->arch
.shared
->msr
);
79 printk("lr: %08lx ctr: %08lx\n", vcpu
->arch
.lr
, vcpu
->arch
.ctr
);
80 printk("srr0: %08llx srr1: %08llx\n", vcpu
->arch
.shared
->srr0
,
81 vcpu
->arch
.shared
->srr1
);
83 printk("exceptions: %08lx\n", vcpu
->arch
.pending_exceptions
);
85 for (i
= 0; i
< 32; i
+= 4) {
86 printk("gpr%02d: %08lx %08lx %08lx %08lx\n", i
,
87 kvmppc_get_gpr(vcpu
, i
),
88 kvmppc_get_gpr(vcpu
, i
+1),
89 kvmppc_get_gpr(vcpu
, i
+2),
90 kvmppc_get_gpr(vcpu
, i
+3));
95 void kvmppc_vcpu_disable_spe(struct kvm_vcpu
*vcpu
)
99 kvmppc_save_guest_spe(vcpu
);
100 vcpu
->arch
.shadow_msr
&= ~MSR_SPE
;
104 static void kvmppc_vcpu_enable_spe(struct kvm_vcpu
*vcpu
)
108 kvmppc_load_guest_spe(vcpu
);
109 vcpu
->arch
.shadow_msr
|= MSR_SPE
;
113 static void kvmppc_vcpu_sync_spe(struct kvm_vcpu
*vcpu
)
115 if (vcpu
->arch
.shared
->msr
& MSR_SPE
) {
116 if (!(vcpu
->arch
.shadow_msr
& MSR_SPE
))
117 kvmppc_vcpu_enable_spe(vcpu
);
118 } else if (vcpu
->arch
.shadow_msr
& MSR_SPE
) {
119 kvmppc_vcpu_disable_spe(vcpu
);
123 static void kvmppc_vcpu_sync_spe(struct kvm_vcpu
*vcpu
)
129 * Load up guest vcpu FP state if it's needed.
130 * It also set the MSR_FP in thread so that host know
131 * we're holding FPU, and then host can help to save
132 * guest vcpu FP state if other threads require to use FPU.
133 * This simulates an FP unavailable fault.
135 * It requires to be called with preemption disabled.
137 static inline void kvmppc_load_guest_fp(struct kvm_vcpu
*vcpu
)
139 #ifdef CONFIG_PPC_FPU
140 if (!(current
->thread
.regs
->msr
& MSR_FP
)) {
142 load_fp_state(&vcpu
->arch
.fp
);
143 current
->thread
.fp_save_area
= &vcpu
->arch
.fp
;
144 current
->thread
.regs
->msr
|= MSR_FP
;
150 * Save guest vcpu FP state into thread.
151 * It requires to be called with preemption disabled.
153 static inline void kvmppc_save_guest_fp(struct kvm_vcpu
*vcpu
)
155 #ifdef CONFIG_PPC_FPU
156 if (current
->thread
.regs
->msr
& MSR_FP
)
158 current
->thread
.fp_save_area
= NULL
;
162 static void kvmppc_vcpu_sync_fpu(struct kvm_vcpu
*vcpu
)
164 #if defined(CONFIG_PPC_FPU) && !defined(CONFIG_KVM_BOOKE_HV)
165 /* We always treat the FP bit as enabled from the host
166 perspective, so only need to adjust the shadow MSR */
167 vcpu
->arch
.shadow_msr
&= ~MSR_FP
;
168 vcpu
->arch
.shadow_msr
|= vcpu
->arch
.shared
->msr
& MSR_FP
;
173 * Simulate AltiVec unavailable fault to load guest state
174 * from thread to AltiVec unit.
175 * It requires to be called with preemption disabled.
177 static inline void kvmppc_load_guest_altivec(struct kvm_vcpu
*vcpu
)
179 #ifdef CONFIG_ALTIVEC
180 if (cpu_has_feature(CPU_FTR_ALTIVEC
)) {
181 if (!(current
->thread
.regs
->msr
& MSR_VEC
)) {
182 enable_kernel_altivec();
183 load_vr_state(&vcpu
->arch
.vr
);
184 current
->thread
.vr_save_area
= &vcpu
->arch
.vr
;
185 current
->thread
.regs
->msr
|= MSR_VEC
;
192 * Save guest vcpu AltiVec state into thread.
193 * It requires to be called with preemption disabled.
195 static inline void kvmppc_save_guest_altivec(struct kvm_vcpu
*vcpu
)
197 #ifdef CONFIG_ALTIVEC
198 if (cpu_has_feature(CPU_FTR_ALTIVEC
)) {
199 if (current
->thread
.regs
->msr
& MSR_VEC
)
200 giveup_altivec(current
);
201 current
->thread
.vr_save_area
= NULL
;
206 static void kvmppc_vcpu_sync_debug(struct kvm_vcpu
*vcpu
)
208 /* Synchronize guest's desire to get debug interrupts into shadow MSR */
209 #ifndef CONFIG_KVM_BOOKE_HV
210 vcpu
->arch
.shadow_msr
&= ~MSR_DE
;
211 vcpu
->arch
.shadow_msr
|= vcpu
->arch
.shared
->msr
& MSR_DE
;
214 /* Force enable debug interrupts when user space wants to debug */
215 if (vcpu
->guest_debug
) {
216 #ifdef CONFIG_KVM_BOOKE_HV
218 * Since there is no shadow MSR, sync MSR_DE into the guest
221 vcpu
->arch
.shared
->msr
|= MSR_DE
;
223 vcpu
->arch
.shadow_msr
|= MSR_DE
;
224 vcpu
->arch
.shared
->msr
&= ~MSR_DE
;
230 * Helper function for "full" MSR writes. No need to call this if only
231 * EE/CE/ME/DE/RI are changing.
233 void kvmppc_set_msr(struct kvm_vcpu
*vcpu
, u32 new_msr
)
235 u32 old_msr
= vcpu
->arch
.shared
->msr
;
237 #ifdef CONFIG_KVM_BOOKE_HV
241 vcpu
->arch
.shared
->msr
= new_msr
;
243 kvmppc_mmu_msr_notify(vcpu
, old_msr
);
244 kvmppc_vcpu_sync_spe(vcpu
);
245 kvmppc_vcpu_sync_fpu(vcpu
);
246 kvmppc_vcpu_sync_debug(vcpu
);
249 static void kvmppc_booke_queue_irqprio(struct kvm_vcpu
*vcpu
,
250 unsigned int priority
)
252 trace_kvm_booke_queue_irqprio(vcpu
, priority
);
253 set_bit(priority
, &vcpu
->arch
.pending_exceptions
);
256 void kvmppc_core_queue_dtlb_miss(struct kvm_vcpu
*vcpu
,
257 ulong dear_flags
, ulong esr_flags
)
259 vcpu
->arch
.queued_dear
= dear_flags
;
260 vcpu
->arch
.queued_esr
= esr_flags
;
261 kvmppc_booke_queue_irqprio(vcpu
, BOOKE_IRQPRIO_DTLB_MISS
);
264 void kvmppc_core_queue_data_storage(struct kvm_vcpu
*vcpu
,
265 ulong dear_flags
, ulong esr_flags
)
267 vcpu
->arch
.queued_dear
= dear_flags
;
268 vcpu
->arch
.queued_esr
= esr_flags
;
269 kvmppc_booke_queue_irqprio(vcpu
, BOOKE_IRQPRIO_DATA_STORAGE
);
272 void kvmppc_core_queue_itlb_miss(struct kvm_vcpu
*vcpu
)
274 kvmppc_booke_queue_irqprio(vcpu
, BOOKE_IRQPRIO_ITLB_MISS
);
277 void kvmppc_core_queue_inst_storage(struct kvm_vcpu
*vcpu
, ulong esr_flags
)
279 vcpu
->arch
.queued_esr
= esr_flags
;
280 kvmppc_booke_queue_irqprio(vcpu
, BOOKE_IRQPRIO_INST_STORAGE
);
283 static void kvmppc_core_queue_alignment(struct kvm_vcpu
*vcpu
, ulong dear_flags
,
286 vcpu
->arch
.queued_dear
= dear_flags
;
287 vcpu
->arch
.queued_esr
= esr_flags
;
288 kvmppc_booke_queue_irqprio(vcpu
, BOOKE_IRQPRIO_ALIGNMENT
);
291 void kvmppc_core_queue_program(struct kvm_vcpu
*vcpu
, ulong esr_flags
)
293 vcpu
->arch
.queued_esr
= esr_flags
;
294 kvmppc_booke_queue_irqprio(vcpu
, BOOKE_IRQPRIO_PROGRAM
);
297 void kvmppc_core_queue_dec(struct kvm_vcpu
*vcpu
)
299 kvmppc_booke_queue_irqprio(vcpu
, BOOKE_IRQPRIO_DECREMENTER
);
302 int kvmppc_core_pending_dec(struct kvm_vcpu
*vcpu
)
304 return test_bit(BOOKE_IRQPRIO_DECREMENTER
, &vcpu
->arch
.pending_exceptions
);
307 void kvmppc_core_dequeue_dec(struct kvm_vcpu
*vcpu
)
309 clear_bit(BOOKE_IRQPRIO_DECREMENTER
, &vcpu
->arch
.pending_exceptions
);
312 void kvmppc_core_queue_external(struct kvm_vcpu
*vcpu
,
313 struct kvm_interrupt
*irq
)
315 unsigned int prio
= BOOKE_IRQPRIO_EXTERNAL
;
317 if (irq
->irq
== KVM_INTERRUPT_SET_LEVEL
)
318 prio
= BOOKE_IRQPRIO_EXTERNAL_LEVEL
;
320 kvmppc_booke_queue_irqprio(vcpu
, prio
);
323 void kvmppc_core_dequeue_external(struct kvm_vcpu
*vcpu
)
325 clear_bit(BOOKE_IRQPRIO_EXTERNAL
, &vcpu
->arch
.pending_exceptions
);
326 clear_bit(BOOKE_IRQPRIO_EXTERNAL_LEVEL
, &vcpu
->arch
.pending_exceptions
);
329 static void kvmppc_core_queue_watchdog(struct kvm_vcpu
*vcpu
)
331 kvmppc_booke_queue_irqprio(vcpu
, BOOKE_IRQPRIO_WATCHDOG
);
334 static void kvmppc_core_dequeue_watchdog(struct kvm_vcpu
*vcpu
)
336 clear_bit(BOOKE_IRQPRIO_WATCHDOG
, &vcpu
->arch
.pending_exceptions
);
339 void kvmppc_core_queue_debug(struct kvm_vcpu
*vcpu
)
341 kvmppc_booke_queue_irqprio(vcpu
, BOOKE_IRQPRIO_DEBUG
);
344 void kvmppc_core_dequeue_debug(struct kvm_vcpu
*vcpu
)
346 clear_bit(BOOKE_IRQPRIO_DEBUG
, &vcpu
->arch
.pending_exceptions
);
349 static void set_guest_srr(struct kvm_vcpu
*vcpu
, unsigned long srr0
, u32 srr1
)
351 kvmppc_set_srr0(vcpu
, srr0
);
352 kvmppc_set_srr1(vcpu
, srr1
);
355 static void set_guest_csrr(struct kvm_vcpu
*vcpu
, unsigned long srr0
, u32 srr1
)
357 vcpu
->arch
.csrr0
= srr0
;
358 vcpu
->arch
.csrr1
= srr1
;
361 static void set_guest_dsrr(struct kvm_vcpu
*vcpu
, unsigned long srr0
, u32 srr1
)
363 if (cpu_has_feature(CPU_FTR_DEBUG_LVL_EXC
)) {
364 vcpu
->arch
.dsrr0
= srr0
;
365 vcpu
->arch
.dsrr1
= srr1
;
367 set_guest_csrr(vcpu
, srr0
, srr1
);
371 static void set_guest_mcsrr(struct kvm_vcpu
*vcpu
, unsigned long srr0
, u32 srr1
)
373 vcpu
->arch
.mcsrr0
= srr0
;
374 vcpu
->arch
.mcsrr1
= srr1
;
377 /* Deliver the interrupt of the corresponding priority, if possible. */
378 static int kvmppc_booke_irqprio_deliver(struct kvm_vcpu
*vcpu
,
379 unsigned int priority
)
383 bool update_esr
= false, update_dear
= false, update_epr
= false;
384 ulong crit_raw
= vcpu
->arch
.shared
->critical
;
385 ulong crit_r1
= kvmppc_get_gpr(vcpu
, 1);
387 bool keep_irq
= false;
388 enum int_class int_class
;
389 ulong new_msr
= vcpu
->arch
.shared
->msr
;
391 /* Truncate crit indicators in 32 bit mode */
392 if (!(vcpu
->arch
.shared
->msr
& MSR_SF
)) {
393 crit_raw
&= 0xffffffff;
394 crit_r1
&= 0xffffffff;
397 /* Critical section when crit == r1 */
398 crit
= (crit_raw
== crit_r1
);
399 /* ... and we're in supervisor mode */
400 crit
= crit
&& !(vcpu
->arch
.shared
->msr
& MSR_PR
);
402 if (priority
== BOOKE_IRQPRIO_EXTERNAL_LEVEL
) {
403 priority
= BOOKE_IRQPRIO_EXTERNAL
;
407 if ((priority
== BOOKE_IRQPRIO_EXTERNAL
) && vcpu
->arch
.epr_flags
)
411 case BOOKE_IRQPRIO_DTLB_MISS
:
412 case BOOKE_IRQPRIO_DATA_STORAGE
:
413 case BOOKE_IRQPRIO_ALIGNMENT
:
416 case BOOKE_IRQPRIO_INST_STORAGE
:
417 case BOOKE_IRQPRIO_PROGRAM
:
420 case BOOKE_IRQPRIO_ITLB_MISS
:
421 case BOOKE_IRQPRIO_SYSCALL
:
422 case BOOKE_IRQPRIO_FP_UNAVAIL
:
423 #ifdef CONFIG_SPE_POSSIBLE
424 case BOOKE_IRQPRIO_SPE_UNAVAIL
:
425 case BOOKE_IRQPRIO_SPE_FP_DATA
:
426 case BOOKE_IRQPRIO_SPE_FP_ROUND
:
428 #ifdef CONFIG_ALTIVEC
429 case BOOKE_IRQPRIO_ALTIVEC_UNAVAIL
:
430 case BOOKE_IRQPRIO_ALTIVEC_ASSIST
:
432 case BOOKE_IRQPRIO_AP_UNAVAIL
:
434 msr_mask
= MSR_CE
| MSR_ME
| MSR_DE
;
435 int_class
= INT_CLASS_NONCRIT
;
437 case BOOKE_IRQPRIO_WATCHDOG
:
438 case BOOKE_IRQPRIO_CRITICAL
:
439 case BOOKE_IRQPRIO_DBELL_CRIT
:
440 allowed
= vcpu
->arch
.shared
->msr
& MSR_CE
;
441 allowed
= allowed
&& !crit
;
443 int_class
= INT_CLASS_CRIT
;
445 case BOOKE_IRQPRIO_MACHINE_CHECK
:
446 allowed
= vcpu
->arch
.shared
->msr
& MSR_ME
;
447 allowed
= allowed
&& !crit
;
448 int_class
= INT_CLASS_MC
;
450 case BOOKE_IRQPRIO_DECREMENTER
:
451 case BOOKE_IRQPRIO_FIT
:
454 case BOOKE_IRQPRIO_EXTERNAL
:
455 case BOOKE_IRQPRIO_DBELL
:
456 allowed
= vcpu
->arch
.shared
->msr
& MSR_EE
;
457 allowed
= allowed
&& !crit
;
458 msr_mask
= MSR_CE
| MSR_ME
| MSR_DE
;
459 int_class
= INT_CLASS_NONCRIT
;
461 case BOOKE_IRQPRIO_DEBUG
:
462 allowed
= vcpu
->arch
.shared
->msr
& MSR_DE
;
463 allowed
= allowed
&& !crit
;
465 if (cpu_has_feature(CPU_FTR_DEBUG_LVL_EXC
))
466 int_class
= INT_CLASS_DBG
;
468 int_class
= INT_CLASS_CRIT
;
475 case INT_CLASS_NONCRIT
:
476 set_guest_srr(vcpu
, vcpu
->arch
.pc
,
477 vcpu
->arch
.shared
->msr
);
480 set_guest_csrr(vcpu
, vcpu
->arch
.pc
,
481 vcpu
->arch
.shared
->msr
);
484 set_guest_dsrr(vcpu
, vcpu
->arch
.pc
,
485 vcpu
->arch
.shared
->msr
);
488 set_guest_mcsrr(vcpu
, vcpu
->arch
.pc
,
489 vcpu
->arch
.shared
->msr
);
493 vcpu
->arch
.pc
= vcpu
->arch
.ivpr
| vcpu
->arch
.ivor
[priority
];
494 if (update_esr
== true)
495 kvmppc_set_esr(vcpu
, vcpu
->arch
.queued_esr
);
496 if (update_dear
== true)
497 kvmppc_set_dar(vcpu
, vcpu
->arch
.queued_dear
);
498 if (update_epr
== true) {
499 if (vcpu
->arch
.epr_flags
& KVMPPC_EPR_USER
)
500 kvm_make_request(KVM_REQ_EPR_EXIT
, vcpu
);
501 else if (vcpu
->arch
.epr_flags
& KVMPPC_EPR_KERNEL
) {
502 BUG_ON(vcpu
->arch
.irq_type
!= KVMPPC_IRQ_MPIC
);
503 kvmppc_mpic_set_epr(vcpu
);
508 #if defined(CONFIG_64BIT)
509 if (vcpu
->arch
.epcr
& SPRN_EPCR_ICM
)
512 kvmppc_set_msr(vcpu
, new_msr
);
515 clear_bit(priority
, &vcpu
->arch
.pending_exceptions
);
518 #ifdef CONFIG_KVM_BOOKE_HV
520 * If an interrupt is pending but masked, raise a guest doorbell
521 * so that we are notified when the guest enables the relevant
524 if (vcpu
->arch
.pending_exceptions
& BOOKE_IRQMASK_EE
)
525 kvmppc_set_pending_interrupt(vcpu
, INT_CLASS_NONCRIT
);
526 if (vcpu
->arch
.pending_exceptions
& BOOKE_IRQMASK_CE
)
527 kvmppc_set_pending_interrupt(vcpu
, INT_CLASS_CRIT
);
528 if (vcpu
->arch
.pending_exceptions
& BOOKE_IRQPRIO_MACHINE_CHECK
)
529 kvmppc_set_pending_interrupt(vcpu
, INT_CLASS_MC
);
536 * Return the number of jiffies until the next timeout. If the timeout is
537 * longer than the NEXT_TIMER_MAX_DELTA, then return NEXT_TIMER_MAX_DELTA
538 * because the larger value can break the timer APIs.
540 static unsigned long watchdog_next_timeout(struct kvm_vcpu
*vcpu
)
542 u64 tb
, wdt_tb
, wdt_ticks
= 0;
544 u32 period
= TCR_GET_WP(vcpu
->arch
.tcr
);
546 wdt_tb
= 1ULL << (63 - period
);
549 * The watchdog timeout will hapeen when TB bit corresponding
550 * to watchdog will toggle from 0 to 1.
555 wdt_ticks
+= wdt_tb
- (tb
& (wdt_tb
- 1));
557 /* Convert timebase ticks to jiffies */
558 nr_jiffies
= wdt_ticks
;
560 if (do_div(nr_jiffies
, tb_ticks_per_jiffy
))
563 return min_t(unsigned long long, nr_jiffies
, NEXT_TIMER_MAX_DELTA
);
566 static void arm_next_watchdog(struct kvm_vcpu
*vcpu
)
568 unsigned long nr_jiffies
;
572 * If TSR_ENW and TSR_WIS are not set then no need to exit to
573 * userspace, so clear the KVM_REQ_WATCHDOG request.
575 if ((vcpu
->arch
.tsr
& (TSR_ENW
| TSR_WIS
)) != (TSR_ENW
| TSR_WIS
))
576 clear_bit(KVM_REQ_WATCHDOG
, &vcpu
->requests
);
578 spin_lock_irqsave(&vcpu
->arch
.wdt_lock
, flags
);
579 nr_jiffies
= watchdog_next_timeout(vcpu
);
581 * If the number of jiffies of watchdog timer >= NEXT_TIMER_MAX_DELTA
582 * then do not run the watchdog timer as this can break timer APIs.
584 if (nr_jiffies
< NEXT_TIMER_MAX_DELTA
)
585 mod_timer(&vcpu
->arch
.wdt_timer
, jiffies
+ nr_jiffies
);
587 del_timer(&vcpu
->arch
.wdt_timer
);
588 spin_unlock_irqrestore(&vcpu
->arch
.wdt_lock
, flags
);
591 void kvmppc_watchdog_func(unsigned long data
)
593 struct kvm_vcpu
*vcpu
= (struct kvm_vcpu
*)data
;
598 new_tsr
= tsr
= vcpu
->arch
.tsr
;
606 new_tsr
= tsr
| TSR_WIS
;
608 new_tsr
= tsr
| TSR_ENW
;
610 } while (cmpxchg(&vcpu
->arch
.tsr
, tsr
, new_tsr
) != tsr
);
612 if (new_tsr
& TSR_WIS
) {
614 kvm_make_request(KVM_REQ_PENDING_TIMER
, vcpu
);
619 * If this is final watchdog expiry and some action is required
620 * then exit to userspace.
622 if (final
&& (vcpu
->arch
.tcr
& TCR_WRC_MASK
) &&
623 vcpu
->arch
.watchdog_enabled
) {
625 kvm_make_request(KVM_REQ_WATCHDOG
, vcpu
);
630 * Stop running the watchdog timer after final expiration to
631 * prevent the host from being flooded with timers if the
632 * guest sets a short period.
633 * Timers will resume when TSR/TCR is updated next time.
636 arm_next_watchdog(vcpu
);
639 static void update_timer_ints(struct kvm_vcpu
*vcpu
)
641 if ((vcpu
->arch
.tcr
& TCR_DIE
) && (vcpu
->arch
.tsr
& TSR_DIS
))
642 kvmppc_core_queue_dec(vcpu
);
644 kvmppc_core_dequeue_dec(vcpu
);
646 if ((vcpu
->arch
.tcr
& TCR_WIE
) && (vcpu
->arch
.tsr
& TSR_WIS
))
647 kvmppc_core_queue_watchdog(vcpu
);
649 kvmppc_core_dequeue_watchdog(vcpu
);
652 static void kvmppc_core_check_exceptions(struct kvm_vcpu
*vcpu
)
654 unsigned long *pending
= &vcpu
->arch
.pending_exceptions
;
655 unsigned int priority
;
657 priority
= __ffs(*pending
);
658 while (priority
< BOOKE_IRQPRIO_MAX
) {
659 if (kvmppc_booke_irqprio_deliver(vcpu
, priority
))
662 priority
= find_next_bit(pending
,
663 BITS_PER_BYTE
* sizeof(*pending
),
667 /* Tell the guest about our interrupt status */
668 vcpu
->arch
.shared
->int_pending
= !!*pending
;
671 /* Check pending exceptions and deliver one, if possible. */
672 int kvmppc_core_prepare_to_enter(struct kvm_vcpu
*vcpu
)
675 WARN_ON_ONCE(!irqs_disabled());
677 kvmppc_core_check_exceptions(vcpu
);
679 if (vcpu
->requests
) {
680 /* Exception delivery raised request; start over */
684 if (vcpu
->arch
.shared
->msr
& MSR_WE
) {
686 kvm_vcpu_block(vcpu
);
687 clear_bit(KVM_REQ_UNHALT
, &vcpu
->requests
);
690 kvmppc_set_exit_type(vcpu
, EMULATED_MTMSRWE_EXITS
);
697 int kvmppc_core_check_requests(struct kvm_vcpu
*vcpu
)
699 int r
= 1; /* Indicate we want to get back into the guest */
701 if (kvm_check_request(KVM_REQ_PENDING_TIMER
, vcpu
))
702 update_timer_ints(vcpu
);
703 #if defined(CONFIG_KVM_E500V2) || defined(CONFIG_KVM_E500MC)
704 if (kvm_check_request(KVM_REQ_TLB_FLUSH
, vcpu
))
705 kvmppc_core_flush_tlb(vcpu
);
708 if (kvm_check_request(KVM_REQ_WATCHDOG
, vcpu
)) {
709 vcpu
->run
->exit_reason
= KVM_EXIT_WATCHDOG
;
713 if (kvm_check_request(KVM_REQ_EPR_EXIT
, vcpu
)) {
714 vcpu
->run
->epr
.epr
= 0;
715 vcpu
->arch
.epr_needed
= true;
716 vcpu
->run
->exit_reason
= KVM_EXIT_EPR
;
723 int kvmppc_vcpu_run(struct kvm_run
*kvm_run
, struct kvm_vcpu
*vcpu
)
726 struct debug_reg debug
;
728 if (!vcpu
->arch
.sane
) {
729 kvm_run
->exit_reason
= KVM_EXIT_INTERNAL_ERROR
;
733 s
= kvmppc_prepare_to_enter(vcpu
);
738 /* interrupts now hard-disabled */
740 #ifdef CONFIG_PPC_FPU
741 /* Save userspace FPU state in stack */
745 * Since we can't trap on MSR_FP in GS-mode, we consider the guest
746 * as always using the FPU.
748 kvmppc_load_guest_fp(vcpu
);
751 #ifdef CONFIG_ALTIVEC
752 /* Save userspace AltiVec state in stack */
753 if (cpu_has_feature(CPU_FTR_ALTIVEC
))
754 enable_kernel_altivec();
756 * Since we can't trap on MSR_VEC in GS-mode, we consider the guest
757 * as always using the AltiVec.
759 kvmppc_load_guest_altivec(vcpu
);
762 /* Switch to guest debug context */
763 debug
= vcpu
->arch
.dbg_reg
;
764 switch_booke_debug_regs(&debug
);
765 debug
= current
->thread
.debug
;
766 current
->thread
.debug
= vcpu
->arch
.dbg_reg
;
768 vcpu
->arch
.pgdir
= current
->mm
->pgd
;
769 kvmppc_fix_ee_before_entry();
771 ret
= __kvmppc_vcpu_run(kvm_run
, vcpu
);
773 /* No need for kvm_guest_exit. It's done in handle_exit.
774 We also get here with interrupts enabled. */
776 /* Switch back to user space debug context */
777 switch_booke_debug_regs(&debug
);
778 current
->thread
.debug
= debug
;
780 #ifdef CONFIG_PPC_FPU
781 kvmppc_save_guest_fp(vcpu
);
784 #ifdef CONFIG_ALTIVEC
785 kvmppc_save_guest_altivec(vcpu
);
789 vcpu
->mode
= OUTSIDE_GUEST_MODE
;
793 static int emulation_exit(struct kvm_run
*run
, struct kvm_vcpu
*vcpu
)
795 enum emulation_result er
;
797 er
= kvmppc_emulate_instruction(run
, vcpu
);
800 /* don't overwrite subtypes, just account kvm_stats */
801 kvmppc_account_exit_stat(vcpu
, EMULATED_INST_EXITS
);
802 /* Future optimization: only reload non-volatiles if
803 * they were actually modified by emulation. */
804 return RESUME_GUEST_NV
;
810 printk(KERN_CRIT
"%s: emulation at %lx failed (%08x)\n",
811 __func__
, vcpu
->arch
.pc
, vcpu
->arch
.last_inst
);
812 /* For debugging, encode the failing instruction and
813 * report it to userspace. */
814 run
->hw
.hardware_exit_reason
= ~0ULL << 32;
815 run
->hw
.hardware_exit_reason
|= vcpu
->arch
.last_inst
;
816 kvmppc_core_queue_program(vcpu
, ESR_PIL
);
819 case EMULATE_EXIT_USER
:
827 static int kvmppc_handle_debug(struct kvm_run
*run
, struct kvm_vcpu
*vcpu
)
829 struct debug_reg
*dbg_reg
= &(vcpu
->arch
.dbg_reg
);
830 u32 dbsr
= vcpu
->arch
.dbsr
;
832 if (vcpu
->guest_debug
== 0) {
834 * Debug resources belong to Guest.
835 * Imprecise debug event is not injected
837 if (dbsr
& DBSR_IDE
) {
843 if (dbsr
&& (vcpu
->arch
.shared
->msr
& MSR_DE
) &&
844 (vcpu
->arch
.dbg_reg
.dbcr0
& DBCR0_IDM
))
845 kvmppc_core_queue_debug(vcpu
);
847 /* Inject a program interrupt if trap debug is not allowed */
848 if ((dbsr
& DBSR_TIE
) && !(vcpu
->arch
.shared
->msr
& MSR_DE
))
849 kvmppc_core_queue_program(vcpu
, ESR_PTR
);
855 * Debug resource owned by userspace.
856 * Clear guest dbsr (vcpu->arch.dbsr)
859 run
->debug
.arch
.status
= 0;
860 run
->debug
.arch
.address
= vcpu
->arch
.pc
;
862 if (dbsr
& (DBSR_IAC1
| DBSR_IAC2
| DBSR_IAC3
| DBSR_IAC4
)) {
863 run
->debug
.arch
.status
|= KVMPPC_DEBUG_BREAKPOINT
;
865 if (dbsr
& (DBSR_DAC1W
| DBSR_DAC2W
))
866 run
->debug
.arch
.status
|= KVMPPC_DEBUG_WATCH_WRITE
;
867 else if (dbsr
& (DBSR_DAC1R
| DBSR_DAC2R
))
868 run
->debug
.arch
.status
|= KVMPPC_DEBUG_WATCH_READ
;
869 if (dbsr
& (DBSR_DAC1R
| DBSR_DAC1W
))
870 run
->debug
.arch
.address
= dbg_reg
->dac1
;
871 else if (dbsr
& (DBSR_DAC2R
| DBSR_DAC2W
))
872 run
->debug
.arch
.address
= dbg_reg
->dac2
;
878 static void kvmppc_fill_pt_regs(struct pt_regs
*regs
)
880 ulong r1
, ip
, msr
, lr
;
882 asm("mr %0, 1" : "=r"(r1
));
883 asm("mflr %0" : "=r"(lr
));
884 asm("mfmsr %0" : "=r"(msr
));
885 asm("bl 1f; 1: mflr %0" : "=r"(ip
));
887 memset(regs
, 0, sizeof(*regs
));
895 * For interrupts needed to be handled by host interrupt handlers,
896 * corresponding host handler are called from here in similar way
897 * (but not exact) as they are called from low level handler
898 * (such as from arch/powerpc/kernel/head_fsl_booke.S).
900 static void kvmppc_restart_interrupt(struct kvm_vcpu
*vcpu
,
901 unsigned int exit_nr
)
906 case BOOKE_INTERRUPT_EXTERNAL
:
907 kvmppc_fill_pt_regs(®s
);
910 case BOOKE_INTERRUPT_DECREMENTER
:
911 kvmppc_fill_pt_regs(®s
);
912 timer_interrupt(®s
);
914 #if defined(CONFIG_PPC_DOORBELL)
915 case BOOKE_INTERRUPT_DOORBELL
:
916 kvmppc_fill_pt_regs(®s
);
917 doorbell_exception(®s
);
920 case BOOKE_INTERRUPT_MACHINE_CHECK
:
923 case BOOKE_INTERRUPT_PERFORMANCE_MONITOR
:
924 kvmppc_fill_pt_regs(®s
);
925 performance_monitor_exception(®s
);
927 case BOOKE_INTERRUPT_WATCHDOG
:
928 kvmppc_fill_pt_regs(®s
);
929 #ifdef CONFIG_BOOKE_WDT
930 WatchdogException(®s
);
932 unknown_exception(®s
);
935 case BOOKE_INTERRUPT_CRITICAL
:
936 unknown_exception(®s
);
938 case BOOKE_INTERRUPT_DEBUG
:
939 /* Save DBSR before preemption is enabled */
940 vcpu
->arch
.dbsr
= mfspr(SPRN_DBSR
);
946 static int kvmppc_resume_inst_load(struct kvm_run
*run
, struct kvm_vcpu
*vcpu
,
947 enum emulation_result emulated
, u32 last_inst
)
954 pr_debug("%s: load instruction from guest address %lx failed\n",
955 __func__
, vcpu
->arch
.pc
);
956 /* For debugging, encode the failing instruction and
957 * report it to userspace. */
958 run
->hw
.hardware_exit_reason
= ~0ULL << 32;
959 run
->hw
.hardware_exit_reason
|= last_inst
;
960 kvmppc_core_queue_program(vcpu
, ESR_PIL
);
971 * Return value is in the form (errcode<<2 | RESUME_FLAG_HOST | RESUME_FLAG_NV)
973 int kvmppc_handle_exit(struct kvm_run
*run
, struct kvm_vcpu
*vcpu
,
974 unsigned int exit_nr
)
979 u32 last_inst
= KVM_INST_FETCH_FAILED
;
980 enum emulation_result emulated
= EMULATE_DONE
;
982 /* update before a new last_exit_type is rewritten */
983 kvmppc_update_timing_stats(vcpu
);
985 /* restart interrupts if they were meant for the host */
986 kvmppc_restart_interrupt(vcpu
, exit_nr
);
989 * get last instruction before beeing preempted
990 * TODO: for e6500 check also BOOKE_INTERRUPT_LRAT_ERROR & ESR_DATA
993 case BOOKE_INTERRUPT_DATA_STORAGE
:
994 case BOOKE_INTERRUPT_DTLB_MISS
:
995 case BOOKE_INTERRUPT_HV_PRIV
:
996 emulated
= kvmppc_get_last_inst(vcpu
, INST_GENERIC
, &last_inst
);
998 case BOOKE_INTERRUPT_PROGRAM
:
999 /* SW breakpoints arrive as illegal instructions on HV */
1000 if (vcpu
->guest_debug
& KVM_GUESTDBG_USE_SW_BP
)
1001 emulated
= kvmppc_get_last_inst(vcpu
, INST_GENERIC
, &last_inst
);
1009 trace_kvm_exit(exit_nr
, vcpu
);
1012 run
->exit_reason
= KVM_EXIT_UNKNOWN
;
1013 run
->ready_for_interrupt_injection
= 1;
1015 if (emulated
!= EMULATE_DONE
) {
1016 r
= kvmppc_resume_inst_load(run
, vcpu
, emulated
, last_inst
);
1021 case BOOKE_INTERRUPT_MACHINE_CHECK
:
1022 printk("MACHINE CHECK: %lx\n", mfspr(SPRN_MCSR
));
1023 kvmppc_dump_vcpu(vcpu
);
1024 /* For debugging, send invalid exit reason to user space */
1025 run
->hw
.hardware_exit_reason
= ~1ULL << 32;
1026 run
->hw
.hardware_exit_reason
|= mfspr(SPRN_MCSR
);
1030 case BOOKE_INTERRUPT_EXTERNAL
:
1031 kvmppc_account_exit(vcpu
, EXT_INTR_EXITS
);
1035 case BOOKE_INTERRUPT_DECREMENTER
:
1036 kvmppc_account_exit(vcpu
, DEC_EXITS
);
1040 case BOOKE_INTERRUPT_WATCHDOG
:
1044 case BOOKE_INTERRUPT_DOORBELL
:
1045 kvmppc_account_exit(vcpu
, DBELL_EXITS
);
1049 case BOOKE_INTERRUPT_GUEST_DBELL_CRIT
:
1050 kvmppc_account_exit(vcpu
, GDBELL_EXITS
);
1053 * We are here because there is a pending guest interrupt
1054 * which could not be delivered as MSR_CE or MSR_ME was not
1055 * set. Once we break from here we will retry delivery.
1060 case BOOKE_INTERRUPT_GUEST_DBELL
:
1061 kvmppc_account_exit(vcpu
, GDBELL_EXITS
);
1064 * We are here because there is a pending guest interrupt
1065 * which could not be delivered as MSR_EE was not set. Once
1066 * we break from here we will retry delivery.
1071 case BOOKE_INTERRUPT_PERFORMANCE_MONITOR
:
1075 case BOOKE_INTERRUPT_HV_PRIV
:
1076 r
= emulation_exit(run
, vcpu
);
1079 case BOOKE_INTERRUPT_PROGRAM
:
1080 if ((vcpu
->guest_debug
& KVM_GUESTDBG_USE_SW_BP
) &&
1081 (last_inst
== KVMPPC_INST_SW_BREAKPOINT
)) {
1083 * We are here because of an SW breakpoint instr,
1084 * so lets return to host to handle.
1086 r
= kvmppc_handle_debug(run
, vcpu
);
1087 run
->exit_reason
= KVM_EXIT_DEBUG
;
1088 kvmppc_account_exit(vcpu
, DEBUG_EXITS
);
1092 if (vcpu
->arch
.shared
->msr
& (MSR_PR
| MSR_GS
)) {
1094 * Program traps generated by user-level software must
1095 * be handled by the guest kernel.
1097 * In GS mode, hypervisor privileged instructions trap
1098 * on BOOKE_INTERRUPT_HV_PRIV, not here, so these are
1099 * actual program interrupts, handled by the guest.
1101 kvmppc_core_queue_program(vcpu
, vcpu
->arch
.fault_esr
);
1103 kvmppc_account_exit(vcpu
, USR_PR_INST
);
1107 r
= emulation_exit(run
, vcpu
);
1110 case BOOKE_INTERRUPT_FP_UNAVAIL
:
1111 kvmppc_booke_queue_irqprio(vcpu
, BOOKE_IRQPRIO_FP_UNAVAIL
);
1112 kvmppc_account_exit(vcpu
, FP_UNAVAIL
);
1117 case BOOKE_INTERRUPT_SPE_UNAVAIL
: {
1118 if (vcpu
->arch
.shared
->msr
& MSR_SPE
)
1119 kvmppc_vcpu_enable_spe(vcpu
);
1121 kvmppc_booke_queue_irqprio(vcpu
,
1122 BOOKE_IRQPRIO_SPE_UNAVAIL
);
1127 case BOOKE_INTERRUPT_SPE_FP_DATA
:
1128 kvmppc_booke_queue_irqprio(vcpu
, BOOKE_IRQPRIO_SPE_FP_DATA
);
1132 case BOOKE_INTERRUPT_SPE_FP_ROUND
:
1133 kvmppc_booke_queue_irqprio(vcpu
, BOOKE_IRQPRIO_SPE_FP_ROUND
);
1136 #elif defined(CONFIG_SPE_POSSIBLE)
1137 case BOOKE_INTERRUPT_SPE_UNAVAIL
:
1139 * Guest wants SPE, but host kernel doesn't support it. Send
1140 * an "unimplemented operation" program check to the guest.
1142 kvmppc_core_queue_program(vcpu
, ESR_PUO
| ESR_SPV
);
1147 * These really should never happen without CONFIG_SPE,
1148 * as we should never enable the real MSR[SPE] in the guest.
1150 case BOOKE_INTERRUPT_SPE_FP_DATA
:
1151 case BOOKE_INTERRUPT_SPE_FP_ROUND
:
1152 printk(KERN_CRIT
"%s: unexpected SPE interrupt %u at %08lx\n",
1153 __func__
, exit_nr
, vcpu
->arch
.pc
);
1154 run
->hw
.hardware_exit_reason
= exit_nr
;
1157 #endif /* CONFIG_SPE_POSSIBLE */
1160 * On cores with Vector category, KVM is loaded only if CONFIG_ALTIVEC,
1161 * see kvmppc_core_check_processor_compat().
1163 #ifdef CONFIG_ALTIVEC
1164 case BOOKE_INTERRUPT_ALTIVEC_UNAVAIL
:
1165 kvmppc_booke_queue_irqprio(vcpu
, BOOKE_IRQPRIO_ALTIVEC_UNAVAIL
);
1169 case BOOKE_INTERRUPT_ALTIVEC_ASSIST
:
1170 kvmppc_booke_queue_irqprio(vcpu
, BOOKE_IRQPRIO_ALTIVEC_ASSIST
);
1175 case BOOKE_INTERRUPT_DATA_STORAGE
:
1176 kvmppc_core_queue_data_storage(vcpu
, vcpu
->arch
.fault_dear
,
1177 vcpu
->arch
.fault_esr
);
1178 kvmppc_account_exit(vcpu
, DSI_EXITS
);
1182 case BOOKE_INTERRUPT_INST_STORAGE
:
1183 kvmppc_core_queue_inst_storage(vcpu
, vcpu
->arch
.fault_esr
);
1184 kvmppc_account_exit(vcpu
, ISI_EXITS
);
1188 case BOOKE_INTERRUPT_ALIGNMENT
:
1189 kvmppc_core_queue_alignment(vcpu
, vcpu
->arch
.fault_dear
,
1190 vcpu
->arch
.fault_esr
);
1194 #ifdef CONFIG_KVM_BOOKE_HV
1195 case BOOKE_INTERRUPT_HV_SYSCALL
:
1196 if (!(vcpu
->arch
.shared
->msr
& MSR_PR
)) {
1197 kvmppc_set_gpr(vcpu
, 3, kvmppc_kvm_pv(vcpu
));
1200 * hcall from guest userspace -- send privileged
1201 * instruction program check.
1203 kvmppc_core_queue_program(vcpu
, ESR_PPR
);
1209 case BOOKE_INTERRUPT_SYSCALL
:
1210 if (!(vcpu
->arch
.shared
->msr
& MSR_PR
) &&
1211 (((u32
)kvmppc_get_gpr(vcpu
, 0)) == KVM_SC_MAGIC_R0
)) {
1212 /* KVM PV hypercalls */
1213 kvmppc_set_gpr(vcpu
, 3, kvmppc_kvm_pv(vcpu
));
1216 /* Guest syscalls */
1217 kvmppc_booke_queue_irqprio(vcpu
, BOOKE_IRQPRIO_SYSCALL
);
1219 kvmppc_account_exit(vcpu
, SYSCALL_EXITS
);
1224 case BOOKE_INTERRUPT_DTLB_MISS
: {
1225 unsigned long eaddr
= vcpu
->arch
.fault_dear
;
1230 #ifdef CONFIG_KVM_E500V2
1231 if (!(vcpu
->arch
.shared
->msr
& MSR_PR
) &&
1232 (eaddr
& PAGE_MASK
) == vcpu
->arch
.magic_page_ea
) {
1233 kvmppc_map_magic(vcpu
);
1234 kvmppc_account_exit(vcpu
, DTLB_VIRT_MISS_EXITS
);
1241 /* Check the guest TLB. */
1242 gtlb_index
= kvmppc_mmu_dtlb_index(vcpu
, eaddr
);
1243 if (gtlb_index
< 0) {
1244 /* The guest didn't have a mapping for it. */
1245 kvmppc_core_queue_dtlb_miss(vcpu
,
1246 vcpu
->arch
.fault_dear
,
1247 vcpu
->arch
.fault_esr
);
1248 kvmppc_mmu_dtlb_miss(vcpu
);
1249 kvmppc_account_exit(vcpu
, DTLB_REAL_MISS_EXITS
);
1254 idx
= srcu_read_lock(&vcpu
->kvm
->srcu
);
1256 gpaddr
= kvmppc_mmu_xlate(vcpu
, gtlb_index
, eaddr
);
1257 gfn
= gpaddr
>> PAGE_SHIFT
;
1259 if (kvm_is_visible_gfn(vcpu
->kvm
, gfn
)) {
1260 /* The guest TLB had a mapping, but the shadow TLB
1261 * didn't, and it is RAM. This could be because:
1262 * a) the entry is mapping the host kernel, or
1263 * b) the guest used a large mapping which we're faking
1264 * Either way, we need to satisfy the fault without
1265 * invoking the guest. */
1266 kvmppc_mmu_map(vcpu
, eaddr
, gpaddr
, gtlb_index
);
1267 kvmppc_account_exit(vcpu
, DTLB_VIRT_MISS_EXITS
);
1270 /* Guest has mapped and accessed a page which is not
1272 vcpu
->arch
.paddr_accessed
= gpaddr
;
1273 vcpu
->arch
.vaddr_accessed
= eaddr
;
1274 r
= kvmppc_emulate_mmio(run
, vcpu
);
1275 kvmppc_account_exit(vcpu
, MMIO_EXITS
);
1278 srcu_read_unlock(&vcpu
->kvm
->srcu
, idx
);
1282 case BOOKE_INTERRUPT_ITLB_MISS
: {
1283 unsigned long eaddr
= vcpu
->arch
.pc
;
1290 /* Check the guest TLB. */
1291 gtlb_index
= kvmppc_mmu_itlb_index(vcpu
, eaddr
);
1292 if (gtlb_index
< 0) {
1293 /* The guest didn't have a mapping for it. */
1294 kvmppc_booke_queue_irqprio(vcpu
, BOOKE_IRQPRIO_ITLB_MISS
);
1295 kvmppc_mmu_itlb_miss(vcpu
);
1296 kvmppc_account_exit(vcpu
, ITLB_REAL_MISS_EXITS
);
1300 kvmppc_account_exit(vcpu
, ITLB_VIRT_MISS_EXITS
);
1302 idx
= srcu_read_lock(&vcpu
->kvm
->srcu
);
1304 gpaddr
= kvmppc_mmu_xlate(vcpu
, gtlb_index
, eaddr
);
1305 gfn
= gpaddr
>> PAGE_SHIFT
;
1307 if (kvm_is_visible_gfn(vcpu
->kvm
, gfn
)) {
1308 /* The guest TLB had a mapping, but the shadow TLB
1309 * didn't. This could be because:
1310 * a) the entry is mapping the host kernel, or
1311 * b) the guest used a large mapping which we're faking
1312 * Either way, we need to satisfy the fault without
1313 * invoking the guest. */
1314 kvmppc_mmu_map(vcpu
, eaddr
, gpaddr
, gtlb_index
);
1316 /* Guest mapped and leaped at non-RAM! */
1317 kvmppc_booke_queue_irqprio(vcpu
, BOOKE_IRQPRIO_MACHINE_CHECK
);
1320 srcu_read_unlock(&vcpu
->kvm
->srcu
, idx
);
1324 case BOOKE_INTERRUPT_DEBUG
: {
1325 r
= kvmppc_handle_debug(run
, vcpu
);
1326 if (r
== RESUME_HOST
)
1327 run
->exit_reason
= KVM_EXIT_DEBUG
;
1328 kvmppc_account_exit(vcpu
, DEBUG_EXITS
);
1333 printk(KERN_EMERG
"exit_nr %d\n", exit_nr
);
1339 * To avoid clobbering exit_reason, only check for signals if we
1340 * aren't already exiting to userspace for some other reason.
1342 if (!(r
& RESUME_HOST
)) {
1343 s
= kvmppc_prepare_to_enter(vcpu
);
1345 r
= (s
<< 2) | RESUME_HOST
| (r
& RESUME_FLAG_NV
);
1347 /* interrupts now hard-disabled */
1348 kvmppc_fix_ee_before_entry();
1349 kvmppc_load_guest_fp(vcpu
);
1350 kvmppc_load_guest_altivec(vcpu
);
1357 static void kvmppc_set_tsr(struct kvm_vcpu
*vcpu
, u32 new_tsr
)
1359 u32 old_tsr
= vcpu
->arch
.tsr
;
1361 vcpu
->arch
.tsr
= new_tsr
;
1363 if ((old_tsr
^ vcpu
->arch
.tsr
) & (TSR_ENW
| TSR_WIS
))
1364 arm_next_watchdog(vcpu
);
1366 update_timer_ints(vcpu
);
1369 /* Initial guest state: 16MB mapping 0 -> 0, PC = 0, MSR = 0, R1 = 16MB */
1370 int kvm_arch_vcpu_setup(struct kvm_vcpu
*vcpu
)
1376 vcpu
->arch
.shared
->pir
= vcpu
->vcpu_id
;
1377 kvmppc_set_gpr(vcpu
, 1, (16<<20) - 8); /* -8 for the callee-save LR slot */
1378 kvmppc_set_msr(vcpu
, 0);
1380 #ifndef CONFIG_KVM_BOOKE_HV
1381 vcpu
->arch
.shadow_msr
= MSR_USER
| MSR_IS
| MSR_DS
;
1382 vcpu
->arch
.shadow_pid
= 1;
1383 vcpu
->arch
.shared
->msr
= 0;
1386 /* Eye-catching numbers so we know if the guest takes an interrupt
1387 * before it's programmed its own IVPR/IVORs. */
1388 vcpu
->arch
.ivpr
= 0x55550000;
1389 for (i
= 0; i
< BOOKE_IRQPRIO_MAX
; i
++)
1390 vcpu
->arch
.ivor
[i
] = 0x7700 | i
* 4;
1392 kvmppc_init_timing_stats(vcpu
);
1394 r
= kvmppc_core_vcpu_setup(vcpu
);
1395 kvmppc_sanity_check(vcpu
);
1399 int kvmppc_subarch_vcpu_init(struct kvm_vcpu
*vcpu
)
1401 /* setup watchdog timer once */
1402 spin_lock_init(&vcpu
->arch
.wdt_lock
);
1403 setup_timer(&vcpu
->arch
.wdt_timer
, kvmppc_watchdog_func
,
1404 (unsigned long)vcpu
);
1407 * Clear DBSR.MRR to avoid guest debug interrupt as
1408 * this is of host interest
1410 mtspr(SPRN_DBSR
, DBSR_MRR
);
1414 void kvmppc_subarch_vcpu_uninit(struct kvm_vcpu
*vcpu
)
1416 del_timer_sync(&vcpu
->arch
.wdt_timer
);
1419 int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu
*vcpu
, struct kvm_regs
*regs
)
1423 regs
->pc
= vcpu
->arch
.pc
;
1424 regs
->cr
= kvmppc_get_cr(vcpu
);
1425 regs
->ctr
= vcpu
->arch
.ctr
;
1426 regs
->lr
= vcpu
->arch
.lr
;
1427 regs
->xer
= kvmppc_get_xer(vcpu
);
1428 regs
->msr
= vcpu
->arch
.shared
->msr
;
1429 regs
->srr0
= kvmppc_get_srr0(vcpu
);
1430 regs
->srr1
= kvmppc_get_srr1(vcpu
);
1431 regs
->pid
= vcpu
->arch
.pid
;
1432 regs
->sprg0
= kvmppc_get_sprg0(vcpu
);
1433 regs
->sprg1
= kvmppc_get_sprg1(vcpu
);
1434 regs
->sprg2
= kvmppc_get_sprg2(vcpu
);
1435 regs
->sprg3
= kvmppc_get_sprg3(vcpu
);
1436 regs
->sprg4
= kvmppc_get_sprg4(vcpu
);
1437 regs
->sprg5
= kvmppc_get_sprg5(vcpu
);
1438 regs
->sprg6
= kvmppc_get_sprg6(vcpu
);
1439 regs
->sprg7
= kvmppc_get_sprg7(vcpu
);
1441 for (i
= 0; i
< ARRAY_SIZE(regs
->gpr
); i
++)
1442 regs
->gpr
[i
] = kvmppc_get_gpr(vcpu
, i
);
1447 int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu
*vcpu
, struct kvm_regs
*regs
)
1451 vcpu
->arch
.pc
= regs
->pc
;
1452 kvmppc_set_cr(vcpu
, regs
->cr
);
1453 vcpu
->arch
.ctr
= regs
->ctr
;
1454 vcpu
->arch
.lr
= regs
->lr
;
1455 kvmppc_set_xer(vcpu
, regs
->xer
);
1456 kvmppc_set_msr(vcpu
, regs
->msr
);
1457 kvmppc_set_srr0(vcpu
, regs
->srr0
);
1458 kvmppc_set_srr1(vcpu
, regs
->srr1
);
1459 kvmppc_set_pid(vcpu
, regs
->pid
);
1460 kvmppc_set_sprg0(vcpu
, regs
->sprg0
);
1461 kvmppc_set_sprg1(vcpu
, regs
->sprg1
);
1462 kvmppc_set_sprg2(vcpu
, regs
->sprg2
);
1463 kvmppc_set_sprg3(vcpu
, regs
->sprg3
);
1464 kvmppc_set_sprg4(vcpu
, regs
->sprg4
);
1465 kvmppc_set_sprg5(vcpu
, regs
->sprg5
);
1466 kvmppc_set_sprg6(vcpu
, regs
->sprg6
);
1467 kvmppc_set_sprg7(vcpu
, regs
->sprg7
);
1469 for (i
= 0; i
< ARRAY_SIZE(regs
->gpr
); i
++)
1470 kvmppc_set_gpr(vcpu
, i
, regs
->gpr
[i
]);
1475 static void get_sregs_base(struct kvm_vcpu
*vcpu
,
1476 struct kvm_sregs
*sregs
)
1480 sregs
->u
.e
.features
|= KVM_SREGS_E_BASE
;
1482 sregs
->u
.e
.csrr0
= vcpu
->arch
.csrr0
;
1483 sregs
->u
.e
.csrr1
= vcpu
->arch
.csrr1
;
1484 sregs
->u
.e
.mcsr
= vcpu
->arch
.mcsr
;
1485 sregs
->u
.e
.esr
= kvmppc_get_esr(vcpu
);
1486 sregs
->u
.e
.dear
= kvmppc_get_dar(vcpu
);
1487 sregs
->u
.e
.tsr
= vcpu
->arch
.tsr
;
1488 sregs
->u
.e
.tcr
= vcpu
->arch
.tcr
;
1489 sregs
->u
.e
.dec
= kvmppc_get_dec(vcpu
, tb
);
1491 sregs
->u
.e
.vrsave
= vcpu
->arch
.vrsave
;
1494 static int set_sregs_base(struct kvm_vcpu
*vcpu
,
1495 struct kvm_sregs
*sregs
)
1497 if (!(sregs
->u
.e
.features
& KVM_SREGS_E_BASE
))
1500 vcpu
->arch
.csrr0
= sregs
->u
.e
.csrr0
;
1501 vcpu
->arch
.csrr1
= sregs
->u
.e
.csrr1
;
1502 vcpu
->arch
.mcsr
= sregs
->u
.e
.mcsr
;
1503 kvmppc_set_esr(vcpu
, sregs
->u
.e
.esr
);
1504 kvmppc_set_dar(vcpu
, sregs
->u
.e
.dear
);
1505 vcpu
->arch
.vrsave
= sregs
->u
.e
.vrsave
;
1506 kvmppc_set_tcr(vcpu
, sregs
->u
.e
.tcr
);
1508 if (sregs
->u
.e
.update_special
& KVM_SREGS_E_UPDATE_DEC
) {
1509 vcpu
->arch
.dec
= sregs
->u
.e
.dec
;
1510 kvmppc_emulate_dec(vcpu
);
1513 if (sregs
->u
.e
.update_special
& KVM_SREGS_E_UPDATE_TSR
)
1514 kvmppc_set_tsr(vcpu
, sregs
->u
.e
.tsr
);
1519 static void get_sregs_arch206(struct kvm_vcpu
*vcpu
,
1520 struct kvm_sregs
*sregs
)
1522 sregs
->u
.e
.features
|= KVM_SREGS_E_ARCH206
;
1524 sregs
->u
.e
.pir
= vcpu
->vcpu_id
;
1525 sregs
->u
.e
.mcsrr0
= vcpu
->arch
.mcsrr0
;
1526 sregs
->u
.e
.mcsrr1
= vcpu
->arch
.mcsrr1
;
1527 sregs
->u
.e
.decar
= vcpu
->arch
.decar
;
1528 sregs
->u
.e
.ivpr
= vcpu
->arch
.ivpr
;
1531 static int set_sregs_arch206(struct kvm_vcpu
*vcpu
,
1532 struct kvm_sregs
*sregs
)
1534 if (!(sregs
->u
.e
.features
& KVM_SREGS_E_ARCH206
))
1537 if (sregs
->u
.e
.pir
!= vcpu
->vcpu_id
)
1540 vcpu
->arch
.mcsrr0
= sregs
->u
.e
.mcsrr0
;
1541 vcpu
->arch
.mcsrr1
= sregs
->u
.e
.mcsrr1
;
1542 vcpu
->arch
.decar
= sregs
->u
.e
.decar
;
1543 vcpu
->arch
.ivpr
= sregs
->u
.e
.ivpr
;
1548 int kvmppc_get_sregs_ivor(struct kvm_vcpu
*vcpu
, struct kvm_sregs
*sregs
)
1550 sregs
->u
.e
.features
|= KVM_SREGS_E_IVOR
;
1552 sregs
->u
.e
.ivor_low
[0] = vcpu
->arch
.ivor
[BOOKE_IRQPRIO_CRITICAL
];
1553 sregs
->u
.e
.ivor_low
[1] = vcpu
->arch
.ivor
[BOOKE_IRQPRIO_MACHINE_CHECK
];
1554 sregs
->u
.e
.ivor_low
[2] = vcpu
->arch
.ivor
[BOOKE_IRQPRIO_DATA_STORAGE
];
1555 sregs
->u
.e
.ivor_low
[3] = vcpu
->arch
.ivor
[BOOKE_IRQPRIO_INST_STORAGE
];
1556 sregs
->u
.e
.ivor_low
[4] = vcpu
->arch
.ivor
[BOOKE_IRQPRIO_EXTERNAL
];
1557 sregs
->u
.e
.ivor_low
[5] = vcpu
->arch
.ivor
[BOOKE_IRQPRIO_ALIGNMENT
];
1558 sregs
->u
.e
.ivor_low
[6] = vcpu
->arch
.ivor
[BOOKE_IRQPRIO_PROGRAM
];
1559 sregs
->u
.e
.ivor_low
[7] = vcpu
->arch
.ivor
[BOOKE_IRQPRIO_FP_UNAVAIL
];
1560 sregs
->u
.e
.ivor_low
[8] = vcpu
->arch
.ivor
[BOOKE_IRQPRIO_SYSCALL
];
1561 sregs
->u
.e
.ivor_low
[9] = vcpu
->arch
.ivor
[BOOKE_IRQPRIO_AP_UNAVAIL
];
1562 sregs
->u
.e
.ivor_low
[10] = vcpu
->arch
.ivor
[BOOKE_IRQPRIO_DECREMENTER
];
1563 sregs
->u
.e
.ivor_low
[11] = vcpu
->arch
.ivor
[BOOKE_IRQPRIO_FIT
];
1564 sregs
->u
.e
.ivor_low
[12] = vcpu
->arch
.ivor
[BOOKE_IRQPRIO_WATCHDOG
];
1565 sregs
->u
.e
.ivor_low
[13] = vcpu
->arch
.ivor
[BOOKE_IRQPRIO_DTLB_MISS
];
1566 sregs
->u
.e
.ivor_low
[14] = vcpu
->arch
.ivor
[BOOKE_IRQPRIO_ITLB_MISS
];
1567 sregs
->u
.e
.ivor_low
[15] = vcpu
->arch
.ivor
[BOOKE_IRQPRIO_DEBUG
];
1571 int kvmppc_set_sregs_ivor(struct kvm_vcpu
*vcpu
, struct kvm_sregs
*sregs
)
1573 if (!(sregs
->u
.e
.features
& KVM_SREGS_E_IVOR
))
1576 vcpu
->arch
.ivor
[BOOKE_IRQPRIO_CRITICAL
] = sregs
->u
.e
.ivor_low
[0];
1577 vcpu
->arch
.ivor
[BOOKE_IRQPRIO_MACHINE_CHECK
] = sregs
->u
.e
.ivor_low
[1];
1578 vcpu
->arch
.ivor
[BOOKE_IRQPRIO_DATA_STORAGE
] = sregs
->u
.e
.ivor_low
[2];
1579 vcpu
->arch
.ivor
[BOOKE_IRQPRIO_INST_STORAGE
] = sregs
->u
.e
.ivor_low
[3];
1580 vcpu
->arch
.ivor
[BOOKE_IRQPRIO_EXTERNAL
] = sregs
->u
.e
.ivor_low
[4];
1581 vcpu
->arch
.ivor
[BOOKE_IRQPRIO_ALIGNMENT
] = sregs
->u
.e
.ivor_low
[5];
1582 vcpu
->arch
.ivor
[BOOKE_IRQPRIO_PROGRAM
] = sregs
->u
.e
.ivor_low
[6];
1583 vcpu
->arch
.ivor
[BOOKE_IRQPRIO_FP_UNAVAIL
] = sregs
->u
.e
.ivor_low
[7];
1584 vcpu
->arch
.ivor
[BOOKE_IRQPRIO_SYSCALL
] = sregs
->u
.e
.ivor_low
[8];
1585 vcpu
->arch
.ivor
[BOOKE_IRQPRIO_AP_UNAVAIL
] = sregs
->u
.e
.ivor_low
[9];
1586 vcpu
->arch
.ivor
[BOOKE_IRQPRIO_DECREMENTER
] = sregs
->u
.e
.ivor_low
[10];
1587 vcpu
->arch
.ivor
[BOOKE_IRQPRIO_FIT
] = sregs
->u
.e
.ivor_low
[11];
1588 vcpu
->arch
.ivor
[BOOKE_IRQPRIO_WATCHDOG
] = sregs
->u
.e
.ivor_low
[12];
1589 vcpu
->arch
.ivor
[BOOKE_IRQPRIO_DTLB_MISS
] = sregs
->u
.e
.ivor_low
[13];
1590 vcpu
->arch
.ivor
[BOOKE_IRQPRIO_ITLB_MISS
] = sregs
->u
.e
.ivor_low
[14];
1591 vcpu
->arch
.ivor
[BOOKE_IRQPRIO_DEBUG
] = sregs
->u
.e
.ivor_low
[15];
1596 int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu
*vcpu
,
1597 struct kvm_sregs
*sregs
)
1599 sregs
->pvr
= vcpu
->arch
.pvr
;
1601 get_sregs_base(vcpu
, sregs
);
1602 get_sregs_arch206(vcpu
, sregs
);
1603 return vcpu
->kvm
->arch
.kvm_ops
->get_sregs(vcpu
, sregs
);
1606 int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu
*vcpu
,
1607 struct kvm_sregs
*sregs
)
1611 if (vcpu
->arch
.pvr
!= sregs
->pvr
)
1614 ret
= set_sregs_base(vcpu
, sregs
);
1618 ret
= set_sregs_arch206(vcpu
, sregs
);
1622 return vcpu
->kvm
->arch
.kvm_ops
->set_sregs(vcpu
, sregs
);
1625 int kvmppc_get_one_reg(struct kvm_vcpu
*vcpu
, u64 id
,
1626 union kvmppc_one_reg
*val
)
1631 case KVM_REG_PPC_IAC1
:
1632 *val
= get_reg_val(id
, vcpu
->arch
.dbg_reg
.iac1
);
1634 case KVM_REG_PPC_IAC2
:
1635 *val
= get_reg_val(id
, vcpu
->arch
.dbg_reg
.iac2
);
1637 #if CONFIG_PPC_ADV_DEBUG_IACS > 2
1638 case KVM_REG_PPC_IAC3
:
1639 *val
= get_reg_val(id
, vcpu
->arch
.dbg_reg
.iac3
);
1641 case KVM_REG_PPC_IAC4
:
1642 *val
= get_reg_val(id
, vcpu
->arch
.dbg_reg
.iac4
);
1645 case KVM_REG_PPC_DAC1
:
1646 *val
= get_reg_val(id
, vcpu
->arch
.dbg_reg
.dac1
);
1648 case KVM_REG_PPC_DAC2
:
1649 *val
= get_reg_val(id
, vcpu
->arch
.dbg_reg
.dac2
);
1651 case KVM_REG_PPC_EPR
: {
1652 u32 epr
= kvmppc_get_epr(vcpu
);
1653 *val
= get_reg_val(id
, epr
);
1656 #if defined(CONFIG_64BIT)
1657 case KVM_REG_PPC_EPCR
:
1658 *val
= get_reg_val(id
, vcpu
->arch
.epcr
);
1661 case KVM_REG_PPC_TCR
:
1662 *val
= get_reg_val(id
, vcpu
->arch
.tcr
);
1664 case KVM_REG_PPC_TSR
:
1665 *val
= get_reg_val(id
, vcpu
->arch
.tsr
);
1667 case KVM_REG_PPC_DEBUG_INST
:
1668 *val
= get_reg_val(id
, KVMPPC_INST_SW_BREAKPOINT
);
1670 case KVM_REG_PPC_VRSAVE
:
1671 *val
= get_reg_val(id
, vcpu
->arch
.vrsave
);
1674 r
= vcpu
->kvm
->arch
.kvm_ops
->get_one_reg(vcpu
, id
, val
);
1681 int kvmppc_set_one_reg(struct kvm_vcpu
*vcpu
, u64 id
,
1682 union kvmppc_one_reg
*val
)
1687 case KVM_REG_PPC_IAC1
:
1688 vcpu
->arch
.dbg_reg
.iac1
= set_reg_val(id
, *val
);
1690 case KVM_REG_PPC_IAC2
:
1691 vcpu
->arch
.dbg_reg
.iac2
= set_reg_val(id
, *val
);
1693 #if CONFIG_PPC_ADV_DEBUG_IACS > 2
1694 case KVM_REG_PPC_IAC3
:
1695 vcpu
->arch
.dbg_reg
.iac3
= set_reg_val(id
, *val
);
1697 case KVM_REG_PPC_IAC4
:
1698 vcpu
->arch
.dbg_reg
.iac4
= set_reg_val(id
, *val
);
1701 case KVM_REG_PPC_DAC1
:
1702 vcpu
->arch
.dbg_reg
.dac1
= set_reg_val(id
, *val
);
1704 case KVM_REG_PPC_DAC2
:
1705 vcpu
->arch
.dbg_reg
.dac2
= set_reg_val(id
, *val
);
1707 case KVM_REG_PPC_EPR
: {
1708 u32 new_epr
= set_reg_val(id
, *val
);
1709 kvmppc_set_epr(vcpu
, new_epr
);
1712 #if defined(CONFIG_64BIT)
1713 case KVM_REG_PPC_EPCR
: {
1714 u32 new_epcr
= set_reg_val(id
, *val
);
1715 kvmppc_set_epcr(vcpu
, new_epcr
);
1719 case KVM_REG_PPC_OR_TSR
: {
1720 u32 tsr_bits
= set_reg_val(id
, *val
);
1721 kvmppc_set_tsr_bits(vcpu
, tsr_bits
);
1724 case KVM_REG_PPC_CLEAR_TSR
: {
1725 u32 tsr_bits
= set_reg_val(id
, *val
);
1726 kvmppc_clr_tsr_bits(vcpu
, tsr_bits
);
1729 case KVM_REG_PPC_TSR
: {
1730 u32 tsr
= set_reg_val(id
, *val
);
1731 kvmppc_set_tsr(vcpu
, tsr
);
1734 case KVM_REG_PPC_TCR
: {
1735 u32 tcr
= set_reg_val(id
, *val
);
1736 kvmppc_set_tcr(vcpu
, tcr
);
1739 case KVM_REG_PPC_VRSAVE
:
1740 vcpu
->arch
.vrsave
= set_reg_val(id
, *val
);
1743 r
= vcpu
->kvm
->arch
.kvm_ops
->set_one_reg(vcpu
, id
, val
);
1750 int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu
*vcpu
, struct kvm_fpu
*fpu
)
1755 int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu
*vcpu
, struct kvm_fpu
*fpu
)
1760 int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu
*vcpu
,
1761 struct kvm_translation
*tr
)
1765 r
= kvmppc_core_vcpu_translate(vcpu
, tr
);
1769 int kvm_vm_ioctl_get_dirty_log(struct kvm
*kvm
, struct kvm_dirty_log
*log
)
1774 void kvmppc_core_free_memslot(struct kvm
*kvm
, struct kvm_memory_slot
*free
,
1775 struct kvm_memory_slot
*dont
)
1779 int kvmppc_core_create_memslot(struct kvm
*kvm
, struct kvm_memory_slot
*slot
,
1780 unsigned long npages
)
1785 int kvmppc_core_prepare_memory_region(struct kvm
*kvm
,
1786 struct kvm_memory_slot
*memslot
,
1787 struct kvm_userspace_memory_region
*mem
)
1792 void kvmppc_core_commit_memory_region(struct kvm
*kvm
,
1793 struct kvm_userspace_memory_region
*mem
,
1794 const struct kvm_memory_slot
*old
)
1798 void kvmppc_core_flush_memslot(struct kvm
*kvm
, struct kvm_memory_slot
*memslot
)
1802 void kvmppc_set_epcr(struct kvm_vcpu
*vcpu
, u32 new_epcr
)
1804 #if defined(CONFIG_64BIT)
1805 vcpu
->arch
.epcr
= new_epcr
;
1806 #ifdef CONFIG_KVM_BOOKE_HV
1807 vcpu
->arch
.shadow_epcr
&= ~SPRN_EPCR_GICM
;
1808 if (vcpu
->arch
.epcr
& SPRN_EPCR_ICM
)
1809 vcpu
->arch
.shadow_epcr
|= SPRN_EPCR_GICM
;
1814 void kvmppc_set_tcr(struct kvm_vcpu
*vcpu
, u32 new_tcr
)
1816 vcpu
->arch
.tcr
= new_tcr
;
1817 arm_next_watchdog(vcpu
);
1818 update_timer_ints(vcpu
);
1821 void kvmppc_set_tsr_bits(struct kvm_vcpu
*vcpu
, u32 tsr_bits
)
1823 set_bits(tsr_bits
, &vcpu
->arch
.tsr
);
1825 kvm_make_request(KVM_REQ_PENDING_TIMER
, vcpu
);
1826 kvm_vcpu_kick(vcpu
);
1829 void kvmppc_clr_tsr_bits(struct kvm_vcpu
*vcpu
, u32 tsr_bits
)
1831 clear_bits(tsr_bits
, &vcpu
->arch
.tsr
);
1834 * We may have stopped the watchdog due to
1835 * being stuck on final expiration.
1837 if (tsr_bits
& (TSR_ENW
| TSR_WIS
))
1838 arm_next_watchdog(vcpu
);
1840 update_timer_ints(vcpu
);
1843 void kvmppc_decrementer_func(struct kvm_vcpu
*vcpu
)
1845 if (vcpu
->arch
.tcr
& TCR_ARE
) {
1846 vcpu
->arch
.dec
= vcpu
->arch
.decar
;
1847 kvmppc_emulate_dec(vcpu
);
1850 kvmppc_set_tsr_bits(vcpu
, TSR_DIS
);
1853 static int kvmppc_booke_add_breakpoint(struct debug_reg
*dbg_reg
,
1854 uint64_t addr
, int index
)
1858 dbg_reg
->dbcr0
|= DBCR0_IAC1
;
1859 dbg_reg
->iac1
= addr
;
1862 dbg_reg
->dbcr0
|= DBCR0_IAC2
;
1863 dbg_reg
->iac2
= addr
;
1865 #if CONFIG_PPC_ADV_DEBUG_IACS > 2
1867 dbg_reg
->dbcr0
|= DBCR0_IAC3
;
1868 dbg_reg
->iac3
= addr
;
1871 dbg_reg
->dbcr0
|= DBCR0_IAC4
;
1872 dbg_reg
->iac4
= addr
;
1879 dbg_reg
->dbcr0
|= DBCR0_IDM
;
1883 static int kvmppc_booke_add_watchpoint(struct debug_reg
*dbg_reg
, uint64_t addr
,
1884 int type
, int index
)
1888 if (type
& KVMPPC_DEBUG_WATCH_READ
)
1889 dbg_reg
->dbcr0
|= DBCR0_DAC1R
;
1890 if (type
& KVMPPC_DEBUG_WATCH_WRITE
)
1891 dbg_reg
->dbcr0
|= DBCR0_DAC1W
;
1892 dbg_reg
->dac1
= addr
;
1895 if (type
& KVMPPC_DEBUG_WATCH_READ
)
1896 dbg_reg
->dbcr0
|= DBCR0_DAC2R
;
1897 if (type
& KVMPPC_DEBUG_WATCH_WRITE
)
1898 dbg_reg
->dbcr0
|= DBCR0_DAC2W
;
1899 dbg_reg
->dac2
= addr
;
1905 dbg_reg
->dbcr0
|= DBCR0_IDM
;
1908 void kvm_guest_protect_msr(struct kvm_vcpu
*vcpu
, ulong prot_bitmap
, bool set
)
1910 /* XXX: Add similar MSR protection for BookE-PR */
1911 #ifdef CONFIG_KVM_BOOKE_HV
1912 BUG_ON(prot_bitmap
& ~(MSRP_UCLEP
| MSRP_DEP
| MSRP_PMMP
));
1914 if (prot_bitmap
& MSR_UCLE
)
1915 vcpu
->arch
.shadow_msrp
|= MSRP_UCLEP
;
1916 if (prot_bitmap
& MSR_DE
)
1917 vcpu
->arch
.shadow_msrp
|= MSRP_DEP
;
1918 if (prot_bitmap
& MSR_PMM
)
1919 vcpu
->arch
.shadow_msrp
|= MSRP_PMMP
;
1921 if (prot_bitmap
& MSR_UCLE
)
1922 vcpu
->arch
.shadow_msrp
&= ~MSRP_UCLEP
;
1923 if (prot_bitmap
& MSR_DE
)
1924 vcpu
->arch
.shadow_msrp
&= ~MSRP_DEP
;
1925 if (prot_bitmap
& MSR_PMM
)
1926 vcpu
->arch
.shadow_msrp
&= ~MSRP_PMMP
;
1931 int kvmppc_xlate(struct kvm_vcpu
*vcpu
, ulong eaddr
, enum xlate_instdata xlid
,
1932 enum xlate_readwrite xlrw
, struct kvmppc_pte
*pte
)
1937 #ifdef CONFIG_KVM_E500V2
1938 if (!(vcpu
->arch
.shared
->msr
& MSR_PR
) &&
1939 (eaddr
& PAGE_MASK
) == vcpu
->arch
.magic_page_ea
) {
1941 pte
->raddr
= (vcpu
->arch
.magic_page_pa
& PAGE_MASK
) |
1942 (eaddr
& ~PAGE_MASK
);
1943 pte
->vpage
= eaddr
>> PAGE_SHIFT
;
1944 pte
->may_read
= true;
1945 pte
->may_write
= true;
1946 pte
->may_execute
= true;
1952 /* Check the guest TLB. */
1955 gtlb_index
= kvmppc_mmu_itlb_index(vcpu
, eaddr
);
1958 gtlb_index
= kvmppc_mmu_dtlb_index(vcpu
, eaddr
);
1964 /* Do we have a TLB entry at all? */
1968 gpaddr
= kvmppc_mmu_xlate(vcpu
, gtlb_index
, eaddr
);
1971 pte
->raddr
= (gpaddr
& PAGE_MASK
) | (eaddr
& ~PAGE_MASK
);
1972 pte
->vpage
= eaddr
>> PAGE_SHIFT
;
1974 /* XXX read permissions from the guest TLB */
1975 pte
->may_read
= true;
1976 pte
->may_write
= true;
1977 pte
->may_execute
= true;
1982 int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu
*vcpu
,
1983 struct kvm_guest_debug
*dbg
)
1985 struct debug_reg
*dbg_reg
;
1986 int n
, b
= 0, w
= 0;
1988 if (!(dbg
->control
& KVM_GUESTDBG_ENABLE
)) {
1989 vcpu
->arch
.dbg_reg
.dbcr0
= 0;
1990 vcpu
->guest_debug
= 0;
1991 kvm_guest_protect_msr(vcpu
, MSR_DE
, false);
1995 kvm_guest_protect_msr(vcpu
, MSR_DE
, true);
1996 vcpu
->guest_debug
= dbg
->control
;
1997 vcpu
->arch
.dbg_reg
.dbcr0
= 0;
1999 if (vcpu
->guest_debug
& KVM_GUESTDBG_SINGLESTEP
)
2000 vcpu
->arch
.dbg_reg
.dbcr0
|= DBCR0_IDM
| DBCR0_IC
;
2002 /* Code below handles only HW breakpoints */
2003 dbg_reg
= &(vcpu
->arch
.dbg_reg
);
2005 #ifdef CONFIG_KVM_BOOKE_HV
2007 * On BookE-HV (e500mc) the guest is always executed with MSR.GS=1
2008 * DBCR1 and DBCR2 are set to trigger debug events when MSR.PR is 0
2014 * On BookE-PR (e500v2) the guest is always executed with MSR.PR=1
2015 * We set DBCR1 and DBCR2 to only trigger debug events when MSR.PR
2018 dbg_reg
->dbcr1
= DBCR1_IAC1US
| DBCR1_IAC2US
| DBCR1_IAC3US
|
2020 dbg_reg
->dbcr2
= DBCR2_DAC1US
| DBCR2_DAC2US
;
2023 if (!(vcpu
->guest_debug
& KVM_GUESTDBG_USE_HW_BP
))
2026 for (n
= 0; n
< (KVMPPC_BOOKE_IAC_NUM
+ KVMPPC_BOOKE_DAC_NUM
); n
++) {
2027 uint64_t addr
= dbg
->arch
.bp
[n
].addr
;
2028 uint32_t type
= dbg
->arch
.bp
[n
].type
;
2030 if (type
== KVMPPC_DEBUG_NONE
)
2033 if (type
& !(KVMPPC_DEBUG_WATCH_READ
|
2034 KVMPPC_DEBUG_WATCH_WRITE
|
2035 KVMPPC_DEBUG_BREAKPOINT
))
2038 if (type
& KVMPPC_DEBUG_BREAKPOINT
) {
2039 /* Setting H/W breakpoint */
2040 if (kvmppc_booke_add_breakpoint(dbg_reg
, addr
, b
++))
2043 /* Setting H/W watchpoint */
2044 if (kvmppc_booke_add_watchpoint(dbg_reg
, addr
,
2053 void kvmppc_booke_vcpu_load(struct kvm_vcpu
*vcpu
, int cpu
)
2055 vcpu
->cpu
= smp_processor_id();
2056 current
->thread
.kvm_vcpu
= vcpu
;
2059 void kvmppc_booke_vcpu_put(struct kvm_vcpu
*vcpu
)
2061 current
->thread
.kvm_vcpu
= NULL
;
2064 /* Clear pending debug event in DBSR */
2065 kvmppc_clear_dbsr();
2068 void kvmppc_mmu_destroy(struct kvm_vcpu
*vcpu
)
2070 vcpu
->kvm
->arch
.kvm_ops
->mmu_destroy(vcpu
);
2073 int kvmppc_core_init_vm(struct kvm
*kvm
)
2075 return kvm
->arch
.kvm_ops
->init_vm(kvm
);
2078 struct kvm_vcpu
*kvmppc_core_vcpu_create(struct kvm
*kvm
, unsigned int id
)
2080 return kvm
->arch
.kvm_ops
->vcpu_create(kvm
, id
);
2083 void kvmppc_core_vcpu_free(struct kvm_vcpu
*vcpu
)
2085 vcpu
->kvm
->arch
.kvm_ops
->vcpu_free(vcpu
);
2088 void kvmppc_core_destroy_vm(struct kvm
*kvm
)
2090 kvm
->arch
.kvm_ops
->destroy_vm(kvm
);
2093 void kvmppc_core_vcpu_load(struct kvm_vcpu
*vcpu
, int cpu
)
2095 vcpu
->kvm
->arch
.kvm_ops
->vcpu_load(vcpu
, cpu
);
2098 void kvmppc_core_vcpu_put(struct kvm_vcpu
*vcpu
)
2100 vcpu
->kvm
->arch
.kvm_ops
->vcpu_put(vcpu
);
2103 int __init
kvmppc_booke_init(void)
2105 #ifndef CONFIG_KVM_BOOKE_HV
2106 unsigned long ivor
[16];
2107 unsigned long *handler
= kvmppc_booke_handler_addr
;
2108 unsigned long max_ivor
= 0;
2109 unsigned long handler_len
;
2112 /* We install our own exception handlers by hijacking IVPR. IVPR must
2113 * be 16-bit aligned, so we need a 64KB allocation. */
2114 kvmppc_booke_handlers
= __get_free_pages(GFP_KERNEL
| __GFP_ZERO
,
2116 if (!kvmppc_booke_handlers
)
2119 /* XXX make sure our handlers are smaller than Linux's */
2121 /* Copy our interrupt handlers to match host IVORs. That way we don't
2122 * have to swap the IVORs on every guest/host transition. */
2123 ivor
[0] = mfspr(SPRN_IVOR0
);
2124 ivor
[1] = mfspr(SPRN_IVOR1
);
2125 ivor
[2] = mfspr(SPRN_IVOR2
);
2126 ivor
[3] = mfspr(SPRN_IVOR3
);
2127 ivor
[4] = mfspr(SPRN_IVOR4
);
2128 ivor
[5] = mfspr(SPRN_IVOR5
);
2129 ivor
[6] = mfspr(SPRN_IVOR6
);
2130 ivor
[7] = mfspr(SPRN_IVOR7
);
2131 ivor
[8] = mfspr(SPRN_IVOR8
);
2132 ivor
[9] = mfspr(SPRN_IVOR9
);
2133 ivor
[10] = mfspr(SPRN_IVOR10
);
2134 ivor
[11] = mfspr(SPRN_IVOR11
);
2135 ivor
[12] = mfspr(SPRN_IVOR12
);
2136 ivor
[13] = mfspr(SPRN_IVOR13
);
2137 ivor
[14] = mfspr(SPRN_IVOR14
);
2138 ivor
[15] = mfspr(SPRN_IVOR15
);
2140 for (i
= 0; i
< 16; i
++) {
2141 if (ivor
[i
] > max_ivor
)
2144 handler_len
= handler
[i
+ 1] - handler
[i
];
2145 memcpy((void *)kvmppc_booke_handlers
+ ivor
[i
],
2146 (void *)handler
[i
], handler_len
);
2149 handler_len
= handler
[max_ivor
+ 1] - handler
[max_ivor
];
2150 flush_icache_range(kvmppc_booke_handlers
, kvmppc_booke_handlers
+
2151 ivor
[max_ivor
] + handler_len
);
2152 #endif /* !BOOKE_HV */
2156 void __exit
kvmppc_booke_exit(void)
2158 free_pages(kvmppc_booke_handlers
, VCPU_SIZE_ORDER
);