2 * Copyright 2011 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License, version 2, as
6 * published by the Free Software Foundation.
10 #include <linux/kvm_host.h>
11 #include <linux/preempt.h>
12 #include <linux/export.h>
13 #include <linux/sched.h>
14 #include <linux/spinlock.h>
15 #include <linux/init.h>
16 #include <linux/memblock.h>
17 #include <linux/sizes.h>
18 #include <linux/cma.h>
19 #include <linux/bitops.h>
21 #include <asm/cputable.h>
22 #include <asm/kvm_ppc.h>
23 #include <asm/kvm_book3s.h>
24 #include <asm/archrandom.h>
27 #include <asm/dbell.h>
28 #include <asm/cputhreads.h>
33 #define KVM_CMA_CHUNK_ORDER 18
35 #include "book3s_xics.h"
36 #include "book3s_xive.h"
39 * The XIVE module will populate these when it loads
41 unsigned long (*__xive_vm_h_xirr
)(struct kvm_vcpu
*vcpu
);
42 unsigned long (*__xive_vm_h_ipoll
)(struct kvm_vcpu
*vcpu
, unsigned long server
);
43 int (*__xive_vm_h_ipi
)(struct kvm_vcpu
*vcpu
, unsigned long server
,
45 int (*__xive_vm_h_cppr
)(struct kvm_vcpu
*vcpu
, unsigned long cppr
);
46 int (*__xive_vm_h_eoi
)(struct kvm_vcpu
*vcpu
, unsigned long xirr
);
47 EXPORT_SYMBOL_GPL(__xive_vm_h_xirr
);
48 EXPORT_SYMBOL_GPL(__xive_vm_h_ipoll
);
49 EXPORT_SYMBOL_GPL(__xive_vm_h_ipi
);
50 EXPORT_SYMBOL_GPL(__xive_vm_h_cppr
);
51 EXPORT_SYMBOL_GPL(__xive_vm_h_eoi
);
54 * Hash page table alignment on newer cpus(CPU_FTR_ARCH_206)
55 * should be power of 2.
57 #define HPT_ALIGN_PAGES ((1 << 18) >> PAGE_SHIFT) /* 256k */
59 * By default we reserve 5% of memory for hash pagetable allocation.
61 static unsigned long kvm_cma_resv_ratio
= 5;
63 static struct cma
*kvm_cma
;
65 static int __init
early_parse_kvm_cma_resv(char *p
)
67 pr_debug("%s(%s)\n", __func__
, p
);
70 return kstrtoul(p
, 0, &kvm_cma_resv_ratio
);
72 early_param("kvm_cma_resv_ratio", early_parse_kvm_cma_resv
);
74 struct page
*kvm_alloc_hpt_cma(unsigned long nr_pages
)
76 VM_BUG_ON(order_base_2(nr_pages
) < KVM_CMA_CHUNK_ORDER
- PAGE_SHIFT
);
78 return cma_alloc(kvm_cma
, nr_pages
, order_base_2(HPT_ALIGN_PAGES
),
81 EXPORT_SYMBOL_GPL(kvm_alloc_hpt_cma
);
83 void kvm_free_hpt_cma(struct page
*page
, unsigned long nr_pages
)
85 cma_release(kvm_cma
, page
, nr_pages
);
87 EXPORT_SYMBOL_GPL(kvm_free_hpt_cma
);
90 * kvm_cma_reserve() - reserve area for kvm hash pagetable
92 * This function reserves memory from early allocator. It should be
93 * called by arch specific code once the memblock allocator
94 * has been activated and all other subsystems have already allocated/reserved
97 void __init
kvm_cma_reserve(void)
99 unsigned long align_size
;
100 struct memblock_region
*reg
;
101 phys_addr_t selected_size
= 0;
104 * We need CMA reservation only when we are in HV mode
106 if (!cpu_has_feature(CPU_FTR_HVMODE
))
109 * We cannot use memblock_phys_mem_size() here, because
110 * memblock_analyze() has not been called yet.
112 for_each_memblock(memory
, reg
)
113 selected_size
+= memblock_region_memory_end_pfn(reg
) -
114 memblock_region_memory_base_pfn(reg
);
116 selected_size
= (selected_size
* kvm_cma_resv_ratio
/ 100) << PAGE_SHIFT
;
118 pr_debug("%s: reserving %ld MiB for global area\n", __func__
,
119 (unsigned long)selected_size
/ SZ_1M
);
120 align_size
= HPT_ALIGN_PAGES
<< PAGE_SHIFT
;
121 cma_declare_contiguous(0, selected_size
, 0, align_size
,
122 KVM_CMA_CHUNK_ORDER
- PAGE_SHIFT
, false, "kvm_cma",
128 * Real-mode H_CONFER implementation.
129 * We check if we are the only vcpu out of this virtual core
130 * still running in the guest and not ceded. If so, we pop up
131 * to the virtual-mode implementation; if not, just return to
134 long int kvmppc_rm_h_confer(struct kvm_vcpu
*vcpu
, int target
,
135 unsigned int yield_count
)
137 struct kvmppc_vcore
*vc
= local_paca
->kvm_hstate
.kvm_vcore
;
138 int ptid
= local_paca
->kvm_hstate
.ptid
;
141 int threads_conferring
;
142 u64 stop
= get_tb() + 10 * tb_ticks_per_usec
;
143 int rv
= H_SUCCESS
; /* => don't yield */
145 set_bit(ptid
, &vc
->conferring_threads
);
146 while ((get_tb() < stop
) && !VCORE_IS_EXITING(vc
)) {
147 threads_running
= VCORE_ENTRY_MAP(vc
);
148 threads_ceded
= vc
->napping_threads
;
149 threads_conferring
= vc
->conferring_threads
;
150 if ((threads_ceded
| threads_conferring
) == threads_running
) {
151 rv
= H_TOO_HARD
; /* => do yield */
155 clear_bit(ptid
, &vc
->conferring_threads
);
160 * When running HV mode KVM we need to block certain operations while KVM VMs
161 * exist in the system. We use a counter of VMs to track this.
163 * One of the operations we need to block is onlining of secondaries, so we
164 * protect hv_vm_count with get/put_online_cpus().
166 static atomic_t hv_vm_count
;
168 void kvm_hv_vm_activated(void)
171 atomic_inc(&hv_vm_count
);
174 EXPORT_SYMBOL_GPL(kvm_hv_vm_activated
);
176 void kvm_hv_vm_deactivated(void)
179 atomic_dec(&hv_vm_count
);
182 EXPORT_SYMBOL_GPL(kvm_hv_vm_deactivated
);
184 bool kvm_hv_mode_active(void)
186 return atomic_read(&hv_vm_count
) != 0;
189 extern int hcall_real_table
[], hcall_real_table_end
[];
191 int kvmppc_hcall_impl_hv_realmode(unsigned long cmd
)
194 if (cmd
< hcall_real_table_end
- hcall_real_table
&&
195 hcall_real_table
[cmd
])
200 EXPORT_SYMBOL_GPL(kvmppc_hcall_impl_hv_realmode
);
202 int kvmppc_hwrng_present(void)
204 return powernv_hwrng_present();
206 EXPORT_SYMBOL_GPL(kvmppc_hwrng_present
);
208 long kvmppc_h_random(struct kvm_vcpu
*vcpu
)
212 /* Only need to do the expensive mfmsr() on radix */
213 if (kvm_is_radix(vcpu
->kvm
) && (mfmsr() & MSR_IR
))
214 r
= powernv_get_random_long(&vcpu
->arch
.gpr
[4]);
216 r
= powernv_get_random_real_mode(&vcpu
->arch
.gpr
[4]);
224 * Send an interrupt or message to another CPU.
225 * The caller needs to include any barrier needed to order writes
226 * to memory vs. the IPI/message.
228 void kvmhv_rm_send_ipi(int cpu
)
230 void __iomem
*xics_phys
;
231 unsigned long msg
= PPC_DBELL_TYPE(PPC_DBELL_SERVER
);
233 /* On POWER9 we can use msgsnd for any destination cpu. */
234 if (cpu_has_feature(CPU_FTR_ARCH_300
)) {
235 msg
|= get_hard_smp_processor_id(cpu
);
236 __asm__
__volatile__ (PPC_MSGSND(%0) : : "r" (msg
));
240 /* On POWER8 for IPIs to threads in the same core, use msgsnd. */
241 if (cpu_has_feature(CPU_FTR_ARCH_207S
) &&
242 cpu_first_thread_sibling(cpu
) ==
243 cpu_first_thread_sibling(raw_smp_processor_id())) {
244 msg
|= cpu_thread_in_core(cpu
);
245 __asm__
__volatile__ (PPC_MSGSND(%0) : : "r" (msg
));
249 /* We should never reach this */
250 if (WARN_ON_ONCE(xive_enabled()))
253 /* Else poke the target with an IPI */
254 xics_phys
= paca
[cpu
].kvm_hstate
.xics_phys
;
256 __raw_rm_writeb(IPI_PRIORITY
, xics_phys
+ XICS_MFRR
);
258 opal_int_set_mfrr(get_hard_smp_processor_id(cpu
), IPI_PRIORITY
);
262 * The following functions are called from the assembly code
263 * in book3s_hv_rmhandlers.S.
265 static void kvmhv_interrupt_vcore(struct kvmppc_vcore
*vc
, int active
)
269 /* Order setting of exit map vs. msgsnd/IPI */
271 for (; active
; active
>>= 1, ++cpu
)
273 kvmhv_rm_send_ipi(cpu
);
276 void kvmhv_commence_exit(int trap
)
278 struct kvmppc_vcore
*vc
= local_paca
->kvm_hstate
.kvm_vcore
;
279 int ptid
= local_paca
->kvm_hstate
.ptid
;
280 struct kvm_split_mode
*sip
= local_paca
->kvm_hstate
.kvm_split_mode
;
284 /* Set our bit in the threads-exiting-guest map in the 0xff00
285 bits of vcore->entry_exit_map */
288 ee
= vc
->entry_exit_map
;
289 } while (cmpxchg(&vc
->entry_exit_map
, ee
, ee
| me
) != ee
);
291 /* Are we the first here? */
296 * Trigger the other threads in this vcore to exit the guest.
297 * If this is a hypervisor decrementer interrupt then they
298 * will be already on their way out of the guest.
300 if (trap
!= BOOK3S_INTERRUPT_HV_DECREMENTER
)
301 kvmhv_interrupt_vcore(vc
, ee
& ~(1 << ptid
));
304 * If we are doing dynamic micro-threading, interrupt the other
305 * subcores to pull them out of their guests too.
310 for (i
= 0; i
< MAX_SUBCORES
; ++i
) {
315 ee
= vc
->entry_exit_map
;
316 /* Already asked to exit? */
319 } while (cmpxchg(&vc
->entry_exit_map
, ee
,
320 ee
| VCORE_EXIT_REQ
) != ee
);
322 kvmhv_interrupt_vcore(vc
, ee
);
326 * On POWER9 when running a HPT guest on a radix host (sip != NULL),
327 * we have to interrupt inactive CPU threads to get them to
328 * restore the host LPCR value.
331 if (cmpxchg(&sip
->do_restore
, 0, 1) == 0) {
332 vc
= local_paca
->kvm_hstate
.kvm_vcore
;
333 cpu0
= vc
->pcpu
+ ptid
- local_paca
->kvm_hstate
.tid
;
334 for (t
= 1; t
< threads_per_core
; ++t
) {
336 kvmhv_rm_send_ipi(cpu0
+ t
);
342 struct kvmppc_host_rm_ops
*kvmppc_host_rm_ops_hv
;
343 EXPORT_SYMBOL_GPL(kvmppc_host_rm_ops_hv
);
345 #ifdef CONFIG_KVM_XICS
346 static struct kvmppc_irq_map
*get_irqmap(struct kvmppc_passthru_irqmap
*pimap
,
352 * We access the mapped array here without a lock. That
353 * is safe because we never reduce the number of entries
354 * in the array and we never change the v_hwirq field of
355 * an entry once it is set.
357 * We have also carefully ordered the stores in the writer
358 * and the loads here in the reader, so that if we find a matching
359 * hwirq here, the associated GSI and irq_desc fields are valid.
361 for (i
= 0; i
< pimap
->n_mapped
; i
++) {
362 if (xisr
== pimap
->mapped
[i
].r_hwirq
) {
364 * Order subsequent reads in the caller to serialize
368 return &pimap
->mapped
[i
];
375 * If we have an interrupt that's not an IPI, check if we have a
376 * passthrough adapter and if so, check if this external interrupt
377 * is for the adapter.
378 * We will attempt to deliver the IRQ directly to the target VCPU's
379 * ICP, the virtual ICP (based on affinity - the xive value in ICS).
381 * If the delivery fails or if this is not for a passthrough adapter,
382 * return to the host to handle this interrupt. We earlier
383 * saved a copy of the XIRR in the PACA, it will be picked up by
384 * the host ICP driver.
386 static int kvmppc_check_passthru(u32 xisr
, __be32 xirr
, bool *again
)
388 struct kvmppc_passthru_irqmap
*pimap
;
389 struct kvmppc_irq_map
*irq_map
;
390 struct kvm_vcpu
*vcpu
;
392 vcpu
= local_paca
->kvm_hstate
.kvm_vcpu
;
395 pimap
= kvmppc_get_passthru_irqmap(vcpu
->kvm
);
398 irq_map
= get_irqmap(pimap
, xisr
);
402 /* We're handling this interrupt, generic code doesn't need to */
403 local_paca
->kvm_hstate
.saved_xirr
= 0;
405 return kvmppc_deliver_irq_passthru(vcpu
, xirr
, irq_map
, pimap
, again
);
409 static inline int kvmppc_check_passthru(u32 xisr
, __be32 xirr
, bool *again
)
416 * Determine what sort of external interrupt is pending (if any).
418 * 0 if no interrupt is pending
419 * 1 if an interrupt is pending that needs to be handled by the host
420 * 2 Passthrough that needs completion in the host
421 * -1 if there was a guest wakeup IPI (which has now been cleared)
422 * -2 if there is PCI passthrough external interrupt that was handled
424 static long kvmppc_read_one_intr(bool *again
);
426 long kvmppc_read_intr(void)
437 rc
= kvmppc_read_one_intr(&again
);
438 if (rc
&& (ret
== 0 || rc
> ret
))
444 static long kvmppc_read_one_intr(bool *again
)
446 void __iomem
*xics_phys
;
456 /* see if a host IPI is pending */
457 host_ipi
= local_paca
->kvm_hstate
.host_ipi
;
461 /* Now read the interrupt from the ICP */
462 xics_phys
= local_paca
->kvm_hstate
.xics_phys
;
465 rc
= opal_int_get_xirr(&xirr
, false);
467 xirr
= __raw_rm_readl(xics_phys
+ XICS_XIRR
);
472 * Save XIRR for later. Since we get control in reverse endian
473 * on LE systems, save it byte reversed and fetch it back in
474 * host endian. Note that xirr is the value read from the
475 * XIRR register, while h_xirr is the host endian version.
477 h_xirr
= be32_to_cpu(xirr
);
478 local_paca
->kvm_hstate
.saved_xirr
= h_xirr
;
479 xisr
= h_xirr
& 0xffffff;
481 * Ensure that the store/load complete to guarantee all side
482 * effects of loading from XIRR has completed
486 /* if nothing pending in the ICP */
490 /* We found something in the ICP...
492 * If it is an IPI, clear the MFRR and EOI it.
494 if (xisr
== XICS_IPI
) {
497 __raw_rm_writeb(0xff, xics_phys
+ XICS_MFRR
);
498 __raw_rm_writel(xirr
, xics_phys
+ XICS_XIRR
);
500 opal_int_set_mfrr(hard_smp_processor_id(), 0xff);
501 rc
= opal_int_eoi(h_xirr
);
503 /* If rc > 0, there is another interrupt pending */
507 * Need to ensure side effects of above stores
508 * complete before proceeding.
513 * We need to re-check host IPI now in case it got set in the
514 * meantime. If it's clear, we bounce the interrupt to the
517 host_ipi
= local_paca
->kvm_hstate
.host_ipi
;
518 if (unlikely(host_ipi
!= 0)) {
519 /* We raced with the host,
520 * we need to resend that IPI, bummer
523 __raw_rm_writeb(IPI_PRIORITY
,
524 xics_phys
+ XICS_MFRR
);
526 opal_int_set_mfrr(hard_smp_processor_id(),
528 /* Let side effects complete */
533 /* OK, it's an IPI for us */
534 local_paca
->kvm_hstate
.saved_xirr
= 0;
538 return kvmppc_check_passthru(xisr
, xirr
, again
);
541 #ifdef CONFIG_KVM_XICS
542 static inline bool is_rm(void)
544 return !(mfmsr() & MSR_DR
);
547 unsigned long kvmppc_rm_h_xirr(struct kvm_vcpu
*vcpu
)
549 if (!kvmppc_xics_enabled(vcpu
))
551 if (xive_enabled()) {
553 return xive_rm_h_xirr(vcpu
);
554 if (unlikely(!__xive_vm_h_xirr
))
555 return H_NOT_AVAILABLE
;
556 return __xive_vm_h_xirr(vcpu
);
558 return xics_rm_h_xirr(vcpu
);
561 unsigned long kvmppc_rm_h_xirr_x(struct kvm_vcpu
*vcpu
)
563 if (!kvmppc_xics_enabled(vcpu
))
565 vcpu
->arch
.gpr
[5] = get_tb();
566 if (xive_enabled()) {
568 return xive_rm_h_xirr(vcpu
);
569 if (unlikely(!__xive_vm_h_xirr
))
570 return H_NOT_AVAILABLE
;
571 return __xive_vm_h_xirr(vcpu
);
573 return xics_rm_h_xirr(vcpu
);
576 unsigned long kvmppc_rm_h_ipoll(struct kvm_vcpu
*vcpu
, unsigned long server
)
578 if (!kvmppc_xics_enabled(vcpu
))
580 if (xive_enabled()) {
582 return xive_rm_h_ipoll(vcpu
, server
);
583 if (unlikely(!__xive_vm_h_ipoll
))
584 return H_NOT_AVAILABLE
;
585 return __xive_vm_h_ipoll(vcpu
, server
);
590 int kvmppc_rm_h_ipi(struct kvm_vcpu
*vcpu
, unsigned long server
,
593 if (!kvmppc_xics_enabled(vcpu
))
595 if (xive_enabled()) {
597 return xive_rm_h_ipi(vcpu
, server
, mfrr
);
598 if (unlikely(!__xive_vm_h_ipi
))
599 return H_NOT_AVAILABLE
;
600 return __xive_vm_h_ipi(vcpu
, server
, mfrr
);
602 return xics_rm_h_ipi(vcpu
, server
, mfrr
);
605 int kvmppc_rm_h_cppr(struct kvm_vcpu
*vcpu
, unsigned long cppr
)
607 if (!kvmppc_xics_enabled(vcpu
))
609 if (xive_enabled()) {
611 return xive_rm_h_cppr(vcpu
, cppr
);
612 if (unlikely(!__xive_vm_h_cppr
))
613 return H_NOT_AVAILABLE
;
614 return __xive_vm_h_cppr(vcpu
, cppr
);
616 return xics_rm_h_cppr(vcpu
, cppr
);
619 int kvmppc_rm_h_eoi(struct kvm_vcpu
*vcpu
, unsigned long xirr
)
621 if (!kvmppc_xics_enabled(vcpu
))
623 if (xive_enabled()) {
625 return xive_rm_h_eoi(vcpu
, xirr
);
626 if (unlikely(!__xive_vm_h_eoi
))
627 return H_NOT_AVAILABLE
;
628 return __xive_vm_h_eoi(vcpu
, xirr
);
630 return xics_rm_h_eoi(vcpu
, xirr
);
632 #endif /* CONFIG_KVM_XICS */
634 void kvmppc_bad_interrupt(struct pt_regs
*regs
)
636 die("Bad interrupt in KVM entry/exit code", regs
, SIGABRT
);
637 panic("Bad KVM trap");
641 * Functions used to switch LPCR HR and UPRT bits on all threads
642 * when entering and exiting HPT guests on a radix host.
645 #define PHASE_REALMODE 1 /* in real mode */
646 #define PHASE_SET_LPCR 2 /* have set LPCR */
647 #define PHASE_OUT_OF_GUEST 4 /* have finished executing in guest */
648 #define PHASE_RESET_LPCR 8 /* have reset LPCR to host value */
650 #define ALL(p) (((p) << 24) | ((p) << 16) | ((p) << 8) | (p))
652 static void wait_for_sync(struct kvm_split_mode
*sip
, int phase
)
654 int thr
= local_paca
->kvm_hstate
.tid
;
656 sip
->lpcr_sync
.phase
[thr
] |= phase
;
658 while ((sip
->lpcr_sync
.allphases
& phase
) != phase
) {
665 void kvmhv_p9_set_lpcr(struct kvm_split_mode
*sip
)
667 unsigned long rb
, set
;
669 /* wait for every other thread to get to real mode */
670 wait_for_sync(sip
, PHASE_REALMODE
);
672 /* Set LPCR and LPIDR */
673 mtspr(SPRN_LPCR
, sip
->lpcr_req
);
674 mtspr(SPRN_LPID
, sip
->lpidr_req
);
677 /* Invalidate the TLB on thread 0 */
678 if (local_paca
->kvm_hstate
.tid
== 0) {
680 asm volatile("ptesync" : : : "memory");
681 for (set
= 0; set
< POWER9_TLB_SETS_RADIX
; ++set
) {
682 rb
= TLBIEL_INVAL_SET_LPID
+
683 (set
<< TLBIEL_INVAL_SET_SHIFT
);
684 asm volatile(PPC_TLBIEL(%0, %1, 0, 0, 0) : :
687 asm volatile("ptesync" : : : "memory");
690 /* indicate that we have done so and wait for others */
691 wait_for_sync(sip
, PHASE_SET_LPCR
);
692 /* order read of sip->lpcr_sync.allphases vs. sip->do_set */
697 * Called when a thread that has been in the guest needs
698 * to reload the host LPCR value - but only on POWER9 when
699 * running a HPT guest on a radix host.
701 void kvmhv_p9_restore_lpcr(struct kvm_split_mode
*sip
)
703 /* we're out of the guest... */
704 wait_for_sync(sip
, PHASE_OUT_OF_GUEST
);
707 mtspr(SPRN_LPCR
, sip
->host_lpcr
);
710 if (local_paca
->kvm_hstate
.tid
== 0) {
712 smp_wmb(); /* order store of do_restore vs. phase */
715 wait_for_sync(sip
, PHASE_RESET_LPCR
);
717 local_paca
->kvm_hstate
.kvm_split_mode
= NULL
;