These changes are a raw update to a vanilla kernel 4.1.10, with the
[kvmfornfv.git] / kernel / arch / powerpc / kvm / book3s_hv_rmhandlers.S
1 /*
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.
5  *
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.
10  *
11  * Copyright 2011 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
12  *
13  * Derived from book3s_rmhandlers.S and other files, which are:
14  *
15  * Copyright SUSE Linux Products GmbH 2009
16  *
17  * Authors: Alexander Graf <agraf@suse.de>
18  */
19
20 #include <asm/ppc_asm.h>
21 #include <asm/kvm_asm.h>
22 #include <asm/reg.h>
23 #include <asm/mmu.h>
24 #include <asm/page.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>
31 #include <asm/tm.h>
32
33 #define VCPU_GPRS_TM(reg) (((reg) * ULONG_SIZE) + VCPU_GPR_TM)
34
35 /* Values in HSTATE_NAPPING(r13) */
36 #define NAPPING_CEDE    1
37 #define NAPPING_NOVCPU  2
38
39 /*
40  * Call kvmppc_hv_entry in real mode.
41  * Must be called with interrupts hard-disabled.
42  *
43  * Input Registers:
44  *
45  * LR = return address to continue at after eventually re-enabling MMU
46  */
47 _GLOBAL_TOC(kvmppc_hv_entry_trampoline)
48         mflr    r0
49         std     r0, PPC_LR_STKOFF(r1)
50         stdu    r1, -112(r1)
51         mfmsr   r10
52         LOAD_REG_ADDR(r5, kvmppc_call_hv_entry)
53         li      r0,MSR_RI
54         andc    r0,r10,r0
55         li      r6,MSR_IR | MSR_DR
56         andc    r6,r10,r6
57         mtmsrd  r0,1            /* clear RI in MSR */
58         mtsrr0  r5
59         mtsrr1  r6
60         RFI
61
62 kvmppc_call_hv_entry:
63         ld      r4, HSTATE_KVM_VCPU(r13)
64         bl      kvmppc_hv_entry
65
66         /* Back from guest - restore host state and return to caller */
67
68 BEGIN_FTR_SECTION
69         /* Restore host DABR and DABRX */
70         ld      r5,HSTATE_DABR(r13)
71         li      r6,7
72         mtspr   SPRN_DABR,r5
73         mtspr   SPRN_DABRX,r6
74 END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_207S)
75
76         /* Restore SPRG3 */
77         ld      r3,PACA_SPRG_VDSO(r13)
78         mtspr   SPRN_SPRG_VDSO_WRITE,r3
79
80         /* Reload the host's PMU registers */
81         ld      r3, PACALPPACAPTR(r13)  /* is the host using the PMU? */
82         lbz     r4, LPPACA_PMCINUSE(r3)
83         cmpwi   r4, 0
84         beq     23f                     /* skip if not */
85 BEGIN_FTR_SECTION
86         ld      r3, HSTATE_MMCR0(r13)
87         andi.   r4, r3, MMCR0_PMAO_SYNC | MMCR0_PMAO
88         cmpwi   r4, MMCR0_PMAO
89         beql    kvmppc_fix_pmao
90 END_FTR_SECTION_IFSET(CPU_FTR_PMAO_BUG)
91         lwz     r3, HSTATE_PMC1(r13)
92         lwz     r4, HSTATE_PMC2(r13)
93         lwz     r5, HSTATE_PMC3(r13)
94         lwz     r6, HSTATE_PMC4(r13)
95         lwz     r8, HSTATE_PMC5(r13)
96         lwz     r9, HSTATE_PMC6(r13)
97         mtspr   SPRN_PMC1, r3
98         mtspr   SPRN_PMC2, r4
99         mtspr   SPRN_PMC3, r5
100         mtspr   SPRN_PMC4, r6
101         mtspr   SPRN_PMC5, r8
102         mtspr   SPRN_PMC6, r9
103         ld      r3, HSTATE_MMCR0(r13)
104         ld      r4, HSTATE_MMCR1(r13)
105         ld      r5, HSTATE_MMCRA(r13)
106         ld      r6, HSTATE_SIAR(r13)
107         ld      r7, HSTATE_SDAR(r13)
108         mtspr   SPRN_MMCR1, r4
109         mtspr   SPRN_MMCRA, r5
110         mtspr   SPRN_SIAR, r6
111         mtspr   SPRN_SDAR, r7
112 BEGIN_FTR_SECTION
113         ld      r8, HSTATE_MMCR2(r13)
114         ld      r9, HSTATE_SIER(r13)
115         mtspr   SPRN_MMCR2, r8
116         mtspr   SPRN_SIER, r9
117 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S)
118         mtspr   SPRN_MMCR0, r3
119         isync
120 23:
121
122         /*
123          * Reload DEC.  HDEC interrupts were disabled when
124          * we reloaded the host's LPCR value.
125          */
126         ld      r3, HSTATE_DECEXP(r13)
127         mftb    r4
128         subf    r4, r4, r3
129         mtspr   SPRN_DEC, r4
130
131         /*
132          * For external and machine check interrupts, we need
133          * to call the Linux handler to process the interrupt.
134          * We do that by jumping to absolute address 0x500 for
135          * external interrupts, or the machine_check_fwnmi label
136          * for machine checks (since firmware might have patched
137          * the vector area at 0x200).  The [h]rfid at the end of the
138          * handler will return to the book3s_hv_interrupts.S code.
139          * For other interrupts we do the rfid to get back
140          * to the book3s_hv_interrupts.S code here.
141          */
142         ld      r8, 112+PPC_LR_STKOFF(r1)
143         addi    r1, r1, 112
144         ld      r7, HSTATE_HOST_MSR(r13)
145
146         cmpwi   cr1, r12, BOOK3S_INTERRUPT_MACHINE_CHECK
147         cmpwi   r12, BOOK3S_INTERRUPT_EXTERNAL
148         beq     11f
149         cmpwi   cr2, r12, BOOK3S_INTERRUPT_HMI
150         beq     cr2, 14f                        /* HMI check */
151
152         /* RFI into the highmem handler, or branch to interrupt handler */
153         mfmsr   r6
154         li      r0, MSR_RI
155         andc    r6, r6, r0
156         mtmsrd  r6, 1                   /* Clear RI in MSR */
157         mtsrr0  r8
158         mtsrr1  r7
159         beq     cr1, 13f                /* machine check */
160         RFI
161
162         /* On POWER7, we have external interrupts set to use HSRR0/1 */
163 11:     mtspr   SPRN_HSRR0, r8
164         mtspr   SPRN_HSRR1, r7
165         ba      0x500
166
167 13:     b       machine_check_fwnmi
168
169 14:     mtspr   SPRN_HSRR0, r8
170         mtspr   SPRN_HSRR1, r7
171         b       hmi_exception_after_realmode
172
173 kvmppc_primary_no_guest:
174         /* We handle this much like a ceded vcpu */
175         /* put the HDEC into the DEC, since HDEC interrupts don't wake us */
176         mfspr   r3, SPRN_HDEC
177         mtspr   SPRN_DEC, r3
178         /*
179          * Make sure the primary has finished the MMU switch.
180          * We should never get here on a secondary thread, but
181          * check it for robustness' sake.
182          */
183         ld      r5, HSTATE_KVM_VCORE(r13)
184 65:     lbz     r0, VCORE_IN_GUEST(r5)
185         cmpwi   r0, 0
186         beq     65b
187         /* Set LPCR. */
188         ld      r8,VCORE_LPCR(r5)
189         mtspr   SPRN_LPCR,r8
190         isync
191         /* set our bit in napping_threads */
192         ld      r5, HSTATE_KVM_VCORE(r13)
193         lbz     r7, HSTATE_PTID(r13)
194         li      r0, 1
195         sld     r0, r0, r7
196         addi    r6, r5, VCORE_NAPPING_THREADS
197 1:      lwarx   r3, 0, r6
198         or      r3, r3, r0
199         stwcx.  r3, 0, r6
200         bne     1b
201         /* order napping_threads update vs testing entry_exit_map */
202         isync
203         li      r12, 0
204         lwz     r7, VCORE_ENTRY_EXIT(r5)
205         cmpwi   r7, 0x100
206         bge     kvm_novcpu_exit /* another thread already exiting */
207         li      r3, NAPPING_NOVCPU
208         stb     r3, HSTATE_NAPPING(r13)
209
210         li      r3, 0           /* Don't wake on privileged (OS) doorbell */
211         b       kvm_do_nap
212
213 kvm_novcpu_wakeup:
214         ld      r1, HSTATE_HOST_R1(r13)
215         ld      r5, HSTATE_KVM_VCORE(r13)
216         li      r0, 0
217         stb     r0, HSTATE_NAPPING(r13)
218         stb     r0, HSTATE_HWTHREAD_REQ(r13)
219
220         /* check the wake reason */
221         bl      kvmppc_check_wake_reason
222
223         /* see if any other thread is already exiting */
224         lwz     r0, VCORE_ENTRY_EXIT(r5)
225         cmpwi   r0, 0x100
226         bge     kvm_novcpu_exit
227
228         /* clear our bit in napping_threads */
229         lbz     r7, HSTATE_PTID(r13)
230         li      r0, 1
231         sld     r0, r0, r7
232         addi    r6, r5, VCORE_NAPPING_THREADS
233 4:      lwarx   r7, 0, r6
234         andc    r7, r7, r0
235         stwcx.  r7, 0, r6
236         bne     4b
237
238         /* See if the wake reason means we need to exit */
239         cmpdi   r3, 0
240         bge     kvm_novcpu_exit
241
242         /* See if our timeslice has expired (HDEC is negative) */
243         mfspr   r0, SPRN_HDEC
244         li      r12, BOOK3S_INTERRUPT_HV_DECREMENTER
245         cmpwi   r0, 0
246         blt     kvm_novcpu_exit
247
248         /* Got an IPI but other vcpus aren't yet exiting, must be a latecomer */
249         ld      r4, HSTATE_KVM_VCPU(r13)
250         cmpdi   r4, 0
251         beq     kvmppc_primary_no_guest
252
253 #ifdef CONFIG_KVM_BOOK3S_HV_EXIT_TIMING
254         addi    r3, r4, VCPU_TB_RMENTRY
255         bl      kvmhv_start_timing
256 #endif
257         b       kvmppc_got_guest
258
259 kvm_novcpu_exit:
260 #ifdef CONFIG_KVM_BOOK3S_HV_EXIT_TIMING
261         ld      r4, HSTATE_KVM_VCPU(r13)
262         cmpdi   r4, 0
263         beq     13f
264         addi    r3, r4, VCPU_TB_RMEXIT
265         bl      kvmhv_accumulate_time
266 #endif
267 13:     mr      r3, r12
268         stw     r12, 112-4(r1)
269         bl      kvmhv_commence_exit
270         nop
271         lwz     r12, 112-4(r1)
272         b       kvmhv_switch_to_host
273
274 /*
275  * We come in here when wakened from nap mode.
276  * Relocation is off and most register values are lost.
277  * r13 points to the PACA.
278  */
279         .globl  kvm_start_guest
280 kvm_start_guest:
281
282         /* Set runlatch bit the minute you wake up from nap */
283         mfspr   r0, SPRN_CTRLF
284         ori     r0, r0, 1
285         mtspr   SPRN_CTRLT, r0
286
287         ld      r2,PACATOC(r13)
288
289         li      r0,KVM_HWTHREAD_IN_KVM
290         stb     r0,HSTATE_HWTHREAD_STATE(r13)
291
292         /* NV GPR values from power7_idle() will no longer be valid */
293         li      r0,1
294         stb     r0,PACA_NAPSTATELOST(r13)
295
296         /* were we napping due to cede? */
297         lbz     r0,HSTATE_NAPPING(r13)
298         cmpwi   r0,NAPPING_CEDE
299         beq     kvm_end_cede
300         cmpwi   r0,NAPPING_NOVCPU
301         beq     kvm_novcpu_wakeup
302
303         ld      r1,PACAEMERGSP(r13)
304         subi    r1,r1,STACK_FRAME_OVERHEAD
305
306         /*
307          * We weren't napping due to cede, so this must be a secondary
308          * thread being woken up to run a guest, or being woken up due
309          * to a stray IPI.  (Or due to some machine check or hypervisor
310          * maintenance interrupt while the core is in KVM.)
311          */
312
313         /* Check the wake reason in SRR1 to see why we got here */
314         bl      kvmppc_check_wake_reason
315         cmpdi   r3, 0
316         bge     kvm_no_guest
317
318         /* get vcpu pointer, NULL if we have no vcpu to run */
319         ld      r4,HSTATE_KVM_VCPU(r13)
320         cmpdi   r4,0
321         /* if we have no vcpu to run, go back to sleep */
322         beq     kvm_no_guest
323
324 kvm_secondary_got_guest:
325
326         /* Set HSTATE_DSCR(r13) to something sensible */
327         ld      r6, PACA_DSCR(r13)
328         std     r6, HSTATE_DSCR(r13)
329
330         /* Order load of vcore, ptid etc. after load of vcpu */
331         lwsync
332         bl      kvmppc_hv_entry
333
334         /* Back from the guest, go back to nap */
335         /* Clear our vcpu pointer so we don't come back in early */
336         li      r0, 0
337         /*
338          * Once we clear HSTATE_KVM_VCPU(r13), the code in
339          * kvmppc_run_core() is going to assume that all our vcpu
340          * state is visible in memory.  This lwsync makes sure
341          * that that is true.
342          */
343         lwsync
344         std     r0, HSTATE_KVM_VCPU(r13)
345
346 /*
347  * At this point we have finished executing in the guest.
348  * We need to wait for hwthread_req to become zero, since
349  * we may not turn on the MMU while hwthread_req is non-zero.
350  * While waiting we also need to check if we get given a vcpu to run.
351  */
352 kvm_no_guest:
353         lbz     r3, HSTATE_HWTHREAD_REQ(r13)
354         cmpwi   r3, 0
355         bne     53f
356         HMT_MEDIUM
357         li      r0, KVM_HWTHREAD_IN_KERNEL
358         stb     r0, HSTATE_HWTHREAD_STATE(r13)
359         /* need to recheck hwthread_req after a barrier, to avoid race */
360         sync
361         lbz     r3, HSTATE_HWTHREAD_REQ(r13)
362         cmpwi   r3, 0
363         bne     54f
364 /*
365  * We jump to power7_wakeup_loss, which will return to the caller
366  * of power7_nap in the powernv cpu offline loop.  The value we
367  * put in r3 becomes the return value for power7_nap.
368  */
369         li      r3, LPCR_PECE0
370         mfspr   r4, SPRN_LPCR
371         rlwimi  r4, r3, 0, LPCR_PECE0 | LPCR_PECE1
372         mtspr   SPRN_LPCR, r4
373         li      r3, 0
374         b       power7_wakeup_loss
375
376 53:     HMT_LOW
377         ld      r4, HSTATE_KVM_VCPU(r13)
378         cmpdi   r4, 0
379         beq     kvm_no_guest
380         HMT_MEDIUM
381         b       kvm_secondary_got_guest
382
383 54:     li      r0, KVM_HWTHREAD_IN_KVM
384         stb     r0, HSTATE_HWTHREAD_STATE(r13)
385         b       kvm_no_guest
386
387 /******************************************************************************
388  *                                                                            *
389  *                               Entry code                                   *
390  *                                                                            *
391  *****************************************************************************/
392
393 .global kvmppc_hv_entry
394 kvmppc_hv_entry:
395
396         /* Required state:
397          *
398          * R4 = vcpu pointer (or NULL)
399          * MSR = ~IR|DR
400          * R13 = PACA
401          * R1 = host R1
402          * R2 = TOC
403          * all other volatile GPRS = free
404          */
405         mflr    r0
406         std     r0, PPC_LR_STKOFF(r1)
407         stdu    r1, -112(r1)
408
409         /* Save R1 in the PACA */
410         std     r1, HSTATE_HOST_R1(r13)
411
412         li      r6, KVM_GUEST_MODE_HOST_HV
413         stb     r6, HSTATE_IN_GUEST(r13)
414
415 #ifdef CONFIG_KVM_BOOK3S_HV_EXIT_TIMING
416         /* Store initial timestamp */
417         cmpdi   r4, 0
418         beq     1f
419         addi    r3, r4, VCPU_TB_RMENTRY
420         bl      kvmhv_start_timing
421 1:
422 #endif
423         /* Clear out SLB */
424         li      r6,0
425         slbmte  r6,r6
426         slbia
427         ptesync
428
429         /*
430          * POWER7/POWER8 host -> guest partition switch code.
431          * We don't have to lock against concurrent tlbies,
432          * but we do have to coordinate across hardware threads.
433          */
434         /* Set bit in entry map iff exit map is zero. */
435         ld      r5, HSTATE_KVM_VCORE(r13)
436         li      r7, 1
437         lbz     r6, HSTATE_PTID(r13)
438         sld     r7, r7, r6
439         addi    r9, r5, VCORE_ENTRY_EXIT
440 21:     lwarx   r3, 0, r9
441         cmpwi   r3, 0x100               /* any threads starting to exit? */
442         bge     secondary_too_late      /* if so we're too late to the party */
443         or      r3, r3, r7
444         stwcx.  r3, 0, r9
445         bne     21b
446
447         /* Primary thread switches to guest partition. */
448         ld      r9,VCORE_KVM(r5)        /* pointer to struct kvm */
449         cmpwi   r6,0
450         bne     10f
451         ld      r6,KVM_SDR1(r9)
452         lwz     r7,KVM_LPID(r9)
453         li      r0,LPID_RSVD            /* switch to reserved LPID */
454         mtspr   SPRN_LPID,r0
455         ptesync
456         mtspr   SPRN_SDR1,r6            /* switch to partition page table */
457         mtspr   SPRN_LPID,r7
458         isync
459
460         /* See if we need to flush the TLB */
461         lhz     r6,PACAPACAINDEX(r13)   /* test_bit(cpu, need_tlb_flush) */
462         clrldi  r7,r6,64-6              /* extract bit number (6 bits) */
463         srdi    r6,r6,6                 /* doubleword number */
464         sldi    r6,r6,3                 /* address offset */
465         add     r6,r6,r9
466         addi    r6,r6,KVM_NEED_FLUSH    /* dword in kvm->arch.need_tlb_flush */
467         li      r0,1
468         sld     r0,r0,r7
469         ld      r7,0(r6)
470         and.    r7,r7,r0
471         beq     22f
472 23:     ldarx   r7,0,r6                 /* if set, clear the bit */
473         andc    r7,r7,r0
474         stdcx.  r7,0,r6
475         bne     23b
476         /* Flush the TLB of any entries for this LPID */
477         /* use arch 2.07S as a proxy for POWER8 */
478 BEGIN_FTR_SECTION
479         li      r6,512                  /* POWER8 has 512 sets */
480 FTR_SECTION_ELSE
481         li      r6,128                  /* POWER7 has 128 sets */
482 ALT_FTR_SECTION_END_IFSET(CPU_FTR_ARCH_207S)
483         mtctr   r6
484         li      r7,0x800                /* IS field = 0b10 */
485         ptesync
486 28:     tlbiel  r7
487         addi    r7,r7,0x1000
488         bdnz    28b
489         ptesync
490
491         /* Add timebase offset onto timebase */
492 22:     ld      r8,VCORE_TB_OFFSET(r5)
493         cmpdi   r8,0
494         beq     37f
495         mftb    r6              /* current host timebase */
496         add     r8,r8,r6
497         mtspr   SPRN_TBU40,r8   /* update upper 40 bits */
498         mftb    r7              /* check if lower 24 bits overflowed */
499         clrldi  r6,r6,40
500         clrldi  r7,r7,40
501         cmpld   r7,r6
502         bge     37f
503         addis   r8,r8,0x100     /* if so, increment upper 40 bits */
504         mtspr   SPRN_TBU40,r8
505
506         /* Load guest PCR value to select appropriate compat mode */
507 37:     ld      r7, VCORE_PCR(r5)
508         cmpdi   r7, 0
509         beq     38f
510         mtspr   SPRN_PCR, r7
511 38:
512
513 BEGIN_FTR_SECTION
514         /* DPDES is shared between threads */
515         ld      r8, VCORE_DPDES(r5)
516         mtspr   SPRN_DPDES, r8
517 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S)
518
519         li      r0,1
520         stb     r0,VCORE_IN_GUEST(r5)   /* signal secondaries to continue */
521
522         /* Do we have a guest vcpu to run? */
523 10:     cmpdi   r4, 0
524         beq     kvmppc_primary_no_guest
525 kvmppc_got_guest:
526
527         /* Load up guest SLB entries */
528         lwz     r5,VCPU_SLB_MAX(r4)
529         cmpwi   r5,0
530         beq     9f
531         mtctr   r5
532         addi    r6,r4,VCPU_SLB
533 1:      ld      r8,VCPU_SLB_E(r6)
534         ld      r9,VCPU_SLB_V(r6)
535         slbmte  r9,r8
536         addi    r6,r6,VCPU_SLB_SIZE
537         bdnz    1b
538 9:
539         /* Increment yield count if they have a VPA */
540         ld      r3, VCPU_VPA(r4)
541         cmpdi   r3, 0
542         beq     25f
543         li      r6, LPPACA_YIELDCOUNT
544         LWZX_BE r5, r3, r6
545         addi    r5, r5, 1
546         STWX_BE r5, r3, r6
547         li      r6, 1
548         stb     r6, VCPU_VPA_DIRTY(r4)
549 25:
550
551         /* Save purr/spurr */
552         mfspr   r5,SPRN_PURR
553         mfspr   r6,SPRN_SPURR
554         std     r5,HSTATE_PURR(r13)
555         std     r6,HSTATE_SPURR(r13)
556         ld      r7,VCPU_PURR(r4)
557         ld      r8,VCPU_SPURR(r4)
558         mtspr   SPRN_PURR,r7
559         mtspr   SPRN_SPURR,r8
560
561 BEGIN_FTR_SECTION
562         /* Set partition DABR */
563         /* Do this before re-enabling PMU to avoid P7 DABR corruption bug */
564         lwz     r5,VCPU_DABRX(r4)
565         ld      r6,VCPU_DABR(r4)
566         mtspr   SPRN_DABRX,r5
567         mtspr   SPRN_DABR,r6
568         isync
569 END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_207S)
570
571 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
572 BEGIN_FTR_SECTION
573         b       skip_tm
574 END_FTR_SECTION_IFCLR(CPU_FTR_TM)
575
576         /* Turn on TM/FP/VSX/VMX so we can restore them. */
577         mfmsr   r5
578         li      r6, MSR_TM >> 32
579         sldi    r6, r6, 32
580         or      r5, r5, r6
581         ori     r5, r5, MSR_FP
582         oris    r5, r5, (MSR_VEC | MSR_VSX)@h
583         mtmsrd  r5
584
585         /*
586          * The user may change these outside of a transaction, so they must
587          * always be context switched.
588          */
589         ld      r5, VCPU_TFHAR(r4)
590         ld      r6, VCPU_TFIAR(r4)
591         ld      r7, VCPU_TEXASR(r4)
592         mtspr   SPRN_TFHAR, r5
593         mtspr   SPRN_TFIAR, r6
594         mtspr   SPRN_TEXASR, r7
595
596         ld      r5, VCPU_MSR(r4)
597         rldicl. r5, r5, 64 - MSR_TS_S_LG, 62
598         beq     skip_tm /* TM not active in guest */
599
600         /* Make sure the failure summary is set, otherwise we'll program check
601          * when we trechkpt.  It's possible that this might have been not set
602          * on a kvmppc_set_one_reg() call but we shouldn't let this crash the
603          * host.
604          */
605         oris    r7, r7, (TEXASR_FS)@h
606         mtspr   SPRN_TEXASR, r7
607
608         /*
609          * We need to load up the checkpointed state for the guest.
610          * We need to do this early as it will blow away any GPRs, VSRs and
611          * some SPRs.
612          */
613
614         mr      r31, r4
615         addi    r3, r31, VCPU_FPRS_TM
616         bl      load_fp_state
617         addi    r3, r31, VCPU_VRS_TM
618         bl      load_vr_state
619         mr      r4, r31
620         lwz     r7, VCPU_VRSAVE_TM(r4)
621         mtspr   SPRN_VRSAVE, r7
622
623         ld      r5, VCPU_LR_TM(r4)
624         lwz     r6, VCPU_CR_TM(r4)
625         ld      r7, VCPU_CTR_TM(r4)
626         ld      r8, VCPU_AMR_TM(r4)
627         ld      r9, VCPU_TAR_TM(r4)
628         mtlr    r5
629         mtcr    r6
630         mtctr   r7
631         mtspr   SPRN_AMR, r8
632         mtspr   SPRN_TAR, r9
633
634         /*
635          * Load up PPR and DSCR values but don't put them in the actual SPRs
636          * till the last moment to avoid running with userspace PPR and DSCR for
637          * too long.
638          */
639         ld      r29, VCPU_DSCR_TM(r4)
640         ld      r30, VCPU_PPR_TM(r4)
641
642         std     r2, PACATMSCRATCH(r13) /* Save TOC */
643
644         /* Clear the MSR RI since r1, r13 are all going to be foobar. */
645         li      r5, 0
646         mtmsrd  r5, 1
647
648         /* Load GPRs r0-r28 */
649         reg = 0
650         .rept   29
651         ld      reg, VCPU_GPRS_TM(reg)(r31)
652         reg = reg + 1
653         .endr
654
655         mtspr   SPRN_DSCR, r29
656         mtspr   SPRN_PPR, r30
657
658         /* Load final GPRs */
659         ld      29, VCPU_GPRS_TM(29)(r31)
660         ld      30, VCPU_GPRS_TM(30)(r31)
661         ld      31, VCPU_GPRS_TM(31)(r31)
662
663         /* TM checkpointed state is now setup.  All GPRs are now volatile. */
664         TRECHKPT
665
666         /* Now let's get back the state we need. */
667         HMT_MEDIUM
668         GET_PACA(r13)
669         ld      r29, HSTATE_DSCR(r13)
670         mtspr   SPRN_DSCR, r29
671         ld      r4, HSTATE_KVM_VCPU(r13)
672         ld      r1, HSTATE_HOST_R1(r13)
673         ld      r2, PACATMSCRATCH(r13)
674
675         /* Set the MSR RI since we have our registers back. */
676         li      r5, MSR_RI
677         mtmsrd  r5, 1
678 skip_tm:
679 #endif
680
681         /* Load guest PMU registers */
682         /* R4 is live here (vcpu pointer) */
683         li      r3, 1
684         sldi    r3, r3, 31              /* MMCR0_FC (freeze counters) bit */
685         mtspr   SPRN_MMCR0, r3          /* freeze all counters, disable ints */
686         isync
687 BEGIN_FTR_SECTION
688         ld      r3, VCPU_MMCR(r4)
689         andi.   r5, r3, MMCR0_PMAO_SYNC | MMCR0_PMAO
690         cmpwi   r5, MMCR0_PMAO
691         beql    kvmppc_fix_pmao
692 END_FTR_SECTION_IFSET(CPU_FTR_PMAO_BUG)
693         lwz     r3, VCPU_PMC(r4)        /* always load up guest PMU registers */
694         lwz     r5, VCPU_PMC + 4(r4)    /* to prevent information leak */
695         lwz     r6, VCPU_PMC + 8(r4)
696         lwz     r7, VCPU_PMC + 12(r4)
697         lwz     r8, VCPU_PMC + 16(r4)
698         lwz     r9, VCPU_PMC + 20(r4)
699         mtspr   SPRN_PMC1, r3
700         mtspr   SPRN_PMC2, r5
701         mtspr   SPRN_PMC3, r6
702         mtspr   SPRN_PMC4, r7
703         mtspr   SPRN_PMC5, r8
704         mtspr   SPRN_PMC6, r9
705         ld      r3, VCPU_MMCR(r4)
706         ld      r5, VCPU_MMCR + 8(r4)
707         ld      r6, VCPU_MMCR + 16(r4)
708         ld      r7, VCPU_SIAR(r4)
709         ld      r8, VCPU_SDAR(r4)
710         mtspr   SPRN_MMCR1, r5
711         mtspr   SPRN_MMCRA, r6
712         mtspr   SPRN_SIAR, r7
713         mtspr   SPRN_SDAR, r8
714 BEGIN_FTR_SECTION
715         ld      r5, VCPU_MMCR + 24(r4)
716         ld      r6, VCPU_SIER(r4)
717         lwz     r7, VCPU_PMC + 24(r4)
718         lwz     r8, VCPU_PMC + 28(r4)
719         ld      r9, VCPU_MMCR + 32(r4)
720         mtspr   SPRN_MMCR2, r5
721         mtspr   SPRN_SIER, r6
722         mtspr   SPRN_SPMC1, r7
723         mtspr   SPRN_SPMC2, r8
724         mtspr   SPRN_MMCRS, r9
725 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S)
726         mtspr   SPRN_MMCR0, r3
727         isync
728
729         /* Load up FP, VMX and VSX registers */
730         bl      kvmppc_load_fp
731
732         ld      r14, VCPU_GPR(R14)(r4)
733         ld      r15, VCPU_GPR(R15)(r4)
734         ld      r16, VCPU_GPR(R16)(r4)
735         ld      r17, VCPU_GPR(R17)(r4)
736         ld      r18, VCPU_GPR(R18)(r4)
737         ld      r19, VCPU_GPR(R19)(r4)
738         ld      r20, VCPU_GPR(R20)(r4)
739         ld      r21, VCPU_GPR(R21)(r4)
740         ld      r22, VCPU_GPR(R22)(r4)
741         ld      r23, VCPU_GPR(R23)(r4)
742         ld      r24, VCPU_GPR(R24)(r4)
743         ld      r25, VCPU_GPR(R25)(r4)
744         ld      r26, VCPU_GPR(R26)(r4)
745         ld      r27, VCPU_GPR(R27)(r4)
746         ld      r28, VCPU_GPR(R28)(r4)
747         ld      r29, VCPU_GPR(R29)(r4)
748         ld      r30, VCPU_GPR(R30)(r4)
749         ld      r31, VCPU_GPR(R31)(r4)
750
751         /* Switch DSCR to guest value */
752         ld      r5, VCPU_DSCR(r4)
753         mtspr   SPRN_DSCR, r5
754
755 BEGIN_FTR_SECTION
756         /* Skip next section on POWER7 */
757         b       8f
758 END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_207S)
759         /* Turn on TM so we can access TFHAR/TFIAR/TEXASR */
760         mfmsr   r8
761         li      r0, 1
762         rldimi  r8, r0, MSR_TM_LG, 63-MSR_TM_LG
763         mtmsrd  r8
764
765         /* Load up POWER8-specific registers */
766         ld      r5, VCPU_IAMR(r4)
767         lwz     r6, VCPU_PSPB(r4)
768         ld      r7, VCPU_FSCR(r4)
769         mtspr   SPRN_IAMR, r5
770         mtspr   SPRN_PSPB, r6
771         mtspr   SPRN_FSCR, r7
772         ld      r5, VCPU_DAWR(r4)
773         ld      r6, VCPU_DAWRX(r4)
774         ld      r7, VCPU_CIABR(r4)
775         ld      r8, VCPU_TAR(r4)
776         mtspr   SPRN_DAWR, r5
777         mtspr   SPRN_DAWRX, r6
778         mtspr   SPRN_CIABR, r7
779         mtspr   SPRN_TAR, r8
780         ld      r5, VCPU_IC(r4)
781         ld      r6, VCPU_VTB(r4)
782         mtspr   SPRN_IC, r5
783         mtspr   SPRN_VTB, r6
784         ld      r8, VCPU_EBBHR(r4)
785         mtspr   SPRN_EBBHR, r8
786         ld      r5, VCPU_EBBRR(r4)
787         ld      r6, VCPU_BESCR(r4)
788         ld      r7, VCPU_CSIGR(r4)
789         ld      r8, VCPU_TACR(r4)
790         mtspr   SPRN_EBBRR, r5
791         mtspr   SPRN_BESCR, r6
792         mtspr   SPRN_CSIGR, r7
793         mtspr   SPRN_TACR, r8
794         ld      r5, VCPU_TCSCR(r4)
795         ld      r6, VCPU_ACOP(r4)
796         lwz     r7, VCPU_GUEST_PID(r4)
797         ld      r8, VCPU_WORT(r4)
798         mtspr   SPRN_TCSCR, r5
799         mtspr   SPRN_ACOP, r6
800         mtspr   SPRN_PID, r7
801         mtspr   SPRN_WORT, r8
802 8:
803
804         /*
805          * Set the decrementer to the guest decrementer.
806          */
807         ld      r8,VCPU_DEC_EXPIRES(r4)
808         /* r8 is a host timebase value here, convert to guest TB */
809         ld      r5,HSTATE_KVM_VCORE(r13)
810         ld      r6,VCORE_TB_OFFSET(r5)
811         add     r8,r8,r6
812         mftb    r7
813         subf    r3,r7,r8
814         mtspr   SPRN_DEC,r3
815         stw     r3,VCPU_DEC(r4)
816
817         ld      r5, VCPU_SPRG0(r4)
818         ld      r6, VCPU_SPRG1(r4)
819         ld      r7, VCPU_SPRG2(r4)
820         ld      r8, VCPU_SPRG3(r4)
821         mtspr   SPRN_SPRG0, r5
822         mtspr   SPRN_SPRG1, r6
823         mtspr   SPRN_SPRG2, r7
824         mtspr   SPRN_SPRG3, r8
825
826         /* Load up DAR and DSISR */
827         ld      r5, VCPU_DAR(r4)
828         lwz     r6, VCPU_DSISR(r4)
829         mtspr   SPRN_DAR, r5
830         mtspr   SPRN_DSISR, r6
831
832         /* Restore AMR and UAMOR, set AMOR to all 1s */
833         ld      r5,VCPU_AMR(r4)
834         ld      r6,VCPU_UAMOR(r4)
835         li      r7,-1
836         mtspr   SPRN_AMR,r5
837         mtspr   SPRN_UAMOR,r6
838         mtspr   SPRN_AMOR,r7
839
840         /* Restore state of CTRL run bit; assume 1 on entry */
841         lwz     r5,VCPU_CTRL(r4)
842         andi.   r5,r5,1
843         bne     4f
844         mfspr   r6,SPRN_CTRLF
845         clrrdi  r6,r6,1
846         mtspr   SPRN_CTRLT,r6
847 4:
848         /* Secondary threads wait for primary to have done partition switch */
849         ld      r5, HSTATE_KVM_VCORE(r13)
850         lbz     r6, HSTATE_PTID(r13)
851         cmpwi   r6, 0
852         beq     21f
853         lbz     r0, VCORE_IN_GUEST(r5)
854         cmpwi   r0, 0
855         bne     21f
856         HMT_LOW
857 20:     lbz     r0, VCORE_IN_GUEST(r5)
858         cmpwi   r0, 0
859         beq     20b
860         HMT_MEDIUM
861 21:
862         /* Set LPCR. */
863         ld      r8,VCORE_LPCR(r5)
864         mtspr   SPRN_LPCR,r8
865         isync
866
867         /* Check if HDEC expires soon */
868         mfspr   r3, SPRN_HDEC
869         cmpwi   r3, 512         /* 1 microsecond */
870         blt     hdec_soon
871
872         ld      r6, VCPU_CTR(r4)
873         lwz     r7, VCPU_XER(r4)
874
875         mtctr   r6
876         mtxer   r7
877
878 kvmppc_cede_reentry:            /* r4 = vcpu, r13 = paca */
879         ld      r10, VCPU_PC(r4)
880         ld      r11, VCPU_MSR(r4)
881         ld      r6, VCPU_SRR0(r4)
882         ld      r7, VCPU_SRR1(r4)
883         mtspr   SPRN_SRR0, r6
884         mtspr   SPRN_SRR1, r7
885
886 deliver_guest_interrupt:
887         /* r11 = vcpu->arch.msr & ~MSR_HV */
888         rldicl  r11, r11, 63 - MSR_HV_LG, 1
889         rotldi  r11, r11, 1 + MSR_HV_LG
890         ori     r11, r11, MSR_ME
891
892         /* Check if we can deliver an external or decrementer interrupt now */
893         ld      r0, VCPU_PENDING_EXC(r4)
894         rldicl  r0, r0, 64 - BOOK3S_IRQPRIO_EXTERNAL_LEVEL, 63
895         cmpdi   cr1, r0, 0
896         andi.   r8, r11, MSR_EE
897         mfspr   r8, SPRN_LPCR
898         /* Insert EXTERNAL_LEVEL bit into LPCR at the MER bit position */
899         rldimi  r8, r0, LPCR_MER_SH, 63 - LPCR_MER_SH
900         mtspr   SPRN_LPCR, r8
901         isync
902         beq     5f
903         li      r0, BOOK3S_INTERRUPT_EXTERNAL
904         bne     cr1, 12f
905         mfspr   r0, SPRN_DEC
906         cmpwi   r0, 0
907         li      r0, BOOK3S_INTERRUPT_DECREMENTER
908         bge     5f
909
910 12:     mtspr   SPRN_SRR0, r10
911         mr      r10,r0
912         mtspr   SPRN_SRR1, r11
913         mr      r9, r4
914         bl      kvmppc_msr_interrupt
915 5:
916
917 /*
918  * Required state:
919  * R4 = vcpu
920  * R10: value for HSRR0
921  * R11: value for HSRR1
922  * R13 = PACA
923  */
924 fast_guest_return:
925         li      r0,0
926         stb     r0,VCPU_CEDED(r4)       /* cancel cede */
927         mtspr   SPRN_HSRR0,r10
928         mtspr   SPRN_HSRR1,r11
929
930         /* Activate guest mode, so faults get handled by KVM */
931         li      r9, KVM_GUEST_MODE_GUEST_HV
932         stb     r9, HSTATE_IN_GUEST(r13)
933
934 #ifdef CONFIG_KVM_BOOK3S_HV_EXIT_TIMING
935         /* Accumulate timing */
936         addi    r3, r4, VCPU_TB_GUEST
937         bl      kvmhv_accumulate_time
938 #endif
939
940         /* Enter guest */
941
942 BEGIN_FTR_SECTION
943         ld      r5, VCPU_CFAR(r4)
944         mtspr   SPRN_CFAR, r5
945 END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
946 BEGIN_FTR_SECTION
947         ld      r0, VCPU_PPR(r4)
948 END_FTR_SECTION_IFSET(CPU_FTR_HAS_PPR)
949
950         ld      r5, VCPU_LR(r4)
951         lwz     r6, VCPU_CR(r4)
952         mtlr    r5
953         mtcr    r6
954
955         ld      r1, VCPU_GPR(R1)(r4)
956         ld      r2, VCPU_GPR(R2)(r4)
957         ld      r3, VCPU_GPR(R3)(r4)
958         ld      r5, VCPU_GPR(R5)(r4)
959         ld      r6, VCPU_GPR(R6)(r4)
960         ld      r7, VCPU_GPR(R7)(r4)
961         ld      r8, VCPU_GPR(R8)(r4)
962         ld      r9, VCPU_GPR(R9)(r4)
963         ld      r10, VCPU_GPR(R10)(r4)
964         ld      r11, VCPU_GPR(R11)(r4)
965         ld      r12, VCPU_GPR(R12)(r4)
966         ld      r13, VCPU_GPR(R13)(r4)
967
968 BEGIN_FTR_SECTION
969         mtspr   SPRN_PPR, r0
970 END_FTR_SECTION_IFSET(CPU_FTR_HAS_PPR)
971         ld      r0, VCPU_GPR(R0)(r4)
972         ld      r4, VCPU_GPR(R4)(r4)
973
974         hrfid
975         b       .
976
977 secondary_too_late:
978         li      r12, 0
979         cmpdi   r4, 0
980         beq     11f
981         stw     r12, VCPU_TRAP(r4)
982 #ifdef CONFIG_KVM_BOOK3S_HV_EXIT_TIMING
983         addi    r3, r4, VCPU_TB_RMEXIT
984         bl      kvmhv_accumulate_time
985 #endif
986 11:     b       kvmhv_switch_to_host
987
988 hdec_soon:
989         li      r12, BOOK3S_INTERRUPT_HV_DECREMENTER
990         stw     r12, VCPU_TRAP(r4)
991         mr      r9, r4
992 #ifdef CONFIG_KVM_BOOK3S_HV_EXIT_TIMING
993         addi    r3, r4, VCPU_TB_RMEXIT
994         bl      kvmhv_accumulate_time
995 #endif
996         b       guest_exit_cont
997
998 /******************************************************************************
999  *                                                                            *
1000  *                               Exit code                                    *
1001  *                                                                            *
1002  *****************************************************************************/
1003
1004 /*
1005  * We come here from the first-level interrupt handlers.
1006  */
1007         .globl  kvmppc_interrupt_hv
1008 kvmppc_interrupt_hv:
1009         /*
1010          * Register contents:
1011          * R12          = interrupt vector
1012          * R13          = PACA
1013          * guest CR, R12 saved in shadow VCPU SCRATCH1/0
1014          * guest R13 saved in SPRN_SCRATCH0
1015          */
1016         std     r9, HSTATE_SCRATCH2(r13)
1017
1018         lbz     r9, HSTATE_IN_GUEST(r13)
1019         cmpwi   r9, KVM_GUEST_MODE_HOST_HV
1020         beq     kvmppc_bad_host_intr
1021 #ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
1022         cmpwi   r9, KVM_GUEST_MODE_GUEST
1023         ld      r9, HSTATE_SCRATCH2(r13)
1024         beq     kvmppc_interrupt_pr
1025 #endif
1026         /* We're now back in the host but in guest MMU context */
1027         li      r9, KVM_GUEST_MODE_HOST_HV
1028         stb     r9, HSTATE_IN_GUEST(r13)
1029
1030         ld      r9, HSTATE_KVM_VCPU(r13)
1031
1032         /* Save registers */
1033
1034         std     r0, VCPU_GPR(R0)(r9)
1035         std     r1, VCPU_GPR(R1)(r9)
1036         std     r2, VCPU_GPR(R2)(r9)
1037         std     r3, VCPU_GPR(R3)(r9)
1038         std     r4, VCPU_GPR(R4)(r9)
1039         std     r5, VCPU_GPR(R5)(r9)
1040         std     r6, VCPU_GPR(R6)(r9)
1041         std     r7, VCPU_GPR(R7)(r9)
1042         std     r8, VCPU_GPR(R8)(r9)
1043         ld      r0, HSTATE_SCRATCH2(r13)
1044         std     r0, VCPU_GPR(R9)(r9)
1045         std     r10, VCPU_GPR(R10)(r9)
1046         std     r11, VCPU_GPR(R11)(r9)
1047         ld      r3, HSTATE_SCRATCH0(r13)
1048         lwz     r4, HSTATE_SCRATCH1(r13)
1049         std     r3, VCPU_GPR(R12)(r9)
1050         stw     r4, VCPU_CR(r9)
1051 BEGIN_FTR_SECTION
1052         ld      r3, HSTATE_CFAR(r13)
1053         std     r3, VCPU_CFAR(r9)
1054 END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
1055 BEGIN_FTR_SECTION
1056         ld      r4, HSTATE_PPR(r13)
1057         std     r4, VCPU_PPR(r9)
1058 END_FTR_SECTION_IFSET(CPU_FTR_HAS_PPR)
1059
1060         /* Restore R1/R2 so we can handle faults */
1061         ld      r1, HSTATE_HOST_R1(r13)
1062         ld      r2, PACATOC(r13)
1063
1064         mfspr   r10, SPRN_SRR0
1065         mfspr   r11, SPRN_SRR1
1066         std     r10, VCPU_SRR0(r9)
1067         std     r11, VCPU_SRR1(r9)
1068         andi.   r0, r12, 2              /* need to read HSRR0/1? */
1069         beq     1f
1070         mfspr   r10, SPRN_HSRR0
1071         mfspr   r11, SPRN_HSRR1
1072         clrrdi  r12, r12, 2
1073 1:      std     r10, VCPU_PC(r9)
1074         std     r11, VCPU_MSR(r9)
1075
1076         GET_SCRATCH0(r3)
1077         mflr    r4
1078         std     r3, VCPU_GPR(R13)(r9)
1079         std     r4, VCPU_LR(r9)
1080
1081         stw     r12,VCPU_TRAP(r9)
1082
1083 #ifdef CONFIG_KVM_BOOK3S_HV_EXIT_TIMING
1084         addi    r3, r9, VCPU_TB_RMINTR
1085         mr      r4, r9
1086         bl      kvmhv_accumulate_time
1087         ld      r5, VCPU_GPR(R5)(r9)
1088         ld      r6, VCPU_GPR(R6)(r9)
1089         ld      r7, VCPU_GPR(R7)(r9)
1090         ld      r8, VCPU_GPR(R8)(r9)
1091 #endif
1092
1093         /* Save HEIR (HV emulation assist reg) in emul_inst
1094            if this is an HEI (HV emulation interrupt, e40) */
1095         li      r3,KVM_INST_FETCH_FAILED
1096         stw     r3,VCPU_LAST_INST(r9)
1097         cmpwi   r12,BOOK3S_INTERRUPT_H_EMUL_ASSIST
1098         bne     11f
1099         mfspr   r3,SPRN_HEIR
1100 11:     stw     r3,VCPU_HEIR(r9)
1101
1102         /* these are volatile across C function calls */
1103         mfctr   r3
1104         mfxer   r4
1105         std     r3, VCPU_CTR(r9)
1106         stw     r4, VCPU_XER(r9)
1107
1108         /* If this is a page table miss then see if it's theirs or ours */
1109         cmpwi   r12, BOOK3S_INTERRUPT_H_DATA_STORAGE
1110         beq     kvmppc_hdsi
1111         cmpwi   r12, BOOK3S_INTERRUPT_H_INST_STORAGE
1112         beq     kvmppc_hisi
1113
1114         /* See if this is a leftover HDEC interrupt */
1115         cmpwi   r12,BOOK3S_INTERRUPT_HV_DECREMENTER
1116         bne     2f
1117         mfspr   r3,SPRN_HDEC
1118         cmpwi   r3,0
1119         mr      r4,r9
1120         bge     fast_guest_return
1121 2:
1122         /* See if this is an hcall we can handle in real mode */
1123         cmpwi   r12,BOOK3S_INTERRUPT_SYSCALL
1124         beq     hcall_try_real_mode
1125
1126         /* Hypervisor doorbell - exit only if host IPI flag set */
1127         cmpwi   r12, BOOK3S_INTERRUPT_H_DOORBELL
1128         bne     3f
1129         lbz     r0, HSTATE_HOST_IPI(r13)
1130         cmpwi   r0, 0
1131         beq     4f
1132         b       guest_exit_cont
1133 3:
1134         /* External interrupt ? */
1135         cmpwi   r12, BOOK3S_INTERRUPT_EXTERNAL
1136         bne+    guest_exit_cont
1137
1138         /* External interrupt, first check for host_ipi. If this is
1139          * set, we know the host wants us out so let's do it now
1140          */
1141         bl      kvmppc_read_intr
1142         cmpdi   r3, 0
1143         bgt     guest_exit_cont
1144
1145         /* Check if any CPU is heading out to the host, if so head out too */
1146 4:      ld      r5, HSTATE_KVM_VCORE(r13)
1147         lwz     r0, VCORE_ENTRY_EXIT(r5)
1148         cmpwi   r0, 0x100
1149         mr      r4, r9
1150         blt     deliver_guest_interrupt
1151
1152 guest_exit_cont:                /* r9 = vcpu, r12 = trap, r13 = paca */
1153         /* Save more register state  */
1154         mfdar   r6
1155         mfdsisr r7
1156         std     r6, VCPU_DAR(r9)
1157         stw     r7, VCPU_DSISR(r9)
1158         /* don't overwrite fault_dar/fault_dsisr if HDSI */
1159         cmpwi   r12,BOOK3S_INTERRUPT_H_DATA_STORAGE
1160         beq     mc_cont
1161         std     r6, VCPU_FAULT_DAR(r9)
1162         stw     r7, VCPU_FAULT_DSISR(r9)
1163
1164         /* See if it is a machine check */
1165         cmpwi   r12, BOOK3S_INTERRUPT_MACHINE_CHECK
1166         beq     machine_check_realmode
1167 mc_cont:
1168 #ifdef CONFIG_KVM_BOOK3S_HV_EXIT_TIMING
1169         addi    r3, r9, VCPU_TB_RMEXIT
1170         mr      r4, r9
1171         bl      kvmhv_accumulate_time
1172 #endif
1173
1174         /* Increment exit count, poke other threads to exit */
1175         bl      kvmhv_commence_exit
1176         nop
1177         ld      r9, HSTATE_KVM_VCPU(r13)
1178         lwz     r12, VCPU_TRAP(r9)
1179
1180         /* Save guest CTRL register, set runlatch to 1 */
1181         mfspr   r6,SPRN_CTRLF
1182         stw     r6,VCPU_CTRL(r9)
1183         andi.   r0,r6,1
1184         bne     4f
1185         ori     r6,r6,1
1186         mtspr   SPRN_CTRLT,r6
1187 4:
1188         /* Read the guest SLB and save it away */
1189         lwz     r0,VCPU_SLB_NR(r9)      /* number of entries in SLB */
1190         mtctr   r0
1191         li      r6,0
1192         addi    r7,r9,VCPU_SLB
1193         li      r5,0
1194 1:      slbmfee r8,r6
1195         andis.  r0,r8,SLB_ESID_V@h
1196         beq     2f
1197         add     r8,r8,r6                /* put index in */
1198         slbmfev r3,r6
1199         std     r8,VCPU_SLB_E(r7)
1200         std     r3,VCPU_SLB_V(r7)
1201         addi    r7,r7,VCPU_SLB_SIZE
1202         addi    r5,r5,1
1203 2:      addi    r6,r6,1
1204         bdnz    1b
1205         stw     r5,VCPU_SLB_MAX(r9)
1206
1207         /*
1208          * Save the guest PURR/SPURR
1209          */
1210         mfspr   r5,SPRN_PURR
1211         mfspr   r6,SPRN_SPURR
1212         ld      r7,VCPU_PURR(r9)
1213         ld      r8,VCPU_SPURR(r9)
1214         std     r5,VCPU_PURR(r9)
1215         std     r6,VCPU_SPURR(r9)
1216         subf    r5,r7,r5
1217         subf    r6,r8,r6
1218
1219         /*
1220          * Restore host PURR/SPURR and add guest times
1221          * so that the time in the guest gets accounted.
1222          */
1223         ld      r3,HSTATE_PURR(r13)
1224         ld      r4,HSTATE_SPURR(r13)
1225         add     r3,r3,r5
1226         add     r4,r4,r6
1227         mtspr   SPRN_PURR,r3
1228         mtspr   SPRN_SPURR,r4
1229
1230         /* Save DEC */
1231         mfspr   r5,SPRN_DEC
1232         mftb    r6
1233         extsw   r5,r5
1234         add     r5,r5,r6
1235         /* r5 is a guest timebase value here, convert to host TB */
1236         ld      r3,HSTATE_KVM_VCORE(r13)
1237         ld      r4,VCORE_TB_OFFSET(r3)
1238         subf    r5,r4,r5
1239         std     r5,VCPU_DEC_EXPIRES(r9)
1240
1241 BEGIN_FTR_SECTION
1242         b       8f
1243 END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_207S)
1244         /* Save POWER8-specific registers */
1245         mfspr   r5, SPRN_IAMR
1246         mfspr   r6, SPRN_PSPB
1247         mfspr   r7, SPRN_FSCR
1248         std     r5, VCPU_IAMR(r9)
1249         stw     r6, VCPU_PSPB(r9)
1250         std     r7, VCPU_FSCR(r9)
1251         mfspr   r5, SPRN_IC
1252         mfspr   r6, SPRN_VTB
1253         mfspr   r7, SPRN_TAR
1254         std     r5, VCPU_IC(r9)
1255         std     r6, VCPU_VTB(r9)
1256         std     r7, VCPU_TAR(r9)
1257         mfspr   r8, SPRN_EBBHR
1258         std     r8, VCPU_EBBHR(r9)
1259         mfspr   r5, SPRN_EBBRR
1260         mfspr   r6, SPRN_BESCR
1261         mfspr   r7, SPRN_CSIGR
1262         mfspr   r8, SPRN_TACR
1263         std     r5, VCPU_EBBRR(r9)
1264         std     r6, VCPU_BESCR(r9)
1265         std     r7, VCPU_CSIGR(r9)
1266         std     r8, VCPU_TACR(r9)
1267         mfspr   r5, SPRN_TCSCR
1268         mfspr   r6, SPRN_ACOP
1269         mfspr   r7, SPRN_PID
1270         mfspr   r8, SPRN_WORT
1271         std     r5, VCPU_TCSCR(r9)
1272         std     r6, VCPU_ACOP(r9)
1273         stw     r7, VCPU_GUEST_PID(r9)
1274         std     r8, VCPU_WORT(r9)
1275 8:
1276
1277         /* Save and reset AMR and UAMOR before turning on the MMU */
1278         mfspr   r5,SPRN_AMR
1279         mfspr   r6,SPRN_UAMOR
1280         std     r5,VCPU_AMR(r9)
1281         std     r6,VCPU_UAMOR(r9)
1282         li      r6,0
1283         mtspr   SPRN_AMR,r6
1284
1285         /* Switch DSCR back to host value */
1286         mfspr   r8, SPRN_DSCR
1287         ld      r7, HSTATE_DSCR(r13)
1288         std     r8, VCPU_DSCR(r9)
1289         mtspr   SPRN_DSCR, r7
1290
1291         /* Save non-volatile GPRs */
1292         std     r14, VCPU_GPR(R14)(r9)
1293         std     r15, VCPU_GPR(R15)(r9)
1294         std     r16, VCPU_GPR(R16)(r9)
1295         std     r17, VCPU_GPR(R17)(r9)
1296         std     r18, VCPU_GPR(R18)(r9)
1297         std     r19, VCPU_GPR(R19)(r9)
1298         std     r20, VCPU_GPR(R20)(r9)
1299         std     r21, VCPU_GPR(R21)(r9)
1300         std     r22, VCPU_GPR(R22)(r9)
1301         std     r23, VCPU_GPR(R23)(r9)
1302         std     r24, VCPU_GPR(R24)(r9)
1303         std     r25, VCPU_GPR(R25)(r9)
1304         std     r26, VCPU_GPR(R26)(r9)
1305         std     r27, VCPU_GPR(R27)(r9)
1306         std     r28, VCPU_GPR(R28)(r9)
1307         std     r29, VCPU_GPR(R29)(r9)
1308         std     r30, VCPU_GPR(R30)(r9)
1309         std     r31, VCPU_GPR(R31)(r9)
1310
1311         /* Save SPRGs */
1312         mfspr   r3, SPRN_SPRG0
1313         mfspr   r4, SPRN_SPRG1
1314         mfspr   r5, SPRN_SPRG2
1315         mfspr   r6, SPRN_SPRG3
1316         std     r3, VCPU_SPRG0(r9)
1317         std     r4, VCPU_SPRG1(r9)
1318         std     r5, VCPU_SPRG2(r9)
1319         std     r6, VCPU_SPRG3(r9)
1320
1321         /* save FP state */
1322         mr      r3, r9
1323         bl      kvmppc_save_fp
1324
1325 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1326 BEGIN_FTR_SECTION
1327         b       2f
1328 END_FTR_SECTION_IFCLR(CPU_FTR_TM)
1329         /* Turn on TM. */
1330         mfmsr   r8
1331         li      r0, 1
1332         rldimi  r8, r0, MSR_TM_LG, 63-MSR_TM_LG
1333         mtmsrd  r8
1334
1335         ld      r5, VCPU_MSR(r9)
1336         rldicl. r5, r5, 64 - MSR_TS_S_LG, 62
1337         beq     1f      /* TM not active in guest. */
1338
1339         li      r3, TM_CAUSE_KVM_RESCHED
1340
1341         /* Clear the MSR RI since r1, r13 are all going to be foobar. */
1342         li      r5, 0
1343         mtmsrd  r5, 1
1344
1345         /* All GPRs are volatile at this point. */
1346         TRECLAIM(R3)
1347
1348         /* Temporarily store r13 and r9 so we have some regs to play with */
1349         SET_SCRATCH0(r13)
1350         GET_PACA(r13)
1351         std     r9, PACATMSCRATCH(r13)
1352         ld      r9, HSTATE_KVM_VCPU(r13)
1353
1354         /* Get a few more GPRs free. */
1355         std     r29, VCPU_GPRS_TM(29)(r9)
1356         std     r30, VCPU_GPRS_TM(30)(r9)
1357         std     r31, VCPU_GPRS_TM(31)(r9)
1358
1359         /* Save away PPR and DSCR soon so don't run with user values. */
1360         mfspr   r31, SPRN_PPR
1361         HMT_MEDIUM
1362         mfspr   r30, SPRN_DSCR
1363         ld      r29, HSTATE_DSCR(r13)
1364         mtspr   SPRN_DSCR, r29
1365
1366         /* Save all but r9, r13 & r29-r31 */
1367         reg = 0
1368         .rept   29
1369         .if (reg != 9) && (reg != 13)
1370         std     reg, VCPU_GPRS_TM(reg)(r9)
1371         .endif
1372         reg = reg + 1
1373         .endr
1374         /* ... now save r13 */
1375         GET_SCRATCH0(r4)
1376         std     r4, VCPU_GPRS_TM(13)(r9)
1377         /* ... and save r9 */
1378         ld      r4, PACATMSCRATCH(r13)
1379         std     r4, VCPU_GPRS_TM(9)(r9)
1380
1381         /* Reload stack pointer and TOC. */
1382         ld      r1, HSTATE_HOST_R1(r13)
1383         ld      r2, PACATOC(r13)
1384
1385         /* Set MSR RI now we have r1 and r13 back. */
1386         li      r5, MSR_RI
1387         mtmsrd  r5, 1
1388
1389         /* Save away checkpinted SPRs. */
1390         std     r31, VCPU_PPR_TM(r9)
1391         std     r30, VCPU_DSCR_TM(r9)
1392         mflr    r5
1393         mfcr    r6
1394         mfctr   r7
1395         mfspr   r8, SPRN_AMR
1396         mfspr   r10, SPRN_TAR
1397         std     r5, VCPU_LR_TM(r9)
1398         stw     r6, VCPU_CR_TM(r9)
1399         std     r7, VCPU_CTR_TM(r9)
1400         std     r8, VCPU_AMR_TM(r9)
1401         std     r10, VCPU_TAR_TM(r9)
1402
1403         /* Restore r12 as trap number. */
1404         lwz     r12, VCPU_TRAP(r9)
1405
1406         /* Save FP/VSX. */
1407         addi    r3, r9, VCPU_FPRS_TM
1408         bl      store_fp_state
1409         addi    r3, r9, VCPU_VRS_TM
1410         bl      store_vr_state
1411         mfspr   r6, SPRN_VRSAVE
1412         stw     r6, VCPU_VRSAVE_TM(r9)
1413 1:
1414         /*
1415          * We need to save these SPRs after the treclaim so that the software
1416          * error code is recorded correctly in the TEXASR.  Also the user may
1417          * change these outside of a transaction, so they must always be
1418          * context switched.
1419          */
1420         mfspr   r5, SPRN_TFHAR
1421         mfspr   r6, SPRN_TFIAR
1422         mfspr   r7, SPRN_TEXASR
1423         std     r5, VCPU_TFHAR(r9)
1424         std     r6, VCPU_TFIAR(r9)
1425         std     r7, VCPU_TEXASR(r9)
1426 2:
1427 #endif
1428
1429         /* Increment yield count if they have a VPA */
1430         ld      r8, VCPU_VPA(r9)        /* do they have a VPA? */
1431         cmpdi   r8, 0
1432         beq     25f
1433         li      r4, LPPACA_YIELDCOUNT
1434         LWZX_BE r3, r8, r4
1435         addi    r3, r3, 1
1436         STWX_BE r3, r8, r4
1437         li      r3, 1
1438         stb     r3, VCPU_VPA_DIRTY(r9)
1439 25:
1440         /* Save PMU registers if requested */
1441         /* r8 and cr0.eq are live here */
1442 BEGIN_FTR_SECTION
1443         /*
1444          * POWER8 seems to have a hardware bug where setting
1445          * MMCR0[PMAE] along with MMCR0[PMC1CE] and/or MMCR0[PMCjCE]
1446          * when some counters are already negative doesn't seem
1447          * to cause a performance monitor alert (and hence interrupt).
1448          * The effect of this is that when saving the PMU state,
1449          * if there is no PMU alert pending when we read MMCR0
1450          * before freezing the counters, but one becomes pending
1451          * before we read the counters, we lose it.
1452          * To work around this, we need a way to freeze the counters
1453          * before reading MMCR0.  Normally, freezing the counters
1454          * is done by writing MMCR0 (to set MMCR0[FC]) which
1455          * unavoidably writes MMCR0[PMA0] as well.  On POWER8,
1456          * we can also freeze the counters using MMCR2, by writing
1457          * 1s to all the counter freeze condition bits (there are
1458          * 9 bits each for 6 counters).
1459          */
1460         li      r3, -1                  /* set all freeze bits */
1461         clrrdi  r3, r3, 10
1462         mfspr   r10, SPRN_MMCR2
1463         mtspr   SPRN_MMCR2, r3
1464         isync
1465 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S)
1466         li      r3, 1
1467         sldi    r3, r3, 31              /* MMCR0_FC (freeze counters) bit */
1468         mfspr   r4, SPRN_MMCR0          /* save MMCR0 */
1469         mtspr   SPRN_MMCR0, r3          /* freeze all counters, disable ints */
1470         mfspr   r6, SPRN_MMCRA
1471         /* Clear MMCRA in order to disable SDAR updates */
1472         li      r7, 0
1473         mtspr   SPRN_MMCRA, r7
1474         isync
1475         beq     21f                     /* if no VPA, save PMU stuff anyway */
1476         lbz     r7, LPPACA_PMCINUSE(r8)
1477         cmpwi   r7, 0                   /* did they ask for PMU stuff to be saved? */
1478         bne     21f
1479         std     r3, VCPU_MMCR(r9)       /* if not, set saved MMCR0 to FC */
1480         b       22f
1481 21:     mfspr   r5, SPRN_MMCR1
1482         mfspr   r7, SPRN_SIAR
1483         mfspr   r8, SPRN_SDAR
1484         std     r4, VCPU_MMCR(r9)
1485         std     r5, VCPU_MMCR + 8(r9)
1486         std     r6, VCPU_MMCR + 16(r9)
1487 BEGIN_FTR_SECTION
1488         std     r10, VCPU_MMCR + 24(r9)
1489 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S)
1490         std     r7, VCPU_SIAR(r9)
1491         std     r8, VCPU_SDAR(r9)
1492         mfspr   r3, SPRN_PMC1
1493         mfspr   r4, SPRN_PMC2
1494         mfspr   r5, SPRN_PMC3
1495         mfspr   r6, SPRN_PMC4
1496         mfspr   r7, SPRN_PMC5
1497         mfspr   r8, SPRN_PMC6
1498         stw     r3, VCPU_PMC(r9)
1499         stw     r4, VCPU_PMC + 4(r9)
1500         stw     r5, VCPU_PMC + 8(r9)
1501         stw     r6, VCPU_PMC + 12(r9)
1502         stw     r7, VCPU_PMC + 16(r9)
1503         stw     r8, VCPU_PMC + 20(r9)
1504 BEGIN_FTR_SECTION
1505         mfspr   r5, SPRN_SIER
1506         mfspr   r6, SPRN_SPMC1
1507         mfspr   r7, SPRN_SPMC2
1508         mfspr   r8, SPRN_MMCRS
1509         std     r5, VCPU_SIER(r9)
1510         stw     r6, VCPU_PMC + 24(r9)
1511         stw     r7, VCPU_PMC + 28(r9)
1512         std     r8, VCPU_MMCR + 32(r9)
1513         lis     r4, 0x8000
1514         mtspr   SPRN_MMCRS, r4
1515 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S)
1516 22:
1517         /* Clear out SLB */
1518         li      r5,0
1519         slbmte  r5,r5
1520         slbia
1521         ptesync
1522
1523         /*
1524          * POWER7/POWER8 guest -> host partition switch code.
1525          * We don't have to lock against tlbies but we do
1526          * have to coordinate the hardware threads.
1527          */
1528 kvmhv_switch_to_host:
1529         /* Secondary threads wait for primary to do partition switch */
1530         ld      r5,HSTATE_KVM_VCORE(r13)
1531         ld      r4,VCORE_KVM(r5)        /* pointer to struct kvm */
1532         lbz     r3,HSTATE_PTID(r13)
1533         cmpwi   r3,0
1534         beq     15f
1535         HMT_LOW
1536 13:     lbz     r3,VCORE_IN_GUEST(r5)
1537         cmpwi   r3,0
1538         bne     13b
1539         HMT_MEDIUM
1540         b       16f
1541
1542         /* Primary thread waits for all the secondaries to exit guest */
1543 15:     lwz     r3,VCORE_ENTRY_EXIT(r5)
1544         srwi    r0,r3,8
1545         clrldi  r3,r3,56
1546         cmpw    r3,r0
1547         bne     15b
1548         isync
1549
1550         /* Primary thread switches back to host partition */
1551         ld      r6,KVM_HOST_SDR1(r4)
1552         lwz     r7,KVM_HOST_LPID(r4)
1553         li      r8,LPID_RSVD            /* switch to reserved LPID */
1554         mtspr   SPRN_LPID,r8
1555         ptesync
1556         mtspr   SPRN_SDR1,r6            /* switch to partition page table */
1557         mtspr   SPRN_LPID,r7
1558         isync
1559
1560 BEGIN_FTR_SECTION
1561         /* DPDES is shared between threads */
1562         mfspr   r7, SPRN_DPDES
1563         std     r7, VCORE_DPDES(r5)
1564         /* clear DPDES so we don't get guest doorbells in the host */
1565         li      r8, 0
1566         mtspr   SPRN_DPDES, r8
1567 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S)
1568
1569         /* Subtract timebase offset from timebase */
1570         ld      r8,VCORE_TB_OFFSET(r5)
1571         cmpdi   r8,0
1572         beq     17f
1573         mftb    r6                      /* current guest timebase */
1574         subf    r8,r8,r6
1575         mtspr   SPRN_TBU40,r8           /* update upper 40 bits */
1576         mftb    r7                      /* check if lower 24 bits overflowed */
1577         clrldi  r6,r6,40
1578         clrldi  r7,r7,40
1579         cmpld   r7,r6
1580         bge     17f
1581         addis   r8,r8,0x100             /* if so, increment upper 40 bits */
1582         mtspr   SPRN_TBU40,r8
1583
1584         /* Reset PCR */
1585 17:     ld      r0, VCORE_PCR(r5)
1586         cmpdi   r0, 0
1587         beq     18f
1588         li      r0, 0
1589         mtspr   SPRN_PCR, r0
1590 18:
1591         /* Signal secondary CPUs to continue */
1592         stb     r0,VCORE_IN_GUEST(r5)
1593         lis     r8,0x7fff               /* MAX_INT@h */
1594         mtspr   SPRN_HDEC,r8
1595
1596 16:     ld      r8,KVM_HOST_LPCR(r4)
1597         mtspr   SPRN_LPCR,r8
1598         isync
1599
1600         /* load host SLB entries */
1601         ld      r8,PACA_SLBSHADOWPTR(r13)
1602
1603         .rept   SLB_NUM_BOLTED
1604         li      r3, SLBSHADOW_SAVEAREA
1605         LDX_BE  r5, r8, r3
1606         addi    r3, r3, 8
1607         LDX_BE  r6, r8, r3
1608         andis.  r7,r5,SLB_ESID_V@h
1609         beq     1f
1610         slbmte  r6,r5
1611 1:      addi    r8,r8,16
1612         .endr
1613
1614 #ifdef CONFIG_KVM_BOOK3S_HV_EXIT_TIMING
1615         /* Finish timing, if we have a vcpu */
1616         ld      r4, HSTATE_KVM_VCPU(r13)
1617         cmpdi   r4, 0
1618         li      r3, 0
1619         beq     2f
1620         bl      kvmhv_accumulate_time
1621 2:
1622 #endif
1623         /* Unset guest mode */
1624         li      r0, KVM_GUEST_MODE_NONE
1625         stb     r0, HSTATE_IN_GUEST(r13)
1626
1627         ld      r0, 112+PPC_LR_STKOFF(r1)
1628         addi    r1, r1, 112
1629         mtlr    r0
1630         blr
1631
1632 /*
1633  * Check whether an HDSI is an HPTE not found fault or something else.
1634  * If it is an HPTE not found fault that is due to the guest accessing
1635  * a page that they have mapped but which we have paged out, then
1636  * we continue on with the guest exit path.  In all other cases,
1637  * reflect the HDSI to the guest as a DSI.
1638  */
1639 kvmppc_hdsi:
1640         mfspr   r4, SPRN_HDAR
1641         mfspr   r6, SPRN_HDSISR
1642         /* HPTE not found fault or protection fault? */
1643         andis.  r0, r6, (DSISR_NOHPTE | DSISR_PROTFAULT)@h
1644         beq     1f                      /* if not, send it to the guest */
1645         andi.   r0, r11, MSR_DR         /* data relocation enabled? */
1646         beq     3f
1647         clrrdi  r0, r4, 28
1648         PPC_SLBFEE_DOT(R5, R0)          /* if so, look up SLB */
1649         bne     1f                      /* if no SLB entry found */
1650 4:      std     r4, VCPU_FAULT_DAR(r9)
1651         stw     r6, VCPU_FAULT_DSISR(r9)
1652
1653         /* Search the hash table. */
1654         mr      r3, r9                  /* vcpu pointer */
1655         li      r7, 1                   /* data fault */
1656         bl      kvmppc_hpte_hv_fault
1657         ld      r9, HSTATE_KVM_VCPU(r13)
1658         ld      r10, VCPU_PC(r9)
1659         ld      r11, VCPU_MSR(r9)
1660         li      r12, BOOK3S_INTERRUPT_H_DATA_STORAGE
1661         cmpdi   r3, 0                   /* retry the instruction */
1662         beq     6f
1663         cmpdi   r3, -1                  /* handle in kernel mode */
1664         beq     guest_exit_cont
1665         cmpdi   r3, -2                  /* MMIO emulation; need instr word */
1666         beq     2f
1667
1668         /* Synthesize a DSI for the guest */
1669         ld      r4, VCPU_FAULT_DAR(r9)
1670         mr      r6, r3
1671 1:      mtspr   SPRN_DAR, r4
1672         mtspr   SPRN_DSISR, r6
1673         mtspr   SPRN_SRR0, r10
1674         mtspr   SPRN_SRR1, r11
1675         li      r10, BOOK3S_INTERRUPT_DATA_STORAGE
1676         bl      kvmppc_msr_interrupt
1677 fast_interrupt_c_return:
1678 6:      ld      r7, VCPU_CTR(r9)
1679         lwz     r8, VCPU_XER(r9)
1680         mtctr   r7
1681         mtxer   r8
1682         mr      r4, r9
1683         b       fast_guest_return
1684
1685 3:      ld      r5, VCPU_KVM(r9)        /* not relocated, use VRMA */
1686         ld      r5, KVM_VRMA_SLB_V(r5)
1687         b       4b
1688
1689         /* If this is for emulated MMIO, load the instruction word */
1690 2:      li      r8, KVM_INST_FETCH_FAILED       /* In case lwz faults */
1691
1692         /* Set guest mode to 'jump over instruction' so if lwz faults
1693          * we'll just continue at the next IP. */
1694         li      r0, KVM_GUEST_MODE_SKIP
1695         stb     r0, HSTATE_IN_GUEST(r13)
1696
1697         /* Do the access with MSR:DR enabled */
1698         mfmsr   r3
1699         ori     r4, r3, MSR_DR          /* Enable paging for data */
1700         mtmsrd  r4
1701         lwz     r8, 0(r10)
1702         mtmsrd  r3
1703
1704         /* Store the result */
1705         stw     r8, VCPU_LAST_INST(r9)
1706
1707         /* Unset guest mode. */
1708         li      r0, KVM_GUEST_MODE_HOST_HV
1709         stb     r0, HSTATE_IN_GUEST(r13)
1710         b       guest_exit_cont
1711
1712 /*
1713  * Similarly for an HISI, reflect it to the guest as an ISI unless
1714  * it is an HPTE not found fault for a page that we have paged out.
1715  */
1716 kvmppc_hisi:
1717         andis.  r0, r11, SRR1_ISI_NOPT@h
1718         beq     1f
1719         andi.   r0, r11, MSR_IR         /* instruction relocation enabled? */
1720         beq     3f
1721         clrrdi  r0, r10, 28
1722         PPC_SLBFEE_DOT(R5, R0)          /* if so, look up SLB */
1723         bne     1f                      /* if no SLB entry found */
1724 4:
1725         /* Search the hash table. */
1726         mr      r3, r9                  /* vcpu pointer */
1727         mr      r4, r10
1728         mr      r6, r11
1729         li      r7, 0                   /* instruction fault */
1730         bl      kvmppc_hpte_hv_fault
1731         ld      r9, HSTATE_KVM_VCPU(r13)
1732         ld      r10, VCPU_PC(r9)
1733         ld      r11, VCPU_MSR(r9)
1734         li      r12, BOOK3S_INTERRUPT_H_INST_STORAGE
1735         cmpdi   r3, 0                   /* retry the instruction */
1736         beq     fast_interrupt_c_return
1737         cmpdi   r3, -1                  /* handle in kernel mode */
1738         beq     guest_exit_cont
1739
1740         /* Synthesize an ISI for the guest */
1741         mr      r11, r3
1742 1:      mtspr   SPRN_SRR0, r10
1743         mtspr   SPRN_SRR1, r11
1744         li      r10, BOOK3S_INTERRUPT_INST_STORAGE
1745         bl      kvmppc_msr_interrupt
1746         b       fast_interrupt_c_return
1747
1748 3:      ld      r6, VCPU_KVM(r9)        /* not relocated, use VRMA */
1749         ld      r5, KVM_VRMA_SLB_V(r6)
1750         b       4b
1751
1752 /*
1753  * Try to handle an hcall in real mode.
1754  * Returns to the guest if we handle it, or continues on up to
1755  * the kernel if we can't (i.e. if we don't have a handler for
1756  * it, or if the handler returns H_TOO_HARD).
1757  *
1758  * r5 - r8 contain hcall args,
1759  * r9 = vcpu, r10 = pc, r11 = msr, r12 = trap, r13 = paca
1760  */
1761 hcall_try_real_mode:
1762         ld      r3,VCPU_GPR(R3)(r9)
1763         andi.   r0,r11,MSR_PR
1764         /* sc 1 from userspace - reflect to guest syscall */
1765         bne     sc_1_fast_return
1766         clrrdi  r3,r3,2
1767         cmpldi  r3,hcall_real_table_end - hcall_real_table
1768         bge     guest_exit_cont
1769         /* See if this hcall is enabled for in-kernel handling */
1770         ld      r4, VCPU_KVM(r9)
1771         srdi    r0, r3, 8       /* r0 = (r3 / 4) >> 6 */
1772         sldi    r0, r0, 3       /* index into kvm->arch.enabled_hcalls[] */
1773         add     r4, r4, r0
1774         ld      r0, KVM_ENABLED_HCALLS(r4)
1775         rlwinm  r4, r3, 32-2, 0x3f      /* r4 = (r3 / 4) & 0x3f */
1776         srd     r0, r0, r4
1777         andi.   r0, r0, 1
1778         beq     guest_exit_cont
1779         /* Get pointer to handler, if any, and call it */
1780         LOAD_REG_ADDR(r4, hcall_real_table)
1781         lwax    r3,r3,r4
1782         cmpwi   r3,0
1783         beq     guest_exit_cont
1784         add     r12,r3,r4
1785         mtctr   r12
1786         mr      r3,r9           /* get vcpu pointer */
1787         ld      r4,VCPU_GPR(R4)(r9)
1788         bctrl
1789         cmpdi   r3,H_TOO_HARD
1790         beq     hcall_real_fallback
1791         ld      r4,HSTATE_KVM_VCPU(r13)
1792         std     r3,VCPU_GPR(R3)(r4)
1793         ld      r10,VCPU_PC(r4)
1794         ld      r11,VCPU_MSR(r4)
1795         b       fast_guest_return
1796
1797 sc_1_fast_return:
1798         mtspr   SPRN_SRR0,r10
1799         mtspr   SPRN_SRR1,r11
1800         li      r10, BOOK3S_INTERRUPT_SYSCALL
1801         bl      kvmppc_msr_interrupt
1802         mr      r4,r9
1803         b       fast_guest_return
1804
1805         /* We've attempted a real mode hcall, but it's punted it back
1806          * to userspace.  We need to restore some clobbered volatiles
1807          * before resuming the pass-it-to-qemu path */
1808 hcall_real_fallback:
1809         li      r12,BOOK3S_INTERRUPT_SYSCALL
1810         ld      r9, HSTATE_KVM_VCPU(r13)
1811
1812         b       guest_exit_cont
1813
1814         .globl  hcall_real_table
1815 hcall_real_table:
1816         .long   0               /* 0 - unused */
1817         .long   DOTSYM(kvmppc_h_remove) - hcall_real_table
1818         .long   DOTSYM(kvmppc_h_enter) - hcall_real_table
1819         .long   DOTSYM(kvmppc_h_read) - hcall_real_table
1820         .long   0               /* 0x10 - H_CLEAR_MOD */
1821         .long   0               /* 0x14 - H_CLEAR_REF */
1822         .long   DOTSYM(kvmppc_h_protect) - hcall_real_table
1823         .long   DOTSYM(kvmppc_h_get_tce) - hcall_real_table
1824         .long   DOTSYM(kvmppc_h_put_tce) - hcall_real_table
1825         .long   0               /* 0x24 - H_SET_SPRG0 */
1826         .long   DOTSYM(kvmppc_h_set_dabr) - hcall_real_table
1827         .long   0               /* 0x2c */
1828         .long   0               /* 0x30 */
1829         .long   0               /* 0x34 */
1830         .long   0               /* 0x38 */
1831         .long   0               /* 0x3c */
1832         .long   0               /* 0x40 */
1833         .long   0               /* 0x44 */
1834         .long   0               /* 0x48 */
1835         .long   0               /* 0x4c */
1836         .long   0               /* 0x50 */
1837         .long   0               /* 0x54 */
1838         .long   0               /* 0x58 */
1839         .long   0               /* 0x5c */
1840         .long   0               /* 0x60 */
1841 #ifdef CONFIG_KVM_XICS
1842         .long   DOTSYM(kvmppc_rm_h_eoi) - hcall_real_table
1843         .long   DOTSYM(kvmppc_rm_h_cppr) - hcall_real_table
1844         .long   DOTSYM(kvmppc_rm_h_ipi) - hcall_real_table
1845         .long   0               /* 0x70 - H_IPOLL */
1846         .long   DOTSYM(kvmppc_rm_h_xirr) - hcall_real_table
1847 #else
1848         .long   0               /* 0x64 - H_EOI */
1849         .long   0               /* 0x68 - H_CPPR */
1850         .long   0               /* 0x6c - H_IPI */
1851         .long   0               /* 0x70 - H_IPOLL */
1852         .long   0               /* 0x74 - H_XIRR */
1853 #endif
1854         .long   0               /* 0x78 */
1855         .long   0               /* 0x7c */
1856         .long   0               /* 0x80 */
1857         .long   0               /* 0x84 */
1858         .long   0               /* 0x88 */
1859         .long   0               /* 0x8c */
1860         .long   0               /* 0x90 */
1861         .long   0               /* 0x94 */
1862         .long   0               /* 0x98 */
1863         .long   0               /* 0x9c */
1864         .long   0               /* 0xa0 */
1865         .long   0               /* 0xa4 */
1866         .long   0               /* 0xa8 */
1867         .long   0               /* 0xac */
1868         .long   0               /* 0xb0 */
1869         .long   0               /* 0xb4 */
1870         .long   0               /* 0xb8 */
1871         .long   0               /* 0xbc */
1872         .long   0               /* 0xc0 */
1873         .long   0               /* 0xc4 */
1874         .long   0               /* 0xc8 */
1875         .long   0               /* 0xcc */
1876         .long   0               /* 0xd0 */
1877         .long   0               /* 0xd4 */
1878         .long   0               /* 0xd8 */
1879         .long   0               /* 0xdc */
1880         .long   DOTSYM(kvmppc_h_cede) - hcall_real_table
1881         .long   DOTSYM(kvmppc_rm_h_confer) - hcall_real_table
1882         .long   0               /* 0xe8 */
1883         .long   0               /* 0xec */
1884         .long   0               /* 0xf0 */
1885         .long   0               /* 0xf4 */
1886         .long   0               /* 0xf8 */
1887         .long   0               /* 0xfc */
1888         .long   0               /* 0x100 */
1889         .long   0               /* 0x104 */
1890         .long   0               /* 0x108 */
1891         .long   0               /* 0x10c */
1892         .long   0               /* 0x110 */
1893         .long   0               /* 0x114 */
1894         .long   0               /* 0x118 */
1895         .long   0               /* 0x11c */
1896         .long   0               /* 0x120 */
1897         .long   DOTSYM(kvmppc_h_bulk_remove) - hcall_real_table
1898         .long   0               /* 0x128 */
1899         .long   0               /* 0x12c */
1900         .long   0               /* 0x130 */
1901         .long   DOTSYM(kvmppc_h_set_xdabr) - hcall_real_table
1902         .long   0               /* 0x138 */
1903         .long   0               /* 0x13c */
1904         .long   0               /* 0x140 */
1905         .long   0               /* 0x144 */
1906         .long   0               /* 0x148 */
1907         .long   0               /* 0x14c */
1908         .long   0               /* 0x150 */
1909         .long   0               /* 0x154 */
1910         .long   0               /* 0x158 */
1911         .long   0               /* 0x15c */
1912         .long   0               /* 0x160 */
1913         .long   0               /* 0x164 */
1914         .long   0               /* 0x168 */
1915         .long   0               /* 0x16c */
1916         .long   0               /* 0x170 */
1917         .long   0               /* 0x174 */
1918         .long   0               /* 0x178 */
1919         .long   0               /* 0x17c */
1920         .long   0               /* 0x180 */
1921         .long   0               /* 0x184 */
1922         .long   0               /* 0x188 */
1923         .long   0               /* 0x18c */
1924         .long   0               /* 0x190 */
1925         .long   0               /* 0x194 */
1926         .long   0               /* 0x198 */
1927         .long   0               /* 0x19c */
1928         .long   0               /* 0x1a0 */
1929         .long   0               /* 0x1a4 */
1930         .long   0               /* 0x1a8 */
1931         .long   0               /* 0x1ac */
1932         .long   0               /* 0x1b0 */
1933         .long   0               /* 0x1b4 */
1934         .long   0               /* 0x1b8 */
1935         .long   0               /* 0x1bc */
1936         .long   0               /* 0x1c0 */
1937         .long   0               /* 0x1c4 */
1938         .long   0               /* 0x1c8 */
1939         .long   0               /* 0x1cc */
1940         .long   0               /* 0x1d0 */
1941         .long   0               /* 0x1d4 */
1942         .long   0               /* 0x1d8 */
1943         .long   0               /* 0x1dc */
1944         .long   0               /* 0x1e0 */
1945         .long   0               /* 0x1e4 */
1946         .long   0               /* 0x1e8 */
1947         .long   0               /* 0x1ec */
1948         .long   0               /* 0x1f0 */
1949         .long   0               /* 0x1f4 */
1950         .long   0               /* 0x1f8 */
1951         .long   0               /* 0x1fc */
1952         .long   0               /* 0x200 */
1953         .long   0               /* 0x204 */
1954         .long   0               /* 0x208 */
1955         .long   0               /* 0x20c */
1956         .long   0               /* 0x210 */
1957         .long   0               /* 0x214 */
1958         .long   0               /* 0x218 */
1959         .long   0               /* 0x21c */
1960         .long   0               /* 0x220 */
1961         .long   0               /* 0x224 */
1962         .long   0               /* 0x228 */
1963         .long   0               /* 0x22c */
1964         .long   0               /* 0x230 */
1965         .long   0               /* 0x234 */
1966         .long   0               /* 0x238 */
1967         .long   0               /* 0x23c */
1968         .long   0               /* 0x240 */
1969         .long   0               /* 0x244 */
1970         .long   0               /* 0x248 */
1971         .long   0               /* 0x24c */
1972         .long   0               /* 0x250 */
1973         .long   0               /* 0x254 */
1974         .long   0               /* 0x258 */
1975         .long   0               /* 0x25c */
1976         .long   0               /* 0x260 */
1977         .long   0               /* 0x264 */
1978         .long   0               /* 0x268 */
1979         .long   0               /* 0x26c */
1980         .long   0               /* 0x270 */
1981         .long   0               /* 0x274 */
1982         .long   0               /* 0x278 */
1983         .long   0               /* 0x27c */
1984         .long   0               /* 0x280 */
1985         .long   0               /* 0x284 */
1986         .long   0               /* 0x288 */
1987         .long   0               /* 0x28c */
1988         .long   0               /* 0x290 */
1989         .long   0               /* 0x294 */
1990         .long   0               /* 0x298 */
1991         .long   0               /* 0x29c */
1992         .long   0               /* 0x2a0 */
1993         .long   0               /* 0x2a4 */
1994         .long   0               /* 0x2a8 */
1995         .long   0               /* 0x2ac */
1996         .long   0               /* 0x2b0 */
1997         .long   0               /* 0x2b4 */
1998         .long   0               /* 0x2b8 */
1999         .long   0               /* 0x2bc */
2000         .long   0               /* 0x2c0 */
2001         .long   0               /* 0x2c4 */
2002         .long   0               /* 0x2c8 */
2003         .long   0               /* 0x2cc */
2004         .long   0               /* 0x2d0 */
2005         .long   0               /* 0x2d4 */
2006         .long   0               /* 0x2d8 */
2007         .long   0               /* 0x2dc */
2008         .long   0               /* 0x2e0 */
2009         .long   0               /* 0x2e4 */
2010         .long   0               /* 0x2e8 */
2011         .long   0               /* 0x2ec */
2012         .long   0               /* 0x2f0 */
2013         .long   0               /* 0x2f4 */
2014         .long   0               /* 0x2f8 */
2015         .long   0               /* 0x2fc */
2016         .long   DOTSYM(kvmppc_h_random) - hcall_real_table
2017         .globl  hcall_real_table_end
2018 hcall_real_table_end:
2019
2020 _GLOBAL(kvmppc_h_set_xdabr)
2021         andi.   r0, r5, DABRX_USER | DABRX_KERNEL
2022         beq     6f
2023         li      r0, DABRX_USER | DABRX_KERNEL | DABRX_BTI
2024         andc.   r0, r5, r0
2025         beq     3f
2026 6:      li      r3, H_PARAMETER
2027         blr
2028
2029 _GLOBAL(kvmppc_h_set_dabr)
2030         li      r5, DABRX_USER | DABRX_KERNEL
2031 3:
2032 BEGIN_FTR_SECTION
2033         b       2f
2034 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S)
2035         std     r4,VCPU_DABR(r3)
2036         stw     r5, VCPU_DABRX(r3)
2037         mtspr   SPRN_DABRX, r5
2038         /* Work around P7 bug where DABR can get corrupted on mtspr */
2039 1:      mtspr   SPRN_DABR,r4
2040         mfspr   r5, SPRN_DABR
2041         cmpd    r4, r5
2042         bne     1b
2043         isync
2044         li      r3,0
2045         blr
2046
2047         /* Emulate H_SET_DABR/X on P8 for the sake of compat mode guests */
2048 2:      rlwimi  r5, r4, 5, DAWRX_DR | DAWRX_DW
2049         rlwimi  r5, r4, 1, DAWRX_WT
2050         clrrdi  r4, r4, 3
2051         std     r4, VCPU_DAWR(r3)
2052         std     r5, VCPU_DAWRX(r3)
2053         mtspr   SPRN_DAWR, r4
2054         mtspr   SPRN_DAWRX, r5
2055         li      r3, 0
2056         blr
2057
2058 _GLOBAL(kvmppc_h_cede)          /* r3 = vcpu pointer, r11 = msr, r13 = paca */
2059         ori     r11,r11,MSR_EE
2060         std     r11,VCPU_MSR(r3)
2061         li      r0,1
2062         stb     r0,VCPU_CEDED(r3)
2063         sync                    /* order setting ceded vs. testing prodded */
2064         lbz     r5,VCPU_PRODDED(r3)
2065         cmpwi   r5,0
2066         bne     kvm_cede_prodded
2067         li      r12,0           /* set trap to 0 to say hcall is handled */
2068         stw     r12,VCPU_TRAP(r3)
2069         li      r0,H_SUCCESS
2070         std     r0,VCPU_GPR(R3)(r3)
2071
2072         /*
2073          * Set our bit in the bitmask of napping threads unless all the
2074          * other threads are already napping, in which case we send this
2075          * up to the host.
2076          */
2077         ld      r5,HSTATE_KVM_VCORE(r13)
2078         lbz     r6,HSTATE_PTID(r13)
2079         lwz     r8,VCORE_ENTRY_EXIT(r5)
2080         clrldi  r8,r8,56
2081         li      r0,1
2082         sld     r0,r0,r6
2083         addi    r6,r5,VCORE_NAPPING_THREADS
2084 31:     lwarx   r4,0,r6
2085         or      r4,r4,r0
2086         cmpw    r4,r8
2087         beq     kvm_cede_exit
2088         stwcx.  r4,0,r6
2089         bne     31b
2090         /* order napping_threads update vs testing entry_exit_map */
2091         isync
2092         li      r0,NAPPING_CEDE
2093         stb     r0,HSTATE_NAPPING(r13)
2094         lwz     r7,VCORE_ENTRY_EXIT(r5)
2095         cmpwi   r7,0x100
2096         bge     33f             /* another thread already exiting */
2097
2098 /*
2099  * Although not specifically required by the architecture, POWER7
2100  * preserves the following registers in nap mode, even if an SMT mode
2101  * switch occurs: SLB entries, PURR, SPURR, AMOR, UAMOR, AMR, SPRG0-3,
2102  * DAR, DSISR, DABR, DABRX, DSCR, PMCx, MMCRx, SIAR, SDAR.
2103  */
2104         /* Save non-volatile GPRs */
2105         std     r14, VCPU_GPR(R14)(r3)
2106         std     r15, VCPU_GPR(R15)(r3)
2107         std     r16, VCPU_GPR(R16)(r3)
2108         std     r17, VCPU_GPR(R17)(r3)
2109         std     r18, VCPU_GPR(R18)(r3)
2110         std     r19, VCPU_GPR(R19)(r3)
2111         std     r20, VCPU_GPR(R20)(r3)
2112         std     r21, VCPU_GPR(R21)(r3)
2113         std     r22, VCPU_GPR(R22)(r3)
2114         std     r23, VCPU_GPR(R23)(r3)
2115         std     r24, VCPU_GPR(R24)(r3)
2116         std     r25, VCPU_GPR(R25)(r3)
2117         std     r26, VCPU_GPR(R26)(r3)
2118         std     r27, VCPU_GPR(R27)(r3)
2119         std     r28, VCPU_GPR(R28)(r3)
2120         std     r29, VCPU_GPR(R29)(r3)
2121         std     r30, VCPU_GPR(R30)(r3)
2122         std     r31, VCPU_GPR(R31)(r3)
2123
2124         /* save FP state */
2125         bl      kvmppc_save_fp
2126
2127         /*
2128          * Set DEC to the smaller of DEC and HDEC, so that we wake
2129          * no later than the end of our timeslice (HDEC interrupts
2130          * don't wake us from nap).
2131          */
2132         mfspr   r3, SPRN_DEC
2133         mfspr   r4, SPRN_HDEC
2134         mftb    r5
2135         cmpw    r3, r4
2136         ble     67f
2137         mtspr   SPRN_DEC, r4
2138 67:
2139         /* save expiry time of guest decrementer */
2140         extsw   r3, r3
2141         add     r3, r3, r5
2142         ld      r4, HSTATE_KVM_VCPU(r13)
2143         ld      r5, HSTATE_KVM_VCORE(r13)
2144         ld      r6, VCORE_TB_OFFSET(r5)
2145         subf    r3, r6, r3      /* convert to host TB value */
2146         std     r3, VCPU_DEC_EXPIRES(r4)
2147
2148 #ifdef CONFIG_KVM_BOOK3S_HV_EXIT_TIMING
2149         ld      r4, HSTATE_KVM_VCPU(r13)
2150         addi    r3, r4, VCPU_TB_CEDE
2151         bl      kvmhv_accumulate_time
2152 #endif
2153
2154         lis     r3, LPCR_PECEDP@h       /* Do wake on privileged doorbell */
2155
2156         /*
2157          * Take a nap until a decrementer or external or doobell interrupt
2158          * occurs, with PECE1 and PECE0 set in LPCR.
2159          * On POWER8, set PECEDH, and if we are ceding, also set PECEDP.
2160          * Also clear the runlatch bit before napping.
2161          */
2162 kvm_do_nap:
2163         mfspr   r0, SPRN_CTRLF
2164         clrrdi  r0, r0, 1
2165         mtspr   SPRN_CTRLT, r0
2166
2167         li      r0,1
2168         stb     r0,HSTATE_HWTHREAD_REQ(r13)
2169         mfspr   r5,SPRN_LPCR
2170         ori     r5,r5,LPCR_PECE0 | LPCR_PECE1
2171 BEGIN_FTR_SECTION
2172         ori     r5, r5, LPCR_PECEDH
2173         rlwimi  r5, r3, 0, LPCR_PECEDP
2174 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S)
2175         mtspr   SPRN_LPCR,r5
2176         isync
2177         li      r0, 0
2178         std     r0, HSTATE_SCRATCH0(r13)
2179         ptesync
2180         ld      r0, HSTATE_SCRATCH0(r13)
2181 1:      cmpd    r0, r0
2182         bne     1b
2183         nap
2184         b       .
2185
2186 33:     mr      r4, r3
2187         li      r3, 0
2188         li      r12, 0
2189         b       34f
2190
2191 kvm_end_cede:
2192         /* get vcpu pointer */
2193         ld      r4, HSTATE_KVM_VCPU(r13)
2194
2195         /* Woken by external or decrementer interrupt */
2196         ld      r1, HSTATE_HOST_R1(r13)
2197
2198 #ifdef CONFIG_KVM_BOOK3S_HV_EXIT_TIMING
2199         addi    r3, r4, VCPU_TB_RMINTR
2200         bl      kvmhv_accumulate_time
2201 #endif
2202
2203         /* load up FP state */
2204         bl      kvmppc_load_fp
2205
2206         /* Restore guest decrementer */
2207         ld      r3, VCPU_DEC_EXPIRES(r4)
2208         ld      r5, HSTATE_KVM_VCORE(r13)
2209         ld      r6, VCORE_TB_OFFSET(r5)
2210         add     r3, r3, r6      /* convert host TB to guest TB value */
2211         mftb    r7
2212         subf    r3, r7, r3
2213         mtspr   SPRN_DEC, r3
2214
2215         /* Load NV GPRS */
2216         ld      r14, VCPU_GPR(R14)(r4)
2217         ld      r15, VCPU_GPR(R15)(r4)
2218         ld      r16, VCPU_GPR(R16)(r4)
2219         ld      r17, VCPU_GPR(R17)(r4)
2220         ld      r18, VCPU_GPR(R18)(r4)
2221         ld      r19, VCPU_GPR(R19)(r4)
2222         ld      r20, VCPU_GPR(R20)(r4)
2223         ld      r21, VCPU_GPR(R21)(r4)
2224         ld      r22, VCPU_GPR(R22)(r4)
2225         ld      r23, VCPU_GPR(R23)(r4)
2226         ld      r24, VCPU_GPR(R24)(r4)
2227         ld      r25, VCPU_GPR(R25)(r4)
2228         ld      r26, VCPU_GPR(R26)(r4)
2229         ld      r27, VCPU_GPR(R27)(r4)
2230         ld      r28, VCPU_GPR(R28)(r4)
2231         ld      r29, VCPU_GPR(R29)(r4)
2232         ld      r30, VCPU_GPR(R30)(r4)
2233         ld      r31, VCPU_GPR(R31)(r4)
2234  
2235         /* Check the wake reason in SRR1 to see why we got here */
2236         bl      kvmppc_check_wake_reason
2237
2238         /* clear our bit in vcore->napping_threads */
2239 34:     ld      r5,HSTATE_KVM_VCORE(r13)
2240         lbz     r7,HSTATE_PTID(r13)
2241         li      r0,1
2242         sld     r0,r0,r7
2243         addi    r6,r5,VCORE_NAPPING_THREADS
2244 32:     lwarx   r7,0,r6
2245         andc    r7,r7,r0
2246         stwcx.  r7,0,r6
2247         bne     32b
2248         li      r0,0
2249         stb     r0,HSTATE_NAPPING(r13)
2250
2251         /* See if the wake reason means we need to exit */
2252         stw     r12, VCPU_TRAP(r4)
2253         mr      r9, r4
2254         cmpdi   r3, 0
2255         bgt     guest_exit_cont
2256
2257         /* see if any other thread is already exiting */
2258         lwz     r0,VCORE_ENTRY_EXIT(r5)
2259         cmpwi   r0,0x100
2260         bge     guest_exit_cont
2261
2262         b       kvmppc_cede_reentry     /* if not go back to guest */
2263
2264         /* cede when already previously prodded case */
2265 kvm_cede_prodded:
2266         li      r0,0
2267         stb     r0,VCPU_PRODDED(r3)
2268         sync                    /* order testing prodded vs. clearing ceded */
2269         stb     r0,VCPU_CEDED(r3)
2270         li      r3,H_SUCCESS
2271         blr
2272
2273         /* we've ceded but we want to give control to the host */
2274 kvm_cede_exit:
2275         ld      r9, HSTATE_KVM_VCPU(r13)
2276         b       guest_exit_cont
2277
2278         /* Try to handle a machine check in real mode */
2279 machine_check_realmode:
2280         mr      r3, r9          /* get vcpu pointer */
2281         bl      kvmppc_realmode_machine_check
2282         nop
2283         cmpdi   r3, 0           /* Did we handle MCE ? */
2284         ld      r9, HSTATE_KVM_VCPU(r13)
2285         li      r12, BOOK3S_INTERRUPT_MACHINE_CHECK
2286         /*
2287          * Deliver unhandled/fatal (e.g. UE) MCE errors to guest through
2288          * machine check interrupt (set HSRR0 to 0x200). And for handled
2289          * errors (no-fatal), just go back to guest execution with current
2290          * HSRR0 instead of exiting guest. This new approach will inject
2291          * machine check to guest for fatal error causing guest to crash.
2292          *
2293          * The old code used to return to host for unhandled errors which
2294          * was causing guest to hang with soft lockups inside guest and
2295          * makes it difficult to recover guest instance.
2296          */
2297         ld      r10, VCPU_PC(r9)
2298         ld      r11, VCPU_MSR(r9)
2299         bne     2f      /* Continue guest execution. */
2300         /* If not, deliver a machine check.  SRR0/1 are already set */
2301         li      r10, BOOK3S_INTERRUPT_MACHINE_CHECK
2302         ld      r11, VCPU_MSR(r9)
2303         bl      kvmppc_msr_interrupt
2304 2:      b       fast_interrupt_c_return
2305
2306 /*
2307  * Check the reason we woke from nap, and take appropriate action.
2308  * Returns (in r3):
2309  *      0 if nothing needs to be done
2310  *      1 if something happened that needs to be handled by the host
2311  *      -1 if there was a guest wakeup (IPI or msgsnd)
2312  *
2313  * Also sets r12 to the interrupt vector for any interrupt that needs
2314  * to be handled now by the host (0x500 for external interrupt), or zero.
2315  * Modifies r0, r6, r7, r8.
2316  */
2317 kvmppc_check_wake_reason:
2318         mfspr   r6, SPRN_SRR1
2319 BEGIN_FTR_SECTION
2320         rlwinm  r6, r6, 45-31, 0xf      /* extract wake reason field (P8) */
2321 FTR_SECTION_ELSE
2322         rlwinm  r6, r6, 45-31, 0xe      /* P7 wake reason field is 3 bits */
2323 ALT_FTR_SECTION_END_IFSET(CPU_FTR_ARCH_207S)
2324         cmpwi   r6, 8                   /* was it an external interrupt? */
2325         li      r12, BOOK3S_INTERRUPT_EXTERNAL
2326         beq     kvmppc_read_intr        /* if so, see what it was */
2327         li      r3, 0
2328         li      r12, 0
2329         cmpwi   r6, 6                   /* was it the decrementer? */
2330         beq     0f
2331 BEGIN_FTR_SECTION
2332         cmpwi   r6, 5                   /* privileged doorbell? */
2333         beq     0f
2334         cmpwi   r6, 3                   /* hypervisor doorbell? */
2335         beq     3f
2336 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S)
2337         li      r3, 1                   /* anything else, return 1 */
2338 0:      blr
2339
2340         /* hypervisor doorbell */
2341 3:      li      r12, BOOK3S_INTERRUPT_H_DOORBELL
2342         /* see if it's a host IPI */
2343         li      r3, 1
2344         lbz     r0, HSTATE_HOST_IPI(r13)
2345         cmpwi   r0, 0
2346         bnelr
2347         /* if not, clear it and return -1 */
2348         lis     r6, (PPC_DBELL_SERVER << (63-36))@h
2349         PPC_MSGCLR(6)
2350         li      r3, -1
2351         blr
2352
2353 /*
2354  * Determine what sort of external interrupt is pending (if any).
2355  * Returns:
2356  *      0 if no interrupt is pending
2357  *      1 if an interrupt is pending that needs to be handled by the host
2358  *      -1 if there was a guest wakeup IPI (which has now been cleared)
2359  * Modifies r0, r6, r7, r8, returns value in r3.
2360  */
2361 kvmppc_read_intr:
2362         /* see if a host IPI is pending */
2363         li      r3, 1
2364         lbz     r0, HSTATE_HOST_IPI(r13)
2365         cmpwi   r0, 0
2366         bne     1f
2367
2368         /* Now read the interrupt from the ICP */
2369         ld      r6, HSTATE_XICS_PHYS(r13)
2370         li      r7, XICS_XIRR
2371         cmpdi   r6, 0
2372         beq-    1f
2373         lwzcix  r0, r6, r7
2374         /*
2375          * Save XIRR for later. Since we get in in reverse endian on LE
2376          * systems, save it byte reversed and fetch it back in host endian.
2377          */
2378         li      r3, HSTATE_SAVED_XIRR
2379         STWX_BE r0, r3, r13
2380 #ifdef __LITTLE_ENDIAN__
2381         lwz     r3, HSTATE_SAVED_XIRR(r13)
2382 #else
2383         mr      r3, r0
2384 #endif
2385         rlwinm. r3, r3, 0, 0xffffff
2386         sync
2387         beq     1f                      /* if nothing pending in the ICP */
2388
2389         /* We found something in the ICP...
2390          *
2391          * If it's not an IPI, stash it in the PACA and return to
2392          * the host, we don't (yet) handle directing real external
2393          * interrupts directly to the guest
2394          */
2395         cmpwi   r3, XICS_IPI            /* if there is, is it an IPI? */
2396         bne     42f
2397
2398         /* It's an IPI, clear the MFRR and EOI it */
2399         li      r3, 0xff
2400         li      r8, XICS_MFRR
2401         stbcix  r3, r6, r8              /* clear the IPI */
2402         stwcix  r0, r6, r7              /* EOI it */
2403         sync
2404
2405         /* We need to re-check host IPI now in case it got set in the
2406          * meantime. If it's clear, we bounce the interrupt to the
2407          * guest
2408          */
2409         lbz     r0, HSTATE_HOST_IPI(r13)
2410         cmpwi   r0, 0
2411         bne-    43f
2412
2413         /* OK, it's an IPI for us */
2414         li      r12, 0
2415         li      r3, -1
2416 1:      blr
2417
2418 42:     /* It's not an IPI and it's for the host. We saved a copy of XIRR in
2419          * the PACA earlier, it will be picked up by the host ICP driver
2420          */
2421         li      r3, 1
2422         b       1b
2423
2424 43:     /* We raced with the host, we need to resend that IPI, bummer */
2425         li      r0, IPI_PRIORITY
2426         stbcix  r0, r6, r8              /* set the IPI */
2427         sync
2428         li      r3, 1
2429         b       1b
2430
2431 /*
2432  * Save away FP, VMX and VSX registers.
2433  * r3 = vcpu pointer
2434  * N.B. r30 and r31 are volatile across this function,
2435  * thus it is not callable from C.
2436  */
2437 kvmppc_save_fp:
2438         mflr    r30
2439         mr      r31,r3
2440         mfmsr   r5
2441         ori     r8,r5,MSR_FP
2442 #ifdef CONFIG_ALTIVEC
2443 BEGIN_FTR_SECTION
2444         oris    r8,r8,MSR_VEC@h
2445 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
2446 #endif
2447 #ifdef CONFIG_VSX
2448 BEGIN_FTR_SECTION
2449         oris    r8,r8,MSR_VSX@h
2450 END_FTR_SECTION_IFSET(CPU_FTR_VSX)
2451 #endif
2452         mtmsrd  r8
2453         addi    r3,r3,VCPU_FPRS
2454         bl      store_fp_state
2455 #ifdef CONFIG_ALTIVEC
2456 BEGIN_FTR_SECTION
2457         addi    r3,r31,VCPU_VRS
2458         bl      store_vr_state
2459 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
2460 #endif
2461         mfspr   r6,SPRN_VRSAVE
2462         stw     r6,VCPU_VRSAVE(r31)
2463         mtlr    r30
2464         blr
2465
2466 /*
2467  * Load up FP, VMX and VSX registers
2468  * r4 = vcpu pointer
2469  * N.B. r30 and r31 are volatile across this function,
2470  * thus it is not callable from C.
2471  */
2472 kvmppc_load_fp:
2473         mflr    r30
2474         mr      r31,r4
2475         mfmsr   r9
2476         ori     r8,r9,MSR_FP
2477 #ifdef CONFIG_ALTIVEC
2478 BEGIN_FTR_SECTION
2479         oris    r8,r8,MSR_VEC@h
2480 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
2481 #endif
2482 #ifdef CONFIG_VSX
2483 BEGIN_FTR_SECTION
2484         oris    r8,r8,MSR_VSX@h
2485 END_FTR_SECTION_IFSET(CPU_FTR_VSX)
2486 #endif
2487         mtmsrd  r8
2488         addi    r3,r4,VCPU_FPRS
2489         bl      load_fp_state
2490 #ifdef CONFIG_ALTIVEC
2491 BEGIN_FTR_SECTION
2492         addi    r3,r31,VCPU_VRS
2493         bl      load_vr_state
2494 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
2495 #endif
2496         lwz     r7,VCPU_VRSAVE(r31)
2497         mtspr   SPRN_VRSAVE,r7
2498         mtlr    r30
2499         mr      r4,r31
2500         blr
2501
2502 /*
2503  * We come here if we get any exception or interrupt while we are
2504  * executing host real mode code while in guest MMU context.
2505  * For now just spin, but we should do something better.
2506  */
2507 kvmppc_bad_host_intr:
2508         b       .
2509
2510 /*
2511  * This mimics the MSR transition on IRQ delivery.  The new guest MSR is taken
2512  * from VCPU_INTR_MSR and is modified based on the required TM state changes.
2513  *   r11 has the guest MSR value (in/out)
2514  *   r9 has a vcpu pointer (in)
2515  *   r0 is used as a scratch register
2516  */
2517 kvmppc_msr_interrupt:
2518         rldicl  r0, r11, 64 - MSR_TS_S_LG, 62
2519         cmpwi   r0, 2 /* Check if we are in transactional state..  */
2520         ld      r11, VCPU_INTR_MSR(r9)
2521         bne     1f
2522         /* ... if transactional, change to suspended */
2523         li      r0, 1
2524 1:      rldimi  r11, r0, MSR_TS_S_LG, 63 - MSR_TS_T_LG
2525         blr
2526
2527 /*
2528  * This works around a hardware bug on POWER8E processors, where
2529  * writing a 1 to the MMCR0[PMAO] bit doesn't generate a
2530  * performance monitor interrupt.  Instead, when we need to have
2531  * an interrupt pending, we have to arrange for a counter to overflow.
2532  */
2533 kvmppc_fix_pmao:
2534         li      r3, 0
2535         mtspr   SPRN_MMCR2, r3
2536         lis     r3, (MMCR0_PMXE | MMCR0_FCECE)@h
2537         ori     r3, r3, MMCR0_PMCjCE | MMCR0_C56RUN
2538         mtspr   SPRN_MMCR0, r3
2539         lis     r3, 0x7fff
2540         ori     r3, r3, 0xffff
2541         mtspr   SPRN_PMC6, r3
2542         isync
2543         blr
2544
2545 #ifdef CONFIG_KVM_BOOK3S_HV_EXIT_TIMING
2546 /*
2547  * Start timing an activity
2548  * r3 = pointer to time accumulation struct, r4 = vcpu
2549  */
2550 kvmhv_start_timing:
2551         ld      r5, HSTATE_KVM_VCORE(r13)
2552         lbz     r6, VCORE_IN_GUEST(r5)
2553         cmpwi   r6, 0
2554         beq     5f                              /* if in guest, need to */
2555         ld      r6, VCORE_TB_OFFSET(r5)         /* subtract timebase offset */
2556 5:      mftb    r5
2557         subf    r5, r6, r5
2558         std     r3, VCPU_CUR_ACTIVITY(r4)
2559         std     r5, VCPU_ACTIVITY_START(r4)
2560         blr
2561
2562 /*
2563  * Accumulate time to one activity and start another.
2564  * r3 = pointer to new time accumulation struct, r4 = vcpu
2565  */
2566 kvmhv_accumulate_time:
2567         ld      r5, HSTATE_KVM_VCORE(r13)
2568         lbz     r8, VCORE_IN_GUEST(r5)
2569         cmpwi   r8, 0
2570         beq     4f                              /* if in guest, need to */
2571         ld      r8, VCORE_TB_OFFSET(r5)         /* subtract timebase offset */
2572 4:      ld      r5, VCPU_CUR_ACTIVITY(r4)
2573         ld      r6, VCPU_ACTIVITY_START(r4)
2574         std     r3, VCPU_CUR_ACTIVITY(r4)
2575         mftb    r7
2576         subf    r7, r8, r7
2577         std     r7, VCPU_ACTIVITY_START(r4)
2578         cmpdi   r5, 0
2579         beqlr
2580         subf    r3, r6, r7
2581         ld      r8, TAS_SEQCOUNT(r5)
2582         cmpdi   r8, 0
2583         addi    r8, r8, 1
2584         std     r8, TAS_SEQCOUNT(r5)
2585         lwsync
2586         ld      r7, TAS_TOTAL(r5)
2587         add     r7, r7, r3
2588         std     r7, TAS_TOTAL(r5)
2589         ld      r6, TAS_MIN(r5)
2590         ld      r7, TAS_MAX(r5)
2591         beq     3f
2592         cmpd    r3, r6
2593         bge     1f
2594 3:      std     r3, TAS_MIN(r5)
2595 1:      cmpd    r3, r7
2596         ble     2f
2597         std     r3, TAS_MAX(r5)
2598 2:      lwsync
2599         addi    r8, r8, 1
2600         std     r8, TAS_SEQCOUNT(r5)
2601         blr
2602 #endif