]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - arch/powerpc/kvm/book3s_hv_rmhandlers.S
ecb76357c9d0aa5b60e6d0663eeadd3d82479f7d
[karo-tx-linux.git] / 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
32 #ifdef __LITTLE_ENDIAN__
33 #error Need to fix lppaca and SLB shadow accesses in little endian mode
34 #endif
35
36 /* Values in HSTATE_NAPPING(r13) */
37 #define NAPPING_CEDE    1
38 #define NAPPING_NOVCPU  2
39
40 /*
41  * Call kvmppc_hv_entry in real mode.
42  * Must be called with interrupts hard-disabled.
43  *
44  * Input Registers:
45  *
46  * LR = return address to continue at after eventually re-enabling MMU
47  */
48 _GLOBAL(kvmppc_hv_entry_trampoline)
49         mflr    r0
50         std     r0, PPC_LR_STKOFF(r1)
51         stdu    r1, -112(r1)
52         mfmsr   r10
53         LOAD_REG_ADDR(r5, kvmppc_call_hv_entry)
54         li      r0,MSR_RI
55         andc    r0,r10,r0
56         li      r6,MSR_IR | MSR_DR
57         andc    r6,r10,r6
58         mtmsrd  r0,1            /* clear RI in MSR */
59         mtsrr0  r5
60         mtsrr1  r6
61         RFI
62
63 kvmppc_call_hv_entry:
64         ld      r4, HSTATE_KVM_VCPU(r13)
65         bl      kvmppc_hv_entry
66
67         /* Back from guest - restore host state and return to caller */
68
69 BEGIN_FTR_SECTION
70         /* Restore host DABR and DABRX */
71         ld      r5,HSTATE_DABR(r13)
72         li      r6,7
73         mtspr   SPRN_DABR,r5
74         mtspr   SPRN_DABRX,r6
75 END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_207S)
76
77         /* Restore SPRG3 */
78         ld      r3,PACA_SPRG3(r13)
79         mtspr   SPRN_SPRG3,r3
80
81         /* Reload the host's PMU registers */
82         ld      r3, PACALPPACAPTR(r13)  /* is the host using the PMU? */
83         lbz     r4, LPPACA_PMCINUSE(r3)
84         cmpwi   r4, 0
85         beq     23f                     /* skip if not */
86         lwz     r3, HSTATE_PMC(r13)
87         lwz     r4, HSTATE_PMC + 4(r13)
88         lwz     r5, HSTATE_PMC + 8(r13)
89         lwz     r6, HSTATE_PMC + 12(r13)
90         lwz     r8, HSTATE_PMC + 16(r13)
91         lwz     r9, HSTATE_PMC + 20(r13)
92 BEGIN_FTR_SECTION
93         lwz     r10, HSTATE_PMC + 24(r13)
94         lwz     r11, HSTATE_PMC + 28(r13)
95 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201)
96         mtspr   SPRN_PMC1, r3
97         mtspr   SPRN_PMC2, r4
98         mtspr   SPRN_PMC3, r5
99         mtspr   SPRN_PMC4, r6
100         mtspr   SPRN_PMC5, r8
101         mtspr   SPRN_PMC6, r9
102 BEGIN_FTR_SECTION
103         mtspr   SPRN_PMC7, r10
104         mtspr   SPRN_PMC8, r11
105 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201)
106         ld      r3, HSTATE_MMCR(r13)
107         ld      r4, HSTATE_MMCR + 8(r13)
108         ld      r5, HSTATE_MMCR + 16(r13)
109         mtspr   SPRN_MMCR1, r4
110         mtspr   SPRN_MMCRA, r5
111         mtspr   SPRN_MMCR0, r3
112         isync
113 23:
114
115         /*
116          * Reload DEC.  HDEC interrupts were disabled when
117          * we reloaded the host's LPCR value.
118          */
119         ld      r3, HSTATE_DECEXP(r13)
120         mftb    r4
121         subf    r4, r4, r3
122         mtspr   SPRN_DEC, r4
123
124         /*
125          * For external and machine check interrupts, we need
126          * to call the Linux handler to process the interrupt.
127          * We do that by jumping to absolute address 0x500 for
128          * external interrupts, or the machine_check_fwnmi label
129          * for machine checks (since firmware might have patched
130          * the vector area at 0x200).  The [h]rfid at the end of the
131          * handler will return to the book3s_hv_interrupts.S code.
132          * For other interrupts we do the rfid to get back
133          * to the book3s_hv_interrupts.S code here.
134          */
135         ld      r8, 112+PPC_LR_STKOFF(r1)
136         addi    r1, r1, 112
137         ld      r7, HSTATE_HOST_MSR(r13)
138
139         cmpwi   cr1, r12, BOOK3S_INTERRUPT_MACHINE_CHECK
140         cmpwi   r12, BOOK3S_INTERRUPT_EXTERNAL
141 BEGIN_FTR_SECTION
142         beq     11f
143 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
144
145         /* RFI into the highmem handler, or branch to interrupt handler */
146         mfmsr   r6
147         li      r0, MSR_RI
148         andc    r6, r6, r0
149         mtmsrd  r6, 1                   /* Clear RI in MSR */
150         mtsrr0  r8
151         mtsrr1  r7
152         beqa    0x500                   /* external interrupt (PPC970) */
153         beq     cr1, 13f                /* machine check */
154         RFI
155
156         /* On POWER7, we have external interrupts set to use HSRR0/1 */
157 11:     mtspr   SPRN_HSRR0, r8
158         mtspr   SPRN_HSRR1, r7
159         ba      0x500
160
161 13:     b       machine_check_fwnmi
162
163
164 kvmppc_primary_no_guest:
165         /* We handle this much like a ceded vcpu */
166         /* set our bit in napping_threads */
167         ld      r5, HSTATE_KVM_VCORE(r13)
168         lbz     r7, HSTATE_PTID(r13)
169         li      r0, 1
170         sld     r0, r0, r7
171         addi    r6, r5, VCORE_NAPPING_THREADS
172 1:      lwarx   r3, 0, r6
173         or      r3, r3, r0
174         stwcx.  r3, 0, r6
175         bne     1b
176         /* order napping_threads update vs testing entry_exit_count */
177         isync
178         li      r12, 0
179         lwz     r7, VCORE_ENTRY_EXIT(r5)
180         cmpwi   r7, 0x100
181         bge     kvm_novcpu_exit /* another thread already exiting */
182         li      r3, NAPPING_NOVCPU
183         stb     r3, HSTATE_NAPPING(r13)
184         li      r3, 1
185         stb     r3, HSTATE_HWTHREAD_REQ(r13)
186
187         b       kvm_do_nap
188
189 kvm_novcpu_wakeup:
190         ld      r1, HSTATE_HOST_R1(r13)
191         ld      r5, HSTATE_KVM_VCORE(r13)
192         li      r0, 0
193         stb     r0, HSTATE_NAPPING(r13)
194         stb     r0, HSTATE_HWTHREAD_REQ(r13)
195
196         /* check the wake reason */
197         bl      kvmppc_check_wake_reason
198         
199         /* see if any other thread is already exiting */
200         lwz     r0, VCORE_ENTRY_EXIT(r5)
201         cmpwi   r0, 0x100
202         bge     kvm_novcpu_exit
203
204         /* clear our bit in napping_threads */
205         lbz     r7, HSTATE_PTID(r13)
206         li      r0, 1
207         sld     r0, r0, r7
208         addi    r6, r5, VCORE_NAPPING_THREADS
209 4:      lwarx   r7, 0, r6
210         andc    r7, r7, r0
211         stwcx.  r7, 0, r6
212         bne     4b
213
214         /* See if the wake reason means we need to exit */
215         cmpdi   r3, 0
216         bge     kvm_novcpu_exit
217
218         /* Got an IPI but other vcpus aren't yet exiting, must be a latecomer */
219         ld      r4, HSTATE_KVM_VCPU(r13)
220         cmpdi   r4, 0
221         bne     kvmppc_got_guest
222
223 kvm_novcpu_exit:
224         b       hdec_soon
225
226 /*
227  * We come in here when wakened from nap mode.
228  * Relocation is off and most register values are lost.
229  * r13 points to the PACA.
230  */
231         .globl  kvm_start_guest
232 kvm_start_guest:
233         ld      r2,PACATOC(r13)
234
235         li      r0,KVM_HWTHREAD_IN_KVM
236         stb     r0,HSTATE_HWTHREAD_STATE(r13)
237
238         /* NV GPR values from power7_idle() will no longer be valid */
239         li      r0,1
240         stb     r0,PACA_NAPSTATELOST(r13)
241
242         /* were we napping due to cede? */
243         lbz     r0,HSTATE_NAPPING(r13)
244         cmpwi   r0,NAPPING_CEDE
245         beq     kvm_end_cede
246         cmpwi   r0,NAPPING_NOVCPU
247         beq     kvm_novcpu_wakeup
248
249         ld      r1,PACAEMERGSP(r13)
250         subi    r1,r1,STACK_FRAME_OVERHEAD
251
252         /*
253          * We weren't napping due to cede, so this must be a secondary
254          * thread being woken up to run a guest, or being woken up due
255          * to a stray IPI.  (Or due to some machine check or hypervisor
256          * maintenance interrupt while the core is in KVM.)
257          */
258
259         /* Check the wake reason in SRR1 to see why we got here */
260         bl      kvmppc_check_wake_reason
261         cmpdi   r3, 0
262         bge     kvm_no_guest
263
264         /* get vcpu pointer, NULL if we have no vcpu to run */
265         ld      r4,HSTATE_KVM_VCPU(r13)
266         cmpdi   r4,0
267         /* if we have no vcpu to run, go back to sleep */
268         beq     kvm_no_guest
269
270         /* Set HSTATE_DSCR(r13) to something sensible */
271         LOAD_REG_ADDR(r6, dscr_default)
272         ld      r6, 0(r6)
273         std     r6, HSTATE_DSCR(r13)
274
275         bl      kvmppc_hv_entry
276
277         /* Back from the guest, go back to nap */
278         /* Clear our vcpu pointer so we don't come back in early */
279         li      r0, 0
280         std     r0, HSTATE_KVM_VCPU(r13)
281         lwsync
282
283         /* increment the nap count and then go to nap mode */
284         ld      r4, HSTATE_KVM_VCORE(r13)
285         addi    r4, r4, VCORE_NAP_COUNT
286         lwsync                          /* make previous updates visible */
287 51:     lwarx   r3, 0, r4
288         addi    r3, r3, 1
289         stwcx.  r3, 0, r4
290         bne     51b
291
292 kvm_no_guest:
293         li      r0, KVM_HWTHREAD_IN_NAP
294         stb     r0, HSTATE_HWTHREAD_STATE(r13)
295 kvm_do_nap:
296         li      r3, LPCR_PECE0
297         mfspr   r4, SPRN_LPCR
298         rlwimi  r4, r3, 0, LPCR_PECE0 | LPCR_PECE1
299         mtspr   SPRN_LPCR, r4
300         isync
301         std     r0, HSTATE_SCRATCH0(r13)
302         ptesync
303         ld      r0, HSTATE_SCRATCH0(r13)
304 1:      cmpd    r0, r0
305         bne     1b
306         nap
307         b       .
308
309 /******************************************************************************
310  *                                                                            *
311  *                               Entry code                                   *
312  *                                                                            *
313  *****************************************************************************/
314
315 .global kvmppc_hv_entry
316 kvmppc_hv_entry:
317
318         /* Required state:
319          *
320          * R4 = vcpu pointer (or NULL)
321          * MSR = ~IR|DR
322          * R13 = PACA
323          * R1 = host R1
324          * all other volatile GPRS = free
325          */
326         mflr    r0
327         std     r0, PPC_LR_STKOFF(r1)
328         stdu    r1, -112(r1)
329
330         /* Save R1 in the PACA */
331         std     r1, HSTATE_HOST_R1(r13)
332
333         li      r6, KVM_GUEST_MODE_HOST_HV
334         stb     r6, HSTATE_IN_GUEST(r13)
335
336         /* Clear out SLB */
337         li      r6,0
338         slbmte  r6,r6
339         slbia
340         ptesync
341
342 BEGIN_FTR_SECTION
343         b       30f
344 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201)
345         /*
346          * POWER7 host -> guest partition switch code.
347          * We don't have to lock against concurrent tlbies,
348          * but we do have to coordinate across hardware threads.
349          */
350         /* Increment entry count iff exit count is zero. */
351         ld      r5,HSTATE_KVM_VCORE(r13)
352         addi    r9,r5,VCORE_ENTRY_EXIT
353 21:     lwarx   r3,0,r9
354         cmpwi   r3,0x100                /* any threads starting to exit? */
355         bge     secondary_too_late      /* if so we're too late to the party */
356         addi    r3,r3,1
357         stwcx.  r3,0,r9
358         bne     21b
359
360         /* Primary thread switches to guest partition. */
361         ld      r9,VCORE_KVM(r5)        /* pointer to struct kvm */
362         lbz     r6,HSTATE_PTID(r13)
363         cmpwi   r6,0
364         bne     20f
365         ld      r6,KVM_SDR1(r9)
366         lwz     r7,KVM_LPID(r9)
367         li      r0,LPID_RSVD            /* switch to reserved LPID */
368         mtspr   SPRN_LPID,r0
369         ptesync
370         mtspr   SPRN_SDR1,r6            /* switch to partition page table */
371         mtspr   SPRN_LPID,r7
372         isync
373
374         /* See if we need to flush the TLB */
375         lhz     r6,PACAPACAINDEX(r13)   /* test_bit(cpu, need_tlb_flush) */
376         clrldi  r7,r6,64-6              /* extract bit number (6 bits) */
377         srdi    r6,r6,6                 /* doubleword number */
378         sldi    r6,r6,3                 /* address offset */
379         add     r6,r6,r9
380         addi    r6,r6,KVM_NEED_FLUSH    /* dword in kvm->arch.need_tlb_flush */
381         li      r0,1
382         sld     r0,r0,r7
383         ld      r7,0(r6)
384         and.    r7,r7,r0
385         beq     22f
386 23:     ldarx   r7,0,r6                 /* if set, clear the bit */
387         andc    r7,r7,r0
388         stdcx.  r7,0,r6
389         bne     23b
390         /* Flush the TLB of any entries for this LPID */
391         /* use arch 2.07S as a proxy for POWER8 */
392 BEGIN_FTR_SECTION
393         li      r6,512                  /* POWER8 has 512 sets */
394 FTR_SECTION_ELSE
395         li      r6,128                  /* POWER7 has 128 sets */
396 ALT_FTR_SECTION_END_IFSET(CPU_FTR_ARCH_207S)
397         mtctr   r6
398         li      r7,0x800                /* IS field = 0b10 */
399         ptesync
400 28:     tlbiel  r7
401         addi    r7,r7,0x1000
402         bdnz    28b
403         ptesync
404
405         /* Add timebase offset onto timebase */
406 22:     ld      r8,VCORE_TB_OFFSET(r5)
407         cmpdi   r8,0
408         beq     37f
409         mftb    r6              /* current host timebase */
410         add     r8,r8,r6
411         mtspr   SPRN_TBU40,r8   /* update upper 40 bits */
412         mftb    r7              /* check if lower 24 bits overflowed */
413         clrldi  r6,r6,40
414         clrldi  r7,r7,40
415         cmpld   r7,r6
416         bge     37f
417         addis   r8,r8,0x100     /* if so, increment upper 40 bits */
418         mtspr   SPRN_TBU40,r8
419
420         /* Load guest PCR value to select appropriate compat mode */
421 37:     ld      r7, VCORE_PCR(r5)
422         cmpdi   r7, 0
423         beq     38f
424         mtspr   SPRN_PCR, r7
425 38:
426
427 BEGIN_FTR_SECTION
428         /* DPDES is shared between threads */
429         ld      r8, VCORE_DPDES(r5)
430         mtspr   SPRN_DPDES, r8
431 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S)
432
433         li      r0,1
434         stb     r0,VCORE_IN_GUEST(r5)   /* signal secondaries to continue */
435         b       10f
436
437         /* Secondary threads wait for primary to have done partition switch */
438 20:     lbz     r0,VCORE_IN_GUEST(r5)
439         cmpwi   r0,0
440         beq     20b
441
442         /* Set LPCR and RMOR. */
443 10:     ld      r8,VCORE_LPCR(r5)
444         mtspr   SPRN_LPCR,r8
445         ld      r8,KVM_RMOR(r9)
446         mtspr   SPRN_RMOR,r8
447         isync
448
449         /* Check if HDEC expires soon */
450         mfspr   r3,SPRN_HDEC
451         cmpwi   r3,512          /* 1 microsecond */
452         li      r12,BOOK3S_INTERRUPT_HV_DECREMENTER
453         blt     hdec_soon
454         b       31f
455
456         /*
457          * PPC970 host -> guest partition switch code.
458          * We have to lock against concurrent tlbies,
459          * using native_tlbie_lock to lock against host tlbies
460          * and kvm->arch.tlbie_lock to lock against guest tlbies.
461          * We also have to invalidate the TLB since its
462          * entries aren't tagged with the LPID.
463          */
464 30:     ld      r5,HSTATE_KVM_VCORE(r13)
465         ld      r9,VCORE_KVM(r5)        /* pointer to struct kvm */
466
467         /* first take native_tlbie_lock */
468         .section ".toc","aw"
469 toc_tlbie_lock:
470         .tc     native_tlbie_lock[TC],native_tlbie_lock
471         .previous
472         ld      r3,toc_tlbie_lock@toc(2)
473 #ifdef __BIG_ENDIAN__
474         lwz     r8,PACA_LOCK_TOKEN(r13)
475 #else
476         lwz     r8,PACAPACAINDEX(r13)
477 #endif
478 24:     lwarx   r0,0,r3
479         cmpwi   r0,0
480         bne     24b
481         stwcx.  r8,0,r3
482         bne     24b
483         isync
484
485         ld      r5,HSTATE_KVM_VCORE(r13)
486         ld      r7,VCORE_LPCR(r5)       /* use vcore->lpcr to store HID4 */
487         li      r0,0x18f
488         rotldi  r0,r0,HID4_LPID5_SH     /* all lpid bits in HID4 = 1 */
489         or      r0,r7,r0
490         ptesync
491         sync
492         mtspr   SPRN_HID4,r0            /* switch to reserved LPID */
493         isync
494         li      r0,0
495         stw     r0,0(r3)                /* drop native_tlbie_lock */
496
497         /* invalidate the whole TLB */
498         li      r0,256
499         mtctr   r0
500         li      r6,0
501 25:     tlbiel  r6
502         addi    r6,r6,0x1000
503         bdnz    25b
504         ptesync
505
506         /* Take the guest's tlbie_lock */
507         addi    r3,r9,KVM_TLBIE_LOCK
508 24:     lwarx   r0,0,r3
509         cmpwi   r0,0
510         bne     24b
511         stwcx.  r8,0,r3
512         bne     24b
513         isync
514         ld      r6,KVM_SDR1(r9)
515         mtspr   SPRN_SDR1,r6            /* switch to partition page table */
516
517         /* Set up HID4 with the guest's LPID etc. */
518         sync
519         mtspr   SPRN_HID4,r7
520         isync
521
522         /* drop the guest's tlbie_lock */
523         li      r0,0
524         stw     r0,0(r3)
525
526         /* Check if HDEC expires soon */
527         mfspr   r3,SPRN_HDEC
528         cmpwi   r3,10
529         li      r12,BOOK3S_INTERRUPT_HV_DECREMENTER
530         blt     hdec_soon
531
532         /* Enable HDEC interrupts */
533         mfspr   r0,SPRN_HID0
534         li      r3,1
535         rldimi  r0,r3, HID0_HDICE_SH, 64-HID0_HDICE_SH-1
536         sync
537         mtspr   SPRN_HID0,r0
538         mfspr   r0,SPRN_HID0
539         mfspr   r0,SPRN_HID0
540         mfspr   r0,SPRN_HID0
541         mfspr   r0,SPRN_HID0
542         mfspr   r0,SPRN_HID0
543         mfspr   r0,SPRN_HID0
544 31:
545         /* Do we have a guest vcpu to run? */
546         cmpdi   r4, 0
547         beq     kvmppc_primary_no_guest
548 kvmppc_got_guest:
549
550         /* Load up guest SLB entries */
551         lwz     r5,VCPU_SLB_MAX(r4)
552         cmpwi   r5,0
553         beq     9f
554         mtctr   r5
555         addi    r6,r4,VCPU_SLB
556 1:      ld      r8,VCPU_SLB_E(r6)
557         ld      r9,VCPU_SLB_V(r6)
558         slbmte  r9,r8
559         addi    r6,r6,VCPU_SLB_SIZE
560         bdnz    1b
561 9:
562         /* Increment yield count if they have a VPA */
563         ld      r3, VCPU_VPA(r4)
564         cmpdi   r3, 0
565         beq     25f
566         lwz     r5, LPPACA_YIELDCOUNT(r3)
567         addi    r5, r5, 1
568         stw     r5, LPPACA_YIELDCOUNT(r3)
569         li      r6, 1
570         stb     r6, VCPU_VPA_DIRTY(r4)
571 25:
572
573 BEGIN_FTR_SECTION
574         /* Save purr/spurr */
575         mfspr   r5,SPRN_PURR
576         mfspr   r6,SPRN_SPURR
577         std     r5,HSTATE_PURR(r13)
578         std     r6,HSTATE_SPURR(r13)
579         ld      r7,VCPU_PURR(r4)
580         ld      r8,VCPU_SPURR(r4)
581         mtspr   SPRN_PURR,r7
582         mtspr   SPRN_SPURR,r8
583 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
584
585 BEGIN_FTR_SECTION
586         /* Set partition DABR */
587         /* Do this before re-enabling PMU to avoid P7 DABR corruption bug */
588         lwz     r5,VCPU_DABRX(r4)
589         ld      r6,VCPU_DABR(r4)
590         mtspr   SPRN_DABRX,r5
591         mtspr   SPRN_DABR,r6
592  BEGIN_FTR_SECTION_NESTED(89)
593         isync
594  END_FTR_SECTION_NESTED(CPU_FTR_ARCH_206, CPU_FTR_ARCH_206, 89)
595 END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_207S)
596
597         /* Load guest PMU registers */
598         /* R4 is live here (vcpu pointer) */
599         li      r3, 1
600         sldi    r3, r3, 31              /* MMCR0_FC (freeze counters) bit */
601         mtspr   SPRN_MMCR0, r3          /* freeze all counters, disable ints */
602         isync
603         lwz     r3, VCPU_PMC(r4)        /* always load up guest PMU registers */
604         lwz     r5, VCPU_PMC + 4(r4)    /* to prevent information leak */
605         lwz     r6, VCPU_PMC + 8(r4)
606         lwz     r7, VCPU_PMC + 12(r4)
607         lwz     r8, VCPU_PMC + 16(r4)
608         lwz     r9, VCPU_PMC + 20(r4)
609 BEGIN_FTR_SECTION
610         lwz     r10, VCPU_PMC + 24(r4)
611         lwz     r11, VCPU_PMC + 28(r4)
612 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201)
613         mtspr   SPRN_PMC1, r3
614         mtspr   SPRN_PMC2, r5
615         mtspr   SPRN_PMC3, r6
616         mtspr   SPRN_PMC4, r7
617         mtspr   SPRN_PMC5, r8
618         mtspr   SPRN_PMC6, r9
619 BEGIN_FTR_SECTION
620         mtspr   SPRN_PMC7, r10
621         mtspr   SPRN_PMC8, r11
622 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201)
623         ld      r3, VCPU_MMCR(r4)
624         ld      r5, VCPU_MMCR + 8(r4)
625         ld      r6, VCPU_MMCR + 16(r4)
626         ld      r7, VCPU_SIAR(r4)
627         ld      r8, VCPU_SDAR(r4)
628         mtspr   SPRN_MMCR1, r5
629         mtspr   SPRN_MMCRA, r6
630         mtspr   SPRN_SIAR, r7
631         mtspr   SPRN_SDAR, r8
632 BEGIN_FTR_SECTION
633         ld      r5, VCPU_MMCR + 24(r4)
634         ld      r6, VCPU_SIER(r4)
635         lwz     r7, VCPU_PMC + 24(r4)
636         lwz     r8, VCPU_PMC + 28(r4)
637         ld      r9, VCPU_MMCR + 32(r4)
638         mtspr   SPRN_MMCR2, r5
639         mtspr   SPRN_SIER, r6
640         mtspr   SPRN_SPMC1, r7
641         mtspr   SPRN_SPMC2, r8
642         mtspr   SPRN_MMCRS, r9
643 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S)
644         mtspr   SPRN_MMCR0, r3
645         isync
646
647         /* Load up FP, VMX and VSX registers */
648         bl      kvmppc_load_fp
649
650         ld      r14, VCPU_GPR(R14)(r4)
651         ld      r15, VCPU_GPR(R15)(r4)
652         ld      r16, VCPU_GPR(R16)(r4)
653         ld      r17, VCPU_GPR(R17)(r4)
654         ld      r18, VCPU_GPR(R18)(r4)
655         ld      r19, VCPU_GPR(R19)(r4)
656         ld      r20, VCPU_GPR(R20)(r4)
657         ld      r21, VCPU_GPR(R21)(r4)
658         ld      r22, VCPU_GPR(R22)(r4)
659         ld      r23, VCPU_GPR(R23)(r4)
660         ld      r24, VCPU_GPR(R24)(r4)
661         ld      r25, VCPU_GPR(R25)(r4)
662         ld      r26, VCPU_GPR(R26)(r4)
663         ld      r27, VCPU_GPR(R27)(r4)
664         ld      r28, VCPU_GPR(R28)(r4)
665         ld      r29, VCPU_GPR(R29)(r4)
666         ld      r30, VCPU_GPR(R30)(r4)
667         ld      r31, VCPU_GPR(R31)(r4)
668
669 BEGIN_FTR_SECTION
670         /* Switch DSCR to guest value */
671         ld      r5, VCPU_DSCR(r4)
672         mtspr   SPRN_DSCR, r5
673 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
674
675 BEGIN_FTR_SECTION
676         /* Skip next section on POWER7 or PPC970 */
677         b       8f
678 END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_207S)
679         /* Turn on TM so we can access TFHAR/TFIAR/TEXASR */
680         mfmsr   r8
681         li      r0, 1
682         rldimi  r8, r0, MSR_TM_LG, 63-MSR_TM_LG
683         mtmsrd  r8
684
685         /* Load up POWER8-specific registers */
686         ld      r5, VCPU_IAMR(r4)
687         lwz     r6, VCPU_PSPB(r4)
688         ld      r7, VCPU_FSCR(r4)
689         mtspr   SPRN_IAMR, r5
690         mtspr   SPRN_PSPB, r6
691         mtspr   SPRN_FSCR, r7
692         ld      r5, VCPU_DAWR(r4)
693         ld      r6, VCPU_DAWRX(r4)
694         ld      r7, VCPU_CIABR(r4)
695         ld      r8, VCPU_TAR(r4)
696         mtspr   SPRN_DAWR, r5
697         mtspr   SPRN_DAWRX, r6
698         mtspr   SPRN_CIABR, r7
699         mtspr   SPRN_TAR, r8
700         ld      r5, VCPU_IC(r4)
701         ld      r6, VCPU_VTB(r4)
702         mtspr   SPRN_IC, r5
703         mtspr   SPRN_VTB, r6
704         ld      r5, VCPU_TFHAR(r4)
705         ld      r6, VCPU_TFIAR(r4)
706         ld      r7, VCPU_TEXASR(r4)
707         ld      r8, VCPU_EBBHR(r4)
708         mtspr   SPRN_TFHAR, r5
709         mtspr   SPRN_TFIAR, r6
710         mtspr   SPRN_TEXASR, r7
711         mtspr   SPRN_EBBHR, r8
712         ld      r5, VCPU_EBBRR(r4)
713         ld      r6, VCPU_BESCR(r4)
714         ld      r7, VCPU_CSIGR(r4)
715         ld      r8, VCPU_TACR(r4)
716         mtspr   SPRN_EBBRR, r5
717         mtspr   SPRN_BESCR, r6
718         mtspr   SPRN_CSIGR, r7
719         mtspr   SPRN_TACR, r8
720         ld      r5, VCPU_TCSCR(r4)
721         ld      r6, VCPU_ACOP(r4)
722         lwz     r7, VCPU_GUEST_PID(r4)
723         ld      r8, VCPU_WORT(r4)
724         mtspr   SPRN_TCSCR, r5
725         mtspr   SPRN_ACOP, r6
726         mtspr   SPRN_PID, r7
727         mtspr   SPRN_WORT, r8
728 8:
729
730         /*
731          * Set the decrementer to the guest decrementer.
732          */
733         ld      r8,VCPU_DEC_EXPIRES(r4)
734         mftb    r7
735         subf    r3,r7,r8
736         mtspr   SPRN_DEC,r3
737         stw     r3,VCPU_DEC(r4)
738
739         ld      r5, VCPU_SPRG0(r4)
740         ld      r6, VCPU_SPRG1(r4)
741         ld      r7, VCPU_SPRG2(r4)
742         ld      r8, VCPU_SPRG3(r4)
743         mtspr   SPRN_SPRG0, r5
744         mtspr   SPRN_SPRG1, r6
745         mtspr   SPRN_SPRG2, r7
746         mtspr   SPRN_SPRG3, r8
747
748         /* Load up DAR and DSISR */
749         ld      r5, VCPU_DAR(r4)
750         lwz     r6, VCPU_DSISR(r4)
751         mtspr   SPRN_DAR, r5
752         mtspr   SPRN_DSISR, r6
753
754 BEGIN_FTR_SECTION
755         /* Restore AMR and UAMOR, set AMOR to all 1s */
756         ld      r5,VCPU_AMR(r4)
757         ld      r6,VCPU_UAMOR(r4)
758         li      r7,-1
759         mtspr   SPRN_AMR,r5
760         mtspr   SPRN_UAMOR,r6
761         mtspr   SPRN_AMOR,r7
762 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
763
764         /* Restore state of CTRL run bit; assume 1 on entry */
765         lwz     r5,VCPU_CTRL(r4)
766         andi.   r5,r5,1
767         bne     4f
768         mfspr   r6,SPRN_CTRLF
769         clrrdi  r6,r6,1
770         mtspr   SPRN_CTRLT,r6
771 4:
772         ld      r6, VCPU_CTR(r4)
773         lwz     r7, VCPU_XER(r4)
774
775         mtctr   r6
776         mtxer   r7
777
778 kvmppc_cede_reentry:            /* r4 = vcpu, r13 = paca */
779         ld      r10, VCPU_PC(r4)
780         ld      r11, VCPU_MSR(r4)
781         ld      r6, VCPU_SRR0(r4)
782         ld      r7, VCPU_SRR1(r4)
783         mtspr   SPRN_SRR0, r6
784         mtspr   SPRN_SRR1, r7
785
786 deliver_guest_interrupt:
787         /* r11 = vcpu->arch.msr & ~MSR_HV */
788         rldicl  r11, r11, 63 - MSR_HV_LG, 1
789         rotldi  r11, r11, 1 + MSR_HV_LG
790         ori     r11, r11, MSR_ME
791
792         /* Check if we can deliver an external or decrementer interrupt now */
793         ld      r0, VCPU_PENDING_EXC(r4)
794         rldicl  r0, r0, 64 - BOOK3S_IRQPRIO_EXTERNAL_LEVEL, 63
795         cmpdi   cr1, r0, 0
796         andi.   r8, r11, MSR_EE
797 BEGIN_FTR_SECTION
798         mfspr   r8, SPRN_LPCR
799         /* Insert EXTERNAL_LEVEL bit into LPCR at the MER bit position */
800         rldimi  r8, r0, LPCR_MER_SH, 63 - LPCR_MER_SH
801         mtspr   SPRN_LPCR, r8
802         isync
803 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
804         beq     5f
805         li      r0, BOOK3S_INTERRUPT_EXTERNAL
806         bne     cr1, 12f
807         mfspr   r0, SPRN_DEC
808         cmpwi   r0, 0
809         li      r0, BOOK3S_INTERRUPT_DECREMENTER
810         bge     5f
811
812 12:     mtspr   SPRN_SRR0, r10
813         mr      r10,r0
814         mtspr   SPRN_SRR1, r11
815         ld      r11, VCPU_INTR_MSR(r4)
816 5:
817
818 /*
819  * Required state:
820  * R4 = vcpu
821  * R10: value for HSRR0
822  * R11: value for HSRR1
823  * R13 = PACA
824  */
825 fast_guest_return:
826         li      r0,0
827         stb     r0,VCPU_CEDED(r4)       /* cancel cede */
828         mtspr   SPRN_HSRR0,r10
829         mtspr   SPRN_HSRR1,r11
830
831         /* Activate guest mode, so faults get handled by KVM */
832         li      r9, KVM_GUEST_MODE_GUEST_HV
833         stb     r9, HSTATE_IN_GUEST(r13)
834
835         /* Enter guest */
836
837 BEGIN_FTR_SECTION
838         ld      r5, VCPU_CFAR(r4)
839         mtspr   SPRN_CFAR, r5
840 END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
841 BEGIN_FTR_SECTION
842         ld      r0, VCPU_PPR(r4)
843 END_FTR_SECTION_IFSET(CPU_FTR_HAS_PPR)
844
845         ld      r5, VCPU_LR(r4)
846         lwz     r6, VCPU_CR(r4)
847         mtlr    r5
848         mtcr    r6
849
850         ld      r1, VCPU_GPR(R1)(r4)
851         ld      r2, VCPU_GPR(R2)(r4)
852         ld      r3, VCPU_GPR(R3)(r4)
853         ld      r5, VCPU_GPR(R5)(r4)
854         ld      r6, VCPU_GPR(R6)(r4)
855         ld      r7, VCPU_GPR(R7)(r4)
856         ld      r8, VCPU_GPR(R8)(r4)
857         ld      r9, VCPU_GPR(R9)(r4)
858         ld      r10, VCPU_GPR(R10)(r4)
859         ld      r11, VCPU_GPR(R11)(r4)
860         ld      r12, VCPU_GPR(R12)(r4)
861         ld      r13, VCPU_GPR(R13)(r4)
862
863 BEGIN_FTR_SECTION
864         mtspr   SPRN_PPR, r0
865 END_FTR_SECTION_IFSET(CPU_FTR_HAS_PPR)
866         ld      r0, VCPU_GPR(R0)(r4)
867         ld      r4, VCPU_GPR(R4)(r4)
868
869         hrfid
870         b       .
871
872 /******************************************************************************
873  *                                                                            *
874  *                               Exit code                                    *
875  *                                                                            *
876  *****************************************************************************/
877
878 /*
879  * We come here from the first-level interrupt handlers.
880  */
881         .globl  kvmppc_interrupt_hv
882 kvmppc_interrupt_hv:
883         /*
884          * Register contents:
885          * R12          = interrupt vector
886          * R13          = PACA
887          * guest CR, R12 saved in shadow VCPU SCRATCH1/0
888          * guest R13 saved in SPRN_SCRATCH0
889          */
890         /* abuse host_r2 as third scratch area; we get r2 from PACATOC(r13) */
891         std     r9, HSTATE_HOST_R2(r13)
892
893         lbz     r9, HSTATE_IN_GUEST(r13)
894         cmpwi   r9, KVM_GUEST_MODE_HOST_HV
895         beq     kvmppc_bad_host_intr
896 #ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
897         cmpwi   r9, KVM_GUEST_MODE_GUEST
898         ld      r9, HSTATE_HOST_R2(r13)
899         beq     kvmppc_interrupt_pr
900 #endif
901         /* We're now back in the host but in guest MMU context */
902         li      r9, KVM_GUEST_MODE_HOST_HV
903         stb     r9, HSTATE_IN_GUEST(r13)
904
905         ld      r9, HSTATE_KVM_VCPU(r13)
906
907         /* Save registers */
908
909         std     r0, VCPU_GPR(R0)(r9)
910         std     r1, VCPU_GPR(R1)(r9)
911         std     r2, VCPU_GPR(R2)(r9)
912         std     r3, VCPU_GPR(R3)(r9)
913         std     r4, VCPU_GPR(R4)(r9)
914         std     r5, VCPU_GPR(R5)(r9)
915         std     r6, VCPU_GPR(R6)(r9)
916         std     r7, VCPU_GPR(R7)(r9)
917         std     r8, VCPU_GPR(R8)(r9)
918         ld      r0, HSTATE_HOST_R2(r13)
919         std     r0, VCPU_GPR(R9)(r9)
920         std     r10, VCPU_GPR(R10)(r9)
921         std     r11, VCPU_GPR(R11)(r9)
922         ld      r3, HSTATE_SCRATCH0(r13)
923         lwz     r4, HSTATE_SCRATCH1(r13)
924         std     r3, VCPU_GPR(R12)(r9)
925         stw     r4, VCPU_CR(r9)
926 BEGIN_FTR_SECTION
927         ld      r3, HSTATE_CFAR(r13)
928         std     r3, VCPU_CFAR(r9)
929 END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
930 BEGIN_FTR_SECTION
931         ld      r4, HSTATE_PPR(r13)
932         std     r4, VCPU_PPR(r9)
933 END_FTR_SECTION_IFSET(CPU_FTR_HAS_PPR)
934
935         /* Restore R1/R2 so we can handle faults */
936         ld      r1, HSTATE_HOST_R1(r13)
937         ld      r2, PACATOC(r13)
938
939         mfspr   r10, SPRN_SRR0
940         mfspr   r11, SPRN_SRR1
941         std     r10, VCPU_SRR0(r9)
942         std     r11, VCPU_SRR1(r9)
943         andi.   r0, r12, 2              /* need to read HSRR0/1? */
944         beq     1f
945         mfspr   r10, SPRN_HSRR0
946         mfspr   r11, SPRN_HSRR1
947         clrrdi  r12, r12, 2
948 1:      std     r10, VCPU_PC(r9)
949         std     r11, VCPU_MSR(r9)
950
951         GET_SCRATCH0(r3)
952         mflr    r4
953         std     r3, VCPU_GPR(R13)(r9)
954         std     r4, VCPU_LR(r9)
955
956         stw     r12,VCPU_TRAP(r9)
957
958         /* Save HEIR (HV emulation assist reg) in last_inst
959            if this is an HEI (HV emulation interrupt, e40) */
960         li      r3,KVM_INST_FETCH_FAILED
961 BEGIN_FTR_SECTION
962         cmpwi   r12,BOOK3S_INTERRUPT_H_EMUL_ASSIST
963         bne     11f
964         mfspr   r3,SPRN_HEIR
965 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
966 11:     stw     r3,VCPU_LAST_INST(r9)
967
968         /* these are volatile across C function calls */
969         mfctr   r3
970         mfxer   r4
971         std     r3, VCPU_CTR(r9)
972         stw     r4, VCPU_XER(r9)
973
974 BEGIN_FTR_SECTION
975         /* If this is a page table miss then see if it's theirs or ours */
976         cmpwi   r12, BOOK3S_INTERRUPT_H_DATA_STORAGE
977         beq     kvmppc_hdsi
978         cmpwi   r12, BOOK3S_INTERRUPT_H_INST_STORAGE
979         beq     kvmppc_hisi
980 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
981
982         /* See if this is a leftover HDEC interrupt */
983         cmpwi   r12,BOOK3S_INTERRUPT_HV_DECREMENTER
984         bne     2f
985         mfspr   r3,SPRN_HDEC
986         cmpwi   r3,0
987         bge     ignore_hdec
988 2:
989         /* See if this is an hcall we can handle in real mode */
990         cmpwi   r12,BOOK3S_INTERRUPT_SYSCALL
991         beq     hcall_try_real_mode
992
993         /* Only handle external interrupts here on arch 206 and later */
994 BEGIN_FTR_SECTION
995         b       ext_interrupt_to_host
996 END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_206)
997
998         /* External interrupt ? */
999         cmpwi   r12, BOOK3S_INTERRUPT_EXTERNAL
1000         bne+    ext_interrupt_to_host
1001
1002         /* External interrupt, first check for host_ipi. If this is
1003          * set, we know the host wants us out so let's do it now
1004          */
1005         bl      kvmppc_read_intr
1006         cmpdi   r3, 0
1007         bgt     ext_interrupt_to_host
1008
1009         /* Check if any CPU is heading out to the host, if so head out too */
1010         ld      r5, HSTATE_KVM_VCORE(r13)
1011         lwz     r0, VCORE_ENTRY_EXIT(r5)
1012         cmpwi   r0, 0x100
1013         bge     ext_interrupt_to_host
1014
1015         /* Return to guest after delivering any pending interrupt */
1016         mr      r4, r9
1017         b       deliver_guest_interrupt
1018
1019 ext_interrupt_to_host:
1020
1021 guest_exit_cont:                /* r9 = vcpu, r12 = trap, r13 = paca */
1022         /* Save more register state  */
1023         mfdar   r6
1024         mfdsisr r7
1025         std     r6, VCPU_DAR(r9)
1026         stw     r7, VCPU_DSISR(r9)
1027 BEGIN_FTR_SECTION
1028         /* don't overwrite fault_dar/fault_dsisr if HDSI */
1029         cmpwi   r12,BOOK3S_INTERRUPT_H_DATA_STORAGE
1030         beq     6f
1031 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
1032         std     r6, VCPU_FAULT_DAR(r9)
1033         stw     r7, VCPU_FAULT_DSISR(r9)
1034
1035         /* See if it is a machine check */
1036         cmpwi   r12, BOOK3S_INTERRUPT_MACHINE_CHECK
1037         beq     machine_check_realmode
1038 mc_cont:
1039
1040         /* Save guest CTRL register, set runlatch to 1 */
1041 6:      mfspr   r6,SPRN_CTRLF
1042         stw     r6,VCPU_CTRL(r9)
1043         andi.   r0,r6,1
1044         bne     4f
1045         ori     r6,r6,1
1046         mtspr   SPRN_CTRLT,r6
1047 4:
1048         /* Read the guest SLB and save it away */
1049         lwz     r0,VCPU_SLB_NR(r9)      /* number of entries in SLB */
1050         mtctr   r0
1051         li      r6,0
1052         addi    r7,r9,VCPU_SLB
1053         li      r5,0
1054 1:      slbmfee r8,r6
1055         andis.  r0,r8,SLB_ESID_V@h
1056         beq     2f
1057         add     r8,r8,r6                /* put index in */
1058         slbmfev r3,r6
1059         std     r8,VCPU_SLB_E(r7)
1060         std     r3,VCPU_SLB_V(r7)
1061         addi    r7,r7,VCPU_SLB_SIZE
1062         addi    r5,r5,1
1063 2:      addi    r6,r6,1
1064         bdnz    1b
1065         stw     r5,VCPU_SLB_MAX(r9)
1066
1067         /*
1068          * Save the guest PURR/SPURR
1069          */
1070 BEGIN_FTR_SECTION
1071         mfspr   r5,SPRN_PURR
1072         mfspr   r6,SPRN_SPURR
1073         ld      r7,VCPU_PURR(r9)
1074         ld      r8,VCPU_SPURR(r9)
1075         std     r5,VCPU_PURR(r9)
1076         std     r6,VCPU_SPURR(r9)
1077         subf    r5,r7,r5
1078         subf    r6,r8,r6
1079
1080         /*
1081          * Restore host PURR/SPURR and add guest times
1082          * so that the time in the guest gets accounted.
1083          */
1084         ld      r3,HSTATE_PURR(r13)
1085         ld      r4,HSTATE_SPURR(r13)
1086         add     r3,r3,r5
1087         add     r4,r4,r6
1088         mtspr   SPRN_PURR,r3
1089         mtspr   SPRN_SPURR,r4
1090 END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_201)
1091
1092         /* Save DEC */
1093         mfspr   r5,SPRN_DEC
1094         mftb    r6
1095         extsw   r5,r5
1096         add     r5,r5,r6
1097         std     r5,VCPU_DEC_EXPIRES(r9)
1098
1099 BEGIN_FTR_SECTION
1100         b       8f
1101 END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_207S)
1102         /* Turn on TM so we can access TFHAR/TFIAR/TEXASR */
1103         mfmsr   r8
1104         li      r0, 1
1105         rldimi  r8, r0, MSR_TM_LG, 63-MSR_TM_LG
1106         mtmsrd  r8
1107
1108         /* Save POWER8-specific registers */
1109         mfspr   r5, SPRN_IAMR
1110         mfspr   r6, SPRN_PSPB
1111         mfspr   r7, SPRN_FSCR
1112         std     r5, VCPU_IAMR(r9)
1113         stw     r6, VCPU_PSPB(r9)
1114         std     r7, VCPU_FSCR(r9)
1115         mfspr   r5, SPRN_IC
1116         mfspr   r6, SPRN_VTB
1117         mfspr   r7, SPRN_TAR
1118         std     r5, VCPU_IC(r9)
1119         std     r6, VCPU_VTB(r9)
1120         std     r7, VCPU_TAR(r9)
1121         mfspr   r5, SPRN_TFHAR
1122         mfspr   r6, SPRN_TFIAR
1123         mfspr   r7, SPRN_TEXASR
1124         mfspr   r8, SPRN_EBBHR
1125         std     r5, VCPU_TFHAR(r9)
1126         std     r6, VCPU_TFIAR(r9)
1127         std     r7, VCPU_TEXASR(r9)
1128         std     r8, VCPU_EBBHR(r9)
1129         mfspr   r5, SPRN_EBBRR
1130         mfspr   r6, SPRN_BESCR
1131         mfspr   r7, SPRN_CSIGR
1132         mfspr   r8, SPRN_TACR
1133         std     r5, VCPU_EBBRR(r9)
1134         std     r6, VCPU_BESCR(r9)
1135         std     r7, VCPU_CSIGR(r9)
1136         std     r8, VCPU_TACR(r9)
1137         mfspr   r5, SPRN_TCSCR
1138         mfspr   r6, SPRN_ACOP
1139         mfspr   r7, SPRN_PID
1140         mfspr   r8, SPRN_WORT
1141         std     r5, VCPU_TCSCR(r9)
1142         std     r6, VCPU_ACOP(r9)
1143         stw     r7, VCPU_GUEST_PID(r9)
1144         std     r8, VCPU_WORT(r9)
1145 8:
1146
1147         /* Save and reset AMR and UAMOR before turning on the MMU */
1148 BEGIN_FTR_SECTION
1149         mfspr   r5,SPRN_AMR
1150         mfspr   r6,SPRN_UAMOR
1151         std     r5,VCPU_AMR(r9)
1152         std     r6,VCPU_UAMOR(r9)
1153         li      r6,0
1154         mtspr   SPRN_AMR,r6
1155 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
1156
1157         /* Switch DSCR back to host value */
1158 BEGIN_FTR_SECTION
1159         mfspr   r8, SPRN_DSCR
1160         ld      r7, HSTATE_DSCR(r13)
1161         std     r8, VCPU_DSCR(r9)
1162         mtspr   SPRN_DSCR, r7
1163 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
1164
1165         /* Save non-volatile GPRs */
1166         std     r14, VCPU_GPR(R14)(r9)
1167         std     r15, VCPU_GPR(R15)(r9)
1168         std     r16, VCPU_GPR(R16)(r9)
1169         std     r17, VCPU_GPR(R17)(r9)
1170         std     r18, VCPU_GPR(R18)(r9)
1171         std     r19, VCPU_GPR(R19)(r9)
1172         std     r20, VCPU_GPR(R20)(r9)
1173         std     r21, VCPU_GPR(R21)(r9)
1174         std     r22, VCPU_GPR(R22)(r9)
1175         std     r23, VCPU_GPR(R23)(r9)
1176         std     r24, VCPU_GPR(R24)(r9)
1177         std     r25, VCPU_GPR(R25)(r9)
1178         std     r26, VCPU_GPR(R26)(r9)
1179         std     r27, VCPU_GPR(R27)(r9)
1180         std     r28, VCPU_GPR(R28)(r9)
1181         std     r29, VCPU_GPR(R29)(r9)
1182         std     r30, VCPU_GPR(R30)(r9)
1183         std     r31, VCPU_GPR(R31)(r9)
1184
1185         /* Save SPRGs */
1186         mfspr   r3, SPRN_SPRG0
1187         mfspr   r4, SPRN_SPRG1
1188         mfspr   r5, SPRN_SPRG2
1189         mfspr   r6, SPRN_SPRG3
1190         std     r3, VCPU_SPRG0(r9)
1191         std     r4, VCPU_SPRG1(r9)
1192         std     r5, VCPU_SPRG2(r9)
1193         std     r6, VCPU_SPRG3(r9)
1194
1195         /* save FP state */
1196         mr      r3, r9
1197         bl      kvmppc_save_fp
1198
1199         /* Increment yield count if they have a VPA */
1200         ld      r8, VCPU_VPA(r9)        /* do they have a VPA? */
1201         cmpdi   r8, 0
1202         beq     25f
1203         lwz     r3, LPPACA_YIELDCOUNT(r8)
1204         addi    r3, r3, 1
1205         stw     r3, LPPACA_YIELDCOUNT(r8)
1206         li      r3, 1
1207         stb     r3, VCPU_VPA_DIRTY(r9)
1208 25:
1209         /* Save PMU registers if requested */
1210         /* r8 and cr0.eq are live here */
1211         li      r3, 1
1212         sldi    r3, r3, 31              /* MMCR0_FC (freeze counters) bit */
1213         mfspr   r4, SPRN_MMCR0          /* save MMCR0 */
1214         mtspr   SPRN_MMCR0, r3          /* freeze all counters, disable ints */
1215         mfspr   r6, SPRN_MMCRA
1216 BEGIN_FTR_SECTION
1217         /* On P7, clear MMCRA in order to disable SDAR updates */
1218         li      r7, 0
1219         mtspr   SPRN_MMCRA, r7
1220 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_206)
1221         isync
1222         beq     21f                     /* if no VPA, save PMU stuff anyway */
1223         lbz     r7, LPPACA_PMCINUSE(r8)
1224         cmpwi   r7, 0                   /* did they ask for PMU stuff to be saved? */
1225         bne     21f
1226         std     r3, VCPU_MMCR(r9)       /* if not, set saved MMCR0 to FC */
1227         b       22f
1228 21:     mfspr   r5, SPRN_MMCR1
1229         mfspr   r7, SPRN_SIAR
1230         mfspr   r8, SPRN_SDAR
1231         std     r4, VCPU_MMCR(r9)
1232         std     r5, VCPU_MMCR + 8(r9)
1233         std     r6, VCPU_MMCR + 16(r9)
1234         std     r7, VCPU_SIAR(r9)
1235         std     r8, VCPU_SDAR(r9)
1236         mfspr   r3, SPRN_PMC1
1237         mfspr   r4, SPRN_PMC2
1238         mfspr   r5, SPRN_PMC3
1239         mfspr   r6, SPRN_PMC4
1240         mfspr   r7, SPRN_PMC5
1241         mfspr   r8, SPRN_PMC6
1242 BEGIN_FTR_SECTION
1243         mfspr   r10, SPRN_PMC7
1244         mfspr   r11, SPRN_PMC8
1245 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201)
1246         stw     r3, VCPU_PMC(r9)
1247         stw     r4, VCPU_PMC + 4(r9)
1248         stw     r5, VCPU_PMC + 8(r9)
1249         stw     r6, VCPU_PMC + 12(r9)
1250         stw     r7, VCPU_PMC + 16(r9)
1251         stw     r8, VCPU_PMC + 20(r9)
1252 BEGIN_FTR_SECTION
1253         stw     r10, VCPU_PMC + 24(r9)
1254         stw     r11, VCPU_PMC + 28(r9)
1255 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201)
1256 BEGIN_FTR_SECTION
1257         mfspr   r4, SPRN_MMCR2
1258         mfspr   r5, SPRN_SIER
1259         mfspr   r6, SPRN_SPMC1
1260         mfspr   r7, SPRN_SPMC2
1261         mfspr   r8, SPRN_MMCRS
1262         std     r4, VCPU_MMCR + 24(r9)
1263         std     r5, VCPU_SIER(r9)
1264         stw     r6, VCPU_PMC + 24(r9)
1265         stw     r7, VCPU_PMC + 28(r9)
1266         std     r8, VCPU_MMCR + 32(r9)
1267         lis     r4, 0x8000
1268         mtspr   SPRN_MMCRS, r4
1269 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S)
1270 22:
1271         /* Clear out SLB */
1272         li      r5,0
1273         slbmte  r5,r5
1274         slbia
1275         ptesync
1276
1277 hdec_soon:                      /* r12 = trap, r13 = paca */
1278 BEGIN_FTR_SECTION
1279         b       32f
1280 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_201)
1281         /*
1282          * POWER7 guest -> host partition switch code.
1283          * We don't have to lock against tlbies but we do
1284          * have to coordinate the hardware threads.
1285          */
1286         /* Increment the threads-exiting-guest count in the 0xff00
1287            bits of vcore->entry_exit_count */
1288         lwsync
1289         ld      r5,HSTATE_KVM_VCORE(r13)
1290         addi    r6,r5,VCORE_ENTRY_EXIT
1291 41:     lwarx   r3,0,r6
1292         addi    r0,r3,0x100
1293         stwcx.  r0,0,r6
1294         bne     41b
1295         lwsync
1296
1297         /*
1298          * At this point we have an interrupt that we have to pass
1299          * up to the kernel or qemu; we can't handle it in real mode.
1300          * Thus we have to do a partition switch, so we have to
1301          * collect the other threads, if we are the first thread
1302          * to take an interrupt.  To do this, we set the HDEC to 0,
1303          * which causes an HDEC interrupt in all threads within 2ns
1304          * because the HDEC register is shared between all 4 threads.
1305          * However, we don't need to bother if this is an HDEC
1306          * interrupt, since the other threads will already be on their
1307          * way here in that case.
1308          */
1309         cmpwi   r3,0x100        /* Are we the first here? */
1310         bge     43f
1311         cmpwi   r12,BOOK3S_INTERRUPT_HV_DECREMENTER
1312         beq     40f
1313         li      r0,0
1314         mtspr   SPRN_HDEC,r0
1315 40:
1316         /*
1317          * Send an IPI to any napping threads, since an HDEC interrupt
1318          * doesn't wake CPUs up from nap.
1319          */
1320         lwz     r3,VCORE_NAPPING_THREADS(r5)
1321         lbz     r4,HSTATE_PTID(r13)
1322         li      r0,1
1323         sld     r0,r0,r4
1324         andc.   r3,r3,r0                /* no sense IPI'ing ourselves */
1325         beq     43f
1326         mulli   r4,r4,PACA_SIZE         /* get paca for thread 0 */
1327         subf    r6,r4,r13
1328 42:     andi.   r0,r3,1
1329         beq     44f
1330         ld      r8,HSTATE_XICS_PHYS(r6) /* get thread's XICS reg addr */
1331         li      r0,IPI_PRIORITY
1332         li      r7,XICS_MFRR
1333         stbcix  r0,r7,r8                /* trigger the IPI */
1334 44:     srdi.   r3,r3,1
1335         addi    r6,r6,PACA_SIZE
1336         bne     42b
1337
1338 secondary_too_late:
1339         /* Secondary threads wait for primary to do partition switch */
1340 43:     ld      r5,HSTATE_KVM_VCORE(r13)
1341         ld      r4,VCORE_KVM(r5)        /* pointer to struct kvm */
1342         lbz     r3,HSTATE_PTID(r13)
1343         cmpwi   r3,0
1344         beq     15f
1345         HMT_LOW
1346 13:     lbz     r3,VCORE_IN_GUEST(r5)
1347         cmpwi   r3,0
1348         bne     13b
1349         HMT_MEDIUM
1350         b       16f
1351
1352         /* Primary thread waits for all the secondaries to exit guest */
1353 15:     lwz     r3,VCORE_ENTRY_EXIT(r5)
1354         srwi    r0,r3,8
1355         clrldi  r3,r3,56
1356         cmpw    r3,r0
1357         bne     15b
1358         isync
1359
1360         /* Primary thread switches back to host partition */
1361         ld      r6,KVM_HOST_SDR1(r4)
1362         lwz     r7,KVM_HOST_LPID(r4)
1363         li      r8,LPID_RSVD            /* switch to reserved LPID */
1364         mtspr   SPRN_LPID,r8
1365         ptesync
1366         mtspr   SPRN_SDR1,r6            /* switch to partition page table */
1367         mtspr   SPRN_LPID,r7
1368         isync
1369
1370 BEGIN_FTR_SECTION
1371         /* DPDES is shared between threads */
1372         mfspr   r7, SPRN_DPDES
1373         std     r7, VCORE_DPDES(r5)
1374         /* clear DPDES so we don't get guest doorbells in the host */
1375         li      r8, 0
1376         mtspr   SPRN_DPDES, r8
1377 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S)
1378
1379         /* Subtract timebase offset from timebase */
1380         ld      r8,VCORE_TB_OFFSET(r5)
1381         cmpdi   r8,0
1382         beq     17f
1383         mftb    r6                      /* current host timebase */
1384         subf    r8,r8,r6
1385         mtspr   SPRN_TBU40,r8           /* update upper 40 bits */
1386         mftb    r7                      /* check if lower 24 bits overflowed */
1387         clrldi  r6,r6,40
1388         clrldi  r7,r7,40
1389         cmpld   r7,r6
1390         bge     17f
1391         addis   r8,r8,0x100             /* if so, increment upper 40 bits */
1392         mtspr   SPRN_TBU40,r8
1393
1394         /* Reset PCR */
1395 17:     ld      r0, VCORE_PCR(r5)
1396         cmpdi   r0, 0
1397         beq     18f
1398         li      r0, 0
1399         mtspr   SPRN_PCR, r0
1400 18:
1401         /* Signal secondary CPUs to continue */
1402         stb     r0,VCORE_IN_GUEST(r5)
1403         lis     r8,0x7fff               /* MAX_INT@h */
1404         mtspr   SPRN_HDEC,r8
1405
1406 16:     ld      r8,KVM_HOST_LPCR(r4)
1407         mtspr   SPRN_LPCR,r8
1408         isync
1409         b       33f
1410
1411         /*
1412          * PPC970 guest -> host partition switch code.
1413          * We have to lock against concurrent tlbies, and
1414          * we have to flush the whole TLB.
1415          */
1416 32:     ld      r5,HSTATE_KVM_VCORE(r13)
1417         ld      r4,VCORE_KVM(r5)        /* pointer to struct kvm */
1418
1419         /* Take the guest's tlbie_lock */
1420 #ifdef __BIG_ENDIAN__
1421         lwz     r8,PACA_LOCK_TOKEN(r13)
1422 #else
1423         lwz     r8,PACAPACAINDEX(r13)
1424 #endif
1425         addi    r3,r4,KVM_TLBIE_LOCK
1426 24:     lwarx   r0,0,r3
1427         cmpwi   r0,0
1428         bne     24b
1429         stwcx.  r8,0,r3
1430         bne     24b
1431         isync
1432
1433         ld      r7,KVM_HOST_LPCR(r4)    /* use kvm->arch.host_lpcr for HID4 */
1434         li      r0,0x18f
1435         rotldi  r0,r0,HID4_LPID5_SH     /* all lpid bits in HID4 = 1 */
1436         or      r0,r7,r0
1437         ptesync
1438         sync
1439         mtspr   SPRN_HID4,r0            /* switch to reserved LPID */
1440         isync
1441         li      r0,0
1442         stw     r0,0(r3)                /* drop guest tlbie_lock */
1443
1444         /* invalidate the whole TLB */
1445         li      r0,256
1446         mtctr   r0
1447         li      r6,0
1448 25:     tlbiel  r6
1449         addi    r6,r6,0x1000
1450         bdnz    25b
1451         ptesync
1452
1453         /* take native_tlbie_lock */
1454         ld      r3,toc_tlbie_lock@toc(2)
1455 24:     lwarx   r0,0,r3
1456         cmpwi   r0,0
1457         bne     24b
1458         stwcx.  r8,0,r3
1459         bne     24b
1460         isync
1461
1462         ld      r6,KVM_HOST_SDR1(r4)
1463         mtspr   SPRN_SDR1,r6            /* switch to host page table */
1464
1465         /* Set up host HID4 value */
1466         sync
1467         mtspr   SPRN_HID4,r7
1468         isync
1469         li      r0,0
1470         stw     r0,0(r3)                /* drop native_tlbie_lock */
1471
1472         lis     r8,0x7fff               /* MAX_INT@h */
1473         mtspr   SPRN_HDEC,r8
1474
1475         /* Disable HDEC interrupts */
1476         mfspr   r0,SPRN_HID0
1477         li      r3,0
1478         rldimi  r0,r3, HID0_HDICE_SH, 64-HID0_HDICE_SH-1
1479         sync
1480         mtspr   SPRN_HID0,r0
1481         mfspr   r0,SPRN_HID0
1482         mfspr   r0,SPRN_HID0
1483         mfspr   r0,SPRN_HID0
1484         mfspr   r0,SPRN_HID0
1485         mfspr   r0,SPRN_HID0
1486         mfspr   r0,SPRN_HID0
1487
1488         /* load host SLB entries */
1489 33:     ld      r8,PACA_SLBSHADOWPTR(r13)
1490
1491         .rept   SLB_NUM_BOLTED
1492         ld      r5,SLBSHADOW_SAVEAREA(r8)
1493         ld      r6,SLBSHADOW_SAVEAREA+8(r8)
1494         andis.  r7,r5,SLB_ESID_V@h
1495         beq     1f
1496         slbmte  r6,r5
1497 1:      addi    r8,r8,16
1498         .endr
1499
1500         /* Unset guest mode */
1501         li      r0, KVM_GUEST_MODE_NONE
1502         stb     r0, HSTATE_IN_GUEST(r13)
1503
1504         ld      r0, 112+PPC_LR_STKOFF(r1)
1505         addi    r1, r1, 112
1506         mtlr    r0
1507         blr
1508
1509 /*
1510  * Check whether an HDSI is an HPTE not found fault or something else.
1511  * If it is an HPTE not found fault that is due to the guest accessing
1512  * a page that they have mapped but which we have paged out, then
1513  * we continue on with the guest exit path.  In all other cases,
1514  * reflect the HDSI to the guest as a DSI.
1515  */
1516 kvmppc_hdsi:
1517         mfspr   r4, SPRN_HDAR
1518         mfspr   r6, SPRN_HDSISR
1519         /* HPTE not found fault or protection fault? */
1520         andis.  r0, r6, (DSISR_NOHPTE | DSISR_PROTFAULT)@h
1521         beq     1f                      /* if not, send it to the guest */
1522         andi.   r0, r11, MSR_DR         /* data relocation enabled? */
1523         beq     3f
1524         clrrdi  r0, r4, 28
1525         PPC_SLBFEE_DOT(R5, R0)          /* if so, look up SLB */
1526         bne     1f                      /* if no SLB entry found */
1527 4:      std     r4, VCPU_FAULT_DAR(r9)
1528         stw     r6, VCPU_FAULT_DSISR(r9)
1529
1530         /* Search the hash table. */
1531         mr      r3, r9                  /* vcpu pointer */
1532         li      r7, 1                   /* data fault */
1533         bl      .kvmppc_hpte_hv_fault
1534         ld      r9, HSTATE_KVM_VCPU(r13)
1535         ld      r10, VCPU_PC(r9)
1536         ld      r11, VCPU_MSR(r9)
1537         li      r12, BOOK3S_INTERRUPT_H_DATA_STORAGE
1538         cmpdi   r3, 0                   /* retry the instruction */
1539         beq     6f
1540         cmpdi   r3, -1                  /* handle in kernel mode */
1541         beq     guest_exit_cont
1542         cmpdi   r3, -2                  /* MMIO emulation; need instr word */
1543         beq     2f
1544
1545         /* Synthesize a DSI for the guest */
1546         ld      r4, VCPU_FAULT_DAR(r9)
1547         mr      r6, r3
1548 1:      mtspr   SPRN_DAR, r4
1549         mtspr   SPRN_DSISR, r6
1550         mtspr   SPRN_SRR0, r10
1551         mtspr   SPRN_SRR1, r11
1552         li      r10, BOOK3S_INTERRUPT_DATA_STORAGE
1553         ld      r11, VCPU_INTR_MSR(r9)
1554 fast_interrupt_c_return:
1555 6:      ld      r7, VCPU_CTR(r9)
1556         lwz     r8, VCPU_XER(r9)
1557         mtctr   r7
1558         mtxer   r8
1559         mr      r4, r9
1560         b       fast_guest_return
1561
1562 3:      ld      r5, VCPU_KVM(r9)        /* not relocated, use VRMA */
1563         ld      r5, KVM_VRMA_SLB_V(r5)
1564         b       4b
1565
1566         /* If this is for emulated MMIO, load the instruction word */
1567 2:      li      r8, KVM_INST_FETCH_FAILED       /* In case lwz faults */
1568
1569         /* Set guest mode to 'jump over instruction' so if lwz faults
1570          * we'll just continue at the next IP. */
1571         li      r0, KVM_GUEST_MODE_SKIP
1572         stb     r0, HSTATE_IN_GUEST(r13)
1573
1574         /* Do the access with MSR:DR enabled */
1575         mfmsr   r3
1576         ori     r4, r3, MSR_DR          /* Enable paging for data */
1577         mtmsrd  r4
1578         lwz     r8, 0(r10)
1579         mtmsrd  r3
1580
1581         /* Store the result */
1582         stw     r8, VCPU_LAST_INST(r9)
1583
1584         /* Unset guest mode. */
1585         li      r0, KVM_GUEST_MODE_HOST_HV
1586         stb     r0, HSTATE_IN_GUEST(r13)
1587         b       guest_exit_cont
1588
1589 /*
1590  * Similarly for an HISI, reflect it to the guest as an ISI unless
1591  * it is an HPTE not found fault for a page that we have paged out.
1592  */
1593 kvmppc_hisi:
1594         andis.  r0, r11, SRR1_ISI_NOPT@h
1595         beq     1f
1596         andi.   r0, r11, MSR_IR         /* instruction relocation enabled? */
1597         beq     3f
1598         clrrdi  r0, r10, 28
1599         PPC_SLBFEE_DOT(R5, R0)          /* if so, look up SLB */
1600         bne     1f                      /* if no SLB entry found */
1601 4:
1602         /* Search the hash table. */
1603         mr      r3, r9                  /* vcpu pointer */
1604         mr      r4, r10
1605         mr      r6, r11
1606         li      r7, 0                   /* instruction fault */
1607         bl      .kvmppc_hpte_hv_fault
1608         ld      r9, HSTATE_KVM_VCPU(r13)
1609         ld      r10, VCPU_PC(r9)
1610         ld      r11, VCPU_MSR(r9)
1611         li      r12, BOOK3S_INTERRUPT_H_INST_STORAGE
1612         cmpdi   r3, 0                   /* retry the instruction */
1613         beq     fast_interrupt_c_return
1614         cmpdi   r3, -1                  /* handle in kernel mode */
1615         beq     guest_exit_cont
1616
1617         /* Synthesize an ISI for the guest */
1618         mr      r11, r3
1619 1:      mtspr   SPRN_SRR0, r10
1620         mtspr   SPRN_SRR1, r11
1621         li      r10, BOOK3S_INTERRUPT_INST_STORAGE
1622         ld      r11, VCPU_INTR_MSR(r9)
1623         b       fast_interrupt_c_return
1624
1625 3:      ld      r6, VCPU_KVM(r9)        /* not relocated, use VRMA */
1626         ld      r5, KVM_VRMA_SLB_V(r6)
1627         b       4b
1628
1629 /*
1630  * Try to handle an hcall in real mode.
1631  * Returns to the guest if we handle it, or continues on up to
1632  * the kernel if we can't (i.e. if we don't have a handler for
1633  * it, or if the handler returns H_TOO_HARD).
1634  */
1635         .globl  hcall_try_real_mode
1636 hcall_try_real_mode:
1637         ld      r3,VCPU_GPR(R3)(r9)
1638         andi.   r0,r11,MSR_PR
1639         /* sc 1 from userspace - reflect to guest syscall */
1640         bne     sc_1_fast_return
1641         clrrdi  r3,r3,2
1642         cmpldi  r3,hcall_real_table_end - hcall_real_table
1643         bge     guest_exit_cont
1644         LOAD_REG_ADDR(r4, hcall_real_table)
1645         lwax    r3,r3,r4
1646         cmpwi   r3,0
1647         beq     guest_exit_cont
1648         add     r3,r3,r4
1649         mtctr   r3
1650         mr      r3,r9           /* get vcpu pointer */
1651         ld      r4,VCPU_GPR(R4)(r9)
1652         bctrl
1653         cmpdi   r3,H_TOO_HARD
1654         beq     hcall_real_fallback
1655         ld      r4,HSTATE_KVM_VCPU(r13)
1656         std     r3,VCPU_GPR(R3)(r4)
1657         ld      r10,VCPU_PC(r4)
1658         ld      r11,VCPU_MSR(r4)
1659         b       fast_guest_return
1660
1661 sc_1_fast_return:
1662         mtspr   SPRN_SRR0,r10
1663         mtspr   SPRN_SRR1,r11
1664         li      r10, BOOK3S_INTERRUPT_SYSCALL
1665         ld      r11, VCPU_INTR_MSR(r9)
1666         mr      r4,r9
1667         b       fast_guest_return
1668
1669         /* We've attempted a real mode hcall, but it's punted it back
1670          * to userspace.  We need to restore some clobbered volatiles
1671          * before resuming the pass-it-to-qemu path */
1672 hcall_real_fallback:
1673         li      r12,BOOK3S_INTERRUPT_SYSCALL
1674         ld      r9, HSTATE_KVM_VCPU(r13)
1675
1676         b       guest_exit_cont
1677
1678         .globl  hcall_real_table
1679 hcall_real_table:
1680         .long   0               /* 0 - unused */
1681         .long   .kvmppc_h_remove - hcall_real_table
1682         .long   .kvmppc_h_enter - hcall_real_table
1683         .long   .kvmppc_h_read - hcall_real_table
1684         .long   0               /* 0x10 - H_CLEAR_MOD */
1685         .long   0               /* 0x14 - H_CLEAR_REF */
1686         .long   .kvmppc_h_protect - hcall_real_table
1687         .long   0               /* 0x1c - H_GET_TCE */
1688         .long   .kvmppc_h_put_tce - hcall_real_table
1689         .long   0               /* 0x24 - H_SET_SPRG0 */
1690         .long   .kvmppc_h_set_dabr - hcall_real_table
1691         .long   0               /* 0x2c */
1692         .long   0               /* 0x30 */
1693         .long   0               /* 0x34 */
1694         .long   0               /* 0x38 */
1695         .long   0               /* 0x3c */
1696         .long   0               /* 0x40 */
1697         .long   0               /* 0x44 */
1698         .long   0               /* 0x48 */
1699         .long   0               /* 0x4c */
1700         .long   0               /* 0x50 */
1701         .long   0               /* 0x54 */
1702         .long   0               /* 0x58 */
1703         .long   0               /* 0x5c */
1704         .long   0               /* 0x60 */
1705 #ifdef CONFIG_KVM_XICS
1706         .long   .kvmppc_rm_h_eoi - hcall_real_table
1707         .long   .kvmppc_rm_h_cppr - hcall_real_table
1708         .long   .kvmppc_rm_h_ipi - hcall_real_table
1709         .long   0               /* 0x70 - H_IPOLL */
1710         .long   .kvmppc_rm_h_xirr - hcall_real_table
1711 #else
1712         .long   0               /* 0x64 - H_EOI */
1713         .long   0               /* 0x68 - H_CPPR */
1714         .long   0               /* 0x6c - H_IPI */
1715         .long   0               /* 0x70 - H_IPOLL */
1716         .long   0               /* 0x74 - H_XIRR */
1717 #endif
1718         .long   0               /* 0x78 */
1719         .long   0               /* 0x7c */
1720         .long   0               /* 0x80 */
1721         .long   0               /* 0x84 */
1722         .long   0               /* 0x88 */
1723         .long   0               /* 0x8c */
1724         .long   0               /* 0x90 */
1725         .long   0               /* 0x94 */
1726         .long   0               /* 0x98 */
1727         .long   0               /* 0x9c */
1728         .long   0               /* 0xa0 */
1729         .long   0               /* 0xa4 */
1730         .long   0               /* 0xa8 */
1731         .long   0               /* 0xac */
1732         .long   0               /* 0xb0 */
1733         .long   0               /* 0xb4 */
1734         .long   0               /* 0xb8 */
1735         .long   0               /* 0xbc */
1736         .long   0               /* 0xc0 */
1737         .long   0               /* 0xc4 */
1738         .long   0               /* 0xc8 */
1739         .long   0               /* 0xcc */
1740         .long   0               /* 0xd0 */
1741         .long   0               /* 0xd4 */
1742         .long   0               /* 0xd8 */
1743         .long   0               /* 0xdc */
1744         .long   .kvmppc_h_cede - hcall_real_table
1745         .long   0               /* 0xe4 */
1746         .long   0               /* 0xe8 */
1747         .long   0               /* 0xec */
1748         .long   0               /* 0xf0 */
1749         .long   0               /* 0xf4 */
1750         .long   0               /* 0xf8 */
1751         .long   0               /* 0xfc */
1752         .long   0               /* 0x100 */
1753         .long   0               /* 0x104 */
1754         .long   0               /* 0x108 */
1755         .long   0               /* 0x10c */
1756         .long   0               /* 0x110 */
1757         .long   0               /* 0x114 */
1758         .long   0               /* 0x118 */
1759         .long   0               /* 0x11c */
1760         .long   0               /* 0x120 */
1761         .long   .kvmppc_h_bulk_remove - hcall_real_table
1762         .long   0               /* 0x128 */
1763         .long   0               /* 0x12c */
1764         .long   0               /* 0x130 */
1765         .long   .kvmppc_h_set_xdabr - hcall_real_table
1766 hcall_real_table_end:
1767
1768 ignore_hdec:
1769         mr      r4,r9
1770         b       fast_guest_return
1771
1772 _GLOBAL(kvmppc_h_set_xdabr)
1773         andi.   r0, r5, DABRX_USER | DABRX_KERNEL
1774         beq     6f
1775         li      r0, DABRX_USER | DABRX_KERNEL | DABRX_BTI
1776         andc.   r0, r5, r0
1777         beq     3f
1778 6:      li      r3, H_PARAMETER
1779         blr
1780
1781 _GLOBAL(kvmppc_h_set_dabr)
1782         li      r5, DABRX_USER | DABRX_KERNEL
1783 3:
1784 BEGIN_FTR_SECTION
1785         b       2f
1786 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S)
1787         std     r4,VCPU_DABR(r3)
1788         stw     r5, VCPU_DABRX(r3)
1789         mtspr   SPRN_DABRX, r5
1790         /* Work around P7 bug where DABR can get corrupted on mtspr */
1791 1:      mtspr   SPRN_DABR,r4
1792         mfspr   r5, SPRN_DABR
1793         cmpd    r4, r5
1794         bne     1b
1795         isync
1796         li      r3,0
1797         blr
1798
1799         /* Emulate H_SET_DABR/X on P8 for the sake of compat mode guests */
1800 2:      rlwimi  r5, r4, 5, DAWRX_DR | DAWRX_DW
1801         rlwimi  r5, r4, 1, DAWRX_WT
1802         clrrdi  r4, r4, 3
1803         std     r4, VCPU_DAWR(r3)
1804         std     r5, VCPU_DAWRX(r3)
1805         mtspr   SPRN_DAWR, r4
1806         mtspr   SPRN_DAWRX, r5
1807         li      r3, 0
1808         blr
1809
1810 _GLOBAL(kvmppc_h_cede)
1811         ori     r11,r11,MSR_EE
1812         std     r11,VCPU_MSR(r3)
1813         li      r0,1
1814         stb     r0,VCPU_CEDED(r3)
1815         sync                    /* order setting ceded vs. testing prodded */
1816         lbz     r5,VCPU_PRODDED(r3)
1817         cmpwi   r5,0
1818         bne     kvm_cede_prodded
1819         li      r0,0            /* set trap to 0 to say hcall is handled */
1820         stw     r0,VCPU_TRAP(r3)
1821         li      r0,H_SUCCESS
1822         std     r0,VCPU_GPR(R3)(r3)
1823 BEGIN_FTR_SECTION
1824         b       kvm_cede_exit   /* just send it up to host on 970 */
1825 END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_206)
1826
1827         /*
1828          * Set our bit in the bitmask of napping threads unless all the
1829          * other threads are already napping, in which case we send this
1830          * up to the host.
1831          */
1832         ld      r5,HSTATE_KVM_VCORE(r13)
1833         lbz     r6,HSTATE_PTID(r13)
1834         lwz     r8,VCORE_ENTRY_EXIT(r5)
1835         clrldi  r8,r8,56
1836         li      r0,1
1837         sld     r0,r0,r6
1838         addi    r6,r5,VCORE_NAPPING_THREADS
1839 31:     lwarx   r4,0,r6
1840         or      r4,r4,r0
1841         PPC_POPCNTW(R7,R4)
1842         cmpw    r7,r8
1843         bge     kvm_cede_exit
1844         stwcx.  r4,0,r6
1845         bne     31b
1846         li      r0,NAPPING_CEDE
1847         stb     r0,HSTATE_NAPPING(r13)
1848         /* order napping_threads update vs testing entry_exit_count */
1849         lwsync
1850         lwz     r7,VCORE_ENTRY_EXIT(r5)
1851         cmpwi   r7,0x100
1852         bge     33f             /* another thread already exiting */
1853
1854 /*
1855  * Although not specifically required by the architecture, POWER7
1856  * preserves the following registers in nap mode, even if an SMT mode
1857  * switch occurs: SLB entries, PURR, SPURR, AMOR, UAMOR, AMR, SPRG0-3,
1858  * DAR, DSISR, DABR, DABRX, DSCR, PMCx, MMCRx, SIAR, SDAR.
1859  */
1860         /* Save non-volatile GPRs */
1861         std     r14, VCPU_GPR(R14)(r3)
1862         std     r15, VCPU_GPR(R15)(r3)
1863         std     r16, VCPU_GPR(R16)(r3)
1864         std     r17, VCPU_GPR(R17)(r3)
1865         std     r18, VCPU_GPR(R18)(r3)
1866         std     r19, VCPU_GPR(R19)(r3)
1867         std     r20, VCPU_GPR(R20)(r3)
1868         std     r21, VCPU_GPR(R21)(r3)
1869         std     r22, VCPU_GPR(R22)(r3)
1870         std     r23, VCPU_GPR(R23)(r3)
1871         std     r24, VCPU_GPR(R24)(r3)
1872         std     r25, VCPU_GPR(R25)(r3)
1873         std     r26, VCPU_GPR(R26)(r3)
1874         std     r27, VCPU_GPR(R27)(r3)
1875         std     r28, VCPU_GPR(R28)(r3)
1876         std     r29, VCPU_GPR(R29)(r3)
1877         std     r30, VCPU_GPR(R30)(r3)
1878         std     r31, VCPU_GPR(R31)(r3)
1879
1880         /* save FP state */
1881         bl      kvmppc_save_fp
1882
1883         /*
1884          * Take a nap until a decrementer or external or doobell interrupt
1885          * occurs, with PECE1, PECE0 and PECEDP set in LPCR
1886          */
1887         li      r0,1
1888         stb     r0,HSTATE_HWTHREAD_REQ(r13)
1889         mfspr   r5,SPRN_LPCR
1890         ori     r5,r5,LPCR_PECE0 | LPCR_PECE1
1891 BEGIN_FTR_SECTION
1892         oris    r5,r5,LPCR_PECEDP@h
1893 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S)
1894         mtspr   SPRN_LPCR,r5
1895         isync
1896         li      r0, 0
1897         std     r0, HSTATE_SCRATCH0(r13)
1898         ptesync
1899         ld      r0, HSTATE_SCRATCH0(r13)
1900 1:      cmpd    r0, r0
1901         bne     1b
1902         nap
1903         b       .
1904
1905 33:     mr      r4, r3
1906         li      r3, 0
1907         li      r12, 0
1908         b       34f
1909
1910 kvm_end_cede:
1911         /* get vcpu pointer */
1912         ld      r4, HSTATE_KVM_VCPU(r13)
1913
1914         /* Woken by external or decrementer interrupt */
1915         ld      r1, HSTATE_HOST_R1(r13)
1916
1917         /* load up FP state */
1918         bl      kvmppc_load_fp
1919
1920         /* Load NV GPRS */
1921         ld      r14, VCPU_GPR(R14)(r4)
1922         ld      r15, VCPU_GPR(R15)(r4)
1923         ld      r16, VCPU_GPR(R16)(r4)
1924         ld      r17, VCPU_GPR(R17)(r4)
1925         ld      r18, VCPU_GPR(R18)(r4)
1926         ld      r19, VCPU_GPR(R19)(r4)
1927         ld      r20, VCPU_GPR(R20)(r4)
1928         ld      r21, VCPU_GPR(R21)(r4)
1929         ld      r22, VCPU_GPR(R22)(r4)
1930         ld      r23, VCPU_GPR(R23)(r4)
1931         ld      r24, VCPU_GPR(R24)(r4)
1932         ld      r25, VCPU_GPR(R25)(r4)
1933         ld      r26, VCPU_GPR(R26)(r4)
1934         ld      r27, VCPU_GPR(R27)(r4)
1935         ld      r28, VCPU_GPR(R28)(r4)
1936         ld      r29, VCPU_GPR(R29)(r4)
1937         ld      r30, VCPU_GPR(R30)(r4)
1938         ld      r31, VCPU_GPR(R31)(r4)
1939  
1940         /* Check the wake reason in SRR1 to see why we got here */
1941         bl      kvmppc_check_wake_reason
1942
1943         /* clear our bit in vcore->napping_threads */
1944 34:     ld      r5,HSTATE_KVM_VCORE(r13)
1945         lbz     r7,HSTATE_PTID(r13)
1946         li      r0,1
1947         sld     r0,r0,r7
1948         addi    r6,r5,VCORE_NAPPING_THREADS
1949 32:     lwarx   r7,0,r6
1950         andc    r7,r7,r0
1951         stwcx.  r7,0,r6
1952         bne     32b
1953         li      r0,0
1954         stb     r0,HSTATE_NAPPING(r13)
1955
1956         /* See if the wake reason means we need to exit */
1957         stw     r12, VCPU_TRAP(r4)
1958         mr      r9, r4
1959         cmpdi   r3, 0
1960         bgt     guest_exit_cont
1961
1962         /* see if any other thread is already exiting */
1963         lwz     r0,VCORE_ENTRY_EXIT(r5)
1964         cmpwi   r0,0x100
1965         bge     guest_exit_cont
1966
1967         b       kvmppc_cede_reentry     /* if not go back to guest */
1968
1969         /* cede when already previously prodded case */
1970 kvm_cede_prodded:
1971         li      r0,0
1972         stb     r0,VCPU_PRODDED(r3)
1973         sync                    /* order testing prodded vs. clearing ceded */
1974         stb     r0,VCPU_CEDED(r3)
1975         li      r3,H_SUCCESS
1976         blr
1977
1978         /* we've ceded but we want to give control to the host */
1979 kvm_cede_exit:
1980         b       hcall_real_fallback
1981
1982         /* Try to handle a machine check in real mode */
1983 machine_check_realmode:
1984         mr      r3, r9          /* get vcpu pointer */
1985         bl      .kvmppc_realmode_machine_check
1986         nop
1987         cmpdi   r3, 0           /* continue exiting from guest? */
1988         ld      r9, HSTATE_KVM_VCPU(r13)
1989         li      r12, BOOK3S_INTERRUPT_MACHINE_CHECK
1990         beq     mc_cont
1991         /* If not, deliver a machine check.  SRR0/1 are already set */
1992         li      r10, BOOK3S_INTERRUPT_MACHINE_CHECK
1993         ld      r11, VCPU_INTR_MSR(r9)
1994         b       fast_interrupt_c_return
1995
1996 /*
1997  * Check the reason we woke from nap, and take appropriate action.
1998  * Returns:
1999  *      0 if nothing needs to be done
2000  *      1 if something happened that needs to be handled by the host
2001  *      -1 if there was a guest wakeup (IPI)
2002  *
2003  * Also sets r12 to the interrupt vector for any interrupt that needs
2004  * to be handled now by the host (0x500 for external interrupt), or zero.
2005  */
2006 kvmppc_check_wake_reason:
2007         mfspr   r6, SPRN_SRR1
2008 BEGIN_FTR_SECTION
2009         rlwinm  r6, r6, 45-31, 0xf      /* extract wake reason field (P8) */
2010 FTR_SECTION_ELSE
2011         rlwinm  r6, r6, 45-31, 0xe      /* P7 wake reason field is 3 bits */
2012 ALT_FTR_SECTION_END_IFSET(CPU_FTR_ARCH_207S)
2013         cmpwi   r6, 8                   /* was it an external interrupt? */
2014         li      r12, BOOK3S_INTERRUPT_EXTERNAL
2015         beq     kvmppc_read_intr        /* if so, see what it was */
2016         li      r3, 0
2017         li      r12, 0
2018         cmpwi   r6, 6                   /* was it the decrementer? */
2019         beq     0f
2020 BEGIN_FTR_SECTION
2021         cmpwi   r6, 5                   /* privileged doorbell? */
2022         beq     0f
2023         cmpwi   r6, 3                   /* hypervisor doorbell? */
2024         beq     3f
2025 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S)
2026         li      r3, 1                   /* anything else, return 1 */
2027 0:      blr
2028
2029         /* hypervisor doorbell */
2030 3:      li      r12, BOOK3S_INTERRUPT_H_DOORBELL
2031         li      r3, 1
2032         blr
2033
2034 /*
2035  * Determine what sort of external interrupt is pending (if any).
2036  * Returns:
2037  *      0 if no interrupt is pending
2038  *      1 if an interrupt is pending that needs to be handled by the host
2039  *      -1 if there was a guest wakeup IPI (which has now been cleared)
2040  */
2041 kvmppc_read_intr:
2042         /* see if a host IPI is pending */
2043         li      r3, 1
2044         lbz     r0, HSTATE_HOST_IPI(r13)
2045         cmpwi   r0, 0
2046         bne     1f
2047
2048         /* Now read the interrupt from the ICP */
2049         ld      r6, HSTATE_XICS_PHYS(r13)
2050         li      r7, XICS_XIRR
2051         cmpdi   r6, 0
2052         beq-    1f
2053         lwzcix  r0, r6, r7
2054         rlwinm. r3, r0, 0, 0xffffff
2055         sync
2056         beq     1f                      /* if nothing pending in the ICP */
2057
2058         /* We found something in the ICP...
2059          *
2060          * If it's not an IPI, stash it in the PACA and return to
2061          * the host, we don't (yet) handle directing real external
2062          * interrupts directly to the guest
2063          */
2064         cmpwi   r3, XICS_IPI            /* if there is, is it an IPI? */
2065         bne     42f
2066
2067         /* It's an IPI, clear the MFRR and EOI it */
2068         li      r3, 0xff
2069         li      r8, XICS_MFRR
2070         stbcix  r3, r6, r8              /* clear the IPI */
2071         stwcix  r0, r6, r7              /* EOI it */
2072         sync
2073
2074         /* We need to re-check host IPI now in case it got set in the
2075          * meantime. If it's clear, we bounce the interrupt to the
2076          * guest
2077          */
2078         lbz     r0, HSTATE_HOST_IPI(r13)
2079         cmpwi   r0, 0
2080         bne-    43f
2081
2082         /* OK, it's an IPI for us */
2083         li      r3, -1
2084 1:      blr
2085
2086 42:     /* It's not an IPI and it's for the host, stash it in the PACA
2087          * before exit, it will be picked up by the host ICP driver
2088          */
2089         stw     r0, HSTATE_SAVED_XIRR(r13)
2090         li      r3, 1
2091         b       1b
2092
2093 43:     /* We raced with the host, we need to resend that IPI, bummer */
2094         li      r0, IPI_PRIORITY
2095         stbcix  r0, r6, r8              /* set the IPI */
2096         sync
2097         li      r3, 1
2098         b       1b
2099
2100 /*
2101  * Save away FP, VMX and VSX registers.
2102  * r3 = vcpu pointer
2103  * N.B. r30 and r31 are volatile across this function,
2104  * thus it is not callable from C.
2105  */
2106 kvmppc_save_fp:
2107         mflr    r30
2108         mr      r31,r3
2109         mfmsr   r5
2110         ori     r8,r5,MSR_FP
2111 #ifdef CONFIG_ALTIVEC
2112 BEGIN_FTR_SECTION
2113         oris    r8,r8,MSR_VEC@h
2114 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
2115 #endif
2116 #ifdef CONFIG_VSX
2117 BEGIN_FTR_SECTION
2118         oris    r8,r8,MSR_VSX@h
2119 END_FTR_SECTION_IFSET(CPU_FTR_VSX)
2120 #endif
2121         mtmsrd  r8
2122         isync
2123         addi    r3,r3,VCPU_FPRS
2124         bl      .store_fp_state
2125 #ifdef CONFIG_ALTIVEC
2126 BEGIN_FTR_SECTION
2127         addi    r3,r31,VCPU_VRS
2128         bl      .store_vr_state
2129 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
2130 #endif
2131         mfspr   r6,SPRN_VRSAVE
2132         stw     r6,VCPU_VRSAVE(r3)
2133         mtlr    r30
2134         mtmsrd  r5
2135         isync
2136         blr
2137
2138 /*
2139  * Load up FP, VMX and VSX registers
2140  * r4 = vcpu pointer
2141  * N.B. r30 and r31 are volatile across this function,
2142  * thus it is not callable from C.
2143  */
2144 kvmppc_load_fp:
2145         mflr    r30
2146         mr      r31,r4
2147         mfmsr   r9
2148         ori     r8,r9,MSR_FP
2149 #ifdef CONFIG_ALTIVEC
2150 BEGIN_FTR_SECTION
2151         oris    r8,r8,MSR_VEC@h
2152 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
2153 #endif
2154 #ifdef CONFIG_VSX
2155 BEGIN_FTR_SECTION
2156         oris    r8,r8,MSR_VSX@h
2157 END_FTR_SECTION_IFSET(CPU_FTR_VSX)
2158 #endif
2159         mtmsrd  r8
2160         isync
2161         addi    r3,r4,VCPU_FPRS
2162         bl      .load_fp_state
2163 #ifdef CONFIG_ALTIVEC
2164 BEGIN_FTR_SECTION
2165         addi    r3,r31,VCPU_VRS
2166         bl      .load_vr_state
2167 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
2168 #endif
2169         lwz     r7,VCPU_VRSAVE(r4)
2170         mtspr   SPRN_VRSAVE,r7
2171         mtlr    r30
2172         mr      r4,r31
2173         blr
2174
2175 /*
2176  * We come here if we get any exception or interrupt while we are
2177  * executing host real mode code while in guest MMU context.
2178  * For now just spin, but we should do something better.
2179  */
2180 kvmppc_bad_host_intr:
2181         b       .