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 * Copyright 2011 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
13 * Derived from book3s_rmhandlers.S and other files, which are:
15 * Copyright SUSE Linux Products GmbH 2009
17 * Authors: Alexander Graf <agraf@suse.de>
20 #include <asm/ppc_asm.h>
21 #include <asm/kvm_asm.h>
25 #include <asm/ptrace.h>
26 #include <asm/hvcall.h>
27 #include <asm/asm-offsets.h>
28 #include <asm/exception-64s.h>
29 #include <asm/kvm_book3s_asm.h>
30 #include <asm/mmu-hash64.h>
32 #ifdef __LITTLE_ENDIAN__
33 #error Need to fix lppaca and SLB shadow accesses in little endian mode
36 /* Values in HSTATE_NAPPING(r13) */
37 #define NAPPING_CEDE 1
38 #define NAPPING_NOVCPU 2
41 * Call kvmppc_hv_entry in real mode.
42 * Must be called with interrupts hard-disabled.
46 * LR = return address to continue at after eventually re-enabling MMU
48 _GLOBAL(kvmppc_hv_entry_trampoline)
50 std r0, PPC_LR_STKOFF(r1)
53 LOAD_REG_ADDR(r5, kvmppc_call_hv_entry)
58 mtmsrd r0,1 /* clear RI in MSR */
64 ld r4, HSTATE_KVM_VCPU(r13)
67 /* Back from guest - restore host state and return to caller */
70 /* Restore host DABR and DABRX */
71 ld r5,HSTATE_DABR(r13)
75 END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_207S)
81 /* Reload the host's PMU registers */
82 ld r3, PACALPPACAPTR(r13) /* is the host using the PMU? */
83 lbz r4, LPPACA_PMCINUSE(r3)
85 beq 23f /* skip if not */
86 lwz r3, HSTATE_PMC(r13)
87 lwz r4, HSTATE_PMC + 4(r13)
88 lwz r5, HSTATE_PMC + 8(r13)
89 lwz r6, HSTATE_PMC + 12(r13)
90 lwz r8, HSTATE_PMC + 16(r13)
91 lwz r9, HSTATE_PMC + 20(r13)
93 lwz r10, HSTATE_PMC + 24(r13)
94 lwz r11, HSTATE_PMC + 28(r13)
95 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201)
105 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201)
106 ld r3, HSTATE_MMCR(r13)
107 ld r4, HSTATE_MMCR + 8(r13)
108 ld r5, HSTATE_MMCR + 16(r13)
116 * Reload DEC. HDEC interrupts were disabled when
117 * we reloaded the host's LPCR value.
119 ld r3, HSTATE_DECEXP(r13)
125 * For external and machine check interrupts, we need
126 * to call the Linux handler to process the interrupt.
127 * We do that by jumping to absolute address 0x500 for
128 * external interrupts, or the machine_check_fwnmi label
129 * for machine checks (since firmware might have patched
130 * the vector area at 0x200). The [h]rfid at the end of the
131 * handler will return to the book3s_hv_interrupts.S code.
132 * For other interrupts we do the rfid to get back
133 * to the book3s_hv_interrupts.S code here.
135 ld r8, 112+PPC_LR_STKOFF(r1)
137 ld r7, HSTATE_HOST_MSR(r13)
139 cmpwi cr1, r12, BOOK3S_INTERRUPT_MACHINE_CHECK
140 cmpwi r12, BOOK3S_INTERRUPT_EXTERNAL
143 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
145 /* RFI into the highmem handler, or branch to interrupt handler */
149 mtmsrd r6, 1 /* Clear RI in MSR */
152 beqa 0x500 /* external interrupt (PPC970) */
153 beq cr1, 13f /* machine check */
156 /* On POWER7, we have external interrupts set to use HSRR0/1 */
157 11: mtspr SPRN_HSRR0, r8
161 13: b machine_check_fwnmi
163 kvmppc_primary_no_guest:
164 /* We handle this much like a ceded vcpu */
165 /* set our bit in napping_threads */
166 ld r5, HSTATE_KVM_VCORE(r13)
167 lbz r7, HSTATE_PTID(r13)
170 addi r6, r5, VCORE_NAPPING_THREADS
175 /* order napping_threads update vs testing entry_exit_count */
178 lwz r7, VCORE_ENTRY_EXIT(r5)
180 bge kvm_novcpu_exit /* another thread already exiting */
181 li r3, NAPPING_NOVCPU
182 stb r3, HSTATE_NAPPING(r13)
184 stb r3, HSTATE_HWTHREAD_REQ(r13)
189 ld r1, HSTATE_HOST_R1(r13)
190 ld r5, HSTATE_KVM_VCORE(r13)
192 stb r0, HSTATE_NAPPING(r13)
193 stb r0, HSTATE_HWTHREAD_REQ(r13)
195 /* check the wake reason */
196 bl kvmppc_check_wake_reason
198 /* see if any other thread is already exiting */
199 lwz r0, VCORE_ENTRY_EXIT(r5)
203 /* clear our bit in napping_threads */
204 lbz r7, HSTATE_PTID(r13)
207 addi r6, r5, VCORE_NAPPING_THREADS
213 /* See if the wake reason means we need to exit */
217 /* Got an IPI but other vcpus aren't yet exiting, must be a latecomer */
218 ld r4, HSTATE_KVM_VCPU(r13)
226 * We come in here when wakened from nap mode.
227 * Relocation is off and most register values are lost.
228 * r13 points to the PACA.
230 .globl kvm_start_guest
234 li r0,KVM_HWTHREAD_IN_KVM
235 stb r0,HSTATE_HWTHREAD_STATE(r13)
237 /* NV GPR values from power7_idle() will no longer be valid */
239 stb r0,PACA_NAPSTATELOST(r13)
241 /* were we napping due to cede? */
242 lbz r0,HSTATE_NAPPING(r13)
243 cmpwi r0,NAPPING_CEDE
245 cmpwi r0,NAPPING_NOVCPU
246 beq kvm_novcpu_wakeup
248 ld r1,PACAEMERGSP(r13)
249 subi r1,r1,STACK_FRAME_OVERHEAD
252 * We weren't napping due to cede, so this must be a secondary
253 * thread being woken up to run a guest, or being woken up due
254 * to a stray IPI. (Or due to some machine check or hypervisor
255 * maintenance interrupt while the core is in KVM.)
258 /* Check the wake reason in SRR1 to see why we got here */
259 bl kvmppc_check_wake_reason
263 /* get vcpu pointer, NULL if we have no vcpu to run */
264 ld r4,HSTATE_KVM_VCPU(r13)
266 /* if we have no vcpu to run, go back to sleep */
269 /* Set HSTATE_DSCR(r13) to something sensible */
270 LOAD_REG_ADDR(r6, dscr_default)
272 std r6, HSTATE_DSCR(r13)
276 /* Back from the guest, go back to nap */
277 /* Clear our vcpu pointer so we don't come back in early */
279 std r0, HSTATE_KVM_VCPU(r13)
281 * Make sure we clear HSTATE_KVM_VCPU(r13) before incrementing
282 * the nap_count, because once the increment to nap_count is
283 * visible we could be given another vcpu.
287 /* increment the nap count and then go to nap mode */
288 ld r4, HSTATE_KVM_VCORE(r13)
289 addi r4, r4, VCORE_NAP_COUNT
296 li r0, KVM_HWTHREAD_IN_NAP
297 stb r0, HSTATE_HWTHREAD_STATE(r13)
301 rlwimi r4, r3, 0, LPCR_PECE0 | LPCR_PECE1
304 std r0, HSTATE_SCRATCH0(r13)
306 ld r0, HSTATE_SCRATCH0(r13)
312 /******************************************************************************
316 *****************************************************************************/
318 .global kvmppc_hv_entry
323 * R4 = vcpu pointer (or NULL)
327 * all other volatile GPRS = free
330 std r0, PPC_LR_STKOFF(r1)
333 /* Save R1 in the PACA */
334 std r1, HSTATE_HOST_R1(r13)
336 li r6, KVM_GUEST_MODE_HOST_HV
337 stb r6, HSTATE_IN_GUEST(r13)
347 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201)
349 * POWER7 host -> guest partition switch code.
350 * We don't have to lock against concurrent tlbies,
351 * but we do have to coordinate across hardware threads.
353 /* Increment entry count iff exit count is zero. */
354 ld r5,HSTATE_KVM_VCORE(r13)
355 addi r9,r5,VCORE_ENTRY_EXIT
357 cmpwi r3,0x100 /* any threads starting to exit? */
358 bge secondary_too_late /* if so we're too late to the party */
363 /* Primary thread switches to guest partition. */
364 ld r9,VCORE_KVM(r5) /* pointer to struct kvm */
365 lbz r6,HSTATE_PTID(r13)
370 li r0,LPID_RSVD /* switch to reserved LPID */
373 mtspr SPRN_SDR1,r6 /* switch to partition page table */
377 /* See if we need to flush the TLB */
378 lhz r6,PACAPACAINDEX(r13) /* test_bit(cpu, need_tlb_flush) */
379 clrldi r7,r6,64-6 /* extract bit number (6 bits) */
380 srdi r6,r6,6 /* doubleword number */
381 sldi r6,r6,3 /* address offset */
383 addi r6,r6,KVM_NEED_FLUSH /* dword in kvm->arch.need_tlb_flush */
389 23: ldarx r7,0,r6 /* if set, clear the bit */
393 /* Flush the TLB of any entries for this LPID */
394 /* use arch 2.07S as a proxy for POWER8 */
396 li r6,512 /* POWER8 has 512 sets */
398 li r6,128 /* POWER7 has 128 sets */
399 ALT_FTR_SECTION_END_IFSET(CPU_FTR_ARCH_207S)
401 li r7,0x800 /* IS field = 0b10 */
408 /* Add timebase offset onto timebase */
409 22: ld r8,VCORE_TB_OFFSET(r5)
412 mftb r6 /* current host timebase */
414 mtspr SPRN_TBU40,r8 /* update upper 40 bits */
415 mftb r7 /* check if lower 24 bits overflowed */
420 addis r8,r8,0x100 /* if so, increment upper 40 bits */
423 /* Load guest PCR value to select appropriate compat mode */
424 37: ld r7, VCORE_PCR(r5)
431 /* DPDES is shared between threads */
432 ld r8, VCORE_DPDES(r5)
434 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S)
437 stb r0,VCORE_IN_GUEST(r5) /* signal secondaries to continue */
440 /* Secondary threads wait for primary to have done partition switch */
441 20: lbz r0,VCORE_IN_GUEST(r5)
445 /* Set LPCR and RMOR. */
446 10: ld r8,VCORE_LPCR(r5)
452 /* Check if HDEC expires soon */
454 cmpwi r3,512 /* 1 microsecond */
455 li r12,BOOK3S_INTERRUPT_HV_DECREMENTER
460 * PPC970 host -> guest partition switch code.
461 * We have to lock against concurrent tlbies,
462 * using native_tlbie_lock to lock against host tlbies
463 * and kvm->arch.tlbie_lock to lock against guest tlbies.
464 * We also have to invalidate the TLB since its
465 * entries aren't tagged with the LPID.
467 30: ld r5,HSTATE_KVM_VCORE(r13)
468 ld r9,VCORE_KVM(r5) /* pointer to struct kvm */
470 /* first take native_tlbie_lock */
473 .tc native_tlbie_lock[TC],native_tlbie_lock
475 ld r3,toc_tlbie_lock@toc(2)
476 #ifdef __BIG_ENDIAN__
477 lwz r8,PACA_LOCK_TOKEN(r13)
479 lwz r8,PACAPACAINDEX(r13)
488 ld r5,HSTATE_KVM_VCORE(r13)
489 ld r7,VCORE_LPCR(r5) /* use vcore->lpcr to store HID4 */
491 rotldi r0,r0,HID4_LPID5_SH /* all lpid bits in HID4 = 1 */
495 mtspr SPRN_HID4,r0 /* switch to reserved LPID */
498 stw r0,0(r3) /* drop native_tlbie_lock */
500 /* invalidate the whole TLB */
509 /* Take the guest's tlbie_lock */
510 addi r3,r9,KVM_TLBIE_LOCK
518 mtspr SPRN_SDR1,r6 /* switch to partition page table */
520 /* Set up HID4 with the guest's LPID etc. */
525 /* drop the guest's tlbie_lock */
529 /* Check if HDEC expires soon */
532 li r12,BOOK3S_INTERRUPT_HV_DECREMENTER
535 /* Enable HDEC interrupts */
538 rldimi r0,r3, HID0_HDICE_SH, 64-HID0_HDICE_SH-1
548 /* Do we have a guest vcpu to run? */
550 beq kvmppc_primary_no_guest
553 /* Load up guest SLB entries */
554 lwz r5,VCPU_SLB_MAX(r4)
559 1: ld r8,VCPU_SLB_E(r6)
562 addi r6,r6,VCPU_SLB_SIZE
565 /* Increment yield count if they have a VPA */
569 lwz r5, LPPACA_YIELDCOUNT(r3)
571 stw r5, LPPACA_YIELDCOUNT(r3)
573 stb r6, VCPU_VPA_DIRTY(r4)
577 /* Save purr/spurr */
580 std r5,HSTATE_PURR(r13)
581 std r6,HSTATE_SPURR(r13)
586 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
589 /* Set partition DABR */
590 /* Do this before re-enabling PMU to avoid P7 DABR corruption bug */
591 lwz r5,VCPU_DABRX(r4)
595 BEGIN_FTR_SECTION_NESTED(89)
597 END_FTR_SECTION_NESTED(CPU_FTR_ARCH_206, CPU_FTR_ARCH_206, 89)
598 END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_207S)
600 /* Load guest PMU registers */
601 /* R4 is live here (vcpu pointer) */
603 sldi r3, r3, 31 /* MMCR0_FC (freeze counters) bit */
604 mtspr SPRN_MMCR0, r3 /* freeze all counters, disable ints */
606 lwz r3, VCPU_PMC(r4) /* always load up guest PMU registers */
607 lwz r5, VCPU_PMC + 4(r4) /* to prevent information leak */
608 lwz r6, VCPU_PMC + 8(r4)
609 lwz r7, VCPU_PMC + 12(r4)
610 lwz r8, VCPU_PMC + 16(r4)
611 lwz r9, VCPU_PMC + 20(r4)
613 lwz r10, VCPU_PMC + 24(r4)
614 lwz r11, VCPU_PMC + 28(r4)
615 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201)
625 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201)
627 ld r5, VCPU_MMCR + 8(r4)
628 ld r6, VCPU_MMCR + 16(r4)
636 ld r5, VCPU_MMCR + 24(r4)
638 lwz r7, VCPU_PMC + 24(r4)
639 lwz r8, VCPU_PMC + 28(r4)
640 ld r9, VCPU_MMCR + 32(r4)
646 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S)
650 /* Load up FP, VMX and VSX registers */
653 ld r14, VCPU_GPR(R14)(r4)
654 ld r15, VCPU_GPR(R15)(r4)
655 ld r16, VCPU_GPR(R16)(r4)
656 ld r17, VCPU_GPR(R17)(r4)
657 ld r18, VCPU_GPR(R18)(r4)
658 ld r19, VCPU_GPR(R19)(r4)
659 ld r20, VCPU_GPR(R20)(r4)
660 ld r21, VCPU_GPR(R21)(r4)
661 ld r22, VCPU_GPR(R22)(r4)
662 ld r23, VCPU_GPR(R23)(r4)
663 ld r24, VCPU_GPR(R24)(r4)
664 ld r25, VCPU_GPR(R25)(r4)
665 ld r26, VCPU_GPR(R26)(r4)
666 ld r27, VCPU_GPR(R27)(r4)
667 ld r28, VCPU_GPR(R28)(r4)
668 ld r29, VCPU_GPR(R29)(r4)
669 ld r30, VCPU_GPR(R30)(r4)
670 ld r31, VCPU_GPR(R31)(r4)
673 /* Switch DSCR to guest value */
676 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
679 /* Skip next section on POWER7 or PPC970 */
681 END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_207S)
682 /* Turn on TM so we can access TFHAR/TFIAR/TEXASR */
685 rldimi r8, r0, MSR_TM_LG, 63-MSR_TM_LG
688 /* Load up POWER8-specific registers */
690 lwz r6, VCPU_PSPB(r4)
696 ld r6, VCPU_DAWRX(r4)
697 ld r7, VCPU_CIABR(r4)
707 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
708 ld r5, VCPU_TFHAR(r4)
709 ld r6, VCPU_TFIAR(r4)
710 ld r7, VCPU_TEXASR(r4)
713 mtspr SPRN_TEXASR, r7
715 ld r8, VCPU_EBBHR(r4)
717 ld r5, VCPU_EBBRR(r4)
718 ld r6, VCPU_BESCR(r4)
719 ld r7, VCPU_CSIGR(r4)
725 ld r5, VCPU_TCSCR(r4)
727 lwz r7, VCPU_GUEST_PID(r4)
736 * Set the decrementer to the guest decrementer.
738 ld r8,VCPU_DEC_EXPIRES(r4)
744 ld r5, VCPU_SPRG0(r4)
745 ld r6, VCPU_SPRG1(r4)
746 ld r7, VCPU_SPRG2(r4)
747 ld r8, VCPU_SPRG3(r4)
753 /* Load up DAR and DSISR */
755 lwz r6, VCPU_DSISR(r4)
760 /* Restore AMR and UAMOR, set AMOR to all 1s */
767 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
769 /* Restore state of CTRL run bit; assume 1 on entry */
783 kvmppc_cede_reentry: /* r4 = vcpu, r13 = paca */
791 deliver_guest_interrupt:
792 /* r11 = vcpu->arch.msr & ~MSR_HV */
793 rldicl r11, r11, 63 - MSR_HV_LG, 1
794 rotldi r11, r11, 1 + MSR_HV_LG
797 /* Check if we can deliver an external or decrementer interrupt now */
798 ld r0, VCPU_PENDING_EXC(r4)
799 rldicl r0, r0, 64 - BOOK3S_IRQPRIO_EXTERNAL_LEVEL, 63
801 andi. r8, r11, MSR_EE
804 /* Insert EXTERNAL_LEVEL bit into LPCR at the MER bit position */
805 rldimi r8, r0, LPCR_MER_SH, 63 - LPCR_MER_SH
808 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
810 li r0, BOOK3S_INTERRUPT_EXTERNAL
814 li r0, BOOK3S_INTERRUPT_DECREMENTER
817 12: mtspr SPRN_SRR0, r10
820 ld r11, VCPU_INTR_MSR(r4)
826 * R10: value for HSRR0
827 * R11: value for HSRR1
832 stb r0,VCPU_CEDED(r4) /* cancel cede */
836 /* Activate guest mode, so faults get handled by KVM */
837 li r9, KVM_GUEST_MODE_GUEST_HV
838 stb r9, HSTATE_IN_GUEST(r13)
845 END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
848 END_FTR_SECTION_IFSET(CPU_FTR_HAS_PPR)
855 ld r1, VCPU_GPR(R1)(r4)
856 ld r2, VCPU_GPR(R2)(r4)
857 ld r3, VCPU_GPR(R3)(r4)
858 ld r5, VCPU_GPR(R5)(r4)
859 ld r6, VCPU_GPR(R6)(r4)
860 ld r7, VCPU_GPR(R7)(r4)
861 ld r8, VCPU_GPR(R8)(r4)
862 ld r9, VCPU_GPR(R9)(r4)
863 ld r10, VCPU_GPR(R10)(r4)
864 ld r11, VCPU_GPR(R11)(r4)
865 ld r12, VCPU_GPR(R12)(r4)
866 ld r13, VCPU_GPR(R13)(r4)
870 END_FTR_SECTION_IFSET(CPU_FTR_HAS_PPR)
871 ld r0, VCPU_GPR(R0)(r4)
872 ld r4, VCPU_GPR(R4)(r4)
877 /******************************************************************************
881 *****************************************************************************/
884 * We come here from the first-level interrupt handlers.
886 .globl kvmppc_interrupt_hv
890 * R12 = interrupt vector
892 * guest CR, R12 saved in shadow VCPU SCRATCH1/0
893 * guest R13 saved in SPRN_SCRATCH0
895 std r9, HSTATE_SCRATCH2(r13)
897 lbz r9, HSTATE_IN_GUEST(r13)
898 cmpwi r9, KVM_GUEST_MODE_HOST_HV
899 beq kvmppc_bad_host_intr
900 #ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
901 cmpwi r9, KVM_GUEST_MODE_GUEST
902 ld r9, HSTATE_SCRATCH2(r13)
903 beq kvmppc_interrupt_pr
905 /* We're now back in the host but in guest MMU context */
906 li r9, KVM_GUEST_MODE_HOST_HV
907 stb r9, HSTATE_IN_GUEST(r13)
909 ld r9, HSTATE_KVM_VCPU(r13)
913 std r0, VCPU_GPR(R0)(r9)
914 std r1, VCPU_GPR(R1)(r9)
915 std r2, VCPU_GPR(R2)(r9)
916 std r3, VCPU_GPR(R3)(r9)
917 std r4, VCPU_GPR(R4)(r9)
918 std r5, VCPU_GPR(R5)(r9)
919 std r6, VCPU_GPR(R6)(r9)
920 std r7, VCPU_GPR(R7)(r9)
921 std r8, VCPU_GPR(R8)(r9)
922 ld r0, HSTATE_SCRATCH2(r13)
923 std r0, VCPU_GPR(R9)(r9)
924 std r10, VCPU_GPR(R10)(r9)
925 std r11, VCPU_GPR(R11)(r9)
926 ld r3, HSTATE_SCRATCH0(r13)
927 lwz r4, HSTATE_SCRATCH1(r13)
928 std r3, VCPU_GPR(R12)(r9)
931 ld r3, HSTATE_CFAR(r13)
932 std r3, VCPU_CFAR(r9)
933 END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
935 ld r4, HSTATE_PPR(r13)
937 END_FTR_SECTION_IFSET(CPU_FTR_HAS_PPR)
939 /* Restore R1/R2 so we can handle faults */
940 ld r1, HSTATE_HOST_R1(r13)
945 std r10, VCPU_SRR0(r9)
946 std r11, VCPU_SRR1(r9)
947 andi. r0, r12, 2 /* need to read HSRR0/1? */
949 mfspr r10, SPRN_HSRR0
950 mfspr r11, SPRN_HSRR1
952 1: std r10, VCPU_PC(r9)
953 std r11, VCPU_MSR(r9)
957 std r3, VCPU_GPR(R13)(r9)
960 stw r12,VCPU_TRAP(r9)
962 /* Save HEIR (HV emulation assist reg) in last_inst
963 if this is an HEI (HV emulation interrupt, e40) */
964 li r3,KVM_INST_FETCH_FAILED
966 cmpwi r12,BOOK3S_INTERRUPT_H_EMUL_ASSIST
969 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
970 11: stw r3,VCPU_LAST_INST(r9)
972 /* these are volatile across C function calls */
979 /* If this is a page table miss then see if it's theirs or ours */
980 cmpwi r12, BOOK3S_INTERRUPT_H_DATA_STORAGE
982 cmpwi r12, BOOK3S_INTERRUPT_H_INST_STORAGE
984 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
986 /* See if this is a leftover HDEC interrupt */
987 cmpwi r12,BOOK3S_INTERRUPT_HV_DECREMENTER
993 /* See if this is an hcall we can handle in real mode */
994 cmpwi r12,BOOK3S_INTERRUPT_SYSCALL
995 beq hcall_try_real_mode
997 /* Only handle external interrupts here on arch 206 and later */
999 b ext_interrupt_to_host
1000 END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_206)
1002 /* External interrupt ? */
1003 cmpwi r12, BOOK3S_INTERRUPT_EXTERNAL
1004 bne+ ext_interrupt_to_host
1006 /* External interrupt, first check for host_ipi. If this is
1007 * set, we know the host wants us out so let's do it now
1011 bgt ext_interrupt_to_host
1013 /* Check if any CPU is heading out to the host, if so head out too */
1014 ld r5, HSTATE_KVM_VCORE(r13)
1015 lwz r0, VCORE_ENTRY_EXIT(r5)
1017 bge ext_interrupt_to_host
1019 /* Return to guest after delivering any pending interrupt */
1021 b deliver_guest_interrupt
1023 ext_interrupt_to_host:
1025 guest_exit_cont: /* r9 = vcpu, r12 = trap, r13 = paca */
1026 /* Save more register state */
1029 std r6, VCPU_DAR(r9)
1030 stw r7, VCPU_DSISR(r9)
1032 /* don't overwrite fault_dar/fault_dsisr if HDSI */
1033 cmpwi r12,BOOK3S_INTERRUPT_H_DATA_STORAGE
1035 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
1036 std r6, VCPU_FAULT_DAR(r9)
1037 stw r7, VCPU_FAULT_DSISR(r9)
1039 /* See if it is a machine check */
1040 cmpwi r12, BOOK3S_INTERRUPT_MACHINE_CHECK
1041 beq machine_check_realmode
1044 /* Save guest CTRL register, set runlatch to 1 */
1045 6: mfspr r6,SPRN_CTRLF
1046 stw r6,VCPU_CTRL(r9)
1052 /* Read the guest SLB and save it away */
1053 lwz r0,VCPU_SLB_NR(r9) /* number of entries in SLB */
1059 andis. r0,r8,SLB_ESID_V@h
1061 add r8,r8,r6 /* put index in */
1063 std r8,VCPU_SLB_E(r7)
1064 std r3,VCPU_SLB_V(r7)
1065 addi r7,r7,VCPU_SLB_SIZE
1069 stw r5,VCPU_SLB_MAX(r9)
1072 * Save the guest PURR/SPURR
1078 ld r8,VCPU_SPURR(r9)
1079 std r5,VCPU_PURR(r9)
1080 std r6,VCPU_SPURR(r9)
1085 * Restore host PURR/SPURR and add guest times
1086 * so that the time in the guest gets accounted.
1088 ld r3,HSTATE_PURR(r13)
1089 ld r4,HSTATE_SPURR(r13)
1094 END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_201)
1101 std r5,VCPU_DEC_EXPIRES(r9)
1105 END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_207S)
1106 /* Turn on TM so we can access TFHAR/TFIAR/TEXASR */
1109 rldimi r8, r0, MSR_TM_LG, 63-MSR_TM_LG
1112 /* Save POWER8-specific registers */
1116 std r5, VCPU_IAMR(r9)
1117 stw r6, VCPU_PSPB(r9)
1118 std r7, VCPU_FSCR(r9)
1123 std r6, VCPU_VTB(r9)
1124 std r7, VCPU_TAR(r9)
1125 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1126 mfspr r5, SPRN_TFHAR
1127 mfspr r6, SPRN_TFIAR
1128 mfspr r7, SPRN_TEXASR
1129 std r5, VCPU_TFHAR(r9)
1130 std r6, VCPU_TFIAR(r9)
1131 std r7, VCPU_TEXASR(r9)
1133 mfspr r8, SPRN_EBBHR
1134 std r8, VCPU_EBBHR(r9)
1135 mfspr r5, SPRN_EBBRR
1136 mfspr r6, SPRN_BESCR
1137 mfspr r7, SPRN_CSIGR
1139 std r5, VCPU_EBBRR(r9)
1140 std r6, VCPU_BESCR(r9)
1141 std r7, VCPU_CSIGR(r9)
1142 std r8, VCPU_TACR(r9)
1143 mfspr r5, SPRN_TCSCR
1147 std r5, VCPU_TCSCR(r9)
1148 std r6, VCPU_ACOP(r9)
1149 stw r7, VCPU_GUEST_PID(r9)
1150 std r8, VCPU_WORT(r9)
1153 /* Save and reset AMR and UAMOR before turning on the MMU */
1158 std r6,VCPU_UAMOR(r9)
1161 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
1163 /* Switch DSCR back to host value */
1166 ld r7, HSTATE_DSCR(r13)
1167 std r8, VCPU_DSCR(r9)
1169 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
1171 /* Save non-volatile GPRs */
1172 std r14, VCPU_GPR(R14)(r9)
1173 std r15, VCPU_GPR(R15)(r9)
1174 std r16, VCPU_GPR(R16)(r9)
1175 std r17, VCPU_GPR(R17)(r9)
1176 std r18, VCPU_GPR(R18)(r9)
1177 std r19, VCPU_GPR(R19)(r9)
1178 std r20, VCPU_GPR(R20)(r9)
1179 std r21, VCPU_GPR(R21)(r9)
1180 std r22, VCPU_GPR(R22)(r9)
1181 std r23, VCPU_GPR(R23)(r9)
1182 std r24, VCPU_GPR(R24)(r9)
1183 std r25, VCPU_GPR(R25)(r9)
1184 std r26, VCPU_GPR(R26)(r9)
1185 std r27, VCPU_GPR(R27)(r9)
1186 std r28, VCPU_GPR(R28)(r9)
1187 std r29, VCPU_GPR(R29)(r9)
1188 std r30, VCPU_GPR(R30)(r9)
1189 std r31, VCPU_GPR(R31)(r9)
1192 mfspr r3, SPRN_SPRG0
1193 mfspr r4, SPRN_SPRG1
1194 mfspr r5, SPRN_SPRG2
1195 mfspr r6, SPRN_SPRG3
1196 std r3, VCPU_SPRG0(r9)
1197 std r4, VCPU_SPRG1(r9)
1198 std r5, VCPU_SPRG2(r9)
1199 std r6, VCPU_SPRG3(r9)
1205 /* Increment yield count if they have a VPA */
1206 ld r8, VCPU_VPA(r9) /* do they have a VPA? */
1209 lwz r3, LPPACA_YIELDCOUNT(r8)
1211 stw r3, LPPACA_YIELDCOUNT(r8)
1213 stb r3, VCPU_VPA_DIRTY(r9)
1215 /* Save PMU registers if requested */
1216 /* r8 and cr0.eq are live here */
1218 sldi r3, r3, 31 /* MMCR0_FC (freeze counters) bit */
1219 mfspr r4, SPRN_MMCR0 /* save MMCR0 */
1220 mtspr SPRN_MMCR0, r3 /* freeze all counters, disable ints */
1221 mfspr r6, SPRN_MMCRA
1223 /* On P7, clear MMCRA in order to disable SDAR updates */
1225 mtspr SPRN_MMCRA, r7
1226 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
1228 beq 21f /* if no VPA, save PMU stuff anyway */
1229 lbz r7, LPPACA_PMCINUSE(r8)
1230 cmpwi r7, 0 /* did they ask for PMU stuff to be saved? */
1232 std r3, VCPU_MMCR(r9) /* if not, set saved MMCR0 to FC */
1234 21: mfspr r5, SPRN_MMCR1
1237 std r4, VCPU_MMCR(r9)
1238 std r5, VCPU_MMCR + 8(r9)
1239 std r6, VCPU_MMCR + 16(r9)
1240 std r7, VCPU_SIAR(r9)
1241 std r8, VCPU_SDAR(r9)
1249 mfspr r10, SPRN_PMC7
1250 mfspr r11, SPRN_PMC8
1251 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201)
1252 stw r3, VCPU_PMC(r9)
1253 stw r4, VCPU_PMC + 4(r9)
1254 stw r5, VCPU_PMC + 8(r9)
1255 stw r6, VCPU_PMC + 12(r9)
1256 stw r7, VCPU_PMC + 16(r9)
1257 stw r8, VCPU_PMC + 20(r9)
1259 stw r10, VCPU_PMC + 24(r9)
1260 stw r11, VCPU_PMC + 28(r9)
1261 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201)
1263 mfspr r4, SPRN_MMCR2
1265 mfspr r6, SPRN_SPMC1
1266 mfspr r7, SPRN_SPMC2
1267 mfspr r8, SPRN_MMCRS
1268 std r4, VCPU_MMCR + 24(r9)
1269 std r5, VCPU_SIER(r9)
1270 stw r6, VCPU_PMC + 24(r9)
1271 stw r7, VCPU_PMC + 28(r9)
1272 std r8, VCPU_MMCR + 32(r9)
1274 mtspr SPRN_MMCRS, r4
1275 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S)
1283 hdec_soon: /* r12 = trap, r13 = paca */
1286 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201)
1288 * POWER7 guest -> host partition switch code.
1289 * We don't have to lock against tlbies but we do
1290 * have to coordinate the hardware threads.
1292 /* Increment the threads-exiting-guest count in the 0xff00
1293 bits of vcore->entry_exit_count */
1294 ld r5,HSTATE_KVM_VCORE(r13)
1295 addi r6,r5,VCORE_ENTRY_EXIT
1300 isync /* order stwcx. vs. reading napping_threads */
1303 * At this point we have an interrupt that we have to pass
1304 * up to the kernel or qemu; we can't handle it in real mode.
1305 * Thus we have to do a partition switch, so we have to
1306 * collect the other threads, if we are the first thread
1307 * to take an interrupt. To do this, we set the HDEC to 0,
1308 * which causes an HDEC interrupt in all threads within 2ns
1309 * because the HDEC register is shared between all 4 threads.
1310 * However, we don't need to bother if this is an HDEC
1311 * interrupt, since the other threads will already be on their
1312 * way here in that case.
1314 cmpwi r3,0x100 /* Are we the first here? */
1316 cmpwi r12,BOOK3S_INTERRUPT_HV_DECREMENTER
1322 * Send an IPI to any napping threads, since an HDEC interrupt
1323 * doesn't wake CPUs up from nap.
1325 lwz r3,VCORE_NAPPING_THREADS(r5)
1326 lbz r4,HSTATE_PTID(r13)
1329 andc. r3,r3,r0 /* no sense IPI'ing ourselves */
1331 /* Order entry/exit update vs. IPIs */
1333 mulli r4,r4,PACA_SIZE /* get paca for thread 0 */
1337 ld r8,HSTATE_XICS_PHYS(r6) /* get thread's XICS reg addr */
1340 stbcix r0,r7,r8 /* trigger the IPI */
1342 addi r6,r6,PACA_SIZE
1346 /* Secondary threads wait for primary to do partition switch */
1347 43: ld r5,HSTATE_KVM_VCORE(r13)
1348 ld r4,VCORE_KVM(r5) /* pointer to struct kvm */
1349 lbz r3,HSTATE_PTID(r13)
1353 13: lbz r3,VCORE_IN_GUEST(r5)
1359 /* Primary thread waits for all the secondaries to exit guest */
1360 15: lwz r3,VCORE_ENTRY_EXIT(r5)
1367 /* Primary thread switches back to host partition */
1368 ld r6,KVM_HOST_SDR1(r4)
1369 lwz r7,KVM_HOST_LPID(r4)
1370 li r8,LPID_RSVD /* switch to reserved LPID */
1373 mtspr SPRN_SDR1,r6 /* switch to partition page table */
1378 /* DPDES is shared between threads */
1379 mfspr r7, SPRN_DPDES
1380 std r7, VCORE_DPDES(r5)
1381 /* clear DPDES so we don't get guest doorbells in the host */
1383 mtspr SPRN_DPDES, r8
1384 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S)
1386 /* Subtract timebase offset from timebase */
1387 ld r8,VCORE_TB_OFFSET(r5)
1390 mftb r6 /* current host timebase */
1392 mtspr SPRN_TBU40,r8 /* update upper 40 bits */
1393 mftb r7 /* check if lower 24 bits overflowed */
1398 addis r8,r8,0x100 /* if so, increment upper 40 bits */
1402 17: ld r0, VCORE_PCR(r5)
1408 /* Signal secondary CPUs to continue */
1409 stb r0,VCORE_IN_GUEST(r5)
1410 lis r8,0x7fff /* MAX_INT@h */
1413 16: ld r8,KVM_HOST_LPCR(r4)
1419 * PPC970 guest -> host partition switch code.
1420 * We have to lock against concurrent tlbies, and
1421 * we have to flush the whole TLB.
1423 32: ld r5,HSTATE_KVM_VCORE(r13)
1424 ld r4,VCORE_KVM(r5) /* pointer to struct kvm */
1426 /* Take the guest's tlbie_lock */
1427 #ifdef __BIG_ENDIAN__
1428 lwz r8,PACA_LOCK_TOKEN(r13)
1430 lwz r8,PACAPACAINDEX(r13)
1432 addi r3,r4,KVM_TLBIE_LOCK
1440 ld r7,KVM_HOST_LPCR(r4) /* use kvm->arch.host_lpcr for HID4 */
1442 rotldi r0,r0,HID4_LPID5_SH /* all lpid bits in HID4 = 1 */
1446 mtspr SPRN_HID4,r0 /* switch to reserved LPID */
1449 stw r0,0(r3) /* drop guest tlbie_lock */
1451 /* invalidate the whole TLB */
1460 /* take native_tlbie_lock */
1461 ld r3,toc_tlbie_lock@toc(2)
1469 ld r6,KVM_HOST_SDR1(r4)
1470 mtspr SPRN_SDR1,r6 /* switch to host page table */
1472 /* Set up host HID4 value */
1477 stw r0,0(r3) /* drop native_tlbie_lock */
1479 lis r8,0x7fff /* MAX_INT@h */
1482 /* Disable HDEC interrupts */
1485 rldimi r0,r3, HID0_HDICE_SH, 64-HID0_HDICE_SH-1
1495 /* load host SLB entries */
1496 33: ld r8,PACA_SLBSHADOWPTR(r13)
1498 .rept SLB_NUM_BOLTED
1499 ld r5,SLBSHADOW_SAVEAREA(r8)
1500 ld r6,SLBSHADOW_SAVEAREA+8(r8)
1501 andis. r7,r5,SLB_ESID_V@h
1512 std r5,VCPU_DEC_EXPIRES(r9)
1516 END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_207S)
1517 /* Turn on TM so we can access TFHAR/TFIAR/TEXASR */
1520 rldimi r8, r0, MSR_TM_LG, 63-MSR_TM_LG
1523 /* Save POWER8-specific registers */
1527 std r5, VCPU_IAMR(r9)
1528 stw r6, VCPU_PSPB(r9)
1529 std r7, VCPU_FSCR(r9)
1534 std r6, VCPU_VTB(r9)
1535 std r7, VCPU_TAR(r9)
1536 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1537 mfspr r5, SPRN_TFHAR
1538 mfspr r6, SPRN_TFIAR
1539 mfspr r7, SPRN_TEXASR
1540 std r5, VCPU_TFHAR(r9)
1541 std r6, VCPU_TFIAR(r9)
1542 std r7, VCPU_TEXASR(r9)
1544 mfspr r8, SPRN_EBBHR
1545 std r8, VCPU_EBBHR(r9)
1546 mfspr r5, SPRN_EBBRR
1547 mfspr r6, SPRN_BESCR
1548 mfspr r7, SPRN_CSIGR
1550 std r5, VCPU_EBBRR(r9)
1551 std r6, VCPU_BESCR(r9)
1552 std r7, VCPU_CSIGR(r9)
1553 std r8, VCPU_TACR(r9)
1554 mfspr r5, SPRN_TCSCR
1558 std r5, VCPU_TCSCR(r9)
1559 std r6, VCPU_ACOP(r9)
1560 stw r7, VCPU_GUEST_PID(r9)
1561 std r8, VCPU_WORT(r9)
1564 /* Save and reset AMR and UAMOR before turning on the MMU */
1569 std r6,VCPU_UAMOR(r9)
1572 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
1574 /* Unset guest mode */
1575 li r0, KVM_GUEST_MODE_NONE
1576 stb r0, HSTATE_IN_GUEST(r13)
1578 ld r0, 112+PPC_LR_STKOFF(r1)
1584 * Check whether an HDSI is an HPTE not found fault or something else.
1585 * If it is an HPTE not found fault that is due to the guest accessing
1586 * a page that they have mapped but which we have paged out, then
1587 * we continue on with the guest exit path. In all other cases,
1588 * reflect the HDSI to the guest as a DSI.
1592 mfspr r6, SPRN_HDSISR
1593 /* HPTE not found fault or protection fault? */
1594 andis. r0, r6, (DSISR_NOHPTE | DSISR_PROTFAULT)@h
1595 beq 1f /* if not, send it to the guest */
1596 andi. r0, r11, MSR_DR /* data relocation enabled? */
1599 PPC_SLBFEE_DOT(R5, R0) /* if so, look up SLB */
1600 bne 1f /* if no SLB entry found */
1601 4: std r4, VCPU_FAULT_DAR(r9)
1602 stw r6, VCPU_FAULT_DSISR(r9)
1604 /* Search the hash table. */
1605 mr r3, r9 /* vcpu pointer */
1606 li r7, 1 /* data fault */
1607 bl .kvmppc_hpte_hv_fault
1608 ld r9, HSTATE_KVM_VCPU(r13)
1610 ld r11, VCPU_MSR(r9)
1611 li r12, BOOK3S_INTERRUPT_H_DATA_STORAGE
1612 cmpdi r3, 0 /* retry the instruction */
1614 cmpdi r3, -1 /* handle in kernel mode */
1616 cmpdi r3, -2 /* MMIO emulation; need instr word */
1619 /* Synthesize a DSI for the guest */
1620 ld r4, VCPU_FAULT_DAR(r9)
1622 1: mtspr SPRN_DAR, r4
1623 mtspr SPRN_DSISR, r6
1624 mtspr SPRN_SRR0, r10
1625 mtspr SPRN_SRR1, r11
1626 li r10, BOOK3S_INTERRUPT_DATA_STORAGE
1627 ld r11, VCPU_INTR_MSR(r9)
1628 fast_interrupt_c_return:
1629 6: ld r7, VCPU_CTR(r9)
1630 lwz r8, VCPU_XER(r9)
1636 3: ld r5, VCPU_KVM(r9) /* not relocated, use VRMA */
1637 ld r5, KVM_VRMA_SLB_V(r5)
1640 /* If this is for emulated MMIO, load the instruction word */
1641 2: li r8, KVM_INST_FETCH_FAILED /* In case lwz faults */
1643 /* Set guest mode to 'jump over instruction' so if lwz faults
1644 * we'll just continue at the next IP. */
1645 li r0, KVM_GUEST_MODE_SKIP
1646 stb r0, HSTATE_IN_GUEST(r13)
1648 /* Do the access with MSR:DR enabled */
1650 ori r4, r3, MSR_DR /* Enable paging for data */
1655 /* Store the result */
1656 stw r8, VCPU_LAST_INST(r9)
1658 /* Unset guest mode. */
1659 li r0, KVM_GUEST_MODE_HOST_HV
1660 stb r0, HSTATE_IN_GUEST(r13)
1664 * Similarly for an HISI, reflect it to the guest as an ISI unless
1665 * it is an HPTE not found fault for a page that we have paged out.
1668 andis. r0, r11, SRR1_ISI_NOPT@h
1670 andi. r0, r11, MSR_IR /* instruction relocation enabled? */
1673 PPC_SLBFEE_DOT(R5, R0) /* if so, look up SLB */
1674 bne 1f /* if no SLB entry found */
1676 /* Search the hash table. */
1677 mr r3, r9 /* vcpu pointer */
1680 li r7, 0 /* instruction fault */
1681 bl .kvmppc_hpte_hv_fault
1682 ld r9, HSTATE_KVM_VCPU(r13)
1684 ld r11, VCPU_MSR(r9)
1685 li r12, BOOK3S_INTERRUPT_H_INST_STORAGE
1686 cmpdi r3, 0 /* retry the instruction */
1687 beq fast_interrupt_c_return
1688 cmpdi r3, -1 /* handle in kernel mode */
1691 /* Synthesize an ISI for the guest */
1693 1: mtspr SPRN_SRR0, r10
1694 mtspr SPRN_SRR1, r11
1695 li r10, BOOK3S_INTERRUPT_INST_STORAGE
1696 ld r11, VCPU_INTR_MSR(r9)
1697 b fast_interrupt_c_return
1699 3: ld r6, VCPU_KVM(r9) /* not relocated, use VRMA */
1700 ld r5, KVM_VRMA_SLB_V(r6)
1704 * Try to handle an hcall in real mode.
1705 * Returns to the guest if we handle it, or continues on up to
1706 * the kernel if we can't (i.e. if we don't have a handler for
1707 * it, or if the handler returns H_TOO_HARD).
1709 .globl hcall_try_real_mode
1710 hcall_try_real_mode:
1711 ld r3,VCPU_GPR(R3)(r9)
1713 /* sc 1 from userspace - reflect to guest syscall */
1714 bne sc_1_fast_return
1716 cmpldi r3,hcall_real_table_end - hcall_real_table
1718 LOAD_REG_ADDR(r4, hcall_real_table)
1724 mr r3,r9 /* get vcpu pointer */
1725 ld r4,VCPU_GPR(R4)(r9)
1728 beq hcall_real_fallback
1729 ld r4,HSTATE_KVM_VCPU(r13)
1730 std r3,VCPU_GPR(R3)(r4)
1738 li r10, BOOK3S_INTERRUPT_SYSCALL
1739 ld r11, VCPU_INTR_MSR(r9)
1743 /* We've attempted a real mode hcall, but it's punted it back
1744 * to userspace. We need to restore some clobbered volatiles
1745 * before resuming the pass-it-to-qemu path */
1746 hcall_real_fallback:
1747 li r12,BOOK3S_INTERRUPT_SYSCALL
1748 ld r9, HSTATE_KVM_VCPU(r13)
1752 .globl hcall_real_table
1754 .long 0 /* 0 - unused */
1755 .long .kvmppc_h_remove - hcall_real_table
1756 .long .kvmppc_h_enter - hcall_real_table
1757 .long .kvmppc_h_read - hcall_real_table
1758 .long 0 /* 0x10 - H_CLEAR_MOD */
1759 .long 0 /* 0x14 - H_CLEAR_REF */
1760 .long .kvmppc_h_protect - hcall_real_table
1761 .long 0 /* 0x1c - H_GET_TCE */
1762 .long .kvmppc_h_put_tce - hcall_real_table
1763 .long 0 /* 0x24 - H_SET_SPRG0 */
1764 .long .kvmppc_h_set_dabr - hcall_real_table
1779 #ifdef CONFIG_KVM_XICS
1780 .long .kvmppc_rm_h_eoi - hcall_real_table
1781 .long .kvmppc_rm_h_cppr - hcall_real_table
1782 .long .kvmppc_rm_h_ipi - hcall_real_table
1783 .long 0 /* 0x70 - H_IPOLL */
1784 .long .kvmppc_rm_h_xirr - hcall_real_table
1786 .long 0 /* 0x64 - H_EOI */
1787 .long 0 /* 0x68 - H_CPPR */
1788 .long 0 /* 0x6c - H_IPI */
1789 .long 0 /* 0x70 - H_IPOLL */
1790 .long 0 /* 0x74 - H_XIRR */
1818 .long .kvmppc_h_cede - hcall_real_table
1835 .long .kvmppc_h_bulk_remove - hcall_real_table
1839 .long .kvmppc_h_set_xdabr - hcall_real_table
1840 hcall_real_table_end:
1846 _GLOBAL(kvmppc_h_set_xdabr)
1847 andi. r0, r5, DABRX_USER | DABRX_KERNEL
1849 li r0, DABRX_USER | DABRX_KERNEL | DABRX_BTI
1852 6: li r3, H_PARAMETER
1855 _GLOBAL(kvmppc_h_set_dabr)
1856 li r5, DABRX_USER | DABRX_KERNEL
1860 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S)
1861 std r4,VCPU_DABR(r3)
1862 stw r5, VCPU_DABRX(r3)
1863 mtspr SPRN_DABRX, r5
1864 /* Work around P7 bug where DABR can get corrupted on mtspr */
1865 1: mtspr SPRN_DABR,r4
1873 /* Emulate H_SET_DABR/X on P8 for the sake of compat mode guests */
1874 2: rlwimi r5, r4, 5, DAWRX_DR | DAWRX_DW
1875 rlwimi r5, r4, 1, DAWRX_WT
1877 std r4, VCPU_DAWR(r3)
1878 std r5, VCPU_DAWRX(r3)
1880 mtspr SPRN_DAWRX, r5
1884 _GLOBAL(kvmppc_h_cede)
1886 std r11,VCPU_MSR(r3)
1888 stb r0,VCPU_CEDED(r3)
1889 sync /* order setting ceded vs. testing prodded */
1890 lbz r5,VCPU_PRODDED(r3)
1892 bne kvm_cede_prodded
1893 li r0,0 /* set trap to 0 to say hcall is handled */
1894 stw r0,VCPU_TRAP(r3)
1896 std r0,VCPU_GPR(R3)(r3)
1898 b kvm_cede_exit /* just send it up to host on 970 */
1899 END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_206)
1902 * Set our bit in the bitmask of napping threads unless all the
1903 * other threads are already napping, in which case we send this
1906 ld r5,HSTATE_KVM_VCORE(r13)
1907 lbz r6,HSTATE_PTID(r13)
1908 lwz r8,VCORE_ENTRY_EXIT(r5)
1912 addi r6,r5,VCORE_NAPPING_THREADS
1920 /* order napping_threads update vs testing entry_exit_count */
1923 stb r0,HSTATE_NAPPING(r13)
1924 lwz r7,VCORE_ENTRY_EXIT(r5)
1926 bge 33f /* another thread already exiting */
1929 * Although not specifically required by the architecture, POWER7
1930 * preserves the following registers in nap mode, even if an SMT mode
1931 * switch occurs: SLB entries, PURR, SPURR, AMOR, UAMOR, AMR, SPRG0-3,
1932 * DAR, DSISR, DABR, DABRX, DSCR, PMCx, MMCRx, SIAR, SDAR.
1934 /* Save non-volatile GPRs */
1935 std r14, VCPU_GPR(R14)(r3)
1936 std r15, VCPU_GPR(R15)(r3)
1937 std r16, VCPU_GPR(R16)(r3)
1938 std r17, VCPU_GPR(R17)(r3)
1939 std r18, VCPU_GPR(R18)(r3)
1940 std r19, VCPU_GPR(R19)(r3)
1941 std r20, VCPU_GPR(R20)(r3)
1942 std r21, VCPU_GPR(R21)(r3)
1943 std r22, VCPU_GPR(R22)(r3)
1944 std r23, VCPU_GPR(R23)(r3)
1945 std r24, VCPU_GPR(R24)(r3)
1946 std r25, VCPU_GPR(R25)(r3)
1947 std r26, VCPU_GPR(R26)(r3)
1948 std r27, VCPU_GPR(R27)(r3)
1949 std r28, VCPU_GPR(R28)(r3)
1950 std r29, VCPU_GPR(R29)(r3)
1951 std r30, VCPU_GPR(R30)(r3)
1952 std r31, VCPU_GPR(R31)(r3)
1958 * Take a nap until a decrementer or external or doobell interrupt
1959 * occurs, with PECE1, PECE0 and PECEDP set in LPCR
1962 stb r0,HSTATE_HWTHREAD_REQ(r13)
1964 ori r5,r5,LPCR_PECE0 | LPCR_PECE1
1966 oris r5,r5,LPCR_PECEDP@h
1967 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S)
1971 std r0, HSTATE_SCRATCH0(r13)
1973 ld r0, HSTATE_SCRATCH0(r13)
1985 /* get vcpu pointer */
1986 ld r4, HSTATE_KVM_VCPU(r13)
1988 /* Woken by external or decrementer interrupt */
1989 ld r1, HSTATE_HOST_R1(r13)
1991 /* load up FP state */
1995 ld r14, VCPU_GPR(R14)(r4)
1996 ld r15, VCPU_GPR(R15)(r4)
1997 ld r16, VCPU_GPR(R16)(r4)
1998 ld r17, VCPU_GPR(R17)(r4)
1999 ld r18, VCPU_GPR(R18)(r4)
2000 ld r19, VCPU_GPR(R19)(r4)
2001 ld r20, VCPU_GPR(R20)(r4)
2002 ld r21, VCPU_GPR(R21)(r4)
2003 ld r22, VCPU_GPR(R22)(r4)
2004 ld r23, VCPU_GPR(R23)(r4)
2005 ld r24, VCPU_GPR(R24)(r4)
2006 ld r25, VCPU_GPR(R25)(r4)
2007 ld r26, VCPU_GPR(R26)(r4)
2008 ld r27, VCPU_GPR(R27)(r4)
2009 ld r28, VCPU_GPR(R28)(r4)
2010 ld r29, VCPU_GPR(R29)(r4)
2011 ld r30, VCPU_GPR(R30)(r4)
2012 ld r31, VCPU_GPR(R31)(r4)
2014 /* Check the wake reason in SRR1 to see why we got here */
2015 bl kvmppc_check_wake_reason
2017 /* clear our bit in vcore->napping_threads */
2018 34: ld r5,HSTATE_KVM_VCORE(r13)
2019 lbz r7,HSTATE_PTID(r13)
2022 addi r6,r5,VCORE_NAPPING_THREADS
2028 stb r0,HSTATE_NAPPING(r13)
2030 /* See if the wake reason means we need to exit */
2031 stw r12, VCPU_TRAP(r4)
2036 /* see if any other thread is already exiting */
2037 lwz r0,VCORE_ENTRY_EXIT(r5)
2041 b kvmppc_cede_reentry /* if not go back to guest */
2043 /* cede when already previously prodded case */
2046 stb r0,VCPU_PRODDED(r3)
2047 sync /* order testing prodded vs. clearing ceded */
2048 stb r0,VCPU_CEDED(r3)
2052 /* we've ceded but we want to give control to the host */
2054 b hcall_real_fallback
2056 /* Try to handle a machine check in real mode */
2057 machine_check_realmode:
2058 mr r3, r9 /* get vcpu pointer */
2059 bl .kvmppc_realmode_machine_check
2061 cmpdi r3, 0 /* continue exiting from guest? */
2062 ld r9, HSTATE_KVM_VCPU(r13)
2063 li r12, BOOK3S_INTERRUPT_MACHINE_CHECK
2065 /* If not, deliver a machine check. SRR0/1 are already set */
2066 li r10, BOOK3S_INTERRUPT_MACHINE_CHECK
2067 ld r11, VCPU_INTR_MSR(r9)
2068 b fast_interrupt_c_return
2071 * Check the reason we woke from nap, and take appropriate action.
2073 * 0 if nothing needs to be done
2074 * 1 if something happened that needs to be handled by the host
2075 * -1 if there was a guest wakeup (IPI)
2077 * Also sets r12 to the interrupt vector for any interrupt that needs
2078 * to be handled now by the host (0x500 for external interrupt), or zero.
2080 kvmppc_check_wake_reason:
2083 rlwinm r6, r6, 45-31, 0xf /* extract wake reason field (P8) */
2085 rlwinm r6, r6, 45-31, 0xe /* P7 wake reason field is 3 bits */
2086 ALT_FTR_SECTION_END_IFSET(CPU_FTR_ARCH_207S)
2087 cmpwi r6, 8 /* was it an external interrupt? */
2088 li r12, BOOK3S_INTERRUPT_EXTERNAL
2089 beq kvmppc_read_intr /* if so, see what it was */
2092 cmpwi r6, 6 /* was it the decrementer? */
2095 cmpwi r6, 5 /* privileged doorbell? */
2097 cmpwi r6, 3 /* hypervisor doorbell? */
2099 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S)
2100 li r3, 1 /* anything else, return 1 */
2103 /* hypervisor doorbell */
2104 3: li r12, BOOK3S_INTERRUPT_H_DOORBELL
2109 * Determine what sort of external interrupt is pending (if any).
2111 * 0 if no interrupt is pending
2112 * 1 if an interrupt is pending that needs to be handled by the host
2113 * -1 if there was a guest wakeup IPI (which has now been cleared)
2116 /* see if a host IPI is pending */
2118 lbz r0, HSTATE_HOST_IPI(r13)
2122 /* Now read the interrupt from the ICP */
2123 ld r6, HSTATE_XICS_PHYS(r13)
2128 rlwinm. r3, r0, 0, 0xffffff
2130 beq 1f /* if nothing pending in the ICP */
2132 /* We found something in the ICP...
2134 * If it's not an IPI, stash it in the PACA and return to
2135 * the host, we don't (yet) handle directing real external
2136 * interrupts directly to the guest
2138 cmpwi r3, XICS_IPI /* if there is, is it an IPI? */
2141 /* It's an IPI, clear the MFRR and EOI it */
2144 stbcix r3, r6, r8 /* clear the IPI */
2145 stwcix r0, r6, r7 /* EOI it */
2148 /* We need to re-check host IPI now in case it got set in the
2149 * meantime. If it's clear, we bounce the interrupt to the
2152 lbz r0, HSTATE_HOST_IPI(r13)
2156 /* OK, it's an IPI for us */
2160 42: /* It's not an IPI and it's for the host, stash it in the PACA
2161 * before exit, it will be picked up by the host ICP driver
2163 stw r0, HSTATE_SAVED_XIRR(r13)
2167 43: /* We raced with the host, we need to resend that IPI, bummer */
2169 stbcix r0, r6, r8 /* set the IPI */
2175 * Save away FP, VMX and VSX registers.
2177 * N.B. r30 and r31 are volatile across this function,
2178 * thus it is not callable from C.
2185 #ifdef CONFIG_ALTIVEC
2187 oris r8,r8,MSR_VEC@h
2188 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
2192 oris r8,r8,MSR_VSX@h
2193 END_FTR_SECTION_IFSET(CPU_FTR_VSX)
2197 addi r3,r3,VCPU_FPRS
2199 #ifdef CONFIG_ALTIVEC
2201 addi r3,r31,VCPU_VRS
2203 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
2205 mfspr r6,SPRN_VRSAVE
2206 stw r6,VCPU_VRSAVE(r3)
2213 * Load up FP, VMX and VSX registers
2215 * N.B. r30 and r31 are volatile across this function,
2216 * thus it is not callable from C.
2223 #ifdef CONFIG_ALTIVEC
2225 oris r8,r8,MSR_VEC@h
2226 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
2230 oris r8,r8,MSR_VSX@h
2231 END_FTR_SECTION_IFSET(CPU_FTR_VSX)
2235 addi r3,r4,VCPU_FPRS
2237 #ifdef CONFIG_ALTIVEC
2239 addi r3,r31,VCPU_VRS
2241 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
2243 lwz r7,VCPU_VRSAVE(r4)
2244 mtspr SPRN_VRSAVE,r7
2250 * We come here if we get any exception or interrupt while we are
2251 * executing host real mode code while in guest MMU context.
2252 * For now just spin, but we should do something better.
2254 kvmppc_bad_host_intr: