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 /*****************************************************************************
38 * Real Mode handlers that need to be in the linear mapping *
40 ****************************************************************************/
42 .globl kvmppc_skip_interrupt
43 kvmppc_skip_interrupt:
51 .globl kvmppc_skip_Hinterrupt
52 kvmppc_skip_Hinterrupt:
61 * Call kvmppc_hv_entry in real mode.
62 * Must be called with interrupts hard-disabled.
66 * LR = return address to continue at after eventually re-enabling MMU
68 _GLOBAL(kvmppc_hv_entry_trampoline)
70 LOAD_REG_ADDR(r5, kvmppc_hv_entry)
75 mtmsrd r0,1 /* clear RI in MSR */
80 /******************************************************************************
84 *****************************************************************************/
87 * We come in here when wakened from nap mode on a secondary hw thread.
88 * Relocation is off and most register values are lost.
89 * r13 points to the PACA.
91 .globl kvm_start_guest
93 ld r1,PACAEMERGSP(r13)
94 subi r1,r1,STACK_FRAME_OVERHEAD
97 li r0,KVM_HWTHREAD_IN_KVM
98 stb r0,HSTATE_HWTHREAD_STATE(r13)
100 /* NV GPR values from power7_idle() will no longer be valid */
102 stb r0,PACA_NAPSTATELOST(r13)
104 /* were we napping due to cede? */
105 lbz r0,HSTATE_NAPPING(r13)
110 * We weren't napping due to cede, so this must be a secondary
111 * thread being woken up to run a guest, or being woken up due
112 * to a stray IPI. (Or due to some machine check or hypervisor
113 * maintenance interrupt while the core is in KVM.)
116 /* Check the wake reason in SRR1 to see why we got here */
118 rlwinm r3,r3,44-31,0x7 /* extract wake reason field */
119 cmpwi r3,4 /* was it an external interrupt? */
121 ld r5,HSTATE_XICS_PHYS(r13)
122 li r7,XICS_XIRR /* if it was an external interrupt, */
123 lwzcix r8,r5,r7 /* get and ack the interrupt */
125 clrldi. r9,r8,40 /* get interrupt source ID. */
126 beq 28f /* none there? */
127 cmpwi r9,XICS_IPI /* was it an IPI? */
131 stbcix r0,r5,r6 /* clear IPI */
132 stwcix r8,r5,r7 /* EOI the interrupt */
133 sync /* order loading of vcpu after that */
135 /* get vcpu pointer, NULL if we have no vcpu to run */
136 ld r4,HSTATE_KVM_VCPU(r13)
138 /* if we have no vcpu to run, go back to sleep */
142 27: /* XXX should handle hypervisor maintenance interrupts etc. here */
144 28: /* SRR1 said external but ICP said nope?? */
146 29: /* External non-IPI interrupt to offline secondary thread? help?? */
147 stw r8,HSTATE_SAVED_XIRR(r13)
150 .global kvmppc_hv_entry
159 * all other volatile GPRS = free
162 std r0, HSTATE_VMHANDLER(r13)
164 /* Set partition DABR */
165 /* Do this before re-enabling PMU to avoid P7 DABR corruption bug */
172 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
174 /* Load guest PMU registers */
175 /* R4 is live here (vcpu pointer) */
177 sldi r3, r3, 31 /* MMCR0_FC (freeze counters) bit */
178 mtspr SPRN_MMCR0, r3 /* freeze all counters, disable ints */
180 lwz r3, VCPU_PMC(r4) /* always load up guest PMU registers */
181 lwz r5, VCPU_PMC + 4(r4) /* to prevent information leak */
182 lwz r6, VCPU_PMC + 8(r4)
183 lwz r7, VCPU_PMC + 12(r4)
184 lwz r8, VCPU_PMC + 16(r4)
185 lwz r9, VCPU_PMC + 20(r4)
187 lwz r10, VCPU_PMC + 24(r4)
188 lwz r11, VCPU_PMC + 28(r4)
189 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201)
199 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201)
201 ld r5, VCPU_MMCR + 8(r4)
202 ld r6, VCPU_MMCR + 16(r4)
208 /* Load up FP, VMX and VSX registers */
211 ld r14, VCPU_GPR(R14)(r4)
212 ld r15, VCPU_GPR(R15)(r4)
213 ld r16, VCPU_GPR(R16)(r4)
214 ld r17, VCPU_GPR(R17)(r4)
215 ld r18, VCPU_GPR(R18)(r4)
216 ld r19, VCPU_GPR(R19)(r4)
217 ld r20, VCPU_GPR(R20)(r4)
218 ld r21, VCPU_GPR(R21)(r4)
219 ld r22, VCPU_GPR(R22)(r4)
220 ld r23, VCPU_GPR(R23)(r4)
221 ld r24, VCPU_GPR(R24)(r4)
222 ld r25, VCPU_GPR(R25)(r4)
223 ld r26, VCPU_GPR(R26)(r4)
224 ld r27, VCPU_GPR(R27)(r4)
225 ld r28, VCPU_GPR(R28)(r4)
226 ld r29, VCPU_GPR(R29)(r4)
227 ld r30, VCPU_GPR(R30)(r4)
228 ld r31, VCPU_GPR(R31)(r4)
231 /* Switch DSCR to guest value */
234 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
237 * Set the decrementer to the guest decrementer.
239 ld r8,VCPU_DEC_EXPIRES(r4)
245 ld r5, VCPU_SPRG0(r4)
246 ld r6, VCPU_SPRG1(r4)
247 ld r7, VCPU_SPRG2(r4)
248 ld r8, VCPU_SPRG3(r4)
254 /* Save R1 in the PACA */
255 std r1, HSTATE_HOST_R1(r13)
257 /* Increment yield count if they have a VPA */
261 lwz r5, LPPACA_YIELDCOUNT(r3)
263 stw r5, LPPACA_YIELDCOUNT(r3)
265 stb r6, VCPU_VPA_DIRTY(r4)
267 /* Load up DAR and DSISR */
269 lwz r6, VCPU_DSISR(r4)
274 /* Restore AMR and UAMOR, set AMOR to all 1s */
281 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
291 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201)
293 * POWER7 host -> guest partition switch code.
294 * We don't have to lock against concurrent tlbies,
295 * but we do have to coordinate across hardware threads.
297 /* Increment entry count iff exit count is zero. */
298 ld r5,HSTATE_KVM_VCORE(r13)
299 addi r9,r5,VCORE_ENTRY_EXIT
301 cmpwi r3,0x100 /* any threads starting to exit? */
302 bge secondary_too_late /* if so we're too late to the party */
307 /* Primary thread switches to guest partition. */
308 ld r9,VCPU_KVM(r4) /* pointer to struct kvm */
314 li r0,LPID_RSVD /* switch to reserved LPID */
317 mtspr SPRN_SDR1,r6 /* switch to partition page table */
321 /* See if we need to flush the TLB */
322 lhz r6,PACAPACAINDEX(r13) /* test_bit(cpu, need_tlb_flush) */
323 clrldi r7,r6,64-6 /* extract bit number (6 bits) */
324 srdi r6,r6,6 /* doubleword number */
325 sldi r6,r6,3 /* address offset */
327 addi r6,r6,KVM_NEED_FLUSH /* dword in kvm->arch.need_tlb_flush */
333 23: ldarx r7,0,r6 /* if set, clear the bit */
337 li r6,128 /* and flush the TLB */
339 li r7,0x800 /* IS field = 0b10 */
347 stb r0,VCORE_IN_GUEST(r5) /* signal secondaries to continue */
350 /* Secondary threads wait for primary to have done partition switch */
351 20: lbz r0,VCORE_IN_GUEST(r5)
355 /* Set LPCR and RMOR. */
356 10: ld r8,KVM_LPCR(r9)
362 /* Check if HDEC expires soon */
365 li r12,BOOK3S_INTERRUPT_HV_DECREMENTER
369 /* Save purr/spurr */
372 std r5,HSTATE_PURR(r13)
373 std r6,HSTATE_SPURR(r13)
381 * PPC970 host -> guest partition switch code.
382 * We have to lock against concurrent tlbies,
383 * using native_tlbie_lock to lock against host tlbies
384 * and kvm->arch.tlbie_lock to lock against guest tlbies.
385 * We also have to invalidate the TLB since its
386 * entries aren't tagged with the LPID.
388 30: ld r9,VCPU_KVM(r4) /* pointer to struct kvm */
390 /* first take native_tlbie_lock */
393 .tc native_tlbie_lock[TC],native_tlbie_lock
395 ld r3,toc_tlbie_lock@toc(2)
396 #ifdef __BIG_ENDIAN__
397 lwz r8,PACA_LOCK_TOKEN(r13)
399 lwz r8,PACAPACAINDEX(r13)
408 ld r7,KVM_LPCR(r9) /* use kvm->arch.lpcr to store HID4 */
410 rotldi r0,r0,HID4_LPID5_SH /* all lpid bits in HID4 = 1 */
414 mtspr SPRN_HID4,r0 /* switch to reserved LPID */
417 stw r0,0(r3) /* drop native_tlbie_lock */
419 /* invalidate the whole TLB */
428 /* Take the guest's tlbie_lock */
429 addi r3,r9,KVM_TLBIE_LOCK
437 mtspr SPRN_SDR1,r6 /* switch to partition page table */
439 /* Set up HID4 with the guest's LPID etc. */
444 /* drop the guest's tlbie_lock */
448 /* Check if HDEC expires soon */
451 li r12,BOOK3S_INTERRUPT_HV_DECREMENTER
455 /* Enable HDEC interrupts */
458 rldimi r0,r3, HID0_HDICE_SH, 64-HID0_HDICE_SH-1
468 /* Load up guest SLB entries */
469 31: lwz r5,VCPU_SLB_MAX(r4)
474 1: ld r8,VCPU_SLB_E(r6)
477 addi r6,r6,VCPU_SLB_SIZE
481 /* Restore state of CTRL run bit; assume 1 on entry */
497 kvmppc_cede_reentry: /* r4 = vcpu, r13 = paca */
501 /* r11 = vcpu->arch.msr & ~MSR_HV */
502 rldicl r11, r11, 63 - MSR_HV_LG, 1
503 rotldi r11, r11, 1 + MSR_HV_LG
506 /* Check if we can deliver an external or decrementer interrupt now */
507 ld r0,VCPU_PENDING_EXC(r4)
508 lis r8,(1 << BOOK3S_IRQPRIO_EXTERNAL_LEVEL)@h
518 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
520 li r0,BOOK3S_INTERRUPT_EXTERNAL
524 li r11,(MSR_ME << 1) | 1 /* synthesize MSR_SF | MSR_ME */
530 li r0,BOOK3S_INTERRUPT_DECREMENTER
533 /* Move SRR0 and SRR1 into the respective regs */
534 5: mtspr SPRN_SRR0, r6
539 stb r0,VCPU_CEDED(r4) /* cancel cede */
543 /* Activate guest mode, so faults get handled by KVM */
544 li r9, KVM_GUEST_MODE_GUEST
545 stb r9, HSTATE_IN_GUEST(r13)
552 END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
559 ld r0, VCPU_GPR(R0)(r4)
560 ld r1, VCPU_GPR(R1)(r4)
561 ld r2, VCPU_GPR(R2)(r4)
562 ld r3, VCPU_GPR(R3)(r4)
563 ld r5, VCPU_GPR(R5)(r4)
564 ld r6, VCPU_GPR(R6)(r4)
565 ld r7, VCPU_GPR(R7)(r4)
566 ld r8, VCPU_GPR(R8)(r4)
567 ld r9, VCPU_GPR(R9)(r4)
568 ld r10, VCPU_GPR(R10)(r4)
569 ld r11, VCPU_GPR(R11)(r4)
570 ld r12, VCPU_GPR(R12)(r4)
571 ld r13, VCPU_GPR(R13)(r4)
573 ld r4, VCPU_GPR(R4)(r4)
578 /******************************************************************************
582 *****************************************************************************/
585 * We come here from the first-level interrupt handlers.
587 .globl kvmppc_interrupt
591 * R12 = interrupt vector
593 * guest CR, R12 saved in shadow VCPU SCRATCH1/0
594 * guest R13 saved in SPRN_SCRATCH0
596 /* abuse host_r2 as third scratch area; we get r2 from PACATOC(r13) */
597 std r9, HSTATE_HOST_R2(r13)
598 ld r9, HSTATE_KVM_VCPU(r13)
602 std r0, VCPU_GPR(R0)(r9)
603 std r1, VCPU_GPR(R1)(r9)
604 std r2, VCPU_GPR(R2)(r9)
605 std r3, VCPU_GPR(R3)(r9)
606 std r4, VCPU_GPR(R4)(r9)
607 std r5, VCPU_GPR(R5)(r9)
608 std r6, VCPU_GPR(R6)(r9)
609 std r7, VCPU_GPR(R7)(r9)
610 std r8, VCPU_GPR(R8)(r9)
611 ld r0, HSTATE_HOST_R2(r13)
612 std r0, VCPU_GPR(R9)(r9)
613 std r10, VCPU_GPR(R10)(r9)
614 std r11, VCPU_GPR(R11)(r9)
615 ld r3, HSTATE_SCRATCH0(r13)
616 lwz r4, HSTATE_SCRATCH1(r13)
617 std r3, VCPU_GPR(R12)(r9)
620 ld r3, HSTATE_CFAR(r13)
621 std r3, VCPU_CFAR(r9)
622 END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
624 /* Restore R1/R2 so we can handle faults */
625 ld r1, HSTATE_HOST_R1(r13)
630 std r10, VCPU_SRR0(r9)
631 std r11, VCPU_SRR1(r9)
632 andi. r0, r12, 2 /* need to read HSRR0/1? */
634 mfspr r10, SPRN_HSRR0
635 mfspr r11, SPRN_HSRR1
637 1: std r10, VCPU_PC(r9)
638 std r11, VCPU_MSR(r9)
642 std r3, VCPU_GPR(R13)(r9)
645 /* Unset guest mode */
646 li r0, KVM_GUEST_MODE_NONE
647 stb r0, HSTATE_IN_GUEST(r13)
649 stw r12,VCPU_TRAP(r9)
651 /* Save HEIR (HV emulation assist reg) in last_inst
652 if this is an HEI (HV emulation interrupt, e40) */
653 li r3,KVM_INST_FETCH_FAILED
655 cmpwi r12,BOOK3S_INTERRUPT_H_EMUL_ASSIST
658 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
659 11: stw r3,VCPU_LAST_INST(r9)
661 /* these are volatile across C function calls */
668 /* If this is a page table miss then see if it's theirs or ours */
669 cmpwi r12, BOOK3S_INTERRUPT_H_DATA_STORAGE
671 cmpwi r12, BOOK3S_INTERRUPT_H_INST_STORAGE
673 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
675 /* See if this is a leftover HDEC interrupt */
676 cmpwi r12,BOOK3S_INTERRUPT_HV_DECREMENTER
682 /* See if this is an hcall we can handle in real mode */
683 cmpwi r12,BOOK3S_INTERRUPT_SYSCALL
684 beq hcall_try_real_mode
686 /* Only handle external interrupts here on arch 206 and later */
688 b ext_interrupt_to_host
689 END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_206)
691 /* External interrupt ? */
692 cmpwi r12, BOOK3S_INTERRUPT_EXTERNAL
693 bne+ ext_interrupt_to_host
695 /* External interrupt, first check for host_ipi. If this is
696 * set, we know the host wants us out so let's do it now
699 lbz r0, HSTATE_HOST_IPI(r13)
701 bne ext_interrupt_to_host
703 /* Now read the interrupt from the ICP */
704 ld r5, HSTATE_XICS_PHYS(r13)
707 beq- ext_interrupt_to_host
709 rlwinm. r0, r3, 0, 0xffffff
711 beq 3f /* if nothing pending in the ICP */
713 /* We found something in the ICP...
715 * If it's not an IPI, stash it in the PACA and return to
716 * the host, we don't (yet) handle directing real external
717 * interrupts directly to the guest
720 bne ext_stash_for_host
722 /* It's an IPI, clear the MFRR and EOI it */
725 stbcix r0, r5, r6 /* clear the IPI */
726 stwcix r3, r5, r7 /* EOI it */
729 /* We need to re-check host IPI now in case it got set in the
730 * meantime. If it's clear, we bounce the interrupt to the
733 lbz r0, HSTATE_HOST_IPI(r13)
737 /* Allright, looks like an IPI for the guest, we need to set MER */
739 /* Check if any CPU is heading out to the host, if so head out too */
740 ld r5, HSTATE_KVM_VCORE(r13)
741 lwz r0, VCORE_ENTRY_EXIT(r5)
743 bge ext_interrupt_to_host
745 /* See if there is a pending interrupt for the guest */
747 ld r0, VCPU_PENDING_EXC(r9)
748 /* Insert EXTERNAL_LEVEL bit into LPCR at the MER bit position */
749 rldicl. r0, r0, 64 - BOOK3S_IRQPRIO_EXTERNAL_LEVEL, 63
750 rldimi r8, r0, LPCR_MER_SH, 63 - LPCR_MER_SH
753 /* And if the guest EE is set, we can deliver immediately, else
754 * we return to the guest with MER set
756 andi. r0, r11, MSR_EE
760 li r10, BOOK3S_INTERRUPT_EXTERNAL
761 li r11, (MSR_ME << 1) | 1 /* synthesize MSR_SF | MSR_ME */
767 /* We raced with the host, we need to resend that IPI, bummer */
768 1: li r0, IPI_PRIORITY
769 stbcix r0, r5, r6 /* set the IPI */
771 b ext_interrupt_to_host
774 /* It's not an IPI and it's for the host, stash it in the PACA
775 * before exit, it will be picked up by the host ICP driver
777 stw r3, HSTATE_SAVED_XIRR(r13)
778 ext_interrupt_to_host:
780 guest_exit_cont: /* r9 = vcpu, r12 = trap, r13 = paca */
786 std r5,VCPU_DEC_EXPIRES(r9)
788 /* Save more register state */
792 stw r7, VCPU_DSISR(r9)
794 /* don't overwrite fault_dar/fault_dsisr if HDSI */
795 cmpwi r12,BOOK3S_INTERRUPT_H_DATA_STORAGE
797 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
798 std r6, VCPU_FAULT_DAR(r9)
799 stw r7, VCPU_FAULT_DSISR(r9)
801 /* See if it is a machine check */
802 cmpwi r12, BOOK3S_INTERRUPT_MACHINE_CHECK
803 beq machine_check_realmode
806 /* Save guest CTRL register, set runlatch to 1 */
807 6: mfspr r6,SPRN_CTRLF
814 /* Read the guest SLB and save it away */
815 lwz r0,VCPU_SLB_NR(r9) /* number of entries in SLB */
821 andis. r0,r8,SLB_ESID_V@h
823 add r8,r8,r6 /* put index in */
825 std r8,VCPU_SLB_E(r7)
826 std r3,VCPU_SLB_V(r7)
827 addi r7,r7,VCPU_SLB_SIZE
831 stw r5,VCPU_SLB_MAX(r9)
834 * Save the guest PURR/SPURR
842 std r6,VCPU_SPURR(r9)
847 * Restore host PURR/SPURR and add guest times
848 * so that the time in the guest gets accounted.
850 ld r3,HSTATE_PURR(r13)
851 ld r4,HSTATE_SPURR(r13)
856 END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_201)
864 hdec_soon: /* r9 = vcpu, r12 = trap, r13 = paca */
867 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201)
869 * POWER7 guest -> host partition switch code.
870 * We don't have to lock against tlbies but we do
871 * have to coordinate the hardware threads.
873 /* Increment the threads-exiting-guest count in the 0xff00
874 bits of vcore->entry_exit_count */
876 ld r5,HSTATE_KVM_VCORE(r13)
877 addi r6,r5,VCORE_ENTRY_EXIT
885 * At this point we have an interrupt that we have to pass
886 * up to the kernel or qemu; we can't handle it in real mode.
887 * Thus we have to do a partition switch, so we have to
888 * collect the other threads, if we are the first thread
889 * to take an interrupt. To do this, we set the HDEC to 0,
890 * which causes an HDEC interrupt in all threads within 2ns
891 * because the HDEC register is shared between all 4 threads.
892 * However, we don't need to bother if this is an HDEC
893 * interrupt, since the other threads will already be on their
894 * way here in that case.
896 cmpwi r3,0x100 /* Are we the first here? */
898 cmpwi r3,1 /* Are any other threads in the guest? */
900 cmpwi r12,BOOK3S_INTERRUPT_HV_DECREMENTER
906 * Send an IPI to any napping threads, since an HDEC interrupt
907 * doesn't wake CPUs up from nap.
909 lwz r3,VCORE_NAPPING_THREADS(r5)
913 andc. r3,r3,r0 /* no sense IPI'ing ourselves */
915 mulli r4,r4,PACA_SIZE /* get paca for thread 0 */
919 ld r8,HSTATE_XICS_PHYS(r6) /* get thread's XICS reg addr */
922 stbcix r0,r7,r8 /* trigger the IPI */
927 /* Secondary threads wait for primary to do partition switch */
928 43: ld r4,VCPU_KVM(r9) /* pointer to struct kvm */
929 ld r5,HSTATE_KVM_VCORE(r13)
934 13: lbz r3,VCORE_IN_GUEST(r5)
940 /* Primary thread waits for all the secondaries to exit guest */
941 15: lwz r3,VCORE_ENTRY_EXIT(r5)
948 /* Primary thread switches back to host partition */
949 ld r6,KVM_HOST_SDR1(r4)
950 lwz r7,KVM_HOST_LPID(r4)
951 li r8,LPID_RSVD /* switch to reserved LPID */
954 mtspr SPRN_SDR1,r6 /* switch to partition page table */
958 stb r0,VCORE_IN_GUEST(r5)
959 lis r8,0x7fff /* MAX_INT@h */
962 16: ld r8,KVM_HOST_LPCR(r4)
968 * PPC970 guest -> host partition switch code.
969 * We have to lock against concurrent tlbies, and
970 * we have to flush the whole TLB.
972 32: ld r4,VCPU_KVM(r9) /* pointer to struct kvm */
974 /* Take the guest's tlbie_lock */
975 #ifdef __BIG_ENDIAN__
976 lwz r8,PACA_LOCK_TOKEN(r13)
978 lwz r8,PACAPACAINDEX(r13)
980 addi r3,r4,KVM_TLBIE_LOCK
988 ld r7,KVM_HOST_LPCR(r4) /* use kvm->arch.host_lpcr for HID4 */
990 rotldi r0,r0,HID4_LPID5_SH /* all lpid bits in HID4 = 1 */
994 mtspr SPRN_HID4,r0 /* switch to reserved LPID */
997 stw r0,0(r3) /* drop guest tlbie_lock */
999 /* invalidate the whole TLB */
1008 /* take native_tlbie_lock */
1009 ld r3,toc_tlbie_lock@toc(2)
1017 ld r6,KVM_HOST_SDR1(r4)
1018 mtspr SPRN_SDR1,r6 /* switch to host page table */
1020 /* Set up host HID4 value */
1025 stw r0,0(r3) /* drop native_tlbie_lock */
1027 lis r8,0x7fff /* MAX_INT@h */
1030 /* Disable HDEC interrupts */
1033 rldimi r0,r3, HID0_HDICE_SH, 64-HID0_HDICE_SH-1
1043 /* load host SLB entries */
1044 33: ld r8,PACA_SLBSHADOWPTR(r13)
1046 .rept SLB_NUM_BOLTED
1047 ld r5,SLBSHADOW_SAVEAREA(r8)
1048 ld r6,SLBSHADOW_SAVEAREA+8(r8)
1049 andis. r7,r5,SLB_ESID_V@h
1055 /* Save and reset AMR and UAMOR before turning on the MMU */
1060 std r6,VCPU_UAMOR(r9)
1063 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
1065 /* Switch DSCR back to host value */
1068 ld r7, HSTATE_DSCR(r13)
1069 std r8, VCPU_DSCR(r7)
1071 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
1073 /* Save non-volatile GPRs */
1074 std r14, VCPU_GPR(R14)(r9)
1075 std r15, VCPU_GPR(R15)(r9)
1076 std r16, VCPU_GPR(R16)(r9)
1077 std r17, VCPU_GPR(R17)(r9)
1078 std r18, VCPU_GPR(R18)(r9)
1079 std r19, VCPU_GPR(R19)(r9)
1080 std r20, VCPU_GPR(R20)(r9)
1081 std r21, VCPU_GPR(R21)(r9)
1082 std r22, VCPU_GPR(R22)(r9)
1083 std r23, VCPU_GPR(R23)(r9)
1084 std r24, VCPU_GPR(R24)(r9)
1085 std r25, VCPU_GPR(R25)(r9)
1086 std r26, VCPU_GPR(R26)(r9)
1087 std r27, VCPU_GPR(R27)(r9)
1088 std r28, VCPU_GPR(R28)(r9)
1089 std r29, VCPU_GPR(R29)(r9)
1090 std r30, VCPU_GPR(R30)(r9)
1091 std r31, VCPU_GPR(R31)(r9)
1094 mfspr r3, SPRN_SPRG0
1095 mfspr r4, SPRN_SPRG1
1096 mfspr r5, SPRN_SPRG2
1097 mfspr r6, SPRN_SPRG3
1098 std r3, VCPU_SPRG0(r9)
1099 std r4, VCPU_SPRG1(r9)
1100 std r5, VCPU_SPRG2(r9)
1101 std r6, VCPU_SPRG3(r9)
1107 /* Increment yield count if they have a VPA */
1108 ld r8, VCPU_VPA(r9) /* do they have a VPA? */
1111 lwz r3, LPPACA_YIELDCOUNT(r8)
1113 stw r3, LPPACA_YIELDCOUNT(r8)
1115 stb r3, VCPU_VPA_DIRTY(r9)
1117 /* Save PMU registers if requested */
1118 /* r8 and cr0.eq are live here */
1120 sldi r3, r3, 31 /* MMCR0_FC (freeze counters) bit */
1121 mfspr r4, SPRN_MMCR0 /* save MMCR0 */
1122 mtspr SPRN_MMCR0, r3 /* freeze all counters, disable ints */
1123 mfspr r6, SPRN_MMCRA
1125 /* On P7, clear MMCRA in order to disable SDAR updates */
1127 mtspr SPRN_MMCRA, r7
1128 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
1130 beq 21f /* if no VPA, save PMU stuff anyway */
1131 lbz r7, LPPACA_PMCINUSE(r8)
1132 cmpwi r7, 0 /* did they ask for PMU stuff to be saved? */
1134 std r3, VCPU_MMCR(r9) /* if not, set saved MMCR0 to FC */
1136 21: mfspr r5, SPRN_MMCR1
1137 std r4, VCPU_MMCR(r9)
1138 std r5, VCPU_MMCR + 8(r9)
1139 std r6, VCPU_MMCR + 16(r9)
1147 mfspr r10, SPRN_PMC7
1148 mfspr r11, SPRN_PMC8
1149 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201)
1150 stw r3, VCPU_PMC(r9)
1151 stw r4, VCPU_PMC + 4(r9)
1152 stw r5, VCPU_PMC + 8(r9)
1153 stw r6, VCPU_PMC + 12(r9)
1154 stw r7, VCPU_PMC + 16(r9)
1155 stw r8, VCPU_PMC + 20(r9)
1157 stw r10, VCPU_PMC + 24(r9)
1158 stw r11, VCPU_PMC + 28(r9)
1159 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201)
1162 /* Secondary threads go off to take a nap on POWER7 */
1164 lwz r0,VCPU_PTID(r9)
1167 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
1169 /* Restore host DABR and DABRX */
1170 ld r5,HSTATE_DABR(r13)
1176 ld r3,PACA_SPRG3(r13)
1180 * Reload DEC. HDEC interrupts were disabled when
1181 * we reloaded the host's LPCR value.
1183 ld r3, HSTATE_DECEXP(r13)
1188 /* Reload the host's PMU registers */
1189 ld r3, PACALPPACAPTR(r13) /* is the host using the PMU? */
1190 lbz r4, LPPACA_PMCINUSE(r3)
1192 beq 23f /* skip if not */
1193 lwz r3, HSTATE_PMC(r13)
1194 lwz r4, HSTATE_PMC + 4(r13)
1195 lwz r5, HSTATE_PMC + 8(r13)
1196 lwz r6, HSTATE_PMC + 12(r13)
1197 lwz r8, HSTATE_PMC + 16(r13)
1198 lwz r9, HSTATE_PMC + 20(r13)
1200 lwz r10, HSTATE_PMC + 24(r13)
1201 lwz r11, HSTATE_PMC + 28(r13)
1202 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201)
1210 mtspr SPRN_PMC7, r10
1211 mtspr SPRN_PMC8, r11
1212 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201)
1213 ld r3, HSTATE_MMCR(r13)
1214 ld r4, HSTATE_MMCR + 8(r13)
1215 ld r5, HSTATE_MMCR + 16(r13)
1216 mtspr SPRN_MMCR1, r4
1217 mtspr SPRN_MMCRA, r5
1218 mtspr SPRN_MMCR0, r3
1222 * For external and machine check interrupts, we need
1223 * to call the Linux handler to process the interrupt.
1224 * We do that by jumping to absolute address 0x500 for
1225 * external interrupts, or the machine_check_fwnmi label
1226 * for machine checks (since firmware might have patched
1227 * the vector area at 0x200). The [h]rfid at the end of the
1228 * handler will return to the book3s_hv_interrupts.S code.
1229 * For other interrupts we do the rfid to get back
1230 * to the book3s_hv_interrupts.S code here.
1232 ld r8, HSTATE_VMHANDLER(r13)
1233 ld r7, HSTATE_HOST_MSR(r13)
1235 cmpwi cr1, r12, BOOK3S_INTERRUPT_MACHINE_CHECK
1236 cmpwi r12, BOOK3S_INTERRUPT_EXTERNAL
1239 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
1241 /* RFI into the highmem handler, or branch to interrupt handler */
1245 mtmsrd r6, 1 /* Clear RI in MSR */
1248 beqa 0x500 /* external interrupt (PPC970) */
1249 beq cr1, 13f /* machine check */
1252 /* On POWER7, we have external interrupts set to use HSRR0/1 */
1253 11: mtspr SPRN_HSRR0, r8
1254 mtspr SPRN_HSRR1, r7
1257 13: b machine_check_fwnmi
1260 * Check whether an HDSI is an HPTE not found fault or something else.
1261 * If it is an HPTE not found fault that is due to the guest accessing
1262 * a page that they have mapped but which we have paged out, then
1263 * we continue on with the guest exit path. In all other cases,
1264 * reflect the HDSI to the guest as a DSI.
1268 mfspr r6, SPRN_HDSISR
1269 /* HPTE not found fault or protection fault? */
1270 andis. r0, r6, (DSISR_NOHPTE | DSISR_PROTFAULT)@h
1271 beq 1f /* if not, send it to the guest */
1272 andi. r0, r11, MSR_DR /* data relocation enabled? */
1275 PPC_SLBFEE_DOT(R5, R0) /* if so, look up SLB */
1276 bne 1f /* if no SLB entry found */
1277 4: std r4, VCPU_FAULT_DAR(r9)
1278 stw r6, VCPU_FAULT_DSISR(r9)
1280 /* Search the hash table. */
1281 mr r3, r9 /* vcpu pointer */
1282 li r7, 1 /* data fault */
1283 bl .kvmppc_hpte_hv_fault
1284 ld r9, HSTATE_KVM_VCPU(r13)
1286 ld r11, VCPU_MSR(r9)
1287 li r12, BOOK3S_INTERRUPT_H_DATA_STORAGE
1288 cmpdi r3, 0 /* retry the instruction */
1290 cmpdi r3, -1 /* handle in kernel mode */
1292 cmpdi r3, -2 /* MMIO emulation; need instr word */
1295 /* Synthesize a DSI for the guest */
1296 ld r4, VCPU_FAULT_DAR(r9)
1298 1: mtspr SPRN_DAR, r4
1299 mtspr SPRN_DSISR, r6
1300 mtspr SPRN_SRR0, r10
1301 mtspr SPRN_SRR1, r11
1302 li r10, BOOK3S_INTERRUPT_DATA_STORAGE
1303 li r11, (MSR_ME << 1) | 1 /* synthesize MSR_SF | MSR_ME */
1305 fast_interrupt_c_return:
1306 6: ld r7, VCPU_CTR(r9)
1307 lwz r8, VCPU_XER(r9)
1313 3: ld r5, VCPU_KVM(r9) /* not relocated, use VRMA */
1314 ld r5, KVM_VRMA_SLB_V(r5)
1317 /* If this is for emulated MMIO, load the instruction word */
1318 2: li r8, KVM_INST_FETCH_FAILED /* In case lwz faults */
1320 /* Set guest mode to 'jump over instruction' so if lwz faults
1321 * we'll just continue at the next IP. */
1322 li r0, KVM_GUEST_MODE_SKIP
1323 stb r0, HSTATE_IN_GUEST(r13)
1325 /* Do the access with MSR:DR enabled */
1327 ori r4, r3, MSR_DR /* Enable paging for data */
1332 /* Store the result */
1333 stw r8, VCPU_LAST_INST(r9)
1335 /* Unset guest mode. */
1336 li r0, KVM_GUEST_MODE_NONE
1337 stb r0, HSTATE_IN_GUEST(r13)
1341 * Similarly for an HISI, reflect it to the guest as an ISI unless
1342 * it is an HPTE not found fault for a page that we have paged out.
1345 andis. r0, r11, SRR1_ISI_NOPT@h
1347 andi. r0, r11, MSR_IR /* instruction relocation enabled? */
1350 PPC_SLBFEE_DOT(R5, R0) /* if so, look up SLB */
1351 bne 1f /* if no SLB entry found */
1353 /* Search the hash table. */
1354 mr r3, r9 /* vcpu pointer */
1357 li r7, 0 /* instruction fault */
1358 bl .kvmppc_hpte_hv_fault
1359 ld r9, HSTATE_KVM_VCPU(r13)
1361 ld r11, VCPU_MSR(r9)
1362 li r12, BOOK3S_INTERRUPT_H_INST_STORAGE
1363 cmpdi r3, 0 /* retry the instruction */
1364 beq fast_interrupt_c_return
1365 cmpdi r3, -1 /* handle in kernel mode */
1368 /* Synthesize an ISI for the guest */
1370 1: mtspr SPRN_SRR0, r10
1371 mtspr SPRN_SRR1, r11
1372 li r10, BOOK3S_INTERRUPT_INST_STORAGE
1373 li r11, (MSR_ME << 1) | 1 /* synthesize MSR_SF | MSR_ME */
1375 b fast_interrupt_c_return
1377 3: ld r6, VCPU_KVM(r9) /* not relocated, use VRMA */
1378 ld r5, KVM_VRMA_SLB_V(r6)
1382 * Try to handle an hcall in real mode.
1383 * Returns to the guest if we handle it, or continues on up to
1384 * the kernel if we can't (i.e. if we don't have a handler for
1385 * it, or if the handler returns H_TOO_HARD).
1387 .globl hcall_try_real_mode
1388 hcall_try_real_mode:
1389 ld r3,VCPU_GPR(R3)(r9)
1393 cmpldi r3,hcall_real_table_end - hcall_real_table
1395 LOAD_REG_ADDR(r4, hcall_real_table)
1401 mr r3,r9 /* get vcpu pointer */
1402 ld r4,VCPU_GPR(R4)(r9)
1405 beq hcall_real_fallback
1406 ld r4,HSTATE_KVM_VCPU(r13)
1407 std r3,VCPU_GPR(R3)(r4)
1412 /* We've attempted a real mode hcall, but it's punted it back
1413 * to userspace. We need to restore some clobbered volatiles
1414 * before resuming the pass-it-to-qemu path */
1415 hcall_real_fallback:
1416 li r12,BOOK3S_INTERRUPT_SYSCALL
1417 ld r9, HSTATE_KVM_VCPU(r13)
1421 .globl hcall_real_table
1423 .long 0 /* 0 - unused */
1424 .long .kvmppc_h_remove - hcall_real_table
1425 .long .kvmppc_h_enter - hcall_real_table
1426 .long .kvmppc_h_read - hcall_real_table
1427 .long 0 /* 0x10 - H_CLEAR_MOD */
1428 .long 0 /* 0x14 - H_CLEAR_REF */
1429 .long .kvmppc_h_protect - hcall_real_table
1430 .long 0 /* 0x1c - H_GET_TCE */
1431 .long .kvmppc_h_put_tce - hcall_real_table
1432 .long 0 /* 0x24 - H_SET_SPRG0 */
1433 .long .kvmppc_h_set_dabr - hcall_real_table
1448 #ifdef CONFIG_KVM_XICS
1449 .long .kvmppc_rm_h_eoi - hcall_real_table
1450 .long .kvmppc_rm_h_cppr - hcall_real_table
1451 .long .kvmppc_rm_h_ipi - hcall_real_table
1452 .long 0 /* 0x70 - H_IPOLL */
1453 .long .kvmppc_rm_h_xirr - hcall_real_table
1455 .long 0 /* 0x64 - H_EOI */
1456 .long 0 /* 0x68 - H_CPPR */
1457 .long 0 /* 0x6c - H_IPI */
1458 .long 0 /* 0x70 - H_IPOLL */
1459 .long 0 /* 0x74 - H_XIRR */
1487 .long .kvmppc_h_cede - hcall_real_table
1504 .long .kvmppc_h_bulk_remove - hcall_real_table
1505 hcall_real_table_end:
1511 _GLOBAL(kvmppc_h_set_dabr)
1512 std r4,VCPU_DABR(r3)
1513 /* Work around P7 bug where DABR can get corrupted on mtspr */
1514 1: mtspr SPRN_DABR,r4
1522 _GLOBAL(kvmppc_h_cede)
1524 std r11,VCPU_MSR(r3)
1526 stb r0,VCPU_CEDED(r3)
1527 sync /* order setting ceded vs. testing prodded */
1528 lbz r5,VCPU_PRODDED(r3)
1530 bne kvm_cede_prodded
1531 li r0,0 /* set trap to 0 to say hcall is handled */
1532 stw r0,VCPU_TRAP(r3)
1534 std r0,VCPU_GPR(R3)(r3)
1536 b kvm_cede_exit /* just send it up to host on 970 */
1537 END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_206)
1540 * Set our bit in the bitmask of napping threads unless all the
1541 * other threads are already napping, in which case we send this
1544 ld r5,HSTATE_KVM_VCORE(r13)
1545 lwz r6,VCPU_PTID(r3)
1546 lwz r8,VCORE_ENTRY_EXIT(r5)
1550 addi r6,r5,VCORE_NAPPING_THREADS
1559 stb r0,HSTATE_NAPPING(r13)
1560 /* order napping_threads update vs testing entry_exit_count */
1563 lwz r7,VCORE_ENTRY_EXIT(r5)
1565 bge 33f /* another thread already exiting */
1568 * Although not specifically required by the architecture, POWER7
1569 * preserves the following registers in nap mode, even if an SMT mode
1570 * switch occurs: SLB entries, PURR, SPURR, AMOR, UAMOR, AMR, SPRG0-3,
1571 * DAR, DSISR, DABR, DABRX, DSCR, PMCx, MMCRx, SIAR, SDAR.
1573 /* Save non-volatile GPRs */
1574 std r14, VCPU_GPR(R14)(r3)
1575 std r15, VCPU_GPR(R15)(r3)
1576 std r16, VCPU_GPR(R16)(r3)
1577 std r17, VCPU_GPR(R17)(r3)
1578 std r18, VCPU_GPR(R18)(r3)
1579 std r19, VCPU_GPR(R19)(r3)
1580 std r20, VCPU_GPR(R20)(r3)
1581 std r21, VCPU_GPR(R21)(r3)
1582 std r22, VCPU_GPR(R22)(r3)
1583 std r23, VCPU_GPR(R23)(r3)
1584 std r24, VCPU_GPR(R24)(r3)
1585 std r25, VCPU_GPR(R25)(r3)
1586 std r26, VCPU_GPR(R26)(r3)
1587 std r27, VCPU_GPR(R27)(r3)
1588 std r28, VCPU_GPR(R28)(r3)
1589 std r29, VCPU_GPR(R29)(r3)
1590 std r30, VCPU_GPR(R30)(r3)
1591 std r31, VCPU_GPR(R31)(r3)
1597 * Take a nap until a decrementer or external interrupt occurs,
1598 * with PECE1 (wake on decr) and PECE0 (wake on external) set in LPCR
1601 stb r0,HSTATE_HWTHREAD_REQ(r13)
1603 ori r5,r5,LPCR_PECE0 | LPCR_PECE1
1607 std r0, HSTATE_SCRATCH0(r13)
1609 ld r0, HSTATE_SCRATCH0(r13)
1616 /* get vcpu pointer */
1617 ld r4, HSTATE_KVM_VCPU(r13)
1619 /* Woken by external or decrementer interrupt */
1620 ld r1, HSTATE_HOST_R1(r13)
1622 /* load up FP state */
1626 ld r14, VCPU_GPR(R14)(r4)
1627 ld r15, VCPU_GPR(R15)(r4)
1628 ld r16, VCPU_GPR(R16)(r4)
1629 ld r17, VCPU_GPR(R17)(r4)
1630 ld r18, VCPU_GPR(R18)(r4)
1631 ld r19, VCPU_GPR(R19)(r4)
1632 ld r20, VCPU_GPR(R20)(r4)
1633 ld r21, VCPU_GPR(R21)(r4)
1634 ld r22, VCPU_GPR(R22)(r4)
1635 ld r23, VCPU_GPR(R23)(r4)
1636 ld r24, VCPU_GPR(R24)(r4)
1637 ld r25, VCPU_GPR(R25)(r4)
1638 ld r26, VCPU_GPR(R26)(r4)
1639 ld r27, VCPU_GPR(R27)(r4)
1640 ld r28, VCPU_GPR(R28)(r4)
1641 ld r29, VCPU_GPR(R29)(r4)
1642 ld r30, VCPU_GPR(R30)(r4)
1643 ld r31, VCPU_GPR(R31)(r4)
1645 /* clear our bit in vcore->napping_threads */
1646 33: ld r5,HSTATE_KVM_VCORE(r13)
1647 lwz r3,VCPU_PTID(r4)
1650 addi r6,r5,VCORE_NAPPING_THREADS
1656 stb r0,HSTATE_NAPPING(r13)
1658 /* Check the wake reason in SRR1 to see why we got here */
1660 rlwinm r3, r3, 44-31, 0x7 /* extract wake reason field */
1661 cmpwi r3, 4 /* was it an external interrupt? */
1662 li r12, BOOK3S_INTERRUPT_EXTERNAL
1665 ld r11, VCPU_MSR(r9)
1666 beq do_ext_interrupt /* if so */
1668 /* see if any other thread is already exiting */
1669 lwz r0,VCORE_ENTRY_EXIT(r5)
1671 blt kvmppc_cede_reentry /* if not go back to guest */
1673 /* some threads are exiting, so go to the guest exit path */
1674 b hcall_real_fallback
1676 /* cede when already previously prodded case */
1679 stb r0,VCPU_PRODDED(r3)
1680 sync /* order testing prodded vs. clearing ceded */
1681 stb r0,VCPU_CEDED(r3)
1685 /* we've ceded but we want to give control to the host */
1687 b hcall_real_fallback
1689 /* Try to handle a machine check in real mode */
1690 machine_check_realmode:
1691 mr r3, r9 /* get vcpu pointer */
1692 bl .kvmppc_realmode_machine_check
1694 cmpdi r3, 0 /* continue exiting from guest? */
1695 ld r9, HSTATE_KVM_VCPU(r13)
1696 li r12, BOOK3S_INTERRUPT_MACHINE_CHECK
1698 /* If not, deliver a machine check. SRR0/1 are already set */
1699 li r10, BOOK3S_INTERRUPT_MACHINE_CHECK
1700 li r11, (MSR_ME << 1) | 1 /* synthesize MSR_SF | MSR_ME */
1702 b fast_interrupt_c_return
1705 ld r5,HSTATE_KVM_VCORE(r13)
1707 13: lbz r3,VCORE_IN_GUEST(r5)
1711 ld r11,PACA_SLBSHADOWPTR(r13)
1713 .rept SLB_NUM_BOLTED
1714 ld r5,SLBSHADOW_SAVEAREA(r11)
1715 ld r6,SLBSHADOW_SAVEAREA+8(r11)
1716 andis. r7,r5,SLB_ESID_V@h
1723 /* Clear our vcpu pointer so we don't come back in early */
1725 std r0, HSTATE_KVM_VCPU(r13)
1727 /* Clear any pending IPI - assume we're a secondary thread */
1728 ld r5, HSTATE_XICS_PHYS(r13)
1730 lwzcix r3, r5, r7 /* ack any pending interrupt */
1731 rlwinm. r0, r3, 0, 0xffffff /* any pending? */
1736 stbcix r0, r5, r6 /* clear the IPI */
1737 stwcix r3, r5, r7 /* EOI it */
1740 /* increment the nap count and then go to nap mode */
1741 ld r4, HSTATE_KVM_VCORE(r13)
1742 addi r4, r4, VCORE_NAP_COUNT
1743 lwsync /* make previous updates visible */
1750 li r0, KVM_HWTHREAD_IN_NAP
1751 stb r0, HSTATE_HWTHREAD_STATE(r13)
1755 rlwimi r4, r3, 0, LPCR_PECE0 | LPCR_PECE1
1758 std r0, HSTATE_SCRATCH0(r13)
1760 ld r0, HSTATE_SCRATCH0(r13)
1767 * Save away FP, VMX and VSX registers.
1770 _GLOBAL(kvmppc_save_fp)
1773 #ifdef CONFIG_ALTIVEC
1775 oris r8,r8,MSR_VEC@h
1776 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
1780 oris r8,r8,MSR_VSX@h
1781 END_FTR_SECTION_IFSET(CPU_FTR_VSX)
1789 li r6,reg*16+VCPU_VSRS
1797 stfd reg,reg*8+VCPU_FPRS(r3)
1801 ALT_FTR_SECTION_END_IFSET(CPU_FTR_VSX)
1804 stfd fr0,VCPU_FPSCR(r3)
1806 #ifdef CONFIG_ALTIVEC
1810 li r6,reg*16+VCPU_VRS
1817 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
1819 mfspr r6,SPRN_VRSAVE
1820 stw r6,VCPU_VRSAVE(r3)
1826 * Load up FP, VMX and VSX registers
1829 .globl kvmppc_load_fp
1833 #ifdef CONFIG_ALTIVEC
1835 oris r8,r8,MSR_VEC@h
1836 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
1840 oris r8,r8,MSR_VSX@h
1841 END_FTR_SECTION_IFSET(CPU_FTR_VSX)
1845 lfd fr0,VCPU_FPSCR(r4)
1851 li r7,reg*16+VCPU_VSRS
1859 lfd reg,reg*8+VCPU_FPRS(r4)
1863 ALT_FTR_SECTION_END_IFSET(CPU_FTR_VSX)
1866 #ifdef CONFIG_ALTIVEC
1873 li r7,reg*16+VCPU_VRS
1877 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
1879 lwz r7,VCPU_VRSAVE(r4)
1880 mtspr SPRN_VRSAVE,r7