]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/powerpc/kvm/book3s_hv_builtin.c
KVM: PPC: Book3S HV: Use msgsnd for IPIs to other cores on POWER9
[mirror_ubuntu-bionic-kernel.git] / arch / powerpc / kvm / book3s_hv_builtin.c
CommitLineData
aa04b4cc
PM
1/*
2 * Copyright 2011 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
3 *
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.
7 */
8
441c19c8 9#include <linux/cpu.h>
aa04b4cc
PM
10#include <linux/kvm_host.h>
11#include <linux/preempt.h>
66b15db6 12#include <linux/export.h>
aa04b4cc
PM
13#include <linux/sched.h>
14#include <linux/spinlock.h>
aa04b4cc 15#include <linux/init.h>
fa61a4e3
AK
16#include <linux/memblock.h>
17#include <linux/sizes.h>
fc95ca72 18#include <linux/cma.h>
90fd09f8 19#include <linux/bitops.h>
aa04b4cc
PM
20
21#include <asm/cputable.h>
22#include <asm/kvm_ppc.h>
23#include <asm/kvm_book3s.h>
e928e9cb 24#include <asm/archrandom.h>
eddb60fb 25#include <asm/xics.h>
66feed61
PM
26#include <asm/dbell.h>
27#include <asm/cputhreads.h>
37f55d30 28#include <asm/io.h>
ebe4535f 29#include <asm/asm-prototypes.h>
aa04b4cc 30
fc95ca72
JK
31#define KVM_CMA_CHUNK_ORDER 18
32
fa61a4e3
AK
33/*
34 * Hash page table alignment on newer cpus(CPU_FTR_ARCH_206)
35 * should be power of 2.
36 */
37#define HPT_ALIGN_PAGES ((1 << 18) >> PAGE_SHIFT) /* 256k */
38/*
39 * By default we reserve 5% of memory for hash pagetable allocation.
40 */
41static unsigned long kvm_cma_resv_ratio = 5;
aa04b4cc 42
fc95ca72
JK
43static struct cma *kvm_cma;
44
fa61a4e3 45static int __init early_parse_kvm_cma_resv(char *p)
d2a1b483 46{
fa61a4e3 47 pr_debug("%s(%s)\n", __func__, p);
d2a1b483 48 if (!p)
fa61a4e3
AK
49 return -EINVAL;
50 return kstrtoul(p, 0, &kvm_cma_resv_ratio);
d2a1b483 51}
fa61a4e3 52early_param("kvm_cma_resv_ratio", early_parse_kvm_cma_resv);
d2a1b483 53
fa61a4e3 54struct page *kvm_alloc_hpt(unsigned long nr_pages)
d2a1b483 55{
c04fa583 56 VM_BUG_ON(order_base_2(nr_pages) < KVM_CMA_CHUNK_ORDER - PAGE_SHIFT);
fc95ca72 57
c17b98cf 58 return cma_alloc(kvm_cma, nr_pages, order_base_2(HPT_ALIGN_PAGES));
d2a1b483
AG
59}
60EXPORT_SYMBOL_GPL(kvm_alloc_hpt);
61
fa61a4e3 62void kvm_release_hpt(struct page *page, unsigned long nr_pages)
d2a1b483 63{
fc95ca72 64 cma_release(kvm_cma, page, nr_pages);
d2a1b483
AG
65}
66EXPORT_SYMBOL_GPL(kvm_release_hpt);
67
fa61a4e3
AK
68/**
69 * kvm_cma_reserve() - reserve area for kvm hash pagetable
70 *
71 * This function reserves memory from early allocator. It should be
14ed7409 72 * called by arch specific code once the memblock allocator
fa61a4e3
AK
73 * has been activated and all other subsystems have already allocated/reserved
74 * memory.
75 */
76void __init kvm_cma_reserve(void)
77{
78 unsigned long align_size;
79 struct memblock_region *reg;
80 phys_addr_t selected_size = 0;
cec26bc3
AK
81
82 /*
83 * We need CMA reservation only when we are in HV mode
84 */
85 if (!cpu_has_feature(CPU_FTR_HVMODE))
86 return;
fa61a4e3
AK
87 /*
88 * We cannot use memblock_phys_mem_size() here, because
89 * memblock_analyze() has not been called yet.
90 */
91 for_each_memblock(memory, reg)
92 selected_size += memblock_region_memory_end_pfn(reg) -
93 memblock_region_memory_base_pfn(reg);
94
95 selected_size = (selected_size * kvm_cma_resv_ratio / 100) << PAGE_SHIFT;
96 if (selected_size) {
97 pr_debug("%s: reserving %ld MiB for global area\n", __func__,
98 (unsigned long)selected_size / SZ_1M);
c17b98cf 99 align_size = HPT_ALIGN_PAGES << PAGE_SHIFT;
c1f733aa
JK
100 cma_declare_contiguous(0, selected_size, 0, align_size,
101 KVM_CMA_CHUNK_ORDER - PAGE_SHIFT, false, &kvm_cma);
fa61a4e3
AK
102 }
103}
441c19c8 104
90fd09f8
SB
105/*
106 * Real-mode H_CONFER implementation.
107 * We check if we are the only vcpu out of this virtual core
108 * still running in the guest and not ceded. If so, we pop up
109 * to the virtual-mode implementation; if not, just return to
110 * the guest.
111 */
112long int kvmppc_rm_h_confer(struct kvm_vcpu *vcpu, int target,
113 unsigned int yield_count)
114{
ec257165
PM
115 struct kvmppc_vcore *vc = local_paca->kvm_hstate.kvm_vcore;
116 int ptid = local_paca->kvm_hstate.ptid;
90fd09f8
SB
117 int threads_running;
118 int threads_ceded;
119 int threads_conferring;
120 u64 stop = get_tb() + 10 * tb_ticks_per_usec;
121 int rv = H_SUCCESS; /* => don't yield */
122
ec257165 123 set_bit(ptid, &vc->conferring_threads);
7d6c40da
PM
124 while ((get_tb() < stop) && !VCORE_IS_EXITING(vc)) {
125 threads_running = VCORE_ENTRY_MAP(vc);
126 threads_ceded = vc->napping_threads;
127 threads_conferring = vc->conferring_threads;
128 if ((threads_ceded | threads_conferring) == threads_running) {
90fd09f8
SB
129 rv = H_TOO_HARD; /* => do yield */
130 break;
131 }
132 }
ec257165 133 clear_bit(ptid, &vc->conferring_threads);
90fd09f8
SB
134 return rv;
135}
136
441c19c8
ME
137/*
138 * When running HV mode KVM we need to block certain operations while KVM VMs
139 * exist in the system. We use a counter of VMs to track this.
140 *
141 * One of the operations we need to block is onlining of secondaries, so we
142 * protect hv_vm_count with get/put_online_cpus().
143 */
144static atomic_t hv_vm_count;
145
146void kvm_hv_vm_activated(void)
147{
148 get_online_cpus();
149 atomic_inc(&hv_vm_count);
150 put_online_cpus();
151}
152EXPORT_SYMBOL_GPL(kvm_hv_vm_activated);
153
154void kvm_hv_vm_deactivated(void)
155{
156 get_online_cpus();
157 atomic_dec(&hv_vm_count);
158 put_online_cpus();
159}
160EXPORT_SYMBOL_GPL(kvm_hv_vm_deactivated);
161
162bool kvm_hv_mode_active(void)
163{
164 return atomic_read(&hv_vm_count) != 0;
165}
ae2113a4
PM
166
167extern int hcall_real_table[], hcall_real_table_end[];
168
169int kvmppc_hcall_impl_hv_realmode(unsigned long cmd)
170{
171 cmd /= 4;
172 if (cmd < hcall_real_table_end - hcall_real_table &&
173 hcall_real_table[cmd])
174 return 1;
175
176 return 0;
177}
178EXPORT_SYMBOL_GPL(kvmppc_hcall_impl_hv_realmode);
e928e9cb
ME
179
180int kvmppc_hwrng_present(void)
181{
182 return powernv_hwrng_present();
183}
184EXPORT_SYMBOL_GPL(kvmppc_hwrng_present);
185
186long kvmppc_h_random(struct kvm_vcpu *vcpu)
187{
188 if (powernv_get_random_real_mode(&vcpu->arch.gpr[4]))
189 return H_SUCCESS;
190
191 return H_HARDWARE;
192}
eddb60fb
PM
193
194static inline void rm_writeb(unsigned long paddr, u8 val)
195{
196 __asm__ __volatile__("stbcix %0,0,%1"
197 : : "r" (val), "r" (paddr) : "memory");
198}
199
200/*
66feed61 201 * Send an interrupt or message to another CPU.
eddb60fb
PM
202 * This can only be called in real mode.
203 * The caller needs to include any barrier needed to order writes
204 * to memory vs. the IPI/message.
205 */
206void kvmhv_rm_send_ipi(int cpu)
207{
208 unsigned long xics_phys;
1704a81c 209 unsigned long msg = PPC_DBELL_TYPE(PPC_DBELL_SERVER);
eddb60fb 210
1704a81c
PM
211 /* On POWER9 we can use msgsnd for any destination cpu. */
212 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
213 msg |= get_hard_smp_processor_id(cpu);
214 __asm__ __volatile__ (PPC_MSGSND(%0) : : "r" (msg));
215 return;
216 }
217 /* On POWER8 for IPIs to threads in the same core, use msgsnd. */
66feed61
PM
218 if (cpu_has_feature(CPU_FTR_ARCH_207S) &&
219 cpu_first_thread_sibling(cpu) ==
220 cpu_first_thread_sibling(raw_smp_processor_id())) {
66feed61
PM
221 msg |= cpu_thread_in_core(cpu);
222 __asm__ __volatile__ (PPC_MSGSND(%0) : : "r" (msg));
223 return;
224 }
225
226 /* Else poke the target with an IPI */
eddb60fb
PM
227 xics_phys = paca[cpu].kvm_hstate.xics_phys;
228 rm_writeb(xics_phys + XICS_MFRR, IPI_PRIORITY);
229}
230
231/*
232 * The following functions are called from the assembly code
233 * in book3s_hv_rmhandlers.S.
234 */
235static void kvmhv_interrupt_vcore(struct kvmppc_vcore *vc, int active)
236{
237 int cpu = vc->pcpu;
238
239 /* Order setting of exit map vs. msgsnd/IPI */
240 smp_mb();
241 for (; active; active >>= 1, ++cpu)
242 if (active & 1)
243 kvmhv_rm_send_ipi(cpu);
244}
245
246void kvmhv_commence_exit(int trap)
247{
248 struct kvmppc_vcore *vc = local_paca->kvm_hstate.kvm_vcore;
249 int ptid = local_paca->kvm_hstate.ptid;
b4deba5c
PM
250 struct kvm_split_mode *sip = local_paca->kvm_hstate.kvm_split_mode;
251 int me, ee, i;
eddb60fb
PM
252
253 /* Set our bit in the threads-exiting-guest map in the 0xff00
254 bits of vcore->entry_exit_map */
255 me = 0x100 << ptid;
256 do {
257 ee = vc->entry_exit_map;
258 } while (cmpxchg(&vc->entry_exit_map, ee, ee | me) != ee);
259
260 /* Are we the first here? */
261 if ((ee >> 8) != 0)
262 return;
263
264 /*
265 * Trigger the other threads in this vcore to exit the guest.
266 * If this is a hypervisor decrementer interrupt then they
267 * will be already on their way out of the guest.
268 */
269 if (trap != BOOK3S_INTERRUPT_HV_DECREMENTER)
270 kvmhv_interrupt_vcore(vc, ee & ~(1 << ptid));
b4deba5c
PM
271
272 /*
273 * If we are doing dynamic micro-threading, interrupt the other
274 * subcores to pull them out of their guests too.
275 */
276 if (!sip)
277 return;
278
279 for (i = 0; i < MAX_SUBCORES; ++i) {
280 vc = sip->master_vcs[i];
281 if (!vc)
282 break;
283 do {
284 ee = vc->entry_exit_map;
285 /* Already asked to exit? */
286 if ((ee >> 8) != 0)
287 break;
288 } while (cmpxchg(&vc->entry_exit_map, ee,
289 ee | VCORE_EXIT_REQ) != ee);
290 if ((ee >> 8) == 0)
291 kvmhv_interrupt_vcore(vc, ee);
292 }
eddb60fb 293}
79b6c247
SW
294
295struct kvmppc_host_rm_ops *kvmppc_host_rm_ops_hv;
296EXPORT_SYMBOL_GPL(kvmppc_host_rm_ops_hv);
37f55d30 297
e3c13e56
SW
298#ifdef CONFIG_KVM_XICS
299static struct kvmppc_irq_map *get_irqmap(struct kvmppc_passthru_irqmap *pimap,
300 u32 xisr)
301{
302 int i;
303
304 /*
305 * We access the mapped array here without a lock. That
306 * is safe because we never reduce the number of entries
307 * in the array and we never change the v_hwirq field of
308 * an entry once it is set.
309 *
310 * We have also carefully ordered the stores in the writer
311 * and the loads here in the reader, so that if we find a matching
312 * hwirq here, the associated GSI and irq_desc fields are valid.
313 */
314 for (i = 0; i < pimap->n_mapped; i++) {
315 if (xisr == pimap->mapped[i].r_hwirq) {
316 /*
317 * Order subsequent reads in the caller to serialize
318 * with the writer.
319 */
320 smp_rmb();
321 return &pimap->mapped[i];
322 }
323 }
324 return NULL;
325}
326
327/*
328 * If we have an interrupt that's not an IPI, check if we have a
329 * passthrough adapter and if so, check if this external interrupt
330 * is for the adapter.
331 * We will attempt to deliver the IRQ directly to the target VCPU's
332 * ICP, the virtual ICP (based on affinity - the xive value in ICS).
333 *
334 * If the delivery fails or if this is not for a passthrough adapter,
335 * return to the host to handle this interrupt. We earlier
336 * saved a copy of the XIRR in the PACA, it will be picked up by
337 * the host ICP driver.
338 */
339static int kvmppc_check_passthru(u32 xisr, __be32 xirr)
340{
341 struct kvmppc_passthru_irqmap *pimap;
342 struct kvmppc_irq_map *irq_map;
343 struct kvm_vcpu *vcpu;
344
345 vcpu = local_paca->kvm_hstate.kvm_vcpu;
346 if (!vcpu)
347 return 1;
348 pimap = kvmppc_get_passthru_irqmap(vcpu->kvm);
349 if (!pimap)
350 return 1;
351 irq_map = get_irqmap(pimap, xisr);
352 if (!irq_map)
353 return 1;
354
355 /* We're handling this interrupt, generic code doesn't need to */
356 local_paca->kvm_hstate.saved_xirr = 0;
357
358 return kvmppc_deliver_irq_passthru(vcpu, xirr, irq_map, pimap);
359}
360
361#else
362static inline int kvmppc_check_passthru(u32 xisr, __be32 xirr)
363{
364 return 1;
365}
366#endif
367
37f55d30
SW
368/*
369 * Determine what sort of external interrupt is pending (if any).
370 * Returns:
371 * 0 if no interrupt is pending
372 * 1 if an interrupt is pending that needs to be handled by the host
f7af5209 373 * 2 Passthrough that needs completion in the host
37f55d30 374 * -1 if there was a guest wakeup IPI (which has now been cleared)
e3c13e56 375 * -2 if there is PCI passthrough external interrupt that was handled
37f55d30
SW
376 */
377
378long kvmppc_read_intr(void)
379{
380 unsigned long xics_phys;
381 u32 h_xirr;
382 __be32 xirr;
383 u32 xisr;
384 u8 host_ipi;
385
386 /* see if a host IPI is pending */
387 host_ipi = local_paca->kvm_hstate.host_ipi;
388 if (host_ipi)
389 return 1;
390
391 /* Now read the interrupt from the ICP */
392 xics_phys = local_paca->kvm_hstate.xics_phys;
393 if (unlikely(!xics_phys))
394 return 1;
395
396 /*
397 * Save XIRR for later. Since we get control in reverse endian
398 * on LE systems, save it byte reversed and fetch it back in
399 * host endian. Note that xirr is the value read from the
400 * XIRR register, while h_xirr is the host endian version.
401 */
402 xirr = _lwzcix(xics_phys + XICS_XIRR);
403 h_xirr = be32_to_cpu(xirr);
404 local_paca->kvm_hstate.saved_xirr = h_xirr;
405 xisr = h_xirr & 0xffffff;
406 /*
407 * Ensure that the store/load complete to guarantee all side
408 * effects of loading from XIRR has completed
409 */
410 smp_mb();
411
412 /* if nothing pending in the ICP */
413 if (!xisr)
414 return 0;
415
416 /* We found something in the ICP...
417 *
418 * If it is an IPI, clear the MFRR and EOI it.
419 */
420 if (xisr == XICS_IPI) {
421 _stbcix(xics_phys + XICS_MFRR, 0xff);
422 _stwcix(xics_phys + XICS_XIRR, xirr);
423 /*
424 * Need to ensure side effects of above stores
425 * complete before proceeding.
426 */
427 smp_mb();
428
429 /*
430 * We need to re-check host IPI now in case it got set in the
431 * meantime. If it's clear, we bounce the interrupt to the
432 * guest
433 */
434 host_ipi = local_paca->kvm_hstate.host_ipi;
435 if (unlikely(host_ipi != 0)) {
436 /* We raced with the host,
437 * we need to resend that IPI, bummer
438 */
439 _stbcix(xics_phys + XICS_MFRR, IPI_PRIORITY);
440 /* Let side effects complete */
441 smp_mb();
442 return 1;
443 }
444
445 /* OK, it's an IPI for us */
446 local_paca->kvm_hstate.saved_xirr = 0;
447 return -1;
448 }
449
e3c13e56 450 return kvmppc_check_passthru(xisr, xirr);
37f55d30 451}