1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright IBM Corporation, 2018
4 * Authors Suraj Jitindar Singh <sjitindarsingh@gmail.com>
5 * Paul Mackerras <paulus@ozlabs.org>
7 * Description: KVM functions specific to running nested KVM-HV guests
8 * on Book3S processors (specifically POWER9 and later).
11 #include <linux/kernel.h>
12 #include <linux/kvm_host.h>
13 #include <linux/llist.h>
15 #include <asm/kvm_ppc.h>
16 #include <asm/kvm_book3s.h>
18 #include <asm/pgtable.h>
19 #include <asm/pgalloc.h>
20 #include <asm/pte-walk.h>
23 static struct patb_entry
*pseries_partition_tb
;
25 static void kvmhv_update_ptbl_cache(struct kvm_nested_guest
*gp
);
26 static void kvmhv_free_memslot_nest_rmap(struct kvm_memory_slot
*free
);
28 void kvmhv_save_hv_regs(struct kvm_vcpu
*vcpu
, struct hv_guest_state
*hr
)
30 struct kvmppc_vcore
*vc
= vcpu
->arch
.vcore
;
32 hr
->pcr
= vc
->pcr
| PCR_MASK
;
33 hr
->dpdes
= vc
->dpdes
;
34 hr
->hfscr
= vcpu
->arch
.hfscr
;
35 hr
->tb_offset
= vc
->tb_offset
;
36 hr
->dawr0
= vcpu
->arch
.dawr
;
37 hr
->dawrx0
= vcpu
->arch
.dawrx
;
38 hr
->ciabr
= vcpu
->arch
.ciabr
;
39 hr
->purr
= vcpu
->arch
.purr
;
40 hr
->spurr
= vcpu
->arch
.spurr
;
41 hr
->ic
= vcpu
->arch
.ic
;
43 hr
->srr0
= vcpu
->arch
.shregs
.srr0
;
44 hr
->srr1
= vcpu
->arch
.shregs
.srr1
;
45 hr
->sprg
[0] = vcpu
->arch
.shregs
.sprg0
;
46 hr
->sprg
[1] = vcpu
->arch
.shregs
.sprg1
;
47 hr
->sprg
[2] = vcpu
->arch
.shregs
.sprg2
;
48 hr
->sprg
[3] = vcpu
->arch
.shregs
.sprg3
;
49 hr
->pidr
= vcpu
->arch
.pid
;
50 hr
->cfar
= vcpu
->arch
.cfar
;
51 hr
->ppr
= vcpu
->arch
.ppr
;
54 static void byteswap_pt_regs(struct pt_regs
*regs
)
56 unsigned long *addr
= (unsigned long *) regs
;
58 for (; addr
< ((unsigned long *) (regs
+ 1)); addr
++)
59 *addr
= swab64(*addr
);
62 static void byteswap_hv_regs(struct hv_guest_state
*hr
)
64 hr
->version
= swab64(hr
->version
);
65 hr
->lpid
= swab32(hr
->lpid
);
66 hr
->vcpu_token
= swab32(hr
->vcpu_token
);
67 hr
->lpcr
= swab64(hr
->lpcr
);
68 hr
->pcr
= swab64(hr
->pcr
) | PCR_MASK
;
69 hr
->amor
= swab64(hr
->amor
);
70 hr
->dpdes
= swab64(hr
->dpdes
);
71 hr
->hfscr
= swab64(hr
->hfscr
);
72 hr
->tb_offset
= swab64(hr
->tb_offset
);
73 hr
->dawr0
= swab64(hr
->dawr0
);
74 hr
->dawrx0
= swab64(hr
->dawrx0
);
75 hr
->ciabr
= swab64(hr
->ciabr
);
76 hr
->hdec_expiry
= swab64(hr
->hdec_expiry
);
77 hr
->purr
= swab64(hr
->purr
);
78 hr
->spurr
= swab64(hr
->spurr
);
79 hr
->ic
= swab64(hr
->ic
);
80 hr
->vtb
= swab64(hr
->vtb
);
81 hr
->hdar
= swab64(hr
->hdar
);
82 hr
->hdsisr
= swab64(hr
->hdsisr
);
83 hr
->heir
= swab64(hr
->heir
);
84 hr
->asdr
= swab64(hr
->asdr
);
85 hr
->srr0
= swab64(hr
->srr0
);
86 hr
->srr1
= swab64(hr
->srr1
);
87 hr
->sprg
[0] = swab64(hr
->sprg
[0]);
88 hr
->sprg
[1] = swab64(hr
->sprg
[1]);
89 hr
->sprg
[2] = swab64(hr
->sprg
[2]);
90 hr
->sprg
[3] = swab64(hr
->sprg
[3]);
91 hr
->pidr
= swab64(hr
->pidr
);
92 hr
->cfar
= swab64(hr
->cfar
);
93 hr
->ppr
= swab64(hr
->ppr
);
96 static void save_hv_return_state(struct kvm_vcpu
*vcpu
, int trap
,
97 struct hv_guest_state
*hr
)
99 struct kvmppc_vcore
*vc
= vcpu
->arch
.vcore
;
101 hr
->dpdes
= vc
->dpdes
;
102 hr
->hfscr
= vcpu
->arch
.hfscr
;
103 hr
->purr
= vcpu
->arch
.purr
;
104 hr
->spurr
= vcpu
->arch
.spurr
;
105 hr
->ic
= vcpu
->arch
.ic
;
107 hr
->srr0
= vcpu
->arch
.shregs
.srr0
;
108 hr
->srr1
= vcpu
->arch
.shregs
.srr1
;
109 hr
->sprg
[0] = vcpu
->arch
.shregs
.sprg0
;
110 hr
->sprg
[1] = vcpu
->arch
.shregs
.sprg1
;
111 hr
->sprg
[2] = vcpu
->arch
.shregs
.sprg2
;
112 hr
->sprg
[3] = vcpu
->arch
.shregs
.sprg3
;
113 hr
->pidr
= vcpu
->arch
.pid
;
114 hr
->cfar
= vcpu
->arch
.cfar
;
115 hr
->ppr
= vcpu
->arch
.ppr
;
117 case BOOK3S_INTERRUPT_H_DATA_STORAGE
:
118 hr
->hdar
= vcpu
->arch
.fault_dar
;
119 hr
->hdsisr
= vcpu
->arch
.fault_dsisr
;
120 hr
->asdr
= vcpu
->arch
.fault_gpa
;
122 case BOOK3S_INTERRUPT_H_INST_STORAGE
:
123 hr
->asdr
= vcpu
->arch
.fault_gpa
;
125 case BOOK3S_INTERRUPT_H_EMUL_ASSIST
:
126 hr
->heir
= vcpu
->arch
.emul_inst
;
131 static void sanitise_hv_regs(struct kvm_vcpu
*vcpu
, struct hv_guest_state
*hr
)
134 * Don't let L1 enable features for L2 which we've disabled for L1,
135 * but preserve the interrupt cause field.
137 hr
->hfscr
&= (HFSCR_INTR_CAUSE
| vcpu
->arch
.hfscr
);
139 /* Don't let data address watchpoint match in hypervisor state */
140 hr
->dawrx0
&= ~DAWRX_HYP
;
142 /* Don't let completed instruction address breakpt match in HV state */
143 if ((hr
->ciabr
& CIABR_PRIV
) == CIABR_PRIV_HYPER
)
144 hr
->ciabr
&= ~CIABR_PRIV
;
147 static void restore_hv_regs(struct kvm_vcpu
*vcpu
, struct hv_guest_state
*hr
)
149 struct kvmppc_vcore
*vc
= vcpu
->arch
.vcore
;
151 vc
->pcr
= hr
->pcr
| PCR_MASK
;
152 vc
->dpdes
= hr
->dpdes
;
153 vcpu
->arch
.hfscr
= hr
->hfscr
;
154 vcpu
->arch
.dawr
= hr
->dawr0
;
155 vcpu
->arch
.dawrx
= hr
->dawrx0
;
156 vcpu
->arch
.ciabr
= hr
->ciabr
;
157 vcpu
->arch
.purr
= hr
->purr
;
158 vcpu
->arch
.spurr
= hr
->spurr
;
159 vcpu
->arch
.ic
= hr
->ic
;
161 vcpu
->arch
.shregs
.srr0
= hr
->srr0
;
162 vcpu
->arch
.shregs
.srr1
= hr
->srr1
;
163 vcpu
->arch
.shregs
.sprg0
= hr
->sprg
[0];
164 vcpu
->arch
.shregs
.sprg1
= hr
->sprg
[1];
165 vcpu
->arch
.shregs
.sprg2
= hr
->sprg
[2];
166 vcpu
->arch
.shregs
.sprg3
= hr
->sprg
[3];
167 vcpu
->arch
.pid
= hr
->pidr
;
168 vcpu
->arch
.cfar
= hr
->cfar
;
169 vcpu
->arch
.ppr
= hr
->ppr
;
172 void kvmhv_restore_hv_return_state(struct kvm_vcpu
*vcpu
,
173 struct hv_guest_state
*hr
)
175 struct kvmppc_vcore
*vc
= vcpu
->arch
.vcore
;
177 vc
->dpdes
= hr
->dpdes
;
178 vcpu
->arch
.hfscr
= hr
->hfscr
;
179 vcpu
->arch
.purr
= hr
->purr
;
180 vcpu
->arch
.spurr
= hr
->spurr
;
181 vcpu
->arch
.ic
= hr
->ic
;
183 vcpu
->arch
.fault_dar
= hr
->hdar
;
184 vcpu
->arch
.fault_dsisr
= hr
->hdsisr
;
185 vcpu
->arch
.fault_gpa
= hr
->asdr
;
186 vcpu
->arch
.emul_inst
= hr
->heir
;
187 vcpu
->arch
.shregs
.srr0
= hr
->srr0
;
188 vcpu
->arch
.shregs
.srr1
= hr
->srr1
;
189 vcpu
->arch
.shregs
.sprg0
= hr
->sprg
[0];
190 vcpu
->arch
.shregs
.sprg1
= hr
->sprg
[1];
191 vcpu
->arch
.shregs
.sprg2
= hr
->sprg
[2];
192 vcpu
->arch
.shregs
.sprg3
= hr
->sprg
[3];
193 vcpu
->arch
.pid
= hr
->pidr
;
194 vcpu
->arch
.cfar
= hr
->cfar
;
195 vcpu
->arch
.ppr
= hr
->ppr
;
198 static void kvmhv_nested_mmio_needed(struct kvm_vcpu
*vcpu
, u64 regs_ptr
)
200 /* No need to reflect the page fault to L1, we've handled it */
204 * Since the L2 gprs have already been written back into L1 memory when
205 * we complete the mmio, store the L1 memory location of the L2 gpr
206 * being loaded into by the mmio so that the loaded value can be
207 * written there in kvmppc_complete_mmio_load()
209 if (((vcpu
->arch
.io_gpr
& KVM_MMIO_REG_EXT_MASK
) == KVM_MMIO_REG_GPR
)
210 && (vcpu
->mmio_is_write
== 0)) {
211 vcpu
->arch
.nested_io_gpr
= (gpa_t
) regs_ptr
+
212 offsetof(struct pt_regs
,
213 gpr
[vcpu
->arch
.io_gpr
]);
214 vcpu
->arch
.io_gpr
= KVM_MMIO_REG_NESTED_GPR
;
218 long kvmhv_enter_nested_guest(struct kvm_vcpu
*vcpu
)
221 struct kvm_nested_guest
*l2
;
222 struct pt_regs l2_regs
, saved_l1_regs
;
223 struct hv_guest_state l2_hv
, saved_l1_hv
;
224 struct kvmppc_vcore
*vc
= vcpu
->arch
.vcore
;
225 u64 hv_ptr
, regs_ptr
;
227 s64 delta_purr
, delta_spurr
, delta_ic
, delta_vtb
;
231 if (vcpu
->kvm
->arch
.l1_ptcr
== 0)
232 return H_NOT_AVAILABLE
;
234 /* copy parameters in */
235 hv_ptr
= kvmppc_get_gpr(vcpu
, 4);
236 err
= kvm_vcpu_read_guest(vcpu
, hv_ptr
, &l2_hv
,
237 sizeof(struct hv_guest_state
));
240 if (kvmppc_need_byteswap(vcpu
))
241 byteswap_hv_regs(&l2_hv
);
242 if (l2_hv
.version
!= HV_GUEST_STATE_VERSION
)
245 regs_ptr
= kvmppc_get_gpr(vcpu
, 5);
246 err
= kvm_vcpu_read_guest(vcpu
, regs_ptr
, &l2_regs
,
247 sizeof(struct pt_regs
));
250 if (kvmppc_need_byteswap(vcpu
))
251 byteswap_pt_regs(&l2_regs
);
252 if (l2_hv
.vcpu_token
>= NR_CPUS
)
256 l2
= kvmhv_get_nested(vcpu
->kvm
, l2_hv
.lpid
, true);
259 if (!l2
->l1_gr_to_hr
) {
260 mutex_lock(&l2
->tlb_lock
);
261 kvmhv_update_ptbl_cache(l2
);
262 mutex_unlock(&l2
->tlb_lock
);
265 /* save l1 values of things */
266 vcpu
->arch
.regs
.msr
= vcpu
->arch
.shregs
.msr
;
267 saved_l1_regs
= vcpu
->arch
.regs
;
268 kvmhv_save_hv_regs(vcpu
, &saved_l1_hv
);
270 /* convert TB values/offsets to host (L0) values */
271 hdec_exp
= l2_hv
.hdec_expiry
- vc
->tb_offset
;
272 vc
->tb_offset
+= l2_hv
.tb_offset
;
274 /* set L1 state to L2 state */
275 vcpu
->arch
.nested
= l2
;
276 vcpu
->arch
.nested_vcpu_id
= l2_hv
.vcpu_token
;
277 vcpu
->arch
.regs
= l2_regs
;
278 vcpu
->arch
.shregs
.msr
= vcpu
->arch
.regs
.msr
;
279 mask
= LPCR_DPFD
| LPCR_ILE
| LPCR_TC
| LPCR_AIL
| LPCR_LD
|
280 LPCR_LPES
| LPCR_MER
;
281 lpcr
= (vc
->lpcr
& ~mask
) | (l2_hv
.lpcr
& mask
);
282 sanitise_hv_regs(vcpu
, &l2_hv
);
283 restore_hv_regs(vcpu
, &l2_hv
);
285 vcpu
->arch
.ret
= RESUME_GUEST
;
288 if (mftb() >= hdec_exp
) {
289 vcpu
->arch
.trap
= BOOK3S_INTERRUPT_HV_DECREMENTER
;
293 r
= kvmhv_run_single_vcpu(vcpu
->arch
.kvm_run
, vcpu
, hdec_exp
,
295 } while (is_kvmppc_resume_guest(r
));
297 /* save L2 state for return */
298 l2_regs
= vcpu
->arch
.regs
;
299 l2_regs
.msr
= vcpu
->arch
.shregs
.msr
;
300 delta_purr
= vcpu
->arch
.purr
- l2_hv
.purr
;
301 delta_spurr
= vcpu
->arch
.spurr
- l2_hv
.spurr
;
302 delta_ic
= vcpu
->arch
.ic
- l2_hv
.ic
;
303 delta_vtb
= vc
->vtb
- l2_hv
.vtb
;
304 save_hv_return_state(vcpu
, vcpu
->arch
.trap
, &l2_hv
);
306 /* restore L1 state */
307 vcpu
->arch
.nested
= NULL
;
308 vcpu
->arch
.regs
= saved_l1_regs
;
309 vcpu
->arch
.shregs
.msr
= saved_l1_regs
.msr
& ~MSR_TS_MASK
;
310 /* set L1 MSR TS field according to L2 transaction state */
311 if (l2_regs
.msr
& MSR_TS_MASK
)
312 vcpu
->arch
.shregs
.msr
|= MSR_TS_S
;
313 vc
->tb_offset
= saved_l1_hv
.tb_offset
;
314 restore_hv_regs(vcpu
, &saved_l1_hv
);
315 vcpu
->arch
.purr
+= delta_purr
;
316 vcpu
->arch
.spurr
+= delta_spurr
;
317 vcpu
->arch
.ic
+= delta_ic
;
318 vc
->vtb
+= delta_vtb
;
320 kvmhv_put_nested(l2
);
322 /* copy l2_hv_state and regs back to guest */
323 if (kvmppc_need_byteswap(vcpu
)) {
324 byteswap_hv_regs(&l2_hv
);
325 byteswap_pt_regs(&l2_regs
);
327 err
= kvm_vcpu_write_guest(vcpu
, hv_ptr
, &l2_hv
,
328 sizeof(struct hv_guest_state
));
331 err
= kvm_vcpu_write_guest(vcpu
, regs_ptr
, &l2_regs
,
332 sizeof(struct pt_regs
));
339 if (vcpu
->mmio_needed
) {
340 kvmhv_nested_mmio_needed(vcpu
, regs_ptr
);
344 return vcpu
->arch
.trap
;
347 long kvmhv_nested_init(void)
353 if (!kvmhv_on_pseries())
355 if (!radix_enabled())
358 /* find log base 2 of KVMPPC_NR_LPIDS, rounding up */
359 ptb_order
= __ilog2(KVMPPC_NR_LPIDS
- 1) + 1;
362 pseries_partition_tb
= kmalloc(sizeof(struct patb_entry
) << ptb_order
,
364 if (!pseries_partition_tb
) {
365 pr_err("kvm-hv: failed to allocated nested partition table\n");
369 ptcr
= __pa(pseries_partition_tb
) | (ptb_order
- 8);
370 rc
= plpar_hcall_norets(H_SET_PARTITION_TABLE
, ptcr
);
371 if (rc
!= H_SUCCESS
) {
372 pr_err("kvm-hv: Parent hypervisor does not support nesting (rc=%ld)\n",
374 kfree(pseries_partition_tb
);
375 pseries_partition_tb
= NULL
;
382 void kvmhv_nested_exit(void)
385 * N.B. the kvmhv_on_pseries() test is there because it enables
386 * the compiler to remove the call to plpar_hcall_norets()
387 * when CONFIG_PPC_PSERIES=n.
389 if (kvmhv_on_pseries() && pseries_partition_tb
) {
390 plpar_hcall_norets(H_SET_PARTITION_TABLE
, 0);
391 kfree(pseries_partition_tb
);
392 pseries_partition_tb
= NULL
;
396 static void kvmhv_flush_lpid(unsigned int lpid
)
400 if (!kvmhv_on_pseries()) {
401 radix__flush_all_lpid(lpid
);
405 rc
= plpar_hcall_norets(H_TLB_INVALIDATE
, H_TLBIE_P1_ENC(2, 0, 1),
406 lpid
, TLBIEL_INVAL_SET_LPID
);
408 pr_err("KVM: TLB LPID invalidation hcall failed, rc=%ld\n", rc
);
411 void kvmhv_set_ptbl_entry(unsigned int lpid
, u64 dw0
, u64 dw1
)
413 if (!kvmhv_on_pseries()) {
414 mmu_partition_table_set_entry(lpid
, dw0
, dw1
, true);
418 pseries_partition_tb
[lpid
].patb0
= cpu_to_be64(dw0
);
419 pseries_partition_tb
[lpid
].patb1
= cpu_to_be64(dw1
);
420 /* L0 will do the necessary barriers */
421 kvmhv_flush_lpid(lpid
);
424 static void kvmhv_set_nested_ptbl(struct kvm_nested_guest
*gp
)
428 dw0
= PATB_HR
| radix__get_tree_size() |
429 __pa(gp
->shadow_pgtable
) | RADIX_PGD_INDEX_SIZE
;
430 kvmhv_set_ptbl_entry(gp
->shadow_lpid
, dw0
, gp
->process_table
);
433 void kvmhv_vm_nested_init(struct kvm
*kvm
)
435 kvm
->arch
.max_nested_lpid
= -1;
439 * Handle the H_SET_PARTITION_TABLE hcall.
440 * r4 = guest real address of partition table + log_2(size) - 12
441 * (formatted as for the PTCR).
443 long kvmhv_set_partition_table(struct kvm_vcpu
*vcpu
)
445 struct kvm
*kvm
= vcpu
->kvm
;
446 unsigned long ptcr
= kvmppc_get_gpr(vcpu
, 4);
448 long ret
= H_SUCCESS
;
450 srcu_idx
= srcu_read_lock(&kvm
->srcu
);
452 * Limit the partition table to 4096 entries (because that's what
453 * hardware supports), and check the base address.
455 if ((ptcr
& PRTS_MASK
) > 12 - 8 ||
456 !kvm_is_visible_gfn(vcpu
->kvm
, (ptcr
& PRTB_MASK
) >> PAGE_SHIFT
))
458 srcu_read_unlock(&kvm
->srcu
, srcu_idx
);
459 if (ret
== H_SUCCESS
)
460 kvm
->arch
.l1_ptcr
= ptcr
;
465 * Handle the H_COPY_TOFROM_GUEST hcall.
466 * r4 = L1 lpid of nested guest
468 * r6 = eaddr to access
469 * r7 = to buffer (L1 gpa)
470 * r8 = from buffer (L1 gpa)
471 * r9 = n bytes to copy
473 long kvmhv_copy_tofrom_guest_nested(struct kvm_vcpu
*vcpu
)
475 struct kvm_nested_guest
*gp
;
476 int l1_lpid
= kvmppc_get_gpr(vcpu
, 4);
477 int pid
= kvmppc_get_gpr(vcpu
, 5);
478 gva_t eaddr
= kvmppc_get_gpr(vcpu
, 6);
479 gpa_t gp_to
= (gpa_t
) kvmppc_get_gpr(vcpu
, 7);
480 gpa_t gp_from
= (gpa_t
) kvmppc_get_gpr(vcpu
, 8);
482 unsigned long n
= kvmppc_get_gpr(vcpu
, 9);
483 bool is_load
= !!gp_to
;
486 if (gp_to
&& gp_from
) /* One must be NULL to determine the direction */
489 if (eaddr
& (0xFFFUL
<< 52))
492 buf
= kzalloc(n
, GFP_KERNEL
);
496 gp
= kvmhv_get_nested(vcpu
->kvm
, l1_lpid
, false);
502 mutex_lock(&gp
->tlb_lock
);
505 /* Load from the nested guest into our buffer */
506 rc
= __kvmhv_copy_tofrom_guest_radix(gp
->shadow_lpid
, pid
,
507 eaddr
, buf
, NULL
, n
);
511 /* Write what was loaded into our buffer back to the L1 guest */
512 rc
= kvm_vcpu_write_guest(vcpu
, gp_to
, buf
, n
);
516 /* Load the data to be stored from the L1 guest into our buf */
517 rc
= kvm_vcpu_read_guest(vcpu
, gp_from
, buf
, n
);
521 /* Store from our buffer into the nested guest */
522 rc
= __kvmhv_copy_tofrom_guest_radix(gp
->shadow_lpid
, pid
,
523 eaddr
, NULL
, buf
, n
);
529 mutex_unlock(&gp
->tlb_lock
);
530 kvmhv_put_nested(gp
);
540 * Reload the partition table entry for a guest.
541 * Caller must hold gp->tlb_lock.
543 static void kvmhv_update_ptbl_cache(struct kvm_nested_guest
*gp
)
546 struct patb_entry ptbl_entry
;
547 unsigned long ptbl_addr
;
548 struct kvm
*kvm
= gp
->l1_host
;
551 ptbl_addr
= (kvm
->arch
.l1_ptcr
& PRTB_MASK
) + (gp
->l1_lpid
<< 4);
552 if (gp
->l1_lpid
< (1ul << ((kvm
->arch
.l1_ptcr
& PRTS_MASK
) + 8)))
553 ret
= kvm_read_guest(kvm
, ptbl_addr
,
554 &ptbl_entry
, sizeof(ptbl_entry
));
557 gp
->process_table
= 0;
559 gp
->l1_gr_to_hr
= be64_to_cpu(ptbl_entry
.patb0
);
560 gp
->process_table
= be64_to_cpu(ptbl_entry
.patb1
);
562 kvmhv_set_nested_ptbl(gp
);
565 struct kvm_nested_guest
*kvmhv_alloc_nested(struct kvm
*kvm
, unsigned int lpid
)
567 struct kvm_nested_guest
*gp
;
570 gp
= kzalloc(sizeof(*gp
), GFP_KERNEL
);
575 mutex_init(&gp
->tlb_lock
);
576 gp
->shadow_pgtable
= pgd_alloc(kvm
->mm
);
577 if (!gp
->shadow_pgtable
)
579 shadow_lpid
= kvmppc_alloc_lpid();
582 gp
->shadow_lpid
= shadow_lpid
;
585 memset(gp
->prev_cpu
, -1, sizeof(gp
->prev_cpu
));
590 pgd_free(kvm
->mm
, gp
->shadow_pgtable
);
597 * Free up any resources allocated for a nested guest.
599 static void kvmhv_release_nested(struct kvm_nested_guest
*gp
)
601 struct kvm
*kvm
= gp
->l1_host
;
603 if (gp
->shadow_pgtable
) {
605 * No vcpu is using this struct and no call to
606 * kvmhv_get_nested can find this struct,
607 * so we don't need to hold kvm->mmu_lock.
609 kvmppc_free_pgtable_radix(kvm
, gp
->shadow_pgtable
,
611 pgd_free(kvm
->mm
, gp
->shadow_pgtable
);
613 kvmhv_set_ptbl_entry(gp
->shadow_lpid
, 0, 0);
614 kvmppc_free_lpid(gp
->shadow_lpid
);
618 static void kvmhv_remove_nested(struct kvm_nested_guest
*gp
)
620 struct kvm
*kvm
= gp
->l1_host
;
621 int lpid
= gp
->l1_lpid
;
624 spin_lock(&kvm
->mmu_lock
);
625 if (gp
== kvm
->arch
.nested_guests
[lpid
]) {
626 kvm
->arch
.nested_guests
[lpid
] = NULL
;
627 if (lpid
== kvm
->arch
.max_nested_lpid
) {
628 while (--lpid
>= 0 && !kvm
->arch
.nested_guests
[lpid
])
630 kvm
->arch
.max_nested_lpid
= lpid
;
635 spin_unlock(&kvm
->mmu_lock
);
637 kvmhv_release_nested(gp
);
641 * Free up all nested resources allocated for this guest.
642 * This is called with no vcpus of the guest running, when
643 * switching the guest to HPT mode or when destroying the
646 void kvmhv_release_all_nested(struct kvm
*kvm
)
649 struct kvm_nested_guest
*gp
;
650 struct kvm_nested_guest
*freelist
= NULL
;
651 struct kvm_memory_slot
*memslot
;
654 spin_lock(&kvm
->mmu_lock
);
655 for (i
= 0; i
<= kvm
->arch
.max_nested_lpid
; i
++) {
656 gp
= kvm
->arch
.nested_guests
[i
];
659 kvm
->arch
.nested_guests
[i
] = NULL
;
660 if (--gp
->refcnt
== 0) {
665 kvm
->arch
.max_nested_lpid
= -1;
666 spin_unlock(&kvm
->mmu_lock
);
667 while ((gp
= freelist
) != NULL
) {
669 kvmhv_release_nested(gp
);
672 srcu_idx
= srcu_read_lock(&kvm
->srcu
);
673 kvm_for_each_memslot(memslot
, kvm_memslots(kvm
))
674 kvmhv_free_memslot_nest_rmap(memslot
);
675 srcu_read_unlock(&kvm
->srcu
, srcu_idx
);
678 /* caller must hold gp->tlb_lock */
679 static void kvmhv_flush_nested(struct kvm_nested_guest
*gp
)
681 struct kvm
*kvm
= gp
->l1_host
;
683 spin_lock(&kvm
->mmu_lock
);
684 kvmppc_free_pgtable_radix(kvm
, gp
->shadow_pgtable
, gp
->shadow_lpid
);
685 spin_unlock(&kvm
->mmu_lock
);
686 kvmhv_flush_lpid(gp
->shadow_lpid
);
687 kvmhv_update_ptbl_cache(gp
);
688 if (gp
->l1_gr_to_hr
== 0)
689 kvmhv_remove_nested(gp
);
692 struct kvm_nested_guest
*kvmhv_get_nested(struct kvm
*kvm
, int l1_lpid
,
695 struct kvm_nested_guest
*gp
, *newgp
;
697 if (l1_lpid
>= KVM_MAX_NESTED_GUESTS
||
698 l1_lpid
>= (1ul << ((kvm
->arch
.l1_ptcr
& PRTS_MASK
) + 12 - 4)))
701 spin_lock(&kvm
->mmu_lock
);
702 gp
= kvm
->arch
.nested_guests
[l1_lpid
];
705 spin_unlock(&kvm
->mmu_lock
);
710 newgp
= kvmhv_alloc_nested(kvm
, l1_lpid
);
713 spin_lock(&kvm
->mmu_lock
);
714 if (kvm
->arch
.nested_guests
[l1_lpid
]) {
715 /* someone else beat us to it */
716 gp
= kvm
->arch
.nested_guests
[l1_lpid
];
718 kvm
->arch
.nested_guests
[l1_lpid
] = newgp
;
722 if (l1_lpid
> kvm
->arch
.max_nested_lpid
)
723 kvm
->arch
.max_nested_lpid
= l1_lpid
;
726 spin_unlock(&kvm
->mmu_lock
);
729 kvmhv_release_nested(newgp
);
734 void kvmhv_put_nested(struct kvm_nested_guest
*gp
)
736 struct kvm
*kvm
= gp
->l1_host
;
739 spin_lock(&kvm
->mmu_lock
);
741 spin_unlock(&kvm
->mmu_lock
);
743 kvmhv_release_nested(gp
);
746 static struct kvm_nested_guest
*kvmhv_find_nested(struct kvm
*kvm
, int lpid
)
748 if (lpid
> kvm
->arch
.max_nested_lpid
)
750 return kvm
->arch
.nested_guests
[lpid
];
753 static inline bool kvmhv_n_rmap_is_equal(u64 rmap_1
, u64 rmap_2
)
755 return !((rmap_1
^ rmap_2
) & (RMAP_NESTED_LPID_MASK
|
756 RMAP_NESTED_GPA_MASK
));
759 void kvmhv_insert_nest_rmap(struct kvm
*kvm
, unsigned long *rmapp
,
760 struct rmap_nested
**n_rmap
)
762 struct llist_node
*entry
= ((struct llist_head
*) rmapp
)->first
;
763 struct rmap_nested
*cursor
;
764 u64 rmap
, new_rmap
= (*n_rmap
)->rmap
;
766 /* Are there any existing entries? */
768 /* No -> use the rmap as a single entry */
769 *rmapp
= new_rmap
| RMAP_NESTED_IS_SINGLE_ENTRY
;
773 /* Do any entries match what we're trying to insert? */
774 for_each_nest_rmap_safe(cursor
, entry
, &rmap
) {
775 if (kvmhv_n_rmap_is_equal(rmap
, new_rmap
))
779 /* Do we need to create a list or just add the new entry? */
781 if (rmap
& RMAP_NESTED_IS_SINGLE_ENTRY
) /* Not previously a list */
783 llist_add(&((*n_rmap
)->list
), (struct llist_head
*) rmapp
);
784 if (rmap
& RMAP_NESTED_IS_SINGLE_ENTRY
) /* Not previously a list */
785 (*n_rmap
)->list
.next
= (struct llist_node
*) rmap
;
787 /* Set NULL so not freed by caller */
791 static void kvmhv_update_nest_rmap_rc(struct kvm
*kvm
, u64 n_rmap
,
792 unsigned long clr
, unsigned long set
,
793 unsigned long hpa
, unsigned long mask
)
795 struct kvm_nested_guest
*gp
;
797 unsigned int shift
, lpid
;
800 gpa
= n_rmap
& RMAP_NESTED_GPA_MASK
;
801 lpid
= (n_rmap
& RMAP_NESTED_LPID_MASK
) >> RMAP_NESTED_LPID_SHIFT
;
802 gp
= kvmhv_find_nested(kvm
, lpid
);
807 ptep
= __find_linux_pte(gp
->shadow_pgtable
, gpa
, NULL
, &shift
);
809 * If the pte is present and the pfn is still the same, update the pte.
810 * If the pfn has changed then this is a stale rmap entry, the nested
811 * gpa actually points somewhere else now, and there is nothing to do.
812 * XXX A future optimisation would be to remove the rmap entry here.
814 if (ptep
&& pte_present(*ptep
) && ((pte_val(*ptep
) & mask
) == hpa
)) {
815 __radix_pte_update(ptep
, clr
, set
);
816 kvmppc_radix_tlbie_page(kvm
, gpa
, shift
, lpid
);
821 * For a given list of rmap entries, update the rc bits in all ptes in shadow
822 * page tables for nested guests which are referenced by the rmap list.
824 void kvmhv_update_nest_rmap_rc_list(struct kvm
*kvm
, unsigned long *rmapp
,
825 unsigned long clr
, unsigned long set
,
826 unsigned long hpa
, unsigned long nbytes
)
828 struct llist_node
*entry
= ((struct llist_head
*) rmapp
)->first
;
829 struct rmap_nested
*cursor
;
830 unsigned long rmap
, mask
;
832 if ((clr
| set
) & ~(_PAGE_DIRTY
| _PAGE_ACCESSED
))
835 mask
= PTE_RPN_MASK
& ~(nbytes
- 1);
838 for_each_nest_rmap_safe(cursor
, entry
, &rmap
)
839 kvmhv_update_nest_rmap_rc(kvm
, rmap
, clr
, set
, hpa
, mask
);
842 static void kvmhv_remove_nest_rmap(struct kvm
*kvm
, u64 n_rmap
,
843 unsigned long hpa
, unsigned long mask
)
845 struct kvm_nested_guest
*gp
;
847 unsigned int shift
, lpid
;
850 gpa
= n_rmap
& RMAP_NESTED_GPA_MASK
;
851 lpid
= (n_rmap
& RMAP_NESTED_LPID_MASK
) >> RMAP_NESTED_LPID_SHIFT
;
852 gp
= kvmhv_find_nested(kvm
, lpid
);
856 /* Find and invalidate the pte */
857 ptep
= __find_linux_pte(gp
->shadow_pgtable
, gpa
, NULL
, &shift
);
858 /* Don't spuriously invalidate ptes if the pfn has changed */
859 if (ptep
&& pte_present(*ptep
) && ((pte_val(*ptep
) & mask
) == hpa
))
860 kvmppc_unmap_pte(kvm
, ptep
, gpa
, shift
, NULL
, gp
->shadow_lpid
);
863 static void kvmhv_remove_nest_rmap_list(struct kvm
*kvm
, unsigned long *rmapp
,
864 unsigned long hpa
, unsigned long mask
)
866 struct llist_node
*entry
= llist_del_all((struct llist_head
*) rmapp
);
867 struct rmap_nested
*cursor
;
870 for_each_nest_rmap_safe(cursor
, entry
, &rmap
) {
871 kvmhv_remove_nest_rmap(kvm
, rmap
, hpa
, mask
);
876 /* called with kvm->mmu_lock held */
877 void kvmhv_remove_nest_rmap_range(struct kvm
*kvm
,
878 const struct kvm_memory_slot
*memslot
,
879 unsigned long gpa
, unsigned long hpa
,
880 unsigned long nbytes
)
882 unsigned long gfn
, end_gfn
;
883 unsigned long addr_mask
;
887 gfn
= (gpa
>> PAGE_SHIFT
) - memslot
->base_gfn
;
888 end_gfn
= gfn
+ (nbytes
>> PAGE_SHIFT
);
890 addr_mask
= PTE_RPN_MASK
& ~(nbytes
- 1);
893 for (; gfn
< end_gfn
; gfn
++) {
894 unsigned long *rmap
= &memslot
->arch
.rmap
[gfn
];
895 kvmhv_remove_nest_rmap_list(kvm
, rmap
, hpa
, addr_mask
);
899 static void kvmhv_free_memslot_nest_rmap(struct kvm_memory_slot
*free
)
903 for (page
= 0; page
< free
->npages
; page
++) {
904 unsigned long rmap
, *rmapp
= &free
->arch
.rmap
[page
];
905 struct rmap_nested
*cursor
;
906 struct llist_node
*entry
;
908 entry
= llist_del_all((struct llist_head
*) rmapp
);
909 for_each_nest_rmap_safe(cursor
, entry
, &rmap
)
914 static bool kvmhv_invalidate_shadow_pte(struct kvm_vcpu
*vcpu
,
915 struct kvm_nested_guest
*gp
,
916 long gpa
, int *shift_ret
)
918 struct kvm
*kvm
= vcpu
->kvm
;
923 spin_lock(&kvm
->mmu_lock
);
924 ptep
= __find_linux_pte(gp
->shadow_pgtable
, gpa
, NULL
, &shift
);
927 if (ptep
&& pte_present(*ptep
)) {
928 kvmppc_unmap_pte(kvm
, ptep
, gpa
, shift
, NULL
, gp
->shadow_lpid
);
931 spin_unlock(&kvm
->mmu_lock
);
938 static inline int get_ric(unsigned int instr
)
940 return (instr
>> 18) & 0x3;
943 static inline int get_prs(unsigned int instr
)
945 return (instr
>> 17) & 0x1;
948 static inline int get_r(unsigned int instr
)
950 return (instr
>> 16) & 0x1;
953 static inline int get_lpid(unsigned long r_val
)
955 return r_val
& 0xffffffff;
958 static inline int get_is(unsigned long r_val
)
960 return (r_val
>> 10) & 0x3;
963 static inline int get_ap(unsigned long r_val
)
965 return (r_val
>> 5) & 0x7;
968 static inline long get_epn(unsigned long r_val
)
973 static int kvmhv_emulate_tlbie_tlb_addr(struct kvm_vcpu
*vcpu
, int lpid
,
976 struct kvm
*kvm
= vcpu
->kvm
;
977 struct kvm_nested_guest
*gp
;
979 int shift
, shadow_shift
;
982 shift
= ap_to_shift(ap
);
985 /* Invalid ap encoding */
988 addr
&= ~((1UL << shift
) - 1);
989 npages
= 1UL << (shift
- PAGE_SHIFT
);
991 gp
= kvmhv_get_nested(kvm
, lpid
, false);
992 if (!gp
) /* No such guest -> nothing to do */
994 mutex_lock(&gp
->tlb_lock
);
996 /* There may be more than one host page backing this single guest pte */
998 kvmhv_invalidate_shadow_pte(vcpu
, gp
, addr
, &shadow_shift
);
1000 npages
-= 1UL << (shadow_shift
- PAGE_SHIFT
);
1001 addr
+= 1UL << shadow_shift
;
1002 } while (npages
> 0);
1004 mutex_unlock(&gp
->tlb_lock
);
1005 kvmhv_put_nested(gp
);
1009 static void kvmhv_emulate_tlbie_lpid(struct kvm_vcpu
*vcpu
,
1010 struct kvm_nested_guest
*gp
, int ric
)
1012 struct kvm
*kvm
= vcpu
->kvm
;
1014 mutex_lock(&gp
->tlb_lock
);
1017 /* Invalidate TLB */
1018 spin_lock(&kvm
->mmu_lock
);
1019 kvmppc_free_pgtable_radix(kvm
, gp
->shadow_pgtable
,
1021 kvmhv_flush_lpid(gp
->shadow_lpid
);
1022 spin_unlock(&kvm
->mmu_lock
);
1027 * We don't cache this -> nothing to do
1031 /* Invalidate TLB, PWC and caching of partition table entries */
1032 kvmhv_flush_nested(gp
);
1037 mutex_unlock(&gp
->tlb_lock
);
1040 static void kvmhv_emulate_tlbie_all_lpid(struct kvm_vcpu
*vcpu
, int ric
)
1042 struct kvm
*kvm
= vcpu
->kvm
;
1043 struct kvm_nested_guest
*gp
;
1046 spin_lock(&kvm
->mmu_lock
);
1047 for (i
= 0; i
<= kvm
->arch
.max_nested_lpid
; i
++) {
1048 gp
= kvm
->arch
.nested_guests
[i
];
1050 spin_unlock(&kvm
->mmu_lock
);
1051 kvmhv_emulate_tlbie_lpid(vcpu
, gp
, ric
);
1052 spin_lock(&kvm
->mmu_lock
);
1055 spin_unlock(&kvm
->mmu_lock
);
1058 static int kvmhv_emulate_priv_tlbie(struct kvm_vcpu
*vcpu
, unsigned int instr
,
1059 unsigned long rsval
, unsigned long rbval
)
1061 struct kvm
*kvm
= vcpu
->kvm
;
1062 struct kvm_nested_guest
*gp
;
1063 int r
, ric
, prs
, is
, ap
;
1068 ric
= get_ric(instr
);
1069 prs
= get_prs(instr
);
1071 lpid
= get_lpid(rsval
);
1075 * These cases are invalid and are not handled:
1076 * r != 1 -> Only radix supported
1077 * prs == 1 -> Not HV privileged
1078 * ric == 3 -> No cluster bombs for radix
1079 * is == 1 -> Partition scoped translations not associated with pid
1080 * (!is) && (ric == 1 || ric == 2) -> Not supported by ISA
1082 if ((!r
) || (prs
) || (ric
== 3) || (is
== 1) ||
1083 ((!is
) && (ric
== 1 || ric
== 2)))
1090 * Invalidate TLB for a given target address
1092 epn
= get_epn(rbval
);
1094 ret
= kvmhv_emulate_tlbie_tlb_addr(vcpu
, lpid
, ap
, epn
);
1097 /* Invalidate matching LPID */
1098 gp
= kvmhv_get_nested(kvm
, lpid
, false);
1100 kvmhv_emulate_tlbie_lpid(vcpu
, gp
, ric
);
1101 kvmhv_put_nested(gp
);
1105 /* Invalidate ALL LPIDs */
1106 kvmhv_emulate_tlbie_all_lpid(vcpu
, ric
);
1117 * This handles the H_TLB_INVALIDATE hcall.
1118 * Parameters are (r4) tlbie instruction code, (r5) rS contents,
1121 long kvmhv_do_nested_tlbie(struct kvm_vcpu
*vcpu
)
1125 ret
= kvmhv_emulate_priv_tlbie(vcpu
, kvmppc_get_gpr(vcpu
, 4),
1126 kvmppc_get_gpr(vcpu
, 5), kvmppc_get_gpr(vcpu
, 6));
1132 /* Used to convert a nested guest real address to a L1 guest real address */
1133 static int kvmhv_translate_addr_nested(struct kvm_vcpu
*vcpu
,
1134 struct kvm_nested_guest
*gp
,
1135 unsigned long n_gpa
, unsigned long dsisr
,
1136 struct kvmppc_pte
*gpte_p
)
1138 u64 fault_addr
, flags
= dsisr
& DSISR_ISSTORE
;
1141 ret
= kvmppc_mmu_walk_radix_tree(vcpu
, n_gpa
, gpte_p
, gp
->l1_gr_to_hr
,
1145 /* We didn't find a pte */
1146 if (ret
== -EINVAL
) {
1147 /* Unsupported mmu config */
1148 flags
|= DSISR_UNSUPP_MMU
;
1149 } else if (ret
== -ENOENT
) {
1150 /* No translation found */
1151 flags
|= DSISR_NOHPTE
;
1152 } else if (ret
== -EFAULT
) {
1153 /* Couldn't access L1 real address */
1154 flags
|= DSISR_PRTABLE_FAULT
;
1155 vcpu
->arch
.fault_gpa
= fault_addr
;
1162 /* We found a pte -> check permissions */
1163 if (dsisr
& DSISR_ISSTORE
) {
1165 if (!gpte_p
->may_write
) {
1166 flags
|= DSISR_PROTFAULT
;
1169 } else if (vcpu
->arch
.trap
== BOOK3S_INTERRUPT_H_INST_STORAGE
) {
1170 /* Can we execute? */
1171 if (!gpte_p
->may_execute
) {
1172 flags
|= SRR1_ISI_N_OR_G
;
1177 if (!gpte_p
->may_read
&& !gpte_p
->may_write
) {
1178 flags
|= DSISR_PROTFAULT
;
1187 vcpu
->arch
.fault_dsisr
= flags
;
1188 if (vcpu
->arch
.trap
== BOOK3S_INTERRUPT_H_INST_STORAGE
) {
1189 vcpu
->arch
.shregs
.msr
&= SRR1_MSR_BITS
;
1190 vcpu
->arch
.shregs
.msr
|= flags
;
1195 static long kvmhv_handle_nested_set_rc(struct kvm_vcpu
*vcpu
,
1196 struct kvm_nested_guest
*gp
,
1197 unsigned long n_gpa
,
1198 struct kvmppc_pte gpte
,
1199 unsigned long dsisr
)
1201 struct kvm
*kvm
= vcpu
->kvm
;
1202 bool writing
= !!(dsisr
& DSISR_ISSTORE
);
1206 /* Are the rc bits set in the L1 partition scoped pte? */
1207 pgflags
= _PAGE_ACCESSED
;
1209 pgflags
|= _PAGE_DIRTY
;
1210 if (pgflags
& ~gpte
.rc
)
1213 spin_lock(&kvm
->mmu_lock
);
1214 /* Set the rc bit in the pte of our (L0) pgtable for the L1 guest */
1215 ret
= kvmppc_hv_handle_set_rc(kvm
, kvm
->arch
.pgtable
, writing
,
1216 gpte
.raddr
, kvm
->arch
.lpid
);
1222 /* Set the rc bit in the pte of the shadow_pgtable for the nest guest */
1223 ret
= kvmppc_hv_handle_set_rc(kvm
, gp
->shadow_pgtable
, writing
, n_gpa
,
1231 spin_unlock(&kvm
->mmu_lock
);
1235 static inline int kvmppc_radix_level_to_shift(int level
)
1247 static inline int kvmppc_radix_shift_to_level(int shift
)
1249 if (shift
== PUD_SHIFT
)
1251 if (shift
== PMD_SHIFT
)
1253 if (shift
== PAGE_SHIFT
)
1259 /* called with gp->tlb_lock held */
1260 static long int __kvmhv_nested_page_fault(struct kvm_run
*run
,
1261 struct kvm_vcpu
*vcpu
,
1262 struct kvm_nested_guest
*gp
)
1264 struct kvm
*kvm
= vcpu
->kvm
;
1265 struct kvm_memory_slot
*memslot
;
1266 struct rmap_nested
*n_rmap
;
1267 struct kvmppc_pte gpte
;
1269 unsigned long mmu_seq
;
1270 unsigned long dsisr
= vcpu
->arch
.fault_dsisr
;
1271 unsigned long ea
= vcpu
->arch
.fault_dar
;
1272 unsigned long *rmapp
;
1273 unsigned long n_gpa
, gpa
, gfn
, perm
= 0UL;
1274 unsigned int shift
, l1_shift
, level
;
1275 bool writing
= !!(dsisr
& DSISR_ISSTORE
);
1276 bool kvm_ro
= false;
1279 if (!gp
->l1_gr_to_hr
) {
1280 kvmhv_update_ptbl_cache(gp
);
1281 if (!gp
->l1_gr_to_hr
)
1285 /* Convert the nested guest real address into a L1 guest real address */
1287 n_gpa
= vcpu
->arch
.fault_gpa
& ~0xF000000000000FFFULL
;
1288 if (!(dsisr
& DSISR_PRTABLE_FAULT
))
1289 n_gpa
|= ea
& 0xFFF;
1290 ret
= kvmhv_translate_addr_nested(vcpu
, gp
, n_gpa
, dsisr
, &gpte
);
1293 * If the hardware found a translation but we don't now have a usable
1294 * translation in the l1 partition-scoped tree, remove the shadow pte
1295 * and let the guest retry.
1297 if (ret
== RESUME_HOST
&&
1298 (dsisr
& (DSISR_PROTFAULT
| DSISR_BADACCESS
| DSISR_NOEXEC_OR_G
|
1299 DSISR_BAD_COPYPASTE
)))
1304 /* Failed to set the reference/change bits */
1305 if (dsisr
& DSISR_SET_RC
) {
1306 ret
= kvmhv_handle_nested_set_rc(vcpu
, gp
, n_gpa
, gpte
, dsisr
);
1307 if (ret
== RESUME_HOST
)
1311 dsisr
&= ~DSISR_SET_RC
;
1312 if (!(dsisr
& (DSISR_BAD_FAULT_64S
| DSISR_NOHPTE
|
1314 return RESUME_GUEST
;
1318 * We took an HISI or HDSI while we were running a nested guest which
1319 * means we have no partition scoped translation for that. This means
1320 * we need to insert a pte for the mapping into our shadow_pgtable.
1323 l1_shift
= gpte
.page_shift
;
1324 if (l1_shift
< PAGE_SHIFT
) {
1325 /* We don't support l1 using a page size smaller than our own */
1326 pr_err("KVM: L1 guest page shift (%d) less than our own (%d)\n",
1327 l1_shift
, PAGE_SHIFT
);
1331 gfn
= gpa
>> PAGE_SHIFT
;
1333 /* 1. Get the corresponding host memslot */
1335 memslot
= gfn_to_memslot(kvm
, gfn
);
1336 if (!memslot
|| (memslot
->flags
& KVM_MEMSLOT_INVALID
)) {
1337 if (dsisr
& (DSISR_PRTABLE_FAULT
| DSISR_BADACCESS
)) {
1338 /* unusual error -> reflect to the guest as a DSI */
1339 kvmppc_core_queue_data_storage(vcpu
, ea
, dsisr
);
1340 return RESUME_GUEST
;
1343 /* passthrough of emulated MMIO case */
1344 return kvmppc_hv_emulate_mmio(run
, vcpu
, gpa
, ea
, writing
);
1346 if (memslot
->flags
& KVM_MEM_READONLY
) {
1348 /* Give the guest a DSI */
1349 kvmppc_core_queue_data_storage(vcpu
, ea
,
1350 DSISR_ISSTORE
| DSISR_PROTFAULT
);
1351 return RESUME_GUEST
;
1356 /* 2. Find the host pte for this L1 guest real address */
1358 /* Used to check for invalidations in progress */
1359 mmu_seq
= kvm
->mmu_notifier_seq
;
1362 /* See if can find translation in our partition scoped tables for L1 */
1364 spin_lock(&kvm
->mmu_lock
);
1365 pte_p
= __find_linux_pte(kvm
->arch
.pgtable
, gpa
, NULL
, &shift
);
1370 spin_unlock(&kvm
->mmu_lock
);
1372 if (!pte_present(pte
) || (writing
&& !(pte_val(pte
) & _PAGE_WRITE
))) {
1373 /* No suitable pte found -> try to insert a mapping */
1374 ret
= kvmppc_book3s_instantiate_page(vcpu
, gpa
, memslot
,
1375 writing
, kvm_ro
, &pte
, &level
);
1377 return RESUME_GUEST
;
1380 shift
= kvmppc_radix_level_to_shift(level
);
1382 /* Align gfn to the start of the page */
1383 gfn
= (gpa
& ~((1UL << shift
) - 1)) >> PAGE_SHIFT
;
1385 /* 3. Compute the pte we need to insert for nest_gpa -> host r_addr */
1387 /* The permissions is the combination of the host and l1 guest ptes */
1388 perm
|= gpte
.may_read
? 0UL : _PAGE_READ
;
1389 perm
|= gpte
.may_write
? 0UL : _PAGE_WRITE
;
1390 perm
|= gpte
.may_execute
? 0UL : _PAGE_EXEC
;
1391 /* Only set accessed/dirty (rc) bits if set in host and l1 guest ptes */
1392 perm
|= (gpte
.rc
& _PAGE_ACCESSED
) ? 0UL : _PAGE_ACCESSED
;
1393 perm
|= ((gpte
.rc
& _PAGE_DIRTY
) && writing
) ? 0UL : _PAGE_DIRTY
;
1394 pte
= __pte(pte_val(pte
) & ~perm
);
1396 /* What size pte can we insert? */
1397 if (shift
> l1_shift
) {
1399 unsigned int actual_shift
= PAGE_SHIFT
;
1400 if (PMD_SHIFT
< l1_shift
)
1401 actual_shift
= PMD_SHIFT
;
1402 mask
= (1UL << shift
) - (1UL << actual_shift
);
1403 pte
= __pte(pte_val(pte
) | (gpa
& mask
));
1404 shift
= actual_shift
;
1406 level
= kvmppc_radix_shift_to_level(shift
);
1407 n_gpa
&= ~((1UL << shift
) - 1);
1409 /* 4. Insert the pte into our shadow_pgtable */
1411 n_rmap
= kzalloc(sizeof(*n_rmap
), GFP_KERNEL
);
1413 return RESUME_GUEST
; /* Let the guest try again */
1414 n_rmap
->rmap
= (n_gpa
& RMAP_NESTED_GPA_MASK
) |
1415 (((unsigned long) gp
->l1_lpid
) << RMAP_NESTED_LPID_SHIFT
);
1416 rmapp
= &memslot
->arch
.rmap
[gfn
- memslot
->base_gfn
];
1417 ret
= kvmppc_create_pte(kvm
, gp
->shadow_pgtable
, pte
, n_gpa
, level
,
1418 mmu_seq
, gp
->shadow_lpid
, rmapp
, &n_rmap
);
1422 ret
= RESUME_GUEST
; /* Let the guest try again */
1427 kvmhv_invalidate_shadow_pte(vcpu
, gp
, n_gpa
, NULL
);
1428 return RESUME_GUEST
;
1431 long int kvmhv_nested_page_fault(struct kvm_run
*run
, struct kvm_vcpu
*vcpu
)
1433 struct kvm_nested_guest
*gp
= vcpu
->arch
.nested
;
1436 mutex_lock(&gp
->tlb_lock
);
1437 ret
= __kvmhv_nested_page_fault(run
, vcpu
, gp
);
1438 mutex_unlock(&gp
->tlb_lock
);
1442 int kvmhv_nested_next_lpid(struct kvm
*kvm
, int lpid
)
1446 spin_lock(&kvm
->mmu_lock
);
1447 while (++lpid
<= kvm
->arch
.max_nested_lpid
) {
1448 if (kvm
->arch
.nested_guests
[lpid
]) {
1453 spin_unlock(&kvm
->mmu_lock
);