blob: 788bc61bd08c377231efbbe39112e6ea4683731a [file] [log] [blame]
Paul Mackerrasde56a942011-06-29 00:21:34 +00001/*
2 * Copyright 2011 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
3 * Copyright (C) 2009. SUSE Linux Products GmbH. All rights reserved.
4 *
5 * Authors:
6 * Paul Mackerras <paulus@au1.ibm.com>
7 * Alexander Graf <agraf@suse.de>
8 * Kevin Wolf <mail@kevin-wolf.de>
9 *
10 * Description: KVM functions specific to running on Book 3S
11 * processors in hypervisor mode (specifically POWER7 and later).
12 *
13 * This file is derived from arch/powerpc/kvm/book3s.c,
14 * by Alexander Graf <agraf@suse.de>.
15 *
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License, version 2, as
18 * published by the Free Software Foundation.
19 */
20
21#include <linux/kvm_host.h>
Thomas Meyer4bb817ed2017-09-03 14:19:31 +020022#include <linux/kernel.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000023#include <linux/err.h>
24#include <linux/slab.h>
25#include <linux/preempt.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010026#include <linux/sched/signal.h>
Ingo Molnar03441a32017-02-08 18:51:35 +010027#include <linux/sched/stat.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000028#include <linux/delay.h>
Paul Gortmaker66b15db2011-05-27 10:46:24 -040029#include <linux/export.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000030#include <linux/fs.h>
31#include <linux/anon_inodes.h>
Gavin Shan07f8ab252016-05-11 11:15:55 +100032#include <linux/cpu.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000033#include <linux/cpumask.h>
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +000034#include <linux/spinlock.h>
35#include <linux/page-flags.h>
Paul Mackerras2c9097e2012-09-11 13:27:01 +000036#include <linux/srcu.h>
Alexander Graf398a76c2013-12-09 13:53:42 +010037#include <linux/miscdevice.h>
Paul Mackerrase23a8082015-03-28 14:21:01 +110038#include <linux/debugfs.h>
Benjamin Herrenschmidtd3989142017-04-05 17:54:51 +100039#include <linux/gfp.h>
40#include <linux/vmalloc.h>
41#include <linux/highmem.h>
42#include <linux/hugetlb.h>
43#include <linux/kvm_irqfd.h>
44#include <linux/irqbypass.h>
45#include <linux/module.h>
46#include <linux/compiler.h>
47#include <linux/of.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000048
Luke Dashjrd6ee76d2018-08-16 21:36:26 +000049#include <asm/ftrace.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000050#include <asm/reg.h>
Paul Mackerras57900692017-05-16 16:41:20 +100051#include <asm/ppc-opcode.h>
Nicholas Piggin6de66382017-11-05 23:33:55 +110052#include <asm/asm-prototypes.h>
Paul Mackerras4bad7772018-10-08 16:31:06 +110053#include <asm/archrandom.h>
Nicholas Piggine303c082018-04-01 15:50:35 +100054#include <asm/debug.h>
Paul Mackerras57900692017-05-16 16:41:20 +100055#include <asm/disassemble.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000056#include <asm/cputable.h>
57#include <asm/cacheflush.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080058#include <linux/uaccess.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000059#include <asm/io.h>
60#include <asm/kvm_ppc.h>
61#include <asm/kvm_book3s.h>
62#include <asm/mmu_context.h>
63#include <asm/lppaca.h>
64#include <asm/processor.h>
Paul Mackerras371fefd2011-06-29 00:23:08 +000065#include <asm/cputhreads.h>
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +000066#include <asm/page.h>
Michael Neulingde1d9242011-11-09 20:39:49 +000067#include <asm/hvcall.h>
David Howellsae3a1972012-03-28 18:30:02 +010068#include <asm/switch_to.h>
Paul Mackerras512691d2012-10-15 01:15:41 +000069#include <asm/smp.h>
Paul Mackerras66feed62015-03-28 14:21:12 +110070#include <asm/dbell.h>
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +053071#include <asm/hmi.h>
Suresh Warrierc57875f2016-08-19 15:35:50 +100072#include <asm/pnv-pci.h>
Paul Mackerras7a840842016-11-16 22:25:20 +110073#include <asm/mmu.h>
Paul Mackerrasf7257582016-11-18 09:02:08 +110074#include <asm/opal.h>
75#include <asm/xics.h>
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +100076#include <asm/xive.h>
Paul Mackerrasde56a942011-06-29 00:21:34 +000077
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053078#include "book3s.h"
79
Suresh E. Warrier3c78f782014-12-03 18:48:10 -060080#define CREATE_TRACE_POINTS
81#include "trace_hv.h"
82
Paul Mackerrasde56a942011-06-29 00:21:34 +000083/* #define EXIT_DEBUG */
84/* #define EXIT_DEBUG_SIMPLE */
85/* #define EXIT_DEBUG_INT */
86
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +000087/* Used to indicate that a guest page fault needs to be handled */
88#define RESUME_PAGE_FAULT (RESUME_GUEST | RESUME_FLAG_ARCH1)
Suresh Warrierf7af5202016-08-19 15:35:52 +100089/* Used to indicate that a guest passthrough interrupt needs to be handled */
90#define RESUME_PASSTHROUGH (RESUME_GUEST | RESUME_FLAG_ARCH2)
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +000091
Paul Mackerrasc7b67672012-10-15 01:18:07 +000092/* Used as a "null" value for timebase values */
93#define TB_NIL (~(u64)0)
94
Paul Mackerras699a0ea2014-06-02 11:02:59 +100095static DECLARE_BITMAP(default_enabled_hcalls, MAX_HCALL_OPCODE/4 + 1);
96
Paul Mackerrasb4deba52015-07-02 20:38:16 +100097static int dynamic_mt_modes = 6;
Russell Currey57ad583f2017-01-12 14:54:13 +110098module_param(dynamic_mt_modes, int, 0644);
Paul Mackerrasb4deba52015-07-02 20:38:16 +100099MODULE_PARM_DESC(dynamic_mt_modes, "Set of allowed dynamic micro-threading modes: 0 (= none), 2, 4, or 6 (= 2 or 4)");
Paul Mackerrasec257162015-06-24 21:18:03 +1000100static int target_smt_mode;
Russell Currey57ad583f2017-01-12 14:54:13 +1100101module_param(target_smt_mode, int, 0644);
Paul Mackerrasec257162015-06-24 21:18:03 +1000102MODULE_PARM_DESC(target_smt_mode, "Target threads per core (0 = max)");
Stewart Smith9678cda2014-07-18 14:18:43 +1000103
Paul Mackerras516f7892017-10-16 16:11:57 +1100104static bool indep_threads_mode = true;
105module_param(indep_threads_mode, bool, S_IRUGO | S_IWUSR);
106MODULE_PARM_DESC(indep_threads_mode, "Independent-threads mode (only on POWER9)");
107
Paul Mackerrasaa227862018-09-12 10:42:12 +1000108static bool one_vm_per_core;
109module_param(one_vm_per_core, bool, S_IRUGO | S_IWUSR);
110MODULE_PARM_DESC(one_vm_per_core, "Only run vCPUs from the same VM on a core (requires indep_threads_mode=N)");
111
Suresh E. Warrier520fe9c2015-12-21 16:33:57 -0600112#ifdef CONFIG_KVM_XICS
113static struct kernel_param_ops module_param_ops = {
114 .set = param_set_int,
115 .get = param_get_int,
116};
117
Russell Currey57ad583f2017-01-12 14:54:13 +1100118module_param_cb(kvm_irq_bypass, &module_param_ops, &kvm_irq_bypass, 0644);
Suresh Warrier644abbb2016-08-19 15:35:54 +1000119MODULE_PARM_DESC(kvm_irq_bypass, "Bypass passthrough interrupt optimization");
120
Russell Currey57ad583f2017-01-12 14:54:13 +1100121module_param_cb(h_ipi_redirect, &module_param_ops, &h_ipi_redirect, 0644);
Suresh E. Warrier520fe9c2015-12-21 16:33:57 -0600122MODULE_PARM_DESC(h_ipi_redirect, "Redirect H_IPI wakeup to a free host core");
123#endif
124
Paul Mackerrasaa069a92018-09-21 20:02:01 +1000125/* If set, guests are allowed to create and control nested guests */
126static bool nested = true;
127module_param(nested, bool, S_IRUGO | S_IWUSR);
128MODULE_PARM_DESC(nested, "Enable nested virtualization (only on POWER9)");
129
130static inline bool nesting_enabled(struct kvm *kvm)
131{
132 return kvm->arch.nested_enable && kvm_is_radix(kvm);
133}
134
Paul Mackerras00608e12018-01-11 16:54:26 +1100135/* If set, the threads on each CPU core have to be in the same MMU mode */
136static bool no_mixing_hpt_and_radix;
137
Paul Mackerras19ccb762011-07-23 17:42:46 +1000138static void kvmppc_end_cede(struct kvm_vcpu *vcpu);
Paul Mackerras32fad282012-05-04 02:32:53 +0000139static int kvmppc_hv_setup_htab_rma(struct kvm_vcpu *vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +1000140
Paul Mackerras7aa15842018-04-20 19:53:22 +1000141/*
142 * RWMR values for POWER8. These control the rate at which PURR
143 * and SPURR count and should be set according to the number of
144 * online threads in the vcore being run.
145 */
Nicholas Mc Guire0abb75b2018-07-07 11:07:25 +0200146#define RWMR_RPA_P8_1THREAD 0x164520C62609AECAUL
147#define RWMR_RPA_P8_2THREAD 0x7FFF2908450D8DA9UL
148#define RWMR_RPA_P8_3THREAD 0x164520C62609AECAUL
149#define RWMR_RPA_P8_4THREAD 0x199A421245058DA9UL
150#define RWMR_RPA_P8_5THREAD 0x164520C62609AECAUL
151#define RWMR_RPA_P8_6THREAD 0x164520C62609AECAUL
152#define RWMR_RPA_P8_7THREAD 0x164520C62609AECAUL
153#define RWMR_RPA_P8_8THREAD 0x164520C62609AECAUL
Paul Mackerras7aa15842018-04-20 19:53:22 +1000154
155static unsigned long p8_rwmr_values[MAX_SMT_THREADS + 1] = {
156 RWMR_RPA_P8_1THREAD,
157 RWMR_RPA_P8_1THREAD,
158 RWMR_RPA_P8_2THREAD,
159 RWMR_RPA_P8_3THREAD,
160 RWMR_RPA_P8_4THREAD,
161 RWMR_RPA_P8_5THREAD,
162 RWMR_RPA_P8_6THREAD,
163 RWMR_RPA_P8_7THREAD,
164 RWMR_RPA_P8_8THREAD,
165};
166
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +1000167static inline struct kvm_vcpu *next_runnable_thread(struct kvmppc_vcore *vc,
168 int *ip)
169{
170 int i = *ip;
171 struct kvm_vcpu *vcpu;
172
173 while (++i < MAX_SMT_THREADS) {
174 vcpu = READ_ONCE(vc->runnable_threads[i]);
175 if (vcpu) {
176 *ip = i;
177 return vcpu;
178 }
179 }
180 return NULL;
181}
182
183/* Used to traverse the list of runnable threads for a given vcore */
184#define for_each_runnable_thread(i, vcpu, vc) \
185 for (i = -1; (vcpu = next_runnable_thread(vc, &i)); )
186
Paul Mackerras66feed62015-03-28 14:21:12 +1100187static bool kvmppc_ipi_thread(int cpu)
188{
Paul Mackerras1704a812016-11-18 08:47:08 +1100189 unsigned long msg = PPC_DBELL_TYPE(PPC_DBELL_SERVER);
190
Paul Mackerrasf3c18e92018-10-08 16:31:05 +1100191 /* If we're a nested hypervisor, fall back to ordinary IPIs for now */
192 if (kvmhv_on_pseries())
193 return false;
194
Paul Mackerras1704a812016-11-18 08:47:08 +1100195 /* On POWER9 we can use msgsnd to IPI any cpu */
196 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
197 msg |= get_hard_smp_processor_id(cpu);
198 smp_mb();
199 __asm__ __volatile__ (PPC_MSGSND(%0) : : "r" (msg));
200 return true;
201 }
202
Paul Mackerras66feed62015-03-28 14:21:12 +1100203 /* On POWER8 for IPIs to threads in the same core, use msgsnd */
204 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
205 preempt_disable();
206 if (cpu_first_thread_sibling(cpu) ==
207 cpu_first_thread_sibling(smp_processor_id())) {
Paul Mackerras66feed62015-03-28 14:21:12 +1100208 msg |= cpu_thread_in_core(cpu);
209 smp_mb();
210 __asm__ __volatile__ (PPC_MSGSND(%0) : : "r" (msg));
211 preempt_enable();
212 return true;
213 }
214 preempt_enable();
215 }
216
217#if defined(CONFIG_PPC_ICP_NATIVE) && defined(CONFIG_SMP)
Paul Mackerrasf7257582016-11-18 09:02:08 +1100218 if (cpu >= 0 && cpu < nr_cpu_ids) {
Nicholas Piggind2e60072018-02-14 01:08:12 +1000219 if (paca_ptrs[cpu]->kvm_hstate.xics_phys) {
Paul Mackerrasf7257582016-11-18 09:02:08 +1100220 xics_wake_cpu(cpu);
221 return true;
222 }
223 opal_int_set_mfrr(get_hard_smp_processor_id(cpu), IPI_PRIORITY);
Paul Mackerras66feed62015-03-28 14:21:12 +1100224 return true;
225 }
226#endif
227
228 return false;
229}
230
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530231static void kvmppc_fast_vcpu_kick_hv(struct kvm_vcpu *vcpu)
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000232{
Paul Mackerrasec257162015-06-24 21:18:03 +1000233 int cpu;
Marcelo Tosatti85773702016-02-19 09:46:39 +0100234 struct swait_queue_head *wqp;
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000235
236 wqp = kvm_arch_vcpu_wq(vcpu);
Davidlohr Bueso267ad7b2017-09-13 13:08:23 -0700237 if (swq_has_sleeper(wqp)) {
Peter Zijlstrab3dae102018-06-12 10:34:52 +0200238 swake_up_one(wqp);
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000239 ++vcpu->stat.halt_wakeup;
240 }
241
Paul Mackerras3deda5e2016-12-20 14:02:29 +1100242 cpu = READ_ONCE(vcpu->arch.thread_cpu);
243 if (cpu >= 0 && kvmppc_ipi_thread(cpu))
Paul Mackerras66feed62015-03-28 14:21:12 +1100244 return;
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000245
246 /* CPU points to the first thread of the core */
Paul Mackerrasec257162015-06-24 21:18:03 +1000247 cpu = vcpu->cpu;
Paul Mackerras66feed62015-03-28 14:21:12 +1100248 if (cpu >= 0 && cpu < nr_cpu_ids && cpu_online(cpu))
249 smp_send_reschedule(cpu);
Benjamin Herrenschmidt54695c32013-04-17 20:30:50 +0000250}
251
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000252/*
253 * We use the vcpu_load/put functions to measure stolen time.
254 * Stolen time is counted as time when either the vcpu is able to
255 * run as part of a virtual core, but the task running the vcore
256 * is preempted or sleeping, or when the vcpu needs something done
257 * in the kernel by the task running the vcpu, but that task is
258 * preempted or sleeping. Those two things have to be counted
259 * separately, since one of the vcpu tasks will take on the job
260 * of running the core, and the other vcpu tasks in the vcore will
261 * sleep waiting for it to do that, but that sleep shouldn't count
262 * as stolen time.
263 *
264 * Hence we accumulate stolen time when the vcpu can run as part of
265 * a vcore using vc->stolen_tb, and the stolen time when the vcpu
266 * needs its task to do other things in the kernel (for example,
267 * service a page fault) in busy_stolen. We don't accumulate
268 * stolen time for a vcore when it is inactive, or for a vcpu
269 * when it is in state RUNNING or NOTREADY. NOTREADY is a bit of
270 * a misnomer; it means that the vcpu task is not executing in
271 * the KVM_VCPU_RUN ioctl, i.e. it is in userspace or elsewhere in
272 * the kernel. We don't have any way of dividing up that time
273 * between time that the vcpu is genuinely stopped, time that
274 * the task is actively working on behalf of the vcpu, and time
275 * that the task is preempted, so we don't count any of it as
276 * stolen.
277 *
278 * Updates to busy_stolen are protected by arch.tbacct_lock;
Paul Mackerras2711e242014-12-04 16:43:28 +1100279 * updates to vc->stolen_tb are protected by the vcore->stoltb_lock
280 * lock. The stolen times are measured in units of timebase ticks.
281 * (Note that the != TB_NIL checks below are purely defensive;
282 * they should never fail.)
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000283 */
284
Paul Mackerrasec257162015-06-24 21:18:03 +1000285static void kvmppc_core_start_stolen(struct kvmppc_vcore *vc)
286{
287 unsigned long flags;
288
289 spin_lock_irqsave(&vc->stoltb_lock, flags);
290 vc->preempt_tb = mftb();
291 spin_unlock_irqrestore(&vc->stoltb_lock, flags);
292}
293
294static void kvmppc_core_end_stolen(struct kvmppc_vcore *vc)
295{
296 unsigned long flags;
297
298 spin_lock_irqsave(&vc->stoltb_lock, flags);
299 if (vc->preempt_tb != TB_NIL) {
300 vc->stolen_tb += mftb() - vc->preempt_tb;
301 vc->preempt_tb = TB_NIL;
302 }
303 spin_unlock_irqrestore(&vc->stoltb_lock, flags);
304}
305
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530306static void kvmppc_core_vcpu_load_hv(struct kvm_vcpu *vcpu, int cpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000307{
Paul Mackerras0456ec42012-02-03 00:56:21 +0000308 struct kvmppc_vcore *vc = vcpu->arch.vcore;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +1100309 unsigned long flags;
Paul Mackerras0456ec42012-02-03 00:56:21 +0000310
Paul Mackerras2711e242014-12-04 16:43:28 +1100311 /*
312 * We can test vc->runner without taking the vcore lock,
313 * because only this task ever sets vc->runner to this
314 * vcpu, and once it is set to this vcpu, only this task
315 * ever sets it to NULL.
316 */
Paul Mackerrasec257162015-06-24 21:18:03 +1000317 if (vc->runner == vcpu && vc->vcore_state >= VCORE_SLEEPING)
318 kvmppc_core_end_stolen(vc);
319
Paul Mackerras2711e242014-12-04 16:43:28 +1100320 spin_lock_irqsave(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000321 if (vcpu->arch.state == KVMPPC_VCPU_BUSY_IN_HOST &&
322 vcpu->arch.busy_preempt != TB_NIL) {
323 vcpu->arch.busy_stolen += mftb() - vcpu->arch.busy_preempt;
324 vcpu->arch.busy_preempt = TB_NIL;
325 }
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +1100326 spin_unlock_irqrestore(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000327}
328
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530329static void kvmppc_core_vcpu_put_hv(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000330{
Paul Mackerras0456ec42012-02-03 00:56:21 +0000331 struct kvmppc_vcore *vc = vcpu->arch.vcore;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +1100332 unsigned long flags;
Paul Mackerras0456ec42012-02-03 00:56:21 +0000333
Paul Mackerrasec257162015-06-24 21:18:03 +1000334 if (vc->runner == vcpu && vc->vcore_state >= VCORE_SLEEPING)
335 kvmppc_core_start_stolen(vc);
336
Paul Mackerras2711e242014-12-04 16:43:28 +1100337 spin_lock_irqsave(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000338 if (vcpu->arch.state == KVMPPC_VCPU_BUSY_IN_HOST)
339 vcpu->arch.busy_preempt = mftb();
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +1100340 spin_unlock_irqrestore(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000341}
342
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530343static void kvmppc_set_msr_hv(struct kvm_vcpu *vcpu, u64 msr)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000344{
Paul Mackerrasc20875a2015-11-12 16:43:02 +1100345 /*
346 * Check for illegal transactional state bit combination
347 * and if we find it, force the TS field to a safe state.
348 */
349 if ((msr & MSR_TS_MASK) == MSR_TS_MASK)
350 msr &= ~MSR_TS_MASK;
Paul Mackerrasde56a942011-06-29 00:21:34 +0000351 vcpu->arch.shregs.msr = msr;
Paul Mackerras19ccb762011-07-23 17:42:46 +1000352 kvmppc_end_cede(vcpu);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000353}
354
Thomas Huth5358a962015-05-22 09:25:02 +0200355static void kvmppc_set_pvr_hv(struct kvm_vcpu *vcpu, u32 pvr)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000356{
357 vcpu->arch.pvr = pvr;
358}
359
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100360/* Dummy value used in computing PCR value below */
361#define PCR_ARCH_300 (PCR_ARCH_207 << 1)
362
Thomas Huth5358a962015-05-22 09:25:02 +0200363static int kvmppc_set_arch_compat(struct kvm_vcpu *vcpu, u32 arch_compat)
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000364{
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100365 unsigned long host_pcr_bit = 0, guest_pcr_bit = 0;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000366 struct kvmppc_vcore *vc = vcpu->arch.vcore;
367
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100368 /* We can (emulate) our own architecture version and anything older */
369 if (cpu_has_feature(CPU_FTR_ARCH_300))
370 host_pcr_bit = PCR_ARCH_300;
371 else if (cpu_has_feature(CPU_FTR_ARCH_207S))
372 host_pcr_bit = PCR_ARCH_207;
373 else if (cpu_has_feature(CPU_FTR_ARCH_206))
374 host_pcr_bit = PCR_ARCH_206;
375 else
376 host_pcr_bit = PCR_ARCH_205;
377
378 /* Determine lowest PCR bit needed to run guest in given PVR level */
379 guest_pcr_bit = host_pcr_bit;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000380 if (arch_compat) {
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000381 switch (arch_compat) {
382 case PVR_ARCH_205:
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100383 guest_pcr_bit = PCR_ARCH_205;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000384 break;
385 case PVR_ARCH_206:
386 case PVR_ARCH_206p:
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100387 guest_pcr_bit = PCR_ARCH_206;
Paul Mackerras5557ae02014-01-08 21:25:24 +1100388 break;
389 case PVR_ARCH_207:
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100390 guest_pcr_bit = PCR_ARCH_207;
391 break;
392 case PVR_ARCH_300:
393 guest_pcr_bit = PCR_ARCH_300;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000394 break;
395 default:
396 return -EINVAL;
397 }
398 }
399
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100400 /* Check requested PCR bits don't exceed our capabilities */
401 if (guest_pcr_bit > host_pcr_bit)
402 return -EINVAL;
403
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000404 spin_lock(&vc->lock);
405 vc->arch_compat = arch_compat;
Suraj Jitindar Singh2ee13be32016-11-14 11:35:08 +1100406 /* Set all PCR bits for which guest_pcr_bit <= bit < host_pcr_bit */
407 vc->pcr = host_pcr_bit - guest_pcr_bit;
Paul Mackerras388cc6e2013-09-21 14:35:02 +1000408 spin_unlock(&vc->lock);
409
410 return 0;
411}
412
Thomas Huth5358a962015-05-22 09:25:02 +0200413static void kvmppc_dump_regs(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000414{
415 int r;
416
417 pr_err("vcpu %p (%d):\n", vcpu, vcpu->vcpu_id);
418 pr_err("pc = %.16lx msr = %.16llx trap = %x\n",
Simon Guo173c5202018-05-07 14:20:08 +0800419 vcpu->arch.regs.nip, vcpu->arch.shregs.msr, vcpu->arch.trap);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000420 for (r = 0; r < 16; ++r)
421 pr_err("r%2d = %.16lx r%d = %.16lx\n",
422 r, kvmppc_get_gpr(vcpu, r),
423 r+16, kvmppc_get_gpr(vcpu, r+16));
424 pr_err("ctr = %.16lx lr = %.16lx\n",
Simon Guo173c5202018-05-07 14:20:08 +0800425 vcpu->arch.regs.ctr, vcpu->arch.regs.link);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000426 pr_err("srr0 = %.16llx srr1 = %.16llx\n",
427 vcpu->arch.shregs.srr0, vcpu->arch.shregs.srr1);
428 pr_err("sprg0 = %.16llx sprg1 = %.16llx\n",
429 vcpu->arch.shregs.sprg0, vcpu->arch.shregs.sprg1);
430 pr_err("sprg2 = %.16llx sprg3 = %.16llx\n",
431 vcpu->arch.shregs.sprg2, vcpu->arch.shregs.sprg3);
Paul Mackerrasfd0944b2018-10-08 16:30:58 +1100432 pr_err("cr = %.8lx xer = %.16lx dsisr = %.8x\n",
433 vcpu->arch.regs.ccr, vcpu->arch.regs.xer, vcpu->arch.shregs.dsisr);
Paul Mackerrasde56a942011-06-29 00:21:34 +0000434 pr_err("dar = %.16llx\n", vcpu->arch.shregs.dar);
435 pr_err("fault dar = %.16lx dsisr = %.8x\n",
436 vcpu->arch.fault_dar, vcpu->arch.fault_dsisr);
437 pr_err("SLB (%d entries):\n", vcpu->arch.slb_max);
438 for (r = 0; r < vcpu->arch.slb_max; ++r)
439 pr_err(" ESID = %.16llx VSID = %.16llx\n",
440 vcpu->arch.slb[r].orige, vcpu->arch.slb[r].origv);
441 pr_err("lpcr = %.16lx sdr1 = %.16lx last_inst = %.8x\n",
Paul Mackerrasa0144e22013-09-20 14:52:38 +1000442 vcpu->arch.vcore->lpcr, vcpu->kvm->arch.sdr1,
Paul Mackerrasde56a942011-06-29 00:21:34 +0000443 vcpu->arch.last_inst);
444}
445
Thomas Huth5358a962015-05-22 09:25:02 +0200446static struct kvm_vcpu *kvmppc_find_vcpu(struct kvm *kvm, int id)
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000447{
David Hildenbrande09fefd2015-11-05 09:03:50 +0100448 struct kvm_vcpu *ret;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000449
450 mutex_lock(&kvm->lock);
David Hildenbrande09fefd2015-11-05 09:03:50 +0100451 ret = kvm_get_vcpu_by_id(kvm, id);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000452 mutex_unlock(&kvm->lock);
453 return ret;
454}
455
456static void init_vpa(struct kvm_vcpu *vcpu, struct lppaca *vpa)
457{
Anton Blanchardf13c13a2013-08-07 02:01:26 +1000458 vpa->__old_status |= LPPACA_OLD_SHARED_PROC;
Alexander Graf02407552014-06-11 10:34:19 +0200459 vpa->yield_count = cpu_to_be32(1);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000460}
461
Paul Mackerras55b665b2012-09-25 20:33:06 +0000462static int set_vpa(struct kvm_vcpu *vcpu, struct kvmppc_vpa *v,
463 unsigned long addr, unsigned long len)
464{
465 /* check address is cacheline aligned */
466 if (addr & (L1_CACHE_BYTES - 1))
467 return -EINVAL;
468 spin_lock(&vcpu->arch.vpa_update_lock);
469 if (v->next_gpa != addr || v->len != len) {
470 v->next_gpa = addr;
471 v->len = addr ? len : 0;
472 v->update_pending = 1;
473 }
474 spin_unlock(&vcpu->arch.vpa_update_lock);
475 return 0;
476}
477
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000478/* Length for a per-processor buffer is passed in at offset 4 in the buffer */
479struct reg_vpa {
480 u32 dummy;
481 union {
Alexander Graf02407552014-06-11 10:34:19 +0200482 __be16 hword;
483 __be32 word;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000484 } length;
485};
486
487static int vpa_is_registered(struct kvmppc_vpa *vpap)
488{
489 if (vpap->update_pending)
490 return vpap->next_gpa != 0;
491 return vpap->pinned_addr != NULL;
492}
493
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000494static unsigned long do_h_register_vpa(struct kvm_vcpu *vcpu,
495 unsigned long flags,
496 unsigned long vcpuid, unsigned long vpa)
497{
498 struct kvm *kvm = vcpu->kvm;
Paul Mackerras93e60242011-12-12 12:28:55 +0000499 unsigned long len, nb;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000500 void *va;
501 struct kvm_vcpu *tvcpu;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000502 int err;
503 int subfunc;
504 struct kvmppc_vpa *vpap;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000505
506 tvcpu = kvmppc_find_vcpu(kvm, vcpuid);
507 if (!tvcpu)
508 return H_PARAMETER;
509
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000510 subfunc = (flags >> H_VPA_FUNC_SHIFT) & H_VPA_FUNC_MASK;
511 if (subfunc == H_VPA_REG_VPA || subfunc == H_VPA_REG_DTL ||
512 subfunc == H_VPA_REG_SLB) {
513 /* Registering new area - address must be cache-line aligned */
514 if ((vpa & (L1_CACHE_BYTES - 1)) || !vpa)
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000515 return H_PARAMETER;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000516
517 /* convert logical addr to kernel addr and read length */
Paul Mackerras93e60242011-12-12 12:28:55 +0000518 va = kvmppc_pin_guest_page(kvm, vpa, &nb);
519 if (va == NULL)
Paul Mackerrasb2b2f162011-12-12 12:28:21 +0000520 return H_PARAMETER;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000521 if (subfunc == H_VPA_REG_VPA)
Alexander Graf02407552014-06-11 10:34:19 +0200522 len = be16_to_cpu(((struct reg_vpa *)va)->length.hword);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000523 else
Alexander Graf02407552014-06-11 10:34:19 +0200524 len = be32_to_cpu(((struct reg_vpa *)va)->length.word);
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000525 kvmppc_unpin_guest_page(kvm, va, vpa, false);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000526
527 /* Check length */
528 if (len > nb || len < sizeof(struct reg_vpa))
529 return H_PARAMETER;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000530 } else {
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000531 vpa = 0;
532 len = 0;
533 }
534
535 err = H_PARAMETER;
536 vpap = NULL;
537 spin_lock(&tvcpu->arch.vpa_update_lock);
538
539 switch (subfunc) {
540 case H_VPA_REG_VPA: /* register VPA */
Nicholas Piggineaac112e2017-08-13 11:33:38 +1000541 /*
542 * The size of our lppaca is 1kB because of the way we align
543 * it for the guest to avoid crossing a 4kB boundary. We only
544 * use 640 bytes of the structure though, so we should accept
545 * clients that set a size of 640.
546 */
Nicholas Piggin499dcd42018-02-14 01:08:13 +1000547 BUILD_BUG_ON(sizeof(struct lppaca) != 640);
548 if (len < sizeof(struct lppaca))
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000549 break;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000550 vpap = &tvcpu->arch.vpa;
551 err = 0;
552 break;
553
554 case H_VPA_REG_DTL: /* register DTL */
555 if (len < sizeof(struct dtl_entry))
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000556 break;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000557 len -= len % sizeof(struct dtl_entry);
558
559 /* Check that they have previously registered a VPA */
560 err = H_RESOURCE;
561 if (!vpa_is_registered(&tvcpu->arch.vpa))
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000562 break;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000563
564 vpap = &tvcpu->arch.dtl;
565 err = 0;
566 break;
567
568 case H_VPA_REG_SLB: /* register SLB shadow buffer */
569 /* Check that they have previously registered a VPA */
570 err = H_RESOURCE;
571 if (!vpa_is_registered(&tvcpu->arch.vpa))
572 break;
573
574 vpap = &tvcpu->arch.slb_shadow;
575 err = 0;
576 break;
577
578 case H_VPA_DEREG_VPA: /* deregister VPA */
579 /* Check they don't still have a DTL or SLB buf registered */
580 err = H_RESOURCE;
581 if (vpa_is_registered(&tvcpu->arch.dtl) ||
582 vpa_is_registered(&tvcpu->arch.slb_shadow))
583 break;
584
585 vpap = &tvcpu->arch.vpa;
586 err = 0;
587 break;
588
589 case H_VPA_DEREG_DTL: /* deregister DTL */
590 vpap = &tvcpu->arch.dtl;
591 err = 0;
592 break;
593
594 case H_VPA_DEREG_SLB: /* deregister SLB shadow buffer */
595 vpap = &tvcpu->arch.slb_shadow;
596 err = 0;
597 break;
598 }
599
600 if (vpap) {
601 vpap->next_gpa = vpa;
602 vpap->len = len;
603 vpap->update_pending = 1;
604 }
605
606 spin_unlock(&tvcpu->arch.vpa_update_lock);
607
608 return err;
609}
610
Paul Mackerras081f3232012-06-01 20:20:24 +1000611static void kvmppc_update_vpa(struct kvm_vcpu *vcpu, struct kvmppc_vpa *vpap)
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000612{
Paul Mackerras081f3232012-06-01 20:20:24 +1000613 struct kvm *kvm = vcpu->kvm;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000614 void *va;
615 unsigned long nb;
Paul Mackerras081f3232012-06-01 20:20:24 +1000616 unsigned long gpa;
617
618 /*
619 * We need to pin the page pointed to by vpap->next_gpa,
620 * but we can't call kvmppc_pin_guest_page under the lock
621 * as it does get_user_pages() and down_read(). So we
622 * have to drop the lock, pin the page, then get the lock
623 * again and check that a new area didn't get registered
624 * in the meantime.
625 */
626 for (;;) {
627 gpa = vpap->next_gpa;
628 spin_unlock(&vcpu->arch.vpa_update_lock);
629 va = NULL;
630 nb = 0;
631 if (gpa)
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000632 va = kvmppc_pin_guest_page(kvm, gpa, &nb);
Paul Mackerras081f3232012-06-01 20:20:24 +1000633 spin_lock(&vcpu->arch.vpa_update_lock);
634 if (gpa == vpap->next_gpa)
635 break;
636 /* sigh... unpin that one and try again */
637 if (va)
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000638 kvmppc_unpin_guest_page(kvm, va, gpa, false);
Paul Mackerras081f3232012-06-01 20:20:24 +1000639 }
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000640
641 vpap->update_pending = 0;
Paul Mackerras081f3232012-06-01 20:20:24 +1000642 if (va && nb < vpap->len) {
643 /*
644 * If it's now too short, it must be that userspace
645 * has changed the mappings underlying guest memory,
646 * so unregister the region.
647 */
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000648 kvmppc_unpin_guest_page(kvm, va, gpa, false);
Paul Mackerras081f3232012-06-01 20:20:24 +1000649 va = NULL;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000650 }
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000651 if (vpap->pinned_addr)
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000652 kvmppc_unpin_guest_page(kvm, vpap->pinned_addr, vpap->gpa,
653 vpap->dirty);
654 vpap->gpa = gpa;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000655 vpap->pinned_addr = va;
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000656 vpap->dirty = false;
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000657 if (va)
658 vpap->pinned_end = va + vpap->len;
659}
Paul Mackerras93e60242011-12-12 12:28:55 +0000660
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000661static void kvmppc_update_vpas(struct kvm_vcpu *vcpu)
662{
Paul Mackerras2f12f032012-10-15 01:17:17 +0000663 if (!(vcpu->arch.vpa.update_pending ||
664 vcpu->arch.slb_shadow.update_pending ||
665 vcpu->arch.dtl.update_pending))
666 return;
667
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000668 spin_lock(&vcpu->arch.vpa_update_lock);
669 if (vcpu->arch.vpa.update_pending) {
Paul Mackerras081f3232012-06-01 20:20:24 +1000670 kvmppc_update_vpa(vcpu, &vcpu->arch.vpa);
Paul Mackerras55b665b2012-09-25 20:33:06 +0000671 if (vcpu->arch.vpa.pinned_addr)
672 init_vpa(vcpu, vcpu->arch.vpa.pinned_addr);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000673 }
674 if (vcpu->arch.dtl.update_pending) {
Paul Mackerras081f3232012-06-01 20:20:24 +1000675 kvmppc_update_vpa(vcpu, &vcpu->arch.dtl);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000676 vcpu->arch.dtl_ptr = vcpu->arch.dtl.pinned_addr;
677 vcpu->arch.dtl_index = 0;
678 }
679 if (vcpu->arch.slb_shadow.update_pending)
Paul Mackerras081f3232012-06-01 20:20:24 +1000680 kvmppc_update_vpa(vcpu, &vcpu->arch.slb_shadow);
Paul Mackerras2e25aa52012-02-19 17:46:32 +0000681 spin_unlock(&vcpu->arch.vpa_update_lock);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000682}
683
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000684/*
685 * Return the accumulated stolen time for the vcore up until `now'.
686 * The caller should hold the vcore lock.
687 */
688static u64 vcore_stolen_time(struct kvmppc_vcore *vc, u64 now)
689{
690 u64 p;
Paul Mackerras2711e242014-12-04 16:43:28 +1100691 unsigned long flags;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000692
Paul Mackerras2711e242014-12-04 16:43:28 +1100693 spin_lock_irqsave(&vc->stoltb_lock, flags);
694 p = vc->stolen_tb;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000695 if (vc->vcore_state != VCORE_INACTIVE &&
Paul Mackerras2711e242014-12-04 16:43:28 +1100696 vc->preempt_tb != TB_NIL)
697 p += now - vc->preempt_tb;
698 spin_unlock_irqrestore(&vc->stoltb_lock, flags);
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000699 return p;
700}
701
Paul Mackerras0456ec42012-02-03 00:56:21 +0000702static void kvmppc_create_dtl_entry(struct kvm_vcpu *vcpu,
703 struct kvmppc_vcore *vc)
704{
705 struct dtl_entry *dt;
706 struct lppaca *vpa;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000707 unsigned long stolen;
708 unsigned long core_stolen;
709 u64 now;
Paul Mackerras8b24e692017-06-26 15:45:51 +1000710 unsigned long flags;
Paul Mackerras0456ec42012-02-03 00:56:21 +0000711
712 dt = vcpu->arch.dtl_ptr;
713 vpa = vcpu->arch.vpa.pinned_addr;
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000714 now = mftb();
715 core_stolen = vcore_stolen_time(vc, now);
716 stolen = core_stolen - vcpu->arch.stolen_logged;
717 vcpu->arch.stolen_logged = core_stolen;
Paul Mackerras8b24e692017-06-26 15:45:51 +1000718 spin_lock_irqsave(&vcpu->arch.tbacct_lock, flags);
Paul Mackerrasc7b67672012-10-15 01:18:07 +0000719 stolen += vcpu->arch.busy_stolen;
720 vcpu->arch.busy_stolen = 0;
Paul Mackerras8b24e692017-06-26 15:45:51 +1000721 spin_unlock_irqrestore(&vcpu->arch.tbacct_lock, flags);
Paul Mackerras0456ec42012-02-03 00:56:21 +0000722 if (!dt || !vpa)
723 return;
724 memset(dt, 0, sizeof(struct dtl_entry));
725 dt->dispatch_reason = 7;
Alexander Graf02407552014-06-11 10:34:19 +0200726 dt->processor_id = cpu_to_be16(vc->pcpu + vcpu->arch.ptid);
727 dt->timebase = cpu_to_be64(now + vc->tb_offset);
728 dt->enqueue_to_dispatch_time = cpu_to_be32(stolen);
729 dt->srr0 = cpu_to_be64(kvmppc_get_pc(vcpu));
730 dt->srr1 = cpu_to_be64(vcpu->arch.shregs.msr);
Paul Mackerras0456ec42012-02-03 00:56:21 +0000731 ++dt;
732 if (dt == vcpu->arch.dtl.pinned_end)
733 dt = vcpu->arch.dtl.pinned_addr;
734 vcpu->arch.dtl_ptr = dt;
735 /* order writing *dt vs. writing vpa->dtl_idx */
736 smp_wmb();
Alexander Graf02407552014-06-11 10:34:19 +0200737 vpa->dtl_idx = cpu_to_be64(++vcpu->arch.dtl_index);
Paul Mackerrasc35635e2013-04-18 19:51:04 +0000738 vcpu->arch.dtl.dirty = true;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000739}
740
Paul Mackerras1da4e2f2017-05-19 16:26:16 +1000741/* See if there is a doorbell interrupt pending for a vcpu */
742static bool kvmppc_doorbell_pending(struct kvm_vcpu *vcpu)
743{
744 int thr;
745 struct kvmppc_vcore *vc;
746
Paul Mackerras57900692017-05-16 16:41:20 +1000747 if (vcpu->arch.doorbell_request)
748 return true;
749 /*
750 * Ensure that the read of vcore->dpdes comes after the read
751 * of vcpu->doorbell_request. This barrier matches the
Paul Mackerrasf7035ce2018-10-08 16:30:50 +1100752 * smb_wmb() in kvmppc_guest_entry_inject().
Paul Mackerras57900692017-05-16 16:41:20 +1000753 */
754 smp_rmb();
Paul Mackerras1da4e2f2017-05-19 16:26:16 +1000755 vc = vcpu->arch.vcore;
756 thr = vcpu->vcpu_id - vc->first_vcpuid;
757 return !!(vc->dpdes & (1 << thr));
758}
759
Michael Neuling96423822014-06-02 11:03:01 +1000760static bool kvmppc_power8_compatible(struct kvm_vcpu *vcpu)
761{
762 if (vcpu->arch.vcore->arch_compat >= PVR_ARCH_207)
763 return true;
764 if ((!vcpu->arch.vcore->arch_compat) &&
765 cpu_has_feature(CPU_FTR_ARCH_207S))
766 return true;
767 return false;
768}
769
770static int kvmppc_h_set_mode(struct kvm_vcpu *vcpu, unsigned long mflags,
771 unsigned long resource, unsigned long value1,
772 unsigned long value2)
773{
774 switch (resource) {
775 case H_SET_MODE_RESOURCE_SET_CIABR:
776 if (!kvmppc_power8_compatible(vcpu))
777 return H_P2;
778 if (value2)
779 return H_P4;
780 if (mflags)
781 return H_UNSUPPORTED_FLAG_START;
782 /* Guests can't breakpoint the hypervisor */
783 if ((value1 & CIABR_PRIV) == CIABR_PRIV_HYPER)
784 return H_P3;
785 vcpu->arch.ciabr = value1;
786 return H_SUCCESS;
787 case H_SET_MODE_RESOURCE_SET_DAWR:
788 if (!kvmppc_power8_compatible(vcpu))
789 return H_P2;
Michael Neuling398e7122018-03-27 15:37:20 +1100790 if (!ppc_breakpoint_available())
791 return H_P2;
Michael Neuling96423822014-06-02 11:03:01 +1000792 if (mflags)
793 return H_UNSUPPORTED_FLAG_START;
794 if (value2 & DABRX_HYP)
795 return H_P4;
796 vcpu->arch.dawr = value1;
797 vcpu->arch.dawrx = value2;
798 return H_SUCCESS;
799 default:
800 return H_TOO_HARD;
801 }
802}
803
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100804static int kvm_arch_vcpu_yield_to(struct kvm_vcpu *target)
805{
806 struct kvmppc_vcore *vcore = target->arch.vcore;
807
808 /*
809 * We expect to have been called by the real mode handler
810 * (kvmppc_rm_h_confer()) which would have directly returned
811 * H_SUCCESS if the source vcore wasn't idle (e.g. if it may
812 * have useful work to do and should not confer) so we don't
813 * recheck that here.
814 */
815
816 spin_lock(&vcore->lock);
817 if (target->arch.state == KVMPPC_VCPU_RUNNABLE &&
Paul Mackerrasec257162015-06-24 21:18:03 +1000818 vcore->vcore_state != VCORE_INACTIVE &&
819 vcore->runner)
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100820 target = vcore->runner;
821 spin_unlock(&vcore->lock);
822
823 return kvm_vcpu_yield_to(target);
824}
825
826static int kvmppc_get_yield_count(struct kvm_vcpu *vcpu)
827{
828 int yield_count = 0;
829 struct lppaca *lppaca;
830
831 spin_lock(&vcpu->arch.vpa_update_lock);
832 lppaca = (struct lppaca *)vcpu->arch.vpa.pinned_addr;
833 if (lppaca)
Paul Mackerrasecb6d612015-03-20 20:39:39 +1100834 yield_count = be32_to_cpu(lppaca->yield_count);
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100835 spin_unlock(&vcpu->arch.vpa_update_lock);
836 return yield_count;
837}
838
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000839int kvmppc_pseries_do_hcall(struct kvm_vcpu *vcpu)
840{
841 unsigned long req = kvmppc_get_gpr(vcpu, 3);
842 unsigned long target, ret = H_SUCCESS;
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100843 int yield_count;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000844 struct kvm_vcpu *tvcpu;
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000845 int idx, rc;
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000846
Paul Mackerras699a0ea2014-06-02 11:02:59 +1000847 if (req <= MAX_HCALL_OPCODE &&
848 !test_bit(req/4, vcpu->kvm->arch.enabled_hcalls))
849 return RESUME_HOST;
850
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000851 switch (req) {
852 case H_CEDE:
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000853 break;
854 case H_PROD:
855 target = kvmppc_get_gpr(vcpu, 4);
856 tvcpu = kvmppc_find_vcpu(vcpu->kvm, target);
857 if (!tvcpu) {
858 ret = H_PARAMETER;
859 break;
860 }
861 tvcpu->arch.prodded = 1;
862 smp_mb();
Paul Mackerras8464c882016-12-06 20:42:05 +1100863 if (tvcpu->arch.ceded)
864 kvmppc_fast_vcpu_kick_hv(tvcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000865 break;
866 case H_CONFER:
Paul Mackerras42d76042013-09-06 13:23:21 +1000867 target = kvmppc_get_gpr(vcpu, 4);
868 if (target == -1)
869 break;
870 tvcpu = kvmppc_find_vcpu(vcpu->kvm, target);
871 if (!tvcpu) {
872 ret = H_PARAMETER;
873 break;
874 }
Sam Bobroff90fd09f2014-12-03 13:30:40 +1100875 yield_count = kvmppc_get_gpr(vcpu, 5);
876 if (kvmppc_get_yield_count(tvcpu) != yield_count)
877 break;
878 kvm_arch_vcpu_yield_to(tvcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000879 break;
880 case H_REGISTER_VPA:
881 ret = do_h_register_vpa(vcpu, kvmppc_get_gpr(vcpu, 4),
882 kvmppc_get_gpr(vcpu, 5),
883 kvmppc_get_gpr(vcpu, 6));
884 break;
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000885 case H_RTAS:
886 if (list_empty(&vcpu->kvm->arch.rtas_tokens))
887 return RESUME_HOST;
888
Paul Mackerrasc9438092013-11-16 17:46:05 +1100889 idx = srcu_read_lock(&vcpu->kvm->srcu);
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000890 rc = kvmppc_rtas_hcall(vcpu);
Paul Mackerrasc9438092013-11-16 17:46:05 +1100891 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Michael Ellerman8e591cb2013-04-17 20:30:00 +0000892
893 if (rc == -ENOENT)
894 return RESUME_HOST;
895 else if (rc == 0)
896 break;
897
898 /* Send the error out to userspace via KVM_RUN */
899 return rc;
David Gibson99342cf82015-02-05 11:53:25 +1100900 case H_LOGICAL_CI_LOAD:
901 ret = kvmppc_h_logical_ci_load(vcpu);
902 if (ret == H_TOO_HARD)
903 return RESUME_HOST;
904 break;
905 case H_LOGICAL_CI_STORE:
906 ret = kvmppc_h_logical_ci_store(vcpu);
907 if (ret == H_TOO_HARD)
908 return RESUME_HOST;
909 break;
Michael Neuling96423822014-06-02 11:03:01 +1000910 case H_SET_MODE:
911 ret = kvmppc_h_set_mode(vcpu, kvmppc_get_gpr(vcpu, 4),
912 kvmppc_get_gpr(vcpu, 5),
913 kvmppc_get_gpr(vcpu, 6),
914 kvmppc_get_gpr(vcpu, 7));
915 if (ret == H_TOO_HARD)
916 return RESUME_HOST;
917 break;
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000918 case H_XIRR:
919 case H_CPPR:
920 case H_EOI:
921 case H_IPI:
Paul Mackerras8e44ddc2013-05-23 15:42:21 +0000922 case H_IPOLL:
923 case H_XIRR_X:
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000924 if (kvmppc_xics_enabled(vcpu)) {
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +1000925 if (xive_enabled()) {
926 ret = H_NOT_AVAILABLE;
927 return RESUME_GUEST;
928 }
Benjamin Herrenschmidtbc5ad3f2013-04-17 20:30:26 +0000929 ret = kvmppc_xics_hcall(vcpu, req);
930 break;
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +1100931 }
932 return RESUME_HOST;
Paul Mackerras4bad7772018-10-08 16:31:06 +1100933 case H_SET_DABR:
934 ret = kvmppc_h_set_dabr(vcpu, kvmppc_get_gpr(vcpu, 4));
935 break;
936 case H_SET_XDABR:
937 ret = kvmppc_h_set_xdabr(vcpu, kvmppc_get_gpr(vcpu, 4),
938 kvmppc_get_gpr(vcpu, 5));
939 break;
940 case H_GET_TCE:
941 ret = kvmppc_h_get_tce(vcpu, kvmppc_get_gpr(vcpu, 4),
942 kvmppc_get_gpr(vcpu, 5));
943 if (ret == H_TOO_HARD)
944 return RESUME_HOST;
945 break;
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +1100946 case H_PUT_TCE:
947 ret = kvmppc_h_put_tce(vcpu, kvmppc_get_gpr(vcpu, 4),
948 kvmppc_get_gpr(vcpu, 5),
949 kvmppc_get_gpr(vcpu, 6));
950 if (ret == H_TOO_HARD)
951 return RESUME_HOST;
952 break;
953 case H_PUT_TCE_INDIRECT:
954 ret = kvmppc_h_put_tce_indirect(vcpu, kvmppc_get_gpr(vcpu, 4),
955 kvmppc_get_gpr(vcpu, 5),
956 kvmppc_get_gpr(vcpu, 6),
957 kvmppc_get_gpr(vcpu, 7));
958 if (ret == H_TOO_HARD)
959 return RESUME_HOST;
960 break;
961 case H_STUFF_TCE:
962 ret = kvmppc_h_stuff_tce(vcpu, kvmppc_get_gpr(vcpu, 4),
963 kvmppc_get_gpr(vcpu, 5),
964 kvmppc_get_gpr(vcpu, 6),
965 kvmppc_get_gpr(vcpu, 7));
966 if (ret == H_TOO_HARD)
967 return RESUME_HOST;
968 break;
Paul Mackerras4bad7772018-10-08 16:31:06 +1100969 case H_RANDOM:
970 if (!powernv_get_random_long(&vcpu->arch.regs.gpr[4]))
971 ret = H_HARDWARE;
972 break;
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +1100973
974 case H_SET_PARTITION_TABLE:
975 ret = H_FUNCTION;
Paul Mackerrasaa069a92018-09-21 20:02:01 +1000976 if (nesting_enabled(vcpu->kvm))
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +1100977 ret = kvmhv_set_partition_table(vcpu);
978 break;
979 case H_ENTER_NESTED:
980 ret = H_FUNCTION;
Paul Mackerrasaa069a92018-09-21 20:02:01 +1000981 if (!nesting_enabled(vcpu->kvm))
Paul Mackerras360cae32018-10-08 16:31:04 +1100982 break;
983 ret = kvmhv_enter_nested_guest(vcpu);
984 if (ret == H_INTERRUPT) {
985 kvmppc_set_gpr(vcpu, 3, 0);
986 return -EINTR;
987 }
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +1100988 break;
989 case H_TLB_INVALIDATE:
990 ret = H_FUNCTION;
Paul Mackerrasaa069a92018-09-21 20:02:01 +1000991 if (nesting_enabled(vcpu->kvm))
992 ret = kvmhv_do_nested_tlbie(vcpu);
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +1100993 break;
994
Paul Mackerrasa8606e22011-06-29 00:22:05 +0000995 default:
996 return RESUME_HOST;
997 }
998 kvmppc_set_gpr(vcpu, 3, ret);
999 vcpu->arch.hcall_needed = 0;
1000 return RESUME_GUEST;
1001}
1002
Paul Mackerras4bad7772018-10-08 16:31:06 +11001003/*
1004 * Handle H_CEDE in the nested virtualization case where we haven't
1005 * called the real-mode hcall handlers in book3s_hv_rmhandlers.S.
1006 * This has to be done early, not in kvmppc_pseries_do_hcall(), so
1007 * that the cede logic in kvmppc_run_single_vcpu() works properly.
1008 */
1009static void kvmppc_nested_cede(struct kvm_vcpu *vcpu)
1010{
1011 vcpu->arch.shregs.msr |= MSR_EE;
1012 vcpu->arch.ceded = 1;
1013 smp_mb();
1014 if (vcpu->arch.prodded) {
1015 vcpu->arch.prodded = 0;
1016 smp_mb();
1017 vcpu->arch.ceded = 0;
1018 }
1019}
1020
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001021static int kvmppc_hcall_impl_hv(unsigned long cmd)
1022{
1023 switch (cmd) {
1024 case H_CEDE:
1025 case H_PROD:
1026 case H_CONFER:
1027 case H_REGISTER_VPA:
Michael Neuling96423822014-06-02 11:03:01 +10001028 case H_SET_MODE:
David Gibson99342cf82015-02-05 11:53:25 +11001029 case H_LOGICAL_CI_LOAD:
1030 case H_LOGICAL_CI_STORE:
Paul Mackerrasae2113a2014-06-02 11:03:00 +10001031#ifdef CONFIG_KVM_XICS
1032 case H_XIRR:
1033 case H_CPPR:
1034 case H_EOI:
1035 case H_IPI:
1036 case H_IPOLL:
1037 case H_XIRR_X:
1038#endif
1039 return 1;
1040 }
1041
1042 /* See if it's in the real-mode table */
1043 return kvmppc_hcall_impl_hv_realmode(cmd);
1044}
1045
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301046static int kvmppc_emulate_debug_inst(struct kvm_run *run,
1047 struct kvm_vcpu *vcpu)
1048{
1049 u32 last_inst;
1050
1051 if (kvmppc_get_last_inst(vcpu, INST_GENERIC, &last_inst) !=
1052 EMULATE_DONE) {
1053 /*
1054 * Fetch failed, so return to guest and
1055 * try executing it again.
1056 */
1057 return RESUME_GUEST;
1058 }
1059
1060 if (last_inst == KVMPPC_INST_SW_BREAKPOINT) {
1061 run->exit_reason = KVM_EXIT_DEBUG;
1062 run->debug.arch.address = kvmppc_get_pc(vcpu);
1063 return RESUME_HOST;
1064 } else {
1065 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
1066 return RESUME_GUEST;
1067 }
1068}
1069
Paul Mackerras57900692017-05-16 16:41:20 +10001070static void do_nothing(void *x)
1071{
1072}
1073
1074static unsigned long kvmppc_read_dpdes(struct kvm_vcpu *vcpu)
1075{
1076 int thr, cpu, pcpu, nthreads;
1077 struct kvm_vcpu *v;
1078 unsigned long dpdes;
1079
1080 nthreads = vcpu->kvm->arch.emul_smt_mode;
1081 dpdes = 0;
1082 cpu = vcpu->vcpu_id & ~(nthreads - 1);
1083 for (thr = 0; thr < nthreads; ++thr, ++cpu) {
1084 v = kvmppc_find_vcpu(vcpu->kvm, cpu);
1085 if (!v)
1086 continue;
1087 /*
1088 * If the vcpu is currently running on a physical cpu thread,
1089 * interrupt it in order to pull it out of the guest briefly,
1090 * which will update its vcore->dpdes value.
1091 */
1092 pcpu = READ_ONCE(v->cpu);
1093 if (pcpu >= 0)
1094 smp_call_function_single(pcpu, do_nothing, NULL, 1);
1095 if (kvmppc_doorbell_pending(v))
1096 dpdes |= 1 << thr;
1097 }
1098 return dpdes;
1099}
1100
1101/*
1102 * On POWER9, emulate doorbell-related instructions in order to
1103 * give the guest the illusion of running on a multi-threaded core.
1104 * The instructions emulated are msgsndp, msgclrp, mfspr TIR,
1105 * and mfspr DPDES.
1106 */
1107static int kvmppc_emulate_doorbell_instr(struct kvm_vcpu *vcpu)
1108{
1109 u32 inst, rb, thr;
1110 unsigned long arg;
1111 struct kvm *kvm = vcpu->kvm;
1112 struct kvm_vcpu *tvcpu;
1113
Paul Mackerras57900692017-05-16 16:41:20 +10001114 if (kvmppc_get_last_inst(vcpu, INST_GENERIC, &inst) != EMULATE_DONE)
1115 return RESUME_GUEST;
1116 if (get_op(inst) != 31)
1117 return EMULATE_FAIL;
1118 rb = get_rb(inst);
1119 thr = vcpu->vcpu_id & (kvm->arch.emul_smt_mode - 1);
1120 switch (get_xop(inst)) {
1121 case OP_31_XOP_MSGSNDP:
1122 arg = kvmppc_get_gpr(vcpu, rb);
1123 if (((arg >> 27) & 0xf) != PPC_DBELL_SERVER)
1124 break;
1125 arg &= 0x3f;
1126 if (arg >= kvm->arch.emul_smt_mode)
1127 break;
1128 tvcpu = kvmppc_find_vcpu(kvm, vcpu->vcpu_id - thr + arg);
1129 if (!tvcpu)
1130 break;
1131 if (!tvcpu->arch.doorbell_request) {
1132 tvcpu->arch.doorbell_request = 1;
1133 kvmppc_fast_vcpu_kick_hv(tvcpu);
1134 }
1135 break;
1136 case OP_31_XOP_MSGCLRP:
1137 arg = kvmppc_get_gpr(vcpu, rb);
1138 if (((arg >> 27) & 0xf) != PPC_DBELL_SERVER)
1139 break;
1140 vcpu->arch.vcore->dpdes = 0;
1141 vcpu->arch.doorbell_request = 0;
1142 break;
1143 case OP_31_XOP_MFSPR:
1144 switch (get_sprn(inst)) {
1145 case SPRN_TIR:
1146 arg = thr;
1147 break;
1148 case SPRN_DPDES:
1149 arg = kvmppc_read_dpdes(vcpu);
1150 break;
1151 default:
1152 return EMULATE_FAIL;
1153 }
1154 kvmppc_set_gpr(vcpu, get_rt(inst), arg);
1155 break;
1156 default:
1157 return EMULATE_FAIL;
1158 }
1159 kvmppc_set_pc(vcpu, kvmppc_get_pc(vcpu) + 4);
1160 return RESUME_GUEST;
1161}
1162
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301163static int kvmppc_handle_exit_hv(struct kvm_run *run, struct kvm_vcpu *vcpu,
1164 struct task_struct *tsk)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001165{
1166 int r = RESUME_HOST;
1167
1168 vcpu->stat.sum_exits++;
1169
Paul Mackerras1c9e3d52015-11-12 16:43:48 +11001170 /*
1171 * This can happen if an interrupt occurs in the last stages
1172 * of guest entry or the first stages of guest exit (i.e. after
1173 * setting paca->kvm_hstate.in_guest to KVM_GUEST_MODE_GUEST_HV
1174 * and before setting it to KVM_GUEST_MODE_HOST_HV).
1175 * That can happen due to a bug, or due to a machine check
1176 * occurring at just the wrong time.
1177 */
1178 if (vcpu->arch.shregs.msr & MSR_HV) {
1179 printk(KERN_EMERG "KVM trap in HV mode!\n");
1180 printk(KERN_EMERG "trap=0x%x | pc=0x%lx | msr=0x%llx\n",
1181 vcpu->arch.trap, kvmppc_get_pc(vcpu),
1182 vcpu->arch.shregs.msr);
1183 kvmppc_dump_regs(vcpu);
1184 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1185 run->hw.hardware_exit_reason = vcpu->arch.trap;
1186 return RESUME_HOST;
1187 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00001188 run->exit_reason = KVM_EXIT_UNKNOWN;
1189 run->ready_for_interrupt_injection = 1;
1190 switch (vcpu->arch.trap) {
1191 /* We're good on these - the host merely wanted to get our attention */
1192 case BOOK3S_INTERRUPT_HV_DECREMENTER:
1193 vcpu->stat.dec_exits++;
1194 r = RESUME_GUEST;
1195 break;
1196 case BOOK3S_INTERRUPT_EXTERNAL:
Paul Mackerras5d00f662014-01-08 21:25:28 +11001197 case BOOK3S_INTERRUPT_H_DOORBELL:
Paul Mackerras84f71392016-11-22 14:30:14 +11001198 case BOOK3S_INTERRUPT_H_VIRT:
Paul Mackerrasde56a942011-06-29 00:21:34 +00001199 vcpu->stat.ext_intr_exits++;
1200 r = RESUME_GUEST;
1201 break;
Nicholas Piggin6de66382017-11-05 23:33:55 +11001202 /* SR/HMI/PMI are HV interrupts that host has handled. Resume guest.*/
Mahesh Salgaonkardee6f242014-11-03 15:51:57 +11001203 case BOOK3S_INTERRUPT_HMI:
Paul Mackerrasde56a942011-06-29 00:21:34 +00001204 case BOOK3S_INTERRUPT_PERFMON:
Nicholas Piggin6de66382017-11-05 23:33:55 +11001205 case BOOK3S_INTERRUPT_SYSTEM_RESET:
Paul Mackerrasde56a942011-06-29 00:21:34 +00001206 r = RESUME_GUEST;
1207 break;
Paul Mackerrasb4072df2012-11-23 22:37:50 +00001208 case BOOK3S_INTERRUPT_MACHINE_CHECK:
Aravinda Prasade20bbd32017-05-11 16:33:37 +05301209 /* Exit to guest with KVM_EXIT_NMI as exit reason */
1210 run->exit_reason = KVM_EXIT_NMI;
1211 run->hw.hardware_exit_reason = vcpu->arch.trap;
1212 /* Clear out the old NMI status from run->flags */
1213 run->flags &= ~KVM_RUN_PPC_NMI_DISP_MASK;
1214 /* Now set the NMI status */
1215 if (vcpu->arch.mce_evt.disposition == MCE_DISPOSITION_RECOVERED)
1216 run->flags |= KVM_RUN_PPC_NMI_DISP_FULLY_RECOV;
1217 else
1218 run->flags |= KVM_RUN_PPC_NMI_DISP_NOT_RECOV;
1219
1220 r = RESUME_HOST;
1221 /* Print the MCE event to host console. */
1222 machine_check_print_event_info(&vcpu->arch.mce_evt, false);
Paul Mackerrasb4072df2012-11-23 22:37:50 +00001223 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001224 case BOOK3S_INTERRUPT_PROGRAM:
1225 {
1226 ulong flags;
1227 /*
1228 * Normally program interrupts are delivered directly
1229 * to the guest by the hardware, but we can get here
1230 * as a result of a hypervisor emulation interrupt
1231 * (e40) getting turned into a 700 by BML RTAS.
1232 */
1233 flags = vcpu->arch.shregs.msr & 0x1f0000ull;
1234 kvmppc_core_queue_program(vcpu, flags);
1235 r = RESUME_GUEST;
1236 break;
1237 }
1238 case BOOK3S_INTERRUPT_SYSCALL:
1239 {
1240 /* hcall - punt to userspace */
1241 int i;
1242
Liu Ping Fan27025a62013-11-19 14:12:48 +08001243 /* hypercall with MSR_PR has already been handled in rmode,
1244 * and never reaches here.
1245 */
1246
Paul Mackerrasde56a942011-06-29 00:21:34 +00001247 run->papr_hcall.nr = kvmppc_get_gpr(vcpu, 3);
1248 for (i = 0; i < 9; ++i)
1249 run->papr_hcall.args[i] = kvmppc_get_gpr(vcpu, 4 + i);
1250 run->exit_reason = KVM_EXIT_PAPR_HCALL;
1251 vcpu->arch.hcall_needed = 1;
1252 r = RESUME_HOST;
1253 break;
1254 }
1255 /*
Paul Mackerras342d3db2011-12-12 12:38:05 +00001256 * We get these next two if the guest accesses a page which it thinks
1257 * it has mapped but which is not actually present, either because
1258 * it is for an emulated I/O device or because the corresonding
1259 * host page has been paged out. Any other HDSI/HISI interrupts
1260 * have been handled already.
Paul Mackerrasde56a942011-06-29 00:21:34 +00001261 */
1262 case BOOK3S_INTERRUPT_H_DATA_STORAGE:
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001263 r = RESUME_PAGE_FAULT;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001264 break;
1265 case BOOK3S_INTERRUPT_H_INST_STORAGE:
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001266 vcpu->arch.fault_dar = kvmppc_get_pc(vcpu);
Paul Mackerras32eb1502018-10-08 16:30:56 +11001267 vcpu->arch.fault_dsisr = vcpu->arch.shregs.msr &
1268 DSISR_SRR1_MATCH_64S;
1269 if (vcpu->arch.shregs.msr & HSRR1_HISI_WRITE)
1270 vcpu->arch.fault_dsisr |= DSISR_ISSTORE;
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00001271 r = RESUME_PAGE_FAULT;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001272 break;
1273 /*
1274 * This occurs if the guest executes an illegal instruction.
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301275 * If the guest debug is disabled, generate a program interrupt
1276 * to the guest. If guest debug is enabled, we need to check
1277 * whether the instruction is a software breakpoint instruction.
1278 * Accordingly return to Guest or Host.
Paul Mackerrasde56a942011-06-29 00:21:34 +00001279 */
1280 case BOOK3S_INTERRUPT_H_EMUL_ASSIST:
Paul Mackerras4a157d62014-12-03 13:30:39 +11001281 if (vcpu->arch.emul_inst != KVM_INST_FETCH_FAILED)
1282 vcpu->arch.last_inst = kvmppc_need_byteswap(vcpu) ?
1283 swab32(vcpu->arch.emul_inst) :
1284 vcpu->arch.emul_inst;
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301285 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP) {
1286 r = kvmppc_emulate_debug_inst(run, vcpu);
1287 } else {
1288 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
1289 r = RESUME_GUEST;
1290 }
Michael Ellermanbd3048b2014-01-08 21:25:23 +11001291 break;
1292 /*
1293 * This occurs if the guest (kernel or userspace), does something that
Paul Mackerras57900692017-05-16 16:41:20 +10001294 * is prohibited by HFSCR.
1295 * On POWER9, this could be a doorbell instruction that we need
1296 * to emulate.
1297 * Otherwise, we just generate a program interrupt to the guest.
Michael Ellermanbd3048b2014-01-08 21:25:23 +11001298 */
1299 case BOOK3S_INTERRUPT_H_FAC_UNAVAIL:
Paul Mackerras57900692017-05-16 16:41:20 +10001300 r = EMULATE_FAIL;
Paul Mackerras36ee41d2018-01-30 10:51:32 +11001301 if (((vcpu->arch.hfscr >> 56) == FSCR_MSGP_LG) &&
Paul Mackerras53655dd2018-10-08 16:30:54 +11001302 cpu_has_feature(CPU_FTR_ARCH_300))
Paul Mackerras57900692017-05-16 16:41:20 +10001303 r = kvmppc_emulate_doorbell_instr(vcpu);
1304 if (r == EMULATE_FAIL) {
1305 kvmppc_core_queue_program(vcpu, SRR1_PROGILL);
1306 r = RESUME_GUEST;
1307 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00001308 break;
Paul Mackerras4bb3c7a2018-03-21 21:32:01 +11001309
1310#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1311 case BOOK3S_INTERRUPT_HV_SOFTPATCH:
1312 /*
1313 * This occurs for various TM-related instructions that
1314 * we need to emulate on POWER9 DD2.2. We have already
1315 * handled the cases where the guest was in real-suspend
1316 * mode and was transitioning to transactional state.
1317 */
1318 r = kvmhv_p9_tm_emulation(vcpu);
1319 break;
1320#endif
1321
Suresh Warrierf7af5202016-08-19 15:35:52 +10001322 case BOOK3S_INTERRUPT_HV_RM_HARD:
1323 r = RESUME_PASSTHROUGH;
1324 break;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001325 default:
1326 kvmppc_dump_regs(vcpu);
1327 printk(KERN_EMERG "trap=0x%x | pc=0x%lx | msr=0x%llx\n",
1328 vcpu->arch.trap, kvmppc_get_pc(vcpu),
1329 vcpu->arch.shregs.msr);
Paul Mackerrasf3271d42013-09-20 14:52:41 +10001330 run->hw.hardware_exit_reason = vcpu->arch.trap;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001331 r = RESUME_HOST;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001332 break;
1333 }
1334
Paul Mackerrasde56a942011-06-29 00:21:34 +00001335 return r;
1336}
1337
Paul Mackerras360cae32018-10-08 16:31:04 +11001338static int kvmppc_handle_nested_exit(struct kvm_vcpu *vcpu)
1339{
1340 int r;
1341 int srcu_idx;
1342
1343 vcpu->stat.sum_exits++;
1344
1345 /*
1346 * This can happen if an interrupt occurs in the last stages
1347 * of guest entry or the first stages of guest exit (i.e. after
1348 * setting paca->kvm_hstate.in_guest to KVM_GUEST_MODE_GUEST_HV
1349 * and before setting it to KVM_GUEST_MODE_HOST_HV).
1350 * That can happen due to a bug, or due to a machine check
1351 * occurring at just the wrong time.
1352 */
1353 if (vcpu->arch.shregs.msr & MSR_HV) {
1354 pr_emerg("KVM trap in HV mode while nested!\n");
1355 pr_emerg("trap=0x%x | pc=0x%lx | msr=0x%llx\n",
1356 vcpu->arch.trap, kvmppc_get_pc(vcpu),
1357 vcpu->arch.shregs.msr);
1358 kvmppc_dump_regs(vcpu);
1359 return RESUME_HOST;
1360 }
1361 switch (vcpu->arch.trap) {
1362 /* We're good on these - the host merely wanted to get our attention */
1363 case BOOK3S_INTERRUPT_HV_DECREMENTER:
1364 vcpu->stat.dec_exits++;
1365 r = RESUME_GUEST;
1366 break;
1367 case BOOK3S_INTERRUPT_EXTERNAL:
1368 vcpu->stat.ext_intr_exits++;
1369 r = RESUME_HOST;
1370 break;
1371 case BOOK3S_INTERRUPT_H_DOORBELL:
1372 case BOOK3S_INTERRUPT_H_VIRT:
1373 vcpu->stat.ext_intr_exits++;
1374 r = RESUME_GUEST;
1375 break;
1376 /* SR/HMI/PMI are HV interrupts that host has handled. Resume guest.*/
1377 case BOOK3S_INTERRUPT_HMI:
1378 case BOOK3S_INTERRUPT_PERFMON:
1379 case BOOK3S_INTERRUPT_SYSTEM_RESET:
1380 r = RESUME_GUEST;
1381 break;
1382 case BOOK3S_INTERRUPT_MACHINE_CHECK:
1383 /* Pass the machine check to the L1 guest */
1384 r = RESUME_HOST;
1385 /* Print the MCE event to host console. */
1386 machine_check_print_event_info(&vcpu->arch.mce_evt, false);
1387 break;
1388 /*
1389 * We get these next two if the guest accesses a page which it thinks
1390 * it has mapped but which is not actually present, either because
1391 * it is for an emulated I/O device or because the corresonding
1392 * host page has been paged out.
1393 */
1394 case BOOK3S_INTERRUPT_H_DATA_STORAGE:
1395 srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
1396 r = kvmhv_nested_page_fault(vcpu);
1397 srcu_read_unlock(&vcpu->kvm->srcu, srcu_idx);
1398 break;
1399 case BOOK3S_INTERRUPT_H_INST_STORAGE:
1400 vcpu->arch.fault_dar = kvmppc_get_pc(vcpu);
1401 vcpu->arch.fault_dsisr = kvmppc_get_msr(vcpu) &
1402 DSISR_SRR1_MATCH_64S;
1403 if (vcpu->arch.shregs.msr & HSRR1_HISI_WRITE)
1404 vcpu->arch.fault_dsisr |= DSISR_ISSTORE;
1405 srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
1406 r = kvmhv_nested_page_fault(vcpu);
1407 srcu_read_unlock(&vcpu->kvm->srcu, srcu_idx);
1408 break;
1409
1410#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1411 case BOOK3S_INTERRUPT_HV_SOFTPATCH:
1412 /*
1413 * This occurs for various TM-related instructions that
1414 * we need to emulate on POWER9 DD2.2. We have already
1415 * handled the cases where the guest was in real-suspend
1416 * mode and was transitioning to transactional state.
1417 */
1418 r = kvmhv_p9_tm_emulation(vcpu);
1419 break;
1420#endif
1421
1422 case BOOK3S_INTERRUPT_HV_RM_HARD:
1423 vcpu->arch.trap = 0;
1424 r = RESUME_GUEST;
1425 if (!xive_enabled())
1426 kvmppc_xics_rm_complete(vcpu, 0);
1427 break;
1428 default:
1429 r = RESUME_HOST;
1430 break;
1431 }
1432
1433 return r;
1434}
1435
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301436static int kvm_arch_vcpu_ioctl_get_sregs_hv(struct kvm_vcpu *vcpu,
1437 struct kvm_sregs *sregs)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001438{
1439 int i;
1440
Paul Mackerrasde56a942011-06-29 00:21:34 +00001441 memset(sregs, 0, sizeof(struct kvm_sregs));
Aneesh Kumar K.V87916442013-08-22 17:08:39 +05301442 sregs->pvr = vcpu->arch.pvr;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001443 for (i = 0; i < vcpu->arch.slb_max; i++) {
1444 sregs->u.s.ppc64.slb[i].slbe = vcpu->arch.slb[i].orige;
1445 sregs->u.s.ppc64.slb[i].slbv = vcpu->arch.slb[i].origv;
1446 }
1447
1448 return 0;
1449}
1450
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301451static int kvm_arch_vcpu_ioctl_set_sregs_hv(struct kvm_vcpu *vcpu,
1452 struct kvm_sregs *sregs)
Paul Mackerrasde56a942011-06-29 00:21:34 +00001453{
1454 int i, j;
1455
Paul Mackerras9333e6c2014-09-02 16:14:43 +10001456 /* Only accept the same PVR as the host's, since we can't spoof it */
1457 if (sregs->pvr != vcpu->arch.pvr)
1458 return -EINVAL;
Paul Mackerrasde56a942011-06-29 00:21:34 +00001459
1460 j = 0;
1461 for (i = 0; i < vcpu->arch.slb_nr; i++) {
1462 if (sregs->u.s.ppc64.slb[i].slbe & SLB_ESID_V) {
1463 vcpu->arch.slb[j].orige = sregs->u.s.ppc64.slb[i].slbe;
1464 vcpu->arch.slb[j].origv = sregs->u.s.ppc64.slb[i].slbv;
1465 ++j;
1466 }
1467 }
1468 vcpu->arch.slb_max = j;
1469
1470 return 0;
1471}
1472
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001473static void kvmppc_set_lpcr(struct kvm_vcpu *vcpu, u64 new_lpcr,
1474 bool preserve_top32)
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001475{
Paul Mackerras8f902b02015-03-20 20:39:38 +11001476 struct kvm *kvm = vcpu->kvm;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001477 struct kvmppc_vcore *vc = vcpu->arch.vcore;
1478 u64 mask;
1479
Paul Mackerras8f902b02015-03-20 20:39:38 +11001480 mutex_lock(&kvm->lock);
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001481 spin_lock(&vc->lock);
1482 /*
Anton Blanchardd6829162014-01-08 21:25:30 +11001483 * If ILE (interrupt little-endian) has changed, update the
1484 * MSR_LE bit in the intr_msr for each vcpu in this vcore.
1485 */
1486 if ((new_lpcr & LPCR_ILE) != (vc->lpcr & LPCR_ILE)) {
Anton Blanchardd6829162014-01-08 21:25:30 +11001487 struct kvm_vcpu *vcpu;
1488 int i;
1489
Anton Blanchardd6829162014-01-08 21:25:30 +11001490 kvm_for_each_vcpu(i, vcpu, kvm) {
1491 if (vcpu->arch.vcore != vc)
1492 continue;
1493 if (new_lpcr & LPCR_ILE)
1494 vcpu->arch.intr_msr |= MSR_LE;
1495 else
1496 vcpu->arch.intr_msr &= ~MSR_LE;
1497 }
Anton Blanchardd6829162014-01-08 21:25:30 +11001498 }
1499
1500 /*
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001501 * Userspace can only modify DPFD (default prefetch depth),
1502 * ILE (interrupt little-endian) and TC (translation control).
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11001503 * On POWER8 and POWER9 userspace can also modify AIL (alt. interrupt loc.).
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001504 */
1505 mask = LPCR_DPFD | LPCR_ILE | LPCR_TC;
Paul Mackerrase0622bd2014-01-08 21:25:27 +11001506 if (cpu_has_feature(CPU_FTR_ARCH_207S))
1507 mask |= LPCR_AIL;
Paul Mackerras1bc3fe82017-05-22 16:55:16 +10001508 /*
1509 * On POWER9, allow userspace to enable large decrementer for the
1510 * guest, whether or not the host has it enabled.
1511 */
1512 if (cpu_has_feature(CPU_FTR_ARCH_300))
1513 mask |= LPCR_LD;
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001514
1515 /* Broken 32-bit version of LPCR must not clear top bits */
1516 if (preserve_top32)
1517 mask &= 0xFFFFFFFF;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001518 vc->lpcr = (vc->lpcr & ~mask) | (new_lpcr & mask);
1519 spin_unlock(&vc->lock);
Paul Mackerras8f902b02015-03-20 20:39:38 +11001520 mutex_unlock(&kvm->lock);
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001521}
1522
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301523static int kvmppc_get_one_reg_hv(struct kvm_vcpu *vcpu, u64 id,
1524 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001525{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001526 int r = 0;
1527 long int i;
Paul Mackerras31f34382011-12-12 12:26:50 +00001528
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001529 switch (id) {
Madhavan Srinivasana59c1d92014-09-09 22:37:35 +05301530 case KVM_REG_PPC_DEBUG_INST:
1531 *val = get_reg_val(id, KVMPPC_INST_SW_BREAKPOINT);
1532 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001533 case KVM_REG_PPC_HIOR:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001534 *val = get_reg_val(id, 0);
1535 break;
1536 case KVM_REG_PPC_DABR:
1537 *val = get_reg_val(id, vcpu->arch.dabr);
1538 break;
Paul Mackerras8563bf52014-01-08 21:25:29 +11001539 case KVM_REG_PPC_DABRX:
1540 *val = get_reg_val(id, vcpu->arch.dabrx);
1541 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001542 case KVM_REG_PPC_DSCR:
1543 *val = get_reg_val(id, vcpu->arch.dscr);
1544 break;
1545 case KVM_REG_PPC_PURR:
1546 *val = get_reg_val(id, vcpu->arch.purr);
1547 break;
1548 case KVM_REG_PPC_SPURR:
1549 *val = get_reg_val(id, vcpu->arch.spurr);
1550 break;
1551 case KVM_REG_PPC_AMR:
1552 *val = get_reg_val(id, vcpu->arch.amr);
1553 break;
1554 case KVM_REG_PPC_UAMOR:
1555 *val = get_reg_val(id, vcpu->arch.uamor);
1556 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001557 case KVM_REG_PPC_MMCR0 ... KVM_REG_PPC_MMCRS:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001558 i = id - KVM_REG_PPC_MMCR0;
1559 *val = get_reg_val(id, vcpu->arch.mmcr[i]);
1560 break;
1561 case KVM_REG_PPC_PMC1 ... KVM_REG_PPC_PMC8:
1562 i = id - KVM_REG_PPC_PMC1;
1563 *val = get_reg_val(id, vcpu->arch.pmc[i]);
Paul Mackerras31f34382011-12-12 12:26:50 +00001564 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001565 case KVM_REG_PPC_SPMC1 ... KVM_REG_PPC_SPMC2:
1566 i = id - KVM_REG_PPC_SPMC1;
1567 *val = get_reg_val(id, vcpu->arch.spmc[i]);
1568 break;
Paul Mackerras14941782013-09-06 13:11:18 +10001569 case KVM_REG_PPC_SIAR:
1570 *val = get_reg_val(id, vcpu->arch.siar);
1571 break;
1572 case KVM_REG_PPC_SDAR:
1573 *val = get_reg_val(id, vcpu->arch.sdar);
1574 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001575 case KVM_REG_PPC_SIER:
1576 *val = get_reg_val(id, vcpu->arch.sier);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001577 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001578 case KVM_REG_PPC_IAMR:
1579 *val = get_reg_val(id, vcpu->arch.iamr);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001580 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001581 case KVM_REG_PPC_PSPB:
1582 *val = get_reg_val(id, vcpu->arch.pspb);
1583 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001584 case KVM_REG_PPC_DPDES:
1585 *val = get_reg_val(id, vcpu->arch.vcore->dpdes);
1586 break;
Paul Mackerras88b02cf92016-09-15 13:42:52 +10001587 case KVM_REG_PPC_VTB:
1588 *val = get_reg_val(id, vcpu->arch.vcore->vtb);
1589 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001590 case KVM_REG_PPC_DAWR:
1591 *val = get_reg_val(id, vcpu->arch.dawr);
1592 break;
1593 case KVM_REG_PPC_DAWRX:
1594 *val = get_reg_val(id, vcpu->arch.dawrx);
1595 break;
1596 case KVM_REG_PPC_CIABR:
1597 *val = get_reg_val(id, vcpu->arch.ciabr);
1598 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001599 case KVM_REG_PPC_CSIGR:
1600 *val = get_reg_val(id, vcpu->arch.csigr);
1601 break;
1602 case KVM_REG_PPC_TACR:
1603 *val = get_reg_val(id, vcpu->arch.tacr);
1604 break;
1605 case KVM_REG_PPC_TCSCR:
1606 *val = get_reg_val(id, vcpu->arch.tcscr);
1607 break;
1608 case KVM_REG_PPC_PID:
1609 *val = get_reg_val(id, vcpu->arch.pid);
1610 break;
1611 case KVM_REG_PPC_ACOP:
1612 *val = get_reg_val(id, vcpu->arch.acop);
1613 break;
1614 case KVM_REG_PPC_WORT:
1615 *val = get_reg_val(id, vcpu->arch.wort);
1616 break;
Paul Mackerrase9cf1e02016-11-18 13:11:42 +11001617 case KVM_REG_PPC_TIDR:
1618 *val = get_reg_val(id, vcpu->arch.tid);
1619 break;
1620 case KVM_REG_PPC_PSSCR:
1621 *val = get_reg_val(id, vcpu->arch.psscr);
1622 break;
Paul Mackerras55b665b2012-09-25 20:33:06 +00001623 case KVM_REG_PPC_VPA_ADDR:
1624 spin_lock(&vcpu->arch.vpa_update_lock);
1625 *val = get_reg_val(id, vcpu->arch.vpa.next_gpa);
1626 spin_unlock(&vcpu->arch.vpa_update_lock);
1627 break;
1628 case KVM_REG_PPC_VPA_SLB:
1629 spin_lock(&vcpu->arch.vpa_update_lock);
1630 val->vpaval.addr = vcpu->arch.slb_shadow.next_gpa;
1631 val->vpaval.length = vcpu->arch.slb_shadow.len;
1632 spin_unlock(&vcpu->arch.vpa_update_lock);
1633 break;
1634 case KVM_REG_PPC_VPA_DTL:
1635 spin_lock(&vcpu->arch.vpa_update_lock);
1636 val->vpaval.addr = vcpu->arch.dtl.next_gpa;
1637 val->vpaval.length = vcpu->arch.dtl.len;
1638 spin_unlock(&vcpu->arch.vpa_update_lock);
1639 break;
Paul Mackerras93b0f4d2013-09-06 13:17:46 +10001640 case KVM_REG_PPC_TB_OFFSET:
1641 *val = get_reg_val(id, vcpu->arch.vcore->tb_offset);
1642 break;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001643 case KVM_REG_PPC_LPCR:
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001644 case KVM_REG_PPC_LPCR_64:
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001645 *val = get_reg_val(id, vcpu->arch.vcore->lpcr);
1646 break;
Paul Mackerras4b8473c2013-09-20 14:52:39 +10001647 case KVM_REG_PPC_PPR:
1648 *val = get_reg_val(id, vcpu->arch.ppr);
1649 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11001650#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1651 case KVM_REG_PPC_TFHAR:
1652 *val = get_reg_val(id, vcpu->arch.tfhar);
1653 break;
1654 case KVM_REG_PPC_TFIAR:
1655 *val = get_reg_val(id, vcpu->arch.tfiar);
1656 break;
1657 case KVM_REG_PPC_TEXASR:
1658 *val = get_reg_val(id, vcpu->arch.texasr);
1659 break;
1660 case KVM_REG_PPC_TM_GPR0 ... KVM_REG_PPC_TM_GPR31:
1661 i = id - KVM_REG_PPC_TM_GPR0;
1662 *val = get_reg_val(id, vcpu->arch.gpr_tm[i]);
1663 break;
1664 case KVM_REG_PPC_TM_VSR0 ... KVM_REG_PPC_TM_VSR63:
1665 {
1666 int j;
1667 i = id - KVM_REG_PPC_TM_VSR0;
1668 if (i < 32)
1669 for (j = 0; j < TS_FPRWIDTH; j++)
1670 val->vsxval[j] = vcpu->arch.fp_tm.fpr[i][j];
1671 else {
1672 if (cpu_has_feature(CPU_FTR_ALTIVEC))
1673 val->vval = vcpu->arch.vr_tm.vr[i-32];
1674 else
1675 r = -ENXIO;
1676 }
1677 break;
1678 }
1679 case KVM_REG_PPC_TM_CR:
1680 *val = get_reg_val(id, vcpu->arch.cr_tm);
1681 break;
Paul Mackerras0d808df2016-11-07 15:09:58 +11001682 case KVM_REG_PPC_TM_XER:
1683 *val = get_reg_val(id, vcpu->arch.xer_tm);
1684 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11001685 case KVM_REG_PPC_TM_LR:
1686 *val = get_reg_val(id, vcpu->arch.lr_tm);
1687 break;
1688 case KVM_REG_PPC_TM_CTR:
1689 *val = get_reg_val(id, vcpu->arch.ctr_tm);
1690 break;
1691 case KVM_REG_PPC_TM_FPSCR:
1692 *val = get_reg_val(id, vcpu->arch.fp_tm.fpscr);
1693 break;
1694 case KVM_REG_PPC_TM_AMR:
1695 *val = get_reg_val(id, vcpu->arch.amr_tm);
1696 break;
1697 case KVM_REG_PPC_TM_PPR:
1698 *val = get_reg_val(id, vcpu->arch.ppr_tm);
1699 break;
1700 case KVM_REG_PPC_TM_VRSAVE:
1701 *val = get_reg_val(id, vcpu->arch.vrsave_tm);
1702 break;
1703 case KVM_REG_PPC_TM_VSCR:
1704 if (cpu_has_feature(CPU_FTR_ALTIVEC))
1705 *val = get_reg_val(id, vcpu->arch.vr_tm.vscr.u[3]);
1706 else
1707 r = -ENXIO;
1708 break;
1709 case KVM_REG_PPC_TM_DSCR:
1710 *val = get_reg_val(id, vcpu->arch.dscr_tm);
1711 break;
1712 case KVM_REG_PPC_TM_TAR:
1713 *val = get_reg_val(id, vcpu->arch.tar_tm);
1714 break;
1715#endif
Paul Mackerras388cc6e2013-09-21 14:35:02 +10001716 case KVM_REG_PPC_ARCH_COMPAT:
1717 *val = get_reg_val(id, vcpu->arch.vcore->arch_compat);
1718 break;
Paul Mackerras58555642018-01-12 20:55:20 +11001719 case KVM_REG_PPC_DEC_EXPIRY:
1720 *val = get_reg_val(id, vcpu->arch.dec_expires +
1721 vcpu->arch.vcore->tb_offset);
1722 break;
Paul Mackerrasa1f15822018-04-20 15:33:21 +10001723 case KVM_REG_PPC_ONLINE:
1724 *val = get_reg_val(id, vcpu->arch.online);
1725 break;
Paul Mackerras30323412018-10-08 16:31:13 +11001726 case KVM_REG_PPC_PTCR:
1727 *val = get_reg_val(id, vcpu->kvm->arch.l1_ptcr);
1728 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001729 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001730 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00001731 break;
1732 }
1733
1734 return r;
1735}
1736
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05301737static int kvmppc_set_one_reg_hv(struct kvm_vcpu *vcpu, u64 id,
1738 union kvmppc_one_reg *val)
Paul Mackerras31f34382011-12-12 12:26:50 +00001739{
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001740 int r = 0;
1741 long int i;
Paul Mackerras55b665b2012-09-25 20:33:06 +00001742 unsigned long addr, len;
Paul Mackerras31f34382011-12-12 12:26:50 +00001743
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001744 switch (id) {
Paul Mackerras31f34382011-12-12 12:26:50 +00001745 case KVM_REG_PPC_HIOR:
Paul Mackerras31f34382011-12-12 12:26:50 +00001746 /* Only allow this to be set to zero */
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001747 if (set_reg_val(id, *val))
Paul Mackerras31f34382011-12-12 12:26:50 +00001748 r = -EINVAL;
1749 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001750 case KVM_REG_PPC_DABR:
1751 vcpu->arch.dabr = set_reg_val(id, *val);
1752 break;
Paul Mackerras8563bf52014-01-08 21:25:29 +11001753 case KVM_REG_PPC_DABRX:
1754 vcpu->arch.dabrx = set_reg_val(id, *val) & ~DABRX_HYP;
1755 break;
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001756 case KVM_REG_PPC_DSCR:
1757 vcpu->arch.dscr = set_reg_val(id, *val);
1758 break;
1759 case KVM_REG_PPC_PURR:
1760 vcpu->arch.purr = set_reg_val(id, *val);
1761 break;
1762 case KVM_REG_PPC_SPURR:
1763 vcpu->arch.spurr = set_reg_val(id, *val);
1764 break;
1765 case KVM_REG_PPC_AMR:
1766 vcpu->arch.amr = set_reg_val(id, *val);
1767 break;
1768 case KVM_REG_PPC_UAMOR:
1769 vcpu->arch.uamor = set_reg_val(id, *val);
1770 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001771 case KVM_REG_PPC_MMCR0 ... KVM_REG_PPC_MMCRS:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001772 i = id - KVM_REG_PPC_MMCR0;
1773 vcpu->arch.mmcr[i] = set_reg_val(id, *val);
1774 break;
1775 case KVM_REG_PPC_PMC1 ... KVM_REG_PPC_PMC8:
1776 i = id - KVM_REG_PPC_PMC1;
1777 vcpu->arch.pmc[i] = set_reg_val(id, *val);
1778 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001779 case KVM_REG_PPC_SPMC1 ... KVM_REG_PPC_SPMC2:
1780 i = id - KVM_REG_PPC_SPMC1;
1781 vcpu->arch.spmc[i] = set_reg_val(id, *val);
1782 break;
Paul Mackerras14941782013-09-06 13:11:18 +10001783 case KVM_REG_PPC_SIAR:
1784 vcpu->arch.siar = set_reg_val(id, *val);
1785 break;
1786 case KVM_REG_PPC_SDAR:
1787 vcpu->arch.sdar = set_reg_val(id, *val);
1788 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001789 case KVM_REG_PPC_SIER:
1790 vcpu->arch.sier = set_reg_val(id, *val);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001791 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001792 case KVM_REG_PPC_IAMR:
1793 vcpu->arch.iamr = set_reg_val(id, *val);
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001794 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001795 case KVM_REG_PPC_PSPB:
1796 vcpu->arch.pspb = set_reg_val(id, *val);
1797 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001798 case KVM_REG_PPC_DPDES:
1799 vcpu->arch.vcore->dpdes = set_reg_val(id, *val);
1800 break;
Paul Mackerras88b02cf92016-09-15 13:42:52 +10001801 case KVM_REG_PPC_VTB:
1802 vcpu->arch.vcore->vtb = set_reg_val(id, *val);
1803 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001804 case KVM_REG_PPC_DAWR:
1805 vcpu->arch.dawr = set_reg_val(id, *val);
1806 break;
1807 case KVM_REG_PPC_DAWRX:
1808 vcpu->arch.dawrx = set_reg_val(id, *val) & ~DAWRX_HYP;
1809 break;
1810 case KVM_REG_PPC_CIABR:
1811 vcpu->arch.ciabr = set_reg_val(id, *val);
1812 /* Don't allow setting breakpoints in hypervisor code */
1813 if ((vcpu->arch.ciabr & CIABR_PRIV) == CIABR_PRIV_HYPER)
1814 vcpu->arch.ciabr &= ~CIABR_PRIV; /* disable */
1815 break;
Michael Neulingb005255e2014-01-08 21:25:21 +11001816 case KVM_REG_PPC_CSIGR:
1817 vcpu->arch.csigr = set_reg_val(id, *val);
1818 break;
1819 case KVM_REG_PPC_TACR:
1820 vcpu->arch.tacr = set_reg_val(id, *val);
1821 break;
1822 case KVM_REG_PPC_TCSCR:
1823 vcpu->arch.tcscr = set_reg_val(id, *val);
1824 break;
1825 case KVM_REG_PPC_PID:
1826 vcpu->arch.pid = set_reg_val(id, *val);
1827 break;
1828 case KVM_REG_PPC_ACOP:
1829 vcpu->arch.acop = set_reg_val(id, *val);
1830 break;
1831 case KVM_REG_PPC_WORT:
1832 vcpu->arch.wort = set_reg_val(id, *val);
1833 break;
Paul Mackerrase9cf1e02016-11-18 13:11:42 +11001834 case KVM_REG_PPC_TIDR:
1835 vcpu->arch.tid = set_reg_val(id, *val);
1836 break;
1837 case KVM_REG_PPC_PSSCR:
1838 vcpu->arch.psscr = set_reg_val(id, *val) & PSSCR_GUEST_VIS;
1839 break;
Paul Mackerras55b665b2012-09-25 20:33:06 +00001840 case KVM_REG_PPC_VPA_ADDR:
1841 addr = set_reg_val(id, *val);
1842 r = -EINVAL;
1843 if (!addr && (vcpu->arch.slb_shadow.next_gpa ||
1844 vcpu->arch.dtl.next_gpa))
1845 break;
1846 r = set_vpa(vcpu, &vcpu->arch.vpa, addr, sizeof(struct lppaca));
1847 break;
1848 case KVM_REG_PPC_VPA_SLB:
1849 addr = val->vpaval.addr;
1850 len = val->vpaval.length;
1851 r = -EINVAL;
1852 if (addr && !vcpu->arch.vpa.next_gpa)
1853 break;
1854 r = set_vpa(vcpu, &vcpu->arch.slb_shadow, addr, len);
1855 break;
1856 case KVM_REG_PPC_VPA_DTL:
1857 addr = val->vpaval.addr;
1858 len = val->vpaval.length;
1859 r = -EINVAL;
Paul Mackerras9f8c8c72012-10-15 01:18:37 +00001860 if (addr && (len < sizeof(struct dtl_entry) ||
1861 !vcpu->arch.vpa.next_gpa))
Paul Mackerras55b665b2012-09-25 20:33:06 +00001862 break;
1863 len -= len % sizeof(struct dtl_entry);
1864 r = set_vpa(vcpu, &vcpu->arch.dtl, addr, len);
1865 break;
Paul Mackerras93b0f4d2013-09-06 13:17:46 +10001866 case KVM_REG_PPC_TB_OFFSET:
1867 /* round up to multiple of 2^24 */
1868 vcpu->arch.vcore->tb_offset =
1869 ALIGN(set_reg_val(id, *val), 1UL << 24);
1870 break;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001871 case KVM_REG_PPC_LPCR:
Alexey Kardashevskiya0840242014-07-19 17:59:34 +10001872 kvmppc_set_lpcr(vcpu, set_reg_val(id, *val), true);
1873 break;
1874 case KVM_REG_PPC_LPCR_64:
1875 kvmppc_set_lpcr(vcpu, set_reg_val(id, *val), false);
Paul Mackerrasa0144e22013-09-20 14:52:38 +10001876 break;
Paul Mackerras4b8473c2013-09-20 14:52:39 +10001877 case KVM_REG_PPC_PPR:
1878 vcpu->arch.ppr = set_reg_val(id, *val);
1879 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11001880#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1881 case KVM_REG_PPC_TFHAR:
1882 vcpu->arch.tfhar = set_reg_val(id, *val);
1883 break;
1884 case KVM_REG_PPC_TFIAR:
1885 vcpu->arch.tfiar = set_reg_val(id, *val);
1886 break;
1887 case KVM_REG_PPC_TEXASR:
1888 vcpu->arch.texasr = set_reg_val(id, *val);
1889 break;
1890 case KVM_REG_PPC_TM_GPR0 ... KVM_REG_PPC_TM_GPR31:
1891 i = id - KVM_REG_PPC_TM_GPR0;
1892 vcpu->arch.gpr_tm[i] = set_reg_val(id, *val);
1893 break;
1894 case KVM_REG_PPC_TM_VSR0 ... KVM_REG_PPC_TM_VSR63:
1895 {
1896 int j;
1897 i = id - KVM_REG_PPC_TM_VSR0;
1898 if (i < 32)
1899 for (j = 0; j < TS_FPRWIDTH; j++)
1900 vcpu->arch.fp_tm.fpr[i][j] = val->vsxval[j];
1901 else
1902 if (cpu_has_feature(CPU_FTR_ALTIVEC))
1903 vcpu->arch.vr_tm.vr[i-32] = val->vval;
1904 else
1905 r = -ENXIO;
1906 break;
1907 }
1908 case KVM_REG_PPC_TM_CR:
1909 vcpu->arch.cr_tm = set_reg_val(id, *val);
1910 break;
Paul Mackerras0d808df2016-11-07 15:09:58 +11001911 case KVM_REG_PPC_TM_XER:
1912 vcpu->arch.xer_tm = set_reg_val(id, *val);
1913 break;
Michael Neulinga7d80d02014-03-25 10:47:03 +11001914 case KVM_REG_PPC_TM_LR:
1915 vcpu->arch.lr_tm = set_reg_val(id, *val);
1916 break;
1917 case KVM_REG_PPC_TM_CTR:
1918 vcpu->arch.ctr_tm = set_reg_val(id, *val);
1919 break;
1920 case KVM_REG_PPC_TM_FPSCR:
1921 vcpu->arch.fp_tm.fpscr = set_reg_val(id, *val);
1922 break;
1923 case KVM_REG_PPC_TM_AMR:
1924 vcpu->arch.amr_tm = set_reg_val(id, *val);
1925 break;
1926 case KVM_REG_PPC_TM_PPR:
1927 vcpu->arch.ppr_tm = set_reg_val(id, *val);
1928 break;
1929 case KVM_REG_PPC_TM_VRSAVE:
1930 vcpu->arch.vrsave_tm = set_reg_val(id, *val);
1931 break;
1932 case KVM_REG_PPC_TM_VSCR:
1933 if (cpu_has_feature(CPU_FTR_ALTIVEC))
1934 vcpu->arch.vr.vscr.u[3] = set_reg_val(id, *val);
1935 else
1936 r = - ENXIO;
1937 break;
1938 case KVM_REG_PPC_TM_DSCR:
1939 vcpu->arch.dscr_tm = set_reg_val(id, *val);
1940 break;
1941 case KVM_REG_PPC_TM_TAR:
1942 vcpu->arch.tar_tm = set_reg_val(id, *val);
1943 break;
1944#endif
Paul Mackerras388cc6e2013-09-21 14:35:02 +10001945 case KVM_REG_PPC_ARCH_COMPAT:
1946 r = kvmppc_set_arch_compat(vcpu, set_reg_val(id, *val));
1947 break;
Paul Mackerras58555642018-01-12 20:55:20 +11001948 case KVM_REG_PPC_DEC_EXPIRY:
1949 vcpu->arch.dec_expires = set_reg_val(id, *val) -
1950 vcpu->arch.vcore->tb_offset;
1951 break;
Paul Mackerrasa1f15822018-04-20 15:33:21 +10001952 case KVM_REG_PPC_ONLINE:
Paul Mackerras7aa15842018-04-20 19:53:22 +10001953 i = set_reg_val(id, *val);
1954 if (i && !vcpu->arch.online)
1955 atomic_inc(&vcpu->arch.vcore->online_count);
1956 else if (!i && vcpu->arch.online)
1957 atomic_dec(&vcpu->arch.vcore->online_count);
1958 vcpu->arch.online = i;
Paul Mackerrasa1f15822018-04-20 15:33:21 +10001959 break;
Paul Mackerras30323412018-10-08 16:31:13 +11001960 case KVM_REG_PPC_PTCR:
1961 vcpu->kvm->arch.l1_ptcr = set_reg_val(id, *val);
1962 break;
Paul Mackerras31f34382011-12-12 12:26:50 +00001963 default:
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001964 r = -EINVAL;
Paul Mackerras31f34382011-12-12 12:26:50 +00001965 break;
1966 }
1967
1968 return r;
1969}
1970
Paul Mackerras45c940b2016-11-18 17:43:30 +11001971/*
1972 * On POWER9, threads are independent and can be in different partitions.
1973 * Therefore we consider each thread to be a subcore.
1974 * There is a restriction that all threads have to be in the same
1975 * MMU mode (radix or HPT), unfortunately, but since we only support
1976 * HPT guests on a HPT host so far, that isn't an impediment yet.
1977 */
Paul Mackerras516f7892017-10-16 16:11:57 +11001978static int threads_per_vcore(struct kvm *kvm)
Paul Mackerras45c940b2016-11-18 17:43:30 +11001979{
Paul Mackerras516f7892017-10-16 16:11:57 +11001980 if (kvm->arch.threads_indep)
Paul Mackerras45c940b2016-11-18 17:43:30 +11001981 return 1;
1982 return threads_per_subcore;
1983}
1984
Sam Bobroff1e175d22018-07-25 16:12:02 +10001985static struct kvmppc_vcore *kvmppc_vcore_create(struct kvm *kvm, int id)
Stewart Smithde9bdd12014-07-18 14:18:42 +10001986{
1987 struct kvmppc_vcore *vcore;
1988
1989 vcore = kzalloc(sizeof(struct kvmppc_vcore), GFP_KERNEL);
1990
1991 if (vcore == NULL)
1992 return NULL;
1993
Stewart Smithde9bdd12014-07-18 14:18:42 +10001994 spin_lock_init(&vcore->lock);
Paul Mackerras2711e242014-12-04 16:43:28 +11001995 spin_lock_init(&vcore->stoltb_lock);
Marcelo Tosatti85773702016-02-19 09:46:39 +01001996 init_swait_queue_head(&vcore->wq);
Stewart Smithde9bdd12014-07-18 14:18:42 +10001997 vcore->preempt_tb = TB_NIL;
1998 vcore->lpcr = kvm->arch.lpcr;
Sam Bobroff1e175d22018-07-25 16:12:02 +10001999 vcore->first_vcpuid = id;
Stewart Smithde9bdd12014-07-18 14:18:42 +10002000 vcore->kvm = kvm;
Paul Mackerrasec257162015-06-24 21:18:03 +10002001 INIT_LIST_HEAD(&vcore->preempt_list);
Stewart Smithde9bdd12014-07-18 14:18:42 +10002002
2003 return vcore;
2004}
2005
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002006#ifdef CONFIG_KVM_BOOK3S_HV_EXIT_TIMING
2007static struct debugfs_timings_element {
2008 const char *name;
2009 size_t offset;
2010} timings[] = {
2011 {"rm_entry", offsetof(struct kvm_vcpu, arch.rm_entry)},
2012 {"rm_intr", offsetof(struct kvm_vcpu, arch.rm_intr)},
2013 {"rm_exit", offsetof(struct kvm_vcpu, arch.rm_exit)},
2014 {"guest", offsetof(struct kvm_vcpu, arch.guest_time)},
2015 {"cede", offsetof(struct kvm_vcpu, arch.cede_time)},
2016};
2017
Thomas Meyer4bb817ed2017-09-03 14:19:31 +02002018#define N_TIMINGS (ARRAY_SIZE(timings))
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002019
2020struct debugfs_timings_state {
2021 struct kvm_vcpu *vcpu;
2022 unsigned int buflen;
2023 char buf[N_TIMINGS * 100];
2024};
2025
2026static int debugfs_timings_open(struct inode *inode, struct file *file)
2027{
2028 struct kvm_vcpu *vcpu = inode->i_private;
2029 struct debugfs_timings_state *p;
2030
2031 p = kzalloc(sizeof(*p), GFP_KERNEL);
2032 if (!p)
2033 return -ENOMEM;
2034
2035 kvm_get_kvm(vcpu->kvm);
2036 p->vcpu = vcpu;
2037 file->private_data = p;
2038
2039 return nonseekable_open(inode, file);
2040}
2041
2042static int debugfs_timings_release(struct inode *inode, struct file *file)
2043{
2044 struct debugfs_timings_state *p = file->private_data;
2045
2046 kvm_put_kvm(p->vcpu->kvm);
2047 kfree(p);
2048 return 0;
2049}
2050
2051static ssize_t debugfs_timings_read(struct file *file, char __user *buf,
2052 size_t len, loff_t *ppos)
2053{
2054 struct debugfs_timings_state *p = file->private_data;
2055 struct kvm_vcpu *vcpu = p->vcpu;
2056 char *s, *buf_end;
2057 struct kvmhv_tb_accumulator tb;
2058 u64 count;
2059 loff_t pos;
2060 ssize_t n;
2061 int i, loops;
2062 bool ok;
2063
2064 if (!p->buflen) {
2065 s = p->buf;
2066 buf_end = s + sizeof(p->buf);
2067 for (i = 0; i < N_TIMINGS; ++i) {
2068 struct kvmhv_tb_accumulator *acc;
2069
2070 acc = (struct kvmhv_tb_accumulator *)
2071 ((unsigned long)vcpu + timings[i].offset);
2072 ok = false;
2073 for (loops = 0; loops < 1000; ++loops) {
2074 count = acc->seqcount;
2075 if (!(count & 1)) {
2076 smp_rmb();
2077 tb = *acc;
2078 smp_rmb();
2079 if (count == acc->seqcount) {
2080 ok = true;
2081 break;
2082 }
2083 }
2084 udelay(1);
2085 }
2086 if (!ok)
2087 snprintf(s, buf_end - s, "%s: stuck\n",
2088 timings[i].name);
2089 else
2090 snprintf(s, buf_end - s,
2091 "%s: %llu %llu %llu %llu\n",
2092 timings[i].name, count / 2,
2093 tb_to_ns(tb.tb_total),
2094 tb_to_ns(tb.tb_min),
2095 tb_to_ns(tb.tb_max));
2096 s += strlen(s);
2097 }
2098 p->buflen = s - p->buf;
2099 }
2100
2101 pos = *ppos;
2102 if (pos >= p->buflen)
2103 return 0;
2104 if (len > p->buflen - pos)
2105 len = p->buflen - pos;
2106 n = copy_to_user(buf, p->buf + pos, len);
2107 if (n) {
2108 if (n == len)
2109 return -EFAULT;
2110 len -= n;
2111 }
2112 *ppos = pos + len;
2113 return len;
2114}
2115
2116static ssize_t debugfs_timings_write(struct file *file, const char __user *buf,
2117 size_t len, loff_t *ppos)
2118{
2119 return -EACCES;
2120}
2121
2122static const struct file_operations debugfs_timings_ops = {
2123 .owner = THIS_MODULE,
2124 .open = debugfs_timings_open,
2125 .release = debugfs_timings_release,
2126 .read = debugfs_timings_read,
2127 .write = debugfs_timings_write,
2128 .llseek = generic_file_llseek,
2129};
2130
2131/* Create a debugfs directory for the vcpu */
2132static void debugfs_vcpu_init(struct kvm_vcpu *vcpu, unsigned int id)
2133{
2134 char buf[16];
2135 struct kvm *kvm = vcpu->kvm;
2136
2137 snprintf(buf, sizeof(buf), "vcpu%u", id);
2138 if (IS_ERR_OR_NULL(kvm->arch.debugfs_dir))
2139 return;
2140 vcpu->arch.debugfs_dir = debugfs_create_dir(buf, kvm->arch.debugfs_dir);
2141 if (IS_ERR_OR_NULL(vcpu->arch.debugfs_dir))
2142 return;
2143 vcpu->arch.debugfs_timings =
2144 debugfs_create_file("timings", 0444, vcpu->arch.debugfs_dir,
2145 vcpu, &debugfs_timings_ops);
2146}
2147
2148#else /* CONFIG_KVM_BOOK3S_HV_EXIT_TIMING */
2149static void debugfs_vcpu_init(struct kvm_vcpu *vcpu, unsigned int id)
2150{
2151}
2152#endif /* CONFIG_KVM_BOOK3S_HV_EXIT_TIMING */
2153
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302154static struct kvm_vcpu *kvmppc_core_vcpu_create_hv(struct kvm *kvm,
2155 unsigned int id)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002156{
2157 struct kvm_vcpu *vcpu;
Paul Mackerras3c313522017-02-06 13:24:41 +11002158 int err;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002159 int core;
2160 struct kvmppc_vcore *vcore;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002161
Paul Mackerras371fefd2011-06-29 00:23:08 +00002162 err = -ENOMEM;
Sasha Levin6b75e6b2011-12-07 10:24:56 +02002163 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Paul Mackerrasde56a942011-06-29 00:21:34 +00002164 if (!vcpu)
2165 goto out;
2166
2167 err = kvm_vcpu_init(vcpu, kvm, id);
2168 if (err)
2169 goto free_vcpu;
2170
2171 vcpu->arch.shared = &vcpu->arch.shregs;
Alexander Graf5deb8e72014-04-24 13:46:24 +02002172#ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
2173 /*
2174 * The shared struct is never shared on HV,
2175 * so we can always use host endianness
2176 */
2177#ifdef __BIG_ENDIAN__
2178 vcpu->arch.shared_big_endian = true;
2179#else
2180 vcpu->arch.shared_big_endian = false;
2181#endif
2182#endif
Paul Mackerrasde56a942011-06-29 00:21:34 +00002183 vcpu->arch.mmcr[0] = MMCR0_FC;
2184 vcpu->arch.ctrl = CTRL_RUNLATCH;
2185 /* default to host PVR, since we can't spoof it */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302186 kvmppc_set_pvr_hv(vcpu, mfspr(SPRN_PVR));
Paul Mackerras2e25aa52012-02-19 17:46:32 +00002187 spin_lock_init(&vcpu->arch.vpa_update_lock);
Paul Mackerrasc7b67672012-10-15 01:18:07 +00002188 spin_lock_init(&vcpu->arch.tbacct_lock);
2189 vcpu->arch.busy_preempt = TB_NIL;
Anton Blanchardd6829162014-01-08 21:25:30 +11002190 vcpu->arch.intr_msr = MSR_SF | MSR_ME;
Paul Mackerrasde56a942011-06-29 00:21:34 +00002191
Paul Mackerras769377f2017-02-15 14:30:17 +11002192 /*
2193 * Set the default HFSCR for the guest from the host value.
2194 * This value is only used on POWER9.
Paul Mackerras57900692017-05-16 16:41:20 +10002195 * On POWER9, we want to virtualize the doorbell facility, so we
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11002196 * don't set the HFSCR_MSGP bit, and that causes those instructions
2197 * to trap and then we emulate them.
Paul Mackerras769377f2017-02-15 14:30:17 +11002198 */
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11002199 vcpu->arch.hfscr = HFSCR_TAR | HFSCR_EBB | HFSCR_PM | HFSCR_BHRB |
2200 HFSCR_DSCR | HFSCR_VECVSX | HFSCR_FP;
2201 if (cpu_has_feature(CPU_FTR_HVMODE)) {
2202 vcpu->arch.hfscr &= mfspr(SPRN_HFSCR);
2203 if (cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST))
2204 vcpu->arch.hfscr |= HFSCR_TM;
2205 }
2206 if (cpu_has_feature(CPU_FTR_TM_COMP))
Paul Mackerras4bb3c7a2018-03-21 21:32:01 +11002207 vcpu->arch.hfscr |= HFSCR_TM;
Paul Mackerras769377f2017-02-15 14:30:17 +11002208
Paul Mackerrasde56a942011-06-29 00:21:34 +00002209 kvmppc_mmu_book3s_hv_init(vcpu);
2210
Paul Mackerras8455d792012-10-15 01:17:42 +00002211 vcpu->arch.state = KVMPPC_VCPU_NOTREADY;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002212
2213 init_waitqueue_head(&vcpu->arch.cpu_run);
2214
2215 mutex_lock(&kvm->lock);
Paul Mackerras3c313522017-02-06 13:24:41 +11002216 vcore = NULL;
2217 err = -EINVAL;
Sam Bobroff1e175d22018-07-25 16:12:02 +10002218 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
Paul Mackerrasb5c6f762018-07-26 15:38:41 +10002219 if (id >= (KVM_MAX_VCPUS * kvm->arch.emul_smt_mode)) {
2220 pr_devel("KVM: VCPU ID too high\n");
2221 core = KVM_MAX_VCORES;
2222 } else {
2223 BUG_ON(kvm->arch.smt_mode != 1);
2224 core = kvmppc_pack_vcpu_id(kvm, id);
2225 }
Sam Bobroff1e175d22018-07-25 16:12:02 +10002226 } else {
2227 core = id / kvm->arch.smt_mode;
2228 }
Paul Mackerras3c313522017-02-06 13:24:41 +11002229 if (core < KVM_MAX_VCORES) {
2230 vcore = kvm->arch.vcores[core];
Sam Bobroff1e175d22018-07-25 16:12:02 +10002231 if (vcore && cpu_has_feature(CPU_FTR_ARCH_300)) {
2232 pr_devel("KVM: collision on id %u", id);
2233 vcore = NULL;
2234 } else if (!vcore) {
Paul Mackerras3c313522017-02-06 13:24:41 +11002235 err = -ENOMEM;
Sam Bobroff1e175d22018-07-25 16:12:02 +10002236 vcore = kvmppc_vcore_create(kvm,
2237 id & ~(kvm->arch.smt_mode - 1));
Paul Mackerras3c313522017-02-06 13:24:41 +11002238 kvm->arch.vcores[core] = vcore;
2239 kvm->arch.online_vcores++;
2240 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00002241 }
2242 mutex_unlock(&kvm->lock);
2243
2244 if (!vcore)
2245 goto free_vcpu;
2246
2247 spin_lock(&vcore->lock);
2248 ++vcore->num_threads;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002249 spin_unlock(&vcore->lock);
2250 vcpu->arch.vcore = vcore;
Paul Mackerrase0b7ec02014-01-08 21:25:20 +11002251 vcpu->arch.ptid = vcpu->vcpu_id - vcore->first_vcpuid;
Paul Mackerrasec257162015-06-24 21:18:03 +10002252 vcpu->arch.thread_cpu = -1;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002253 vcpu->arch.prev_cpu = -1;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002254
Alexander Grafaf8f38b2011-08-10 13:57:08 +02002255 vcpu->arch.cpu_type = KVM_CPU_3S_64;
2256 kvmppc_sanity_check(vcpu);
2257
Paul Mackerrasb6c295d2015-03-28 14:21:02 +11002258 debugfs_vcpu_init(vcpu, id);
2259
Paul Mackerrasde56a942011-06-29 00:21:34 +00002260 return vcpu;
2261
2262free_vcpu:
Sasha Levin6b75e6b2011-12-07 10:24:56 +02002263 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasde56a942011-06-29 00:21:34 +00002264out:
2265 return ERR_PTR(err);
2266}
2267
Paul Mackerras3c313522017-02-06 13:24:41 +11002268static int kvmhv_set_smt_mode(struct kvm *kvm, unsigned long smt_mode,
2269 unsigned long flags)
2270{
2271 int err;
Paul Mackerras57900692017-05-16 16:41:20 +10002272 int esmt = 0;
Paul Mackerras3c313522017-02-06 13:24:41 +11002273
2274 if (flags)
2275 return -EINVAL;
2276 if (smt_mode > MAX_SMT_THREADS || !is_power_of_2(smt_mode))
2277 return -EINVAL;
2278 if (!cpu_has_feature(CPU_FTR_ARCH_300)) {
2279 /*
2280 * On POWER8 (or POWER7), the threading mode is "strict",
2281 * so we pack smt_mode vcpus per vcore.
2282 */
2283 if (smt_mode > threads_per_subcore)
2284 return -EINVAL;
2285 } else {
2286 /*
2287 * On POWER9, the threading mode is "loose",
2288 * so each vcpu gets its own vcore.
2289 */
Paul Mackerras57900692017-05-16 16:41:20 +10002290 esmt = smt_mode;
Paul Mackerras3c313522017-02-06 13:24:41 +11002291 smt_mode = 1;
2292 }
2293 mutex_lock(&kvm->lock);
2294 err = -EBUSY;
2295 if (!kvm->arch.online_vcores) {
2296 kvm->arch.smt_mode = smt_mode;
Paul Mackerras57900692017-05-16 16:41:20 +10002297 kvm->arch.emul_smt_mode = esmt;
Paul Mackerras3c313522017-02-06 13:24:41 +11002298 err = 0;
2299 }
2300 mutex_unlock(&kvm->lock);
2301
2302 return err;
2303}
2304
Paul Mackerrasc35635e2013-04-18 19:51:04 +00002305static void unpin_vpa(struct kvm *kvm, struct kvmppc_vpa *vpa)
2306{
2307 if (vpa->pinned_addr)
2308 kvmppc_unpin_guest_page(kvm, vpa->pinned_addr, vpa->gpa,
2309 vpa->dirty);
2310}
2311
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302312static void kvmppc_core_vcpu_free_hv(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002313{
Paul Mackerras2e25aa52012-02-19 17:46:32 +00002314 spin_lock(&vcpu->arch.vpa_update_lock);
Paul Mackerrasc35635e2013-04-18 19:51:04 +00002315 unpin_vpa(vcpu->kvm, &vcpu->arch.dtl);
2316 unpin_vpa(vcpu->kvm, &vcpu->arch.slb_shadow);
2317 unpin_vpa(vcpu->kvm, &vcpu->arch.vpa);
Paul Mackerras2e25aa52012-02-19 17:46:32 +00002318 spin_unlock(&vcpu->arch.vpa_update_lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00002319 kvm_vcpu_uninit(vcpu);
Sasha Levin6b75e6b2011-12-07 10:24:56 +02002320 kmem_cache_free(kvm_vcpu_cache, vcpu);
Paul Mackerrasde56a942011-06-29 00:21:34 +00002321}
2322
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05302323static int kvmppc_core_check_requests_hv(struct kvm_vcpu *vcpu)
2324{
2325 /* Indicate we want to get back into the guest */
2326 return 1;
2327}
2328
Paul Mackerras19ccb762011-07-23 17:42:46 +10002329static void kvmppc_set_timer(struct kvm_vcpu *vcpu)
Paul Mackerrasde56a942011-06-29 00:21:34 +00002330{
Paul Mackerras19ccb762011-07-23 17:42:46 +10002331 unsigned long dec_nsec, now;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002332
Paul Mackerras19ccb762011-07-23 17:42:46 +10002333 now = get_tb();
2334 if (now > vcpu->arch.dec_expires) {
2335 /* decrementer has already gone negative */
2336 kvmppc_core_queue_dec(vcpu);
Scott Wood7e28e60e2011-11-08 18:23:20 -06002337 kvmppc_core_prepare_to_enter(vcpu);
Paul Mackerras19ccb762011-07-23 17:42:46 +10002338 return;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002339 }
Paul Mackerras19ccb762011-07-23 17:42:46 +10002340 dec_nsec = (vcpu->arch.dec_expires - now) * NSEC_PER_SEC
2341 / tb_ticks_per_sec;
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01002342 hrtimer_start(&vcpu->arch.dec_timer, dec_nsec, HRTIMER_MODE_REL);
Paul Mackerras19ccb762011-07-23 17:42:46 +10002343 vcpu->arch.timer_running = 1;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002344}
2345
Paul Mackerras19ccb762011-07-23 17:42:46 +10002346static void kvmppc_end_cede(struct kvm_vcpu *vcpu)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002347{
Paul Mackerras19ccb762011-07-23 17:42:46 +10002348 vcpu->arch.ceded = 0;
2349 if (vcpu->arch.timer_running) {
2350 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
2351 vcpu->arch.timer_running = 0;
2352 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00002353}
2354
Paul Mackerras8b24e692017-06-26 15:45:51 +10002355extern int __kvmppc_vcore_entry(void);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002356
2357static void kvmppc_remove_runnable(struct kvmppc_vcore *vc,
2358 struct kvm_vcpu *vcpu)
2359{
Paul Mackerrasc7b67672012-10-15 01:18:07 +00002360 u64 now;
2361
Paul Mackerras371fefd2011-06-29 00:23:08 +00002362 if (vcpu->arch.state != KVMPPC_VCPU_RUNNABLE)
2363 return;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +11002364 spin_lock_irq(&vcpu->arch.tbacct_lock);
Paul Mackerrasc7b67672012-10-15 01:18:07 +00002365 now = mftb();
2366 vcpu->arch.busy_stolen += vcore_stolen_time(vc, now) -
2367 vcpu->arch.stolen_logged;
2368 vcpu->arch.busy_preempt = now;
2369 vcpu->arch.state = KVMPPC_VCPU_BUSY_IN_HOST;
Paul Mackerrasbf3d32e2013-11-16 17:46:04 +11002370 spin_unlock_irq(&vcpu->arch.tbacct_lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002371 --vc->n_runnable;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002372 WRITE_ONCE(vc->runnable_threads[vcpu->arch.ptid], NULL);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002373}
2374
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002375static int kvmppc_grab_hwthread(int cpu)
2376{
2377 struct paca_struct *tpaca;
Paul Mackerrasb754c732014-09-02 16:14:42 +10002378 long timeout = 10000;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002379
Nicholas Piggind2e60072018-02-14 01:08:12 +10002380 tpaca = paca_ptrs[cpu];
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002381
2382 /* Ensure the thread won't go into the kernel if it wakes */
Paul Mackerras7b444c62012-10-15 01:16:14 +00002383 tpaca->kvm_hstate.kvm_vcpu = NULL;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002384 tpaca->kvm_hstate.kvm_vcore = NULL;
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002385 tpaca->kvm_hstate.napping = 0;
2386 smp_wmb();
2387 tpaca->kvm_hstate.hwthread_req = 1;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002388
2389 /*
2390 * If the thread is already executing in the kernel (e.g. handling
2391 * a stray interrupt), wait for it to get back to nap mode.
2392 * The smp_mb() is to ensure that our setting of hwthread_req
2393 * is visible before we look at hwthread_state, so if this
2394 * races with the code at system_reset_pSeries and the thread
2395 * misses our setting of hwthread_req, we are sure to see its
2396 * setting of hwthread_state, and vice versa.
2397 */
2398 smp_mb();
2399 while (tpaca->kvm_hstate.hwthread_state == KVM_HWTHREAD_IN_KERNEL) {
2400 if (--timeout <= 0) {
2401 pr_err("KVM: couldn't grab cpu %d\n", cpu);
2402 return -EBUSY;
2403 }
2404 udelay(1);
2405 }
2406 return 0;
2407}
2408
2409static void kvmppc_release_hwthread(int cpu)
2410{
2411 struct paca_struct *tpaca;
2412
Nicholas Piggind2e60072018-02-14 01:08:12 +10002413 tpaca = paca_ptrs[cpu];
Paul Mackerras31a4d442017-10-19 15:14:20 +11002414 tpaca->kvm_hstate.hwthread_req = 0;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002415 tpaca->kvm_hstate.kvm_vcpu = NULL;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002416 tpaca->kvm_hstate.kvm_vcore = NULL;
2417 tpaca->kvm_hstate.kvm_split_mode = NULL;
Paul Mackerrasf0888f72012-02-03 00:54:17 +00002418}
2419
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002420static void radix_flush_cpu(struct kvm *kvm, int cpu, struct kvm_vcpu *vcpu)
2421{
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002422 struct kvm_nested_guest *nested = vcpu->arch.nested;
2423 cpumask_t *cpu_in_guest;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002424 int i;
2425
2426 cpu = cpu_first_thread_sibling(cpu);
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002427 if (nested) {
2428 cpumask_set_cpu(cpu, &nested->need_tlb_flush);
2429 cpu_in_guest = &nested->cpu_in_guest;
2430 } else {
2431 cpumask_set_cpu(cpu, &kvm->arch.need_tlb_flush);
2432 cpu_in_guest = &kvm->arch.cpu_in_guest;
2433 }
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002434 /*
2435 * Make sure setting of bit in need_tlb_flush precedes
2436 * testing of cpu_in_guest bits. The matching barrier on
2437 * the other side is the first smp_mb() in kvmppc_run_core().
2438 */
2439 smp_mb();
2440 for (i = 0; i < threads_per_core; ++i)
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002441 if (cpumask_test_cpu(cpu + i, cpu_in_guest))
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002442 smp_call_function_single(cpu + i, do_nothing, NULL, 1);
2443}
2444
Paul Mackerras8b24e692017-06-26 15:45:51 +10002445static void kvmppc_prepare_radix_vcpu(struct kvm_vcpu *vcpu, int pcpu)
2446{
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002447 struct kvm_nested_guest *nested = vcpu->arch.nested;
Paul Mackerras8b24e692017-06-26 15:45:51 +10002448 struct kvm *kvm = vcpu->kvm;
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002449 int prev_cpu;
2450
2451 if (!cpu_has_feature(CPU_FTR_HVMODE))
2452 return;
2453
2454 if (nested)
2455 prev_cpu = nested->prev_cpu[vcpu->arch.nested_vcpu_id];
2456 else
2457 prev_cpu = vcpu->arch.prev_cpu;
Paul Mackerras8b24e692017-06-26 15:45:51 +10002458
2459 /*
2460 * With radix, the guest can do TLB invalidations itself,
2461 * and it could choose to use the local form (tlbiel) if
2462 * it is invalidating a translation that has only ever been
2463 * used on one vcpu. However, that doesn't mean it has
2464 * only ever been used on one physical cpu, since vcpus
2465 * can move around between pcpus. To cope with this, when
2466 * a vcpu moves from one pcpu to another, we need to tell
2467 * any vcpus running on the same core as this vcpu previously
2468 * ran to flush the TLB. The TLB is shared between threads,
2469 * so we use a single bit in .need_tlb_flush for all 4 threads.
2470 */
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002471 if (prev_cpu != pcpu) {
2472 if (prev_cpu >= 0 &&
2473 cpu_first_thread_sibling(prev_cpu) !=
Paul Mackerras8b24e692017-06-26 15:45:51 +10002474 cpu_first_thread_sibling(pcpu))
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11002475 radix_flush_cpu(kvm, prev_cpu, vcpu);
2476 if (nested)
2477 nested->prev_cpu[vcpu->arch.nested_vcpu_id] = pcpu;
2478 else
2479 vcpu->arch.prev_cpu = pcpu;
2480 }
2481}
2482
2483static void kvmppc_radix_check_need_tlb_flush(struct kvm *kvm, int pcpu,
2484 struct kvm_nested_guest *nested)
2485{
2486 cpumask_t *need_tlb_flush;
2487 int lpid;
2488
2489 if (!cpu_has_feature(CPU_FTR_HVMODE))
2490 return;
2491
2492 if (cpu_has_feature(CPU_FTR_ARCH_300))
2493 pcpu &= ~0x3UL;
2494
2495 if (nested) {
2496 lpid = nested->shadow_lpid;
2497 need_tlb_flush = &nested->need_tlb_flush;
2498 } else {
2499 lpid = kvm->arch.lpid;
2500 need_tlb_flush = &kvm->arch.need_tlb_flush;
2501 }
2502
2503 mtspr(SPRN_LPID, lpid);
2504 isync();
2505 smp_mb();
2506
2507 if (cpumask_test_cpu(pcpu, need_tlb_flush)) {
2508 radix__local_flush_tlb_lpid_guest(lpid);
2509 /* Clear the bit after the TLB flush */
2510 cpumask_clear_cpu(pcpu, need_tlb_flush);
Paul Mackerras8b24e692017-06-26 15:45:51 +10002511 }
2512}
2513
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002514static void kvmppc_start_thread(struct kvm_vcpu *vcpu, struct kvmppc_vcore *vc)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002515{
2516 int cpu;
2517 struct paca_struct *tpaca;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002518 struct kvm *kvm = vc->kvm;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002519
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002520 cpu = vc->pcpu;
2521 if (vcpu) {
2522 if (vcpu->arch.timer_running) {
2523 hrtimer_try_to_cancel(&vcpu->arch.dec_timer);
2524 vcpu->arch.timer_running = 0;
2525 }
2526 cpu += vcpu->arch.ptid;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002527 vcpu->cpu = vc->pcpu;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002528 vcpu->arch.thread_cpu = cpu;
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11002529 cpumask_set_cpu(cpu, &kvm->arch.cpu_in_guest);
Paul Mackerras19ccb762011-07-23 17:42:46 +10002530 }
Nicholas Piggind2e60072018-02-14 01:08:12 +10002531 tpaca = paca_ptrs[cpu];
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002532 tpaca->kvm_hstate.kvm_vcpu = vcpu;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002533 tpaca->kvm_hstate.ptid = cpu - vc->pcpu;
Paul Mackerras4bb3c7a2018-03-21 21:32:01 +11002534 tpaca->kvm_hstate.fake_suspend = 0;
Paul Mackerrasec257162015-06-24 21:18:03 +10002535 /* Order stores to hstate.kvm_vcpu etc. before store to kvm_vcore */
Paul Mackerras19ccb762011-07-23 17:42:46 +10002536 smp_wmb();
Paul Mackerras898b25b2017-06-22 15:08:42 +10002537 tpaca->kvm_hstate.kvm_vcore = vc;
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002538 if (cpu != smp_processor_id())
Paul Mackerras66feed62015-03-28 14:21:12 +11002539 kvmppc_ipi_thread(cpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002540}
2541
Paul Mackerras516f7892017-10-16 16:11:57 +11002542static void kvmppc_wait_for_nap(int n_threads)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002543{
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002544 int cpu = smp_processor_id();
2545 int i, loops;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002546
Paul Mackerras45c940b2016-11-18 17:43:30 +11002547 if (n_threads <= 1)
2548 return;
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002549 for (loops = 0; loops < 1000000; ++loops) {
2550 /*
2551 * Check if all threads are finished.
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002552 * We set the vcore pointer when starting a thread
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002553 * and the thread clears it when finished, so we look
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002554 * for any threads that still have a non-NULL vcore ptr.
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002555 */
Paul Mackerras45c940b2016-11-18 17:43:30 +11002556 for (i = 1; i < n_threads; ++i)
Nicholas Piggind2e60072018-02-14 01:08:12 +10002557 if (paca_ptrs[cpu + i]->kvm_hstate.kvm_vcore)
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002558 break;
Paul Mackerras45c940b2016-11-18 17:43:30 +11002559 if (i == n_threads) {
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002560 HMT_medium();
2561 return;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002562 }
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002563 HMT_low();
Paul Mackerras371fefd2011-06-29 00:23:08 +00002564 }
2565 HMT_medium();
Paul Mackerras45c940b2016-11-18 17:43:30 +11002566 for (i = 1; i < n_threads; ++i)
Nicholas Piggind2e60072018-02-14 01:08:12 +10002567 if (paca_ptrs[cpu + i]->kvm_hstate.kvm_vcore)
Paul Mackerras5d5b99c2015-03-28 14:21:06 +11002568 pr_err("KVM: CPU %d seems to be stuck\n", cpu + i);
Paul Mackerras371fefd2011-06-29 00:23:08 +00002569}
2570
2571/*
2572 * Check that we are on thread 0 and that any other threads in
Paul Mackerras7b444c62012-10-15 01:16:14 +00002573 * this core are off-line. Then grab the threads so they can't
2574 * enter the kernel.
Paul Mackerras371fefd2011-06-29 00:23:08 +00002575 */
2576static int on_primary_thread(void)
2577{
2578 int cpu = smp_processor_id();
Michael Ellerman3102f782014-05-23 18:15:29 +10002579 int thr;
Paul Mackerras371fefd2011-06-29 00:23:08 +00002580
Michael Ellerman3102f782014-05-23 18:15:29 +10002581 /* Are we on a primary subcore? */
2582 if (cpu_thread_in_subcore(cpu))
Paul Mackerras371fefd2011-06-29 00:23:08 +00002583 return 0;
Michael Ellerman3102f782014-05-23 18:15:29 +10002584
2585 thr = 0;
2586 while (++thr < threads_per_subcore)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002587 if (cpu_online(cpu + thr))
2588 return 0;
Paul Mackerras7b444c62012-10-15 01:16:14 +00002589
2590 /* Grab all hw threads so they can't go into the kernel */
Michael Ellerman3102f782014-05-23 18:15:29 +10002591 for (thr = 1; thr < threads_per_subcore; ++thr) {
Paul Mackerras7b444c62012-10-15 01:16:14 +00002592 if (kvmppc_grab_hwthread(cpu + thr)) {
2593 /* Couldn't grab one; let the others go */
2594 do {
2595 kvmppc_release_hwthread(cpu + thr);
2596 } while (--thr > 0);
2597 return 0;
2598 }
2599 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00002600 return 1;
2601}
2602
Paul Mackerrasec257162015-06-24 21:18:03 +10002603/*
2604 * A list of virtual cores for each physical CPU.
2605 * These are vcores that could run but their runner VCPU tasks are
2606 * (or may be) preempted.
2607 */
2608struct preempted_vcore_list {
2609 struct list_head list;
2610 spinlock_t lock;
2611};
2612
2613static DEFINE_PER_CPU(struct preempted_vcore_list, preempted_vcores);
2614
2615static void init_vcore_lists(void)
2616{
2617 int cpu;
2618
2619 for_each_possible_cpu(cpu) {
2620 struct preempted_vcore_list *lp = &per_cpu(preempted_vcores, cpu);
2621 spin_lock_init(&lp->lock);
2622 INIT_LIST_HEAD(&lp->list);
2623 }
2624}
2625
2626static void kvmppc_vcore_preempt(struct kvmppc_vcore *vc)
2627{
2628 struct preempted_vcore_list *lp = this_cpu_ptr(&preempted_vcores);
2629
2630 vc->vcore_state = VCORE_PREEMPT;
2631 vc->pcpu = smp_processor_id();
Paul Mackerras516f7892017-10-16 16:11:57 +11002632 if (vc->num_threads < threads_per_vcore(vc->kvm)) {
Paul Mackerrasec257162015-06-24 21:18:03 +10002633 spin_lock(&lp->lock);
2634 list_add_tail(&vc->preempt_list, &lp->list);
2635 spin_unlock(&lp->lock);
2636 }
2637
2638 /* Start accumulating stolen time */
2639 kvmppc_core_start_stolen(vc);
2640}
2641
2642static void kvmppc_vcore_end_preempt(struct kvmppc_vcore *vc)
2643{
Paul Mackerras402813f2015-07-16 17:11:13 +10002644 struct preempted_vcore_list *lp;
Paul Mackerrasec257162015-06-24 21:18:03 +10002645
2646 kvmppc_core_end_stolen(vc);
2647 if (!list_empty(&vc->preempt_list)) {
Paul Mackerras402813f2015-07-16 17:11:13 +10002648 lp = &per_cpu(preempted_vcores, vc->pcpu);
Paul Mackerrasec257162015-06-24 21:18:03 +10002649 spin_lock(&lp->lock);
2650 list_del_init(&vc->preempt_list);
2651 spin_unlock(&lp->lock);
2652 }
2653 vc->vcore_state = VCORE_INACTIVE;
2654}
2655
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002656/*
2657 * This stores information about the virtual cores currently
2658 * assigned to a physical core.
2659 */
Paul Mackerrasec257162015-06-24 21:18:03 +10002660struct core_info {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002661 int n_subcores;
2662 int max_subcore_threads;
Paul Mackerrasec257162015-06-24 21:18:03 +10002663 int total_threads;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002664 int subcore_threads[MAX_SUBCORES];
Paul Mackerras898b25b2017-06-22 15:08:42 +10002665 struct kvmppc_vcore *vc[MAX_SUBCORES];
Paul Mackerrasec257162015-06-24 21:18:03 +10002666};
2667
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002668/*
2669 * This mapping means subcores 0 and 1 can use threads 0-3 and 4-7
Paul Mackerras516f7892017-10-16 16:11:57 +11002670 * respectively in 2-way micro-threading (split-core) mode on POWER8.
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002671 */
2672static int subcore_thread_map[MAX_SUBCORES] = { 0, 4, 2, 6 };
2673
Paul Mackerrasec257162015-06-24 21:18:03 +10002674static void init_core_info(struct core_info *cip, struct kvmppc_vcore *vc)
2675{
2676 memset(cip, 0, sizeof(*cip));
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002677 cip->n_subcores = 1;
2678 cip->max_subcore_threads = vc->num_threads;
Paul Mackerrasec257162015-06-24 21:18:03 +10002679 cip->total_threads = vc->num_threads;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002680 cip->subcore_threads[0] = vc->num_threads;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002681 cip->vc[0] = vc;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002682}
2683
2684static bool subcore_config_ok(int n_subcores, int n_threads)
2685{
Paul Mackerras516f7892017-10-16 16:11:57 +11002686 /*
Paul Mackerras00608e12018-01-11 16:54:26 +11002687 * POWER9 "SMT4" cores are permanently in what is effectively a 4-way
2688 * split-core mode, with one thread per subcore.
Paul Mackerras516f7892017-10-16 16:11:57 +11002689 */
2690 if (cpu_has_feature(CPU_FTR_ARCH_300))
2691 return n_subcores <= 4 && n_threads == 1;
2692
2693 /* On POWER8, can only dynamically split if unsplit to begin with */
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002694 if (n_subcores > 1 && threads_per_subcore < MAX_SMT_THREADS)
2695 return false;
2696 if (n_subcores > MAX_SUBCORES)
2697 return false;
2698 if (n_subcores > 1) {
2699 if (!(dynamic_mt_modes & 2))
2700 n_subcores = 4;
2701 if (n_subcores > 2 && !(dynamic_mt_modes & 4))
2702 return false;
2703 }
2704
2705 return n_subcores * roundup_pow_of_two(n_threads) <= MAX_SMT_THREADS;
Paul Mackerrasec257162015-06-24 21:18:03 +10002706}
2707
Paul Mackerras898b25b2017-06-22 15:08:42 +10002708static void init_vcore_to_run(struct kvmppc_vcore *vc)
Paul Mackerrasec257162015-06-24 21:18:03 +10002709{
Paul Mackerrasec257162015-06-24 21:18:03 +10002710 vc->entry_exit_map = 0;
2711 vc->in_guest = 0;
2712 vc->napping_threads = 0;
2713 vc->conferring_threads = 0;
Paul Mackerras57b8daa2018-04-20 22:51:11 +10002714 vc->tb_offset_applied = 0;
Paul Mackerrasec257162015-06-24 21:18:03 +10002715}
2716
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002717static bool can_dynamic_split(struct kvmppc_vcore *vc, struct core_info *cip)
2718{
2719 int n_threads = vc->num_threads;
2720 int sub;
2721
2722 if (!cpu_has_feature(CPU_FTR_ARCH_207S))
2723 return false;
2724
Paul Mackerrasaa227862018-09-12 10:42:12 +10002725 /* In one_vm_per_core mode, require all vcores to be from the same vm */
2726 if (one_vm_per_core && vc->kvm != cip->vc[0]->kvm)
2727 return false;
2728
Paul Mackerras00608e12018-01-11 16:54:26 +11002729 /* Some POWER9 chips require all threads to be in the same MMU mode */
2730 if (no_mixing_hpt_and_radix &&
Paul Mackerrasc0101502017-10-19 14:11:23 +11002731 kvm_is_radix(vc->kvm) != kvm_is_radix(cip->vc[0]->kvm))
2732 return false;
2733
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002734 if (n_threads < cip->max_subcore_threads)
2735 n_threads = cip->max_subcore_threads;
Paul Mackerrasb0090312016-09-15 16:27:41 +10002736 if (!subcore_config_ok(cip->n_subcores + 1, n_threads))
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002737 return false;
Paul Mackerrasb0090312016-09-15 16:27:41 +10002738 cip->max_subcore_threads = n_threads;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002739
2740 sub = cip->n_subcores;
2741 ++cip->n_subcores;
2742 cip->total_threads += vc->num_threads;
2743 cip->subcore_threads[sub] = vc->num_threads;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002744 cip->vc[sub] = vc;
2745 init_vcore_to_run(vc);
2746 list_del_init(&vc->preempt_list);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002747
2748 return true;
2749}
2750
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002751/*
2752 * Work out whether it is possible to piggyback the execution of
2753 * vcore *pvc onto the execution of the other vcores described in *cip.
2754 */
2755static bool can_piggyback(struct kvmppc_vcore *pvc, struct core_info *cip,
2756 int target_threads)
2757{
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002758 if (cip->total_threads + pvc->num_threads > target_threads)
2759 return false;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002760
Paul Mackerrasb0090312016-09-15 16:27:41 +10002761 return can_dynamic_split(pvc, cip);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002762}
2763
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11002764static void prepare_threads(struct kvmppc_vcore *vc)
2765{
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002766 int i;
2767 struct kvm_vcpu *vcpu;
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11002768
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002769 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11002770 if (signal_pending(vcpu->arch.run_task))
2771 vcpu->arch.ret = -EINTR;
2772 else if (vcpu->arch.vpa.update_pending ||
2773 vcpu->arch.slb_shadow.update_pending ||
2774 vcpu->arch.dtl.update_pending)
2775 vcpu->arch.ret = RESUME_GUEST;
2776 else
2777 continue;
2778 kvmppc_remove_runnable(vc, vcpu);
2779 wake_up(&vcpu->arch.cpu_run);
2780 }
2781}
2782
Paul Mackerrasec257162015-06-24 21:18:03 +10002783static void collect_piggybacks(struct core_info *cip, int target_threads)
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002784{
Paul Mackerrasec257162015-06-24 21:18:03 +10002785 struct preempted_vcore_list *lp = this_cpu_ptr(&preempted_vcores);
2786 struct kvmppc_vcore *pvc, *vcnext;
2787
2788 spin_lock(&lp->lock);
2789 list_for_each_entry_safe(pvc, vcnext, &lp->list, preempt_list) {
2790 if (!spin_trylock(&pvc->lock))
2791 continue;
2792 prepare_threads(pvc);
2793 if (!pvc->n_runnable) {
2794 list_del_init(&pvc->preempt_list);
2795 if (pvc->runner == NULL) {
2796 pvc->vcore_state = VCORE_INACTIVE;
2797 kvmppc_core_end_stolen(pvc);
2798 }
2799 spin_unlock(&pvc->lock);
2800 continue;
2801 }
2802 if (!can_piggyback(pvc, cip, target_threads)) {
2803 spin_unlock(&pvc->lock);
2804 continue;
2805 }
2806 kvmppc_core_end_stolen(pvc);
2807 pvc->vcore_state = VCORE_PIGGYBACK;
2808 if (cip->total_threads >= target_threads)
2809 break;
2810 }
2811 spin_unlock(&lp->lock);
2812}
2813
Paul Mackerras8b24e692017-06-26 15:45:51 +10002814static bool recheck_signals(struct core_info *cip)
2815{
2816 int sub, i;
2817 struct kvm_vcpu *vcpu;
2818
2819 for (sub = 0; sub < cip->n_subcores; ++sub)
2820 for_each_runnable_thread(i, vcpu, cip->vc[sub])
2821 if (signal_pending(vcpu->arch.run_task))
2822 return true;
2823 return false;
2824}
2825
Paul Mackerrasec257162015-06-24 21:18:03 +10002826static void post_guest_process(struct kvmppc_vcore *vc, bool is_master)
2827{
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002828 int still_running = 0, i;
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002829 u64 now;
2830 long ret;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002831 struct kvm_vcpu *vcpu;
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002832
Paul Mackerrasec257162015-06-24 21:18:03 +10002833 spin_lock(&vc->lock);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002834 now = get_tb();
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002835 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerras53655dd2018-10-08 16:30:54 +11002836 /*
2837 * It's safe to unlock the vcore in the loop here, because
2838 * for_each_runnable_thread() is safe against removal of
2839 * the vcpu, and the vcore state is VCORE_EXITING here,
2840 * so any vcpus becoming runnable will have their arch.trap
2841 * set to zero and can't actually run in the guest.
2842 */
2843 spin_unlock(&vc->lock);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002844 /* cancel pending dec exception if dec is positive */
2845 if (now < vcpu->arch.dec_expires &&
2846 kvmppc_core_pending_dec(vcpu))
2847 kvmppc_core_dequeue_dec(vcpu);
2848
2849 trace_kvm_guest_exit(vcpu);
2850
2851 ret = RESUME_GUEST;
2852 if (vcpu->arch.trap)
2853 ret = kvmppc_handle_exit_hv(vcpu->arch.kvm_run, vcpu,
2854 vcpu->arch.run_task);
2855
2856 vcpu->arch.ret = ret;
2857 vcpu->arch.trap = 0;
2858
Paul Mackerras53655dd2018-10-08 16:30:54 +11002859 spin_lock(&vc->lock);
Paul Mackerrasec257162015-06-24 21:18:03 +10002860 if (is_kvmppc_resume_guest(vcpu->arch.ret)) {
2861 if (vcpu->arch.pending_exceptions)
2862 kvmppc_core_prepare_to_enter(vcpu);
2863 if (vcpu->arch.ceded)
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002864 kvmppc_set_timer(vcpu);
Paul Mackerrasec257162015-06-24 21:18:03 +10002865 else
2866 ++still_running;
2867 } else {
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002868 kvmppc_remove_runnable(vc, vcpu);
2869 wake_up(&vcpu->arch.cpu_run);
2870 }
2871 }
Paul Mackerrasec257162015-06-24 21:18:03 +10002872 if (!is_master) {
Paul Mackerras563a1e92015-07-16 17:11:14 +10002873 if (still_running > 0) {
Paul Mackerrasec257162015-06-24 21:18:03 +10002874 kvmppc_vcore_preempt(vc);
Paul Mackerras563a1e92015-07-16 17:11:14 +10002875 } else if (vc->runner) {
2876 vc->vcore_state = VCORE_PREEMPT;
2877 kvmppc_core_start_stolen(vc);
2878 } else {
2879 vc->vcore_state = VCORE_INACTIVE;
2880 }
Paul Mackerrasec257162015-06-24 21:18:03 +10002881 if (vc->n_runnable > 0 && vc->runner == NULL) {
2882 /* make sure there's a candidate runner awake */
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002883 i = -1;
2884 vcpu = next_runnable_thread(vc, &i);
Paul Mackerrasec257162015-06-24 21:18:03 +10002885 wake_up(&vcpu->arch.cpu_run);
2886 }
2887 }
2888 spin_unlock(&vc->lock);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11002889}
2890
Paul Mackerras371fefd2011-06-29 00:23:08 +00002891/*
Suresh Warrierb8e6a872015-12-17 14:59:07 -06002892 * Clear core from the list of active host cores as we are about to
2893 * enter the guest. Only do this if it is the primary thread of the
2894 * core (not if a subcore) that is entering the guest.
2895 */
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01002896static inline int kvmppc_clear_host_core(unsigned int cpu)
Suresh Warrierb8e6a872015-12-17 14:59:07 -06002897{
2898 int core;
2899
2900 if (!kvmppc_host_rm_ops_hv || cpu_thread_in_core(cpu))
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01002901 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06002902 /*
2903 * Memory barrier can be omitted here as we will do a smp_wmb()
2904 * later in kvmppc_start_thread and we need ensure that state is
2905 * visible to other CPUs only after we enter guest.
2906 */
2907 core = cpu >> threads_shift;
2908 kvmppc_host_rm_ops_hv->rm_core[core].rm_state.in_host = 0;
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01002909 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06002910}
2911
2912/*
2913 * Advertise this core as an active host core since we exited the guest
2914 * Only need to do this if it is the primary thread of the core that is
2915 * exiting.
2916 */
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01002917static inline int kvmppc_set_host_core(unsigned int cpu)
Suresh Warrierb8e6a872015-12-17 14:59:07 -06002918{
2919 int core;
2920
2921 if (!kvmppc_host_rm_ops_hv || cpu_thread_in_core(cpu))
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01002922 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06002923
2924 /*
2925 * Memory barrier can be omitted here because we do a spin_unlock
2926 * immediately after this which provides the memory barrier.
2927 */
2928 core = cpu >> threads_shift;
2929 kvmppc_host_rm_ops_hv->rm_core[core].rm_state.in_host = 1;
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01002930 return 0;
Suresh Warrierb8e6a872015-12-17 14:59:07 -06002931}
2932
Paul Mackerras8b24e692017-06-26 15:45:51 +10002933static void set_irq_happened(int trap)
2934{
2935 switch (trap) {
2936 case BOOK3S_INTERRUPT_EXTERNAL:
2937 local_paca->irq_happened |= PACA_IRQ_EE;
2938 break;
2939 case BOOK3S_INTERRUPT_H_DOORBELL:
2940 local_paca->irq_happened |= PACA_IRQ_DBELL;
2941 break;
2942 case BOOK3S_INTERRUPT_HMI:
2943 local_paca->irq_happened |= PACA_IRQ_HMI;
2944 break;
Nicholas Piggin6de66382017-11-05 23:33:55 +11002945 case BOOK3S_INTERRUPT_SYSTEM_RESET:
2946 replay_system_reset();
2947 break;
Paul Mackerras8b24e692017-06-26 15:45:51 +10002948 }
2949}
2950
Suresh Warrierb8e6a872015-12-17 14:59:07 -06002951/*
Paul Mackerras371fefd2011-06-29 00:23:08 +00002952 * Run a set of guest threads on a physical core.
2953 * Called with vc->lock held.
2954 */
Paul Mackerras66feed62015-03-28 14:21:12 +11002955static noinline void kvmppc_run_core(struct kvmppc_vcore *vc)
Paul Mackerras371fefd2011-06-29 00:23:08 +00002956{
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10002957 struct kvm_vcpu *vcpu;
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11002958 int i;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00002959 int srcu_idx;
Paul Mackerrasec257162015-06-24 21:18:03 +10002960 struct core_info core_info;
Paul Mackerras898b25b2017-06-22 15:08:42 +10002961 struct kvmppc_vcore *pvc;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10002962 struct kvm_split_mode split_info, *sip;
2963 int split, subcore_size, active;
2964 int sub;
2965 bool thr0_done;
2966 unsigned long cmd_bit, stat_bit;
Paul Mackerrasec257162015-06-24 21:18:03 +10002967 int pcpu, thr;
2968 int target_threads;
Paul Mackerras45c940b2016-11-18 17:43:30 +11002969 int controlled_threads;
Paul Mackerras8b24e692017-06-26 15:45:51 +10002970 int trap;
Paul Mackerras516f7892017-10-16 16:11:57 +11002971 bool is_power8;
Paul Mackerrasc0101502017-10-19 14:11:23 +11002972 bool hpt_on_radix;
Paul Mackerras081f3232012-06-01 20:20:24 +10002973
2974 /*
Paul Mackerrasd911f0b2015-03-28 14:21:03 +11002975 * Remove from the list any threads that have a signal pending
2976 * or need a VPA update done
2977 */
2978 prepare_threads(vc);
2979
2980 /* if the runner is no longer runnable, let the caller pick a new one */
2981 if (vc->runner->arch.state != KVMPPC_VCPU_RUNNABLE)
2982 return;
2983
2984 /*
2985 * Initialize *vc.
Paul Mackerras081f3232012-06-01 20:20:24 +10002986 */
Paul Mackerras898b25b2017-06-22 15:08:42 +10002987 init_vcore_to_run(vc);
Paul Mackerras2711e242014-12-04 16:43:28 +11002988 vc->preempt_tb = TB_NIL;
Paul Mackerras081f3232012-06-01 20:20:24 +10002989
2990 /*
Paul Mackerras45c940b2016-11-18 17:43:30 +11002991 * Number of threads that we will be controlling: the same as
2992 * the number of threads per subcore, except on POWER9,
2993 * where it's 1 because the threads are (mostly) independent.
2994 */
Paul Mackerras516f7892017-10-16 16:11:57 +11002995 controlled_threads = threads_per_vcore(vc->kvm);
Paul Mackerras45c940b2016-11-18 17:43:30 +11002996
2997 /*
Michael Ellerman3102f782014-05-23 18:15:29 +10002998 * Make sure we are running on primary threads, and that secondary
2999 * threads are offline. Also check if the number of threads in this
3000 * guest are greater than the current system threads per guest.
Paul Mackerrasc0101502017-10-19 14:11:23 +11003001 * On POWER9, we need to be not in independent-threads mode if
Paul Mackerras00608e12018-01-11 16:54:26 +11003002 * this is a HPT guest on a radix host machine where the
3003 * CPU threads may not be in different MMU modes.
Paul Mackerras7b444c62012-10-15 01:16:14 +00003004 */
Paul Mackerras00608e12018-01-11 16:54:26 +11003005 hpt_on_radix = no_mixing_hpt_and_radix && radix_enabled() &&
3006 !kvm_is_radix(vc->kvm);
Paul Mackerrasc0101502017-10-19 14:11:23 +11003007 if (((controlled_threads > 1) &&
3008 ((vc->num_threads > threads_per_subcore) || !on_primary_thread())) ||
3009 (hpt_on_radix && vc->kvm->arch.threads_indep)) {
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003010 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerras7b444c62012-10-15 01:16:14 +00003011 vcpu->arch.ret = -EBUSY;
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003012 kvmppc_remove_runnable(vc, vcpu);
3013 wake_up(&vcpu->arch.cpu_run);
3014 }
Paul Mackerras7b444c62012-10-15 01:16:14 +00003015 goto out;
3016 }
3017
Paul Mackerrasec257162015-06-24 21:18:03 +10003018 /*
3019 * See if we could run any other vcores on the physical core
3020 * along with this one.
3021 */
3022 init_core_info(&core_info, vc);
3023 pcpu = smp_processor_id();
Paul Mackerras45c940b2016-11-18 17:43:30 +11003024 target_threads = controlled_threads;
Paul Mackerrasec257162015-06-24 21:18:03 +10003025 if (target_smt_mode && target_smt_mode < target_threads)
3026 target_threads = target_smt_mode;
3027 if (vc->num_threads < target_threads)
3028 collect_piggybacks(&core_info, target_threads);
Michael Ellerman3102f782014-05-23 18:15:29 +10003029
Paul Mackerras8b24e692017-06-26 15:45:51 +10003030 /*
3031 * On radix, arrange for TLB flushing if necessary.
3032 * This has to be done before disabling interrupts since
3033 * it uses smp_call_function().
3034 */
3035 pcpu = smp_processor_id();
3036 if (kvm_is_radix(vc->kvm)) {
3037 for (sub = 0; sub < core_info.n_subcores; ++sub)
3038 for_each_runnable_thread(i, vcpu, core_info.vc[sub])
3039 kvmppc_prepare_radix_vcpu(vcpu, pcpu);
3040 }
3041
3042 /*
3043 * Hard-disable interrupts, and check resched flag and signals.
3044 * If we need to reschedule or deliver a signal, clean up
3045 * and return without going into the guest(s).
Paul Mackerras072df812017-11-09 14:30:24 +11003046 * If the mmu_ready flag has been cleared, don't go into the
Paul Mackerras38c53af2017-11-08 14:44:04 +11003047 * guest because that means a HPT resize operation is in progress.
Paul Mackerras8b24e692017-06-26 15:45:51 +10003048 */
3049 local_irq_disable();
3050 hard_irq_disable();
3051 if (lazy_irq_pending() || need_resched() ||
Paul Mackerras072df812017-11-09 14:30:24 +11003052 recheck_signals(&core_info) || !vc->kvm->arch.mmu_ready) {
Paul Mackerras8b24e692017-06-26 15:45:51 +10003053 local_irq_enable();
3054 vc->vcore_state = VCORE_INACTIVE;
3055 /* Unlock all except the primary vcore */
3056 for (sub = 1; sub < core_info.n_subcores; ++sub) {
3057 pvc = core_info.vc[sub];
3058 /* Put back on to the preempted vcores list */
3059 kvmppc_vcore_preempt(pvc);
3060 spin_unlock(&pvc->lock);
3061 }
3062 for (i = 0; i < controlled_threads; ++i)
3063 kvmppc_release_hwthread(pcpu + i);
3064 return;
3065 }
3066
3067 kvmppc_clear_host_core(pcpu);
3068
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003069 /* Decide on micro-threading (split-core) mode */
3070 subcore_size = threads_per_subcore;
3071 cmd_bit = stat_bit = 0;
3072 split = core_info.n_subcores;
3073 sip = NULL;
Paul Mackerras516f7892017-10-16 16:11:57 +11003074 is_power8 = cpu_has_feature(CPU_FTR_ARCH_207S)
3075 && !cpu_has_feature(CPU_FTR_ARCH_300);
3076
Paul Mackerrasc0101502017-10-19 14:11:23 +11003077 if (split > 1 || hpt_on_radix) {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003078 sip = &split_info;
3079 memset(&split_info, 0, sizeof(split_info));
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003080 for (sub = 0; sub < core_info.n_subcores; ++sub)
Paul Mackerras898b25b2017-06-22 15:08:42 +10003081 split_info.vc[sub] = core_info.vc[sub];
Paul Mackerras516f7892017-10-16 16:11:57 +11003082
3083 if (is_power8) {
3084 if (split == 2 && (dynamic_mt_modes & 2)) {
3085 cmd_bit = HID0_POWER8_1TO2LPAR;
3086 stat_bit = HID0_POWER8_2LPARMODE;
3087 } else {
3088 split = 4;
3089 cmd_bit = HID0_POWER8_1TO4LPAR;
3090 stat_bit = HID0_POWER8_4LPARMODE;
3091 }
3092 subcore_size = MAX_SMT_THREADS / split;
3093 split_info.rpr = mfspr(SPRN_RPR);
3094 split_info.pmmar = mfspr(SPRN_PMMAR);
3095 split_info.ldbar = mfspr(SPRN_LDBAR);
3096 split_info.subcore_size = subcore_size;
3097 } else {
3098 split_info.subcore_size = 1;
Paul Mackerrasc0101502017-10-19 14:11:23 +11003099 if (hpt_on_radix) {
3100 /* Use the split_info for LPCR/LPIDR changes */
3101 split_info.lpcr_req = vc->lpcr;
3102 split_info.lpidr_req = vc->kvm->arch.lpid;
3103 split_info.host_lpcr = vc->kvm->arch.host_lpcr;
3104 split_info.do_set = 1;
3105 }
Paul Mackerras516f7892017-10-16 16:11:57 +11003106 }
3107
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003108 /* order writes to split_info before kvm_split_mode pointer */
3109 smp_wmb();
3110 }
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003111
Paul Mackerrasc0101502017-10-19 14:11:23 +11003112 for (thr = 0; thr < controlled_threads; ++thr) {
Nicholas Piggind2e60072018-02-14 01:08:12 +10003113 struct paca_struct *paca = paca_ptrs[pcpu + thr];
3114
3115 paca->kvm_hstate.tid = thr;
3116 paca->kvm_hstate.napping = 0;
3117 paca->kvm_hstate.kvm_split_mode = sip;
Paul Mackerrasc0101502017-10-19 14:11:23 +11003118 }
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003119
Paul Mackerras516f7892017-10-16 16:11:57 +11003120 /* Initiate micro-threading (split-core) on POWER8 if required */
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003121 if (cmd_bit) {
3122 unsigned long hid0 = mfspr(SPRN_HID0);
3123
3124 hid0 |= cmd_bit | HID0_POWER8_DYNLPARDIS;
3125 mb();
3126 mtspr(SPRN_HID0, hid0);
3127 isync();
3128 for (;;) {
3129 hid0 = mfspr(SPRN_HID0);
3130 if (hid0 & stat_bit)
3131 break;
3132 cpu_relax();
3133 }
Paul Mackerras2e25aa52012-02-19 17:46:32 +00003134 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00003135
Paul Mackerras7aa15842018-04-20 19:53:22 +10003136 /*
3137 * On POWER8, set RWMR register.
3138 * Since it only affects PURR and SPURR, it doesn't affect
3139 * the host, so we don't save/restore the host value.
3140 */
3141 if (is_power8) {
3142 unsigned long rwmr_val = RWMR_RPA_P8_8THREAD;
3143 int n_online = atomic_read(&vc->online_count);
3144
3145 /*
3146 * Use the 8-thread value if we're doing split-core
3147 * or if the vcore's online count looks bogus.
3148 */
3149 if (split == 1 && threads_per_subcore == MAX_SMT_THREADS &&
3150 n_online >= 1 && n_online <= MAX_SMT_THREADS)
3151 rwmr_val = p8_rwmr_values[n_online];
3152 mtspr(SPRN_RWMR, rwmr_val);
3153 }
3154
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003155 /* Start all the threads */
3156 active = 0;
3157 for (sub = 0; sub < core_info.n_subcores; ++sub) {
Paul Mackerras516f7892017-10-16 16:11:57 +11003158 thr = is_power8 ? subcore_thread_map[sub] : sub;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003159 thr0_done = false;
3160 active |= 1 << thr;
Paul Mackerras898b25b2017-06-22 15:08:42 +10003161 pvc = core_info.vc[sub];
3162 pvc->pcpu = pcpu + thr;
3163 for_each_runnable_thread(i, vcpu, pvc) {
3164 kvmppc_start_thread(vcpu, pvc);
3165 kvmppc_create_dtl_entry(vcpu, pvc);
3166 trace_kvm_guest_enter(vcpu);
3167 if (!vcpu->arch.ptid)
3168 thr0_done = true;
3169 active |= 1 << (thr + vcpu->arch.ptid);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003170 }
Paul Mackerras898b25b2017-06-22 15:08:42 +10003171 /*
3172 * We need to start the first thread of each subcore
3173 * even if it doesn't have a vcpu.
3174 */
3175 if (!thr0_done)
3176 kvmppc_start_thread(NULL, pvc);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003177 }
Gautham R. Shenoy7f235322015-09-02 21:48:58 +05303178
3179 /*
3180 * Ensure that split_info.do_nap is set after setting
3181 * the vcore pointer in the PACA of the secondaries.
3182 */
3183 smp_mb();
Gautham R. Shenoy7f235322015-09-02 21:48:58 +05303184
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003185 /*
3186 * When doing micro-threading, poke the inactive threads as well.
3187 * This gets them to the nap instruction after kvm_do_nap,
3188 * which reduces the time taken to unsplit later.
Paul Mackerrasc0101502017-10-19 14:11:23 +11003189 * For POWER9 HPT guest on radix host, we need all the secondary
3190 * threads woken up so they can do the LPCR/LPIDR change.
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003191 */
Paul Mackerrasc0101502017-10-19 14:11:23 +11003192 if (cmd_bit || hpt_on_radix) {
Paul Mackerras516f7892017-10-16 16:11:57 +11003193 split_info.do_nap = 1; /* ask secondaries to nap when done */
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003194 for (thr = 1; thr < threads_per_subcore; ++thr)
3195 if (!(active & (1 << thr)))
3196 kvmppc_ipi_thread(pcpu + thr);
Paul Mackerras516f7892017-10-16 16:11:57 +11003197 }
Paul Mackerrase0b7ec02014-01-08 21:25:20 +11003198
Paul Mackerras2f12f032012-10-15 01:17:17 +00003199 vc->vcore_state = VCORE_RUNNING;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003200 preempt_disable();
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003201
3202 trace_kvmppc_run_core(vc, 0);
3203
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003204 for (sub = 0; sub < core_info.n_subcores; ++sub)
Paul Mackerras898b25b2017-06-22 15:08:42 +10003205 spin_unlock(&core_info.vc[sub]->lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00003206
Nicholas Piggin9a4506e2018-05-17 17:06:29 +10003207 if (kvm_is_radix(vc->kvm)) {
Nicholas Piggin9a4506e2018-05-17 17:06:29 +10003208 /*
3209 * Do we need to flush the process scoped TLB for the LPAR?
3210 *
3211 * On POWER9, individual threads can come in here, but the
3212 * TLB is shared between the 4 threads in a core, hence
3213 * invalidating on one thread invalidates for all.
3214 * Thus we make all 4 threads use the same bit here.
3215 *
3216 * Hash must be flushed in realmode in order to use tlbiel.
3217 */
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11003218 kvmppc_radix_check_need_tlb_flush(vc->kvm, pcpu, NULL);
Nicholas Piggin9a4506e2018-05-17 17:06:29 +10003219 }
3220
Paul Mackerras8b24e692017-06-26 15:45:51 +10003221 /*
3222 * Interrupts will be enabled once we get into the guest,
3223 * so tell lockdep that we're about to enable interrupts.
3224 */
3225 trace_hardirqs_on();
Paul Mackerrasde56a942011-06-29 00:21:34 +00003226
Laurent Vivier61bd0f662018-03-02 11:51:56 +01003227 guest_enter_irqoff();
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003228
Paul Mackerrase0b7ec02014-01-08 21:25:20 +11003229 srcu_idx = srcu_read_lock(&vc->kvm->srcu);
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003230
Naveen N. Raoa4bc64d2018-04-19 12:34:05 +05303231 this_cpu_disable_ftrace();
3232
Paul Mackerras8b24e692017-06-26 15:45:51 +10003233 trap = __kvmppc_vcore_entry();
Paul Mackerras19ccb762011-07-23 17:42:46 +10003234
Naveen N. Raoa4bc64d2018-04-19 12:34:05 +05303235 this_cpu_enable_ftrace();
3236
Paul Mackerrasec257162015-06-24 21:18:03 +10003237 srcu_read_unlock(&vc->kvm->srcu, srcu_idx);
3238
Paul Mackerras8b24e692017-06-26 15:45:51 +10003239 trace_hardirqs_off();
3240 set_irq_happened(trap);
3241
Paul Mackerrasec257162015-06-24 21:18:03 +10003242 spin_lock(&vc->lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003243 /* prevent other vcpu threads from doing kvmppc_start_thread() now */
Paul Mackerras19ccb762011-07-23 17:42:46 +10003244 vc->vcore_state = VCORE_EXITING;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003245
Paul Mackerras371fefd2011-06-29 00:23:08 +00003246 /* wait for secondary threads to finish writing their state to memory */
Paul Mackerras516f7892017-10-16 16:11:57 +11003247 kvmppc_wait_for_nap(controlled_threads);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003248
3249 /* Return to whole-core mode if we split the core earlier */
Paul Mackerras516f7892017-10-16 16:11:57 +11003250 if (cmd_bit) {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003251 unsigned long hid0 = mfspr(SPRN_HID0);
3252 unsigned long loops = 0;
3253
3254 hid0 &= ~HID0_POWER8_DYNLPARDIS;
3255 stat_bit = HID0_POWER8_2LPARMODE | HID0_POWER8_4LPARMODE;
3256 mb();
3257 mtspr(SPRN_HID0, hid0);
3258 isync();
3259 for (;;) {
3260 hid0 = mfspr(SPRN_HID0);
3261 if (!(hid0 & stat_bit))
3262 break;
3263 cpu_relax();
3264 ++loops;
3265 }
Paul Mackerrasc0101502017-10-19 14:11:23 +11003266 } else if (hpt_on_radix) {
3267 /* Wait for all threads to have seen final sync */
3268 for (thr = 1; thr < controlled_threads; ++thr) {
Nicholas Piggind2e60072018-02-14 01:08:12 +10003269 struct paca_struct *paca = paca_ptrs[pcpu + thr];
3270
3271 while (paca->kvm_hstate.kvm_split_mode) {
Paul Mackerrasc0101502017-10-19 14:11:23 +11003272 HMT_low();
3273 barrier();
3274 }
3275 HMT_medium();
3276 }
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003277 }
Paul Mackerrasc0101502017-10-19 14:11:23 +11003278 split_info.do_nap = 0;
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003279
Paul Mackerras8b24e692017-06-26 15:45:51 +10003280 kvmppc_set_host_core(pcpu);
3281
3282 local_irq_enable();
Laurent Vivier61bd0f662018-03-02 11:51:56 +01003283 guest_exit();
Paul Mackerras8b24e692017-06-26 15:45:51 +10003284
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003285 /* Let secondaries go back to the offline loop */
Paul Mackerras45c940b2016-11-18 17:43:30 +11003286 for (i = 0; i < controlled_threads; ++i) {
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003287 kvmppc_release_hwthread(pcpu + i);
3288 if (sip && sip->napped[i])
3289 kvmppc_ipi_thread(pcpu + i);
Paul Mackerrasa29ebea2017-01-30 21:21:50 +11003290 cpumask_clear_cpu(pcpu + i, &vc->kvm->arch.cpu_in_guest);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003291 }
3292
Paul Mackerras371fefd2011-06-29 00:23:08 +00003293 spin_unlock(&vc->lock);
Paul Mackerras2c9097e2012-09-11 13:27:01 +00003294
Paul Mackerras371fefd2011-06-29 00:23:08 +00003295 /* make sure updates to secondary vcpu structs are visible now */
3296 smp_mb();
Paul Mackerrasde56a942011-06-29 00:21:34 +00003297
Paul Mackerras36ee41d2018-01-30 10:51:32 +11003298 preempt_enable();
3299
Paul Mackerras898b25b2017-06-22 15:08:42 +10003300 for (sub = 0; sub < core_info.n_subcores; ++sub) {
3301 pvc = core_info.vc[sub];
3302 post_guest_process(pvc, pvc == vc);
3303 }
Paul Mackerrasde56a942011-06-29 00:21:34 +00003304
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00003305 spin_lock(&vc->lock);
Paul Mackerrasde56a942011-06-29 00:21:34 +00003306
Paul Mackerrasde56a942011-06-29 00:21:34 +00003307 out:
Paul Mackerras19ccb762011-07-23 17:42:46 +10003308 vc->vcore_state = VCORE_INACTIVE;
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003309 trace_kvmppc_run_core(vc, 1);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003310}
3311
Paul Mackerras19ccb762011-07-23 17:42:46 +10003312/*
Paul Mackerras95a64322018-10-08 16:30:55 +11003313 * Load up hypervisor-mode registers on P9.
3314 */
Paul Mackerras360cae32018-10-08 16:31:04 +11003315static int kvmhv_load_hv_regs_and_go(struct kvm_vcpu *vcpu, u64 time_limit,
3316 unsigned long lpcr)
Paul Mackerras95a64322018-10-08 16:30:55 +11003317{
3318 struct kvmppc_vcore *vc = vcpu->arch.vcore;
3319 s64 hdec;
3320 u64 tb, purr, spurr;
3321 int trap;
3322 unsigned long host_hfscr = mfspr(SPRN_HFSCR);
3323 unsigned long host_ciabr = mfspr(SPRN_CIABR);
3324 unsigned long host_dawr = mfspr(SPRN_DAWR);
3325 unsigned long host_dawrx = mfspr(SPRN_DAWRX);
3326 unsigned long host_psscr = mfspr(SPRN_PSSCR);
3327 unsigned long host_pidr = mfspr(SPRN_PID);
3328
3329 hdec = time_limit - mftb();
3330 if (hdec < 0)
3331 return BOOK3S_INTERRUPT_HV_DECREMENTER;
3332 mtspr(SPRN_HDEC, hdec);
3333
3334 if (vc->tb_offset) {
3335 u64 new_tb = mftb() + vc->tb_offset;
3336 mtspr(SPRN_TBU40, new_tb);
3337 tb = mftb();
3338 if ((tb & 0xffffff) < (new_tb & 0xffffff))
3339 mtspr(SPRN_TBU40, new_tb + 0x1000000);
3340 vc->tb_offset_applied = vc->tb_offset;
3341 }
3342
3343 if (vc->pcr)
3344 mtspr(SPRN_PCR, vc->pcr);
3345 mtspr(SPRN_DPDES, vc->dpdes);
3346 mtspr(SPRN_VTB, vc->vtb);
3347
3348 local_paca->kvm_hstate.host_purr = mfspr(SPRN_PURR);
3349 local_paca->kvm_hstate.host_spurr = mfspr(SPRN_SPURR);
3350 mtspr(SPRN_PURR, vcpu->arch.purr);
3351 mtspr(SPRN_SPURR, vcpu->arch.spurr);
3352
3353 if (cpu_has_feature(CPU_FTR_DAWR)) {
3354 mtspr(SPRN_DAWR, vcpu->arch.dawr);
3355 mtspr(SPRN_DAWRX, vcpu->arch.dawrx);
3356 }
3357 mtspr(SPRN_CIABR, vcpu->arch.ciabr);
3358 mtspr(SPRN_IC, vcpu->arch.ic);
3359 mtspr(SPRN_PID, vcpu->arch.pid);
3360
3361 mtspr(SPRN_PSSCR, vcpu->arch.psscr | PSSCR_EC |
3362 (local_paca->kvm_hstate.fake_suspend << PSSCR_FAKE_SUSPEND_LG));
3363
3364 mtspr(SPRN_HFSCR, vcpu->arch.hfscr);
3365
3366 mtspr(SPRN_SPRG0, vcpu->arch.shregs.sprg0);
3367 mtspr(SPRN_SPRG1, vcpu->arch.shregs.sprg1);
3368 mtspr(SPRN_SPRG2, vcpu->arch.shregs.sprg2);
3369 mtspr(SPRN_SPRG3, vcpu->arch.shregs.sprg3);
3370
3371 mtspr(SPRN_AMOR, ~0UL);
3372
Paul Mackerras360cae32018-10-08 16:31:04 +11003373 mtspr(SPRN_LPCR, lpcr);
Paul Mackerras95a64322018-10-08 16:30:55 +11003374 isync();
3375
3376 kvmppc_xive_push_vcpu(vcpu);
3377
3378 mtspr(SPRN_SRR0, vcpu->arch.shregs.srr0);
3379 mtspr(SPRN_SRR1, vcpu->arch.shregs.srr1);
3380
3381 trap = __kvmhv_vcpu_entry_p9(vcpu);
3382
3383 /* Advance host PURR/SPURR by the amount used by guest */
3384 purr = mfspr(SPRN_PURR);
3385 spurr = mfspr(SPRN_SPURR);
3386 mtspr(SPRN_PURR, local_paca->kvm_hstate.host_purr +
3387 purr - vcpu->arch.purr);
3388 mtspr(SPRN_SPURR, local_paca->kvm_hstate.host_spurr +
3389 spurr - vcpu->arch.spurr);
3390 vcpu->arch.purr = purr;
3391 vcpu->arch.spurr = spurr;
3392
3393 vcpu->arch.ic = mfspr(SPRN_IC);
3394 vcpu->arch.pid = mfspr(SPRN_PID);
3395 vcpu->arch.psscr = mfspr(SPRN_PSSCR) & PSSCR_GUEST_VIS;
3396
3397 vcpu->arch.shregs.sprg0 = mfspr(SPRN_SPRG0);
3398 vcpu->arch.shregs.sprg1 = mfspr(SPRN_SPRG1);
3399 vcpu->arch.shregs.sprg2 = mfspr(SPRN_SPRG2);
3400 vcpu->arch.shregs.sprg3 = mfspr(SPRN_SPRG3);
3401
3402 mtspr(SPRN_PSSCR, host_psscr);
3403 mtspr(SPRN_HFSCR, host_hfscr);
3404 mtspr(SPRN_CIABR, host_ciabr);
3405 mtspr(SPRN_DAWR, host_dawr);
3406 mtspr(SPRN_DAWRX, host_dawrx);
3407 mtspr(SPRN_PID, host_pidr);
3408
3409 /*
3410 * Since this is radix, do a eieio; tlbsync; ptesync sequence in
3411 * case we interrupted the guest between a tlbie and a ptesync.
3412 */
3413 asm volatile("eieio; tlbsync; ptesync");
3414
3415 mtspr(SPRN_LPID, vcpu->kvm->arch.host_lpid); /* restore host LPID */
3416 isync();
3417
3418 vc->dpdes = mfspr(SPRN_DPDES);
3419 vc->vtb = mfspr(SPRN_VTB);
3420 mtspr(SPRN_DPDES, 0);
3421 if (vc->pcr)
3422 mtspr(SPRN_PCR, 0);
3423
3424 if (vc->tb_offset_applied) {
3425 u64 new_tb = mftb() - vc->tb_offset_applied;
3426 mtspr(SPRN_TBU40, new_tb);
3427 tb = mftb();
3428 if ((tb & 0xffffff) < (new_tb & 0xffffff))
3429 mtspr(SPRN_TBU40, new_tb + 0x1000000);
3430 vc->tb_offset_applied = 0;
3431 }
3432
3433 mtspr(SPRN_HDEC, 0x7fffffff);
3434 mtspr(SPRN_LPCR, vcpu->kvm->arch.host_lpcr);
3435
3436 return trap;
3437}
3438
3439/*
3440 * Virtual-mode guest entry for POWER9 and later when the host and
3441 * guest are both using the radix MMU. The LPIDR has already been set.
3442 */
Paul Mackerras360cae32018-10-08 16:31:04 +11003443int kvmhv_p9_guest_entry(struct kvm_vcpu *vcpu, u64 time_limit,
3444 unsigned long lpcr)
Paul Mackerras95a64322018-10-08 16:30:55 +11003445{
3446 struct kvmppc_vcore *vc = vcpu->arch.vcore;
3447 unsigned long host_dscr = mfspr(SPRN_DSCR);
3448 unsigned long host_tidr = mfspr(SPRN_TIDR);
3449 unsigned long host_iamr = mfspr(SPRN_IAMR);
3450 s64 dec;
3451 u64 tb;
3452 int trap, save_pmu;
3453
3454 dec = mfspr(SPRN_DEC);
3455 tb = mftb();
3456 if (dec < 512)
3457 return BOOK3S_INTERRUPT_HV_DECREMENTER;
3458 local_paca->kvm_hstate.dec_expires = dec + tb;
3459 if (local_paca->kvm_hstate.dec_expires < time_limit)
3460 time_limit = local_paca->kvm_hstate.dec_expires;
3461
3462 vcpu->arch.ceded = 0;
3463
3464 kvmhv_save_host_pmu(); /* saves it to PACA kvm_hstate */
3465
3466 kvmppc_subcore_enter_guest();
3467
3468 vc->entry_exit_map = 1;
3469 vc->in_guest = 1;
3470
3471 if (vcpu->arch.vpa.pinned_addr) {
3472 struct lppaca *lp = vcpu->arch.vpa.pinned_addr;
3473 u32 yield_count = be32_to_cpu(lp->yield_count) + 1;
3474 lp->yield_count = cpu_to_be32(yield_count);
3475 vcpu->arch.vpa.dirty = 1;
3476 }
3477
3478 if (cpu_has_feature(CPU_FTR_TM) ||
3479 cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST))
3480 kvmppc_restore_tm_hv(vcpu, vcpu->arch.shregs.msr, true);
3481
3482 kvmhv_load_guest_pmu(vcpu);
3483
3484 msr_check_and_set(MSR_FP | MSR_VEC | MSR_VSX);
3485 load_fp_state(&vcpu->arch.fp);
3486#ifdef CONFIG_ALTIVEC
3487 load_vr_state(&vcpu->arch.vr);
3488#endif
3489
3490 mtspr(SPRN_DSCR, vcpu->arch.dscr);
3491 mtspr(SPRN_IAMR, vcpu->arch.iamr);
3492 mtspr(SPRN_PSPB, vcpu->arch.pspb);
3493 mtspr(SPRN_FSCR, vcpu->arch.fscr);
3494 mtspr(SPRN_TAR, vcpu->arch.tar);
3495 mtspr(SPRN_EBBHR, vcpu->arch.ebbhr);
3496 mtspr(SPRN_EBBRR, vcpu->arch.ebbrr);
3497 mtspr(SPRN_BESCR, vcpu->arch.bescr);
3498 mtspr(SPRN_WORT, vcpu->arch.wort);
3499 mtspr(SPRN_TIDR, vcpu->arch.tid);
3500 mtspr(SPRN_DAR, vcpu->arch.shregs.dar);
3501 mtspr(SPRN_DSISR, vcpu->arch.shregs.dsisr);
3502 mtspr(SPRN_AMR, vcpu->arch.amr);
3503 mtspr(SPRN_UAMOR, vcpu->arch.uamor);
3504
3505 if (!(vcpu->arch.ctrl & 1))
3506 mtspr(SPRN_CTRLT, mfspr(SPRN_CTRLF) & ~1);
3507
3508 mtspr(SPRN_DEC, vcpu->arch.dec_expires - mftb());
3509
Paul Mackerras360cae32018-10-08 16:31:04 +11003510 if (kvmhv_on_pseries()) {
3511 /* call our hypervisor to load up HV regs and go */
3512 struct hv_guest_state hvregs;
Paul Mackerras95a64322018-10-08 16:30:55 +11003513
Paul Mackerras360cae32018-10-08 16:31:04 +11003514 kvmhv_save_hv_regs(vcpu, &hvregs);
3515 hvregs.lpcr = lpcr;
3516 vcpu->arch.regs.msr = vcpu->arch.shregs.msr;
3517 hvregs.version = HV_GUEST_STATE_VERSION;
3518 if (vcpu->arch.nested) {
3519 hvregs.lpid = vcpu->arch.nested->shadow_lpid;
3520 hvregs.vcpu_token = vcpu->arch.nested_vcpu_id;
3521 } else {
3522 hvregs.lpid = vcpu->kvm->arch.lpid;
3523 hvregs.vcpu_token = vcpu->vcpu_id;
3524 }
3525 hvregs.hdec_expiry = time_limit;
3526 trap = plpar_hcall_norets(H_ENTER_NESTED, __pa(&hvregs),
3527 __pa(&vcpu->arch.regs));
3528 kvmhv_restore_hv_return_state(vcpu, &hvregs);
3529 vcpu->arch.shregs.msr = vcpu->arch.regs.msr;
3530 vcpu->arch.shregs.dar = mfspr(SPRN_DAR);
3531 vcpu->arch.shregs.dsisr = mfspr(SPRN_DSISR);
Paul Mackerras4bad7772018-10-08 16:31:06 +11003532
3533 /* H_CEDE has to be handled now, not later */
3534 if (trap == BOOK3S_INTERRUPT_SYSCALL && !vcpu->arch.nested &&
3535 kvmppc_get_gpr(vcpu, 3) == H_CEDE) {
3536 kvmppc_nested_cede(vcpu);
3537 trap = 0;
3538 }
Paul Mackerras360cae32018-10-08 16:31:04 +11003539 } else {
3540 trap = kvmhv_load_hv_regs_and_go(vcpu, time_limit, lpcr);
3541 }
Paul Mackerras95a64322018-10-08 16:30:55 +11003542
3543 vcpu->arch.slb_max = 0;
3544 dec = mfspr(SPRN_DEC);
3545 tb = mftb();
3546 vcpu->arch.dec_expires = dec + tb;
3547 vcpu->cpu = -1;
3548 vcpu->arch.thread_cpu = -1;
3549 vcpu->arch.ctrl = mfspr(SPRN_CTRLF);
3550
3551 vcpu->arch.iamr = mfspr(SPRN_IAMR);
3552 vcpu->arch.pspb = mfspr(SPRN_PSPB);
3553 vcpu->arch.fscr = mfspr(SPRN_FSCR);
3554 vcpu->arch.tar = mfspr(SPRN_TAR);
3555 vcpu->arch.ebbhr = mfspr(SPRN_EBBHR);
3556 vcpu->arch.ebbrr = mfspr(SPRN_EBBRR);
3557 vcpu->arch.bescr = mfspr(SPRN_BESCR);
3558 vcpu->arch.wort = mfspr(SPRN_WORT);
3559 vcpu->arch.tid = mfspr(SPRN_TIDR);
3560 vcpu->arch.amr = mfspr(SPRN_AMR);
3561 vcpu->arch.uamor = mfspr(SPRN_UAMOR);
3562 vcpu->arch.dscr = mfspr(SPRN_DSCR);
3563
3564 mtspr(SPRN_PSPB, 0);
3565 mtspr(SPRN_WORT, 0);
3566 mtspr(SPRN_AMR, 0);
3567 mtspr(SPRN_UAMOR, 0);
3568 mtspr(SPRN_DSCR, host_dscr);
3569 mtspr(SPRN_TIDR, host_tidr);
3570 mtspr(SPRN_IAMR, host_iamr);
3571 mtspr(SPRN_PSPB, 0);
3572
3573 msr_check_and_set(MSR_FP | MSR_VEC | MSR_VSX);
3574 store_fp_state(&vcpu->arch.fp);
3575#ifdef CONFIG_ALTIVEC
3576 store_vr_state(&vcpu->arch.vr);
3577#endif
3578
3579 if (cpu_has_feature(CPU_FTR_TM) ||
3580 cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST))
3581 kvmppc_save_tm_hv(vcpu, vcpu->arch.shregs.msr, true);
3582
3583 save_pmu = 1;
3584 if (vcpu->arch.vpa.pinned_addr) {
3585 struct lppaca *lp = vcpu->arch.vpa.pinned_addr;
3586 u32 yield_count = be32_to_cpu(lp->yield_count) + 1;
3587 lp->yield_count = cpu_to_be32(yield_count);
3588 vcpu->arch.vpa.dirty = 1;
3589 save_pmu = lp->pmcregs_in_use;
3590 }
3591
3592 kvmhv_save_guest_pmu(vcpu, save_pmu);
3593
3594 vc->entry_exit_map = 0x101;
3595 vc->in_guest = 0;
3596
3597 mtspr(SPRN_DEC, local_paca->kvm_hstate.dec_expires - mftb());
3598
3599 kvmhv_load_host_pmu();
3600
3601 kvmppc_subcore_exit_guest();
3602
3603 return trap;
3604}
3605
3606/*
Paul Mackerras19ccb762011-07-23 17:42:46 +10003607 * Wait for some other vcpu thread to execute us, and
3608 * wake us up when we need to handle something in the host.
3609 */
Paul Mackerrasec257162015-06-24 21:18:03 +10003610static void kvmppc_wait_for_exec(struct kvmppc_vcore *vc,
3611 struct kvm_vcpu *vcpu, int wait_state)
Paul Mackerras371fefd2011-06-29 00:23:08 +00003612{
Paul Mackerras371fefd2011-06-29 00:23:08 +00003613 DEFINE_WAIT(wait);
3614
Paul Mackerras19ccb762011-07-23 17:42:46 +10003615 prepare_to_wait(&vcpu->arch.cpu_run, &wait, wait_state);
Paul Mackerrasec257162015-06-24 21:18:03 +10003616 if (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE) {
3617 spin_unlock(&vc->lock);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003618 schedule();
Paul Mackerrasec257162015-06-24 21:18:03 +10003619 spin_lock(&vc->lock);
3620 }
Paul Mackerras19ccb762011-07-23 17:42:46 +10003621 finish_wait(&vcpu->arch.cpu_run, &wait);
3622}
Paul Mackerras371fefd2011-06-29 00:23:08 +00003623
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003624static void grow_halt_poll_ns(struct kvmppc_vcore *vc)
3625{
3626 /* 10us base */
3627 if (vc->halt_poll_ns == 0 && halt_poll_ns_grow)
3628 vc->halt_poll_ns = 10000;
3629 else
3630 vc->halt_poll_ns *= halt_poll_ns_grow;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003631}
3632
3633static void shrink_halt_poll_ns(struct kvmppc_vcore *vc)
3634{
3635 if (halt_poll_ns_shrink == 0)
3636 vc->halt_poll_ns = 0;
3637 else
3638 vc->halt_poll_ns /= halt_poll_ns_shrink;
3639}
3640
Paul Mackerrasee3308a2017-06-20 15:46:12 +10003641#ifdef CONFIG_KVM_XICS
3642static inline bool xive_interrupt_pending(struct kvm_vcpu *vcpu)
3643{
3644 if (!xive_enabled())
3645 return false;
Benjamin Herrenschmidt2267ea72018-01-12 13:37:13 +11003646 return vcpu->arch.irq_pending || vcpu->arch.xive_saved_state.pipr <
Paul Mackerrasee3308a2017-06-20 15:46:12 +10003647 vcpu->arch.xive_saved_state.cppr;
3648}
3649#else
3650static inline bool xive_interrupt_pending(struct kvm_vcpu *vcpu)
3651{
3652 return false;
3653}
3654#endif /* CONFIG_KVM_XICS */
3655
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10003656static bool kvmppc_vcpu_woken(struct kvm_vcpu *vcpu)
3657{
3658 if (vcpu->arch.pending_exceptions || vcpu->arch.prodded ||
Paul Mackerrasee3308a2017-06-20 15:46:12 +10003659 kvmppc_doorbell_pending(vcpu) || xive_interrupt_pending(vcpu))
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10003660 return true;
3661
3662 return false;
3663}
3664
Suraj Jitindar Singh908a0932016-10-14 11:53:23 +11003665/*
3666 * Check to see if any of the runnable vcpus on the vcore have pending
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003667 * exceptions or are no longer ceded
3668 */
3669static int kvmppc_vcore_check_block(struct kvmppc_vcore *vc)
3670{
3671 struct kvm_vcpu *vcpu;
3672 int i;
3673
3674 for_each_runnable_thread(i, vcpu, vc) {
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10003675 if (!vcpu->arch.ceded || kvmppc_vcpu_woken(vcpu))
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003676 return 1;
3677 }
3678
3679 return 0;
3680}
3681
Paul Mackerras19ccb762011-07-23 17:42:46 +10003682/*
3683 * All the vcpus in this vcore are idle, so wait for a decrementer
3684 * or external interrupt to one of the vcpus. vc->lock is held.
3685 */
3686static void kvmppc_vcore_blocked(struct kvmppc_vcore *vc)
3687{
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003688 ktime_t cur, start_poll, start_wait;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003689 int do_sleep = 1;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003690 u64 block_ns;
Marcelo Tosatti85773702016-02-19 09:46:39 +01003691 DECLARE_SWAITQUEUE(wait);
Suresh E. Warrier1bc5d592014-11-03 15:52:00 +11003692
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003693 /* Poll for pending exceptions and ceded state */
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003694 cur = start_poll = ktime_get();
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003695 if (vc->halt_poll_ns) {
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003696 ktime_t stop = ktime_add_ns(start_poll, vc->halt_poll_ns);
3697 ++vc->runner->stat.halt_attempted_poll;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003698
3699 vc->vcore_state = VCORE_POLLING;
3700 spin_unlock(&vc->lock);
3701
3702 do {
3703 if (kvmppc_vcore_check_block(vc)) {
3704 do_sleep = 0;
3705 break;
3706 }
3707 cur = ktime_get();
3708 } while (single_task_running() && ktime_before(cur, stop));
3709
3710 spin_lock(&vc->lock);
3711 vc->vcore_state = VCORE_INACTIVE;
3712
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003713 if (!do_sleep) {
3714 ++vc->runner->stat.halt_successful_poll;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003715 goto out;
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003716 }
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003717 }
3718
Peter Zijlstrab3dae102018-06-12 10:34:52 +02003719 prepare_to_swait_exclusive(&vc->wq, &wait, TASK_INTERRUPTIBLE);
Suresh E. Warrier1bc5d592014-11-03 15:52:00 +11003720
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003721 if (kvmppc_vcore_check_block(vc)) {
Marcelo Tosatti85773702016-02-19 09:46:39 +01003722 finish_swait(&vc->wq, &wait);
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003723 do_sleep = 0;
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003724 /* If we polled, count this as a successful poll */
3725 if (vc->halt_poll_ns)
3726 ++vc->runner->stat.halt_successful_poll;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003727 goto out;
Suresh E. Warrier1bc5d592014-11-03 15:52:00 +11003728 }
3729
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003730 start_wait = ktime_get();
3731
Paul Mackerras19ccb762011-07-23 17:42:46 +10003732 vc->vcore_state = VCORE_SLEEPING;
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003733 trace_kvmppc_vcore_blocked(vc, 0);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003734 spin_unlock(&vc->lock);
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00003735 schedule();
Marcelo Tosatti85773702016-02-19 09:46:39 +01003736 finish_swait(&vc->wq, &wait);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003737 spin_lock(&vc->lock);
3738 vc->vcore_state = VCORE_INACTIVE;
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003739 trace_kvmppc_vcore_blocked(vc, 1);
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003740 ++vc->runner->stat.halt_successful_wait;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003741
3742 cur = ktime_get();
3743
3744out:
Suraj Jitindar Singh2a27f512016-08-02 14:03:23 +10003745 block_ns = ktime_to_ns(cur) - ktime_to_ns(start_poll);
3746
3747 /* Attribute wait time */
3748 if (do_sleep) {
3749 vc->runner->stat.halt_wait_ns +=
3750 ktime_to_ns(cur) - ktime_to_ns(start_wait);
3751 /* Attribute failed poll time */
3752 if (vc->halt_poll_ns)
3753 vc->runner->stat.halt_poll_fail_ns +=
3754 ktime_to_ns(start_wait) -
3755 ktime_to_ns(start_poll);
3756 } else {
3757 /* Attribute successful poll time */
3758 if (vc->halt_poll_ns)
3759 vc->runner->stat.halt_poll_success_ns +=
3760 ktime_to_ns(cur) -
3761 ktime_to_ns(start_poll);
3762 }
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003763
3764 /* Adjust poll time */
Suraj Jitindar Singh307d93e42016-10-14 11:53:20 +11003765 if (halt_poll_ns) {
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003766 if (block_ns <= vc->halt_poll_ns)
3767 ;
3768 /* We slept and blocked for longer than the max halt time */
Suraj Jitindar Singh307d93e42016-10-14 11:53:20 +11003769 else if (vc->halt_poll_ns && block_ns > halt_poll_ns)
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003770 shrink_halt_poll_ns(vc);
3771 /* We slept and our poll time is too small */
Suraj Jitindar Singh307d93e42016-10-14 11:53:20 +11003772 else if (vc->halt_poll_ns < halt_poll_ns &&
3773 block_ns < halt_poll_ns)
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003774 grow_halt_poll_ns(vc);
Suraj Jitindar Singhe03f3922016-10-14 11:53:21 +11003775 if (vc->halt_poll_ns > halt_poll_ns)
3776 vc->halt_poll_ns = halt_poll_ns;
Suraj Jitindar Singh0cda69d2016-08-02 14:03:21 +10003777 } else
3778 vc->halt_poll_ns = 0;
3779
3780 trace_kvmppc_vcore_wakeup(do_sleep, block_ns);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003781}
3782
Paul Mackerras360cae32018-10-08 16:31:04 +11003783/*
3784 * This never fails for a radix guest, as none of the operations it does
3785 * for a radix guest can fail or have a way to report failure.
3786 * kvmhv_run_single_vcpu() relies on this fact.
3787 */
Paul Mackerras432953b2017-11-09 15:37:10 +11003788static int kvmhv_setup_mmu(struct kvm_vcpu *vcpu)
3789{
3790 int r = 0;
3791 struct kvm *kvm = vcpu->kvm;
3792
3793 mutex_lock(&kvm->lock);
3794 if (!kvm->arch.mmu_ready) {
3795 if (!kvm_is_radix(kvm))
3796 r = kvmppc_hv_setup_htab_rma(vcpu);
3797 if (!r) {
3798 if (cpu_has_feature(CPU_FTR_ARCH_300))
3799 kvmppc_setup_partition_table(kvm);
3800 kvm->arch.mmu_ready = 1;
3801 }
3802 }
3803 mutex_unlock(&kvm->lock);
3804 return r;
3805}
3806
Paul Mackerras19ccb762011-07-23 17:42:46 +10003807static int kvmppc_run_vcpu(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
3808{
Paul Mackerras38c53af2017-11-08 14:44:04 +11003809 int n_ceded, i, r;
Paul Mackerras19ccb762011-07-23 17:42:46 +10003810 struct kvmppc_vcore *vc;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003811 struct kvm_vcpu *v;
Paul Mackerras9e368f22011-06-29 00:40:08 +00003812
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003813 trace_kvmppc_run_vcpu_enter(vcpu);
3814
Paul Mackerras371fefd2011-06-29 00:23:08 +00003815 kvm_run->exit_reason = 0;
3816 vcpu->arch.ret = RESUME_GUEST;
3817 vcpu->arch.trap = 0;
Paul Mackerras2f12f032012-10-15 01:17:17 +00003818 kvmppc_update_vpas(vcpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003819
Paul Mackerras371fefd2011-06-29 00:23:08 +00003820 /*
3821 * Synchronize with other threads in this virtual core
3822 */
3823 vc = vcpu->arch.vcore;
3824 spin_lock(&vc->lock);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003825 vcpu->arch.ceded = 0;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003826 vcpu->arch.run_task = current;
3827 vcpu->arch.kvm_run = kvm_run;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00003828 vcpu->arch.stolen_logged = vcore_stolen_time(vc, mftb());
Paul Mackerras19ccb762011-07-23 17:42:46 +10003829 vcpu->arch.state = KVMPPC_VCPU_RUNNABLE;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00003830 vcpu->arch.busy_preempt = TB_NIL;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003831 WRITE_ONCE(vc->runnable_threads[vcpu->arch.ptid], vcpu);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003832 ++vc->n_runnable;
3833
Paul Mackerras19ccb762011-07-23 17:42:46 +10003834 /*
3835 * This happens the first time this is called for a vcpu.
3836 * If the vcore is already running, we may be able to start
3837 * this thread straight away and have it join in.
3838 */
Paul Mackerras8455d792012-10-15 01:17:42 +00003839 if (!signal_pending(current)) {
Paul Mackerrasc0093f12017-11-20 16:12:25 +11003840 if ((vc->vcore_state == VCORE_PIGGYBACK ||
3841 vc->vcore_state == VCORE_RUNNING) &&
Paul Mackerrasec257162015-06-24 21:18:03 +10003842 !VCORE_IS_EXITING(vc)) {
Paul Mackerras2f12f032012-10-15 01:17:17 +00003843 kvmppc_create_dtl_entry(vcpu, vc);
Paul Mackerrasb4deba52015-07-02 20:38:16 +10003844 kvmppc_start_thread(vcpu, vc);
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003845 trace_kvm_guest_enter(vcpu);
Paul Mackerras8455d792012-10-15 01:17:42 +00003846 } else if (vc->vcore_state == VCORE_SLEEPING) {
Peter Zijlstrab3dae102018-06-12 10:34:52 +02003847 swake_up_one(&vc->wq);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003848 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00003849
Paul Mackerras8455d792012-10-15 01:17:42 +00003850 }
Paul Mackerras19ccb762011-07-23 17:42:46 +10003851
3852 while (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE &&
3853 !signal_pending(current)) {
Paul Mackerras072df812017-11-09 14:30:24 +11003854 /* See if the MMU is ready to go */
3855 if (!vcpu->kvm->arch.mmu_ready) {
Paul Mackerras38c53af2017-11-08 14:44:04 +11003856 spin_unlock(&vc->lock);
Paul Mackerras432953b2017-11-09 15:37:10 +11003857 r = kvmhv_setup_mmu(vcpu);
Paul Mackerras38c53af2017-11-08 14:44:04 +11003858 spin_lock(&vc->lock);
3859 if (r) {
3860 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
Paul Mackerras432953b2017-11-09 15:37:10 +11003861 kvm_run->fail_entry.
3862 hardware_entry_failure_reason = 0;
Paul Mackerras38c53af2017-11-08 14:44:04 +11003863 vcpu->arch.ret = r;
3864 break;
3865 }
3866 }
3867
Paul Mackerrasec257162015-06-24 21:18:03 +10003868 if (vc->vcore_state == VCORE_PREEMPT && vc->runner == NULL)
3869 kvmppc_vcore_end_preempt(vc);
3870
Paul Mackerras8455d792012-10-15 01:17:42 +00003871 if (vc->vcore_state != VCORE_INACTIVE) {
Paul Mackerrasec257162015-06-24 21:18:03 +10003872 kvmppc_wait_for_exec(vc, vcpu, TASK_INTERRUPTIBLE);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003873 continue;
3874 }
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003875 for_each_runnable_thread(i, v, vc) {
Scott Wood7e28e60e2011-11-08 18:23:20 -06003876 kvmppc_core_prepare_to_enter(v);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003877 if (signal_pending(v->arch.run_task)) {
3878 kvmppc_remove_runnable(vc, v);
3879 v->stat.signal_exits++;
3880 v->arch.kvm_run->exit_reason = KVM_EXIT_INTR;
3881 v->arch.ret = -EINTR;
3882 wake_up(&v->arch.cpu_run);
3883 }
3884 }
Paul Mackerras8455d792012-10-15 01:17:42 +00003885 if (!vc->n_runnable || vcpu->arch.state != KVMPPC_VCPU_RUNNABLE)
3886 break;
Paul Mackerras8455d792012-10-15 01:17:42 +00003887 n_ceded = 0;
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003888 for_each_runnable_thread(i, v, vc) {
Paul Mackerras1da4e2f2017-05-19 16:26:16 +10003889 if (!kvmppc_vcpu_woken(v))
Paul Mackerras8455d792012-10-15 01:17:42 +00003890 n_ceded += v->arch.ceded;
Paul Mackerras4619ac82013-04-17 20:31:41 +00003891 else
3892 v->arch.ceded = 0;
3893 }
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003894 vc->runner = vcpu;
3895 if (n_ceded == vc->n_runnable) {
Paul Mackerras8455d792012-10-15 01:17:42 +00003896 kvmppc_vcore_blocked(vc);
Konstantin Khlebnikovc56dadf2015-07-15 12:52:03 +03003897 } else if (need_resched()) {
Paul Mackerrasec257162015-06-24 21:18:03 +10003898 kvmppc_vcore_preempt(vc);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003899 /* Let something else run */
3900 cond_resched_lock(&vc->lock);
Paul Mackerrasec257162015-06-24 21:18:03 +10003901 if (vc->vcore_state == VCORE_PREEMPT)
3902 kvmppc_vcore_end_preempt(vc);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003903 } else {
Paul Mackerras8455d792012-10-15 01:17:42 +00003904 kvmppc_run_core(vc);
Paul Mackerras25fedfc2015-03-28 14:21:05 +11003905 }
Paul Mackerras0456ec42012-02-03 00:56:21 +00003906 vc->runner = NULL;
Paul Mackerras371fefd2011-06-29 00:23:08 +00003907 }
3908
Paul Mackerras8455d792012-10-15 01:17:42 +00003909 while (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE &&
3910 (vc->vcore_state == VCORE_RUNNING ||
Paul Mackerras5fc3e642015-09-18 13:13:44 +10003911 vc->vcore_state == VCORE_EXITING ||
3912 vc->vcore_state == VCORE_PIGGYBACK))
Paul Mackerrasec257162015-06-24 21:18:03 +10003913 kvmppc_wait_for_exec(vc, vcpu, TASK_UNINTERRUPTIBLE);
Paul Mackerras8455d792012-10-15 01:17:42 +00003914
Paul Mackerras5fc3e642015-09-18 13:13:44 +10003915 if (vc->vcore_state == VCORE_PREEMPT && vc->runner == NULL)
3916 kvmppc_vcore_end_preempt(vc);
3917
Paul Mackerras8455d792012-10-15 01:17:42 +00003918 if (vcpu->arch.state == KVMPPC_VCPU_RUNNABLE) {
3919 kvmppc_remove_runnable(vc, vcpu);
3920 vcpu->stat.signal_exits++;
3921 kvm_run->exit_reason = KVM_EXIT_INTR;
3922 vcpu->arch.ret = -EINTR;
3923 }
3924
3925 if (vc->n_runnable && vc->vcore_state == VCORE_INACTIVE) {
3926 /* Wake up some vcpu to run the core */
Suraj Jitindar Singh7b5f8272016-08-02 14:03:20 +10003927 i = -1;
3928 v = next_runnable_thread(vc, &i);
Paul Mackerras8455d792012-10-15 01:17:42 +00003929 wake_up(&v->arch.cpu_run);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003930 }
Paul Mackerras371fefd2011-06-29 00:23:08 +00003931
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06003932 trace_kvmppc_run_vcpu_exit(vcpu, kvm_run);
Paul Mackerras19ccb762011-07-23 17:42:46 +10003933 spin_unlock(&vc->lock);
Paul Mackerras371fefd2011-06-29 00:23:08 +00003934 return vcpu->arch.ret;
Paul Mackerrasde56a942011-06-29 00:21:34 +00003935}
3936
Paul Mackerras360cae32018-10-08 16:31:04 +11003937int kvmhv_run_single_vcpu(struct kvm_run *kvm_run,
3938 struct kvm_vcpu *vcpu, u64 time_limit,
3939 unsigned long lpcr)
Paul Mackerras95a64322018-10-08 16:30:55 +11003940{
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11003941 int trap, r, pcpu;
Paul Mackerras95a64322018-10-08 16:30:55 +11003942 int srcu_idx;
3943 struct kvmppc_vcore *vc;
3944 struct kvm *kvm = vcpu->kvm;
Paul Mackerras360cae32018-10-08 16:31:04 +11003945 struct kvm_nested_guest *nested = vcpu->arch.nested;
Paul Mackerras95a64322018-10-08 16:30:55 +11003946
3947 trace_kvmppc_run_vcpu_enter(vcpu);
3948
3949 kvm_run->exit_reason = 0;
3950 vcpu->arch.ret = RESUME_GUEST;
3951 vcpu->arch.trap = 0;
3952
3953 vc = vcpu->arch.vcore;
3954 vcpu->arch.ceded = 0;
3955 vcpu->arch.run_task = current;
3956 vcpu->arch.kvm_run = kvm_run;
3957 vcpu->arch.stolen_logged = vcore_stolen_time(vc, mftb());
3958 vcpu->arch.state = KVMPPC_VCPU_RUNNABLE;
3959 vcpu->arch.busy_preempt = TB_NIL;
3960 vcpu->arch.last_inst = KVM_INST_FETCH_FAILED;
3961 vc->runnable_threads[0] = vcpu;
3962 vc->n_runnable = 1;
3963 vc->runner = vcpu;
3964
3965 /* See if the MMU is ready to go */
Paul Mackerras360cae32018-10-08 16:31:04 +11003966 if (!kvm->arch.mmu_ready)
3967 kvmhv_setup_mmu(vcpu);
Paul Mackerras95a64322018-10-08 16:30:55 +11003968
3969 if (need_resched())
3970 cond_resched();
3971
3972 kvmppc_update_vpas(vcpu);
3973
3974 init_vcore_to_run(vc);
3975 vc->preempt_tb = TB_NIL;
3976
3977 preempt_disable();
3978 pcpu = smp_processor_id();
3979 vc->pcpu = pcpu;
3980 kvmppc_prepare_radix_vcpu(vcpu, pcpu);
3981
3982 local_irq_disable();
3983 hard_irq_disable();
3984 if (signal_pending(current))
3985 goto sigpend;
3986 if (lazy_irq_pending() || need_resched() || !kvm->arch.mmu_ready)
3987 goto out;
3988
Paul Mackerras360cae32018-10-08 16:31:04 +11003989 if (!nested) {
3990 kvmppc_core_prepare_to_enter(vcpu);
3991 if (vcpu->arch.doorbell_request) {
3992 vc->dpdes = 1;
3993 smp_wmb();
3994 vcpu->arch.doorbell_request = 0;
3995 }
3996 if (test_bit(BOOK3S_IRQPRIO_EXTERNAL,
3997 &vcpu->arch.pending_exceptions))
3998 lpcr |= LPCR_MER;
3999 } else if (vcpu->arch.pending_exceptions ||
4000 vcpu->arch.doorbell_request ||
4001 xive_interrupt_pending(vcpu)) {
4002 vcpu->arch.ret = RESUME_HOST;
4003 goto out;
4004 }
Paul Mackerras95a64322018-10-08 16:30:55 +11004005
4006 kvmppc_clear_host_core(pcpu);
4007
4008 local_paca->kvm_hstate.tid = 0;
4009 local_paca->kvm_hstate.napping = 0;
4010 local_paca->kvm_hstate.kvm_split_mode = NULL;
4011 kvmppc_start_thread(vcpu, vc);
4012 kvmppc_create_dtl_entry(vcpu, vc);
4013 trace_kvm_guest_enter(vcpu);
4014
4015 vc->vcore_state = VCORE_RUNNING;
4016 trace_kvmppc_run_core(vc, 0);
4017
Suraj Jitindar Singh9d0b0482018-10-08 16:31:11 +11004018 if (cpu_has_feature(CPU_FTR_HVMODE))
4019 kvmppc_radix_check_need_tlb_flush(kvm, pcpu, nested);
Paul Mackerras95a64322018-10-08 16:30:55 +11004020
4021 trace_hardirqs_on();
4022 guest_enter_irqoff();
4023
4024 srcu_idx = srcu_read_lock(&kvm->srcu);
4025
4026 this_cpu_disable_ftrace();
4027
Paul Mackerras360cae32018-10-08 16:31:04 +11004028 trap = kvmhv_p9_guest_entry(vcpu, time_limit, lpcr);
Paul Mackerras95a64322018-10-08 16:30:55 +11004029 vcpu->arch.trap = trap;
4030
4031 this_cpu_enable_ftrace();
4032
4033 srcu_read_unlock(&kvm->srcu, srcu_idx);
4034
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11004035 if (cpu_has_feature(CPU_FTR_HVMODE)) {
4036 mtspr(SPRN_LPID, kvm->arch.host_lpid);
4037 isync();
4038 }
Paul Mackerras95a64322018-10-08 16:30:55 +11004039
4040 trace_hardirqs_off();
4041 set_irq_happened(trap);
4042
4043 kvmppc_set_host_core(pcpu);
4044
4045 local_irq_enable();
4046 guest_exit();
4047
4048 cpumask_clear_cpu(pcpu, &kvm->arch.cpu_in_guest);
4049
4050 preempt_enable();
4051
4052 /* cancel pending decrementer exception if DEC is now positive */
4053 if (get_tb() < vcpu->arch.dec_expires && kvmppc_core_pending_dec(vcpu))
4054 kvmppc_core_dequeue_dec(vcpu);
4055
4056 trace_kvm_guest_exit(vcpu);
4057 r = RESUME_GUEST;
Paul Mackerras360cae32018-10-08 16:31:04 +11004058 if (trap) {
4059 if (!nested)
4060 r = kvmppc_handle_exit_hv(kvm_run, vcpu, current);
4061 else
4062 r = kvmppc_handle_nested_exit(vcpu);
4063 }
Paul Mackerras95a64322018-10-08 16:30:55 +11004064 vcpu->arch.ret = r;
4065
4066 if (is_kvmppc_resume_guest(r) && vcpu->arch.ceded &&
4067 !kvmppc_vcpu_woken(vcpu)) {
4068 kvmppc_set_timer(vcpu);
4069 while (vcpu->arch.ceded && !kvmppc_vcpu_woken(vcpu)) {
4070 if (signal_pending(current)) {
4071 vcpu->stat.signal_exits++;
4072 kvm_run->exit_reason = KVM_EXIT_INTR;
4073 vcpu->arch.ret = -EINTR;
4074 break;
4075 }
4076 spin_lock(&vc->lock);
4077 kvmppc_vcore_blocked(vc);
4078 spin_unlock(&vc->lock);
4079 }
4080 }
4081 vcpu->arch.ceded = 0;
4082
4083 vc->vcore_state = VCORE_INACTIVE;
4084 trace_kvmppc_run_core(vc, 1);
4085
4086 done:
4087 kvmppc_remove_runnable(vc, vcpu);
4088 trace_kvmppc_run_vcpu_exit(vcpu, kvm_run);
4089
4090 return vcpu->arch.ret;
4091
4092 sigpend:
4093 vcpu->stat.signal_exits++;
4094 kvm_run->exit_reason = KVM_EXIT_INTR;
4095 vcpu->arch.ret = -EINTR;
4096 out:
4097 local_irq_enable();
4098 preempt_enable();
4099 goto done;
4100}
4101
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304102static int kvmppc_vcpu_run_hv(struct kvm_run *run, struct kvm_vcpu *vcpu)
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004103{
4104 int r;
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00004105 int srcu_idx;
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004106 unsigned long ebb_regs[3] = {}; /* shut up GCC */
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004107 unsigned long user_tar = 0;
4108 unsigned int user_vrsave;
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004109 struct kvm *kvm;
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004110
Alexander Grafaf8f38b2011-08-10 13:57:08 +02004111 if (!vcpu->arch.sane) {
4112 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
4113 return -EINVAL;
4114 }
4115
Paul Mackerras46a704f2017-06-15 16:10:27 +10004116 /*
4117 * Don't allow entry with a suspended transaction, because
4118 * the guest entry/exit code will lose it.
4119 * If the guest has TM enabled, save away their TM-related SPRs
4120 * (they will get restored by the TM unavailable interrupt).
4121 */
4122#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
4123 if (cpu_has_feature(CPU_FTR_TM) && current->thread.regs &&
4124 (current->thread.regs->msr & MSR_TM)) {
4125 if (MSR_TM_ACTIVE(current->thread.regs->msr)) {
4126 run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4127 run->fail_entry.hardware_entry_failure_reason = 0;
4128 return -EINVAL;
4129 }
Paul Mackerrase4705712017-07-21 13:57:14 +10004130 /* Enable TM so we can read the TM SPRs */
4131 mtmsr(mfmsr() | MSR_TM);
Paul Mackerras46a704f2017-06-15 16:10:27 +10004132 current->thread.tm_tfhar = mfspr(SPRN_TFHAR);
4133 current->thread.tm_tfiar = mfspr(SPRN_TFIAR);
4134 current->thread.tm_texasr = mfspr(SPRN_TEXASR);
4135 current->thread.regs->msr &= ~MSR_TM;
4136 }
4137#endif
4138
Paul Mackerras7aa15842018-04-20 19:53:22 +10004139 /*
4140 * Force online to 1 for the sake of old userspace which doesn't
4141 * set it.
4142 */
4143 if (!vcpu->arch.online) {
4144 atomic_inc(&vcpu->arch.vcore->online_count);
4145 vcpu->arch.online = 1;
4146 }
4147
Scott Wood25051b5a2011-11-08 18:23:23 -06004148 kvmppc_core_prepare_to_enter(vcpu);
4149
Paul Mackerras19ccb762011-07-23 17:42:46 +10004150 /* No need to go into the guest when all we'll do is come back out */
4151 if (signal_pending(current)) {
4152 run->exit_reason = KVM_EXIT_INTR;
4153 return -EINTR;
4154 }
4155
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004156 kvm = vcpu->kvm;
4157 atomic_inc(&kvm->arch.vcpus_running);
4158 /* Order vcpus_running vs. mmu_ready, see kvmppc_alloc_reset_hpt */
Paul Mackerras32fad282012-05-04 02:32:53 +00004159 smp_mb();
4160
Anton Blanchard579e6332015-10-29 11:44:09 +11004161 flush_all_to_thread(current);
4162
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004163 /* Save userspace EBB and other register values */
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004164 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
4165 ebb_regs[0] = mfspr(SPRN_EBBHR);
4166 ebb_regs[1] = mfspr(SPRN_EBBRR);
4167 ebb_regs[2] = mfspr(SPRN_BESCR);
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004168 user_tar = mfspr(SPRN_TAR);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004169 }
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004170 user_vrsave = mfspr(SPRN_VRSAVE);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004171
Paul Mackerras19ccb762011-07-23 17:42:46 +10004172 vcpu->arch.wqp = &vcpu->arch.vcore->wq;
Paul Mackerras342d3db2011-12-12 12:38:05 +00004173 vcpu->arch.pgdir = current->mm->pgd;
Paul Mackerrasc7b67672012-10-15 01:18:07 +00004174 vcpu->arch.state = KVMPPC_VCPU_BUSY_IN_HOST;
Paul Mackerras19ccb762011-07-23 17:42:46 +10004175
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004176 do {
Paul Mackerras95a64322018-10-08 16:30:55 +11004177 if (kvm->arch.threads_indep && kvm_is_radix(kvm))
Paul Mackerras360cae32018-10-08 16:31:04 +11004178 r = kvmhv_run_single_vcpu(run, vcpu, ~(u64)0,
4179 vcpu->arch.vcore->lpcr);
Paul Mackerras95a64322018-10-08 16:30:55 +11004180 else
4181 r = kvmppc_run_vcpu(run, vcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004182
4183 if (run->exit_reason == KVM_EXIT_PAPR_HCALL &&
4184 !(vcpu->arch.shregs.msr & MSR_PR)) {
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004185 trace_kvm_hcall_enter(vcpu);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004186 r = kvmppc_pseries_do_hcall(vcpu);
Suresh E. Warrier3c78f782014-12-03 18:48:10 -06004187 trace_kvm_hcall_exit(vcpu, r);
Scott Wood7e28e60e2011-11-08 18:23:20 -06004188 kvmppc_core_prepare_to_enter(vcpu);
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00004189 } else if (r == RESUME_PAGE_FAULT) {
Paul Mackerras432953b2017-11-09 15:37:10 +11004190 srcu_idx = srcu_read_lock(&kvm->srcu);
Paul Mackerras913d3ff9a2012-10-15 01:16:48 +00004191 r = kvmppc_book3s_hv_page_fault(run, vcpu,
4192 vcpu->arch.fault_dar, vcpu->arch.fault_dsisr);
Paul Mackerras432953b2017-11-09 15:37:10 +11004193 srcu_read_unlock(&kvm->srcu, srcu_idx);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004194 } else if (r == RESUME_PASSTHROUGH) {
4195 if (WARN_ON(xive_enabled()))
4196 r = H_SUCCESS;
4197 else
4198 r = kvmppc_xics_rm_complete(vcpu, 0);
4199 }
Greg Kurze59d24e2014-02-06 17:36:56 +01004200 } while (is_kvmppc_resume_guest(r));
Paul Mackerras32fad282012-05-04 02:32:53 +00004201
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004202 /* Restore userspace EBB and other register values */
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004203 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
4204 mtspr(SPRN_EBBHR, ebb_regs[0]);
4205 mtspr(SPRN_EBBRR, ebb_regs[1]);
4206 mtspr(SPRN_BESCR, ebb_regs[2]);
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004207 mtspr(SPRN_TAR, user_tar);
4208 mtspr(SPRN_FSCR, current->thread.fscr);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004209 }
Paul Mackerras4c3bb4c2017-06-15 15:43:17 +10004210 mtspr(SPRN_VRSAVE, user_vrsave);
Paul Mackerrasca8efa12017-06-06 16:47:22 +10004211
Paul Mackerrasc7b67672012-10-15 01:18:07 +00004212 vcpu->arch.state = KVMPPC_VCPU_NOTREADY;
Paul Mackerras432953b2017-11-09 15:37:10 +11004213 atomic_dec(&kvm->arch.vcpus_running);
Paul Mackerrasa8606e22011-06-29 00:22:05 +00004214 return r;
4215}
4216
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004217static void kvmppc_add_seg_page_size(struct kvm_ppc_one_seg_page_size **sps,
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004218 int shift, int sllp)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004219{
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004220 (*sps)->page_shift = shift;
4221 (*sps)->slb_enc = sllp;
4222 (*sps)->enc[0].page_shift = shift;
4223 (*sps)->enc[0].pte_enc = kvmppc_pgsize_lp_encoding(shift, shift);
Aneesh Kumar K.V1f365bb2014-05-06 23:31:36 +05304224 /*
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004225 * Add 16MB MPSS support (may get filtered out by userspace)
Aneesh Kumar K.V1f365bb2014-05-06 23:31:36 +05304226 */
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004227 if (shift != 24) {
4228 int penc = kvmppc_pgsize_lp_encoding(shift, 24);
4229 if (penc != -1) {
4230 (*sps)->enc[1].page_shift = 24;
4231 (*sps)->enc[1].pte_enc = penc;
4232 }
Aneesh Kumar K.V1f365bb2014-05-06 23:31:36 +05304233 }
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004234 (*sps)++;
4235}
4236
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304237static int kvm_vm_ioctl_get_smmu_info_hv(struct kvm *kvm,
4238 struct kvm_ppc_smmu_info *info)
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004239{
4240 struct kvm_ppc_one_seg_page_size *sps;
4241
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004242 /*
Paul Mackerrase3bfed12017-08-25 19:53:39 +10004243 * POWER7, POWER8 and POWER9 all support 32 storage keys for data.
4244 * POWER7 doesn't support keys for instruction accesses,
4245 * POWER8 and POWER9 do.
4246 */
4247 info->data_keys = 32;
4248 info->instr_keys = cpu_has_feature(CPU_FTR_ARCH_207S) ? 32 : 0;
4249
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004250 /* POWER7, 8 and 9 all have 1T segments and 32-entry SLB */
4251 info->flags = KVM_PPC_PAGE_SIZES_REAL | KVM_PPC_1T_SEGMENTS;
4252 info->slb_size = 32;
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004253
4254 /* We only support these sizes for now, and no muti-size segments */
4255 sps = &info->sps[0];
Paul Mackerras8dc6cca2017-09-11 15:29:45 +10004256 kvmppc_add_seg_page_size(&sps, 12, 0);
4257 kvmppc_add_seg_page_size(&sps, 16, SLB_VSID_L | SLB_VSID_LP_01);
4258 kvmppc_add_seg_page_size(&sps, 24, SLB_VSID_L);
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004259
Paul Mackerras901f8c32018-10-08 14:24:30 +11004260 /* If running as a nested hypervisor, we don't support HPT guests */
4261 if (kvmhv_on_pseries())
4262 info->flags |= KVM_PPC_NO_HASH;
4263
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00004264 return 0;
4265}
4266
Paul Mackerras82ed3612011-12-15 02:03:22 +00004267/*
4268 * Get (and clear) the dirty memory log for a memory slot.
4269 */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304270static int kvm_vm_ioctl_get_dirty_log_hv(struct kvm *kvm,
4271 struct kvm_dirty_log *log)
Paul Mackerras82ed3612011-12-15 02:03:22 +00004272{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02004273 struct kvm_memslots *slots;
Paul Mackerras82ed3612011-12-15 02:03:22 +00004274 struct kvm_memory_slot *memslot;
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004275 int i, r;
Paul Mackerras82ed3612011-12-15 02:03:22 +00004276 unsigned long n;
Paul Mackerrase641a312017-10-26 16:39:19 +11004277 unsigned long *buf, *p;
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004278 struct kvm_vcpu *vcpu;
Paul Mackerras82ed3612011-12-15 02:03:22 +00004279
4280 mutex_lock(&kvm->slots_lock);
4281
4282 r = -EINVAL;
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07004283 if (log->slot >= KVM_USER_MEM_SLOTS)
Paul Mackerras82ed3612011-12-15 02:03:22 +00004284 goto out;
4285
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02004286 slots = kvm_memslots(kvm);
4287 memslot = id_to_memslot(slots, log->slot);
Paul Mackerras82ed3612011-12-15 02:03:22 +00004288 r = -ENOENT;
4289 if (!memslot->dirty_bitmap)
4290 goto out;
4291
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004292 /*
Paul Mackerrase641a312017-10-26 16:39:19 +11004293 * Use second half of bitmap area because both HPT and radix
4294 * accumulate bits in the first half.
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004295 */
Paul Mackerras82ed3612011-12-15 02:03:22 +00004296 n = kvm_dirty_bitmap_bytes(memslot);
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004297 buf = memslot->dirty_bitmap + n / sizeof(long);
4298 memset(buf, 0, n);
Paul Mackerras82ed3612011-12-15 02:03:22 +00004299
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004300 if (kvm_is_radix(kvm))
4301 r = kvmppc_hv_get_dirty_log_radix(kvm, memslot, buf);
4302 else
4303 r = kvmppc_hv_get_dirty_log_hpt(kvm, memslot, buf);
Paul Mackerras82ed3612011-12-15 02:03:22 +00004304 if (r)
4305 goto out;
4306
Paul Mackerrase641a312017-10-26 16:39:19 +11004307 /*
4308 * We accumulate dirty bits in the first half of the
4309 * memslot's dirty_bitmap area, for when pages are paged
4310 * out or modified by the host directly. Pick up these
4311 * bits and add them to the map.
4312 */
4313 p = memslot->dirty_bitmap;
4314 for (i = 0; i < n / sizeof(long); ++i)
4315 buf[i] |= xchg(&p[i], 0);
4316
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004317 /* Harvest dirty bits from VPA and DTL updates */
4318 /* Note: we never modify the SLB shadow buffer areas */
4319 kvm_for_each_vcpu(i, vcpu, kvm) {
4320 spin_lock(&vcpu->arch.vpa_update_lock);
4321 kvmppc_harvest_vpa_dirty(&vcpu->arch.vpa, memslot, buf);
4322 kvmppc_harvest_vpa_dirty(&vcpu->arch.dtl, memslot, buf);
4323 spin_unlock(&vcpu->arch.vpa_update_lock);
4324 }
4325
Paul Mackerras82ed3612011-12-15 02:03:22 +00004326 r = -EFAULT;
Paul Mackerras8f7b79b2017-01-30 21:21:48 +11004327 if (copy_to_user(log->dirty_bitmap, buf, n))
Paul Mackerras82ed3612011-12-15 02:03:22 +00004328 goto out;
4329
4330 r = 0;
4331out:
4332 mutex_unlock(&kvm->slots_lock);
4333 return r;
4334}
4335
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304336static void kvmppc_core_free_memslot_hv(struct kvm_memory_slot *free,
4337 struct kvm_memory_slot *dont)
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004338{
4339 if (!dont || free->arch.rmap != dont->arch.rmap) {
4340 vfree(free->arch.rmap);
4341 free->arch.rmap = NULL;
4342 }
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004343}
4344
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304345static int kvmppc_core_create_memslot_hv(struct kvm_memory_slot *slot,
4346 unsigned long npages)
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004347{
Kees Cookfad953c2018-06-12 14:27:37 -07004348 slot->arch.rmap = vzalloc(array_size(npages, sizeof(*slot->arch.rmap)));
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004349 if (!slot->arch.rmap)
4350 return -ENOMEM;
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004351
4352 return 0;
4353}
4354
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304355static int kvmppc_core_prepare_memory_region_hv(struct kvm *kvm,
4356 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +02004357 const struct kvm_userspace_memory_region *mem)
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004358{
Paul Mackerrasa66b48c2012-09-11 13:27:46 +00004359 return 0;
4360}
4361
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304362static void kvmppc_core_commit_memory_region_hv(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02004363 const struct kvm_userspace_memory_region *mem,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02004364 const struct kvm_memory_slot *old,
4365 const struct kvm_memory_slot *new)
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004366{
Paul Mackerrasdfe49db2012-09-11 13:28:18 +00004367 unsigned long npages = mem->memory_size >> PAGE_SHIFT;
Paul Mackerrasdfe49db2012-09-11 13:28:18 +00004368
Yongji Xiea56ee9f2016-11-04 13:55:12 +08004369 /*
4370 * If we are making a new memslot, it might make
4371 * some address that was previously cached as emulated
4372 * MMIO be no longer emulated MMIO, so invalidate
4373 * all the caches of emulated MMIO translations.
4374 */
4375 if (npages)
4376 atomic64_inc(&kvm->arch.mmio_update);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004377}
4378
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004379/*
4380 * Update LPCR values in kvm->arch and in vcores.
4381 * Caller must hold kvm->lock.
4382 */
4383void kvmppc_update_lpcr(struct kvm *kvm, unsigned long lpcr, unsigned long mask)
4384{
4385 long int i;
4386 u32 cores_done = 0;
4387
4388 if ((kvm->arch.lpcr & mask) == lpcr)
4389 return;
4390
4391 kvm->arch.lpcr = (kvm->arch.lpcr & ~mask) | lpcr;
4392
4393 for (i = 0; i < KVM_MAX_VCORES; ++i) {
4394 struct kvmppc_vcore *vc = kvm->arch.vcores[i];
4395 if (!vc)
4396 continue;
4397 spin_lock(&vc->lock);
4398 vc->lpcr = (vc->lpcr & ~mask) | lpcr;
4399 spin_unlock(&vc->lock);
4400 if (++cores_done >= kvm->arch.online_vcores)
4401 break;
4402 }
4403}
4404
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304405static void kvmppc_mmu_destroy_hv(struct kvm_vcpu *vcpu)
4406{
4407 return;
4408}
4409
Paul Mackerrasded13fc2017-11-22 14:38:53 +11004410void kvmppc_setup_partition_table(struct kvm *kvm)
Paul Mackerras7a840842016-11-16 22:25:20 +11004411{
4412 unsigned long dw0, dw1;
4413
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004414 if (!kvm_is_radix(kvm)) {
4415 /* PS field - page size for VRMA */
4416 dw0 = ((kvm->arch.vrma_slb_v & SLB_VSID_L) >> 1) |
4417 ((kvm->arch.vrma_slb_v & SLB_VSID_LP) << 1);
4418 /* HTABSIZE and HTABORG fields */
4419 dw0 |= kvm->arch.sdr1;
Paul Mackerras7a840842016-11-16 22:25:20 +11004420
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004421 /* Second dword as set by userspace */
4422 dw1 = kvm->arch.process_table;
4423 } else {
4424 dw0 = PATB_HR | radix__get_tree_size() |
4425 __pa(kvm->arch.pgtable) | RADIX_PGD_INDEX_SIZE;
4426 dw1 = PATB_GR | kvm->arch.process_table;
4427 }
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11004428 kvmhv_set_ptbl_entry(kvm->arch.lpid, dw0, dw1);
Paul Mackerras7a840842016-11-16 22:25:20 +11004429}
4430
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004431/*
4432 * Set up HPT (hashed page table) and RMA (real-mode area).
4433 * Must be called with kvm->lock held.
4434 */
Paul Mackerras32fad282012-05-04 02:32:53 +00004435static int kvmppc_hv_setup_htab_rma(struct kvm_vcpu *vcpu)
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004436{
4437 int err = 0;
4438 struct kvm *kvm = vcpu->kvm;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004439 unsigned long hva;
4440 struct kvm_memory_slot *memslot;
4441 struct vm_area_struct *vma;
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004442 unsigned long lpcr = 0, senc;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004443 unsigned long psize, porder;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00004444 int srcu_idx;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004445
Paul Mackerras32fad282012-05-04 02:32:53 +00004446 /* Allocate hashed page table (if not done already) and reset it */
David Gibson3f9d4f52016-12-20 16:49:00 +11004447 if (!kvm->arch.hpt.virt) {
David Gibsonaae07772016-12-20 16:49:02 +11004448 int order = KVM_DEFAULT_HPT_ORDER;
4449 struct kvm_hpt_info info;
4450
4451 err = kvmppc_allocate_hpt(&info, order);
4452 /* If we get here, it means userspace didn't specify a
4453 * size explicitly. So, try successively smaller
4454 * sizes if the default failed. */
4455 while ((err == -ENOMEM) && --order >= PPC_MIN_HPT_ORDER)
4456 err = kvmppc_allocate_hpt(&info, order);
4457
4458 if (err < 0) {
Paul Mackerras32fad282012-05-04 02:32:53 +00004459 pr_err("KVM: Couldn't alloc HPT\n");
4460 goto out;
4461 }
David Gibsonaae07772016-12-20 16:49:02 +11004462
4463 kvmppc_set_hpt(kvm, &info);
Paul Mackerras32fad282012-05-04 02:32:53 +00004464 }
4465
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004466 /* Look up the memslot for guest physical address 0 */
Paul Mackerras2c9097e2012-09-11 13:27:01 +00004467 srcu_idx = srcu_read_lock(&kvm->srcu);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004468 memslot = gfn_to_memslot(kvm, 0);
4469
4470 /* We must have some memory at 0 by now */
4471 err = -EINVAL;
4472 if (!memslot || (memslot->flags & KVM_MEMSLOT_INVALID))
Paul Mackerras2c9097e2012-09-11 13:27:01 +00004473 goto out_srcu;
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004474
4475 /* Look up the VMA for the start of this memory slot */
4476 hva = memslot->userspace_addr;
4477 down_read(&current->mm->mmap_sem);
4478 vma = find_vma(current->mm, hva);
4479 if (!vma || vma->vm_start > hva || (vma->vm_flags & VM_IO))
4480 goto up_out;
4481
4482 psize = vma_kernel_pagesize(vma);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004483
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004484 up_read(&current->mm->mmap_sem);
4485
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004486 /* We can handle 4k, 64k or 16M pages in the VRMA */
Paul Mackerrasdebd5742018-03-02 15:38:04 +11004487 if (psize >= 0x1000000)
4488 psize = 0x1000000;
4489 else if (psize >= 0x10000)
4490 psize = 0x10000;
4491 else
4492 psize = 0x1000;
4493 porder = __ilog2(psize);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004494
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004495 senc = slb_pgsize_encoding(psize);
4496 kvm->arch.vrma_slb_v = senc | SLB_VSID_B_1T |
4497 (VRMA_VSID << SLB_VSID_SHIFT_1T);
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004498 /* Create HPTEs in the hash page table for the VRMA */
4499 kvmppc_map_vrma(vcpu, memslot, porder);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004500
Paul Mackerras7a840842016-11-16 22:25:20 +11004501 /* Update VRMASD field in the LPCR */
4502 if (!cpu_has_feature(CPU_FTR_ARCH_300)) {
4503 /* the -4 is to account for senc values starting at 0x10 */
4504 lpcr = senc << (LPCR_VRMASD_SH - 4);
4505 kvmppc_update_lpcr(kvm, lpcr, LPCR_VRMASD);
Paul Mackerras7a840842016-11-16 22:25:20 +11004506 }
Paul Mackerrasa0144e22013-09-20 14:52:38 +10004507
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004508 /* Order updates to kvm->arch.lpcr etc. vs. mmu_ready */
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004509 smp_wmb();
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004510 err = 0;
Paul Mackerras2c9097e2012-09-11 13:27:01 +00004511 out_srcu:
4512 srcu_read_unlock(&kvm->srcu, srcu_idx);
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004513 out:
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004514 return err;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004515
Paul Mackerrasc77162d2011-12-12 12:31:00 +00004516 up_out:
4517 up_read(&current->mm->mmap_sem);
Lai Jiangshan505d6422013-03-16 00:50:49 +08004518 goto out_srcu;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004519}
4520
Paul Mackerras18c36402017-09-13 16:00:10 +10004521/* Must be called with kvm->lock held and mmu_ready = 0 and no vcpus running */
4522int kvmppc_switch_mmu_to_hpt(struct kvm *kvm)
4523{
Paul Mackerrasaa069a92018-09-21 20:02:01 +10004524 if (nesting_enabled(kvm))
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11004525 kvmhv_release_all_nested(kvm);
Paul Mackerras18c36402017-09-13 16:00:10 +10004526 kvmppc_free_radix(kvm);
4527 kvmppc_update_lpcr(kvm, LPCR_VPM1,
4528 LPCR_VPM1 | LPCR_UPRT | LPCR_GTSE | LPCR_HR);
4529 kvmppc_rmap_reset(kvm);
4530 kvm->arch.radix = 0;
4531 kvm->arch.process_table = 0;
4532 return 0;
4533}
4534
4535/* Must be called with kvm->lock held and mmu_ready = 0 and no vcpus running */
4536int kvmppc_switch_mmu_to_radix(struct kvm *kvm)
4537{
4538 int err;
4539
4540 err = kvmppc_init_vm_radix(kvm);
4541 if (err)
4542 return err;
4543
4544 kvmppc_free_hpt(&kvm->arch.hpt);
4545 kvmppc_update_lpcr(kvm, LPCR_UPRT | LPCR_GTSE | LPCR_HR,
4546 LPCR_VPM1 | LPCR_UPRT | LPCR_GTSE | LPCR_HR);
Suraj Jitindar Singh8cf531e2018-10-08 16:31:08 +11004547 kvmppc_rmap_reset(kvm);
Paul Mackerras18c36402017-09-13 16:00:10 +10004548 kvm->arch.radix = 1;
4549 return 0;
4550}
4551
Suresh Warrier79b6c242015-12-17 14:59:06 -06004552#ifdef CONFIG_KVM_XICS
4553/*
4554 * Allocate a per-core structure for managing state about which cores are
4555 * running in the host versus the guest and for exchanging data between
4556 * real mode KVM and CPU running in the host.
4557 * This is only done for the first VM.
4558 * The allocated structure stays even if all VMs have stopped.
4559 * It is only freed when the kvm-hv module is unloaded.
4560 * It's OK for this routine to fail, we just don't support host
4561 * core operations like redirecting H_IPI wakeups.
4562 */
4563void kvmppc_alloc_host_rm_ops(void)
4564{
4565 struct kvmppc_host_rm_ops *ops;
4566 unsigned long l_ops;
4567 int cpu, core;
4568 int size;
4569
4570 /* Not the first time here ? */
4571 if (kvmppc_host_rm_ops_hv != NULL)
4572 return;
4573
4574 ops = kzalloc(sizeof(struct kvmppc_host_rm_ops), GFP_KERNEL);
4575 if (!ops)
4576 return;
4577
4578 size = cpu_nr_cores() * sizeof(struct kvmppc_host_rm_core);
4579 ops->rm_core = kzalloc(size, GFP_KERNEL);
4580
4581 if (!ops->rm_core) {
4582 kfree(ops);
4583 return;
4584 }
4585
Sebastian Andrzej Siewior419af25f2017-05-24 10:15:21 +02004586 cpus_read_lock();
Suresh Warrier6f3bb802015-12-17 14:59:08 -06004587
Suresh Warrier79b6c242015-12-17 14:59:06 -06004588 for (cpu = 0; cpu < nr_cpu_ids; cpu += threads_per_core) {
4589 if (!cpu_online(cpu))
4590 continue;
4591
4592 core = cpu >> threads_shift;
4593 ops->rm_core[core].rm_state.in_host = 1;
4594 }
4595
Suresh Warrier0c2a6602015-12-17 14:59:09 -06004596 ops->vcpu_kick = kvmppc_fast_vcpu_kick_hv;
4597
Suresh Warrier79b6c242015-12-17 14:59:06 -06004598 /*
4599 * Make the contents of the kvmppc_host_rm_ops structure visible
4600 * to other CPUs before we assign it to the global variable.
4601 * Do an atomic assignment (no locks used here), but if someone
4602 * beats us to it, just free our copy and return.
4603 */
4604 smp_wmb();
4605 l_ops = (unsigned long) ops;
4606
4607 if (cmpxchg64((unsigned long *)&kvmppc_host_rm_ops_hv, 0, l_ops)) {
Sebastian Andrzej Siewior419af25f2017-05-24 10:15:21 +02004608 cpus_read_unlock();
Suresh Warrier79b6c242015-12-17 14:59:06 -06004609 kfree(ops->rm_core);
4610 kfree(ops);
Suresh Warrier6f3bb802015-12-17 14:59:08 -06004611 return;
Suresh Warrier79b6c242015-12-17 14:59:06 -06004612 }
Suresh Warrier6f3bb802015-12-17 14:59:08 -06004613
Sebastian Andrzej Siewior419af25f2017-05-24 10:15:21 +02004614 cpuhp_setup_state_nocalls_cpuslocked(CPUHP_KVM_PPC_BOOK3S_PREPARE,
4615 "ppc/kvm_book3s:prepare",
4616 kvmppc_set_host_core,
4617 kvmppc_clear_host_core);
4618 cpus_read_unlock();
Suresh Warrier79b6c242015-12-17 14:59:06 -06004619}
4620
4621void kvmppc_free_host_rm_ops(void)
4622{
4623 if (kvmppc_host_rm_ops_hv) {
Anna-Maria Gleixner3f7cd912016-11-27 00:13:45 +01004624 cpuhp_remove_state_nocalls(CPUHP_KVM_PPC_BOOK3S_PREPARE);
Suresh Warrier79b6c242015-12-17 14:59:06 -06004625 kfree(kvmppc_host_rm_ops_hv->rm_core);
4626 kfree(kvmppc_host_rm_ops_hv);
4627 kvmppc_host_rm_ops_hv = NULL;
4628 }
4629}
4630#endif
4631
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304632static int kvmppc_core_init_vm_hv(struct kvm *kvm)
Paul Mackerrasde56a942011-06-29 00:21:34 +00004633{
Paul Mackerras32fad282012-05-04 02:32:53 +00004634 unsigned long lpcr, lpid;
Paul Mackerrase23a8082015-03-28 14:21:01 +11004635 char buf[32];
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004636 int ret;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004637
Paul Mackerras32fad282012-05-04 02:32:53 +00004638 /* Allocate the guest's logical partition ID */
4639
4640 lpid = kvmppc_alloc_lpid();
Chen Gang5d226ae2013-07-22 14:32:35 +08004641 if ((long)lpid < 0)
Paul Mackerras32fad282012-05-04 02:32:53 +00004642 return -ENOMEM;
4643 kvm->arch.lpid = lpid;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004644
Suresh Warrier79b6c242015-12-17 14:59:06 -06004645 kvmppc_alloc_host_rm_ops();
4646
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11004647 kvmhv_vm_nested_init(kvm);
4648
Paul Mackerras1b400ba2012-11-21 23:28:08 +00004649 /*
4650 * Since we don't flush the TLB when tearing down a VM,
4651 * and this lpid might have previously been used,
4652 * make sure we flush on each core before running the new VM.
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11004653 * On POWER9, the tlbie in mmu_partition_table_set_entry()
4654 * does this flush for us.
Paul Mackerras1b400ba2012-11-21 23:28:08 +00004655 */
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11004656 if (!cpu_has_feature(CPU_FTR_ARCH_300))
4657 cpumask_setall(&kvm->arch.need_tlb_flush);
Paul Mackerras1b400ba2012-11-21 23:28:08 +00004658
Paul Mackerras699a0ea2014-06-02 11:02:59 +10004659 /* Start out with the default set of hcalls enabled */
4660 memcpy(kvm->arch.enabled_hcalls, default_enabled_hcalls,
4661 sizeof(kvm->arch.enabled_hcalls));
4662
Paul Mackerras7a840842016-11-16 22:25:20 +11004663 if (!cpu_has_feature(CPU_FTR_ARCH_300))
4664 kvm->arch.host_sdr1 = mfspr(SPRN_SDR1);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004665
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004666 /* Init LPCR for virtual RMA mode */
Paul Mackerrasf3c99f92018-10-08 16:31:12 +11004667 if (cpu_has_feature(CPU_FTR_HVMODE)) {
4668 kvm->arch.host_lpid = mfspr(SPRN_LPID);
4669 kvm->arch.host_lpcr = lpcr = mfspr(SPRN_LPCR);
4670 lpcr &= LPCR_PECE | LPCR_LPES;
4671 } else {
4672 lpcr = 0;
4673 }
Paul Mackerrasc17b98c2014-12-03 13:30:38 +11004674 lpcr |= (4UL << LPCR_DPFD_SH) | LPCR_HDICE |
4675 LPCR_VPM0 | LPCR_VPM1;
4676 kvm->arch.vrma_slb_v = SLB_VSID_B_1T |
4677 (VRMA_VSID << SLB_VSID_SHIFT_1T);
4678 /* On POWER8 turn on online bit to enable PURR/SPURR */
4679 if (cpu_has_feature(CPU_FTR_ARCH_207S))
4680 lpcr |= LPCR_ONL;
Paul Mackerras84f71392016-11-22 14:30:14 +11004681 /*
4682 * On POWER9, VPM0 bit is reserved (VPM0=1 behaviour is assumed)
4683 * Set HVICE bit to enable hypervisor virtualization interrupts.
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004684 * Set HEIC to prevent OS interrupts to go to hypervisor (should
4685 * be unnecessary but better safe than sorry in case we re-enable
4686 * EE in HV mode with this LPCR still set)
Paul Mackerras84f71392016-11-22 14:30:14 +11004687 */
4688 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
Paul Mackerras7a840842016-11-16 22:25:20 +11004689 lpcr &= ~LPCR_VPM0;
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004690 lpcr |= LPCR_HVICE | LPCR_HEIC;
4691
4692 /*
4693 * If xive is enabled, we route 0x500 interrupts directly
4694 * to the guest.
4695 */
4696 if (xive_enabled())
4697 lpcr |= LPCR_LPES;
Paul Mackerras84f71392016-11-22 14:30:14 +11004698 }
4699
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004700 /*
Paul Mackerras18c36402017-09-13 16:00:10 +10004701 * If the host uses radix, the guest starts out as radix.
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004702 */
4703 if (radix_enabled()) {
4704 kvm->arch.radix = 1;
Paul Mackerras1b151ce2017-09-13 15:53:48 +10004705 kvm->arch.mmu_ready = 1;
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004706 lpcr &= ~LPCR_VPM1;
4707 lpcr |= LPCR_UPRT | LPCR_GTSE | LPCR_HR;
4708 ret = kvmppc_init_vm_radix(kvm);
4709 if (ret) {
4710 kvmppc_free_lpid(kvm->arch.lpid);
4711 return ret;
4712 }
4713 kvmppc_setup_partition_table(kvm);
4714 }
4715
Paul Mackerras9e368f22011-06-29 00:40:08 +00004716 kvm->arch.lpcr = lpcr;
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004717
David Gibson5e985962016-12-20 16:49:05 +11004718 /* Initialization for future HPT resizes */
4719 kvm->arch.resize_hpt = NULL;
4720
Paul Mackerras512691d2012-10-15 01:15:41 +00004721 /*
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11004722 * Work out how many sets the TLB has, for the use of
4723 * the TLB invalidation loop in book3s_hv_rmhandlers.S.
4724 */
Paul Mackerras18c36402017-09-13 16:00:10 +10004725 if (radix_enabled())
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004726 kvm->arch.tlb_sets = POWER9_TLB_SETS_RADIX; /* 128 */
4727 else if (cpu_has_feature(CPU_FTR_ARCH_300))
Paul Mackerras7c5b06c2016-11-18 08:28:51 +11004728 kvm->arch.tlb_sets = POWER9_TLB_SETS_HASH; /* 256 */
4729 else if (cpu_has_feature(CPU_FTR_ARCH_207S))
4730 kvm->arch.tlb_sets = POWER8_TLB_SETS; /* 512 */
4731 else
4732 kvm->arch.tlb_sets = POWER7_TLB_SETS; /* 128 */
4733
4734 /*
Michael Ellerman441c19c2014-05-23 18:15:25 +10004735 * Track that we now have a HV mode VM active. This blocks secondary
4736 * CPU threads from coming online.
Paul Mackerras516f7892017-10-16 16:11:57 +11004737 * On POWER9, we only need to do this if the "indep_threads_mode"
4738 * module parameter has been set to N.
Paul Mackerras512691d2012-10-15 01:15:41 +00004739 */
Paul Mackerras360cae32018-10-08 16:31:04 +11004740 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
4741 if (!indep_threads_mode && !cpu_has_feature(CPU_FTR_HVMODE)) {
4742 pr_warn("KVM: Ignoring indep_threads_mode=N in nested hypervisor\n");
4743 kvm->arch.threads_indep = true;
4744 } else {
4745 kvm->arch.threads_indep = indep_threads_mode;
4746 }
4747 }
Paul Mackerras516f7892017-10-16 16:11:57 +11004748 if (!kvm->arch.threads_indep)
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004749 kvm_hv_vm_activated();
Paul Mackerras512691d2012-10-15 01:15:41 +00004750
Paul Mackerrase23a8082015-03-28 14:21:01 +11004751 /*
Paul Mackerras3c313522017-02-06 13:24:41 +11004752 * Initialize smt_mode depending on processor.
4753 * POWER8 and earlier have to use "strict" threading, where
4754 * all vCPUs in a vcore have to run on the same (sub)core,
4755 * whereas on POWER9 the threads can each run a different
4756 * guest.
4757 */
4758 if (!cpu_has_feature(CPU_FTR_ARCH_300))
4759 kvm->arch.smt_mode = threads_per_subcore;
4760 else
4761 kvm->arch.smt_mode = 1;
Paul Mackerras57900692017-05-16 16:41:20 +10004762 kvm->arch.emul_smt_mode = 1;
Paul Mackerras3c313522017-02-06 13:24:41 +11004763
4764 /*
Paul Mackerrase23a8082015-03-28 14:21:01 +11004765 * Create a debugfs directory for the VM
4766 */
4767 snprintf(buf, sizeof(buf), "vm%d", current->pid);
4768 kvm->arch.debugfs_dir = debugfs_create_dir(buf, kvm_debugfs_dir);
Greg Kroah-Hartman929f45e2018-05-29 18:22:04 +02004769 kvmppc_mmu_debugfs_init(kvm);
Paul Mackerras9a94d3e2018-10-08 16:30:57 +11004770 if (radix_enabled())
4771 kvmhv_radix_debugfs_init(kvm);
Paul Mackerrase23a8082015-03-28 14:21:01 +11004772
David Gibson54738c02011-06-29 00:22:41 +00004773 return 0;
Paul Mackerrasde56a942011-06-29 00:21:34 +00004774}
4775
Paul Mackerrasf1378b12013-09-27 15:33:43 +05304776static void kvmppc_free_vcores(struct kvm *kvm)
4777{
4778 long int i;
4779
Paul Mackerras23316312015-10-21 16:03:14 +11004780 for (i = 0; i < KVM_MAX_VCORES; ++i)
Paul Mackerrasf1378b12013-09-27 15:33:43 +05304781 kfree(kvm->arch.vcores[i]);
4782 kvm->arch.online_vcores = 0;
4783}
4784
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304785static void kvmppc_core_destroy_vm_hv(struct kvm *kvm)
Paul Mackerrasde56a942011-06-29 00:21:34 +00004786{
Paul Mackerrase23a8082015-03-28 14:21:01 +11004787 debugfs_remove_recursive(kvm->arch.debugfs_dir);
4788
Paul Mackerras516f7892017-10-16 16:11:57 +11004789 if (!kvm->arch.threads_indep)
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004790 kvm_hv_vm_deactivated();
Paul Mackerras512691d2012-10-15 01:15:41 +00004791
Paul Mackerrasf1378b12013-09-27 15:33:43 +05304792 kvmppc_free_vcores(kvm);
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00004793
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11004794
Paul Mackerras5a319352017-01-30 21:21:46 +11004795 if (kvm_is_radix(kvm))
4796 kvmppc_free_radix(kvm);
4797 else
David Gibsonaae07772016-12-20 16:49:02 +11004798 kvmppc_free_hpt(&kvm->arch.hpt);
Suresh Warrierc57875f2016-08-19 15:35:50 +10004799
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11004800 /* Perform global invalidation and return lpid to the pool */
4801 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
Paul Mackerrasaa069a92018-09-21 20:02:01 +10004802 if (nesting_enabled(kvm))
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11004803 kvmhv_release_all_nested(kvm);
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11004804 kvm->arch.process_table = 0;
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11004805 kvmhv_set_ptbl_entry(kvm->arch.lpid, 0, 0);
Suraj Jitindar Singh89329c02018-10-08 16:30:59 +11004806 }
4807 kvmppc_free_lpid(kvm->arch.lpid);
4808
Suresh Warrierc57875f2016-08-19 15:35:50 +10004809 kvmppc_free_pimap(kvm);
Paul Mackerrasde56a942011-06-29 00:21:34 +00004810}
4811
4812/* We don't need to emulate any privileged instructions or dcbz */
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304813static int kvmppc_core_emulate_op_hv(struct kvm_run *run, struct kvm_vcpu *vcpu,
4814 unsigned int inst, int *advance)
Paul Mackerrasde56a942011-06-29 00:21:34 +00004815{
4816 return EMULATE_FAIL;
4817}
4818
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304819static int kvmppc_core_emulate_mtspr_hv(struct kvm_vcpu *vcpu, int sprn,
4820 ulong spr_val)
Paul Mackerrasde56a942011-06-29 00:21:34 +00004821{
4822 return EMULATE_FAIL;
4823}
4824
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304825static int kvmppc_core_emulate_mfspr_hv(struct kvm_vcpu *vcpu, int sprn,
4826 ulong *spr_val)
Paul Mackerrasde56a942011-06-29 00:21:34 +00004827{
4828 return EMULATE_FAIL;
4829}
4830
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304831static int kvmppc_core_check_processor_compat_hv(void)
4832{
Paul Mackerrasde760db2018-10-08 16:31:16 +11004833 if (cpu_has_feature(CPU_FTR_HVMODE) &&
4834 cpu_has_feature(CPU_FTR_ARCH_206))
4835 return 0;
Aneesh Kumar K.V50de5962016-04-29 23:25:43 +10004836
Paul Mackerrasde760db2018-10-08 16:31:16 +11004837 /* POWER9 in radix mode is capable of being a nested hypervisor. */
4838 if (cpu_has_feature(CPU_FTR_ARCH_300) && radix_enabled())
4839 return 0;
4840
4841 return -EIO;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05304842}
4843
Suresh Warrier8daaafc2016-08-19 15:35:48 +10004844#ifdef CONFIG_KVM_XICS
4845
4846void kvmppc_free_pimap(struct kvm *kvm)
4847{
4848 kfree(kvm->arch.pimap);
4849}
4850
Suresh Warrierc57875f2016-08-19 15:35:50 +10004851static struct kvmppc_passthru_irqmap *kvmppc_alloc_pimap(void)
Suresh Warrier8daaafc2016-08-19 15:35:48 +10004852{
4853 return kzalloc(sizeof(struct kvmppc_passthru_irqmap), GFP_KERNEL);
4854}
Suresh Warrierc57875f2016-08-19 15:35:50 +10004855
4856static int kvmppc_set_passthru_irq(struct kvm *kvm, int host_irq, int guest_gsi)
4857{
4858 struct irq_desc *desc;
4859 struct kvmppc_irq_map *irq_map;
4860 struct kvmppc_passthru_irqmap *pimap;
4861 struct irq_chip *chip;
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004862 int i, rc = 0;
Suresh Warrierc57875f2016-08-19 15:35:50 +10004863
Suresh Warrier644abbb2016-08-19 15:35:54 +10004864 if (!kvm_irq_bypass)
4865 return 1;
4866
Suresh Warrierc57875f2016-08-19 15:35:50 +10004867 desc = irq_to_desc(host_irq);
4868 if (!desc)
4869 return -EIO;
4870
4871 mutex_lock(&kvm->lock);
4872
4873 pimap = kvm->arch.pimap;
4874 if (pimap == NULL) {
4875 /* First call, allocate structure to hold IRQ map */
4876 pimap = kvmppc_alloc_pimap();
4877 if (pimap == NULL) {
4878 mutex_unlock(&kvm->lock);
4879 return -ENOMEM;
4880 }
4881 kvm->arch.pimap = pimap;
4882 }
4883
4884 /*
4885 * For now, we only support interrupts for which the EOI operation
4886 * is an OPAL call followed by a write to XIRR, since that's
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004887 * what our real-mode EOI code does, or a XIVE interrupt
Suresh Warrierc57875f2016-08-19 15:35:50 +10004888 */
4889 chip = irq_data_get_irq_chip(&desc->irq_data);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004890 if (!chip || !(is_pnv_opal_msi(chip) || is_xive_irq(chip))) {
Suresh Warrierc57875f2016-08-19 15:35:50 +10004891 pr_warn("kvmppc_set_passthru_irq_hv: Could not assign IRQ map for (%d,%d)\n",
4892 host_irq, guest_gsi);
4893 mutex_unlock(&kvm->lock);
4894 return -ENOENT;
4895 }
4896
4897 /*
4898 * See if we already have an entry for this guest IRQ number.
4899 * If it's mapped to a hardware IRQ number, that's an error,
4900 * otherwise re-use this entry.
4901 */
4902 for (i = 0; i < pimap->n_mapped; i++) {
4903 if (guest_gsi == pimap->mapped[i].v_hwirq) {
4904 if (pimap->mapped[i].r_hwirq) {
4905 mutex_unlock(&kvm->lock);
4906 return -EINVAL;
4907 }
4908 break;
4909 }
4910 }
4911
4912 if (i == KVMPPC_PIRQ_MAPPED) {
4913 mutex_unlock(&kvm->lock);
4914 return -EAGAIN; /* table is full */
4915 }
4916
4917 irq_map = &pimap->mapped[i];
4918
4919 irq_map->v_hwirq = guest_gsi;
Suresh Warrierc57875f2016-08-19 15:35:50 +10004920 irq_map->desc = desc;
4921
Suresh Warriere3c13e52016-08-19 15:35:51 +10004922 /*
4923 * Order the above two stores before the next to serialize with
4924 * the KVM real mode handler.
4925 */
4926 smp_wmb();
4927 irq_map->r_hwirq = desc->irq_data.hwirq;
4928
Suresh Warrierc57875f2016-08-19 15:35:50 +10004929 if (i == pimap->n_mapped)
4930 pimap->n_mapped++;
4931
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004932 if (xive_enabled())
4933 rc = kvmppc_xive_set_mapped(kvm, guest_gsi, desc);
4934 else
4935 kvmppc_xics_set_mapped(kvm, guest_gsi, desc->irq_data.hwirq);
4936 if (rc)
4937 irq_map->r_hwirq = 0;
Paul Mackerras5d375192016-08-19 15:35:56 +10004938
Suresh Warrierc57875f2016-08-19 15:35:50 +10004939 mutex_unlock(&kvm->lock);
4940
4941 return 0;
4942}
4943
4944static int kvmppc_clr_passthru_irq(struct kvm *kvm, int host_irq, int guest_gsi)
4945{
4946 struct irq_desc *desc;
4947 struct kvmppc_passthru_irqmap *pimap;
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004948 int i, rc = 0;
Suresh Warrierc57875f2016-08-19 15:35:50 +10004949
Suresh Warrier644abbb2016-08-19 15:35:54 +10004950 if (!kvm_irq_bypass)
4951 return 0;
4952
Suresh Warrierc57875f2016-08-19 15:35:50 +10004953 desc = irq_to_desc(host_irq);
4954 if (!desc)
4955 return -EIO;
4956
4957 mutex_lock(&kvm->lock);
Markus Elfringa1c52e12017-01-20 11:00:08 +01004958 if (!kvm->arch.pimap)
4959 goto unlock;
Suresh Warrierc57875f2016-08-19 15:35:50 +10004960
Suresh Warrierc57875f2016-08-19 15:35:50 +10004961 pimap = kvm->arch.pimap;
4962
4963 for (i = 0; i < pimap->n_mapped; i++) {
4964 if (guest_gsi == pimap->mapped[i].v_hwirq)
4965 break;
4966 }
4967
4968 if (i == pimap->n_mapped) {
4969 mutex_unlock(&kvm->lock);
4970 return -ENODEV;
4971 }
4972
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004973 if (xive_enabled())
4974 rc = kvmppc_xive_clr_mapped(kvm, guest_gsi, pimap->mapped[i].desc);
4975 else
4976 kvmppc_xics_clr_mapped(kvm, guest_gsi, pimap->mapped[i].r_hwirq);
Paul Mackerras5d375192016-08-19 15:35:56 +10004977
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004978 /* invalidate the entry (what do do on error from the above ?) */
Suresh Warrierc57875f2016-08-19 15:35:50 +10004979 pimap->mapped[i].r_hwirq = 0;
4980
4981 /*
4982 * We don't free this structure even when the count goes to
4983 * zero. The structure is freed when we destroy the VM.
4984 */
Markus Elfringa1c52e12017-01-20 11:00:08 +01004985 unlock:
Suresh Warrierc57875f2016-08-19 15:35:50 +10004986 mutex_unlock(&kvm->lock);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10004987 return rc;
Suresh Warrierc57875f2016-08-19 15:35:50 +10004988}
4989
4990static int kvmppc_irq_bypass_add_producer_hv(struct irq_bypass_consumer *cons,
4991 struct irq_bypass_producer *prod)
4992{
4993 int ret = 0;
4994 struct kvm_kernel_irqfd *irqfd =
4995 container_of(cons, struct kvm_kernel_irqfd, consumer);
4996
4997 irqfd->producer = prod;
4998
4999 ret = kvmppc_set_passthru_irq(irqfd->kvm, prod->irq, irqfd->gsi);
5000 if (ret)
5001 pr_info("kvmppc_set_passthru_irq (irq %d, gsi %d) fails: %d\n",
5002 prod->irq, irqfd->gsi, ret);
5003
5004 return ret;
5005}
5006
5007static void kvmppc_irq_bypass_del_producer_hv(struct irq_bypass_consumer *cons,
5008 struct irq_bypass_producer *prod)
5009{
5010 int ret;
5011 struct kvm_kernel_irqfd *irqfd =
5012 container_of(cons, struct kvm_kernel_irqfd, consumer);
5013
5014 irqfd->producer = NULL;
5015
5016 /*
5017 * When producer of consumer is unregistered, we change back to
5018 * default external interrupt handling mode - KVM real mode
5019 * will switch back to host.
5020 */
5021 ret = kvmppc_clr_passthru_irq(irqfd->kvm, prod->irq, irqfd->gsi);
5022 if (ret)
5023 pr_warn("kvmppc_clr_passthru_irq (irq %d, gsi %d) fails: %d\n",
5024 prod->irq, irqfd->gsi, ret);
5025}
Suresh Warrier8daaafc2016-08-19 15:35:48 +10005026#endif
5027
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305028static long kvm_arch_vm_ioctl_hv(struct file *filp,
5029 unsigned int ioctl, unsigned long arg)
5030{
5031 struct kvm *kvm __maybe_unused = filp->private_data;
5032 void __user *argp = (void __user *)arg;
5033 long r;
5034
5035 switch (ioctl) {
5036
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305037 case KVM_PPC_ALLOCATE_HTAB: {
5038 u32 htab_order;
5039
5040 r = -EFAULT;
5041 if (get_user(htab_order, (u32 __user *)argp))
5042 break;
David Gibsonf98a8bf2016-12-20 16:49:03 +11005043 r = kvmppc_alloc_reset_hpt(kvm, htab_order);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305044 if (r)
5045 break;
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305046 r = 0;
5047 break;
5048 }
5049
5050 case KVM_PPC_GET_HTAB_FD: {
5051 struct kvm_get_htab_fd ghf;
5052
5053 r = -EFAULT;
5054 if (copy_from_user(&ghf, argp, sizeof(ghf)))
5055 break;
5056 r = kvm_vm_ioctl_get_htab_fd(kvm, &ghf);
5057 break;
5058 }
5059
David Gibson5e985962016-12-20 16:49:05 +11005060 case KVM_PPC_RESIZE_HPT_PREPARE: {
5061 struct kvm_ppc_resize_hpt rhpt;
5062
5063 r = -EFAULT;
5064 if (copy_from_user(&rhpt, argp, sizeof(rhpt)))
5065 break;
5066
5067 r = kvm_vm_ioctl_resize_hpt_prepare(kvm, &rhpt);
5068 break;
5069 }
5070
5071 case KVM_PPC_RESIZE_HPT_COMMIT: {
5072 struct kvm_ppc_resize_hpt rhpt;
5073
5074 r = -EFAULT;
5075 if (copy_from_user(&rhpt, argp, sizeof(rhpt)))
5076 break;
5077
5078 r = kvm_vm_ioctl_resize_hpt_commit(kvm, &rhpt);
5079 break;
5080 }
5081
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305082 default:
5083 r = -ENOTTY;
5084 }
5085
5086 return r;
5087}
5088
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005089/*
5090 * List of hcall numbers to enable by default.
5091 * For compatibility with old userspace, we enable by default
5092 * all hcalls that were implemented before the hcall-enabling
5093 * facility was added. Note this list should not include H_RTAS.
5094 */
5095static unsigned int default_hcall_list[] = {
5096 H_REMOVE,
5097 H_ENTER,
5098 H_READ,
5099 H_PROTECT,
5100 H_BULK_REMOVE,
5101 H_GET_TCE,
5102 H_PUT_TCE,
5103 H_SET_DABR,
5104 H_SET_XDABR,
5105 H_CEDE,
5106 H_PROD,
5107 H_CONFER,
5108 H_REGISTER_VPA,
5109#ifdef CONFIG_KVM_XICS
5110 H_EOI,
5111 H_CPPR,
5112 H_IPI,
5113 H_IPOLL,
5114 H_XIRR,
5115 H_XIRR_X,
5116#endif
5117 0
5118};
5119
5120static void init_default_hcalls(void)
5121{
5122 int i;
Paul Mackerrasae2113a2014-06-02 11:03:00 +10005123 unsigned int hcall;
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005124
Paul Mackerrasae2113a2014-06-02 11:03:00 +10005125 for (i = 0; default_hcall_list[i]; ++i) {
5126 hcall = default_hcall_list[i];
5127 WARN_ON(!kvmppc_hcall_impl_hv(hcall));
5128 __set_bit(hcall / 4, default_enabled_hcalls);
5129 }
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005130}
5131
Paul Mackerrasc9270132017-01-30 21:21:41 +11005132static int kvmhv_configure_mmu(struct kvm *kvm, struct kvm_ppc_mmuv3_cfg *cfg)
5133{
Paul Mackerras468808b2017-01-30 21:21:42 +11005134 unsigned long lpcr;
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005135 int radix;
Paul Mackerras18c36402017-09-13 16:00:10 +10005136 int err;
Paul Mackerras468808b2017-01-30 21:21:42 +11005137
5138 /* If not on a POWER9, reject it */
5139 if (!cpu_has_feature(CPU_FTR_ARCH_300))
5140 return -ENODEV;
5141
5142 /* If any unknown flags set, reject it */
5143 if (cfg->flags & ~(KVM_PPC_MMUV3_RADIX | KVM_PPC_MMUV3_GTSE))
5144 return -EINVAL;
5145
Paul Mackerras468808b2017-01-30 21:21:42 +11005146 /* GR (guest radix) bit in process_table field must match */
Paul Mackerras18c36402017-09-13 16:00:10 +10005147 radix = !!(cfg->flags & KVM_PPC_MMUV3_RADIX);
Paul Mackerras8cf4ecc2017-01-30 21:21:53 +11005148 if (!!(cfg->process_table & PATB_GR) != radix)
Paul Mackerras468808b2017-01-30 21:21:42 +11005149 return -EINVAL;
5150
5151 /* Process table size field must be reasonable, i.e. <= 24 */
5152 if ((cfg->process_table & PRTS_MASK) > 24)
5153 return -EINVAL;
5154
Paul Mackerras18c36402017-09-13 16:00:10 +10005155 /* We can change a guest to/from radix now, if the host is radix */
5156 if (radix && !radix_enabled())
5157 return -EINVAL;
5158
Paul Mackerrasde760db2018-10-08 16:31:16 +11005159 /* If we're a nested hypervisor, we currently only support radix */
5160 if (kvmhv_on_pseries() && !radix)
5161 return -EINVAL;
5162
Paul Mackerrascf5f6f32017-09-11 16:05:30 +10005163 mutex_lock(&kvm->lock);
Paul Mackerras18c36402017-09-13 16:00:10 +10005164 if (radix != kvm_is_radix(kvm)) {
5165 if (kvm->arch.mmu_ready) {
5166 kvm->arch.mmu_ready = 0;
5167 /* order mmu_ready vs. vcpus_running */
5168 smp_mb();
5169 if (atomic_read(&kvm->arch.vcpus_running)) {
5170 kvm->arch.mmu_ready = 1;
5171 err = -EBUSY;
5172 goto out_unlock;
5173 }
5174 }
5175 if (radix)
5176 err = kvmppc_switch_mmu_to_radix(kvm);
5177 else
5178 err = kvmppc_switch_mmu_to_hpt(kvm);
5179 if (err)
5180 goto out_unlock;
5181 }
5182
Paul Mackerras468808b2017-01-30 21:21:42 +11005183 kvm->arch.process_table = cfg->process_table;
5184 kvmppc_setup_partition_table(kvm);
5185
5186 lpcr = (cfg->flags & KVM_PPC_MMUV3_GTSE) ? LPCR_GTSE : 0;
5187 kvmppc_update_lpcr(kvm, lpcr, LPCR_GTSE);
Paul Mackerras18c36402017-09-13 16:00:10 +10005188 err = 0;
Paul Mackerras468808b2017-01-30 21:21:42 +11005189
Paul Mackerras18c36402017-09-13 16:00:10 +10005190 out_unlock:
5191 mutex_unlock(&kvm->lock);
5192 return err;
Paul Mackerrasc9270132017-01-30 21:21:41 +11005193}
5194
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005195static int kvmhv_enable_nested(struct kvm *kvm)
5196{
5197 if (!nested)
5198 return -EPERM;
5199 if (!cpu_has_feature(CPU_FTR_ARCH_300))
5200 return -ENODEV;
5201
5202 /* kvm == NULL means the caller is testing if the capability exists */
5203 if (kvm)
5204 kvm->arch.nested_enable = true;
5205 return 0;
5206}
5207
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305208static struct kvmppc_ops kvm_ops_hv = {
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305209 .get_sregs = kvm_arch_vcpu_ioctl_get_sregs_hv,
5210 .set_sregs = kvm_arch_vcpu_ioctl_set_sregs_hv,
5211 .get_one_reg = kvmppc_get_one_reg_hv,
5212 .set_one_reg = kvmppc_set_one_reg_hv,
5213 .vcpu_load = kvmppc_core_vcpu_load_hv,
5214 .vcpu_put = kvmppc_core_vcpu_put_hv,
5215 .set_msr = kvmppc_set_msr_hv,
5216 .vcpu_run = kvmppc_vcpu_run_hv,
5217 .vcpu_create = kvmppc_core_vcpu_create_hv,
5218 .vcpu_free = kvmppc_core_vcpu_free_hv,
5219 .check_requests = kvmppc_core_check_requests_hv,
5220 .get_dirty_log = kvm_vm_ioctl_get_dirty_log_hv,
5221 .flush_memslot = kvmppc_core_flush_memslot_hv,
5222 .prepare_memory_region = kvmppc_core_prepare_memory_region_hv,
5223 .commit_memory_region = kvmppc_core_commit_memory_region_hv,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305224 .unmap_hva_range = kvm_unmap_hva_range_hv,
5225 .age_hva = kvm_age_hva_hv,
5226 .test_age_hva = kvm_test_age_hva_hv,
5227 .set_spte_hva = kvm_set_spte_hva_hv,
5228 .mmu_destroy = kvmppc_mmu_destroy_hv,
5229 .free_memslot = kvmppc_core_free_memslot_hv,
5230 .create_memslot = kvmppc_core_create_memslot_hv,
5231 .init_vm = kvmppc_core_init_vm_hv,
5232 .destroy_vm = kvmppc_core_destroy_vm_hv,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305233 .get_smmu_info = kvm_vm_ioctl_get_smmu_info_hv,
5234 .emulate_op = kvmppc_core_emulate_op_hv,
5235 .emulate_mtspr = kvmppc_core_emulate_mtspr_hv,
5236 .emulate_mfspr = kvmppc_core_emulate_mfspr_hv,
5237 .fast_vcpu_kick = kvmppc_fast_vcpu_kick_hv,
5238 .arch_vm_ioctl = kvm_arch_vm_ioctl_hv,
Paul Mackerrasae2113a2014-06-02 11:03:00 +10005239 .hcall_implemented = kvmppc_hcall_impl_hv,
Suresh Warrierc57875f2016-08-19 15:35:50 +10005240#ifdef CONFIG_KVM_XICS
5241 .irq_bypass_add_producer = kvmppc_irq_bypass_add_producer_hv,
5242 .irq_bypass_del_producer = kvmppc_irq_bypass_del_producer_hv,
5243#endif
Paul Mackerrasc9270132017-01-30 21:21:41 +11005244 .configure_mmu = kvmhv_configure_mmu,
5245 .get_rmmu_info = kvmhv_get_rmmu_info,
Paul Mackerras3c313522017-02-06 13:24:41 +11005246 .set_smt_mode = kvmhv_set_smt_mode,
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005247 .enable_nested = kvmhv_enable_nested,
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305248};
5249
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305250static int kvm_init_subcore_bitmap(void)
5251{
5252 int i, j;
5253 int nr_cores = cpu_nr_cores();
5254 struct sibling_subcore_state *sibling_subcore_state;
5255
5256 for (i = 0; i < nr_cores; i++) {
5257 int first_cpu = i * threads_per_core;
5258 int node = cpu_to_node(first_cpu);
5259
5260 /* Ignore if it is already allocated. */
Nicholas Piggind2e60072018-02-14 01:08:12 +10005261 if (paca_ptrs[first_cpu]->sibling_subcore_state)
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305262 continue;
5263
5264 sibling_subcore_state =
5265 kmalloc_node(sizeof(struct sibling_subcore_state),
5266 GFP_KERNEL, node);
5267 if (!sibling_subcore_state)
5268 return -ENOMEM;
5269
5270 memset(sibling_subcore_state, 0,
5271 sizeof(struct sibling_subcore_state));
5272
5273 for (j = 0; j < threads_per_core; j++) {
5274 int cpu = first_cpu + j;
5275
Nicholas Piggind2e60072018-02-14 01:08:12 +10005276 paca_ptrs[cpu]->sibling_subcore_state =
5277 sibling_subcore_state;
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305278 }
5279 }
5280 return 0;
5281}
5282
Paul Mackerras5a319352017-01-30 21:21:46 +11005283static int kvmppc_radix_possible(void)
5284{
5285 return cpu_has_feature(CPU_FTR_ARCH_300) && radix_enabled();
5286}
5287
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305288static int kvmppc_book3s_init_hv(void)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005289{
5290 int r;
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305291 /*
5292 * FIXME!! Do we need to check on all cpus ?
5293 */
5294 r = kvmppc_core_check_processor_compat_hv();
5295 if (r < 0)
Paul Mackerras739e2422014-03-25 10:47:05 +11005296 return -ENODEV;
Paul Mackerrasde56a942011-06-29 00:21:34 +00005297
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11005298 r = kvmhv_nested_init();
5299 if (r)
5300 return r;
5301
Mahesh Salgaonkarfd7bacb2016-05-15 09:44:26 +05305302 r = kvm_init_subcore_bitmap();
5303 if (r)
5304 return r;
5305
Paul Mackerrasf7257582016-11-18 09:02:08 +11005306 /*
5307 * We need a way of accessing the XICS interrupt controller,
Nicholas Piggind2e60072018-02-14 01:08:12 +10005308 * either directly, via paca_ptrs[cpu]->kvm_hstate.xics_phys, or
Paul Mackerrasf7257582016-11-18 09:02:08 +11005309 * indirectly, via OPAL.
5310 */
5311#ifdef CONFIG_SMP
Paul Mackerrasf3c18e92018-10-08 16:31:05 +11005312 if (!xive_enabled() && !kvmhv_on_pseries() &&
5313 !local_paca->kvm_hstate.xics_phys) {
Paul Mackerrasf7257582016-11-18 09:02:08 +11005314 struct device_node *np;
5315
5316 np = of_find_compatible_node(NULL, NULL, "ibm,opal-intc");
5317 if (!np) {
5318 pr_err("KVM-HV: Cannot determine method for accessing XICS\n");
5319 return -ENODEV;
5320 }
Nicholas Mc Guire51eaa082018-07-07 08:53:07 +02005321 /* presence of intc confirmed - node can be dropped again */
5322 of_node_put(np);
Paul Mackerrasf7257582016-11-18 09:02:08 +11005323 }
5324#endif
5325
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305326 kvm_ops_hv.owner = THIS_MODULE;
5327 kvmppc_hv_ops = &kvm_ops_hv;
Paul Mackerrasde56a942011-06-29 00:21:34 +00005328
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005329 init_default_hcalls();
5330
Paul Mackerrasec257162015-06-24 21:18:03 +10005331 init_vcore_lists();
5332
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305333 r = kvmppc_mmu_hv_init();
Paul Mackerras5a319352017-01-30 21:21:46 +11005334 if (r)
5335 return r;
5336
5337 if (kvmppc_radix_possible())
5338 r = kvmppc_radix_init();
Paul Mackerras00608e12018-01-11 16:54:26 +11005339
5340 /*
5341 * POWER9 chips before version 2.02 can't have some threads in
5342 * HPT mode and some in radix mode on the same core.
5343 */
5344 if (cpu_has_feature(CPU_FTR_ARCH_300)) {
5345 unsigned int pvr = mfspr(SPRN_PVR);
5346 if ((pvr >> 16) == PVR_POWER9 &&
5347 (((pvr & 0xe000) == 0 && (pvr & 0xfff) < 0x202) ||
5348 ((pvr & 0xe000) == 0x2000 && (pvr & 0xfff) < 0x101)))
5349 no_mixing_hpt_and_radix = true;
5350 }
5351
Paul Mackerrasde56a942011-06-29 00:21:34 +00005352 return r;
5353}
5354
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305355static void kvmppc_book3s_exit_hv(void)
Paul Mackerrasde56a942011-06-29 00:21:34 +00005356{
Suresh Warrier79b6c242015-12-17 14:59:06 -06005357 kvmppc_free_host_rm_ops();
Paul Mackerras5a319352017-01-30 21:21:46 +11005358 if (kvmppc_radix_possible())
5359 kvmppc_radix_exit();
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +05305360 kvmppc_hv_ops = NULL;
Paul Mackerras8e3f5fc2018-10-08 16:31:03 +11005361 kvmhv_nested_exit();
Paul Mackerrasde56a942011-06-29 00:21:34 +00005362}
5363
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +05305364module_init(kvmppc_book3s_init_hv);
5365module_exit(kvmppc_book3s_exit_hv);
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05305366MODULE_LICENSE("GPL");
Alexander Graf398a76c2013-12-09 13:53:42 +01005367MODULE_ALIAS_MISCDEV(KVM_MINOR);
5368MODULE_ALIAS("devname:kvm");