GNU Linux-libre 4.19.268-gnu1
[releases.git] / arch / powerpc / kvm / book3s_hv_rm_mmu.c
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  * Copyright 2010-2011 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
7  */
8
9 #include <linux/types.h>
10 #include <linux/string.h>
11 #include <linux/kvm.h>
12 #include <linux/kvm_host.h>
13 #include <linux/hugetlb.h>
14 #include <linux/module.h>
15 #include <linux/log2.h>
16
17 #include <asm/trace.h>
18 #include <asm/kvm_ppc.h>
19 #include <asm/kvm_book3s.h>
20 #include <asm/book3s/64/mmu-hash.h>
21 #include <asm/hvcall.h>
22 #include <asm/synch.h>
23 #include <asm/ppc-opcode.h>
24 #include <asm/pte-walk.h>
25
26 /* Translate address of a vmalloc'd thing to a linear map address */
27 static void *real_vmalloc_addr(void *x)
28 {
29         unsigned long addr = (unsigned long) x;
30         pte_t *p;
31         /*
32          * assume we don't have huge pages in vmalloc space...
33          * So don't worry about THP collapse/split. Called
34          * Only in realmode with MSR_EE = 0, hence won't need irq_save/restore.
35          */
36         p = find_init_mm_pte(addr, NULL);
37         if (!p || !pte_present(*p))
38                 return NULL;
39         addr = (pte_pfn(*p) << PAGE_SHIFT) | (addr & ~PAGE_MASK);
40         return __va(addr);
41 }
42
43 /* Return 1 if we need to do a global tlbie, 0 if we can use tlbiel */
44 static int global_invalidates(struct kvm *kvm)
45 {
46         int global;
47         int cpu;
48
49         /*
50          * If there is only one vcore, and it's currently running,
51          * as indicated by local_paca->kvm_hstate.kvm_vcpu being set,
52          * we can use tlbiel as long as we mark all other physical
53          * cores as potentially having stale TLB entries for this lpid.
54          * Otherwise, don't use tlbiel.
55          */
56         if (kvm->arch.online_vcores == 1 && local_paca->kvm_hstate.kvm_vcpu)
57                 global = 0;
58         else
59                 global = 1;
60
61         if (!global) {
62                 /* any other core might now have stale TLB entries... */
63                 smp_wmb();
64                 cpumask_setall(&kvm->arch.need_tlb_flush);
65                 cpu = local_paca->kvm_hstate.kvm_vcore->pcpu;
66                 /*
67                  * On POWER9, threads are independent but the TLB is shared,
68                  * so use the bit for the first thread to represent the core.
69                  */
70                 if (cpu_has_feature(CPU_FTR_ARCH_300))
71                         cpu = cpu_first_thread_sibling(cpu);
72                 cpumask_clear_cpu(cpu, &kvm->arch.need_tlb_flush);
73         }
74
75         return global;
76 }
77
78 /*
79  * Add this HPTE into the chain for the real page.
80  * Must be called with the chain locked; it unlocks the chain.
81  */
82 void kvmppc_add_revmap_chain(struct kvm *kvm, struct revmap_entry *rev,
83                              unsigned long *rmap, long pte_index, int realmode)
84 {
85         struct revmap_entry *head, *tail;
86         unsigned long i;
87
88         if (*rmap & KVMPPC_RMAP_PRESENT) {
89                 i = *rmap & KVMPPC_RMAP_INDEX;
90                 head = &kvm->arch.hpt.rev[i];
91                 if (realmode)
92                         head = real_vmalloc_addr(head);
93                 tail = &kvm->arch.hpt.rev[head->back];
94                 if (realmode)
95                         tail = real_vmalloc_addr(tail);
96                 rev->forw = i;
97                 rev->back = head->back;
98                 tail->forw = pte_index;
99                 head->back = pte_index;
100         } else {
101                 rev->forw = rev->back = pte_index;
102                 *rmap = (*rmap & ~KVMPPC_RMAP_INDEX) |
103                         pte_index | KVMPPC_RMAP_PRESENT;
104         }
105         unlock_rmap(rmap);
106 }
107 EXPORT_SYMBOL_GPL(kvmppc_add_revmap_chain);
108
109 /* Update the dirty bitmap of a memslot */
110 void kvmppc_update_dirty_map(struct kvm_memory_slot *memslot,
111                              unsigned long gfn, unsigned long psize)
112 {
113         unsigned long npages;
114
115         if (!psize || !memslot->dirty_bitmap)
116                 return;
117         npages = (psize + PAGE_SIZE - 1) / PAGE_SIZE;
118         gfn -= memslot->base_gfn;
119         set_dirty_bits_atomic(memslot->dirty_bitmap, gfn, npages);
120 }
121 EXPORT_SYMBOL_GPL(kvmppc_update_dirty_map);
122
123 static void kvmppc_set_dirty_from_hpte(struct kvm *kvm,
124                                 unsigned long hpte_v, unsigned long hpte_gr)
125 {
126         struct kvm_memory_slot *memslot;
127         unsigned long gfn;
128         unsigned long psize;
129
130         psize = kvmppc_actual_pgsz(hpte_v, hpte_gr);
131         gfn = hpte_rpn(hpte_gr, psize);
132         memslot = __gfn_to_memslot(kvm_memslots_raw(kvm), gfn);
133         if (memslot && memslot->dirty_bitmap)
134                 kvmppc_update_dirty_map(memslot, gfn, psize);
135 }
136
137 /* Returns a pointer to the revmap entry for the page mapped by a HPTE */
138 static unsigned long *revmap_for_hpte(struct kvm *kvm, unsigned long hpte_v,
139                                       unsigned long hpte_gr,
140                                       struct kvm_memory_slot **memslotp,
141                                       unsigned long *gfnp)
142 {
143         struct kvm_memory_slot *memslot;
144         unsigned long *rmap;
145         unsigned long gfn;
146
147         gfn = hpte_rpn(hpte_gr, kvmppc_actual_pgsz(hpte_v, hpte_gr));
148         memslot = __gfn_to_memslot(kvm_memslots_raw(kvm), gfn);
149         if (memslotp)
150                 *memslotp = memslot;
151         if (gfnp)
152                 *gfnp = gfn;
153         if (!memslot)
154                 return NULL;
155
156         rmap = real_vmalloc_addr(&memslot->arch.rmap[gfn - memslot->base_gfn]);
157         return rmap;
158 }
159
160 /* Remove this HPTE from the chain for a real page */
161 static void remove_revmap_chain(struct kvm *kvm, long pte_index,
162                                 struct revmap_entry *rev,
163                                 unsigned long hpte_v, unsigned long hpte_r)
164 {
165         struct revmap_entry *next, *prev;
166         unsigned long ptel, head;
167         unsigned long *rmap;
168         unsigned long rcbits;
169         struct kvm_memory_slot *memslot;
170         unsigned long gfn;
171
172         rcbits = hpte_r & (HPTE_R_R | HPTE_R_C);
173         ptel = rev->guest_rpte |= rcbits;
174         rmap = revmap_for_hpte(kvm, hpte_v, ptel, &memslot, &gfn);
175         if (!rmap)
176                 return;
177         lock_rmap(rmap);
178
179         head = *rmap & KVMPPC_RMAP_INDEX;
180         next = real_vmalloc_addr(&kvm->arch.hpt.rev[rev->forw]);
181         prev = real_vmalloc_addr(&kvm->arch.hpt.rev[rev->back]);
182         next->back = rev->back;
183         prev->forw = rev->forw;
184         if (head == pte_index) {
185                 head = rev->forw;
186                 if (head == pte_index)
187                         *rmap &= ~(KVMPPC_RMAP_PRESENT | KVMPPC_RMAP_INDEX);
188                 else
189                         *rmap = (*rmap & ~KVMPPC_RMAP_INDEX) | head;
190         }
191         *rmap |= rcbits << KVMPPC_RMAP_RC_SHIFT;
192         if (rcbits & HPTE_R_C)
193                 kvmppc_update_dirty_map(memslot, gfn,
194                                         kvmppc_actual_pgsz(hpte_v, hpte_r));
195         unlock_rmap(rmap);
196 }
197
198 long kvmppc_do_h_enter(struct kvm *kvm, unsigned long flags,
199                        long pte_index, unsigned long pteh, unsigned long ptel,
200                        pgd_t *pgdir, bool realmode, unsigned long *pte_idx_ret)
201 {
202         unsigned long i, pa, gpa, gfn, psize;
203         unsigned long slot_fn, hva;
204         __be64 *hpte;
205         struct revmap_entry *rev;
206         unsigned long g_ptel;
207         struct kvm_memory_slot *memslot;
208         unsigned hpage_shift;
209         bool is_ci;
210         unsigned long *rmap;
211         pte_t *ptep;
212         unsigned int writing;
213         unsigned long mmu_seq;
214         unsigned long rcbits, irq_flags = 0;
215
216         if (kvm_is_radix(kvm))
217                 return H_FUNCTION;
218         psize = kvmppc_actual_pgsz(pteh, ptel);
219         if (!psize)
220                 return H_PARAMETER;
221         writing = hpte_is_writable(ptel);
222         pteh &= ~(HPTE_V_HVLOCK | HPTE_V_ABSENT | HPTE_V_VALID);
223         ptel &= ~HPTE_GR_RESERVED;
224         g_ptel = ptel;
225
226         /* used later to detect if we might have been invalidated */
227         mmu_seq = kvm->mmu_notifier_seq;
228         smp_rmb();
229
230         /* Find the memslot (if any) for this address */
231         gpa = (ptel & HPTE_R_RPN) & ~(psize - 1);
232         gfn = gpa >> PAGE_SHIFT;
233         memslot = __gfn_to_memslot(kvm_memslots_raw(kvm), gfn);
234         pa = 0;
235         is_ci = false;
236         rmap = NULL;
237         if (!(memslot && !(memslot->flags & KVM_MEMSLOT_INVALID))) {
238                 /* Emulated MMIO - mark this with key=31 */
239                 pteh |= HPTE_V_ABSENT;
240                 ptel |= HPTE_R_KEY_HI | HPTE_R_KEY_LO;
241                 goto do_insert;
242         }
243
244         /* Check if the requested page fits entirely in the memslot. */
245         if (!slot_is_aligned(memslot, psize))
246                 return H_PARAMETER;
247         slot_fn = gfn - memslot->base_gfn;
248         rmap = &memslot->arch.rmap[slot_fn];
249
250         /* Translate to host virtual address */
251         hva = __gfn_to_hva_memslot(memslot, gfn);
252         /*
253          * If we had a page table table change after lookup, we would
254          * retry via mmu_notifier_retry.
255          */
256         if (!realmode)
257                 local_irq_save(irq_flags);
258         /*
259          * If called in real mode we have MSR_EE = 0. Otherwise
260          * we disable irq above.
261          */
262         ptep = __find_linux_pte(pgdir, hva, NULL, &hpage_shift);
263         if (ptep) {
264                 pte_t pte;
265                 unsigned int host_pte_size;
266
267                 if (hpage_shift)
268                         host_pte_size = 1ul << hpage_shift;
269                 else
270                         host_pte_size = PAGE_SIZE;
271                 /*
272                  * We should always find the guest page size
273                  * to <= host page size, if host is using hugepage
274                  */
275                 if (host_pte_size < psize) {
276                         if (!realmode)
277                                 local_irq_restore(flags);
278                         return H_PARAMETER;
279                 }
280                 pte = kvmppc_read_update_linux_pte(ptep, writing);
281                 if (pte_present(pte) && !pte_protnone(pte)) {
282                         if (writing && !__pte_write(pte))
283                                 /* make the actual HPTE be read-only */
284                                 ptel = hpte_make_readonly(ptel);
285                         is_ci = pte_ci(pte);
286                         pa = pte_pfn(pte) << PAGE_SHIFT;
287                         pa |= hva & (host_pte_size - 1);
288                         pa |= gpa & ~PAGE_MASK;
289                 }
290         }
291         if (!realmode)
292                 local_irq_restore(irq_flags);
293
294         ptel &= HPTE_R_KEY | HPTE_R_PP0 | (psize-1);
295         ptel |= pa;
296
297         if (pa)
298                 pteh |= HPTE_V_VALID;
299         else {
300                 pteh |= HPTE_V_ABSENT;
301                 ptel &= ~(HPTE_R_KEY_HI | HPTE_R_KEY_LO);
302         }
303
304         /*If we had host pte mapping then  Check WIMG */
305         if (ptep && !hpte_cache_flags_ok(ptel, is_ci)) {
306                 if (is_ci)
307                         return H_PARAMETER;
308                 /*
309                  * Allow guest to map emulated device memory as
310                  * uncacheable, but actually make it cacheable.
311                  */
312                 ptel &= ~(HPTE_R_W|HPTE_R_I|HPTE_R_G);
313                 ptel |= HPTE_R_M;
314         }
315
316         /* Find and lock the HPTEG slot to use */
317  do_insert:
318         if (pte_index >= kvmppc_hpt_npte(&kvm->arch.hpt))
319                 return H_PARAMETER;
320         if (likely((flags & H_EXACT) == 0)) {
321                 pte_index &= ~7UL;
322                 hpte = (__be64 *)(kvm->arch.hpt.virt + (pte_index << 4));
323                 for (i = 0; i < 8; ++i) {
324                         if ((be64_to_cpu(*hpte) & HPTE_V_VALID) == 0 &&
325                             try_lock_hpte(hpte, HPTE_V_HVLOCK | HPTE_V_VALID |
326                                           HPTE_V_ABSENT))
327                                 break;
328                         hpte += 2;
329                 }
330                 if (i == 8) {
331                         /*
332                          * Since try_lock_hpte doesn't retry (not even stdcx.
333                          * failures), it could be that there is a free slot
334                          * but we transiently failed to lock it.  Try again,
335                          * actually locking each slot and checking it.
336                          */
337                         hpte -= 16;
338                         for (i = 0; i < 8; ++i) {
339                                 u64 pte;
340                                 while (!try_lock_hpte(hpte, HPTE_V_HVLOCK))
341                                         cpu_relax();
342                                 pte = be64_to_cpu(hpte[0]);
343                                 if (!(pte & (HPTE_V_VALID | HPTE_V_ABSENT)))
344                                         break;
345                                 __unlock_hpte(hpte, pte);
346                                 hpte += 2;
347                         }
348                         if (i == 8)
349                                 return H_PTEG_FULL;
350                 }
351                 pte_index += i;
352         } else {
353                 hpte = (__be64 *)(kvm->arch.hpt.virt + (pte_index << 4));
354                 if (!try_lock_hpte(hpte, HPTE_V_HVLOCK | HPTE_V_VALID |
355                                    HPTE_V_ABSENT)) {
356                         /* Lock the slot and check again */
357                         u64 pte;
358
359                         while (!try_lock_hpte(hpte, HPTE_V_HVLOCK))
360                                 cpu_relax();
361                         pte = be64_to_cpu(hpte[0]);
362                         if (pte & (HPTE_V_VALID | HPTE_V_ABSENT)) {
363                                 __unlock_hpte(hpte, pte);
364                                 return H_PTEG_FULL;
365                         }
366                 }
367         }
368
369         /* Save away the guest's idea of the second HPTE dword */
370         rev = &kvm->arch.hpt.rev[pte_index];
371         if (realmode)
372                 rev = real_vmalloc_addr(rev);
373         if (rev) {
374                 rev->guest_rpte = g_ptel;
375                 note_hpte_modification(kvm, rev);
376         }
377
378         /* Link HPTE into reverse-map chain */
379         if (pteh & HPTE_V_VALID) {
380                 if (realmode)
381                         rmap = real_vmalloc_addr(rmap);
382                 lock_rmap(rmap);
383                 /* Check for pending invalidations under the rmap chain lock */
384                 if (mmu_notifier_retry(kvm, mmu_seq)) {
385                         /* inval in progress, write a non-present HPTE */
386                         pteh |= HPTE_V_ABSENT;
387                         pteh &= ~HPTE_V_VALID;
388                         ptel &= ~(HPTE_R_KEY_HI | HPTE_R_KEY_LO);
389                         unlock_rmap(rmap);
390                 } else {
391                         kvmppc_add_revmap_chain(kvm, rev, rmap, pte_index,
392                                                 realmode);
393                         /* Only set R/C in real HPTE if already set in *rmap */
394                         rcbits = *rmap >> KVMPPC_RMAP_RC_SHIFT;
395                         ptel &= rcbits | ~(HPTE_R_R | HPTE_R_C);
396                 }
397         }
398
399         /* Convert to new format on P9 */
400         if (cpu_has_feature(CPU_FTR_ARCH_300)) {
401                 ptel = hpte_old_to_new_r(pteh, ptel);
402                 pteh = hpte_old_to_new_v(pteh);
403         }
404         hpte[1] = cpu_to_be64(ptel);
405
406         /* Write the first HPTE dword, unlocking the HPTE and making it valid */
407         eieio();
408         __unlock_hpte(hpte, pteh);
409         asm volatile("ptesync" : : : "memory");
410
411         *pte_idx_ret = pte_index;
412         return H_SUCCESS;
413 }
414 EXPORT_SYMBOL_GPL(kvmppc_do_h_enter);
415
416 long kvmppc_h_enter(struct kvm_vcpu *vcpu, unsigned long flags,
417                     long pte_index, unsigned long pteh, unsigned long ptel)
418 {
419         return kvmppc_do_h_enter(vcpu->kvm, flags, pte_index, pteh, ptel,
420                                  vcpu->arch.pgdir, true,
421                                  &vcpu->arch.regs.gpr[4]);
422 }
423
424 #ifdef __BIG_ENDIAN__
425 #define LOCK_TOKEN      (*(u32 *)(&get_paca()->lock_token))
426 #else
427 #define LOCK_TOKEN      (*(u32 *)(&get_paca()->paca_index))
428 #endif
429
430 static inline int is_mmio_hpte(unsigned long v, unsigned long r)
431 {
432         return ((v & HPTE_V_ABSENT) &&
433                 (r & (HPTE_R_KEY_HI | HPTE_R_KEY_LO)) ==
434                 (HPTE_R_KEY_HI | HPTE_R_KEY_LO));
435 }
436
437 static inline void fixup_tlbie_lpid(unsigned long rb_value, unsigned long lpid)
438 {
439
440         if (cpu_has_feature(CPU_FTR_P9_TLBIE_ERAT_BUG)) {
441                 /* Radix flush for a hash guest */
442
443                 unsigned long rb,rs,prs,r,ric;
444
445                 rb = PPC_BIT(52); /* IS = 2 */
446                 rs = 0;  /* lpid = 0 */
447                 prs = 0; /* partition scoped */
448                 r = 1;   /* radix format */
449                 ric = 0; /* RIC_FLSUH_TLB */
450
451                 /*
452                  * Need the extra ptesync to make sure we don't
453                  * re-order the tlbie
454                  */
455                 asm volatile("ptesync": : :"memory");
456                 asm volatile(PPC_TLBIE_5(%0, %4, %3, %2, %1)
457                              : : "r"(rb), "i"(r), "i"(prs),
458                                "i"(ric), "r"(rs) : "memory");
459         }
460
461         if (cpu_has_feature(CPU_FTR_P9_TLBIE_STQ_BUG)) {
462                 asm volatile("ptesync": : :"memory");
463                 asm volatile(PPC_TLBIE_5(%0,%1,0,0,0) : :
464                              "r" (rb_value), "r" (lpid));
465         }
466 }
467
468 static void do_tlbies(struct kvm *kvm, unsigned long *rbvalues,
469                       long npages, int global, bool need_sync)
470 {
471         long i;
472
473         /*
474          * We use the POWER9 5-operand versions of tlbie and tlbiel here.
475          * Since we are using RIC=0 PRS=0 R=0, and P7/P8 tlbiel ignores
476          * the RS field, this is backwards-compatible with P7 and P8.
477          */
478         if (global) {
479                 if (need_sync)
480                         asm volatile("ptesync" : : : "memory");
481                 for (i = 0; i < npages; ++i) {
482                         asm volatile(PPC_TLBIE_5(%0,%1,0,0,0) : :
483                                      "r" (rbvalues[i]), "r" (kvm->arch.lpid));
484                 }
485
486                 fixup_tlbie_lpid(rbvalues[i - 1], kvm->arch.lpid);
487                 asm volatile("eieio; tlbsync; ptesync" : : : "memory");
488         } else {
489                 if (need_sync)
490                         asm volatile("ptesync" : : : "memory");
491                 for (i = 0; i < npages; ++i) {
492                         asm volatile(PPC_TLBIEL(%0,%1,0,0,0) : :
493                                      "r" (rbvalues[i]), "r" (0));
494                 }
495                 asm volatile("ptesync" : : : "memory");
496         }
497 }
498
499 long kvmppc_do_h_remove(struct kvm *kvm, unsigned long flags,
500                         unsigned long pte_index, unsigned long avpn,
501                         unsigned long *hpret)
502 {
503         __be64 *hpte;
504         unsigned long v, r, rb;
505         struct revmap_entry *rev;
506         u64 pte, orig_pte, pte_r;
507
508         if (kvm_is_radix(kvm))
509                 return H_FUNCTION;
510         if (pte_index >= kvmppc_hpt_npte(&kvm->arch.hpt))
511                 return H_PARAMETER;
512         hpte = (__be64 *)(kvm->arch.hpt.virt + (pte_index << 4));
513         while (!try_lock_hpte(hpte, HPTE_V_HVLOCK))
514                 cpu_relax();
515         pte = orig_pte = be64_to_cpu(hpte[0]);
516         pte_r = be64_to_cpu(hpte[1]);
517         if (cpu_has_feature(CPU_FTR_ARCH_300)) {
518                 pte = hpte_new_to_old_v(pte, pte_r);
519                 pte_r = hpte_new_to_old_r(pte_r);
520         }
521         if ((pte & (HPTE_V_ABSENT | HPTE_V_VALID)) == 0 ||
522             ((flags & H_AVPN) && (pte & ~0x7fUL) != avpn) ||
523             ((flags & H_ANDCOND) && (pte & avpn) != 0)) {
524                 __unlock_hpte(hpte, orig_pte);
525                 return H_NOT_FOUND;
526         }
527
528         rev = real_vmalloc_addr(&kvm->arch.hpt.rev[pte_index]);
529         v = pte & ~HPTE_V_HVLOCK;
530         if (v & HPTE_V_VALID) {
531                 hpte[0] &= ~cpu_to_be64(HPTE_V_VALID);
532                 rb = compute_tlbie_rb(v, pte_r, pte_index);
533                 do_tlbies(kvm, &rb, 1, global_invalidates(kvm), true);
534                 /*
535                  * The reference (R) and change (C) bits in a HPT
536                  * entry can be set by hardware at any time up until
537                  * the HPTE is invalidated and the TLB invalidation
538                  * sequence has completed.  This means that when
539                  * removing a HPTE, we need to re-read the HPTE after
540                  * the invalidation sequence has completed in order to
541                  * obtain reliable values of R and C.
542                  */
543                 remove_revmap_chain(kvm, pte_index, rev, v,
544                                     be64_to_cpu(hpte[1]));
545         }
546         r = rev->guest_rpte & ~HPTE_GR_RESERVED;
547         note_hpte_modification(kvm, rev);
548         unlock_hpte(hpte, 0);
549
550         if (is_mmio_hpte(v, pte_r))
551                 atomic64_inc(&kvm->arch.mmio_update);
552
553         if (v & HPTE_V_ABSENT)
554                 v = (v & ~HPTE_V_ABSENT) | HPTE_V_VALID;
555         hpret[0] = v;
556         hpret[1] = r;
557         return H_SUCCESS;
558 }
559 EXPORT_SYMBOL_GPL(kvmppc_do_h_remove);
560
561 long kvmppc_h_remove(struct kvm_vcpu *vcpu, unsigned long flags,
562                      unsigned long pte_index, unsigned long avpn)
563 {
564         return kvmppc_do_h_remove(vcpu->kvm, flags, pte_index, avpn,
565                                   &vcpu->arch.regs.gpr[4]);
566 }
567
568 long kvmppc_h_bulk_remove(struct kvm_vcpu *vcpu)
569 {
570         struct kvm *kvm = vcpu->kvm;
571         unsigned long *args = &vcpu->arch.regs.gpr[4];
572         __be64 *hp, *hptes[4];
573         unsigned long tlbrb[4];
574         long int i, j, k, n, found, indexes[4];
575         unsigned long flags, req, pte_index, rcbits;
576         int global;
577         long int ret = H_SUCCESS;
578         struct revmap_entry *rev, *revs[4];
579         u64 hp0, hp1;
580
581         if (kvm_is_radix(kvm))
582                 return H_FUNCTION;
583         global = global_invalidates(kvm);
584         for (i = 0; i < 4 && ret == H_SUCCESS; ) {
585                 n = 0;
586                 for (; i < 4; ++i) {
587                         j = i * 2;
588                         pte_index = args[j];
589                         flags = pte_index >> 56;
590                         pte_index &= ((1ul << 56) - 1);
591                         req = flags >> 6;
592                         flags &= 3;
593                         if (req == 3) {         /* no more requests */
594                                 i = 4;
595                                 break;
596                         }
597                         if (req != 1 || flags == 3 ||
598                             pte_index >= kvmppc_hpt_npte(&kvm->arch.hpt)) {
599                                 /* parameter error */
600                                 args[j] = ((0xa0 | flags) << 56) + pte_index;
601                                 ret = H_PARAMETER;
602                                 break;
603                         }
604                         hp = (__be64 *) (kvm->arch.hpt.virt + (pte_index << 4));
605                         /* to avoid deadlock, don't spin except for first */
606                         if (!try_lock_hpte(hp, HPTE_V_HVLOCK)) {
607                                 if (n)
608                                         break;
609                                 while (!try_lock_hpte(hp, HPTE_V_HVLOCK))
610                                         cpu_relax();
611                         }
612                         found = 0;
613                         hp0 = be64_to_cpu(hp[0]);
614                         hp1 = be64_to_cpu(hp[1]);
615                         if (cpu_has_feature(CPU_FTR_ARCH_300)) {
616                                 hp0 = hpte_new_to_old_v(hp0, hp1);
617                                 hp1 = hpte_new_to_old_r(hp1);
618                         }
619                         if (hp0 & (HPTE_V_ABSENT | HPTE_V_VALID)) {
620                                 switch (flags & 3) {
621                                 case 0:         /* absolute */
622                                         found = 1;
623                                         break;
624                                 case 1:         /* andcond */
625                                         if (!(hp0 & args[j + 1]))
626                                                 found = 1;
627                                         break;
628                                 case 2:         /* AVPN */
629                                         if ((hp0 & ~0x7fUL) == args[j + 1])
630                                                 found = 1;
631                                         break;
632                                 }
633                         }
634                         if (!found) {
635                                 hp[0] &= ~cpu_to_be64(HPTE_V_HVLOCK);
636                                 args[j] = ((0x90 | flags) << 56) + pte_index;
637                                 continue;
638                         }
639
640                         args[j] = ((0x80 | flags) << 56) + pte_index;
641                         rev = real_vmalloc_addr(&kvm->arch.hpt.rev[pte_index]);
642                         note_hpte_modification(kvm, rev);
643
644                         if (!(hp0 & HPTE_V_VALID)) {
645                                 /* insert R and C bits from PTE */
646                                 rcbits = rev->guest_rpte & (HPTE_R_R|HPTE_R_C);
647                                 args[j] |= rcbits << (56 - 5);
648                                 hp[0] = 0;
649                                 if (is_mmio_hpte(hp0, hp1))
650                                         atomic64_inc(&kvm->arch.mmio_update);
651                                 continue;
652                         }
653
654                         /* leave it locked */
655                         hp[0] &= ~cpu_to_be64(HPTE_V_VALID);
656                         tlbrb[n] = compute_tlbie_rb(hp0, hp1, pte_index);
657                         indexes[n] = j;
658                         hptes[n] = hp;
659                         revs[n] = rev;
660                         ++n;
661                 }
662
663                 if (!n)
664                         break;
665
666                 /* Now that we've collected a batch, do the tlbies */
667                 do_tlbies(kvm, tlbrb, n, global, true);
668
669                 /* Read PTE low words after tlbie to get final R/C values */
670                 for (k = 0; k < n; ++k) {
671                         j = indexes[k];
672                         pte_index = args[j] & ((1ul << 56) - 1);
673                         hp = hptes[k];
674                         rev = revs[k];
675                         remove_revmap_chain(kvm, pte_index, rev,
676                                 be64_to_cpu(hp[0]), be64_to_cpu(hp[1]));
677                         rcbits = rev->guest_rpte & (HPTE_R_R|HPTE_R_C);
678                         args[j] |= rcbits << (56 - 5);
679                         __unlock_hpte(hp, 0);
680                 }
681         }
682
683         return ret;
684 }
685
686 long kvmppc_h_protect(struct kvm_vcpu *vcpu, unsigned long flags,
687                       unsigned long pte_index, unsigned long avpn,
688                       unsigned long va)
689 {
690         struct kvm *kvm = vcpu->kvm;
691         __be64 *hpte;
692         struct revmap_entry *rev;
693         unsigned long v, r, rb, mask, bits;
694         u64 pte_v, pte_r;
695
696         if (kvm_is_radix(kvm))
697                 return H_FUNCTION;
698         if (pte_index >= kvmppc_hpt_npte(&kvm->arch.hpt))
699                 return H_PARAMETER;
700
701         hpte = (__be64 *)(kvm->arch.hpt.virt + (pte_index << 4));
702         while (!try_lock_hpte(hpte, HPTE_V_HVLOCK))
703                 cpu_relax();
704         v = pte_v = be64_to_cpu(hpte[0]);
705         if (cpu_has_feature(CPU_FTR_ARCH_300))
706                 v = hpte_new_to_old_v(v, be64_to_cpu(hpte[1]));
707         if ((v & (HPTE_V_ABSENT | HPTE_V_VALID)) == 0 ||
708             ((flags & H_AVPN) && (v & ~0x7fUL) != avpn)) {
709                 __unlock_hpte(hpte, pte_v);
710                 return H_NOT_FOUND;
711         }
712
713         pte_r = be64_to_cpu(hpte[1]);
714         bits = (flags << 55) & HPTE_R_PP0;
715         bits |= (flags << 48) & HPTE_R_KEY_HI;
716         bits |= flags & (HPTE_R_PP | HPTE_R_N | HPTE_R_KEY_LO);
717
718         /* Update guest view of 2nd HPTE dword */
719         mask = HPTE_R_PP0 | HPTE_R_PP | HPTE_R_N |
720                 HPTE_R_KEY_HI | HPTE_R_KEY_LO;
721         rev = real_vmalloc_addr(&kvm->arch.hpt.rev[pte_index]);
722         if (rev) {
723                 r = (rev->guest_rpte & ~mask) | bits;
724                 rev->guest_rpte = r;
725                 note_hpte_modification(kvm, rev);
726         }
727
728         /* Update HPTE */
729         if (v & HPTE_V_VALID) {
730                 /*
731                  * If the page is valid, don't let it transition from
732                  * readonly to writable.  If it should be writable, we'll
733                  * take a trap and let the page fault code sort it out.
734                  */
735                 r = (pte_r & ~mask) | bits;
736                 if (hpte_is_writable(r) && !hpte_is_writable(pte_r))
737                         r = hpte_make_readonly(r);
738                 /* If the PTE is changing, invalidate it first */
739                 if (r != pte_r) {
740                         rb = compute_tlbie_rb(v, r, pte_index);
741                         hpte[0] = cpu_to_be64((pte_v & ~HPTE_V_VALID) |
742                                               HPTE_V_ABSENT);
743                         do_tlbies(kvm, &rb, 1, global_invalidates(kvm), true);
744                         /* Don't lose R/C bit updates done by hardware */
745                         r |= be64_to_cpu(hpte[1]) & (HPTE_R_R | HPTE_R_C);
746                         hpte[1] = cpu_to_be64(r);
747                 }
748         }
749         unlock_hpte(hpte, pte_v & ~HPTE_V_HVLOCK);
750         asm volatile("ptesync" : : : "memory");
751         if (is_mmio_hpte(v, pte_r))
752                 atomic64_inc(&kvm->arch.mmio_update);
753
754         return H_SUCCESS;
755 }
756
757 long kvmppc_h_read(struct kvm_vcpu *vcpu, unsigned long flags,
758                    unsigned long pte_index)
759 {
760         struct kvm *kvm = vcpu->kvm;
761         __be64 *hpte;
762         unsigned long v, r;
763         int i, n = 1;
764         struct revmap_entry *rev = NULL;
765
766         if (kvm_is_radix(kvm))
767                 return H_FUNCTION;
768         if (pte_index >= kvmppc_hpt_npte(&kvm->arch.hpt))
769                 return H_PARAMETER;
770         if (flags & H_READ_4) {
771                 pte_index &= ~3;
772                 n = 4;
773         }
774         rev = real_vmalloc_addr(&kvm->arch.hpt.rev[pte_index]);
775         for (i = 0; i < n; ++i, ++pte_index) {
776                 hpte = (__be64 *)(kvm->arch.hpt.virt + (pte_index << 4));
777                 v = be64_to_cpu(hpte[0]) & ~HPTE_V_HVLOCK;
778                 r = be64_to_cpu(hpte[1]);
779                 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
780                         v = hpte_new_to_old_v(v, r);
781                         r = hpte_new_to_old_r(r);
782                 }
783                 if (v & HPTE_V_ABSENT) {
784                         v &= ~HPTE_V_ABSENT;
785                         v |= HPTE_V_VALID;
786                 }
787                 if (v & HPTE_V_VALID) {
788                         r = rev[i].guest_rpte | (r & (HPTE_R_R | HPTE_R_C));
789                         r &= ~HPTE_GR_RESERVED;
790                 }
791                 vcpu->arch.regs.gpr[4 + i * 2] = v;
792                 vcpu->arch.regs.gpr[5 + i * 2] = r;
793         }
794         return H_SUCCESS;
795 }
796
797 long kvmppc_h_clear_ref(struct kvm_vcpu *vcpu, unsigned long flags,
798                         unsigned long pte_index)
799 {
800         struct kvm *kvm = vcpu->kvm;
801         __be64 *hpte;
802         unsigned long v, r, gr;
803         struct revmap_entry *rev;
804         unsigned long *rmap;
805         long ret = H_NOT_FOUND;
806
807         if (kvm_is_radix(kvm))
808                 return H_FUNCTION;
809         if (pte_index >= kvmppc_hpt_npte(&kvm->arch.hpt))
810                 return H_PARAMETER;
811
812         rev = real_vmalloc_addr(&kvm->arch.hpt.rev[pte_index]);
813         hpte = (__be64 *)(kvm->arch.hpt.virt + (pte_index << 4));
814         while (!try_lock_hpte(hpte, HPTE_V_HVLOCK))
815                 cpu_relax();
816         v = be64_to_cpu(hpte[0]);
817         r = be64_to_cpu(hpte[1]);
818         if (!(v & (HPTE_V_VALID | HPTE_V_ABSENT)))
819                 goto out;
820
821         gr = rev->guest_rpte;
822         if (rev->guest_rpte & HPTE_R_R) {
823                 rev->guest_rpte &= ~HPTE_R_R;
824                 note_hpte_modification(kvm, rev);
825         }
826         if (v & HPTE_V_VALID) {
827                 gr |= r & (HPTE_R_R | HPTE_R_C);
828                 if (r & HPTE_R_R) {
829                         kvmppc_clear_ref_hpte(kvm, hpte, pte_index);
830                         rmap = revmap_for_hpte(kvm, v, gr, NULL, NULL);
831                         if (rmap) {
832                                 lock_rmap(rmap);
833                                 *rmap |= KVMPPC_RMAP_REFERENCED;
834                                 unlock_rmap(rmap);
835                         }
836                 }
837         }
838         vcpu->arch.regs.gpr[4] = gr;
839         ret = H_SUCCESS;
840  out:
841         unlock_hpte(hpte, v & ~HPTE_V_HVLOCK);
842         return ret;
843 }
844
845 long kvmppc_h_clear_mod(struct kvm_vcpu *vcpu, unsigned long flags,
846                         unsigned long pte_index)
847 {
848         struct kvm *kvm = vcpu->kvm;
849         __be64 *hpte;
850         unsigned long v, r, gr;
851         struct revmap_entry *rev;
852         long ret = H_NOT_FOUND;
853
854         if (kvm_is_radix(kvm))
855                 return H_FUNCTION;
856         if (pte_index >= kvmppc_hpt_npte(&kvm->arch.hpt))
857                 return H_PARAMETER;
858
859         rev = real_vmalloc_addr(&kvm->arch.hpt.rev[pte_index]);
860         hpte = (__be64 *)(kvm->arch.hpt.virt + (pte_index << 4));
861         while (!try_lock_hpte(hpte, HPTE_V_HVLOCK))
862                 cpu_relax();
863         v = be64_to_cpu(hpte[0]);
864         r = be64_to_cpu(hpte[1]);
865         if (!(v & (HPTE_V_VALID | HPTE_V_ABSENT)))
866                 goto out;
867
868         gr = rev->guest_rpte;
869         if (gr & HPTE_R_C) {
870                 rev->guest_rpte &= ~HPTE_R_C;
871                 note_hpte_modification(kvm, rev);
872         }
873         if (v & HPTE_V_VALID) {
874                 /* need to make it temporarily absent so C is stable */
875                 hpte[0] |= cpu_to_be64(HPTE_V_ABSENT);
876                 kvmppc_invalidate_hpte(kvm, hpte, pte_index);
877                 r = be64_to_cpu(hpte[1]);
878                 gr |= r & (HPTE_R_R | HPTE_R_C);
879                 if (r & HPTE_R_C) {
880                         hpte[1] = cpu_to_be64(r & ~HPTE_R_C);
881                         eieio();
882                         kvmppc_set_dirty_from_hpte(kvm, v, gr);
883                 }
884         }
885         vcpu->arch.regs.gpr[4] = gr;
886         ret = H_SUCCESS;
887  out:
888         unlock_hpte(hpte, v & ~HPTE_V_HVLOCK);
889         return ret;
890 }
891
892 void kvmppc_invalidate_hpte(struct kvm *kvm, __be64 *hptep,
893                         unsigned long pte_index)
894 {
895         unsigned long rb;
896         u64 hp0, hp1;
897
898         hptep[0] &= ~cpu_to_be64(HPTE_V_VALID);
899         hp0 = be64_to_cpu(hptep[0]);
900         hp1 = be64_to_cpu(hptep[1]);
901         if (cpu_has_feature(CPU_FTR_ARCH_300)) {
902                 hp0 = hpte_new_to_old_v(hp0, hp1);
903                 hp1 = hpte_new_to_old_r(hp1);
904         }
905         rb = compute_tlbie_rb(hp0, hp1, pte_index);
906         do_tlbies(kvm, &rb, 1, 1, true);
907 }
908 EXPORT_SYMBOL_GPL(kvmppc_invalidate_hpte);
909
910 void kvmppc_clear_ref_hpte(struct kvm *kvm, __be64 *hptep,
911                            unsigned long pte_index)
912 {
913         unsigned long rb;
914         unsigned char rbyte;
915         u64 hp0, hp1;
916
917         hp0 = be64_to_cpu(hptep[0]);
918         hp1 = be64_to_cpu(hptep[1]);
919         if (cpu_has_feature(CPU_FTR_ARCH_300)) {
920                 hp0 = hpte_new_to_old_v(hp0, hp1);
921                 hp1 = hpte_new_to_old_r(hp1);
922         }
923         rb = compute_tlbie_rb(hp0, hp1, pte_index);
924         rbyte = (be64_to_cpu(hptep[1]) & ~HPTE_R_R) >> 8;
925         /* modify only the second-last byte, which contains the ref bit */
926         *((char *)hptep + 14) = rbyte;
927         do_tlbies(kvm, &rb, 1, 1, false);
928 }
929 EXPORT_SYMBOL_GPL(kvmppc_clear_ref_hpte);
930
931 static int slb_base_page_shift[4] = {
932         24,     /* 16M */
933         16,     /* 64k */
934         34,     /* 16G */
935         20,     /* 1M, unsupported */
936 };
937
938 static struct mmio_hpte_cache_entry *mmio_cache_search(struct kvm_vcpu *vcpu,
939                 unsigned long eaddr, unsigned long slb_v, long mmio_update)
940 {
941         struct mmio_hpte_cache_entry *entry = NULL;
942         unsigned int pshift;
943         unsigned int i;
944
945         for (i = 0; i < MMIO_HPTE_CACHE_SIZE; i++) {
946                 entry = &vcpu->arch.mmio_cache.entry[i];
947                 if (entry->mmio_update == mmio_update) {
948                         pshift = entry->slb_base_pshift;
949                         if ((entry->eaddr >> pshift) == (eaddr >> pshift) &&
950                             entry->slb_v == slb_v)
951                                 return entry;
952                 }
953         }
954         return NULL;
955 }
956
957 static struct mmio_hpte_cache_entry *
958                         next_mmio_cache_entry(struct kvm_vcpu *vcpu)
959 {
960         unsigned int index = vcpu->arch.mmio_cache.index;
961
962         vcpu->arch.mmio_cache.index++;
963         if (vcpu->arch.mmio_cache.index == MMIO_HPTE_CACHE_SIZE)
964                 vcpu->arch.mmio_cache.index = 0;
965
966         return &vcpu->arch.mmio_cache.entry[index];
967 }
968
969 /* When called from virtmode, this func should be protected by
970  * preempt_disable(), otherwise, the holding of HPTE_V_HVLOCK
971  * can trigger deadlock issue.
972  */
973 long kvmppc_hv_find_lock_hpte(struct kvm *kvm, gva_t eaddr, unsigned long slb_v,
974                               unsigned long valid)
975 {
976         unsigned int i;
977         unsigned int pshift;
978         unsigned long somask;
979         unsigned long vsid, hash;
980         unsigned long avpn;
981         __be64 *hpte;
982         unsigned long mask, val;
983         unsigned long v, r, orig_v;
984
985         /* Get page shift, work out hash and AVPN etc. */
986         mask = SLB_VSID_B | HPTE_V_AVPN | HPTE_V_SECONDARY;
987         val = 0;
988         pshift = 12;
989         if (slb_v & SLB_VSID_L) {
990                 mask |= HPTE_V_LARGE;
991                 val |= HPTE_V_LARGE;
992                 pshift = slb_base_page_shift[(slb_v & SLB_VSID_LP) >> 4];
993         }
994         if (slb_v & SLB_VSID_B_1T) {
995                 somask = (1UL << 40) - 1;
996                 vsid = (slb_v & ~SLB_VSID_B) >> SLB_VSID_SHIFT_1T;
997                 vsid ^= vsid << 25;
998         } else {
999                 somask = (1UL << 28) - 1;
1000                 vsid = (slb_v & ~SLB_VSID_B) >> SLB_VSID_SHIFT;
1001         }
1002         hash = (vsid ^ ((eaddr & somask) >> pshift)) & kvmppc_hpt_mask(&kvm->arch.hpt);
1003         avpn = slb_v & ~(somask >> 16); /* also includes B */
1004         avpn |= (eaddr & somask) >> 16;
1005
1006         if (pshift >= 24)
1007                 avpn &= ~((1UL << (pshift - 16)) - 1);
1008         else
1009                 avpn &= ~0x7fUL;
1010         val |= avpn;
1011
1012         for (;;) {
1013                 hpte = (__be64 *)(kvm->arch.hpt.virt + (hash << 7));
1014
1015                 for (i = 0; i < 16; i += 2) {
1016                         /* Read the PTE racily */
1017                         v = be64_to_cpu(hpte[i]) & ~HPTE_V_HVLOCK;
1018                         if (cpu_has_feature(CPU_FTR_ARCH_300))
1019                                 v = hpte_new_to_old_v(v, be64_to_cpu(hpte[i+1]));
1020
1021                         /* Check valid/absent, hash, segment size and AVPN */
1022                         if (!(v & valid) || (v & mask) != val)
1023                                 continue;
1024
1025                         /* Lock the PTE and read it under the lock */
1026                         while (!try_lock_hpte(&hpte[i], HPTE_V_HVLOCK))
1027                                 cpu_relax();
1028                         v = orig_v = be64_to_cpu(hpte[i]) & ~HPTE_V_HVLOCK;
1029                         r = be64_to_cpu(hpte[i+1]);
1030                         if (cpu_has_feature(CPU_FTR_ARCH_300)) {
1031                                 v = hpte_new_to_old_v(v, r);
1032                                 r = hpte_new_to_old_r(r);
1033                         }
1034
1035                         /*
1036                          * Check the HPTE again, including base page size
1037                          */
1038                         if ((v & valid) && (v & mask) == val &&
1039                             kvmppc_hpte_base_page_shift(v, r) == pshift)
1040                                 /* Return with the HPTE still locked */
1041                                 return (hash << 3) + (i >> 1);
1042
1043                         __unlock_hpte(&hpte[i], orig_v);
1044                 }
1045
1046                 if (val & HPTE_V_SECONDARY)
1047                         break;
1048                 val |= HPTE_V_SECONDARY;
1049                 hash = hash ^ kvmppc_hpt_mask(&kvm->arch.hpt);
1050         }
1051         return -1;
1052 }
1053 EXPORT_SYMBOL(kvmppc_hv_find_lock_hpte);
1054
1055 /*
1056  * Called in real mode to check whether an HPTE not found fault
1057  * is due to accessing a paged-out page or an emulated MMIO page,
1058  * or if a protection fault is due to accessing a page that the
1059  * guest wanted read/write access to but which we made read-only.
1060  * Returns a possibly modified status (DSISR) value if not
1061  * (i.e. pass the interrupt to the guest),
1062  * -1 to pass the fault up to host kernel mode code, -2 to do that
1063  * and also load the instruction word (for MMIO emulation),
1064  * or 0 if we should make the guest retry the access.
1065  */
1066 long kvmppc_hpte_hv_fault(struct kvm_vcpu *vcpu, unsigned long addr,
1067                           unsigned long slb_v, unsigned int status, bool data)
1068 {
1069         struct kvm *kvm = vcpu->kvm;
1070         long int index;
1071         unsigned long v, r, gr, orig_v;
1072         __be64 *hpte;
1073         unsigned long valid;
1074         struct revmap_entry *rev;
1075         unsigned long pp, key;
1076         struct mmio_hpte_cache_entry *cache_entry = NULL;
1077         long mmio_update = 0;
1078
1079         /* For protection fault, expect to find a valid HPTE */
1080         valid = HPTE_V_VALID;
1081         if (status & DSISR_NOHPTE) {
1082                 valid |= HPTE_V_ABSENT;
1083                 mmio_update = atomic64_read(&kvm->arch.mmio_update);
1084                 cache_entry = mmio_cache_search(vcpu, addr, slb_v, mmio_update);
1085         }
1086         if (cache_entry) {
1087                 index = cache_entry->pte_index;
1088                 v = cache_entry->hpte_v;
1089                 r = cache_entry->hpte_r;
1090                 gr = cache_entry->rpte;
1091         } else {
1092                 index = kvmppc_hv_find_lock_hpte(kvm, addr, slb_v, valid);
1093                 if (index < 0) {
1094                         if (status & DSISR_NOHPTE)
1095                                 return status;  /* there really was no HPTE */
1096                         return 0;       /* for prot fault, HPTE disappeared */
1097                 }
1098                 hpte = (__be64 *)(kvm->arch.hpt.virt + (index << 4));
1099                 v = orig_v = be64_to_cpu(hpte[0]) & ~HPTE_V_HVLOCK;
1100                 r = be64_to_cpu(hpte[1]);
1101                 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
1102                         v = hpte_new_to_old_v(v, r);
1103                         r = hpte_new_to_old_r(r);
1104                 }
1105                 rev = real_vmalloc_addr(&kvm->arch.hpt.rev[index]);
1106                 gr = rev->guest_rpte;
1107
1108                 unlock_hpte(hpte, orig_v);
1109         }
1110
1111         /* For not found, if the HPTE is valid by now, retry the instruction */
1112         if ((status & DSISR_NOHPTE) && (v & HPTE_V_VALID))
1113                 return 0;
1114
1115         /* Check access permissions to the page */
1116         pp = gr & (HPTE_R_PP0 | HPTE_R_PP);
1117         key = (vcpu->arch.shregs.msr & MSR_PR) ? SLB_VSID_KP : SLB_VSID_KS;
1118         status &= ~DSISR_NOHPTE;        /* DSISR_NOHPTE == SRR1_ISI_NOPT */
1119         if (!data) {
1120                 if (gr & (HPTE_R_N | HPTE_R_G))
1121                         return status | SRR1_ISI_N_OR_G;
1122                 if (!hpte_read_permission(pp, slb_v & key))
1123                         return status | SRR1_ISI_PROT;
1124         } else if (status & DSISR_ISSTORE) {
1125                 /* check write permission */
1126                 if (!hpte_write_permission(pp, slb_v & key))
1127                         return status | DSISR_PROTFAULT;
1128         } else {
1129                 if (!hpte_read_permission(pp, slb_v & key))
1130                         return status | DSISR_PROTFAULT;
1131         }
1132
1133         /* Check storage key, if applicable */
1134         if (data && (vcpu->arch.shregs.msr & MSR_DR)) {
1135                 unsigned int perm = hpte_get_skey_perm(gr, vcpu->arch.amr);
1136                 if (status & DSISR_ISSTORE)
1137                         perm >>= 1;
1138                 if (perm & 1)
1139                         return status | DSISR_KEYFAULT;
1140         }
1141
1142         /* Save HPTE info for virtual-mode handler */
1143         vcpu->arch.pgfault_addr = addr;
1144         vcpu->arch.pgfault_index = index;
1145         vcpu->arch.pgfault_hpte[0] = v;
1146         vcpu->arch.pgfault_hpte[1] = r;
1147         vcpu->arch.pgfault_cache = cache_entry;
1148
1149         /* Check the storage key to see if it is possibly emulated MMIO */
1150         if ((r & (HPTE_R_KEY_HI | HPTE_R_KEY_LO)) ==
1151             (HPTE_R_KEY_HI | HPTE_R_KEY_LO)) {
1152                 if (!cache_entry) {
1153                         unsigned int pshift = 12;
1154                         unsigned int pshift_index;
1155
1156                         if (slb_v & SLB_VSID_L) {
1157                                 pshift_index = ((slb_v & SLB_VSID_LP) >> 4);
1158                                 pshift = slb_base_page_shift[pshift_index];
1159                         }
1160                         cache_entry = next_mmio_cache_entry(vcpu);
1161                         cache_entry->eaddr = addr;
1162                         cache_entry->slb_base_pshift = pshift;
1163                         cache_entry->pte_index = index;
1164                         cache_entry->hpte_v = v;
1165                         cache_entry->hpte_r = r;
1166                         cache_entry->rpte = gr;
1167                         cache_entry->slb_v = slb_v;
1168                         cache_entry->mmio_update = mmio_update;
1169                 }
1170                 if (data && (vcpu->arch.shregs.msr & MSR_IR))
1171                         return -2;      /* MMIO emulation - load instr word */
1172         }
1173
1174         return -1;              /* send fault up to host kernel mode */
1175 }